From da64e945c145d20ccbbc5d6f0c5a475c8fa7d493 Mon Sep 17 00:00:00 2001 From: sota1111 Date: Sun, 27 Aug 2023 18:30:43 +0900 Subject: [PATCH 01/10] add chat function --- cloud/sam/scripts/chat_function/Dockerfile | 10 + cloud/sam/scripts/chat_function/__init__.py | 0 cloud/sam/scripts/chat_function/app.py | 141 +++++++ cloud/sam/scripts/chat_function/data/FAQ.md | 170 +++++++++ .../scripts/chat_function/data/GameStatus.md | 218 +++++++++++ cloud/sam/scripts/chat_function/data/ai.md | 207 +++++++++++ cloud/sam/scripts/chat_function/data/art.md | 228 ++++++++++++ .../chat_function/data/block_controller.md | 143 +++++++ .../data/block_controller_sample.md | 78 ++++ .../chat_function/data/board_manager.md | 250 +++++++++++++ .../sam/scripts/chat_function/data/docker.md | 75 ++++ .../chat_function/data/game_manager.md | 131 +++++++ .../scripts/chat_function/data/install_mac.md | 39 ++ .../chat_function/data/install_ubuntu.md | 25 ++ .../chat_function/data/install_windows.md | 39 ++ .../data/install_windows_powershell.md | 205 ++++++++++ .../chat_function/data/install_windows_wsl.md | 81 ++++ .../chat_function/data/reference_score.md | 13 + .../sam/scripts/chat_function/data/tetris.md | 350 ++++++++++++++++++ .../chat_function/events/event_delete.json | 6 + .../chat_function/events/event_get.json | 6 + .../chat_function/events/event_post.json | 6 + .../chat_function/events/event_post_func.json | 7 + .../scripts/chat_function/events/test.bash | 1 + cloud/sam/scripts/chat_function/local.py | 37 ++ .../scripts/chat_function/requirements.txt | 6 + .../scripts/chat_function/role/role_tetris.py | 68 ++++ .../chat_function/storage/docstore.json | 1 + .../chat_function/storage/graph_store.json | 1 + .../chat_function/storage/index_store.json | 1 + .../chat_function/storage/vector_store.json | 1 + .../sam/scripts/chat_function/tools/config.py | 5 + .../scripts/chat_function/tools/response.py | 28 ++ .../sam/scripts/chat_function/tools/utils.py | 137 +++++++ cloud/sam/template.yaml | 43 ++- 35 files changed, 2756 insertions(+), 1 deletion(-) create mode 100644 cloud/sam/scripts/chat_function/Dockerfile create mode 100644 cloud/sam/scripts/chat_function/__init__.py create mode 100644 cloud/sam/scripts/chat_function/app.py create mode 100644 cloud/sam/scripts/chat_function/data/FAQ.md create mode 100644 cloud/sam/scripts/chat_function/data/GameStatus.md create mode 100644 cloud/sam/scripts/chat_function/data/ai.md create mode 100644 cloud/sam/scripts/chat_function/data/art.md create mode 100644 cloud/sam/scripts/chat_function/data/block_controller.md create mode 100644 cloud/sam/scripts/chat_function/data/block_controller_sample.md create mode 100644 cloud/sam/scripts/chat_function/data/board_manager.md create mode 100644 cloud/sam/scripts/chat_function/data/docker.md create mode 100644 cloud/sam/scripts/chat_function/data/game_manager.md create mode 100644 cloud/sam/scripts/chat_function/data/install_mac.md create mode 100644 cloud/sam/scripts/chat_function/data/install_ubuntu.md create mode 100644 cloud/sam/scripts/chat_function/data/install_windows.md create mode 100644 cloud/sam/scripts/chat_function/data/install_windows_powershell.md create mode 100644 cloud/sam/scripts/chat_function/data/install_windows_wsl.md create mode 100644 cloud/sam/scripts/chat_function/data/reference_score.md create mode 100644 cloud/sam/scripts/chat_function/data/tetris.md create mode 100644 cloud/sam/scripts/chat_function/events/event_delete.json create mode 100644 cloud/sam/scripts/chat_function/events/event_get.json create mode 100644 cloud/sam/scripts/chat_function/events/event_post.json create mode 100644 cloud/sam/scripts/chat_function/events/event_post_func.json create mode 100644 cloud/sam/scripts/chat_function/events/test.bash create mode 100644 cloud/sam/scripts/chat_function/local.py create mode 100644 cloud/sam/scripts/chat_function/requirements.txt create mode 100644 cloud/sam/scripts/chat_function/role/role_tetris.py create mode 100644 cloud/sam/scripts/chat_function/storage/docstore.json create mode 100644 cloud/sam/scripts/chat_function/storage/graph_store.json create mode 100644 cloud/sam/scripts/chat_function/storage/index_store.json create mode 100644 cloud/sam/scripts/chat_function/storage/vector_store.json create mode 100644 cloud/sam/scripts/chat_function/tools/config.py create mode 100644 cloud/sam/scripts/chat_function/tools/response.py create mode 100644 cloud/sam/scripts/chat_function/tools/utils.py diff --git a/cloud/sam/scripts/chat_function/Dockerfile b/cloud/sam/scripts/chat_function/Dockerfile new file mode 100644 index 00000000..b82c23cb --- /dev/null +++ b/cloud/sam/scripts/chat_function/Dockerfile @@ -0,0 +1,10 @@ +FROM public.ecr.aws/lambda/python:3.9 + +COPY requirements.txt ./ +RUN python3.9 -m pip install --upgrade pip +RUN python3.9 -m pip install -r requirements.txt -t . + +COPY . . + +# Command can be overwritten by providing a different command in the template directly. +CMD ["app.lambda_handler"] diff --git a/cloud/sam/scripts/chat_function/__init__.py b/cloud/sam/scripts/chat_function/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/cloud/sam/scripts/chat_function/app.py b/cloud/sam/scripts/chat_function/app.py new file mode 100644 index 00000000..d72a874d --- /dev/null +++ b/cloud/sam/scripts/chat_function/app.py @@ -0,0 +1,141 @@ +import json +from tools.utils import DynamoDBManager, OpenAIManager +from tools.response import HttpResponse +from role.role_tetris import TetrisAssistant +import logging + +# ロギングの設定 +logger = logging.getLogger() +logger.setLevel(logging.INFO) + +class ChatHandler: + + def __init__(self, event): + self.event = event + self.db_manager = DynamoDBManager() + self.openai_manager = OpenAIManager() + self.http_response = HttpResponse() + self.tetris_assistant = TetrisAssistant() + + def get_message_from_event(self): + body_content = self.event.get('body', None) + if not body_content: + raise ValueError("The 'body' field in the event is missing or empty.") + try: + return json.loads(body_content)['input_text'] + except KeyError: + raise ValueError("Invalid input. 'input_text' key is required.") + + def handle_get_request(self): + return self.http_response.success('hello world') + + def handle_delete_request(self): + # RESTfulな設計では、DELETEはbodyを持たせるべきではないが、他に方法が分からなかった。 + try: + data = json.loads(self.event["body"]) + user_id = data['identity_id'] + char_name = data['character_name'] + try: + self.db_manager.delete_items_with_secondary_index(user_id, char_name) + return self.http_response.success('delete success') + + except Exception as e: + print(f"An error occurred: {e}") + return self.http_response.server_error(f'Error during delete operation: {e}') + except KeyError as e: + print(f"An error occurred: {e}") + return self.http_response.client_error(f'Error during delete operation: {e}') + + + def gpt_function_call(self, response_data, messages, functions, user_id, char_name, max_order_id, input_text): + print(f"function call defined\n") + # gptが定義した関数を実行し、結果を取得する + func_name, args, function_response, function_args = self.openai_manager.execute_function_call(response_data) + + # 2回目のAPI実行のための関数の引数を作成 + function_args = self.openai_manager.create_function_args(func_name, args) + #print(f"function_args: {function_args}") + messages.append({"role": "assistant", "content": None, "function_call": function_args}) + messages.append({"role": "function", "content": function_response, "name": func_name}) + + response_2nd = self.openai_manager.get_chat_response_func(messages, functions) + response_content = response_2nd.choices[0]["message"]["content"] + + # DynamoDBにトーク履歴を記録 + self.db_manager.store_conversation(user_id, char_name, max_order_id + 0, "user", input_text) + self.db_manager.store_conversation(user_id, char_name, max_order_id + 1, "assistant", None, name=None, function_call=function_args) + self.db_manager.store_conversation(user_id, char_name, max_order_id + 2, "function", function_response, name=func_name, function_call=None) + self.db_manager.store_conversation(user_id, char_name, max_order_id + 3, "assistant", response_content) + + return response_content + + + def gpt_simple_response(self, response_data, user_id, char_name, max_order_id, input_text): + print(f"function call undefined\n") + response_content = response_data["message"]["content"] + self.db_manager.store_conversation(user_id, char_name, max_order_id + 0, "user", input_text) + self.db_manager.store_conversation(user_id, char_name, max_order_id + 1, "assistant", response_content) + return response_content + + + def call_openai_api(self, messages, functions, user_id, char_name, input_text, max_order_id): + response_1st = self.openai_manager.get_chat_response_func(messages, functions) + response_data = response_1st["choices"][0] + if response_data["finish_reason"] == "function_call": + if response_data["message"]["function_call"]["name"]: + return self.gpt_function_call(response_data, messages, functions, user_id, char_name, max_order_id, input_text) + else: + return self.gpt_simple_response(response_data, user_id, char_name, max_order_id, input_text) + + + def handle_post_request(self): + self.openai_manager.get_secret() + + # メッセージを取得 + try: + data = json.loads(self.event["body"]) + logger.info('Event: %s', json.dumps(data)) + user_id = data['identity_id'] + char_name = data['character_name'] + input_text = data['input_text'] + except ValueError as e: + return self.http_response.client_error(f'Error during post operation: {e}') + + # 過去の応答を取得 + try: + messages = self.tetris_assistant.get_chat_messages() + functions = self.tetris_assistant.get_chat_functions() + max_order_id,items = self.db_manager.get_max_conversation_id(user_id, char_name) + + #今までの対話をmessagesに並べる + messages.extend([ + { + "role": item["role"], + "content": item["content"], + **({"name": item["name"]} if "name" in item else {}), + **({"function_call": item["function_call"]} if "function_call" in item else {}) + } + for item in items + ]) + messages.append({"role": "user", "content": data['input_text']}) + + #openAIのAPIを叩く + response_content = self.call_openai_api(messages, functions, user_id, char_name, input_text, max_order_id) + return self.http_response.success(response_content) + + except Exception as e: + return self.http_response.server_error(f'Error during post operation: {e}') + + def handle(self): + http_method = self.event.get('httpMethod', '') + if http_method == 'GET': + return self.handle_get_request() + elif http_method == 'DELETE': + return self.handle_delete_request() + elif http_method == 'POST': + return self.handle_post_request() + + +def lambda_handler(event, context): + handler = ChatHandler(event) + return handler.handle() diff --git a/cloud/sam/scripts/chat_function/data/FAQ.md b/cloud/sam/scripts/chat_function/data/FAQ.md new file mode 100644 index 00000000..3877223a --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/FAQ.md @@ -0,0 +1,170 @@ +# FAQ + +## level1ではブロックの順番は固定とのことだが、具体的にはどんな順番になっているのか +`level1(ブロックの順番固定)`の場合は、[ブロックのindex値](https://github.com/seigot/tetris/blob/master/doc/files/block_controller.md#ブロック情報)が`1→2→3→4→5→6→7→1→...`の順番に出現します。 + +## python実行環境について + +| 環境 | 環境構築手順 | +| ---- | ---- | +| ubuntu18.04,20.04 | [こちら](https://github.com/seigot/tetris/blob/master/doc/files/install_ubuntu.md) | +| Mac | [こちら](https://github.com/seigot/tetris/blob/master/doc/files/install_mac.md) | +| Windows+powershell | [こちら](https://github.com/seigot/tetris/blob/master/doc/files/install_windows_powershell.md) | +| Windows+Docker | [こちら](https://github.com/seigot/tetris/blob/master/docker/README.md) | +| JetsonNano | (動作未確認だがおそらく動くはず) | +| RaspberryPi | (動作未確認だがおそらく動くはず) | +| Windows+GoogleChrome+ubuntu-free-online-linux | [chrome webstore URL](https://chrome.google.com/webstore/detail/ubuntu-free-online-linux/pmaonbjcobmgkemldgcedmpbmmncpbgi?hl=ja) | +| AWS | EC2 4CPU 8GBメモリ 20GBストレージ、GPU環境で動作確認済(課金に注意) | + +## `Windows+GoogleChrome+ubuntu-free-online-linux`の環境構築について + +>google chrome上でubuntu serverを実行する
+・[google chrome用のubuntu online server拡張プラグイン](https://chrome.google.com/webstore/detail/ubuntu-free-online-linux/pmaonbjcobmgkemldgcedmpbmmncpbgi)をインストール
+・選択肢のうち、"Xubuntu"を選択(ubuntu18.04かつ軽量なものが良さそう)
+・serverにログインして以下を実施
+ ・Desktop上で右クリックし"Open Terminal Here"を選択
+ ・terminal上で以下コマンドを実行
+``` +sudo apt install −y git +git clone http://github.com/seigot/tetris +cd tetris game +bash doc/files/install_ubuntu.sh +``` + +--> installが成功すればOK + +``` +python start.py +``` + +--> テトリスが表示されればOK + +## `sudo apt install`時に`E: ロック /var/lib/dpkg/lock-frontend が取得できませんでした - open (11: リソースが一時的に利用できません)`のエラーが出る + +[こちらのサイト](https://marginalia.hatenablog.com/entry/2019/07/03/133854)参照
+以下で解決するはず + +``` +$ sudo rm /var/lib/apt/lists/lock +$ sudo rm /var/lib/dpkg/lock +$ sudo rm /var/lib/dpkg/lock-frontend +``` + +## サンプルプログラム(`python start.py -s y`で動くやつ)の中身はどうなってるのか +[こちら](https://github.com/seigot/tetris/blob/master/doc/files/block_controller_sample.md)で解説 + +## スコアアタック時の動作PC環境について + +2021/7時点で以下を想定しています。
+PC: [ZBOX Magnux en52060](https://www.zotac.com/jp/product/mini_pcs/magnus-en52060v#spec)
+ +``` +- OS : ubuntu18.04 +- CPU: Intel Core i5 +- Memory: 16GB +- NVIDIA GeForce RTX 2060 +``` + +``` +- pythonバージョンは以下 +$ python3 --version +Python 3.6.9 +$ python3 -c 'import torch; print(torch.__version__) ' +1.4.0 +``` + +ソフト環境は以下スクリプトで構築しています。(散らかっててすみません)
+[auto_setup_for_Linux.sh](https://github.com/seigot/tetris/blob/master/docker/auto_setup_for_Linux.sh)
+ +## Windows Docker install時のトラブルシューティング + +``` +①BIOSのCPU関連設定 + Docker for Windowsをインストールして起動すると、 + 「An error occurred Hardware assisted virtualization and data execution protection +  must be enabled in the BIOS.」と出てくる。 + ⇒ 以下サイトの「1. BIOS設定の確認」をすることでエラー解消 +   https://qiita.com/LemonmanNo39/items/b1b104e7fb609464727b + +②WSLのインストール + Dockerを起動したところ、①は解消されたが以下のメッセージが表示される。 + 「WSL2 installation is incomplete」 + ⇒ 以下を参考にしてWSL2をインストールする。 +   https://docs.microsoft.com/ja-jp/windows/wsl/install-win10 +   ※ Docker for Windowsをインストールするときに一緒にWSLも入れられたっぽい + +③ Dockerイメージの取得途中で死ぬ +自宅のネットワーク回線が貧弱なのか、下記コマンドでイメージを持ってくる途中で止まる。 +docker run -p 6080:80 --shm-size=512m seigott/tetris_docker + +⇒ Docker for Windowsを起動して、ウィンドウ上部の"歯車(設定)ボタン"、"Docker Engine"をクリック。 +  configファイルに、「"max-concurrent-download":1」を追記。 + ※これでデフォルトの3並列ダウンロードが直列になる + +④ Dockerイメージの取得途中で、「docker: unauthorized authentication required」と出て死ぬ +⇒ windows power shellを管理者権限で実行してコマンドを叩くといけたっぽい。 +``` + +## pytorch v1.4 インストール方法 + +ubuntu18.04環境では、以下のようにしてインストールできることを確認済
+[pytorch v1.4 インストール済のDocker環境(お試し版)](https://github.com/seigot/tetris/blob/master/docker/README.md)を作成しました。追加で必要なものがあればDockerfileを更新して下さい。 + +``` +function install_torch(){ + ### pytorch from pip image (v1.4) + sudo apt-get install -y libopenblas-base libopenmpi-dev + sudo apt-get -y install libjpeg-dev zlib1g-dev libpython3-dev libavcodec-dev libavformat-dev libswscale-dev + + #python -m pip install https://download.pytorch.org/whl/cu101/torch-1.4.0-cp27-cp27mu-linux_x86_64.whl + python -m pip install torchvision==0.2.2 + pip3 install torch==1.4.0 torchvision==0.2.2 + pip install 'pillow<7' +} +``` +## Dockerはコンテナ終了の度にデータが消えて手間が掛かるので何とかしたい +[WSL(Windows Subsystem for Linux)を使う場合](https://github.com/seigot/tetris/blob/master/doc/files/install_windows_wsl.md)の手順を用意しました。
+(kyadさんありがとうございます)
+
+追記:cygwin環境構築手順
+[isshy-youさんによる`Cygwin Install for tetris`構築手順](https://github.com/isshy-you/tetris_game/wiki/Cygwin-Install-for-tetris_game)
+(isshy-youさんありがとうございます) + +## pythonコマンドが見つからない旨のエラーが出る場合 + +ubuntu20.04等では、`python3`があるにも関わらず`python`コマンドがない + +``` +$ python start.py +CompletedProcess(args='python --version', returncode=127, stderr='/bin/sh: 1: python: not found\n') +/bin/sh: 1: python: not found +error: subprocess failed. +``` + +``` +$ python --version + +Command 'python' not found, did you mean: + + command 'python3' from deb python3 + command 'python' from deb python-is-python3 +``` + +ログ記載の通り`python-is-python3`をインストールすればOK + +``` +sudo apt install -y python-is-python3 +``` + +## スコア評価用サーバについて + +以下を作成してみました。 + +[https://github.com/seigot/tetris_score_server](https://github.com/seigot/tetris_score_server) + +## `python start.py`実行時に`TypeError: arguments did not match any overloaded call:`エラーが出る + +以下issueで対策中
+> [`python start.py`実行時に`TypeError: arguments did not match any overloaded call:`エラーが出る](https://github.com/seigot/tetris/issues/5) + +## 以下、順次追記 diff --git a/cloud/sam/scripts/chat_function/data/GameStatus.md b/cloud/sam/scripts/chat_function/data/GameStatus.md new file mode 100644 index 00000000..5023a8cf --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/GameStatus.md @@ -0,0 +1,218 @@ +## `GameStatus`データ構造 + +[`block_controller.py`](https://github.com/seigot/tetris/blob/master/block_controller.py)内の`def GetNextMove(self, nextMove, GameStatus)`で扱う`GameStatus`は辞書型データです。
+ブロックの動きを決定するための参考データとして以下を格納しています。 + +``` +* field_info : フィールド情報 +* block_info : ブロック情報 +* judge_info : 審判情報 +* debug_info : デバッグ情報 +``` + +以下、各情報の詳細について記載します。 + +## field_info + +以下を格納しています。 + +``` +* 'backboard': フィールドのデータ +* 'height': フィールドの高さ +* 'width' : フィールドの幅 +* 'withblock' : フィールド+ブロックの位置を合わせたデータ +``` + +具体的には以下のようなデータとなっています。実際に出力してみると分かり易いと思います。 + +``` +'field_info': {'backboard': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + 'height': 22, + 'width': 10, + 'withblock': [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, +``` + +## block_info + +以下を格納しています。 + +``` +'currentDirection': 現在のブロックが初期形状から何回回転した形状か +'currentShape': { + 'class': 現在のブロックを管理しているクラスのアドレス + 'direction_range': 現在のブロックが回転できる回数 + 'index': 現在のブロックのindex値 +}, +'currentX': 現在のブロック操作の基準点(x座標) +'currentY': 現在のブロック操作の基準点(y座標) +'nextShape': { + 'class': 次のブロックを管理しているクラスのアドレス + 'direction_range': 次のブロックが回転できる回数 + 'index' : 次のブロックのindex値 +} +``` + +具体的には以下のようなデータとなっています。実際に出力してみると分かり易いと思います。 + +``` +'block_info': {'currentDirection': 0, + 'currentShape': {'class': , + 'direction_range': (0, 1), + 'index': 1}, + 'currentX': 5, + 'currentY': 1, + 'nextShape': {'class': , + 'direction_range': (0, 1, 2, + 3), + 'index': 2}}, +``` + +## debug_info + +以下を格納しています。
+デバック用に準備している情報であり、必ずしも使う必要はないかもしれないです。 + +``` +'dropdownscore': 落下により獲得したスコアの合計 +'line_score': { lineを消した時などに獲得できるスコア + 'line1': 1line消した時の獲得スコア + 'line2': 2line消した時の獲得スコア + 'line3': 3line消した時の獲得スコア + 'line4': 4line消した時の獲得スコア + 'gameover': game overになった時の獲得スコア +}, +'line_score_stat': 消したlineの統計データ +'linescore': lineを消して獲得したスコアの合計 +'shape_info': { + 'shapeI': { + 'color': ShapeIの色 + 'index': ShapeIのindex + }, + 'shapeJ': { + 'color': ShapeJの色 + 'index': ShapeJのindex + }, + 'shapeL': { + 'color': ShapeLの色 + 'index': ShapeLのindex + }, + 'shapeNone': { + 'color': ShapeNone(ブロックがない状態)の色 + 'index': ShapeNone(ブロックがない状態)のindex + }, + 'shapeO': { + 'color': ShapeOの色 + 'index': ShapeOのindex + }, + 'shapeS': { + 'color': ShapeSの色 + 'index': ShapeSのindex + }, + 'shapeT': { + 'color': ShapeTの色 + 'index': ShapeTのindex + }, + 'shapeZ': { + 'color': ShapeZの色 + 'index': ShapeZのindex + } +}, +'shape_info_stat': ゲーム開始時から現時点までに出現したブロックの統計情報 +``` + +具体的には以下のようなデータとなっています。実際に出力してみると分かり易いと思います。 + +``` + 'debug_info': {'dropdownscore': 0, + 'line_score': {'line1': 100, + 'line2': 300, + 'line3': 700, + 'line4': 1300, + 'gameover': -500}, + 'line_score_stat': [0, 0, 0, 0], + 'linescore': 0, + 'shape_info': {'shapeI': {'color': 'red', + 'index': 1}, + 'shapeJ': {'color': 'purple', + 'index': 3}, + 'shapeL': {'color': 'green', + 'index': 2}, + 'shapeNone': {'color': 'none', + 'index': 0}, + 'shapeO': {'color': 'pink', + 'index': 5}, + 'shapeS': {'color': 'blue', + 'index': 6}, + 'shapeT': {'color': 'gold', + 'index': 4}, + 'shapeZ': {'color': 'yellow', + 'index': 7}}, + 'shape_info_stat': [0, 1, 0, 0, 0, 0, 0, 0]}, +``` + +## judge_info + +以下を格納しています。 + +``` +'block_index': 現在のブロックがゲーム開始時から何番目に登場したブロックか +'elapsed_time': ゲーム開始時からの経過時間(s) +'game_time': 制限時間(s) +'gameover_count': ゲーム開始時から現在までにゲームオーバーになった回数 +'line': ゲーム開始時から現在までに消したラインの数 +'score': ゲーム開始時から現在までに獲得した合計スコア +``` + +具体的には以下のようなデータとなっています。実際に出力してみると分かり易いと思います。 + +``` + 'judge_info': {'block_index': 1, + 'elapsed_time': 1.083, + 'game_time': 180, + 'gameover_count': 0, + 'line': 0, + 'score': 0}} + ``` + diff --git a/cloud/sam/scripts/chat_function/data/ai.md b/cloud/sam/scripts/chat_function/data/ai.md new file mode 100644 index 00000000..4ceca12c --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/ai.md @@ -0,0 +1,207 @@ +# AIについて(準備中) + +# 1.環境準備 +- sample のコードでは [pytorch](https://pytorch.org/get-started/locally/) を使ってAIのニューラルネットワークを構築します。 +- pytorch については[こちら](https://pytorch.org/get-started/locally/)を参考にし、環境に合わせてインストールしてください。 + +### 例) WindowsのCPU動作用をインストールする場合 +``` +pip3 install torch torchvision torchaudio +``` +### 例) MacのCPU実行用をインストールする場合 +``` +pip3 install torch torchvision torchaudio +``` + +# 2.学習と推論 + +* サンプルとして下記の2つのニューラルネットワークが +[こちら](../../game_manager/machine_learning/model/deepqnet.py) +のコードに定義されています。 + + * sample: DQN(Deep Q Network)を使った学習・推論 + * sample2: MLP (Multilayer perceptron)を使った学習・推論 + + +## 2.1学習の実行 +- DQN(Deep Q Network)を使う場合 + +``` +python start.py -m train_sample -d 1 -l 2 -t -1 +``` + +- MLP (Multilayer perceptron)を使う場合 +``` +python start.py -m train_sample2 -d 1 -l 2 -t -1 +``` + +## 2.2推論の実行 + +- DQN(Deep Q Network)を使う場合 +``` +python start.py -m predict_sample -l 2 --predict_weight weight/DQN/sample_weight.pt +``` + +- MLP (Multilayer perceptron)を使う場合 +``` +python start.py -m predict_sample2 -l 2 --predict_weight weight/MLP/sample_weight.pt +``` + +## 2.3 再学習/追加学習(Fine Tuning) の実行 +- 学習済みの重みを初期状態として学習する場合は下記の手順で configのyamlファイルを設定する。 +1. ft_weight に学習済み重みファイルのパスを設定 +2. finetune を False → True に変更 +3. initial_epsilon を小さくする(0より大きい1以下の値) + +- initial_epsilon は ε-greedy法というアルゴリズムのパラメータになり、学習初期ににどの程度ランダムな行動を取るかを設定します。追加学習の場合は、小さい値を設定することで、学習済みのモデルを有効活用できます。 +- ε-greedy法については下記のサイトなどが参考になります。 + - [https://horomary.hatenablog.com/entry/2021/01/26/233351](https://horomary.hatenablog.com/entry/2021/01/26/233351) + +## 2.4 -m オプションについて + - 学習/推論の切り替えおよびサンプル/本番コードの切り替には "-m" オプションを使用します。 + +**※ sampleコードは基本的に変更せず、[本番用コード](../../game_manager/machine_learning/block_controller_train.py )で開発してください** + +- "-m" オプションに対して下記の引数を渡すことで書くモードを切り替えられる。 + +|オプション名|説明| +| ---- | ---- | +| train_sample| [サンプルコード1](../../game_manager/machine_learning/block_controller_train_sample.py)を用いてDQNによる学習を行う| +| train_sample2| [サンプルコード2](../../game_manager/machine_learning/block_controller_train_sample2.py)を用いてMLPによる学習を行う| +| train| [本番用コード](../../game_manager/machine_learning/block_controller_train.py ) を用いて学習を行う| +| predict_sample| [サンプルコード1](../../game_manager/machine_learning/block_controller_train_sample.py)を用いてDQNによる推論を行う。
実行時に--predict_weight オプションにより重みのパスを選択する必要があります。| +| predict_sample2| [サンプルコード2](../../game_manager/machine_learning/block_controller_train_sample2.py)を用いてMLPによる学習を行う 
実行時に--predict_weight オプションにより重みのパスを選択する必要があります。| +| predict| [本番用コード](../../game_manager/machine_learning/block_controller_train.py ) を用いて学習を行う 
実行時に--predict_weight オプションにより重みのパスを選択する必要があります。| + + +## 2.5 AI関連のその他オプションについて +- AI学習関連のオプションは下記 + +|オプション名|引数|説明| train or predict| +| ---- | ---- | ---- | ---- | +| *--train_yaml* | 学習に用いるyamlファイルのパス|学習に用いるyamlファイルを選択する。|train| +| *--predict_weight* | 推論に用いるweightファイルのパス|推論に用いるweightファイルを選択する|predict| + + +# 3. 強化学習について +[サンプルコード1](../../game_manager/machine_learning/block_controller_train_sample.py)  および [サンプルコード2](../../game_manager/machine_learning/block_controller_train_sample2.py) では強化学習と呼ばれる方法でテトリスをプレイするための最適なパラメータを学習します。 + +![Screenshot](../../doc/pics/rainforcement_learning.png) + + +# 4. パラメータについて +## 4.1 yamlファイルについて +- サンプルコードではyaml ファイルによってハイパーパラメータ(パラメータを学習するためのパラメータ)を設定する。 +- サンプル用yaml ファイルのフォーマットは下記 + +
共通 + +|パラメータ名|説明|型|train or predict|default| +| ---- | ---- | ---- | ---- | ---- | +|**common** |- |- |- |-| +|ft_weight|ファインチューニング(初期値として学習済み
の重みを用いる学習)に用いる重みファイルのパス|str|train|None| +|log_path| tensorboardのログ出力フォルダ名|str|共通|tensorboard| +
+ +
model関連 + +|パラメータ名|説明|型|train or predict|default| +| ---- | ---- | ---- | ---- | ---- | +|**model** |- |- |- |-| +|name|使用するAIモデル名|str|共通|DQN| +|finetune|ファインチューニングするかどうかのフラグ|bool|train|False| +|**state** |- |- |- |-| +|dim|状態の次元数|int|共通|4| +
+ +
学習 + +|パラメータ名|説明|型|train or predict|default| +| ---- | ---- | ---- | ---- | ---- | +|**train** |- |- |- |-| +|optimizer|最適化関数(サンプルではAdamまたはSGDが使用可能)|str|train|Adam| +|lr|学習率|float|train|1.0e-3| +|lr_gamma|更新率(optimizerがSGDの時のみ使用)|float|train|0.1| +|lr_momentum|モーメンタム(optimizerがSGDの時のみ使用)|float|train|0.99| +|lr_step_size|ステップサイズ(optimizerがSGDの時のみ使用)|int|train|1000| +|num_epoch|エポック数(学習するイテレーション数)|int|train|5000| +|num_decay_epochs|ε-greedyのεを最小にするエポック数
(ここからランダム性を下げる。)|int|train|3000| +|initial_epsilon|ε-greedyのεの初期値|float|train|1.0| +|final_epsilon|ε-greedyのεの最小値|float|train|1.0e-3| +|batch_size|バッチサイズ|int|train|512| +|gamma|割引率|float|train|0.99| +|max_penalty|ペナルティの最大値|float|train|-1| +|target_net|TargetNetworkの使用フラグ|bool|train|True| +|target_copy_intarval|TargetNetworkにコピーするインターバル|int|train|500| +|replay_memory_size|Experience replayのreplay bufferのサイズ|int|train|30000| +|double_dqn|Double DQNの使用フラグ|bool|train|True| +|reward_clipping|Reward clippingの使用フラグ|bool|train|True| +|prioritized_replay|Prioritized Experience Replayの使用フラグ|bool|train|True| +|multi_step_learning|Multi step learningの使用フラグ|bool|train|True| +|multi_step_num|Multi step learningのステップ数|int|train|0,100,300,700,1300,-1300
 左から 0列崩し,1列崩し,2列崩し,3列崩し,4列崩し,ゲームオーバー)| +|reward_list|点数に応じた報酬の設定値
(0列崩し,1列崩し,2列崩し,3列崩し,4列崩し,ゲームオーバーの順)|int|train|3| +|reward_weight|点数以外で与えられるペナルティの重み
(隣接する行との高さ差分,最大の高さ,穴の数 の順)
0以上の値が必須|float|train|0.01,0.0,0.01
(左から 隣接する行との高さ差分,最大の高さ,穴の数 )| +
+ +## 4.2 パラメータ調整例(得たい効果とパラメータの関係例) +- 下記にパラメータ調整の方針例を記載する +- それぞれの効果が常に得られるとは限らないので実験を繰り返しながら、最適な値を探してみてください。 +1. ブロックを積み上げる + - reward_listの3列崩し、4列崩しの値を大きくする + - reward_weightの max_heightを小さくする + +2. ゲームオーバの発生を防ぐ(ブロックを積み上げ量を減らす) + - reward_listの3列崩し、4列崩しの値を小さくする + - reward_weightの max_heightを大きくする + +3. 過去の盤面からの影響を小さくする + - gamma(割引率)を大きくする。 + +4. 学習を安定させる + - reward_clipping を Trueにする。 + - target_net を Trueにする + - double_DQN を Trueにする。 + +5. 学習を早くする。(学習するモデルのパラメータを減らす) + - モデルのレイヤ数、カーネルサイズを減らす + - MLPを使用する + +6. 学習を早くする。(効果の高いデータを効率的に学習に使用する) + - prioritized_replay を Trueにする。 + - lr(学習率)を大きくする。(大きすぎると収束しなくなるので注意) + - batch_size を大きくする (学習に使用するメモリ量が大きくなるので注意) + - replay_memory_size (学習に使用するメモリ量が大きくなるので注意) + + +# 5.チュートリアルの実行 +- サンプル用のコードを試すための[チュートリアル用Jupyter-notebook]()../../game_manager/machine_learning/) +を用意しているので、コード理解のためにお使いください。 + +- Jupyter-notebookか下記の手順で使用できます. +- 1. Jupyter-notebookのインストール +``` +pip install jupyter +``` + +- 2. Jupyter-notebookの起動 +``` +jupyter notebook +``` +下記のような画面が、ブラウザで開かれるので +game_manager > machine_learning > model > tutorial +の準備進み、***.ipynb ファイルを開いてください。 +![Screenshot](../../doc/pics/jupyter-sample.png) + +- Jupyter-notebook のセルは Shit+Enter key で実行できます + +- Jupyter-notebook の使い方は下記のサイトなどが参考になります。 +[https://qiita.com/takuyanin/items/8bf396e7b6b051670147](https://qiita.com/takuyanin/items/8bf396e7b6b051670147) + +- venv などの仮想環境を用いている場合は下記のサイトなどが参考になります。 +   +[https://qiita.com/smiler5617/items/e0d9b3034d79457cc253](https://qiita.com/smiler5617/items/e0d9b3034d79457cc253) + +# 6. さらなる強化に向けて +- 第3回での cookie4869 の強化資料を下記で共有いたします。 + +![AI強化資料](../pics/20220920_Tetris_AI.pdf) diff --git a/cloud/sam/scripts/chat_function/data/art.md b/cloud/sam/scripts/chat_function/data/art.md new file mode 100644 index 00000000..7b5004ca --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/art.md @@ -0,0 +1,228 @@ +# artについて + +本ドキュメントではテトリスアートの取り組みについて記載する + +# 概要 + +通常、テトリスは上から落ちてくるブロック(テトリミノ)を操作して、横列を埋めて消していくようにして遊ぶ。 +一方、テトリスアートはブロックでフィールドに模様を描くことを目的とする。(ブロックを消すことを必ずしも目的としない) +詳しくは"テトリスアート"でgoogle検索をしてみて下さい。 + +# 取り組み方 + +1.まず、ブロックでフィールドに描きたい模様をイメージする。 +2.次に、模様がテトリス上で実現可能かどうかを検討する。(作図などがお勧めです) +3.実現可能であればブロックを操作して模様を作成する。 + +3.によりブロックを操作する場合、後述するconfigファイルを使い各ブロックの色や出現順序(index)などを調整できるようにしている。 + +# サンプルコード + +`python start.py`実行時に以下オプションを指定するとサンプルコードが実行される +[youtube-link: tetris art sample](https://www.youtube.com/watch?v=Seh6g9_nL6o) + +`1:onigiri` + +``` +python start.py -l1 -m art --art_config_filepath config/art/art_config_sample1.json +``` + +![Screenshot](../pics/art_sample_onigiri.png) + +`2:manji` + +``` +python start.py -l1 -m art --art_config_filepath config/art/art_config_sample2.json +``` + +![Screenshot](../pics/art_sample_manji.png) + +`3:cartoon charactor` + +``` +python start.py -l1 -m art --art_config_filepath config/art/art_config_sample3.json +``` + +![Screenshot](../pics/art_sample_cartoon.png) + +other sample + +| name | --art_config_filepath | note | +| ---- | ---- | ---- | +| 4:heart | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample4.json | - | +| 5:hamburger_shop | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample5.json | - | +| 6:parking | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample6.json | - | +| 7:team rocket | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample7.json | - | +| 8:happy_new_year_2023 | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample8.json | - | +| 9:taka | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample9.json | - | +| ... | - | - | + +contribution + +| name | --art_config_filepath | thanks | +| ---- | ---- | ---- | +| mario | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample_tanaka_2.json | @tanaken | +| ... | - | - | + +# configファイルの説明 + +テトリスアートを作成し易くするために各ブロックの色や出現順序(index)などをconfigファイルで調整できるようにしている。 +以下はconfigファイルの説明である。 + +art用configファイルサンプル +[config/art/art_config_sample_default.json](https://github.com/seigot/tetris/blob/master/config/art/art_config_sample_default.json) + +``` +{ + // 各ブロックの色を調整する。色についてはカラーコードを参照下さい。 + "color": { + "shapeI": "0xCC6666", + "shapeL": "0x66CC66", + "shapeJ": "0x6666CC", + "shapeT": "0xCCCC66", + "shapeO": "0xCC66CC", + "shapeS": "0x66CCCC", + "shapeZ": "0xDAAA00" + }, + // 各ブロックの出現順序(index)/direction/x/yを調整する。 + // 行を追加することが可能であり、追加すると記載に応じたブロックが出現する。 + "block_order": [ + [1,0,0,1], + [2,0,0,1], + [3,0,0,1], + [4,0,0,1], + [5,0,0,1], + [6,0,0,1], + [7,0,0,1] + ] +} +``` + +ブロックの色については以下のカラーコードを参考にしてください。 + +> [色の名前とカラーコードが一目でわかるWEB色見本 原色大辞典 - HTMLカラーコード](https://www.colordic.org/) + +各ブロックの出現順序(index)/direction/x/yについては以下を参考にしてください。 + +> [ブロック操作用プログラムについて](./block_controller.md) + +# 実行方法 + +以下のように`-m art`,`--art_config_filepath`によりモード及びconfigファイルを指定する。 + +``` +# "art_config_sample.json"を指定して実行 +python start.py -l1 -m art --art_config_filepath config/art/art_config_sample.json + +# 落下速度を早くする場合は"-d500"を加えて実行 +python start.py -l1 -m art --art_config_filepath config/art/art_config_sample.json -d500 +``` + +自作したart用configファイル(`xxx.json`)を作成する場合は以下のようにファイルコピーして使用してください。 + +``` +# 事前にサンプルをコピーしておく(art_config_sample.json --> xxx.json) +cp config/art/art_config_sample.json config/art/xxx.json +# 実行 +python start.py -l1 -m art --art_config_filepath config/art/xxx.json +``` + + +# 作成アルゴリズムの例 +#### ◆2ドットプリンター方式 +横10マスのフィールドにテトリスミノを置いた後に残るブロックの個数は 4n-10m 個です。 +そのためテトリスアートを 4n-10m 個のドットの組み合わせに分解することで楽に作ることができます。 +汎用性が高いのは2ドット残し(32ブロック:n=8, m=3 や 52ブロック:n=13, m=5 など)。 +アートには1行あたり最大9個のドットを置けます。 +そのため基本的に各行を 2\*4 + 1ドットに分解し、余った1同士で2ドットを構成することを目指します。 +``` +2ドットを同じ行に残す場合、その組み合わせは恐らく2205通り(x座標10*9÷2、shape7*7)。 +2ドットを違う行に残す場合、その組み合わせは恐らく4900通り(x座標10*10、shape7*7)。 +アートを構成する2ドットを残せる出現順序 [index,direction,x,y] をあらかじめ用意すれば、config作成の自動化が可能になります。 +``` + + +**Step1:任意の2ドットを残す出現順序をまとめる** +`art_lib.py`: +> [https://github.com/mattshamrock/tetris/blob/art/art_lib.py](https://github.com/mattshamrock/tetris/blob/art/art_lib.py) +xs_0000 ← 同じ行に残す場合。例えば 'xs_5294'なら、x=5にshapeindex=2(Lミノ)、x=9にshapeindex=4(Tミノ)が残る置き方。 +xs_00_00 ← 違う行に残す場合。前半が1行目のx座標とshapeindex、後半が2行目のx座標とshapeindex。 +未発見の場合は False と記載 + +``` +art_lib.pyの現状: +【2023/3/E時点】 + ・'xs_0000'のうち32ブロック使用で実現可能なもの:全探索済み; 後述 + ・'xs_0000'のうち52ブロック以上使用で実現可能なもの:手作業。不完全 + ・'xs_00_00'のうち見つけたもの:手作業。とても不完全 +``` + +`art_lib.py`用の探索アルゴリズム: +> [https://github.com/mattshamrock/tetris/blob/art/artlib_search_32.py](https://github.com/mattshamrock/tetris/blob/art/artlib_search_32.py) +各xs_0000について、32ドット(8ミノ)の出現順序をシミュレートし、指定の2ドットのみが残るかを判定します。 +枝切りをすることで探索時間を減らそうとしています。手元PCでは36時間で半分の約1200通りが出力できます。 +後述の「反転」と組み合わせると約36時間で完了します。 + +`art_lib.py`用の反転アルゴリズム: +> [https://github.com/mattshamrock/tetris/blob/art/artlib_reverse.py](https://github.com/mattshamrock/tetris/blob/art/artlib_reverse.py) +横10マスのテトリスはすべての配置を左右反転させても成り立ちます。 +探索でart_lib.pyを埋めていく際、結果が出た出現順序を反転させれば探索のみで埋める約半分の時間で完了できるはずです。 +注意…基準点ズレの調整が必要な組み合わせが存在します。(例:shape:Sの形状:1 の反転とshape:Zの形状:1 は基準点が1マス違う) + + + + +**Step2:ドットアートを描く** +現状は手作業です +   + + +**Step3:ドットアートを数値に変換する** +ブロックのindex値に変換します。 +Step4の入力に合わせて文字数=10のstrに変換しています。 +空白=0です。 +現状はexcelで作業しています +   + +**Step4:art_lib.pyにある実現可能な2ドットの組み合わせを探索する** +`art_lib.py`の組み合わせ探索アルゴリズム: +> [https://github.com/mattshamrock/tetris/blob/art/create_art.py](https://github.com/mattshamrock/tetris/blob/art/create_art.py) +10個のindex値を2ドットの組み合わせに分解します。 +art_lib.pyでは'xs_0000'の出現順序が未発見の場合にFalseを返すことを利用して、実現可能な2ドットの組み合わせを探索できます。 +1行に奇数個のドット(空白を除く)がある場合、余ったドットのx座標とindex値も返します。これが'xs_00_00'の前半か後半のいずれかになります。 + +  + +**Step5:Step4の結果を調整する** +・'xs_00_00' は余りとして返された情報を基に自力で発見し、`art_lib.py`に追加する必要があります。 +・余りとして返るドットのみで'xs_00_00'が構成されることを前提にしています。そのため各行のドット数(空白を除く)の偶奇によっては成立しません。 +・'xs_0000' において、すぐ下のマスが空白の場合に、そこにハマる形で意図しない結果になる場合があります。左右のマスにブロックがあれば引っ掛かるため回避可能な可能性が高く、その場合は順番を変更することで解決できます。 +   + +**Step6:2ドットの組み合わせをconfigファイルの出現順序に変換する** +Step4-5で得られた 'xs_0000' と 'xs_00_00' の羅列を`art_lib.py`の`artdict`のキーとして利用し、出力します。 +現状は余計な二重括弧 [[]] が入ってきてしまいます。置換等で取り除きます。 +各出力の最後のカンマ , が不足しています。二重括弧と合わせて置換で対応します。 +   + +**Step7:configファイルに転記する** +転記すればOK。 +色の調整は手作業です。 +   + +**今後に向けて:** +・`art_lib.py`の抜けている部分を埋める。52ブロック(13手)以上を効率的に探索する。 +・`art_lib.py`の抜けている部分を埋める。2行に分かれるブロックを効率的に探索する。32マスを8つに分割した結果がテトリスミノの形になるか判定する、という探し方が良い気がする。 +・Step5の調整を自動化する。 +・Step2を自動化する(画像生成AI的な) + + + + + + + +# 参考 +[「テトリス」の斬新すぎる遊び方が話題に。積み上げたブロックでマリオやルイージを再現!?](https://nlab.itmedia.co.jp/nl/articles/1109/13/news025.html) +[色の名前とカラーコードが一目でわかるWEB色見本 原色大辞典 - HTMLカラーコード](https://www.colordic.org/) +[youtube-link: tetris art sample](https://www.youtube.com/watch?v=Seh6g9_nL6o) diff --git a/cloud/sam/scripts/chat_function/data/block_controller.md b/cloud/sam/scripts/chat_function/data/block_controller.md new file mode 100644 index 00000000..e815bf0f --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/block_controller.md @@ -0,0 +1,143 @@ +>本ページでは、[ブロック操作用プログラム](https://github.com/seigot/tetris/blob/master/game_manager/block_controller.py)について説明を追記頂ける方を募集しています。
+>説明の追記方法は、[`Pull Requestを送る`](https://github.com/seigot/tetris#pull-requestを送るoptional)を参照下さい。
+ +# ブロック操作用プログラムについて + +[ブロック操作用プログラム](https://github.com/seigot/tetris/blob/master/game_manager/block_controller.py)では、ボード情報からブロックの次の動作を決定します。
+このファイルの`def GetNextMove`関数にて、ボード情報`GameStatus`を入力として受け取り、次の動作決定用のデータ`nextMove`を返す事でブロックが動く仕様になっています。
+
+以下は、ボード情報`GameStatus`、次の動作決定用のデータ`nextMove`について記載します。
+ +# ボード情報 +ボード情報には以下が含まれます。
+詳細は、[`GameStatus`データ構造](https://github.com/seigot/tetris/blob/master/doc/files/GameStatus.md)や、[サンプルコード](https://github.com/seigot/tetris/blob/master/game_manager/block_controller_sample.py)のようにGameStatusをログ出力することで確認可能です。 + +``` +* field_info : フィールド情報 +* block_info : ブロック情報 +* judge_info : 審判情報 +* debug_info : デバッグ情報 +``` + +# フィールド情報 + +## フィールドの定義 +フィールドは横幅10×高さ22ブロック分の大きさです。
+座標系は、左上を原点(0,0)として、x軸は右側、y軸は下側を正の方向として定義しています。
+ +![Screenshot](../pics/coordinate_difinition.PNG) + +フィールドのデータは、一次元配列として定義しています。
+座標(x, y)のデータは、一次元配列の[x + y * 横幅]番目にアクセスすることで取得可能です。
+
+| | フィールド | 一次元配列 | +| --- | --- | --- | +| データ | ![Screenshot](../pics/field_data.png) | ![Screenshot](../pics/matrix_data.png) | + +## フィールド情報に格納されているデータ + +上記の一次元配列の各座標にブロックが有るか無いかを管理しています。 + +``` +* `0以外` : ブロック有り +* `0` : ブロック無し +``` + +ブロックが有る場合は、各ブロックのIndex値を格納しています。
+Index値はブロック情報を参照下さい。 + +# ブロック情報 + +## ブロックの定義 +ブロックは7種類あり、Index値と初期形状を以下の通り定義しています。
+横移動と回転が可能です。
+回転は時計回りに回転します。ブロックによって1周の回転に必要な回数が異なります。
+ +| | ShapeI | ShapeL | ShapeJ | ShapeT | ShapeO | ShapeS | ShapeZ | +| --- | --- | --- | --- | --- | --- | --- | --- | +| index値 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | +| 初期形状 | ![Screenshot](../pics/ShapeI.png) | ![Screenshot](../pics/ShapeL.png) | ![Screenshot](../pics/ShapeJ.png) | ![Screenshot](../pics/ShapeT.png) | ![Screenshot](../pics/ShapeO.png) | ![Screenshot](../pics/ShapeS.png) | ![Screenshot](../pics/ShapeZ.png) | +| 1周の回転に必要な回数 | 2 | 4 | 4 | 4 | 1 | 2 | 2 | + +## ブロック操作の基準点 +各ブロックには操作の基準となる点(以下、ブロック操作の基準点)があります。
+また、ブロック操作の基準点以外の座標も取得可能です。基準点(x,y)とその周囲の座標は以下のように表します。
+ +![Screenshot](../pics/block_coordinate_difinition2.PNG) + +ブロック毎に操作の基準点(x,y)は異なります。各ブロックの形状毎の基準点とそれ以外の座標は以下の通り。
+ +| | ShapeI | ShapeL | ShapeJ | ShapeT | ShapeO | ShapeS | ShapeZ | +| --- | --- | --- | --- | --- | --- | --- | --- | +| 形状0における操作の基準点(x,y) | ![Screenshot](../pics/I11.PNG) | ![Screenshot](../pics/L11.PNG) | ![Screenshot](../pics/J11.PNG) | ![Screenshot](../pics/T11.PNG) | ![Screenshot](../pics/O11.PNG) | ![Screenshot](../pics/S11.PNG) | ![Screenshot](../pics/Z11.PNG) | +| 基準点とそれ以外の座標 | (x,y-1),(x,y),(x,y+1),(x,y+2) | (x,y-1),(x,y),(x,y+1),(x+1,y+1) | (x,y-1),(x,y),(x,y+1),(x-1,y+1) | (x,y-1),(x,y),(x+1,y),(x,y+1) | (x,y-1),(x+1,y-1),(x,y),(x+1,y) | (x,y-1),(x+1,y-1),(x-1,y),(x,y) | (x-1,y-1),(x,y-1),(x,y),(x+1,y) | +| 形状1における操作の基準点(x,y) | ![Screenshot](../pics/I22.PNG) | ![Screenshot](../pics/L22.PNG) | ![Screenshot](../pics/J22.PNG) | ![Screenshot](../pics/T22.PNG) | --- | ![Screenshot](../pics/S22.PNG) | ![Screenshot](../pics/Z22.PNG) | +| 基準点とそれ以外の座標 | (x-2,y),(x-1,y),(x,y),(x+1,y) | (x-1,y),(x,y),(x+1,y),(x-1,y+1) | (x-1,y-1),(x-1,y),(x,y),(x+1,y) | (x,y+1),(x-1,y),(x,y),(x+1,y) | --- | (x,y-1),(x,y),(x+1,y),(x+1,y+1) | (x+1,y-1),(x,y),(x+1,y),(x,y+1) | +| 形状2における操作の基準点(x,y) | --- | ![Screenshot](../pics/L33.PNG) | ![Screenshot](../pics/J33.PNG) | ![Screenshot](../pics/T33.PNG) | --- | --- | --- | +| 基準点とそれ以外の座標 | --- | (x-1,y-1),(x,y-1),(x,y),(x,y+1) | (x,y-1),(x+1,y-1),(x,y),(x,y+1) | (x,y-1),(x-1,y),(x,y),(x,y+1) | --- | --- | --- | +| 形状3における操作の基準点(x,y) | --- | ![Screenshot](../pics/L44.PNG) | ![Screenshot](../pics/J44.PNG) | ![Screenshot](../pics/T44.PNG) | --- | --- | --- | +| 基準点とそれ以外の座標 | --- | (x+1,y-1),(x-1,y),(x,y),(x+1,y) | (x-1,y),(x,y),(x+1,y),(x+1,y+1) | (x,y-1),(x-1,y),(x,y),(x+1,y) | --- | --- | --- | + +尚、基準点とそれ以外の座標については現在のブロック情報(メソッド`Shape_class.getCoords()`)から取得可能です。
+また、各形状におけるx,y方向の最大長は、現在のブロック情報(メソッド`Shape_class.getBoundingOffsets()`)から取得可能です。
+取得の具体的な実装方法は、[ブロック操作用サンプルプログラム](https://github.com/seigot/tetris/blob/master/game_manager/block_controller_sample.py)を参照ください。 + +## ブロック出現時の初期位置 +ブロックは、ブロック操作の基準点が座標(5,1)になるように出現します。 + +![Screenshot](../pics/init_block_location3.png) + +尚、ブロックの出現時、既に基準点(x, y)にブロックが存在していると`game over`となりフィールドがリセットされます。 + +## ブロック情報に格納されているデータ + +主に以下を格納しています。 + +* `現在のブロック操作の基準点(x,y)` +* `現在のブロックのIndex値` +* `次のブロックのIndex値` + +# 審判情報 + +以下を格納しています。 + +* `経過時間[s]` : ゲーム開始時からの経過時間 +* `スコア[点]` : ゲーム開始時から現在までに獲得した合計スコア +* `ライン数` : ゲーム開始時から現在までに消したラインの数 +* `ゲームオーバー回数` : ゲーム開始時から現在までにゲームオーバーになった回数 + +# デバッグ情報 + +以下等を格納しています。 + +* `スコア内訳` : 合計スコア(消したライン、落下ボーナス)の内訳 + +その他、詳細はコード上のGameStatusを参照下さい。 + +# 次の動作決定用のデータ + +以下のデータを、次の動作決定用のデータ`nextMove`に与えることで次の動作を決定します。
+`nextMove`は辞書型のデータであり、`nextMove["strategy"]`以下の各値に応じてブロックが動きます。
+ +* `direction` : 現在の形状から時計回りに何回回転するか(範囲:0〜(1周の回転に必要な回数-1) ) +* `x` : x座標のどの位置に移動するか(範囲:0-9、x座標の絶対値を指定する) +* `y_operation` : y座標方向の操作(1:落下、0:移動) +* `y_moveblocknum` : y座標方向に移動する場合、y座標に何ブロック分移動するか(範囲:1-21) + +![Screenshot](../pics/nextMove.PNG) +
+(今後ルール変更がある場合は、ルールに応じて`nextMove`もアップデートしていく予定です。) + +# HOLD機能 + +HOLD機能とは、ブロックを保持する機能です。この機能を使うと現在のブロックがHOLD扱いになります。
+その後、もし保持しているブロックがない場合は次のブロックが落ちてきます。
+もし保持しているブロックが既にある場合はそのブロックが再び落ちてきます。
+ +プログラムから使用する場合は`nextMove["strategy"]`の以下の値を調整してください。
+* `use_hold_function` : HOLD機能を使うかどうか("y":使う、"n":使わない)
+ +![Screenshot](../pics/holdfunction.PNG) + +# 使用例 +[ブロック操作用サンプルプログラム](https://github.com/seigot/tetris/blob/master/doc/files/block_controller_sample.md)を参照ください。 diff --git a/cloud/sam/scripts/chat_function/data/block_controller_sample.md b/cloud/sam/scripts/chat_function/data/block_controller_sample.md new file mode 100644 index 00000000..f0af3569 --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/block_controller_sample.md @@ -0,0 +1,78 @@ +>本ページでは、[ブロック操作用サンプルプログラム(block_controller_sample.py)](https://github.com/seigot/tetris/blob/master/game_manager/block_controller_sample.py)について説明を追記頂ける方を募集しています。
+>説明の追記方法は、[`Pull Requestを送る`](https://github.com/seigot/tetris#pull-requestを送るoptional)を参照下さい。
+ +# ブロック操作用サンプルプログラム + +実行方法 + +``` +python start.py -m sample +``` + +一般的に、テトリスは他ゲーム同様に組合せ最適化問題と捉える事が可能であり、過去に様々なアルゴリズムが提案されている。(例えば下記)
+- [ニューラルネットワークと遺伝的アルゴリズムを用いた テトリスコントローラの開発](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwiKn83IqIPxAhWSK5QKHUWVC0cQFjACegQIAxAD&url=https%3A%2F%2Fipsj.ixsq.nii.ac.jp%2Fej%2F%3Faction%3Drepository_action_common_download%26item_id%3D109968%26item_no%3D1%26attribute_id%3D1%26file_no%3D1&usg=AOvVaw0ic6uDC29wGYWl8KKIL8P3) +- [テトリスにおけるAIの開発](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwiKn83IqIPxAhWSK5QKHUWVC0cQFjAEegQIDhAD&url=https%3A%2F%2Fwww.info.kindai.ac.jp%2F~takasi-i%2Fthesis%2F2016_13-1-037-0113_S_Kawahara.ppt&usg=AOvVaw1tik6miknSKem4wE5bmpFP) +- [Tetris is Hard, Even to Approximate](https://arxiv.org/pdf/cs/0210020.pdf) +- ... + +本リポジトリはプログラミング練習と共に、探索アルゴリズムの仮説検証にも利用できるようにしている。
+サンプルプログラムでは、一般的な探索アルゴリズムでの基本部分となる、現在ブロックの探索方法、盤面評価を簡潔に実装している。
+ +## step1.探索方法 + +[ブロック操作用サンプルプログラム](block_controller_sample.py)の`def GetNextMove(self, nextMove, GameStatus):`関数の、
+`for direction0 in CurrentShapeDirectionRange:` +`for x0 in range(x0Min, x0Max):`部分が該当する。
+ここでは現在のブロックの情報(以下)を使って全探索を行っている。
+- 現在のブロックが回転できる回数
+- 現在のブロックが移動できるx軸方向の移動量
+ +![Screenshot](../pics/search_method_sample.PNG) + +一般的に、考慮すべき組み合わせが多くなると[ゲーム木](https://ja.wikipedia.org/wiki/ゲーム木)を利用した探索範囲の効率化が行われる。
+今回も1秒(1フレーム更新頻度)以内に次の手を決める必要があり、状況によってはゲーム木の採用が必要と思われる。
+ただ、サンプルコードでは簡潔に理解できることを優先し、現在のブロックを用いた全探索を採用している。
+ +## step2.盤面評価 + +[ブロック操作用サンプルプログラム](block_controller_sample.py)の`def GetNextMove(self, nextMove, GameStatus):`関数の、
+` EvalValue = self.calcEvaluationValueSample(board)`部分が該当する。
+
+ここでは以下を考えた盤面評価を行っている。
+- 仮に現在のブロックを探索候補箇所に置いた時、消せるブロックが多いほど良い。
+- 同様に、穴ぼこや孤立したブロックが少ないほど良い。
+- 同様に、高さにばらつきが少ないほど良い。
+ +![Screenshot](../pics/board_evaluate_method_sample2.PNG) + + +`EvalValue = self.calcEvaluationValueSample(board)`内では以下のような変数を扱っている。
+[block_controller_sample.py#L140](https://github.com/seigot/tetris/blob/c7f1c540f7d0cd1aa6daeb1e5917d18be35895f5/game_manager/block_controller_sample.py#L140) + +``` +BlockMaxY:あるX座標のブロックの高さが入る +holeCandidates:あるX座標の穴候補の数 +holeConfirm:あるX座標の確定した穴の数(下から"穴","穴",”ブロック”,"穴","穴",”ブロック”,"なし","なし",”なし”・・・の場合は4) +nIsolatedBlocks:下がブロックなしのブロックの総数 +fullLines:あるY座標の横一列全部にブロックがあったら1が加算される(最大値は4) +nHoles += abs(x):各X座標の穴の数の合計値 +absDy += abd(x):でこぼこ具合を表現している。となりの列との高さの差分を合計して、値が大きい=ブロックの高さが凸凹してる +``` + +しかし、サンプルプログラムの方法では盤面に穴が残る事がまだまだ多い。
+ +# サンプルプログラムの課題 + +上記の通りサンプルプログラムは最小限の機能しかなく、いくつか課題が存在する。 + +- 数手先読み探索 + - サンプルプログラムでは探索時に現在のブロックしか考慮できていない。次のブロックや以降を考慮する方が良いはず。 +- 盤面評価の改良 + - サンプルプログラムでは目先の1ブロック消す事を優先している。4ブロック消すための手を選択できていない。 + - サンプルプログラムの手法では盤面に穴が残る事がまだまだ多い。 +- 最適解を人が考える必要がある。 + - AIのように自ら学習する方が楽に最適解を得られる可能性がある。 + +上記を解決するとより高いスコアが獲得できると思われる。
+以下の先行文献によるとサンプルプログラムで採用しているパラメータ以外も利用しており、改良の余地がある事は間違いない。
+[ニューラルネットワークと遺伝的アルゴリズムを用いた テトリスコントローラの開発](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwiKn83IqIPxAhWSK5QKHUWVC0cQFjACegQIAxAD&url=https%3A%2F%2Fipsj.ixsq.nii.ac.jp%2Fej%2F%3Faction%3Drepository_action_common_download%26item_id%3D109968%26item_no%3D1%26attribute_id%3D1%26file_no%3D1&usg=AOvVaw0ic6uDC29wGYWl8KKIL8P3) diff --git a/cloud/sam/scripts/chat_function/data/board_manager.md b/cloud/sam/scripts/chat_function/data/board_manager.md new file mode 100644 index 00000000..45db3a04 --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/board_manager.md @@ -0,0 +1,250 @@ +>本ページでは、[ボード管理用プログラム](https://github.com/seigot/tetris/blob/master/game_manager/board_manager.py)について説明を追記頂ける方を募集しています。
+>説明の追記方法は、[`Pull Requestを送る`](https://github.com/seigot/tetris#pull-requestを送るoptional)を参照下さい。
+ +# ボード管理用プログラムについて + +ここでは [board_manager.py](../../game_manager/board_manager.py) の解説を行う。 + +このファイルにはテトリミノの 形状、回転方向を担う Shape Class と、画面ボードの各種処理を行う BoardData Class がある。 +block_controller.py 側からもよく使うメソッドが多いので解説を書いておく。 + +## Shape Class + +ここでは、[board_manager.py](../../game_manager/board_manager.py) の Shape Class について解説する。 +Shape Class は下記テトリミノの形状について保持しているクラスである。 + +| | ShapeI | ShapeL | ShapeJ | ShapeT | ShapeO | ShapeS | ShapeZ | +| --- | --- | --- | --- | --- | --- | --- | --- | +| index値 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | +| 初期形状 | ![Screenshot](../pics/ShapeI.png) | ![Screenshot](../pics/ShapeL.png) | ![Screenshot](../pics/ShapeJ.png) | ![Screenshot](../pics/ShapeT.png) | ![Screenshot](../pics/ShapeO.png) | ![Screenshot](../pics/ShapeS.png) | ![Screenshot](../pics/ShapeZ.png) | +| 1周の回転に必要な回数 | 2 | 4 | 4 | 4 | 1 | 2 | 2 | + +詳細は、[ブロック情報](block_controller.md#ブロック情報) に詳しく記載がある。 + +### getRotatedOffsets method + +getRotatedOffsets メソッドは テトリミノ形状を回転した基準座標からの相対座標を返します。 +引数として direction テトリミノ回転方向を指定する。 + +[ブロック操作の基準点](block_controller.md#ブロック操作の基準点)の形状番号を direction で指定すると、ここで書かれている相対座標が返される。 + +### getCoords method + +getCoords メソッドは さらに x,y を引数に持ち、x,y を基準点に置いたテトリミノの絶対座標を返す。 + +### getBoundingOffsets method + +getBoundingOffsets メソッドはテトリミノの基準点からの最大 x, y 最小x, y を取得する。 +direction で回転方向を指定し、minX, maxX, minY, maxY が返ってくる。 + + + + + + +## BoardData Class + +ここでは、[board_manager.py](../../game_manager/board_manager.py) の BoardData Class について解説する。 +BoardData Class は画面ボードに配置されているテトリミノ情報が格納されており、画面ボードの処理はこの Class において行う。 + +### 画面ボード情報取得系メソッド + +#### getData method + +現状の画面ボードデータを返す。一次元配列である。 + + + +### テトリミノ情報取得関係メソッド + +#### getDataWithCurrentBlock method + +画面ボードデータコピーし動いているテトリミノデータを付加し、その画面ボードデータを返す。 + + +#### getValue method + +引数として x,y を指定し画面ボード上のその座標のテトリミノの有無(およびその種類)を返す。 +返り値は Shape Class の index値。何もないなら 0。 + + + +#### getCurrentShapeCoord method + +direction (回転状態)のテトリミノ座標配列を取得し、それをx,yに配置した場合の座標配列を返す + + + +#### getShapeListLength method + +予告テトリミノ配列の長さを返す + + + +#### getShapeDataFromShapeClass method + +テトリミノクラスデータ, テトリミノ座標配列、テトリミノ回転種類を返す + +引数 + + ShapeClass ... Shape のオブジェクト + +返値 + + ShapeClass ... Shape のオブジェクト + ShapeIdx ... Shape Class の index値 + ShapeRange ... Shape Class の回転方向配列。Oミノなら (0,) Lミノなら (0,1,2,3)。 + + + +#### getShapeData method + +テトリミノの index 番号から shape オブジェクトを返す + +引数 + + ShapeNumber ... テトリミノの index + +返値 + + ShapeClass ... Shape のオブジェクト + + + + + +### HOLD 関係 + +#### getholdShapeData method + +ホールドしている Shape オブジェクトを返す + + + + + +### ART 関係 + +#### getcolorTable method + +colorTableを返す + + + +#### getnextShapeIndexListDXY method + +index を指定して、nextShapeIndexList の d, x, y を返す + +引数 + + index + +返値 + + d + x + y + + + + + + +### ゲームターン進行関係メソッド + + +#### mergePiece method + +画面ボードに固着したテトリミノを書き込む + + +#### getNewShapeIndex method + +次のテトリミノの index 取得 + +#### createNewPiece method + +画面ボード上に新しいテトリミノの配置。配置できなかったら False を返す。 + + +#### tryMoveNext method + +direction 方向で x,y へ2回配置して動かせなかったら Reset + + +#### exchangeholdShape method + +HOLD 入れ替え + +#### removeFullLines method + +画面ボードの消去できるラインを探して消去し、画面ボードを更新、そして消した Line を返す + + + + + + + + +### テトリミノ配置確認関係メソッド + +#### tryMoveCurrent method + +テトリミノを direction 方向で x,y に動かせるかどうか確認する +動かせない場合 tryMove メソッドを使い False を返す + + +#### tryMove method + +direction (回転状態)のテトリミノ座標配列を取得し、それをx,yに配置可能か判定する +配置できない場合 False を返す + +#### moveDown method + +テノリミノを1つ落とし消去ラインとテトリミノ落下数を返す + +#### dropDown method + +テトリミノを一番下まで落とし消去ラインとテトリミノ落下数を返す + +#### moveLeft method + +左へテトリミノを1つ動かす +失敗したら False を返す + +#### moveRight method + +右へテトリミノを1つ動かす +失敗したら False を返す + +#### rotateRight method + +右回転させる +失敗したら False を返す + + +#### rotateLeft method + +左回転させる +失敗したら False を返す + + + + + + + +### 初期配置関係メソッド + + +#### clear method + +画面ボードと現テトリミノ情報をクリア + +#### addobstacle method + +初期障害物配置。Level3 Level4 用。 + + + diff --git a/cloud/sam/scripts/chat_function/data/docker.md b/cloud/sam/scripts/chat_function/data/docker.md new file mode 100644 index 00000000..8e30c67e --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/docker.md @@ -0,0 +1,75 @@ +# Tetris Game docker + +## step0. docker をインストールする + +[Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu)
+[Install Docker Desktop on Mac](https://docs.docker.com/docker-for-mac/install/)
+[Install Docker Desktop on Windows](https://docs.docker.com/docker-for-windows/install/)
+ +## step1. docker コンテナを起動する + +tetris ディレクトリで以下を実行する。 + +``` +docker-compose up +``` + +`pytorch`インストール済コンテナを使いたい場合、上記の代わりに以下を実行する。
+ +``` +docker-compose -f docker-compose.pytorch.yaml up +``` + +## step2. docker コンテナにアクセスする + +コンテナ内に入ってターミナルを起動 + +``` +docker exec -it tetris-container bash +``` + +## step3. 起動ホスト OS 側で GUI 起動のための準備 + +docker コンテナ内でテトリスプログラムを実行する場合、GUI を表示させるためにはホスト OS 側で[x サーバ](https://qiita.com/kakkie/items/c6ccce13ce0beaefaad1)を起動する必要があります。 +x サーバの起動方法は以下を参照してください。 + +- Windows→[こちら](./README.xserver.md#Windows-の場合) +- Linux→ + +## step3'. GUI なしでテトリスプログラムを実行 + +GUI の起動が必要ない場合には先程立ち上げたコンソールかたコンテナ内の環境変数`QT_QPA_PLATFORM`を`offscreen`に設定します。 + +``` +export QT_QPA_PLATFORM=offscreen +``` + +## step4. テトリスプログラムの実行 + +`/tetris`にいることを確認し、以下を実行 + +``` +python start.py +``` + +テトリスの画面が表示されれば無事完了です。 + +## コンテナの停止 + +ホスト OS 側の tetris ディレクトリから以下を実行する。 + +``` +docker-compose stop +``` + +この場合には、コンテナは削除されずに残ります。 + +## コンテナの停止、削除 + +ホスト OS 側の tetris ディレクトリから以下を実行する。 + +``` +docker-compose down +``` + +この場合には、コンテナは削除されます。 diff --git a/cloud/sam/scripts/chat_function/data/game_manager.md b/cloud/sam/scripts/chat_function/data/game_manager.md new file mode 100644 index 00000000..ecd6ba99 --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/game_manager.md @@ -0,0 +1,131 @@ +>本ページでは、[ゲーム管理用プログラム](https://github.com/seigot/tetris/blob/master/game_manager/game_manager.py)について説明を追記頂ける方を募集しています。
+>説明の追記方法は、[`Pull Requestを送る`](https://github.com/seigot/tetris#pull-requestを送るoptional)を参照下さい。
+ +# ゲーム管理用プログラムについて + +## [start.py](../../start.py) の Option 設定 + +ここでは [start.py](../../start.py) で指定する option について解説する。 + +#### -m --mode モード + default : ルールベース + train : AI学習 + predict : AI 推論(予測実行) + predict_sample : AI MLP 推論(予測実行) + predict_sample2 : AI DQN 推論(予測実行) + keyboard : キーボード操作 + gamepad : ゲームパッド操作 +#### -l --game_levelレベル + 1 : Level 1 固定テトリミノ + 2 : Level 2 ランダムテトリミノ + 3 : Level 3 初期ブロックありテトリミノ + 4 : Level 4 初期ブロックありテトリミノ 0.001秒更新 +#### -d --drop_interval 更新間隔 + default => 1000 (=1秒) + ms 指定 + ※ テトリミノを DROP すれば この時間待てば次のテトリミノが出るが、降下だけさせた場合は次の操作ができるまでこの時間分停止する。 + ※ Level 4指定した場合は無効 +#### -t --game_time ゲーム時間 + default => 180 + 秒指定 + -1 で制限なし 学習時は -1 指定推奨。 +#### -r --random_seed 乱数のタネ + 整数指定。特別に必要なければ指定しない。 +#### -f --resultlogjson + default => result.json + 結果の json ファイル指定 +#### --train_yaml + default => config/default.yaml + AI 学習推論時 (train, predict)の設定ファイル指定 +#### --predict_weight + default => outputs/latest/best_weight.pt + AI 推論時 (predict) の学習結果 weight ファイル指定 + +## Game_Manager Class + +ここでは [game_manager.py](../../game_manager/game_manager.py) の Game_Manager Class を解説する。 + +### 概要 + +最初に start.py から呼び出される。このゲームの基本的な動作はこのクラスから各クラス、メソッドを実行することによって行われる。 + +### 初期化 + +\_\_init\_\_ にて Option や初期設定値を各インスタンス変数に格納する。 +\_\_init\_\_ にある initUI メソッドにて、Window 生成、位置設定表示が行われる。ここで SidePanel Class, Board Class のインスタンスも生成される。 +initUI の中の start メソッドで、スコア、画面ボード、予告テトリミノ、ステータスバーがクリアされる。また、この中で timerEvent も生成される。timerEvent の間隔は上記の drop_interval となる。これにより次の操作が可能となる。 + +### timerEvent method + +上記の初期化により timerEvent が drop_interval オプションにて指定された間隔で実行される。 +この Event によりゲームが進行していく。 +なお、timerEvent メソッド実行中に drop_interval 指定の時間を超えても、次の timerEvent は発生しない。 +よって、drop_interval が非常に短い (1ms など = Level 4) の場合は、timerEvent のロスが多発する。 +そういったルールの場合はいかに早く timerEvent を終了させるかが肝となる。 + +timerEvent において各 mode に対応する [block_controller.py](block_controller.md) (or block_controller_train*.py) の GetNextMove が呼び出される。 +ここで、[GameStatus](GameStatus.md) が GetNextMove に引き渡され、各自のプログラムで指示した操作結果が nextMove 変数に格納される。 + +この結果をもって、テトリミノのホールド、横移動、回転、落下、降下処理を行う。 + +ホールドはホールド画面のテトリミノとの入れ替えを行う。ただし、ホールド画面に何もない場合はホールド画面に現テトリミノを入れて timerEvent を終了する。 + +横移動は画面ボードの端やテトリミノにぶつかると停止する。 + +回転は**右回転** (rotateRight)で行い、画面ボードの端やテトリミノにぶつかるとエラーとなりtimerEvent無効となるので要注意である。 + +降下 (move down) 処理の場合は指定数分降下させる。 + +落下 (drop down) 処理が行われると、ただちにテトリミノは一番低いところまで落とされ、テトリミノは固定される。 + +いずれにしてもテトリミノの下側が画面ボード下限かテトリミノに当たっている場合は、消去ライン数計算(moveDown)とスコア計算(UpdateScore)が実施され、次の timerEvent では次のテトリミノが出る。 +なお、ゲームオーバーになればゲームオーバー分のスコアを減らされれ、画面ボードをクリアして次の timerEvent となる。 + + +### keyPressEvent method + +下記キー操作により Event が発生しテトリミノを操作する。 +なお、GetNextMove で指定する場合とことなり**左回転** (rotateLeft) である点に注意が必要である。 + +| 手動操作 | PC操作準拠 | ゲーム機コントローラ準拠 | +| ---- | ---- | ---- | +| 実行コマンド | python start.py -m keyboard | python start.py -m gamepad | +| *up* key | **左回転** | 落下 | +| *left* key | 左に移動 | 左に移動 | +| *right* key | 右に移動 | 右に移動 | +| *m* key | 降下(下に移動) | 降下(下に移動) | +| *space* key | 落下 | **左回転** | +| *P* key | Pause | Pause | +| *c* key | hold | hold | + +## SidePanel Class + +ここでは [game_manager.py](../../game_manager/game_manager.py) の SidePanel Class を解説すr。 +横の予告テトリミノ、およびホールドテトリミノ描画画面 Class である。 + + + +### paintEvent method + +ここでは上記のように 4つの予告テトリミノを描画する。 +また、下にホールド画面がありそこでホールドしたテトリミノも表示される。 +timerEvent や keyEvent などにより呼び出され描画される。 + +## Board Class + +ここでは [game_manager.py](../../game_manager/game_manager.py) の Board Class を解説する。 +ゲームの画面ボードおよびステータスバーの Class である。 + + + +### paintEvent method + +ここでは縦22,横10の画面ボードを描画する。 +固定されたテトリミノおよび動作中のテトリミノを描画する。 + +### updateData method + +ステータスバーの文字の更新を行う。 +また、 game_time 経過、もしくはブロック数上限に達したらプログラムを終了し、Result を表示する。 +学習モードで game_time を -1 にしていないと、ここで終了してしまう。 + diff --git a/cloud/sam/scripts/chat_function/data/install_mac.md b/cloud/sam/scripts/chat_function/data/install_mac.md new file mode 100644 index 00000000..5466ff12 --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/install_mac.md @@ -0,0 +1,39 @@ +# 実行環境(Macの場合) + +Finder→Application→Utility→Terminalから、ターミナル画面を起動して以下コマンドを実行する。
+ +``` +# install pyqt5 and NumPy +brew install python3 +brew install pyqt5 +brew install numpy +#pip3 install pyqt5 +#pip3 install numpy +# install other packages +brew install git +``` + +Mac(M1)環境等では`pip3 install pyqt5`でエラーになることがある。`brew`を使うことで解決することがある。 +[Mac(M1)にpip3 install pyqt5でpyqt5をインストールしようしようとするとエラーになる(Preparing metadata (pyproject.toml) ... error)](https://qiita.com/seigot/items/c779d187982268cf8b12) + +``` +brew install pyqt5 +``` + +`pytorch`を使う場合は以下のようにすればOK +[MacBook Pro (Apple Silicon, M1 PRO, 2021) でPython開発環境を整える #49](https://github.com/seigot/tetris/issues/49) +[AIについて]([https://github.com/seigot/tetris/blob/master/doc/files/install_mac.md](https://github.com/seigot/tetris/blob/master/doc/files/ai.md) + +``` +# install +pip3 install -U pip +pip3 install torch +pip3 install tensorboardX +python3 -c "import torch" +# 実行例 (詳細は"AIについて"リンク参照) +python3 start.py -m train_sample -d 1 -l 2 -t -1 +python3 start.py -m predict_sample -l 2 --predict_weight weight/DQN/sample_weight.pt +``` + +もし他にも足りないことがあれば`pull request`頂けると助かります + diff --git a/cloud/sam/scripts/chat_function/data/install_ubuntu.md b/cloud/sam/scripts/chat_function/data/install_ubuntu.md new file mode 100644 index 00000000..dcd9a70a --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/install_ubuntu.md @@ -0,0 +1,25 @@ +# 実行環境(Ubuntu/JetsonNanoの場合) + +Need python3, PyQt5 and NumPy to be installed. + +``` +# install pyqt5 and NumPy +sudo apt-get install -y python3-pip +pip3 install --upgrade pip +pip3 install numpy +pip3 install pyqt5 +``` + +その他、パッケージのインストール + +``` +sudo apt-get install -y git +``` + +ubuntu20.04LTS以降の場合は`python`コマンドを使うために以下を実行する + +``` +sudo apt install python-is-python3 +``` + +その後は、実行方法を参照 diff --git a/cloud/sam/scripts/chat_function/data/install_windows.md b/cloud/sam/scripts/chat_function/data/install_windows.md new file mode 100644 index 00000000..e9bc26ba --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/install_windows.md @@ -0,0 +1,39 @@ +# 実行環境(windowsの場合) +docker for windowsを使います。
+ +### step0. DockerDesktopのインストール + +以下を参照する。
+[DockerDeskop](https://docs.docker.com/docker-for-windows/install)
+[Windows10用Windows Subsystem for Linuxのインストール ガイド](https://docs.microsoft.com/ja-jp/windows/wsl/install-win10) + +以下にインストール時のトラブルシューティングをまとめました。
+[FAQ/Windows Docker install時のトラブルシューティング](https://github.com/seigot/tetris/blob/master/doc/files/FAQ.md#windows-docker-install%E6%99%82%E3%81%AE%E3%83%88%E3%83%A9%E3%83%96%E3%83%AB%E3%82%B7%E3%83%A5%E3%83%BC%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0) + +### step1. パワーシェル上でコンテナを起動する
+ +`Windowsボタン`から`Windows PowerShell`を起動してterminalから以下実行する。
+コンテナのダウンロード〜起動が完了するまで少し待つ。
+ +``` +docker run -p 6080:80 --shm-size=512m seigott/tetris_docker +``` + +### step2. ブラウザからdockerコンテナにアクセスする + +``` +localhost:6080 +``` + +アクセスできたら以下により動作検証する + +左下アイコン --> system tools --> terminator + +Terminalを立ち上げて以下を実行 + +``` +cd ~/tetris +python start.py +``` + +注意)パワーシェルを閉じたり電源OFFするとコンテナも終了します。作成中データが失われないよう注意してください。 diff --git a/cloud/sam/scripts/chat_function/data/install_windows_powershell.md b/cloud/sam/scripts/chat_function/data/install_windows_powershell.md new file mode 100644 index 00000000..82679465 --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/install_windows_powershell.md @@ -0,0 +1,205 @@ +# windowsのpowershellを使ってテトリス環境を構築する + +### powershellとは + +windowsで利用できる、コマンドラインインターフェース。 +「Windows」+「S」で検索ボックス"powershell"と入力すると見つかるはず。 +> [Windows10 - PowerShell(パワーシェル)の開き方](https://www.curict.com/item/f0/f0f6ab0.html) + +## 1. git のインストール + +### Windows Package Manager(winget)がある場合 + +[Windows Package Manager(winget)](https://www.microsoft.com/ja-jp/p/app-installer/9nblggh4nns1?activetab=pivot:overviewtab)があることを確認する。 +powershellを起動して以下を実行すれば確認できる。 + +``` +winget --version +## v1.1.13405 等と出力されれば、Windows Package Manager(winget)がある +``` + +gitをインストールする。 + +``` +winget install Git.Git +## もし y/n と出る場合は、y と入力する。y=yes という意味である。 +``` + +新しくpowershellを起動し、以下を実行して結果が表示されればOK + +``` +git --version +## ex.) git version 2.34.1.windows.1 等と出力されればOK(最新バージョンであればOK) +``` + +### 上記でインストールができない場合 + +上記でインストールができない場合は、公式サイトのインストーラーを使う。以下をダウンロードする。 + +> [git Downloading Git](https://git-scm.com/download/win) +> 64-bit Git for Windows Setup + +以下の「Gitのインストール」部分記載の通り、インストールを進める。以下の記載部分は選択が必要。 + +> Windows 10 と Powershell(WSL含む) で git を利用する +> https://qiita.com/kerobot/items/78372640127771f92ee0#git-%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB +> > コマンドラインやPowerShellなどからGitのコマンドを利用するため「Git from the command line and also from 3rd-party software」を選択します。 + +powershell上で以下を実行して結果が表示されればOK + +``` +git --version +## ex.) git version 2.34.1.windows.1 等と出力されればOK(最新バージョンであればOK) +``` + +## 2. python のインストール + +### microsoft storeからインストールする + +powershell上で以下を実行、もしくは`microsoft store`上で`python`と検索し、インストールページからインストールする。 + +``` +python +``` + +![Screenshot](../pics/python3.10.msstore.png) + +新しくpowershellを起動し、以下を実行して結果が表示されればOK + +``` +python --version +## ex.) Python 3.10.9 等と出力されればOK(最新バージョンであればOK) +``` + +### 古いバージョンのpythonが表示される場合 + +過去に古いバージョンのpythonをインストールしている場合にそちらが優先される可能性がある。 +「Windows」+「python」で検索ボックスから古いpythonバージョンをアンインストールして再度新しいpythonをインストールすると解決することがある。 + +### 上記でインストールができない場合 + +上記でインストールができない場合は、公式サイトのインストーラーを使う。 +以下記事を参照し、パッケージのダウンロード~PowerShellの環境設定までを実施する + +> [Windows版Pythonのインストール](https://www.python.jp/install/windows/install.html) + +2023.1時点ではpythonのバージョン3.10.9が利用し易そうである。 +この場合は、以下のダウンロードリンクからインストーラ(`.exe`)を取得するとよい。 + +> [非公式Pythonダウンロードリンク](https://pythonlinks.python.jp/ja/index.html) + +特に以下の点を忘れずに実施する。 + +> > "Add Python 3.x to PATH" をチェックするのを忘れないようにしてください。 +> > もし忘れたら、あわてず落ち着いてもう一度インストールしましょう。何度でも繰り返して大丈夫です。 +> +> > PowerShellの環境設定¶ +> > PowerShellでスクリプトの実行を許可しておきます。 +> > スタートメニューで Windows PowerShell | Windows PowerShell を起動し、次のコマンドを実行します。 +> Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force + +powershell上で以下を実行して結果が表示されればOK + +``` +python --version +## ex.) Python 3.10.9 等と出力されればOK(最新バージョンであればOK) +``` + +## 3. powershellからtetrisを実行する + +powershellを新たに起動する +(「Windows」+「S」で検索ボックス"powershell"と入力すると見つかるはず。見つかったらクリックして起動する。) + + +バージョンを確認する +ここでバージョンが何も表示されなければインストールが成功していないため、インストールからやり直す + +``` +git --version +## ex.) git version 2.34.1.windows.1 等と出力されればOK(最新バージョンであればOK) +python --version +## ex.) Python 3.10.9 等と出力されればOK(最新バージョンであればOK) +``` + +必要なパッケージをインストールする + +``` +pip install pyqt5 +pip install numpy +``` + +以下の通り実行し、tetrisが表示されればOK + +``` +cd ~ +mkdir work +cd work +git clone https://github.com/seigot/tetris +cd tetris +python start.py # ここでtetrisが表示されればOK +``` + +プログラム内部の説明については以下など参照ください + +[ブロック操作用サンプルプログラムについて](./block_controller_sample.md) +[AIについて](./ai.md) +[tetris artについて](./art.md) +[README.md](https://github.com/seigot/tetris#%E5%AE%9F%E8%A1%8C%E6%96%B9%E6%B3%95) + +### option. エディタのインストール + +最近流行りのエディタである`visual studio code`をインストールしておくと後のコード編集に便利である +powershell上でwingetが使える場合は以下を実行、 + +``` +# powershell上でwingetが使える場合 +winget install vscode +``` + +もしくは`microsoft store`上で`visual studio code`と検索し、インストールページからインストールする。 + +![Screenshot](../pics/vscode.msstore.png) + +powershell上で以下を実行して`vscode`と対象のコードが表示されればOK + +``` +# cd ~/work/tetris 等で事前にcloneした場所に移動しておく +code game_manager/block_controller.py +``` + +### `python start.py`実行後にtetrisが表示されない場合 + +実行環境の違いにより`python start.py`実行後にtetrisが表示されないことがたまにある。 +この場合はwarningやエラーログが出力されるはずなので、以下の実行成功時のログと比較すると解決に近づくと思われる。 + +``` +# (例)実行成功時のログ +$ python start.py +game_level: 1 +game_time: 180 +RANDOM_SEED: 0 +IS_MODE :default +OBSTACLE_HEIGHT: 0 +OBSTACLE_PROBABILITY: 0 +USER_NAME: window_sample +SHAPE_LIST_MAX: 6 +BLOCK_NUM_MAX: -1 +RESULT_LOG_JSON: result.json +TRAIN_YAML: config/default.yaml +PREDICT_WEIGHT: outputs/latest/best_weight.pt +Python 3.7.1 +CompletedProcess(args='python --version', returncode=0, stderr='') +=================================================> +...(以降、tetrisデバッグ情報が表示される) +``` + +## 参考 +[git Downloading Git](https://git-scm.com/download/win) +[Windows 10 と Powershell(WSL含む) で git を利用する](https://qiita.com/kerobot/items/78372640127771f92ee0#git-%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB) +[Windows版Pythonのインストール](https://www.python.jp/install/windows/install.html) +[非公式Pythonダウンロードリンク](https://pythonlinks.python.jp/ja/index.html) +[WindowsPowerShellでPythonを利用する](https://bluebirdofoz.hatenablog.com/entry/2019/01/19/141007) +[GNU Emacs for Windows再入門](https://emacs-jp.github.io/tips/emacs-for-windows) +[visual studio codeをinstall](https://azure.microsoft.com/ja-jp/products/visual-studio-code/) +[WindowsにBashをインストールする方法](https://lab.sonicmoov.com/development/windows-bash/) +[Windows Subsystem for Linuxが表示されない](https://qiita.com/taraka/items/0b5919ac8ee02d81f7ff) diff --git a/cloud/sam/scripts/chat_function/data/install_windows_wsl.md b/cloud/sam/scripts/chat_function/data/install_windows_wsl.md new file mode 100644 index 00000000..c8f803f9 --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/install_windows_wsl.md @@ -0,0 +1,81 @@ +# 実行環境 (Windows WSLを使う場合) + +Windows WSLを使って開発環境を立ち上げる方法を説明する。 +Dockerを使う方法と比較して、Dockerが不要な点と、Dockerコンテナ終了でデータが失われることを気にする必要が無い特長がある。 + +## Step 1. WSLのインストール + +- 以下を参照してインストールする。 + - [Windows10用Windows Subsystem for Linuxのインストール ガイド](https://docs.microsoft.com/ja-jp/windows/wsl/install-win10) + +### a. WSL1でインストールする場合(簡単) + +- 上記URLの「手動インストールの手順」の「手順 1 - Linux 用 Windows サブシステムを有効にする」「手順 6 - 選択した Linux ディストリビューションをインストールする」のみ実施すれば良い。 +- 「手順 6 - 選択した Linux ディストリビューションをインストールする」では、Ubuntu 18.04 LTS または Ubuntu 20.04 LTS をインストールすれば良い。 + +### b. a以外の場合 + +- WSL1でもWSL2でも良い。 +- Linuxのディストリビューションはどれでも良いはずであるが、Ubuntu 18.04 LTS または Ubuntu 20.04 LTS をおすすめする。 + +## Step 2. Xサーバのインストール + +GWSLまたはVcXsrvをインストールする。 + +### a. GWSLを使う場合(おすすめ) + +1. スタートメニューからMicrosoft Storeアプリを起動する。 +2. GWSLを検索して、インストールする。 + +### b. VcXsrvを使う場合 + +1. https://sourceforge.net/projects/vcxsrv/ からVcXsrvを入手してインストールする。 + +## Step 3. WSLの起動 + +### ターミナルを開く + +- スタートメニューから、Step 1でインストールしたLinux ディストリビューション(Ubuntu 18.04 LTS など)を起動する。 + +### 必要なパッケージのインストール・設定(初回のみ必要) +- 下記を実行する。 + +``` +sudo apt-get install -y python3-pip +sudo apt-get install -y python3-pyqt5 +pip3 install --upgrade pip +pip3 install numpy +sudo apt-get install -y git + +echo 'export DISPLAY=localhost:0.0' >> ~/.bashrc +source ~/.bashrc +``` + +## Step 4. Xサーバの起動 + +Step 2 でインストールしたXサーバを起動する。 + +### a. GWSLを使う場合 + +1. スタートメニューからGWSLを起動する。 + +### b. VcXsrvを使う場合 + +1. スタートメニューやデスクトップのショートカットからVcXsrvを起動する。 +2. 「次へ」を3回押して、「完了」を押すとXサーバが起動する。 + +## Step 5. tetrisの起動 + +### ソースコードを取得する(初回のみ必要) + +``` +git clone https://github.com/seigot/tetris +``` + +### tetrisを実行する +``` +cd ~/tetris +python start.py +``` + +一度実行環境を立ち上げた後の2回目からは、Step 3以降を実行すれば良い。 diff --git a/cloud/sam/scripts/chat_function/data/reference_score.md b/cloud/sam/scripts/chat_function/data/reference_score.md new file mode 100644 index 00000000..75a01bd4 --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/reference_score.md @@ -0,0 +1,13 @@ +# 参考スコア + +(注)乱数の影響により多少のばらつきあり
+ +| | level1 | level2 | level3 | 自由部門 | +| --- | --- | --- | --- | - | +| random | -916 | -731 | -4948 | - | +| sample(python start.py -m sample) | 6935 | 6259 | 3737 | - | +| [kyadさん作の無限テトリス](https://github.com/kyad/tetris/blob/forever-branch/forever.md) | - | - | - | 20592 | +| 理論値 | 23400+落下ボーナス | - | - | - | + +理論値は「(全てI字の棒が出るなどして)全て4ライン消しをした場合」を想定。
+計算式:(制限時間 180(s))÷(テトリス1回に掛かる時間 10(s))×1300点 = 23400点
diff --git a/cloud/sam/scripts/chat_function/data/tetris.md b/cloud/sam/scripts/chat_function/data/tetris.md new file mode 100644 index 00000000..b6dbc73c --- /dev/null +++ b/cloud/sam/scripts/chat_function/data/tetris.md @@ -0,0 +1,350 @@ + + +**Table of Contents** + +- [Tetris](#tetris) + - [実行環境準備](#%E5%AE%9F%E8%A1%8C%E7%92%B0%E5%A2%83%E6%BA%96%E5%82%99) + - [Mac環境](#mac%E7%92%B0%E5%A2%83) + - [windows環境](#windows%E7%92%B0%E5%A2%83) + - [Ubuntu/JetsonNano環境](#ubuntujetsonnano%E7%92%B0%E5%A2%83) + - [docker環境](#docker%E7%92%B0%E5%A2%83) + - [実行方法](#%E5%AE%9F%E8%A1%8C%E6%96%B9%E6%B3%95) + - [サンプルコード](#%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AB%E3%82%B3%E3%83%BC%E3%83%89) + - [手動操作](#%E6%89%8B%E5%8B%95%E6%93%8D%E4%BD%9C) + - [AI実装](#ai%E5%AE%9F%E8%A3%85) + - [art](#art) + - [自動評価サーバ](#%E8%87%AA%E5%8B%95%E8%A9%95%E4%BE%A1%E3%82%B5%E3%83%BC%E3%83%90) + - [Play rules](#play-rules) + - [Score](#score) + - [game level](#game-level) + - [ファイル構成](#%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E6%A7%8B%E6%88%90) + - [ファイル一覧](#%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E4%B8%80%E8%A6%A7) + - [詳細](#%E8%A9%B3%E7%B4%B0) + - [コード作成のはじめかた](#%E3%82%B3%E3%83%BC%E3%83%89%E4%BD%9C%E6%88%90%E3%81%AE%E3%81%AF%E3%81%98%E3%82%81%E3%81%8B%E3%81%9F) + - [本リポジトリのfork](#%E6%9C%AC%E3%83%AA%E3%83%9D%E3%82%B8%E3%83%88%E3%83%AA%E3%81%AEfork) + - [実行](#%E5%AE%9F%E8%A1%8C) + - [自リポジトリのバイナリを公式リリースする](#%E8%87%AA%E3%83%AA%E3%83%9D%E3%82%B8%E3%83%88%E3%83%AA%E3%81%AE%E3%83%90%E3%82%A4%E3%83%8A%E3%83%AA%E3%82%92%E5%85%AC%E5%BC%8F%E3%83%AA%E3%83%AA%E3%83%BC%E3%82%B9%E3%81%99%E3%82%8B) + - [本リポジトリの最新バージョン取り込み](#%E6%9C%AC%E3%83%AA%E3%83%9D%E3%82%B8%E3%83%88%E3%83%AA%E3%81%AE%E6%9C%80%E6%96%B0%E3%83%90%E3%83%BC%E3%82%B8%E3%83%A7%E3%83%B3%E5%8F%96%E3%82%8A%E8%BE%BC%E3%81%BF) + - [Pull Requestを送る(Optional)](#pull-request%E3%82%92%E9%80%81%E3%82%8Boptional) + - [FAQ](#faq) + - [参考](#%E5%8F%82%E8%80%83) + - [今後の課題](#%E4%BB%8A%E5%BE%8C%E3%81%AE%E8%AA%B2%E9%A1%8C) + - [次のブロックのランダム性](#%E6%AC%A1%E3%81%AE%E3%83%96%E3%83%AD%E3%83%83%E3%82%AF%E3%81%AE%E3%83%A9%E3%83%B3%E3%83%80%E3%83%A0%E6%80%A7) + - [競争要素の追加](#%E7%AB%B6%E4%BA%89%E8%A6%81%E7%B4%A0%E3%81%AE%E8%BF%BD%E5%8A%A0) + - [学習要素の追加](#%E5%AD%A6%E7%BF%92%E8%A6%81%E7%B4%A0%E3%81%AE%E8%BF%BD%E5%8A%A0) + - [LICENSE](#license) + - [Finnaly](#finnaly) + + + +# Tetris + +プログラミング学習を目的とした、ブロックを操作してスコアを競うゲームです。
+[FAQはこちら。](https://github.com/seigot/tetris/blob/master/doc/files/FAQ.md)
+[tutorialはこちら。](https://github.com/seigot/tetris_game_tutorial)
+[tetris_score_serverはこちら](https://github.com/seigot/tetris_score_server) +[tetris_battle_serverはこちら](https://github.com/seigot/tetris_battle_server) + +## 実行環境準備 + +#### Mac環境 + +Finder→Application→Utility→Terminalから、ターミナルを起動して以下コマンドを実行する。 +install成功後、[実行方法](https://github.com/seigot/tetris/tree/master#実行方法)によりゲーム開始すればOK + +``` +# install pyqt5 and NumPy +brew install python3 +brew install pyqt5 +brew install numpy +# install other packages +brew install git +``` + +[doc/files/install_mac.md](./doc/files/install_mac.md)に手順を記載 + +#### windows環境 + +[windowsのpowershellを使ってテトリス環境を構築する場合](./doc/files/install_windows_powershell.md)の手順
+[WSL(Windows Subsystem for Linux)を使う場合](./doc/files/install_windows_wsl.md)の手順
+[Docker for Windowsを使う場合](./doc/files/install_windows.md)の手順
+ +#### Ubuntu/JetsonNano環境 + +[doc/files/install_ubuntu.md](./doc/files/install_ubuntu.md)に手順を記載 + +#### docker環境 + +[docker/README.md](docker/README.md)に手順を記載 + +## 実行方法 + +本リポジトリを取得 + +```shell +cd $HOME +git clone https://github.com/seigot/tetris +``` + +ゲーム開始用スクリプトを実行 + +```shell +cd tetris +python start.py +``` + +![Screenshot](doc/pics/screenshot_02.png) + +#### サンプルコード + +実行時、以下のようにオプションを与えることで、スコアアタック用サンプルコードの実行が可能です。
+サンプルコードの詳細は、[ブロック操作用サンプルプログラム](https://github.com/seigot/tetris/blob/master/doc/files/block_controller_sample.md)を参照下さい。
+ +```shell +python start.py -m sample +``` + +#### 手動操作 + +実行時、以下のようにオプションを与えることで、手動操作が可能です。 +操作方法は、PC操作準拠とゲーム機コントローラ準拠の2種類を選択できるようにしています。 + +| 手動操作 | PC操作準拠 | ゲーム機コントローラ準拠 | +| ---- | ---- | ---- | +| 実行コマンド | python start.py -m keyboard | python start.py -m gamepad | +| *up* key | 回転 | 落下 | +| *left* key | 左に移動 | 左に移動 | +| *right* key | 右に移動 | 右に移動 | +| *m* key | 下に移動 | 下に移動 | +| *space* key | 落下 | 回転 | +| *P* key | Pause | Pause | +| *c* key | hold | hold | + +`--nextShapeMode hate`オプション付きで実行すると[hateモード(手動操作で遊ぶ用)](https://manabitimes.jp/math/795)になります。 + +``` +python3 start.py -m keyboard --nextShapeMode hate +``` + +#### AI実装 + +実行方法、サンプルコードを用意しています +詳細は[AIについて](doc/files/ai.md)を参照下さい。 + +#### art + +実行方法、サンプルコードを用意しています +詳細は[artについて](doc/files/art.md)を参照下さい。 + +#### 自動評価サーバ + +表題のサーバを有志で用意しています +https://github.com/ChallengeClub/tetris_score_server + +## Play rules + +制限時間内の獲得スコアを評価します。 + +### Score + +加点 + +| 項目 | 得点 | 備考 | +| ---- | ---- | ---- | +| 1ライン消し | + 100点 | - | +| 2ライン消し | + 300点 | - | +| 3ライン消し | + 700点 | - | +| 4ライン消し | + 1300点 | - | +| 落下ボーナス | + 落下したブロック数を得点に加算 | - | +| 全消しボーナス | + 全消し時に得点 | - | + +減点 + +| 項目 | 得点 | 備考 | +| ---- | ---- | ---- | +| gameover | - 500点 | ブロック出現時にフィールドが埋まっていたらgameover + +### game level + +実行時、オプションを与えることで、難易度(レベル)を指定できます。
+ +| | level1 | level2 | level3 | level4 | +| --- | --- | --- | --- | --- | +| 実行方法 | python start.py | python start.py -l2 | python start.py -l3 | python start.py -l4 | +| 制限時間 | 180秒 | 180秒 | 180秒 | 180秒 | +| ブロックの順番 | 固定(1-7まで順番に繰り返し) | ランダム | ランダム | ランダム | +| フィールドの初期ブロック | なし | なし | あり | あり | +| フレーム更新頻度 | 約1秒 | 約1秒 | 約1秒 | 約0.001秒 | +| 全消しボーナス | +0 | +0 | +4000 | +4000 | +| 備考 | - | - | - | - | + +[各レベルの参考スコア](doc/files/reference_score.md) + +## ファイル構成 + +#### ファイル一覧 + +* `game_manager/game_manager.py` : ゲーム管理用プログラム +* `game_manager/board_manager.py` : ボード管理用プログラム +* `game_manager/block_controller.py` : ブロック操作用プログラム(ブロックの操作は、このファイルを更新して下さい。) +* `start.py` : ゲーム開始用コマンド + +#### 詳細 + +以下のような構成になっています。
+ブロック操作用プログラムは、管理プログラムから定期的に呼び出されるので、ボード情報から次の動作を決定して下さい。
+ +```mermaid + graph TB + + subgraph ゲーム管理用プログラム + B1["game_manager.py"] + C1["board_manager.py"] + D1["block_controller.py
ここで現在のブロックの動作を決定する"] + B1 --update--> C1 + B1 --getNextMove--> D1 + D1 --NextMove--> B1 + subgraph ボード管理用プログラム + C1 + end + subgraph ブロック操作用プログラム + D1 + end + end + + + subgraph ゲーム開始用コマンド + A1[start.py] --> B1 + end +style ブロック操作用プログラム fill:#fef +``` + +詳細 +- [ブロック操作用プログラムについての説明](doc/files/block_controller.md)
+- [ボード管理用プログラムについての説明](doc/files/board_manager.md)
+- [ゲーム管理用プログラムについての説明](doc/files/game_manager.md)
+ +## コード作成のはじめかた + +### 本リポジトリのfork + +まず、Githubアカウントを取得して本リポジトリを自リポジトリにforkして下さい。 + +> リポジトリのフォークの例
+> +> 0. GitHubアカウントを作成/ログインする。
+> 1. GitHub で、[https://github.com/seigot/tetris](https://github.com/seigot/tetris)リポジトリに移動します
+> 2. ページの右上にある [Fork] をクリックします。
+> 参考:[リポジトリをフォークする](https://docs.github.com/ja/get-started/quickstart/fork-a-repo#forking-a-repository)
+ +その後、自リポジトリにforkした`tetris`をローカルマシンに取得して下さい。 + +``` +cd ~ +git clone https://github.com//tetris # ""さん(yourname=自分のアカウント名に読みかえて下さい)のリポジトリを取得する場合 +git clone https://github.com/seigot/tetris # このリポジトリを取得する場合 +``` + +既に`tetris`が存在しており、これを削除したい場合は`rm -f`を実行して下さい。 + +``` +# ubuntu/mac等の場合 +sudo rm -rf tetris + +# windows powershellの場合 +Remove-Item -Recurse -Force tetris +``` + +取得後はソースコード変更、変更リポジトリに反映する等してアップデートを進めて下さい。 + +### 実行 + +`実行方法`を参考に実行環境の構築をして下さい。
+環境構築の完了後、ブロック操作用プログラム[`block_controller.py`](https://github.com/seigot/tetris/blob/master/game_manager/block_controller.py)を更新していってください。
+ +### 自リポジトリのバイナリを公式リリースする + +提出時、自リポジトリのバイナリを公式リリースする場合は、Githubリリースの機能を使うと簡単なのでお勧めです。 + +> 自リポジトリのコードを提出(バイナリリリース)する場合の手順参考
+> [リポジトリのリリースを管理する](https://docs.github.com/ja/free-pro-team@latest/github/administering-a-repository/managing-releases-in-a-repository)
+> 7.オプションで、コンパイルされたプログラムなどのバイナリファイルをリリースに含めるには、ドラッグアンドドロップするかバイナリボックスで手動で選択します。
+ +### 本リポジトリの最新バージョン取り込み + +今後、本リポジトリもバージョンアップしていく予定です。
+本リポジトリのバージョンアップを取り込む場合は、forkしたリポジトリにて以下を実行して下さい。
+ +※追記 2021/5より、Github UI上から操作可能になったようです。
+[GitHub新機能「Fetch upstream」使ってみた! 1クリックで親リポジトリに追従(同期)](https://note.com/llminatoll/n/n423296287697)
+ +``` +git checkout master # ローカルのmainブランチに移動 +git remote add upstream https://github.com/seigot/tetris # fork元のリポジトリをupstream という名前でリモートリポジトリに登録(名前はなんでもいい。登録済みならスキップ) +git fetch upstream # upstream から最新のコードをfetch +git merge upstream/master # upstream/main を ローカルのmaster にmerge +git push # 変更を反映 +``` + +参考:[github で fork したリポジトリで本家に追従する](https://please-sleep.cou929.nu/track-original-at-forked-repo.html) + +### Pull Requestを送る(Optional) + +本リポジトリへ修正リクエストを送ることが可能です。詳しくは参考をご参照下さい。
+
+※追記 Pull Request練習用リポジトリを作成しました。
+[test_pull_request](https://github.com/seigot/test_pull_request)
+
+解説図:
+ +![Git Commentary](doc/pics/20230115_Git_Commentary.png) + +参考:
+[GitHub-プルリクエストの作成方法](https://docs.github.com/ja/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)
+[[実践] はじめてのPull Requestをやってみよう](https://qiita.com/wataryooou/items/8dce6b6d5f54ab2cef04)
+[【GitHub】Pull Requestの手順](https://qiita.com/aipacommander/items/d61d21988a36a4d0e58b)
+ +### FAQ + +[doc/files/FAQ.md](doc/files/FAQ.md)を参照下さい。 + +## 参考 + +[https://github.com/LoveDaisy/tetris_game](https://github.com/LoveDaisy/tetris_game)
+[https://github.com/seigot/tetris_game (2021.12時点まで使用)](https://github.com/seigot/tetris_game)
+[http://zetcode.com/gui/pyqt5/tetris/](http://zetcode.com/gui/pyqt5/tetris/)
+[テトリスの歴史を「ブロックが落ちるルール」の進化から学ぶ](https://gigazine.net/news/20191116-tetris-algorithm/)
+[『テトリスでPythonを学ぼうv4』優勝コード解説](https://qiita.com/mozziemagnet/private/b6839c9b7b438cbdb1b1)
+ + +## 今後の課題 + +### 次のブロックのランダム性 + +次のブロックのランダム性は、現在はrandom関数の出力に依存しています。
+しかし、[こちらの記事](https://gigazine.net/news/20191116-tetris-algorithm/)によると選択方式が色々ありそうです。
+有識者の方からアドバイス頂けると助かります。
+ +* 参考:次のブロック選択処理 [game_manager.py](game_manager/game_manager.py) + +``` +nextShapeIndex = np_randomShape.random.randint(1, 8) +``` + +### 競争要素の追加 + +例えば、AI学習を目的としたルールのアップデート、火力ボーナス、などが該当する +[issues](https://github.com/seigot/tetris/issues/67) + +### 学習要素の追加 + +例えば、文法、アルゴリズム、AI要素、などが該当する +[issues#120](https://github.com/seigot/tetris/issues/120) + +## LICENSE + +[MIT LICENSE](LICENSE) + +## Finnaly + +~ HAVE FUN ~ diff --git a/cloud/sam/scripts/chat_function/events/event_delete.json b/cloud/sam/scripts/chat_function/events/event_delete.json new file mode 100644 index 00000000..ac576e79 --- /dev/null +++ b/cloud/sam/scripts/chat_function/events/event_delete.json @@ -0,0 +1,6 @@ +{ + "httpMethod": "DELETE", + "body": "{\"identity_id\": \"id_hoge\", \"character_name\": \"test_user\"}", + "resource": "/ask", + "path": "/ask" +} diff --git a/cloud/sam/scripts/chat_function/events/event_get.json b/cloud/sam/scripts/chat_function/events/event_get.json new file mode 100644 index 00000000..f087d87d --- /dev/null +++ b/cloud/sam/scripts/chat_function/events/event_get.json @@ -0,0 +1,6 @@ +{ + "httpMethod": "GET", + "resource": "/ask", + "path": "/ask" +} + \ No newline at end of file diff --git a/cloud/sam/scripts/chat_function/events/event_post.json b/cloud/sam/scripts/chat_function/events/event_post.json new file mode 100644 index 00000000..8a877d84 --- /dev/null +++ b/cloud/sam/scripts/chat_function/events/event_post.json @@ -0,0 +1,6 @@ +{ + "httpMethod": "POST", + "body": "{\"identity_id\": \"id_hoge\", \"input_text\": \"Rustはどんな言語ですか?\", \"character_name\": \"test_user\"}", + "resource": "/ask", + "path": "/ask" +} diff --git a/cloud/sam/scripts/chat_function/events/event_post_func.json b/cloud/sam/scripts/chat_function/events/event_post_func.json new file mode 100644 index 00000000..8f1c1c67 --- /dev/null +++ b/cloud/sam/scripts/chat_function/events/event_post_func.json @@ -0,0 +1,7 @@ +{ + "httpMethod": "POST", + "body": "{\"identity_id\": \"id_hoge\", \"input_text\": \"ミノを消した時の点数は?\", \"character_name\": \"test_user\"}", + "resource": "/ask", + "path": "/ask" + } + \ No newline at end of file diff --git a/cloud/sam/scripts/chat_function/events/test.bash b/cloud/sam/scripts/chat_function/events/test.bash new file mode 100644 index 00000000..59773e50 --- /dev/null +++ b/cloud/sam/scripts/chat_function/events/test.bash @@ -0,0 +1 @@ +sam local invoke "ChatFunction" -e scripts/chat_function/events/event_get.json \ No newline at end of file diff --git a/cloud/sam/scripts/chat_function/local.py b/cloud/sam/scripts/chat_function/local.py new file mode 100644 index 00000000..2249533a --- /dev/null +++ b/cloud/sam/scripts/chat_function/local.py @@ -0,0 +1,37 @@ +import os +import openai + +from dotenv import load_dotenv +from llama_index import VectorStoreIndex, SimpleDirectoryReader +from llama_index import StorageContext, load_index_from_storage + +# ローカルで辞書を作成し、storageに保存する +def main(): + # APIkeyの設定 + load_dotenv() + try: + OPENAI_API_KEY = os.environ["OPENAI_API_KEY"] + except KeyError: + print("OPENAI_API_KEY environment variable not found. Please make sure it is set.") + openai.api_key = OPENAI_API_KEY + + # モデルの読み込み + if(1): + documents = SimpleDirectoryReader(input_dir="./data").load_data() + print("documents: ", documents) + index = VectorStoreIndex.from_documents(documents) + # 保存 + index.storage_context.persist() + else: + # rebuild storage context + storage_context = StorageContext.from_defaults(persist_dir='storage') + # load index + index = load_index_from_storage(storage_context) + + # クエリの実行 + query_engine = index.as_query_engine() + response = query_engine.query("Dockerイメージの取得途中で止まる原因は?") + print("response: ", response) + +if __name__ == "__main__": + main() diff --git a/cloud/sam/scripts/chat_function/requirements.txt b/cloud/sam/scripts/chat_function/requirements.txt new file mode 100644 index 00000000..ab2a8275 --- /dev/null +++ b/cloud/sam/scripts/chat_function/requirements.txt @@ -0,0 +1,6 @@ +requests +urllib3==1.26 +langchain==0.0.234 +llama-index==0.7.9 +openai==0.27.8 +python-dotenv \ No newline at end of file diff --git a/cloud/sam/scripts/chat_function/role/role_tetris.py b/cloud/sam/scripts/chat_function/role/role_tetris.py new file mode 100644 index 00000000..03be0dbf --- /dev/null +++ b/cloud/sam/scripts/chat_function/role/role_tetris.py @@ -0,0 +1,68 @@ +import json +from langchain import OpenAI +from llama_index import VectorStoreIndex, SimpleDirectoryReader +from llama_index import StorageContext, load_index_from_storage + +class TetrisAssistant: + @staticmethod + def get_chat_messages(): + return [ + { + "role": "system", + "content": +""" +質問には100文字以内で回答する。 +必要に応じて"function"を実行し、その応答を用いて、"user"の言語に合わせた言語で100文字以内で回答する。 +""" + }, + { + "role": "user", + "content":"テトリスのルールを教えて。" + }, + { + "role": "assistant", + "content": "テトリスは、異なる形のブロックを落としてきて、行を埋めるゲームです。行を完全に埋めると、その行は消えます。ブロックが画面上部に積み上げられるとゲームオーバーです。" + } + ] + + @staticmethod + def get_chat_functions(): + return [ + { + "name": "search_tetris_index", + "description": +""" +テトリスをpythonで操作することを通してプログラミングを学ぶ時に用いる資料を検索する。 +この資料は以下の内容を含む。 +・テトリスのルール(点数,ルール,ボード情報,フィールド情報) +・プログラムによるテトリスの操作方法(実行コマンド,ミノの説明,コマンド、各種ファイル,アートの作り方) +・環境構築(AI,docker,Git,Windows(WSL,PowerShell),Linux,Mac) +""", + "parameters": { + "type": "object", + "properties": { + "SearchContent": { + "type": "string", + "description": "テトリス対戦に関する情報を検索 e.g.ミノを消した時の点数は?" + } + }, + "required": ["SearchContent"] + } + } + ] + +class TetrisIndexSearch: + def __init__(self): + # indexの読み込み + storage_context = StorageContext.from_defaults(persist_dir='./storage') + self.index = load_index_from_storage(storage_context) + + def search_tetris_index(self, SearchContent): + # クエリの実行 + query_engine = self.index.as_query_engine() + response = query_engine.query(SearchContent) + + result = { + "response": response.response + } + return json.dumps(result) diff --git a/cloud/sam/scripts/chat_function/storage/docstore.json b/cloud/sam/scripts/chat_function/storage/docstore.json new file mode 100644 index 00000000..2291bd64 --- /dev/null +++ b/cloud/sam/scripts/chat_function/storage/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"ce79c7e0-2737-497f-b28b-129a092972f6": {"doc_hash": "948a9a8b9ae5c4df51d5287a7f6ccd35396be203d297dd6bc8a7e4c98bb1af7d"}, "d9c805d3-b4c7-4edd-979f-5e9e9ddbf844": {"doc_hash": "ec4555c82c10b6a2432de6a2206083fccd3d865e170ee3fef1f85039d9494acc"}, "068cf630-c9b1-45ad-ad7a-42114cb0f760": {"doc_hash": "9018fbc49df1e1fed233679a220f7d9f5374fe2c6066940f5d2c54101fb87987"}, "88c52465-0591-4e30-b3bb-80b593e67e63": {"doc_hash": "417cc94d31493896d4278f7c7611ee243727fea9ac423e8e8b474e90a6a3cfc0"}, "9d1aa5a7-32ce-4db8-90f5-b80c3590d2a8": {"doc_hash": "0203d09081c04a97f4c166c46860b4862eeefd7812f0464daf35438c8bc6cd8a"}, "ae939c3e-1ba7-45a9-ab77-a57971c19e70": {"doc_hash": "5b667b04545504678e10b114fdf67d6de2f920ec39e06536193b6340ad8b9b09"}, "3e7b8570-c846-456b-a2da-99e9e00b152e": {"doc_hash": "8c00b975d5e616a2e5361b5a3fc169ef3b57a1bc812873a738758f4308da3d45"}, "987b823a-a32f-4e0a-be51-321a464fa024": {"doc_hash": "544481584faf4d286aa1720e3a9dc49c333cf43dcaaaafa4303003e2593e8087"}, "68654e11-e95e-4198-b977-342ffea414d1": {"doc_hash": "feacc1ccd770a0b86724729ba25520f86651fed878347ac5841a6555dd40f968"}, "4058c3ac-5fc2-44f1-be9b-caf4592c1975": {"doc_hash": "b56e5b69867041d1779ccae638325010546b6735f12a538c5fb1f35bd0d446d6"}, "c2ae3914-16bb-4bcd-98cc-2bc1b8c64211": {"doc_hash": "4f0cce590024bef35ec4f32c471d3690938ee896d0dbf32cff08dd241adb554a"}, "cbb01147-887b-4402-bc1f-e0d680de53b5": {"doc_hash": "082549f5da274e2bf81e2a4fbc9ff02c337435d92924f2da8ff3ae9b9fe1a74c"}, "e196e0eb-1d62-4e56-b3c7-860b8b9cf82f": {"doc_hash": "8bd7e0ac54e23a8ea6a0889153c24b2df3eba0b69297c2b5d3fffc1e8e7c4edf"}, "ea29a5cc-7be0-4c1c-9d82-19092d34e2d3": {"doc_hash": "79b75d493f960bfa76c3950cd5a228d2a4e38026549ac88a64f17348253e64a8"}, "fe785f87-4fa6-4363-8b94-e20f73ac4c69": {"doc_hash": "0c0d559e6096b03dd79986b13dcc56c9d4a027a8e74c5f4083efee4e5766fe05"}, "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0": {"doc_hash": "2d83e2c9932b690e55747e770794330fecab9f47177e9c63507ec8f6a316a2eb"}, "ad902677-e961-42cb-9ffd-5474262f813d": {"doc_hash": "dca15028ef5d667950c5447fd249ebd515d01176e375af4f0aaaf3801dc95a42"}, "28d917d5-327e-41a3-9f41-7e786ec0ff9e": {"doc_hash": "ebec340f1ce217aba0831c7527ea1f63f97f245eda05f362f11d030451ad0b31"}, "210f7abe-762f-4d0c-beeb-219591370b19": {"doc_hash": "becfe11337598c2147dfe14b45ad48a5ff9234a4611cc5b2f99fce94aba998db"}, "ce577892-aa46-44ec-a3c3-ad82a8847f5d": {"doc_hash": "d1d3759bc16167441244a6503fc709abc61ae5421468aab576a2f694a8633283"}, "4303e09f-8bce-4681-943e-06eac590d9d9": {"doc_hash": "05c610a391652d5213d00eaa025202170f366b306dfe00bdedcc9e307afa539f"}, "32c12c5a-b937-4e78-a5e9-0995028d8043": {"doc_hash": "16387e538cb23b0dce282df6d59dac62fa8e2282701ce17d7e4f746ded1b40af"}, "a7c6cd42-a821-42ce-82da-45c1a7653f6b": {"doc_hash": "5f9ad89b794df55b75c0a3146f841011c470edd965451322b20fbc126bc33ad2"}, "968e52ba-8d2d-41cb-9ecd-02f41e519527": {"doc_hash": "e882379d244a4592602686fcba052ccfb221341621fa8eef75804915e215d31a"}, "37a6860d-b01a-424b-a69a-0371ffab694a": {"doc_hash": "2233e4692e3bb6e07cfbd77640eacb0bb508f634931fa23b356ed6de3d1f4996"}, "8d31b5c2-c82d-4436-97fa-9038886e7a58": {"doc_hash": "9288f6b82d90f7c4d3f248ee3ea2ad5eaef79dc5708dac9c4cc3dbc4d58e94e3"}, "ec004f6b-f580-4214-a0ed-5ef66f0b423b": {"doc_hash": "152bbfb7da5490eeb205e4d7aae6aed893f253ea01387b82a3e2f09c11f20898"}, "7f292052-e685-484c-8a88-ced6af9dee2b": {"doc_hash": "bc395ff0aac8b81d248f5b6fc6047b20ce841fe9bd137e1198cc369684ffc9cb"}, "e29949ae-1997-4278-aba6-381cbe396c43": {"doc_hash": "3dd00af02cd94fe89e09213b0c2acac05f42cb434ba4e22d18a6c1253b0cd5da"}, "5eadb649-7007-4e92-9b26-dc8ca221b390": {"doc_hash": "7dbfd019eaecc9e540d2bf366795bbb5d51e25be93a8b57f1f1a7d6ec3d60115"}, "d26b7075-c33d-4ca5-89e8-dbaeb3ef92e2": {"doc_hash": "b488d257a98fc6488eeb03ec9fd3d4541bff065567d5ff17339abf312ba15bbd"}, "f7935bb2-2cad-4d9f-98a5-1058e64a88a9": {"doc_hash": "8bfdc6dca10afd0eb6be5444d1e0487f4c43761843f991eac5597619aad93dfc"}, "6e42d55e-f0a1-4b3d-96e7-26bfcf75a41e": {"doc_hash": "881dc8b1ce168e0ee3da7e7a1df14810148c1639c436edfcc924adb927eb6603"}, "115941f4-c39b-44ad-b53e-075bc067bf4a": {"doc_hash": "6330d76bcbbc9aea89f9fdaf9c3600a505e0969043ff9619a667fdf72374a396"}, "d080c1cd-af48-43f0-a9cf-364a2a1452a4": {"doc_hash": "012f650c07c965c7128682b5f7c789148ae57f8ade22096a396dcac570edcc07"}, "3a73aaa3-4282-4375-98f5-5566e21358a0": {"doc_hash": "7ac5a2e1c5879b6c2bd74d8ad0581a41bf95b1256a31ce7a7c9565d3b111d9a2"}, "3b1cf835-65ab-47d4-9483-69be54ae419a": {"doc_hash": "0b3701c1f0554ebe610074dd4a7fbc985132db34bc119a8288b65604490bd665"}, "b427ca59-425d-41f5-a205-da189a350d02": {"doc_hash": "241f0ef77e9c284f21e5c7b7de30766c33bf86c3ca527cc93bd864b1e16de475"}, "b8d70b19-f260-4c43-9334-2671cddcf503": {"doc_hash": "98f7a72f9d9c47a6fdb3eeae2961938cb8341b04a4b9c552f42bb17a079ec6ac"}, "b8162150-85b3-4fbb-9da9-a5b54c5e7f88": {"doc_hash": "c4caf941936c3146d61ce1c92cb4a76d88371ee8d948cc4d306bd275699c13f2"}, "179127c9-d49d-4e15-a6d1-d977f107853f": {"doc_hash": "b24d3531c7c9b954841c494370230b370299e8c978c81ece8f6cc7da3098e951"}, "cd5e317d-895c-4369-acaa-22c1f375024d": {"doc_hash": "c3d9eec47d8fd6ffd968f2d4c04dfcb0b0d21ddc2e867cbe3329156c6953e88a"}, "47c50451-9153-40cf-8a3e-2df754742596": {"doc_hash": "5bce6842462076a5125189a6d46001d63f966f3dfbbdb0b150b6b5ba7f0ccaac"}, "dd1508fc-36b2-4ffe-877f-2e078e0e6d93": {"doc_hash": "18e014e44336e882707823eaa7ed6b57306749fa63c589a1058bac2985a6659f"}, "e59201dd-50da-41fb-bcf7-828be248612b": {"doc_hash": "c400ac41ff6b8669eefb505828d06a462b47a03d7711149ecab4cbe87782ef78"}, "cebfd4cd-b7a7-4e2c-ada9-78695d54f04a": {"doc_hash": "4f191e64dbf81c12453e4cb81ff389def46c83813b1f2cb5a51551559b6956ef"}, "ca65780f-bff0-4525-98af-59ce39554b0f": {"doc_hash": "508db7480e2f3f91a5d3ea8b5be3c889160e8be6cd0bf959753158c6f604e05b"}, "c3f31aa3-3a65-4566-810f-304800b43281": {"doc_hash": "6b3dd27be4c210aa3f1f143be6734678413ad9bf45fe8fdf4272bac657ef948d"}, "500bd4a9-9d6c-46d1-a7ba-68c367c65b19": {"doc_hash": "006357ba9d44c8bc896c2fbea77170ae63079a63524bc04573e66cc08366ea06"}, "4699fa1d-4331-4faa-9df4-dd354731616d": {"doc_hash": "db34f03b3b395a8f50c539e77ad5b4cc6317f350066bd8c6691ab29b2ccb0ef8"}, "d17cb98f-78b0-4313-add5-4f6024cc023a": {"doc_hash": "c2d78e5ea966f8b5f0d8774fd677d1fe2c1fbc9711f83ec2ca56e8343c061252"}, "05a2ef2d-d2ac-4130-bdf8-e36c5df8abec": {"doc_hash": "683f3e800ede901bd0e8d346c931b9136685a97be06e15241e3fd4202ae2de5b"}, "dfe8ba87-12c6-4352-881e-007366b9329a": {"doc_hash": "2fd77e813340dfeb6868f6785e49fb498a163aa5110044dd40ab5fa02df56e8d"}, "22419697-3d51-4f4b-b3c5-517fc93b85eb": {"doc_hash": "8cd23fc8edaa42527444fb070d7a7c2a46024eaa14a03b11805de4d12cc38a04"}, "1b12cd2c-6cbc-4b8b-bc11-b0f07bc21165": {"doc_hash": "fad388913de2828ed166ba8244cc1a3ae2d66832b15f9118392e02f8d90e76cf"}, "f42aab04-8e78-4f6a-854d-96e38f4a5861": {"doc_hash": "062fedfa1f46f31e5211d637733934cded8adbbf2a305f9abf596bf4c3e29be7"}, "f95c4018-54ee-4594-ba99-26613ce4b0b9": {"doc_hash": "47cdc546c353e366576258cb5c918d99f3cbde463c6df993156842a0a227cb0a"}, "dcfb8e33-0dd5-4a5a-b143-767385e89c45": {"doc_hash": "0b082d82d58c8ce8cd5e4e188940f2327a5ca773d0ef08a3a4addb33a4375941"}, "851eae1a-b9e2-4830-8dac-bb1210d3f0cf": {"doc_hash": "19865fe7e59a03ed954ecaa14210a281ce5ab496a8fbe614faccf0441c3663d9"}, "5abc6f30-b9c4-440e-bfc0-e6ace08009d1": {"doc_hash": "976f58f209b7983e08bc43a91854a80d0e6c21518d0e2c92cf4319509fddec92"}, "c6e71118-ef41-407c-ae38-6c9531a21885": {"doc_hash": "4502424dac88298114584fb0eefe7dc0e4cda3ffb0367c63f7e12f8ab51ce620"}, "e06a2dad-4079-46f4-86ee-e7fefdd32765": {"doc_hash": "4cb778c53a93ef636b0d8aa949e4f0d6e06347e11d6af9ea900464c6edcbe2df"}, "b98f2a03-09c3-4729-8aa2-edc392482b5d": {"doc_hash": "4dc41dbb6bcdc35bc3e429f1e2c563a32ffd28c0458e39bd828613ead2d3aa69"}, "c75b624b-0673-4028-a63b-5dca4caebad0": {"doc_hash": "9062bee3f1c067761f285658f76782dd82db8cdad82f96deab4fb901471082ee"}, "fb72cf94-871a-46a6-b2c2-e77ebfb0a841": {"doc_hash": "aee4d7fba88881c3496a813ad2bf1960fa1ded4379575e65eafc66ec41dfe9bb"}, "d8b49b77-5ea7-4bb1-bd66-ce20ce838553": {"doc_hash": "d659b6b9d54126e0a4d9460f4f279c88d2c9271273616e8c124529c3e4b81c4e"}, "7267230c-b52c-407c-8454-190574d5418c": {"doc_hash": "210f3bb2853ff91bd64866d37ce3a37b5ba5d45173a619e504e37e507affdb07"}, "3ec15043-1a7f-464e-9c5c-d535579a0387": {"doc_hash": "4e0e8787b446de498de486b9a600183a7b78eca94a8d0b7b1b204c0558dca06c"}, "69f6c39d-83e3-4f08-96b1-493af5b225e5": {"doc_hash": "2d29f178f4568c4820f3e65032f1806bde1dd07e190238ac1d23439f92008fc4"}, "12f3e9df-748d-4383-b5eb-8e0db339f84f": {"doc_hash": "a53eedbc51275c54a45bee2be299e4cb29dbf1cc0ab69b421a90a5ca092fd1ba"}, "ca57654f-7e33-4731-932e-fa737b633546": {"doc_hash": "ad390c0a18d5ad338bcf85457b9f4f1982973ca4d9589fb152cb6736ff944cf5"}, "c7cfdf36-eef9-4eba-9579-4bc1b556f2c9": {"doc_hash": "15550c8af0ea33319f70da48f2bf9ca0650c23d88a40378233cbc8b5f31f8841"}, "fb4931e0-f4e9-4d86-9e7c-0c10aa5d07f4": {"doc_hash": "235b89a0327d28b3e2abc2f434621d2ef1c1a7703b08ab9766447cc189f8274e"}, "49976c04-4ec1-4ef2-8fe3-d92e41b0da88": {"doc_hash": "b009e7d49deb66f46bb8f1e81970beec59288be412569e7c7a9a020df58847a6"}, "19ea8123-db68-412d-9d74-a03aabed8f14": {"doc_hash": "45744ba5d52cf061d3d391a2c3bb7fd136d152ff76ce02947252ca203c0c00aa"}, "5be45fc8-d6f1-43f4-878e-6b06ddbab2fe": {"doc_hash": "68b308f20d02c01e503f8839d769ce55fbf46693af7946fea1b7292db296f953"}, "9f9b9538-89aa-431f-8cb3-a8cc338ee9d9": {"doc_hash": "d87da45194870913061515eebae05ef7a0e1e825a4a393ad3b22d20ba74d690a"}, "24c4967d-f328-40cc-9eac-40174a638d4a": {"doc_hash": "4ceb84c87e37670f78f6d4ebfea843970a93ac51f0e139f0e9e73f283202e7da"}, "dd7a0dd1-80ac-4acb-aae6-04abdd67eab7": {"doc_hash": "b2320277a072a9818a5104eadfc514569f438da43b85f832ffa2913ddb85ab94"}, "8dd7b6e7-4a87-423e-991e-911c36ec1ff0": {"doc_hash": "7e07da31b16ec9e7497ffd6d52d43d29b2dc7e3f31a346df267feff3c48e1da1"}, "210fa9a3-c7d1-41d7-b065-251a4c37174c": {"doc_hash": "ab46ad700d58c9bd8694ec90d9bb372bc4dd2101e840fb8cc78aeff65407a835"}, "951d4750-1ce7-4a82-b1d1-3a7144b67547": {"doc_hash": "ff096aa7cc4e3945e0a56c7184d66f401daa662b8c6bef256c9b00c157de7420"}, "56ad45a3-f3cb-4aeb-b883-b9d54843d513": {"doc_hash": "784419d8750230ce46da874caf2e9ab3666fdbf6c4881e8b074df279970f40cc"}, "1149b717-c8ec-41ff-8bb2-a8c860e1b122": {"doc_hash": "6d5b0b2c49192297bc6a62195c92c7bf3b421d5184499932ee7a81bb0dd96674"}, "aa0b9af2-ebf7-4edb-b567-c90e5d5932b5": {"doc_hash": "b0d2ef577dc09063407228d9a60bb10a1651c1def31666ef28c65600069fd579"}, "f12dbc0f-04f1-408f-b9c4-6b5eafb63498": {"doc_hash": "5e85f58fc650effe7c4fe86eab16f31bfeba60f4279413cc48cb513bc367bbd3"}, "764e76f4-d0e9-4e94-9570-fbca5547244e": {"doc_hash": "11b9f106ee17cb0c9143a08e3321ea6c125a14a83473beb9a810123ea6a09bcd"}, "dfa154f0-f996-4e89-bc94-d40c9bd718e1": {"doc_hash": "cd2c8330e7aa0da05536db4bc139078f6a753fa761639cbbd85932877ab55c7b"}, "5f47e28e-8f87-443e-b11d-00173bc03553": {"doc_hash": "a4465c9daac4376a7306ddc2e0129816316e4f3b1b192aaebd9fa9624dd61966"}, "a4663894-f9b2-4950-bffc-f07ffb9a0093": {"doc_hash": "434b8b950ffa15fefa02e9a47f4b174ab46c0564fa50921622d716b554710fee"}, "cfaf86ce-55f8-4538-96ed-3fe4df0deb58": {"doc_hash": "2c31eeded8b9936fa0892563efe1768402fdf6aa9a881863dda7335ecc6a0137"}, "8fca467c-aba7-4536-8adc-80e67a334b58": {"doc_hash": "1a29f18f1f1c2d76eab9da4b167f037726f0e194bc552e63aa14686bb50927ff"}, "f52f19e2-8471-4e77-bc32-a7f01b22e2a3": {"doc_hash": "29c83fac7a58d5f5d12b09799c73d7479e946d920cc0a44e48c6da365debf6f9"}, "9556f22a-8c45-4dcc-89a7-fc8d772fa2c2": {"doc_hash": "e3ff832b1aef6eab2341c0ed6f6beef8d5c939cbf79ae7862633700a90693004"}, "667fe628-926a-4bbd-9bae-3031da839aa3": {"doc_hash": "5ca4da78eae6572b20c5694b41d7459c5a736003169b4ed69bcba288634bf9ab"}, "343bd849-6f9e-41fc-a6b5-fa20ae31b338": {"doc_hash": "a58fa80183ff8819b7f618ebf115a9d224a8ef6e2ee381d532d205f9660554ec"}, "5d2e75cd-1c01-4bf5-a23c-32904cb3f9d4": {"doc_hash": "7ebed55e287d9155302ba42d883fd9924f3944cc5af2ec380e9b552253666f80"}, "1cb13e86-3aec-4ca4-8226-5155bf18f1d8": {"doc_hash": "47fa02b6df2657ed01ea516efd5299b6db2dc340b2a2d2e67eaf0261cc732679"}, "12bbab1f-2548-4095-8f24-24acf4f783cb": {"doc_hash": "5b40d125df82c5a22180caf36236c844b7498390f9f18e90d6fa8dbc9077f2fe"}, "91c987ce-90bd-4d65-a079-868c90a62b4e": {"doc_hash": "fb891ffaca411cd8e963f94b40fe583538edbc61d866121d28d724485a019882"}, "ca6aa865-a510-45fb-a604-16484692ca9c": {"doc_hash": "587a2b3af8d6225b4e15a184efcd8e5c119179eeca69fb0cb581290e156c1010"}, "0b151f23-6052-4c2b-9730-3c0797a30e9a": {"doc_hash": "f0b58ad6f1427a4ec4ea864f3b398f5297688e22ec4a243f7a5055031b91ee15"}, "86f9492c-a828-4b56-928e-2d9092ec3ca8": {"doc_hash": "071fa4ac28874ce4176f3fabae0c943514121b8dadd7c277d3cc43f3409457fa"}, "f7d6244b-f7d4-456f-923f-621bc30a84ae": {"doc_hash": "23904481f0c8040736535212bb54472f586452051bb2d351f5dad4843bcf6896"}, "e3d1d171-77c2-4675-9891-7ec48fbabc91": {"doc_hash": "66b8d0b19164c8c43e57c6d258d3723e82ae63b3845f72ee84964852bf1280c6"}, "aa6d1cbc-a686-4d84-93ba-d2a2cb880313": {"doc_hash": "15d836ad4f6cb4a5fd1a28a8ad4cd660d72f7ac94821c12beb6e5df3c9674d81"}, "972df85b-4215-4c8a-b4c9-4b3545e8d879": {"doc_hash": "c278188233ffe3edc432c541c1e62be795209a98bc92a4f9475563b47681d033"}, "3d5eafa6-af75-41f1-bf38-4d95162c8ebc": {"doc_hash": "387f370518f9578b5577fd5c789ec83a33fb54df0ed709129ad66ed8961d9b3f"}, "1ea78f64-0de3-408c-baed-69f05b82be79": {"doc_hash": "ba686df37fe49864ae31026384c4d0965445c069ba021a79b095450318087696"}, "ff8a7032-6fbd-4cd7-89d1-e7bdd1038adb": {"doc_hash": "4cd77461e6d6a9838b892305385615c9fcee3fc56c1b6016b0b67adca2f573a9"}, "b643bfd3-6ec9-411d-a563-00ddadf3f830": {"doc_hash": "b5a3c3f89c5ef669972135bf15b1729f1d0c4bcdfc3537916ba2b98f73c05cc1"}, "b0f9fcc2-bf2b-4a6c-821c-83f09d8d90ed": {"doc_hash": "394963175d4a7b49acc42265681581ef635ef0ab34624bc0f88e72d1b87b3c7f"}, "5130e796-5a64-40a5-a8c0-2a4354e451e6": {"doc_hash": "9de430106dfa3a13e6f35b87a9675c9aa32b92859e7562acecd24bcab1f2e3e5"}, "f4a606d9-2489-4aa9-b68e-f476ddf8d5d3": {"doc_hash": "692564c7fd013e6b89db41ebd2b9167a1482ef8acb38c5690d85239771c770f7"}, "28d7174d-852f-4886-8a8b-e63a916a144e": {"doc_hash": "436781b55d4ca24a19cd6b402189dcad2bc5086192979209da398f69b9e3afd0"}, "35dc437a-7626-40c7-8567-2a5856790c16": {"doc_hash": "e974fd9aeb55a5ca57e83eab85c6e05aa618f8d99f6e3340c3ed5d908442407a"}, "48c58cf9-dd43-4193-aa02-f86073982a26": {"doc_hash": "8576def2aef913753e3715ce87e695f6bc3ec6a6c5a2eba6c4a10cbb3202df5d"}, "99a013c1-3b3a-4f1b-a656-9e249c618656": {"doc_hash": "52075d3d991c611feb7cb648ef17f29f376b15979559fd031c74083a6817f44f"}, "73b731ff-ee83-48d5-82c7-3ac9cc4dd38c": {"doc_hash": "ea0391e57ceed0e109ab8437e3ca139d55023d1963d31fb1fc56cc9393377da6"}, "584d5baf-1356-46c0-a46e-860aec0e8007": {"doc_hash": "151b08f3d0949616a4f13c0aab8044612f90900d6677f570ca464c48a5aaed26"}, "571308b4-3cd1-47f6-85b4-faac592e0a46": {"doc_hash": "cb0c8fb554b1f59b3239c019bd39c5fe8e93bc5ac8ada325506a1eb7245b8f74"}, "bdacaa2a-bd38-4606-bbef-cd07c48c7869": {"doc_hash": "c87d98e80b3bd36c01ce9e9d3a42264becf8effe8908a9cfe6cb22aa92903f89"}, "0d846675-3005-40e5-bc51-bba6923267dd": {"doc_hash": "1c280be2e432823afb829681364800e722da61277af2f606bca09adb793ef042"}, "e91a5a0e-ac47-48f6-bae9-5b7b2c6c39c6": {"doc_hash": "73c9748471fb0f5e7760990af13556fc0f887c35f4e05dc9648db7707d468ade"}, "555311ab-c836-4c20-a3dc-24efaf7ccace": {"doc_hash": "8a859f5412a5231a1e885cad3c5db653d382ef0c3c5948f6833765b338a06067"}, "d3396fc0-63bc-4aa5-95f9-6cd3ea4d174d": {"doc_hash": "d7f1b32fda2f36456e99ab1cb83800698f862b727afbe378638703f9601646c7"}, "91fa9261-3de4-42a5-b5b6-d2559d0006c2": {"doc_hash": "386477466fb7f3e20a3d5559e4439afecd6eee65919c43b1750f1c02cff41097"}, "c2c25875-bcce-49a6-accd-80125c88ea8e": {"doc_hash": "50d866b2f168b7330dd786a7a79263de8163254ff8bc6a307922d1aab06d3400"}, "76a37b38-3207-45cd-bbda-1c8f78765275": {"doc_hash": "b8c0ec821bdfdd47bb2200959ad5544de2db65560f7c72f1e99962416ae4f8b8"}, "50e94990-40c3-4321-9cfc-6aacfb48bc5d": {"doc_hash": "63c74f5ccf5a989c745c97dfef5753563e6135ee36026ab512bf0c83a7fe62a1"}, "3b40b0c5-d27e-4717-9765-79254f86ca99": {"doc_hash": "65254f68fafb7b3b397001f40c7b86718cb587bdda79595bea6153a304be1211"}, "5a6656fd-78b4-4668-8c2f-a0181814e07d": {"doc_hash": "0cd97796966adaea953b44d15be79cb5a12e08303a9f3825dc759e94403d0d8d"}, "8a0351b2-2b88-45ec-a4ef-77fa0ca33582": {"doc_hash": "c47f4e9765b4c9fad64533acb94ae51e3f8bf2d141d1c826c3685847bf4cad72"}, "2f1409cd-fc75-4462-be08-151a3d7f807b": {"doc_hash": "39167b4a75b43775f38ddf33831aade18a1358c4c031ca090ec82a8dceaf3861"}, "382c1175-574c-4da1-b8ba-e48946e55529": {"doc_hash": "190877e6fa5e2d4a8c66cc81bf257cbd5df843bb71a7bd29c615c68d97297da8"}, "94c1534c-c2b4-48d4-9678-9c717953ff17": {"doc_hash": "1e03a03190de3114e69abf6e9d02f97ba00d5bf743cd2f73d37a9d45c086c5a4"}, "1095fffc-e023-454c-88da-e8c24bc28e82": {"doc_hash": "3d22a333d758164bf30058bd301d9dfbfd0487d43064b2ebabc63f88e5837ee8"}, "3bcfa11a-3d3d-4fff-bd31-a9cec14dbe9c": {"doc_hash": "3c1a1dc3f0a8082e0d0dc9cb7a09c06d31b9ea6cfe106dda7df5a34a5c962e5d"}, "0bc53677-2697-47b6-800f-89ff1da2f2f7": {"doc_hash": "40565796c4ba0333fc06f00cc4e2755a9feea3980dadc5a93a3fdd4fa0f3cbde"}, "f4f00ff3-56fa-442d-8ef2-9c4ca4736376": {"doc_hash": "a7c589c43a0bdc6c4fc8b343bfa65bf936099277a9889a18e2231ce8dd56a244"}, "ab94c84e-faa3-46ad-b0cd-8954bc2ef260": {"doc_hash": "6c836a899825d710e64c161858bbeed147fcc10edd93df6f301e87a7386e89ef"}, "50f7803c-7efb-45d5-ba28-635155c5fc4f": {"doc_hash": "c32124e42306b479c58f93cd249571547c7f57f6aa3461f59770d2148741ccee"}, "6ae5d33d-30b7-47d2-b945-6f71791af405": {"doc_hash": "5fb4b05fb5c177c4266ce99da61b24787713d13344421a910b913994c4920cdf"}, "6daf950b-9c88-438f-9757-2b6c544d0b04": {"doc_hash": "b88df71729a9135a15a20309a4f2e41acc9ef6df6143964460c284a4df46564f"}, "3c6dcf35-7412-4f68-ac74-adde2f7b5134": {"doc_hash": "643df0902ea9fb53fb774bfdf0834a49d0f53805255f3a70ca6c1d7146825f8c"}, "dd994aa9-ffd5-4886-a1df-5f8a21286da6": {"doc_hash": "c56e32afdbce0051efe0c49418b208c7d80f4f169f72661d7c798914b1cdec32"}, "296249e0-01bf-4dec-9622-c0850f83ecc5": {"doc_hash": "dc451067fc3b63bb5c4429a5f0ba7585ba902e6226336813d8a9406718b5eaa8"}, "a262d057-8d77-42c5-9a89-3188d79b9893": {"doc_hash": "1fb07f9757df1b1257ea036faff1c428968608880ce7f2a4dfe7fb71f58429d5"}, "1ebb5f71-2f5d-4611-a975-b1d8c32fe040": {"doc_hash": "43db77903747859536097668d1c1995d0ec1409c87fb3c422bb403898d39cfc1"}, "94b20e90-7916-40ef-8e41-9632f6844787": {"doc_hash": "9edacd202d223b477110b8086a527c52cc9cb32ec1789a43a03bf9be80c442d9"}, "821040d3-9adc-47af-9e8f-95caa036491d": {"doc_hash": "d201c4cf4e56ea80fa69e2c228d3e2f3c6ae09ff0abe89aff3396d57769e7d38"}, "303c678b-4232-47a9-9455-d9391baaaa49": {"doc_hash": "2b0d2ec8df52c26fba3a84de55b8eb1e4fdcffa76c2a82f451a38124ece6fa63"}, "7f4a19dd-5982-4ac6-be64-54dff7cbb176": {"doc_hash": "d201c4cf4e56ea80fa69e2c228d3e2f3c6ae09ff0abe89aff3396d57769e7d38"}, "8799e86a-5519-4697-b866-797972f40d5c": {"doc_hash": "e3691977971ec47d1372acabe081b5f23931600f4a681cf7883da8fdc4256218"}, "c465083c-dfcb-443d-a011-e05a7d8b6572": {"doc_hash": "438301f0a5de1c82e38f1faefcf57880c223c01b9c77c48220438a35fd74807d"}, "eaf7d3e7-bad4-4848-af23-c50cafbb009f": {"doc_hash": "09be80cb540eef7ca96b755561871e9a7a8b81253392b64367c79f48b96ce6d2"}, "cf26ff9b-e2cd-47b3-9f91-ba621cc1b131": {"doc_hash": "2ef79b0640443d4aff8fe72d4846d00b6788a39314839c1ecc7030e5f5ccdb6f"}, "7797fb4b-430f-4807-8b24-883e270a3a3d": {"doc_hash": "45b68b8d29a16e508cf2a74b52f555c73599b751cfb78f92ef8acfae8665137b"}, "904a3afc-d116-4c75-b30c-bb2c37e0725b": {"doc_hash": "09be80cb540eef7ca96b755561871e9a7a8b81253392b64367c79f48b96ce6d2"}, "417aec6d-529e-492c-b069-156861142815": {"doc_hash": "94e7bc6a56a4fae3e93bf41b287bc12e55c40c0040fa87c8ec585616b48c92cf"}, "1a731606-d439-4f76-9e83-c40360894e19": {"doc_hash": "c1f9d57760632d0cc0459dd38b2ef1edcd511c377f723b6c6727c90b6fbb3b15"}, "5ad3f174-df8b-4315-941d-b50415aaeb77": {"doc_hash": "9243df71043f44d89c45b5e1add7a4a7cdc0be88f2c911e78f813237eda9fb6d"}, "6373be1e-2941-4482-8d7e-feb5316a160c": {"doc_hash": "a89425e1aa78f9cbbab47f9836bffb41635ac31ad51614c6ddc10687b2d3097f"}, "6541688c-1f56-4cde-a319-67a1c85e6e02": {"doc_hash": "b6727b3753593e72745f06e4ec678c08316c66e008e270245c1bb9fa05a5498b"}, "1bddf82c-eeeb-459c-a298-bff48a82a43e": {"doc_hash": "cbb9e5b289b9dd32896328034c5d836c22e1253f562d5bc775cfea136d9c2663"}, "e86b2357-ca10-46cf-89a0-65ec5b942f8d": {"doc_hash": "755daf4c2eb87432e307a14b69bafac63c7ed5e59a5036701754f2dae7738024"}, "b30bdd19-acfe-4cb4-a6a5-20d7759e8ec9": {"doc_hash": "499914babf22067be95b1eff5257762c0192fcd9b6ec1fc86c7904a86c7d42cf"}, "5fe4e490-a421-426d-9c76-f34a4859f9d1": {"doc_hash": "daddee51f66d041a845aef95d718e1967c326490ee76d534258686754da04dad"}, "4901c299-983a-4a81-b4dc-a4e3726c79de": {"doc_hash": "0a8fa1726a6728138449f1b5f92dc175f052e38ffc65289440212cfca1542941"}, "59eb9170-d56e-4e4e-8bad-c988419e986b": {"doc_hash": "6cd5956a8d42ec18af4e27085a6ed72ec96ce0645d352055ed3692dc9fad6415"}, "6840ec80-7677-4911-a635-7a9f0ed9bc7e": {"doc_hash": "e9aafba21a0bf8c547619f9ee4f3c6e52adfce4dde03ab6361af4b8bff690e82"}, "7375eebb-d5e6-4a0b-a8d0-4024d9f0118b": {"doc_hash": "6c4f27aa26a936aa149543a418728edcaf41c394ec3a45d2c2c4c21f2aa896e6"}, "bbcc61c2-bb80-4a95-b584-56fca2fd0ddc": {"doc_hash": "47b14bdeb884bfbb566cc80a59f56edd021afb9a379c52912c8ece10d46cef69"}, "daa4a211-9852-48df-b162-dd67e4ba0d52": {"doc_hash": "8baee7da534327a7509bba53913a5260837453edd8045efc9ba95b48ce649e57"}, "3b3a2d21-adb6-4092-a532-63108fb15859": {"doc_hash": "a6c62e7dcc30e22a0112bda5171989e7d9162ed5d45cac639916888fce5cd421"}, "d3282272-5bd9-45cc-bc61-31ffea91d07f": {"doc_hash": "e39ce59a931b48a6ba6a728b439164b23b7f3fd1604ca89c8037b4dc755f8b71"}, "16e5a958-c32d-4137-b409-d59e67c521b3": {"doc_hash": "4f85715b1e81521dd8758c8855888ed518c66b5a7c1cbd0eca9e8804184c8c02"}, "f8ee7337-e899-408b-b0e7-376c08a81c9f": {"doc_hash": "73e573bf989ce33b8170255cea2dd9f5b2c72f1b8171c31e793fe7b32d62a043"}, "d22bfe9b-4a60-4262-8009-0f953b68f228": {"doc_hash": "522faa52f3c2c5c7384334deeb728098e08d6c3fa36f2adfbf34535955903f43"}, "82c7c5f2-14c0-4ea1-96e0-55d24815a934": {"doc_hash": "fa37d63b1ca55f0d16cf399d9b6fc1d15d83693d09379312d2e58011ebf60a3e"}, "c1b73fca-d756-461d-a74b-52bb8dcb596f": {"doc_hash": "8da5d1ff8dba815062cf3149f9303064a0cf2a38bf742e6e2d0a6703773d81b6"}, "29cc3093-4a3e-47b6-b979-10f0b68c7536": {"doc_hash": "bcdd7c74099d267463c8b6c1d4d2dbbd63e58f1444cb0910d3476db27bd2314f"}, "cc0fc37b-8587-4386-9d6b-38919ef43c54": {"doc_hash": "81d5cfbb884b0a84e0ec4e24d93585c756da11803416e9bcd7370b9c7ceaa308"}, "6b4993ef-0255-4ba9-a433-ff91419b52c6": {"doc_hash": "c967ce45493587ad0df9356570e782c11c6a0cc4349a0e0fa5110b9e45ef1f6f"}, "94748ba8-d795-48ad-a384-2ab41d37d2c6": {"doc_hash": "5d278beb44f92177de05dd8af0e48432d5299b01d0b31eed92939e3b05cc2e21"}, "82205a0a-94e4-4add-85ad-eb1ad91dc841": {"doc_hash": "2c202d296a7baf8e61ec252c62f2b05e12925993bf215363979f2d40579229bb"}, "e634f55c-48e7-49a7-b21f-c19bd5a37209": {"doc_hash": "742b49df0e47b96c43cc7d40fc10747ac73d2d227fb5c5431538105a79ab441d"}, "665c9256-7794-422e-a4f5-58dd63d3b321": {"doc_hash": "5dfbee350772f5b745c56ac069197bfb43162848ff624e7f22e79d6cde89de2f"}, "1dd849ba-339d-447c-b1c4-1f3ed80a1d26": {"doc_hash": "46b2b348610ee5402d1152434b28b0ed43c426d2c560e0838db6fbe20b7cb10e"}, "e7dc43f6-ce13-4157-87b6-179846175fcd": {"doc_hash": "1a23aef87f93ead4c0a4b3df59cfc5c985c062012ef82ed22a05ba8ad4354ddc"}, "ea87ba5e-ff95-44f9-83a5-8884bd886de4": {"doc_hash": "c357f0fdaa56552d5d1954c7d8ef1fdcbc3e20524d37eac3b052b07e8e6e0d9e"}, "1d431df7-1378-4d96-81b1-74bb9c8a243c": {"doc_hash": "fb9f4c97b618490fc52284e86e0742b4f71a418875e5b8edee3bb306c5e5905f"}, "f184122c-81e5-45a9-a612-d8b852c042b3": {"doc_hash": "4126a897a947e6cd9ae8555f6e14004dd197f02449a7e41918f26870840f02a4"}, "7545faa8-19a4-4494-9d5d-e6240d0e9e3c": {"doc_hash": "5fcc42c5e0be702504afec721edd6e98e3f87ca1000a0b01ee706aebd7f15243"}, "9158184e-4261-4309-ba1d-143eee835163": {"doc_hash": "9ecb62085a5698f224b17fb11870f585ad1885ea9b118b9f5d4d51ee35d048b3"}, "c1142512-08a2-4305-8728-79e2a42d6d2d": {"doc_hash": "3622fc3be6c37d9687218043fabb68508a51044b8f0d416424fa45fd97fcf55c"}, "1bdfabe8-645c-44e1-bf10-382e2ce59a95": {"doc_hash": "ebfbcf337ad74220b86f417cda9b0f9356263a561fe3ae42d7e882c80ca22b93"}, "6bf39a3d-3528-4146-9655-90a9f95fd9df": {"doc_hash": "138ac834c4ef2c728f0b211902c83d924731055afea07cde455e4f7b40c3fa43"}, "cc4f60e5-a448-44f5-bbf7-192d6c8ac8ef": {"doc_hash": "5a4018b32d1f9eb65d99ac472df3d5fd0a0b7af898ec898f68e198465b3b64fc"}, "e777e248-adaa-40b9-990c-dc90e67fb8d8": {"doc_hash": "d6ca574883449f20288b9b44e8d518f8b015d452ce6ce3f89d44af75dff8b450"}, "b723447b-5b47-449f-a42d-d20057e87d73": {"doc_hash": "a4696646ce9bae8d157fdff91734ce76b06deda64357995f88e117a7bcb77ab2"}, "563f86ff-c773-4318-b5de-4b005a00c15c": {"doc_hash": "1f81865e2d10819aa6ec86cacfbb3112278aa0c8f2ca0d8f8ebd2b2d9725f925"}, "91f6257d-54c7-4248-a056-4007af9d01e8": {"doc_hash": "65aa46410bf5fbaccee92fe649a7c30209ca8e2bf99122ff13dbb1e01cd0110d"}, "d08c0faa-fdf2-4c79-82cd-f51349b011f0": {"doc_hash": "cbb9a6257df1e9a36f26e32661d3001b2ce67df5837a7964240e818719deb219"}, "9ec3d41b-c7f8-4ef3-a6a6-1f5a5bbcacb9": {"doc_hash": "81b5ba7f3960b120263cfafa83c748a06de7c37996562db8476e5a5a904aa4af"}, "61677468-6c24-4927-91b0-6cef5b80852e": {"doc_hash": "df741be94531c7b2aec861b0725560bb5fd8e24b2063432e4f566d348cdd1cf7"}, "4937f679-5b1b-4d83-92ae-87c2b7e37adf": {"doc_hash": "b2362bd0aab520e116359d399eb918aa3135e0142891bea7b5ff6373ca36af03"}, "c4f7b5ef-1a59-4619-b54e-cf41a374b635": {"doc_hash": "aed89004c900c7d3cb2a09b35b4dfa5418a58b4bdb11ec989ab971df0687faf2"}, "7c144053-e6f9-4cad-bb77-c063d620e0b8": {"doc_hash": "c34472d25635e043249f0fb2d9356e90196542b699a43f8ae897f9d95cb29ffa"}, "e060e8ed-36f1-4c0e-aef7-6a91690af859": {"doc_hash": "7b91bdf9832c343cdfc6f15696d527b20da25388334abbd26ea23c73dafa225b"}, "f9836538-74a0-4207-8c08-c6103728d6be": {"doc_hash": "6558ae706b5384ac0f9c146bd8aae447876a6d73a50fd36d635fb38843055a83"}, "a8ff9a92-9b91-4767-9913-174a84af5115": {"doc_hash": "e4999aa5225211d59ee355ec433c70d3c51cffb64e4c26400a6bd12aef838195"}, "ce3f47aa-6516-42c1-8cbe-7d9f9f3fe51c": {"doc_hash": "799f26a3a5b37f437ec5981059f5fa9077e4bfd0ccd5eee7b7d9f6c29cf2fba3"}, "16639bfd-8648-44ca-a3a0-e2ba6a3a98c8": {"doc_hash": "404dffb6e738c78b09e5c7c0fe81c0724dc8441cef22ce6768b1c50a16763a3a"}, "623b56b5-c42d-498e-879c-067728194106": {"doc_hash": "bcc5ca85c973ca80abf44aaf25d5ffdb47c2ccbe1c1ca0e9b0c8dc6486e50675"}, "ffce1b10-7adb-42a0-9334-4d3664ace063": {"doc_hash": "20ce693b38d9e49b77cbddd8004582360afefd358ab6a138e7f4d1436ee4a689"}, "268e1e4b-d8da-42ba-90c7-ac6017dabb9e": {"doc_hash": "87a990097b311f05cbe3e1cbceaefa2c30dc28ef95c13fd730cb588afd3f9456"}, "f00cf63f-75fe-4ccd-aeef-91783ebd153b": {"doc_hash": "1d8fe01bcdd1293d88402ca592f2998a19a6e5d5a90f5f24fa354dd517452c5b"}, "bfd1115a-3599-4761-a2df-20da99be5902": {"doc_hash": "78b6bb1b9c9c1cbf932b74ba923019174f39082adba922081c14fefe94e46806"}, "2ce78b70-9965-4bef-afed-8005e9808f4a": {"doc_hash": "dd77898cc8b787989ff02e99eaadfb7fe3a7d327e745fd09a1e80480c0177809"}, "9b9a4941-3530-464c-bc90-233826c569de": {"doc_hash": "89a219eae95914671e3ec4b13af519ad2e656f3701c61b8dddcb7c67ce815bf7"}, "ea8f2a24-783c-4441-87e9-3d6a524e88d4": {"doc_hash": "f375989fb7cb098656fd92ec76edb8a6988b562e8611c4cc24231a9ee2a45483", "ref_doc_id": "ce79c7e0-2737-497f-b28b-129a092972f6"}, "9dd5ef61-505f-4cf8-8a57-775a5a4a6d9e": {"doc_hash": "bc5c6fb817cf903b1231a7e4186490ea92c64bb44e82b11754ff231d802eca7f", "ref_doc_id": "d9c805d3-b4c7-4edd-979f-5e9e9ddbf844"}, "a5dd4ed2-ffad-4506-a1f2-e25c12569798": {"doc_hash": "6297f83b572f6e2e8102c1d2629d3792d35e1a5d0bcbe70207999ba810e8086e", "ref_doc_id": "068cf630-c9b1-45ad-ad7a-42114cb0f760"}, "83a1dda7-4b27-46a2-90b7-42ee0797ec3f": {"doc_hash": "3f344eafb68aeb714deaca9505252830e4cd38d123e739e45727701e9f5f7eb8", "ref_doc_id": "88c52465-0591-4e30-b3bb-80b593e67e63"}, "06a505d0-5a9c-48de-aa71-92c9d2e1598c": {"doc_hash": "5c6a03d957946224e42a33e6f543c6645ac923e98611d19044edf61d7a78c22b", "ref_doc_id": "9d1aa5a7-32ce-4db8-90f5-b80c3590d2a8"}, "a64c9c75-bf7f-49b2-b815-51798474fc5b": {"doc_hash": "1fa69491710ecc093d2108b602e1f752569c1869c813d394c8b9870590c608a0", "ref_doc_id": "ae939c3e-1ba7-45a9-ab77-a57971c19e70"}, "4250c708-0eaa-454d-a61e-ca6949f4cab8": {"doc_hash": "f54c4d73b17d4e6acfbd9108d2a7ba9ed788fdeb6c074f6d75b6a3d2913207f5", "ref_doc_id": "3e7b8570-c846-456b-a2da-99e9e00b152e"}, "f5dff58d-3f9f-438b-aec4-ad9d405dd0d0": {"doc_hash": "24e096266776cfc23be49f77cf23fa1835baff1b63bd0e146ec6464d9d197580", "ref_doc_id": "987b823a-a32f-4e0a-be51-321a464fa024"}, "71c6d102-1b98-40e2-975b-a0bca03bf152": {"doc_hash": "d4dbf46a058ef642f70d18b1cf22e16df356d3dd9e238622e2ded663cf985fce", "ref_doc_id": "68654e11-e95e-4198-b977-342ffea414d1"}, "7b56d953-5d3d-4c26-b263-0d7d273eecf3": {"doc_hash": "0a648ef2385f55a986464f0d1034abcc94fb17c33e221b0c952bf965748f2505", "ref_doc_id": "4058c3ac-5fc2-44f1-be9b-caf4592c1975"}, "2206a4d2-1112-4287-adcd-0bd9dc77978c": {"doc_hash": "33b3ad95fa1d783ff739fefb402d4ed472fda2954f3b894aa98a2379a13857d5", "ref_doc_id": "c2ae3914-16bb-4bcd-98cc-2bc1b8c64211"}, "c64c4674-00e9-4ba9-a68d-c40cbcba032b": {"doc_hash": "881871480d10c68a5e1be49cbb8063234e1e23129919d72c2764e776ad3d4700", "ref_doc_id": "cbb01147-887b-4402-bc1f-e0d680de53b5"}, "1d8fe66d-74de-42b6-b42c-602120f097f1": {"doc_hash": "9ca6a17e42a0e4b1531505d05ca55c6e2a3c1b8e5c571732016eebdc29f7b7dd", "ref_doc_id": "e196e0eb-1d62-4e56-b3c7-860b8b9cf82f"}, "4354a668-d85d-4c5b-bda7-a24d7f204a75": {"doc_hash": "7ef9294516f77094a3862772a5324cef87d75fa222de3a4ba131a2ee1df283e4", "ref_doc_id": "ea29a5cc-7be0-4c1c-9d82-19092d34e2d3"}, "cd26aa1c-a6d6-43dc-9074-a568ef49975e": {"doc_hash": "b8336924f1327f09b4ae9c889f78d26b2eaf74f11919776dca513b255b0da0eb", "ref_doc_id": "fe785f87-4fa6-4363-8b94-e20f73ac4c69"}, "37740239-6453-42e5-9485-42937afd3209": {"doc_hash": "dc9337248cdd1ba876295f92e575d04d4396cf7d0fe3b2c43c3bc88042e5248c", "ref_doc_id": "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0"}, "9c58f533-fead-4e94-978a-70b0be81b612": {"doc_hash": "1e99046ac5735ddf55cdceb820d4dec2eea37bcff89035447376cce2ebc2b914", "ref_doc_id": "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0"}, "e14c01b1-2eb3-482a-9383-fde15faf6a52": {"doc_hash": "ebda4db9fbb9a4708030740448ad6b62cbf946ac231829bbaa22e946e4d964bd", "ref_doc_id": "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0"}, "2014263b-21f8-4d9f-ac1f-1ecb67ba4b67": {"doc_hash": "0ead6f3e62631ad523e2706b309edaaabe6a366f90714511135f866f000995bb", "ref_doc_id": "ad902677-e961-42cb-9ffd-5474262f813d"}, "f90d1ee3-a44d-4025-8de9-ca2eff283765": {"doc_hash": "1a3594c2491c00e1e31d36057bc76c374c9a8f8af8aa81747854ff0f5ffdc1dc", "ref_doc_id": "28d917d5-327e-41a3-9f41-7e786ec0ff9e"}, "cc5a89fa-f97d-4b34-a08d-7c8f2380f647": {"doc_hash": "e195c387759a2f897538058a906056e446bfec0460090e954ec9ea7730dd1458", "ref_doc_id": "28d917d5-327e-41a3-9f41-7e786ec0ff9e"}, "67fa80df-74b0-495b-ac54-b805b10d55be": {"doc_hash": "e50d961f6c82901c2a9e3b4687fb8d4d030b0ac5952cb7e13c2d72d56b69c46f", "ref_doc_id": "210f7abe-762f-4d0c-beeb-219591370b19"}, "a7dec113-d4ad-42b3-8c12-068e790f36fe": {"doc_hash": "68c4abe4056e733e78c06369a56183076d08e791efcdb55c053971b8ef679a31", "ref_doc_id": "ce577892-aa46-44ec-a3c3-ad82a8847f5d"}, "ce9b0860-1fd5-4916-bc02-f7003e48000c": {"doc_hash": "2a2967329848b86917f950d1d0302994900a3af01dab4dbb7ad4fa8619372066", "ref_doc_id": "4303e09f-8bce-4681-943e-06eac590d9d9"}, "fab83493-3635-42a2-9e4c-3f9c9811b13f": {"doc_hash": "d4b84eec23e11bf904eb075ee74377346a1a0f56180d23d99b1085078c2e9ea9", "ref_doc_id": "32c12c5a-b937-4e78-a5e9-0995028d8043"}, "1b0215d1-5988-4f5c-89a9-25cdeeb163ab": {"doc_hash": "a35ac1d9e755316d7ba9f8f4815331b53bf40f8c4c974fab1fc9e045987f75ba", "ref_doc_id": "a7c6cd42-a821-42ce-82da-45c1a7653f6b"}, "3948ac0d-cd21-41a2-b82d-23463eda3c94": {"doc_hash": "66b6e8ebd2b77a80e2f87e3a9df3ec7701601033fd14bdca4c48f5264dcccbe8", "ref_doc_id": "968e52ba-8d2d-41cb-9ecd-02f41e519527"}, "260d1dd4-dfbf-4c84-b924-99494034f8d5": {"doc_hash": "2e619fdeff44a61c43f4e84ad1e270437095dc4fcb3d1ab49c6934575c80fafc", "ref_doc_id": "37a6860d-b01a-424b-a69a-0371ffab694a"}, "dbf80e15-499d-45af-ba7c-ecca12f0bcf5": {"doc_hash": "fcfe945850dc3854666dfcc3261c0fd9df8a61e5cdd0090a401abfe50d0a6362", "ref_doc_id": "8d31b5c2-c82d-4436-97fa-9038886e7a58"}, "084f7f0a-335a-4332-8fba-ea8af93adb07": {"doc_hash": "94c50a04454c134030264388783239fcdc46f26207f1c2c83bf3f8eec3f99b2f", "ref_doc_id": "ec004f6b-f580-4214-a0ed-5ef66f0b423b"}, "e02f1412-7ee8-4e47-8fab-65ec2e609219": {"doc_hash": "b16e8e9908c8bc7898ac3778d79c8323b059d5f8fc2fd3721e4199aeba082e59", "ref_doc_id": "7f292052-e685-484c-8a88-ced6af9dee2b"}, "2fa953dc-0470-4f3f-9486-03d37d36846c": {"doc_hash": "889656e98521a12bb9345c316a4ad2d0ed815e364c0cdf04cf9354bf5392daea", "ref_doc_id": "e29949ae-1997-4278-aba6-381cbe396c43"}, "06ef4019-abd1-439c-bb45-44f3e4971932": {"doc_hash": "f923be6c28fcd222cd2742a4ca18823851a2fd4afb5ec91ea10cf3c3a9aa90eb", "ref_doc_id": "5eadb649-7007-4e92-9b26-dc8ca221b390"}, "c84d20ec-e28f-4f37-bd24-4c09ae107433": {"doc_hash": "55807e90ddf1a4863cbb334bf954f26d34abb8a2f0184d4c98840d935ed712f4", "ref_doc_id": "d26b7075-c33d-4ca5-89e8-dbaeb3ef92e2"}, "533efdc1-0693-470c-b252-baa900561f46": {"doc_hash": "14f692b6c1dfa4215e9c16f3809a75f5ddd9bc9c9e8cf5e01c27815a773b6b11", "ref_doc_id": "d26b7075-c33d-4ca5-89e8-dbaeb3ef92e2"}, "3ede1386-094b-460e-b22d-c32b7e2e60b1": {"doc_hash": "1937692a4cc6ea8e8610b27207fb884709f8055ad3b0a5e1bffa982e446cba16", "ref_doc_id": "f7935bb2-2cad-4d9f-98a5-1058e64a88a9"}, "f8e78a3b-853d-4dd6-96a8-8c757663e864": {"doc_hash": "c371d81356f9428d3bb3bc80d878b1930ad39b12c7e395bfd6624707aafc9f67", "ref_doc_id": "6e42d55e-f0a1-4b3d-96e7-26bfcf75a41e"}, "70a996da-13cc-4b16-816a-ef5e21359e11": {"doc_hash": "b896a14ac1feebc1713e128fff1bcbc52d18bb1f88802732fc56893510a68d70", "ref_doc_id": "115941f4-c39b-44ad-b53e-075bc067bf4a"}, "742d11db-0a2b-4ecf-bb72-3544da7c3f52": {"doc_hash": "e60dc689939ee222cffc47ff77c508528d1dd22614ba7811bb5a9e1412a5c28a", "ref_doc_id": "d080c1cd-af48-43f0-a9cf-364a2a1452a4"}, "342e8fc2-89cb-4b43-b0c9-5f505ec39829": {"doc_hash": "28449c21a2b2c1e9e9fbe7738122a0ad38c7fa51f7dbd550496e15bc98b3cc61", "ref_doc_id": "3a73aaa3-4282-4375-98f5-5566e21358a0"}, "a50538d7-39ba-408d-b535-b62c3d5bb41b": {"doc_hash": "523daa000752621dd02c7bbe535117eb57fc497fd06633e184218b778093ba18", "ref_doc_id": "3b1cf835-65ab-47d4-9483-69be54ae419a"}, "18ca8e93-92d9-4eff-be6a-b6e49099476b": {"doc_hash": "cd982df25458c8d1e172609c5fbb409ea7bf79d292ae2a8ce7c6f50bc44d2d67", "ref_doc_id": "b427ca59-425d-41f5-a205-da189a350d02"}, "aa3dd74c-bf10-4fec-98e2-94661eeb3270": {"doc_hash": "fd88b396bb1bc574f20b43abd3f56a70dd6a53620563ef95cc8d2eaf3b13233b", "ref_doc_id": "b8d70b19-f260-4c43-9334-2671cddcf503"}, "b5acf5c9-7372-4cad-936f-15baf28828d4": {"doc_hash": "2068860e6279cdc790a0d773ecc69f0bdc6a9ae2e3f31fae23ef38701d360966", "ref_doc_id": "b8162150-85b3-4fbb-9da9-a5b54c5e7f88"}, "ed8e6383-00ce-4f6e-9f26-c13c25f41b52": {"doc_hash": "280517e795fd667f442c014cb0e26adeb0caf689a3c0aba8e8ff65afb15c116a", "ref_doc_id": "179127c9-d49d-4e15-a6d1-d977f107853f"}, "be96e7c0-2f2d-44e9-bfc5-6deaf6a7f934": {"doc_hash": "44d61049a75d406d963e00956e8f7afca4ba464b979f25d509c55abd9eb22cd5", "ref_doc_id": "cd5e317d-895c-4369-acaa-22c1f375024d"}, "a483c1ee-77b4-48a7-be28-b9a92ec5fb65": {"doc_hash": "b16c439685f32156613e8b97e925112c860d09dfa55c9c0db0bfba57dd44e67d", "ref_doc_id": "47c50451-9153-40cf-8a3e-2df754742596"}, "33e9e11c-0356-4c36-9d24-127d9ec3f40d": {"doc_hash": "070b95546592927794f493e39ff749774918dd0f16863e30772eeacf7486a420", "ref_doc_id": "dd1508fc-36b2-4ffe-877f-2e078e0e6d93"}, "9355f9f7-4d0f-4eb7-8c26-b117bc816adc": {"doc_hash": "108159e9e03b044159141b8ce411db1ee52558784d6e5a4929e6de1507e186b9", "ref_doc_id": "e59201dd-50da-41fb-bcf7-828be248612b"}, "11bb893b-06dd-46fa-9c3b-05d0561e330b": {"doc_hash": "dd6f903576cf2641f9dcd7b0fa519b6b22dc83511dbd9401d52ce7acbef22ab1", "ref_doc_id": "e59201dd-50da-41fb-bcf7-828be248612b"}, "f53eefe8-eb19-4cd3-94db-225026bd31af": {"doc_hash": "455d244f15adf7663d8db3c336ec36bd76de7d408b498b5062a77c925467c4c1", "ref_doc_id": "e59201dd-50da-41fb-bcf7-828be248612b"}, "b9fdbcb9-5edc-43ae-8050-dd72079dac26": {"doc_hash": "87d4604660f5cac48c8cf36e1939b9184780d0bdbe41c94369a4570fc8c562bc", "ref_doc_id": "cebfd4cd-b7a7-4e2c-ada9-78695d54f04a"}, "8bb5fe02-f66d-4302-85cd-4c0c956bf6c0": {"doc_hash": "41f02c59f86f79b7c2116cab90d5ae43cced566f8310b9204818c38d561566ef", "ref_doc_id": "ca65780f-bff0-4525-98af-59ce39554b0f"}, "9b546d02-7c84-40d5-aaae-19fad4f818b9": {"doc_hash": "bd90ff6b8d83339ced524d0ceb997bb9ca67cddd59238d8bb5ecc833cfca807e", "ref_doc_id": "c3f31aa3-3a65-4566-810f-304800b43281"}, "b689de3d-49d0-4f72-b07a-a561248ccc58": {"doc_hash": "a111a124710372db7c10aa64d860d44e4eca5892c35802311a3a566f46308a1c", "ref_doc_id": "500bd4a9-9d6c-46d1-a7ba-68c367c65b19"}, "427e9668-cbaf-457e-ab76-98b61061e9b9": {"doc_hash": "8e842aa62012f9c9b229ce84f2338d4466b8e1bfbf9458d5d6282d385b633acc", "ref_doc_id": "4699fa1d-4331-4faa-9df4-dd354731616d"}, "308f55fd-5f56-42b0-b473-9a57716dced2": {"doc_hash": "ebea327d2061c05b5ad67c188cad198864c1c8638dda971adc5eb09a79cda953", "ref_doc_id": "d17cb98f-78b0-4313-add5-4f6024cc023a"}, "f50169a5-63d6-41e0-8f71-5b49f72769c9": {"doc_hash": "10232c09d1dbd5d36aef8fb02aae700ca00a7468f2ed2ce8718756ece2ef1ed8", "ref_doc_id": "05a2ef2d-d2ac-4130-bdf8-e36c5df8abec"}, "f83a5752-4020-41c1-bc2c-9d74e407fdfc": {"doc_hash": "bb96f55bb8c14ff856e3d0c7b2c0853a1f5a03a9a21d33914f1e11efc061f0be", "ref_doc_id": "dfe8ba87-12c6-4352-881e-007366b9329a"}, "e70c7fff-b77c-46dd-9009-dc930ae0692d": {"doc_hash": "ad4ffaad2d9da9c6e5d60bd5a33de5f66c8e8b6f0dd7737613dffd829f8b6ec2", "ref_doc_id": "22419697-3d51-4f4b-b3c5-517fc93b85eb"}, "f1b73661-889e-4a8e-b150-42821788ceb9": {"doc_hash": "b29939d2661b1dea098ce776b9291e31e0b326b40dc398b7d575f30d97c54fb5", "ref_doc_id": "22419697-3d51-4f4b-b3c5-517fc93b85eb"}, "d930e5fa-ab0d-4a54-a85b-c8683ca6ce79": {"doc_hash": "00028214bb75139ca54dcda14a6b1d8112fca009a1015f13625fea92a0ccbbe1", "ref_doc_id": "1b12cd2c-6cbc-4b8b-bc11-b0f07bc21165"}, "00eddcdb-b8ed-41b9-838a-2d79d8fb57ab": {"doc_hash": "42336a5edd25dd0dff1b4abe26c4e3b399aec4644745e32ed6876fe5dcd62455", "ref_doc_id": "f42aab04-8e78-4f6a-854d-96e38f4a5861"}, "7ad21d09-559c-4e47-92c4-2a2e60192654": {"doc_hash": "7791fbe63449f6b6af11b8625153143f5920270cc73ecf202e07b646a9a504f2", "ref_doc_id": "f95c4018-54ee-4594-ba99-26613ce4b0b9"}, "8fe56bf8-c709-451f-9cb5-3d45acff76a6": {"doc_hash": "91eca5398c501bd894b9de55566fe48cc9f36b0d9cc33e9399d563d32cbee8eb", "ref_doc_id": "dcfb8e33-0dd5-4a5a-b143-767385e89c45"}, "283ffde8-e3e6-462e-ac07-8d9c0aceda45": {"doc_hash": "38ca9236e70af3d74a7ca94a3e6eabd9198992ef26a8af7afae9d9169c2a0824", "ref_doc_id": "851eae1a-b9e2-4830-8dac-bb1210d3f0cf"}, "17dc908d-97bd-4f70-a113-da91d42944fc": {"doc_hash": "352900f6c92eb598e66479c7ddc2df373a225b4d4cd954fb9b8fd173a7972561", "ref_doc_id": "5abc6f30-b9c4-440e-bfc0-e6ace08009d1"}, "b47de4d3-efca-437f-b86f-a511a8a488c2": {"doc_hash": "8e8a3d38431e6288a4f8464a901b05ce880c241ca0a0714d2c5eec0d4c229ce3", "ref_doc_id": "c6e71118-ef41-407c-ae38-6c9531a21885"}, "470d7749-2dac-40b7-809a-2f8e5dda995f": {"doc_hash": "5133cd431a25c7a45300c247aedc783a0c3744c7d34ef0451646f4429da06e8a", "ref_doc_id": "e06a2dad-4079-46f4-86ee-e7fefdd32765"}, "c1bdce91-2f0b-48af-b4be-c8498c881ace": {"doc_hash": "8192788ef3686b1a5a26b73553987905f321e211f87c2b52a474d2a10785c638", "ref_doc_id": "b98f2a03-09c3-4729-8aa2-edc392482b5d"}, "9df26552-c77b-48f9-8468-7ee0482ee31c": {"doc_hash": "3a64095e455761305673d6ed9e596446b20865575fbcc418e78fde87f22e579b", "ref_doc_id": "c75b624b-0673-4028-a63b-5dca4caebad0"}, "9e8f0265-a120-4449-ab49-84c01e1501fb": {"doc_hash": "938b4e2ff091c49e6046c56d0c48e071a669831b2e0be0a9d25db6c08769d7e4", "ref_doc_id": "fb72cf94-871a-46a6-b2c2-e77ebfb0a841"}, "508c0633-27f9-41ce-8943-38a30ca38670": {"doc_hash": "4d1f7bdabe25fa5cc4bb69560637fb84477946075e6eb5e6f18cf3d25bffa457", "ref_doc_id": "d8b49b77-5ea7-4bb1-bd66-ce20ce838553"}, "de287235-bc55-42f3-98c4-6a2d542b2740": {"doc_hash": "22985006f7ad800c37b09b3ca7c657b499bde9c4fa1965d62c53e0dd8a49dba7", "ref_doc_id": "7267230c-b52c-407c-8454-190574d5418c"}, "23f1ecfa-8922-44a1-ac79-56b894736a62": {"doc_hash": "7cf2353c64656cb9f885578465342992b2458a0e2d6bde59e22deefbcf2690ef", "ref_doc_id": "3ec15043-1a7f-464e-9c5c-d535579a0387"}, "15225548-ae59-44c6-b10d-3788fc066586": {"doc_hash": "afcf01bd711907b6bd87c9b25b020e16451bb35679e4da99702bfe710f2afe8c", "ref_doc_id": "69f6c39d-83e3-4f08-96b1-493af5b225e5"}, "5b34d215-2611-416b-b34a-7470223a687e": {"doc_hash": "a92e368b24aa95b103367b7c4552e937d82d2e25bf232d6fa79d4cea952ed2f8", "ref_doc_id": "12f3e9df-748d-4383-b5eb-8e0db339f84f"}, "bcc8ce86-e983-490e-a23f-d7af513392d3": {"doc_hash": "de2907ec868500107de5e34f817f203498b37138a01eb689425306f905117478", "ref_doc_id": "ca57654f-7e33-4731-932e-fa737b633546"}, "81393b81-5c50-483e-ac72-3ddb2466f498": {"doc_hash": "9db94f8ddf769fc925f014247df473c93638f4adce4b580c960648d198332e1d", "ref_doc_id": "c7cfdf36-eef9-4eba-9579-4bc1b556f2c9"}, "a8490578-d792-4b2d-a91a-e3755211dad5": {"doc_hash": "3cdb6c80b98f7992b367f2d1e168dec89961dc6cda9ba16c16fa362b118612db", "ref_doc_id": "fb4931e0-f4e9-4d86-9e7c-0c10aa5d07f4"}, "bc35b2fc-146f-4cc2-9a2f-0d1acc85fa16": {"doc_hash": "9e3353f942bbfa832014f30f0e1ac6ecbc741dd3886f2c76ba6e1f89479a0df6", "ref_doc_id": "49976c04-4ec1-4ef2-8fe3-d92e41b0da88"}, "1846fdb4-bbab-4f8c-a1ce-295a684ef720": {"doc_hash": "5a11592030637a5a43bf50279471b3f4082a763a8f6315212de85f4fbb223858", "ref_doc_id": "19ea8123-db68-412d-9d74-a03aabed8f14"}, "0cba1902-9045-405e-9a1d-64b1526ebb87": {"doc_hash": "d86ca2c441103084242728b24514cdeced3b75ecae1bbb2ba0d50bfee276f762", "ref_doc_id": "5be45fc8-d6f1-43f4-878e-6b06ddbab2fe"}, "ed1fe994-028b-48dc-bc10-80d78f76d4af": {"doc_hash": "e7039fb78e964d75fe9a0210b025feaa55eeff077d48c19ea1878302fe7964b5", "ref_doc_id": "9f9b9538-89aa-431f-8cb3-a8cc338ee9d9"}, "4896d728-623a-4b34-ae7d-26404e9a13d6": {"doc_hash": "b72b4e0f830091ae46d3a1a949d42015c82e5d651a31ebfea8a5fad720039221", "ref_doc_id": "24c4967d-f328-40cc-9eac-40174a638d4a"}, "0dba0ca0-6cb8-4433-8b21-00c2cecb4ad1": {"doc_hash": "efa62ba335d424dc7fac56f48be2ca30eba717cac7dbee703336b880a9bee770", "ref_doc_id": "dd7a0dd1-80ac-4acb-aae6-04abdd67eab7"}, "6027cd04-5df8-4ec9-9a74-85729013e53f": {"doc_hash": "c292620cdd2daf6ab2e7c116c749a865acffbb91108408a7f641ea75cd48fbb1", "ref_doc_id": "8dd7b6e7-4a87-423e-991e-911c36ec1ff0"}, "f45620fd-aa92-4c7d-b48b-1b70fc3622ea": {"doc_hash": "36631506375b63482cbb25d97f815cb5716a42bea463a3eef5ba297306d631b1", "ref_doc_id": "210fa9a3-c7d1-41d7-b065-251a4c37174c"}, "085fcc40-c5a0-4dea-8039-113b0bd8d4e3": {"doc_hash": "a584572129d6a1c7db781bbd550626a9d840d64b2e0ccf199f43ec28989be553", "ref_doc_id": "951d4750-1ce7-4a82-b1d1-3a7144b67547"}, "ed78f2a3-18af-4f13-9705-e9b9eca959ae": {"doc_hash": "25921c4157fc9b827c1b59c8ef99e9f729f15d48f9277936a3dea6eb5312d961", "ref_doc_id": "56ad45a3-f3cb-4aeb-b883-b9d54843d513"}, "45aadffd-70a5-4839-92f9-6a8f5f60e930": {"doc_hash": "3c82a91e8dcd1c12f6d0765e77fb5c16885a585ff84995b790538f139b0a9d04", "ref_doc_id": "1149b717-c8ec-41ff-8bb2-a8c860e1b122"}, "0ecd9cf8-ce03-4f27-8346-be248bb2b66a": {"doc_hash": "dfcbc084b2bd1f7b631e24fcc20d3c58d1c49b3d698583597e565b2b8b0bae47", "ref_doc_id": "aa0b9af2-ebf7-4edb-b567-c90e5d5932b5"}, "76a79005-725c-4eeb-a2cb-d05bb8a0cb88": {"doc_hash": "230ec558e5c611e7036407fe5254afa9dc4277b04986c1e625c1acb303a69bc9", "ref_doc_id": "f12dbc0f-04f1-408f-b9c4-6b5eafb63498"}, "d04b1468-78b1-4115-855e-de536d9f0c9f": {"doc_hash": "5cc2e105e13627627db1a8852f8b7bfed4468791758590e6ac7c0e62879d6271", "ref_doc_id": "764e76f4-d0e9-4e94-9570-fbca5547244e"}, "c4e7b5cd-3352-42a8-983d-494bcf6582a1": {"doc_hash": "aca0c167e81a1ae7a03279df6358a93ff332efef4676ffcc12ac97b199bb36dd", "ref_doc_id": "dfa154f0-f996-4e89-bc94-d40c9bd718e1"}, "a3a7149a-804f-4666-8986-1cd855092f7d": {"doc_hash": "f1c2670233ac328f55bd331eca3de450b80c6ac1a2405553d71cbc2d2515a24c", "ref_doc_id": "5f47e28e-8f87-443e-b11d-00173bc03553"}, "78af704b-28bf-400e-ab15-0860f9ff21f0": {"doc_hash": "3f5425626ddf5735f3acc2a112c9118bd136b8eee3d0bc762c80306c8ed741d4", "ref_doc_id": "a4663894-f9b2-4950-bffc-f07ffb9a0093"}, "c6701200-393e-4d5f-9fc1-4ecb8bef309f": {"doc_hash": "ab5d3b6c58a45d3ecc90fd7dfa1c7182705f2df86b61e90eb711c0e3ab185974", "ref_doc_id": "cfaf86ce-55f8-4538-96ed-3fe4df0deb58"}, "a9c9ac03-52ba-4828-a891-4f63dcf7e4ea": {"doc_hash": "817e1024b87ee491a3503da3851b549cc5cfb4e15bc52b5a05f05768cdca07f4", "ref_doc_id": "8fca467c-aba7-4536-8adc-80e67a334b58"}, "c9b38449-e0cc-4a69-a302-65784caaca9c": {"doc_hash": "dd94461e2dde6bff079b09d6fb7e947260af02fa26e08846374a09b159dff646", "ref_doc_id": "f52f19e2-8471-4e77-bc32-a7f01b22e2a3"}, "236fce0f-14ec-45a2-98c7-63852575335f": {"doc_hash": "1cea94d706310aa3316075fd814878b4fe34136bd4fc117d15e1eba631356da9", "ref_doc_id": "9556f22a-8c45-4dcc-89a7-fc8d772fa2c2"}, "b6b19753-0021-4092-92a5-82c6385d1ea7": {"doc_hash": "b9606100fc6c56e7a0c9eed521c92b05af8a7eb7ea58f126f424cc0a518d3bd5", "ref_doc_id": "667fe628-926a-4bbd-9bae-3031da839aa3"}, "3677f763-add2-4a4e-a9bc-3285c05feea5": {"doc_hash": "fba7c94afc1e5304482dcdee96196e133be2f18c3175dd24df5a6d5349afa619", "ref_doc_id": "343bd849-6f9e-41fc-a6b5-fa20ae31b338"}, "e906b892-59c3-47ea-8db5-9b62513213dd": {"doc_hash": "ed3a7b62b389066003a43683600c3ddc9b4716e08ad1846571d70938c3eb69c1", "ref_doc_id": "5d2e75cd-1c01-4bf5-a23c-32904cb3f9d4"}, "6c060f29-393f-4866-9884-d6732a831213": {"doc_hash": "990e0f8c44856872c5d86bb61e2a85a8d6d5dd06ae75bfcc1879037a6d03c7a5", "ref_doc_id": "1cb13e86-3aec-4ca4-8226-5155bf18f1d8"}, "be92606c-f3e3-4dc0-8a4f-c9095ab46d10": {"doc_hash": "be61fb49971cf3b76113be7ce1974e4583506601e421fa1e80b8b6fecd6891e3", "ref_doc_id": "12bbab1f-2548-4095-8f24-24acf4f783cb"}, "a80a896e-df16-444e-ba40-7e566075f3f7": {"doc_hash": "ca8ddf63fbd6e64609eeb6431328c1bf85b4c2925281264d44b7a3100fbfb3e2", "ref_doc_id": "91c987ce-90bd-4d65-a079-868c90a62b4e"}, "bb09d21a-e0ce-4bd4-b30e-71b1502184db": {"doc_hash": "143c46ea9efd95593692ed40b15caa10fdba16b8d7580d0a4afc09f57bb87ab6", "ref_doc_id": "ca6aa865-a510-45fb-a604-16484692ca9c"}, "007f28db-1a5c-40d3-919b-4d993ff0d192": {"doc_hash": "65933d35747751541211c2c417d3a0eba4e9de50f229db76263f76918c3131ae", "ref_doc_id": "0b151f23-6052-4c2b-9730-3c0797a30e9a"}, "d44e0165-c1b2-4295-9dcc-bf9de3a9fd06": {"doc_hash": "545c9414376f0544bf7a8a348a4fa6d06eff58e64f66c24423c66ec244aa5f0f", "ref_doc_id": "86f9492c-a828-4b56-928e-2d9092ec3ca8"}, "f8833e02-c260-4885-8532-49ed310cac67": {"doc_hash": "e0f732c56e8f163a40b3575308c6deafa2b1506e20663bcb7574abc59fb63c17", "ref_doc_id": "f7d6244b-f7d4-456f-923f-621bc30a84ae"}, "963f875d-783b-4902-9e2b-433010ef739a": {"doc_hash": "4814ba22a30e0b72cb228af87877808100083b15f645bbc29feb75f490398f19", "ref_doc_id": "e3d1d171-77c2-4675-9891-7ec48fbabc91"}, "8719fd0e-5005-4414-bf3c-41d6a3057de9": {"doc_hash": "0d4bc5ff76aeb03741ba026d05948711db115e1f40d48b83fa28cea50d96ae87", "ref_doc_id": "aa6d1cbc-a686-4d84-93ba-d2a2cb880313"}, "00c06687-6593-44db-9462-6ec51c254b20": {"doc_hash": "3c1c813ce4f0e160086922b89dae92ccbf2d37dcf06126158653f016047d736d", "ref_doc_id": "972df85b-4215-4c8a-b4c9-4b3545e8d879"}, "0c575bac-b8db-4ea8-abc2-0b512363d662": {"doc_hash": "4b4a64dc8a85975c4108f20a7dda8d58781c0b9f4aa45baa1ba6613719b90e37", "ref_doc_id": "3d5eafa6-af75-41f1-bf38-4d95162c8ebc"}, "47443c42-8394-4e1a-a1ae-748f0d235d1e": {"doc_hash": "d96501dbd486be8ad3cad4af032c12740ef5a49053a10a674468e4d2f9e8243a", "ref_doc_id": "1ea78f64-0de3-408c-baed-69f05b82be79"}, "7e115d34-80b1-444b-9a9b-cc54eca947cc": {"doc_hash": "b738435d6fc9e31364d471e8ff2a8bafd15a9b69ea200d81bcf4cc8eaab97bc1", "ref_doc_id": "ff8a7032-6fbd-4cd7-89d1-e7bdd1038adb"}, "6055200f-29d8-477f-ac6b-e4bede10878a": {"doc_hash": "0ef201675882819641d70ead25c0e2c5819c704f20f671ef2fd8811fba524df0", "ref_doc_id": "b643bfd3-6ec9-411d-a563-00ddadf3f830"}, "4cc49e02-40a2-48f8-88b6-76b37c9bdd81": {"doc_hash": "fecbeea9ebef5034b05cc0dcf4f6c9683166d336dae96eaf23ed7ee2a3ddf85b", "ref_doc_id": "b0f9fcc2-bf2b-4a6c-821c-83f09d8d90ed"}, "f6db1301-4642-4407-b005-e75982801961": {"doc_hash": "790ef6c1b1174ce6151e7ffbeddf87ca21d2ebc07ecb08b8bf13bc508004a687", "ref_doc_id": "5130e796-5a64-40a5-a8c0-2a4354e451e6"}, "3fc35171-bc33-4726-af97-d66dd2070531": {"doc_hash": "2046c26e6b11bd474b56c0e8521c6c1de15b8614504cd1f7348df6e9a01ac006", "ref_doc_id": "f4a606d9-2489-4aa9-b68e-f476ddf8d5d3"}, "3b9b8a00-cdac-42d3-b5d0-c5e7f87345a6": {"doc_hash": "3a54543a7223236143c2d683c7944a75db0e01230c41f74d9721447511526cc0", "ref_doc_id": "28d7174d-852f-4886-8a8b-e63a916a144e"}, "5fbdf692-ad99-4031-a69d-798144197097": {"doc_hash": "e69258ecfd09dac9c43cd8d9feb273e76cecc7c2f5199a322de703c1a5574f99", "ref_doc_id": "35dc437a-7626-40c7-8567-2a5856790c16"}, "9c38a9cf-92ca-492e-bf14-e332287c02ad": {"doc_hash": "9ffe6f35a1b9b2e703ca1e1d77d7c8a0d56613dca63a169f4162a13f7cd6dc31", "ref_doc_id": "48c58cf9-dd43-4193-aa02-f86073982a26"}, "2ef6c2b4-8a75-4214-97a7-ba78b4f7fcc8": {"doc_hash": "59774ca0333a29815c0500ccb4a66570c2e129e839d2306887245432cff15ed7", "ref_doc_id": "99a013c1-3b3a-4f1b-a656-9e249c618656"}, "5b87a716-610c-4a52-9706-58146e9b5f5b": {"doc_hash": "72cea9ef365cce8844f23925e9263aba691ee1592b2a3092ef65194129ff3286", "ref_doc_id": "73b731ff-ee83-48d5-82c7-3ac9cc4dd38c"}, "1349852d-6cd2-4a66-b4a1-b258a4147807": {"doc_hash": "79253432ef348d97fb1b59affd83325efd91f9f64f72a0120b45a0747683a3c7", "ref_doc_id": "584d5baf-1356-46c0-a46e-860aec0e8007"}, "019057ca-a153-4f2f-bd21-65fbb4dfcce6": {"doc_hash": "4caa103d9b1b3626e3a831a4c023d45edd663a5f47d371fcb82ef1923cded9f9", "ref_doc_id": "571308b4-3cd1-47f6-85b4-faac592e0a46"}, "40d8ea74-d247-413f-9230-20c95127dcdb": {"doc_hash": "e8e10a221b20ed700cd1a9cdbcf531d67c95b6a798b7d21f385a2619016a24d3", "ref_doc_id": "bdacaa2a-bd38-4606-bbef-cd07c48c7869"}, "71f70f07-2860-4a61-b3a1-372762fedfb8": {"doc_hash": "82cac1b23006cb6cd3dac4e295cf5c5bcc74c79befc75c459bcf76f777729438", "ref_doc_id": "0d846675-3005-40e5-bc51-bba6923267dd"}, "8285f94c-d182-4f5e-b8ea-8916ebc54544": {"doc_hash": "90a35e151589b4b619ae11bda997e374c344c81df8d80aa9ed074a8a1c9674e1", "ref_doc_id": "e91a5a0e-ac47-48f6-bae9-5b7b2c6c39c6"}, "0de6c6a7-1c6a-4840-8e96-e09d0d995e52": {"doc_hash": "912ffed6ebe37ad194228165c21edafffbe97bce9d78e6e600608f9185cf0d33", "ref_doc_id": "555311ab-c836-4c20-a3dc-24efaf7ccace"}, "c180cbf8-8012-4f58-a408-4b6a6072477a": {"doc_hash": "a5c0a53a1a6ba27033cf61a3663b7e0810cfe4496ceec05a39a7598a6db0ff2c", "ref_doc_id": "d3396fc0-63bc-4aa5-95f9-6cd3ea4d174d"}, "e3ba026b-5908-4c73-9833-67cb82a75746": {"doc_hash": "984c1d4840d965ae471bfd5828b4464c370a94599e9e7e45bf6a37c9d770508c", "ref_doc_id": "91fa9261-3de4-42a5-b5b6-d2559d0006c2"}, "885c5a0b-2e15-4c7d-9257-d9a01c458eba": {"doc_hash": "97a737ba3656432616e13de13a03bbb7a690c09d918bffc2b96839a68b063ec1", "ref_doc_id": "c2c25875-bcce-49a6-accd-80125c88ea8e"}, "961b4e50-41d2-4353-9e78-885db2028a62": {"doc_hash": "388638d7b5e393c5e4c51247dd0c8d4ae6dab36c4d29b93ef874acb4db0321fa", "ref_doc_id": "76a37b38-3207-45cd-bbda-1c8f78765275"}, "a7d5cd60-d35b-43c4-ad2d-469147d85e1d": {"doc_hash": "356827cdad01a03c5f6b899e48c1bee7f904d834945125a68e86e8590ce11ea1", "ref_doc_id": "50e94990-40c3-4321-9cfc-6aacfb48bc5d"}, "7b7444e8-5e2c-4d2b-8d41-a5c7180e5747": {"doc_hash": "f8da3f3ba7f5d2b5da8518df0ed65182d70ef12c951850af040822babe179a16", "ref_doc_id": "3b40b0c5-d27e-4717-9765-79254f86ca99"}, "3454cfe3-51a9-40f2-b7d4-28efeb36b30b": {"doc_hash": "93167526363687976cde22385a8dc41913cd2c2c88d87f209c37ef7b961df762", "ref_doc_id": "5a6656fd-78b4-4668-8c2f-a0181814e07d"}, "34002b91-014c-4697-8737-4a15527847f5": {"doc_hash": "76965c537be7710c56db298719a65c71d9bf7b9fe88c46a1ae0c6335b315c888", "ref_doc_id": "8a0351b2-2b88-45ec-a4ef-77fa0ca33582"}, "3b6bef66-ce49-4c09-8fc7-14270f1a72db": {"doc_hash": "5a0648e28d9c725f9ca795f1b10536262bbe3dd73c2d4d727011eecd32f0c9dc", "ref_doc_id": "2f1409cd-fc75-4462-be08-151a3d7f807b"}, "2c2f9276-e991-4f8c-8ce0-bd87ea6d42bf": {"doc_hash": "dc20036dbae8d15e80e0c18c834bf8e150741e5353264f73b394d9fedc5ef1a5", "ref_doc_id": "382c1175-574c-4da1-b8ba-e48946e55529"}, "c58d2cf1-6713-4d9a-9d37-6afa53baa3fd": {"doc_hash": "4d8c0a7f2c875242c3a5ecfac4c2d769ca0061d108afdecb533046959b95c7d6", "ref_doc_id": "94c1534c-c2b4-48d4-9678-9c717953ff17"}, "48bf9617-e70d-4329-bdd5-b63b261e0103": {"doc_hash": "328db0d9d404bde5ad0368e647dcd812c57259316ba7d8b2e467c009aca263dc", "ref_doc_id": "1095fffc-e023-454c-88da-e8c24bc28e82"}, "cd8cbd8b-e585-4ef7-b12b-413e6b598c04": {"doc_hash": "1bf9298b663b38208b3e05df4a829b8affda9e1e5390d8754cc7c1b944cd297c", "ref_doc_id": "3bcfa11a-3d3d-4fff-bd31-a9cec14dbe9c"}, "2842b791-dc81-4391-ae53-183965f45efb": {"doc_hash": "e680d408d057b2a19030bf0e39b7136e5bc6f031659d7cfd4b2c8b24c1ad5aa0", "ref_doc_id": "0bc53677-2697-47b6-800f-89ff1da2f2f7"}, "73ce240b-3c09-48de-99f4-0194dc1faaf2": {"doc_hash": "e09733aaa7039860844afdc7410f0756be2f827a60cf2c91227c7621fd433e49", "ref_doc_id": "f4f00ff3-56fa-442d-8ef2-9c4ca4736376"}, "6d444950-9e43-4284-9d89-6948cad48e74": {"doc_hash": "140784974be86dcafe455bccd67282877b8a9e45ef62f4a1925d87acf9e6603c", "ref_doc_id": "ab94c84e-faa3-46ad-b0cd-8954bc2ef260"}, "c672c616-984e-4cb1-8d30-e8a926d7fe1c": {"doc_hash": "ebe9abe690e7835f4c81ef9305242b8be7e44ce31b0dd809a1b6eba07684bbfe", "ref_doc_id": "50f7803c-7efb-45d5-ba28-635155c5fc4f"}, "45b837a5-3b51-4f6f-9806-ce2f512426fa": {"doc_hash": "6a2c6277756d6ad487a94c7b07d8b4dc41b245236df6727bcf6573af9cc26abc", "ref_doc_id": "6ae5d33d-30b7-47d2-b945-6f71791af405"}, "ab3b4ded-a0e5-4d00-94d1-2fcee1efeba3": {"doc_hash": "25f0bb6a25512fe8916b3f508895152c9bea3d55f5c06520ee07eafb23b50e3e", "ref_doc_id": "6daf950b-9c88-438f-9757-2b6c544d0b04"}, "62b01dae-a988-438c-8405-cc7b9e34f01c": {"doc_hash": "37344f24a53a946a08064ded28187875a7e98ad7a558612dc1807c3bce492535", "ref_doc_id": "3c6dcf35-7412-4f68-ac74-adde2f7b5134"}, "63c48eac-6dd9-46ff-a6f2-e00f5dcb0e7f": {"doc_hash": "8441a8d5e8398af5bd25d1cf1a9843e0fd1d7e308d257707212bd3649e69d9ce", "ref_doc_id": "dd994aa9-ffd5-4886-a1df-5f8a21286da6"}, "3f83359c-54f8-428b-b1e4-a1fb21c29b8c": {"doc_hash": "4cfda5373bbe89057acabcd4da7b57fe4d720b4451a84e5d25d24c01d8d02925", "ref_doc_id": "296249e0-01bf-4dec-9622-c0850f83ecc5"}, "e7b19daa-0975-4df6-a2d9-19f1be4fed5c": {"doc_hash": "00b5dd0d972cb82621cf386820eeceed93416307b7b97ba64854531138d882f7", "ref_doc_id": "a262d057-8d77-42c5-9a89-3188d79b9893"}, "027179e2-6c33-43b0-b609-f76b6c776cd2": {"doc_hash": "e99e3905966b0a38f226e12f555d83356f6e7a24fa9fdc5e36c529914d36c461", "ref_doc_id": "1ebb5f71-2f5d-4611-a975-b1d8c32fe040"}, "227654cd-983d-4662-8ffd-2b2c2f3929a3": {"doc_hash": "2bc06ac3794b63f8e4e21341f2225b076a2bc0e024a9cb017ac86223f22bb0ca", "ref_doc_id": "94b20e90-7916-40ef-8e41-9632f6844787"}, "ca018018-d46c-4cc7-815c-7ed899383cc8": {"doc_hash": "1313c2fe247f0c5c70d8084edd6ae889895438bdfd0c73a958719929fe4835cf", "ref_doc_id": "821040d3-9adc-47af-9e8f-95caa036491d"}, "7d9ff17a-3463-4125-a2f7-06aadcd0e118": {"doc_hash": "7bc11db3254a4efa6e3e5a7d478c49886330e0c384b4de97cc6b8b2020a6fa61", "ref_doc_id": "303c678b-4232-47a9-9455-d9391baaaa49"}, "a9cdbcc2-2f08-45ad-9dbe-141195027deb": {"doc_hash": "1313c2fe247f0c5c70d8084edd6ae889895438bdfd0c73a958719929fe4835cf", "ref_doc_id": "7f4a19dd-5982-4ac6-be64-54dff7cbb176"}, "f33c9b34-17e2-471c-8474-f72b8cb2cae8": {"doc_hash": "956320325aeb4663f661beff8755bc087288dcb84f4f5ede8fad78ccb6a43e39", "ref_doc_id": "8799e86a-5519-4697-b866-797972f40d5c"}, "2285791b-bcd9-4594-8a59-e3111636859e": {"doc_hash": "570e0f507de8db1971df21a9079398e8280a7f3668c497e19bba9491e1338313", "ref_doc_id": "c465083c-dfcb-443d-a011-e05a7d8b6572"}, "228c06bb-f645-4014-b659-023b13b7411f": {"doc_hash": "aebc1515f35d4bcae6ed6d2e9dfb435f300912336a204c9ee3e27cec33b1822c", "ref_doc_id": "eaf7d3e7-bad4-4848-af23-c50cafbb009f"}, "51d4d8a9-2dc7-41a8-b8e1-69681f8e3f98": {"doc_hash": "345c88546d27466248ff5d4cecbfaa45efbf7d0d9cc1287757f2da0b29dcbdd8", "ref_doc_id": "cf26ff9b-e2cd-47b3-9f91-ba621cc1b131"}, "660c68c6-21fc-4598-a6ea-c3f54b19cabf": {"doc_hash": "136bcf5341cd5c7b81262521c42d85b5dbb9fe0f1e31b5d645c02d6704fab62e", "ref_doc_id": "7797fb4b-430f-4807-8b24-883e270a3a3d"}, "1036624e-f299-4634-8358-ea02d80ebfdb": {"doc_hash": "aebc1515f35d4bcae6ed6d2e9dfb435f300912336a204c9ee3e27cec33b1822c", "ref_doc_id": "904a3afc-d116-4c75-b30c-bb2c37e0725b"}, "efbff208-3cc2-4169-adc8-1aadfd164458": {"doc_hash": "88e3fd6b0693a0c1d0960ea6b3b539d83d607dede9baf249cfa878c12e74366d", "ref_doc_id": "417aec6d-529e-492c-b069-156861142815"}, "bcd5627d-3241-4022-9659-0a39c43d1017": {"doc_hash": "4be28e68dc2760ca5d43a658b65bed02930220ae9fc40a32efa33ce16de3ca8f", "ref_doc_id": "1a731606-d439-4f76-9e83-c40360894e19"}, "2d5d975a-c3d1-4c28-ba1f-ff97bb1fc7c2": {"doc_hash": "8416d8fc9f7d92e6e72092668ef800504400b1a53d2af0ac04081bd6f0b9fa1f", "ref_doc_id": "5ad3f174-df8b-4315-941d-b50415aaeb77"}, "9dea7fe1-20f0-4f2b-9256-e5ccf033967c": {"doc_hash": "f90c40e646fcd1f097be27b4b07a6646cd7620afbb9d3aba4e521adee16ca3e3", "ref_doc_id": "6373be1e-2941-4482-8d7e-feb5316a160c"}, "22b13e1d-dad8-43f3-ad56-a2ce9d179da3": {"doc_hash": "d6da92870fc8ff054401a976d5c6b5d8c0d009822a8fd05b1ceadb1b6e815695", "ref_doc_id": "6541688c-1f56-4cde-a319-67a1c85e6e02"}, "9cab7fb6-4610-46eb-bd11-bb7ec3eede56": {"doc_hash": "bc03fb5dd36377d630137aacad76fc72051c95f78d29fabde620cfbd4dcea3c9", "ref_doc_id": "1bddf82c-eeeb-459c-a298-bff48a82a43e"}, "30108c3b-c684-4ff2-964f-5b5eae299db8": {"doc_hash": "4dcb357af645d66da606163f4f0a5908ccf648192e7aca85694b6cc41618b541", "ref_doc_id": "e86b2357-ca10-46cf-89a0-65ec5b942f8d"}, "d4901a71-eb19-4e06-8bce-ca8451429be1": {"doc_hash": "caf8814f9c52a2b4963de330b49dad4a6404c6f52ebc7e4bce15ac06ce5effff", "ref_doc_id": "b30bdd19-acfe-4cb4-a6a5-20d7759e8ec9"}, "10bcde16-c549-4dc8-b38c-13526db9e2ec": {"doc_hash": "f9df382ee871a5f60820f657d4535b0f0ec0139c40a7c88df5260b80d56ffb15", "ref_doc_id": "5fe4e490-a421-426d-9c76-f34a4859f9d1"}, "bbe0cfa1-9266-4314-8cb6-65172eead885": {"doc_hash": "e91d2b2711f6254b31cb4a6e1407c0a9d1ca9d751978103daf8edd5e60f9c971", "ref_doc_id": "4901c299-983a-4a81-b4dc-a4e3726c79de"}, "69b8f82f-50a6-4828-8968-c1466952a5cd": {"doc_hash": "1a71b16d44a105575f51837b07eb4d77ea7542a6ad04a0b9c090c0e36289efc0", "ref_doc_id": "59eb9170-d56e-4e4e-8bad-c988419e986b"}, "e831b8c2-60e6-405d-87f7-121747e5b6d7": {"doc_hash": "06a076492234559fb9690284e9f3e7801584e107e8d88428beab300e52763f64", "ref_doc_id": "6840ec80-7677-4911-a635-7a9f0ed9bc7e"}, "de710693-42f0-4cef-acc8-412ce43ecf84": {"doc_hash": "533ea28c1b9e14af0becf2c0333a2c3a80a27934cda76efad2f2fd461e9b23b8", "ref_doc_id": "7375eebb-d5e6-4a0b-a8d0-4024d9f0118b"}, "727acea5-6cc9-4807-b68d-cc9314661756": {"doc_hash": "994b625fe99c68dfbffb6165d6ab2ee81acd1dde2605855a3292f5d0832dcf91", "ref_doc_id": "bbcc61c2-bb80-4a95-b584-56fca2fd0ddc"}, "ba7d40e1-7292-480b-818c-c15a39187f6c": {"doc_hash": "bbc772222d3b489fdb25e2f7f8548f1198c9e4350d7f421e19c54f85e3298bc9", "ref_doc_id": "daa4a211-9852-48df-b162-dd67e4ba0d52"}, "f8c4152e-64b9-4488-b0f1-093f8bd58377": {"doc_hash": "b68d725964c8ceb32217e7635110fdd8b55fb8bbd2c09dab6d0f36e1ff7daca1", "ref_doc_id": "3b3a2d21-adb6-4092-a532-63108fb15859"}, "d83b7aea-8abd-462f-b03b-f68ebd2bb9e4": {"doc_hash": "80a8d42a9a91a75d18a0a27cc73784d710336122993337a6aeafac42cfa7b2e4", "ref_doc_id": "d3282272-5bd9-45cc-bc61-31ffea91d07f"}, "9e0fad21-aa28-466a-9c2f-38571c907bbc": {"doc_hash": "30cd5e72953564de5d57b0e65cd0dcc2cb3ae7183351c33c67825bd9009c6649", "ref_doc_id": "16e5a958-c32d-4137-b409-d59e67c521b3"}, "cdad89c0-2a46-4638-a097-bc4323c75f5d": {"doc_hash": "572fd1f9c541efbc0f48ae9cae08caefb07817886a57f95325280a3fe50e6225", "ref_doc_id": "f8ee7337-e899-408b-b0e7-376c08a81c9f"}, "667ae363-e738-48ce-80e9-03ee7261b5ce": {"doc_hash": "e988d16fea2f492f1ee9a2e8f338634e8176dfa6c18954f0d5ec6202fca8027d", "ref_doc_id": "d22bfe9b-4a60-4262-8009-0f953b68f228"}, "b380cdaa-9db0-4777-8838-a810de25f3e3": {"doc_hash": "0b926c1ce06879262363c9af32679d89e1665700b0a9767658dfa633b02eb90e", "ref_doc_id": "82c7c5f2-14c0-4ea1-96e0-55d24815a934"}, "7c86d2b4-553e-494a-9634-90ac4128bbb3": {"doc_hash": "f8dd9534c4ed192f5ebb16b17009bd7b75a872a53cea7ed06a829aae2c769b11", "ref_doc_id": "c1b73fca-d756-461d-a74b-52bb8dcb596f"}, "e4f631ce-d334-40a6-a3ca-be65bf27de24": {"doc_hash": "74594b8a935849394f1b34c1ab86ed44696bb2e02a3d3df4c9343f8fdc168ec5", "ref_doc_id": "29cc3093-4a3e-47b6-b979-10f0b68c7536"}, "81674c4f-60e0-4f23-86bb-333d830f42e3": {"doc_hash": "688e499cc7f32d7887525f3014eb66bd16afb4b0f70d955d374260423646de38", "ref_doc_id": "cc0fc37b-8587-4386-9d6b-38919ef43c54"}, "180ad649-c7c7-4415-aee5-031c9a29b264": {"doc_hash": "bb349e876cf3c3a4b001ab9e6279ab13a77759a8de4c444e14fc25904a7cafc0", "ref_doc_id": "6b4993ef-0255-4ba9-a433-ff91419b52c6"}, "9451cf88-0557-48bb-8a7c-dcc314a20424": {"doc_hash": "bf2fcdfcbdaa8ec2382572a65d0ca22e05f730aab22ba8a29337397df34163a5", "ref_doc_id": "94748ba8-d795-48ad-a384-2ab41d37d2c6"}, "973a5c15-9c8a-42ae-85cb-6c8af18389c1": {"doc_hash": "0c46bf7ab5106bf2dd5229a3750f6290445de592574ed44012fe2dcecca9173c", "ref_doc_id": "82205a0a-94e4-4add-85ad-eb1ad91dc841"}, "2ad0fdd8-af1f-4e11-92d8-d03b8aa427a5": {"doc_hash": "e5545bd17609d3a16c0353ae946f6bc483f1ec02d0248de35ecb257b1b50a28d", "ref_doc_id": "e634f55c-48e7-49a7-b21f-c19bd5a37209"}, "696b6e1e-aca8-41e9-aab9-366de11b3628": {"doc_hash": "80354b7ac9fbfc874e2d41a09f6727d3f7cd0b2583fb218c50e97a10b3320e2c", "ref_doc_id": "665c9256-7794-422e-a4f5-58dd63d3b321"}, "9182231f-5675-4be9-af96-104c16d80c50": {"doc_hash": "d3e33f86ff7ae9b75879beb46ef9697702eb4d7ae99420a3d616eb08fc772cee", "ref_doc_id": "1dd849ba-339d-447c-b1c4-1f3ed80a1d26"}, "52478ae6-356e-4b5c-a343-763c91d2c220": {"doc_hash": "72827143a803f42f12ffb6a19be809c92d8dd73660752fa5444ab54b7fd0ef25", "ref_doc_id": "e7dc43f6-ce13-4157-87b6-179846175fcd"}, "d3828701-0ae8-4d1e-970b-2b3f5bb2c1de": {"doc_hash": "572782118ae517b0d67bd3b237343dae09c205301509ad246b2af8b86597373e", "ref_doc_id": "ea87ba5e-ff95-44f9-83a5-8884bd886de4"}, "432a84d5-ac00-45d3-8385-11447b8d7c56": {"doc_hash": "33d0a2dfb6544dbd9e01298975f7b39d3a621c09e19d3274c89359c50eb5f468", "ref_doc_id": "1d431df7-1378-4d96-81b1-74bb9c8a243c"}, "0937c300-83a4-4da1-a471-1bbfdbc90777": {"doc_hash": "73abec11ae83c3d845e4789961513aa68b792ac68d4fcf72fbd4147d3a096eb1", "ref_doc_id": "f184122c-81e5-45a9-a612-d8b852c042b3"}, "1806da72-5923-4cae-8a66-854195e37b92": {"doc_hash": "ac2e46d0d7aebdd9a96f5dd75f2ad629b5b7325660b3f588f20b1c0830fe598f", "ref_doc_id": "7545faa8-19a4-4494-9d5d-e6240d0e9e3c"}, "245e052e-d059-43e0-ac54-ff8eaec19421": {"doc_hash": "15fe0ca08f63ada0ddb10341851b0ee511e4d5a2803f6b473e0f2562c6d4ba79", "ref_doc_id": "9158184e-4261-4309-ba1d-143eee835163"}, "133900ec-e422-400e-8951-d617ba58f528": {"doc_hash": "d3ea684cbcff3d3f44f2ad5f2e959808e6c2bb142598238b86808abd01506696", "ref_doc_id": "c1142512-08a2-4305-8728-79e2a42d6d2d"}, "dc7fea2d-d282-49a9-91f4-c446fc482cbd": {"doc_hash": "74b87a4bc6c3bfb8c97292605570c6d0a209fcce5bd92302931d7060193335ed", "ref_doc_id": "1bdfabe8-645c-44e1-bf10-382e2ce59a95"}, "33a80011-707c-4e4a-9953-f035ad1c2b39": {"doc_hash": "e369cba4793f176c0182b2af6f8c17daee11f03d379738842d08b4ef3219a299", "ref_doc_id": "6bf39a3d-3528-4146-9655-90a9f95fd9df"}, "2bef8386-2742-4384-9cf6-e5745950cf70": {"doc_hash": "1eef8adc227abede23b78d017f6ddd491f13ecbe1512412bc73b5a8df53b095d", "ref_doc_id": "cc4f60e5-a448-44f5-bbf7-192d6c8ac8ef"}, "f1a4fa1b-c4ae-4569-b4c2-fa91c9bfd7f3": {"doc_hash": "02d1279f3621c1dbd254dbc34871780f4a240bd50cd58332e4bd3e8a32fa668f", "ref_doc_id": "e777e248-adaa-40b9-990c-dc90e67fb8d8"}, "04c8b63d-9486-4ae2-b381-b813de511e5b": {"doc_hash": "dc52f58c03ff5bc8e446e8af8f061852db451f602bf80bb20b7fdca18e5f1dc7", "ref_doc_id": "b723447b-5b47-449f-a42d-d20057e87d73"}, "c7a0f770-07cf-40d3-8c24-c4ea170b3e3b": {"doc_hash": "3fa5679701cf8e55db4464d883798e2063ead8db27959f564330f18781935bce", "ref_doc_id": "563f86ff-c773-4318-b5de-4b005a00c15c"}, "cf10fd93-8d52-401a-b4bc-f3008db7d7d7": {"doc_hash": "ac8c1fe82ef4c4067e382821ab2286a61b5c724e4a0bcb5df0ecce546599a716", "ref_doc_id": "91f6257d-54c7-4248-a056-4007af9d01e8"}, "8f2dd465-226d-4a17-ae7c-7aec5260cf67": {"doc_hash": "a8d5b00d6ed2733eca4e8f70424e8c32e3200dca6cb53c5a4b535e6fb9a75a11", "ref_doc_id": "d08c0faa-fdf2-4c79-82cd-f51349b011f0"}, "37d9b31b-7d06-415c-b9f3-075dfc822f2d": {"doc_hash": "e25dd51b5ff81b2f5350a100e4915183af66a838d722a45b984794dbd6fa0201", "ref_doc_id": "9ec3d41b-c7f8-4ef3-a6a6-1f5a5bbcacb9"}, "af0dfa52-56da-4cda-91fa-0cb38fc91cb3": {"doc_hash": "4e22598bf4a7078ce980d66c570dfa27a8c5cb82903ee689f0a8a07ef0bbc2a4", "ref_doc_id": "61677468-6c24-4927-91b0-6cef5b80852e"}, "8a155880-671e-4bdf-b782-5e9767d5a009": {"doc_hash": "b47020a3649f23726d8649d27e8a8789702a159e3fc67ce7c1cef0e60cc17b5d", "ref_doc_id": "4937f679-5b1b-4d83-92ae-87c2b7e37adf"}, "d06f932c-e25f-424e-8550-eb1a0384e2a4": {"doc_hash": "f72a2eb3ae3bd452f9fff99b6e4a7e2f647c22f357cd28368d434a0d2ae94fb7", "ref_doc_id": "c4f7b5ef-1a59-4619-b54e-cf41a374b635"}, "6080eb17-0342-412b-a707-27fcebbc620b": {"doc_hash": "d572759e22f1b607fa64d253eba25a73065af5d1a5104f4ef2d84af25e736f6f", "ref_doc_id": "7c144053-e6f9-4cad-bb77-c063d620e0b8"}, "93673750-be8f-498d-8a61-7be02dcccabf": {"doc_hash": "0f6a9f7244dfa736dcda0f5243ce47dcee02e6100a47c3a01f5486ac1481e094", "ref_doc_id": "e060e8ed-36f1-4c0e-aef7-6a91690af859"}, "37705651-ac14-4c53-b486-933c2536c261": {"doc_hash": "c9abf08d487db6d61ceb279442ea9c93056c354366680e264eeb76793f0c562a", "ref_doc_id": "f9836538-74a0-4207-8c08-c6103728d6be"}, "cbdea7e8-6b23-4688-9c05-3c5c0eae95db": {"doc_hash": "106223d09513286ec8def3e651a54899882a0f69e38d23e544e303042425311a", "ref_doc_id": "a8ff9a92-9b91-4767-9913-174a84af5115"}, "8644d86d-7af8-419e-8e32-3d2a92d15039": {"doc_hash": "9681963c6acfcc4d815e3c56c34f17c5e37e0d571c30bbfb2ab1293203210df7", "ref_doc_id": "ce3f47aa-6516-42c1-8cbe-7d9f9f3fe51c"}, "ff7e4c0c-eac9-4a0a-99d6-5121a3dddc82": {"doc_hash": "a061a144cc810806b6331f13ae1b3b31be78773916faa529d962c2c74d620729", "ref_doc_id": "16639bfd-8648-44ca-a3a0-e2ba6a3a98c8"}, "e7244407-bbd7-414f-9c02-b7d3c51f4dcd": {"doc_hash": "666793a656f4c8185b3058dec79e0950f6cd864dbb2fdf48fb7d69cfa8a1b84e", "ref_doc_id": "623b56b5-c42d-498e-879c-067728194106"}, "9c9867a3-6bc3-4544-8032-094305ccc606": {"doc_hash": "6fe1bd880ad0b7f931b83094121722e8edc899a89c1c6edfc322793a26ae9e87", "ref_doc_id": "ffce1b10-7adb-42a0-9334-4d3664ace063"}, "7a71c62a-768b-4849-b2ca-5a26fa8a2847": {"doc_hash": "6a21ce2c0c1aded57cf46c0a207c7698019322027e2cce09a237fbafac6e8e1c", "ref_doc_id": "268e1e4b-d8da-42ba-90c7-ac6017dabb9e"}, "83938eff-db4f-4cfe-b2e4-725387540be3": {"doc_hash": "e1f1d0e7ed658330a2b4c7b9c5db50f28b635fdaa768360c78ce60125d59d360", "ref_doc_id": "f00cf63f-75fe-4ccd-aeef-91783ebd153b"}, "ad6bdffa-b1d6-4451-b6d6-f7c43bace4fe": {"doc_hash": "e5ae5dda52455d26c4ac88a3a5c3abd45249e5c3a228e7c001f7dabfa2651d02", "ref_doc_id": "bfd1115a-3599-4761-a2df-20da99be5902"}, "052bf4f8-4827-464c-bc7d-c8d8e4697670": {"doc_hash": "13dc26c14ffc70ffc0093b974f6655a21a6fb9f75c92b8d615c157ddf9f6bb3e", "ref_doc_id": "2ce78b70-9965-4bef-afed-8005e9808f4a"}, "e6aed9e4-13ac-46ae-b02e-d6fd2d2cb428": {"doc_hash": "a657c202ee96c62cb40d7011d84c339d3bba282759574c10cd025bb900bb221a", "ref_doc_id": "9b9a4941-3530-464c-bc90-233826c569de"}}, "docstore/data": {"ea8f2a24-783c-4441-87e9-3d6a524e88d4": {"__data__": {"id_": "ea8f2a24-783c-4441-87e9-3d6a524e88d4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ce79c7e0-2737-497f-b28b-129a092972f6", "node_type": null, "metadata": {}, "hash": "948a9a8b9ae5c4df51d5287a7f6ccd35396be203d297dd6bc8a7e4c98bb1af7d"}}, "hash": "f375989fb7cb098656fd92ec76edb8a6988b562e8611c4cc24231a9ee2a45483", "text": "FAQ", "start_char_idx": 0, "end_char_idx": 3, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9dd5ef61-505f-4cf8-8a57-775a5a4a6d9e": {"__data__": {"id_": "9dd5ef61-505f-4cf8-8a57-775a5a4a6d9e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d9c805d3-b4c7-4edd-979f-5e9e9ddbf844", "node_type": null, "metadata": {}, "hash": "ec4555c82c10b6a2432de6a2206083fccd3d865e170ee3fef1f85039d9494acc"}}, "hash": "bc5c6fb817cf903b1231a7e4186490ea92c64bb44e82b11754ff231d802eca7f", "text": "level1\u3067\u306f\u30d6\u30ed\u30c3\u30af\u306e\u9806\u756a\u306f\u56fa\u5b9a\u3068\u306e\u3053\u3068\u3060\u304c\u3001\u5177\u4f53\u7684\u306b\u306f\u3069\u3093\u306a\u9806\u756a\u306b\u306a\u3063\u3066\u3044\u308b\u306e\u304b\n`level1\uff08\u30d6\u30ed\u30c3\u30af\u306e\u9806\u756a\u56fa\u5b9a\uff09`\u306e\u5834\u5408\u306f\u3001\u30d6\u30ed\u30c3\u30af\u306eindex\u5024\u304c`1\u21922\u21923\u21924\u21925\u21926\u21927\u21921\u2192...`\u306e\u9806\u756a\u306b\u51fa\u73fe\u3057\u307e\u3059\u3002", "start_char_idx": 0, "end_char_idx": 111, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a5dd4ed2-ffad-4506-a1f2-e25c12569798": {"__data__": {"id_": "a5dd4ed2-ffad-4506-a1f2-e25c12569798", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "068cf630-c9b1-45ad-ad7a-42114cb0f760", "node_type": null, "metadata": {}, "hash": "9018fbc49df1e1fed233679a220f7d9f5374fe2c6066940f5d2c54101fb87987"}}, "hash": "6297f83b572f6e2e8102c1d2629d3792d35e1a5d0bcbe70207999ba810e8086e", "text": "python\u5b9f\u884c\u74b0\u5883\u306b\u3064\u3044\u3066\n\n| \u74b0\u5883 | \u74b0\u5883\u69cb\u7bc9\u624b\u9806 |\n| ---- | ---- |\n| ubuntu18.04,20.04 | \u3053\u3061\u3089 |\n| Mac | \u3053\u3061\u3089 |\n| Windows+powershell | \u3053\u3061\u3089 |\n| Windows+Docker | \u3053\u3061\u3089 |\n| JetsonNano | \uff08\u52d5\u4f5c\u672a\u78ba\u8a8d\u3060\u304c\u304a\u305d\u3089\u304f\u52d5\u304f\u306f\u305a\uff09 |\n| RaspberryPi | \uff08\u52d5\u4f5c\u672a\u78ba\u8a8d\u3060\u304c\u304a\u305d\u3089\u304f\u52d5\u304f\u306f\u305a\uff09 |\n| Windows+GoogleChrome+ubuntu-free-online-linux | chrome webstore URL |\n| AWS | EC2 4CPU 8GB\u30e1\u30e2\u30ea 20GB\u30b9\u30c8\u30ec\u30fc\u30b8\u3001GPU\u74b0\u5883\u3067\u52d5\u4f5c\u78ba\u8a8d\u6e08\uff08\u8ab2\u91d1\u306b\u6ce8\u610f\uff09 |", "start_char_idx": 0, "end_char_idx": 377, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "83a1dda7-4b27-46a2-90b7-42ee0797ec3f": {"__data__": {"id_": "83a1dda7-4b27-46a2-90b7-42ee0797ec3f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "88c52465-0591-4e30-b3bb-80b593e67e63", "node_type": null, "metadata": {}, "hash": "417cc94d31493896d4278f7c7611ee243727fea9ac423e8e8b474e90a6a3cfc0"}}, "hash": "3f344eafb68aeb714deaca9505252830e4cd38d123e739e45727701e9f5f7eb8", "text": "`Windows+GoogleChrome+ubuntu-free-online-linux`\u306e\u74b0\u5883\u69cb\u7bc9\u306b\u3064\u3044\u3066\n\n>google chrome\u4e0a\u3067ubuntu server\u3092\u5b9f\u884c\u3059\u308b\n\u30fbgoogle chrome\u7528\u306eubuntu online server\u62e1\u5f35\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\n\u30fb\u9078\u629e\u80a2\u306e\u3046\u3061\u3001\"Xubuntu\"\u3092\u9078\u629e\uff08ubuntu18.04\u304b\u3064\u8efd\u91cf\u306a\u3082\u306e\u304c\u826f\u3055\u305d\u3046\uff09\n\u30fbserver\u306b\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u4ee5\u4e0b\u3092\u5b9f\u65bd\n\u3000\u30fbDesktop\u4e0a\u3067\u53f3\u30af\u30ea\u30c3\u30af\u3057\"Open Terminal Here\"\u3092\u9078\u629e\n\u3000\u30fbterminal\u4e0a\u3067\u4ee5\u4e0b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\n```\nsudo apt install \u2212y git\ngit clone http://github.com/seigot/tetris\ncd tetris game\nbash doc/files/install_ubuntu.sh\n```\n \n--> install\u304c\u6210\u529f\u3059\u308c\u3070OK\n\n```\npython start.py\n```\n\n--> \u30c6\u30c8\u30ea\u30b9\u304c\u8868\u793a\u3055\u308c\u308c\u3070OK", "start_char_idx": 0, "end_char_idx": 461, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "06a505d0-5a9c-48de-aa71-92c9d2e1598c": {"__data__": {"id_": "06a505d0-5a9c-48de-aa71-92c9d2e1598c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9d1aa5a7-32ce-4db8-90f5-b80c3590d2a8", "node_type": null, "metadata": {}, "hash": "0203d09081c04a97f4c166c46860b4862eeefd7812f0464daf35438c8bc6cd8a"}}, "hash": "5c6a03d957946224e42a33e6f543c6645ac923e98611d19044edf61d7a78c22b", "text": "`sudo apt install`\u6642\u306b`E: \u30ed\u30c3\u30af /var/lib/dpkg/lock-frontend \u304c\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f - open (11: \u30ea\u30bd\u30fc\u30b9\u304c\u4e00\u6642\u7684\u306b\u5229\u7528\u3067\u304d\u307e\u305b\u3093)`\u306e\u30a8\u30e9\u30fc\u304c\u51fa\u308b\n\n\u3053\u3061\u3089\u306e\u30b5\u30a4\u30c8\u53c2\u7167\n\u4ee5\u4e0b\u3067\u89e3\u6c7a\u3059\u308b\u306f\u305a\n\n```\n$ sudo rm /var/lib/apt/lists/lock\n$ sudo rm /var/lib/dpkg/lock\n$ sudo rm /var/lib/dpkg/lock-frontend\n```", "start_char_idx": 0, "end_char_idx": 236, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a64c9c75-bf7f-49b2-b815-51798474fc5b": {"__data__": {"id_": "a64c9c75-bf7f-49b2-b815-51798474fc5b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ae939c3e-1ba7-45a9-ab77-a57971c19e70", "node_type": null, "metadata": {}, "hash": "5b667b04545504678e10b114fdf67d6de2f920ec39e06536193b6340ad8b9b09"}}, "hash": "1fa69491710ecc093d2108b602e1f752569c1869c813d394c8b9870590c608a0", "text": "\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\uff08`python start.py -s y`\u3067\u52d5\u304f\u3084\u3064\uff09\u306e\u4e2d\u8eab\u306f\u3069\u3046\u306a\u3063\u3066\u308b\u306e\u304b\n\u3053\u3061\u3089\u3067\u89e3\u8aac", "start_char_idx": 0, "end_char_idx": 57, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4250c708-0eaa-454d-a61e-ca6949f4cab8": {"__data__": {"id_": "4250c708-0eaa-454d-a61e-ca6949f4cab8", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3e7b8570-c846-456b-a2da-99e9e00b152e", "node_type": null, "metadata": {}, "hash": "8c00b975d5e616a2e5361b5a3fc169ef3b57a1bc812873a738758f4308da3d45"}}, "hash": "f54c4d73b17d4e6acfbd9108d2a7ba9ed788fdeb6c074f6d75b6a3d2913207f5", "text": "\u30b9\u30b3\u30a2\u30a2\u30bf\u30c3\u30af\u6642\u306e\u52d5\u4f5cPC\u74b0\u5883\u306b\u3064\u3044\u3066\n\n2021/7\u6642\u70b9\u3067\u4ee5\u4e0b\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059\u3002\nPC: ZBOX Magnux en52060\n\n```\n- OS : ubuntu18.04\n- CPU: Intel Core i5\n- Memory: 16GB\n- NVIDIA GeForce RTX 2060\n```\n\n```\n- python\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u4ee5\u4e0b\n$ python3 --version \nPython 3.6.9 \n$ python3 -c 'import torch; print(torch.__version__) ' \n1.4.0\n```\n\n\u30bd\u30d5\u30c8\u74b0\u5883\u306f\u4ee5\u4e0b\u30b9\u30af\u30ea\u30d7\u30c8\u3067\u69cb\u7bc9\u3057\u3066\u3044\u307e\u3059\u3002(\u6563\u3089\u304b\u3063\u3066\u3066\u3059\u307f\u307e\u305b\u3093)\nauto_setup_for_Linux.sh", "start_char_idx": 0, "end_char_idx": 339, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f5dff58d-3f9f-438b-aec4-ad9d405dd0d0": {"__data__": {"id_": "f5dff58d-3f9f-438b-aec4-ad9d405dd0d0", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "987b823a-a32f-4e0a-be51-321a464fa024", "node_type": null, "metadata": {}, "hash": "544481584faf4d286aa1720e3a9dc49c333cf43dcaaaafa4303003e2593e8087"}}, "hash": "24e096266776cfc23be49f77cf23fa1835baff1b63bd0e146ec6464d9d197580", "text": "Windows Docker install\u6642\u306e\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0\n\n```\n\u2460BIOS\u306eCPU\u95a2\u9023\u8a2d\u5b9a\n\u3000Docker for Windows\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u8d77\u52d5\u3059\u308b\u3068\u3001\n\u3000\u300cAn error occurred Hardware assisted virtualization and data execution protection\n\u3000 must be enabled in the BIOS.\u300d\u3068\u51fa\u3066\u304f\u308b\u3002\n\u3000\u21d2 \u4ee5\u4e0b\u30b5\u30a4\u30c8\u306e\u300c1. BIOS\u8a2d\u5b9a\u306e\u78ba\u8a8d\u300d\u3092\u3059\u308b\u3053\u3068\u3067\u30a8\u30e9\u30fc\u89e3\u6d88\n\u3000\u3000 https://qiita.com/LemonmanNo39/items/b1b104e7fb609464727b\n\n\u2461WSL\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\n\u3000Docker\u3092\u8d77\u52d5\u3057\u305f\u3068\u3053\u308d\u3001\u2460\u306f\u89e3\u6d88\u3055\u308c\u305f\u304c\u4ee5\u4e0b\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u8868\u793a\u3055\u308c\u308b\u3002\n\u3000\u300cWSL2 installation is incomplete\u300d\n\u3000\u21d2 \u4ee5\u4e0b\u3092\u53c2\u8003\u306b\u3057\u3066WSL2\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3002\n\u3000\u3000 https://docs.microsoft.com/ja-jp/windows/wsl/install-win10\n\u3000\u3000 \u203b Docker for Windows\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3068\u304d\u306b\u4e00\u7dd2\u306bWSL\u3082\u5165\u308c\u3089\u308c\u305f\u3063\u307d\u3044\n \n\u2462 Docker\u30a4\u30e1\u30fc\u30b8\u306e\u53d6\u5f97\u9014\u4e2d\u3067\u6b7b\u306c\n\u81ea\u5b85\u306e\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u56de\u7dda\u304c\u8ca7\u5f31\u306a\u306e\u304b\u3001\u4e0b\u8a18\u30b3\u30de\u30f3\u30c9\u3067\u30a4\u30e1\u30fc\u30b8\u3092\u6301\u3063\u3066\u304f\u308b\u9014\u4e2d\u3067\u6b62\u307e\u308b\u3002\ndocker run -p 6080:80 --shm-size=512m seigott/tetris_docker\n\n\u21d2 Docker for Windows\u3092\u8d77\u52d5\u3057\u3066\u3001\u30a6\u30a3\u30f3\u30c9\u30a6\u4e0a\u90e8\u306e\"\u6b6f\u8eca(\u8a2d\u5b9a)\u30dc\u30bf\u30f3\"\u3001\"Docker Engine\"\u3092\u30af\u30ea\u30c3\u30af\u3002\n\u3000 config\u30d5\u30a1\u30a4\u30eb\u306b\u3001\u300c\"max-concurrent-download\":1\u300d\u3092\u8ffd\u8a18\u3002\n\u3000\u203b\u3053\u308c\u3067\u30c7\u30d5\u30a9\u30eb\u30c8\u306e3\u4e26\u5217\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u304c\u76f4\u5217\u306b\u306a\u308b\n \n\u2463 Docker\u30a4\u30e1\u30fc\u30b8\u306e\u53d6\u5f97\u9014\u4e2d\u3067\u3001\u300cdocker: unauthorized authentication required\u300d\u3068\u51fa\u3066\u6b7b\u306c\n\u21d2 windows power shell\u3092\u7ba1\u7406\u8005\u6a29\u9650\u3067\u5b9f\u884c\u3057\u3066\u30b3\u30de\u30f3\u30c9\u3092\u53e9\u304f\u3068\u3044\u3051\u305f\u3063\u307d\u3044\u3002\n```", "start_char_idx": 0, "end_char_idx": 929, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "71c6d102-1b98-40e2-975b-a0bca03bf152": {"__data__": {"id_": "71c6d102-1b98-40e2-975b-a0bca03bf152", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "68654e11-e95e-4198-b977-342ffea414d1", "node_type": null, "metadata": {}, "hash": "feacc1ccd770a0b86724729ba25520f86651fed878347ac5841a6555dd40f968"}}, "hash": "d4dbf46a058ef642f70d18b1cf22e16df356d3dd9e238622e2ded663cf985fce", "text": "pytorch v1.4 \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\n\nubuntu18.04\u74b0\u5883\u3067\u306f\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u6e08\npytorch v1.4 \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u306eDocker\u74b0\u5883\uff08\u304a\u8a66\u3057\u7248\uff09\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002\u8ffd\u52a0\u3067\u5fc5\u8981\u306a\u3082\u306e\u304c\u3042\u308c\u3070Dockerfile\u3092\u66f4\u65b0\u3057\u3066\u4e0b\u3055\u3044\u3002\n\n```\nfunction install_torch(){\n ### pytorch from pip image (v1.4)\n sudo apt-get install -y libopenblas-base libopenmpi-dev\n sudo apt-get -y install libjpeg-dev zlib1g-dev libpython3-dev libavcodec-dev libavformat-dev libswscale-dev\n \n #python -m pip install https://download.pytorch.org/whl/cu101/torch-1.4.0-cp27-cp27mu-linux_x86_64.whl\n python -m pip install torchvision==0.2.2\n pip3 install torch==1.4.0 torchvision==0.2.2\n pip install 'pillow<7'\n}\n```", "start_char_idx": 0, "end_char_idx": 617, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7b56d953-5d3d-4c26-b263-0d7d273eecf3": {"__data__": {"id_": "7b56d953-5d3d-4c26-b263-0d7d273eecf3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4058c3ac-5fc2-44f1-be9b-caf4592c1975", "node_type": null, "metadata": {}, "hash": "b56e5b69867041d1779ccae638325010546b6735f12a538c5fb1f35bd0d446d6"}}, "hash": "0a648ef2385f55a986464f0d1034abcc94fb17c33e221b0c952bf965748f2505", "text": "Docker\u306f\u30b3\u30f3\u30c6\u30ca\u7d42\u4e86\u306e\u5ea6\u306b\u30c7\u30fc\u30bf\u304c\u6d88\u3048\u3066\u624b\u9593\u304c\u639b\u304b\u308b\u306e\u3067\u4f55\u3068\u304b\u3057\u305f\u3044\nWSL(Windows Subsystem for Linux)\u3092\u4f7f\u3046\u5834\u5408\u306e\u624b\u9806\u3092\u7528\u610f\u3057\u307e\u3057\u305f\u3002\n\uff08kyad\u3055\u3093\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff09\n\n\u8ffd\u8a18\uff1acygwin\u74b0\u5883\u69cb\u7bc9\u624b\u9806\nisshy-you\u3055\u3093\u306b\u3088\u308b`Cygwin Install for tetris`\u69cb\u7bc9\u624b\u9806\n\uff08isshy-you\u3055\u3093\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff09", "start_char_idx": 0, "end_char_idx": 192, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2206a4d2-1112-4287-adcd-0bd9dc77978c": {"__data__": {"id_": "2206a4d2-1112-4287-adcd-0bd9dc77978c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c2ae3914-16bb-4bcd-98cc-2bc1b8c64211", "node_type": null, "metadata": {}, "hash": "4f0cce590024bef35ec4f32c471d3690938ee896d0dbf32cff08dd241adb554a"}}, "hash": "33b3ad95fa1d783ff739fefb402d4ed472fda2954f3b894aa98a2379a13857d5", "text": "python\u30b3\u30de\u30f3\u30c9\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u65e8\u306e\u30a8\u30e9\u30fc\u304c\u51fa\u308b\u5834\u5408\n\nubuntu20.04\u7b49\u3067\u306f\u3001`python3`\u304c\u3042\u308b\u306b\u3082\u95a2\u308f\u3089\u305a`python`\u30b3\u30de\u30f3\u30c9\u304c\u306a\u3044\n\n```\n$ python start.py\nCompletedProcess(args='python --version', returncode=127, stderr='/bin/sh: 1: python: not found\\n')\n/bin/sh: 1: python: not found\nerror: subprocess failed.\n```\n\n```\n$ python --version\n\nCommand 'python' not found, did you mean:\n\n command 'python3' from deb python3\n command 'python' from deb python-is-python3\n```\n\n\u30ed\u30b0\u8a18\u8f09\u306e\u901a\u308a`python-is-python3`\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308c\u3070OK\n\n```\nsudo apt install -y python-is-python3\n```", "start_char_idx": 0, "end_char_idx": 502, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c64c4674-00e9-4ba9-a68d-c40cbcba032b": {"__data__": {"id_": "c64c4674-00e9-4ba9-a68d-c40cbcba032b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "cbb01147-887b-4402-bc1f-e0d680de53b5", "node_type": null, "metadata": {}, "hash": "082549f5da274e2bf81e2a4fbc9ff02c337435d92924f2da8ff3ae9b9fe1a74c"}}, "hash": "881871480d10c68a5e1be49cbb8063234e1e23129919d72c2764e776ad3d4700", "text": "\u30b9\u30b3\u30a2\u8a55\u4fa1\u7528\u30b5\u30fc\u30d0\u306b\u3064\u3044\u3066\n\n\u4ee5\u4e0b\u3092\u4f5c\u6210\u3057\u3066\u307f\u307e\u3057\u305f\u3002\n\nhttps://github.com/seigot/tetris_score_server", "start_char_idx": 0, "end_char_idx": 74, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "1d8fe66d-74de-42b6-b42c-602120f097f1": {"__data__": {"id_": "1d8fe66d-74de-42b6-b42c-602120f097f1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e196e0eb-1d62-4e56-b3c7-860b8b9cf82f", "node_type": null, "metadata": {}, "hash": "8bd7e0ac54e23a8ea6a0889153c24b2df3eba0b69297c2b5d3fffc1e8e7c4edf"}}, "hash": "9ca6a17e42a0e4b1531505d05ca55c6e2a3c1b8e5c571732016eebdc29f7b7dd", "text": "`python start.py`\u5b9f\u884c\u6642\u306b`TypeError: arguments did not match any overloaded call:`\u30a8\u30e9\u30fc\u304c\u51fa\u308b\n\n\u4ee5\u4e0bissue\u3067\u5bfe\u7b56\u4e2d\n> `python start.py`\u5b9f\u884c\u6642\u306b`TypeError: arguments did not match any overloaded call:`\u30a8\u30e9\u30fc\u304c\u51fa\u308b", "start_char_idx": 0, "end_char_idx": 184, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4354a668-d85d-4c5b-bda7-a24d7f204a75": {"__data__": {"id_": "4354a668-d85d-4c5b-bda7-a24d7f204a75", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ea29a5cc-7be0-4c1c-9d82-19092d34e2d3", "node_type": null, "metadata": {}, "hash": "79b75d493f960bfa76c3950cd5a228d2a4e38026549ac88a64f17348253e64a8"}}, "hash": "7ef9294516f77094a3862772a5324cef87d75fa222de3a4ba131a2ee1df283e4", "text": "\u4ee5\u4e0b\u3001\u9806\u6b21\u8ffd\u8a18", "start_char_idx": 0, "end_char_idx": 7, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "cd26aa1c-a6d6-43dc-9074-a568ef49975e": {"__data__": {"id_": "cd26aa1c-a6d6-43dc-9074-a568ef49975e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "fe785f87-4fa6-4363-8b94-e20f73ac4c69", "node_type": null, "metadata": {}, "hash": "0c0d559e6096b03dd79986b13dcc56c9d4a027a8e74c5f4083efee4e5766fe05"}}, "hash": "b8336924f1327f09b4ae9c889f78d26b2eaf74f11919776dca513b255b0da0eb", "text": "`GameStatus`\u30c7\u30fc\u30bf\u69cb\u9020\n\n`block_controller.py`\u5185\u306e`def GetNextMove(self, nextMove, GameStatus)`\u3067\u6271\u3046`GameStatus`\u306f\u8f9e\u66f8\u578b\u30c7\u30fc\u30bf\u3067\u3059\u3002\n\u30d6\u30ed\u30c3\u30af\u306e\u52d5\u304d\u3092\u6c7a\u5b9a\u3059\u308b\u305f\u3081\u306e\u53c2\u8003\u30c7\u30fc\u30bf\u3068\u3057\u3066\u4ee5\u4e0b\u3092\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059\u3002\n\n```\n* field_info : \u30d5\u30a3\u30fc\u30eb\u30c9\u60c5\u5831\n* block_info : \u30d6\u30ed\u30c3\u30af\u60c5\u5831\n* judge_info : \u5be9\u5224\u60c5\u5831\n* debug_info : \u30c7\u30d0\u30c3\u30b0\u60c5\u5831\n```\n\n\u4ee5\u4e0b\u3001\u5404\u60c5\u5831\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u8a18\u8f09\u3057\u307e\u3059\u3002", "start_char_idx": 0, "end_char_idx": 264, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "37740239-6453-42e5-9485-42937afd3209": {"__data__": {"id_": "37740239-6453-42e5-9485-42937afd3209", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0", "node_type": null, "metadata": {}, "hash": "2d83e2c9932b690e55747e770794330fecab9f47177e9c63507ec8f6a316a2eb"}, "3": {"node_id": "9c58f533-fead-4e94-978a-70b0be81b612", "node_type": null, "metadata": {}, "hash": "1e99046ac5735ddf55cdceb820d4dec2eea37bcff89035447376cce2ebc2b914"}}, "hash": "dc9337248cdd1ba876295f92e575d04d4396cf7d0fe3b2c43c3bc88042e5248c", "text": "field_info\n\n\u4ee5\u4e0b\u3092\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059\u3002\n\n```\n* 'backboard': \u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u30c7\u30fc\u30bf\n* 'height': \u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u9ad8\u3055\n* 'width' : \u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u5e45\n* 'withblock' : \u30d5\u30a3\u30fc\u30eb\u30c9+\u30d6\u30ed\u30c3\u30af\u306e\u4f4d\u7f6e\u3092\u5408\u308f\u305b\u305f\u30c7\u30fc\u30bf\n```\n\n\u5177\u4f53\u7684\u306b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30c7\u30fc\u30bf\u3068\u306a\u3063\u3066\u3044\u307e\u3059\u3002\u5b9f\u969b\u306b\u51fa\u529b\u3057\u3066\u307f\u308b\u3068\u5206\u304b\u308a\u6613\u3044\u3068\u601d\u3044\u307e\u3059\u3002\n\n```\n'field_info': {'backboard': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0,", "start_char_idx": 0, "end_char_idx": 1237, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9c58f533-fead-4e94-978a-70b0be81b612": {"__data__": {"id_": "9c58f533-fead-4e94-978a-70b0be81b612", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0", "node_type": null, "metadata": {}, "hash": "2d83e2c9932b690e55747e770794330fecab9f47177e9c63507ec8f6a316a2eb"}, "2": {"node_id": "37740239-6453-42e5-9485-42937afd3209", "node_type": null, "metadata": {}, "hash": "dc9337248cdd1ba876295f92e575d04d4396cf7d0fe3b2c43c3bc88042e5248c"}, "3": {"node_id": "e14c01b1-2eb3-482a-9383-fde15faf6a52", "node_type": null, "metadata": {}, "hash": "ebda4db9fbb9a4708030740448ad6b62cbf946ac231829bbaa22e946e4d964bd"}}, "hash": "1e99046ac5735ddf55cdceb820d4dec2eea37bcff89035447376cce2ebc2b914", "text": " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n 'height': 22,\n 'width': 10,\n 'withblock': [0, 0, 0, 0, 0, 1, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 1, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 1, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 1, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0,", "start_char_idx": 1226, "end_char_idx": 2472, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e14c01b1-2eb3-482a-9383-fde15faf6a52": {"__data__": {"id_": "e14c01b1-2eb3-482a-9383-fde15faf6a52", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0", "node_type": null, "metadata": {}, "hash": "2d83e2c9932b690e55747e770794330fecab9f47177e9c63507ec8f6a316a2eb"}, "2": {"node_id": "9c58f533-fead-4e94-978a-70b0be81b612", "node_type": null, "metadata": {}, "hash": "1e99046ac5735ddf55cdceb820d4dec2eea37bcff89035447376cce2ebc2b914"}}, "hash": "ebda4db9fbb9a4708030740448ad6b62cbf946ac231829bbaa22e946e4d964bd", "text": " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]},\n```", "start_char_idx": 2466, "end_char_idx": 2871, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2014263b-21f8-4d9f-ac1f-1ecb67ba4b67": {"__data__": {"id_": "2014263b-21f8-4d9f-ac1f-1ecb67ba4b67", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ad902677-e961-42cb-9ffd-5474262f813d", "node_type": null, "metadata": {}, "hash": "dca15028ef5d667950c5447fd249ebd515d01176e375af4f0aaaf3801dc95a42"}}, "hash": "0ead6f3e62631ad523e2706b309edaaabe6a366f90714511135f866f000995bb", "text": "block_info\n\n\u4ee5\u4e0b\u3092\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059\u3002\n\n```\n'currentDirection': \u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u304c\u521d\u671f\u5f62\u72b6\u304b\u3089\u4f55\u56de\u56de\u8ee2\u3057\u305f\u5f62\u72b6\u304b\n'currentShape': {\n 'class': \u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u3092\u7ba1\u7406\u3057\u3066\u3044\u308b\u30af\u30e9\u30b9\u306e\u30a2\u30c9\u30ec\u30b9\n 'direction_range': \u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u304c\u56de\u8ee2\u3067\u304d\u308b\u56de\u6570\n 'index': \u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u306eindex\u5024\n},\n'currentX': \u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9(x\u5ea7\u6a19)\n'currentY': \u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9(y\u5ea7\u6a19)\n'nextShape': {\n 'class': \u6b21\u306e\u30d6\u30ed\u30c3\u30af\u3092\u7ba1\u7406\u3057\u3066\u3044\u308b\u30af\u30e9\u30b9\u306e\u30a2\u30c9\u30ec\u30b9\n 'direction_range': \u6b21\u306e\u30d6\u30ed\u30c3\u30af\u304c\u56de\u8ee2\u3067\u304d\u308b\u56de\u6570\n 'index' : \u6b21\u306e\u30d6\u30ed\u30c3\u30af\u306eindex\u5024\n}\n```\n\n\u5177\u4f53\u7684\u306b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30c7\u30fc\u30bf\u3068\u306a\u3063\u3066\u3044\u307e\u3059\u3002\u5b9f\u969b\u306b\u51fa\u529b\u3057\u3066\u307f\u308b\u3068\u5206\u304b\u308a\u6613\u3044\u3068\u601d\u3044\u307e\u3059\u3002\n\n```\n'block_info': {'currentDirection': 0,\n 'currentShape': {'class': ,\n 'direction_range': (0, 1),\n 'index': 1},\n 'currentX': 5,\n 'currentY': 1,\n 'nextShape': {'class': ,\n 'direction_range': (0, 1, 2,\n 3),\n 'index': 2}},\n```", "start_char_idx": 0, "end_char_idx": 982, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f90d1ee3-a44d-4025-8de9-ca2eff283765": {"__data__": {"id_": "f90d1ee3-a44d-4025-8de9-ca2eff283765", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "28d917d5-327e-41a3-9f41-7e786ec0ff9e", "node_type": null, "metadata": {}, "hash": "ebec340f1ce217aba0831c7527ea1f63f97f245eda05f362f11d030451ad0b31"}, "3": {"node_id": "cc5a89fa-f97d-4b34-a08d-7c8f2380f647", "node_type": null, "metadata": {}, "hash": "e195c387759a2f897538058a906056e446bfec0460090e954ec9ea7730dd1458"}}, "hash": "1a3594c2491c00e1e31d36057bc76c374c9a8f8af8aa81747854ff0f5ffdc1dc", "text": "debug_info\n\n\u4ee5\u4e0b\u3092\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059\u3002\n\u30c7\u30d0\u30c3\u30af\u7528\u306b\u6e96\u5099\u3057\u3066\u3044\u308b\u60c5\u5831\u3067\u3042\u308a\u3001\u5fc5\u305a\u3057\u3082\u4f7f\u3046\u5fc5\u8981\u306f\u306a\u3044\u304b\u3082\u3057\u308c\u306a\u3044\u3067\u3059\u3002\n\n```\n'dropdownscore': \u843d\u4e0b\u306b\u3088\u308a\u7372\u5f97\u3057\u305f\u30b9\u30b3\u30a2\u306e\u5408\u8a08\n'line_score': { line\u3092\u6d88\u3057\u305f\u6642\u306a\u3069\u306b\u7372\u5f97\u3067\u304d\u308b\u30b9\u30b3\u30a2\n 'line1': 1line\u6d88\u3057\u305f\u6642\u306e\u7372\u5f97\u30b9\u30b3\u30a2\n 'line2': 2line\u6d88\u3057\u305f\u6642\u306e\u7372\u5f97\u30b9\u30b3\u30a2\n 'line3': 3line\u6d88\u3057\u305f\u6642\u306e\u7372\u5f97\u30b9\u30b3\u30a2\n 'line4': 4line\u6d88\u3057\u305f\u6642\u306e\u7372\u5f97\u30b9\u30b3\u30a2\n 'gameover': game over\u306b\u306a\u3063\u305f\u6642\u306e\u7372\u5f97\u30b9\u30b3\u30a2\n},\n'line_score_stat': \u6d88\u3057\u305fline\u306e\u7d71\u8a08\u30c7\u30fc\u30bf\n'linescore': line\u3092\u6d88\u3057\u3066\u7372\u5f97\u3057\u305f\u30b9\u30b3\u30a2\u306e\u5408\u8a08\n'shape_info': {\n 'shapeI': {\n 'color': ShapeI\u306e\u8272\n 'index': ShapeI\u306eindex\n },\n 'shapeJ': {\n 'color': ShapeJ\u306e\u8272\n 'index': ShapeJ\u306eindex\n },\n 'shapeL': {\n 'color': ShapeL\u306e\u8272\n 'index': ShapeL\u306eindex\n },\n 'shapeNone': {\n 'color': ShapeNone(\u30d6\u30ed\u30c3\u30af\u304c\u306a\u3044\u72b6\u614b)\u306e\u8272\n 'index': ShapeNone(\u30d6\u30ed\u30c3\u30af\u304c\u306a\u3044\u72b6\u614b)\u306eindex\n },\n 'shapeO': {\n 'color': ShapeO\u306e\u8272\n 'index': ShapeO\u306eindex\n },\n 'shapeS': {\n 'color': ShapeS\u306e\u8272\n 'index': ShapeS\u306eindex\n },\n 'shapeT': {\n 'color': ShapeT\u306e\u8272\n 'index': ShapeT\u306eindex\n },\n 'shapeZ': {\n 'color': ShapeZ\u306e\u8272\n 'index': ShapeZ\u306eindex\n }\n},\n'shape_info_stat': \u30b2\u30fc\u30e0\u958b\u59cb\u6642\u304b\u3089\u73fe\u6642\u70b9\u307e\u3067\u306b\u51fa\u73fe\u3057\u305f\u30d6\u30ed\u30c3\u30af\u306e\u7d71\u8a08\u60c5\u5831\n```\n\n\u5177\u4f53\u7684\u306b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30c7\u30fc\u30bf\u3068\u306a\u3063\u3066\u3044\u307e\u3059\u3002\u5b9f\u969b\u306b\u51fa\u529b\u3057\u3066\u307f\u308b\u3068\u5206\u304b\u308a\u6613\u3044\u3068\u601d\u3044\u307e\u3059\u3002\n\n```\n 'debug_info': {'dropdownscore': 0,\n ", "start_char_idx": 0, "end_char_idx": 1344, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "cc5a89fa-f97d-4b34-a08d-7c8f2380f647": {"__data__": {"id_": "cc5a89fa-f97d-4b34-a08d-7c8f2380f647", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "28d917d5-327e-41a3-9f41-7e786ec0ff9e", "node_type": null, "metadata": {}, "hash": "ebec340f1ce217aba0831c7527ea1f63f97f245eda05f362f11d030451ad0b31"}, "2": {"node_id": "f90d1ee3-a44d-4025-8de9-ca2eff283765", "node_type": null, "metadata": {}, "hash": "1a3594c2491c00e1e31d36057bc76c374c9a8f8af8aa81747854ff0f5ffdc1dc"}}, "hash": "e195c387759a2f897538058a906056e446bfec0460090e954ec9ea7730dd1458", "text": "0,\n 'line_score': {'line1': 100,\n 'line2': 300,\n 'line3': 700,\n 'line4': 1300,\n 'gameover': -500},\n 'line_score_stat': [0, 0, 0, 0],\n 'linescore': 0,\n 'shape_info': {'shapeI': {'color': 'red',\n 'index': 1},\n 'shapeJ': {'color': 'purple',\n 'index': 3},\n 'shapeL': {'color': 'green',\n 'index': 2},\n 'shapeNone': {'color': 'none',\n 'index': 0},\n 'shapeO': {'color': 'pink',\n 'index': 5},\n 'shapeS': {'color': 'blue',\n 'index': 6},\n 'shapeT': {'color': 'gold',\n 'index': 4},\n 'shapeZ': {'color': 'yellow',\n 'index': 7}},\n 'shape_info_stat': [0, 1, 0, 0, 0, 0, 0, 0]},\n```", "start_char_idx": 1328, "end_char_idx": 2631, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "67fa80df-74b0-495b-ac54-b805b10d55be": {"__data__": {"id_": "67fa80df-74b0-495b-ac54-b805b10d55be", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "210f7abe-762f-4d0c-beeb-219591370b19", "node_type": null, "metadata": {}, "hash": "becfe11337598c2147dfe14b45ad48a5ff9234a4611cc5b2f99fce94aba998db"}}, "hash": "e50d961f6c82901c2a9e3b4687fb8d4d030b0ac5952cb7e13c2d72d56b69c46f", "text": "judge_info\n\n\u4ee5\u4e0b\u3092\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059\u3002\n\n```\n'block_index': \u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u304c\u30b2\u30fc\u30e0\u958b\u59cb\u6642\u304b\u3089\u4f55\u756a\u76ee\u306b\u767b\u5834\u3057\u305f\u30d6\u30ed\u30c3\u30af\u304b\n'elapsed_time': \u30b2\u30fc\u30e0\u958b\u59cb\u6642\u304b\u3089\u306e\u7d4c\u904e\u6642\u9593(s)\n'game_time': \u5236\u9650\u6642\u9593(s)\n'gameover_count': \u30b2\u30fc\u30e0\u958b\u59cb\u6642\u304b\u3089\u73fe\u5728\u307e\u3067\u306b\u30b2\u30fc\u30e0\u30aa\u30fc\u30d0\u30fc\u306b\u306a\u3063\u305f\u56de\u6570\n'line': \u30b2\u30fc\u30e0\u958b\u59cb\u6642\u304b\u3089\u73fe\u5728\u307e\u3067\u306b\u6d88\u3057\u305f\u30e9\u30a4\u30f3\u306e\u6570\n'score': \u30b2\u30fc\u30e0\u958b\u59cb\u6642\u304b\u3089\u73fe\u5728\u307e\u3067\u306b\u7372\u5f97\u3057\u305f\u5408\u8a08\u30b9\u30b3\u30a2\n```\n\n\u5177\u4f53\u7684\u306b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30c7\u30fc\u30bf\u3068\u306a\u3063\u3066\u3044\u307e\u3059\u3002\u5b9f\u969b\u306b\u51fa\u529b\u3057\u3066\u307f\u308b\u3068\u5206\u304b\u308a\u6613\u3044\u3068\u601d\u3044\u307e\u3059\u3002\n\n```\n 'judge_info': {'block_index': 1,\n 'elapsed_time': 1.083,\n 'game_time': 180,\n 'gameover_count': 0,\n 'line': 0,\n 'score': 0}}\n ```", "start_char_idx": 0, "end_char_idx": 540, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a7dec113-d4ad-42b3-8c12-068e790f36fe": {"__data__": {"id_": "a7dec113-d4ad-42b3-8c12-068e790f36fe", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ce577892-aa46-44ec-a3c3-ad82a8847f5d", "node_type": null, "metadata": {}, "hash": "d1d3759bc16167441244a6503fc709abc61ae5421468aab576a2f694a8633283"}}, "hash": "68c4abe4056e733e78c06369a56183076d08e791efcdb55c053971b8ef679a31", "text": "AI\u306b\u3064\u3044\u3066\uff08\u6e96\u5099\u4e2d\uff09", "start_char_idx": 0, "end_char_idx": 11, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ce9b0860-1fd5-4916-bc02-f7003e48000c": {"__data__": {"id_": "ce9b0860-1fd5-4916-bc02-f7003e48000c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4303e09f-8bce-4681-943e-06eac590d9d9", "node_type": null, "metadata": {}, "hash": "05c610a391652d5213d00eaa025202170f366b306dfe00bdedcc9e307afa539f"}}, "hash": "2a2967329848b86917f950d1d0302994900a3af01dab4dbb7ad4fa8619372066", "text": "1.\u74b0\u5883\u6e96\u5099\n- sample \u306e\u30b3\u30fc\u30c9\u3067\u306f pytorch \u3092\u4f7f\u3063\u3066AI\u306e\u30cb\u30e5\u30fc\u30e9\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u3092\u69cb\u7bc9\u3057\u307e\u3059\u3002 \n- pytorch\u3000\u306b\u3064\u3044\u3066\u306f\u3053\u3061\u3089\u3092\u53c2\u8003\u306b\u3057\u3001\u74b0\u5883\u306b\u5408\u308f\u305b\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 103, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "fab83493-3635-42a2-9e4c-3f9c9811b13f": {"__data__": {"id_": "fab83493-3635-42a2-9e4c-3f9c9811b13f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "32c12c5a-b937-4e78-a5e9-0995028d8043", "node_type": null, "metadata": {}, "hash": "16387e538cb23b0dce282df6d59dac62fa8e2282701ce17d7e4f746ded1b40af"}}, "hash": "d4b84eec23e11bf904eb075ee74377346a1a0f56180d23d99b1085078c2e9ea9", "text": "\u4f8b) Windows\u306eCPU\u52d5\u4f5c\u7528\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5834\u5408\n```\npip3 install torch torchvision torchaudio\n```", "start_char_idx": 0, "end_char_idx": 78, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "1b0215d1-5988-4f5c-89a9-25cdeeb163ab": {"__data__": {"id_": "1b0215d1-5988-4f5c-89a9-25cdeeb163ab", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a7c6cd42-a821-42ce-82da-45c1a7653f6b", "node_type": null, "metadata": {}, "hash": "5f9ad89b794df55b75c0a3146f841011c470edd965451322b20fbc126bc33ad2"}}, "hash": "a35ac1d9e755316d7ba9f8f4815331b53bf40f8c4c974fab1fc9e045987f75ba", "text": "\u4f8b) Mac\u306eCPU\u5b9f\u884c\u7528\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5834\u5408\n```\npip3 install torch torchvision torchaudio\n```", "start_char_idx": 0, "end_char_idx": 74, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3948ac0d-cd21-41a2-b82d-23463eda3c94": {"__data__": {"id_": "3948ac0d-cd21-41a2-b82d-23463eda3c94", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "968e52ba-8d2d-41cb-9ecd-02f41e519527", "node_type": null, "metadata": {}, "hash": "e882379d244a4592602686fcba052ccfb221341621fa8eef75804915e215d31a"}}, "hash": "66b6e8ebd2b77a80e2f87e3a9df3ec7701601033fd14bdca4c48f5264dcccbe8", "text": "2.\u5b66\u7fd2\u3068\u63a8\u8ad6\n\n* \u30b5\u30f3\u30d7\u30eb\u3068\u3057\u3066\u4e0b\u8a18\u306e\uff12\u3064\u306e\u30cb\u30e5\u30fc\u30e9\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u304c \n\u3053\u3061\u3089\n\u306e\u30b3\u30fc\u30c9\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059\u3002\n\n * sample: DQN(Deep Q Network)\u3092\u4f7f\u3063\u305f\u5b66\u7fd2\u30fb\u63a8\u8ad6\n * sample2: MLP (Multilayer perceptron)\u3092\u4f7f\u3063\u305f\u5b66\u7fd2\u30fb\u63a8\u8ad6", "start_char_idx": 0, "end_char_idx": 152, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "260d1dd4-dfbf-4c84-b924-99494034f8d5": {"__data__": {"id_": "260d1dd4-dfbf-4c84-b924-99494034f8d5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "37a6860d-b01a-424b-a69a-0371ffab694a", "node_type": null, "metadata": {}, "hash": "2233e4692e3bb6e07cfbd77640eacb0bb508f634931fa23b356ed6de3d1f4996"}}, "hash": "2e619fdeff44a61c43f4e84ad1e270437095dc4fcb3d1ab49c6934575c80fafc", "text": "2.1\u5b66\u7fd2\u306e\u5b9f\u884c\n- DQN(Deep Q Network)\u3092\u4f7f\u3046\u5834\u5408\n\n```\npython start.py -m train_sample -d 1 -l 2 -t -1\n```\n\n- MLP (Multilayer perceptron)\u3092\u4f7f\u3046\u5834\u5408\n```\npython start.py -m train_sample2 -d 1 -l 2 -t -1\n```", "start_char_idx": 0, "end_char_idx": 186, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "dbf80e15-499d-45af-ba7c-ecca12f0bcf5": {"__data__": {"id_": "dbf80e15-499d-45af-ba7c-ecca12f0bcf5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8d31b5c2-c82d-4436-97fa-9038886e7a58", "node_type": null, "metadata": {}, "hash": "9288f6b82d90f7c4d3f248ee3ea2ad5eaef79dc5708dac9c4cc3dbc4d58e94e3"}}, "hash": "fcfe945850dc3854666dfcc3261c0fd9df8a61e5cdd0090a401abfe50d0a6362", "text": "2.2\u63a8\u8ad6\u306e\u5b9f\u884c\n\n- DQN(Deep Q Network)\u3092\u4f7f\u3046\u5834\u5408\n```\npython start.py -m predict_sample -l 2 --predict_weight weight/DQN/sample_weight.pt\n```\n\n- MLP (Multilayer perceptron)\u3092\u4f7f\u3046\u5834\u5408\n```\npython start.py -m predict_sample2 -l 2 --predict_weight weight/MLP/sample_weight.pt\n```", "start_char_idx": 0, "end_char_idx": 258, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "084f7f0a-335a-4332-8fba-ea8af93adb07": {"__data__": {"id_": "084f7f0a-335a-4332-8fba-ea8af93adb07", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ec004f6b-f580-4214-a0ed-5ef66f0b423b", "node_type": null, "metadata": {}, "hash": "152bbfb7da5490eeb205e4d7aae6aed893f253ea01387b82a3e2f09c11f20898"}}, "hash": "94c50a04454c134030264388783239fcdc46f26207f1c2c83bf3f8eec3f99b2f", "text": "2.3 \u518d\u5b66\u7fd2/\u8ffd\u52a0\u5b66\u7fd2\uff08Fine Tuning) \u306e\u5b9f\u884c\n- \u5b66\u7fd2\u6e08\u307f\u306e\u91cd\u307f\u3092\u521d\u671f\u72b6\u614b\u3068\u3057\u3066\u5b66\u7fd2\u3059\u308b\u5834\u5408\u306f\u4e0b\u8a18\u306e\u624b\u9806\u3067\u3000config\u306eyaml\u30d5\u30a1\u30a4\u30eb\u3092\u8a2d\u5b9a\u3059\u308b\u3002\n1. ft_weight \u306b\u5b66\u7fd2\u6e08\u307f\u91cd\u307f\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u8a2d\u5b9a\n2. finetune \u3092\u3000False \u2192 True \u306b\u5909\u66f4\n3. initial_epsilon \u3092\u5c0f\u3055\u304f\u3059\u308b\uff080\u3088\u308a\u5927\u304d\u3044\uff11\u4ee5\u4e0b\u306e\u5024\uff09\n\n- initial_epsilon \u306f \u03b5-greedy\u6cd5\u3068\u3044\u3046\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u306a\u308a\u3001\u5b66\u7fd2\u521d\u671f\u306b\u306b\u3069\u306e\u7a0b\u5ea6\u30e9\u30f3\u30c0\u30e0\u306a\u884c\u52d5\u3092\u53d6\u308b\u304b\u3092\u8a2d\u5b9a\u3057\u307e\u3059\u3002\u8ffd\u52a0\u5b66\u7fd2\u306e\u5834\u5408\u306f\u3001\u5c0f\u3055\u3044\u5024\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u3067\u3001\u5b66\u7fd2\u6e08\u307f\u306e\u30e2\u30c7\u30eb\u3092\u6709\u52b9\u6d3b\u7528\u3067\u304d\u307e\u3059\u3002\n- \u03b5-greedy\u6cd5\u306b\u3064\u3044\u3066\u306f\u4e0b\u8a18\u306e\u30b5\u30a4\u30c8\u306a\u3069\u304c\u53c2\u8003\u306b\u306a\u308a\u307e\u3059\u3002\n - https://horomary.hatenablog.com/entry/2021/01/26/233351", "start_char_idx": 0, "end_char_idx": 397, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e02f1412-7ee8-4e47-8fab-65ec2e609219": {"__data__": {"id_": "e02f1412-7ee8-4e47-8fab-65ec2e609219", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7f292052-e685-484c-8a88-ced6af9dee2b", "node_type": null, "metadata": {}, "hash": "bc395ff0aac8b81d248f5b6fc6047b20ce841fe9bd137e1198cc369684ffc9cb"}}, "hash": "b16e8e9908c8bc7898ac3778d79c8323b059d5f8fc2fd3721e4199aeba082e59", "text": "2.4 -m \u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066\n - \u5b66\u7fd2/\u63a8\u8ad6\u306e\u5207\u308a\u66ff\u3048\u304a\u3088\u3073\u30b5\u30f3\u30d7\u30eb/\u672c\u756a\u30b3\u30fc\u30c9\u306e\u5207\u308a\u66ff\u306b\u306f\u3000\"-m\"\u3000\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002\n\n**\u203b sample\u30b3\u30fc\u30c9\u306f\u57fa\u672c\u7684\u306b\u5909\u66f4\u305b\u305a\u3001\u672c\u756a\u7528\u30b3\u30fc\u30c9\u3067\u958b\u767a\u3057\u3066\u304f\u3060\u3055\u3044**\n\n- \"-m\" \u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u5bfe\u3057\u3066\u4e0b\u8a18\u306e\u5f15\u6570\u3092\u6e21\u3059\u3053\u3068\u3067\u66f8\u304f\u30e2\u30fc\u30c9\u3092\u5207\u308a\u66ff\u3048\u3089\u308c\u308b\u3002\n\n|\u30aa\u30d7\u30b7\u30e7\u30f3\u540d|\u8aac\u660e|\n| ---- | ---- |\n| train_sample| \u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c91\u3092\u7528\u3044\u3066DQN\u306b\u3088\u308b\u5b66\u7fd2\u3092\u884c\u3046|\n| train_sample2| \u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c92\u3092\u7528\u3044\u3066MLP\u306b\u3088\u308b\u5b66\u7fd2\u3092\u884c\u3046|\n| train| \u672c\u756a\u7528\u30b3\u30fc\u30c9 \u3092\u7528\u3044\u3066\u5b66\u7fd2\u3092\u884c\u3046|\n| predict_sample| \u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c91\u3092\u7528\u3044\u3066DQN\u306b\u3088\u308b\u63a8\u8ad6\u3092\u884c\u3046\u3002 \u5b9f\u884c\u6642\u306b--predict_weight \u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u3088\u308a\u91cd\u307f\u306e\u30d1\u30b9\u3092\u9078\u629e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002|\n| predict_sample2| \u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c92\u3092\u7528\u3044\u3066MLP\u306b\u3088\u308b\u5b66\u7fd2\u3092\u884c\u3046\u3000 \u5b9f\u884c\u6642\u306b--predict_weight \u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u3088\u308a\u91cd\u307f\u306e\u30d1\u30b9\u3092\u9078\u629e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002|\n| predict| \u672c\u756a\u7528\u30b3\u30fc\u30c9 \u3092\u7528\u3044\u3066\u5b66\u7fd2\u3092\u884c\u3046\u3000 \u5b9f\u884c\u6642\u306b--predict_weight \u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u3088\u308a\u91cd\u307f\u306e\u30d1\u30b9\u3092\u9078\u629e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002|", "start_char_idx": 0, "end_char_idx": 554, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2fa953dc-0470-4f3f-9486-03d37d36846c": {"__data__": {"id_": "2fa953dc-0470-4f3f-9486-03d37d36846c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e29949ae-1997-4278-aba6-381cbe396c43", "node_type": null, "metadata": {}, "hash": "3dd00af02cd94fe89e09213b0c2acac05f42cb434ba4e22d18a6c1253b0cd5da"}}, "hash": "889656e98521a12bb9345c316a4ad2d0ed815e364c0cdf04cf9354bf5392daea", "text": "2.5 AI\u95a2\u9023\u306e\u305d\u306e\u4ed6\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u3064\u3044\u3066\n- AI\u5b66\u7fd2\u95a2\u9023\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u4e0b\u8a18\n\n|\u30aa\u30d7\u30b7\u30e7\u30f3\u540d|\u5f15\u6570|\u8aac\u660e| train or predict|\n| ---- | ---- | ---- | ---- |\n| *--train_yaml* | \u5b66\u7fd2\u306b\u7528\u3044\u308byaml\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9|\u5b66\u7fd2\u306b\u7528\u3044\u308byaml\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3059\u308b\u3002|train|\n| *--predict_weight* | \u63a8\u8ad6\u306b\u7528\u3044\u308bweight\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9|\u63a8\u8ad6\u306b\u7528\u3044\u308bweight\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3059\u308b|predict|", "start_char_idx": 0, "end_char_idx": 242, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "06ef4019-abd1-439c-bb45-44f3e4971932": {"__data__": {"id_": "06ef4019-abd1-439c-bb45-44f3e4971932", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5eadb649-7007-4e92-9b26-dc8ca221b390", "node_type": null, "metadata": {}, "hash": "7dbfd019eaecc9e540d2bf366795bbb5d51e25be93a8b57f1f1a7d6ec3d60115"}}, "hash": "f923be6c28fcd222cd2742a4ca18823851a2fd4afb5ec91ea10cf3c3a9aa90eb", "text": "3. \u5f37\u5316\u5b66\u7fd2\u306b\u3064\u3044\u3066\n\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c91 \u3000\u304a\u3088\u3073\u3000\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c92 \u3067\u306f\u5f37\u5316\u5b66\u7fd2\u3068\u547c\u3070\u308c\u308b\u65b9\u6cd5\u3067\u30c6\u30c8\u30ea\u30b9\u3092\u30d7\u30ec\u30a4\u3059\u308b\u305f\u3081\u306e\u6700\u9069\u306a\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u5b66\u7fd2\u3057\u307e\u3059\u3002 \n\n!Screenshot", "start_char_idx": 0, "end_char_idx": 92, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c84d20ec-e28f-4f37-bd24-4c09ae107433": {"__data__": {"id_": "c84d20ec-e28f-4f37-bd24-4c09ae107433", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d26b7075-c33d-4ca5-89e8-dbaeb3ef92e2", "node_type": null, "metadata": {}, "hash": "b488d257a98fc6488eeb03ec9fd3d4541bff065567d5ff17339abf312ba15bbd"}, "3": {"node_id": "533efdc1-0693-470c-b252-baa900561f46", "node_type": null, "metadata": {}, "hash": "14f692b6c1dfa4215e9c16f3809a75f5ddd9bc9c9e8cf5e01c27815a773b6b11"}}, "hash": "55807e90ddf1a4863cbb334bf954f26d34abb8a2f0184d4c98840d935ed712f4", "text": "4. \u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u3064\u3044\u3066\n- \u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u306fyaml \u30d5\u30a1\u30a4\u30eb\u306b\u3088\u3063\u3066\u30cf\u30a4\u30d1\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\uff08\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u5b66\u7fd2\u3059\u308b\u305f\u3081\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\uff09\u3092\u8a2d\u5b9a\u3059\u308b\u3002\n- \u30b5\u30f3\u30d7\u30eb\u7528yaml \u30d5\u30a1\u30a4\u30eb\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u4e0b\u8a18\n\n\u5171\u901a\n\n|\u30d1\u30e9\u30e1\u30fc\u30bf\u540d|\u8aac\u660e|\u578b|train or predict|default|\n| ---- | ---- | ---- | ---- | ---- |\n|**common** |- |- |- |-|\n|ft_weight|\u30d5\u30a1\u30a4\u30f3\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0(\u521d\u671f\u5024\u3068\u3057\u3066\u5b66\u7fd2\u6e08\u307f\u306e\u91cd\u307f\u3092\u7528\u3044\u308b\u5b66\u7fd2)\u306b\u7528\u3044\u308b\u91cd\u307f\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9|str|train|None|\n|log_path| tensorboard\u306e\u30ed\u30b0\u51fa\u529b\u30d5\u30a9\u30eb\u30c0\u540d|str|\u5171\u901a|tensorboard|\n\n\nmodel\u95a2\u9023\n\n|\u30d1\u30e9\u30e1\u30fc\u30bf\u540d|\u8aac\u660e|\u578b|train or predict|default|\n| ---- | ---- | ---- | ---- | ---- |\n|**model** |- |- |- |-|\n|name|\u4f7f\u7528\u3059\u308bAI\u30e2\u30c7\u30eb\u540d|str|\u5171\u901a|DQN|\n|finetune|\u30d5\u30a1\u30a4\u30f3\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0|bool|train|False|\n|**state** |- |- |- |-|\n|dim|\u72b6\u614b\u306e\u6b21\u5143\u6570|int|\u5171\u901a|4|\n\n\n\u5b66\u7fd2\n\n|\u30d1\u30e9\u30e1\u30fc\u30bf\u540d|\u8aac\u660e|\u578b|train or predict|default|\n| ---- | ---- | ---- | ---- | ---- |\n|**train** |- |- |- |-|\n|optimizer|\u6700\u9069\u5316\u95a2\u6570(\u30b5\u30f3\u30d7\u30eb\u3067\u306fAdam\u307e\u305f\u306fSGD\u304c\u4f7f\u7528\u53ef\u80fd)|str|train|Adam|\n|lr|\u5b66\u7fd2\u7387|float|train|1.0e-3|\n|lr_gamma|\u66f4\u65b0\u7387(optimizer\u304cSGD\u306e\u6642\u306e\u307f\u4f7f\u7528)|float|train|0.1|\n|lr_momentum|\u30e2\u30fc\u30e1\u30f3\u30bf\u30e0(optimizer\u304cSGD\u306e\u6642\u306e\u307f\u4f7f\u7528)|float|train|0.99|\n|lr_step_size|\u30b9\u30c6\u30c3\u30d7\u30b5\u30a4\u30ba(optimizer\u304cSGD\u306e\u6642\u306e\u307f\u4f7f\u7528)|int|train|1000|\n|num_epoch|\u30a8\u30dd\u30c3\u30af\u6570(\u5b66\u7fd2\u3059\u308b\u30a4\u30c6\u30ec\u30fc\u30b7\u30e7\u30f3\u6570)|int|train|5000|\n|num_decay_epochs|\u03b5-greedy\u306e\u03b5\u3092\u6700\u5c0f\u306b\u3059\u308b\u30a8\u30dd\u30c3\u30af\u6570(\u3053\u3053\u304b\u3089\u30e9\u30f3\u30c0\u30e0\u6027\u3092\u4e0b\u3052\u308b\u3002)|int|train|3000|\n|initial_epsilon|\u03b5-greedy\u306e\u03b5\u306e\u521d\u671f\u5024|float|train|1.0|\n|final_epsilon|\u03b5-greedy\u306e\u03b5\u306e\u6700\u5c0f\u5024|float|train|1.0e-3|\n|batch_size|\u30d0\u30c3\u30c1\u30b5\u30a4\u30ba|int|train|512|\n|gamma|\u5272\u5f15\u7387|float|train|0.99|\n|max_penalty|\u30da\u30ca\u30eb\u30c6\u30a3\u306e\u6700\u5927\u5024|float|train|-1|\n|target_net|TargetNetwork\u306e\u4f7f\u7528\u30d5\u30e9\u30b0|bool|train|True|\n|target_copy_intarval|TargetNetwork\u306b\u30b3\u30d4\u30fc\u3059\u308b\u30a4\u30f3\u30bf\u30fc\u30d0\u30eb|int|train|500|\n|replay_memory_size|Experience replay\u306ereplay buffer\u306e\u30b5\u30a4\u30ba|int|train|30000|\n|double_dqn|Double DQN\u306e\u4f7f\u7528\u30d5\u30e9\u30b0|bool|train|True|\n|reward_clipping|Reward", "start_char_idx": 0, "end_char_idx": 1500, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "533efdc1-0693-470c-b252-baa900561f46": {"__data__": {"id_": "533efdc1-0693-470c-b252-baa900561f46", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d26b7075-c33d-4ca5-89e8-dbaeb3ef92e2", "node_type": null, "metadata": {}, "hash": "b488d257a98fc6488eeb03ec9fd3d4541bff065567d5ff17339abf312ba15bbd"}, "2": {"node_id": "c84d20ec-e28f-4f37-bd24-4c09ae107433", "node_type": null, "metadata": {}, "hash": "55807e90ddf1a4863cbb334bf954f26d34abb8a2f0184d4c98840d935ed712f4"}}, "hash": "14f692b6c1dfa4215e9c16f3809a75f5ddd9bc9c9e8cf5e01c27815a773b6b11", "text": "clipping\u306e\u4f7f\u7528\u30d5\u30e9\u30b0|bool|train|True|\n|prioritized_replay|Prioritized Experience Replay\u306e\u4f7f\u7528\u30d5\u30e9\u30b0|bool|train|True|\n|multi_step_learning|Multi step learning\u306e\u4f7f\u7528\u30d5\u30e9\u30b0|bool|train|True|\n|multi_step_num|Multi step learning\u306e\u30b9\u30c6\u30c3\u30d7\u6570|int|train|0,100,300,700,1300,-1300 \u3000\u5de6\u304b\u3089\u30000\u5217\u5d29\u3057,1\u5217\u5d29\u3057,2\u5217\u5d29\u3057,3\u5217\u5d29\u3057,4\u5217\u5d29\u3057,\u30b2\u30fc\u30e0\u30aa\u30fc\u30d0\u30fc)|\n|reward_list|\u70b9\u6570\u306b\u5fdc\u3058\u305f\u5831\u916c\u306e\u8a2d\u5b9a\u5024\uff080\u5217\u5d29\u3057,1\u5217\u5d29\u3057,2\u5217\u5d29\u3057,3\u5217\u5d29\u3057,4\u5217\u5d29\u3057,\u30b2\u30fc\u30e0\u30aa\u30fc\u30d0\u30fc\u306e\u9806\uff09|int|train|3|\n|reward_weight|\u70b9\u6570\u4ee5\u5916\u3067\u4e0e\u3048\u3089\u308c\u308b\u30da\u30ca\u30eb\u30c6\u30a3\u306e\u91cd\u307f\uff08\u96a3\u63a5\u3059\u308b\u884c\u3068\u306e\u9ad8\u3055\u5dee\u5206,\u6700\u5927\u306e\u9ad8\u3055,\u7a74\u306e\u6570 \u306e\u9806) 0\u4ee5\u4e0a\u306e\u5024\u304c\u5fc5\u9808|float|train|0.01,0.0,0.01 \uff08\u5de6\u304b\u3089\u3000\u96a3\u63a5\u3059\u308b\u884c\u3068\u306e\u9ad8\u3055\u5dee\u5206,\u6700\u5927\u306e\u9ad8\u3055,\u7a74\u306e\u6570 \uff09|", "start_char_idx": 1501, "end_char_idx": 1986, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3ede1386-094b-460e-b22d-c32b7e2e60b1": {"__data__": {"id_": "3ede1386-094b-460e-b22d-c32b7e2e60b1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f7935bb2-2cad-4d9f-98a5-1058e64a88a9", "node_type": null, "metadata": {}, "hash": "8bfdc6dca10afd0eb6be5444d1e0487f4c43761843f991eac5597619aad93dfc"}}, "hash": "1937692a4cc6ea8e8610b27207fb884709f8055ad3b0a5e1bffa982e446cba16", "text": "4.2 \u30d1\u30e9\u30e1\u30fc\u30bf\u8abf\u6574\u4f8b\uff08\u5f97\u305f\u3044\u52b9\u679c\u3068\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u95a2\u4fc2\u4f8b\uff09\n- \u4e0b\u8a18\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u8abf\u6574\u306e\u65b9\u91dd\u4f8b\u3092\u8a18\u8f09\u3059\u308b\n- \u305d\u308c\u305e\u308c\u306e\u52b9\u679c\u304c\u5e38\u306b\u5f97\u3089\u308c\u308b\u3068\u306f\u9650\u3089\u306a\u3044\u306e\u3067\u5b9f\u9a13\u3092\u7e70\u308a\u8fd4\u3057\u306a\u304c\u3089\u3001\u6700\u9069\u306a\u5024\u3092\u63a2\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002\n1. \u30d6\u30ed\u30c3\u30af\u3092\u7a4d\u307f\u4e0a\u3052\u308b\n - reward_list\u306e\uff13\u5217\u5d29\u3057\u3001\uff14\u5217\u5d29\u3057\u306e\u5024\u3092\u5927\u304d\u304f\u3059\u308b\n - reward_weight\u306e max_height\u3092\u5c0f\u3055\u304f\u3059\u308b\n\n2. \u30b2\u30fc\u30e0\u30aa\u30fc\u30d0\u306e\u767a\u751f\u3092\u9632\u3050\uff08\u30d6\u30ed\u30c3\u30af\u3092\u7a4d\u307f\u4e0a\u3052\u91cf\u3092\u6e1b\u3089\u3059\uff09\n - reward_list\u306e\uff13\u5217\u5d29\u3057\u3001\uff14\u5217\u5d29\u3057\u306e\u5024\u3092\u5c0f\u3055\u304f\u3059\u308b\n - reward_weight\u306e max_height\u3092\u5927\u304d\u304f\u3059\u308b\n\n3. \u904e\u53bb\u306e\u76e4\u9762\u304b\u3089\u306e\u5f71\u97ff\u3092\u5c0f\u3055\u304f\u3059\u308b\n - gamma(\u5272\u5f15\u7387)\u3092\u5927\u304d\u304f\u3059\u308b\u3002\n\n4. \u5b66\u7fd2\u3092\u5b89\u5b9a\u3055\u305b\u308b\n - reward_clipping \u3092 True\u306b\u3059\u308b\u3002\n - target_net \u3092 True\u306b\u3059\u308b\n - double_DQN \u3092 True\u306b\u3059\u308b\u3002\n\n5. \u5b66\u7fd2\u3092\u65e9\u304f\u3059\u308b\u3002\uff08\u5b66\u7fd2\u3059\u308b\u30e2\u30c7\u30eb\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6e1b\u3089\u3059\uff09\n - \u30e2\u30c7\u30eb\u306e\u30ec\u30a4\u30e4\u6570\u3001\u30ab\u30fc\u30cd\u30eb\u30b5\u30a4\u30ba\u3092\u6e1b\u3089\u3059\n - MLP\u3092\u4f7f\u7528\u3059\u308b\n\n6. \u5b66\u7fd2\u3092\u65e9\u304f\u3059\u308b\u3002\uff08\u52b9\u679c\u306e\u9ad8\u3044\u30c7\u30fc\u30bf\u3092\u52b9\u7387\u7684\u306b\u5b66\u7fd2\u306b\u4f7f\u7528\u3059\u308b\uff09\n - prioritized_replay \u3092 True\u306b\u3059\u308b\u3002\n - lr\uff08\u5b66\u7fd2\u7387\uff09\u3092\u5927\u304d\u304f\u3059\u308b\u3002\uff08\u5927\u304d\u3059\u304e\u308b\u3068\u53ce\u675f\u3057\u306a\u304f\u306a\u308b\u306e\u3067\u6ce8\u610f\uff09\n - batch_size\u3000\u3092\u5927\u304d\u304f\u3059\u308b \uff08\u5b66\u7fd2\u306b\u4f7f\u7528\u3059\u308b\u30e1\u30e2\u30ea\u91cf\u304c\u5927\u304d\u304f\u306a\u308b\u306e\u3067\u6ce8\u610f\uff09\n - replay_memory_size\u3000\uff08\u5b66\u7fd2\u306b\u4f7f\u7528\u3059\u308b\u30e1\u30e2\u30ea\u91cf\u304c\u5927\u304d\u304f\u306a\u308b\u306e\u3067\u6ce8\u610f\uff09", "start_char_idx": 0, "end_char_idx": 725, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f8e78a3b-853d-4dd6-96a8-8c757663e864": {"__data__": {"id_": "f8e78a3b-853d-4dd6-96a8-8c757663e864", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6e42d55e-f0a1-4b3d-96e7-26bfcf75a41e", "node_type": null, "metadata": {}, "hash": "881dc8b1ce168e0ee3da7e7a1df14810148c1639c436edfcc924adb927eb6603"}}, "hash": "c371d81356f9428d3bb3bc80d878b1930ad39b12c7e395bfd6624707aafc9f67", "text": "5.\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306e\u5b9f\u884c\n- \u30b5\u30f3\u30d7\u30eb\u7528\u306e\u30b3\u30fc\u30c9\u3092\u8a66\u3059\u305f\u3081\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u7528Jupyter-notebook../../game_manager/machine_learning/)\n\u3092\u7528\u610f\u3057\u3066\u3044\u308b\u306e\u3067\u3001\u30b3\u30fc\u30c9\u7406\u89e3\u306e\u305f\u3081\u306b\u304a\u4f7f\u3044\u304f\u3060\u3055\u3044\u3002\n\n- Jupyter-notebook\u304b\u4e0b\u8a18\u306e\u624b\u9806\u3067\u4f7f\u7528\u3067\u304d\u307e\u3059.\n- 1. Jupyter-notebook\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\n```\npip install jupyter\n```\n\n- 2. Jupyter-notebook\u306e\u8d77\u52d5\n```\njupyter notebook\n```\n\u4e0b\u8a18\u306e\u3088\u3046\u306a\u753b\u9762\u304c\u3001\u30d6\u30e9\u30a6\u30b6\u3067\u958b\u304b\u308c\u308b\u306e\u3067\ngame_manager > machine_learning > model > tutorial \n\u306e\u6e96\u5099\u9032\u307f\u3001***.ipynb \u30d5\u30a1\u30a4\u30eb\u3092\u958b\u3044\u3066\u304f\u3060\u3055\u3044\u3002\n!Screenshot\n\n- Jupyter-notebook \u306e\u30bb\u30eb\u306f\u3000Shit\uff0bEnter key \u3067\u5b9f\u884c\u3067\u304d\u307e\u3059\n\n- Jupyter-notebook \u306e\u4f7f\u3044\u65b9\u306f\u4e0b\u8a18\u306e\u30b5\u30a4\u30c8\u306a\u3069\u304c\u53c2\u8003\u306b\u306a\u308a\u307e\u3059\u3002\nhttps://qiita.com/takuyanin/items/8bf396e7b6b051670147\n\n- venv \u306a\u3069\u306e\u4eee\u60f3\u74b0\u5883\u3092\u7528\u3044\u3066\u3044\u308b\u5834\u5408\u306f\u4e0b\u8a18\u306e\u30b5\u30a4\u30c8\u306a\u3069\u304c\u53c2\u8003\u306b\u306a\u308a\u307e\u3059\u3002\n\u3000\u3000\nhttps://qiita.com/smiler5617/items/e0d9b3034d79457cc253", "start_char_idx": 0, "end_char_idx": 624, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "70a996da-13cc-4b16-816a-ef5e21359e11": {"__data__": {"id_": "70a996da-13cc-4b16-816a-ef5e21359e11", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "115941f4-c39b-44ad-b53e-075bc067bf4a", "node_type": null, "metadata": {}, "hash": "6330d76bcbbc9aea89f9fdaf9c3600a505e0969043ff9619a667fdf72374a396"}}, "hash": "b896a14ac1feebc1713e128fff1bcbc52d18bb1f88802732fc56893510a68d70", "text": "6. \u3055\u3089\u306a\u308b\u5f37\u5316\u306b\u5411\u3051\u3066\n- \u7b2c3\u56de\u3067\u306e cookie4869 \u306e\u5f37\u5316\u8cc7\u6599\u3092\u4e0b\u8a18\u3067\u5171\u6709\u3044\u305f\u3057\u307e\u3059\u3002\n\n!AI\u5f37\u5316\u8cc7\u6599", "start_char_idx": 0, "end_char_idx": 59, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "742d11db-0a2b-4ecf-bb72-3544da7c3f52": {"__data__": {"id_": "742d11db-0a2b-4ecf-bb72-3544da7c3f52", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d080c1cd-af48-43f0-a9cf-364a2a1452a4", "node_type": null, "metadata": {}, "hash": "012f650c07c965c7128682b5f7c789148ae57f8ade22096a396dcac570edcc07"}}, "hash": "e60dc689939ee222cffc47ff77c508528d1dd22614ba7811bb5a9e1412a5c28a", "text": "art\u306b\u3064\u3044\u3066\n\n\u672c\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3067\u306f\u30c6\u30c8\u30ea\u30b9\u30a2\u30fc\u30c8\u306e\u53d6\u308a\u7d44\u307f\u306b\u3064\u3044\u3066\u8a18\u8f09\u3059\u308b", "start_char_idx": 0, "end_char_idx": 38, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "342e8fc2-89cb-4b43-b0c9-5f505ec39829": {"__data__": {"id_": "342e8fc2-89cb-4b43-b0c9-5f505ec39829", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3a73aaa3-4282-4375-98f5-5566e21358a0", "node_type": null, "metadata": {}, "hash": "7ac5a2e1c5879b6c2bd74d8ad0581a41bf95b1256a31ce7a7c9565d3b111d9a2"}}, "hash": "28449c21a2b2c1e9e9fbe7738122a0ad38c7fa51f7dbd550496e15bc98b3cc61", "text": "\u6982\u8981\n\n\u901a\u5e38\u3001\u30c6\u30c8\u30ea\u30b9\u306f\u4e0a\u304b\u3089\u843d\u3061\u3066\u304f\u308b\u30d6\u30ed\u30c3\u30af\uff08\u30c6\u30c8\u30ea\u30df\u30ce\uff09\u3092\u64cd\u4f5c\u3057\u3066\u3001\u6a2a\u5217\u3092\u57cb\u3081\u3066\u6d88\u3057\u3066\u3044\u304f\u3088\u3046\u306b\u3057\u3066\u904a\u3076\u3002 \n\u4e00\u65b9\u3001\u30c6\u30c8\u30ea\u30b9\u30a2\u30fc\u30c8\u306f\u30d6\u30ed\u30c3\u30af\u3067\u30d5\u30a3\u30fc\u30eb\u30c9\u306b\u6a21\u69d8\u3092\u63cf\u304f\u3053\u3068\u3092\u76ee\u7684\u3068\u3059\u308b\u3002\uff08\u30d6\u30ed\u30c3\u30af\u3092\u6d88\u3059\u3053\u3068\u3092\u5fc5\u305a\u3057\u3082\u76ee\u7684\u3068\u3057\u306a\u3044\uff09 \n\u8a73\u3057\u304f\u306f\"\u30c6\u30c8\u30ea\u30b9\u30a2\u30fc\u30c8\"\u3067google\u691c\u7d22\u3092\u3057\u3066\u307f\u3066\u4e0b\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 151, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a50538d7-39ba-408d-b535-b62c3d5bb41b": {"__data__": {"id_": "a50538d7-39ba-408d-b535-b62c3d5bb41b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3b1cf835-65ab-47d4-9483-69be54ae419a", "node_type": null, "metadata": {}, "hash": "0b3701c1f0554ebe610074dd4a7fbc985132db34bc119a8288b65604490bd665"}}, "hash": "523daa000752621dd02c7bbe535117eb57fc497fd06633e184218b778093ba18", "text": "\u53d6\u308a\u7d44\u307f\u65b9\n\n1.\u307e\u305a\u3001\u30d6\u30ed\u30c3\u30af\u3067\u30d5\u30a3\u30fc\u30eb\u30c9\u306b\u63cf\u304d\u305f\u3044\u6a21\u69d8\u3092\u30a4\u30e1\u30fc\u30b8\u3059\u308b\u3002 \n2.\u6b21\u306b\u3001\u6a21\u69d8\u304c\u30c6\u30c8\u30ea\u30b9\u4e0a\u3067\u5b9f\u73fe\u53ef\u80fd\u304b\u3069\u3046\u304b\u3092\u691c\u8a0e\u3059\u308b\u3002\uff08\u4f5c\u56f3\u306a\u3069\u304c\u304a\u52e7\u3081\u3067\u3059\uff09 \n3.\u5b9f\u73fe\u53ef\u80fd\u3067\u3042\u308c\u3070\u30d6\u30ed\u30c3\u30af\u3092\u64cd\u4f5c\u3057\u3066\u6a21\u69d8\u3092\u4f5c\u6210\u3059\u308b\u3002\n \n3.\u306b\u3088\u308a\u30d6\u30ed\u30c3\u30af\u3092\u64cd\u4f5c\u3059\u308b\u5834\u5408\u3001\u5f8c\u8ff0\u3059\u308bconfig\u30d5\u30a1\u30a4\u30eb\u3092\u4f7f\u3044\u5404\u30d6\u30ed\u30c3\u30af\u306e\u8272\u3084\u51fa\u73fe\u9806\u5e8f(index)\u306a\u3069\u3092\u8abf\u6574\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u308b\u3002", "start_char_idx": 0, "end_char_idx": 183, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "18ca8e93-92d9-4eff-be6a-b6e49099476b": {"__data__": {"id_": "18ca8e93-92d9-4eff-be6a-b6e49099476b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b427ca59-425d-41f5-a205-da189a350d02", "node_type": null, "metadata": {}, "hash": "241f0ef77e9c284f21e5c7b7de30766c33bf86c3ca527cc93bd864b1e16de475"}}, "hash": "cd982df25458c8d1e172609c5fbb409ea7bf79d292ae2a8ce7c6f50bc44d2d67", "text": "\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\n\n`python start.py`\u5b9f\u884c\u6642\u306b\u4ee5\u4e0b\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u304c\u5b9f\u884c\u3055\u308c\u308b \nyoutube-link: tetris art sample \n\n`1:onigiri`\n\n```\npython start.py -l1 -m art --art_config_filepath config/art/art_config_sample1.json\n```\n\n!Screenshot\n\n`2:manji`\n\n```\npython start.py -l1 -m art --art_config_filepath config/art/art_config_sample2.json\n```\n\n!Screenshot\n\n`3:cartoon charactor`\n\n```\npython start.py -l1 -m art --art_config_filepath config/art/art_config_sample3.json\n```\n\n!Screenshot\n\nother sample \n\n| name | --art_config_filepath | note |\n| ---- | ---- | ---- |\n| 4:heart | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample4.json | - |\n| 5:hamburger_shop | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample5.json | - |\n| 6:parking | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample6.json | - |\n| 7:team rocket | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample7.json | - |\n| 8:happy_new_year_2023 | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample8.json | - |\n| 9:taka | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample9.json | - |\n| ... | - | - |\n\ncontribution\n\n| name | --art_config_filepath | thanks |\n| ---- | ---- | ---- |\n| mario | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample_tanaka_2.json | @tanaken |\n| ... | - | - |", "start_char_idx": 0, "end_char_idx": 1478, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "aa3dd74c-bf10-4fec-98e2-94661eeb3270": {"__data__": {"id_": "aa3dd74c-bf10-4fec-98e2-94661eeb3270", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b8d70b19-f260-4c43-9334-2671cddcf503", "node_type": null, "metadata": {}, "hash": "98f7a72f9d9c47a6fdb3eeae2961938cb8341b04a4b9c552f42bb17a079ec6ac"}}, "hash": "fd88b396bb1bc574f20b43abd3f56a70dd6a53620563ef95cc8d2eaf3b13233b", "text": "config\u30d5\u30a1\u30a4\u30eb\u306e\u8aac\u660e\n\n\u30c6\u30c8\u30ea\u30b9\u30a2\u30fc\u30c8\u3092\u4f5c\u6210\u3057\u6613\u304f\u3059\u308b\u305f\u3081\u306b\u5404\u30d6\u30ed\u30c3\u30af\u306e\u8272\u3084\u51fa\u73fe\u9806\u5e8f(index)\u306a\u3069\u3092config\u30d5\u30a1\u30a4\u30eb\u3067\u8abf\u6574\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u308b\u3002 \n\u4ee5\u4e0b\u306fconfig\u30d5\u30a1\u30a4\u30eb\u306e\u8aac\u660e\u3067\u3042\u308b\u3002 \n\nart\u7528config\u30d5\u30a1\u30a4\u30eb\u30b5\u30f3\u30d7\u30eb \nconfig/art/art_config_sample_default.json \n\n```\n{\n // \u5404\u30d6\u30ed\u30c3\u30af\u306e\u8272\u3092\u8abf\u6574\u3059\u308b\u3002\u8272\u306b\u3064\u3044\u3066\u306f\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u4e0b\u3055\u3044\u3002\n \"color\": {\n \"shapeI\": \"0xCC6666\",\n \"shapeL\": \"0x66CC66\",\n \"shapeJ\": \"0x6666CC\",\n \"shapeT\": \"0xCCCC66\",\n \"shapeO\": \"0xCC66CC\",\n \"shapeS\": \"0x66CCCC\",\n \"shapeZ\": \"0xDAAA00\"\n },\n // \u5404\u30d6\u30ed\u30c3\u30af\u306e\u51fa\u73fe\u9806\u5e8f(index)/direction/x/y\u3092\u8abf\u6574\u3059\u308b\u3002\n // \u884c\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067\u3042\u308a\u3001\u8ffd\u52a0\u3059\u308b\u3068\u8a18\u8f09\u306b\u5fdc\u3058\u305f\u30d6\u30ed\u30c3\u30af\u304c\u51fa\u73fe\u3059\u308b\u3002\n \"block_order\": [ \n [1,0,0,1],\n [2,0,0,1],\n [3,0,0,1],\n [4,0,0,1],\n [5,0,0,1],\n [6,0,0,1],\n [7,0,0,1]\n ]\n}\n```\n\n\u30d6\u30ed\u30c3\u30af\u306e\u8272\u306b\u3064\u3044\u3066\u306f\u4ee5\u4e0b\u306e\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u3092\u53c2\u8003\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n\n> \u8272\u306e\u540d\u524d\u3068\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u304c\u4e00\u76ee\u3067\u308f\u304b\u308bWEB\u8272\u898b\u672c \u539f\u8272\u5927\u8f9e\u5178 - HTML\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9 \n\n\u5404\u30d6\u30ed\u30c3\u30af\u306e\u51fa\u73fe\u9806\u5e8f(index)/direction/x/y\u306b\u3064\u3044\u3066\u306f\u4ee5\u4e0b\u3092\u53c2\u8003\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n\n> \u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u3064\u3044\u3066", "start_char_idx": 0, "end_char_idx": 804, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b5acf5c9-7372-4cad-936f-15baf28828d4": {"__data__": {"id_": "b5acf5c9-7372-4cad-936f-15baf28828d4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b8162150-85b3-4fbb-9da9-a5b54c5e7f88", "node_type": null, "metadata": {}, "hash": "c4caf941936c3146d61ce1c92cb4a76d88371ee8d948cc4d306bd275699c13f2"}}, "hash": "2068860e6279cdc790a0d773ecc69f0bdc6a9ae2e3f31fae23ef38701d360966", "text": "\u5b9f\u884c\u65b9\u6cd5\n\n\u4ee5\u4e0b\u306e\u3088\u3046\u306b`-m art`,`--art_config_filepath`\u306b\u3088\u308a\u30e2\u30fc\u30c9\u53ca\u3073config\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3002\n\n```", "start_char_idx": 0, "end_char_idx": 73, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ed8e6383-00ce-4f6e-9f26-c13c25f41b52": {"__data__": {"id_": "ed8e6383-00ce-4f6e-9f26-c13c25f41b52", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "179127c9-d49d-4e15-a6d1-d977f107853f", "node_type": null, "metadata": {}, "hash": "b24d3531c7c9b954841c494370230b370299e8c978c81ece8f6cc7da3098e951"}}, "hash": "280517e795fd667f442c014cb0e26adeb0caf689a3c0aba8e8ff65afb15c116a", "text": "\"art_config_sample.json\"\u3092\u6307\u5b9a\u3057\u3066\u5b9f\u884c\npython start.py -l1 -m art --art_config_filepath config/art/art_config_sample.json", "start_char_idx": 0, "end_char_idx": 114, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "be96e7c0-2f2d-44e9-bfc5-6deaf6a7f934": {"__data__": {"id_": "be96e7c0-2f2d-44e9-bfc5-6deaf6a7f934", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "cd5e317d-895c-4369-acaa-22c1f375024d", "node_type": null, "metadata": {}, "hash": "c3d9eec47d8fd6ffd968f2d4c04dfcb0b0d21ddc2e867cbe3329156c6953e88a"}}, "hash": "44d61049a75d406d963e00956e8f7afca4ba464b979f25d509c55abd9eb22cd5", "text": "\u843d\u4e0b\u901f\u5ea6\u3092\u65e9\u304f\u3059\u308b\u5834\u5408\u306f\"-d500\"\u3092\u52a0\u3048\u3066\u5b9f\u884c\npython start.py -l1 -m art --art_config_filepath config/art/art_config_sample.json -d500\n```\n\n\u81ea\u4f5c\u3057\u305fart\u7528config\u30d5\u30a1\u30a4\u30eb(`xxx.json`)\u3092\u4f5c\u6210\u3059\u308b\u5834\u5408\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30d5\u30a1\u30a4\u30eb\u30b3\u30d4\u30fc\u3057\u3066\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n\n```", "start_char_idx": 0, "end_char_idx": 189, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a483c1ee-77b4-48a7-be28-b9a92ec5fb65": {"__data__": {"id_": "a483c1ee-77b4-48a7-be28-b9a92ec5fb65", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "47c50451-9153-40cf-8a3e-2df754742596", "node_type": null, "metadata": {}, "hash": "5bce6842462076a5125189a6d46001d63f966f3dfbbdb0b150b6b5ba7f0ccaac"}}, "hash": "b16c439685f32156613e8b97e925112c860d09dfa55c9c0db0bfba57dd44e67d", "text": "\u4e8b\u524d\u306b\u30b5\u30f3\u30d7\u30eb\u3092\u30b3\u30d4\u30fc\u3057\u3066\u304a\u304f(art_config_sample.json --> xxx.json)\ncp config/art/art_config_sample.json config/art/xxx.json", "start_char_idx": 0, "end_char_idx": 109, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "33e9e11c-0356-4c36-9d24-127d9ec3f40d": {"__data__": {"id_": "33e9e11c-0356-4c36-9d24-127d9ec3f40d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dd1508fc-36b2-4ffe-877f-2e078e0e6d93", "node_type": null, "metadata": {}, "hash": "18e014e44336e882707823eaa7ed6b57306749fa63c589a1058bac2985a6659f"}}, "hash": "070b95546592927794f493e39ff749774918dd0f16863e30772eeacf7486a420", "text": "\u5b9f\u884c\npython start.py -l1 -m art --art_config_filepath config/art/xxx.json\n```", "start_char_idx": 0, "end_char_idx": 75, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9355f9f7-4d0f-4eb7-8c26-b117bc816adc": {"__data__": {"id_": "9355f9f7-4d0f-4eb7-8c26-b117bc816adc", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e59201dd-50da-41fb-bcf7-828be248612b", "node_type": null, "metadata": {}, "hash": "c400ac41ff6b8669eefb505828d06a462b47a03d7711149ecab4cbe87782ef78"}, "3": {"node_id": "11bb893b-06dd-46fa-9c3b-05d0561e330b", "node_type": null, "metadata": {}, "hash": "dd6f903576cf2641f9dcd7b0fa519b6b22dc83511dbd9401d52ce7acbef22ab1"}}, "hash": "108159e9e03b044159141b8ce411db1ee52558784d6e5a4929e6de1507e186b9", "text": "\u4f5c\u6210\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u306e\u4f8b\n\u6a2a10\u30de\u30b9\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u306b\u30c6\u30c8\u30ea\u30b9\u30df\u30ce\u3092\u7f6e\u3044\u305f\u5f8c\u306b\u6b8b\u308b\u30d6\u30ed\u30c3\u30af\u306e\u500b\u6570\u306f 4n-10m \u500b\u3067\u3059\u3002 \n\u305d\u306e\u305f\u3081\u30c6\u30c8\u30ea\u30b9\u30a2\u30fc\u30c8\u3092 4n-10m \u500b\u306e\u30c9\u30c3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b\u306b\u5206\u89e3\u3059\u308b\u3053\u3068\u3067\u697d\u306b\u4f5c\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \n\u6c4e\u7528\u6027\u304c\u9ad8\u3044\u306e\u306f2\u30c9\u30c3\u30c8\u6b8b\u3057\uff0832\u30d6\u30ed\u30c3\u30af\uff1an=8, m=3 \u3084 52\u30d6\u30ed\u30c3\u30af\uff1an=13, m=5 \u306a\u3069\uff09\u3002 \n\u30a2\u30fc\u30c8\u306b\u306f1\u884c\u3042\u305f\u308a\u6700\u59279\u500b\u306e\u30c9\u30c3\u30c8\u3092\u7f6e\u3051\u307e\u3059\u3002 \n\u305d\u306e\u305f\u3081\u57fa\u672c\u7684\u306b\u5404\u884c\u3092 2\\*4 + 1\u30c9\u30c3\u30c8\u306b\u5206\u89e3\u3057\u3001\u4f59\u3063\u305f1\u540c\u58eb\u30672\u30c9\u30c3\u30c8\u3092\u69cb\u6210\u3059\u308b\u3053\u3068\u3092\u76ee\u6307\u3057\u307e\u3059\u3002\n```\n2\u30c9\u30c3\u30c8\u3092\u540c\u3058\u884c\u306b\u6b8b\u3059\u5834\u5408\u3001\u305d\u306e\u7d44\u307f\u5408\u308f\u305b\u306f\u6050\u3089\u304f2205\u901a\u308a\uff08x\u5ea7\u6a1910*9\u00f72\u3001shape7*7\uff09\u3002 \n2\u30c9\u30c3\u30c8\u3092\u9055\u3046\u884c\u306b\u6b8b\u3059\u5834\u5408\u3001\u305d\u306e\u7d44\u307f\u5408\u308f\u305b\u306f\u6050\u3089\u304f4900\u901a\u308a\uff08x\u5ea7\u6a1910*10\u3001shape7*7\uff09\u3002 \n\u30a2\u30fc\u30c8\u3092\u69cb\u6210\u3059\u308b2\u30c9\u30c3\u30c8\u3092\u6b8b\u305b\u308b\u51fa\u73fe\u9806\u5e8f [index,direction,x,y] \u3092\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3059\u308c\u3070\u3001config\u4f5c\u6210\u306e\u81ea\u52d5\u5316\u304c\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059\u3002 \n```\n\n\n**Step1\uff1a\u4efb\u610f\u306e2\u30c9\u30c3\u30c8\u3092\u6b8b\u3059\u51fa\u73fe\u9806\u5e8f\u3092\u307e\u3068\u3081\u308b** \n`art_lib.py`\uff1a\n> https://github.com/mattshamrock/tetris/blob/art/art_lib.py \nxs_0000 \u2190 \u540c\u3058\u884c\u306b\u6b8b\u3059\u5834\u5408\u3002\u4f8b\u3048\u3070 'xs_5294'\u306a\u3089\u3001x=5\u306bshapeindex=2\uff08L\u30df\u30ce\uff09\u3001x=9\u306bshapeindex=4\uff08T\u30df\u30ce\uff09\u304c\u6b8b\u308b\u7f6e\u304d\u65b9\u3002\nxs_00_00 \u2190 \u9055\u3046\u884c\u306b\u6b8b\u3059\u5834\u5408\u3002\u524d\u534a\u304c1\u884c\u76ee\u306ex\u5ea7\u6a19\u3068shapeindex\u3001\u5f8c\u534a\u304c2\u884c\u76ee\u306ex\u5ea7\u6a19\u3068shapeindex\u3002 \n\u672a\u767a\u898b\u306e\u5834\u5408\u306f False \u3068\u8a18\u8f09 \n\n```\nart_lib.py\u306e\u73fe\u72b6\uff1a \n\u30102023/3/E\u6642\u70b9\u3011 \n \u30fb'xs_0000'\u306e\u3046\u306132\u30d6\u30ed\u30c3\u30af\u4f7f\u7528\u3067\u5b9f\u73fe\u53ef\u80fd\u306a\u3082\u306e\uff1a\u5168\u63a2\u7d22\u6e08\u307f; \u5f8c\u8ff0 \n \u30fb'xs_0000'\u306e\u3046\u306152\u30d6\u30ed\u30c3\u30af\u4ee5\u4e0a\u4f7f\u7528\u3067\u5b9f\u73fe\u53ef\u80fd\u306a\u3082\u306e\uff1a\u624b\u4f5c\u696d\u3002\u4e0d\u5b8c\u5168 \n \u30fb'xs_00_00'\u306e\u3046\u3061\u898b\u3064\u3051\u305f\u3082\u306e\uff1a\u624b\u4f5c\u696d\u3002\u3068\u3066\u3082\u4e0d\u5b8c\u5168 \n```\n\n`art_lib.py`\u7528\u306e\u63a2\u7d22\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\uff1a\n>", "start_char_idx": 0, "end_char_idx": 920, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "11bb893b-06dd-46fa-9c3b-05d0561e330b": {"__data__": {"id_": "11bb893b-06dd-46fa-9c3b-05d0561e330b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e59201dd-50da-41fb-bcf7-828be248612b", "node_type": null, "metadata": {}, "hash": "c400ac41ff6b8669eefb505828d06a462b47a03d7711149ecab4cbe87782ef78"}, "2": {"node_id": "9355f9f7-4d0f-4eb7-8c26-b117bc816adc", "node_type": null, "metadata": {}, "hash": "108159e9e03b044159141b8ce411db1ee52558784d6e5a4929e6de1507e186b9"}, "3": {"node_id": "f53eefe8-eb19-4cd3-94db-225026bd31af", "node_type": null, "metadata": {}, "hash": "455d244f15adf7663d8db3c336ec36bd76de7d408b498b5062a77c925467c4c1"}}, "hash": "dd6f903576cf2641f9dcd7b0fa519b6b22dc83511dbd9401d52ce7acbef22ab1", "text": "https://github.com/mattshamrock/tetris/blob/art/artlib_search_32.py \n\u5404xs_0000\u306b\u3064\u3044\u3066\u300132\u30c9\u30c3\u30c8\uff088\u30df\u30ce\uff09\u306e\u51fa\u73fe\u9806\u5e8f\u3092\u30b7\u30df\u30e5\u30ec\u30fc\u30c8\u3057\u3001\u6307\u5b9a\u306e2\u30c9\u30c3\u30c8\u306e\u307f\u304c\u6b8b\u308b\u304b\u3092\u5224\u5b9a\u3057\u307e\u3059\u3002 \n\u679d\u5207\u308a\u3092\u3059\u308b\u3053\u3068\u3067\u63a2\u7d22\u6642\u9593\u3092\u6e1b\u3089\u305d\u3046\u3068\u3057\u3066\u3044\u307e\u3059\u3002\u624b\u5143PC\u3067\u306f36\u6642\u9593\u3067\u534a\u5206\u306e\u7d041200\u901a\u308a\u304c\u51fa\u529b\u3067\u304d\u307e\u3059\u3002 \n\u5f8c\u8ff0\u306e\u300c\u53cd\u8ee2\u300d\u3068\u7d44\u307f\u5408\u308f\u305b\u308b\u3068\u7d0436\u6642\u9593\u3067\u5b8c\u4e86\u3057\u307e\u3059\u3002\n\n`art_lib.py`\u7528\u306e\u53cd\u8ee2\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\uff1a\n> https://github.com/mattshamrock/tetris/blob/art/artlib_reverse.py \n\u6a2a10\u30de\u30b9\u306e\u30c6\u30c8\u30ea\u30b9\u306f\u3059\u3079\u3066\u306e\u914d\u7f6e\u3092\u5de6\u53f3\u53cd\u8ee2\u3055\u305b\u3066\u3082\u6210\u308a\u7acb\u3061\u307e\u3059\u3002 \n\u63a2\u7d22\u3067art_lib.py\u3092\u57cb\u3081\u3066\u3044\u304f\u969b\u3001\u7d50\u679c\u304c\u51fa\u305f\u51fa\u73fe\u9806\u5e8f\u3092\u53cd\u8ee2\u3055\u305b\u308c\u3070\u63a2\u7d22\u306e\u307f\u3067\u57cb\u3081\u308b\u7d04\u534a\u5206\u306e\u6642\u9593\u3067\u5b8c\u4e86\u3067\u304d\u308b\u306f\u305a\u3067\u3059\u3002 \n\u6ce8\u610f\u2026\u57fa\u6e96\u70b9\u30ba\u30ec\u306e\u8abf\u6574\u304c\u5fc5\u8981\u306a\u7d44\u307f\u5408\u308f\u305b\u304c\u5b58\u5728\u3057\u307e\u3059\u3002\uff08\u4f8b\uff1ashape:S\u306e\u5f62\u72b6:1 \u306e\u53cd\u8ee2\u3068shape:Z\u306e\u5f62\u72b6:1 \u306f\u57fa\u6e96\u70b9\u304c1\u30de\u30b9\u9055\u3046\uff09 \n\n\n \n \n**Step2\uff1a\u30c9\u30c3\u30c8\u30a2\u30fc\u30c8\u3092\u63cf\u304f** \n\u73fe\u72b6\u306f\u624b\u4f5c\u696d\u3067\u3059 \n\u3000\u3000\n\n\n**Step3\uff1a\u30c9\u30c3\u30c8\u30a2\u30fc\u30c8\u3092\u6570\u5024\u306b\u5909\u63db\u3059\u308b** \n\u30d6\u30ed\u30c3\u30af\u306eindex\u5024\u306b\u5909\u63db\u3057\u307e\u3059\u3002 \nStep4\u306e\u5165\u529b\u306b\u5408\u308f\u305b\u3066\u6587\u5b57\u6570=10\u306estr\u306b\u5909\u63db\u3057\u3066\u3044\u307e\u3059\u3002 \n\u7a7a\u767d=0\u3067\u3059\u3002 \n\u73fe\u72b6\u306fexcel\u3067\u4f5c\u696d\u3057\u3066\u3044\u307e\u3059 \n\u3000\u3000\n\n**Step4\uff1aart_lib.py\u306b\u3042\u308b\u5b9f\u73fe\u53ef\u80fd\u306a2\u30c9\u30c3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b\u3092\u63a2\u7d22\u3059\u308b** \n`art_lib.py`\u306e\u7d44\u307f\u5408\u308f\u305b\u63a2\u7d22\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\uff1a\n> https://github.com/mattshamrock/tetris/blob/art/create_art.py \n10\u500b\u306eindex\u5024\u30922\u30c9\u30c3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b\u306b\u5206\u89e3\u3057\u307e\u3059\u3002 \nart_lib.py\u3067\u306f'xs_0000'\u306e\u51fa\u73fe\u9806\u5e8f\u304c\u672a\u767a\u898b\u306e\u5834\u5408\u306bFalse\u3092\u8fd4\u3059\u3053\u3068\u3092\u5229\u7528\u3057\u3066\u3001\u5b9f\u73fe\u53ef\u80fd\u306a2\u30c9\u30c3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b\u3092\u63a2\u7d22\u3067\u304d\u307e\u3059\u3002 ", "start_char_idx": 921, "end_char_idx": 1819, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f53eefe8-eb19-4cd3-94db-225026bd31af": {"__data__": {"id_": "f53eefe8-eb19-4cd3-94db-225026bd31af", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e59201dd-50da-41fb-bcf7-828be248612b", "node_type": null, "metadata": {}, "hash": "c400ac41ff6b8669eefb505828d06a462b47a03d7711149ecab4cbe87782ef78"}, "2": {"node_id": "11bb893b-06dd-46fa-9c3b-05d0561e330b", "node_type": null, "metadata": {}, "hash": "dd6f903576cf2641f9dcd7b0fa519b6b22dc83511dbd9401d52ce7acbef22ab1"}}, "hash": "455d244f15adf7663d8db3c336ec36bd76de7d408b498b5062a77c925467c4c1", "text": " \n1\u884c\u306b\u5947\u6570\u500b\u306e\u30c9\u30c3\u30c8\uff08\u7a7a\u767d\u3092\u9664\u304f\uff09\u304c\u3042\u308b\u5834\u5408\u3001\u4f59\u3063\u305f\u30c9\u30c3\u30c8\u306ex\u5ea7\u6a19\u3068index\u5024\u3082\u8fd4\u3057\u307e\u3059\u3002\u3053\u308c\u304c'xs_00_00'\u306e\u524d\u534a\u304b\u5f8c\u534a\u306e\u3044\u305a\u308c\u304b\u306b\u306a\u308a\u307e\u3059\u3002\n \n\u3000 \n \n**Step5\uff1aStep4\u306e\u7d50\u679c\u3092\u8abf\u6574\u3059\u308b** \n\u30fb'xs_00_00' \u306f\u4f59\u308a\u3068\u3057\u3066\u8fd4\u3055\u308c\u305f\u60c5\u5831\u3092\u57fa\u306b\u81ea\u529b\u3067\u767a\u898b\u3057\u3001`art_lib.py`\u306b\u8ffd\u52a0\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 \n\u30fb\u4f59\u308a\u3068\u3057\u3066\u8fd4\u308b\u30c9\u30c3\u30c8\u306e\u307f\u3067'xs_00_00'\u304c\u69cb\u6210\u3055\u308c\u308b\u3053\u3068\u3092\u524d\u63d0\u306b\u3057\u3066\u3044\u307e\u3059\u3002\u305d\u306e\u305f\u3081\u5404\u884c\u306e\u30c9\u30c3\u30c8\u6570\uff08\u7a7a\u767d\u3092\u9664\u304f\uff09\u306e\u5076\u5947\u306b\u3088\u3063\u3066\u306f\u6210\u7acb\u3057\u307e\u305b\u3093\u3002 \n\u30fb'xs_0000' \u306b\u304a\u3044\u3066\u3001\u3059\u3050\u4e0b\u306e\u30de\u30b9\u304c\u7a7a\u767d\u306e\u5834\u5408\u306b\u3001\u305d\u3053\u306b\u30cf\u30de\u308b\u5f62\u3067\u610f\u56f3\u3057\u306a\u3044\u7d50\u679c\u306b\u306a\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002\u5de6\u53f3\u306e\u30de\u30b9\u306b\u30d6\u30ed\u30c3\u30af\u304c\u3042\u308c\u3070\u5f15\u3063\u639b\u304b\u308b\u305f\u3081\u56de\u907f\u53ef\u80fd\u306a\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u3001\u305d\u306e\u5834\u5408\u306f\u9806\u756a\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u3067\u89e3\u6c7a\u3067\u304d\u307e\u3059\u3002 \n\u3000\u3000\n\n**Step6\uff1a2\u30c9\u30c3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b\u3092config\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u73fe\u9806\u5e8f\u306b\u5909\u63db\u3059\u308b** \nStep4-5\u3067\u5f97\u3089\u308c\u305f 'xs_0000' \u3068 'xs_00_00' \u306e\u7f85\u5217\u3092`art_lib.py`\u306e`artdict`\u306e\u30ad\u30fc\u3068\u3057\u3066\u5229\u7528\u3057\u3001\u51fa\u529b\u3057\u307e\u3059\u3002 \n\u73fe\u72b6\u306f\u4f59\u8a08\u306a\u4e8c\u91cd\u62ec\u5f27\u3000[[]] \u304c\u5165\u3063\u3066\u304d\u3066\u3057\u307e\u3044\u307e\u3059\u3002\u7f6e\u63db\u7b49\u3067\u53d6\u308a\u9664\u304d\u307e\u3059\u3002 \n\u5404\u51fa\u529b\u306e\u6700\u5f8c\u306e\u30ab\u30f3\u30de , \u304c\u4e0d\u8db3\u3057\u3066\u3044\u307e\u3059\u3002\u4e8c\u91cd\u62ec\u5f27\u3068\u5408\u308f\u305b\u3066\u7f6e\u63db\u3067\u5bfe\u5fdc\u3057\u307e\u3059\u3002 \n\u3000\u3000\n\n**Step7\uff1aconfig\u30d5\u30a1\u30a4\u30eb\u306b\u8ee2\u8a18\u3059\u308b** \n\u8ee2\u8a18\u3059\u308c\u3070OK\u3002 \n\u8272\u306e\u8abf\u6574\u306f\u624b\u4f5c\u696d\u3067\u3059\u3002 \n\u3000\u3000\n\n**\u4eca\u5f8c\u306b\u5411\u3051\u3066\uff1a** \n\u30fb`art_lib.py`\u306e\u629c\u3051\u3066\u3044\u308b\u90e8\u5206\u3092\u57cb\u3081\u308b\u300252\u30d6\u30ed\u30c3\u30af\uff0813\u624b\uff09\u4ee5\u4e0a\u3092\u52b9\u7387\u7684\u306b\u63a2\u7d22\u3059\u308b\u3002 \n\u30fb`art_lib.py`\u306e\u629c\u3051\u3066\u3044\u308b\u90e8\u5206\u3092\u57cb\u3081\u308b\u30022\u884c\u306b\u5206\u304b\u308c\u308b\u30d6\u30ed\u30c3\u30af\u3092\u52b9\u7387\u7684\u306b\u63a2\u7d22\u3059\u308b\u300232\u30de\u30b9\u30928\u3064\u306b\u5206\u5272\u3057\u305f\u7d50\u679c\u304c\u30c6\u30c8\u30ea\u30b9\u30df\u30ce\u306e\u5f62\u306b\u306a\u308b\u304b\u5224\u5b9a\u3059\u308b\u3001\u3068\u3044\u3046\u63a2\u3057\u65b9\u304c\u826f\u3044\u6c17\u304c\u3059\u308b\u3002 \n\u30fbStep5\u306e\u8abf\u6574\u3092\u81ea\u52d5\u5316\u3059\u308b\u3002 \n\u30fbStep2\u3092\u81ea\u52d5\u5316\u3059\u308b\uff08\u753b\u50cf\u751f\u6210AI\u7684\u306a\uff09", "start_char_idx": 1819, "end_char_idx": 2666, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b9fdbcb9-5edc-43ae-8050-dd72079dac26": {"__data__": {"id_": "b9fdbcb9-5edc-43ae-8050-dd72079dac26", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "cebfd4cd-b7a7-4e2c-ada9-78695d54f04a", "node_type": null, "metadata": {}, "hash": "4f191e64dbf81c12453e4cb81ff389def46c83813b1f2cb5a51551559b6956ef"}}, "hash": "87d4604660f5cac48c8cf36e1939b9184780d0bdbe41c94369a4570fc8c562bc", "text": "\u53c2\u8003\n\u300c\u30c6\u30c8\u30ea\u30b9\u300d\u306e\u65ac\u65b0\u3059\u304e\u308b\u904a\u3073\u65b9\u304c\u8a71\u984c\u306b\u3002\u7a4d\u307f\u4e0a\u3052\u305f\u30d6\u30ed\u30c3\u30af\u3067\u30de\u30ea\u30aa\u3084\u30eb\u30a4\u30fc\u30b8\u3092\u518d\u73fe!? \n\u8272\u306e\u540d\u524d\u3068\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9\u304c\u4e00\u76ee\u3067\u308f\u304b\u308bWEB\u8272\u898b\u672c \u539f\u8272\u5927\u8f9e\u5178 - HTML\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9 \nyoutube-link: tetris art sample", "start_char_idx": 0, "end_char_idx": 126, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8bb5fe02-f66d-4302-85cd-4c0c956bf6c0": {"__data__": {"id_": "8bb5fe02-f66d-4302-85cd-4c0c956bf6c0", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ca65780f-bff0-4525-98af-59ce39554b0f", "node_type": null, "metadata": {}, "hash": "508db7480e2f3f91a5d3ea8b5be3c889160e8be6cd0bf959753158c6f604e05b"}}, "hash": "41f02c59f86f79b7c2116cab90d5ae43cced566f8310b9204818c38d561566ef", "text": "\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u3064\u3044\u3066\n\n\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u306f\u3001\u30dc\u30fc\u30c9\u60c5\u5831\u304b\u3089\u30d6\u30ed\u30c3\u30af\u306e\u6b21\u306e\u52d5\u4f5c\u3092\u6c7a\u5b9a\u3057\u307e\u3059\u3002\n\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306e`def GetNextMove`\u95a2\u6570\u306b\u3066\u3001\u30dc\u30fc\u30c9\u60c5\u5831`GameStatus`\u3092\u5165\u529b\u3068\u3057\u3066\u53d7\u3051\u53d6\u308a\u3001\u6b21\u306e\u52d5\u4f5c\u6c7a\u5b9a\u7528\u306e\u30c7\u30fc\u30bf`nextMove`\u3092\u8fd4\u3059\u4e8b\u3067\u30d6\u30ed\u30c3\u30af\u304c\u52d5\u304f\u4ed5\u69d8\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002\n\n\u4ee5\u4e0b\u306f\u3001\u30dc\u30fc\u30c9\u60c5\u5831`GameStatus`\u3001\u6b21\u306e\u52d5\u4f5c\u6c7a\u5b9a\u7528\u306e\u30c7\u30fc\u30bf`nextMove`\u306b\u3064\u3044\u3066\u8a18\u8f09\u3057\u307e\u3059\u3002", "start_char_idx": 0, "end_char_idx": 212, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9b546d02-7c84-40d5-aaae-19fad4f818b9": {"__data__": {"id_": "9b546d02-7c84-40d5-aaae-19fad4f818b9", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c3f31aa3-3a65-4566-810f-304800b43281", "node_type": null, "metadata": {}, "hash": "6b3dd27be4c210aa3f1f143be6734678413ad9bf45fe8fdf4272bac657ef948d"}}, "hash": "bd90ff6b8d83339ced524d0ceb997bb9ca67cddd59238d8bb5ecc833cfca807e", "text": "\u30dc\u30fc\u30c9\u60c5\u5831\n\u30dc\u30fc\u30c9\u60c5\u5831\u306b\u306f\u4ee5\u4e0b\u304c\u542b\u307e\u308c\u307e\u3059\u3002\n\u8a73\u7d30\u306f\u3001`GameStatus`\u30c7\u30fc\u30bf\u69cb\u9020\u3084\u3001\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306bGameStatus\u3092\u30ed\u30b0\u51fa\u529b\u3059\u308b\u3053\u3068\u3067\u78ba\u8a8d\u53ef\u80fd\u3067\u3059\u3002\n\n```\n* field_info : \u30d5\u30a3\u30fc\u30eb\u30c9\u60c5\u5831\n* block_info : \u30d6\u30ed\u30c3\u30af\u60c5\u5831\n* judge_info : \u5be9\u5224\u60c5\u5831\n* debug_info : \u30c7\u30d0\u30c3\u30b0\u60c5\u5831\n```", "start_char_idx": 0, "end_char_idx": 180, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b689de3d-49d0-4f72-b07a-a561248ccc58": {"__data__": {"id_": "b689de3d-49d0-4f72-b07a-a561248ccc58", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "500bd4a9-9d6c-46d1-a7ba-68c367c65b19", "node_type": null, "metadata": {}, "hash": "006357ba9d44c8bc896c2fbea77170ae63079a63524bc04573e66cc08366ea06"}}, "hash": "a111a124710372db7c10aa64d860d44e4eca5892c35802311a3a566f46308a1c", "text": "\u30d5\u30a3\u30fc\u30eb\u30c9\u60c5\u5831", "start_char_idx": 0, "end_char_idx": 7, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "427e9668-cbaf-457e-ab76-98b61061e9b9": {"__data__": {"id_": "427e9668-cbaf-457e-ab76-98b61061e9b9", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4699fa1d-4331-4faa-9df4-dd354731616d", "node_type": null, "metadata": {}, "hash": "db34f03b3b395a8f50c539e77ad5b4cc6317f350066bd8c6691ab29b2ccb0ef8"}}, "hash": "8e842aa62012f9c9b229ce84f2338d4466b8e1bfbf9458d5d6282d385b633acc", "text": "\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u5b9a\u7fa9\n\u30d5\u30a3\u30fc\u30eb\u30c9\u306f\u6a2a\u5e4510\u00d7\u9ad8\u305522\u30d6\u30ed\u30c3\u30af\u5206\u306e\u5927\u304d\u3055\u3067\u3059\u3002\n\u5ea7\u6a19\u7cfb\u306f\u3001\u5de6\u4e0a\u3092\u539f\u70b9(0,0)\u3068\u3057\u3066\u3001x\u8ef8\u306f\u53f3\u5074\u3001y\u8ef8\u306f\u4e0b\u5074\u3092\u6b63\u306e\u65b9\u5411\u3068\u3057\u3066\u5b9a\u7fa9\u3057\u3066\u3044\u307e\u3059\u3002\n\n!Screenshot\n\n\u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u30c7\u30fc\u30bf\u306f\u3001\u4e00\u6b21\u5143\u914d\u5217\u3068\u3057\u3066\u5b9a\u7fa9\u3057\u3066\u3044\u307e\u3059\u3002\n\u5ea7\u6a19(x, y)\u306e\u30c7\u30fc\u30bf\u306f\u3001\u4e00\u6b21\u5143\u914d\u5217\u306e[x + y * \u6a2a\u5e45]\u756a\u76ee\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3053\u3068\u3067\u53d6\u5f97\u53ef\u80fd\u3067\u3059\u3002\n\n| | \u30d5\u30a3\u30fc\u30eb\u30c9 | \u4e00\u6b21\u5143\u914d\u5217 |\n| --- | --- | --- |\n| \u30c7\u30fc\u30bf | !Screenshot | !Screenshot |", "start_char_idx": 0, "end_char_idx": 262, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "308f55fd-5f56-42b0-b473-9a57716dced2": {"__data__": {"id_": "308f55fd-5f56-42b0-b473-9a57716dced2", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d17cb98f-78b0-4313-add5-4f6024cc023a", "node_type": null, "metadata": {}, "hash": "c2d78e5ea966f8b5f0d8774fd677d1fe2c1fbc9711f83ec2ca56e8343c061252"}}, "hash": "ebea327d2061c05b5ad67c188cad198864c1c8638dda971adc5eb09a79cda953", "text": "\u30d5\u30a3\u30fc\u30eb\u30c9\u60c5\u5831\u306b\u683c\u7d0d\u3055\u308c\u3066\u3044\u308b\u30c7\u30fc\u30bf\n\n\u4e0a\u8a18\u306e\u4e00\u6b21\u5143\u914d\u5217\u306e\u5404\u5ea7\u6a19\u306b\u30d6\u30ed\u30c3\u30af\u304c\u6709\u308b\u304b\u7121\u3044\u304b\u3092\u7ba1\u7406\u3057\u3066\u3044\u307e\u3059\u3002\n\n```\n* `0\u4ee5\u5916` : \u30d6\u30ed\u30c3\u30af\u6709\u308a\n* `0` : \u30d6\u30ed\u30c3\u30af\u7121\u3057\n```\n\n\u30d6\u30ed\u30c3\u30af\u304c\u6709\u308b\u5834\u5408\u306f\u3001\u5404\u30d6\u30ed\u30c3\u30af\u306eIndex\u5024\u3092\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059\u3002\nIndex\u5024\u306f\u30d6\u30ed\u30c3\u30af\u60c5\u5831\u3092\u53c2\u7167\u4e0b\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 149, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f50169a5-63d6-41e0-8f71-5b49f72769c9": {"__data__": {"id_": "f50169a5-63d6-41e0-8f71-5b49f72769c9", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "05a2ef2d-d2ac-4130-bdf8-e36c5df8abec", "node_type": null, "metadata": {}, "hash": "683f3e800ede901bd0e8d346c931b9136685a97be06e15241e3fd4202ae2de5b"}}, "hash": "10232c09d1dbd5d36aef8fb02aae700ca00a7468f2ed2ce8718756ece2ef1ed8", "text": "\u30d6\u30ed\u30c3\u30af\u60c5\u5831", "start_char_idx": 0, "end_char_idx": 6, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f83a5752-4020-41c1-bc2c-9d74e407fdfc": {"__data__": {"id_": "f83a5752-4020-41c1-bc2c-9d74e407fdfc", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dfe8ba87-12c6-4352-881e-007366b9329a", "node_type": null, "metadata": {}, "hash": "2fd77e813340dfeb6868f6785e49fb498a163aa5110044dd40ab5fa02df56e8d"}}, "hash": "bb96f55bb8c14ff856e3d0c7b2c0853a1f5a03a9a21d33914f1e11efc061f0be", "text": "\u30d6\u30ed\u30c3\u30af\u306e\u5b9a\u7fa9\n\u30d6\u30ed\u30c3\u30af\u306f\uff17\u7a2e\u985e\u3042\u308a\u3001Index\u5024\u3068\u521d\u671f\u5f62\u72b6\u3092\u4ee5\u4e0b\u306e\u901a\u308a\u5b9a\u7fa9\u3057\u3066\u3044\u307e\u3059\u3002\n\u6a2a\u79fb\u52d5\u3068\u56de\u8ee2\u304c\u53ef\u80fd\u3067\u3059\u3002\n\u56de\u8ee2\u306f\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2\u3057\u307e\u3059\u3002\u30d6\u30ed\u30c3\u30af\u306b\u3088\u3063\u3066\uff11\u5468\u306e\u56de\u8ee2\u306b\u5fc5\u8981\u306a\u56de\u6570\u304c\u7570\u306a\u308a\u307e\u3059\u3002\n\n| | ShapeI | ShapeL | ShapeJ | ShapeT | ShapeO | ShapeS | ShapeZ |\n| --- | --- | --- | --- | --- | --- | --- | --- | \n| index\u5024 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | \n| \u521d\u671f\u5f62\u72b6 | !Screenshot | !Screenshot | !Screenshot | !Screenshot | !Screenshot | !Screenshot | !Screenshot | \n| \uff11\u5468\u306e\u56de\u8ee2\u306b\u5fc5\u8981\u306a\u56de\u6570 | 2 | 4 | 4 | 4 | 1 | 2 | 2 |", "start_char_idx": 0, "end_char_idx": 427, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e70c7fff-b77c-46dd-9009-dc930ae0692d": {"__data__": {"id_": "e70c7fff-b77c-46dd-9009-dc930ae0692d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "22419697-3d51-4f4b-b3c5-517fc93b85eb", "node_type": null, "metadata": {}, "hash": "8cd23fc8edaa42527444fb070d7a7c2a46024eaa14a03b11805de4d12cc38a04"}, "3": {"node_id": "f1b73661-889e-4a8e-b150-42821788ceb9", "node_type": null, "metadata": {}, "hash": "b29939d2661b1dea098ce776b9291e31e0b326b40dc398b7d575f30d97c54fb5"}}, "hash": "ad4ffaad2d9da9c6e5d60bd5a33de5f66c8e8b6f0dd7737613dffd829f8b6ec2", "text": "\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9\n\u5404\u30d6\u30ed\u30c3\u30af\u306b\u306f\u64cd\u4f5c\u306e\u57fa\u6e96\u3068\u306a\u308b\u70b9\uff08\u4ee5\u4e0b\u3001\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9\uff09\u304c\u3042\u308a\u307e\u3059\u3002\n\u307e\u305f\u3001\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9\u4ee5\u5916\u306e\u5ea7\u6a19\u3082\u53d6\u5f97\u53ef\u80fd\u3067\u3059\u3002\u57fa\u6e96\u70b9(x,y)\u3068\u305d\u306e\u5468\u56f2\u306e\u5ea7\u6a19\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u8868\u3057\u307e\u3059\u3002\n\n!Screenshot\n\n\u30d6\u30ed\u30c3\u30af\u6bce\u306b\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9(x,y)\u306f\u7570\u306a\u308a\u307e\u3059\u3002\u5404\u30d6\u30ed\u30c3\u30af\u306e\u5f62\u72b6\u6bce\u306e\u57fa\u6e96\u70b9\u3068\u305d\u308c\u4ee5\u5916\u306e\u5ea7\u6a19\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3002\n\n| | ShapeI | ShapeL | ShapeJ | ShapeT | ShapeO | ShapeS | ShapeZ |\n| --- | --- | --- | --- | --- | --- | --- | --- | \n| \u5f62\u72b60\u306b\u304a\u3051\u308b\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9(x,y) | !Screenshot | !Screenshot | !Screenshot | !Screenshot | !Screenshot | !Screenshot | !Screenshot | \n| \u57fa\u6e96\u70b9\u3068\u305d\u308c\u4ee5\u5916\u306e\u5ea7\u6a19 | (x,y-1),(x,y),(x,y+1),(x,y+2) | (x,y-1),(x,y),(x,y+1),(x+1,y+1) | (x,y-1),(x,y),(x,y+1),(x-1,y+1) | (x,y-1),(x,y),(x+1,y),(x,y+1) | (x,y-1),(x+1,y-1),(x,y),(x+1,y) | (x,y-1),(x+1,y-1),(x-1,y),(x,y) | (x-1,y-1),(x,y-1),(x,y),(x+1,y) | \n| \u5f62\u72b61\u306b\u304a\u3051\u308b\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9(x,y) | !Screenshot | !Screenshot | !Screenshot | !Screenshot | --- | !Screenshot | !Screenshot | \n| \u57fa\u6e96\u70b9\u3068\u305d\u308c\u4ee5\u5916\u306e\u5ea7\u6a19 | (x-2,y),(x-1,y),(x,y),(x+1,y) | (x-1,y),(x,y),(x+1,y),(x-1,y+1) | (x-1,y-1),(x-1,y),(x,y),(x+1,y) | (x,y+1),(x-1,y),(x,y),(x+1,y) | --- | (x,y-1),(x,y),(x+1,y),(x+1,y+1) | (x+1,y-1),(x,y),(x+1,y),(x,y+1) | \n| \u5f62\u72b62\u306b\u304a\u3051\u308b\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9(x,y) | --- | !Screenshot | !Screenshot | !Screenshot | --- | --- | --- | \n| \u57fa\u6e96\u70b9\u3068\u305d\u308c\u4ee5\u5916\u306e\u5ea7\u6a19 | --- | (x-1,y-1),(x,y-1),(x,y),(x,y+1) | (x,y-1),(x+1,y-1),(x,y),(x,y+1) | (x,y-1),(x-1,y),(x,y),(x,y+1) | --- | --- | --- | \n|", "start_char_idx": 0, "end_char_idx": 1250, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f1b73661-889e-4a8e-b150-42821788ceb9": {"__data__": {"id_": "f1b73661-889e-4a8e-b150-42821788ceb9", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "22419697-3d51-4f4b-b3c5-517fc93b85eb", "node_type": null, "metadata": {}, "hash": "8cd23fc8edaa42527444fb070d7a7c2a46024eaa14a03b11805de4d12cc38a04"}, "2": {"node_id": "e70c7fff-b77c-46dd-9009-dc930ae0692d", "node_type": null, "metadata": {}, "hash": "ad4ffaad2d9da9c6e5d60bd5a33de5f66c8e8b6f0dd7737613dffd829f8b6ec2"}}, "hash": "b29939d2661b1dea098ce776b9291e31e0b326b40dc398b7d575f30d97c54fb5", "text": "| --- | --- | --- | \n| \u5f62\u72b63\u306b\u304a\u3051\u308b\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9(x,y) | --- | !Screenshot | !Screenshot | !Screenshot | --- | --- | --- |\n| \u57fa\u6e96\u70b9\u3068\u305d\u308c\u4ee5\u5916\u306e\u5ea7\u6a19 | --- | (x+1,y-1),(x-1,y),(x,y),(x+1,y) | (x-1,y),(x,y),(x+1,y),(x+1,y+1) | (x,y-1),(x-1,y),(x,y),(x+1,y) | --- | --- | --- | \n\n\u5c1a\u3001\u57fa\u6e96\u70b9\u3068\u305d\u308c\u4ee5\u5916\u306e\u5ea7\u6a19\u306b\u3064\u3044\u3066\u306f\u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u60c5\u5831\uff08\u30e1\u30bd\u30c3\u30c9`Shape_class.getCoords()`\uff09\u304b\u3089\u53d6\u5f97\u53ef\u80fd\u3067\u3059\u3002\n\u307e\u305f\u3001\u5404\u5f62\u72b6\u306b\u304a\u3051\u308bx,y\u65b9\u5411\u306e\u6700\u5927\u9577\u306f\u3001\u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u60c5\u5831\uff08\u30e1\u30bd\u30c3\u30c9`Shape_class.getBoundingOffsets()`)\u304b\u3089\u53d6\u5f97\u53ef\u80fd\u3067\u3059\u3002\n\u53d6\u5f97\u306e\u5177\u4f53\u7684\u306a\u5b9f\u88c5\u65b9\u6cd5\u306f\u3001\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u53c2\u7167\u304f\u3060\u3055\u3044\u3002", "start_char_idx": 1228, "end_char_idx": 1665, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d930e5fa-ab0d-4a54-a85b-c8683ca6ce79": {"__data__": {"id_": "d930e5fa-ab0d-4a54-a85b-c8683ca6ce79", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1b12cd2c-6cbc-4b8b-bc11-b0f07bc21165", "node_type": null, "metadata": {}, "hash": "fad388913de2828ed166ba8244cc1a3ae2d66832b15f9118392e02f8d90e76cf"}}, "hash": "00028214bb75139ca54dcda14a6b1d8112fca009a1015f13625fea92a0ccbbe1", "text": "\u30d6\u30ed\u30c3\u30af\u51fa\u73fe\u6642\u306e\u521d\u671f\u4f4d\u7f6e\n\u30d6\u30ed\u30c3\u30af\u306f\u3001\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9\u304c\u5ea7\u6a19(5,1)\u306b\u306a\u308b\u3088\u3046\u306b\u51fa\u73fe\u3057\u307e\u3059\u3002\n\n!Screenshot\n\n\u5c1a\u3001\u30d6\u30ed\u30c3\u30af\u306e\u51fa\u73fe\u6642\u3001\u65e2\u306b\u57fa\u6e96\u70b9(x, y)\u306b\u30d6\u30ed\u30c3\u30af\u304c\u5b58\u5728\u3057\u3066\u3044\u308b\u3068`game over`\u3068\u306a\u308a\u30d5\u30a3\u30fc\u30eb\u30c9\u304c\u30ea\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059\u3002", "start_char_idx": 0, "end_char_idx": 128, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "00eddcdb-b8ed-41b9-838a-2d79d8fb57ab": {"__data__": {"id_": "00eddcdb-b8ed-41b9-838a-2d79d8fb57ab", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f42aab04-8e78-4f6a-854d-96e38f4a5861", "node_type": null, "metadata": {}, "hash": "062fedfa1f46f31e5211d637733934cded8adbbf2a305f9abf596bf4c3e29be7"}}, "hash": "42336a5edd25dd0dff1b4abe26c4e3b399aec4644745e32ed6876fe5dcd62455", "text": "\u30d6\u30ed\u30c3\u30af\u60c5\u5831\u306b\u683c\u7d0d\u3055\u308c\u3066\u3044\u308b\u30c7\u30fc\u30bf\n\n\u4e3b\u306b\u4ee5\u4e0b\u3092\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059\u3002\n\n* `\u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9(x,y)`\n* `\u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u306eIndex\u5024`\n* `\u6b21\u306e\u30d6\u30ed\u30c3\u30af\u306eIndex\u5024`", "start_char_idx": 0, "end_char_idx": 93, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7ad21d09-559c-4e47-92c4-2a2e60192654": {"__data__": {"id_": "7ad21d09-559c-4e47-92c4-2a2e60192654", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f95c4018-54ee-4594-ba99-26613ce4b0b9", "node_type": null, "metadata": {}, "hash": "47cdc546c353e366576258cb5c918d99f3cbde463c6df993156842a0a227cb0a"}}, "hash": "7791fbe63449f6b6af11b8625153143f5920270cc73ecf202e07b646a9a504f2", "text": "\u5be9\u5224\u60c5\u5831\n\n\u4ee5\u4e0b\u3092\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059\u3002\n\n* `\u7d4c\u904e\u6642\u9593[s]` : \u30b2\u30fc\u30e0\u958b\u59cb\u6642\u304b\u3089\u306e\u7d4c\u904e\u6642\u9593\n* `\u30b9\u30b3\u30a2[\u70b9]` : \u30b2\u30fc\u30e0\u958b\u59cb\u6642\u304b\u3089\u73fe\u5728\u307e\u3067\u306b\u7372\u5f97\u3057\u305f\u5408\u8a08\u30b9\u30b3\u30a2\n* `\u30e9\u30a4\u30f3\u6570` : \u30b2\u30fc\u30e0\u958b\u59cb\u6642\u304b\u3089\u73fe\u5728\u307e\u3067\u306b\u6d88\u3057\u305f\u30e9\u30a4\u30f3\u306e\u6570\n* `\u30b2\u30fc\u30e0\u30aa\u30fc\u30d0\u30fc\u56de\u6570` : \u30b2\u30fc\u30e0\u958b\u59cb\u6642\u304b\u3089\u73fe\u5728\u307e\u3067\u306b\u30b2\u30fc\u30e0\u30aa\u30fc\u30d0\u30fc\u306b\u306a\u3063\u305f\u56de\u6570", "start_char_idx": 0, "end_char_idx": 158, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8fe56bf8-c709-451f-9cb5-3d45acff76a6": {"__data__": {"id_": "8fe56bf8-c709-451f-9cb5-3d45acff76a6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dcfb8e33-0dd5-4a5a-b143-767385e89c45", "node_type": null, "metadata": {}, "hash": "0b082d82d58c8ce8cd5e4e188940f2327a5ca773d0ef08a3a4addb33a4375941"}}, "hash": "91eca5398c501bd894b9de55566fe48cc9f36b0d9cc33e9399d563d32cbee8eb", "text": "\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\n\n\u4ee5\u4e0b\u7b49\u3092\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059\u3002\n\n* `\u30b9\u30b3\u30a2\u5185\u8a33` : \u5408\u8a08\u30b9\u30b3\u30a2\uff08\u6d88\u3057\u305f\u30e9\u30a4\u30f3\u3001\u843d\u4e0b\u30dc\u30fc\u30ca\u30b9\uff09\u306e\u5185\u8a33\n\n\u305d\u306e\u4ed6\u3001\u8a73\u7d30\u306f\u30b3\u30fc\u30c9\u4e0a\u306eGameStatus\u3092\u53c2\u7167\u4e0b\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 88, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "283ffde8-e3e6-462e-ac07-8d9c0aceda45": {"__data__": {"id_": "283ffde8-e3e6-462e-ac07-8d9c0aceda45", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "851eae1a-b9e2-4830-8dac-bb1210d3f0cf", "node_type": null, "metadata": {}, "hash": "19865fe7e59a03ed954ecaa14210a281ce5ab496a8fbe614faccf0441c3663d9"}}, "hash": "38ca9236e70af3d74a7ca94a3e6eabd9198992ef26a8af7afae9d9169c2a0824", "text": "\u6b21\u306e\u52d5\u4f5c\u6c7a\u5b9a\u7528\u306e\u30c7\u30fc\u30bf\n\n\u4ee5\u4e0b\u306e\u30c7\u30fc\u30bf\u3092\u3001\u6b21\u306e\u52d5\u4f5c\u6c7a\u5b9a\u7528\u306e\u30c7\u30fc\u30bf`nextMove`\u306b\u4e0e\u3048\u308b\u3053\u3068\u3067\u6b21\u306e\u52d5\u4f5c\u3092\u6c7a\u5b9a\u3057\u307e\u3059\u3002\n`nextMove`\u306f\u8f9e\u66f8\u578b\u306e\u30c7\u30fc\u30bf\u3067\u3042\u308a\u3001`nextMove[\"strategy\"]`\u4ee5\u4e0b\u306e\u5404\u5024\u306b\u5fdc\u3058\u3066\u30d6\u30ed\u30c3\u30af\u304c\u52d5\u304d\u307e\u3059\u3002\n\n* `direction` : \u73fe\u5728\u306e\u5f62\u72b6\u304b\u3089\u6642\u8a08\u56de\u308a\u306b\u4f55\u56de\u56de\u8ee2\u3059\u308b\u304b\uff08\u7bc4\u56f2\uff1a0\u301c(1\u5468\u306e\u56de\u8ee2\u306b\u5fc5\u8981\u306a\u56de\u6570-1) \uff09\n* `x` : x\u5ea7\u6a19\u306e\u3069\u306e\u4f4d\u7f6e\u306b\u79fb\u52d5\u3059\u308b\u304b\uff08\u7bc4\u56f2\uff1a0-9\u3001x\u5ea7\u6a19\u306e\u7d76\u5bfe\u5024\u3092\u6307\u5b9a\u3059\u308b\uff09\n* `y_operation` : y\u5ea7\u6a19\u65b9\u5411\u306e\u64cd\u4f5c\uff081:\u843d\u4e0b\u30010:\u79fb\u52d5\uff09\n* `y_moveblocknum` : y\u5ea7\u6a19\u65b9\u5411\u306b\u79fb\u52d5\u3059\u308b\u5834\u5408\u3001y\u5ea7\u6a19\u306b\u4f55\u30d6\u30ed\u30c3\u30af\u5206\u79fb\u52d5\u3059\u308b\u304b\uff08\u7bc4\u56f2\uff1a1-21\uff09\n\n!Screenshot\n\n\uff08\u4eca\u5f8c\u30eb\u30fc\u30eb\u5909\u66f4\u304c\u3042\u308b\u5834\u5408\u306f\u3001\u30eb\u30fc\u30eb\u306b\u5fdc\u3058\u3066`nextMove`\u3082\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3057\u3066\u3044\u304f\u4e88\u5b9a\u3067\u3059\u3002\uff09", "start_char_idx": 0, "end_char_idx": 389, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "17dc908d-97bd-4f70-a113-da91d42944fc": {"__data__": {"id_": "17dc908d-97bd-4f70-a113-da91d42944fc", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5abc6f30-b9c4-440e-bfc0-e6ace08009d1", "node_type": null, "metadata": {}, "hash": "976f58f209b7983e08bc43a91854a80d0e6c21518d0e2c92cf4319509fddec92"}}, "hash": "352900f6c92eb598e66479c7ddc2df373a225b4d4cd954fb9b8fd173a7972561", "text": "HOLD\u6a5f\u80fd\n\nHOLD\u6a5f\u80fd\u3068\u306f\u3001\u30d6\u30ed\u30c3\u30af\u3092\u4fdd\u6301\u3059\u308b\u6a5f\u80fd\u3067\u3059\u3002\u3053\u306e\u6a5f\u80fd\u3092\u4f7f\u3046\u3068\u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u304cHOLD\u6271\u3044\u306b\u306a\u308a\u307e\u3059\u3002\n\u305d\u306e\u5f8c\u3001\u3082\u3057\u4fdd\u6301\u3057\u3066\u3044\u308b\u30d6\u30ed\u30c3\u30af\u304c\u306a\u3044\u5834\u5408\u306f\u6b21\u306e\u30d6\u30ed\u30c3\u30af\u304c\u843d\u3061\u3066\u304d\u307e\u3059\u3002\n\u3082\u3057\u4fdd\u6301\u3057\u3066\u3044\u308b\u30d6\u30ed\u30c3\u30af\u304c\u65e2\u306b\u3042\u308b\u5834\u5408\u306f\u305d\u306e\u30d6\u30ed\u30c3\u30af\u304c\u518d\u3073\u843d\u3061\u3066\u304d\u307e\u3059\u3002\n\n\u30d7\u30ed\u30b0\u30e9\u30e0\u304b\u3089\u4f7f\u7528\u3059\u308b\u5834\u5408\u306f`nextMove[\"strategy\"]`\u306e\u4ee5\u4e0b\u306e\u5024\u3092\u8abf\u6574\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n* `use_hold_function` : HOLD\u6a5f\u80fd\u3092\u4f7f\u3046\u304b\u3069\u3046\u304b\uff08\"y\":\u4f7f\u3046\u3001\"n\":\u4f7f\u308f\u306a\u3044\uff09\n\n!Screenshot", "start_char_idx": 0, "end_char_idx": 254, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b47de4d3-efca-437f-b86f-a511a8a488c2": {"__data__": {"id_": "b47de4d3-efca-437f-b86f-a511a8a488c2", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c6e71118-ef41-407c-ae38-6c9531a21885", "node_type": null, "metadata": {}, "hash": "4502424dac88298114584fb0eefe7dc0e4cda3ffb0367c63f7e12f8ab51ce620"}}, "hash": "8e8a3d38431e6288a4f8464a901b05ce880c241ca0a0714d2c5eec0d4c229ce3", "text": "\u4f7f\u7528\u4f8b\n\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u53c2\u7167\u304f\u3060\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 28, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "470d7749-2dac-40b7-809a-2f8e5dda995f": {"__data__": {"id_": "470d7749-2dac-40b7-809a-2f8e5dda995f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e06a2dad-4079-46f4-86ee-e7fefdd32765", "node_type": null, "metadata": {}, "hash": "4cb778c53a93ef636b0d8aa949e4f0d6e06347e11d6af9ea900464c6edcbe2df"}}, "hash": "5133cd431a25c7a45300c247aedc783a0c3744c7d34ef0451646f4429da06e8a", "text": "\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\n\n\u5b9f\u884c\u65b9\u6cd5\n\n```\npython start.py -m sample\n```\n\n\u4e00\u822c\u7684\u306b\u3001\u30c6\u30c8\u30ea\u30b9\u306f\u4ed6\u30b2\u30fc\u30e0\u540c\u69d8\u306b\u7d44\u5408\u305b\u6700\u9069\u5316\u554f\u984c\u3068\u6349\u3048\u308b\u4e8b\u304c\u53ef\u80fd\u3067\u3042\u308a\u3001\u904e\u53bb\u306b\u69d8\u3005\u306a\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u304c\u63d0\u6848\u3055\u308c\u3066\u3044\u308b\u3002\uff08\u4f8b\u3048\u3070\u4e0b\u8a18\uff09\n- \u30cb\u30e5\u30fc\u30e9\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u3068\u907a\u4f1d\u7684\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u3092\u7528\u3044\u305f \u30c6\u30c8\u30ea\u30b9\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u306e\u958b\u767a\n- \u30c6\u30c8\u30ea\u30b9\u306b\u304a\u3051\u308bAI\u306e\u958b\u767a\n- Tetris is Hard, Even to Approximate\n- ...\n\n\u672c\u30ea\u30dd\u30b8\u30c8\u30ea\u306f\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u7df4\u7fd2\u3068\u5171\u306b\u3001\u63a2\u7d22\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u306e\u4eee\u8aac\u691c\u8a3c\u306b\u3082\u5229\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u308b\u3002\n\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u306f\u3001\u4e00\u822c\u7684\u306a\u63a2\u7d22\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u3067\u306e\u57fa\u672c\u90e8\u5206\u3068\u306a\u308b\u3001\u73fe\u5728\u30d6\u30ed\u30c3\u30af\u306e\u63a2\u7d22\u65b9\u6cd5\u3001\u76e4\u9762\u8a55\u4fa1\u3092\u7c21\u6f54\u306b\u5b9f\u88c5\u3057\u3066\u3044\u308b\u3002", "start_char_idx": 0, "end_char_idx": 338, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c1bdce91-2f0b-48af-b4be-c8498c881ace": {"__data__": {"id_": "c1bdce91-2f0b-48af-b4be-c8498c881ace", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b98f2a03-09c3-4729-8aa2-edc392482b5d", "node_type": null, "metadata": {}, "hash": "4dc41dbb6bcdc35bc3e429f1e2c563a32ffd28c0458e39bd828613ead2d3aa69"}}, "hash": "8192788ef3686b1a5a26b73553987905f321e211f87c2b52a474d2a10785c638", "text": "step1.\u63a2\u7d22\u65b9\u6cd5\n\n\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u306e`def GetNextMove(self, nextMove, GameStatus):`\u95a2\u6570\u306e\u3001\n`for direction0 in CurrentShapeDirectionRange:`\n`for x0 in range(x0Min, x0Max):`\u90e8\u5206\u304c\u8a72\u5f53\u3059\u308b\u3002\n\u3053\u3053\u3067\u306f\u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u306e\u60c5\u5831\uff08\u4ee5\u4e0b\uff09\u3092\u4f7f\u3063\u3066\u5168\u63a2\u7d22\u3092\u884c\u3063\u3066\u3044\u308b\u3002\n- \u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u304c\u56de\u8ee2\u3067\u304d\u308b\u56de\u6570\n- \u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u304c\u79fb\u52d5\u3067\u304d\u308bx\u8ef8\u65b9\u5411\u306e\u79fb\u52d5\u91cf\n\n!Screenshot\n\n\u4e00\u822c\u7684\u306b\u3001\u8003\u616e\u3059\u3079\u304d\u7d44\u307f\u5408\u308f\u305b\u304c\u591a\u304f\u306a\u308b\u3068\u30b2\u30fc\u30e0\u6728\u3092\u5229\u7528\u3057\u305f\u63a2\u7d22\u7bc4\u56f2\u306e\u52b9\u7387\u5316\u304c\u884c\u308f\u308c\u308b\u3002\n\u4eca\u56de\u3082\uff11\u79d2\uff08\uff11\u30d5\u30ec\u30fc\u30e0\u66f4\u65b0\u983b\u5ea6\uff09\u4ee5\u5185\u306b\u6b21\u306e\u624b\u3092\u6c7a\u3081\u308b\u5fc5\u8981\u304c\u3042\u308a\u3001\u72b6\u6cc1\u306b\u3088\u3063\u3066\u306f\u30b2\u30fc\u30e0\u6728\u306e\u63a1\u7528\u304c\u5fc5\u8981\u3068\u601d\u308f\u308c\u308b\u3002\n\u305f\u3060\u3001\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u306f\u7c21\u6f54\u306b\u7406\u89e3\u3067\u304d\u308b\u3053\u3068\u3092\u512a\u5148\u3057\u3001\u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u3092\u7528\u3044\u305f\u5168\u63a2\u7d22\u3092\u63a1\u7528\u3057\u3066\u3044\u308b\u3002", "start_char_idx": 0, "end_char_idx": 408, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9df26552-c77b-48f9-8468-7ee0482ee31c": {"__data__": {"id_": "9df26552-c77b-48f9-8468-7ee0482ee31c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c75b624b-0673-4028-a63b-5dca4caebad0", "node_type": null, "metadata": {}, "hash": "9062bee3f1c067761f285658f76782dd82db8cdad82f96deab4fb901471082ee"}}, "hash": "3a64095e455761305673d6ed9e596446b20865575fbcc418e78fde87f22e579b", "text": "step2.\u76e4\u9762\u8a55\u4fa1\n\n\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u306e`def GetNextMove(self, nextMove, GameStatus):`\u95a2\u6570\u306e\u3001\n` EvalValue = self.calcEvaluationValueSample(board)`\u90e8\u5206\u304c\u8a72\u5f53\u3059\u308b\u3002\n\n\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u3092\u8003\u3048\u305f\u76e4\u9762\u8a55\u4fa1\u3092\u884c\u3063\u3066\u3044\u308b\u3002\n- \u4eee\u306b\u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u3092\u63a2\u7d22\u5019\u88dc\u7b87\u6240\u306b\u7f6e\u3044\u305f\u6642\u3001\u6d88\u305b\u308b\u30d6\u30ed\u30c3\u30af\u304c\u591a\u3044\u307b\u3069\u826f\u3044\u3002\n- \u540c\u69d8\u306b\u3001\u7a74\u307c\u3053\u3084\u5b64\u7acb\u3057\u305f\u30d6\u30ed\u30c3\u30af\u304c\u5c11\u306a\u3044\u307b\u3069\u826f\u3044\u3002\n- \u540c\u69d8\u306b\u3001\u9ad8\u3055\u306b\u3070\u3089\u3064\u304d\u304c\u5c11\u306a\u3044\u307b\u3069\u826f\u3044\u3002\n\n!Screenshot\n\n\n`EvalValue = self.calcEvaluationValueSample(board)`\u5185\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5909\u6570\u3092\u6271\u3063\u3066\u3044\u308b\u3002\nblock_controller_sample.py#L140\n\n```\nBlockMaxY\uff1a\u3042\u308bX\u5ea7\u6a19\u306e\u30d6\u30ed\u30c3\u30af\u306e\u9ad8\u3055\u304c\u5165\u308b\nholeCandidates\uff1a\u3042\u308bX\u5ea7\u6a19\u306e\u7a74\u5019\u88dc\u306e\u6570\nholeConfirm\uff1a\u3042\u308bX\u5ea7\u6a19\u306e\u78ba\u5b9a\u3057\u305f\u7a74\u306e\u6570\uff08\u4e0b\u304b\u3089\"\u7a74\",\"\u7a74\",\u201d\u30d6\u30ed\u30c3\u30af\u201d,\"\u7a74\",\"\u7a74\",\u201d\u30d6\u30ed\u30c3\u30af\u201d,\"\u306a\u3057\",\"\u306a\u3057\",\u201d\u306a\u3057\u201d\u30fb\u30fb\u30fb\u306e\u5834\u5408\u306f\uff14\uff09\nnIsolatedBlocks\uff1a\u4e0b\u304c\u30d6\u30ed\u30c3\u30af\u306a\u3057\u306e\u30d6\u30ed\u30c3\u30af\u306e\u7dcf\u6570\nfullLines\uff1a\u3042\u308bY\u5ea7\u6a19\u306e\u6a2a\u4e00\u5217\u5168\u90e8\u306b\u30d6\u30ed\u30c3\u30af\u304c\u3042\u3063\u305f\u3089\uff11\u304c\u52a0\u7b97\u3055\u308c\u308b\uff08\u6700\u5927\u5024\u306f\uff14\uff09\nnHoles += abs(x)\uff1a\u5404X\u5ea7\u6a19\u306e\u7a74\u306e\u6570\u306e\u5408\u8a08\u5024\nabsDy += abd(x)\uff1a\u3067\u3053\u307c\u3053\u5177\u5408\u3092\u8868\u73fe\u3057\u3066\u3044\u308b\u3002\u3068\u306a\u308a\u306e\u5217\u3068\u306e\u9ad8\u3055\u306e\u5dee\u5206\u3092\u5408\u8a08\u3057\u3066\u3001\u5024\u304c\u5927\u304d\u3044\uff1d\u30d6\u30ed\u30c3\u30af\u306e\u9ad8\u3055\u304c\u51f8\u51f9\u3057\u3066\u308b\n```\n\n\u3057\u304b\u3057\u3001\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u65b9\u6cd5\u3067\u306f\u76e4\u9762\u306b\u7a74\u304c\u6b8b\u308b\u4e8b\u304c\u307e\u3060\u307e\u3060\u591a\u3044\u3002", "start_char_idx": 0, "end_char_idx": 730, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9e8f0265-a120-4449-ab49-84c01e1501fb": {"__data__": {"id_": "9e8f0265-a120-4449-ab49-84c01e1501fb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "fb72cf94-871a-46a6-b2c2-e77ebfb0a841", "node_type": null, "metadata": {}, "hash": "aee4d7fba88881c3496a813ad2bf1960fa1ded4379575e65eafc66ec41dfe9bb"}}, "hash": "938b4e2ff091c49e6046c56d0c48e071a669831b2e0be0a9d25db6c08769d7e4", "text": "\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u8ab2\u984c\n\n\u4e0a\u8a18\u306e\u901a\u308a\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u306f\u6700\u5c0f\u9650\u306e\u6a5f\u80fd\u3057\u304b\u306a\u304f\u3001\u3044\u304f\u3064\u304b\u8ab2\u984c\u304c\u5b58\u5728\u3059\u308b\u3002\n\n- \u6570\u624b\u5148\u8aad\u307f\u63a2\u7d22\n - \u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u306f\u63a2\u7d22\u6642\u306b\u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u3057\u304b\u8003\u616e\u3067\u304d\u3066\u3044\u306a\u3044\u3002\u6b21\u306e\u30d6\u30ed\u30c3\u30af\u3084\u4ee5\u964d\u3092\u8003\u616e\u3059\u308b\u65b9\u304c\u826f\u3044\u306f\u305a\u3002\n- \u76e4\u9762\u8a55\u4fa1\u306e\u6539\u826f\n - \u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u306f\u76ee\u5148\u306e\uff11\u30d6\u30ed\u30c3\u30af\u6d88\u3059\u4e8b\u3092\u512a\u5148\u3057\u3066\u3044\u308b\u3002\uff14\u30d6\u30ed\u30c3\u30af\u6d88\u3059\u305f\u3081\u306e\u624b\u3092\u9078\u629e\u3067\u304d\u3066\u3044\u306a\u3044\u3002\n - \u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u624b\u6cd5\u3067\u306f\u76e4\u9762\u306b\u7a74\u304c\u6b8b\u308b\u4e8b\u304c\u307e\u3060\u307e\u3060\u591a\u3044\u3002\n- \u6700\u9069\u89e3\u3092\u4eba\u304c\u8003\u3048\u308b\u5fc5\u8981\u304c\u3042\u308b\u3002\n - AI\u306e\u3088\u3046\u306b\u81ea\u3089\u5b66\u7fd2\u3059\u308b\u65b9\u304c\u697d\u306b\u6700\u9069\u89e3\u3092\u5f97\u3089\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308b\u3002\n\n\u4e0a\u8a18\u3092\u89e3\u6c7a\u3059\u308b\u3068\u3088\u308a\u9ad8\u3044\u30b9\u30b3\u30a2\u304c\u7372\u5f97\u3067\u304d\u308b\u3068\u601d\u308f\u308c\u308b\u3002\n\u4ee5\u4e0b\u306e\u5148\u884c\u6587\u732e\u306b\u3088\u308b\u3068\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u63a1\u7528\u3057\u3066\u3044\u308b\u30d1\u30e9\u30e1\u30fc\u30bf\u4ee5\u5916\u3082\u5229\u7528\u3057\u3066\u304a\u308a\u3001\u6539\u826f\u306e\u4f59\u5730\u304c\u3042\u308b\u4e8b\u306f\u9593\u9055\u3044\u306a\u3044\u3002\n\u30cb\u30e5\u30fc\u30e9\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u3068\u907a\u4f1d\u7684\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u3092\u7528\u3044\u305f \u30c6\u30c8\u30ea\u30b9\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u306e\u958b\u767a", "start_char_idx": 0, "end_char_idx": 405, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "508c0633-27f9-41ce-8943-38a30ca38670": {"__data__": {"id_": "508c0633-27f9-41ce-8943-38a30ca38670", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d8b49b77-5ea7-4bb1-bd66-ce20ce838553", "node_type": null, "metadata": {}, "hash": "d659b6b9d54126e0a4d9460f4f279c88d2c9271273616e8c124529c3e4b81c4e"}}, "hash": "4d1f7bdabe25fa5cc4bb69560637fb84477946075e6eb5e6f18cf3d25bffa457", "text": "\u30dc\u30fc\u30c9\u7ba1\u7406\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u3064\u3044\u3066\n\n\u3053\u3053\u3067\u306f board_manager.py \u306e\u89e3\u8aac\u3092\u884c\u3046\u3002\n\n\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u306f\u30c6\u30c8\u30ea\u30df\u30ce\u306e \u5f62\u72b6\u3001\u56de\u8ee2\u65b9\u5411\u3092\u62c5\u3046 Shape Class \u3068\u3001\u753b\u9762\u30dc\u30fc\u30c9\u306e\u5404\u7a2e\u51e6\u7406\u3092\u884c\u3046 BoardData Class \u304c\u3042\u308b\u3002\nblock_controller.py \u5074\u304b\u3089\u3082\u3088\u304f\u4f7f\u3046\u30e1\u30bd\u30c3\u30c9\u304c\u591a\u3044\u306e\u3067\u89e3\u8aac\u3092\u66f8\u3044\u3066\u304a\u304f\u3002", "start_char_idx": 0, "end_char_idx": 169, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "de287235-bc55-42f3-98c4-6a2d542b2740": {"__data__": {"id_": "de287235-bc55-42f3-98c4-6a2d542b2740", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7267230c-b52c-407c-8454-190574d5418c", "node_type": null, "metadata": {}, "hash": "210f3bb2853ff91bd64866d37ce3a37b5ba5d45173a619e504e37e507affdb07"}}, "hash": "22985006f7ad800c37b09b3ca7c657b499bde9c4fa1965d62c53e0dd8a49dba7", "text": "Shape Class\n\n\u3053\u3053\u3067\u306f\u3001board_manager.py \u306e Shape Class \u306b\u3064\u3044\u3066\u89e3\u8aac\u3059\u308b\u3002\nShape Class \u306f\u4e0b\u8a18\u30c6\u30c8\u30ea\u30df\u30ce\u306e\u5f62\u72b6\u306b\u3064\u3044\u3066\u4fdd\u6301\u3057\u3066\u3044\u308b\u30af\u30e9\u30b9\u3067\u3042\u308b\u3002\n\n| | ShapeI | ShapeL | ShapeJ | ShapeT | ShapeO | ShapeS | ShapeZ |\n| --- | --- | --- | --- | --- | --- | --- | --- | \n| index\u5024 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | \n| \u521d\u671f\u5f62\u72b6 | !Screenshot | !Screenshot | !Screenshot | !Screenshot | !Screenshot | !Screenshot | !Screenshot | \n| \uff11\u5468\u306e\u56de\u8ee2\u306b\u5fc5\u8981\u306a\u56de\u6570 | 2 | 4 | 4 | 4 | 1 | 2 | 2 | \n\n\u8a73\u7d30\u306f\u3001\u30d6\u30ed\u30c3\u30af\u60c5\u5831 \u306b\u8a73\u3057\u304f\u8a18\u8f09\u304c\u3042\u308b\u3002", "start_char_idx": 0, "end_char_idx": 452, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "23f1ecfa-8922-44a1-ac79-56b894736a62": {"__data__": {"id_": "23f1ecfa-8922-44a1-ac79-56b894736a62", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3ec15043-1a7f-464e-9c5c-d535579a0387", "node_type": null, "metadata": {}, "hash": "4e0e8787b446de498de486b9a600183a7b78eca94a8d0b7b1b204c0558dca06c"}}, "hash": "7cf2353c64656cb9f885578465342992b2458a0e2d6bde59e22deefbcf2690ef", "text": "getRotatedOffsets method\n\ngetRotatedOffsets \u30e1\u30bd\u30c3\u30c9\u306f \u30c6\u30c8\u30ea\u30df\u30ce\u5f62\u72b6\u3092\u56de\u8ee2\u3057\u305f\u57fa\u6e96\u5ea7\u6a19\u304b\u3089\u306e\u76f8\u5bfe\u5ea7\u6a19\u3092\u8fd4\u3057\u307e\u3059\u3002\n\u5f15\u6570\u3068\u3057\u3066 direction \u30c6\u30c8\u30ea\u30df\u30ce\u56de\u8ee2\u65b9\u5411\u3092\u6307\u5b9a\u3059\u308b\u3002\n\n\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u306e\u57fa\u6e96\u70b9\u306e\u5f62\u72b6\u756a\u53f7\u3092 direction \u3067\u6307\u5b9a\u3059\u308b\u3068\u3001\u3053\u3053\u3067\u66f8\u304b\u308c\u3066\u3044\u308b\u76f8\u5bfe\u5ea7\u6a19\u304c\u8fd4\u3055\u308c\u308b\u3002", "start_char_idx": 0, "end_char_idx": 166, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "15225548-ae59-44c6-b10d-3788fc066586": {"__data__": {"id_": "15225548-ae59-44c6-b10d-3788fc066586", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "69f6c39d-83e3-4f08-96b1-493af5b225e5", "node_type": null, "metadata": {}, "hash": "2d29f178f4568c4820f3e65032f1806bde1dd07e190238ac1d23439f92008fc4"}}, "hash": "afcf01bd711907b6bd87c9b25b020e16451bb35679e4da99702bfe710f2afe8c", "text": "getCoords method\n\ngetCoords \u30e1\u30bd\u30c3\u30c9\u306f \u3055\u3089\u306b x,y \u3092\u5f15\u6570\u306b\u6301\u3061\u3001x,y \u3092\u57fa\u6e96\u70b9\u306b\u7f6e\u3044\u305f\u30c6\u30c8\u30ea\u30df\u30ce\u306e\u7d76\u5bfe\u5ea7\u6a19\u3092\u8fd4\u3059\u3002", "start_char_idx": 0, "end_char_idx": 75, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5b34d215-2611-416b-b34a-7470223a687e": {"__data__": {"id_": "5b34d215-2611-416b-b34a-7470223a687e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "12f3e9df-748d-4383-b5eb-8e0db339f84f", "node_type": null, "metadata": {}, "hash": "a53eedbc51275c54a45bee2be299e4cb29dbf1cc0ab69b421a90a5ca092fd1ba"}}, "hash": "a92e368b24aa95b103367b7c4552e937d82d2e25bf232d6fa79d4cea952ed2f8", "text": "getBoundingOffsets method\n\ngetBoundingOffsets \u30e1\u30bd\u30c3\u30c9\u306f\u30c6\u30c8\u30ea\u30df\u30ce\u306e\u57fa\u6e96\u70b9\u304b\u3089\u306e\u6700\u5927 x, y \u6700\u5c0fx, y \u3092\u53d6\u5f97\u3059\u308b\u3002\ndirection \u3067\u56de\u8ee2\u65b9\u5411\u3092\u6307\u5b9a\u3057\u3001minX, maxX, minY, maxY \u304c\u8fd4\u3063\u3066\u304f\u308b\u3002", "start_char_idx": 0, "end_char_idx": 135, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bcc8ce86-e983-490e-a23f-d7af513392d3": {"__data__": {"id_": "bcc8ce86-e983-490e-a23f-d7af513392d3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ca57654f-7e33-4731-932e-fa737b633546", "node_type": null, "metadata": {}, "hash": "ad390c0a18d5ad338bcf85457b9f4f1982973ca4d9589fb152cb6736ff944cf5"}}, "hash": "de2907ec868500107de5e34f817f203498b37138a01eb689425306f905117478", "text": "BoardData Class\n\n\u3053\u3053\u3067\u306f\u3001board_manager.py \u306e BoardData Class \u306b\u3064\u3044\u3066\u89e3\u8aac\u3059\u308b\u3002\nBoardData Class \u306f\u753b\u9762\u30dc\u30fc\u30c9\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b\u30c6\u30c8\u30ea\u30df\u30ce\u60c5\u5831\u304c\u683c\u7d0d\u3055\u308c\u3066\u304a\u308a\u3001\u753b\u9762\u30dc\u30fc\u30c9\u306e\u51e6\u7406\u306f\u3053\u306e Class \u306b\u304a\u3044\u3066\u884c\u3046\u3002", "start_char_idx": 0, "end_char_idx": 138, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "81393b81-5c50-483e-ac72-3ddb2466f498": {"__data__": {"id_": "81393b81-5c50-483e-ac72-3ddb2466f498", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c7cfdf36-eef9-4eba-9579-4bc1b556f2c9", "node_type": null, "metadata": {}, "hash": "15550c8af0ea33319f70da48f2bf9ca0650c23d88a40378233cbc8b5f31f8841"}}, "hash": "9db94f8ddf769fc925f014247df473c93638f4adce4b580c960648d198332e1d", "text": "\u753b\u9762\u30dc\u30fc\u30c9\u60c5\u5831\u53d6\u5f97\u7cfb\u30e1\u30bd\u30c3\u30c9", "start_char_idx": 0, "end_char_idx": 14, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a8490578-d792-4b2d-a91a-e3755211dad5": {"__data__": {"id_": "a8490578-d792-4b2d-a91a-e3755211dad5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "fb4931e0-f4e9-4d86-9e7c-0c10aa5d07f4", "node_type": null, "metadata": {}, "hash": "235b89a0327d28b3e2abc2f434621d2ef1c1a7703b08ab9766447cc189f8274e"}}, "hash": "3cdb6c80b98f7992b367f2d1e168dec89961dc6cda9ba16c16fa362b118612db", "text": "getData method\n\n\u73fe\u72b6\u306e\u753b\u9762\u30dc\u30fc\u30c9\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002\u4e00\u6b21\u5143\u914d\u5217\u3067\u3042\u308b\u3002", "start_char_idx": 0, "end_char_idx": 40, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bc35b2fc-146f-4cc2-9a2f-0d1acc85fa16": {"__data__": {"id_": "bc35b2fc-146f-4cc2-9a2f-0d1acc85fa16", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "49976c04-4ec1-4ef2-8fe3-d92e41b0da88", "node_type": null, "metadata": {}, "hash": "b009e7d49deb66f46bb8f1e81970beec59288be412569e7c7a9a020df58847a6"}}, "hash": "9e3353f942bbfa832014f30f0e1ac6ecbc741dd3886f2c76ba6e1f89479a0df6", "text": "\u30c6\u30c8\u30ea\u30df\u30ce\u60c5\u5831\u53d6\u5f97\u95a2\u4fc2\u30e1\u30bd\u30c3\u30c9", "start_char_idx": 0, "end_char_idx": 15, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "1846fdb4-bbab-4f8c-a1ce-295a684ef720": {"__data__": {"id_": "1846fdb4-bbab-4f8c-a1ce-295a684ef720", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "19ea8123-db68-412d-9d74-a03aabed8f14", "node_type": null, "metadata": {}, "hash": "45744ba5d52cf061d3d391a2c3bb7fd136d152ff76ce02947252ca203c0c00aa"}}, "hash": "5a11592030637a5a43bf50279471b3f4082a763a8f6315212de85f4fbb223858", "text": "getDataWithCurrentBlock method\n\n\u753b\u9762\u30dc\u30fc\u30c9\u30c7\u30fc\u30bf\u30b3\u30d4\u30fc\u3057\u52d5\u3044\u3066\u3044\u308b\u30c6\u30c8\u30ea\u30df\u30ce\u30c7\u30fc\u30bf\u3092\u4ed8\u52a0\u3057\u3001\u305d\u306e\u753b\u9762\u30dc\u30fc\u30c9\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002", "start_char_idx": 0, "end_char_idx": 76, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0cba1902-9045-405e-9a1d-64b1526ebb87": {"__data__": {"id_": "0cba1902-9045-405e-9a1d-64b1526ebb87", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5be45fc8-d6f1-43f4-878e-6b06ddbab2fe", "node_type": null, "metadata": {}, "hash": "68b308f20d02c01e503f8839d769ce55fbf46693af7946fea1b7292db296f953"}}, "hash": "d86ca2c441103084242728b24514cdeced3b75ecae1bbb2ba0d50bfee276f762", "text": "getValue method\n\n\u5f15\u6570\u3068\u3057\u3066 x,y \u3092\u6307\u5b9a\u3057\u753b\u9762\u30dc\u30fc\u30c9\u4e0a\u306e\u305d\u306e\u5ea7\u6a19\u306e\u30c6\u30c8\u30ea\u30df\u30ce\u306e\u6709\u7121(\u304a\u3088\u3073\u305d\u306e\u7a2e\u985e)\u3092\u8fd4\u3059\u3002\n\u8fd4\u308a\u5024\u306f Shape Class \u306e index\u5024\u3002\u4f55\u3082\u306a\u3044\u306a\u3089 0\u3002", "start_char_idx": 0, "end_char_idx": 100, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ed1fe994-028b-48dc-bc10-80d78f76d4af": {"__data__": {"id_": "ed1fe994-028b-48dc-bc10-80d78f76d4af", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9f9b9538-89aa-431f-8cb3-a8cc338ee9d9", "node_type": null, "metadata": {}, "hash": "d87da45194870913061515eebae05ef7a0e1e825a4a393ad3b22d20ba74d690a"}}, "hash": "e7039fb78e964d75fe9a0210b025feaa55eeff077d48c19ea1878302fe7964b5", "text": "getCurrentShapeCoord method\n\ndirection (\u56de\u8ee2\u72b6\u614b)\u306e\u30c6\u30c8\u30ea\u30df\u30ce\u5ea7\u6a19\u914d\u5217\u3092\u53d6\u5f97\u3057\u3001\u305d\u308c\u3092x,y\u306b\u914d\u7f6e\u3057\u305f\u5834\u5408\u306e\u5ea7\u6a19\u914d\u5217\u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 81, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4896d728-623a-4b34-ae7d-26404e9a13d6": {"__data__": {"id_": "4896d728-623a-4b34-ae7d-26404e9a13d6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "24c4967d-f328-40cc-9eac-40174a638d4a", "node_type": null, "metadata": {}, "hash": "4ceb84c87e37670f78f6d4ebfea843970a93ac51f0e139f0e9e73f283202e7da"}}, "hash": "b72b4e0f830091ae46d3a1a949d42015c82e5d651a31ebfea8a5fad720039221", "text": "getShapeListLength method\n\n\u4e88\u544a\u30c6\u30c8\u30ea\u30df\u30ce\u914d\u5217\u306e\u9577\u3055\u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 42, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0dba0ca0-6cb8-4433-8b21-00c2cecb4ad1": {"__data__": {"id_": "0dba0ca0-6cb8-4433-8b21-00c2cecb4ad1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dd7a0dd1-80ac-4acb-aae6-04abdd67eab7", "node_type": null, "metadata": {}, "hash": "b2320277a072a9818a5104eadfc514569f438da43b85f832ffa2913ddb85ab94"}}, "hash": "efa62ba335d424dc7fac56f48be2ca30eba717cac7dbee703336b880a9bee770", "text": "getShapeDataFromShapeClass method\n\n\u30c6\u30c8\u30ea\u30df\u30ce\u30af\u30e9\u30b9\u30c7\u30fc\u30bf, \u30c6\u30c8\u30ea\u30df\u30ce\u5ea7\u6a19\u914d\u5217\u3001\u30c6\u30c8\u30ea\u30df\u30ce\u56de\u8ee2\u7a2e\u985e\u3092\u8fd4\u3059\n\n\u5f15\u6570\n\n ShapeClass ... Shape \u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\n\n\u8fd4\u5024\n\n ShapeClass ... Shape \u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\n ShapeIdx ... Shape Class \u306e index\u5024\n ShapeRange ... Shape Class \u306e\u56de\u8ee2\u65b9\u5411\u914d\u5217\u3002O\u30df\u30ce\u306a\u3089 (0,) L\u30df\u30ce\u306a\u3089 (0,1,2,3)\u3002", "start_char_idx": 0, "end_char_idx": 251, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6027cd04-5df8-4ec9-9a74-85729013e53f": {"__data__": {"id_": "6027cd04-5df8-4ec9-9a74-85729013e53f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8dd7b6e7-4a87-423e-991e-911c36ec1ff0", "node_type": null, "metadata": {}, "hash": "7e07da31b16ec9e7497ffd6d52d43d29b2dc7e3f31a346df267feff3c48e1da1"}}, "hash": "c292620cdd2daf6ab2e7c116c749a865acffbb91108408a7f641ea75cd48fbb1", "text": "getShapeData method\n\n\u30c6\u30c8\u30ea\u30df\u30ce\u306e index \u756a\u53f7\u304b\u3089 shape \u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3059\n\n\u5f15\u6570\n\n ShapeNumber ... \u30c6\u30c8\u30ea\u30df\u30ce\u306e index\n\n\u8fd4\u5024\n\n ShapeClass ... Shape \u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8", "start_char_idx": 0, "end_char_idx": 130, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f45620fd-aa92-4c7d-b48b-1b70fc3622ea": {"__data__": {"id_": "f45620fd-aa92-4c7d-b48b-1b70fc3622ea", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "210fa9a3-c7d1-41d7-b065-251a4c37174c", "node_type": null, "metadata": {}, "hash": "ab46ad700d58c9bd8694ec90d9bb372bc4dd2101e840fb8cc78aeff65407a835"}}, "hash": "36631506375b63482cbb25d97f815cb5716a42bea463a3eef5ba297306d631b1", "text": "HOLD \u95a2\u4fc2", "start_char_idx": 0, "end_char_idx": 7, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "085fcc40-c5a0-4dea-8039-113b0bd8d4e3": {"__data__": {"id_": "085fcc40-c5a0-4dea-8039-113b0bd8d4e3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "951d4750-1ce7-4a82-b1d1-3a7144b67547", "node_type": null, "metadata": {}, "hash": "ff096aa7cc4e3945e0a56c7184d66f401daa662b8c6bef256c9b00c157de7420"}}, "hash": "a584572129d6a1c7db781bbd550626a9d840d64b2e0ccf199f43ec28989be553", "text": "getholdShapeData method\n\n\u30db\u30fc\u30eb\u30c9\u3057\u3066\u3044\u308b Shape \u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 49, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ed78f2a3-18af-4f13-9705-e9b9eca959ae": {"__data__": {"id_": "ed78f2a3-18af-4f13-9705-e9b9eca959ae", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "56ad45a3-f3cb-4aeb-b883-b9d54843d513", "node_type": null, "metadata": {}, "hash": "784419d8750230ce46da874caf2e9ab3666fdbf6c4881e8b074df279970f40cc"}}, "hash": "25921c4157fc9b827c1b59c8ef99e9f729f15d48f9277936a3dea6eb5312d961", "text": "ART \u95a2\u4fc2", "start_char_idx": 0, "end_char_idx": 6, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "45aadffd-70a5-4839-92f9-6a8f5f60e930": {"__data__": {"id_": "45aadffd-70a5-4839-92f9-6a8f5f60e930", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1149b717-c8ec-41ff-8bb2-a8c860e1b122", "node_type": null, "metadata": {}, "hash": "6d5b0b2c49192297bc6a62195c92c7bf3b421d5184499932ee7a81bb0dd96674"}}, "hash": "3c82a91e8dcd1c12f6d0765e77fb5c16885a585ff84995b790538f139b0a9d04", "text": "getcolorTable method\n\ncolorTable\u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 35, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0ecd9cf8-ce03-4f27-8346-be248bb2b66a": {"__data__": {"id_": "0ecd9cf8-ce03-4f27-8346-be248bb2b66a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "aa0b9af2-ebf7-4edb-b567-c90e5d5932b5", "node_type": null, "metadata": {}, "hash": "b0d2ef577dc09063407228d9a60bb10a1651c1def31666ef28c65600069fd579"}}, "hash": "dfcbc084b2bd1f7b631e24fcc20d3c58d1c49b3d698583597e565b2b8b0bae47", "text": "getnextShapeIndexListDXY method\n\nindex \u3092\u6307\u5b9a\u3057\u3066\u3001nextShapeIndexList \u306e d, x, y \u3092\u8fd4\u3059\n\n\u5f15\u6570\n\n index\n\n\u8fd4\u5024\n\n d\n x\n y", "start_char_idx": 0, "end_char_idx": 115, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "76a79005-725c-4eeb-a2cb-d05bb8a0cb88": {"__data__": {"id_": "76a79005-725c-4eeb-a2cb-d05bb8a0cb88", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f12dbc0f-04f1-408f-b9c4-6b5eafb63498", "node_type": null, "metadata": {}, "hash": "5e85f58fc650effe7c4fe86eab16f31bfeba60f4279413cc48cb513bc367bbd3"}}, "hash": "230ec558e5c611e7036407fe5254afa9dc4277b04986c1e625c1acb303a69bc9", "text": "\u30b2\u30fc\u30e0\u30bf\u30fc\u30f3\u9032\u884c\u95a2\u4fc2\u30e1\u30bd\u30c3\u30c9", "start_char_idx": 0, "end_char_idx": 14, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d04b1468-78b1-4115-855e-de536d9f0c9f": {"__data__": {"id_": "d04b1468-78b1-4115-855e-de536d9f0c9f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "764e76f4-d0e9-4e94-9570-fbca5547244e", "node_type": null, "metadata": {}, "hash": "11b9f106ee17cb0c9143a08e3321ea6c125a14a83473beb9a810123ea6a09bcd"}}, "hash": "5cc2e105e13627627db1a8852f8b7bfed4468791758590e6ac7c0e62879d6271", "text": "mergePiece method\n\n\u753b\u9762\u30dc\u30fc\u30c9\u306b\u56fa\u7740\u3057\u305f\u30c6\u30c8\u30ea\u30df\u30ce\u3092\u66f8\u304d\u8fbc\u3080", "start_char_idx": 0, "end_char_idx": 39, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c4e7b5cd-3352-42a8-983d-494bcf6582a1": {"__data__": {"id_": "c4e7b5cd-3352-42a8-983d-494bcf6582a1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dfa154f0-f996-4e89-bc94-d40c9bd718e1", "node_type": null, "metadata": {}, "hash": "cd2c8330e7aa0da05536db4bc139078f6a753fa761639cbbd85932877ab55c7b"}}, "hash": "aca0c167e81a1ae7a03279df6358a93ff332efef4676ffcc12ac97b199bb36dd", "text": "getNewShapeIndex method\n\n\u6b21\u306e\u30c6\u30c8\u30ea\u30df\u30ce\u306e index \u53d6\u5f97", "start_char_idx": 0, "end_char_idx": 42, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a3a7149a-804f-4666-8986-1cd855092f7d": {"__data__": {"id_": "a3a7149a-804f-4666-8986-1cd855092f7d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5f47e28e-8f87-443e-b11d-00173bc03553", "node_type": null, "metadata": {}, "hash": "a4465c9daac4376a7306ddc2e0129816316e4f3b1b192aaebd9fa9624dd61966"}}, "hash": "f1c2670233ac328f55bd331eca3de450b80c6ac1a2405553d71cbc2d2515a24c", "text": "createNewPiece method\n\n\u753b\u9762\u30dc\u30fc\u30c9\u4e0a\u306b\u65b0\u3057\u3044\u30c6\u30c8\u30ea\u30df\u30ce\u306e\u914d\u7f6e\u3002\u914d\u7f6e\u3067\u304d\u306a\u304b\u3063\u305f\u3089 False \u3092\u8fd4\u3059\u3002", "start_char_idx": 0, "end_char_idx": 62, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "78af704b-28bf-400e-ab15-0860f9ff21f0": {"__data__": {"id_": "78af704b-28bf-400e-ab15-0860f9ff21f0", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a4663894-f9b2-4950-bffc-f07ffb9a0093", "node_type": null, "metadata": {}, "hash": "434b8b950ffa15fefa02e9a47f4b174ab46c0564fa50921622d716b554710fee"}}, "hash": "3f5425626ddf5735f3acc2a112c9118bd136b8eee3d0bc762c80306c8ed741d4", "text": "tryMoveNext method\n\ndirection \u65b9\u5411\u3067 x,y \u30782\u56de\u914d\u7f6e\u3057\u3066\u52d5\u304b\u305b\u306a\u304b\u3063\u305f\u3089 Reset", "start_char_idx": 0, "end_char_idx": 59, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c6701200-393e-4d5f-9fc1-4ecb8bef309f": {"__data__": {"id_": "c6701200-393e-4d5f-9fc1-4ecb8bef309f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "cfaf86ce-55f8-4538-96ed-3fe4df0deb58", "node_type": null, "metadata": {}, "hash": "2c31eeded8b9936fa0892563efe1768402fdf6aa9a881863dda7335ecc6a0137"}}, "hash": "ab5d3b6c58a45d3ecc90fd7dfa1c7182705f2df86b61e90eb711c0e3ab185974", "text": "exchangeholdShape method\n\nHOLD \u5165\u308c\u66ff\u3048", "start_char_idx": 0, "end_char_idx": 35, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a9c9ac03-52ba-4828-a891-4f63dcf7e4ea": {"__data__": {"id_": "a9c9ac03-52ba-4828-a891-4f63dcf7e4ea", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8fca467c-aba7-4536-8adc-80e67a334b58", "node_type": null, "metadata": {}, "hash": "1a29f18f1f1c2d76eab9da4b167f037726f0e194bc552e63aa14686bb50927ff"}}, "hash": "817e1024b87ee491a3503da3851b549cc5cfb4e15bc52b5a05f05768cdca07f4", "text": "removeFullLines method\n\n\u753b\u9762\u30dc\u30fc\u30c9\u306e\u6d88\u53bb\u3067\u304d\u308b\u30e9\u30a4\u30f3\u3092\u63a2\u3057\u3066\u6d88\u53bb\u3057\u3001\u753b\u9762\u30dc\u30fc\u30c9\u3092\u66f4\u65b0\u3001\u305d\u3057\u3066\u6d88\u3057\u305f Line \u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 70, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c9b38449-e0cc-4a69-a302-65784caaca9c": {"__data__": {"id_": "c9b38449-e0cc-4a69-a302-65784caaca9c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f52f19e2-8471-4e77-bc32-a7f01b22e2a3", "node_type": null, "metadata": {}, "hash": "29c83fac7a58d5f5d12b09799c73d7479e946d920cc0a44e48c6da365debf6f9"}}, "hash": "dd94461e2dde6bff079b09d6fb7e947260af02fa26e08846374a09b159dff646", "text": "\u30c6\u30c8\u30ea\u30df\u30ce\u914d\u7f6e\u78ba\u8a8d\u95a2\u4fc2\u30e1\u30bd\u30c3\u30c9", "start_char_idx": 0, "end_char_idx": 15, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "236fce0f-14ec-45a2-98c7-63852575335f": {"__data__": {"id_": "236fce0f-14ec-45a2-98c7-63852575335f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9556f22a-8c45-4dcc-89a7-fc8d772fa2c2", "node_type": null, "metadata": {}, "hash": "e3ff832b1aef6eab2341c0ed6f6beef8d5c939cbf79ae7862633700a90693004"}}, "hash": "1cea94d706310aa3316075fd814878b4fe34136bd4fc117d15e1eba631356da9", "text": "tryMoveCurrent method\n\n\u30c6\u30c8\u30ea\u30df\u30ce\u3092 direction \u65b9\u5411\u3067 x,y \u306b\u52d5\u304b\u305b\u308b\u304b\u3069\u3046\u304b\u78ba\u8a8d\u3059\u308b\n\u52d5\u304b\u305b\u306a\u3044\u5834\u5408 tryMove \u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3044 False \u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 95, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b6b19753-0021-4092-92a5-82c6385d1ea7": {"__data__": {"id_": "b6b19753-0021-4092-92a5-82c6385d1ea7", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "667fe628-926a-4bbd-9bae-3031da839aa3", "node_type": null, "metadata": {}, "hash": "5ca4da78eae6572b20c5694b41d7459c5a736003169b4ed69bcba288634bf9ab"}}, "hash": "b9606100fc6c56e7a0c9eed521c92b05af8a7eb7ea58f126f424cc0a518d3bd5", "text": "tryMove method\n\ndirection (\u56de\u8ee2\u72b6\u614b)\u306e\u30c6\u30c8\u30ea\u30df\u30ce\u5ea7\u6a19\u914d\u5217\u3092\u53d6\u5f97\u3057\u3001\u305d\u308c\u3092x,y\u306b\u914d\u7f6e\u53ef\u80fd\u304b\u5224\u5b9a\u3059\u308b\n\u914d\u7f6e\u3067\u304d\u306a\u3044\u5834\u5408 False \u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 82, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3677f763-add2-4a4e-a9bc-3285c05feea5": {"__data__": {"id_": "3677f763-add2-4a4e-a9bc-3285c05feea5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "343bd849-6f9e-41fc-a6b5-fa20ae31b338", "node_type": null, "metadata": {}, "hash": "a58fa80183ff8819b7f618ebf115a9d224a8ef6e2ee381d532d205f9660554ec"}}, "hash": "fba7c94afc1e5304482dcdee96196e133be2f18c3175dd24df5a6d5349afa619", "text": "moveDown method\n\n\u30c6\u30ce\u30ea\u30df\u30ce\u30921\u3064\u843d\u3068\u3057\u6d88\u53bb\u30e9\u30a4\u30f3\u3068\u30c6\u30c8\u30ea\u30df\u30ce\u843d\u4e0b\u6570\u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 45, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e906b892-59c3-47ea-8db5-9b62513213dd": {"__data__": {"id_": "e906b892-59c3-47ea-8db5-9b62513213dd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5d2e75cd-1c01-4bf5-a23c-32904cb3f9d4", "node_type": null, "metadata": {}, "hash": "7ebed55e287d9155302ba42d883fd9924f3944cc5af2ec380e9b552253666f80"}}, "hash": "ed3a7b62b389066003a43683600c3ddc9b4716e08ad1846571d70938c3eb69c1", "text": "dropDown method\n\n\u30c6\u30c8\u30ea\u30df\u30ce\u3092\u4e00\u756a\u4e0b\u307e\u3067\u843d\u3068\u3057\u6d88\u53bb\u30e9\u30a4\u30f3\u3068\u30c6\u30c8\u30ea\u30df\u30ce\u843d\u4e0b\u6570\u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 48, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6c060f29-393f-4866-9884-d6732a831213": {"__data__": {"id_": "6c060f29-393f-4866-9884-d6732a831213", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1cb13e86-3aec-4ca4-8226-5155bf18f1d8", "node_type": null, "metadata": {}, "hash": "47fa02b6df2657ed01ea516efd5299b6db2dc340b2a2d2e67eaf0261cc732679"}}, "hash": "990e0f8c44856872c5d86bb61e2a85a8d6d5dd06ae75bfcc1879037a6d03c7a5", "text": "moveLeft method\n\n\u5de6\u3078\u30c6\u30c8\u30ea\u30df\u30ce\u30921\u3064\u52d5\u304b\u3059\n\u5931\u6557\u3057\u305f\u3089 False \u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 46, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "be92606c-f3e3-4dc0-8a4f-c9095ab46d10": {"__data__": {"id_": "be92606c-f3e3-4dc0-8a4f-c9095ab46d10", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "12bbab1f-2548-4095-8f24-24acf4f783cb", "node_type": null, "metadata": {}, "hash": "5b40d125df82c5a22180caf36236c844b7498390f9f18e90d6fa8dbc9077f2fe"}}, "hash": "be61fb49971cf3b76113be7ce1974e4583506601e421fa1e80b8b6fecd6891e3", "text": "moveRight method\n\n\u53f3\u3078\u30c6\u30c8\u30ea\u30df\u30ce\u30921\u3064\u52d5\u304b\u3059\n\u5931\u6557\u3057\u305f\u3089 False \u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 47, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a80a896e-df16-444e-ba40-7e566075f3f7": {"__data__": {"id_": "a80a896e-df16-444e-ba40-7e566075f3f7", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "91c987ce-90bd-4d65-a079-868c90a62b4e", "node_type": null, "metadata": {}, "hash": "fb891ffaca411cd8e963f94b40fe583538edbc61d866121d28d724485a019882"}}, "hash": "ca8ddf63fbd6e64609eeb6431328c1bf85b4c2925281264d44b7a3100fbfb3e2", "text": "rotateRight method\n\n\u53f3\u56de\u8ee2\u3055\u305b\u308b\n\u5931\u6557\u3057\u305f\u3089 False \u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 42, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bb09d21a-e0ce-4bd4-b30e-71b1502184db": {"__data__": {"id_": "bb09d21a-e0ce-4bd4-b30e-71b1502184db", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ca6aa865-a510-45fb-a604-16484692ca9c", "node_type": null, "metadata": {}, "hash": "587a2b3af8d6225b4e15a184efcd8e5c119179eeca69fb0cb581290e156c1010"}}, "hash": "143c46ea9efd95593692ed40b15caa10fdba16b8d7580d0a4afc09f57bb87ab6", "text": "rotateLeft method\n\n\u5de6\u56de\u8ee2\u3055\u305b\u308b\n\u5931\u6557\u3057\u305f\u3089 False \u3092\u8fd4\u3059", "start_char_idx": 0, "end_char_idx": 41, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "007f28db-1a5c-40d3-919b-4d993ff0d192": {"__data__": {"id_": "007f28db-1a5c-40d3-919b-4d993ff0d192", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "0b151f23-6052-4c2b-9730-3c0797a30e9a", "node_type": null, "metadata": {}, "hash": "f0b58ad6f1427a4ec4ea864f3b398f5297688e22ec4a243f7a5055031b91ee15"}}, "hash": "65933d35747751541211c2c417d3a0eba4e9de50f229db76263f76918c3131ae", "text": "\u521d\u671f\u914d\u7f6e\u95a2\u4fc2\u30e1\u30bd\u30c3\u30c9", "start_char_idx": 0, "end_char_idx": 10, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d44e0165-c1b2-4295-9dcc-bf9de3a9fd06": {"__data__": {"id_": "d44e0165-c1b2-4295-9dcc-bf9de3a9fd06", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "86f9492c-a828-4b56-928e-2d9092ec3ca8", "node_type": null, "metadata": {}, "hash": "071fa4ac28874ce4176f3fabae0c943514121b8dadd7c277d3cc43f3409457fa"}}, "hash": "545c9414376f0544bf7a8a348a4fa6d06eff58e64f66c24423c66ec244aa5f0f", "text": "clear method\n\n\u753b\u9762\u30dc\u30fc\u30c9\u3068\u73fe\u30c6\u30c8\u30ea\u30df\u30ce\u60c5\u5831\u3092\u30af\u30ea\u30a2", "start_char_idx": 0, "end_char_idx": 32, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f8833e02-c260-4885-8532-49ed310cac67": {"__data__": {"id_": "f8833e02-c260-4885-8532-49ed310cac67", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f7d6244b-f7d4-456f-923f-621bc30a84ae", "node_type": null, "metadata": {}, "hash": "23904481f0c8040736535212bb54472f586452051bb2d351f5dad4843bcf6896"}}, "hash": "e0f732c56e8f163a40b3575308c6deafa2b1506e20663bcb7574abc59fb63c17", "text": "addobstacle method\n\n\u521d\u671f\u969c\u5bb3\u7269\u914d\u7f6e\u3002Level3 Level4 \u7528\u3002", "start_char_idx": 0, "end_char_idx": 44, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "963f875d-783b-4902-9e2b-433010ef739a": {"__data__": {"id_": "963f875d-783b-4902-9e2b-433010ef739a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e3d1d171-77c2-4675-9891-7ec48fbabc91", "node_type": null, "metadata": {}, "hash": "66b8d0b19164c8c43e57c6d258d3723e82ae63b3845f72ee84964852bf1280c6"}}, "hash": "4814ba22a30e0b72cb228af87877808100083b15f645bbc29feb75f490398f19", "text": "Tetris Game docker", "start_char_idx": 0, "end_char_idx": 18, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8719fd0e-5005-4414-bf3c-41d6a3057de9": {"__data__": {"id_": "8719fd0e-5005-4414-bf3c-41d6a3057de9", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "aa6d1cbc-a686-4d84-93ba-d2a2cb880313", "node_type": null, "metadata": {}, "hash": "15d836ad4f6cb4a5fd1a28a8ad4cd660d72f7ac94821c12beb6e5df3c9674d81"}}, "hash": "0d4bc5ff76aeb03741ba026d05948711db115e1f40d48b83fa28cea50d96ae87", "text": "step0. docker \u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\n\nInstall Docker Engine on Ubuntu \nInstall Docker Desktop on Mac \nInstall Docker Desktop on Windows", "start_char_idx": 0, "end_char_idx": 122, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "00c06687-6593-44db-9462-6ec51c254b20": {"__data__": {"id_": "00c06687-6593-44db-9462-6ec51c254b20", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "972df85b-4215-4c8a-b4c9-4b3545e8d879", "node_type": null, "metadata": {}, "hash": "c278188233ffe3edc432c541c1e62be795209a98bc92a4f9475563b47681d033"}}, "hash": "3c1c813ce4f0e160086922b89dae92ccbf2d37dcf06126158653f016047d736d", "text": "step1. docker \u30b3\u30f3\u30c6\u30ca\u3092\u8d77\u52d5\u3059\u308b\n\ntetris \u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u4ee5\u4e0b\u3092\u5b9f\u884c\u3059\u308b\u3002\n\n```\ndocker-compose up\n```\n\n`pytorch`\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u30b3\u30f3\u30c6\u30ca\u3092\u4f7f\u3044\u305f\u3044\u5834\u5408\u3001\u4e0a\u8a18\u306e\u4ee3\u308f\u308a\u306b\u4ee5\u4e0b\u3092\u5b9f\u884c\u3059\u308b\u3002\n\n```\ndocker-compose -f docker-compose.pytorch.yaml up\n```", "start_char_idx": 0, "end_char_idx": 177, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0c575bac-b8db-4ea8-abc2-0b512363d662": {"__data__": {"id_": "0c575bac-b8db-4ea8-abc2-0b512363d662", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3d5eafa6-af75-41f1-bf38-4d95162c8ebc", "node_type": null, "metadata": {}, "hash": "387f370518f9578b5577fd5c789ec83a33fb54df0ed709129ad66ed8961d9b3f"}}, "hash": "4b4a64dc8a85975c4108f20a7dda8d58781c0b9f4aa45baa1ba6613719b90e37", "text": "step2. docker \u30b3\u30f3\u30c6\u30ca\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\n\n\u30b3\u30f3\u30c6\u30ca\u5185\u306b\u5165\u3063\u3066\u30bf\u30fc\u30df\u30ca\u30eb\u3092\u8d77\u52d5\n\n```\ndocker exec -it tetris-container bash\n```", "start_char_idx": 0, "end_char_idx": 91, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "47443c42-8394-4e1a-a1ae-748f0d235d1e": {"__data__": {"id_": "47443c42-8394-4e1a-a1ae-748f0d235d1e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1ea78f64-0de3-408c-baed-69f05b82be79", "node_type": null, "metadata": {}, "hash": "ba686df37fe49864ae31026384c4d0965445c069ba021a79b095450318087696"}}, "hash": "d96501dbd486be8ad3cad4af032c12740ef5a49053a10a674468e4d2f9e8243a", "text": "step3. \u8d77\u52d5\u30db\u30b9\u30c8 OS \u5074\u3067 GUI \u8d77\u52d5\u306e\u305f\u3081\u306e\u6e96\u5099\n\ndocker \u30b3\u30f3\u30c6\u30ca\u5185\u3067\u30c6\u30c8\u30ea\u30b9\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u3001GUI \u3092\u8868\u793a\u3055\u305b\u308b\u305f\u3081\u306b\u306f\u30db\u30b9\u30c8 OS \u5074\u3067x \u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 \nx \u30b5\u30fc\u30d0\u306e\u8d77\u52d5\u65b9\u6cd5\u306f\u4ee5\u4e0b\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\n- Windows\u2192\u3053\u3061\u3089\n- Linux\u2192", "start_char_idx": 0, "end_char_idx": 154, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7e115d34-80b1-444b-9a9b-cc54eca947cc": {"__data__": {"id_": "7e115d34-80b1-444b-9a9b-cc54eca947cc", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ff8a7032-6fbd-4cd7-89d1-e7bdd1038adb", "node_type": null, "metadata": {}, "hash": "4cd77461e6d6a9838b892305385615c9fcee3fc56c1b6016b0b67adca2f573a9"}}, "hash": "b738435d6fc9e31364d471e8ff2a8bafd15a9b69ea200d81bcf4cc8eaab97bc1", "text": "step3'. GUI \u306a\u3057\u3067\u30c6\u30c8\u30ea\u30b9\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u5b9f\u884c\n\nGUI \u306e\u8d77\u52d5\u304c\u5fc5\u8981\u306a\u3044\u5834\u5408\u306b\u306f\u5148\u7a0b\u7acb\u3061\u4e0a\u3052\u305f\u30b3\u30f3\u30bd\u30fc\u30eb\u304b\u305f\u30b3\u30f3\u30c6\u30ca\u5185\u306e\u74b0\u5883\u5909\u6570`QT_QPA_PLATFORM`\u3092`offscreen`\u306b\u8a2d\u5b9a\u3057\u307e\u3059\u3002\n\n```\nexport QT_QPA_PLATFORM=offscreen\n```", "start_char_idx": 0, "end_char_idx": 147, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6055200f-29d8-477f-ac6b-e4bede10878a": {"__data__": {"id_": "6055200f-29d8-477f-ac6b-e4bede10878a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b643bfd3-6ec9-411d-a563-00ddadf3f830", "node_type": null, "metadata": {}, "hash": "b5a3c3f89c5ef669972135bf15b1729f1d0c4bcdfc3537916ba2b98f73c05cc1"}}, "hash": "0ef201675882819641d70ead25c0e2c5819c704f20f671ef2fd8811fba524df0", "text": "step4. \u30c6\u30c8\u30ea\u30b9\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u5b9f\u884c\n\n`/tetris`\u306b\u3044\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3001\u4ee5\u4e0b\u3092\u5b9f\u884c\n\n```\npython start.py\n```\n\n\u30c6\u30c8\u30ea\u30b9\u306e\u753b\u9762\u304c\u8868\u793a\u3055\u308c\u308c\u3070\u7121\u4e8b\u5b8c\u4e86\u3067\u3059\u3002", "start_char_idx": 0, "end_char_idx": 93, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4cc49e02-40a2-48f8-88b6-76b37c9bdd81": {"__data__": {"id_": "4cc49e02-40a2-48f8-88b6-76b37c9bdd81", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b0f9fcc2-bf2b-4a6c-821c-83f09d8d90ed", "node_type": null, "metadata": {}, "hash": "394963175d4a7b49acc42265681581ef635ef0ab34624bc0f88e72d1b87b3c7f"}}, "hash": "fecbeea9ebef5034b05cc0dcf4f6c9683166d336dae96eaf23ed7ee2a3ddf85b", "text": "\u30b3\u30f3\u30c6\u30ca\u306e\u505c\u6b62\n\n\u30db\u30b9\u30c8 OS \u5074\u306e tetris \u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u304b\u3089\u4ee5\u4e0b\u3092\u5b9f\u884c\u3059\u308b\u3002\n\n```\ndocker-compose stop\n```\n\n\u3053\u306e\u5834\u5408\u306b\u306f\u3001\u30b3\u30f3\u30c6\u30ca\u306f\u524a\u9664\u3055\u308c\u305a\u306b\u6b8b\u308a\u307e\u3059\u3002", "start_char_idx": 0, "end_char_idx": 96, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f6db1301-4642-4407-b005-e75982801961": {"__data__": {"id_": "f6db1301-4642-4407-b005-e75982801961", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5130e796-5a64-40a5-a8c0-2a4354e451e6", "node_type": null, "metadata": {}, "hash": "9de430106dfa3a13e6f35b87a9675c9aa32b92859e7562acecd24bcab1f2e3e5"}}, "hash": "790ef6c1b1174ce6151e7ffbeddf87ca21d2ebc07ecb08b8bf13bc508004a687", "text": "\u30b3\u30f3\u30c6\u30ca\u306e\u505c\u6b62\u3001\u524a\u9664\n\n\u30db\u30b9\u30c8 OS \u5074\u306e tetris \u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u304b\u3089\u4ee5\u4e0b\u3092\u5b9f\u884c\u3059\u308b\u3002\n\n```\ndocker-compose down\n```\n\n\u3053\u306e\u5834\u5408\u306b\u306f\u3001\u30b3\u30f3\u30c6\u30ca\u306f\u524a\u9664\u3055\u308c\u307e\u3059\u3002", "start_char_idx": 0, "end_char_idx": 95, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3fc35171-bc33-4726-af97-d66dd2070531": {"__data__": {"id_": "3fc35171-bc33-4726-af97-d66dd2070531", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f4a606d9-2489-4aa9-b68e-f476ddf8d5d3", "node_type": null, "metadata": {}, "hash": "692564c7fd013e6b89db41ebd2b9167a1482ef8acb38c5690d85239771c770f7"}}, "hash": "2046c26e6b11bd474b56c0e8521c6c1de15b8614504cd1f7348df6e9a01ac006", "text": "\u30b2\u30fc\u30e0\u7ba1\u7406\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u3064\u3044\u3066", "start_char_idx": 0, "end_char_idx": 15, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3b9b8a00-cdac-42d3-b5d0-c5e7f87345a6": {"__data__": {"id_": "3b9b8a00-cdac-42d3-b5d0-c5e7f87345a6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "28d7174d-852f-4886-8a8b-e63a916a144e", "node_type": null, "metadata": {}, "hash": "436781b55d4ca24a19cd6b402189dcad2bc5086192979209da398f69b9e3afd0"}}, "hash": "3a54543a7223236143c2d683c7944a75db0e01230c41f74d9721447511526cc0", "text": "start.py \u306e Option \u8a2d\u5b9a\n\n\u3053\u3053\u3067\u306f start.py \u3067\u6307\u5b9a\u3059\u308b option \u306b\u3064\u3044\u3066\u89e3\u8aac\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 58, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5fbdf692-ad99-4031-a69d-798144197097": {"__data__": {"id_": "5fbdf692-ad99-4031-a69d-798144197097", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "35dc437a-7626-40c7-8567-2a5856790c16", "node_type": null, "metadata": {}, "hash": "e974fd9aeb55a5ca57e83eab85c6e05aa618f8d99f6e3340c3ed5d908442407a"}}, "hash": "e69258ecfd09dac9c43cd8d9feb273e76cecc7c2f5199a322de703c1a5574f99", "text": "-m --mode \u30e2\u30fc\u30c9\n default : \u30eb\u30fc\u30eb\u30d9\u30fc\u30b9\n train : AI\u5b66\u7fd2\n predict : AI \u63a8\u8ad6\uff08\u4e88\u6e2c\u5b9f\u884c)\n predict_sample : AI MLP \u63a8\u8ad6\uff08\u4e88\u6e2c\u5b9f\u884c)\n predict_sample2 : AI DQN \u63a8\u8ad6\uff08\u4e88\u6e2c\u5b9f\u884c)\n keyboard : \u30ad\u30fc\u30dc\u30fc\u30c9\u64cd\u4f5c\n gamepad : \u30b2\u30fc\u30e0\u30d1\u30c3\u30c9\u64cd\u4f5c", "start_char_idx": 0, "end_char_idx": 198, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9c38a9cf-92ca-492e-bf14-e332287c02ad": {"__data__": {"id_": "9c38a9cf-92ca-492e-bf14-e332287c02ad", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "48c58cf9-dd43-4193-aa02-f86073982a26", "node_type": null, "metadata": {}, "hash": "8576def2aef913753e3715ce87e695f6bc3ec6a6c5a2eba6c4a10cbb3202df5d"}}, "hash": "9ffe6f35a1b9b2e703ca1e1d77d7c8a0d56613dca63a169f4162a13f7cd6dc31", "text": "-l --game_level\u30ec\u30d9\u30eb\n 1 : Level 1 \u56fa\u5b9a\u30c6\u30c8\u30ea\u30df\u30ce\n 2 : Level 2 \u30e9\u30f3\u30c0\u30e0\u30c6\u30c8\u30ea\u30df\u30ce\n 3 : Level 3 \u521d\u671f\u30d6\u30ed\u30c3\u30af\u3042\u308a\u30c6\u30c8\u30ea\u30df\u30ce\n 4 : Level 4 \u521d\u671f\u30d6\u30ed\u30c3\u30af\u3042\u308a\u30c6\u30c8\u30ea\u30df\u30ce 0.001\u79d2\u66f4\u65b0", "start_char_idx": 0, "end_char_idx": 137, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2ef6c2b4-8a75-4214-97a7-ba78b4f7fcc8": {"__data__": {"id_": "2ef6c2b4-8a75-4214-97a7-ba78b4f7fcc8", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "99a013c1-3b3a-4f1b-a656-9e249c618656", "node_type": null, "metadata": {}, "hash": "52075d3d991c611feb7cb648ef17f29f376b15979559fd031c74083a6817f44f"}}, "hash": "59774ca0333a29815c0500ccb4a66570c2e129e839d2306887245432cff15ed7", "text": "-d --drop_interval \u66f4\u65b0\u9593\u9694\n default => 1000 (=1\u79d2)\n ms \u6307\u5b9a\n \u203b \u30c6\u30c8\u30ea\u30df\u30ce\u3092 DROP \u3059\u308c\u3070 \u3053\u306e\u6642\u9593\u5f85\u3066\u3070\u6b21\u306e\u30c6\u30c8\u30ea\u30df\u30ce\u304c\u51fa\u308b\u304c\u3001\u964d\u4e0b\u3060\u3051\u3055\u305b\u305f\u5834\u5408\u306f\u6b21\u306e\u64cd\u4f5c\u304c\u3067\u304d\u308b\u307e\u3067\u3053\u306e\u6642\u9593\u5206\u505c\u6b62\u3059\u308b\u3002\n \u203b Level 4\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u52b9", "start_char_idx": 0, "end_char_idx": 162, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5b87a716-610c-4a52-9706-58146e9b5f5b": {"__data__": {"id_": "5b87a716-610c-4a52-9706-58146e9b5f5b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "73b731ff-ee83-48d5-82c7-3ac9cc4dd38c", "node_type": null, "metadata": {}, "hash": "ea0391e57ceed0e109ab8437e3ca139d55023d1963d31fb1fc56cc9393377da6"}}, "hash": "72cea9ef365cce8844f23925e9263aba691ee1592b2a3092ef65194129ff3286", "text": "-t --game_time \u30b2\u30fc\u30e0\u6642\u9593\n default => 180\n \u79d2\u6307\u5b9a\n -1 \u3067\u5236\u9650\u306a\u3057 \u5b66\u7fd2\u6642\u306f -1 \u6307\u5b9a\u63a8\u5968\u3002", "start_char_idx": 0, "end_char_idx": 74, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "1349852d-6cd2-4a66-b4a1-b258a4147807": {"__data__": {"id_": "1349852d-6cd2-4a66-b4a1-b258a4147807", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "584d5baf-1356-46c0-a46e-860aec0e8007", "node_type": null, "metadata": {}, "hash": "151b08f3d0949616a4f13c0aab8044612f90900d6677f570ca464c48a5aaed26"}}, "hash": "79253432ef348d97fb1b59affd83325efd91f9f64f72a0120b45a0747683a3c7", "text": "-r --random_seed \u4e71\u6570\u306e\u30bf\u30cd\n \u6574\u6570\u6307\u5b9a\u3002\u7279\u5225\u306b\u5fc5\u8981\u306a\u3051\u308c\u3070\u6307\u5b9a\u3057\u306a\u3044\u3002", "start_char_idx": 0, "end_char_idx": 47, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "019057ca-a153-4f2f-bd21-65fbb4dfcce6": {"__data__": {"id_": "019057ca-a153-4f2f-bd21-65fbb4dfcce6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "571308b4-3cd1-47f6-85b4-faac592e0a46", "node_type": null, "metadata": {}, "hash": "cb0c8fb554b1f59b3239c019bd39c5fe8e93bc5ac8ada325506a1eb7245b8f74"}}, "hash": "4caa103d9b1b3626e3a831a4c023d45edd663a5f47d371fcb82ef1923cded9f9", "text": "-f --resultlogjson\n default => result.json\n \u7d50\u679c\u306e json \u30d5\u30a1\u30a4\u30eb\u6307\u5b9a", "start_char_idx": 0, "end_char_idx": 65, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "40d8ea74-d247-413f-9230-20c95127dcdb": {"__data__": {"id_": "40d8ea74-d247-413f-9230-20c95127dcdb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "bdacaa2a-bd38-4606-bbef-cd07c48c7869", "node_type": null, "metadata": {}, "hash": "c87d98e80b3bd36c01ce9e9d3a42264becf8effe8908a9cfe6cb22aa92903f89"}}, "hash": "e8e10a221b20ed700cd1a9cdbcf531d67c95b6a798b7d21f385a2619016a24d3", "text": "--train_yaml\n default => config/default.yaml\n AI \u5b66\u7fd2\u63a8\u8ad6\u6642 (train, predict)\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u6307\u5b9a", "start_char_idx": 0, "end_char_idx": 86, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "71f70f07-2860-4a61-b3a1-372762fedfb8": {"__data__": {"id_": "71f70f07-2860-4a61-b3a1-372762fedfb8", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "0d846675-3005-40e5-bc51-bba6923267dd", "node_type": null, "metadata": {}, "hash": "1c280be2e432823afb829681364800e722da61277af2f606bca09adb793ef042"}}, "hash": "82cac1b23006cb6cd3dac4e295cf5c5bcc74c79befc75c459bcf76f777729438", "text": "--predict_weight\n default => outputs/latest/best_weight.pt\n AI \u63a8\u8ad6\u6642 (predict) \u306e\u5b66\u7fd2\u7d50\u679c weight \u30d5\u30a1\u30a4\u30eb\u6307\u5b9a", "start_char_idx": 0, "end_char_idx": 102, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8285f94c-d182-4f5e-b8ea-8916ebc54544": {"__data__": {"id_": "8285f94c-d182-4f5e-b8ea-8916ebc54544", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e91a5a0e-ac47-48f6-bae9-5b7b2c6c39c6", "node_type": null, "metadata": {}, "hash": "73c9748471fb0f5e7760990af13556fc0f887c35f4e05dc9648db7707d468ade"}}, "hash": "90a35e151589b4b619ae11bda997e374c344c81df8d80aa9ed074a8a1c9674e1", "text": "Game_Manager Class\n\n\u3053\u3053\u3067\u306f game_manager.py \u306e Game_Manager Class \u3092\u89e3\u8aac\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 68, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0de6c6a7-1c6a-4840-8e96-e09d0d995e52": {"__data__": {"id_": "0de6c6a7-1c6a-4840-8e96-e09d0d995e52", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "555311ab-c836-4c20-a3dc-24efaf7ccace", "node_type": null, "metadata": {}, "hash": "8a859f5412a5231a1e885cad3c5db653d382ef0c3c5948f6833765b338a06067"}}, "hash": "912ffed6ebe37ad194228165c21edafffbe97bce9d78e6e600608f9185cf0d33", "text": "\u6982\u8981\n\n\u6700\u521d\u306b start.py \u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u3002\u3053\u306e\u30b2\u30fc\u30e0\u306e\u57fa\u672c\u7684\u306a\u52d5\u4f5c\u306f\u3053\u306e\u30af\u30e9\u30b9\u304b\u3089\u5404\u30af\u30e9\u30b9\u3001\u30e1\u30bd\u30c3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u884c\u308f\u308c\u308b\u3002", "start_char_idx": 0, "end_char_idx": 71, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c180cbf8-8012-4f58-a408-4b6a6072477a": {"__data__": {"id_": "c180cbf8-8012-4f58-a408-4b6a6072477a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d3396fc0-63bc-4aa5-95f9-6cd3ea4d174d", "node_type": null, "metadata": {}, "hash": "d7f1b32fda2f36456e99ab1cb83800698f862b727afbe378638703f9601646c7"}}, "hash": "a5c0a53a1a6ba27033cf61a3663b7e0810cfe4496ceec05a39a7598a6db0ff2c", "text": "\u521d\u671f\u5316\n\n\\_\\_init\\_\\_ \u306b\u3066 Option \u3084\u521d\u671f\u8a2d\u5b9a\u5024\u3092\u5404\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5909\u6570\u306b\u683c\u7d0d\u3059\u308b\u3002\n\\_\\_init\\_\\_ \u306b\u3042\u308b initUI \u30e1\u30bd\u30c3\u30c9\u306b\u3066\u3001Window \u751f\u6210\u3001\u4f4d\u7f6e\u8a2d\u5b9a\u8868\u793a\u304c\u884c\u308f\u308c\u308b\u3002\u3053\u3053\u3067 SidePanel Class, Board Class \u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3082\u751f\u6210\u3055\u308c\u308b\u3002\ninitUI \u306e\u4e2d\u306e start \u30e1\u30bd\u30c3\u30c9\u3067\u3001\u30b9\u30b3\u30a2\u3001\u753b\u9762\u30dc\u30fc\u30c9\u3001\u4e88\u544a\u30c6\u30c8\u30ea\u30df\u30ce\u3001\u30b9\u30c6\u30fc\u30bf\u30b9\u30d0\u30fc\u304c\u30af\u30ea\u30a2\u3055\u308c\u308b\u3002\u307e\u305f\u3001\u3053\u306e\u4e2d\u3067 timerEvent \u3082\u751f\u6210\u3055\u308c\u308b\u3002timerEvent \u306e\u9593\u9694\u306f\u4e0a\u8a18\u306e drop_interval \u3068\u306a\u308b\u3002\u3053\u308c\u306b\u3088\u308a\u6b21\u306e\u64cd\u4f5c\u304c\u53ef\u80fd\u3068\u306a\u308b\u3002", "start_char_idx": 0, "end_char_idx": 287, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e3ba026b-5908-4c73-9833-67cb82a75746": {"__data__": {"id_": "e3ba026b-5908-4c73-9833-67cb82a75746", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "91fa9261-3de4-42a5-b5b6-d2559d0006c2", "node_type": null, "metadata": {}, "hash": "386477466fb7f3e20a3d5559e4439afecd6eee65919c43b1750f1c02cff41097"}}, "hash": "984c1d4840d965ae471bfd5828b4464c370a94599e9e7e45bf6a37c9d770508c", "text": "timerEvent method\n\n\u4e0a\u8a18\u306e\u521d\u671f\u5316\u306b\u3088\u308a timerEvent \u304c drop_interval \u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u3066\u6307\u5b9a\u3055\u308c\u305f\u9593\u9694\u3067\u5b9f\u884c\u3055\u308c\u308b\u3002\n\u3053\u306e Event \u306b\u3088\u308a\u30b2\u30fc\u30e0\u304c\u9032\u884c\u3057\u3066\u3044\u304f\u3002\n\u306a\u304a\u3001timerEvent \u30e1\u30bd\u30c3\u30c9\u5b9f\u884c\u4e2d\u306b drop_interval \u6307\u5b9a\u306e\u6642\u9593\u3092\u8d85\u3048\u3066\u3082\u3001\u6b21\u306e timerEvent \u306f\u767a\u751f\u3057\u306a\u3044\u3002\n\u3088\u3063\u3066\u3001drop_interval \u304c\u975e\u5e38\u306b\u77ed\u3044 (1ms \u306a\u3069 = Level 4) \u306e\u5834\u5408\u306f\u3001timerEvent \u306e\u30ed\u30b9\u304c\u591a\u767a\u3059\u308b\u3002\n\u305d\u3046\u3044\u3063\u305f\u30eb\u30fc\u30eb\u306e\u5834\u5408\u306f\u3044\u304b\u306b\u65e9\u304f timerEvent \u3092\u7d42\u4e86\u3055\u305b\u308b\u304b\u304c\u809d\u3068\u306a\u308b\u3002\n\ntimerEvent \u306b\u304a\u3044\u3066\u5404 mode \u306b\u5bfe\u5fdc\u3059\u308b block_controller.py (or block_controller_train*.py) \u306e GetNextMove \u304c\u547c\u3073\u51fa\u3055\u308c\u308b\u3002\n\u3053\u3053\u3067\u3001GameStatus \u304c GetNextMove \u306b\u5f15\u304d\u6e21\u3055\u308c\u3001\u5404\u81ea\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u6307\u793a\u3057\u305f\u64cd\u4f5c\u7d50\u679c\u304c nextMove \u5909\u6570\u306b\u683c\u7d0d\u3055\u308c\u308b\u3002\n\n\u3053\u306e\u7d50\u679c\u3092\u3082\u3063\u3066\u3001\u30c6\u30c8\u30ea\u30df\u30ce\u306e\u30db\u30fc\u30eb\u30c9\u3001\u6a2a\u79fb\u52d5\u3001\u56de\u8ee2\u3001\u843d\u4e0b\u3001\u964d\u4e0b\u51e6\u7406\u3092\u884c\u3046\u3002\n\n\u30db\u30fc\u30eb\u30c9\u306f\u30db\u30fc\u30eb\u30c9\u753b\u9762\u306e\u30c6\u30c8\u30ea\u30df\u30ce\u3068\u306e\u5165\u308c\u66ff\u3048\u3092\u884c\u3046\u3002\u305f\u3060\u3057\u3001\u30db\u30fc\u30eb\u30c9\u753b\u9762\u306b\u4f55\u3082\u306a\u3044\u5834\u5408\u306f\u30db\u30fc\u30eb\u30c9\u753b\u9762\u306b\u73fe\u30c6\u30c8\u30ea\u30df\u30ce\u3092\u5165\u308c\u3066 timerEvent \u3092\u7d42\u4e86\u3059\u308b\u3002\n\n\u6a2a\u79fb\u52d5\u306f\u753b\u9762\u30dc\u30fc\u30c9\u306e\u7aef\u3084\u30c6\u30c8\u30ea\u30df\u30ce\u306b\u3076\u3064\u304b\u308b\u3068\u505c\u6b62\u3059\u308b\u3002\n\n\u56de\u8ee2\u306f**\u53f3\u56de\u8ee2** (rotateRight)\u3067\u884c\u3044\u3001\u753b\u9762\u30dc\u30fc\u30c9\u306e\u7aef\u3084\u30c6\u30c8\u30ea\u30df\u30ce\u306b\u3076\u3064\u304b\u308b\u3068\u30a8\u30e9\u30fc\u3068\u306a\u308atimerEvent\u7121\u52b9\u3068\u306a\u308b\u306e\u3067\u8981\u6ce8\u610f\u3067\u3042\u308b\u3002\n\n\u964d\u4e0b (move down) \u51e6\u7406\u306e\u5834\u5408\u306f\u6307\u5b9a\u6570\u5206\u964d\u4e0b\u3055\u305b\u308b\u3002\n\n\u843d\u4e0b (drop down) \u51e6\u7406\u304c\u884c\u308f\u308c\u308b\u3068\u3001\u305f\u3060\u3061\u306b\u30c6\u30c8\u30ea\u30df\u30ce\u306f\u4e00\u756a\u4f4e\u3044\u3068\u3053\u308d\u307e\u3067\u843d\u3068\u3055\u308c\u3001\u30c6\u30c8\u30ea\u30df\u30ce\u306f\u56fa\u5b9a\u3055\u308c\u308b\u3002\n\n\u3044\u305a\u308c\u306b\u3057\u3066\u3082\u30c6\u30c8\u30ea\u30df\u30ce\u306e\u4e0b\u5074\u304c\u753b\u9762\u30dc\u30fc\u30c9\u4e0b\u9650\u304b\u30c6\u30c8\u30ea\u30df\u30ce\u306b\u5f53\u305f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3001\u6d88\u53bb\u30e9\u30a4\u30f3\u6570\u8a08\u7b97(moveDown)\u3068\u30b9\u30b3\u30a2\u8a08\u7b97(UpdateScore)\u304c\u5b9f\u65bd\u3055\u308c\u3001\u6b21\u306e timerEvent \u3067\u306f\u6b21\u306e\u30c6\u30c8\u30ea\u30df\u30ce\u304c\u51fa\u308b\u3002\n\u306a\u304a\u3001\u30b2\u30fc\u30e0\u30aa\u30fc\u30d0\u30fc\u306b\u306a\u308c\u3070\u30b2\u30fc\u30e0\u30aa\u30fc\u30d0\u30fc\u5206\u306e\u30b9\u30b3\u30a2\u3092\u6e1b\u3089\u3055\u308c\u308c\u3001\u753b\u9762\u30dc\u30fc\u30c9\u3092\u30af\u30ea\u30a2\u3057\u3066\u6b21\u306e timerEvent \u3068\u306a\u308b\u3002", "start_char_idx": 0, "end_char_idx": 963, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "885c5a0b-2e15-4c7d-9257-d9a01c458eba": {"__data__": {"id_": "885c5a0b-2e15-4c7d-9257-d9a01c458eba", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c2c25875-bcce-49a6-accd-80125c88ea8e", "node_type": null, "metadata": {}, "hash": "50d866b2f168b7330dd786a7a79263de8163254ff8bc6a307922d1aab06d3400"}}, "hash": "97a737ba3656432616e13de13a03bbb7a690c09d918bffc2b96839a68b063ec1", "text": "keyPressEvent method\n\n\u4e0b\u8a18\u30ad\u30fc\u64cd\u4f5c\u306b\u3088\u308a Event \u304c\u767a\u751f\u3057\u30c6\u30c8\u30ea\u30df\u30ce\u3092\u64cd\u4f5c\u3059\u308b\u3002\n\u306a\u304a\u3001GetNextMove \u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u3068\u3053\u3068\u306a\u308a**\u5de6\u56de\u8ee2** (rotateLeft) \u3067\u3042\u308b\u70b9\u306b\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3042\u308b\u3002\n\n| \u624b\u52d5\u64cd\u4f5c | PC\u64cd\u4f5c\u6e96\u62e0 | \u30b2\u30fc\u30e0\u6a5f\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u6e96\u62e0 |\n| ---- | ---- | ---- |\n| \u5b9f\u884c\u30b3\u30de\u30f3\u30c9 | python start.py -m keyboard | python start.py -m gamepad |\n| *up* key | **\u5de6\u56de\u8ee2** | \u843d\u4e0b |\n| *left* key | \u5de6\u306b\u79fb\u52d5 | \u5de6\u306b\u79fb\u52d5 |\n| *right* key | \u53f3\u306b\u79fb\u52d5 | \u53f3\u306b\u79fb\u52d5 |\n| *m* key | \u964d\u4e0b\uff08\u4e0b\u306b\u79fb\u52d5\uff09 | \u964d\u4e0b\uff08\u4e0b\u306b\u79fb\u52d5\uff09 |\n| *space* key | \u843d\u4e0b | **\u5de6\u56de\u8ee2** |\n| *P* key | Pause | Pause |\n| *c* key | hold | hold |", "start_char_idx": 0, "end_char_idx": 504, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "961b4e50-41d2-4353-9e78-885db2028a62": {"__data__": {"id_": "961b4e50-41d2-4353-9e78-885db2028a62", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "76a37b38-3207-45cd-bbda-1c8f78765275", "node_type": null, "metadata": {}, "hash": "b8c0ec821bdfdd47bb2200959ad5544de2db65560f7c72f1e99962416ae4f8b8"}}, "hash": "388638d7b5e393c5e4c51247dd0c8d4ae6dab36c4d29b93ef874acb4db0321fa", "text": "SidePanel Class\n\n\u3053\u3053\u3067\u306f game_manager.py \u306e SidePanel Class \u3092\u89e3\u8aac\u3059\uff52\u3002\n\u6a2a\u306e\u4e88\u544a\u30c6\u30c8\u30ea\u30df\u30ce\u3001\u304a\u3088\u3073\u30db\u30fc\u30eb\u30c9\u30c6\u30c8\u30ea\u30df\u30ce\u63cf\u753b\u753b\u9762 Class \u3067\u3042\u308b\u3002", "start_char_idx": 0, "end_char_idx": 100, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a7d5cd60-d35b-43c4-ad2d-469147d85e1d": {"__data__": {"id_": "a7d5cd60-d35b-43c4-ad2d-469147d85e1d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "50e94990-40c3-4321-9cfc-6aacfb48bc5d", "node_type": null, "metadata": {}, "hash": "63c74f5ccf5a989c745c97dfef5753563e6135ee36026ab512bf0c83a7fe62a1"}}, "hash": "356827cdad01a03c5f6b899e48c1bee7f904d834945125a68e86e8590ce11ea1", "text": "paintEvent method\n\n\u3053\u3053\u3067\u306f\u4e0a\u8a18\u306e\u3088\u3046\u306b 4\u3064\u306e\u4e88\u544a\u30c6\u30c8\u30ea\u30df\u30ce\u3092\u63cf\u753b\u3059\u308b\u3002\n\u307e\u305f\u3001\u4e0b\u306b\u30db\u30fc\u30eb\u30c9\u753b\u9762\u304c\u3042\u308a\u305d\u3053\u3067\u30db\u30fc\u30eb\u30c9\u3057\u305f\u30c6\u30c8\u30ea\u30df\u30ce\u3082\u8868\u793a\u3055\u308c\u308b\u3002\ntimerEvent \u3084 keyEvent \u306a\u3069\u306b\u3088\u308a\u547c\u3073\u51fa\u3055\u308c\u63cf\u753b\u3055\u308c\u308b\u3002", "start_char_idx": 0, "end_char_idx": 121, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7b7444e8-5e2c-4d2b-8d41-a5c7180e5747": {"__data__": {"id_": "7b7444e8-5e2c-4d2b-8d41-a5c7180e5747", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3b40b0c5-d27e-4717-9765-79254f86ca99", "node_type": null, "metadata": {}, "hash": "65254f68fafb7b3b397001f40c7b86718cb587bdda79595bea6153a304be1211"}}, "hash": "f8da3f3ba7f5d2b5da8518df0ed65182d70ef12c951850af040822babe179a16", "text": "Board Class\n\n\u3053\u3053\u3067\u306f game_manager.py \u306e Board Class \u3092\u89e3\u8aac\u3059\u308b\u3002\n\u30b2\u30fc\u30e0\u306e\u753b\u9762\u30dc\u30fc\u30c9\u304a\u3088\u3073\u30b9\u30c6\u30fc\u30bf\u30b9\u30d0\u30fc\u306e Class \u3067\u3042\u308b\u3002", "start_char_idx": 0, "end_char_idx": 86, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3454cfe3-51a9-40f2-b7d4-28efeb36b30b": {"__data__": {"id_": "3454cfe3-51a9-40f2-b7d4-28efeb36b30b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5a6656fd-78b4-4668-8c2f-a0181814e07d", "node_type": null, "metadata": {}, "hash": "0cd97796966adaea953b44d15be79cb5a12e08303a9f3825dc759e94403d0d8d"}}, "hash": "93167526363687976cde22385a8dc41913cd2c2c88d87f209c37ef7b961df762", "text": "paintEvent method\n\n\u3053\u3053\u3067\u306f\u7e2622,\u6a2a10\u306e\u753b\u9762\u30dc\u30fc\u30c9\u3092\u63cf\u753b\u3059\u308b\u3002\n\u56fa\u5b9a\u3055\u308c\u305f\u30c6\u30c8\u30ea\u30df\u30ce\u304a\u3088\u3073\u52d5\u4f5c\u4e2d\u306e\u30c6\u30c8\u30ea\u30df\u30ce\u3092\u63cf\u753b\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 71, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "34002b91-014c-4697-8737-4a15527847f5": {"__data__": {"id_": "34002b91-014c-4697-8737-4a15527847f5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8a0351b2-2b88-45ec-a4ef-77fa0ca33582", "node_type": null, "metadata": {}, "hash": "c47f4e9765b4c9fad64533acb94ae51e3f8bf2d141d1c826c3685847bf4cad72"}}, "hash": "76965c537be7710c56db298719a65c71d9bf7b9fe88c46a1ae0c6335b315c888", "text": "updateData method\n\n\u30b9\u30c6\u30fc\u30bf\u30b9\u30d0\u30fc\u306e\u6587\u5b57\u306e\u66f4\u65b0\u3092\u884c\u3046\u3002\n\u307e\u305f\u3001 game_time \u7d4c\u904e\u3001\u3082\u3057\u304f\u306f\u30d6\u30ed\u30c3\u30af\u6570\u4e0a\u9650\u306b\u9054\u3057\u305f\u3089\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u7d42\u4e86\u3057\u3001Result \u3092\u8868\u793a\u3059\u308b\u3002\n\u5b66\u7fd2\u30e2\u30fc\u30c9\u3067 game_time \u3092 -1 \u306b\u3057\u3066\u3044\u306a\u3044\u3068\u3001\u3053\u3053\u3067\u7d42\u4e86\u3057\u3066\u3057\u307e\u3046\u3002", "start_char_idx": 0, "end_char_idx": 135, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3b6bef66-ce49-4c09-8fc7-14270f1a72db": {"__data__": {"id_": "3b6bef66-ce49-4c09-8fc7-14270f1a72db", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2f1409cd-fc75-4462-be08-151a3d7f807b", "node_type": null, "metadata": {}, "hash": "39167b4a75b43775f38ddf33831aade18a1358c4c031ca090ec82a8dceaf3861"}}, "hash": "5a0648e28d9c725f9ca795f1b10536262bbe3dd73c2d4d727011eecd32f0c9dc", "text": "\u5b9f\u884c\u74b0\u5883(Mac\u306e\u5834\u5408)\n\nFinder\u2192Application\u2192Utility\u2192Terminal\u304b\u3089\u3001\u30bf\u30fc\u30df\u30ca\u30eb\u753b\u9762\u3092\u8d77\u52d5\u3057\u3066\u4ee5\u4e0b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3002\n\n```", "start_char_idx": 0, "end_char_idx": 81, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2c2f9276-e991-4f8c-8ce0-bd87ea6d42bf": {"__data__": {"id_": "2c2f9276-e991-4f8c-8ce0-bd87ea6d42bf", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "382c1175-574c-4da1-b8ba-e48946e55529", "node_type": null, "metadata": {}, "hash": "190877e6fa5e2d4a8c66cc81bf257cbd5df843bb71a7bd29c615c68d97297da8"}}, "hash": "dc20036dbae8d15e80e0c18c834bf8e150741e5353264f73b394d9fedc5ef1a5", "text": "install pyqt5 and NumPy\nbrew install python3\nbrew install pyqt5\nbrew install numpy\n#pip3 install pyqt5\n#pip3 install numpy", "start_char_idx": 0, "end_char_idx": 122, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c58d2cf1-6713-4d9a-9d37-6afa53baa3fd": {"__data__": {"id_": "c58d2cf1-6713-4d9a-9d37-6afa53baa3fd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "94c1534c-c2b4-48d4-9678-9c717953ff17", "node_type": null, "metadata": {}, "hash": "1e03a03190de3114e69abf6e9d02f97ba00d5bf743cd2f73d37a9d45c086c5a4"}}, "hash": "4d8c0a7f2c875242c3a5ecfac4c2d769ca0061d108afdecb533046959b95c7d6", "text": "install other packages\nbrew install git\n```\n\nMac(M1)\u74b0\u5883\u7b49\u3067\u306f`pip3 install pyqt5`\u3067\u30a8\u30e9\u30fc\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308b\u3002`brew`\u3092\u4f7f\u3046\u3053\u3068\u3067\u89e3\u6c7a\u3059\u308b\u3053\u3068\u304c\u3042\u308b\u3002 \nMac(M1)\u306bpip3 install pyqt5\u3067pyqt5\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3088\u3046\u3057\u3088\u3046\u3068\u3059\u308b\u3068\u30a8\u30e9\u30fc\u306b\u306a\u308b\uff08Preparing metadata (pyproject.toml) ... error\uff09 \n\n```\nbrew install pyqt5\n```\n\n`pytorch`\u3092\u4f7f\u3046\u5834\u5408\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3059\u308c\u3070OK \nMacBook Pro (Apple Silicon, M1 PRO, 2021) \u3067Python\u958b\u767a\u74b0\u5883\u3092\u6574\u3048\u308b #49 \nAI\u306b\u3064\u3044\u3066 \n\n```", "start_char_idx": 0, "end_char_idx": 355, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "48bf9617-e70d-4329-bdd5-b63b261e0103": {"__data__": {"id_": "48bf9617-e70d-4329-bdd5-b63b261e0103", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1095fffc-e023-454c-88da-e8c24bc28e82", "node_type": null, "metadata": {}, "hash": "3d22a333d758164bf30058bd301d9dfbfd0487d43064b2ebabc63f88e5837ee8"}}, "hash": "328db0d9d404bde5ad0368e647dcd812c57259316ba7d8b2e467c009aca263dc", "text": "install\npip3 install -U pip\npip3 install torch\npip3 install tensorboardX\npython3 -c \"import torch\"", "start_char_idx": 0, "end_char_idx": 98, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "cd8cbd8b-e585-4ef7-b12b-413e6b598c04": {"__data__": {"id_": "cd8cbd8b-e585-4ef7-b12b-413e6b598c04", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3bcfa11a-3d3d-4fff-bd31-a9cec14dbe9c", "node_type": null, "metadata": {}, "hash": "3c1a1dc3f0a8082e0d0dc9cb7a09c06d31b9ea6cfe106dda7df5a34a5c962e5d"}}, "hash": "1bf9298b663b38208b3e05df4a829b8affda9e1e5390d8754cc7c1b944cd297c", "text": "\u5b9f\u884c\u4f8b (\u8a73\u7d30\u306f\"AI\u306b\u3064\u3044\u3066\"\u30ea\u30f3\u30af\u53c2\u7167)\npython3 start.py -m train_sample -d 1 -l 2 -t -1\npython3 start.py -m predict_sample -l 2 --predict_weight weight/DQN/sample_weight.pt\n```\n\n\u3082\u3057\u4ed6\u306b\u3082\u8db3\u308a\u306a\u3044\u3053\u3068\u304c\u3042\u308c\u3070`pull request`\u9802\u3051\u308b\u3068\u52a9\u304b\u308a\u307e\u3059", "start_char_idx": 0, "end_char_idx": 200, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2842b791-dc81-4391-ae53-183965f45efb": {"__data__": {"id_": "2842b791-dc81-4391-ae53-183965f45efb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "0bc53677-2697-47b6-800f-89ff1da2f2f7", "node_type": null, "metadata": {}, "hash": "40565796c4ba0333fc06f00cc4e2755a9feea3980dadc5a93a3fdd4fa0f3cbde"}}, "hash": "e680d408d057b2a19030bf0e39b7136e5bc6f031659d7cfd4b2c8b24c1ad5aa0", "text": "\u5b9f\u884c\u74b0\u5883(Ubuntu/JetsonNano\u306e\u5834\u5408)\n\nNeed python3, PyQt5 and NumPy to be installed.\n\n```", "start_char_idx": 0, "end_char_idx": 79, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "73ce240b-3c09-48de-99f4-0194dc1faaf2": {"__data__": {"id_": "73ce240b-3c09-48de-99f4-0194dc1faaf2", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f4f00ff3-56fa-442d-8ef2-9c4ca4736376", "node_type": null, "metadata": {}, "hash": "a7c589c43a0bdc6c4fc8b343bfa65bf936099277a9889a18e2231ce8dd56a244"}}, "hash": "e09733aaa7039860844afdc7410f0756be2f827a60cf2c91227c7621fd433e49", "text": "install pyqt5 and NumPy\nsudo apt-get install -y python3-pip\npip3 install --upgrade pip\npip3 install numpy\npip3 install pyqt5\n```\n\n\u305d\u306e\u4ed6\u3001\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\n\n```\nsudo apt-get install -y git\n```\n\nubuntu20.04LTS\u4ee5\u964d\u306e\u5834\u5408\u306f`python`\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u3092\u5b9f\u884c\u3059\u308b\n\n```\nsudo apt install python-is-python3\n```\n\n\u305d\u306e\u5f8c\u306f\u3001\u5b9f\u884c\u65b9\u6cd5\u3092\u53c2\u7167", "start_char_idx": 0, "end_char_idx": 288, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6d444950-9e43-4284-9d89-6948cad48e74": {"__data__": {"id_": "6d444950-9e43-4284-9d89-6948cad48e74", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ab94c84e-faa3-46ad-b0cd-8954bc2ef260", "node_type": null, "metadata": {}, "hash": "6c836a899825d710e64c161858bbeed147fcc10edd93df6f301e87a7386e89ef"}}, "hash": "140784974be86dcafe455bccd67282877b8a9e45ef62f4a1925d87acf9e6603c", "text": "\u5b9f\u884c\u74b0\u5883(windows\u306e\u5834\u5408)\ndocker for windows\u3092\u4f7f\u3044\u307e\u3059\u3002", "start_char_idx": 0, "end_char_idx": 41, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c672c616-984e-4cb1-8d30-e8a926d7fe1c": {"__data__": {"id_": "c672c616-984e-4cb1-8d30-e8a926d7fe1c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "50f7803c-7efb-45d5-ba28-635155c5fc4f", "node_type": null, "metadata": {}, "hash": "c32124e42306b479c58f93cd249571547c7f57f6aa3461f59770d2148741ccee"}}, "hash": "ebe9abe690e7835f4c81ef9305242b8be7e44ce31b0dd809a1b6eba07684bbfe", "text": "step0. DockerDesktop\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\n\n\u4ee5\u4e0b\u3092\u53c2\u7167\u3059\u308b\u3002\nDockerDeskop \nWindows10\u7528Windows Subsystem for Linux\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb \u30ac\u30a4\u30c9\n\n\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6642\u306e\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u3002\nFAQ/Windows Docker install\u6642\u306e\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0", "start_char_idx": 0, "end_char_idx": 172, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "45b837a5-3b51-4f6f-9806-ce2f512426fa": {"__data__": {"id_": "45b837a5-3b51-4f6f-9806-ce2f512426fa", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6ae5d33d-30b7-47d2-b945-6f71791af405", "node_type": null, "metadata": {}, "hash": "5fb4b05fb5c177c4266ce99da61b24787713d13344421a910b913994c4920cdf"}}, "hash": "6a2c6277756d6ad487a94c7b07d8b4dc41b245236df6727bcf6573af9cc26abc", "text": "step1. \u30d1\u30ef\u30fc\u30b7\u30a7\u30eb\u4e0a\u3067\u30b3\u30f3\u30c6\u30ca\u3092\u8d77\u52d5\u3059\u308b
\n\n`Windows\u30dc\u30bf\u30f3`\u304b\u3089`Windows PowerShell`\u3092\u8d77\u52d5\u3057\u3066terminal\u304b\u3089\u4ee5\u4e0b\u5b9f\u884c\u3059\u308b\u3002\n\u30b3\u30f3\u30c6\u30ca\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u301c\u8d77\u52d5\u304c\u5b8c\u4e86\u3059\u308b\u307e\u3067\u5c11\u3057\u5f85\u3064\u3002\n\n```\ndocker run -p 6080:80 --shm-size=512m seigott/tetris_docker\n```", "start_char_idx": 0, "end_char_idx": 182, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ab3b4ded-a0e5-4d00-94d1-2fcee1efeba3": {"__data__": {"id_": "ab3b4ded-a0e5-4d00-94d1-2fcee1efeba3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6daf950b-9c88-438f-9757-2b6c544d0b04", "node_type": null, "metadata": {}, "hash": "b88df71729a9135a15a20309a4f2e41acc9ef6df6143964460c284a4df46564f"}}, "hash": "25f0bb6a25512fe8916b3f508895152c9bea3d55f5c06520ee07eafb23b50e3e", "text": "step2. \u30d6\u30e9\u30a6\u30b6\u304b\u3089docker\u30b3\u30f3\u30c6\u30ca\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\n\n```\nlocalhost:6080\n```\n\n\u30a2\u30af\u30bb\u30b9\u3067\u304d\u305f\u3089\u4ee5\u4e0b\u306b\u3088\u308a\u52d5\u4f5c\u691c\u8a3c\u3059\u308b\n\n\u5de6\u4e0b\u30a2\u30a4\u30b3\u30f3 --> system tools --> terminator\n\nTerminal\u3092\u7acb\u3061\u4e0a\u3052\u3066\u4ee5\u4e0b\u3092\u5b9f\u884c\n\n```\ncd ~/tetris\npython start.py\n```\n\n\u6ce8\u610f\uff09\u30d1\u30ef\u30fc\u30b7\u30a7\u30eb\u3092\u9589\u3058\u305f\u308a\u96fb\u6e90OFF\u3059\u308b\u3068\u30b3\u30f3\u30c6\u30ca\u3082\u7d42\u4e86\u3057\u307e\u3059\u3002\u4f5c\u6210\u4e2d\u30c7\u30fc\u30bf\u304c\u5931\u308f\u308c\u306a\u3044\u3088\u3046\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 231, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "62b01dae-a988-438c-8405-cc7b9e34f01c": {"__data__": {"id_": "62b01dae-a988-438c-8405-cc7b9e34f01c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3c6dcf35-7412-4f68-ac74-adde2f7b5134", "node_type": null, "metadata": {}, "hash": "643df0902ea9fb53fb774bfdf0834a49d0f53805255f3a70ca6c1d7146825f8c"}}, "hash": "37344f24a53a946a08064ded28187875a7e98ad7a558612dc1807c3bce492535", "text": "windows\u306epowershell\u3092\u4f7f\u3063\u3066\u30c6\u30c8\u30ea\u30b9\u74b0\u5883\u3092\u69cb\u7bc9\u3059\u308b", "start_char_idx": 0, "end_char_idx": 33, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "63c48eac-6dd9-46ff-a6f2-e00f5dcb0e7f": {"__data__": {"id_": "63c48eac-6dd9-46ff-a6f2-e00f5dcb0e7f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dd994aa9-ffd5-4886-a1df-5f8a21286da6", "node_type": null, "metadata": {}, "hash": "c56e32afdbce0051efe0c49418b208c7d80f4f169f72661d7c798914b1cdec32"}}, "hash": "8441a8d5e8398af5bd25d1cf1a9843e0fd1d7e308d257707212bd3649e69d9ce", "text": "powershell\u3068\u306f\n\nwindows\u3067\u5229\u7528\u3067\u304d\u308b\u3001\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3002 \n\u300cWindows\u300d\uff0b\u300cS\u300d\u3067\u691c\u7d22\u30dc\u30c3\u30af\u30b9\"powershell\"\u3068\u5165\u529b\u3059\u308b\u3068\u898b\u3064\u304b\u308b\u306f\u305a\u3002 \n> Windows10 - PowerShell(\u30d1\u30ef\u30fc\u30b7\u30a7\u30eb)\u306e\u958b\u304d\u65b9", "start_char_idx": 0, "end_char_idx": 131, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3f83359c-54f8-428b-b1e4-a1fb21c29b8c": {"__data__": {"id_": "3f83359c-54f8-428b-b1e4-a1fb21c29b8c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "296249e0-01bf-4dec-9622-c0850f83ecc5", "node_type": null, "metadata": {}, "hash": "dc451067fc3b63bb5c4429a5f0ba7585ba902e6226336813d8a9406718b5eaa8"}}, "hash": "4cfda5373bbe89057acabcd4da7b57fe4d720b4451a84e5d25d24c01d8d02925", "text": "1. git \u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb", "start_char_idx": 0, "end_char_idx": 14, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e7b19daa-0975-4df6-a2d9-19f1be4fed5c": {"__data__": {"id_": "e7b19daa-0975-4df6-a2d9-19f1be4fed5c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a262d057-8d77-42c5-9a89-3188d79b9893", "node_type": null, "metadata": {}, "hash": "1fb07f9757df1b1257ea036faff1c428968608880ce7f2a4dfe7fb71f58429d5"}}, "hash": "00b5dd0d972cb82621cf386820eeceed93416307b7b97ba64854531138d882f7", "text": "Windows Package Manager(winget)\u304c\u3042\u308b\u5834\u5408\n\nWindows Package Manager(winget)\u304c\u3042\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u3002 \npowershell\u3092\u8d77\u52d5\u3057\u3066\u4ee5\u4e0b\u3092\u5b9f\u884c\u3059\u308c\u3070\u78ba\u8a8d\u3067\u304d\u308b\u3002\n\n```\nwinget --version", "start_char_idx": 0, "end_char_idx": 134, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "027179e2-6c33-43b0-b609-f76b6c776cd2": {"__data__": {"id_": "027179e2-6c33-43b0-b609-f76b6c776cd2", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1ebb5f71-2f5d-4611-a975-b1d8c32fe040", "node_type": null, "metadata": {}, "hash": "43db77903747859536097668d1c1995d0ec1409c87fb3c422bb403898d39cfc1"}}, "hash": "e99e3905966b0a38f226e12f555d83356f6e7a24fa9fdc5e36c529914d36c461", "text": "v1.1.13405 \u7b49\u3068\u51fa\u529b\u3055\u308c\u308c\u3070\u3001Windows Package Manager(winget)\u304c\u3042\u308b\n```\n\ngit\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3002\n\n```\nwinget install Git.Git", "start_char_idx": 0, "end_char_idx": 101, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "227654cd-983d-4662-8ffd-2b2c2f3929a3": {"__data__": {"id_": "227654cd-983d-4662-8ffd-2b2c2f3929a3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "94b20e90-7916-40ef-8e41-9632f6844787", "node_type": null, "metadata": {}, "hash": "9edacd202d223b477110b8086a527c52cc9cb32ec1789a43a03bf9be80c442d9"}}, "hash": "2bc06ac3794b63f8e4e21341f2225b076a2bc0e024a9cb017ac86223f22bb0ca", "text": "\u3082\u3057 y/n \u3068\u51fa\u308b\u5834\u5408\u306f\u3001y \u3068\u5165\u529b\u3059\u308b\u3002y=yes \u3068\u3044\u3046\u610f\u5473\u3067\u3042\u308b\u3002\n```\n\n\u65b0\u3057\u304fpowershell\u3092\u8d77\u52d5\u3057\u3001\u4ee5\u4e0b\u3092\u5b9f\u884c\u3057\u3066\u7d50\u679c\u304c\u8868\u793a\u3055\u308c\u308c\u3070OK\n\n```\ngit --version", "start_char_idx": 0, "end_char_idx": 98, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ca018018-d46c-4cc7-815c-7ed899383cc8": {"__data__": {"id_": "ca018018-d46c-4cc7-815c-7ed899383cc8", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "821040d3-9adc-47af-9e8f-95caa036491d", "node_type": null, "metadata": {}, "hash": "d201c4cf4e56ea80fa69e2c228d3e2f3c6ae09ff0abe89aff3396d57769e7d38"}}, "hash": "1313c2fe247f0c5c70d8084edd6ae889895438bdfd0c73a958719929fe4835cf", "text": "ex.) git version 2.34.1.windows.1 \u7b49\u3068\u51fa\u529b\u3055\u308c\u308c\u3070OK\uff08\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u3042\u308c\u3070OK\uff09\n```", "start_char_idx": 0, "end_char_idx": 63, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7d9ff17a-3463-4125-a2f7-06aadcd0e118": {"__data__": {"id_": "7d9ff17a-3463-4125-a2f7-06aadcd0e118", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "303c678b-4232-47a9-9455-d9391baaaa49", "node_type": null, "metadata": {}, "hash": "2b0d2ec8df52c26fba3a84de55b8eb1e4fdcffa76c2a82f451a38124ece6fa63"}}, "hash": "7bc11db3254a4efa6e3e5a7d478c49886330e0c384b4de97cc6b8b2020a6fa61", "text": "\u4e0a\u8a18\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u3067\u304d\u306a\u3044\u5834\u5408\n\n\u4e0a\u8a18\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u3067\u304d\u306a\u3044\u5834\u5408\u306f\u3001\u516c\u5f0f\u30b5\u30a4\u30c8\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc\u3092\u4f7f\u3046\u3002\u4ee5\u4e0b\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u3002\n\n> git Downloading Git \n> 64-bit Git for Windows Setup \n\n\u4ee5\u4e0b\u306e\u300cGit\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u300d\u90e8\u5206\u8a18\u8f09\u306e\u901a\u308a\u3001\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u9032\u3081\u308b\u3002\u4ee5\u4e0b\u306e\u8a18\u8f09\u90e8\u5206\u306f\u9078\u629e\u304c\u5fc5\u8981\u3002\n\n> Windows 10 \u3068 Powershell\uff08WSL\u542b\u3080\uff09 \u3067 git \u3092\u5229\u7528\u3059\u308b \n> https://qiita.com/kerobot/items/78372640127771f92ee0#git-%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB \n> > \u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u3084PowerShell\u306a\u3069\u304b\u3089Git\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5229\u7528\u3059\u308b\u305f\u3081\u300cGit from the command line and also from 3rd-party software\u300d\u3092\u9078\u629e\u3057\u307e\u3059\u3002\n\npowershell\u4e0a\u3067\u4ee5\u4e0b\u3092\u5b9f\u884c\u3057\u3066\u7d50\u679c\u304c\u8868\u793a\u3055\u308c\u308c\u3070OK\n\n```\ngit --version", "start_char_idx": 0, "end_char_idx": 506, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a9cdbcc2-2f08-45ad-9dbe-141195027deb": {"__data__": {"id_": "a9cdbcc2-2f08-45ad-9dbe-141195027deb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7f4a19dd-5982-4ac6-be64-54dff7cbb176", "node_type": null, "metadata": {}, "hash": "d201c4cf4e56ea80fa69e2c228d3e2f3c6ae09ff0abe89aff3396d57769e7d38"}}, "hash": "1313c2fe247f0c5c70d8084edd6ae889895438bdfd0c73a958719929fe4835cf", "text": "ex.) git version 2.34.1.windows.1 \u7b49\u3068\u51fa\u529b\u3055\u308c\u308c\u3070OK\uff08\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u3042\u308c\u3070OK\uff09\n```", "start_char_idx": 0, "end_char_idx": 63, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f33c9b34-17e2-471c-8474-f72b8cb2cae8": {"__data__": {"id_": "f33c9b34-17e2-471c-8474-f72b8cb2cae8", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8799e86a-5519-4697-b866-797972f40d5c", "node_type": null, "metadata": {}, "hash": "e3691977971ec47d1372acabe081b5f23931600f4a681cf7883da8fdc4256218"}}, "hash": "956320325aeb4663f661beff8755bc087288dcb84f4f5ede8fad78ccb6a43e39", "text": "2. python \u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb", "start_char_idx": 0, "end_char_idx": 17, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2285791b-bcd9-4594-8a59-e3111636859e": {"__data__": {"id_": "2285791b-bcd9-4594-8a59-e3111636859e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c465083c-dfcb-443d-a011-e05a7d8b6572", "node_type": null, "metadata": {}, "hash": "438301f0a5de1c82e38f1faefcf57880c223c01b9c77c48220438a35fd74807d"}}, "hash": "570e0f507de8db1971df21a9079398e8280a7f3668c497e19bba9491e1338313", "text": "microsoft store\u304b\u3089\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\n\npowershell\u4e0a\u3067\u4ee5\u4e0b\u3092\u5b9f\u884c\u3001\u3082\u3057\u304f\u306f`microsoft store`\u4e0a\u3067`python`\u3068\u691c\u7d22\u3057\u3001\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30da\u30fc\u30b8\u304b\u3089\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3002\n\n```\npython\n```\n\n!Screenshot\n\n\u65b0\u3057\u304fpowershell\u3092\u8d77\u52d5\u3057\u3001\u4ee5\u4e0b\u3092\u5b9f\u884c\u3057\u3066\u7d50\u679c\u304c\u8868\u793a\u3055\u308c\u308c\u3070OK\n\n```\npython --version", "start_char_idx": 0, "end_char_idx": 190, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "228c06bb-f645-4014-b659-023b13b7411f": {"__data__": {"id_": "228c06bb-f645-4014-b659-023b13b7411f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "eaf7d3e7-bad4-4848-af23-c50cafbb009f", "node_type": null, "metadata": {}, "hash": "09be80cb540eef7ca96b755561871e9a7a8b81253392b64367c79f48b96ce6d2"}}, "hash": "aebc1515f35d4bcae6ed6d2e9dfb435f300912336a204c9ee3e27cec33b1822c", "text": "ex.) Python 3.10.9 \u7b49\u3068\u51fa\u529b\u3055\u308c\u308c\u3070OK\uff08\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u3042\u308c\u3070OK\uff09\n```", "start_char_idx": 0, "end_char_idx": 48, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "51d4d8a9-2dc7-41a8-b8e1-69681f8e3f98": {"__data__": {"id_": "51d4d8a9-2dc7-41a8-b8e1-69681f8e3f98", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "cf26ff9b-e2cd-47b3-9f91-ba621cc1b131", "node_type": null, "metadata": {}, "hash": "2ef79b0640443d4aff8fe72d4846d00b6788a39314839c1ecc7030e5f5ccdb6f"}}, "hash": "345c88546d27466248ff5d4cecbfaa45efbf7d0d9cc1287757f2da0b29dcbdd8", "text": "\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306epython\u304c\u8868\u793a\u3055\u308c\u308b\u5834\u5408\n\n\u904e\u53bb\u306b\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306epython\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u3044\u308b\u5834\u5408\u306b\u305d\u3061\u3089\u304c\u512a\u5148\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308b\u3002 \n\u300cWindows\u300d\uff0b\u300cpython\u300d\u3067\u691c\u7d22\u30dc\u30c3\u30af\u30b9\u304b\u3089\u53e4\u3044python\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u518d\u5ea6\u65b0\u3057\u3044python\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3068\u89e3\u6c7a\u3059\u308b\u3053\u3068\u304c\u3042\u308b\u3002", "start_char_idx": 0, "end_char_idx": 156, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "660c68c6-21fc-4598-a6ea-c3f54b19cabf": {"__data__": {"id_": "660c68c6-21fc-4598-a6ea-c3f54b19cabf", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7797fb4b-430f-4807-8b24-883e270a3a3d", "node_type": null, "metadata": {}, "hash": "45b68b8d29a16e508cf2a74b52f555c73599b751cfb78f92ef8acfae8665137b"}}, "hash": "136bcf5341cd5c7b81262521c42d85b5dbb9fe0f1e31b5d645c02d6704fab62e", "text": "\u4e0a\u8a18\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u3067\u304d\u306a\u3044\u5834\u5408\n\n\u4e0a\u8a18\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u3067\u304d\u306a\u3044\u5834\u5408\u306f\u3001\u516c\u5f0f\u30b5\u30a4\u30c8\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc\u3092\u4f7f\u3046\u3002 \n\u4ee5\u4e0b\u8a18\u4e8b\u3092\u53c2\u7167\u3057\u3001\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\uff5ePowerShell\u306e\u74b0\u5883\u8a2d\u5b9a\u307e\u3067\u3092\u5b9f\u65bd\u3059\u308b\n\n> Windows\u7248Python\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb \n\n2023.1\u6642\u70b9\u3067\u306fpython\u306e\u30d0\u30fc\u30b8\u30e7\u30f33.10.9\u304c\u5229\u7528\u3057\u6613\u305d\u3046\u3067\u3042\u308b\u3002 \n\u3053\u306e\u5834\u5408\u306f\u3001\u4ee5\u4e0b\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u30ea\u30f3\u30af\u304b\u3089\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9(`.exe`)\u3092\u53d6\u5f97\u3059\u308b\u3068\u3088\u3044\u3002 \n\n> \u975e\u516c\u5f0fPython\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u30ea\u30f3\u30af \n\n\u7279\u306b\u4ee5\u4e0b\u306e\u70b9\u3092\u5fd8\u308c\u305a\u306b\u5b9f\u65bd\u3059\u308b\u3002\n\n> > \"Add Python 3.x to PATH\" \u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u306e\u3092\u5fd8\u308c\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \n> > \u3082\u3057\u5fd8\u308c\u305f\u3089\u3001\u3042\u308f\u3066\u305a\u843d\u3061\u7740\u3044\u3066\u3082\u3046\u4e00\u5ea6\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3057\u3087\u3046\u3002\u4f55\u5ea6\u3067\u3082\u7e70\u308a\u8fd4\u3057\u3066\u5927\u4e08\u592b\u3067\u3059\u3002 \n>\n> > PowerShell\u306e\u74b0\u5883\u8a2d\u5b9a\u00b6 \n> > PowerShell\u3067\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c\u3092\u8a31\u53ef\u3057\u3066\u304a\u304d\u307e\u3059\u3002 \n> > \u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc\u3067 Windows PowerShell | Windows PowerShell \u3092\u8d77\u52d5\u3057\u3001\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059\u3002 \n> Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force \n\npowershell\u4e0a\u3067\u4ee5\u4e0b\u3092\u5b9f\u884c\u3057\u3066\u7d50\u679c\u304c\u8868\u793a\u3055\u308c\u308c\u3070OK\n\n```\npython --version", "start_char_idx": 0, "end_char_idx": 621, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "1036624e-f299-4634-8358-ea02d80ebfdb": {"__data__": {"id_": "1036624e-f299-4634-8358-ea02d80ebfdb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "904a3afc-d116-4c75-b30c-bb2c37e0725b", "node_type": null, "metadata": {}, "hash": "09be80cb540eef7ca96b755561871e9a7a8b81253392b64367c79f48b96ce6d2"}}, "hash": "aebc1515f35d4bcae6ed6d2e9dfb435f300912336a204c9ee3e27cec33b1822c", "text": "ex.) Python 3.10.9 \u7b49\u3068\u51fa\u529b\u3055\u308c\u308c\u3070OK\uff08\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u3042\u308c\u3070OK\uff09\n```", "start_char_idx": 0, "end_char_idx": 48, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "efbff208-3cc2-4169-adc8-1aadfd164458": {"__data__": {"id_": "efbff208-3cc2-4169-adc8-1aadfd164458", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "417aec6d-529e-492c-b069-156861142815", "node_type": null, "metadata": {}, "hash": "94e7bc6a56a4fae3e93bf41b287bc12e55c40c0040fa87c8ec585616b48c92cf"}}, "hash": "88e3fd6b0693a0c1d0960ea6b3b539d83d607dede9baf249cfa878c12e74366d", "text": "3. powershell\u304b\u3089tetris\u3092\u5b9f\u884c\u3059\u308b\n\npowershell\u3092\u65b0\u305f\u306b\u8d77\u52d5\u3059\u308b \n(\u300cWindows\u300d\uff0b\u300cS\u300d\u3067\u691c\u7d22\u30dc\u30c3\u30af\u30b9\"powershell\"\u3068\u5165\u529b\u3059\u308b\u3068\u898b\u3064\u304b\u308b\u306f\u305a\u3002\u898b\u3064\u304b\u3063\u305f\u3089\u30af\u30ea\u30c3\u30af\u3057\u3066\u8d77\u52d5\u3059\u308b\u3002) \n \n \n\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u78ba\u8a8d\u3059\u308b \n\u3053\u3053\u3067\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f55\u3082\u8868\u793a\u3055\u308c\u306a\u3051\u308c\u3070\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u6210\u529f\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304b\u3089\u3084\u308a\u76f4\u3059\n \n```\ngit --version", "start_char_idx": 0, "end_char_idx": 204, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bcd5627d-3241-4022-9659-0a39c43d1017": {"__data__": {"id_": "bcd5627d-3241-4022-9659-0a39c43d1017", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1a731606-d439-4f76-9e83-c40360894e19", "node_type": null, "metadata": {}, "hash": "c1f9d57760632d0cc0459dd38b2ef1edcd511c377f723b6c6727c90b6fbb3b15"}}, "hash": "4be28e68dc2760ca5d43a658b65bed02930220ae9fc40a32efa33ce16de3ca8f", "text": "ex.) git version 2.34.1.windows.1 \u7b49\u3068\u51fa\u529b\u3055\u308c\u308c\u3070OK\uff08\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u3042\u308c\u3070OK\uff09\npython --version", "start_char_idx": 0, "end_char_idx": 76, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2d5d975a-c3d1-4c28-ba1f-ff97bb1fc7c2": {"__data__": {"id_": "2d5d975a-c3d1-4c28-ba1f-ff97bb1fc7c2", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5ad3f174-df8b-4315-941d-b50415aaeb77", "node_type": null, "metadata": {}, "hash": "9243df71043f44d89c45b5e1add7a4a7cdc0be88f2c911e78f813237eda9fb6d"}}, "hash": "8416d8fc9f7d92e6e72092668ef800504400b1a53d2af0ac04081bd6f0b9fa1f", "text": "ex.) Python 3.10.9 \u7b49\u3068\u51fa\u529b\u3055\u308c\u308c\u3070OK\uff08\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u3042\u308c\u3070OK\uff09\n```\n\n\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\n\n```\npip install pyqt5\npip install numpy\n```\n\n\u4ee5\u4e0b\u306e\u901a\u308a\u5b9f\u884c\u3057\u3001tetris\u304c\u8868\u793a\u3055\u308c\u308c\u3070OK\n\n```\ncd ~\nmkdir work\ncd work\ngit clone https://github.com/seigot/tetris\ncd tetris\npython start.py # \u3053\u3053\u3067tetris\u304c\u8868\u793a\u3055\u308c\u308c\u3070OK\n```\n\n\u30d7\u30ed\u30b0\u30e9\u30e0\u5185\u90e8\u306e\u8aac\u660e\u306b\u3064\u3044\u3066\u306f\u4ee5\u4e0b\u306a\u3069\u53c2\u7167\u304f\u3060\u3055\u3044\n\n\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u3064\u3044\u3066 \nAI\u306b\u3064\u3044\u3066 \ntetris art\u306b\u3064\u3044\u3066 \nREADME.md", "start_char_idx": 0, "end_char_idx": 349, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9dea7fe1-20f0-4f2b-9256-e5ccf033967c": {"__data__": {"id_": "9dea7fe1-20f0-4f2b-9256-e5ccf033967c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6373be1e-2941-4482-8d7e-feb5316a160c", "node_type": null, "metadata": {}, "hash": "a89425e1aa78f9cbbab47f9836bffb41635ac31ad51614c6ddc10687b2d3097f"}}, "hash": "f90c40e646fcd1f097be27b4b07a6646cd7620afbb9d3aba4e521adee16ca3e3", "text": "option. \u30a8\u30c7\u30a3\u30bf\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\n\n\u6700\u8fd1\u6d41\u884c\u308a\u306e\u30a8\u30c7\u30a3\u30bf\u3067\u3042\u308b`visual studio code`\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304a\u304f\u3068\u5f8c\u306e\u30b3\u30fc\u30c9\u7de8\u96c6\u306b\u4fbf\u5229\u3067\u3042\u308b \npowershell\u4e0a\u3067winget\u304c\u4f7f\u3048\u308b\u5834\u5408\u306f\u4ee5\u4e0b\u3092\u5b9f\u884c\u3001 \n\n```", "start_char_idx": 0, "end_char_idx": 120, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "22b13e1d-dad8-43f3-ad56-a2ce9d179da3": {"__data__": {"id_": "22b13e1d-dad8-43f3-ad56-a2ce9d179da3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6541688c-1f56-4cde-a319-67a1c85e6e02", "node_type": null, "metadata": {}, "hash": "b6727b3753593e72745f06e4ec678c08316c66e008e270245c1bb9fa05a5498b"}}, "hash": "d6da92870fc8ff054401a976d5c6b5d8c0d009822a8fd05b1ceadb1b6e815695", "text": "powershell\u4e0a\u3067winget\u304c\u4f7f\u3048\u308b\u5834\u5408\nwinget install vscode\n```\n\n\u3082\u3057\u304f\u306f`microsoft store`\u4e0a\u3067`visual studio code`\u3068\u691c\u7d22\u3057\u3001\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30da\u30fc\u30b8\u304b\u3089\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3002\n\n!Screenshot\n\npowershell\u4e0a\u3067\u4ee5\u4e0b\u3092\u5b9f\u884c\u3057\u3066`vscode`\u3068\u5bfe\u8c61\u306e\u30b3\u30fc\u30c9\u304c\u8868\u793a\u3055\u308c\u308c\u3070OK\n\n```", "start_char_idx": 0, "end_char_idx": 183, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9cab7fb6-4610-46eb-bd11-bb7ec3eede56": {"__data__": {"id_": "9cab7fb6-4610-46eb-bd11-bb7ec3eede56", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1bddf82c-eeeb-459c-a298-bff48a82a43e", "node_type": null, "metadata": {}, "hash": "cbb9e5b289b9dd32896328034c5d836c22e1253f562d5bc775cfea136d9c2663"}}, "hash": "bc03fb5dd36377d630137aacad76fc72051c95f78d29fabde620cfbd4dcea3c9", "text": "cd ~/work/tetris \u7b49\u3067\u4e8b\u524d\u306bclone\u3057\u305f\u5834\u6240\u306b\u79fb\u52d5\u3057\u3066\u304a\u304f\ncode game_manager/block_controller.py\n```", "start_char_idx": 0, "end_char_idx": 80, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "30108c3b-c684-4ff2-964f-5b5eae299db8": {"__data__": {"id_": "30108c3b-c684-4ff2-964f-5b5eae299db8", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e86b2357-ca10-46cf-89a0-65ec5b942f8d", "node_type": null, "metadata": {}, "hash": "755daf4c2eb87432e307a14b69bafac63c7ed5e59a5036701754f2dae7738024"}}, "hash": "4dcb357af645d66da606163f4f0a5908ccf648192e7aca85694b6cc41618b541", "text": "`python start.py`\u5b9f\u884c\u5f8c\u306btetris\u304c\u8868\u793a\u3055\u308c\u306a\u3044\u5834\u5408\n\n\u5b9f\u884c\u74b0\u5883\u306e\u9055\u3044\u306b\u3088\u308a`python start.py`\u5b9f\u884c\u5f8c\u306btetris\u304c\u8868\u793a\u3055\u308c\u306a\u3044\u3053\u3068\u304c\u305f\u307e\u306b\u3042\u308b\u3002 \n\u3053\u306e\u5834\u5408\u306fwarning\u3084\u30a8\u30e9\u30fc\u30ed\u30b0\u304c\u51fa\u529b\u3055\u308c\u308b\u306f\u305a\u306a\u306e\u3067\u3001\u4ee5\u4e0b\u306e\u5b9f\u884c\u6210\u529f\u6642\u306e\u30ed\u30b0\u3068\u6bd4\u8f03\u3059\u308b\u3068\u89e3\u6c7a\u306b\u8fd1\u3065\u304f\u3068\u601d\u308f\u308c\u308b\u3002\n\n```", "start_char_idx": 0, "end_char_idx": 158, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d4901a71-eb19-4e06-8bce-ca8451429be1": {"__data__": {"id_": "d4901a71-eb19-4e06-8bce-ca8451429be1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b30bdd19-acfe-4cb4-a6a5-20d7759e8ec9", "node_type": null, "metadata": {}, "hash": "499914babf22067be95b1eff5257762c0192fcd9b6ec1fc86c7904a86c7d42cf"}}, "hash": "caf8814f9c52a2b4963de330b49dad4a6404c6f52ebc7e4bce15ac06ce5effff", "text": "\uff08\u4f8b\uff09\u5b9f\u884c\u6210\u529f\u6642\u306e\u30ed\u30b0\n$ python start.py\ngame_level: 1\ngame_time: 180\nRANDOM_SEED: 0\nIS_MODE :default\nOBSTACLE_HEIGHT: 0\nOBSTACLE_PROBABILITY: 0\nUSER_NAME: window_sample\nSHAPE_LIST_MAX: 6\nBLOCK_NUM_MAX: -1\nRESULT_LOG_JSON: result.json\nTRAIN_YAML: config/default.yaml\nPREDICT_WEIGHT: outputs/latest/best_weight.pt\nPython 3.7.1\nCompletedProcess(args='python --version', returncode=0, stderr='')\n=================================================>\n...(\u4ee5\u964d\u3001tetris\u30c7\u30d0\u30c3\u30b0\u60c5\u5831\u304c\u8868\u793a\u3055\u308c\u308b)\n```", "start_char_idx": 0, "end_char_idx": 463, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "10bcde16-c549-4dc8-b38c-13526db9e2ec": {"__data__": {"id_": "10bcde16-c549-4dc8-b38c-13526db9e2ec", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5fe4e490-a421-426d-9c76-f34a4859f9d1", "node_type": null, "metadata": {}, "hash": "daddee51f66d041a845aef95d718e1967c326490ee76d534258686754da04dad"}}, "hash": "f9df382ee871a5f60820f657d4535b0f0ec0139c40a7c88df5260b80d56ffb15", "text": "\u53c2\u8003\ngit Downloading Git \nWindows 10 \u3068 Powershell\uff08WSL\u542b\u3080\uff09 \u3067 git \u3092\u5229\u7528\u3059\u308b \nWindows\u7248Python\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb \n\u975e\u516c\u5f0fPython\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u30ea\u30f3\u30af \nWindowsPowerShell\u3067Python\u3092\u5229\u7528\u3059\u308b \nGNU Emacs for Windows\u518d\u5165\u9580 \nvisual studio code\u3092install \nWindows\u306bBash\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u65b9\u6cd5 \nWindows Subsystem for Linux\u304c\u8868\u793a\u3055\u308c\u306a\u3044", "start_char_idx": 0, "end_char_idx": 263, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bbe0cfa1-9266-4314-8cb6-65172eead885": {"__data__": {"id_": "bbe0cfa1-9266-4314-8cb6-65172eead885", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4901c299-983a-4a81-b4dc-a4e3726c79de", "node_type": null, "metadata": {}, "hash": "0a8fa1726a6728138449f1b5f92dc175f052e38ffc65289440212cfca1542941"}}, "hash": "e91d2b2711f6254b31cb4a6e1407c0a9d1ca9d751978103daf8edd5e60f9c971", "text": "\u5b9f\u884c\u74b0\u5883 (Windows WSL\u3092\u4f7f\u3046\u5834\u5408)\n\nWindows WSL\u3092\u4f7f\u3063\u3066\u958b\u767a\u74b0\u5883\u3092\u7acb\u3061\u4e0a\u3052\u308b\u65b9\u6cd5\u3092\u8aac\u660e\u3059\u308b\u3002\nDocker\u3092\u4f7f\u3046\u65b9\u6cd5\u3068\u6bd4\u8f03\u3057\u3066\u3001Docker\u304c\u4e0d\u8981\u306a\u70b9\u3068\u3001Docker\u30b3\u30f3\u30c6\u30ca\u7d42\u4e86\u3067\u30c7\u30fc\u30bf\u304c\u5931\u308f\u308c\u308b\u3053\u3068\u3092\u6c17\u306b\u3059\u308b\u5fc5\u8981\u304c\u7121\u3044\u7279\u9577\u304c\u3042\u308b\u3002", "start_char_idx": 0, "end_char_idx": 128, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "69b8f82f-50a6-4828-8968-c1466952a5cd": {"__data__": {"id_": "69b8f82f-50a6-4828-8968-c1466952a5cd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "59eb9170-d56e-4e4e-8bad-c988419e986b", "node_type": null, "metadata": {}, "hash": "6cd5956a8d42ec18af4e27085a6ed72ec96ce0645d352055ed3692dc9fad6415"}}, "hash": "1a71b16d44a105575f51837b07eb4d77ea7542a6ad04a0b9c090c0e36289efc0", "text": "Step 1. WSL\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\n\n- \u4ee5\u4e0b\u3092\u53c2\u7167\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3002\n - Windows10\u7528Windows Subsystem for Linux\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb \u30ac\u30a4\u30c9", "start_char_idx": 0, "end_char_idx": 91, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e831b8c2-60e6-405d-87f7-121747e5b6d7": {"__data__": {"id_": "e831b8c2-60e6-405d-87f7-121747e5b6d7", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6840ec80-7677-4911-a635-7a9f0ed9bc7e", "node_type": null, "metadata": {}, "hash": "e9aafba21a0bf8c547619f9ee4f3c6e52adfce4dde03ab6361af4b8bff690e82"}}, "hash": "06a076492234559fb9690284e9f3e7801584e107e8d88428beab300e52763f64", "text": "a. WSL1\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5834\u5408\uff08\u7c21\u5358\uff09\n\n- \u4e0a\u8a18URL\u306e\u300c\u624b\u52d5\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306e\u624b\u9806\u300d\u306e\u300c\u624b\u9806 1 - Linux \u7528 Windows \u30b5\u30d6\u30b7\u30b9\u30c6\u30e0\u3092\u6709\u52b9\u306b\u3059\u308b\u300d\u300c\u624b\u9806 6 - \u9078\u629e\u3057\u305f Linux \u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u300d\u306e\u307f\u5b9f\u65bd\u3059\u308c\u3070\u826f\u3044\u3002\n- \u300c\u624b\u9806 6 - \u9078\u629e\u3057\u305f Linux \u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u300d\u3067\u306f\u3001Ubuntu 18.04 LTS \u307e\u305f\u306f Ubuntu 20.04 LTS \u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308c\u3070\u826f\u3044\u3002", "start_char_idx": 0, "end_char_idx": 230, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "de710693-42f0-4cef-acc8-412ce43ecf84": {"__data__": {"id_": "de710693-42f0-4cef-acc8-412ce43ecf84", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7375eebb-d5e6-4a0b-a8d0-4024d9f0118b", "node_type": null, "metadata": {}, "hash": "6c4f27aa26a936aa149543a418728edcaf41c394ec3a45d2c2c4c21f2aa896e6"}}, "hash": "533ea28c1b9e14af0becf2c0333a2c3a80a27934cda76efad2f2fd461e9b23b8", "text": "b. a\u4ee5\u5916\u306e\u5834\u5408\n\n- WSL1\u3067\u3082WSL2\u3067\u3082\u826f\u3044\u3002\n- Linux\u306e\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306f\u3069\u308c\u3067\u3082\u826f\u3044\u306f\u305a\u3067\u3042\u308b\u304c\u3001Ubuntu 18.04 LTS \u307e\u305f\u306f\u3000Ubuntu 20.04 LTS \u3092\u304a\u3059\u3059\u3081\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 108, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "727acea5-6cc9-4807-b68d-cc9314661756": {"__data__": {"id_": "727acea5-6cc9-4807-b68d-cc9314661756", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "bbcc61c2-bb80-4a95-b584-56fca2fd0ddc", "node_type": null, "metadata": {}, "hash": "47b14bdeb884bfbb566cc80a59f56edd021afb9a379c52912c8ece10d46cef69"}}, "hash": "994b625fe99c68dfbffb6165d6ab2ee81acd1dde2605855a3292f5d0832dcf91", "text": "Step 2. X\u30b5\u30fc\u30d0\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\n\nGWSL\u307e\u305f\u306fVcXsrv\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 44, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ba7d40e1-7292-480b-818c-c15a39187f6c": {"__data__": {"id_": "ba7d40e1-7292-480b-818c-c15a39187f6c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "daa4a211-9852-48df-b162-dd67e4ba0d52", "node_type": null, "metadata": {}, "hash": "8baee7da534327a7509bba53913a5260837453edd8045efc9ba95b48ce649e57"}}, "hash": "bbc772222d3b489fdb25e2f7f8548f1198c9e4350d7f421e19c54f85e3298bc9", "text": "a. GWSL\u3092\u4f7f\u3046\u5834\u5408\uff08\u304a\u3059\u3059\u3081\uff09\n\n1. \u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc\u304b\u3089Microsoft Store\u30a2\u30d7\u30ea\u3092\u8d77\u52d5\u3059\u308b\u3002\n2. GWSL\u3092\u691c\u7d22\u3057\u3066\u3001\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 80, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f8c4152e-64b9-4488-b0f1-093f8bd58377": {"__data__": {"id_": "f8c4152e-64b9-4488-b0f1-093f8bd58377", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3b3a2d21-adb6-4092-a532-63108fb15859", "node_type": null, "metadata": {}, "hash": "a6c62e7dcc30e22a0112bda5171989e7d9162ed5d45cac639916888fce5cd421"}}, "hash": "b68d725964c8ceb32217e7635110fdd8b55fb8bbd2c09dab6d0f36e1ff7daca1", "text": "b. VcXsrv\u3092\u4f7f\u3046\u5834\u5408\n\n1. https://sourceforge.net/projects/vcxsrv/ \u304b\u3089VcXsrv\u3092\u5165\u624b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 82, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d83b7aea-8abd-462f-b03b-f68ebd2bb9e4": {"__data__": {"id_": "d83b7aea-8abd-462f-b03b-f68ebd2bb9e4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d3282272-5bd9-45cc-bc61-31ffea91d07f", "node_type": null, "metadata": {}, "hash": "e39ce59a931b48a6ba6a728b439164b23b7f3fd1604ca89c8037b4dc755f8b71"}}, "hash": "80a8d42a9a91a75d18a0a27cc73784d710336122993337a6aeafac42cfa7b2e4", "text": "Step 3. WSL\u306e\u8d77\u52d5", "start_char_idx": 0, "end_char_idx": 14, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9e0fad21-aa28-466a-9c2f-38571c907bbc": {"__data__": {"id_": "9e0fad21-aa28-466a-9c2f-38571c907bbc", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "16e5a958-c32d-4137-b409-d59e67c521b3", "node_type": null, "metadata": {}, "hash": "4f85715b1e81521dd8758c8855888ed518c66b5a7c1cbd0eca9e8804184c8c02"}}, "hash": "30cd5e72953564de5d57b0e65cd0dcc2cb3ae7183351c33c67825bd9009c6649", "text": "\u30bf\u30fc\u30df\u30ca\u30eb\u3092\u958b\u304f\n\n- \u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc\u304b\u3089\u3001Step 1\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305fLinux \u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3(Ubuntu 18.04 LTS \u306a\u3069)\u3092\u8d77\u52d5\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 82, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "cdad89c0-2a46-4638-a097-bc4323c75f5d": {"__data__": {"id_": "cdad89c0-2a46-4638-a097-bc4323c75f5d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f8ee7337-e899-408b-b0e7-376c08a81c9f", "node_type": null, "metadata": {}, "hash": "73e573bf989ce33b8170255cea2dd9f5b2c72f1b8171c31e793fe7b32d62a043"}}, "hash": "572fd1f9c541efbc0f48ae9cae08caefb07817886a57f95325280a3fe50e6225", "text": "\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30fb\u8a2d\u5b9a\uff08\u521d\u56de\u306e\u307f\u5fc5\u8981\uff09\n- \u4e0b\u8a18\u3092\u5b9f\u884c\u3059\u308b\u3002\n\n```\nsudo apt-get install -y python3-pip\nsudo apt-get install -y python3-pyqt5\npip3 install --upgrade pip\npip3 install numpy\nsudo apt-get install -y git\n\necho 'export DISPLAY=localhost:0.0' >> ~/.bashrc\nsource ~/.bashrc\n```", "start_char_idx": 0, "end_char_idx": 261, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "667ae363-e738-48ce-80e9-03ee7261b5ce": {"__data__": {"id_": "667ae363-e738-48ce-80e9-03ee7261b5ce", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d22bfe9b-4a60-4262-8009-0f953b68f228", "node_type": null, "metadata": {}, "hash": "522faa52f3c2c5c7384334deeb728098e08d6c3fa36f2adfbf34535955903f43"}}, "hash": "e988d16fea2f492f1ee9a2e8f338634e8176dfa6c18954f0d5ec6202fca8027d", "text": "Step 4. X\u30b5\u30fc\u30d0\u306e\u8d77\u52d5\n\nStep 2 \u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305fX\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 43, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b380cdaa-9db0-4777-8838-a810de25f3e3": {"__data__": {"id_": "b380cdaa-9db0-4777-8838-a810de25f3e3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "82c7c5f2-14c0-4ea1-96e0-55d24815a934", "node_type": null, "metadata": {}, "hash": "fa37d63b1ca55f0d16cf399d9b6fc1d15d83693d09379312d2e58011ebf60a3e"}}, "hash": "0b926c1ce06879262363c9af32679d89e1665700b0a9767658dfa633b02eb90e", "text": "a. GWSL\u3092\u4f7f\u3046\u5834\u5408\n\n1. \u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc\u304b\u3089GWSL\u3092\u8d77\u52d5\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 37, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7c86d2b4-553e-494a-9634-90ac4128bbb3": {"__data__": {"id_": "7c86d2b4-553e-494a-9634-90ac4128bbb3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c1b73fca-d756-461d-a74b-52bb8dcb596f", "node_type": null, "metadata": {}, "hash": "8da5d1ff8dba815062cf3149f9303064a0cf2a38bf742e6e2d0a6703773d81b6"}}, "hash": "f8dd9534c4ed192f5ebb16b17009bd7b75a872a53cea7ed06a829aae2c769b11", "text": "b. VcXsrv\u3092\u4f7f\u3046\u5834\u5408\n\n1. \u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc\u3084\u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u306e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\u304b\u3089VcXsrv\u3092\u8d77\u52d5\u3059\u308b\u3002\n2. \u300c\u6b21\u3078\u300d\u30923\u56de\u62bc\u3057\u3066\u3001\u300c\u5b8c\u4e86\u300d\u3092\u62bc\u3059\u3068X\u30b5\u30fc\u30d0\u304c\u8d77\u52d5\u3059\u308b\u3002", "start_char_idx": 0, "end_char_idx": 89, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e4f631ce-d334-40a6-a3ca-be65bf27de24": {"__data__": {"id_": "e4f631ce-d334-40a6-a3ca-be65bf27de24", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "29cc3093-4a3e-47b6-b979-10f0b68c7536", "node_type": null, "metadata": {}, "hash": "bcdd7c74099d267463c8b6c1d4d2dbbd63e58f1444cb0910d3476db27bd2314f"}}, "hash": "74594b8a935849394f1b34c1ab86ed44696bb2e02a3d3df4c9343f8fdc168ec5", "text": "Step 5. tetris\u306e\u8d77\u52d5", "start_char_idx": 0, "end_char_idx": 17, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "81674c4f-60e0-4f23-86bb-333d830f42e3": {"__data__": {"id_": "81674c4f-60e0-4f23-86bb-333d830f42e3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "cc0fc37b-8587-4386-9d6b-38919ef43c54", "node_type": null, "metadata": {}, "hash": "81d5cfbb884b0a84e0ec4e24d93585c756da11803416e9bcd7370b9c7ceaa308"}}, "hash": "688e499cc7f32d7887525f3014eb66bd16afb4b0f70d955d374260423646de38", "text": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\uff08\u521d\u56de\u306e\u307f\u5fc5\u8981\uff09\n\n```\ngit clone https://github.com/seigot/tetris\n```", "start_char_idx": 0, "end_char_idx": 71, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "180ad649-c7c7-4415-aee5-031c9a29b264": {"__data__": {"id_": "180ad649-c7c7-4415-aee5-031c9a29b264", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6b4993ef-0255-4ba9-a433-ff91419b52c6", "node_type": null, "metadata": {}, "hash": "c967ce45493587ad0df9356570e782c11c6a0cc4349a0e0fa5110b9e45ef1f6f"}}, "hash": "bb349e876cf3c3a4b001ab9e6279ab13a77759a8de4c444e14fc25904a7cafc0", "text": "tetris\u3092\u5b9f\u884c\u3059\u308b\n```\ncd ~/tetris\npython start.py\n```\n\n\u4e00\u5ea6\u5b9f\u884c\u74b0\u5883\u3092\u7acb\u3061\u4e0a\u3052\u305f\u5f8c\u306e2\u56de\u76ee\u304b\u3089\u306f\u3001Step 3\u4ee5\u964d\u3092\u5b9f\u884c\u3059\u308c\u3070\u826f\u3044\u3002", "start_char_idx": 0, "end_char_idx": 87, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9451cf88-0557-48bb-8a7c-dcc314a20424": {"__data__": {"id_": "9451cf88-0557-48bb-8a7c-dcc314a20424", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "94748ba8-d795-48ad-a384-2ab41d37d2c6", "node_type": null, "metadata": {}, "hash": "5d278beb44f92177de05dd8af0e48432d5299b01d0b31eed92939e3b05cc2e21"}}, "hash": "bf2fcdfcbdaa8ec2382572a65d0ca22e05f730aab22ba8a29337397df34163a5", "text": "\u53c2\u8003\u30b9\u30b3\u30a2\n\n\uff08\u6ce8\uff09\u4e71\u6570\u306e\u5f71\u97ff\u306b\u3088\u308a\u591a\u5c11\u306e\u3070\u3089\u3064\u304d\u3042\u308a\n\n| | level1 | level2 | level3 | \u81ea\u7531\u90e8\u9580 |\n| --- | --- | --- | --- | - |\n| random | -916 | -731 | -4948 | - |\n| sample(python start.py -m sample) | 6935 | 6259 | 3737 | - |\n| kyad\u3055\u3093\u4f5c\u306e\u7121\u9650\u30c6\u30c8\u30ea\u30b9 | - | - | - | 20592 |\n| \u7406\u8ad6\u5024 | 23400+\u843d\u4e0b\u30dc\u30fc\u30ca\u30b9 | - | - | - |\n\n\u7406\u8ad6\u5024\u306f\u300c\uff08\u5168\u3066I\u5b57\u306e\u68d2\u304c\u51fa\u308b\u306a\u3069\u3057\u3066\uff09\u5168\u30664\u30e9\u30a4\u30f3\u6d88\u3057\u3092\u3057\u305f\u5834\u5408\u300d\u3092\u60f3\u5b9a\u3002\n\u8a08\u7b97\u5f0f\uff1a(\u5236\u9650\u6642\u9593 180(s))\u00f7(\u30c6\u30c8\u30ea\u30b91\u56de\u306b\u639b\u304b\u308b\u6642\u9593 10(s))\u00d71300\u70b9 = 23400\u70b9", "start_char_idx": 0, "end_char_idx": 419, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "973a5c15-9c8a-42ae-85cb-6c8af18389c1": {"__data__": {"id_": "973a5c15-9c8a-42ae-85cb-6c8af18389c1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "82205a0a-94e4-4add-85ad-eb1ad91dc841", "node_type": null, "metadata": {}, "hash": "2c202d296a7baf8e61ec252c62f2b05e12925993bf215363979f2d40579229bb"}}, "hash": "0c46bf7ab5106bf2dd5229a3750f6290445de592574ed44012fe2dcecca9173c", "text": "Tetris\n\n\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u5b66\u7fd2\u3092\u76ee\u7684\u3068\u3057\u305f\u3001\u30d6\u30ed\u30c3\u30af\u3092\u64cd\u4f5c\u3057\u3066\u30b9\u30b3\u30a2\u3092\u7af6\u3046\u30b2\u30fc\u30e0\u3067\u3059\u3002\nFAQ\u306f\u3053\u3061\u3089\u3002\ntutorial\u306f\u3053\u3061\u3089\u3002\ntetris_score_server\u306f\u3053\u3061\u3089 \ntetris_battle_server\u306f\u3053\u3061\u3089", "start_char_idx": 0, "end_char_idx": 119, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2ad0fdd8-af1f-4e11-92d8-d03b8aa427a5": {"__data__": {"id_": "2ad0fdd8-af1f-4e11-92d8-d03b8aa427a5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e634f55c-48e7-49a7-b21f-c19bd5a37209", "node_type": null, "metadata": {}, "hash": "742b49df0e47b96c43cc7d40fc10747ac73d2d227fb5c5431538105a79ab441d"}}, "hash": "e5545bd17609d3a16c0353ae946f6bc483f1ec02d0248de35ecb257b1b50a28d", "text": "\u5b9f\u884c\u74b0\u5883\u6e96\u5099", "start_char_idx": 0, "end_char_idx": 6, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "696b6e1e-aca8-41e9-aab9-366de11b3628": {"__data__": {"id_": "696b6e1e-aca8-41e9-aab9-366de11b3628", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "665c9256-7794-422e-a4f5-58dd63d3b321", "node_type": null, "metadata": {}, "hash": "5dfbee350772f5b745c56ac069197bfb43162848ff624e7f22e79d6cde89de2f"}}, "hash": "80354b7ac9fbfc874e2d41a09f6727d3f7cd0b2583fb218c50e97a10b3320e2c", "text": "Mac\u74b0\u5883\n\nFinder\u2192Application\u2192Utility\u2192Terminal\u304b\u3089\u3001\u30bf\u30fc\u30df\u30ca\u30eb\u3092\u8d77\u52d5\u3057\u3066\u4ee5\u4e0b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3002 \ninstall\u6210\u529f\u5f8c\u3001\u5b9f\u884c\u65b9\u6cd5\u306b\u3088\u308a\u30b2\u30fc\u30e0\u958b\u59cb\u3059\u308c\u3070OK \n\n```", "start_char_idx": 0, "end_char_idx": 105, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9182231f-5675-4be9-af96-104c16d80c50": {"__data__": {"id_": "9182231f-5675-4be9-af96-104c16d80c50", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1dd849ba-339d-447c-b1c4-1f3ed80a1d26", "node_type": null, "metadata": {}, "hash": "46b2b348610ee5402d1152434b28b0ed43c426d2c560e0838db6fbe20b7cb10e"}}, "hash": "d3e33f86ff7ae9b75879beb46ef9697702eb4d7ae99420a3d616eb08fc772cee", "text": "install pyqt5 and NumPy\nbrew install python3\nbrew install pyqt5\nbrew install numpy", "start_char_idx": 0, "end_char_idx": 82, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "52478ae6-356e-4b5c-a343-763c91d2c220": {"__data__": {"id_": "52478ae6-356e-4b5c-a343-763c91d2c220", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e7dc43f6-ce13-4157-87b6-179846175fcd", "node_type": null, "metadata": {}, "hash": "1a23aef87f93ead4c0a4b3df59cfc5c985c062012ef82ed22a05ba8ad4354ddc"}}, "hash": "72827143a803f42f12ffb6a19be809c92d8dd73660752fa5444ab54b7fd0ef25", "text": "install other packages\nbrew install git\n```\n\ndoc/files/install_mac.md\u306b\u624b\u9806\u3092\u8a18\u8f09", "start_char_idx": 0, "end_char_idx": 75, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d3828701-0ae8-4d1e-970b-2b3f5bb2c1de": {"__data__": {"id_": "d3828701-0ae8-4d1e-970b-2b3f5bb2c1de", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ea87ba5e-ff95-44f9-83a5-8884bd886de4", "node_type": null, "metadata": {}, "hash": "c357f0fdaa56552d5d1954c7d8ef1fdcbc3e20524d37eac3b052b07e8e6e0d9e"}}, "hash": "572782118ae517b0d67bd3b237343dae09c205301509ad246b2af8b86597373e", "text": "windows\u74b0\u5883\n\nwindows\u306epowershell\u3092\u4f7f\u3063\u3066\u30c6\u30c8\u30ea\u30b9\u74b0\u5883\u3092\u69cb\u7bc9\u3059\u308b\u5834\u5408\u306e\u624b\u9806\nWSL(Windows Subsystem for Linux)\u3092\u4f7f\u3046\u5834\u5408\u306e\u624b\u9806\nDocker for Windows\u3092\u4f7f\u3046\u5834\u5408\u306e\u624b\u9806", "start_char_idx": 0, "end_char_idx": 117, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "432a84d5-ac00-45d3-8385-11447b8d7c56": {"__data__": {"id_": "432a84d5-ac00-45d3-8385-11447b8d7c56", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1d431df7-1378-4d96-81b1-74bb9c8a243c", "node_type": null, "metadata": {}, "hash": "fb9f4c97b618490fc52284e86e0742b4f71a418875e5b8edee3bb306c5e5905f"}}, "hash": "33d0a2dfb6544dbd9e01298975f7b39d3a621c09e19d3274c89359c50eb5f468", "text": "Ubuntu/JetsonNano\u74b0\u5883\n\ndoc/files/install_ubuntu.md\u306b\u624b\u9806\u3092\u8a18\u8f09", "start_char_idx": 0, "end_char_idx": 54, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0937c300-83a4-4da1-a471-1bbfdbc90777": {"__data__": {"id_": "0937c300-83a4-4da1-a471-1bbfdbc90777", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f184122c-81e5-45a9-a612-d8b852c042b3", "node_type": null, "metadata": {}, "hash": "4126a897a947e6cd9ae8555f6e14004dd197f02449a7e41918f26870840f02a4"}}, "hash": "73abec11ae83c3d845e4789961513aa68b792ac68d4fcf72fbd4147d3a096eb1", "text": "docker\u74b0\u5883\n\ndocker/README.md\u306b\u624b\u9806\u3092\u8a18\u8f09", "start_char_idx": 0, "end_char_idx": 32, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "1806da72-5923-4cae-8a66-854195e37b92": {"__data__": {"id_": "1806da72-5923-4cae-8a66-854195e37b92", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7545faa8-19a4-4494-9d5d-e6240d0e9e3c", "node_type": null, "metadata": {}, "hash": "5fcc42c5e0be702504afec721edd6e98e3f87ca1000a0b01ee706aebd7f15243"}}, "hash": "ac2e46d0d7aebdd9a96f5dd75f2ad629b5b7325660b3f588f20b1c0830fe598f", "text": "\u5b9f\u884c\u65b9\u6cd5\n\n\u672c\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53d6\u5f97\n\n```shell\ncd $HOME\ngit clone https://github.com/seigot/tetris\n```\n\n\u30b2\u30fc\u30e0\u958b\u59cb\u7528\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\n\n```shell\ncd tetris\npython start.py\n```\n\n!Screenshot", "start_char_idx": 0, "end_char_idx": 150, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "245e052e-d059-43e0-ac54-ff8eaec19421": {"__data__": {"id_": "245e052e-d059-43e0-ac54-ff8eaec19421", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9158184e-4261-4309-ba1d-143eee835163", "node_type": null, "metadata": {}, "hash": "9ecb62085a5698f224b17fb11870f585ad1885ea9b118b9f5d4d51ee35d048b3"}}, "hash": "15fe0ca08f63ada0ddb10341851b0ee511e4d5a2803f6b473e0f2562c6d4ba79", "text": "\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\n\n\u5b9f\u884c\u6642\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4e0e\u3048\u308b\u3053\u3068\u3067\u3001\u30b9\u30b3\u30a2\u30a2\u30bf\u30c3\u30af\u7528\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u306e\u5b9f\u884c\u304c\u53ef\u80fd\u3067\u3059\u3002\n\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u306e\u8a73\u7d30\u306f\u3001\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30b5\u30f3\u30d7\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u53c2\u7167\u4e0b\u3055\u3044\u3002\n\n```shell\npython start.py -m sample\n```", "start_char_idx": 0, "end_char_idx": 132, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "133900ec-e422-400e-8951-d617ba58f528": {"__data__": {"id_": "133900ec-e422-400e-8951-d617ba58f528", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c1142512-08a2-4305-8728-79e2a42d6d2d", "node_type": null, "metadata": {}, "hash": "3622fc3be6c37d9687218043fabb68508a51044b8f0d416424fa45fd97fcf55c"}}, "hash": "d3ea684cbcff3d3f44f2ad5f2e959808e6c2bb142598238b86808abd01506696", "text": "\u624b\u52d5\u64cd\u4f5c\n\n\u5b9f\u884c\u6642\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4e0e\u3048\u308b\u3053\u3068\u3067\u3001\u624b\u52d5\u64cd\u4f5c\u304c\u53ef\u80fd\u3067\u3059\u3002\n\u64cd\u4f5c\u65b9\u6cd5\u306f\u3001PC\u64cd\u4f5c\u6e96\u62e0\u3068\u30b2\u30fc\u30e0\u6a5f\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u6e96\u62e0\u306e2\u7a2e\u985e\u3092\u9078\u629e\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059\u3002\n\n| \u624b\u52d5\u64cd\u4f5c | PC\u64cd\u4f5c\u6e96\u62e0 | \u30b2\u30fc\u30e0\u6a5f\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u6e96\u62e0 |\n| ---- | ---- | ---- |\n| \u5b9f\u884c\u30b3\u30de\u30f3\u30c9 | python start.py -m keyboard | python start.py -m gamepad |\n| *up* key | \u56de\u8ee2 | \u843d\u4e0b |\n| *left* key | \u5de6\u306b\u79fb\u52d5 | \u5de6\u306b\u79fb\u52d5 |\n| *right* key | \u53f3\u306b\u79fb\u52d5 | \u53f3\u306b\u79fb\u52d5 |\n| *m* key | \u4e0b\u306b\u79fb\u52d5 | \u4e0b\u306b\u79fb\u52d5 |\n| *space* key | \u843d\u4e0b | \u56de\u8ee2 |\n| *P* key | Pause | Pause |\n| *c* key | hold | hold |\n\n`--nextShapeMode hate`\u30aa\u30d7\u30b7\u30e7\u30f3\u4ed8\u304d\u3067\u5b9f\u884c\u3059\u308b\u3068hate\u30e2\u30fc\u30c9(\u624b\u52d5\u64cd\u4f5c\u3067\u904a\u3076\u7528)\u306b\u306a\u308a\u307e\u3059\u3002\n\n```\npython3 start.py -m keyboard --nextShapeMode hate\n```", "start_char_idx": 0, "end_char_idx": 573, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "dc7fea2d-d282-49a9-91f4-c446fc482cbd": {"__data__": {"id_": "dc7fea2d-d282-49a9-91f4-c446fc482cbd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "1bdfabe8-645c-44e1-bf10-382e2ce59a95", "node_type": null, "metadata": {}, "hash": "ebfbcf337ad74220b86f417cda9b0f9356263a561fe3ae42d7e882c80ca22b93"}}, "hash": "74b87a4bc6c3bfb8c97292605570c6d0a209fcce5bd92302931d7060193335ed", "text": "AI\u5b9f\u88c5\n\n\u5b9f\u884c\u65b9\u6cd5\u3001\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059 \n\u8a73\u7d30\u306fAI\u306b\u3064\u3044\u3066\u3092\u53c2\u7167\u4e0b\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 45, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "33a80011-707c-4e4a-9953-f035ad1c2b39": {"__data__": {"id_": "33a80011-707c-4e4a-9953-f035ad1c2b39", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6bf39a3d-3528-4146-9655-90a9f95fd9df", "node_type": null, "metadata": {}, "hash": "138ac834c4ef2c728f0b211902c83d924731055afea07cde455e4f7b40c3fa43"}}, "hash": "e369cba4793f176c0182b2af6f8c17daee11f03d379738842d08b4ef3219a299", "text": "art\n\n\u5b9f\u884c\u65b9\u6cd5\u3001\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059 \n\u8a73\u7d30\u306fart\u306b\u3064\u3044\u3066\u3092\u53c2\u7167\u4e0b\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 45, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2bef8386-2742-4384-9cf6-e5745950cf70": {"__data__": {"id_": "2bef8386-2742-4384-9cf6-e5745950cf70", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "cc4f60e5-a448-44f5-bbf7-192d6c8ac8ef", "node_type": null, "metadata": {}, "hash": "5a4018b32d1f9eb65d99ac472df3d5fd0a0b7af898ec898f68e198465b3b64fc"}}, "hash": "1eef8adc227abede23b78d017f6ddd491f13ecbe1512412bc73b5a8df53b095d", "text": "\u81ea\u52d5\u8a55\u4fa1\u30b5\u30fc\u30d0\n\n\u8868\u984c\u306e\u30b5\u30fc\u30d0\u3092\u6709\u5fd7\u3067\u7528\u610f\u3057\u3066\u3044\u307e\u3059 \nhttps://github.com/ChallengeClub/tetris_score_server", "start_char_idx": 0, "end_char_idx": 81, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f1a4fa1b-c4ae-4569-b4c2-fa91c9bfd7f3": {"__data__": {"id_": "f1a4fa1b-c4ae-4569-b4c2-fa91c9bfd7f3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e777e248-adaa-40b9-990c-dc90e67fb8d8", "node_type": null, "metadata": {}, "hash": "d6ca574883449f20288b9b44e8d518f8b015d452ce6ce3f89d44af75dff8b450"}}, "hash": "02d1279f3621c1dbd254dbc34871780f4a240bd50cd58332e4bd3e8a32fa668f", "text": "Play rules\n\n\u5236\u9650\u6642\u9593\u5185\u306e\u7372\u5f97\u30b9\u30b3\u30a2\u3092\u8a55\u4fa1\u3057\u307e\u3059\u3002", "start_char_idx": 0, "end_char_idx": 30, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "04c8b63d-9486-4ae2-b381-b813de511e5b": {"__data__": {"id_": "04c8b63d-9486-4ae2-b381-b813de511e5b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b723447b-5b47-449f-a42d-d20057e87d73", "node_type": null, "metadata": {}, "hash": "a4696646ce9bae8d157fdff91734ce76b06deda64357995f88e117a7bcb77ab2"}}, "hash": "dc52f58c03ff5bc8e446e8af8f061852db451f602bf80bb20b7fdca18e5f1dc7", "text": "Score\n\n\u52a0\u70b9\n\n| \u9805\u76ee | \u5f97\u70b9 | \u5099\u8003 |\n| ---- | ---- | ---- |\n| 1\u30e9\u30a4\u30f3\u6d88\u3057 | + 100\u70b9 | - |\n| 2\u30e9\u30a4\u30f3\u6d88\u3057 | + 300\u70b9 | - |\n| 3\u30e9\u30a4\u30f3\u6d88\u3057 | + 700\u70b9 | - |\n| 4\u30e9\u30a4\u30f3\u6d88\u3057 | + 1300\u70b9 | - |\n| \u843d\u4e0b\u30dc\u30fc\u30ca\u30b9 | + \u843d\u4e0b\u3057\u305f\u30d6\u30ed\u30c3\u30af\u6570\u3092\u5f97\u70b9\u306b\u52a0\u7b97 | - |\n| \u5168\u6d88\u3057\u30dc\u30fc\u30ca\u30b9 | + \u5168\u6d88\u3057\u6642\u306b\u5f97\u70b9 | - |\n\n\u6e1b\u70b9\n\n| \u9805\u76ee | \u5f97\u70b9 | \u5099\u8003 |\n| ---- | ---- | ---- |\n| gameover | - 500\u70b9 | \u30d6\u30ed\u30c3\u30af\u51fa\u73fe\u6642\u306b\u30d5\u30a3\u30fc\u30eb\u30c9\u304c\u57cb\u307e\u3063\u3066\u3044\u305f\u3089gameover", "start_char_idx": 0, "end_char_idx": 361, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c7a0f770-07cf-40d3-8c24-c4ea170b3e3b": {"__data__": {"id_": "c7a0f770-07cf-40d3-8c24-c4ea170b3e3b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "563f86ff-c773-4318-b5de-4b005a00c15c", "node_type": null, "metadata": {}, "hash": "1f81865e2d10819aa6ec86cacfbb3112278aa0c8f2ca0d8f8ebd2b2d9725f925"}}, "hash": "3fa5679701cf8e55db4464d883798e2063ead8db27959f564330f18781935bce", "text": "game level\n\n\u5b9f\u884c\u6642\u3001\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4e0e\u3048\u308b\u3053\u3068\u3067\u3001\u96e3\u6613\u5ea6\uff08\u30ec\u30d9\u30eb\uff09\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059\u3002\n\n| | level1 | level2 | level3 | level4 | \n| --- | --- | --- | --- | --- | \n| \u5b9f\u884c\u65b9\u6cd5 | python start.py | python start.py -l2 | python start.py -l3 | python start.py -l4 | \n| \u5236\u9650\u6642\u9593 | 180\u79d2 | 180\u79d2 | 180\u79d2 | 180\u79d2 | \n| \u30d6\u30ed\u30c3\u30af\u306e\u9806\u756a | \u56fa\u5b9a(1-7\u307e\u3067\u9806\u756a\u306b\u7e70\u308a\u8fd4\u3057) | \u30e9\u30f3\u30c0\u30e0 | \u30e9\u30f3\u30c0\u30e0 | \u30e9\u30f3\u30c0\u30e0 |\n| \u30d5\u30a3\u30fc\u30eb\u30c9\u306e\u521d\u671f\u30d6\u30ed\u30c3\u30af | \u306a\u3057 | \u306a\u3057 | \u3042\u308a | \u3042\u308a | \n| \u30d5\u30ec\u30fc\u30e0\u66f4\u65b0\u983b\u5ea6 | \u7d041\u79d2 | \u7d041\u79d2 | \u7d041\u79d2 | \u7d040.001\u79d2 | \n| \u5168\u6d88\u3057\u30dc\u30fc\u30ca\u30b9 | +0 | +0 | +4000 | +4000 | \n| \u5099\u8003 | - | - | - | - | \n\n\u5404\u30ec\u30d9\u30eb\u306e\u53c2\u8003\u30b9\u30b3\u30a2", "start_char_idx": 0, "end_char_idx": 534, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "cf10fd93-8d52-401a-b4bc-f3008db7d7d7": {"__data__": {"id_": "cf10fd93-8d52-401a-b4bc-f3008db7d7d7", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "91f6257d-54c7-4248-a056-4007af9d01e8", "node_type": null, "metadata": {}, "hash": "65aa46410bf5fbaccee92fe649a7c30209ca8e2bf99122ff13dbb1e01cd0110d"}}, "hash": "ac8c1fe82ef4c4067e382821ab2286a61b5c724e4a0bcb5df0ecce546599a716", "text": "\u30d5\u30a1\u30a4\u30eb\u69cb\u6210", "start_char_idx": 0, "end_char_idx": 6, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8f2dd465-226d-4a17-ae7c-7aec5260cf67": {"__data__": {"id_": "8f2dd465-226d-4a17-ae7c-7aec5260cf67", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d08c0faa-fdf2-4c79-82cd-f51349b011f0", "node_type": null, "metadata": {}, "hash": "cbb9a6257df1e9a36f26e32661d3001b2ce67df5837a7964240e818719deb219"}}, "hash": "a8d5b00d6ed2733eca4e8f70424e8c32e3200dca6cb53c5a4b535e6fb9a75a11", "text": "\u30d5\u30a1\u30a4\u30eb\u4e00\u89a7\n\n* `game_manager/game_manager.py` : \u30b2\u30fc\u30e0\u7ba1\u7406\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\n* `game_manager/board_manager.py` : \u30dc\u30fc\u30c9\u7ba1\u7406\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\n* `game_manager/block_controller.py` : \u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\uff08\u30d6\u30ed\u30c3\u30af\u306e\u64cd\u4f5c\u306f\u3001\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u66f4\u65b0\u3057\u3066\u4e0b\u3055\u3044\u3002\uff09\n* `start.py` : \u30b2\u30fc\u30e0\u958b\u59cb\u7528\u30b3\u30de\u30f3\u30c9", "start_char_idx": 0, "end_char_idx": 206, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "37d9b31b-7d06-415c-b9f3-075dfc822f2d": {"__data__": {"id_": "37d9b31b-7d06-415c-b9f3-075dfc822f2d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9ec3d41b-c7f8-4ef3-a6a6-1f5a5bbcacb9", "node_type": null, "metadata": {}, "hash": "81b5ba7f3960b120263cfafa83c748a06de7c37996562db8476e5a5a904aa4af"}}, "hash": "e25dd51b5ff81b2f5350a100e4915183af66a838d722a45b984794dbd6fa0201", "text": "\u8a73\u7d30\n\n\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u69cb\u6210\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002\n\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\u306f\u3001\u7ba1\u7406\u30d7\u30ed\u30b0\u30e9\u30e0\u304b\u3089\u5b9a\u671f\u7684\u306b\u547c\u3073\u51fa\u3055\u308c\u308b\u306e\u3067\u3001\u30dc\u30fc\u30c9\u60c5\u5831\u304b\u3089\u6b21\u306e\u52d5\u4f5c\u3092\u6c7a\u5b9a\u3057\u3066\u4e0b\u3055\u3044\u3002 \n\n```mermaid\n graph TB\n\n subgraph \u30b2\u30fc\u30e0\u7ba1\u7406\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\n B1[\"game_manager.py\"]\n C1[\"board_manager.py\"]\n D1[\"block_controller.py\u3053\u3053\u3067\u73fe\u5728\u306e\u30d6\u30ed\u30c3\u30af\u306e\u52d5\u4f5c\u3092\u6c7a\u5b9a\u3059\u308b\"]\n B1 --update--> C1\n B1 --getNextMove--> D1\n D1 --NextMove--> B1\n subgraph \u30dc\u30fc\u30c9\u7ba1\u7406\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\n C1\n end\n subgraph \u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\n D1\n end\n end\n\n\n subgraph \u30b2\u30fc\u30e0\u958b\u59cb\u7528\u30b3\u30de\u30f3\u30c9\n A1[start.py] --> B1\n end\nstyle \u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30d7\u30ed\u30b0\u30e9\u30e0 fill:#fef\n```\n\n\u8a73\u7d30\n- \u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u3064\u3044\u3066\u306e\u8aac\u660e \n- \u30dc\u30fc\u30c9\u7ba1\u7406\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u3064\u3044\u3066\u306e\u8aac\u660e \n- \u30b2\u30fc\u30e0\u7ba1\u7406\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u3064\u3044\u3066\u306e\u8aac\u660e", "start_char_idx": 0, "end_char_idx": 552, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "af0dfa52-56da-4cda-91fa-0cb38fc91cb3": {"__data__": {"id_": "af0dfa52-56da-4cda-91fa-0cb38fc91cb3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "61677468-6c24-4927-91b0-6cef5b80852e", "node_type": null, "metadata": {}, "hash": "df741be94531c7b2aec861b0725560bb5fd8e24b2063432e4f566d348cdd1cf7"}}, "hash": "4e22598bf4a7078ce980d66c570dfa27a8c5cb82903ee689f0a8a07ef0bbc2a4", "text": "\u30b3\u30fc\u30c9\u4f5c\u6210\u306e\u306f\u3058\u3081\u304b\u305f", "start_char_idx": 0, "end_char_idx": 11, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8a155880-671e-4bdf-b782-5e9767d5a009": {"__data__": {"id_": "8a155880-671e-4bdf-b782-5e9767d5a009", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4937f679-5b1b-4d83-92ae-87c2b7e37adf", "node_type": null, "metadata": {}, "hash": "b2362bd0aab520e116359d399eb918aa3135e0142891bea7b5ff6373ca36af03"}}, "hash": "b47020a3649f23726d8649d27e8a8789702a159e3fc67ce7c1cef0e60cc17b5d", "text": "\u672c\u30ea\u30dd\u30b8\u30c8\u30ea\u306efork\n\n\u307e\u305a\u3001Github\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u53d6\u5f97\u3057\u3066\u672c\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u81ea\u30ea\u30dd\u30b8\u30c8\u30ea\u306bfork\u3057\u3066\u4e0b\u3055\u3044\u3002\n\n> \u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u30d5\u30a9\u30fc\u30af\u306e\u4f8b \n> \n> 0. GitHub\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u4f5c\u6210/\u30ed\u30b0\u30a4\u30f3\u3059\u308b\u3002 \n> 1. GitHub \u3067\u3001https://github.com/seigot/tetris\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u307e\u3059 \n> 2. \u30da\u30fc\u30b8\u306e\u53f3\u4e0a\u306b\u3042\u308b [Fork] \u3092\u30af\u30ea\u30c3\u30af\u3057\u307e\u3059\u3002 \n> \u53c2\u8003\uff1a\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u30d5\u30a9\u30fc\u30af\u3059\u308b \n\n\u305d\u306e\u5f8c\u3001\u81ea\u30ea\u30dd\u30b8\u30c8\u30ea\u306bfork\u3057\u305f`tetris`\u3092\u30ed\u30fc\u30ab\u30eb\u30de\u30b7\u30f3\u306b\u53d6\u5f97\u3057\u3066\u4e0b\u3055\u3044\u3002\n\n```\ncd ~\ngit clone https://github.com//tetris # \"\"\u3055\u3093\uff08yourname=\u81ea\u5206\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u540d\u306b\u8aad\u307f\u304b\u3048\u3066\u4e0b\u3055\u3044\uff09\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408\ngit clone https://github.com/seigot/tetris # \u3053\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408\n```\n\n\u65e2\u306b`tetris`\u304c\u5b58\u5728\u3057\u3066\u304a\u308a\u3001\u3053\u308c\u3092\u524a\u9664\u3057\u305f\u3044\u5834\u5408\u306f`rm -f`\u3092\u5b9f\u884c\u3057\u3066\u4e0b\u3055\u3044\u3002\n\n```", "start_char_idx": 0, "end_char_idx": 480, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d06f932c-e25f-424e-8550-eb1a0384e2a4": {"__data__": {"id_": "d06f932c-e25f-424e-8550-eb1a0384e2a4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c4f7b5ef-1a59-4619-b54e-cf41a374b635", "node_type": null, "metadata": {}, "hash": "aed89004c900c7d3cb2a09b35b4dfa5418a58b4bdb11ec989ab971df0687faf2"}}, "hash": "f72a2eb3ae3bd452f9fff99b6e4a7e2f647c22f357cd28368d434a0d2ae94fb7", "text": "ubuntu/mac\u7b49\u306e\u5834\u5408\nsudo rm -rf tetris", "start_char_idx": 0, "end_char_idx": 33, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6080eb17-0342-412b-a707-27fcebbc620b": {"__data__": {"id_": "6080eb17-0342-412b-a707-27fcebbc620b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7c144053-e6f9-4cad-bb77-c063d620e0b8", "node_type": null, "metadata": {}, "hash": "c34472d25635e043249f0fb2d9356e90196542b699a43f8ae897f9d95cb29ffa"}}, "hash": "d572759e22f1b607fa64d253eba25a73065af5d1a5104f4ef2d84af25e736f6f", "text": "windows powershell\u306e\u5834\u5408\nRemove-Item -Recurse -Force tetris\n```\n\n\u53d6\u5f97\u5f8c\u306f\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u5909\u66f4\u3001\u5909\u66f4\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u7b49\u3057\u3066\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3092\u9032\u3081\u3066\u4e0b\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 104, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "93673750-be8f-498d-8a61-7be02dcccabf": {"__data__": {"id_": "93673750-be8f-498d-8a61-7be02dcccabf", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e060e8ed-36f1-4c0e-aef7-6a91690af859", "node_type": null, "metadata": {}, "hash": "7b91bdf9832c343cdfc6f15696d527b20da25388334abbd26ea23c73dafa225b"}}, "hash": "0f6a9f7244dfa736dcda0f5243ce47dcee02e6100a47c3a01f5486ac1481e094", "text": "\u5b9f\u884c\n\n`\u5b9f\u884c\u65b9\u6cd5`\u3092\u53c2\u8003\u306b\u5b9f\u884c\u74b0\u5883\u306e\u69cb\u7bc9\u3092\u3057\u3066\u4e0b\u3055\u3044\u3002\n\u74b0\u5883\u69cb\u7bc9\u306e\u5b8c\u4e86\u5f8c\u3001\u30d6\u30ed\u30c3\u30af\u64cd\u4f5c\u7528\u30d7\u30ed\u30b0\u30e9\u30e0`block_controller.py`\u3092\u66f4\u65b0\u3057\u3066\u3044\u3063\u3066\u304f\u3060\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 84, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "37705651-ac14-4c53-b486-933c2536c261": {"__data__": {"id_": "37705651-ac14-4c53-b486-933c2536c261", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f9836538-74a0-4207-8c08-c6103728d6be", "node_type": null, "metadata": {}, "hash": "6558ae706b5384ac0f9c146bd8aae447876a6d73a50fd36d635fb38843055a83"}}, "hash": "c9abf08d487db6d61ceb279442ea9c93056c354366680e264eeb76793f0c562a", "text": "\u81ea\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u30d0\u30a4\u30ca\u30ea\u3092\u516c\u5f0f\u30ea\u30ea\u30fc\u30b9\u3059\u308b\n\n\u63d0\u51fa\u6642\u3001\u81ea\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u30d0\u30a4\u30ca\u30ea\u3092\u516c\u5f0f\u30ea\u30ea\u30fc\u30b9\u3059\u308b\u5834\u5408\u306f\u3001Github\u30ea\u30ea\u30fc\u30b9\u306e\u6a5f\u80fd\u3092\u4f7f\u3046\u3068\u7c21\u5358\u306a\u306e\u3067\u304a\u52e7\u3081\u3067\u3059\u3002\n\n> \u81ea\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u30b3\u30fc\u30c9\u3092\u63d0\u51fa\uff08\u30d0\u30a4\u30ca\u30ea\u30ea\u30ea\u30fc\u30b9\uff09\u3059\u308b\u5834\u5408\u306e\u624b\u9806\u53c2\u8003 \n> \u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b \n> 7.\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3001\u30b3\u30f3\u30d1\u30a4\u30eb\u3055\u308c\u305f\u30d7\u30ed\u30b0\u30e9\u30e0\u306a\u3069\u306e\u30d0\u30a4\u30ca\u30ea\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30ea\u30fc\u30b9\u306b\u542b\u3081\u308b\u306b\u306f\u3001\u30c9\u30e9\u30c3\u30b0\u30a2\u30f3\u30c9\u30c9\u30ed\u30c3\u30d7\u3059\u308b\u304b\u30d0\u30a4\u30ca\u30ea\u30dc\u30c3\u30af\u30b9\u3067\u624b\u52d5\u3067\u9078\u629e\u3057\u307e\u3059\u3002", "start_char_idx": 0, "end_char_idx": 214, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "cbdea7e8-6b23-4688-9c05-3c5c0eae95db": {"__data__": {"id_": "cbdea7e8-6b23-4688-9c05-3c5c0eae95db", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a8ff9a92-9b91-4767-9913-174a84af5115", "node_type": null, "metadata": {}, "hash": "e4999aa5225211d59ee355ec433c70d3c51cffb64e4c26400a6bd12aef838195"}}, "hash": "106223d09513286ec8def3e651a54899882a0f69e38d23e544e303042425311a", "text": "\u672c\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u53d6\u308a\u8fbc\u307f\n\n\u4eca\u5f8c\u3001\u672c\u30ea\u30dd\u30b8\u30c8\u30ea\u3082\u30d0\u30fc\u30b8\u30e7\u30f3\u30a2\u30c3\u30d7\u3057\u3066\u3044\u304f\u4e88\u5b9a\u3067\u3059\u3002\n\u672c\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u30a2\u30c3\u30d7\u3092\u53d6\u308a\u8fbc\u3080\u5834\u5408\u306f\u3001fork\u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u3066\u4ee5\u4e0b\u3092\u5b9f\u884c\u3057\u3066\u4e0b\u3055\u3044\u3002\n\n\u203b\u8ffd\u8a18 2021/5\u3088\u308a\u3001Github UI\u4e0a\u304b\u3089\u64cd\u4f5c\u53ef\u80fd\u306b\u306a\u3063\u305f\u3088\u3046\u3067\u3059\u3002\nGitHub\u65b0\u6a5f\u80fd\u300cFetch upstream\u300d\u4f7f\u3063\u3066\u307f\u305f\uff01\u30001\u30af\u30ea\u30c3\u30af\u3067\u89aa\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u8ffd\u5f93\uff08\u540c\u671f\uff09\n\n```\ngit checkout master # \u30ed\u30fc\u30ab\u30eb\u306emain\u30d6\u30e9\u30f3\u30c1\u306b\u79fb\u52d5\ngit remote add upstream https://github.com/seigot/tetris # fork\u5143\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092upstream \u3068\u3044\u3046\u540d\u524d\u3067\u30ea\u30e2\u30fc\u30c8\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\uff08\u540d\u524d\u306f\u306a\u3093\u3067\u3082\u3044\u3044\u3002\u767b\u9332\u6e08\u307f\u306a\u3089\u30b9\u30ad\u30c3\u30d7\uff09\ngit fetch upstream # upstream \u304b\u3089\u6700\u65b0\u306e\u30b3\u30fc\u30c9\u3092fetch\ngit merge upstream/master # upstream/main \u3092 \u30ed\u30fc\u30ab\u30eb\u306emaster \u306bmerge\ngit push # \u5909\u66f4\u3092\u53cd\u6620\n```\n\n\u53c2\u8003\uff1agithub \u3067 fork \u3057\u305f\u30ea\u30dd\u30b8\u30c8\u30ea\u3067\u672c\u5bb6\u306b\u8ffd\u5f93\u3059\u308b", "start_char_idx": 0, "end_char_idx": 679, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8644d86d-7af8-419e-8e32-3d2a92d15039": {"__data__": {"id_": "8644d86d-7af8-419e-8e32-3d2a92d15039", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ce3f47aa-6516-42c1-8cbe-7d9f9f3fe51c", "node_type": null, "metadata": {}, "hash": "799f26a3a5b37f437ec5981059f5fa9077e4bfd0ccd5eee7b7d9f6c29cf2fba3"}}, "hash": "9681963c6acfcc4d815e3c56c34f17c5e37e0d571c30bbfb2ab1293203210df7", "text": "Pull Request\u3092\u9001\u308b\uff08Optional\uff09\n\n\u672c\u30ea\u30dd\u30b8\u30c8\u30ea\u3078\u4fee\u6b63\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059\u3002\u8a73\u3057\u304f\u306f\u53c2\u8003\u3092\u3054\u53c2\u7167\u4e0b\u3055\u3044\u3002\n\n\u203b\u8ffd\u8a18\u3000Pull Request\u7df4\u7fd2\u7528\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002\ntest_pull_request\n\n\u89e3\u8aac\u56f3:\n\n!Git Commentary\n\n\u53c2\u8003\uff1a\nGitHub-\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u4f5c\u6210\u65b9\u6cd5\n[\u5b9f\u8df5] \u306f\u3058\u3081\u3066\u306ePull Request\u3092\u3084\u3063\u3066\u307f\u3088\u3046\n\u3010GitHub\u3011Pull Request\u306e\u624b\u9806", "start_char_idx": 0, "end_char_idx": 220, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ff7e4c0c-eac9-4a0a-99d6-5121a3dddc82": {"__data__": {"id_": "ff7e4c0c-eac9-4a0a-99d6-5121a3dddc82", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "16639bfd-8648-44ca-a3a0-e2ba6a3a98c8", "node_type": null, "metadata": {}, "hash": "404dffb6e738c78b09e5c7c0fe81c0724dc8441cef22ce6768b1c50a16763a3a"}}, "hash": "a061a144cc810806b6331f13ae1b3b31be78773916faa529d962c2c74d620729", "text": "FAQ\n\ndoc/files/FAQ.md\u3092\u53c2\u7167\u4e0b\u3055\u3044\u3002", "start_char_idx": 0, "end_char_idx": 28, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e7244407-bbd7-414f-9c02-b7d3c51f4dcd": {"__data__": {"id_": "e7244407-bbd7-414f-9c02-b7d3c51f4dcd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "623b56b5-c42d-498e-879c-067728194106", "node_type": null, "metadata": {}, "hash": "bcc5ca85c973ca80abf44aaf25d5ffdb47c2ccbe1c1ca0e9b0c8dc6486e50675"}}, "hash": "666793a656f4c8185b3058dec79e0950f6cd864dbb2fdf48fb7d69cfa8a1b84e", "text": "\u53c2\u8003\n\nhttps://github.com/LoveDaisy/tetris_game \nhttps://github.com/seigot/tetris_game (2021.12\u6642\u70b9\u307e\u3067\u4f7f\u7528)\nhttp://zetcode.com/gui/pyqt5/tetris/\n\u30c6\u30c8\u30ea\u30b9\u306e\u6b74\u53f2\u3092\u300c\u30d6\u30ed\u30c3\u30af\u304c\u843d\u3061\u308b\u30eb\u30fc\u30eb\u300d\u306e\u9032\u5316\u304b\u3089\u5b66\u3076\n\u300e\u30c6\u30c8\u30ea\u30b9\u3067Python\u3092\u5b66\u307c\u3046v4\u300f\u512a\u52dd\u30b3\u30fc\u30c9\u89e3\u8aac", "start_char_idx": 0, "end_char_idx": 192, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9c9867a3-6bc3-4544-8032-094305ccc606": {"__data__": {"id_": "9c9867a3-6bc3-4544-8032-094305ccc606", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ffce1b10-7adb-42a0-9334-4d3664ace063", "node_type": null, "metadata": {}, "hash": "20ce693b38d9e49b77cbddd8004582360afefd358ab6a138e7f4d1436ee4a689"}}, "hash": "6fe1bd880ad0b7f931b83094121722e8edc899a89c1c6edfc322793a26ae9e87", "text": "\u4eca\u5f8c\u306e\u8ab2\u984c", "start_char_idx": 0, "end_char_idx": 5, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7a71c62a-768b-4849-b2ca-5a26fa8a2847": {"__data__": {"id_": "7a71c62a-768b-4849-b2ca-5a26fa8a2847", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "268e1e4b-d8da-42ba-90c7-ac6017dabb9e", "node_type": null, "metadata": {}, "hash": "87a990097b311f05cbe3e1cbceaefa2c30dc28ef95c13fd730cb588afd3f9456"}}, "hash": "6a21ce2c0c1aded57cf46c0a207c7698019322027e2cce09a237fbafac6e8e1c", "text": "\u6b21\u306e\u30d6\u30ed\u30c3\u30af\u306e\u30e9\u30f3\u30c0\u30e0\u6027\n\n\u6b21\u306e\u30d6\u30ed\u30c3\u30af\u306e\u30e9\u30f3\u30c0\u30e0\u6027\u306f\u3001\u73fe\u5728\u306frandom\u95a2\u6570\u306e\u51fa\u529b\u306b\u4f9d\u5b58\u3057\u3066\u3044\u307e\u3059\u3002\n\u3057\u304b\u3057\u3001\u3053\u3061\u3089\u306e\u8a18\u4e8b\u306b\u3088\u308b\u3068\u9078\u629e\u65b9\u5f0f\u304c\u8272\u3005\u3042\u308a\u305d\u3046\u3067\u3059\u3002\n\u6709\u8b58\u8005\u306e\u65b9\u304b\u3089\u30a2\u30c9\u30d0\u30a4\u30b9\u9802\u3051\u308b\u3068\u52a9\u304b\u308a\u307e\u3059\u3002\n\n* \u53c2\u8003\uff1a\u6b21\u306e\u30d6\u30ed\u30c3\u30af\u9078\u629e\u51e6\u7406 game_manager.py\n\n```\nnextShapeIndex = np_randomShape.random.randint(1, 8)\n```", "start_char_idx": 0, "end_char_idx": 198, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "83938eff-db4f-4cfe-b2e4-725387540be3": {"__data__": {"id_": "83938eff-db4f-4cfe-b2e4-725387540be3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "f00cf63f-75fe-4ccd-aeef-91783ebd153b", "node_type": null, "metadata": {}, "hash": "1d8fe01bcdd1293d88402ca592f2998a19a6e5d5a90f5f24fa354dd517452c5b"}}, "hash": "e1f1d0e7ed658330a2b4c7b9c5db50f28b635fdaa768360c78ce60125d59d360", "text": "\u7af6\u4e89\u8981\u7d20\u306e\u8ffd\u52a0\n\n\u4f8b\u3048\u3070\u3001AI\u5b66\u7fd2\u3092\u76ee\u7684\u3068\u3057\u305f\u30eb\u30fc\u30eb\u306e\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u3001\u706b\u529b\u30dc\u30fc\u30ca\u30b9\u3001\u306a\u3069\u304c\u8a72\u5f53\u3059\u308b \nissues", "start_char_idx": 0, "end_char_idx": 57, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ad6bdffa-b1d6-4451-b6d6-f7c43bace4fe": {"__data__": {"id_": "ad6bdffa-b1d6-4451-b6d6-f7c43bace4fe", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "bfd1115a-3599-4761-a2df-20da99be5902", "node_type": null, "metadata": {}, "hash": "78b6bb1b9c9c1cbf932b74ba923019174f39082adba922081c14fefe94e46806"}}, "hash": "e5ae5dda52455d26c4ac88a3a5c3abd45249e5c3a228e7c001f7dabfa2651d02", "text": "\u5b66\u7fd2\u8981\u7d20\u306e\u8ffd\u52a0\n\n\u4f8b\u3048\u3070\u3001\u6587\u6cd5\u3001\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\u3001AI\u8981\u7d20\u3001\u306a\u3069\u304c\u8a72\u5f53\u3059\u308b \nissues#120", "start_char_idx": 0, "end_char_idx": 48, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "052bf4f8-4827-464c-bc7d-c8d8e4697670": {"__data__": {"id_": "052bf4f8-4827-464c-bc7d-c8d8e4697670", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2ce78b70-9965-4bef-afed-8005e9808f4a", "node_type": null, "metadata": {}, "hash": "dd77898cc8b787989ff02e99eaadfb7fe3a7d327e745fd09a1e80480c0177809"}}, "hash": "13dc26c14ffc70ffc0093b974f6655a21a6fb9f75c92b8d615c157ddf9f6bb3e", "text": "LICENSE\n\nMIT LICENSE", "start_char_idx": 0, "end_char_idx": 20, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e6aed9e4-13ac-46ae-b02e-d6fd2d2cb428": {"__data__": {"id_": "e6aed9e4-13ac-46ae-b02e-d6fd2d2cb428", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9b9a4941-3530-464c-bc90-233826c569de", "node_type": null, "metadata": {}, "hash": "89a219eae95914671e3ec4b13af519ad2e656f3701c61b8dddcb7c67ce815bf7"}}, "hash": "a657c202ee96c62cb40d7011d84c339d3bba282759574c10cd025bb900bb221a", "text": "Finnaly\n\n~ HAVE FUN ~", "start_char_idx": 0, "end_char_idx": 21, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}}, "docstore/ref_doc_info": {"ce79c7e0-2737-497f-b28b-129a092972f6": {"node_ids": ["ea8f2a24-783c-4441-87e9-3d6a524e88d4"], "metadata": {}}, "d9c805d3-b4c7-4edd-979f-5e9e9ddbf844": {"node_ids": ["9dd5ef61-505f-4cf8-8a57-775a5a4a6d9e"], "metadata": {}}, "068cf630-c9b1-45ad-ad7a-42114cb0f760": {"node_ids": ["a5dd4ed2-ffad-4506-a1f2-e25c12569798"], "metadata": {}}, "88c52465-0591-4e30-b3bb-80b593e67e63": {"node_ids": ["83a1dda7-4b27-46a2-90b7-42ee0797ec3f"], "metadata": {}}, "9d1aa5a7-32ce-4db8-90f5-b80c3590d2a8": {"node_ids": ["06a505d0-5a9c-48de-aa71-92c9d2e1598c"], "metadata": {}}, "ae939c3e-1ba7-45a9-ab77-a57971c19e70": {"node_ids": ["a64c9c75-bf7f-49b2-b815-51798474fc5b"], "metadata": {}}, "3e7b8570-c846-456b-a2da-99e9e00b152e": {"node_ids": ["4250c708-0eaa-454d-a61e-ca6949f4cab8"], "metadata": {}}, "987b823a-a32f-4e0a-be51-321a464fa024": {"node_ids": ["f5dff58d-3f9f-438b-aec4-ad9d405dd0d0"], "metadata": {}}, "68654e11-e95e-4198-b977-342ffea414d1": {"node_ids": ["71c6d102-1b98-40e2-975b-a0bca03bf152"], "metadata": {}}, "4058c3ac-5fc2-44f1-be9b-caf4592c1975": {"node_ids": ["7b56d953-5d3d-4c26-b263-0d7d273eecf3"], "metadata": {}}, "c2ae3914-16bb-4bcd-98cc-2bc1b8c64211": {"node_ids": ["2206a4d2-1112-4287-adcd-0bd9dc77978c"], "metadata": {}}, "cbb01147-887b-4402-bc1f-e0d680de53b5": {"node_ids": ["c64c4674-00e9-4ba9-a68d-c40cbcba032b"], "metadata": {}}, "e196e0eb-1d62-4e56-b3c7-860b8b9cf82f": {"node_ids": ["1d8fe66d-74de-42b6-b42c-602120f097f1"], "metadata": {}}, "ea29a5cc-7be0-4c1c-9d82-19092d34e2d3": {"node_ids": ["4354a668-d85d-4c5b-bda7-a24d7f204a75"], "metadata": {}}, "fe785f87-4fa6-4363-8b94-e20f73ac4c69": {"node_ids": ["cd26aa1c-a6d6-43dc-9074-a568ef49975e"], "metadata": {}}, "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0": {"node_ids": ["37740239-6453-42e5-9485-42937afd3209", "9c58f533-fead-4e94-978a-70b0be81b612", "e14c01b1-2eb3-482a-9383-fde15faf6a52"], "metadata": {}}, "ad902677-e961-42cb-9ffd-5474262f813d": {"node_ids": ["2014263b-21f8-4d9f-ac1f-1ecb67ba4b67"], "metadata": {}}, "28d917d5-327e-41a3-9f41-7e786ec0ff9e": {"node_ids": ["f90d1ee3-a44d-4025-8de9-ca2eff283765", "cc5a89fa-f97d-4b34-a08d-7c8f2380f647"], "metadata": {}}, "210f7abe-762f-4d0c-beeb-219591370b19": {"node_ids": ["67fa80df-74b0-495b-ac54-b805b10d55be"], "metadata": {}}, "ce577892-aa46-44ec-a3c3-ad82a8847f5d": {"node_ids": ["a7dec113-d4ad-42b3-8c12-068e790f36fe"], "metadata": {}}, "4303e09f-8bce-4681-943e-06eac590d9d9": {"node_ids": ["ce9b0860-1fd5-4916-bc02-f7003e48000c"], "metadata": {}}, "32c12c5a-b937-4e78-a5e9-0995028d8043": {"node_ids": ["fab83493-3635-42a2-9e4c-3f9c9811b13f"], "metadata": {}}, "a7c6cd42-a821-42ce-82da-45c1a7653f6b": {"node_ids": ["1b0215d1-5988-4f5c-89a9-25cdeeb163ab"], "metadata": {}}, "968e52ba-8d2d-41cb-9ecd-02f41e519527": {"node_ids": ["3948ac0d-cd21-41a2-b82d-23463eda3c94"], "metadata": {}}, "37a6860d-b01a-424b-a69a-0371ffab694a": {"node_ids": ["260d1dd4-dfbf-4c84-b924-99494034f8d5"], "metadata": {}}, "8d31b5c2-c82d-4436-97fa-9038886e7a58": {"node_ids": ["dbf80e15-499d-45af-ba7c-ecca12f0bcf5"], "metadata": {}}, "ec004f6b-f580-4214-a0ed-5ef66f0b423b": {"node_ids": ["084f7f0a-335a-4332-8fba-ea8af93adb07"], "metadata": {}}, "7f292052-e685-484c-8a88-ced6af9dee2b": {"node_ids": ["e02f1412-7ee8-4e47-8fab-65ec2e609219"], "metadata": {}}, "e29949ae-1997-4278-aba6-381cbe396c43": {"node_ids": ["2fa953dc-0470-4f3f-9486-03d37d36846c"], "metadata": {}}, "5eadb649-7007-4e92-9b26-dc8ca221b390": {"node_ids": ["06ef4019-abd1-439c-bb45-44f3e4971932"], "metadata": {}}, "d26b7075-c33d-4ca5-89e8-dbaeb3ef92e2": {"node_ids": ["c84d20ec-e28f-4f37-bd24-4c09ae107433", "533efdc1-0693-470c-b252-baa900561f46"], "metadata": {}}, "f7935bb2-2cad-4d9f-98a5-1058e64a88a9": {"node_ids": ["3ede1386-094b-460e-b22d-c32b7e2e60b1"], "metadata": {}}, "6e42d55e-f0a1-4b3d-96e7-26bfcf75a41e": {"node_ids": ["f8e78a3b-853d-4dd6-96a8-8c757663e864"], "metadata": {}}, "115941f4-c39b-44ad-b53e-075bc067bf4a": {"node_ids": ["70a996da-13cc-4b16-816a-ef5e21359e11"], "metadata": {}}, "d080c1cd-af48-43f0-a9cf-364a2a1452a4": {"node_ids": ["742d11db-0a2b-4ecf-bb72-3544da7c3f52"], "metadata": {}}, "3a73aaa3-4282-4375-98f5-5566e21358a0": {"node_ids": ["342e8fc2-89cb-4b43-b0c9-5f505ec39829"], "metadata": {}}, "3b1cf835-65ab-47d4-9483-69be54ae419a": {"node_ids": ["a50538d7-39ba-408d-b535-b62c3d5bb41b"], "metadata": {}}, "b427ca59-425d-41f5-a205-da189a350d02": {"node_ids": ["18ca8e93-92d9-4eff-be6a-b6e49099476b"], "metadata": {}}, "b8d70b19-f260-4c43-9334-2671cddcf503": {"node_ids": ["aa3dd74c-bf10-4fec-98e2-94661eeb3270"], "metadata": {}}, "b8162150-85b3-4fbb-9da9-a5b54c5e7f88": {"node_ids": ["b5acf5c9-7372-4cad-936f-15baf28828d4"], "metadata": {}}, "179127c9-d49d-4e15-a6d1-d977f107853f": {"node_ids": ["ed8e6383-00ce-4f6e-9f26-c13c25f41b52"], "metadata": {}}, "cd5e317d-895c-4369-acaa-22c1f375024d": {"node_ids": ["be96e7c0-2f2d-44e9-bfc5-6deaf6a7f934"], "metadata": {}}, "47c50451-9153-40cf-8a3e-2df754742596": {"node_ids": ["a483c1ee-77b4-48a7-be28-b9a92ec5fb65"], "metadata": {}}, "dd1508fc-36b2-4ffe-877f-2e078e0e6d93": {"node_ids": ["33e9e11c-0356-4c36-9d24-127d9ec3f40d"], "metadata": {}}, "e59201dd-50da-41fb-bcf7-828be248612b": {"node_ids": ["9355f9f7-4d0f-4eb7-8c26-b117bc816adc", "11bb893b-06dd-46fa-9c3b-05d0561e330b", "f53eefe8-eb19-4cd3-94db-225026bd31af"], "metadata": {}}, "cebfd4cd-b7a7-4e2c-ada9-78695d54f04a": {"node_ids": ["b9fdbcb9-5edc-43ae-8050-dd72079dac26"], "metadata": {}}, "ca65780f-bff0-4525-98af-59ce39554b0f": {"node_ids": ["8bb5fe02-f66d-4302-85cd-4c0c956bf6c0"], "metadata": {}}, "c3f31aa3-3a65-4566-810f-304800b43281": {"node_ids": ["9b546d02-7c84-40d5-aaae-19fad4f818b9"], "metadata": {}}, "500bd4a9-9d6c-46d1-a7ba-68c367c65b19": {"node_ids": ["b689de3d-49d0-4f72-b07a-a561248ccc58"], "metadata": {}}, "4699fa1d-4331-4faa-9df4-dd354731616d": {"node_ids": ["427e9668-cbaf-457e-ab76-98b61061e9b9"], "metadata": {}}, "d17cb98f-78b0-4313-add5-4f6024cc023a": {"node_ids": ["308f55fd-5f56-42b0-b473-9a57716dced2"], "metadata": {}}, "05a2ef2d-d2ac-4130-bdf8-e36c5df8abec": {"node_ids": ["f50169a5-63d6-41e0-8f71-5b49f72769c9"], "metadata": {}}, "dfe8ba87-12c6-4352-881e-007366b9329a": {"node_ids": ["f83a5752-4020-41c1-bc2c-9d74e407fdfc"], "metadata": {}}, "22419697-3d51-4f4b-b3c5-517fc93b85eb": {"node_ids": ["e70c7fff-b77c-46dd-9009-dc930ae0692d", "f1b73661-889e-4a8e-b150-42821788ceb9"], "metadata": {}}, "1b12cd2c-6cbc-4b8b-bc11-b0f07bc21165": {"node_ids": ["d930e5fa-ab0d-4a54-a85b-c8683ca6ce79"], "metadata": {}}, "f42aab04-8e78-4f6a-854d-96e38f4a5861": {"node_ids": ["00eddcdb-b8ed-41b9-838a-2d79d8fb57ab"], "metadata": {}}, "f95c4018-54ee-4594-ba99-26613ce4b0b9": {"node_ids": ["7ad21d09-559c-4e47-92c4-2a2e60192654"], "metadata": {}}, "dcfb8e33-0dd5-4a5a-b143-767385e89c45": {"node_ids": ["8fe56bf8-c709-451f-9cb5-3d45acff76a6"], "metadata": {}}, "851eae1a-b9e2-4830-8dac-bb1210d3f0cf": {"node_ids": ["283ffde8-e3e6-462e-ac07-8d9c0aceda45"], "metadata": {}}, "5abc6f30-b9c4-440e-bfc0-e6ace08009d1": {"node_ids": ["17dc908d-97bd-4f70-a113-da91d42944fc"], "metadata": {}}, "c6e71118-ef41-407c-ae38-6c9531a21885": {"node_ids": ["b47de4d3-efca-437f-b86f-a511a8a488c2"], "metadata": {}}, "e06a2dad-4079-46f4-86ee-e7fefdd32765": {"node_ids": ["470d7749-2dac-40b7-809a-2f8e5dda995f"], "metadata": {}}, "b98f2a03-09c3-4729-8aa2-edc392482b5d": {"node_ids": ["c1bdce91-2f0b-48af-b4be-c8498c881ace"], "metadata": {}}, "c75b624b-0673-4028-a63b-5dca4caebad0": {"node_ids": ["9df26552-c77b-48f9-8468-7ee0482ee31c"], "metadata": {}}, "fb72cf94-871a-46a6-b2c2-e77ebfb0a841": {"node_ids": ["9e8f0265-a120-4449-ab49-84c01e1501fb"], "metadata": {}}, "d8b49b77-5ea7-4bb1-bd66-ce20ce838553": {"node_ids": ["508c0633-27f9-41ce-8943-38a30ca38670"], "metadata": {}}, "7267230c-b52c-407c-8454-190574d5418c": {"node_ids": ["de287235-bc55-42f3-98c4-6a2d542b2740"], "metadata": {}}, "3ec15043-1a7f-464e-9c5c-d535579a0387": {"node_ids": ["23f1ecfa-8922-44a1-ac79-56b894736a62"], "metadata": {}}, "69f6c39d-83e3-4f08-96b1-493af5b225e5": {"node_ids": ["15225548-ae59-44c6-b10d-3788fc066586"], "metadata": {}}, "12f3e9df-748d-4383-b5eb-8e0db339f84f": {"node_ids": ["5b34d215-2611-416b-b34a-7470223a687e"], "metadata": {}}, "ca57654f-7e33-4731-932e-fa737b633546": {"node_ids": ["bcc8ce86-e983-490e-a23f-d7af513392d3"], "metadata": {}}, "c7cfdf36-eef9-4eba-9579-4bc1b556f2c9": {"node_ids": ["81393b81-5c50-483e-ac72-3ddb2466f498"], "metadata": {}}, "fb4931e0-f4e9-4d86-9e7c-0c10aa5d07f4": {"node_ids": ["a8490578-d792-4b2d-a91a-e3755211dad5"], "metadata": {}}, "49976c04-4ec1-4ef2-8fe3-d92e41b0da88": {"node_ids": ["bc35b2fc-146f-4cc2-9a2f-0d1acc85fa16"], "metadata": {}}, "19ea8123-db68-412d-9d74-a03aabed8f14": {"node_ids": ["1846fdb4-bbab-4f8c-a1ce-295a684ef720"], "metadata": {}}, "5be45fc8-d6f1-43f4-878e-6b06ddbab2fe": {"node_ids": ["0cba1902-9045-405e-9a1d-64b1526ebb87"], "metadata": {}}, "9f9b9538-89aa-431f-8cb3-a8cc338ee9d9": {"node_ids": ["ed1fe994-028b-48dc-bc10-80d78f76d4af"], "metadata": {}}, "24c4967d-f328-40cc-9eac-40174a638d4a": {"node_ids": ["4896d728-623a-4b34-ae7d-26404e9a13d6"], "metadata": {}}, "dd7a0dd1-80ac-4acb-aae6-04abdd67eab7": {"node_ids": ["0dba0ca0-6cb8-4433-8b21-00c2cecb4ad1"], "metadata": {}}, "8dd7b6e7-4a87-423e-991e-911c36ec1ff0": {"node_ids": ["6027cd04-5df8-4ec9-9a74-85729013e53f"], "metadata": {}}, "210fa9a3-c7d1-41d7-b065-251a4c37174c": {"node_ids": ["f45620fd-aa92-4c7d-b48b-1b70fc3622ea"], "metadata": {}}, "951d4750-1ce7-4a82-b1d1-3a7144b67547": {"node_ids": ["085fcc40-c5a0-4dea-8039-113b0bd8d4e3"], "metadata": {}}, "56ad45a3-f3cb-4aeb-b883-b9d54843d513": {"node_ids": ["ed78f2a3-18af-4f13-9705-e9b9eca959ae"], "metadata": {}}, "1149b717-c8ec-41ff-8bb2-a8c860e1b122": {"node_ids": ["45aadffd-70a5-4839-92f9-6a8f5f60e930"], "metadata": {}}, "aa0b9af2-ebf7-4edb-b567-c90e5d5932b5": {"node_ids": ["0ecd9cf8-ce03-4f27-8346-be248bb2b66a"], "metadata": {}}, "f12dbc0f-04f1-408f-b9c4-6b5eafb63498": {"node_ids": ["76a79005-725c-4eeb-a2cb-d05bb8a0cb88"], "metadata": {}}, "764e76f4-d0e9-4e94-9570-fbca5547244e": {"node_ids": ["d04b1468-78b1-4115-855e-de536d9f0c9f"], "metadata": {}}, "dfa154f0-f996-4e89-bc94-d40c9bd718e1": {"node_ids": ["c4e7b5cd-3352-42a8-983d-494bcf6582a1"], "metadata": {}}, "5f47e28e-8f87-443e-b11d-00173bc03553": {"node_ids": ["a3a7149a-804f-4666-8986-1cd855092f7d"], "metadata": {}}, "a4663894-f9b2-4950-bffc-f07ffb9a0093": {"node_ids": ["78af704b-28bf-400e-ab15-0860f9ff21f0"], "metadata": {}}, "cfaf86ce-55f8-4538-96ed-3fe4df0deb58": {"node_ids": ["c6701200-393e-4d5f-9fc1-4ecb8bef309f"], "metadata": {}}, "8fca467c-aba7-4536-8adc-80e67a334b58": {"node_ids": ["a9c9ac03-52ba-4828-a891-4f63dcf7e4ea"], "metadata": {}}, "f52f19e2-8471-4e77-bc32-a7f01b22e2a3": {"node_ids": ["c9b38449-e0cc-4a69-a302-65784caaca9c"], "metadata": {}}, "9556f22a-8c45-4dcc-89a7-fc8d772fa2c2": {"node_ids": ["236fce0f-14ec-45a2-98c7-63852575335f"], "metadata": {}}, "667fe628-926a-4bbd-9bae-3031da839aa3": {"node_ids": ["b6b19753-0021-4092-92a5-82c6385d1ea7"], "metadata": {}}, "343bd849-6f9e-41fc-a6b5-fa20ae31b338": {"node_ids": ["3677f763-add2-4a4e-a9bc-3285c05feea5"], "metadata": {}}, "5d2e75cd-1c01-4bf5-a23c-32904cb3f9d4": {"node_ids": ["e906b892-59c3-47ea-8db5-9b62513213dd"], "metadata": {}}, "1cb13e86-3aec-4ca4-8226-5155bf18f1d8": {"node_ids": ["6c060f29-393f-4866-9884-d6732a831213"], "metadata": {}}, "12bbab1f-2548-4095-8f24-24acf4f783cb": {"node_ids": ["be92606c-f3e3-4dc0-8a4f-c9095ab46d10"], "metadata": {}}, "91c987ce-90bd-4d65-a079-868c90a62b4e": {"node_ids": ["a80a896e-df16-444e-ba40-7e566075f3f7"], "metadata": {}}, "ca6aa865-a510-45fb-a604-16484692ca9c": {"node_ids": ["bb09d21a-e0ce-4bd4-b30e-71b1502184db"], "metadata": {}}, "0b151f23-6052-4c2b-9730-3c0797a30e9a": {"node_ids": ["007f28db-1a5c-40d3-919b-4d993ff0d192"], "metadata": {}}, "86f9492c-a828-4b56-928e-2d9092ec3ca8": {"node_ids": ["d44e0165-c1b2-4295-9dcc-bf9de3a9fd06"], "metadata": {}}, "f7d6244b-f7d4-456f-923f-621bc30a84ae": {"node_ids": ["f8833e02-c260-4885-8532-49ed310cac67"], "metadata": {}}, "e3d1d171-77c2-4675-9891-7ec48fbabc91": {"node_ids": ["963f875d-783b-4902-9e2b-433010ef739a"], "metadata": {}}, "aa6d1cbc-a686-4d84-93ba-d2a2cb880313": {"node_ids": ["8719fd0e-5005-4414-bf3c-41d6a3057de9"], "metadata": {}}, "972df85b-4215-4c8a-b4c9-4b3545e8d879": {"node_ids": ["00c06687-6593-44db-9462-6ec51c254b20"], "metadata": {}}, "3d5eafa6-af75-41f1-bf38-4d95162c8ebc": {"node_ids": ["0c575bac-b8db-4ea8-abc2-0b512363d662"], "metadata": {}}, "1ea78f64-0de3-408c-baed-69f05b82be79": {"node_ids": ["47443c42-8394-4e1a-a1ae-748f0d235d1e"], "metadata": {}}, "ff8a7032-6fbd-4cd7-89d1-e7bdd1038adb": {"node_ids": ["7e115d34-80b1-444b-9a9b-cc54eca947cc"], "metadata": {}}, "b643bfd3-6ec9-411d-a563-00ddadf3f830": {"node_ids": ["6055200f-29d8-477f-ac6b-e4bede10878a"], "metadata": {}}, "b0f9fcc2-bf2b-4a6c-821c-83f09d8d90ed": {"node_ids": ["4cc49e02-40a2-48f8-88b6-76b37c9bdd81"], "metadata": {}}, "5130e796-5a64-40a5-a8c0-2a4354e451e6": {"node_ids": ["f6db1301-4642-4407-b005-e75982801961"], "metadata": {}}, "f4a606d9-2489-4aa9-b68e-f476ddf8d5d3": {"node_ids": ["3fc35171-bc33-4726-af97-d66dd2070531"], "metadata": {}}, "28d7174d-852f-4886-8a8b-e63a916a144e": {"node_ids": ["3b9b8a00-cdac-42d3-b5d0-c5e7f87345a6"], "metadata": {}}, "35dc437a-7626-40c7-8567-2a5856790c16": {"node_ids": ["5fbdf692-ad99-4031-a69d-798144197097"], "metadata": {}}, "48c58cf9-dd43-4193-aa02-f86073982a26": {"node_ids": ["9c38a9cf-92ca-492e-bf14-e332287c02ad"], "metadata": {}}, "99a013c1-3b3a-4f1b-a656-9e249c618656": {"node_ids": ["2ef6c2b4-8a75-4214-97a7-ba78b4f7fcc8"], "metadata": {}}, "73b731ff-ee83-48d5-82c7-3ac9cc4dd38c": {"node_ids": ["5b87a716-610c-4a52-9706-58146e9b5f5b"], "metadata": {}}, "584d5baf-1356-46c0-a46e-860aec0e8007": {"node_ids": ["1349852d-6cd2-4a66-b4a1-b258a4147807"], "metadata": {}}, "571308b4-3cd1-47f6-85b4-faac592e0a46": {"node_ids": ["019057ca-a153-4f2f-bd21-65fbb4dfcce6"], "metadata": {}}, "bdacaa2a-bd38-4606-bbef-cd07c48c7869": {"node_ids": ["40d8ea74-d247-413f-9230-20c95127dcdb"], "metadata": {}}, "0d846675-3005-40e5-bc51-bba6923267dd": {"node_ids": ["71f70f07-2860-4a61-b3a1-372762fedfb8"], "metadata": {}}, "e91a5a0e-ac47-48f6-bae9-5b7b2c6c39c6": {"node_ids": ["8285f94c-d182-4f5e-b8ea-8916ebc54544"], "metadata": {}}, "555311ab-c836-4c20-a3dc-24efaf7ccace": {"node_ids": ["0de6c6a7-1c6a-4840-8e96-e09d0d995e52"], "metadata": {}}, "d3396fc0-63bc-4aa5-95f9-6cd3ea4d174d": {"node_ids": ["c180cbf8-8012-4f58-a408-4b6a6072477a"], "metadata": {}}, "91fa9261-3de4-42a5-b5b6-d2559d0006c2": {"node_ids": ["e3ba026b-5908-4c73-9833-67cb82a75746"], "metadata": {}}, "c2c25875-bcce-49a6-accd-80125c88ea8e": {"node_ids": ["885c5a0b-2e15-4c7d-9257-d9a01c458eba"], "metadata": {}}, "76a37b38-3207-45cd-bbda-1c8f78765275": {"node_ids": ["961b4e50-41d2-4353-9e78-885db2028a62"], "metadata": {}}, "50e94990-40c3-4321-9cfc-6aacfb48bc5d": {"node_ids": ["a7d5cd60-d35b-43c4-ad2d-469147d85e1d"], "metadata": {}}, "3b40b0c5-d27e-4717-9765-79254f86ca99": {"node_ids": ["7b7444e8-5e2c-4d2b-8d41-a5c7180e5747"], "metadata": {}}, "5a6656fd-78b4-4668-8c2f-a0181814e07d": {"node_ids": ["3454cfe3-51a9-40f2-b7d4-28efeb36b30b"], "metadata": {}}, "8a0351b2-2b88-45ec-a4ef-77fa0ca33582": {"node_ids": ["34002b91-014c-4697-8737-4a15527847f5"], "metadata": {}}, "2f1409cd-fc75-4462-be08-151a3d7f807b": {"node_ids": ["3b6bef66-ce49-4c09-8fc7-14270f1a72db"], "metadata": {}}, "382c1175-574c-4da1-b8ba-e48946e55529": {"node_ids": ["2c2f9276-e991-4f8c-8ce0-bd87ea6d42bf"], "metadata": {}}, "94c1534c-c2b4-48d4-9678-9c717953ff17": {"node_ids": ["c58d2cf1-6713-4d9a-9d37-6afa53baa3fd"], "metadata": {}}, "1095fffc-e023-454c-88da-e8c24bc28e82": {"node_ids": ["48bf9617-e70d-4329-bdd5-b63b261e0103"], "metadata": {}}, "3bcfa11a-3d3d-4fff-bd31-a9cec14dbe9c": {"node_ids": ["cd8cbd8b-e585-4ef7-b12b-413e6b598c04"], "metadata": {}}, "0bc53677-2697-47b6-800f-89ff1da2f2f7": {"node_ids": ["2842b791-dc81-4391-ae53-183965f45efb"], "metadata": {}}, "f4f00ff3-56fa-442d-8ef2-9c4ca4736376": {"node_ids": ["73ce240b-3c09-48de-99f4-0194dc1faaf2"], "metadata": {}}, "ab94c84e-faa3-46ad-b0cd-8954bc2ef260": {"node_ids": ["6d444950-9e43-4284-9d89-6948cad48e74"], "metadata": {}}, "50f7803c-7efb-45d5-ba28-635155c5fc4f": {"node_ids": ["c672c616-984e-4cb1-8d30-e8a926d7fe1c"], "metadata": {}}, "6ae5d33d-30b7-47d2-b945-6f71791af405": {"node_ids": ["45b837a5-3b51-4f6f-9806-ce2f512426fa"], "metadata": {}}, "6daf950b-9c88-438f-9757-2b6c544d0b04": {"node_ids": ["ab3b4ded-a0e5-4d00-94d1-2fcee1efeba3"], "metadata": {}}, "3c6dcf35-7412-4f68-ac74-adde2f7b5134": {"node_ids": ["62b01dae-a988-438c-8405-cc7b9e34f01c"], "metadata": {}}, "dd994aa9-ffd5-4886-a1df-5f8a21286da6": {"node_ids": ["63c48eac-6dd9-46ff-a6f2-e00f5dcb0e7f"], "metadata": {}}, "296249e0-01bf-4dec-9622-c0850f83ecc5": {"node_ids": ["3f83359c-54f8-428b-b1e4-a1fb21c29b8c"], "metadata": {}}, "a262d057-8d77-42c5-9a89-3188d79b9893": {"node_ids": ["e7b19daa-0975-4df6-a2d9-19f1be4fed5c"], "metadata": {}}, "1ebb5f71-2f5d-4611-a975-b1d8c32fe040": {"node_ids": ["027179e2-6c33-43b0-b609-f76b6c776cd2"], "metadata": {}}, "94b20e90-7916-40ef-8e41-9632f6844787": {"node_ids": ["227654cd-983d-4662-8ffd-2b2c2f3929a3"], "metadata": {}}, "821040d3-9adc-47af-9e8f-95caa036491d": {"node_ids": ["ca018018-d46c-4cc7-815c-7ed899383cc8"], "metadata": {}}, "303c678b-4232-47a9-9455-d9391baaaa49": {"node_ids": ["7d9ff17a-3463-4125-a2f7-06aadcd0e118"], "metadata": {}}, "7f4a19dd-5982-4ac6-be64-54dff7cbb176": {"node_ids": ["a9cdbcc2-2f08-45ad-9dbe-141195027deb"], "metadata": {}}, "8799e86a-5519-4697-b866-797972f40d5c": {"node_ids": ["f33c9b34-17e2-471c-8474-f72b8cb2cae8"], "metadata": {}}, "c465083c-dfcb-443d-a011-e05a7d8b6572": {"node_ids": ["2285791b-bcd9-4594-8a59-e3111636859e"], "metadata": {}}, "eaf7d3e7-bad4-4848-af23-c50cafbb009f": {"node_ids": ["228c06bb-f645-4014-b659-023b13b7411f"], "metadata": {}}, "cf26ff9b-e2cd-47b3-9f91-ba621cc1b131": {"node_ids": ["51d4d8a9-2dc7-41a8-b8e1-69681f8e3f98"], "metadata": {}}, "7797fb4b-430f-4807-8b24-883e270a3a3d": {"node_ids": ["660c68c6-21fc-4598-a6ea-c3f54b19cabf"], "metadata": {}}, "904a3afc-d116-4c75-b30c-bb2c37e0725b": {"node_ids": ["1036624e-f299-4634-8358-ea02d80ebfdb"], "metadata": {}}, "417aec6d-529e-492c-b069-156861142815": {"node_ids": ["efbff208-3cc2-4169-adc8-1aadfd164458"], "metadata": {}}, "1a731606-d439-4f76-9e83-c40360894e19": {"node_ids": ["bcd5627d-3241-4022-9659-0a39c43d1017"], "metadata": {}}, "5ad3f174-df8b-4315-941d-b50415aaeb77": {"node_ids": ["2d5d975a-c3d1-4c28-ba1f-ff97bb1fc7c2"], "metadata": {}}, "6373be1e-2941-4482-8d7e-feb5316a160c": {"node_ids": ["9dea7fe1-20f0-4f2b-9256-e5ccf033967c"], "metadata": {}}, "6541688c-1f56-4cde-a319-67a1c85e6e02": {"node_ids": ["22b13e1d-dad8-43f3-ad56-a2ce9d179da3"], "metadata": {}}, "1bddf82c-eeeb-459c-a298-bff48a82a43e": {"node_ids": ["9cab7fb6-4610-46eb-bd11-bb7ec3eede56"], "metadata": {}}, "e86b2357-ca10-46cf-89a0-65ec5b942f8d": {"node_ids": ["30108c3b-c684-4ff2-964f-5b5eae299db8"], "metadata": {}}, "b30bdd19-acfe-4cb4-a6a5-20d7759e8ec9": {"node_ids": ["d4901a71-eb19-4e06-8bce-ca8451429be1"], "metadata": {}}, "5fe4e490-a421-426d-9c76-f34a4859f9d1": {"node_ids": ["10bcde16-c549-4dc8-b38c-13526db9e2ec"], "metadata": {}}, "4901c299-983a-4a81-b4dc-a4e3726c79de": {"node_ids": ["bbe0cfa1-9266-4314-8cb6-65172eead885"], "metadata": {}}, "59eb9170-d56e-4e4e-8bad-c988419e986b": {"node_ids": ["69b8f82f-50a6-4828-8968-c1466952a5cd"], "metadata": {}}, "6840ec80-7677-4911-a635-7a9f0ed9bc7e": {"node_ids": ["e831b8c2-60e6-405d-87f7-121747e5b6d7"], "metadata": {}}, "7375eebb-d5e6-4a0b-a8d0-4024d9f0118b": {"node_ids": ["de710693-42f0-4cef-acc8-412ce43ecf84"], "metadata": {}}, "bbcc61c2-bb80-4a95-b584-56fca2fd0ddc": {"node_ids": ["727acea5-6cc9-4807-b68d-cc9314661756"], "metadata": {}}, "daa4a211-9852-48df-b162-dd67e4ba0d52": {"node_ids": ["ba7d40e1-7292-480b-818c-c15a39187f6c"], "metadata": {}}, "3b3a2d21-adb6-4092-a532-63108fb15859": {"node_ids": ["f8c4152e-64b9-4488-b0f1-093f8bd58377"], "metadata": {}}, "d3282272-5bd9-45cc-bc61-31ffea91d07f": {"node_ids": ["d83b7aea-8abd-462f-b03b-f68ebd2bb9e4"], "metadata": {}}, "16e5a958-c32d-4137-b409-d59e67c521b3": {"node_ids": ["9e0fad21-aa28-466a-9c2f-38571c907bbc"], "metadata": {}}, "f8ee7337-e899-408b-b0e7-376c08a81c9f": {"node_ids": ["cdad89c0-2a46-4638-a097-bc4323c75f5d"], "metadata": {}}, "d22bfe9b-4a60-4262-8009-0f953b68f228": {"node_ids": ["667ae363-e738-48ce-80e9-03ee7261b5ce"], "metadata": {}}, "82c7c5f2-14c0-4ea1-96e0-55d24815a934": {"node_ids": ["b380cdaa-9db0-4777-8838-a810de25f3e3"], "metadata": {}}, "c1b73fca-d756-461d-a74b-52bb8dcb596f": {"node_ids": ["7c86d2b4-553e-494a-9634-90ac4128bbb3"], "metadata": {}}, "29cc3093-4a3e-47b6-b979-10f0b68c7536": {"node_ids": ["e4f631ce-d334-40a6-a3ca-be65bf27de24"], "metadata": {}}, "cc0fc37b-8587-4386-9d6b-38919ef43c54": {"node_ids": ["81674c4f-60e0-4f23-86bb-333d830f42e3"], "metadata": {}}, "6b4993ef-0255-4ba9-a433-ff91419b52c6": {"node_ids": ["180ad649-c7c7-4415-aee5-031c9a29b264"], "metadata": {}}, "94748ba8-d795-48ad-a384-2ab41d37d2c6": {"node_ids": ["9451cf88-0557-48bb-8a7c-dcc314a20424"], "metadata": {}}, "82205a0a-94e4-4add-85ad-eb1ad91dc841": {"node_ids": ["973a5c15-9c8a-42ae-85cb-6c8af18389c1"], "metadata": {}}, "e634f55c-48e7-49a7-b21f-c19bd5a37209": {"node_ids": ["2ad0fdd8-af1f-4e11-92d8-d03b8aa427a5"], "metadata": {}}, "665c9256-7794-422e-a4f5-58dd63d3b321": {"node_ids": ["696b6e1e-aca8-41e9-aab9-366de11b3628"], "metadata": {}}, "1dd849ba-339d-447c-b1c4-1f3ed80a1d26": {"node_ids": ["9182231f-5675-4be9-af96-104c16d80c50"], "metadata": {}}, "e7dc43f6-ce13-4157-87b6-179846175fcd": {"node_ids": ["52478ae6-356e-4b5c-a343-763c91d2c220"], "metadata": {}}, "ea87ba5e-ff95-44f9-83a5-8884bd886de4": {"node_ids": ["d3828701-0ae8-4d1e-970b-2b3f5bb2c1de"], "metadata": {}}, "1d431df7-1378-4d96-81b1-74bb9c8a243c": {"node_ids": ["432a84d5-ac00-45d3-8385-11447b8d7c56"], "metadata": {}}, "f184122c-81e5-45a9-a612-d8b852c042b3": {"node_ids": ["0937c300-83a4-4da1-a471-1bbfdbc90777"], "metadata": {}}, "7545faa8-19a4-4494-9d5d-e6240d0e9e3c": {"node_ids": ["1806da72-5923-4cae-8a66-854195e37b92"], "metadata": {}}, "9158184e-4261-4309-ba1d-143eee835163": {"node_ids": ["245e052e-d059-43e0-ac54-ff8eaec19421"], "metadata": {}}, "c1142512-08a2-4305-8728-79e2a42d6d2d": {"node_ids": ["133900ec-e422-400e-8951-d617ba58f528"], "metadata": {}}, "1bdfabe8-645c-44e1-bf10-382e2ce59a95": {"node_ids": ["dc7fea2d-d282-49a9-91f4-c446fc482cbd"], "metadata": {}}, "6bf39a3d-3528-4146-9655-90a9f95fd9df": {"node_ids": ["33a80011-707c-4e4a-9953-f035ad1c2b39"], "metadata": {}}, "cc4f60e5-a448-44f5-bbf7-192d6c8ac8ef": {"node_ids": ["2bef8386-2742-4384-9cf6-e5745950cf70"], "metadata": {}}, "e777e248-adaa-40b9-990c-dc90e67fb8d8": {"node_ids": ["f1a4fa1b-c4ae-4569-b4c2-fa91c9bfd7f3"], "metadata": {}}, "b723447b-5b47-449f-a42d-d20057e87d73": {"node_ids": ["04c8b63d-9486-4ae2-b381-b813de511e5b"], "metadata": {}}, "563f86ff-c773-4318-b5de-4b005a00c15c": {"node_ids": ["c7a0f770-07cf-40d3-8c24-c4ea170b3e3b"], "metadata": {}}, "91f6257d-54c7-4248-a056-4007af9d01e8": {"node_ids": ["cf10fd93-8d52-401a-b4bc-f3008db7d7d7"], "metadata": {}}, "d08c0faa-fdf2-4c79-82cd-f51349b011f0": {"node_ids": ["8f2dd465-226d-4a17-ae7c-7aec5260cf67"], "metadata": {}}, "9ec3d41b-c7f8-4ef3-a6a6-1f5a5bbcacb9": {"node_ids": ["37d9b31b-7d06-415c-b9f3-075dfc822f2d"], "metadata": {}}, "61677468-6c24-4927-91b0-6cef5b80852e": {"node_ids": ["af0dfa52-56da-4cda-91fa-0cb38fc91cb3"], "metadata": {}}, "4937f679-5b1b-4d83-92ae-87c2b7e37adf": {"node_ids": ["8a155880-671e-4bdf-b782-5e9767d5a009"], "metadata": {}}, "c4f7b5ef-1a59-4619-b54e-cf41a374b635": {"node_ids": ["d06f932c-e25f-424e-8550-eb1a0384e2a4"], "metadata": {}}, "7c144053-e6f9-4cad-bb77-c063d620e0b8": {"node_ids": ["6080eb17-0342-412b-a707-27fcebbc620b"], "metadata": {}}, "e060e8ed-36f1-4c0e-aef7-6a91690af859": {"node_ids": ["93673750-be8f-498d-8a61-7be02dcccabf"], "metadata": {}}, "f9836538-74a0-4207-8c08-c6103728d6be": {"node_ids": ["37705651-ac14-4c53-b486-933c2536c261"], "metadata": {}}, "a8ff9a92-9b91-4767-9913-174a84af5115": {"node_ids": ["cbdea7e8-6b23-4688-9c05-3c5c0eae95db"], "metadata": {}}, "ce3f47aa-6516-42c1-8cbe-7d9f9f3fe51c": {"node_ids": ["8644d86d-7af8-419e-8e32-3d2a92d15039"], "metadata": {}}, "16639bfd-8648-44ca-a3a0-e2ba6a3a98c8": {"node_ids": ["ff7e4c0c-eac9-4a0a-99d6-5121a3dddc82"], "metadata": {}}, "623b56b5-c42d-498e-879c-067728194106": {"node_ids": ["e7244407-bbd7-414f-9c02-b7d3c51f4dcd"], "metadata": {}}, "ffce1b10-7adb-42a0-9334-4d3664ace063": {"node_ids": ["9c9867a3-6bc3-4544-8032-094305ccc606"], "metadata": {}}, "268e1e4b-d8da-42ba-90c7-ac6017dabb9e": {"node_ids": ["7a71c62a-768b-4849-b2ca-5a26fa8a2847"], "metadata": {}}, "f00cf63f-75fe-4ccd-aeef-91783ebd153b": {"node_ids": ["83938eff-db4f-4cfe-b2e4-725387540be3"], "metadata": {}}, "bfd1115a-3599-4761-a2df-20da99be5902": {"node_ids": ["ad6bdffa-b1d6-4451-b6d6-f7c43bace4fe"], "metadata": {}}, "2ce78b70-9965-4bef-afed-8005e9808f4a": {"node_ids": ["052bf4f8-4827-464c-bc7d-c8d8e4697670"], "metadata": {}}, "9b9a4941-3530-464c-bc90-233826c569de": {"node_ids": ["e6aed9e4-13ac-46ae-b02e-d6fd2d2cb428"], "metadata": {}}}} \ No newline at end of file diff --git a/cloud/sam/scripts/chat_function/storage/graph_store.json b/cloud/sam/scripts/chat_function/storage/graph_store.json new file mode 100644 index 00000000..9aab8ead --- /dev/null +++ b/cloud/sam/scripts/chat_function/storage/graph_store.json @@ -0,0 +1 @@ +{"graph_dict": {}} \ No newline at end of file diff --git a/cloud/sam/scripts/chat_function/storage/index_store.json b/cloud/sam/scripts/chat_function/storage/index_store.json new file mode 100644 index 00000000..10eb21c5 --- /dev/null +++ b/cloud/sam/scripts/chat_function/storage/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"ec9ba975-876a-4c3a-8a4f-d75ce5e70d62": {"__type__": "vector_store", "__data__": "{\"index_id\": \"ec9ba975-876a-4c3a-8a4f-d75ce5e70d62\", \"summary\": null, \"nodes_dict\": {\"ea8f2a24-783c-4441-87e9-3d6a524e88d4\": \"ea8f2a24-783c-4441-87e9-3d6a524e88d4\", \"9dd5ef61-505f-4cf8-8a57-775a5a4a6d9e\": \"9dd5ef61-505f-4cf8-8a57-775a5a4a6d9e\", \"a5dd4ed2-ffad-4506-a1f2-e25c12569798\": \"a5dd4ed2-ffad-4506-a1f2-e25c12569798\", \"83a1dda7-4b27-46a2-90b7-42ee0797ec3f\": \"83a1dda7-4b27-46a2-90b7-42ee0797ec3f\", \"06a505d0-5a9c-48de-aa71-92c9d2e1598c\": \"06a505d0-5a9c-48de-aa71-92c9d2e1598c\", \"a64c9c75-bf7f-49b2-b815-51798474fc5b\": \"a64c9c75-bf7f-49b2-b815-51798474fc5b\", \"4250c708-0eaa-454d-a61e-ca6949f4cab8\": \"4250c708-0eaa-454d-a61e-ca6949f4cab8\", \"f5dff58d-3f9f-438b-aec4-ad9d405dd0d0\": \"f5dff58d-3f9f-438b-aec4-ad9d405dd0d0\", \"71c6d102-1b98-40e2-975b-a0bca03bf152\": \"71c6d102-1b98-40e2-975b-a0bca03bf152\", \"7b56d953-5d3d-4c26-b263-0d7d273eecf3\": \"7b56d953-5d3d-4c26-b263-0d7d273eecf3\", \"2206a4d2-1112-4287-adcd-0bd9dc77978c\": \"2206a4d2-1112-4287-adcd-0bd9dc77978c\", \"c64c4674-00e9-4ba9-a68d-c40cbcba032b\": \"c64c4674-00e9-4ba9-a68d-c40cbcba032b\", \"1d8fe66d-74de-42b6-b42c-602120f097f1\": \"1d8fe66d-74de-42b6-b42c-602120f097f1\", \"4354a668-d85d-4c5b-bda7-a24d7f204a75\": \"4354a668-d85d-4c5b-bda7-a24d7f204a75\", \"cd26aa1c-a6d6-43dc-9074-a568ef49975e\": \"cd26aa1c-a6d6-43dc-9074-a568ef49975e\", \"37740239-6453-42e5-9485-42937afd3209\": \"37740239-6453-42e5-9485-42937afd3209\", \"9c58f533-fead-4e94-978a-70b0be81b612\": \"9c58f533-fead-4e94-978a-70b0be81b612\", \"e14c01b1-2eb3-482a-9383-fde15faf6a52\": \"e14c01b1-2eb3-482a-9383-fde15faf6a52\", \"2014263b-21f8-4d9f-ac1f-1ecb67ba4b67\": \"2014263b-21f8-4d9f-ac1f-1ecb67ba4b67\", \"f90d1ee3-a44d-4025-8de9-ca2eff283765\": \"f90d1ee3-a44d-4025-8de9-ca2eff283765\", \"cc5a89fa-f97d-4b34-a08d-7c8f2380f647\": \"cc5a89fa-f97d-4b34-a08d-7c8f2380f647\", \"67fa80df-74b0-495b-ac54-b805b10d55be\": \"67fa80df-74b0-495b-ac54-b805b10d55be\", \"a7dec113-d4ad-42b3-8c12-068e790f36fe\": \"a7dec113-d4ad-42b3-8c12-068e790f36fe\", \"ce9b0860-1fd5-4916-bc02-f7003e48000c\": \"ce9b0860-1fd5-4916-bc02-f7003e48000c\", \"fab83493-3635-42a2-9e4c-3f9c9811b13f\": \"fab83493-3635-42a2-9e4c-3f9c9811b13f\", \"1b0215d1-5988-4f5c-89a9-25cdeeb163ab\": \"1b0215d1-5988-4f5c-89a9-25cdeeb163ab\", \"3948ac0d-cd21-41a2-b82d-23463eda3c94\": \"3948ac0d-cd21-41a2-b82d-23463eda3c94\", \"260d1dd4-dfbf-4c84-b924-99494034f8d5\": \"260d1dd4-dfbf-4c84-b924-99494034f8d5\", \"dbf80e15-499d-45af-ba7c-ecca12f0bcf5\": \"dbf80e15-499d-45af-ba7c-ecca12f0bcf5\", \"084f7f0a-335a-4332-8fba-ea8af93adb07\": \"084f7f0a-335a-4332-8fba-ea8af93adb07\", \"e02f1412-7ee8-4e47-8fab-65ec2e609219\": \"e02f1412-7ee8-4e47-8fab-65ec2e609219\", \"2fa953dc-0470-4f3f-9486-03d37d36846c\": \"2fa953dc-0470-4f3f-9486-03d37d36846c\", \"06ef4019-abd1-439c-bb45-44f3e4971932\": \"06ef4019-abd1-439c-bb45-44f3e4971932\", \"c84d20ec-e28f-4f37-bd24-4c09ae107433\": \"c84d20ec-e28f-4f37-bd24-4c09ae107433\", \"533efdc1-0693-470c-b252-baa900561f46\": \"533efdc1-0693-470c-b252-baa900561f46\", \"3ede1386-094b-460e-b22d-c32b7e2e60b1\": \"3ede1386-094b-460e-b22d-c32b7e2e60b1\", \"f8e78a3b-853d-4dd6-96a8-8c757663e864\": \"f8e78a3b-853d-4dd6-96a8-8c757663e864\", \"70a996da-13cc-4b16-816a-ef5e21359e11\": \"70a996da-13cc-4b16-816a-ef5e21359e11\", \"742d11db-0a2b-4ecf-bb72-3544da7c3f52\": \"742d11db-0a2b-4ecf-bb72-3544da7c3f52\", \"342e8fc2-89cb-4b43-b0c9-5f505ec39829\": \"342e8fc2-89cb-4b43-b0c9-5f505ec39829\", \"a50538d7-39ba-408d-b535-b62c3d5bb41b\": \"a50538d7-39ba-408d-b535-b62c3d5bb41b\", \"18ca8e93-92d9-4eff-be6a-b6e49099476b\": \"18ca8e93-92d9-4eff-be6a-b6e49099476b\", \"aa3dd74c-bf10-4fec-98e2-94661eeb3270\": \"aa3dd74c-bf10-4fec-98e2-94661eeb3270\", \"b5acf5c9-7372-4cad-936f-15baf28828d4\": \"b5acf5c9-7372-4cad-936f-15baf28828d4\", \"ed8e6383-00ce-4f6e-9f26-c13c25f41b52\": \"ed8e6383-00ce-4f6e-9f26-c13c25f41b52\", \"be96e7c0-2f2d-44e9-bfc5-6deaf6a7f934\": \"be96e7c0-2f2d-44e9-bfc5-6deaf6a7f934\", \"a483c1ee-77b4-48a7-be28-b9a92ec5fb65\": \"a483c1ee-77b4-48a7-be28-b9a92ec5fb65\", \"33e9e11c-0356-4c36-9d24-127d9ec3f40d\": \"33e9e11c-0356-4c36-9d24-127d9ec3f40d\", \"9355f9f7-4d0f-4eb7-8c26-b117bc816adc\": \"9355f9f7-4d0f-4eb7-8c26-b117bc816adc\", \"11bb893b-06dd-46fa-9c3b-05d0561e330b\": \"11bb893b-06dd-46fa-9c3b-05d0561e330b\", \"f53eefe8-eb19-4cd3-94db-225026bd31af\": \"f53eefe8-eb19-4cd3-94db-225026bd31af\", \"b9fdbcb9-5edc-43ae-8050-dd72079dac26\": \"b9fdbcb9-5edc-43ae-8050-dd72079dac26\", \"8bb5fe02-f66d-4302-85cd-4c0c956bf6c0\": \"8bb5fe02-f66d-4302-85cd-4c0c956bf6c0\", \"9b546d02-7c84-40d5-aaae-19fad4f818b9\": \"9b546d02-7c84-40d5-aaae-19fad4f818b9\", \"b689de3d-49d0-4f72-b07a-a561248ccc58\": \"b689de3d-49d0-4f72-b07a-a561248ccc58\", \"427e9668-cbaf-457e-ab76-98b61061e9b9\": \"427e9668-cbaf-457e-ab76-98b61061e9b9\", \"308f55fd-5f56-42b0-b473-9a57716dced2\": \"308f55fd-5f56-42b0-b473-9a57716dced2\", \"f50169a5-63d6-41e0-8f71-5b49f72769c9\": \"f50169a5-63d6-41e0-8f71-5b49f72769c9\", \"f83a5752-4020-41c1-bc2c-9d74e407fdfc\": \"f83a5752-4020-41c1-bc2c-9d74e407fdfc\", \"e70c7fff-b77c-46dd-9009-dc930ae0692d\": \"e70c7fff-b77c-46dd-9009-dc930ae0692d\", \"f1b73661-889e-4a8e-b150-42821788ceb9\": \"f1b73661-889e-4a8e-b150-42821788ceb9\", \"d930e5fa-ab0d-4a54-a85b-c8683ca6ce79\": \"d930e5fa-ab0d-4a54-a85b-c8683ca6ce79\", \"00eddcdb-b8ed-41b9-838a-2d79d8fb57ab\": \"00eddcdb-b8ed-41b9-838a-2d79d8fb57ab\", \"7ad21d09-559c-4e47-92c4-2a2e60192654\": \"7ad21d09-559c-4e47-92c4-2a2e60192654\", \"8fe56bf8-c709-451f-9cb5-3d45acff76a6\": \"8fe56bf8-c709-451f-9cb5-3d45acff76a6\", \"283ffde8-e3e6-462e-ac07-8d9c0aceda45\": \"283ffde8-e3e6-462e-ac07-8d9c0aceda45\", \"17dc908d-97bd-4f70-a113-da91d42944fc\": \"17dc908d-97bd-4f70-a113-da91d42944fc\", \"b47de4d3-efca-437f-b86f-a511a8a488c2\": \"b47de4d3-efca-437f-b86f-a511a8a488c2\", \"470d7749-2dac-40b7-809a-2f8e5dda995f\": \"470d7749-2dac-40b7-809a-2f8e5dda995f\", \"c1bdce91-2f0b-48af-b4be-c8498c881ace\": \"c1bdce91-2f0b-48af-b4be-c8498c881ace\", \"9df26552-c77b-48f9-8468-7ee0482ee31c\": \"9df26552-c77b-48f9-8468-7ee0482ee31c\", \"9e8f0265-a120-4449-ab49-84c01e1501fb\": \"9e8f0265-a120-4449-ab49-84c01e1501fb\", \"508c0633-27f9-41ce-8943-38a30ca38670\": \"508c0633-27f9-41ce-8943-38a30ca38670\", \"de287235-bc55-42f3-98c4-6a2d542b2740\": \"de287235-bc55-42f3-98c4-6a2d542b2740\", \"23f1ecfa-8922-44a1-ac79-56b894736a62\": \"23f1ecfa-8922-44a1-ac79-56b894736a62\", \"15225548-ae59-44c6-b10d-3788fc066586\": \"15225548-ae59-44c6-b10d-3788fc066586\", \"5b34d215-2611-416b-b34a-7470223a687e\": \"5b34d215-2611-416b-b34a-7470223a687e\", \"bcc8ce86-e983-490e-a23f-d7af513392d3\": \"bcc8ce86-e983-490e-a23f-d7af513392d3\", \"81393b81-5c50-483e-ac72-3ddb2466f498\": \"81393b81-5c50-483e-ac72-3ddb2466f498\", \"a8490578-d792-4b2d-a91a-e3755211dad5\": \"a8490578-d792-4b2d-a91a-e3755211dad5\", \"bc35b2fc-146f-4cc2-9a2f-0d1acc85fa16\": \"bc35b2fc-146f-4cc2-9a2f-0d1acc85fa16\", \"1846fdb4-bbab-4f8c-a1ce-295a684ef720\": \"1846fdb4-bbab-4f8c-a1ce-295a684ef720\", \"0cba1902-9045-405e-9a1d-64b1526ebb87\": \"0cba1902-9045-405e-9a1d-64b1526ebb87\", \"ed1fe994-028b-48dc-bc10-80d78f76d4af\": \"ed1fe994-028b-48dc-bc10-80d78f76d4af\", \"4896d728-623a-4b34-ae7d-26404e9a13d6\": \"4896d728-623a-4b34-ae7d-26404e9a13d6\", \"0dba0ca0-6cb8-4433-8b21-00c2cecb4ad1\": \"0dba0ca0-6cb8-4433-8b21-00c2cecb4ad1\", \"6027cd04-5df8-4ec9-9a74-85729013e53f\": \"6027cd04-5df8-4ec9-9a74-85729013e53f\", \"f45620fd-aa92-4c7d-b48b-1b70fc3622ea\": \"f45620fd-aa92-4c7d-b48b-1b70fc3622ea\", \"085fcc40-c5a0-4dea-8039-113b0bd8d4e3\": \"085fcc40-c5a0-4dea-8039-113b0bd8d4e3\", \"ed78f2a3-18af-4f13-9705-e9b9eca959ae\": \"ed78f2a3-18af-4f13-9705-e9b9eca959ae\", \"45aadffd-70a5-4839-92f9-6a8f5f60e930\": \"45aadffd-70a5-4839-92f9-6a8f5f60e930\", \"0ecd9cf8-ce03-4f27-8346-be248bb2b66a\": \"0ecd9cf8-ce03-4f27-8346-be248bb2b66a\", \"76a79005-725c-4eeb-a2cb-d05bb8a0cb88\": \"76a79005-725c-4eeb-a2cb-d05bb8a0cb88\", \"d04b1468-78b1-4115-855e-de536d9f0c9f\": \"d04b1468-78b1-4115-855e-de536d9f0c9f\", \"c4e7b5cd-3352-42a8-983d-494bcf6582a1\": \"c4e7b5cd-3352-42a8-983d-494bcf6582a1\", \"a3a7149a-804f-4666-8986-1cd855092f7d\": \"a3a7149a-804f-4666-8986-1cd855092f7d\", \"78af704b-28bf-400e-ab15-0860f9ff21f0\": \"78af704b-28bf-400e-ab15-0860f9ff21f0\", \"c6701200-393e-4d5f-9fc1-4ecb8bef309f\": \"c6701200-393e-4d5f-9fc1-4ecb8bef309f\", \"a9c9ac03-52ba-4828-a891-4f63dcf7e4ea\": \"a9c9ac03-52ba-4828-a891-4f63dcf7e4ea\", \"c9b38449-e0cc-4a69-a302-65784caaca9c\": \"c9b38449-e0cc-4a69-a302-65784caaca9c\", \"236fce0f-14ec-45a2-98c7-63852575335f\": \"236fce0f-14ec-45a2-98c7-63852575335f\", \"b6b19753-0021-4092-92a5-82c6385d1ea7\": \"b6b19753-0021-4092-92a5-82c6385d1ea7\", \"3677f763-add2-4a4e-a9bc-3285c05feea5\": \"3677f763-add2-4a4e-a9bc-3285c05feea5\", \"e906b892-59c3-47ea-8db5-9b62513213dd\": \"e906b892-59c3-47ea-8db5-9b62513213dd\", \"6c060f29-393f-4866-9884-d6732a831213\": \"6c060f29-393f-4866-9884-d6732a831213\", \"be92606c-f3e3-4dc0-8a4f-c9095ab46d10\": \"be92606c-f3e3-4dc0-8a4f-c9095ab46d10\", \"a80a896e-df16-444e-ba40-7e566075f3f7\": \"a80a896e-df16-444e-ba40-7e566075f3f7\", \"bb09d21a-e0ce-4bd4-b30e-71b1502184db\": \"bb09d21a-e0ce-4bd4-b30e-71b1502184db\", \"007f28db-1a5c-40d3-919b-4d993ff0d192\": \"007f28db-1a5c-40d3-919b-4d993ff0d192\", \"d44e0165-c1b2-4295-9dcc-bf9de3a9fd06\": \"d44e0165-c1b2-4295-9dcc-bf9de3a9fd06\", \"f8833e02-c260-4885-8532-49ed310cac67\": \"f8833e02-c260-4885-8532-49ed310cac67\", \"963f875d-783b-4902-9e2b-433010ef739a\": \"963f875d-783b-4902-9e2b-433010ef739a\", \"8719fd0e-5005-4414-bf3c-41d6a3057de9\": \"8719fd0e-5005-4414-bf3c-41d6a3057de9\", \"00c06687-6593-44db-9462-6ec51c254b20\": \"00c06687-6593-44db-9462-6ec51c254b20\", \"0c575bac-b8db-4ea8-abc2-0b512363d662\": \"0c575bac-b8db-4ea8-abc2-0b512363d662\", \"47443c42-8394-4e1a-a1ae-748f0d235d1e\": \"47443c42-8394-4e1a-a1ae-748f0d235d1e\", \"7e115d34-80b1-444b-9a9b-cc54eca947cc\": \"7e115d34-80b1-444b-9a9b-cc54eca947cc\", \"6055200f-29d8-477f-ac6b-e4bede10878a\": \"6055200f-29d8-477f-ac6b-e4bede10878a\", \"4cc49e02-40a2-48f8-88b6-76b37c9bdd81\": \"4cc49e02-40a2-48f8-88b6-76b37c9bdd81\", \"f6db1301-4642-4407-b005-e75982801961\": \"f6db1301-4642-4407-b005-e75982801961\", \"3fc35171-bc33-4726-af97-d66dd2070531\": \"3fc35171-bc33-4726-af97-d66dd2070531\", \"3b9b8a00-cdac-42d3-b5d0-c5e7f87345a6\": \"3b9b8a00-cdac-42d3-b5d0-c5e7f87345a6\", \"5fbdf692-ad99-4031-a69d-798144197097\": \"5fbdf692-ad99-4031-a69d-798144197097\", \"9c38a9cf-92ca-492e-bf14-e332287c02ad\": \"9c38a9cf-92ca-492e-bf14-e332287c02ad\", \"2ef6c2b4-8a75-4214-97a7-ba78b4f7fcc8\": \"2ef6c2b4-8a75-4214-97a7-ba78b4f7fcc8\", \"5b87a716-610c-4a52-9706-58146e9b5f5b\": \"5b87a716-610c-4a52-9706-58146e9b5f5b\", \"1349852d-6cd2-4a66-b4a1-b258a4147807\": \"1349852d-6cd2-4a66-b4a1-b258a4147807\", \"019057ca-a153-4f2f-bd21-65fbb4dfcce6\": \"019057ca-a153-4f2f-bd21-65fbb4dfcce6\", \"40d8ea74-d247-413f-9230-20c95127dcdb\": \"40d8ea74-d247-413f-9230-20c95127dcdb\", \"71f70f07-2860-4a61-b3a1-372762fedfb8\": \"71f70f07-2860-4a61-b3a1-372762fedfb8\", \"8285f94c-d182-4f5e-b8ea-8916ebc54544\": \"8285f94c-d182-4f5e-b8ea-8916ebc54544\", \"0de6c6a7-1c6a-4840-8e96-e09d0d995e52\": \"0de6c6a7-1c6a-4840-8e96-e09d0d995e52\", \"c180cbf8-8012-4f58-a408-4b6a6072477a\": \"c180cbf8-8012-4f58-a408-4b6a6072477a\", \"e3ba026b-5908-4c73-9833-67cb82a75746\": \"e3ba026b-5908-4c73-9833-67cb82a75746\", \"885c5a0b-2e15-4c7d-9257-d9a01c458eba\": \"885c5a0b-2e15-4c7d-9257-d9a01c458eba\", \"961b4e50-41d2-4353-9e78-885db2028a62\": \"961b4e50-41d2-4353-9e78-885db2028a62\", \"a7d5cd60-d35b-43c4-ad2d-469147d85e1d\": \"a7d5cd60-d35b-43c4-ad2d-469147d85e1d\", \"7b7444e8-5e2c-4d2b-8d41-a5c7180e5747\": \"7b7444e8-5e2c-4d2b-8d41-a5c7180e5747\", \"3454cfe3-51a9-40f2-b7d4-28efeb36b30b\": \"3454cfe3-51a9-40f2-b7d4-28efeb36b30b\", \"34002b91-014c-4697-8737-4a15527847f5\": \"34002b91-014c-4697-8737-4a15527847f5\", \"3b6bef66-ce49-4c09-8fc7-14270f1a72db\": \"3b6bef66-ce49-4c09-8fc7-14270f1a72db\", \"2c2f9276-e991-4f8c-8ce0-bd87ea6d42bf\": \"2c2f9276-e991-4f8c-8ce0-bd87ea6d42bf\", \"c58d2cf1-6713-4d9a-9d37-6afa53baa3fd\": \"c58d2cf1-6713-4d9a-9d37-6afa53baa3fd\", \"48bf9617-e70d-4329-bdd5-b63b261e0103\": \"48bf9617-e70d-4329-bdd5-b63b261e0103\", \"cd8cbd8b-e585-4ef7-b12b-413e6b598c04\": \"cd8cbd8b-e585-4ef7-b12b-413e6b598c04\", \"2842b791-dc81-4391-ae53-183965f45efb\": \"2842b791-dc81-4391-ae53-183965f45efb\", \"73ce240b-3c09-48de-99f4-0194dc1faaf2\": \"73ce240b-3c09-48de-99f4-0194dc1faaf2\", \"6d444950-9e43-4284-9d89-6948cad48e74\": \"6d444950-9e43-4284-9d89-6948cad48e74\", \"c672c616-984e-4cb1-8d30-e8a926d7fe1c\": \"c672c616-984e-4cb1-8d30-e8a926d7fe1c\", \"45b837a5-3b51-4f6f-9806-ce2f512426fa\": \"45b837a5-3b51-4f6f-9806-ce2f512426fa\", \"ab3b4ded-a0e5-4d00-94d1-2fcee1efeba3\": \"ab3b4ded-a0e5-4d00-94d1-2fcee1efeba3\", \"62b01dae-a988-438c-8405-cc7b9e34f01c\": \"62b01dae-a988-438c-8405-cc7b9e34f01c\", \"63c48eac-6dd9-46ff-a6f2-e00f5dcb0e7f\": \"63c48eac-6dd9-46ff-a6f2-e00f5dcb0e7f\", \"3f83359c-54f8-428b-b1e4-a1fb21c29b8c\": \"3f83359c-54f8-428b-b1e4-a1fb21c29b8c\", \"e7b19daa-0975-4df6-a2d9-19f1be4fed5c\": \"e7b19daa-0975-4df6-a2d9-19f1be4fed5c\", \"027179e2-6c33-43b0-b609-f76b6c776cd2\": \"027179e2-6c33-43b0-b609-f76b6c776cd2\", \"227654cd-983d-4662-8ffd-2b2c2f3929a3\": \"227654cd-983d-4662-8ffd-2b2c2f3929a3\", \"ca018018-d46c-4cc7-815c-7ed899383cc8\": \"ca018018-d46c-4cc7-815c-7ed899383cc8\", \"7d9ff17a-3463-4125-a2f7-06aadcd0e118\": \"7d9ff17a-3463-4125-a2f7-06aadcd0e118\", \"a9cdbcc2-2f08-45ad-9dbe-141195027deb\": \"a9cdbcc2-2f08-45ad-9dbe-141195027deb\", \"f33c9b34-17e2-471c-8474-f72b8cb2cae8\": \"f33c9b34-17e2-471c-8474-f72b8cb2cae8\", \"2285791b-bcd9-4594-8a59-e3111636859e\": \"2285791b-bcd9-4594-8a59-e3111636859e\", \"228c06bb-f645-4014-b659-023b13b7411f\": \"228c06bb-f645-4014-b659-023b13b7411f\", \"51d4d8a9-2dc7-41a8-b8e1-69681f8e3f98\": \"51d4d8a9-2dc7-41a8-b8e1-69681f8e3f98\", \"660c68c6-21fc-4598-a6ea-c3f54b19cabf\": \"660c68c6-21fc-4598-a6ea-c3f54b19cabf\", \"1036624e-f299-4634-8358-ea02d80ebfdb\": \"1036624e-f299-4634-8358-ea02d80ebfdb\", \"efbff208-3cc2-4169-adc8-1aadfd164458\": \"efbff208-3cc2-4169-adc8-1aadfd164458\", \"bcd5627d-3241-4022-9659-0a39c43d1017\": \"bcd5627d-3241-4022-9659-0a39c43d1017\", \"2d5d975a-c3d1-4c28-ba1f-ff97bb1fc7c2\": \"2d5d975a-c3d1-4c28-ba1f-ff97bb1fc7c2\", \"9dea7fe1-20f0-4f2b-9256-e5ccf033967c\": \"9dea7fe1-20f0-4f2b-9256-e5ccf033967c\", \"22b13e1d-dad8-43f3-ad56-a2ce9d179da3\": \"22b13e1d-dad8-43f3-ad56-a2ce9d179da3\", \"9cab7fb6-4610-46eb-bd11-bb7ec3eede56\": \"9cab7fb6-4610-46eb-bd11-bb7ec3eede56\", \"30108c3b-c684-4ff2-964f-5b5eae299db8\": \"30108c3b-c684-4ff2-964f-5b5eae299db8\", \"d4901a71-eb19-4e06-8bce-ca8451429be1\": \"d4901a71-eb19-4e06-8bce-ca8451429be1\", \"10bcde16-c549-4dc8-b38c-13526db9e2ec\": \"10bcde16-c549-4dc8-b38c-13526db9e2ec\", \"bbe0cfa1-9266-4314-8cb6-65172eead885\": \"bbe0cfa1-9266-4314-8cb6-65172eead885\", \"69b8f82f-50a6-4828-8968-c1466952a5cd\": \"69b8f82f-50a6-4828-8968-c1466952a5cd\", \"e831b8c2-60e6-405d-87f7-121747e5b6d7\": \"e831b8c2-60e6-405d-87f7-121747e5b6d7\", \"de710693-42f0-4cef-acc8-412ce43ecf84\": \"de710693-42f0-4cef-acc8-412ce43ecf84\", \"727acea5-6cc9-4807-b68d-cc9314661756\": \"727acea5-6cc9-4807-b68d-cc9314661756\", \"ba7d40e1-7292-480b-818c-c15a39187f6c\": \"ba7d40e1-7292-480b-818c-c15a39187f6c\", \"f8c4152e-64b9-4488-b0f1-093f8bd58377\": \"f8c4152e-64b9-4488-b0f1-093f8bd58377\", \"d83b7aea-8abd-462f-b03b-f68ebd2bb9e4\": \"d83b7aea-8abd-462f-b03b-f68ebd2bb9e4\", \"9e0fad21-aa28-466a-9c2f-38571c907bbc\": \"9e0fad21-aa28-466a-9c2f-38571c907bbc\", \"cdad89c0-2a46-4638-a097-bc4323c75f5d\": \"cdad89c0-2a46-4638-a097-bc4323c75f5d\", \"667ae363-e738-48ce-80e9-03ee7261b5ce\": \"667ae363-e738-48ce-80e9-03ee7261b5ce\", \"b380cdaa-9db0-4777-8838-a810de25f3e3\": \"b380cdaa-9db0-4777-8838-a810de25f3e3\", \"7c86d2b4-553e-494a-9634-90ac4128bbb3\": \"7c86d2b4-553e-494a-9634-90ac4128bbb3\", \"e4f631ce-d334-40a6-a3ca-be65bf27de24\": \"e4f631ce-d334-40a6-a3ca-be65bf27de24\", \"81674c4f-60e0-4f23-86bb-333d830f42e3\": \"81674c4f-60e0-4f23-86bb-333d830f42e3\", \"180ad649-c7c7-4415-aee5-031c9a29b264\": \"180ad649-c7c7-4415-aee5-031c9a29b264\", \"9451cf88-0557-48bb-8a7c-dcc314a20424\": \"9451cf88-0557-48bb-8a7c-dcc314a20424\", \"973a5c15-9c8a-42ae-85cb-6c8af18389c1\": \"973a5c15-9c8a-42ae-85cb-6c8af18389c1\", \"2ad0fdd8-af1f-4e11-92d8-d03b8aa427a5\": \"2ad0fdd8-af1f-4e11-92d8-d03b8aa427a5\", \"696b6e1e-aca8-41e9-aab9-366de11b3628\": \"696b6e1e-aca8-41e9-aab9-366de11b3628\", \"9182231f-5675-4be9-af96-104c16d80c50\": \"9182231f-5675-4be9-af96-104c16d80c50\", \"52478ae6-356e-4b5c-a343-763c91d2c220\": \"52478ae6-356e-4b5c-a343-763c91d2c220\", \"d3828701-0ae8-4d1e-970b-2b3f5bb2c1de\": \"d3828701-0ae8-4d1e-970b-2b3f5bb2c1de\", \"432a84d5-ac00-45d3-8385-11447b8d7c56\": \"432a84d5-ac00-45d3-8385-11447b8d7c56\", \"0937c300-83a4-4da1-a471-1bbfdbc90777\": \"0937c300-83a4-4da1-a471-1bbfdbc90777\", \"1806da72-5923-4cae-8a66-854195e37b92\": \"1806da72-5923-4cae-8a66-854195e37b92\", \"245e052e-d059-43e0-ac54-ff8eaec19421\": \"245e052e-d059-43e0-ac54-ff8eaec19421\", \"133900ec-e422-400e-8951-d617ba58f528\": \"133900ec-e422-400e-8951-d617ba58f528\", \"dc7fea2d-d282-49a9-91f4-c446fc482cbd\": \"dc7fea2d-d282-49a9-91f4-c446fc482cbd\", \"33a80011-707c-4e4a-9953-f035ad1c2b39\": \"33a80011-707c-4e4a-9953-f035ad1c2b39\", \"2bef8386-2742-4384-9cf6-e5745950cf70\": \"2bef8386-2742-4384-9cf6-e5745950cf70\", \"f1a4fa1b-c4ae-4569-b4c2-fa91c9bfd7f3\": \"f1a4fa1b-c4ae-4569-b4c2-fa91c9bfd7f3\", \"04c8b63d-9486-4ae2-b381-b813de511e5b\": \"04c8b63d-9486-4ae2-b381-b813de511e5b\", \"c7a0f770-07cf-40d3-8c24-c4ea170b3e3b\": \"c7a0f770-07cf-40d3-8c24-c4ea170b3e3b\", \"cf10fd93-8d52-401a-b4bc-f3008db7d7d7\": \"cf10fd93-8d52-401a-b4bc-f3008db7d7d7\", \"8f2dd465-226d-4a17-ae7c-7aec5260cf67\": \"8f2dd465-226d-4a17-ae7c-7aec5260cf67\", \"37d9b31b-7d06-415c-b9f3-075dfc822f2d\": \"37d9b31b-7d06-415c-b9f3-075dfc822f2d\", \"af0dfa52-56da-4cda-91fa-0cb38fc91cb3\": \"af0dfa52-56da-4cda-91fa-0cb38fc91cb3\", \"8a155880-671e-4bdf-b782-5e9767d5a009\": \"8a155880-671e-4bdf-b782-5e9767d5a009\", \"d06f932c-e25f-424e-8550-eb1a0384e2a4\": \"d06f932c-e25f-424e-8550-eb1a0384e2a4\", \"6080eb17-0342-412b-a707-27fcebbc620b\": \"6080eb17-0342-412b-a707-27fcebbc620b\", \"93673750-be8f-498d-8a61-7be02dcccabf\": \"93673750-be8f-498d-8a61-7be02dcccabf\", \"37705651-ac14-4c53-b486-933c2536c261\": \"37705651-ac14-4c53-b486-933c2536c261\", \"cbdea7e8-6b23-4688-9c05-3c5c0eae95db\": \"cbdea7e8-6b23-4688-9c05-3c5c0eae95db\", \"8644d86d-7af8-419e-8e32-3d2a92d15039\": \"8644d86d-7af8-419e-8e32-3d2a92d15039\", \"ff7e4c0c-eac9-4a0a-99d6-5121a3dddc82\": \"ff7e4c0c-eac9-4a0a-99d6-5121a3dddc82\", \"e7244407-bbd7-414f-9c02-b7d3c51f4dcd\": \"e7244407-bbd7-414f-9c02-b7d3c51f4dcd\", \"9c9867a3-6bc3-4544-8032-094305ccc606\": \"9c9867a3-6bc3-4544-8032-094305ccc606\", \"7a71c62a-768b-4849-b2ca-5a26fa8a2847\": \"7a71c62a-768b-4849-b2ca-5a26fa8a2847\", \"83938eff-db4f-4cfe-b2e4-725387540be3\": \"83938eff-db4f-4cfe-b2e4-725387540be3\", \"ad6bdffa-b1d6-4451-b6d6-f7c43bace4fe\": \"ad6bdffa-b1d6-4451-b6d6-f7c43bace4fe\", \"052bf4f8-4827-464c-bc7d-c8d8e4697670\": \"052bf4f8-4827-464c-bc7d-c8d8e4697670\", \"e6aed9e4-13ac-46ae-b02e-d6fd2d2cb428\": \"e6aed9e4-13ac-46ae-b02e-d6fd2d2cb428\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/cloud/sam/scripts/chat_function/storage/vector_store.json b/cloud/sam/scripts/chat_function/storage/vector_store.json new file mode 100644 index 00000000..d763c9eb --- /dev/null +++ b/cloud/sam/scripts/chat_function/storage/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"ea8f2a24-783c-4441-87e9-3d6a524e88d4": [0.0176321379840374, -0.0113594401627779, 0.0015324527630582452, -0.017975063994526863, -0.03166354447603226, 0.00011509023897815496, -0.0024951475206762552, -0.011652356944978237, -0.012638269923627377, -0.004097257275134325, 0.029077308252453804, -0.006015502382069826, 0.011159399524331093, -0.004568781238049269, 0.007226461544632912, 0.024262050166726112, 0.03486419469118118, 0.00794446375221014, 0.029863182455301285, -0.030320417135953903, -0.025333695113658905, 0.0049652899615466595, -0.008058772422373295, 0.004747388418763876, 0.013974254950881004, 0.019861159846186638, -0.0003947226796299219, -0.033435333520174026, -0.005126036703586578, 0.00503316055983305, 0.004132978618144989, -0.003034542314708233, -0.02746269665658474, -0.005426097195595503, -0.018446587026119232, -0.004783110227435827, 0.01940392330288887, -0.01588892750442028, 0.00806591659784317, -0.02621958777308464, 0.018975265324115753, 0.010645009577274323, -0.005222484935075045, 0.0014967313036322594, -0.01272400189191103, 0.008465997874736786, 0.008480286225676537, -0.02340473234653473, 0.006261980626732111, -0.01060214452445507, 0.030291840434074402, 0.009244726970791817, -0.0037829079665243626, -0.012552538886666298, 0.010044888593256474, 0.0075372387655079365, -0.010752174071967602, 0.02473357319831848, -0.011938128620386124, -0.01224533375352621, 0.006679922342300415, 0.013202670030295849, -0.0026219587307423353, 0.03832203522324562, -0.019546810537576675, 0.012538249604403973, -0.0071050082333385944, 0.023061806336045265, -0.0049902950413525105, -0.020547011867165565, 0.021847276017069817, 0.03000606782734394, -0.009666240774095058, -0.0037686193827539682, 0.014124284498393536, -0.016303297132253647, -0.024362070485949516, -0.017760735005140305, -0.02323327027261257, 0.019018132239580154, 0.014059985987842083, -0.0038507787976413965, -0.02826285921037197, 0.018946688622236252, 0.0094304783269763, 0.0201755091547966, -0.016831975430250168, 0.0428086556494236, -0.01966111920773983, -0.018789514899253845, 0.010852194391191006, 0.008994676172733307, 0.006376289296895266, 0.009316169656813145, -0.008594594895839691, 0.0037829079665243626, 0.0015556717989966273, 0.04000809043645859, -0.018303701654076576, -0.03332102298736572, -0.007773000746965408, 0.0176178477704525, -0.020761340856552124, -0.02599097043275833, -0.02266172505915165, -0.011402306146919727, 0.0007541703525930643, -0.01914672926068306, 0.014331469312310219, -0.019060997292399406, -0.018475165590643883, 0.02167581208050251, 0.024333491921424866, -0.05435384809970856, -0.009994878433644772, 7.975943299243227e-05, 0.0213757511228323, -0.01566031016409397, 0.0201755091547966, -0.0201755091547966, 0.033178139477968216, 0.0019807578064501286, 0.03746471926569939, 2.674927054613363e-05, 0.014160006307065487, 0.0007385422359220684, -0.03123488835990429, -0.004647368565201759, 0.00277377525344491, 0.010802184231579304, 0.03074907511472702, 0.018360856920480728, 0.008644605055451393, -0.016589069738984108, -0.014888725243508816, -0.0012931186938658357, -0.03723610192537308, 0.012166745960712433, -0.014109996147453785, -0.030291840434074402, 0.012802588753402233, 0.03580724075436592, -0.004804543219506741, 0.005093887448310852, 0.003493563737720251, 0.023804813623428345, 0.023033229634165764, -0.007337198127061129, 0.0176607146859169, -0.013474153354763985, 0.012566827237606049, -0.009687673300504684, 0.004758105147629976, 0.03803626447916031, 0.003652524435892701, 0.0064763096161186695, 0.001547634368762374, 0.0060226465575397015, -0.03349248692393303, -0.011545191518962383, 0.008258813060820103, 0.015988947823643684, 0.016589069738984108, 0.012695424258708954, 0.011759521439671516, 0.00946620013564825, 0.0033042395953089, 0.01911815255880356, -0.01297405268996954, -0.008115926757454872, -0.01373134832829237, 0.02771989069879055, -0.010730741545557976, 0.021047113463282585, 0.0013422357151284814, 0.018260836601257324, -0.006862102076411247, -0.0031899309251457453, -0.016817687079310417, -0.01248823944479227, -0.03835061192512512, -0.006040507461875677, 0.004297297447919846, 0.0454377606511116, -0.044208940118551254, -0.011802386492490768, 0.02896299958229065, -0.005858327727764845, 0.022104470059275627, 0.001239536446519196, -0.01666051149368286, 0.02043270319700241, 0.01463153026998043, -0.006319134961813688, -0.6712214350700378, -0.007001415826380253, 0.010180630721151829, 0.0005335900350473821, 0.015931792557239532, 0.01917530596256256, 0.004843836650252342, 0.021004248410463333, -0.010987936519086361, -0.0003161353524774313, 0.019475366920232773, 0.015274517238140106, -0.0006099448073655367, -0.009701961651444435, -0.006197682116180658, 0.001152911689132452, -0.007601537276059389, -0.009108984842896461, -0.012066725641489029, 0.01095221471041441, 0.009894858114421368, 0.014524365775287151, -0.01270256843417883, -0.004115117713809013, 0.0028720092959702015, 0.005401092115789652, -0.0013475939631462097, -0.01740351878106594, 0.0008198086288757622, 0.00843742024153471, -0.006712071597576141, 0.014774416573345661, 0.01660335808992386, -0.016517626121640205, 0.02623387612402439, 0.005597560666501522, -0.01436719112098217, 0.036721713840961456, -0.0002893442288041115, 0.052582062780857086, -0.013052639551460743, -0.021832987666130066, 0.03980804979801178, -0.004818831570446491, 0.0018307273276150227, -0.0094519117847085, 0.005008155480027199, 0.02594810537993908, 0.02447637915611267, -0.01616041176021099, 0.007408641278743744, -0.0034060459583997726, -0.017717868089675903, 0.0032006471883505583, 0.009537642821669579, -0.015946082770824432, 0.022118758410215378, -0.017689291387796402, 0.013952821493148804, 0.011245131492614746, -0.009859136305749416, 0.003375682746991515, -0.014945879578590393, -0.0164176058024168, -0.024762149900197983, 0.0065620411187410355, -0.011373728513717651, -0.000517515349201858, 0.015946082770824432, -0.017260633409023285, 0.005940487142652273, 0.019475366920232773, -0.006865674164146185, -0.007222889456897974, 0.008230235427618027, 0.03200647234916687, 0.004761677235364914, -0.007880165241658688, -0.007687268778681755, -0.008866079151630402, 0.0027648448012769222, 0.007687268778681755, -0.010852194391191006, -0.00793017540127039, 0.011352295987308025, 0.004450900014489889, -0.02346188761293888, 0.0021575791761279106, 0.027791334316134453, -0.000287111644865945, 0.012602549046278, 0.012931186705827713, 0.013381277211010456, -0.0026916158385574818, -0.004350879695266485, 0.024533532559871674, -0.008387410081923008, -0.002371908165514469, 0.011773809790611267, -0.0024665703531354666, -0.015231652185320854, -0.013166948221623898, 0.005526117514818907, -0.006622768007218838, 0.01988973654806614, -0.0006224472890608013, -0.013909955509006977, 0.021475771442055702, 0.0022522411309182644, -0.01222390029579401, -0.008844645693898201, -0.00174767489079386, 0.002539799315854907, 0.008923233486711979, 0.014745838940143585, -0.03749329596757889, 0.018718071281909943, -0.013002629391849041, 0.017060592770576477, -0.020332682877779007, 0.007187167648226023, -0.013567029498517513, 0.0005420739180408418, 0.006737076677381992, 0.0009278662037104368, 0.014152862131595612, -0.021047113463282585, -0.002914875280112028, -0.00749437278136611, -0.007844443432986736, -0.00819451455026865, -0.020475570112466812, 0.030549034476280212, -0.029863182455301285, 0.01033066026866436, -0.006758509669452906, 0.008658894337713718, -0.007894453592598438, 0.018946688622236252, -0.0021325740963220596, -0.03077765367925167, 0.006829952821135521, 0.015445981174707413, -0.009894858114421368, -0.021118557080626488, -0.0065513248555362225, -0.004086540546268225, -0.005697580985724926, -0.02800566330552101, 0.014109996147453785, -0.013702770695090294, 0.0001422162604285404, -0.01687484048306942, 0.0277484692633152, 0.02220449037849903, -0.023361867293715477, -0.007458651438355446, -0.02773418091237545, -0.00034783821320161223, -0.007880165241658688, 0.004958145786076784, 0.010873627848923206, -0.025590889155864716, 0.0015771046746522188, -4.543329487205483e-05, 0.004118690267205238, 0.01814652606844902, 0.006172677036374807, -0.01863233931362629, -0.023990565910935402, 0.03072049841284752, -0.004922423977404833, 0.004082968458533287, 0.023604772984981537, 0.004883130546659231, 0.006458449177443981, 0.0033596078865230083, 0.007501516956835985, 0.011930984444916248, -0.01463153026998043, 0.015060188248753548, 0.004586641676723957, 0.013888522982597351, -0.0014476141659542918, 0.017989352345466614, 0.006111950147897005, 0.012123879976570606, 0.012438229285180569, -0.00918757263571024, 0.02876295894384384, 0.0008220412419177592, -0.007672980427742004, -0.00043468610965646803, -3.6872690998279722e-06, -0.011845252476632595, 0.015088765881955624, -0.007851587608456612, 0.009937724098563194, -0.012252477928996086, 0.011102245189249516, 0.013231247663497925, -0.002148648723959923, 0.030034644529223442, 0.0036078724078834057, -0.008244524709880352, -0.02796279825270176, 0.006769225932657719, -0.034664154052734375, 0.02900586649775505, 0.013009773567318916, 0.020561300218105316, -0.020518435165286064, -0.010009166784584522, -0.019475366920232773, 0.01937534660100937, 0.0033131700474768877, -0.0060119302943348885, -0.002623745007440448, -0.004986722953617573, 0.004240143112838268, -0.01811794936656952, -0.024847881868481636, 0.002675540978088975, 0.012445374391973019, -0.0029041587840765715, 0.021747255697846413, 0.019089573994278908, 0.03143492713570595, -0.0025701625272631645, -0.014431489631533623, -0.017046304419636726, 0.007380064111202955, 0.017589271068572998, 0.012381074950098991, 0.0065513248555362225, 0.009923435747623444, -0.0072443219833076, -0.020775629207491875, 0.039979513734579086, -0.010287795215845108, 0.018289413303136826, 0.03483561798930168, 0.01968969590961933, -0.011266564019024372, 0.01158805750310421, 0.009766261093318462, 0.03097769245505333, 0.0044866218231618404, -0.010637865401804447, 0.018289413303136826, 0.009130418300628662, 0.010202063247561455, -0.009737683460116386, 0.00025518552865833044, -0.018017929047346115, -0.01261683739721775, 0.01438862457871437, 0.01743209734559059, 0.005540406331419945, 0.04226569086313248, 0.016074679791927338, 0.015931792557239532, 0.007215744815766811, 0.00057422328973189, 0.006072656717151403, 0.03346391022205353, 0.007672980427742004, -0.009101840667426586, -0.017760735005140305, -0.017489250749349594, -7.512680167565122e-05, -0.023333290591835976, 0.02544800378382206, -0.029920335859060287, 0.013738492503762245, 0.006876390427350998, 0.0138742346316576, 0.002548729768022895, 0.001377957290969789, -8.098735997918993e-05, -0.01145231630653143, -0.027634160593152046, 0.02619101107120514, 0.019361058250069618, -0.006512031424790621, -0.008537440560758114, -0.005576127674430609, 0.028548629954457283, 0.008637460879981518, 0.03352106362581253, -0.005586843937635422, 0.016560491174459457, -0.00908040814101696, -0.006358428858220577, 0.012566827237606049, -0.013517019338905811, 0.0018539463635534048, -0.02087564952671528, 0.004918851889669895, -0.01362418383359909, -0.013445576652884483, -0.02139003947377205, 0.011073668487370014, -0.023361867293715477, 0.01566031016409397, 0.017717868089675903, 0.005179618950933218, -0.02241881936788559, -0.009530498646199703, -0.023990565910935402, -0.010309227742254734, -0.009780549444258213, -0.02952025644481182, -0.0027398397214710712, -0.008001618087291718, -0.0005599346477538347, -0.01710345968604088, -0.021061401814222336, 0.022561704739928246, -0.008030195720493793, -0.014610097743570805, -0.033378180116415024, -0.02596239373087883, -0.013416999019682407, 0.0631556287407875, 0.018475165590643883, 0.01460295356810093, 0.01764642633497715, -0.023761948570609093, -0.004954573232680559, -0.009780549444258213, -0.036693133413791656, 0.004279437009245157, -0.016803398728370667, 0.021290019154548645, -0.01864662766456604, -0.01223104540258646, -0.00541538093239069, 0.011552336625754833, 0.025619467720389366, -0.014517221599817276, -0.030377572402358055, 0.0036435939837247133, -0.013224102556705475, -0.004583069588989019, -0.015017322264611721, 0.03372110426425934, 0.023619061335921288, -0.011602346785366535, -0.01334555633366108, 0.008844645693898201, 0.019732562825083733, 0.007765856105834246, -0.027834201231598854, 0.007594393100589514, -0.011338007636368275, -0.003041686490178108, 0.03143492713570595, -0.011880974285304546, 0.028091395273804665, -0.010909348726272583, 0.001420823042280972, 0.011209409683942795, 0.01056642271578312, 0.0082088029012084, 0.03209220618009567, 0.0003306472208350897, -0.04432325065135956, 0.015117342583835125, -0.02744840830564499, -0.013774214312434196, 0.01741780899465084, 7.395468855975196e-05, -0.028134260326623917, 0.012531105428934097, 0.003815057221800089, -0.022776033729314804, -0.021761544048786163, 0.006762081757187843, 0.006333423778414726, -0.0023183259181678295, -0.015060188248753548, -0.003965087700635195, -0.028877267614006996, -0.0075229499489068985, -0.02769131399691105, 0.02068989910185337, 0.003438195213675499, -0.012031004764139652, -0.03206362575292587, -0.023533331230282784, -0.022733168676495552, -0.011430882848799229, 0.006301274523139, -0.00010911805293289945, -0.017760735005140305, -0.012402508407831192, 0.007908741943538189, 0.014109996147453785, -0.003027397906407714, 0.03752187266945839, 0.016974860802292824, -0.005783312488347292, 0.02517651952803135, 0.014195728115737438, -0.01583177223801613, -0.012023860588669777, -0.04566637799143791, -0.010130620561540127, 0.008630316704511642, -0.011595201678574085, -0.00472595589235425, 0.009194716811180115, 0.006644200999289751, -0.016246141865849495, -0.005508256610482931, 0.024090586230158806, -0.005618993658572435, -0.01337413303554058, 0.0035257129929959774, 0.0030899106059223413, 0.000508585013449192, -0.0008881260291673243, -0.008473142050206661, 0.00471523916348815, -0.03254944086074829, -0.004479477182030678, -0.0007322909659706056, 0.014931591227650642, 0.006590618751943111, 0.024633552879095078, 0.0006184286321513355, -0.0025005056522786617, -0.011180832982063293, 0.014588664285838604, -0.01583177223801613, -0.012938330881297588, -0.01447435561567545, 0.016260432079434395, 0.020604167133569717, 0.014295748434960842, 0.0005179619183763862, -0.002061131177470088, -0.006133383139967918, -0.018332278355956078, -0.046237923204898834, 0.0214186180382967, 0.023547619581222534, -0.029434524476528168, 0.003993664868175983, -0.020061200484633446, -0.005029588472098112, -0.016060391440987587, 0.004147267434746027, -0.007708701770752668, 0.02900586649775505, 0.0030863385181874037, -0.008594594895839691, -0.031920742243528366, -0.006844241172075272, -0.008465997874736786, 0.014945879578590393, -0.014731550589203835, -0.02343331091105938, -0.015217362903058529, -0.006311990786343813, -0.0027594866696745157, -0.03103484772145748, -0.014731550589203835, -0.06081229820847511, 0.002539799315854907, 0.009501921944320202, -0.0012716857017949224, 0.024847881868481636, -0.01583177223801613, -0.0008055200451053679, -0.02394770085811615, -0.01171665545552969, -0.01484585925936699, -0.020589878782629967, -0.02164723537862301, 0.0009064333280548453, 0.025305118411779404, 0.009544786997139454, 0.028877267614006996, 0.012295343913137913, -0.010359237901866436, -0.010573566891252995, 0.013845656998455524, 0.004365168511867523, -0.009501921944320202, 0.005115319974720478, -0.01714632473886013, -0.0010966503759846091, 0.03152066096663475, -0.0025022916961461306, -0.0032970954198390245, -0.008158792741596699, 0.016560491174459457, 0.01994689181447029, -0.009987734258174896, -0.006812091916799545, -0.0025969536509364843, -0.0163461621850729, -0.01134515181183815, 0.007794433273375034, -0.01513163186609745, 0.009844847954809666, -0.025247963145375252, -0.008058772422373295, 0.010995080694556236, -0.004954573232680559, -0.00529749970883131, -0.019060997292399406, 0.021532926708459854, -0.017732158303260803, 0.0132383918389678, -0.010523556731641293, 0.02544800378382206, -0.009287592954933643, -0.02320469357073307, -0.0214043278247118, 0.011045090854167938, 0.00467237364500761, -0.009873425588011742, 0.01590321585536003, -0.011066523380577564, 0.02697688341140747, -0.014410057105123997, -0.012023860588669777, -0.012302488088607788, -0.011673789471387863, 0.007394352462142706, -0.011873830109834671, -0.0026505361311137676, -0.02043270319700241, -0.005804745480418205, -0.013452720828354359, -0.0011922053527086973, 0.008094494231045246, -0.017217768356204033, 0.0005773489247076213, 0.0009153636638075113, -0.017732158303260803, 0.00909469649195671, -0.018446587026119232, 0.019832583144307137, 0.014481499791145325, 0.012116735801100731, 0.019532522186636925, 0.002796994289383292, -0.002012907061725855, -0.006029790733009577, 0.006701355334371328, -0.00293273595161736, 0.03680744394659996, 0.013652761466801167, 0.01033780537545681, -0.017317788675427437, 0.0009394757216796279, 0.01438862457871437, -0.03426407277584076, -0.011888118460774422, 0.04240857809782028, 0.019861159846186638, 0.017446385696530342, -0.012938330881297588, -0.014802993275225163, -0.006151244044303894, 0.029920335859060287, -0.0006729039596393704, 0.017589271068572998, -0.0029809600673615932, -0.005944059230387211, -0.010166341438889503, 0.03626447543501854, -0.013674193993210793, 0.006701355334371328, 0.007180023472756147, 0.005440386012196541, -0.004150839522480965, -0.009880569763481617, -0.008901800028979778, 0.005708297248929739, 0.002571948803961277, 0.03889358043670654, 0.0094519117847085, -0.013302690349519253, 0.022233067080378532, -0.003325672587379813, -0.02574806474149227, -0.0004875986196566373, 0.019089573994278908, 0.026248164474964142, -0.022590283304452896, 0.008908944204449654, 0.021047113463282585, -0.026676824316382408, 0.022047316655516624, 0.00041637883987277746, -0.0029309499077498913, 0.0022575994953513145, -0.005093887448310852, -0.02291892096400261, 0.02118999883532524, 0.017074881121516228, -0.01273829024285078, 0.0012047078926116228, 0.00041637883987277746, -0.000896609912160784, -0.0010537845082581043, -0.02343331091105938, 0.012152457609772682, -0.006276269443333149, -0.025119366124272346, -0.005747591145336628, 0.002357619581744075, -0.008823213167488575, 0.009630518965423107, -0.00883035734295845, 0.009530498646199703, 0.0226903036236763, -0.022304510697722435, 0.01500303391367197, 0.001245787600055337, -0.0008970564231276512, -0.037407565861940384, -0.012095303274691105, 0.01169522199779749, -0.02800566330552101, 0.001813759678043425, -0.0012698996579274535, -0.014138573780655861, -0.03597870469093323, 0.004872413817793131, 0.011845252476632595, -0.002914875280112028, -0.006662061437964439, 0.014974457211792469, -0.005326076876372099, 0.010552134364843369, -0.023319002240896225, -0.02064703218638897, 0.005747591145336628, -0.0006389684858731925, 0.0029380940832197666, -0.0004230766207911074, -0.03243513032793999, 0.016931995749473572, 0.0163461621850729, 0.021618656814098358, 0.026576803997159004, -0.010387814603745937, -0.015074477531015873, -0.018746647983789444, 0.007233605720102787, -0.03575008735060692, -0.027919931337237358, -0.013888522982597351, -0.008251668885350227, -0.004597358405590057, 0.027405541390180588, -0.006604907102882862, -0.013517019338905811, 0.003445339621976018, 0.020618455484509468, -0.006029790733009577, 0.010266361758112907, -0.012645414099097252, -0.012759723700582981, -0.015760330483317375, -0.024362070485949516, -0.008666038513183594, 0.0055046845227479935, -0.010659298859536648, 0.038150571286678314, -1.7456097339163534e-05, -0.01841801032423973, -0.031863585114479065, 0.006297701969742775, -0.034892771393060684, 0.0075586712919175625, 0.005651142913848162, 0.018903823569417, 0.03177785500884056, 0.011545191518962383, 0.00995915662497282, 0.009680529125034809, -0.013431287370622158, 0.018946688622236252, -0.023376155644655228, 0.009001820348203182, -0.013059783726930618, -0.0009457269916310906, -0.006069084629416466, -0.012438229285180569, -0.017046304419636726, -0.020732764154672623, 0.020361261442303658, -0.001411892706528306, 0.003034542314708233, 0.015045899897813797, 0.0017958988901227713, -0.01498874556273222, -0.024019142612814903, 0.0251622311770916, -0.004718811251223087, 0.0024844310246407986, 0.013038351200520992, -0.006069084629416466, 0.005976208485662937, -0.007358631119132042, 0.0030220397748053074, -0.015717463567852974, 0.008601740002632141, -0.0037257533986121416, 0.003193503012880683, 0.013759925961494446, 0.009902002289891243, 0.000265455455519259, -0.00452948734164238, -0.006126238964498043, 0.0019575387705117464, 0.004429467022418976, -0.018518030643463135, 0.004111545626074076, -0.02319040335714817, -0.020818496122956276, -0.007923031225800514, -0.013288401998579502, -0.012566827237606049, -0.0019146729027852416, 0.018575185909867287, -0.0048295482993125916, 0.0028309295885264874, 0.002262957626953721, -0.000494742882438004, -0.017260633409023285, 0.007137157488614321, 0.00907326303422451, -0.010895060375332832, -0.023647639900445938, 0.01663193479180336, 0.010394959710538387, -0.017846466973423958, 0.016789110377430916, 0.010230639949440956, -0.00995915662497282, 0.0039007889572530985, -0.02213304676115513, 0.007026420906186104, -0.004043675027787685, 0.00536179868504405, 0.019961180165410042, -0.006136955227702856, -0.0039543709717690945, -0.013138371519744396, 0.0007180023239925504, 0.008630316704511642, 0.01423144992440939, 0.20335541665554047, -0.004454472102224827, 0.003790052141994238, 0.02091851644217968, -0.002239738591015339, -0.007965896278619766, 0.024119162932038307, 0.005193907301872969, -0.00242906273342669, 0.017017727717757225, 0.017074881121516228, 0.012681135907769203, -0.011523758992552757, 0.023047517985105515, 0.004615218844264746, -0.009087552316486835, -0.044494710862636566, -0.02416202984750271, -0.021361462771892548, 0.00503316055983305, 0.034892771393060684, -0.019861159846186638, -0.010380670428276062, -0.007387208286672831, 0.03737898916006088, 0.0226903036236763, -0.011795242317020893, -0.008123070932924747, 0.025019345805048943, 0.004700950812548399, 0.012302488088607788, -0.020104065537452698, -0.006197682116180658, 0.00699069956317544, -0.008594594895839691, -0.0005630602827295661, -0.004579497501254082, 0.009116129018366337, 0.008365977555513382, 0.007230033632367849, 0.005251062102615833, 0.004136550705879927, -0.004736672155559063, -0.016560491174459457, -0.011009369045495987, 0.02063274383544922, 0.005243917461484671, -0.005290355533361435, -0.007415785454213619, 0.014467211440205574, -0.04240857809782028, 0.004743816331028938, 0.011309430003166199, 0.030320417135953903, 0.003350677667185664, -0.00528321135789156, 0.000123127581900917, -0.0016146122943609953, -0.016760531812906265, 0.023319002240896225, 0.000651471025776118, 0.03629305213689804, -0.02016122080385685, 0.018260836601257324, -0.029863182455301285, 0.019789716228842735, -0.01031637191772461, 0.015617444179952145, 0.02016122080385685, -0.004961717873811722, 0.0060369353741407394, -0.02196158468723297, -0.020218374207615852, 0.003765047062188387, 0.004583069588989019, -0.02924877218902111, 0.023090383037924767, 0.019489655271172523, 0.011830964125692844, 0.002698760014027357, -0.005929770413786173, -0.0064763096161186695, -0.030606189742684364, 0.0017449957085773349, -0.005104603711515665, -0.0214043278247118, 0.02919161692261696, -0.006454876624047756, -0.009459055960178375, -0.022790323942899704, -0.004547348245978355, -0.02146148309111595, -0.03823630511760712, -0.026305319741368294, 0.0023665500339120626, 0.02574806474149227, -0.019246749579906464, 0.03483561798930168, -0.009351891465485096, 0.014395768754184246, -0.027276944369077682, 0.05463962256908417, 0.008866079151630402, 0.012123879976570606, 0.0005523438449017704, 0.012995485216379166, 0.0032042195089161396, 0.011180832982063293, -0.013681338168680668, -0.03680744394659996, 0.0024576399009674788, -0.019818292930722237, 0.016517626121640205, -0.0353214293718338, 0.002361191902309656, 0.006847813259810209, -0.0033846129663288593, -0.031863585114479065, 0.010037744417786598, -0.01994689181447029, -0.023619061335921288, -0.01990402489900589, 0.022733168676495552, 0.0009841276332736015, -0.00909469649195671, -0.015588866546750069, -0.016274720430374146, -0.0016574780456721783, 0.00536179868504405, -0.04163699224591255, 0.019332481548190117, -0.01550313550978899, -0.003986520692706108, 0.013088361360132694, -0.0037614749744534492, 0.009209005162119865, -0.004797398578375578, 0.004418750759214163, -0.00844456534832716, 0.019018132239580154, -0.00909469649195671, -0.013074073009192944, 0.012788300402462482, 0.021075690165162086, -0.006504886783659458, -0.010752174071967602, 0.030606189742684364, -0.008294534869492054, -0.0012100661406293511, -0.006454876624047756, -0.025905238464474678, -0.006883535068482161, -0.004490193910896778, -0.0007260396960191429, 0.031120579689741135, -0.01120226550847292, -0.0032828068360686302, -0.02800566330552101, -0.0075586712919175625, 0.016289008781313896, -0.029634565114974976, -0.00042530923383310437, 0.0226903036236763, -0.008237380534410477, -0.011880974285304546, 0.012788300402462482, -0.1887238770723343, 0.024033430963754654, 0.01740351878106594, -0.022804612293839455, 0.033178139477968216, 0.00035096381907351315, 0.02038983814418316, -0.012781156226992607, -0.012731146067380905, 0.015017322264611721, -0.004886702634394169, -0.0059833526611328125, -0.03360679745674133, 0.007465795613825321, 0.00346320029348135, -0.021604368463158607, -0.026305319741368294, 0.023104673251509666, 0.00032037729397416115, 0.030091799795627594, 0.02573377639055252, -0.003915077541023493, 0.007151446305215359, -0.025390848517417908, 0.012452518567442894, 0.004286581184715033, 0.0008019478991627693, 0.014460067264735699, 0.01614612154662609, -0.027648448944091797, -0.016960572451353073, -0.015431691892445087, 0.01169522199779749, 0.0027398397214710712, 0.0032917370554059744, -0.014131429605185986, 0.010187774896621704, -0.0008841073722578585, -0.014452923089265823, 0.015703175216913223, -0.015674598515033722, 0.03860780596733093, 0.007915886119008064, 0.012109591625630856, -0.005486824084073305, 0.017317788675427437, 0.011430882848799229, 0.013895667158067226, 0.01058071106672287, 0.009230437688529491, 0.021004248410463333, -0.025548024103045464, 0.0031488509848713875, -0.017817888408899307, 0.016446182504296303, 0.02641962841153145, -0.023861968889832497, 0.010202063247561455, 0.025762353092432022, -0.016560491174459457, 0.010309227742254734, -0.02699117362499237, 0.007222889456897974, -0.013038351200520992, 0.0016306869219988585, -0.015060188248753548, -0.03832203522324562, 0.0075586712919175625, -0.020061200484633446, -0.005354654509574175, 0.006469165440648794, -0.03129204362630844, 0.008494574576616287, -0.01060214452445507, -0.009387612342834473, -0.023118961602449417, -0.01743209734559059, -0.014217160642147064, 0.005608276929706335, -0.010094898752868176, -0.01586035080254078, 0.029605986550450325, -0.03077765367925167, -0.011030802503228188, 0.013967110775411129, 0.015160208567976952, -0.01816081628203392, -0.004197277594357729, 0.009787693619728088, -0.009387612342834473, 0.011166543699800968, -0.001886095735244453, -0.0036685990635305643, -0.006444160360842943, 0.015531712211668491, 0.005676147993654013, 0.009680529125034809, 0.009023253805935383, 0.0008863399852998555, -0.011895262636244297, 0.015388826839625835, 0.0029041587840765715, -0.019832583144307137, 0.02344759926199913, 0.046237923204898834, -0.014145717956125736, -0.007097864057868719, 0.011859540827572346, 0.04203707352280617, -0.02717692404985428, -0.017074881121516228, 0.010795040056109428, 0.006537036504596472, 0.010402103886008263, 0.018260836601257324, 0.01791790872812271, 0.008108782581984997, -0.04263719543814659, 0.022518839687108994, 0.004736672155559063, 0.0427800789475441, -0.011037946678698063, -0.00808735005557537, 0.011373728513717651, -0.043208736926317215, -0.031634967774152756, -0.10973647981882095, -0.0006858530105091631, 0.002454067813232541, 0.018475165590643883, -0.00955907627940178, 0.03509281203150749, 0.0020218375138938427, -0.0029916763305664062, -0.007344342302531004, 0.032406553626060486, -0.03966516628861427, -0.02190442942082882, -0.01767500303685665, 0.0030399004463106394, -0.010902204550802708, 0.009101840667426586, 0.010344949550926685, -0.007408641278743744, -0.013488441705703735, 0.02320469357073307, -0.007215744815766811, -0.009673384949564934, -0.013259824365377426, -0.00015483041352126747, -0.0036328774876892567, -0.005526117514818907, -0.019989756867289543, 0.018789514899253845, 0.029834605753421783, -0.013059783726930618, -0.007887309417128563, -0.014552943408489227, 0.002939880359917879, -0.03146350756287575, -0.0004487514670472592, -0.0009180427878163755, -0.029148751869797707, -0.006194109562784433, 0.031063424423336983, -0.027934221550822258, 0.010273505933582783, 0.004154411610215902, -0.015303094871342182, -0.026376763358712196, 0.022761745378375053, -0.0032149357721209526, -0.014395768754184246, 0.00793017540127039, 0.0018307273276150227, -0.022776033729314804, -0.04137979820370674, -0.01937534660100937, -0.024590687826275826, -0.0026005259715020657, 0.03172070160508156, -0.023633351549506187, 0.006533463951200247, 0.010009166784584522, -0.0075229499489068985, 0.011002224870026112, -0.003790052141994238, -0.0024344208650290966, 0.0053582265973091125, 0.015917504206299782, 0.008894655853509903, 0.011187977157533169, -0.015303094871342182, -0.0035757231526076794, -0.0010877199238166213, -0.022304510697722435, 0.010466402396559715, 0.010544989258050919, -0.020289817824959755, 0.035892974585294724, -0.015117342583835125, 0.005540406331419945, -0.019289614632725716, -0.0033471055794507265, -0.007665835786610842, -0.006329851690679789, -0.01788933202624321, -0.022976074367761612, -0.0007220210391096771, 8.355484169442207e-05, 0.020275529474020004, 0.007380064111202955, 0.02517651952803135, -0.0007983757532201707, -0.018217969685792923, -0.027834201231598854, 0.0007845336804166436, 0.021804409101605415, 0.023561907932162285, -0.017346365377306938, -0.016203276813030243, -0.011316574178636074, -0.006311990786343813, 0.0006617409526370466, 0.016517626121640205, 0.015403115190565586, -0.01564602181315422, -0.009016108699142933, -0.09670527279376984, -0.003672171151265502, 0.0015735324705019593, -0.022861765697598457, 0.011752376332879066, -0.004125834442675114, 0.01358846202492714, -0.005129608791321516, -0.0014333255821838975, 0.01422430481761694, -0.015817483887076378, 0.02216162532567978, -0.003836490213871002, -0.01223104540258646, -0.010230639949440956, 0.017517827451229095, 0.02620529942214489, 0.025390848517417908, 0.019218172878026962, 0.02118999883532524, -0.0012770439498126507, 0.0039329384453594685, 0.020289817824959755, 0.003611444728448987, -0.020318394526839256, 0.025005057454109192, -0.009359035640954971, 0.017260633409023285, -0.0018432298675179482, 0.0017753590364009142, 0.008480286225676537, -0.03932223841547966, 0.0018878817791119218, 0.02694830670952797, -0.0055046845227479935, -0.01791790872812271, -0.017517827451229095, 0.018546607345342636, 0.0074372184462845325, 0.003865067381411791, -0.04183703288435936, -0.02920590713620186, -0.008044484071433544, -0.021318597719073296, -0.011245131492614746, 0.007001415826380253, -0.023819101974368095, 0.012502528727054596, 0.029634565114974976, -0.013688482344150543, 0.016989149153232574, 0.021261442452669144, -0.002329042414203286, 0.013245536014437675, -0.00905897468328476, -0.021575791761279106, 0.005243917461484671, -0.006029790733009577, 0.018532318994402885, -0.009737683460116386, 0.027862777933478355, 0.019575387239456177, 0.01990402489900589, -0.013409854844212532, 0.02697688341140747, 0.0037436143029481173, -0.015588866546750069, 0.022804612293839455, 0.009209005162119865, -0.03506423532962799, -0.0176607146859169, 0.003393543418496847, 0.004947429057210684, -0.018446587026119232, 0.01436719112098217, 0.0202040858566761, -0.01966111920773983, 0.017032016068696976, -0.007380064111202955, 0.02440493553876877, 0.0005367156700231135, 0.010809328407049179, -0.05595417320728302, 0.022618860006332397, 0.02267601527273655, 0.03103484772145748, -0.0034399814903736115, -0.004565209150314331, -0.007408641278743744, 0.01887524500489235, -0.028591496869921684, -0.004286581184715033, 7.300583820324391e-05, 0.003879355965182185, 0.022590283304452896, 0.0044366116635501385, 0.012109591625630856, 0.007301476784050465, 0.03132062032818794, 0.01056642271578312, 0.005526117514818907, 0.019461078569293022, -0.003361394163221121, 0.0013949249405413866, -0.02746269665658474, -0.00015036523109301925, -0.011802386492490768, -0.04909564182162285, -0.005636854097247124, 0.025890950113534927, 0.0036864597350358963, 0.019489655271172523, -0.00618339329957962, 0.02189014106988907, 0.007594393100589514, 0.03320671617984772, 0.005440386012196541, -0.02746269665658474, -0.04860983043909073, 0.018246546387672424, -0.0015172711573541164, 0.010530700907111168, -0.013917100615799427, -0.002102210884913802, 0.03023468516767025, -0.0044723330065608025, 0.0044973380863666534, -0.013495586812496185, -0.005944059230387211, 0.01486014761030674, 0.006840669084340334, -0.004493765998631716, -0.0049152798019349575, -0.009523354470729828, -0.010916493833065033, -0.011545191518962383, 0.012266766279935837, 0.017503539100289345, -0.010509268380701542, 0.06664204597473145, 0.009816271252930164, 0.002775561297312379, 0.02166152372956276, 0.0011707724770531058, -0.0017807172844186425, 0.01019491907209158, -0.008873223327100277, -0.006801375653594732, -0.009637663140892982, 0.028377167880535126, -0.02094709314405918, 0.011638067662715912, -0.004583069588989019, -0.010859338566660881, -0.00844456534832716, -0.005018872208893299, -0.0019075286109000444, -0.009637663140892982, -0.007301476784050465, 0.016231853514909744, -0.0017307071248069406, 0.00037239675293676555, 0.0007791754323989153, -0.02190442942082882, -0.004179416690021753, 0.0290201548486948, -0.0032935230992734432, -0.005186763126403093, -0.01818939298391342, -0.008751769550144672, 0.0048545533791184425, -0.024362070485949516, -0.011430882848799229, 0.016703378409147263, -0.004333019256591797, 0.00957336463034153, 0.0028112828731536865, 0.018217969685792923, 0.0030649055261164904, -0.013859945349395275, 0.02517651952803135, -0.026133855804800987, -0.007290760055184364, -0.003879355965182185, 0.0015288806753233075, -0.014017120003700256, -0.009337603114545345, -0.017760735005140305], "9dd5ef61-505f-4cf8-8a57-775a5a4a6d9e": [-0.0054130773060023785, -0.0161240603774786, -0.0231698676943779, -0.024551929906010628, -0.008949531242251396, 0.004678010009229183, -0.029971782118082047, -0.026001740247011185, -0.028969110921025276, -0.013393810018897057, 0.006612219847738743, 0.0021171297412365675, -0.005453726276755333, -7.674595690332353e-05, -0.00403101509436965, -0.0007337972056120634, 0.01392902061343193, -0.011808503419160843, 0.03048666939139366, -0.021991049870848656, -0.002018895000219345, 0.005060786847025156, -0.03867064416408539, -0.039429426193237305, -0.029944684356451035, 0.006886599585413933, 0.002864053240045905, -0.018983032554388046, 0.011320716701447964, -0.005453726276755333, 0.010114799253642559, -0.006110883317887783, -0.018495244905352592, -0.004451053682714701, 0.008068804629147053, -0.008109454065561295, -0.010494189336895943, -0.020730935037136078, -0.028345827013254166, 0.0042749084532260895, 0.0322481207549572, -0.000812977843452245, 0.008637889288365841, 0.008617565035820007, -0.019579216837882996, -0.004793182015419006, -0.019497917965054512, 0.007872335612773895, -0.021814905107021332, 0.004386692773550749, -0.010907452553510666, 0.002220445778220892, -0.02281757816672325, -0.026340482756495476, -0.001798713463358581, -0.006307353265583515, -0.011815277859568596, 0.0004308359057176858, 0.004295232705771923, -0.01731642708182335, -0.00012438137491699308, 0.011368139646947384, -0.02964659221470356, -0.0028521972708404064, 0.02128646895289421, 0.008746286854147911, 0.001969777513295412, 0.005291130859404802, -0.014145814813673496, 0.00663593178614974, 0.006585120689123869, 0.014891044236719608, -0.018928833305835724, 0.0016403521876782179, 0.03102865442633629, 0.008963081054389477, -0.007858785800635815, -0.015040090307593346, 0.011869476176798344, 0.00716097978875041, 0.0011949080508202314, 0.00390568096190691, 0.010697433724999428, -0.0018088757060468197, 0.008631114847958088, 0.0006317515508271754, -0.0008824196993373334, 0.023142769932746887, -0.0036787246353924274, -0.00043252960313111544, -0.01390192098915577, 0.007438747212290764, 0.04376530647277832, 0.006696905009448528, 0.014687799848616123, 0.000953555281739682, -0.022519486024975777, 0.011076822876930237, -0.013813848607242107, -0.030974455177783966, -0.005054012406617403, -0.014877494424581528, -0.03105575405061245, 0.010683883912861347, -0.049727145582437515, -0.020121201872825623, 0.022492386400699615, -0.005958450026810169, -0.017682267352938652, -0.009755734354257584, -0.03002598136663437, 0.03444316238164902, 0.006432686932384968, -0.03311529755592346, -0.02298017404973507, 0.002154391258955002, 0.024904221296310425, -0.015473677776753902, -0.009335695765912533, -0.003732923185452819, 0.028887812048196793, 0.021218720823526382, 0.03669239953160286, 0.0020561565179377794, 0.02281757816672325, -0.013285412453114986, -0.01877978816628456, -0.027031512930989265, 0.003046973142772913, -0.032546211034059525, 0.03853514790534973, 0.0007947705453261733, 0.0069983843713998795, 0.013265088200569153, 0.007011933717876673, 0.012208216823637486, 0.01772291772067547, -0.006971284747123718, -0.015378830954432487, -0.0031824694015085697, 0.030920257791876793, -0.014172913506627083, -0.0004611108743119985, -0.009457642212510109, 0.01731642708182335, 0.008793709799647331, 0.011971098370850086, -0.0030418920796364546, -0.011144571006298065, -0.011828827671706676, 0.005074336659163237, -0.012580832466483116, 0.0074590714648365974, -0.0009264560067094862, 0.0038074462208896875, 0.023020822554826736, 0.010792280547320843, 0.019267573952674866, -0.0045594507828354836, -0.021733608096837997, 0.032139722257852554, 0.006175244227051735, 0.010717757977545261, -0.022749830037355423, 0.017926162108778954, 0.04067599028348923, 0.004535738844424486, -0.0058229537680745125, 0.006056685000658035, -0.0072897011414170265, -0.006303965579718351, -0.010243521071970463, -0.04636683687567711, 0.018305551260709763, -0.01251985877752304, -0.004027627874165773, 0.013800298795104027, -0.0029910809826105833, -0.01367835234850645, 0.007506495341658592, -0.02059543877840042, -0.03289850428700447, 0.004119087476283312, 0.006991609465330839, -0.014050967060029507, -0.0004407864180393517, 0.03243781626224518, 0.023129219189286232, 0.0063209026120603085, 0.004654298070818186, 0.022533034905791283, 0.03547293320298195, -0.008360122330486774, 0.002787836594507098, -0.6191639304161072, -0.019579216837882996, 0.019104979932308197, -0.008963081054389477, 0.019836658611893654, 0.033169496804475784, -0.0007727523916400969, 0.0192269254475832, -0.0063751013949513435, 0.03493094816803932, -0.002079868223518133, -0.0028725217562168837, 0.005121760535985231, 0.0039632669650018215, -0.01571757160127163, -0.028345827013254166, 0.013542856089770794, -0.009227298200130463, 0.003583877347409725, 0.009816707111895084, -0.00027543859323486686, -0.008644664660096169, -0.022925974801182747, 0.012384362518787384, 0.005009975749999285, 0.02300727367401123, -0.005694232415407896, -0.018955932930111885, -0.007716514635831118, 0.01928112469613552, -0.015189135447144508, 0.01028416957706213, 0.0169641375541687, -0.0003059252630919218, 0.03853514790534973, -0.016801541671156883, -0.02331891469657421, 0.0041495743207633495, 0.02260078303515911, 0.0377492718398571, -0.03826415538787842, -0.029917584732174873, 0.029294300824403763, -0.007845235988497734, -0.00015412704669870436, 0.004352818708866835, 0.011815277859568596, -0.0212593711912632, 0.021150972694158554, -0.003099478082731366, 0.010026726871728897, -0.035987820476293564, -0.00740487314760685, 0.004224097356200218, -0.0050133634358644485, 0.013116042129695415, 0.016638945788145065, -0.03026987425982952, 0.016855740919709206, -0.035012245178222656, -0.017262229695916176, -0.0244841817766428, -0.014877494424581528, -0.00572133157402277, -0.026462428271770477, -5.2637140470324084e-05, -0.02419964037835598, 0.0027725931722670794, -0.009403443895280361, -0.01522978488355875, -0.00040797091787680984, 0.005152246914803982, 0.0231698676943779, -0.005365653894841671, 0.01366480253636837, 0.010778730735182762, 0.031164150685071945, -0.00887500774115324, -0.009958978742361069, 0.020080553367733955, -0.013170241378247738, 0.004400242585688829, -0.016666045412421227, -0.005711169447749853, 0.004843993112444878, 0.0026828269474208355, -0.03390117734670639, 0.005545186344534159, 0.005362266208976507, 0.006849338300526142, 0.014592952094972134, -0.008387221023440361, 0.025649450719356537, -0.03671949729323387, -0.0002328842820134014, 0.024931320920586586, -0.0046881721355021, 0.0011635745177045465, 0.014877494424581528, -0.018712040036916733, -0.012960221618413925, 0.029158804565668106, 6.0549911722773686e-05, -0.0009569426765665412, 0.0351206436753273, 0.009444092400372028, -0.008604015223681927, 0.00240675313398242, 0.0351206436753273, -0.018237803131341934, -0.0106296855956316, 7.822794577805325e-05, -0.008305924013257027, 0.0008565906900912523, -0.0036042018327862024, -0.032763008028268814, 0.01471489854156971, 0.007716514635831118, -0.0017716141883283854, 0.00034128132392652333, 0.04219355061650276, 0.005159021820873022, 0.02018895000219345, -0.00018503714818507433, 0.0055113122798502445, 0.013847722671926022, 0.012966996058821678, 0.008861458860337734, 0.0006423371960408986, 0.01356995478272438, 0.0025117627810686827, -0.033792778849601746, 0.019701162353157997, -0.020703835412859917, -0.009403443895280361, -0.022641433402895927, 0.0004395161522552371, -0.0014946935698390007, 0.046881720423698425, -0.005734880920499563, -0.01887463591992855, -0.02157101221382618, 0.018292000517249107, -0.027194108814001083, -0.020405743271112442, -0.03422636538743973, -0.03731568157672882, 0.0449034757912159, -0.00979638285934925, 0.0192269254475832, 0.015676923096179962, 0.0009349245228804648, -0.017329977825284004, 0.05138019844889641, -0.006886599585413933, 0.026679223403334618, -0.00046619196655228734, -0.016787992790341377, -0.014457455836236477, -0.006293803453445435, 0.0016064781229943037, -0.01145621296018362, -0.01712673343718052, -0.003739698091521859, 0.0055993846617639065, -0.01787196286022663, 0.008929206989705563, -0.010135123506188393, -0.012960221618413925, -0.031950030475854874, -0.027993537485599518, -0.005284355953335762, -0.0020832556765526533, 0.0038413202855736017, 0.014471005648374557, 0.006415749900043011, -0.005758592858910561, 0.007872335612773895, 0.008123003877699375, -0.009830256924033165, -0.011903350241482258, 0.022275593131780624, 0.0021069676149636507, 0.0018681553192436695, 0.011212319135665894, 0.021747156977653503, 0.023210518062114716, 0.016882840543985367, -0.007499720435589552, 0.0029639815911650658, 0.026367580518126488, 0.02419964037835598, -0.020554790273308754, 0.004786407109349966, 0.025405557826161385, 0.031164150685071945, 0.008631114847958088, -0.014769097790122032, -0.01571757160127163, 0.015080738812685013, 0.03574392572045326, 0.02150326408445835, -0.006469948682934046, -0.0296194925904274, 0.016476349905133247, -0.03937522694468498, 0.00546388840302825, -0.007865560241043568, 0.028508422896265984, 0.004447666462510824, 0.0031079465989023447, -0.024714525789022446, -0.0010111412266269326, -0.013746100477874279, 0.021178072318434715, 0.02310211956501007, -0.029294300824403763, 0.01634085364639759, 0.010277395136654377, 0.007215178105980158, 0.02905040793120861, -0.0018088757060468197, 0.038020264357328415, 0.002454176777973771, -0.02331891469657421, -0.006351389456540346, 0.027681894600391388, 0.015365281142294407, 0.0020747871603816748, -0.0080620301887393, 0.0055113122798502445, -0.016774442046880722, 0.0008176355040632188, 0.01367835234850645, -0.004430729430168867, -0.013305737636983395, 0.03623171150684357, -0.01703188568353653, 0.01161203347146511, 0.022343341261148453, -0.017899062484502792, 0.027776742354035378, -0.009403443895280361, -0.016666045412421227, 0.02682826854288578, 0.013956119306385517, 0.03444316238164902, 0.008854683488607407, 0.0015556669095531106, 0.020961279049515724, -0.0017614519456401467, 0.005562123376876116, -0.02044639177620411, -0.0052267699502408504, -0.01672024466097355, 0.004799956455826759, 0.010812604799866676, 0.027383804321289062, 0.03400957211852074, 0.022533034905791283, 0.015947915613651276, 0.006171856541186571, 0.006148145068436861, 0.018400399014353752, 0.006825626362115145, -0.008583690971136093, -0.007736838888376951, -0.01737062633037567, -0.01947081834077835, -0.0205412395298481, -0.038020264357328415, 0.003749860217794776, -0.007221953012049198, -0.018332650884985924, 0.008509168401360512, -0.026028839871287346, 0.009633786976337433, 0.020270247012376785, 0.029483996331691742, 0.00365840015001595, -0.004867704585194588, -0.01846814714372158, 0.005331779830157757, 0.019890857860445976, -0.010500963777303696, -0.005955062806606293, -0.009267947636544704, -0.021936852484941483, 0.003888743929564953, -0.0061515322886407375, -0.012607931159436703, 0.005054012406617403, 0.005812791641801596, -0.011022624559700489, -0.007960407994687557, 0.023955747485160828, 0.00612782035022974, -0.015270433388650417, -0.03547293320298195, -0.03812865912914276, 0.011916900053620338, -0.002984306076541543, 0.007072907406836748, -0.019741810858249664, 0.06455043703317642, -0.0010213033528998494, -0.014931692741811275, 0.010223195888102055, 0.010975200682878494, -0.0008117075776681304, -0.01327186357229948, -0.02190975286066532, -0.028996208682656288, -0.013888371177017689, 0.01787196286022663, 0.013827398419380188, 0.025554602965712547, 0.01078550610691309, 0.034605756402015686, -0.0022526259999722242, -0.016666045412421227, -0.01554142590612173, -0.00312318978831172, -0.010074150748550892, -0.04596034809947014, 0.011700105853378773, 0.009179874323308468, 0.0038989062886685133, -0.04701721668243408, -0.0005987242911942303, -0.011469761840999126, -0.025879794731736183, 0.005050624720752239, -0.015067189000546932, -0.020148301497101784, -0.021462615579366684, 0.008881783112883568, -0.005026912782341242, 0.006063459906727076, 0.002721782075241208, -0.008068804629147053, -0.02682826854288578, 0.017086084932088852, -0.007540369406342506, -0.002032444579526782, 0.013468332588672638, 0.013190565630793571, 0.018888184800744057, -0.0358252227306366, -0.000970492314081639, -0.0059279631823301315, 0.014037417247891426, 0.008346572518348694, -0.04170576483011246, -0.019511468708515167, 0.0005618862342089415, 0.00938989408314228, 0.03363018482923508, -0.0068357884883880615, 0.02338666282594204, 0.0009823482250794768, 0.041055381298065186, 0.006727391388267279, 0.002203508745878935, -0.022546585649251938, 0.03151644021272659, 0.001233016373589635, -0.008393996395170689, 0.008143328130245209, -0.0006910311640240252, 0.0003192631702404469, 0.02066318690776825, 0.00482028117403388, -0.012404686771333218, 0.017587419599294662, -0.011131021194159985, -0.04574355110526085, -0.014552303589880466, -0.014443906024098396, 0.009437317959964275, -0.008895332925021648, 0.016611848026514053, 0.013346386142075062, -0.0012990707764402032, 0.002577817300334573, -0.029321400448679924, 0.015053639188408852, -0.02558170258998871, -0.030134378001093864, -0.04373820871114731, -0.02417254075407982, 0.008434644900262356, -0.014796196483075619, -0.011801728047430515, 0.012845049612224102, -0.017235130071640015, -0.04815538600087166, -0.024863572791218758, 0.02094772830605507, 0.03612331673502922, 0.03232941776514053, -0.004701721947640181, -0.006839176174253225, 0.024023495614528656, -0.023440860211849213, -0.0072897011414170265, -0.011808503419160843, -0.009057927876710892, 0.020270247012376785, 0.01646280102431774, 0.011198769323527813, -0.03184163197875023, -0.003590652020648122, 0.00416989903897047, 0.003739698091521859, 0.010040276683866978, 0.011185220442712307, 0.021178072318434715, -0.015053639188408852, 0.0030401984695345163, 0.00546388840302825, 0.013854497112333775, 0.003594039473682642, -0.030405370518565178, 0.011374915018677711, -0.006964510306715965, -0.006442849524319172, 0.007499720435589552, -0.009830256924033165, -0.019213376566767693, 0.024429984390735626, 0.00403101509436965, 0.0213813167065382, -0.0004958317731507123, 0.0031485953368246555, -0.012790851294994354, 0.021720057353377342, 0.009450867772102356, 0.009742184542119503, 0.02382025122642517, 0.014064516872167587, -0.0006690130103379488, 0.012906023301184177, -0.02732960507273674, 0.023711852729320526, -0.012878923676908016, 0.025622351095080376, -0.0013049987610429525, -0.0033874076325446367, -0.0020256696734577417, -0.028589719906449318, -0.032573312520980835, -0.020961279049515724, 0.013956119306385517, -0.007296476047486067, 0.0028234042692929506, 0.011469761840999126, -0.012133694253861904, -0.03227521851658821, 0.02742445282638073, 0.003881969256326556, 0.0018105694325640798, -0.01712673343718052, -0.009051153436303139, 0.020717384293675423, -0.03002598136663437, -0.004816893488168716, -0.015270433388650417, -0.0018342812545597553, -0.02159811183810234, -0.01665249653160572, -0.016774442046880722, -0.011639133095741272, 0.016042763367295265, 0.010731307789683342, 0.006632544100284576, -0.01978246122598648, -0.021272920072078705, 0.040025610476732254, -0.03663820028305054, -0.012309839017689228, -0.014565852470695972, 0.03024277463555336, 0.004427341744303703, 0.010331593453884125, 0.004857542458921671, -0.008116228505969048, 0.012052396312355995, 0.022519486024975777, 0.021896203979849815, -0.01084647886455059, 0.007594567723572254, -0.018197154626250267, 0.010500963777303696, 0.020744483917951584, 0.011388464830815792, 0.015825968235731125, -0.01128684263676405, 0.02291242592036724, 0.03251911327242851, -0.0014633601531386375, 0.02826453000307083, 0.0017157220281660557, -0.033386290073394775, 0.01266212947666645, 0.011998197995126247, 0.004606874193996191, -0.007635216694325209, -0.01882043667137623, -0.029971782118082047, -0.0015209460398182273, -0.01822425238788128, 0.014525203965604305, -0.0038514824118465185, 0.022627882659435272, -0.018712040036916733, 0.004508639685809612, -0.012059171684086323, 0.021963952109217644, -0.01700478605926037, 0.01554142590612173, -0.027993537485599518, 0.003675337415188551, 0.012330164201557636, -0.01274342741817236, 0.022939523681998253, -0.002513456391170621, -0.02056833915412426, 0.01734352670609951, -0.013658028095960617, -0.023237615823745728, -0.014687799848616123, -0.0027454940136522055, -0.0018495245603844523, -0.019362421706318855, -0.019240476191043854, -0.014389707706868649, -0.006080396939069033, 0.03048666939139366, 0.024023495614528656, 0.0002845422422979027, 0.007723289541900158, -0.012709553353488445, -0.007614892441779375, -0.01266212947666645, 0.0012863680021837354, 0.03506644442677498, -0.00663593178614974, 0.02195040136575699, 0.01600211299955845, 0.015527877025306225, 0.004366368521004915, -0.07853365689516068, -0.0044984775595366955, -0.004291845485568047, 0.042030952870845795, 0.03365728259086609, -0.01596146449446678, -0.015365281142294407, 0.017099633812904358, 0.0005991477519273758, -0.0017648393986746669, -0.03219392150640488, 0.02059543877840042, 0.011029399000108242, -0.011280067265033722, -0.018183603882789612, 0.004884641617536545, -0.01103617437183857, 0.001985020935535431, -0.008753061294555664, 0.014078065752983093, -0.02398284524679184, 0.006822239141911268, -0.018400399014353752, -0.004606874193996191, -0.01777711510658264, 0.026936665177345276, 0.005037075374275446, -0.009735409170389175, -0.004606874193996191, -0.0010111412266269326, -0.03373857960104942, 0.017885511741042137, -0.005643421318382025, 0.027248308062553406, -0.005118372850120068, 0.0038074462208896875, -0.0037735721562057734, 0.022682081907987595, 0.015880167484283447, -0.018698491156101227, -0.02116452343761921, 0.04615004360675812, -0.021205171942710876, 0.0034060385078191757, -0.00044290354708209634, 0.022627882659435272, 0.010981976054608822, 0.006673193071037531, -0.014958792366087437, 0.009193424135446548, -0.0037430855445563793, -0.004447666462510824, 0.012966996058821678, 0.006801914423704147, 0.022045249119400978, -0.0009518615552224219, -0.0048338305205106735, -0.02119162306189537, -0.0231698676943779, 0.002767512109130621, 0.03671949729323387, -0.0451473705470562, 0.00873273704200983, -0.021516812965273857, -0.010555162094533443, 0.003158757695928216, -0.008021381683647633, 0.015107838436961174, 0.006795139517635107, 0.02905040793120861, -0.03281720355153084, 0.00038722302997484803, 0.0043629808351397514, -0.004528963938355446, -0.0005301292985677719, 0.004708496853709221, -0.01667959615588188, 0.005579060409218073, 0.026096588000655174, -0.00740487314760685, 0.003453462151810527, -0.012045621871948242, -0.007608117535710335, -0.0062328302301466465, -0.009776058606803417, 0.03777636960148811, 0.005535024218261242, -0.002240770263597369, 0.01872558891773224, 0.00964056234806776, -0.015338181518018246, 0.0005868683801963925, -0.01925402507185936, -0.018021007999777794, 0.027966437861323357, -0.01167978160083294, 0.021706508472561836, -0.01934887282550335, 0.0030452795326709747, 0.011937224306166172, -0.02266853116452694, -0.044496987015008926, 0.0148097462952137, -0.02087998017668724, -0.012784076854586601, -0.0046847849152982235, -0.028101934120059013, -0.001516711781732738, -0.02886071242392063, 0.004908353555947542, 0.0011076823575422168, -0.01903723180294037, 0.015866616740822792, 0.02276337891817093, 0.012072720564901829, 0.01781776361167431, -0.011307166889309883, -0.03287140280008316, 0.022804027423262596, -0.055987074971199036, -0.012458885088562965, -0.02159811183810234, -0.02558170258998871, 0.029158804565668106, 0.011313941329717636, -0.0027590435929596424, -0.03834545612335205, -0.0021154361311346292, -0.02329181507229805, 0.0023373113945126534, 0.0051996707916259766, 0.040621791034936905, 0.007235502824187279, 0.005114985629916191, 0.004888029303401709, 0.009437317959964275, -0.009837031364440918, 0.010500963777303696, -0.020798683166503906, -0.0051454720087349415, -0.021516812965273857, 0.010995524935424328, 0.016069861128926277, 0.0038718068972229958, -0.014267761260271072, -0.013644478283822536, 0.00741164805367589, 0.009315370582044125, 0.007120330817997456, 0.032139722257852554, -0.012574057094752789, 0.010575486347079277, -0.011910125613212585, 0.002154391258955002, -0.006547858938574791, 0.0076826405711472034, -0.018671391531825066, -0.021123874932527542, 0.01167978160083294, 0.01640860177576542, 0.016760893166065216, -0.028942011296749115, 0.03064926527440548, -0.021272920072078705, -0.01715383306145668, 0.009193424135446548, -0.021828453987836838, -0.003360308473929763, 0.0008261040202341974, 0.00936279445886612, 0.031760334968566895, 0.0007850317051634192, -0.01053483784198761, 0.020581888034939766, 0.026367580518126488, 0.016069861128926277, 0.004539126064628363, -0.003627913538366556, -0.01067710854113102, -0.006679967977106571, 0.018481696024537086, 0.00796718243509531, -0.004095376003533602, 0.0061074960976839066, 0.0018630742561072111, -0.01643570140004158, 0.0028488098178058863, 0.005497762467712164, 0.005108210723847151, -0.024538381025195122, 0.025771398097276688, 0.010040276683866978, -0.030378270894289017, -0.012126919813454151, -0.016489900648593903, -0.02967369183897972, -0.015365281142294407, -0.012973771430552006, 0.0016166402492672205, -0.03815576061606407, 0.031326744705438614, -0.007120330817997456, -0.010981976054608822, -0.008028156124055386, 0.007791037671267986, 0.01777711510658264, -0.01928112469613552, -0.014389707706868649, 0.255600243806839, -0.024904221296310425, -0.021936852484941483, 0.02907750755548477, -0.010345143266022205, 0.003939555026590824, 0.0031147212721407413, -0.0006901843007653952, -0.01314991619437933, 0.0035195164382457733, -0.016787992790341377, -0.01366480253636837, -0.012980545870959759, 0.0005728953401558101, 0.02050059102475643, -0.02350860834121704, -0.01590726710855961, -0.01787196286022663, 0.008129778318107128, 0.00820430088788271, 0.015311082825064659, 0.01482329610735178, -0.015202685259282589, -0.004637361038476229, 0.010365467518568039, 0.00798073224723339, -0.008143328130245209, 0.0286710187792778, 0.009687986224889755, 0.016828641295433044, -0.019714713096618652, 0.007391323335468769, -0.015690471976995468, -0.0031502891797572374, -0.021584561094641685, -0.030324073508381844, 0.015798868611454964, -0.008082354441285133, 0.010419665835797787, 0.02764124609529972, -0.00149892782792449, -0.0009459335706196725, -0.0029893871396780014, -0.021733608096837997, -0.003563552862033248, 0.0220994483679533, 0.011957548558712006, -0.03333209082484245, -0.02845422364771366, -0.004999813623726368, -0.02905040793120861, -0.0009899699361994863, 0.009647336788475513, 0.005098048597574234, 0.006964510306715965, 0.006249767262488604, 0.028752315789461136, -0.001471828669309616, 0.012343713082373142, 0.02310211956501007, 0.026001740247011185, 0.03777636960148811, -0.008861458860337734, -0.010873578488826752, -0.0028555847238749266, 0.0018884798046201468, -0.026069488376379013, 0.002206896198913455, -0.00021933464449830353, -0.01966051384806633, 0.005033687688410282, 0.010263845324516296, -0.0012457191478461027, 0.0018647678662091494, -0.012208216823637486, -0.03482254967093468, 0.045066069811582565, 0.029402699321508408, 0.005497762467712164, 0.036014918237924576, -0.019010132178664207, 0.0028166293632239103, 0.005717943888157606, -0.0143355093896389, -0.015473677776753902, -0.027410902082920074, 0.01834619976580143, -0.01441680733114481, -0.0008747980464249849, -0.008258500136435032, 0.014565852470695972, -0.034361861646175385, 0.005629871506243944, 0.0010517900809645653, 0.013597054407000542, 0.0030672976281493902, 0.004705109167844057, 0.016069861128926277, -0.016178259626030922, -0.027343153953552246, 0.00378034682944417, 0.02310211956501007, 0.01956566609442234, 0.022045249119400978, 0.0007549684960395098, -0.015094288624823093, 0.0034619306679815054, 0.004339269362390041, 0.0032451364677399397, 0.003456849604845047, 0.021963952109217644, -0.04067599028348923, 0.0026845205575227737, -0.012120144441723824, -0.0011178444838151336, -0.008583690971136093, -0.04471378028392792, -0.01356995478272438, -0.005690844729542732, -0.0033399839885532856, -0.009403443895280361, -0.038237057626247406, 0.012438560836017132, 0.027383804321289062, -0.01562272384762764, -0.01522978488355875, -0.03151644021272659, 0.011855926364660263, -0.0106296855956316, -0.031760334968566895, 0.010622910223901272, -0.029538195580244064, 0.03525613993406296, 0.013725776225328445, 0.0026438715867698193, 0.016706693917512894, -0.02150326408445835, -0.026570824906229973, 0.002513456391170621, 0.006547858938574791, 0.002391509711742401, 0.002577817300334573, 0.03907713294029236, -0.015690471976995468, 0.00790620967745781, -0.02100192755460739, -0.0055553484708070755, 0.022424638271331787, -0.013332836329936981, 0.0008493924397043884, -0.027180558070540428, -0.02563590183854103, 0.013095717877149582, -0.00741842295974493, 0.00898340530693531, -0.009742184542119503, 0.0038006713148206472, -0.04964584484696388, 0.020866431295871735, 0.023142769932746887, -0.034199267625808716, -0.00845496915280819, 0.020717384293675423, -0.027532849460840225, -0.006449623964726925, -0.03484965115785599, -0.17278489470481873, 0.014918142929673195, 0.04438858851790428, -0.00324852392077446, 0.018454596400260925, 0.0036177514120936394, 0.00766231631860137, -0.002860665787011385, -0.014010317623615265, 0.00675449101254344, 0.018088756129145622, -0.01972826197743416, -0.0052437069825828075, -0.009369569830596447, -0.030107278376817703, -0.0014142426662147045, -0.011449437588453293, 0.008265274576842785, 0.042058054357767105, 0.018210703507065773, 0.04417179524898529, -0.019077880308032036, -0.00964056234806776, 0.025961091741919518, 0.022722730413079262, 0.016896389424800873, 0.012038846500217915, 0.014159363694489002, 0.018928833305835724, -0.018915284425020218, -0.00898340530693531, 0.012059171684086323, 0.019023681059479713, -0.012797625735402107, -0.001061952323652804, 0.006866275332868099, -0.013719000853598118, -0.012309839017689228, -0.01562272384762764, -0.001531108282506466, -0.002015507547184825, 0.0339282751083374, -0.008360122330486774, -0.002217058325186372, 0.005938125774264336, 0.0002172175154555589, 0.016801541671156883, -0.017451923340559006, 0.019917957484722137, -0.012093045748770237, 0.016327304765582085, -0.014904594048857689, 0.020310895517468452, -0.00415634922683239, 0.02704506181180477, 0.004227484576404095, 0.0034466872457414865, 0.008786935359239578, -0.019917957484722137, 0.013671576976776123, -0.008488843217492104, -0.023020822554826736, 0.01634085364639759, 0.014023867435753345, 0.007818137295544147, -0.0014133958611637354, -0.010860028676688671, 0.036421407014131546, -0.02426738850772381, -0.004227484576404095, -0.0008184823673218489, -0.04278973489999771, 0.032166823744773865, 0.008089129813015461, 0.008590465411543846, 0.013420908711850643, -0.0012533408589661121, -0.010358692146837711, 0.010216421447694302, 0.014850394800305367, -0.00898340530693531, 0.025690099224448204, -0.008807259611785412, -0.0015802256530150771, 0.003892131382599473, 0.010921002365648746, 0.020080553367733955, 0.02085288241505623, -0.019457269459962845, -0.03612331673502922, 0.023657655343413353, -0.020893530920147896, -0.008753061294555664, -0.019321773201227188, -0.006392038427293301, 0.013346386142075062, -0.014606501907110214, -0.007127105724066496, -0.025812046602368355, -0.003671949962154031, -0.0011017543729394674, -0.005816178862005472, -0.014972342178225517, -0.002045994158834219, 0.007377773988991976, -0.011042948812246323, 0.0012093045515939593, 0.022465286776423454, 0.06156952306628227, 0.0019088041735813022, 0.009416993707418442, -0.019985705614089966, 0.01356995478272438, 0.02310211956501007, 0.002750575076788664, -0.002825097879394889, -0.01512138731777668, -0.023332463577389717, 0.03105575405061245, 0.012418236583471298, -0.010324818082153797, -0.022953074425458908, 0.007499720435589552, 0.011767853982746601, -0.014985891059041023, -0.003033423563465476, -0.05745043233036995, 0.001235556905157864, 0.014050967060029507, 0.011910125613212585, -0.006517372094094753, 0.02247883751988411, -0.011212319135665894, 0.03409086912870407, -0.008109454065561295, 0.041841261088848114, -0.014904594048857689, -0.017614519223570824, -0.015853067860007286, -0.0003834122035186738, 0.0008574375533498824, 0.02078513242304325, -0.020622538402676582, 0.008224626071751118, 0.006517372094094753, 0.039050035178661346, -0.027587048709392548, -0.023711852729320526, 0.023346014320850372, -0.016395052894949913, 0.009105351753532887, -0.014294859953224659, -0.006205730605870485, 0.002691295463591814, 0.01581241935491562, -0.0037905091885477304, 0.04091988503932953, -0.008698862977325916, -0.015256884507834911, -0.007641991600394249, 0.02629983238875866, 0.004295232705771923, -0.01077195629477501, -0.006171856541186571, 0.015162036754190922, -0.012065946124494076, -0.005711169447749853, 0.025364909321069717, -0.00390229350887239, 0.007784262765198946, -0.001998570514842868, -0.01615116000175476, -0.00013496702013071626, 0.018021007999777794, -0.016367953270673752, 0.004196998197585344, -0.023034371435642242, -0.007987507618963718, -0.020581888034939766, -0.009999627247452736, 0.0024931321386247873, 0.025337809696793556, 0.01117844507098198, 0.011015850119292736, -0.028969110921025276, 0.027465101331472397, -0.0048101190477609634, -0.006832401268184185, -0.021245820447802544, 0.01624600775539875, 0.018305551260709763, 0.022546585649251938, -0.010595811530947685, 0.0038006713148206472, 0.02417254075407982, 0.02169295772910118, -0.01054838765412569, 0.030974455177783966, -0.009742184542119503, 0.06373745948076248, -0.024023495614528656, -0.019525017589330673, -0.00741842295974493, 0.006950960494577885, 0.01650344952940941, -0.004999813623726368, -0.011009074747562408, -0.0035296787973493338, 0.009748958982527256, -0.02350860834121704, 0.01583951897919178, 0.01712673343718052, -0.007540369406342506, -0.0026049164589494467, 0.01972826197743416, -0.024443533271551132, -0.0002143593883374706, 0.025527503341436386, 0.00831269845366478, -0.017858413979411125, 0.019768910482525826, 0.008441420271992683, 0.0016674514627084136, -0.009457642212510109, 0.0047897943295538425, 0.009328920394182205, -0.020622538402676582, -0.0041326372884213924, -0.06758555769920349, 0.03306109830737114, -0.036367207765579224, 0.007465846370905638, 0.019416620954871178, 0.011686556041240692, 0.0453912615776062, -0.014118715189397335, 0.001173736760392785, 0.006327677518129349, -0.007770712953060865, 0.03232941776514053, -0.004227484576404095, -0.003006324404850602, -0.008170426823198795, -0.02276337891817093, 0.0002781908551696688, 0.03623171150684357, 0.012790851294994354, 0.021015476435422897, 0.006656256038695574, 0.002642177976667881, 0.00906470324844122, -0.020175399258732796, -0.04273553565144539, 0.014159363694489002, -0.0013227827148512006, 0.014389707706868649, -0.00870563741773367, 0.003468705341219902, 0.016205357387661934, -0.026882467791438103, -0.012370812706649303, 0.01183560211211443, -0.0048067313618958, 0.0016818478470668197, 0.00675449101254344, 0.031137051060795784, 0.013027969747781754, 0.05322295054793358, -0.012126919813454151, -0.02802063524723053, 0.004755920264869928, -0.007384548895061016, 0.015798868611454964, 0.002496519358828664, -0.021516812965273857, 0.023346014320850372, 0.008305924013257027, -0.01787196286022663, 0.010697433724999428, 0.009403443895280361, 0.0011779710184782743, -0.023156318813562393, -0.03262751176953316, -0.047775998711586, -0.0018004071898758411, -0.004393467679619789, 0.0003791779454331845, 0.003233280498534441, 0.027559949085116386, -0.02426738850772381, 0.022343341261148453, -0.012736652977764606, -0.014877494424581528, -0.007709739729762077, -0.012628255411982536, 0.013766424730420113, 0.008963081054389477, 0.013000870123505592, -0.022546585649251938, -0.022302692756056786, -0.0296194925904274, 0.007127105724066496, 0.007635216694325209, 0.012262416072189808, -0.0014083146816119552, 0.019430169835686684, -0.01142911333590746, 0.011923674494028091, 0.00923407357186079, 0.0016640640096738935, -0.0336843803524971, 0.008692087605595589, 0.034768350422382355, -0.00979638285934925, -0.017357077449560165, 0.027993537485599518, -0.019823109731078148, 0.004213935229927301, -0.019958605989813805, -0.000609733397141099, 0.0051386975683271885, 0.016015663743019104, -0.003236667951568961, 0.007784262765198946, -0.009159550070762634, 0.008949531242251396, 0.004589937161654234, 0.0045594507828354836, -0.016110511496663094, 0.004047952126711607, -0.009457642212510109, -0.0064191375859081745, -0.019579216837882996, 0.01367835234850645, -0.02983628585934639, -0.031760334968566895, -0.007845235988497734, -0.0009798076935112476, -0.018576543778181076, 0.0018884798046201468, -0.017357077449560165, 0.017899062484502792, -0.022614333778619766, 0.009071477688848972, -0.005148859694600105, 0.002327149035409093, -0.027559949085116386, 0.025378458201885223, 0.005531636532396078, 0.01316346600651741, 0.02300727367401123, -0.011185220442712307, 0.016354404389858246, -0.024253839626908302, 0.005240319762378931, -0.03468705341219902, 0.016693145036697388, 0.017519671469926834, -0.012458885088562965, 0.023955747485160828, -0.0025557989720255136, -0.01712673343718052, -0.011320716701447964, -0.007614892441779375, 0.007872335612773895, 0.027058612555265427, 0.01915917731821537, 0.05297905579209328, -0.0005491834599524736, -0.0091392258182168, 0.013393810018897057, -0.020107651129364967, 0.018644291907548904, 0.014674250036478043, 0.0024592578411102295, 0.009227298200130463, -0.03086605854332447, 0.005446951370686293, 0.010094475001096725, -0.025364909321069717, -0.021936852484941483, 0.006798527203500271, -0.016381504014134407, -0.021367767825722694, 0.017086084932088852, -0.00215608486905694, -0.0006444543250836432, 0.036394309252500534, -0.009620238095521927, 0.008637889288365841, -0.0029148643370717764, -0.001531955087557435, 0.006964510306715965, 0.0013244764413684607, -0.021652309224009514, -0.001951146754436195, -0.014457455836236477, 0.0026675835251808167, -0.015202685259282589, -0.024660328403115273, -0.03945652395486832, -0.018983032554388046, 0.0061515322886407375, 0.006547858938574791, 0.006083784159272909, 0.013116042129695415, 0.016774442046880722, -0.03384697809815407, 0.01815650425851345, -0.02491777017712593, -0.0351206436753273, -0.016015663743019104, 0.00023034372134134173, -0.007357449270784855, -0.005355491302907467, -0.019958605989813805], "a5dd4ed2-ffad-4506-a1f2-e25c12569798": [0.0028072581626474857, -0.01891135796904564, 0.006646766792982817, -0.019017230719327927, -0.013544979505240917, -0.002135633723810315, 0.005760089959949255, -0.020446499809622765, -0.0060247695073485374, -0.026203282177448273, 0.017693832516670227, 0.007722027599811554, -0.009707124903798103, -0.0275002121925354, -0.01765413023531437, 0.011361372657120228, 0.0016112371813505888, -0.014213294722139835, -0.0022878244053572416, -0.010745991952717304, -0.0012365500442683697, 0.005826259963214397, 0.009594636037945747, -0.011672371067106724, -0.015748437494039536, 0.01646307110786438, 0.01072614174336195, -0.027659019455313683, 0.015060270205140114, -0.0288236103951931, 0.01897752843797207, -0.00823153555393219, -0.017733534798026085, -0.015047036111354828, 0.016449837014079094, 0.011579733341932297, -5.552068250835873e-05, 0.0015086737694218755, 0.00202479911968112, 0.007583071012049913, 0.029511775821447372, 0.01655570976436138, 0.013465574942529202, 0.012076007202267647, -0.018726082518696785, 0.01924220845103264, -0.021200837567448616, 0.0054160067811608315, 0.003078554756939411, 0.024403460323810577, -0.0018477945122867823, 0.012836961075663567, -0.03824620321393013, -0.01993037387728691, -0.009740210138261318, 0.02118760347366333, -0.0413958914577961, 0.017230642959475517, 0.0014160359278321266, -0.027685487642884254, 0.009627721272408962, 0.01466325018554926, -0.020552372559905052, 0.01178485993295908, -0.019149569794535637, 0.013617766089737415, -0.014636782929301262, 0.02683851309120655, -0.011083458550274372, 0.007225753273814917, 0.036843400448560715, 0.0059188976883888245, 0.0028304175939410925, -0.010600418783724308, 0.04473085328936577, -0.0031745010055601597, -0.026031238958239555, -0.006246438715606928, 0.022669808939099312, 0.021862536668777466, 0.0002088487526634708, -0.0036889719776809216, 0.015655798837542534, -0.014822058379650116, 0.002972682937979698, -0.006802265997976065, -0.015483757480978966, 0.008535917848348618, 0.01188411470502615, -0.01999654434621334, 0.02396673895418644, -0.0014540835982188582, 0.014583846554160118, 0.025171030312776566, 0.00012644655362237245, 0.002306021051481366, -0.0013903951039537787, 0.02317270077764988, -0.010593801736831665, -0.028347186744213104, -0.014927930198609829, 0.026428259909152985, -0.015774905681610107, -0.002840343164280057, -0.028982417657971382, -0.026229750365018845, 0.02611064352095127, 0.003851088462397456, 0.02789723128080368, -0.012810492888092995, -0.0201288852840662, 0.0137501060962677, -0.006405246444046497, -0.028638334944844246, -0.019625993445515633, -0.010335738770663738, 0.03027934767305851, -0.03636698052287102, -0.0015980032039806247, 0.004158778581768274, 0.014676484279334545, 0.006203428376466036, 0.024403460323810577, -0.0005864307750016451, 0.021346410736441612, 0.018593743443489075, 0.0071463496424257755, -0.01997007615864277, 0.004241490736603737, -0.017640896141529083, 0.023265337571501732, -0.008985872380435467, 0.008072728291153908, 0.012294367887079716, -0.02601800672709942, -0.005591356661170721, -0.0312321949750185, 0.005270432680845261, -0.01778646931052208, -0.008932936936616898, 0.03176155313849449, 0.014994099736213684, -0.0036691210698336363, -0.004598808474838734, 0.00022869973327033222, 0.03896084055304527, 0.004833711311221123, 0.006590522360056639, 0.009349807165563107, 0.002340760314837098, 0.0076690916903316975, 0.0008784054662100971, 0.025541583076119423, 0.015166142024099827, 0.008039643056690693, -0.0056343674659729, 0.021359644830226898, 0.010904800146818161, -0.005058689042925835, -0.0184746365994215, 0.016568943858146667, 0.01893782615661621, -0.01441180519759655, -0.003986736759543419, 0.0004851080884691328, 0.017535023391246796, 0.01360453199595213, 0.005243964958935976, -0.009839464910328388, 0.007014009635895491, 0.0012671536533161998, 0.009462296031415462, -0.027526680380105972, 0.03176155313849449, 0.007093413732945919, 0.024641672149300575, -0.010249718092381954, 0.015192609280347824, -0.031814489513635635, -0.006206736899912357, 0.0006501192692667246, -0.020552372559905052, -0.017958512529730797, 0.022471299394965172, -0.013961849734187126, -0.03186742588877678, 0.001226624590344727, -0.01368393562734127, 0.011506945826113224, 0.018633443862199783, 0.013697169721126556, 0.03319082409143448, -0.010977586731314659, -0.003761759027838707, -0.6030460000038147, -0.01732327975332737, -0.0005099218105897307, 0.011712072417140007, 0.0013101641088724136, 0.013247214257717133, -0.0018626827513799071, 0.04531314969062805, -0.03919905051589012, 0.035122983157634735, -0.014782356098294258, 0.01036220695823431, -0.011513562873005867, -0.012611983343958855, 0.0027592850383371115, -0.022391894832253456, 0.006438331678509712, -0.013492043130099773, -0.00513147609308362, 0.00060131901409477, -0.011387839913368225, 0.010805545374751091, -0.02701055444777012, -0.02188900299370289, 0.004264650400727987, 0.00012872113438788801, 0.012234815396368504, -0.022008109837770462, 0.008833682164549828, 0.034990645945072174, -0.01811731979250908, 0.018699614331126213, 0.028479525819420815, -0.015338183380663395, 0.05232715979218483, -0.010673205368220806, -0.026719406247138977, 0.020684711635112762, 0.0023225636687129736, 0.04888632521033287, -0.021637558937072754, -0.00687505304813385, 0.0010636812075972557, -0.000733245222363621, 0.002994188107550144, -0.0015847692266106606, 0.007596304640173912, -0.03803446143865585, 0.0036591957323253155, 0.031814489513635635, -0.005981759168207645, -0.0075566028244793415, 0.018329063430428505, -0.021174369379878044, 0.03255559131503105, -0.00101653509773314, 0.031549811363220215, -0.03292614221572876, 0.0009139718022197485, -0.00580971734598279, -0.0028816992416977882, 0.008787362836301327, -0.016913026571273804, -0.022683043032884598, -0.029061822220683098, 0.017296813428401947, -0.03210563585162163, -0.030199943110346794, -0.0071529666893184185, -0.011004054918885231, 0.014279465191066265, -0.01441180519759655, 0.015576395206153393, -0.004916423931717873, 0.016449837014079094, 0.04671595245599747, 0.03491124138236046, -0.015444055199623108, -0.013922147452831268, 0.008119046688079834, 0.004016513004899025, -0.0032323997002094984, -0.00238377065397799, -0.020512670278549194, 0.008906468749046326, -0.014133891090750694, -0.012076007202267647, -0.011090075597167015, 0.0026004770770668983, -0.00027336442144587636, 0.019387781620025635, 0.0314704068005085, 0.0031943521462380886, -0.04155470058321953, 0.0012886588228866458, 0.022471299394965172, -0.006243130192160606, -0.017243877053260803, -0.004711296875029802, 0.011692222207784653, -0.02449609898030758, -0.006461490876972675, 0.007066945545375347, -0.013842743821442127, 0.03374665230512619, -0.0017104919534176588, -0.03795505687594414, 0.006325842812657356, 0.018037915229797363, 0.0038907902780920267, 0.0006364717264659703, 0.00481055211275816, 0.0009991655824705958, 0.0016228168969973922, 0.027579614892601967, -0.03745216503739357, 0.008668256923556328, 0.013267065398395061, 0.008258003741502762, -0.0017286887159571052, 0.008707959204912186, 0.010329121723771095, 0.015708735212683678, -0.012049539014697075, 0.0031265278812497854, 0.006071088369935751, 0.018726082518696785, -0.016608646139502525, -0.00895940512418747, 0.011262117885053158, -0.018831955268979073, 0.016965962946414948, 0.008727810345590115, -0.011149629019200802, 0.029273565858602524, 0.020711179822683334, -0.0025773176457732916, -0.0029147842433303595, 0.01950688660144806, -0.018329063430428505, -0.00839696079492569, -0.0005157116684131324, -0.004072757437825203, -0.014994099736213684, -0.00019923344370909035, -0.02551511488854885, -0.0173894502222538, 0.014094189740717411, -0.0006025596521794796, -0.0016145455883815885, 0.020539138466119766, -0.00015880777209531516, -0.0028039496392011642, 0.052009545266628265, -0.00514801824465394, 0.013531745411455631, -0.012850195169448853, -0.006577288266271353, 0.005505335982888937, 0.0006927161593921483, 0.0018676455365493894, -0.0018031299114227295, -0.020287692546844482, -0.005128167569637299, -0.022259555757045746, -0.0010951119475066662, -0.002425126964226365, 0.0025839346926659346, -0.01827612705528736, -0.039093177765607834, -0.017932044342160225, 0.00798009056597948, 0.011149629019200802, -0.0030322358943521976, -0.012519345618784428, 0.0009073548135347664, -0.03403779864311218, 0.0052969008684158325, -0.002770864637568593, -0.011606200598180294, 0.020552372559905052, 0.01732327975332737, 0.009151297621428967, -0.003976811189204454, 0.02564745396375656, 0.034328944981098175, 0.030438154935836792, 0.01666158065199852, -0.020009778439998627, 0.0005008234293200076, -0.007080179639160633, 0.017733534798026085, 0.002425126964226365, 0.012300984933972359, 0.029855860397219658, -0.0074771991930902, 0.010970969684422016, 0.02069794572889805, 0.0071595837362110615, 0.010527631267905235, 0.02083028480410576, 0.01785263977944851, -0.0007336587877944112, -0.02016858570277691, 0.015126439742743969, -0.01864667795598507, 0.005846111103892326, -0.00351693038828671, 0.015245545655488968, 0.01406772155314684, -0.010309270583093166, -0.028241313993930817, -0.02204781211912632, -0.010580567643046379, 0.022960957139730453, 0.0015599554171785712, -0.01768059842288494, 0.011434159241616726, -0.020512670278549194, -0.009052042849361897, 0.022418363019824028, -0.01963922753930092, 0.005541729275137186, -0.026004772633314133, -0.011533414013683796, 0.0031596128828823566, -0.003169538453221321, 0.010640120133757591, 0.008456513285636902, -0.03189389407634735, -0.013247214257717133, -0.018964294344186783, 0.004380447790026665, -0.002545886905863881, 0.012651685625314713, -0.014080955646932125, 0.010434993542730808, -0.02800310216844082, 0.0110569903627038, 0.01646307110786438, 0.013055321760475636, -0.0008742698701098561, 0.016767453402280807, -0.02317270077764988, 0.028770674020051956, -0.0013664085417985916, 0.054365191608667374, 0.024072609841823578, -0.022391894832253456, -0.015483757480978966, -0.017892342060804367, -0.01092465128749609, -0.015748437494039536, 0.03266146406531334, -0.0003153409343212843, -0.022630106657743454, -0.011295202188193798, 0.003930492326617241, 0.014358868822455406, 0.031946830451488495, 0.0075566028244793415, 0.018964294344186783, 0.009118212386965752, 0.013908913359045982, -0.004476394038647413, -0.03475243225693703, -0.017773235216736794, -0.008529300801455975, -0.000545074581168592, -0.0038907902780920267, -0.004145544487982988, -0.0016724442830309272, 0.00482709426432848, -0.016965962946414948, -0.001973517471924424, 0.00030727649573236704, -0.006679851561784744, 0.01910986751317978, 0.041898783296346664, -0.013631000183522701, -0.00028349668718874454, -0.028611866757273674, 0.0052472734823822975, 0.012585515156388283, 0.01400155108422041, -0.002468137303367257, -0.011348138563334942, -0.0032042774837464094, 0.011109926737844944, 0.007827899418771267, 0.007100030779838562, 0.018262892961502075, 0.005204262677580118, -0.008251386694610119, -0.013035470619797707, -0.015536692924797535, 0.04327511787414551, -0.0030686291866004467, -0.025078393518924713, -0.011698839254677296, 0.011698839254677296, -0.02036709524691105, 0.002067809458822012, -0.006663309410214424, 0.026732640340924263, -0.010990820825099945, -0.01745562069118023, 0.009111595340073109, 0.023887334391474724, -0.024046143516898155, -0.022788913920521736, -0.01831582933664322, 0.0015210806159302592, -0.01586754247546196, -0.0036856636870652437, 0.00046691138413734734, 0.005617824848741293, -0.0014176901895552874, 0.015391119755804539, 0.023252103477716446, 0.001723725930787623, -0.013869212009012699, -0.02802957035601139, -0.0028635025955736637, -0.0070470948703587055, 0.0086947251111269, -0.0007588860462419689, 0.01768059842288494, -0.003023964585736394, -0.005323368590325117, -0.020023012533783913, 0.01867314614355564, 0.018064383417367935, -0.014173593372106552, -0.014319167472422123, 0.006120716221630573, 0.00465174438431859, -0.01454414427280426, 0.008780745789408684, 0.002924709813669324, -0.01884518750011921, -0.01304208766669035, 0.016873326152563095, -0.018990762531757355, 0.007100030779838562, 0.005277049727737904, 0.03575821593403816, -0.0009023920283652842, 0.01350527722388506, 0.011414308100938797, 0.008039643056690693, 0.02869126945734024, 0.013253831304609776, -0.008529300801455975, 0.008880000561475754, -0.007993324659764767, 0.006567362695932388, 0.008125663734972477, -0.019480420276522636, 0.018170256167650223, 0.018792252987623215, 0.05600620433688164, 0.0006827907054685056, 0.002519418951123953, -0.012585515156388283, 0.036340512335300446, 0.017998212948441505, -0.011712072417140007, 0.014305933378636837, -0.027089959010481834, -0.008800596930086613, 0.025594517588615417, 0.007119881454855204, -0.0174820888787508, 0.0334555022418499, 0.006881670095026493, -0.03679046779870987, 0.008714576251804829, -0.020962625741958618, 0.02264334075152874, -0.020221522077918053, -0.0076558575965464115, -0.004889955744147301, -0.031152790412306786, -0.0005707154050469398, -0.01242670789361, -0.005376304499804974, -0.0070470948703587055, -0.015444055199623108, -0.017799703404307365, -0.019387781620025635, 0.002433398272842169, -0.019295142963528633, -0.019162803888320923, 0.010693056508898735, -0.05844125896692276, -0.042031124234199524, 0.024019675329327583, 0.006689777132123709, -0.0039139497093856335, 0.015245545655488968, -0.007291923277080059, -0.0027328170835971832, 0.016648348420858383, -0.024482864886522293, -0.004714605398476124, -0.027711955830454826, -0.02575332671403885, 0.01176500879228115, 0.009071893990039825, 0.015576395206153393, -0.004893264267593622, -0.011851029470562935, 0.014239762909710407, 0.0014631820376962423, -0.002636870602145791, 0.0258459635078907, 0.015854308381676674, -0.01662188023328781, 0.008966022171080112, 0.008410194888710976, 0.02826778218150139, -0.011010671965777874, -0.01426623109728098, 0.005627750419080257, -0.04033717140555382, -0.012267899699509144, -0.015417587012052536, -0.02264334075152874, 0.005554963368922472, 0.007755112834274769, 0.0016716171521693468, -0.02178313210606575, -0.004926349502056837, 0.018765784800052643, -0.015894010663032532, 0.012353921309113503, -0.022722745314240456, 0.0015740165254101157, -0.0015946946805343032, -0.011956901289522648, 0.004595499951392412, 0.0017948586028069258, -0.0002446218568366021, 0.010170314460992813, -0.026335621252655983, 0.040840063244104385, 0.027579614892601967, 0.012274516746401787, 0.021478749811649323, -0.006335768382996321, 0.004989210516214371, 0.002709657419472933, 0.029935264959931374, 0.0021885696332901716, 0.040972404181957245, -0.005386230070143938, -0.017296813428401947, -0.015258779749274254, -0.027711955830454826, 0.008714576251804829, 0.009885783307254314, -0.023357976227998734, -0.030252879485487938, -0.023080062121152878, -0.016436604782938957, -0.004883338697254658, 0.0012497840216383338, -0.0012382043059915304, -0.03726688772439957, -0.00031203243997879326, -0.010964352637529373, 0.021743429824709892, 0.010944501496851444, 0.02456226758658886, 0.006994158960878849, -0.05081848427653313, -0.0027394338976591825, -0.016304263845086098, -0.019652461633086205, -0.011473861522972584, -0.03184095770120621, 0.011606200598180294, 0.02339767850935459, 0.014716186560690403, 0.017336513847112656, -0.0034970794804394245, -0.005740239284932613, -0.0006372988573275506, 0.004360596649348736, -0.027950167655944824, 0.01758795976638794, -0.0034077500458806753, -0.010057825595140457, 0.005273741204291582, 0.013518511317670345, -0.022272789850831032, -0.022418363019824028, 0.0004085991531610489, 0.01997007615864277, -0.0037385995965451, 0.004631893243640661, -0.012750940397381783, -0.04674242064356804, 0.0028519227635115385, -0.011454010382294655, -0.0025508496910333633, -0.002760939300060272, -0.011248883791267872, -0.033376097679138184, -0.008158748969435692, -0.00013916357420384884, 0.044042687863111496, 0.023119764402508736, 0.0052902838215231895, -0.013425873592495918, 0.01480882428586483, 0.0056145163252949715, 0.002972682937979698, -0.018196722492575645, 0.019983310252428055, -0.022431597113609314, 0.01178485993295908, -0.0031116397585719824, 0.016979197040200233, 0.007325008045881987, 0.008946171030402184, 0.0362875759601593, 0.008205068297684193, 0.034487754106521606, 0.006061163265258074, -0.027685487642884254, -0.0005252236151136458, -0.007940388284623623, -0.04856870695948601, -0.03295261040329933, 0.007708793506026268, 0.008456513285636902, -0.02257717028260231, -0.005899047013372183, 0.023265337571501732, 0.006507809739559889, -0.0013134726323187351, -0.014517677016556263, -0.01360453199595213, -0.0037154401652514935, 0.035255324095487595, 0.00010282182483933866, 0.008456513285636902, 0.03824620321393013, 0.02988232858479023, -0.010077675804495811, -0.0660640299320221, -0.00482709426432848, -0.0039635770954191685, 0.036049362272024155, 0.04380447417497635, 0.002699732081964612, -0.021928705275058746, -0.004572340287268162, 0.014028019271790981, -0.0056939199566841125, -0.031099854037165642, 0.025965070351958275, 0.002251430880278349, -0.013372937217354774, -0.020353863015770912, -0.0070470948703587055, -0.038325607776641846, 0.010818779468536377, -0.014239762909710407, -0.009839464910328388, -0.023410912603139877, -0.020472967997193336, -0.0034209839068353176, 0.01619839295744896, -0.02674587443470955, 0.008152131922543049, 0.004823785740882158, 0.01897752843797207, -0.002269627759233117, -0.0069412230513989925, -0.028638334944844246, -0.0037452164106070995, -0.0020429957658052444, 0.04327511787414551, -0.0019172729225829244, -0.006415172014385462, 0.023847633972764015, 0.02588566578924656, 0.0020314159337431192, -0.017601193860173225, -0.0009371312335133553, 0.051480185240507126, -0.013134725391864777, -0.00580971734598279, 0.0076757087372243404, 0.0025061850901693106, 0.03348197042942047, 0.009210850112140179, 0.0026186739560216665, -0.015099971555173397, -0.008171983063220978, -0.0026252910029143095, 0.016701282933354378, -0.0076690916903316975, 0.0150735042989254, -0.0323173813521862, -0.014279465191066265, 0.0026831894647330046, -0.028241313993930817, 0.007854367606341839, 0.0224448312073946, -0.022272789850831032, -0.018765784800052643, -0.01127535104751587, -0.021769898012280464, 0.007801431696861982, 0.005472250748425722, 0.012830344028770924, -0.0074573480524122715, 0.045233745127916336, -0.04213699325919151, 0.023649122565984726, 0.029591180384159088, 0.006868436001241207, -0.004846945405006409, -0.00859547033905983, -0.006239821668714285, -0.003705514594912529, 0.014252997003495693, -0.0006157936877571046, -0.032979078590869904, -0.03602289408445358, 0.013525128364562988, 0.027685487642884254, 0.018818721175193787, 0.0362875759601593, 0.034593626856803894, -0.0029693744145333767, 0.004972668364644051, -0.012512728571891785, -0.025991538539528847, -0.009614487178623676, -0.024046143516898155, -0.004565723240375519, 0.013353086076676846, -0.010401908308267593, -0.003391207428649068, -0.00697430782020092, 0.006646766792982817, 0.0011902311816811562, 0.006587213836610317, -0.05404757708311081, 0.008165366016328335, -0.0201288852840662, -0.011500328779220581, -0.014888227917253971, -0.04515434056520462, -0.0024433236103504896, -0.025237200781702995, -0.008714576251804829, 0.00727207213640213, 0.004936274606734514, 0.01924220845103264, 0.025144563987851143, 0.010587184689939022, 0.017839405685663223, -0.000536389765329659, -0.024019675329327583, -0.021227305755019188, -0.021134667098522186, -0.03276733681559563, -0.014041253365576267, -0.02522396668791771, 0.035387665033340454, -0.0035400898195803165, -0.01360453199595213, -0.014623548835515976, -0.017111536115407944, -0.007186051458120346, -0.0288236103951931, -0.0031893893610686064, 0.03533472865819931, 0.024946052581071854, 0.009687273763120174, 0.020618541166186333, 0.021597856655716896, 0.004132310394197702, 0.015232311561703682, -0.02409907802939415, 0.006084322463721037, 0.00649457611143589, -0.02747374400496483, -0.004466468468308449, -0.005081848707050085, -0.011381222866475582, -0.008046260103583336, 0.01626456156373024, -0.010686439462006092, 0.015391119755804539, 0.0030123847536742687, 0.0007849404937587678, -0.01811731979250908, -0.022656574845314026, -0.02191547118127346, 0.002792369807139039, -0.008509449660778046, 0.0123803885653615, -0.029061822220683098, 0.0032671389635652304, 0.023318273946642876, -0.018699614331126213, -0.008846916258335114, -0.005690611433237791, 0.012936215847730637, -0.00788083579391241, 0.008443279191851616, -0.006064471788704395, -0.00991886854171753, 0.009091745130717754, -0.018699614331126213, 0.009263786487281322, -0.02273597940802574, 0.0018312520114704967, 0.019017230719327927, -0.020737648010253906, -0.019215740263462067, -0.031814489513635635, 0.0037187484558671713, -0.029273565858602524, 0.008727810345590115, 0.004903189837932587, -0.005597973708063364, -0.010534248314797878, 0.013882446102797985, 0.016608646139502525, -0.008244769647717476, -0.019361313432455063, 0.010388675145804882, 0.015060270205140114, -0.052115414291620255, 0.01725711114704609, 0.028320718556642532, -0.014623548835515976, -0.01520584337413311, 0.002067809458822012, -0.016026349738240242, -0.0075367521494627, -0.03914611414074898, -0.001715454738587141, -0.04909806698560715, 0.008899851702153683, -0.0010562370298430324, -0.009104978293180466, -0.030729303136467934, 0.013465574942529202, 0.004959434270858765, 0.0015673995949327946, -0.01576167158782482, 0.2490105777978897, -0.0260841753333807, 0.019652461633086205, 0.014689718373119831, -0.0038775564171373844, -0.010884949006140232, 0.018554041162133217, 0.014451506547629833, 0.004979285411536694, 0.016105754300951958, -0.012698004022240639, 0.007947005331516266, -0.0075698369182646275, -0.007397795096039772, 0.0039701941423118114, -0.035122983157634735, -0.026798810809850693, -0.029061822220683098, -0.027923699468374252, 0.002039687242358923, 0.01983773708343506, -0.0021918779239058495, 0.015364651568233967, -0.015086737461388111, 0.005283666774630547, 0.026388557627797127, -0.026851747184991837, 0.009680656716227531, 0.03054402768611908, 0.010143846273422241, -0.013710403814911842, 0.01156649924814701, -0.00950199831277132, 0.0005368033307604492, 0.016846857964992523, -0.028770674020051956, 0.049865640699863434, 0.006802265997976065, 0.016913026571273804, 0.003636036068201065, -0.012684770859777927, -0.0077683464623987675, 0.014358868822455406, -0.011202564463019371, -0.019811268895864487, 0.00490980688482523, -0.012803875841200352, -0.027579614892601967, -0.008621938526630402, 0.020671477541327477, -0.013895679265260696, -0.02436375804245472, 0.04155470058321953, 0.018633443862199783, -0.014583846554160118, -0.024152014404535294, 0.022458065301179886, -0.004731148015707731, -0.0025425786152482033, 0.0150735042989254, 0.009945336729288101, 0.03387898951768875, -0.023807931691408157, 0.03962253779172897, -0.016979197040200233, 0.0022679734975099564, -0.01920250616967678, -0.0013035470619797707, -0.007007392589002848, -0.004102534148842096, -0.008906468749046326, -0.0040198215283453465, -0.010984203778207302, -0.013988317921757698, -0.01924220845103264, -0.028982417657971382, 0.0394107960164547, 0.026229750365018845, 0.026600301265716553, 0.06204090267419815, 0.026401791721582413, -0.0011604547034949064, -0.0014805515529587865, 0.007629389874637127, -0.015907244756817818, -0.0161586906760931, 0.027685487642884254, -0.023119764402508736, -0.009667422622442245, -0.012016454711556435, 0.017376216128468513, -0.006868436001241207, -0.008006557822227478, -0.0028155294712632895, -0.011857646517455578, 0.01774676889181137, -0.0005930477636866271, 0.015417587012052536, -0.021637558937072754, -0.010898183099925518, -0.043116308748722076, 0.044810257852077484, 0.02237866073846817, 0.024085843935608864, -0.013399405404925346, -0.0076558575965464115, -0.0031943521462380886, 0.0070470948703587055, 0.007119881454855204, -0.018355531617999077, -0.003480536863207817, -0.05031559243798256, 0.0027692103758454323, 0.0009015649557113647, 0.0021885696332901716, 0.0455513596534729, -0.019877439364790916, -0.012664919719099998, -0.01161943469196558, -0.002044650027528405, 0.0225374698638916, -0.02948530949652195, -0.012320836074650288, -0.015894010663032532, -0.002481371397152543, -0.01950688660144806, -0.02405937761068344, -0.010269569233059883, 0.0010099181672558188, -0.03721395507454872, 0.023291805759072304, -0.003164575668051839, 0.020142119377851486, 0.011454010382294655, 1.9954361050622538e-05, 0.010613652877509594, 0.005677377805113792, -3.327880904180347e-06, 0.003804769366979599, 0.004231565166264772, -0.003270447487011552, -0.005101699382066727, 0.00414885301142931, -0.008324174210429192, -0.014822058379650116, -0.0028436516877263784, 0.010037974454462528, 0.010428376495838165, 0.011553265154361725, -0.006610373500734568, -0.04046951234340668, -0.001589731895364821, 0.004866796545684338, 0.003665812546387315, 0.016317497938871384, -0.009250552393496037, -0.0087410444393754, -0.0448896624147892, -0.0024631747510284185, 0.025104861706495285, -0.04369860514998436, -0.0188054870814085, 0.0234373789280653, -0.007788197603076696, -0.012704621069133282, -0.015444055199623108, -0.16653640568256378, -0.011573116295039654, 0.017204174771904945, -0.031099854037165642, 0.03350843861699104, 0.010143846273422241, -0.0200362466275692, 0.0029313266277313232, -0.006822117138653994, -0.03372018411755562, 0.03417013958096504, -0.006451565772294998, -0.018064383417367935, 0.00485025392845273, 0.008052877150475979, 0.020764116197824478, -0.020287692546844482, 0.013028853572905064, 0.05552978441119194, 0.0038014608435332775, 0.055053360760211945, -0.032582059502601624, -0.017707066610455513, -0.0019602833781391382, 0.00859547033905983, 0.01152017991989851, -0.008787362836301327, 0.00019168593280483037, -0.01026295218616724, -0.025276903063058853, -0.009581401944160461, -0.012234815396368504, 0.028400123119354248, 0.010011506266891956, 0.026229750365018845, -0.00707356259226799, 0.011381222866475582, 0.0021538303699344397, -0.02392703667283058, 0.007126498501747847, 0.02383439987897873, 0.025607751682400703, 0.006626915652304888, -0.005260507110506296, 0.025872431695461273, 0.02789723128080368, 0.019189272075891495, -0.0327938050031662, 0.011169479228556156, 0.024535799399018288, 0.020962625741958618, -0.01884518750011921, -0.023477081209421158, -0.006749330088496208, 0.03382605314254761, 0.02218015119433403, -0.02006271481513977, 0.033693715929985046, -0.00193381542339921, -0.006689777132123709, 0.0004032228607684374, -0.028214845806360245, 0.007437496911734343, -0.0011538376566022635, 0.0028568855486810207, -0.009978421032428741, -0.01712477020919323, 0.01884518750011921, -0.004942891653627157, -0.008370492607355118, 0.008820448070764542, -0.02092292346060276, 0.004512787330895662, -0.000899910693988204, 0.023225635290145874, -0.02542247623205185, -0.008668256923556328, 0.010567333549261093, 0.02604447305202484, 0.0021836068481206894, -0.0025574667379260063, 0.009025574661791325, 0.0014540835982188582, -0.021412581205368042, 0.006299374625086784, 0.00827785488218069, 0.009323338977992535, -0.014795590192079544, -0.02760608308017254, -0.002838688902556896, 0.03890790417790413, -0.017402684316039085, 0.00029342217021621764, -0.0008792325970716774, 0.013326618820428848, -0.011731923557817936, 0.01148709561675787, 0.008615321479737759, -0.018686380237340927, -0.004072757437825203, -0.005419314838945866, 0.0008734427392482758, -0.026666471734642982, 0.02423141896724701, 0.030835174024105072, 0.023821165785193443, -0.00884029921144247, 0.02657383307814598, 0.02151845209300518, -0.01662188023328781, -0.012717855162918568, 0.004393681418150663, 0.015285247936844826, 0.030517559498548508, 0.0010760880541056395, 0.01944071799516678, -0.002721237251535058, -0.014014785178005695, -0.012598749250173569, -0.007920537143945694, -0.029379436746239662, 0.010123995132744312, 0.003844471415504813, 0.02670617215335369, 0.010679822415113449, -0.023000657558441162, -0.06039988622069359, -0.021637558937072754, 0.0037220569793134928, 0.024879883974790573, -0.0020099107641726732, 0.01646307110786438, 0.00260378560051322, 0.03202623128890991, -0.021240537986159325, 0.016807155683636665, 0.004406915511935949, -0.002727854298427701, 0.004774158354848623, 0.00456903176382184, -0.0014879957307130098, -0.004185246303677559, 0.0161586906760931, -0.005071923136711121, -0.010719524696469307, 0.014848526567220688, 0.016979197040200233, -0.014252997003495693, -0.0013316692784428596, -0.0056343674659729, -0.014279465191066265, 0.00829770602285862, -0.01466325018554926, -0.007205902598798275, 0.005604590754956007, 0.005386230070143938, 0.019625993445515633, 0.005114933475852013, -0.012115709483623505, -0.016304263845086098, 0.010176931507885456, 0.009323338977992535, -0.02710319310426712, -0.036605190485715866, 0.033534906804561615, -0.006087630987167358, -0.012175261974334717, 0.003022310324013233, 0.019083399325609207, 0.01368393562734127, -0.008509449660778046, -0.0075566028244793415, -0.013214129954576492, 0.009951953776180744, -0.026587067171931267, -0.012909747660160065, -0.03904024139046669, 0.003642653115093708, 0.006468107923865318, -0.021002328023314476, 0.03244972229003906, 0.03782271593809128, 0.015404353849589825, 0.03787565231323242, -0.020539138466119766, 0.012294367887079716, -0.0015086737694218755, 0.01752179116010666, -0.013061938807368279, 0.03284674137830734, 0.015192609280347824, 0.0055648889392614365, -0.02816191129386425, -0.0004183178534731269, 0.007305157370865345, 0.0016410135431215167, -0.008516066707670689, 0.00580971734598279, -0.014755887910723686, 0.0211214330047369, -0.027288468554615974, -0.013372937217354774, -0.006755947135388851, -0.010031357407569885, 0.009859315119683743, 0.018262892961502075, -0.0077683464623987675, -0.007305157370865345, 0.0031678841914981604, 0.0029280181042850018, 0.012122326530516148, 0.02129347436130047, 0.004009895958006382, -0.0055946651846170425, -0.001466490444727242, -0.04118414595723152, -0.016833623871207237, -0.00044706041808240116, 0.006521043833345175, -0.008820448070764542, -0.0100644426420331, -0.03223797678947449, 0.012201730161905289, -0.026785576716065407, 0.00017803839000407606, 0.02961764857172966, -0.0035268557257950306, -0.01725711114704609, -0.08617968112230301, 0.017468854784965515, -0.004608733579516411, -0.010640120133757591, 0.007404412142932415, -0.007000775542110205, 0.028214845806360245, -0.03559940680861473, 0.004840328358113766, 0.0010487929685041308, -0.05785896256566048, 0.004251416306942701, 0.005475559271872044, -0.022815382108092308, -0.03176155313849449, 0.010441610589623451, 0.012995769269764423, -0.0034904624335467815, 0.001693949569016695, 0.018659912049770355, 0.010348972864449024, 0.0009693891042843461, -0.000224977673497051, 0.02218015119433403, -0.04878045246005058, 0.02370205894112587, -0.02425788715481758, 0.024535799399018288, 0.0002425540442345664, -0.020909689366817474, -0.006828734185546637, 0.0031331449281424284, 0.008919702842831612, 0.008502832613885403, -0.014782356098294258, 0.002693115035071969, 0.024760777130723, 0.01732327975332737, 0.030649898573756218, 0.04504847154021263, -0.025700390338897705, -0.02489311806857586, -0.026534130796790123, -0.011824561282992363, -0.004846945405006409, -0.01993037387728691, -0.007622772827744484, 0.010977586731314659, 0.010104143992066383, 0.03189389407634735, 0.016277795657515526, 0.0188054870814085, 0.00030169339152053, -0.0014846872072666883, 0.0055516548454761505, -0.04502200335264206, 0.00809919647872448, 0.02284185029566288, -0.0055284951813519, 0.0037584505043923855, 0.03724042326211929, 0.0020926231518387794, 0.008324174210429192, -0.007688942831009626, 0.016688048839569092, -0.004886647220700979, -0.02472107484936714, -0.007106647361069918, 0.029591180384159088, -0.020883221179246902, -0.021624324843287468, -0.03157627955079079, 0.01148709561675787, 0.016568943858146667, 0.009985038079321384, -0.012770791538059711, -0.019427483901381493, 0.009693890810012817, -0.01999654434621334, 0.020565606653690338, -0.0011190985096618533, 0.018567275255918503, -0.027182595804333687, 0.016913026571273804, 0.024112312123179436, -0.0013812967808917165, -0.0015946946805343032, -0.01983773708343506, -0.013578063808381557, -0.0004735283728223294, -0.016635114327073097, 0.0026798811741173267, 0.021372878924012184, 0.016026349738240242, 0.016118988394737244, 0.016343966126441956, -0.0075566028244793415, -0.010646737180650234, 0.0362875759601593, 0.008502832613885403, 0.01907016523182392, -0.013492043130099773, -0.01380304154008627, -0.03398486226797104, -0.013617766089737415, 0.010580567643046379, -0.02723553217947483, -0.040575385093688965, 0.00727207213640213, 0.007907303050160408, -0.015721969306468964, 0.004178629256784916, 0.0053531453013420105, 0.01031588762998581, -0.010487929917871952, 0.0211214330047369, -0.012287750840187073, -0.022603638470172882, -0.009495381265878677, 0.028347186744213104, 0.015232311561703682, 0.004899881314486265, 0.01811731979250908, -0.010004889219999313, 0.04316924512386322, 0.0038841732311993837, 0.015033802017569542, -0.04240167513489723, 0.031152790412306786, -0.02562098577618599, -0.013081789948046207, -0.0004971013986505568, -0.015430821105837822, -0.03514945134520531, -0.02224632166326046, 0.005257198587059975, -0.004790700972080231, 0.003369702259078622, 0.0003151341516058892, 0.0849621519446373, 0.015576395206153393, -0.0017138004768639803, 0.008205068297684193, 0.026666471734642982, -0.0026252910029143095, -0.004721222445368767, 0.01827612705528736, -0.014702952466905117, -0.025726858526468277, 0.0037253655027598143, -0.006415172014385462, -0.0040132044814527035, -0.02218015119433403, 0.0022812073584645987, -0.008119046688079834, -0.02491958625614643, 0.027791358530521393, -0.008555768057703972, 0.008681491017341614, 0.03641991317272186, -2.9207809348008595e-05, 0.007490432821214199, 0.01946718618273735, -0.039516665041446686, 0.0020496128126978874, 0.043248649686574936, 0.002952832030132413, 0.0034077500458806753, -0.024509331211447716, 0.025210732594132423, 0.009243935346603394, -0.02661353535950184, -0.006980924867093563, -0.0041124592535197735, 0.011454010382294655, -0.002228271448984742, 0.028479525819420815, 0.016939494758844376, -0.006808883044868708, 0.01406772155314684, 0.02010241709649563, -0.013935381546616554, -0.02853246219456196, 0.011506945826113224, -0.0009139718022197485, -0.020737648010253906, 0.0033300004433840513, 0.002476408611983061], "83a1dda7-4b27-46a2-90b7-42ee0797ec3f": [0.004680623300373554, -0.02111028879880905, 0.014163972809910774, -0.02644212916493416, -0.022860435768961906, 0.010765433311462402, -0.015032262541353703, -0.010806134901940823, 0.018098410218954086, -0.025818046182394028, 0.013248198665678501, 0.002944044303148985, -0.03090568073093891, -0.0003675815532915294, -0.020296268165111542, -0.03139409422874451, 0.01388584915548563, -0.015968387946486473, 0.01904810220003128, -0.02813800796866417, 0.00947656575590372, -0.0059898411855101585, 0.03459591045975685, -0.027486789971590042, -0.022887568920850754, -0.004938396625220776, 0.013505971990525723, -0.024474911391735077, -0.006128903012722731, 0.012189971283078194, 0.018993834033608437, 0.00437875697389245, -0.02149016596376896, -0.02353878691792488, -0.008818565867841244, 0.0112334955483675, 0.016158325597643852, 0.012474878691136837, -0.007394027896225452, 0.006427377462387085, 0.018844597041606903, -0.004656881093978882, 0.009239143691956997, 0.007000584155321121, -0.02237202227115631, 0.013370302505791187, -0.03180110454559326, -0.018017007037997246, -0.015385004691779613, 0.009164524264633656, -0.002603172790259123, 0.012963291257619858, -0.044635508209466934, -0.00014679944433737546, -0.00010657533130142838, 0.006176387425512075, -0.03882882371544838, -0.0035409932024776936, 0.0008398835780099034, 0.0008877921500243247, 0.028897760435938835, 0.0064307693392038345, -0.027568193152546883, -0.004263437353074551, -0.01015491783618927, 0.024407075718045235, -0.02299610525369644, 0.01109782513231039, -0.024556312710046768, 0.009368030354380608, 0.008540441282093525, 0.03676663339138031, 0.01960434950888157, -0.01562921144068241, 0.03606114909052849, 0.01236634235829115, -0.037255048751831055, 0.009992113336920738, 0.011457351967692375, 0.021992145106196404, 0.012149269692599773, -0.01781350187957287, -0.0022555177565664053, -0.014448880217969418, 0.003876777132973075, -0.01415040623396635, 0.014855891466140747, 0.019265174865722656, 0.009836092591285706, -0.014679519459605217, 0.01735222339630127, 0.007604316808283329, 0.023172477260231972, 0.030552938580513, 0.0011947460006922483, 0.01581914909183979, -0.03136695921421051, 0.026455696672201157, -0.005877912975847721, -0.01915663853287697, 0.0008059660322032869, 0.03066147491335869, -0.013946900144219398, -0.008696462027728558, -0.028707822784781456, -0.01896669901907444, 0.03315780684351921, -0.006217088550329208, 0.008927101269364357, -0.006922573782503605, -0.018722493201494217, 0.03152976185083389, -0.007678935304284096, -0.03646815940737724, -0.028816359117627144, 0.011403083801269531, 0.05049646273255348, -0.025275366380810738, -0.018044142052531242, -0.008235183544456959, 0.014530282467603683, 0.0089881531894207, 0.013098961673676968, 0.007570399437099695, 0.018044142052531242, 0.045883674174547195, -0.006654625292867422, 0.0003908998623955995, 0.005762593355029821, -0.025560272857546806, 0.03728218004107475, -0.011803310364484787, -0.0009980242466554046, 0.012522363103926182, -0.017094450071454048, -0.012678383849561214, -0.02309107407927513, -0.010310938581824303, -0.008146997541189194, -0.015385004691779613, 0.004209169186651707, 0.02165297046303749, 0.0056676240637898445, -0.016877377405762672, 0.004802726674824953, 0.02930477075278759, -0.005470902193337679, 0.0062781404703855515, 0.00597966555505991, 0.0026201314758509398, 0.01904810220003128, 0.007624667603522539, 0.01034485548734665, -0.017582863569259644, 0.0087575139477849, -0.01564277894794941, -0.004663664381951094, 0.02112385630607605, 0.0009344287682324648, -0.017664264887571335, -0.0033731013536453247, 0.01523576769977808, -0.010894319973886013, -0.019020967185497284, 0.012617331929504871, 0.026564233005046844, 0.012305290438234806, 0.012386692687869072, -0.013363518752157688, 0.010582278482615948, 0.011328465305268764, 0.0215580016374588, -0.04143369197845459, 0.02345738373696804, -0.001889208098873496, 0.025858746841549873, -0.016470367088913918, 0.027432521805167198, -0.02111028879880905, 0.0014550633495673537, 0.0009607148822396994, -0.005101201124489307, -0.010371989570558071, 0.03741785138845444, -0.013763745315372944, -0.02598085068166256, -0.0020893216133117676, 0.008933885022997856, 0.001567839179188013, 0.014842323958873749, 0.027893800288438797, 0.03117702156305313, 0.014774489216506481, -0.006583398208022118, -0.5904368758201599, -0.021720806136727333, 0.022846868261694908, -0.003931045066565275, 0.022059980779886246, 0.03166543319821358, -0.00040828261990100145, 0.041298020631074905, -0.03920869901776314, 0.011782960034906864, -0.014394612051546574, 0.012345992028713226, -0.01024310290813446, -0.006396851968020201, 0.0029525235295295715, -0.03872028738260269, 0.023755859583616257, 0.0017569295596331358, -0.012115352787077427, 0.02499045804142952, -0.018193379044532776, 0.004965530708432198, -0.006902223452925682, 0.0015551201067864895, 0.01832904852926731, 0.013363518752157688, 0.009198442101478577, -0.01762356422841549, -0.002821940928697586, 0.047674521803855896, -0.01708088256418705, 0.009408731013536453, 0.010351639240980148, -0.007726420182734728, 0.06403635442256927, -0.013594157993793488, -0.03695657476782799, 0.019848555326461792, -0.005189386662095785, 0.0646875724196434, 0.0005291139241307974, -0.0067055015824735165, 0.035002920776605606, 0.008954235352575779, -0.018993834033608437, 0.008574359118938446, 0.016416098922491074, -0.021883608773350716, 0.0013304163003340364, 0.025818046182394028, 0.012522363103926182, -0.006407027132809162, 0.019984226673841476, -0.02569594420492649, 0.005623531527817249, -0.006892048288136721, 0.04577513784170151, -0.03676663339138031, 0.003520642640069127, -0.013865498825907707, -0.013431353494524956, 0.020526906475424767, -0.021530866622924805, -0.0206897109746933, -0.025953717529773712, 0.012284940108656883, -0.018668225035071373, -0.023403115570545197, 0.014272509142756462, -0.008031678386032581, 0.00761788384988904, -0.0018044142052531242, -0.0002425105485599488, -0.005172427743673325, 0.01015491783618927, 0.0467248298227787, 0.022344889119267464, -0.014394612051546574, 0.005938964895904064, 0.009992113336920738, -0.0030203587375581264, 0.002328440546989441, -0.0064172022975981236, -0.010812917724251747, 0.019821422174572945, 0.0009768257150426507, -0.02992885559797287, -0.017840636894106865, -0.00624422263354063, -0.0033883643336594105, 0.008940668776631355, 0.01652463525533676, -0.00205540400929749, -0.02777169831097126, 0.0009810654446482658, 0.033293478190898895, -0.0060305423103272915, -0.005657448899000883, 0.014191106893122196, 0.0005774464807473123, -0.025234663859009743, -0.0017060532700270414, -0.002601476851850748, 0.011165660806000233, 0.03139409422874451, -0.011111392639577389, -0.03836754336953163, -0.006790295243263245, 0.03711937740445137, 0.002592997392639518, -0.009517267346382141, -0.01760999672114849, -0.0016848547384142876, -0.0030356214847415686, 0.045530933886766434, -0.03557273745536804, 0.00862862728536129, 0.00361900357529521, 0.0161854587495327, -0.016958780586719513, 0.003434153040871024, -0.008459039032459259, 0.012020383030176163, 0.003476549871265888, 0.0110096400603652, 0.011986465193331242, 0.02930477075278759, -0.01397403422743082, 0.002574342768639326, 0.0028117657639086246, 0.0025539922062307596, 0.006837780121713877, 0.021327361464500427, -0.02446134388446808, 0.027269717305898666, 0.0011235191486775875, 0.0037444985937327147, -0.005107984412461519, 0.02093391865491867, 0.002681183163076639, 0.0032900033984333277, 0.012122135609388351, -0.004433025140315294, 0.0074143786914646626, 0.02417643740773201, -0.02030983567237854, -0.007149821612983942, -0.019346576184034348, -0.020187731832265854, -0.005735459271818399, 0.029331905767321587, 0.013031125999987125, 0.0025506005622446537, 0.01915663853287697, -0.020730411633849144, -0.004436417017132044, -0.0025777346454560757, -0.023525219410657883, 0.006172996014356613, -0.010134566575288773, 0.017460759729146957, -0.006847955286502838, -0.024610580876469612, 0.0022656929213553667, -0.025682376697659492, 0.0003853882662951946, 0.0026489614974707365, -0.0028253328055143356, -0.018898865208029747, -0.032126713544130325, -0.002837203908711672, -0.00939516443759203, 0.016212593764066696, 0.0046331388875842094, 0.000890335941221565, -0.005803294479846954, -0.02489548921585083, 0.013411003164947033, -0.004687406588345766, -0.005847387481480837, 0.011314897798001766, 0.014950860291719437, -0.0021011927165091038, -0.010426257736980915, 0.024610580876469612, 0.007604316808283329, 0.027568193152546883, 0.03478584811091423, -0.01607692241668701, -0.014394612051546574, -0.01860038936138153, 0.02642856165766716, 0.02210068143904209, 0.010616196319460869, 0.029359038919210434, 0.010141350328922272, 0.029766051098704338, 0.025573840364813805, 0.014218240976333618, 0.01037877332419157, 0.02526179887354374, 0.0179763063788414, -0.0066512334160506725, -0.01424537505954504, 0.03378188982605934, -0.02264336310327053, 0.00537254149094224, -0.006563047878444195, -0.007204089779406786, 0.01754216104745865, -0.0023352240677922964, -0.03370048850774765, -0.024664849042892456, -0.010589062236249447, 0.02984745241701603, 0.002408146858215332, -0.024407075718045235, 0.010494093410670757, -0.009449432604014874, 0.012474878691136837, -0.001650937250815332, -0.012909023091197014, 0.010806134901940823, -0.015330737456679344, 0.0005091873463243246, 0.002492940751835704, -0.004687406588345766, 0.011091042309999466, -0.0006596965249627829, -0.03885595500469208, -0.019020967185497284, -0.007156604900956154, -0.003903911216184497, -0.0089881531894207, 0.02174793928861618, -0.02077111415565014, 0.024203570559620857, -0.016673872247338295, 0.002397971460595727, 0.003407018957659602, 0.00885248277336359, 0.02428497187793255, -0.0010963850654661655, -0.018464719876646996, 0.03983278200030327, 0.008404770866036415, 0.04713184013962746, 0.021056020632386208, -0.028816359117627144, 0.011531970463693142, -0.021680103614926338, 0.002645569620653987, -0.01024310290813446, 0.023335281759500504, 0.02283330075442791, -0.009015287272632122, -0.00268627074547112, -0.0014550633495673537, 0.026659201830625534, 0.031421225517988205, 0.022534826770424843, 0.02884349226951599, -0.009035637602210045, 0.005491252988576889, -0.012949724681675434, -0.023891529068350792, -0.020961051806807518, -0.022412722930312157, -0.00624422263354063, -0.01923803985118866, -0.01546640694141388, 0.014163972809910774, 0.006091593764722347, 0.006752985995262861, 0.0018417234532535076, -0.004470334388315678, -0.011253845877945423, 0.025397468358278275, 0.018898865208029747, -0.021422330290079117, -0.0027490181382745504, -0.02526179887354374, 0.03741785138845444, -0.004466942511498928, 0.016497500240802765, -0.0056676240637898445, -0.018898865208029747, -0.0018925998592749238, -0.007421161979436874, -0.006617316044867039, 0.0011057124938815832, 0.005250438116490841, 0.00763823464512825, 0.004880737047642469, -0.01743362657725811, -0.029793184250593185, 0.02481408603489399, -0.013709478080272675, -0.009300194680690765, -0.006054284516721964, 0.027758130803704262, 0.0020587958861142397, -0.016022656112909317, -0.011437000706791878, 0.0368480384349823, -0.007434729021042585, -0.029331905767321587, -0.003958179149776697, 0.006128903012722731, -0.024664849042892456, -0.00356134376488626, -0.00786887388676405, -0.010290587320923805, -0.037336450070142746, 0.0012532537803053856, 0.010528010316193104, -0.0029389564879238605, -0.02569594420492649, 0.018898865208029747, 0.007990976795554161, -0.013987601734697819, -0.030797144398093224, -0.023240311071276665, 0.0025997809134423733, 0.0026269149966537952, 0.010806134901940823, 0.003517250996083021, 0.00485699437558651, -0.020065627992153168, -0.015981953591108322, -0.017501460388302803, 0.005291139241307974, -0.004755241796374321, -0.01895313151180744, -0.008879616856575012, 0.002794806845486164, 0.008282667957246304, -0.011382733471691608, 0.025641676038503647, 0.0010463567450642586, -0.005158860702067614, -0.011545537039637566, 0.018464719876646996, -0.023837260901927948, 0.011179227381944656, -0.002864337991923094, 0.017582863569259644, -0.016863809898495674, 0.0242578387260437, 0.008431904949247837, 0.029087699949741364, 0.028897760435938835, -0.0037309315521270037, -0.020160596817731857, -0.00010392552212579176, -0.0047857677564024925, -0.017759233713150024, 0.01087396964430809, -0.002119847573339939, 0.02984745241701603, 0.011084258556365967, 0.055407725274562836, -0.01486945804208517, 0.012176403775811195, -0.003357838373631239, 0.03020019456744194, -8.262105257017538e-05, -0.0025115953758358955, 0.007102337200194597, -0.03190964087843895, -0.008933885022997856, 0.014055436477065086, -0.01679597608745098, -0.0332392081618309, 0.025926582515239716, 0.00952405110001564, -0.04566660150885582, 0.0005541281425394118, -0.0287620909512043, 0.02067614533007145, -0.01807127520442009, -0.01248844526708126, -0.0015110273379832506, -0.007407594937831163, 0.007604316808283329, -0.014855891466140747, -0.016036221757531166, -0.002342007588595152, -0.003646137658506632, -0.01922447234392166, -0.010982505977153778, -0.0002456903166603297, -0.012773352675139904, -0.006566439755260944, 0.02067614533007145, -0.060183316469192505, -0.03435170277953148, 0.0030186627991497517, 0.011308114044368267, -0.008547225035727024, 0.01298364158719778, -0.008167348802089691, -0.020554041489958763, 0.03467731177806854, -0.01861395686864853, -0.0027303635142743587, -0.00997854582965374, -0.027391821146011353, 0.023077508434653282, -0.00862184353172779, 0.02535676769912243, -0.0031729876063764095, -0.01434034388512373, 0.009422298520803452, 0.018356183543801308, -0.0033391837496310472, 0.033917561173439026, -0.007780688349157572, -0.012542713433504105, 0.0052945311181247234, 0.02158513478934765, 0.0027235799934715033, 0.00023848284035921097, 0.004351622890681028, -0.015167932957410812, -0.04232911393046379, -0.018044142052531242, -0.03459591045975685, -0.016158325597643852, 0.005531954113394022, 0.023755859583616257, 0.0005914374487474561, -0.023945797234773636, -0.01065011415630579, 0.02032340131700039, 0.01316001359373331, -0.0042023854330182076, 0.00786887388676405, 0.01537143811583519, 0.010731515474617481, 0.009008503518998623, 0.01716228574514389, 0.010690814815461636, 0.008255533874034882, 0.02211424894630909, -0.01671457290649414, 0.03782486170530319, 0.02669990248978138, 0.00070463732117787, 0.01942797750234604, 0.012922590598464012, -0.046616293489933014, -0.01671457290649414, -0.006793687120079994, -0.003764849156141281, 0.011240279302001, -0.017094450071454048, -0.01626686193048954, -0.02580447867512703, -0.012040733359754086, -0.009720772504806519, -0.008872834034264088, -0.025492437183856964, -0.03218097984790802, -0.03901876136660576, 0.0025302499998360872, -0.001652633072808385, -3.715032653417438e-05, -0.02219565026462078, -0.03220811486244202, -0.010840051807463169, -0.007645017933100462, 0.01708088256418705, -0.00028448353987187147, 0.036359623074531555, 0.007563615683466196, -0.03090568073093891, -0.004616179969161749, -0.005776160396635532, -0.030227329581975937, -0.010867185890674591, -0.022724764421582222, 0.01486945804208517, 0.026930542662739754, 0.0269576758146286, 0.017392924055457115, 0.0002808797871693969, -0.012027166783809662, 0.022941837087273598, 0.006769944913685322, -0.01760999672114849, 0.013499189168214798, 0.008038461208343506, 0.014883025549352169, 0.004226128105074167, 0.023579487577080727, 0.005175819620490074, -0.008377637714147568, -0.00700736790895462, 0.018261214718222618, -0.009089905768632889, 0.010622980073094368, 0.0020621875301003456, -0.049112625420093536, -0.011192794889211655, -0.011789743788540363, -0.00948334950953722, -0.008431904949247837, -0.009761474095284939, -0.019821422174572945, 0.0010853619314730167, -0.004680623300373554, 0.03475871682167053, 0.024298539385199547, 0.008472606539726257, -0.020241999998688698, 0.018464719876646996, 0.009795391000807285, 0.021259525790810585, -0.006800470873713493, 0.006271356716752052, -0.019102370366454124, 0.014326777309179306, 0.004602612927556038, 0.025940150022506714, 0.012780136428773403, 0.009775040671229362, 0.028653554618358612, 0.003941220231354237, 0.02778526581823826, 0.013268548995256424, -0.03039013408124447, -0.0022385588381439447, -0.01065011415630579, -0.03711937740445137, -0.02733755297958851, 0.014204674400389194, -0.016334697604179382, -0.02507185935974121, 0.0028694255743175745, 0.0005956771201454103, 0.005698150023818016, 0.0009802174754440784, -0.006881872657686472, -0.0009505396010354161, -0.0027880233246833086, 0.04593794420361519, 0.023782992735505104, 0.01015491783618927, 0.030797144398093224, 0.019007399678230286, -0.0066512334160506725, -0.0386660173535347, -0.0011548929614946246, -0.002482765354216099, 0.03220811486244202, 0.05174462869763374, -0.006169604137539864, -0.010555144399404526, -0.001664504292421043, 0.0031034566927701235, -0.022602662444114685, -0.02617078833281994, 0.023172477260231972, 0.025112561881542206, -0.018546121194958687, -0.012081434950232506, 0.004996056668460369, -0.03557273745536804, 0.014028302393853664, -0.019441545009613037, -0.022684063762426376, -0.015710612758994102, -0.020879650488495827, -0.008167348802089691, 0.018301915377378464, -0.013146446086466312, 0.015222201123833656, 0.0073261926881968975, 0.024569880217313766, 0.01259019784629345, -0.020798247307538986, -0.024597015231847763, 0.02211424894630909, 0.0052538299933075905, 0.03728218004107475, -0.0002486581215634942, -0.017732100561261177, 0.027893800288438797, 0.023145342245697975, 0.008472606539726257, -0.02030983567237854, -0.013804446905851364, 0.04664342850446701, 0.0013227848103269935, -0.007536481600254774, -0.008235183544456959, -0.0037478904705494642, 0.04468977823853493, -0.0015559680759906769, 0.008642193861305714, 0.010575494728982449, -0.023172477260231972, -0.013797663152217865, -0.007421161979436874, -0.009015287272632122, 0.011247063055634499, -0.014679519459605217, -0.010392339900135994, 0.006037325598299503, -0.03497578948736191, -0.008119863457977772, 0.022697631269693375, -0.038421813398599625, -0.013946900144219398, -0.020024927332997322, -0.030254462733864784, -0.002177507383748889, 0.00934767909348011, 0.014991561882197857, -0.002358966274186969, 0.046969037503004074, -0.033917561173439026, 0.014286075718700886, 0.012929373420774937, 0.01474735513329506, -0.02147659845650196, 0.0028592501766979694, 0.0032713485416024923, -0.006403635255992413, 0.011518402956426144, -0.01001924742013216, -0.005772768519818783, -0.03817760571837425, 0.023769425228238106, 0.01870892569422722, -0.00045873498311266303, 0.01583271659910679, 0.03028159774839878, 0.009273060597479343, 0.013960467651486397, -0.009266277775168419, -0.02705264650285244, -0.0006058524013496935, 0.0030017041135579348, 0.0032374311704188585, -0.0014347127871587873, -0.017840636894106865, -0.0011599805438891053, 0.010365205816924572, 0.005308098159730434, 0.006084810011088848, -0.025383900851011276, -0.04083674028515816, -0.005325057078152895, -0.01957721635699272, -0.023782992735505104, -0.0025828222278505564, -0.026632068678736687, -0.020296268165111542, -0.021788639947772026, -0.01451671589165926, -0.006959883496165276, 0.013078611344099045, 0.000496468273922801, 0.024746252223849297, -0.002915214281529188, -0.00356134376488626, 0.00213341461494565, -0.0048536029644310474, -0.03747212141752243, -0.018369751051068306, -0.04591080918908119, -0.022480558604002, -0.02374229207634926, 0.03915443271398544, -0.00537254149094224, -0.030688608065247536, -0.0009615627932362258, -0.02220921777188778, -0.019373709335923195, -0.0008029982564039528, 0.009931061416864395, 0.021327361464500427, 0.03269652649760246, -0.0003650377329904586, 0.0001704357418930158, 0.009327328763902187, -0.013919766992330551, 0.017555728554725647, -0.010419473983347416, 0.003544385079294443, -0.014204674400389194, -0.021802207455039024, -0.013906199485063553, -0.011314897798001766, -0.022059980779886246, -0.012386692687869072, 0.016253294423222542, -0.0023521827533841133, 0.0028711215127259493, 0.021164556965231895, 0.004863778129220009, -0.0023063940461724997, -0.004263437353074551, -0.025058293715119362, 0.0025387294590473175, 0.0034290652256458998, -0.003407018957659602, -0.03679376840591431, 0.017596429213881493, 0.026197923347353935, -0.0110164238139987, 0.009734340012073517, -0.006820821203291416, -0.006780120078474283, -0.003079714486375451, 0.008526874706149101, -0.03315780684351921, -0.011579454876482487, 0.010792567394673824, 0.00822839979082346, 0.02938617393374443, -0.022589094936847687, 0.01397403422743082, 0.002893167780712247, 0.0023776208981871605, 0.004029406234622002, -0.022684063762426376, 0.01652463525533676, -0.01609048992395401, -0.001207465073093772, 0.006549480836838484, -0.021693671122193336, 0.0016967259580269456, 0.018925998359918594, 0.015425706282258034, 0.0013592462055385113, -0.01789490506052971, 0.017840636894106865, -0.002138502197340131, -0.03872028738260269, 0.0032900033984333277, 0.03937150165438652, -0.003476549871265888, -0.01652463525533676, 0.0112334955483675, -0.022846868261694908, -4.1019047785084695e-05, -0.030227329581975937, 0.011416650377213955, -0.03948003798723221, 0.015195067040622234, 0.009232359938323498, -0.0008954235818237066, -0.03543706610798836, -0.005172427743673325, 0.019997792318463326, -0.013661992736160755, -0.00244715204462409, 0.2518039643764496, -0.013933333568274975, 0.014774489216506481, 0.023036805912852287, 0.003903911216184497, 0.013166796416044235, 0.02237202227115631, -0.006993800867348909, -0.006006799638271332, 0.010290587320923805, -0.00826910138130188, 0.002781239803880453, 0.0009412122890353203, -0.009822525084018707, 0.010731515474617481, -0.00750256422907114, -0.01583271659910679, -0.03247945383191109, -0.01762356422841549, 0.0033239207696169615, 0.02714761532843113, -6.815309461671859e-05, 0.017732100561261177, -0.009374813176691532, -0.009320545010268688, 0.018111977726221085, -0.01923803985118866, 0.013933333568274975, 0.033754754811525345, 0.010853619314730167, -0.012081434950232506, 0.0107790008187294, -0.003368013771250844, -0.010656896978616714, -0.000496468273922801, -0.01150483638048172, 0.04639922082424164, 0.011721909046173096, 0.0050469329580664635, 0.012074651196599007, -0.017311522737145424, -0.009585102088749409, -0.006563047878444195, -0.020201299339532852, -0.02919623628258705, 0.011552320793271065, -0.008187699131667614, -0.030498670414090157, 0.010290587320923805, 0.019265174865722656, -0.019550081342458725, -0.016755275428295135, 0.04558520019054413, 0.028816359117627144, -0.015385004691779613, -0.02374229207634926, 0.010792567394673824, -0.012963291257619858, 0.001039573224261403, 0.03182823956012726, -0.022141382098197937, 0.03565413877367973, -0.015195067040622234, 0.02436637505888939, -0.019265174865722656, 0.018939565867185593, -0.017759233713150024, 0.006902223452925682, -0.01176939345896244, 0.001652633072808385, 0.0024844612926244736, -0.0027608894743025303, -0.015344304032623768, -0.0007436425075866282, -0.028246544301509857, -0.032126713544130325, 0.04558520019054413, 0.002345399232581258, 0.04528672620654106, 0.035735540091991425, 0.004470334388315678, 0.0004284211900085211, -0.0005431049503386021, 0.004897695500403643, -0.018301915377378464, -0.04235624894499779, 0.030959948897361755, -0.0014279292663559318, -0.016687439754605293, 0.008194482885301113, 0.00988357700407505, -0.030227329581975937, 0.006708893459290266, -0.012685167603194714, 0.0018044142052531242, 0.008336936123669147, -0.00889318436384201, 0.012027166783809662, -0.008235183544456959, -0.003366317832842469, -0.031068485230207443, 0.016511067748069763, 0.035816941410303116, 0.02275189943611622, -0.018803894519805908, 0.0008161412551999092, -0.003493508556857705, 0.00912382360547781, 0.010941804386675358, -0.018437584862113, -0.006613924168050289, -0.04555806517601013, 0.007658584974706173, -0.011158877052366734, 0.01510009728372097, 0.02254839427769184, -0.025600973516702652, -0.01933300867676735, -0.0009768257150426507, 0.021354496479034424, 0.03269652649760246, -0.025913015007972717, -0.028382213786244392, -0.00902885477989912, -0.005152077414095402, -0.022317754104733467, -0.021951444447040558, -0.00437875697389245, -0.006122119724750519, -0.019970659166574478, 0.015493541024625301, -0.021191691979765892, 0.011131742969155312, -0.0032493022736161947, -0.006152645219117403, 0.005728675983846188, 0.00033578384318389, -0.004446592181921005, 0.00826910138130188, 0.008438688702881336, -0.0175150278955698, 0.0026506572030484676, 0.004399107303470373, -0.015792015939950943, -0.012318857945501804, -0.014069003984332085, -0.0066376663744449615, 0.009775040671229362, -0.00611533597111702, -0.0017102929996326566, -0.037879131734371185, -0.004616179969161749, 0.01850542053580284, 0.0027625851798802614, 0.005464118905365467, -0.012291723862290382, -0.032506588846445084, -0.05548912659287453, -0.005609964486211538, 0.03315780684351921, -0.017949173226952553, -0.026713469997048378, 0.026944110170006752, -0.003819117322564125, -0.0009369726176373661, -0.0247326847165823, -0.17224693298339844, 0.017013048753142357, 0.009239143691956997, -0.030417267233133316, 0.012169620022177696, -0.005871129687875509, -0.004277004394680262, -0.0008733771392144263, -0.0035138591192662716, -0.01823407970368862, 0.017311522737145424, 0.003205209504812956, -0.02030983567237854, 0.002028270158916712, 0.0024437601678073406, 0.03489438444375992, -0.021815774962306023, -0.005107984412461519, 0.05850100889801979, 0.008940668776631355, 0.04753885045647621, -0.02356592006981373, -0.013831580989062786, 0.018193379044532776, 0.009727556258440018, 0.013010775670409203, -0.01628042943775654, -0.02328101359307766, -0.003659704700112343, -0.02310464158654213, -0.010507659986615181, 0.008167348802089691, 0.01781350187957287, -0.005840603727847338, 0.023837260901927948, -0.016253294423222542, 0.009605453349649906, -0.0026252190582454205, -0.009469782933592796, 0.011952548287808895, 0.010697598569095135, 0.04620928317308426, 0.011091042309999466, -0.00839798804372549, 0.009964979253709316, 0.021883608773350716, 0.010039597749710083, -0.012868322432041168, -0.00723800715059042, 0.01824764721095562, 0.003479941748082638, -0.02892489545047283, -0.015520675107836723, -0.016307562589645386, 0.02930477075278759, 0.02318604476749897, -0.012305290438234806, 0.011796527542173862, -0.008180915378034115, -0.001528833992779255, 0.005545521154999733, -0.038421813398599625, 0.009306978434324265, -0.0031577248591929674, -0.010636546649038792, -0.02463771589100361, -0.01609048992395401, 0.006217088550329208, -0.021164556965231895, 0.004012447316199541, 0.012671600095927715, -0.017365790903568268, 0.008459039032459259, -0.0002813037717714906, -0.0028202449902892113, 0.0036698798649013042, -0.019889257848262787, 0.022589094936847687, 0.011572671122848988, -0.025193963199853897, 0.003245910396799445, 0.030715741217136383, 0.017108017578721046, -0.01663317158818245, 0.002823636867105961, 0.01933300867676735, 0.006671584211289883, -0.022616228088736534, -0.022792600095272064, -0.012705517932772636, 0.040863875299692154, -0.0017314914148300886, -0.025316067039966583, -0.006020366679877043, -0.010962155647575855, 0.003632570616900921, 0.0029966162983328104, 0.010480525903403759, -0.026645634323358536, 0.0013126095291227102, 0.014435313642024994, -0.010439825244247913, -0.004473726265132427, 0.01223067194223404, 0.03174683451652527, 0.039588574320077896, -0.010182050988078117, 0.01807127520442009, 0.007841739803552628, -0.0005202105967327952, -0.03578981012105942, 0.034731581807136536, 0.016850244253873825, 0.029087699949741364, 0.030064525082707405, 0.016850244253873825, 0.012054300867021084, 0.006298490799963474, 0.005660840775817633, 0.015059396624565125, -0.023050373420119286, -0.02329457923769951, 0.004192210268229246, 0.02300967276096344, 0.007305842358618975, -0.016755275428295135, -0.05616747960448265, -0.0009632586734369397, 0.010758649557828903, 0.040673937648534775, -0.005759201478213072, 0.01896669901907444, -0.005172427743673325, 0.026984810829162598, -0.01389263290911913, 0.01682310923933983, -0.004728107713162899, -0.023253878578543663, 0.005196169950067997, -0.002452239627018571, -0.02417643740773201, 0.017908470705151558, 0.009897143580019474, -0.0089881531894207, -0.00350368395447731, 0.0040361895225942135, -0.005318273324519396, 0.0015737747307866812, 0.00737367756664753, -0.004680623300373554, -0.03446023911237717, -0.008167348802089691, -0.020459072664380074, 0.022724764421582222, 0.009836092591285706, -0.0042566535994410515, 0.0440385602414608, 0.0022131206933408976, -0.015846284106373787, 0.010134566575288773, 0.006922573782503605, 0.005185994785279036, -0.01682310923933983, -0.020350536331534386, 0.02777169831097126, -0.0247191172093153, -0.0062510063871741295, -0.01240026019513607, 0.017772801220417023, 0.006261181551963091, -0.028165141120553017, -0.015452840365469456, 0.002272476442158222, 0.02463771589100361, -0.01200003270059824, -0.018084842711687088, -0.03120415471494198, -0.0011370861902832985, -0.007190522737801075, -0.02149016596376896, 0.04108094796538353, 0.02821940928697586, 0.0152764692902565, 0.019794287160038948, -0.030607206746935844, 0.018559688702225685, 0.014788055792450905, 0.009306978434324265, -0.027093347162008286, 0.03171970322728157, -0.0004464398662094027, 0.016036221757531166, -0.031068485230207443, -0.014570984058082104, 0.016293995082378387, 0.002492940751835704, -0.008574359118938446, 0.0028575544711202383, -0.01628042943775654, 0.0114641347900033, -0.023131776601076126, -0.004945180378854275, -0.012976858764886856, -0.02130022831261158, 0.044364169239997864, 0.013268548995256424, -0.015154365450143814, -0.008201265707612038, 0.00047060614451766014, -0.008825348690152168, -0.0024318890646100044, 0.008384420536458492, -0.0019502596696838737, 0.0087642977014184, -0.002901647239923477, -0.053698278963565826, 0.012529146857559681, -0.0003101336769759655, -0.0048400359228253365, -0.0029660905711352825, -0.028246544301509857, -0.018261214718222618, 0.006308665964752436, -0.006322233006358147, -0.006559656001627445, 0.024854788556694984, -0.030444402247667313, -0.02489548921585083, -0.09247283637523651, 0.011192794889211655, 0.004880737047642469, -0.01361450832337141, -0.0003067419456783682, -0.010100649669766426, 0.012033950537443161, -0.002821940928697586, -0.010032813996076584, -0.006909006740897894, -0.03475871682167053, -0.0016746794572100043, 0.008927101269364357, -0.002535337582230568, -0.032506588846445084, 0.002068971050903201, 0.035002920776605606, -0.006172996014356613, 0.004104024730622768, 0.018030574545264244, 0.01661960408091545, -0.00462974701076746, 0.01447601430118084, 0.011450568214058876, -0.0404568649828434, 0.037879131734371185, 0.008947452530264854, 0.010053164325654507, -0.0042668292298913, -0.016768841072916985, -0.017569296061992645, -0.0014949163887649775, -0.0037614572793245316, 0.0003300602547824383, 0.0023504868149757385, -0.0087575139477849, -0.00021982818725518882, 0.012502012774348259, 0.013248198665678501, 0.03820474073290825, -0.02490905672311783, -0.008289451710879803, 0.01190506387501955, 0.004996056668460369, -0.008682895451784134, -0.01923803985118866, -0.01164050679653883, 0.012780136428773403, 0.012698734179139137, 0.01762356422841549, 0.02011989615857601, 0.007773904595524073, -0.0157377477735281, -0.0016678960528224707, 0.01375017873942852, -0.04455410689115524, -0.004385540261864662, 0.019970659166574478, 0.001074338681064546, -0.020649010315537453, 0.01663317158818245, 0.01060941256582737, 0.006973450072109699, 0.003120415611192584, 0.006841171998530626, -0.0036495295353233814, -0.02598085068166256, -0.007434729021042585, 0.02283330075442791, -0.043550144881010056, -0.02147659845650196, -0.024135734885931015, 0.014855891466140747, 0.0152764692902565, -0.006773336790502071, 0.009435865096747875, -0.012922590598464012, -0.0008555704262107611, -0.030987082049250603, 0.026577800512313843, -0.003052580403164029, 0.0001433016877854243, -0.03619682043790817, 0.008682895451784134, 0.024379942566156387, -0.003530818037688732, 0.0016068443655967712, -0.0013719652779400349, -0.017827069386839867, -0.004348231013864279, -0.018817462027072906, -0.0019349968060851097, 0.00949013326317072, 0.018546121194958687, 0.028273677453398705, 0.028002336621284485, -0.001848506974056363, 0.0044771176762878895, 0.03747212141752243, -0.0014872850151732564, 0.019251607358455658, -0.01708088256418705, 0.0006605444941669703, -0.029006296768784523, 0.002382708480581641, 0.0005189386429265141, -0.004151509143412113, -0.041922103613615036, 0.00021230272250249982, 0.020906783640384674, -0.007801038678735495, 0.006613924168050289, -0.006257789675146341, 0.017013048753142357, -0.0024844612926244736, 0.0052538299933075905, -0.004104024730622768, -0.015886984765529633, -0.034731581807136536, 0.003958179149776697, 0.021096721291542053, 0.013960467651486397, 0.0039954883977770805, -0.030362999066710472, 0.040863875299692154, -0.012447744607925415, 0.02336241491138935, -0.030444402247667313, 0.009836092591285706, -0.019075235351920128, -0.03470444679260254, 0.015764880925416946, -0.020906783640384674, -0.029901720583438873, -0.014855891466140747, 0.0161854587495327, 0.01285475492477417, -0.012691950425505638, 0.0007661128765903413, 0.09697708487510681, 0.019278740510344505, 0.0005816861521452665, 0.009205225855112076, 0.003880168776959181, 0.0023199610877782106, 0.008967802859842777, 0.025763778015971184, 0.011050340719521046, -0.014326777309179306, 0.011830444447696209, 0.0021859868429601192, 0.011430217884480953, -0.013811230659484863, -0.026889842003583908, -0.01388584915548563, -0.030362999066710472, 0.0220192801207304, -0.03467731177806854, 0.013682343997061253, 0.03988705202937126, -0.0006520650931634009, -0.006468078587204218, 0.005932181142270565, -0.014204674400389194, 0.004931613337248564, 0.03576267510652542, 0.004307529889047146, -0.01213570311665535, -0.010582278482615948, 0.02446134388446808, -0.0019536514300853014, -0.03201817721128464, -0.027174748480319977, -0.006966666784137487, 0.013132879510521889, -0.009605453349649906, 0.010466959327459335, 0.029874587431550026, -0.009707205928862095, 0.010141350328922272, -0.00027515619876794517, -0.03242518752813339, -0.028653554618358612, 0.006722460500895977, -0.005169036332517862, -0.02049977332353592, -0.005057108122855425, -0.001765409018844366], "06a505d0-5a9c-48de-aa71-92c9d2e1598c": [0.003537359181791544, -9.214018973580096e-06, 0.0019054926233366132, -0.031701069325208664, -0.03373183682560921, 0.0181845985352993, -0.029538433998823166, -0.02719118259847164, 0.004259336739778519, -0.006771421991288662, 0.02559557929635048, -0.012349438853561878, -0.01894943229854107, 0.0056241704151034355, -0.02591206319630146, -0.011195593513548374, 0.011248340830206871, -0.023538438603281975, -0.00169780058786273, -0.024725250899791718, 0.0017109874170273542, 0.014057129621505737, -0.013338448479771614, -0.014531854540109634, -0.009158233180642128, -0.014716469682753086, 0.0011035703355446458, -0.017274709418416023, -0.00857141986489296, 0.003952743485569954, 0.02547689899802208, -0.005789005197584629, -0.030936233699321747, -0.02579338103532791, -0.0221538245677948, 0.0038934028707444668, -0.018224157392978668, -0.011314274743199348, -0.019714266061782837, 0.0016796686686575413, 0.019305475056171417, -0.009784606285393238, 0.004750544670969248, 0.0013969766441732645, -0.010905483737587929, 0.027243928983807564, -0.030276894569396973, 0.009454935789108276, -0.018329652026295662, 0.02620217204093933, -0.0033626342192292213, -0.008973618037998676, -0.0325186513364315, -0.01483515091240406, 0.009830759838223457, -0.0003463595639914274, 0.005370324477553368, 0.008861529640853405, -0.0036263701040297747, -0.004308787174522877, 0.006336257793009281, -0.006942850537598133, -0.017907675355672836, -0.010681308805942535, -0.007140652276575565, 0.011314274743199348, -0.011070319451391697, -0.0026159314438700676, -0.028140632435679436, -0.030408762395381927, -0.0033164804335683584, 0.004025270696729422, -0.003909886348992586, -0.005225269589573145, 0.005703291390091181, 0.012665921822190285, -0.016101082786917686, 0.01894943229854107, 0.007556036580353975, 0.006326367612928152, -0.007279113866388798, 0.0047670286148786545, -0.01383295375853777, -0.0016821412136778235, 0.0015634599840268493, 0.004167029168456793, 0.02331426367163658, 0.0016499983612447977, -0.012098889797925949, -0.016048336401581764, -0.010938450694084167, -0.018501080572605133, -0.0037120843771845102, 0.008835156448185444, -0.006471422500908375, 0.006916476879268885, -0.022839538753032684, 0.027032941579818726, -0.02413184568285942, -0.0276922807097435, -0.010905483737587929, 0.015336249023675919, -0.015230754390358925, 0.004025270696729422, -0.03330985829234123, -0.025951623916625977, 0.048079073429107666, -0.02258898876607418, -0.010569220408797264, -0.009962627664208412, -0.020650530233979225, -1.869847073976416e-05, 0.012771416455507278, -0.02614942565560341, -0.012435153126716614, 0.011149439960718155, 0.037556007504463196, -0.05351203680038452, -0.030118651688098907, -0.0011456032516434789, 0.005716477986425161, 0.012250537984073162, 0.023749427869915962, 0.014096689410507679, -0.006715378258377314, -0.02483074553310871, -0.016219764947891235, -0.0025483490899205208, -3.33790885633789e-05, -0.00276922807097435, 0.04939775541424751, 0.022905472666025162, 0.0025071403943002224, 0.013087899424135685, -0.023564811795949936, -0.0011208780342712998, -0.008986804634332657, -0.01300218515098095, 0.004318677354604006, -0.01786811463534832, 0.0191472340375185, 0.01002856157720089, -0.006758235394954681, -0.026479095220565796, 0.004292303696274757, 0.023749427869915962, 0.009494496509432793, -0.015402182936668396, -0.007318674121052027, -0.004898896440863609, 0.011782405897974968, 0.0033791176974773407, -0.024527449160814285, -0.00678460905328393, -0.017512071877717972, 0.0020340639166533947, -0.003283513244241476, 0.011050539091229439, -0.010523066855967045, -0.023050528019666672, 0.0015906578628346324, 0.015032952651381493, 0.007305487524718046, 0.000979119911789894, 0.010747242718935013, 0.02824612706899643, 0.005564829800277948, -0.009553836658596992, 0.008901090361177921, 0.02501535974442959, 0.005518675781786442, -0.006520872935652733, -0.02856260910630226, 0.023037340492010117, 0.03745051473379135, 0.03462853655219078, -0.01275163609534502, -0.010338451713323593, -0.02078239805996418, -0.00960658397525549, -0.01815822347998619, -0.005343950819224119, -0.0033791176974773407, 0.028351621702313423, -0.010074715130031109, 0.0021956022828817368, 0.015745040029287338, 0.008340651169419289, 0.012850536964833736, -0.001979668391868472, 0.021098880097270012, 0.036738425493240356, 0.0022664812859147787, -0.0285362359136343, -0.6084917187690735, -0.020307673141360283, -0.005406588315963745, 0.01647031307220459, 0.007747245486825705, 0.006299993954598904, 0.0009881858713924885, 0.043094463646411896, -0.013292294926941395, 0.027349423617124557, -0.03333623334765434, -0.0059274667873978615, -0.02521316334605217, -0.006273620296269655, 0.0010615374194458127, -0.0009717023349367082, 0.006379114929586649, 0.0065439497120678425, 0.003758238162845373, 0.010338451713323593, -0.010984605178236961, 0.008624167181551456, -0.021388990804553032, 0.014597788453102112, 0.01442635990679264, -0.027032941579818726, 0.024039536714553833, -0.005340654402971268, -0.004546149633824825, 0.017393389716744423, -0.032545022666454315, 0.01801316998898983, -0.017762620002031326, 0.0065835099667310715, 0.0534592904150486, 0.015296688303351402, -0.05675598978996277, 0.017301082611083984, -0.0023521955590695143, 0.06271642446517944, -0.007035158108919859, -0.022404374554753304, 0.018461519852280617, 0.006319774314761162, -0.008314277976751328, -0.020360419526696205, -0.008953837677836418, -0.030065905302762985, -0.018962619826197624, 0.010503286495804787, 0.01894943229854107, 0.005568126682192087, -0.008241750299930573, 0.00470109423622489, 0.006692301481962204, 0.017920861020684242, 0.02509448118507862, -0.043331827968358994, 0.02550327219069004, -0.0002641481114551425, -0.004358237609267235, 0.019503278657794, -0.0010739000281319022, 0.0009090650710277259, -0.009771418757736683, -0.014070316217839718, -0.01129449438303709, -0.03359996899962425, 0.012052735313773155, -0.015151633881032467, 0.004978017415851355, -0.014373612590134144, 0.0048758196644485, 0.00018945723422802985, 0.02010987140238285, -0.001099449465982616, 0.02509448118507862, -0.01786811463534832, -0.010852736420929432, -0.011914274655282497, 0.003219227772206068, -0.0057362583465874195, -0.011492297053337097, -0.004836258944123983, 0.00012929245713166893, -0.026531843468546867, -0.002825272036716342, -0.02711206115782261, -0.0019928552210330963, -0.0011711526894941926, 0.005845049396157265, 0.01947690360248089, 0.01252086739987135, -0.017208775505423546, -0.009659331291913986, 0.023010967299342155, -0.004424171522259712, 0.0011769220000132918, 0.004054941236972809, 0.004483512137085199, -0.015230754390358925, -0.0035307658836245537, 0.005765928421169519, -0.0009494496625848114, 0.040325235575437546, -0.0004973896429874003, -0.03019777312874794, 0.0009148342651315033, 0.04607468098402023, 9.078803486772813e-06, 0.00018173058924730867, 0.004450545180588961, 0.01342416275292635, -0.01258020754903555, 0.027085687965154648, -0.032307662069797516, 0.020835144445300102, -0.0008010981255210936, 0.019582398235797882, -0.0105955945327878, 0.027375798672437668, -0.0020868112333118916, 0.017657125368714333, -0.019872508943080902, 0.0072725205682218075, 0.01279778964817524, 0.015613172203302383, 0.030250519514083862, -0.012461526319384575, -0.004312083590775728, 0.004252742975950241, 0.014320865273475647, 0.012158229947090149, -0.02227250672876835, -0.002307689981535077, 0.013687899336218834, -0.0027890081983059645, -0.018896685913205147, 0.04264611378312111, -0.012870317324995995, -0.0033098869025707245, -0.008479112759232521, -0.0019285695161670446, 0.0009692298481240869, 0.0036824140697717667, -0.03241315484046936, -0.008479112759232521, -0.01046372577548027, -0.014914271421730518, 0.007305487524718046, -0.016312072053551674, 0.0229977797716856, -0.009705484844744205, -6.078290971345268e-05, -0.01900217868387699, -0.002775821601971984, 0.004206589423120022, -0.01690547913312912, -0.010912077501416206, -0.008017574436962605, 0.014531854540109634, 0.006065928377211094, -0.03597359359264374, -0.00551537936553359, -0.024870306253433228, -0.016246138140559196, 0.023868108168244362, 0.00022211516625247896, -0.027349423617124557, -0.032307662069797516, 0.005713181104511023, -0.0024725249968469143, 0.011591197922825813, -0.019068114459514618, 0.028694478794932365, -0.002662085462361574, -0.017973609268665314, 0.020597781985998154, -0.004265930037945509, -0.006326367612928152, 0.003689007367938757, 0.0031467003282159567, -0.000575686281081289, 0.004770325031131506, 0.010483506135642529, 0.029828542843461037, 0.03573622927069664, 0.02533184364438057, -0.019199982285499573, -0.016021963208913803, -0.006468125618994236, 0.025925250723958015, 0.023419758304953575, -0.015072513371706009, 0.022654922679066658, 0.017643939703702927, 0.032545022666454315, 0.027903269976377487, -0.006115378811955452, 0.01043735258281231, 0.03705491125583649, 0.02646590769290924, 0.014742842875421047, -0.00720658665522933, 0.008050541393458843, -0.030408762395381927, 0.005192302633076906, 0.0037384580355137587, 0.010054935701191425, -0.00594724714756012, -0.011999987997114658, -0.006062631495296955, -0.012454933486878872, -0.042487870901823044, -0.007219773251563311, 0.017907675355672836, -0.010160429403185844, 0.014030755497515202, -0.006108785513788462, 0.021705472841858864, 0.002329118549823761, -0.015204381197690964, 0.015810973942279816, -0.01589009538292885, -0.005914280191063881, 0.0012321416288614273, 0.003860435914248228, 0.013410976156592369, 0.016984598711133003, -0.023802174255251884, -0.03359996899962425, 0.0014983501750975847, 0.01871206983923912, 0.009303287602961063, -0.0022005473729223013, 0.0011744494549930096, 0.027771402150392532, -0.021085694432258606, 0.04232962802052498, 0.0059670270420610905, -0.0025434042327106, -0.0001032279251376167, 0.00047760942834429443, -0.008340651169419289, -0.006689004600048065, -0.005703291390091181, 0.03164832293987274, 0.016430754214525223, 0.00810328871011734, -0.015758225694298744, -0.020386792719364166, -0.005215379409492016, -0.00298021687194705, 0.00811647530645132, 0.007608783897012472, -0.011960428208112717, 0.02576700784265995, 0.00768131110817194, 0.030276894569396973, 0.035050515085458755, 0.007265927270054817, 0.027059314772486687, -0.010978011414408684, -0.007753838784992695, -0.011360428296029568, -0.01629888452589512, -0.01786811463534832, -0.005406588315963745, -0.003603293327614665, -0.03180656209588051, -0.025490084663033485, 0.01525712851434946, 0.0063824113458395, -0.008406585082411766, -0.0026258216239511967, -0.009883507154881954, -0.017129654064774513, 0.018356027081608772, 0.032281287014484406, 0.006372521165758371, -0.02885271981358528, -0.012105482630431652, 0.026162611320614815, -0.0004739006399177015, 0.006685707718133926, 0.008037354797124863, -0.007615377195179462, 0.008472518995404243, 0.008683508262038231, -0.008426365442574024, 0.0022565913386642933, 0.021810967475175858, -0.0005278841126710176, -0.002627470064908266, -0.010285704396665096, -0.031701069325208664, 0.03510326147079468, -0.0048461491242051125, -0.015454930253326893, -0.009903287515044212, 0.014703282155096531, -0.01743295043706894, -0.02903733402490616, -0.01637800596654415, 0.04101094976067543, 0.0031928541138768196, -0.011406582780182362, 0.004328567069023848, 0.027824148535728455, -0.02538459189236164, -0.003646150231361389, -0.009250540286302567, 0.008123069070279598, -0.02821975387632847, -0.03270326554775238, 0.016839543357491493, -0.002818678505718708, -0.007180212996900082, 0.021929649636149406, -0.003243952989578247, -0.024171404540538788, 0.00618790602311492, -0.025397777557373047, 0.01763075217604637, 0.005386807955801487, -0.021059321239590645, 0.015151633881032467, 0.01929228939116001, -0.00725933350622654, -0.02328789047896862, -0.0110769122838974, 0.0007042575743980706, -0.0034252714831382036, -0.009441749192774296, -0.011558230966329575, 0.012672515586018562, 0.0019104377133771777, -0.001099449465982616, 0.03747688606381416, -0.003649447113275528, 0.012356031686067581, -0.012230757623910904, -0.011795593425631523, -0.023050528019666672, 0.023604372516274452, -0.001979668391868472, 0.0042296661995351315, 0.009013177827000618, -5.666203287546523e-05, 0.01248790044337511, 0.03847908228635788, 0.025701073929667473, 0.012263724580407143, -0.009072518907487392, -0.004331863950937986, -0.008136255666613579, 0.004236259497702122, 0.038347214460372925, -0.005274720024317503, 0.02206151746213436, 0.027639534324407578, 0.044149406254291534, -0.004770325031131506, 0.015046139247715473, -0.010793396271765232, 0.040272489190101624, 0.009362628683447838, -0.0035538426600396633, 0.03621095418930054, -0.019714266061782837, -0.009072518907487392, 0.00832087080925703, -0.014202184043824673, -0.018435146659612656, 0.030567003414034843, 0.01603514887392521, -0.05316917970776558, 0.004991204012185335, 0.03913842514157295, 0.040879081934690475, -0.021942835301160812, -0.0030560409650206566, 0.005917576607316732, -0.006214279681444168, 0.0022780196741223335, -0.019859321415424347, -0.02171866036951542, -0.001874173991382122, -0.02241756021976471, -0.02451426163315773, -0.023973602801561356, 0.005017577670514584, -4.7544595872750506e-05, -0.012230757623910904, 0.012336252257227898, -0.03592084348201752, -0.037213150411844254, -0.0018543938640505075, 0.003360985778272152, -0.0015329655725508928, 0.02078239805996418, -0.022364813834428787, -0.0276922807097435, 0.026281293481588364, -0.016312072053551674, -0.019898882135748863, -0.004628567025065422, -0.03647468984127045, -0.0055351597256958485, -0.0012131856055930257, -0.008274717256426811, -0.003336260560899973, -0.013687899336218834, 0.006102191749960184, 0.034681286662817, 0.009692298248410225, 0.03133183717727661, 0.006323070731014013, -0.026281293481588364, 0.00046030175872147083, 0.02882634662091732, -0.006332960911095142, 0.02745491825044155, -0.012995592318475246, 0.010318671353161335, -0.004799995571374893, -0.014347239397466183, -0.005785708781331778, -0.017380202189087868, -0.021415363997220993, 0.028483489528298378, 0.004615379963070154, 0.017327455803751945, 0.02530547045171261, 0.02574063464999199, -0.013529657386243343, -0.02617579884827137, 0.002508788835257292, 0.031490080058574677, 0.009362628683447838, -0.003255491377785802, 0.01943734474480152, 0.02798239141702652, -0.01774943433701992, -0.0021609868854284286, -0.004991204012185335, 0.009725265204906464, 0.01926591619849205, 0.023129647597670555, 0.029696675017476082, -0.0006828290061093867, -0.031410958617925644, -0.016918664798140526, 0.01253405399620533, 0.009019771590828896, 0.010832956992089748, -0.005732961464673281, -0.01991206966340542, -0.03747688606381416, 5.382893141359091e-05, -0.009942847304046154, 0.012560427188873291, -0.024026351049542427, -0.025529645383358, -0.012758229859173298, -0.004978017415851355, -0.006758235394954681, -0.01085933018475771, -0.0006156587623991072, -0.02270767092704773, 0.010134056210517883, -0.014479107223451138, 0.013556030578911304, 0.020030749961733818, 0.02063734270632267, -0.004948346875607967, -0.01798679679632187, -0.0027247227262705564, 0.007852739654481411, -0.026650523766875267, 0.008182410150766373, -0.016747236251831055, 0.000965108978562057, 0.01693185232579708, 0.03602633997797966, -0.011459330096840858, 0.0017390092834830284, 0.0101736169308424, 0.015151633881032467, 0.007232959847897291, -0.01912086084485054, 0.01796042174100876, 0.002254942897707224, 0.01757800579071045, 0.027270304039120674, 0.025832941755652428, 0.022232946008443832, 0.013134052976965904, -0.0042791166342794895, 0.0035307658836245537, 0.010865923948585987, -0.025173602625727654, -0.00011796005128417164, -0.05818016454577446, 0.00655713677406311, -0.024936240166425705, -0.022259319201111794, 0.008446145802736282, 0.001599723706021905, -0.013265921734273434, -0.022087890654802322, 0.004025270696729422, 0.04011424630880356, -0.003125271759927273, 0.026281293481588364, -0.007971420884132385, -0.003932963125407696, 0.003979117143899202, 0.008136255666613579, -0.0009980759350582957, 0.01467690896242857, -0.010905483737587929, 0.043120838701725006, 0.006042851135134697, 0.014874710701406002, 0.011419769376516342, -0.00467142416164279, 0.008545046672224998, 0.003113733371719718, 0.03222854062914848, -0.0021329650189727545, -0.02039998024702072, -0.0005076918168924749, -0.01536262221634388, -0.02858898416161537, -0.014650535769760609, 0.016364820301532745, -0.008208783343434334, -0.020123057067394257, 0.007615377195179462, 0.023854922503232956, 0.010701088234782219, -0.0033329639118164778, -0.006065928377211094, -0.008314277976751328, -0.03328348323702812, 0.020650530233979225, 0.03573622927069664, -0.0031153815798461437, 0.03599996492266655, -0.0025664810091257095, -0.019305475056171417, -0.048026327043771744, 0.005294500384479761, -0.000112293848360423, 0.01356921810656786, 0.03075161948800087, 0.003992303740233183, -0.022641737014055252, 0.002967030042782426, -0.013397789560258389, -0.029723048210144043, -0.027850523591041565, 0.026571402326226234, 0.02162635326385498, 0.0008942299173213542, 0.011597790755331516, 0.01981976069509983, -0.02742854505777359, 0.010457132942974567, -0.01589009538292885, 0.00679120235145092, -0.00867032166570425, 0.011129659600555897, -0.020175805315375328, 0.013087899424135685, -0.016167016699910164, 0.019978003576397896, 0.020188990980386734, -0.008208783343434334, 0.0038670292124152184, -0.024619756266474724, -0.002673623850569129, 0.007832959294319153, -0.01620657742023468, 0.023393383249640465, -0.021942835301160812, -0.03462853655219078, 0.014479107223451138, 0.02020217850804329, 0.010747242718935013, -0.0387691929936409, -0.006909883581101894, 0.03573622927069664, 0.004470325540751219, -0.0020027454011142254, -0.012514273636043072, 0.0016648335149511695, 0.005910983309149742, 0.0034846120979636908, -0.0026126347947865725, 0.0018626356031745672, -0.0075032892636954784, 0.004783512093126774, 0.012448339723050594, 0.012243944220244884, -0.001898899325169623, -0.012263724580407143, -0.008756035938858986, -0.005660434253513813, -0.03402194380760193, -0.019898882135748863, 0.013120866380631924, -0.02022855170071125, -0.010687901638448238, -0.01275163609534502, -0.0276922807097435, 0.003082414623349905, -0.0156527329236269, 0.005518675781786442, -0.0012758229859173298, 0.042197760194540024, -0.02646590769290924, 0.019252728670835495, -0.008821969851851463, 0.001796701573766768, -0.03191205859184265, 0.0027428544126451015, 0.005591203458607197, -0.013938448391854763, 0.010681308805942535, -0.014043942093849182, 0.000155460016685538, -0.015995588153600693, 0.009890099987387657, 0.016945037990808487, 0.007081311661750078, 0.009527463465929031, 0.039718642830848694, -0.005854939576238394, 0.01151207648217678, -0.007879112847149372, -0.021375803276896477, 0.016074709594249725, -0.030646124854683876, -0.002396700903773308, 0.01483515091240406, -0.0024857118260115385, -0.000915658485610038, 0.012606581673026085, 0.008413178846240044, 0.03043513558804989, -0.0034582384396344423, -0.028061510995030403, 0.004457138478755951, -0.036738425493240356, -0.026795579120516777, -0.04523072391748428, -0.021059321239590645, -0.0122835049405694, -0.025780195370316505, -0.01165713183581829, 0.0010211528278887272, 0.0238417349755764, 0.007958234287798405, 0.019872508943080902, -0.0040384577587246895, 0.011492297053337097, 0.014228558167815208, -0.008426365442574024, -0.023037340492010117, -0.03460216522216797, -0.00488241296261549, -0.02075602486729622, -0.02675601840019226, 0.032808758318424225, 0.001123350579291582, -0.03499776870012283, -0.011617571115493774, -0.0031401067972183228, 0.007589003536850214, 0.011571417562663555, -0.0005600269068963826, 0.023947229608893394, 0.04578457027673721, 0.01383295375853777, 0.00913845282047987, 0.009336254559457302, -0.00867032166570425, 0.0037252712063491344, -0.004984610714018345, 0.0042395563796162605, 0.002174173714593053, 0.018263718113303185, -0.00783955305814743, -0.006009884178638458, -0.010793396271765232, -0.001483515021391213, -0.007015377748757601, 0.047788966447114944, 0.0071604326367378235, 0.013351635076105595, 0.00782636646181345, -0.022958219051361084, -0.027903269976377487, -0.008762628771364689, 0.005934060085564852, 0.00015257540508173406, -0.019542837515473366, -0.04378017783164978, 0.005647247191518545, 0.015217567794024944, -0.006003290880471468, -0.03209667280316353, 0.007892300374805927, -0.005657137371599674, -0.013054932467639446, 0.028641730546951294, -0.005607686936855316, -0.0036824140697717667, -0.00233900872990489, -0.007015377748757601, 0.02200876921415329, -0.014795590192079544, 0.021942835301160812, 0.011558230966329575, -0.008367025293409824, -0.01085933018475771, -0.013912074267864227, 0.018646135926246643, -0.02381536178290844, 0.003375820815563202, 0.0166153684258461, -0.018988993018865585, -0.005650544073432684, -0.016364820301532745, 0.02442195452749729, -0.02005712315440178, 0.010925264097750187, 0.03075161948800087, 0.005185709334909916, -0.04676039516925812, 0.018580202013254166, 0.010879110544919968, 0.006013181060552597, -0.008584607392549515, 0.010015374980866909, -0.025701073929667473, -0.005858235992491245, -0.04019336774945259, 0.0031153815798461437, -0.05902411788702011, 0.02964392676949501, -0.0017357126343995333, -0.017446137964725494, -0.03760875388979912, -0.005541753023862839, -0.001687910407781601, -0.004803291987627745, 0.010635154321789742, 0.24263712763786316, -0.006712081376463175, -0.006009884178638458, 0.00940218847244978, 0.01321976725012064, -0.0021906571928411722, 0.017512071877717972, 0.0022252725902944803, -0.04019336774945259, 0.024197779595851898, -0.001814833376556635, 0.004005490802228451, 0.0006004114984534681, -0.0032884583342820406, -0.007747245486825705, 0.009421968832612038, -0.040325235575437546, -0.026716457679867744, -0.01938459649682045, -0.002927469788119197, 0.05145489424467087, 0.018461519852280617, -0.005010984372347593, -0.00405164435505867, 0.007846145890653133, 0.00867032166570425, -0.021257122978568077, 1.990897726500407e-05, 0.011617571115493774, 0.02241756021976471, -0.014070316217839718, 0.0006894224206916988, 0.0033626342192292213, -0.008578013628721237, 0.004499995615333319, -0.02856260910630226, 0.0029258213471621275, 0.01844833418726921, 0.023564811795949936, 0.010727462358772755, -0.012323064729571342, -0.005874719470739365, 0.02858898416161537, -0.014439546503126621, -0.011558230966329575, -0.0025285689625889063, 0.00029505466227419674, -0.024158218875527382, -0.0019104377133771777, 0.014030755497515202, -0.012639548629522324, 0.0058153788559138775, 0.0387691929936409, 0.028905466198921204, -0.011835153214633465, -0.003212634241208434, -0.0001565932616358623, -0.018079103901982307, -0.0010409330716356635, 0.0228790994733572, 0.01796042174100876, 0.03486590087413788, -0.020136244595050812, -0.010832956992089748, -0.030303267762064934, 0.03207029774785042, -0.03386370465159416, -0.018079103901982307, 0.008505485951900482, -0.013516470789909363, 0.00971867237240076, 0.006903290282934904, -0.0036758205387741327, 0.006890103220939636, -0.010483506135642529, -0.024527449160814285, 0.015837347134947777, 0.027349423617124557, 0.037265896797180176, 0.03217579424381256, -0.00028990357532165945, -0.005821972619742155, 0.006929663475602865, -0.007021971046924591, -0.009184606373310089, -0.03650106489658356, -0.003969226963818073, -0.0016269214684143662, -0.009580210782587528, -0.006501092575490475, 0.002475821878761053, -0.04380655288696289, 0.009184606373310089, -0.027507666498422623, 0.012857130728662014, 0.015745040029287338, -0.0023769207764416933, 0.008274717256426811, -0.008367025293409824, 0.003491205396130681, 0.0034120846539735794, 0.04185490310192108, 0.05240434408187866, 0.006698894780129194, -0.027639534324407578, 0.016127457842230797, -0.01441317331045866, 0.017103280872106552, -0.01731426827609539, -0.024553822353482246, 0.009013177827000618, -0.037002161145210266, 0.004008787218481302, -0.00019326905021443963, 0.004054941236972809, 0.039797764271497726, -0.012718669138848782, -0.03236040845513344, -0.023723054677248, 0.008967024274170399, 0.03847908228635788, -0.021903276443481445, -0.003972523845732212, 0.002653843490406871, 0.0016260973643511534, -0.01579778641462326, -0.008723068982362747, -2.2613301553064957e-05, -0.010898890905082226, -0.030962606891989708, 0.03399557247757912, -0.008505485951900482, 0.021151628345251083, 0.02422415278851986, 0.01511207316070795, 0.010035155341029167, 0.013199986889958382, -0.021402176469564438, 0.019186794757843018, 0.01046372577548027, -0.0003867441264446825, 0.0060890051536262035, 0.027903269976377487, -0.00200769049115479, 0.007021971046924591, -0.03592084348201752, 0.00384065555408597, 0.005090104881674051, -0.020940639078617096, -0.014584600925445557, -0.034813154488801956, -0.013028559274971485, 0.011215373873710632, -0.01938459649682045, 0.010081308893859386, -0.0013508228585124016, -0.050241708755493164, -0.01690547913312912, -0.017327455803751945, 0.045599956065416336, -0.03357359394431114, -0.027085687965154648, 0.019516464322805405, -0.038294468075037, -0.01494064461439848, -0.01784174144268036, -0.166153684258461, 0.020452728495001793, 0.0043516443111002445, -0.03214941918849945, 0.011861527338624, 0.030408762395381927, 0.004242853261530399, -0.013107679784297943, -0.025898875668644905, -0.0017307675443589687, 0.01611427031457424, 0.014241744764149189, -0.030276894569396973, -0.013068119063973427, -0.007483509369194508, 0.012098889797925949, -0.012336252257227898, -0.01441317331045866, 0.03431205451488495, 0.018725257366895676, 0.03932303935289383, -0.023274702951312065, 0.006425268482416868, -0.013872514478862286, 0.02121756225824356, 0.0003593403089325875, 0.004763731732964516, 0.024316459894180298, -0.0017109874170273542, -0.008756035938858986, -0.022496681660413742, 0.018764816224575043, 0.024197779595851898, 0.030303267762064934, 0.03048788197338581, -0.020558221265673637, 0.012197790667414665, 0.007173619698733091, 0.00639889482408762, 0.016681302338838577, 0.01632525958120823, 0.038663700222969055, 0.01685273088514805, -0.0009956033900380135, -0.004206589423120022, 0.01952965185046196, 0.006478015799075365, 0.0020653826650232077, -0.0036098866257816553, -0.00657362025231123, 0.004101094789803028, -0.015903281047940254, -0.02716480940580368, -0.00402856757864356, 0.02162635326385498, 0.00887471716850996, -0.0053604342974722385, 0.018646135926246643, -0.008756035938858986, -0.008782409131526947, -0.004747248254716396, -0.015665918588638306, 0.005413181614130735, 0.0072725205682218075, -0.012349438853561878, 0.00887471716850996, -0.007114279083907604, 0.016127457842230797, -0.014887898229062557, 0.007595597300678492, 0.005083511583507061, 0.0018329652957618237, 0.005835159216076136, 0.015468116849660873, -0.0028054919093847275, -0.019279101863503456, -0.020386792719364166, 0.010470319539308548, 0.041142817586660385, -0.010206583887338638, 0.0041999961249530315, 0.05203511565923691, 0.008268123492598534, -0.022285692393779755, -0.0059604337438941, 0.03072524443268776, 0.02241756021976471, -0.025925250723958015, -0.021876901388168335, -0.008406585082411766, 0.04438677057623863, -0.02206151746213436, -0.003946150187402964, 0.000679944409057498, -0.0024016459938138723, -0.004674720577895641, -0.0017406577244400978, -0.007219773251563311, -0.01148570328950882, 0.008967024274170399, -0.006471422500908375, -0.014241744764149189, -0.013608777895569801, 0.0021082398016005754, 0.026821952313184738, 0.00013094081077724695, -0.01467690896242857, 0.003537359181791544, 0.02993403747677803, -0.01383295375853777, -0.024303274229168892, 0.011452736333012581, 0.005396698135882616, 0.03185930848121643, -0.02381536178290844, -0.012105482630431652, -0.00046936768922023475, 0.014030755497515202, 0.012778009288012981, -0.012131856754422188, -0.032545022666454315, -0.022430747747421265, 0.006161532364785671, 0.031120849773287773, -0.004730764776468277, -0.010621967725455761, -0.058602143079042435, 0.0014488997403532267, 0.006349444389343262, 0.021257122978568077, -0.026334039866924286, 0.012949437834322453, -0.00977801252156496, 0.024237338453531265, 0.0019186794525012374, 0.018342839553952217, -0.028905466198921204, -0.005330764222890139, 0.002317580161616206, 0.010760429315268993, -0.02179778181016445, 0.005812082439661026, 0.021942835301160812, 0.002729667816311121, -0.012237350456416607, 0.016101082786917686, -0.013331855647265911, 0.011676912195980549, 0.00767471781000495, -0.014927458018064499, -0.024791184812784195, -0.015164820477366447, -0.011973614804446697, 0.031226344406604767, 0.027059314772486687, -0.0007689553312957287, 0.030013157054781914, 0.013134052976965904, -0.008254936896264553, 0.0105955945327878, 0.006299993954598904, 0.00044052154407836497, -0.016602182760834694, 0.0035703261382877827, -0.0010063176741823554, -0.008472518995404243, 0.017182400450110435, -0.006464828737080097, 0.034180186688899994, 0.000743405893445015, -0.018896685913205147, -0.015151633881032467, -0.010384605266153812, 0.029248323291540146, -0.025345031172037125, 0.0035208757035434246, -0.013331855647265911, -0.00874284841120243, -0.021810967475175858, -0.0018626356031745672, 0.03676480054855347, 0.02475162409245968, 0.02247030846774578, 0.008564827032387257, -0.019503278657794, 0.0010796693386510015, 0.0053835115395486355, 0.010107683017849922, -0.020835144445300102, 0.03599996492266655, -0.002779118251055479, -0.009191200137138367, -0.01912086084485054, -0.022892285138368607, 0.0036692272406071424, 0.0065835099667310715, -0.0030164807103574276, 0.0015436798566952348, -0.006421972066164017, 0.01254724059253931, -0.012764822691679, -0.02603074349462986, -0.009112078696489334, -0.02564832754433155, 0.01777580752968788, 0.02186371572315693, -0.012870317324995995, -0.016101082786917686, -0.013529657386243343, 0.006125268992036581, 0.0053604342974722385, 0.015573611482977867, -0.018382400274276733, 0.021098880097270012, 0.018909871578216553, -0.04412303492426872, -0.008756035938858986, 0.003092304803431034, 0.011538450606167316, -0.01123515423387289, -0.008380211889743805, 0.02066371589899063, 0.025714261457324028, -0.01428130455315113, 0.0024791185278445482, 0.03291425481438637, -0.02879997156560421, -0.002508788835257292, -0.07500652223825455, 0.01258020754903555, -0.004397797863930464, 0.006596697028726339, -0.007338454481214285, 0.007852739654481411, 0.016865918412804604, 0.0014167568879202008, -0.019279101863503456, -0.002487360266968608, -0.033125244081020355, 0.023076901212334633, -0.004384611267596483, -0.01359559129923582, -0.03019777312874794, 0.015613172203302383, 0.021178001537919044, 0.019068114459514618, 0.016602182760834694, 0.020149430260062218, 0.013780206441879272, -0.021151628345251083, 0.006708784960210323, 0.010226364247500896, -0.008584607392549515, 0.016747236251831055, 0.0003220463986508548, 0.020294485613703728, 0.01589009538292885, -0.015178007073700428, -0.021468110382556915, -0.01801316998898983, -0.015745040029287338, -0.010529660619795322, -0.0038901062216609716, -0.011103286407887936, -0.002896151039749384, 0.013199986889958382, 0.0030758213251829147, 0.045626331120729446, -0.021995583549141884, -0.022021956741809845, 0.015402182936668396, -0.016509873792529106, -0.0020554924849420786, -0.014848337508738041, -0.005594500340521336, -0.0006177191971801221, 0.027270304039120674, 0.002282964764162898, 0.015019766055047512, 0.010898890905082226, -0.025054920464754105, -0.008709881454706192, 0.010213176719844341, -0.06076477840542793, 0.0069692241959273815, 0.007602190598845482, 0.0004833786515519023, -0.011426362209022045, 0.0027527445927262306, -0.00803076196461916, -0.006332960911095142, -0.014637348242104053, 0.017221961170434952, -0.0034846120979636908, -0.017643939703702927, -0.004259336739778519, 0.013127460144460201, -0.02581975609064102, -0.029221950098872185, -0.010101089254021645, 0.009454935789108276, 0.006461532320827246, 0.03441755101084709, 0.008195596747100353, 0.004203292541205883, 0.011162626557052135, -0.011986801400780678, 0.0063428510911762714, -0.005601093638688326, 0.0034615350887179375, -0.02258898876607418, 0.002416481263935566, 0.01789448782801628, -0.0018263718811795115, -9.452257654629648e-05, 0.004394501447677612, -0.01801316998898983, 0.022786790505051613, -0.03869007155299187, 0.0006749993772245944, 0.01921316795051098, 0.031120849773287773, 0.007107685320079327, 0.0038208754267543554, 0.006870322860777378, -0.008182410150766373, 0.02646590769290924, -0.0011456032516434789, 0.015639545395970345, -0.02393404208123684, -0.0059274667873978615, -0.03381095826625824, -0.004134061746299267, 0.004282413516193628, -0.005657137371599674, -0.045810945332050323, 0.0008126365719363093, 0.01232965849339962, -0.011630757711827755, 0.023868108168244362, 0.019687892869114876, 0.027903269976377487, -0.012553834356367588, -0.0053835115395486355, -0.013529657386243343, -0.037529632449150085, -0.03441755101084709, 0.0006407960900105536, 0.03602633997797966, 0.021784594282507896, 0.006435158662497997, -0.026452722027897835, 0.049476876854896545, -0.009830759838223457, 0.009454935789108276, -0.03349447250366211, 0.029749421402812004, 0.0005068676546216011, -0.03233403339982033, 0.004829665645956993, -0.037582382559776306, -0.023854922503232956, -0.02054503560066223, 0.033388979732990265, 0.00037211502785794437, 0.005999993998557329, -0.02314283512532711, 0.06830762326717377, 0.02562195248901844, -0.004384611267596483, 0.014030755497515202, 0.005973620805889368, 0.010720868594944477, -0.0030560409650206566, 0.01060878112912178, -0.00888790376484394, -0.03399557247757912, 0.02080877125263214, -0.009085705503821373, 0.014109876938164234, 0.007556036580353975, -0.0021609868854284286, 0.014109876938164234, -0.0008237629663199186, 0.03399557247757912, -0.011624164879322052, 0.004282413516193628, 0.04823731631040573, 0.022430747747421265, 0.001123350579291582, 0.010879110544919968, -0.022285692393779755, -0.017802180722355843, 0.03884831443428993, -0.00202252552844584, -0.016958225518465042, 0.00047678526607342064, 0.019780199974775314, 0.022219758480787277, -0.009540650062263012, -0.024764811620116234, 0.02687469869852066, 0.025753822177648544, -0.030672498047351837, -0.023248329758644104, 0.017591191455721855, -0.021270308643579483, 0.007087905425578356, 0.02576700784265995, -0.027375798672437668, -0.043912045657634735, 0.003939556423574686, -0.005182412452995777, -0.013674711808562279, 0.015243940986692905, -0.020004376769065857], "a64c9c75-bf7f-49b2-b815-51798474fc5b": [-9.612560097593814e-05, -0.016382548958063126, 0.015503685921430588, -0.01565474085509777, -0.02102404274046421, 0.013835220597684383, -0.009942133910953999, -0.010285438969731331, -0.019760677590966225, 0.0010041692294180393, 0.025679267942905426, 0.029386969283223152, -0.015366364270448685, -0.006059345789253712, -0.009152530692517757, -0.011617465876042843, 0.015023058280348778, -0.018373722210526466, 0.02930457703769207, 0.0014315848238766193, 0.012935759499669075, 0.007367340847849846, -0.008259935304522514, 0.0018212368013337255, -0.015544882975518703, 0.01759098470211029, 0.0024666516110301018, -0.020639540627598763, 0.004730752669274807, -0.004552233964204788, 0.008644438348710537, 0.0006844658055342734, -0.014460036531090736, -0.0014564745360985398, 0.014116731472313404, -0.012276612222194672, -0.006303092930465937, -0.006042180582880974, 0.010154983028769493, -0.01414419524371624, 0.020090250298380852, 0.014295250177383423, 0.01709662564098835, -0.002549045020714402, -0.017206482589244843, 0.0020632673986256123, -0.023331057280302048, -0.007621387019753456, -0.004655225668102503, 0.020886719226837158, 0.02338598482310772, -0.0038175596855580807, -0.05031488463282585, -0.013189805671572685, -0.00013024160580243915, 0.04776069149374962, -0.026626791805028915, 0.013258466497063637, -0.012661115266382694, -0.004744485020637512, 0.02348211221396923, 0.011068176478147507, -0.017233947291970253, -0.0011406332487240434, 0.02291909046471119, -0.009900936856865883, -0.007944094017148018, -0.00783423613756895, -0.003208192065358162, 0.0036321745719760656, 0.017755771055817604, 0.020763130858540535, -0.027519386261701584, -0.00536586856469512, 0.036362942308187485, 0.007799906190484762, -0.029963722452521324, 0.00587396090850234, 0.007140758913010359, -0.0004033842124044895, 0.0006600052583962679, -0.018964208662509918, -0.005286908242851496, -0.019746944308280945, 0.024264847859740257, -0.0014496083604171872, -0.007971558719873428, 0.029194718226790428, -0.002537029329687357, -0.03169398382306099, 0.008493383415043354, 0.036335475742816925, 0.014762146398425102, 0.028645429760217667, -0.007511529140174389, -0.0028992167208343744, -0.012139290571212769, 0.01538009662181139, -0.010896523483097553, -0.03965867683291435, -0.01413046382367611, 0.02971654385328293, -0.007772441487759352, -0.011013247072696686, -0.055917635560035706, 0.0005591592052951455, 0.015160380862653255, -0.010910255834460258, 0.008259935304522514, -0.012283478863537312, -0.0258028581738472, 0.02392154186964035, -0.01509171910583973, -0.03413832187652588, -0.019403640180826187, -3.4732882340904325e-05, 0.025281032547354698, -0.02386661432683468, -0.04040021821856499, -0.0016487257089465857, 0.012338407337665558, 0.016451209783554077, 0.0020461021922528744, -0.002372242510318756, 0.022616980597376823, 0.010546351782977581, -0.008225604891777039, -0.021641992032527924, 0.009818543680012226, -0.04476706683635712, 0.032957348972558975, -0.0018384021241217852, 0.02105150744318962, 0.017439929768443108, -0.024539493024349213, 0.0013088530395179987, -0.012022566050291061, 0.013251600787043571, -0.03693969547748566, 0.002118196338415146, 0.0352368988096714, 0.01855224184691906, -0.01538009662181139, -0.0020752830896526575, 0.003944582771509886, 0.004153999034315348, 0.00450760405510664, -0.0009166262461803854, -0.013807755894958973, 0.008726831525564194, 0.016286423429846764, -0.02055714651942253, -0.020419824868440628, 0.0030193738639354706, -0.009214325807988644, 0.009797945618629456, 0.009440907277166843, 0.007490930613130331, 0.009921534918248653, -0.003796961158514023, 0.028645429760217667, 0.026448272168636322, 0.020639540627598763, -0.030924979597330093, -0.01616283319890499, 0.03416578471660614, 0.026585595682263374, 0.00402354309335351, -0.00524571118876338, 0.010532619431614876, -0.013773425482213497, 0.0011200349545106292, -0.021765582263469696, -0.0025868085213005543, -0.0204747524112463, 0.008967145346105099, -0.00561991473659873, -0.015503685921430588, -0.007463466376066208, 0.007635119371116161, 0.0007050640997476876, -0.01613536849617958, -0.005784701555967331, 0.03232566639780998, -0.00806768424808979, -0.020667003467679024, 0.0034073092974722385, -0.0063683209009468555, 0.01220795139670372, 0.008967145346105099, 0.009797945618629456, 0.050534602254629135, -0.001167239504866302, 0.0046929894015192986, -0.5857619643211365, -0.02837078459560871, 0.0036630721297115088, -0.01558608002960682, 0.025487016886472702, 0.00044071872252970934, -0.0034347737673670053, 0.020227573812007904, -0.026709185913205147, 0.015132916159927845, 0.0038827876560389996, 0.023591969162225723, 0.00037484694621525705, -0.015050522983074188, 0.01708289235830307, -0.019829338416457176, 0.011603733524680138, -0.0297714713960886, -0.001643576193600893, 0.018236400559544563, -0.01193330716341734, 0.021751850843429565, -0.007257482968270779, 0.015407560393214226, 0.00927612092345953, 0.013814622536301613, -0.011795984581112862, -0.0077587091363966465, 0.02250712364912033, 0.047129008919000626, -0.02150467038154602, -0.0009337915689684451, 0.001253924099728465, -0.007024034857749939, 0.044245243072509766, -0.007504662964493036, 0.0013474749866873026, 0.021628260612487793, -0.000182166593731381, 0.03152919560670853, -0.014212857000529766, -0.014528698287904263, 0.012860232032835484, -0.0032699869479984045, 0.013553709723055363, -0.015064255334436893, 0.015009325928986073, -0.011356553062796593, -0.005822464823722839, 0.029689079150557518, 0.019348710775375366, -0.007525261491537094, 0.019843069836497307, -0.008850421756505966, 0.022177549079060555, 0.013533111661672592, 0.022053958848118782, -0.03265523910522461, 0.0047891149297356606, -0.012242281809449196, -0.012111825868487358, 0.035923510789871216, -0.004380580969154835, -0.008266801945865154, 0.0032820026390254498, 0.008225604891777039, -0.0029781770426779985, -0.0008509690524078906, 0.0015783481067046523, -0.009605693630874157, 0.0195684265345335, -0.015201576985418797, 0.0020855823531746864, -0.009200593456625938, -0.00022379242000170052, 0.03161159157752991, 0.014597359113395214, -0.01414419524371624, 0.008829822763800621, 0.016204029321670532, 0.0022332037333399057, 0.025500748306512833, -0.03413832187652588, -0.016011778265237808, 0.005190782714635134, -0.0323805958032608, -0.036362942308187485, 0.0009466655319556594, 0.015723401680588722, 0.0055649857968091965, -0.012050030753016472, 0.011995102278888226, -0.010347234085202217, -0.03504464775323868, 0.015956850722432137, 0.03078765794634819, -0.027725370600819588, -0.004500737879425287, 0.0063236914575099945, -0.0035909777507185936, -0.021161364391446114, 0.016217762604355812, 0.013395789079368114, 0.002262384630739689, 0.05226486176252365, -0.02301521599292755, -0.026173628866672516, 0.014212857000529766, 0.023276127874851227, -0.025583142414689064, 0.013608639128506184, -0.021751850843429565, -0.01363610289990902, -0.025679267942905426, -0.008919082581996918, -0.03221580758690834, 0.03303974121809006, 0.006804319564253092, 0.03408339247107506, 0.002226337557658553, 0.013814622536301613, 0.01100638136267662, 0.014817074872553349, 0.011885244399309158, 0.0026812176220119, 0.026201091706752777, 0.009207459166646004, -0.018648367375135422, -0.029496828094124794, 0.003920551389455795, -0.003323199460282922, 0.007161357440054417, 0.030485548079013824, -0.024306045845150948, 0.0025421788450330496, -0.01701423153281212, 0.008376659825444221, -0.007030901033431292, 0.019637087360024452, -0.00016467946988996118, -0.033012278378009796, -0.02000785805284977, -0.0018092211103066802, -0.001467632013373077, -0.002986759878695011, -0.021312419325113297, -0.01849731244146824, -0.0011294757714495063, 0.00924865622073412, 0.01658853329718113, -0.011047578416764736, -0.014212857000529766, -0.014803342521190643, 0.026736648753285408, -0.006011283025145531, 0.002126778941601515, -0.00208043260499835, -0.015970582142472267, -0.013258466497063637, 0.002408289583399892, -0.0031378143467009068, -0.0002325896202819422, -0.02881021611392498, 0.012132423929870129, -0.029441898688673973, 0.003498285310342908, -0.0014599076239392161, 0.021806780248880386, -0.011178034357726574, -0.03765377029776573, -0.013148609548807144, 0.01437764335423708, 0.004847476724535227, 0.006306526251137257, 0.01269544567912817, -0.020804326981306076, -0.014734681695699692, 0.007092696148902178, -0.001729402574710548, -0.016780784353613853, 0.0020478186197578907, -0.0022881326731294394, -0.004668958019465208, 0.0002984614111483097, 0.00904267281293869, 0.024731744080781937, 0.026558130979537964, -0.01461109146475792, -0.0036493397783488035, -0.014116731472313404, -0.0039480156265199184, 0.00696224020794034, 0.012832768261432648, 0.02922218292951584, 0.004377148114144802, -0.004734185989946127, -0.0054688602685928345, 0.015929386019706726, -0.004579698201268911, 0.020680736750364304, 0.01603924296796322, 0.015036790631711483, -0.0092967189848423, -0.028617965057492256, 0.02293282188475132, -0.022205013781785965, 0.02444336749613285, -0.020570877939462662, 0.009818543680012226, -0.00027528827195055783, -0.0018675831379368901, -0.012812169268727303, -0.01715155318379402, 0.010251108556985855, -0.0005947771715000272, 0.018785689026117325, 0.011322222650051117, -0.002574792830273509, 0.00596665358170867, 0.028645429760217667, -0.01269544567912817, -0.006155471783131361, -0.0019156459020450711, -0.039301637560129166, 0.0035841118078678846, -0.00501912971958518, -0.011500741355121136, 0.025651803240180016, -0.024306045845150948, -0.011638063937425613, -0.024100061506032944, -0.004219227470457554, -0.0034519389737397432, 0.001846984727308154, 0.02449829690158367, -0.020255036652088165, 0.035813651978969574, -0.01855224184691906, 0.02352330833673477, -0.0069382088258862495, -0.0248278696089983, 0.002768760547041893, 0.0076625836081802845, -0.015888188034296036, 0.02779403142631054, 0.012455131858587265, 0.053445834666490555, 0.013739095069468021, -0.00924865622073412, 0.017838165163993835, -0.027670441195368767, -0.0035394818987697363, -0.01174792181700468, 0.0171652864664793, -0.008713099174201488, -0.013794023543596268, -0.001156082027591765, 0.018442383036017418, 0.005894559435546398, 0.023331057280302048, -0.004912704695016146, 0.030924979597330093, 0.016286423429846764, -0.006560572423040867, 0.013114278204739094, -0.027505654841661453, 0.006145172286778688, -0.029634149745106697, 0.02147720567882061, -0.026132430881261826, -0.02105150744318962, -0.006642965599894524, -0.019225120544433594, -0.007394805084913969, 0.018826885148882866, -0.0022692508064210415, 0.03078765794634819, 0.024814138188958168, 0.03935656696557999, -0.005317805800586939, -0.03619815409183502, -0.024209920316934586, 0.0161902979016304, -0.008294266648590565, -0.0007012019632384181, 9.505276830168441e-05, -0.015366364270448685, -0.016245227307081223, -0.011397750116884708, 0.02043355628848076, -0.011912708170711994, 0.01463855616748333, -0.00906327087432146, 0.002653753152117133, -0.005492891650646925, 0.006255030166357756, 0.0009174845181405544, -0.007655717432498932, -0.01119176670908928, 0.0032013258896768093, -0.0023464947007596493, 0.006721925921738148, -0.016464943066239357, -0.01998039335012436, 0.06487105041742325, 0.0014839390059933066, 0.022314872592687607, -0.017948023974895477, -0.013217270374298096, 0.011088774539530277, 0.008431588299572468, -0.00852771382778883, -0.011741056106984615, -0.014281517826020718, 0.013601772487163544, -0.005726339295506477, 0.007545859552919865, 0.004940169397741556, 0.013333993963897228, 0.014940665103495121, -0.03424817696213722, -0.017481127753853798, -0.02298775129020214, 0.00880922470241785, -0.012530658394098282, 0.006330557633191347, 0.01608043909072876, -0.006649831775575876, -0.027038758620619774, -0.007291813381016254, -0.020117715001106262, -0.009166263043880463, 0.0021405110601335764, -0.0253496952354908, 0.007243750616908073, 0.0015886472538113594, 0.02007651887834072, -0.009914669208228588, 0.015695936977863312, -0.0011526489397510886, -0.0010307753691449761, -0.002119912765920162, 0.018154006451368332, -0.007271215319633484, 0.012791571207344532, 0.02486906573176384, 0.002614272991195321, 0.009454639628529549, -0.011356553062796593, 0.003913685213774443, -0.007312411908060312, 0.022328604012727737, 0.015050522983074188, -0.028645429760217667, 0.004184896592050791, 0.012908294796943665, 0.007696914486587048, 0.013993141241371632, 0.006327124312520027, 0.030979909002780914, 0.007360474672168493, 0.05402258783578873, -0.026722917333245277, 0.00832859706133604, 0.012338407337665558, 0.005980385467410088, 0.014556162990629673, 0.0025885251816362143, -0.004487005993723869, -0.0002231487160315737, -0.0060318815521895885, 0.003508584573864937, 0.006330557633191347, -0.03765377029776573, 0.025253569707274437, 0.0015011042123660445, -0.044712137430906296, -0.008603241294622421, 0.027134884148836136, 0.015613543801009655, -0.019348710775375366, -0.007284947205334902, 0.008150077424943447, -0.017865629866719246, 0.003467387752607465, -0.016931837424635887, 0.01218735333532095, -0.009715551510453224, -0.006406084634363651, -0.014940665103495121, -0.0161902979016304, -0.0011509323958307505, -0.02974400855600834, 0.01417165994644165, 0.026983829215168953, -0.05572538450360298, -0.03693969547748566, 0.0028065242804586887, 0.016506139189004898, 0.03268270567059517, 0.011576268821954727, -0.02096911333501339, -0.01895047537982464, 0.014116731472313404, -0.0030485547613352537, -0.016739586368203163, -0.010154983028769493, -0.0331496000289917, 0.014460036531090736, -0.014666019938886166, 0.01119176670908928, -0.012935759499669075, -0.006076511461287737, 0.029469363391399384, -0.012386470101773739, 0.02537715807557106, -0.004202061798423529, -0.01849731244146824, 0.006433549337089062, 0.011878377757966518, 0.0036596390418708324, -0.002049535047262907, 0.029139788821339607, -0.01651987060904503, 0.03724180534482002, -0.05281415209174156, -0.016780784353613853, -0.010306037962436676, -0.008891617879271507, 0.007593922317028046, 0.029002467170357704, -0.002787642413750291, -0.0053693014197051525, 0.005585583858191967, 0.024306045845150948, -0.037351664155721664, 0.020172644406557083, 0.027011293917894363, 0.015778331086039543, 0.0014341596979647875, -0.01763218268752098, 0.017481127753853798, 0.000252758851274848, 0.0028254061471670866, 0.02442963421344757, -0.020749397575855255, 0.03710448369383812, 0.020364895462989807, 0.02101030945777893, -0.005753803998231888, -0.008884752169251442, -0.032105952501297, -0.01657480001449585, -0.006306526251137257, -0.003294018330052495, 0.02974400855600834, -0.011734189465641975, -0.023715559393167496, -0.011287892237305641, -0.009598827920854092, -0.03364396095275879, 0.03847770392894745, -0.028617965057492256, -0.009145664051175117, 0.017233947291970253, -0.01246886420994997, -0.0004900689236819744, -0.018895545974373817, 0.005609615705907345, -0.02922218292951584, -0.015723401680588722, 0.0025473283603787422, 0.00043492543045431376, 0.004593430552631617, 0.028123604133725166, 0.0033300654031336308, -0.014926932752132416, -0.038230523467063904, 0.012640516273677349, 0.005376167595386505, -0.013217270374298096, 0.002761894604191184, 0.014720949344336987, 0.02787642367184162, 0.016204029321670532, 0.01289456244558096, 0.008239337243139744, 0.0078067719005048275, -2.0082043192815036e-06, -0.017659645527601242, -0.013217270374298096, -0.021669456735253334, 0.011026979424059391, -0.009612560272216797, -0.0020169210620224476, 0.015819527208805084, 0.015572347678244114, -0.01024424284696579, -0.007353608496487141, 0.03188623487949371, 0.004552233964204788, 0.013622370548546314, -0.0033197663724422455, -0.043201591819524765, -0.020419824868440628, 0.012310943566262722, 0.004387447144836187, -0.002073566662147641, -0.021216293796896935, -0.022218747064471245, 0.011802850291132927, -0.011857779696583748, 0.03076019324362278, 0.00709956232458353, 0.0035257497802376747, -0.011404615826904774, 0.005383033771067858, 0.010999515652656555, 0.0036012770142406225, -0.01143894623965025, 0.022644445300102234, -0.00903580617159605, 0.018868083134293556, 0.017673378810286522, 0.020818058401346207, 0.01803041622042656, 0.025555677711963654, -0.007223152555525303, -0.00347940344363451, 0.011253561824560165, 0.006042180582880974, -0.016835711896419525, 0.013622370548546314, 0.004129967652261257, -0.03312213718891144, -0.018648367375135422, -0.015750866383314133, -0.019829338416457176, -0.005036294925957918, 0.01467975229024887, 0.00906327087432146, -0.010642477311193943, -0.02493772841989994, -0.006636099424213171, -0.004809712991118431, -0.016300154849886894, 0.04166358336806297, 0.01098578330129385, 0.012194219045341015, 0.05893872678279877, 0.0008282250491902232, -0.0015706237172707915, -0.04204808548092842, -0.015860725194215775, -0.002614272991195321, 0.03919178247451782, 0.036802373826503754, -0.026722917333245277, -0.025047585368156433, 0.008919082581996918, 0.006725359242409468, 0.003439923282712698, -0.029963722452521324, 0.010827862657606602, 0.01656106859445572, -0.009173128753900528, -0.022342335432767868, 0.014995593577623367, 0.002420305274426937, 0.02486906573176384, -0.008980877697467804, -0.0037866621278226376, -0.018758224323391914, 0.007161357440054417, -0.028027478605508804, 0.003577245632186532, 0.015311434864997864, 0.016506139189004898, 0.014954397454857826, 0.00758705660700798, -0.026722917333245277, -0.010669942013919353, -0.04248751699924469, 0.0029301142785698175, 0.0025627771392464638, 0.023756755515933037, 0.0058052996173501015, -0.0030897515825927258, 0.03375381976366043, 0.008980877697467804, 0.004449242260307074, -0.015229041688144207, 0.001817803829908371, 0.047595903277397156, -0.007944094017148018, -0.005897992290556431, 0.004589997697621584, 0.002528446726500988, 0.021820511668920517, 0.01812654174864292, -0.002430604537948966, 0.007896031253039837, -0.026915168389678, -0.008871019817888737, 0.0224247295409441, -0.001466773683205247, 0.02044728957116604, -0.028068676590919495, -0.00353604881092906, 0.011782252229750156, -0.01996666006743908, 0.012132423929870129, -0.002535312669351697, -0.034962255507707596, -0.013821488246321678, -0.015613543801009655, -0.02245219424366951, 0.01052575372159481, -0.008369793184101582, -0.006694461684674025, 0.01763218268752098, 0.05119374766945839, -0.00696224020794034, 0.013615504838526249, -0.018167737871408463, 0.004112802445888519, -0.021696921437978745, 0.003992645535618067, -0.01910153031349182, -0.034412965178489685, 0.028617965057492256, 0.017700843513011932, -0.01052575372159481, -0.029441898688673973, 0.01608043909072876, 0.02683277428150177, 0.01511918380856514, 0.022218747064471245, 0.006148605607450008, 0.005970086436718702, -0.0011226097121834755, 0.0005119546549394727, -0.034412965178489685, 0.0012865382013842463, -0.00538646662607789, 0.005084357690066099, 0.00906327087432146, -0.01809907704591751, 0.009969597682356834, 0.008850421756505966, -0.0044149113819003105, 0.011054444126784801, -0.012791571207344532, -0.014830807223916054, 0.0001958988286787644, -0.017000500112771988, -0.00347940344363451, 0.012077495455741882, -0.013855818659067154, -0.011164302006363869, -0.027711637318134308, 0.0040304092690348625, 0.013787157833576202, -0.024086330085992813, 0.0002928827016148716, 0.03597844019532204, -0.018703294917941093, 0.0036493397783488035, -0.005276608746498823, -0.02629721909761429, -0.013794023543596268, -0.011013247072696686, -0.02004905417561531, -0.026091234758496284, -0.013196672312915325, 0.048612091690301895, 0.015970582142472267, -0.01708289235830307, -0.02735459990799427, -0.012015700340270996, -0.009090735577046871, 0.004129967652261257, 0.005770969204604626, 0.03707701712846756, 0.015901921316981316, 0.016767051070928574, 0.014048069715499878, 0.020776862278580666, 0.0012582155177369714, 0.019664552062749863, -0.001312286127358675, -0.013299663551151752, -0.014089266769587994, -0.005973519757390022, 0.0041608652099967, 0.000660863530356437, -0.010999515652656555, -0.02000785805284977, -0.003563513280823827, 0.004342817235738039, 0.01024424284696579, 0.020145179703831673, 0.007175089791417122, -0.03260030969977379, -0.004339384380728006, -0.03611576184630394, -0.013025019317865372, -0.009749882854521275, -0.007284947205334902, -0.008033353835344315, -0.008912216871976852, 0.01760471798479557, -0.002603973960503936, -0.014501233585178852, 0.005146152805536985, -0.0019379607401788235, -0.014102999120950699, -0.007847968488931656, -0.03740658983588219, -0.013622370548546314, -0.030458083376288414, 0.010422761552035809, 0.027450725436210632, -0.009516434744000435, -0.010745469480752945, 0.041745975613594055, 0.009344781748950481, 0.0023379118647426367, -0.013031885027885437, 0.019760677590966225, -0.03081512078642845, -0.0001346402132185176, 0.016794515773653984, -0.0030279564671218395, -0.007944094017148018, -0.0037180010695010424, 0.018744492903351784, -0.029606685042381287, -0.0039033859502524137, 6.962669431231916e-05, -0.018359990790486336, -0.03740658983588219, 0.0033455141820013523, 0.008445320650935173, -0.015778331086039543, 0.01146641094237566, -0.0017937724478542805, -0.014075534418225288, 0.023715559393167496, -0.04358609393239021, 0.015613543801009655, -0.022740570828318596, 0.03507211059331894, 0.009585095569491386, 0.006481612101197243, -0.02204022742807865, -0.006488478276878595, 0.012331541627645493, -0.04262483865022659, -0.007037767209112644, 0.28563034534454346, -0.0032528217416256666, 0.03128201887011528, 0.0302932970225811, 0.009914669208228588, 0.021751850843429565, -0.0038072604220360518, -0.009866606444120407, -0.008376659825444221, 0.014624823816120625, -0.027945086359977722, -0.005050027277320623, 0.00030661490745842457, -0.015187844634056091, 0.009859740734100342, -0.009193726815283298, 0.006076511461287737, -0.03526436537504196, -0.04202061891555786, -0.015242774039506912, 0.0030983341857790947, 0.012159888632595539, -0.023674363270401955, -0.025198640301823616, 0.0021439441479742527, 0.002576509490609169, -0.023248663172125816, 0.015201576985418797, 0.017192751169204712, 0.027011293917894363, -0.006165770813822746, 0.011651796288788319, -0.0011140271089971066, -0.007861700840294361, -0.010209912434220314, -0.004329085350036621, 0.026722917333245277, 0.022713106125593185, 0.044657208025455475, 0.0035257497802376747, -0.009859740734100342, -0.024594422429800034, 0.012633650563657284, -0.021188829094171524, -0.009434041567146778, -0.01661599613726139, -0.019376175478100777, -0.022589515894651413, -0.0014856555499136448, 0.01653360389173031, -0.013752827420830727, -0.017398733645677567, 0.05086417496204376, 0.008108881302177906, 0.006107408553361893, -0.005242278333753347, 0.018222667276859283, 0.003917118068784475, 0.004593430552631617, 0.028453178703784943, -0.0009955866262316704, 0.04350370168685913, -0.026146164163947105, 0.023207467049360275, -0.00832859706133604, 0.002646887209266424, -0.026228556409478188, 0.009097601287066936, -0.01565474085509777, -0.019760677590966225, -0.0038724886253476143, 0.01315547525882721, -0.0017937724478542805, -0.01564100943505764, -0.04210301488637924, -0.020200109109282494, 0.048584625124931335, 0.019348710775375366, 0.04506917670369148, 0.0343305729329586, -0.005836197175085545, 0.010463958606123924, 0.0028151068836450577, 0.0031326645985245705, -0.019307514652609825, -0.009694953449070454, 0.007532127667218447, -0.01144581288099289, -0.014514965936541557, 0.007827370427548885, 0.006443848367780447, -0.018813153728842735, 0.02094164863228798, -0.05067192390561104, -0.001457332749851048, 0.0018023550510406494, -0.0061795031651854515, 0.012750374153256416, 0.0019997558556497097, -0.0011286175576969981, -0.018923010677099228, 0.01759098470211029, 0.015050522983074188, 0.03622562065720558, -0.017412466928362846, -0.002827122574672103, 0.01366356760263443, 0.009832276031374931, -0.0028820515144616365, -0.03773616626858711, -0.00898774340748787, -0.02985386550426483, 0.028590500354766846, -0.004184896592050791, -0.014240321703255177, 0.0013157192151993513, -0.02202649414539337, -0.02725847437977791, -0.0005183916655369103, 0.001651300466619432, 0.012990688905119896, -0.022822964936494827, -0.024045132100582123, -0.0006192377186380327, -0.018703294917941093, -0.02530849725008011, -0.018346257507801056, -0.016451209783554077, 0.003721433924511075, -0.020749397575855255, 0.018346257507801056, -0.03312213718891144, 0.025253569707274437, 0.009591962210834026, -0.00561991473659873, -0.007202554028481245, -0.0003171286662109196, -0.01900540478527546, 0.01653360389173031, 0.0039342837408185005, 0.008225604891777039, 0.024649349972605705, -0.004373714793473482, -0.006042180582880974, -0.0025524781085550785, -0.007944094017148018, 0.006200101226568222, -0.003556647337973118, 5.377562411013059e-05, -0.016959302127361298, -0.039741069078445435, -0.024017667397856712, -0.0008565477910451591, -0.016286423429846764, 0.0060318815521895885, -0.005609615705907345, -0.019664552062749863, -0.045618463307619095, -0.0012376171071082354, 0.011404615826904774, -0.05451694875955582, 0.012359006330370903, 0.028178533539175987, -0.02776656672358513, -0.01614910177886486, -0.003074302803725004, -0.17511337995529175, -0.008520848117768764, 0.01756351999938488, -0.042734697461128235, 0.02492399513721466, 0.005904858466237783, 0.008211872540414333, 0.0205434150993824, -0.0037694969214498997, -0.014775877818465233, 0.021298686042428017, -0.0006685879197902977, -0.015778331086039543, -0.004243258852511644, -0.015778331086039543, 0.004586564376950264, -0.033479172736406326, 0.01754978857934475, 0.06668370217084885, 0.005276608746498823, 0.03504464775323868, -0.01812654174864292, -0.011040711775422096, 0.036774907261133194, -0.00311034987680614, 0.010539486072957516, 0.002801374765112996, -0.014569894410669804, -0.011610599234700203, -0.016959302127361298, 0.009598827920854092, 0.004305053967982531, 0.007648851256817579, -0.014336447231471539, 0.009193726815283298, -0.0036802373360842466, 0.014460036531090736, -0.011878377757966518, -0.011157436296343803, 0.003237372962757945, -0.007538993842899799, 0.013773425482213497, -0.0044664074666798115, -0.001088279183022678, -0.026077503338456154, 0.003139530774205923, 0.0009827126050367951, -0.00801962148398161, -0.003268270520493388, 0.008177542127668858, 0.03152919560670853, -0.04070232808589935, -0.004054440651088953, -0.0037763628643006086, 0.01075233519077301, 0.0116998590528965, -0.002411722671240568, 0.008122613653540611, -0.02589898370206356, -0.0011200349545106292, 0.005764103028923273, -0.024663083255290985, 0.010463958606123924, 0.026599327102303505, 0.014817074872553349, -0.0166434608399868, -0.019183924421668053, 0.03312213718891144, -0.019788142293691635, 0.002420305274426937, 0.02786269225180149, -0.02585778757929802, -0.0028597365599125624, -0.003002208424732089, 0.015435025095939636, 0.003920551389455795, 0.0030554209370166063, 0.010395296849310398, -0.0010307753691449761, -0.005087791010737419, -0.0007132176542654634, 0.047019150108098984, 0.012153022922575474, 0.00080591015284881, 0.02543208748102188, 0.012997554615139961, 0.006910744123160839, -0.015064255334436893, -0.03773616626858711, -0.024772940203547478, 0.03119962476193905, -0.006412950810045004, -0.0219715666025877, 0.004054440651088953, 0.0008891618344932795, 0.0034330571070313454, -0.0006870405632071197, 0.0011105940211564302, -0.007964693009853363, 0.0016298439586535096, -0.006495344452559948, -0.012015700340270996, -0.036774907261133194, 0.019197655841708183, 0.026159895583987236, 0.010402163490653038, -0.016780784353613853, 0.019719481468200684, 0.017673378810286522, -0.007037767209112644, -0.010669942013919353, 0.0007012019632384181, 0.020694468170404434, 0.044657208025455475, -0.010182447731494904, 0.028645429760217667, -0.009928401559591293, -0.031117230653762817, -0.001214443938806653, -0.0051255542784929276, -0.0228778924793005, -0.009420309215784073, 0.018881814554333687, 0.03463268280029297, -0.006835217121988535, -0.010319770313799381, -0.049051523208618164, -0.010875925421714783, 0.00624473113566637, 0.013546844013035297, 0.012530658394098282, 0.05275922268629074, -2.5533363441354595e-05, 0.05893872678279877, -0.012146156281232834, 0.020172644406557083, -0.00041454166057519615, -0.036912232637405396, -0.010106920264661312, -0.004119668621569872, -0.021875441074371338, -0.007298679556697607, -0.004438942763954401, -0.006430116016417742, -0.0018984805792570114, 0.012194219045341015, -0.011775386519730091, 0.00019836633873637766, -0.0001939677313202992, -0.00830113235861063, -0.006639532744884491, 0.02394900657236576, -0.027574315667152405, 0.020859256386756897, 0.021806780248880386, 0.015764597803354263, 0.0063236914575099945, -0.03644533455371857, -0.013169207610189915, -0.016025511547923088, 0.03191370144486427, -0.0009252089075744152, -0.040784720331430435, -0.04100443422794342, 0.02434724196791649, -0.0018778822850435972, 0.017426198348402977, -0.0013285931199789047, 0.0019791575614362955, -0.0024374707136303186, -0.014350179582834244, 0.008946547284722328, -0.02533596195280552, 0.022713106125593185, -0.0031515464652329683, -0.00010427911183796823, -0.038724884390830994, 0.0014564745360985398, -0.035374220460653305, -0.01616283319890499, 0.022095156833529472, 0.022699374705553055, 0.014391375705599785, 0.004717020783573389, -0.037351664155721664, -0.0008290833211503923, -0.011198632419109344, 0.0008951696800068021, 0.00011640209413599223, 0.014034338295459747, -0.0026108399033546448, 0.013114278204739094, -0.02578912489116192, -0.01860716938972473, 0.03279256075620651, -0.02297401800751686, -0.023646898567676544, 0.012654248625040054, -0.004157432354986668, 0.050012778490781784, -0.0322432741522789, -0.004308486822992563, -0.0006132298149168491, -0.02448456361889839, 0.02587151899933815, -0.01051888708025217, -0.005510056857019663, -0.008500250056385994, 0.0011989952763542533, 0.006073078140616417, 0.012530658394098282, 0.020694468170404434, 0.0018040715949609876, 0.0037729297764599323, 0.01608043909072876, -0.008287400007247925, 0.010457091964781284, 0.001320868730545044, -0.004095637239515781, -0.0171652864664793, -0.021696921437978745, -0.014034338295459747, -0.013251600787043571, 0.00524571118876338, -0.024031400680541992, 0.016327619552612305, -0.032929886132478714, -0.008774894289672375, -0.08222858607769012, 0.0022023061756044626, 0.007628253195434809, -0.006632666569203138, 0.018401186913251877, 0.005235412158071995, 0.03119962476193905, 0.000845390313770622, 0.0010573816252872348, 0.004823445342481136, -0.022053958848118782, 0.019225120544433594, 0.0022005897480994463, -0.007703780196607113, -0.024772940203547478, -0.005520355887711048, 0.007353608496487141, 0.015256506390869617, 0.02191663719713688, 0.018401186913251877, 0.028700359165668488, -0.007477198727428913, 0.017838165163993835, 0.003944582771509886, -0.04891419783234596, 0.02585778757929802, -0.029936259612441063, 0.019280049949884415, -0.006900445092469454, -0.030128510668873787, -0.007580190431326628, -0.009138798341155052, -0.0030949010979384184, 0.0029043664690107107, 0.011390883475542068, 0.003029672894626856, 0.016217762604355812, -0.004638060461729765, 0.02629721909761429, 0.02589898370206356, -0.025129979476332664, -0.028975002467632294, 0.008012755773961544, -0.010154983028769493, -0.009667488746345043, 0.011390883475542068, 0.005053460132330656, -0.008953412994742393, 0.020886719226837158, 0.01148700900375843, 0.03317706659436226, 0.011885244399309158, -0.003656205954030156, -0.018318792805075645, 0.002791075501590967, -0.04438256472349167, 0.0023482111282646656, -0.01653360389173031, -0.009282986633479595, -0.0014736398588865995, 0.014487501233816147, 0.016231494024395943, 0.016464943066239357, 0.02243846282362938, 0.0032030423171818256, -0.019156459718942642, -0.0024512028321623802, -0.006114274729043245, 0.0042226603254675865, -0.019238851964473724, -0.016396280378103256, -0.017343804240226746, 0.008891617879271507, 0.005637079942971468, 0.015750866383314133, 0.00624129781499505, -0.03573125973343849, 0.0019036302110180259, -0.026503201574087143, 0.020131448283791542, 0.0352368988096714, 0.015888188034296036, -0.0092967189848423, 0.008445320650935173, 0.039274174720048904, -0.004044141620397568, -0.0021250625140964985, -0.006196668371558189, -0.003216774668544531, 0.0007977566565386951, -0.0180716123431921, -0.017906825989484787, 0.01174792181700468, 0.005956354085355997, 0.013066215440630913, 0.0297714713960886, 0.017288876697421074, -0.019362442195415497, 0.03076019324362278, -0.005149585660547018, 0.015009325928986073, -0.01123296283185482, 0.0012762390542775393, -0.022713106125593185, -0.015833260491490364, -0.006694461684674025, 0.0005085216253064573, -0.030622869729995728, -0.023152537643909454, 0.00695880688726902, -0.028508106246590614, -0.010827862657606602, -0.025583142414689064, 0.0273683313280344, -0.009852874092757702, 0.003216774668544531, -0.008925948292016983, -0.029057396575808525, -0.01617656648159027, 0.0028734689112752676, 0.010512021370232105, 0.004953901749104261, 0.0428994819521904, -0.006169203668832779, 0.02738206461071968, 0.0034862696193158627, 0.0129014290869236, -0.03026583231985569, -0.0011389167048037052, 0.0020443855319172144, -0.01297008991241455, 0.005798433441668749, -0.009097601287066936, -0.019884267821907997, -0.01763218268752098, 0.003431340679526329, 0.014775877818465233, -0.005922023672610521, -0.023784220218658447, 0.06580483913421631, -0.00584649620577693, 0.013169207610189915, -0.010100054554641247, -0.022562051191926003, -0.007669449783861637, 0.018305061385035515, 0.0248278696089983, -0.00348112010397017, -0.01461109146475792, 0.014000006951391697, -0.011912708170711994, -0.01853850856423378, -0.026613060384988785, 0.002265817718580365, 0.0059014251455664635, -0.02342718280851841, 0.05091910436749458, -0.015819527208805084, 0.022108888253569603, 0.05514863133430481, 0.022740570828318596, 0.0033901440910995007, 0.003954881802201271, -0.01996666006743908, -0.0037248670123517513, 0.020364895462989807, -0.003285435726866126, 0.01248946227133274, -0.0229465551674366, 0.00807455088943243, 0.005228545982390642, -0.010326636023819447, -0.039686139672994614, -0.018854349851608276, 0.029139788821339607, -0.004112802445888519, -0.02241099812090397, 0.028590500354766846, 0.009921534918248653, 0.00028644572012126446, 0.013958810828626156, -0.04210301488637924, -0.018263865262269974, -0.0023670929949730635, 0.009928401559591293, -0.0058396304957568645, 0.006794020067900419, -0.0161902979016304], "4250c708-0eaa-454d-a61e-ca6949f4cab8": [-0.023374300450086594, -0.028027068823575974, 0.027958037331700325, -0.04205441102385521, 0.004103963728994131, 0.02693636156618595, -0.01043766736984253, -0.036835577338933945, 0.004162641242146492, -0.02271159179508686, 0.03131300210952759, 0.018749143928289413, -0.015325146727263927, -0.01854204572737217, -0.004362834617495537, 0.006913573946803808, 0.00986470002681017, -0.0038519962690770626, 0.008608314208686352, -0.001540280762128532, 0.019080497324466705, 0.005425930023193359, 0.006972251459956169, -0.01333701889961958, -0.012411988340318203, -0.006240509916096926, 0.01576695218682289, -0.017147596925497055, 0.015325146727263927, -0.0022935946471989155, 0.031009260565042496, 0.007938701659440994, 0.002317755715921521, -0.01696811243891716, -0.042634282261133194, 0.002773368265479803, 0.0011933939531445503, -0.004873672500252724, 0.019991721957921982, 0.005988542456179857, 0.01892862655222416, 0.009664506651461124, 0.007131025195121765, 0.006992960814386606, -0.010561925359070301, 0.02037830278277397, -0.03818860650062561, 0.006910122465342283, -0.005971284583210945, 0.01695430651307106, -0.001943256240338087, 0.02191081829369068, -0.02082010917365551, -0.0021952237002551556, 0.018238304182887077, -0.0022055786103010178, -0.014096373692154884, 0.018390174955129623, -0.0044939955696463585, -0.005922961980104446, 0.010817344300448895, 0.02079249545931816, -0.02932487428188324, 0.018362563103437424, -0.005098027177155018, 0.017189016565680504, -0.012674310244619846, 0.02617700770497322, -0.01384785771369934, -0.0025835298001766205, 0.031009260565042496, 0.037912480533123016, 0.005840123165398836, 0.0052015758119523525, 0.03203093633055687, 0.00588499428704381, -0.025169137865304947, -0.0039175767451524734, 0.019563723355531693, -0.004973769187927246, -0.0035154642537236214, -0.009533345699310303, 0.003572415793314576, -0.011811408214271069, 0.0144691476598382, 0.011052053421735764, -0.009319345466792583, 0.008394314907491207, -0.005947123281657696, -0.019591335207223892, 0.0066512515768408775, -0.002050256123766303, 0.018334949389100075, 0.011293666437268257, 0.0047079953365027905, 0.0023125784937292337, -0.014979985542595387, 0.018956240266561508, -0.023415720090270042, -0.02385752461850643, -0.017534175887703896, 0.012453407049179077, -0.015435597859323025, -0.006965348031371832, -0.03893415629863739, -0.038022931665182114, 0.02275300957262516, 0.02348475158214569, 0.014193018898367882, 0.004939253441989422, -0.030567454174160957, 0.010140828788280487, -0.0033739483915269375, -0.024851588532328606, -0.011224634014070034, -0.008566894568502903, 0.03382577374577522, -0.023788493126630783, -0.01654011383652687, -0.009975152090191841, 0.017547983676195145, 0.023650428280234337, 0.014289663173258305, 0.0064959293231368065, 0.016305403783917427, 0.01078973151743412, -0.007621153723448515, 0.0060713812708854675, 0.0017447886057198048, -0.013640761375427246, 0.001308160019107163, -0.0011692327680066228, -0.0033912064973264933, 0.011963278986513615, -0.021772753447294235, -0.0073657347820699215, -0.003941738046705723, -0.009664506651461124, -0.029987584799528122, -0.007144831586629152, 0.0231948159635067, 0.015200888738036156, -0.011148698627948761, -0.016471080482006073, -0.0031340615823864937, 0.034902676939964294, -0.002818239154294133, -0.0019898528698831797, 0.0072345738299191, 0.0003190581628587097, 0.013261083513498306, -0.00772470235824585, 0.013205857947468758, 0.002146901097148657, 0.014565791934728622, -0.020985785871744156, 0.0013556196354329586, 0.026439329609274864, -0.02006075531244278, -0.032610807567834854, 0.025334814563393593, 0.02585945837199688, -0.01575314626097679, -0.029048746451735497, -0.008539281785488129, 0.017989788204431534, 0.026839716359972954, -0.0010605070274323225, -0.0010613698977977037, 0.01096231210976839, 0.006230155471712351, 0.019453272223472595, -0.02076488360762596, 0.017851725220680237, 0.01931520737707615, 0.012833083979785442, 0.006620187312364578, 0.009188184514641762, -0.004435318522155285, 0.003541351528838277, -0.002947674598544836, -0.01848682016134262, -0.006164574529975653, 0.003941738046705723, -0.0065718647092580795, -0.013785728253424168, 0.010499795898795128, -0.014220631681382656, -0.0115421824157238, 0.003487851470708847, 0.02550049126148224, 0.050697240978479385, -0.012681213207542896, -0.022255977615714073, -0.592461884021759, -0.021344752982258797, -0.012639794498682022, 0.017520369961857796, 0.0015825630398467183, 0.015905017033219337, 0.0033773998729884624, 0.022490687668323517, -0.0463620200753212, 0.026384104043245316, -0.017244242131710052, 0.018293531611561775, -0.00024269129789900035, -0.007807540707290173, -0.013406051322817802, -0.04346266761422157, 0.011134892702102661, -0.005425930023193359, -0.006388929206877947, -0.005015188828110695, -0.022973913699388504, -0.003972802776843309, -0.019577529281377792, -0.003009803593158722, 0.002193497959524393, 0.015173275955021381, -0.004100512247532606, -0.02551429718732834, 0.035289257764816284, 0.023222429677844048, -0.008960378356277943, 0.0048598661087453365, 0.014358695596456528, -0.013261083513498306, 0.04506421461701393, -0.026301264762878418, -0.02233881689608097, 0.05243685096502304, -0.00137115188408643, 0.04053570330142975, -0.016830047592520714, -0.02197984978556633, 0.009333152323961258, 0.004770124331116676, -0.023829912766814232, 0.015987856313586235, -0.007089606020599604, -0.01482811477035284, 0.018707724288105965, -0.012556955218315125, -0.003889963962137699, -0.02164849452674389, 0.034157127141952515, -0.029932357370853424, 0.00865663681179285, 0.004307608585804701, 0.04197157174348831, -0.016664370894432068, 0.0034308999311178923, -0.03164435550570488, -0.02392655797302723, 0.019936496391892433, -0.007317412178963423, -0.021027205511927605, -0.01652630604803562, -0.007144831586629152, -0.01540798507630825, -0.005539833568036556, 0.006312993820756674, -0.002951126080006361, 0.002335013821721077, -0.009188184514641762, 0.013654567301273346, 0.007372638210654259, 0.019770819693803787, 0.03885131701827049, 0.022104106843471527, -0.018831981346011162, -0.011259150691330433, 0.011742375791072845, -0.022117914631962776, -0.004583737347275019, -0.005053156521171331, -0.022628752514719963, 0.005042801611125469, -0.007200057618319988, -0.012991858646273613, -0.009505732916295528, 0.002067514229565859, 0.010133925825357437, 0.014413921162486076, 0.022918688133358955, 0.012826181016862392, -0.04387686029076576, 0.0051290919072926044, 0.010085603222250938, -0.01578075811266899, -0.010596441105008125, -0.0043386733159422874, 0.020613012835383415, -0.02696397341787815, -0.006382026243954897, 0.005546736530959606, -0.0004573382611852139, 0.036863189190626144, -0.008801604621112347, -0.04550601914525032, -0.01275714859366417, 0.031810034066438675, -0.009001797996461391, -0.027240103110671043, -0.00741405738517642, -0.008415023796260357, -0.019052885472774506, 0.01804501563310623, -0.03352203220129013, 0.024975847452878952, 0.006685767788439989, 0.00028367916820570827, -0.013771922327578068, 0.014634824357926846, 0.011210828088223934, 0.031395841389894485, -0.008497863076627254, 0.004103963728994131, -0.0021865947637706995, 0.027668101713061333, -0.008580701425671577, -0.019812239333987236, -0.0010907086543738842, 0.012577665038406849, -0.010658570565283298, 0.009388377889990807, -0.01818307861685753, 0.006830735132098198, 0.012004697695374489, 0.010520505718886852, -0.018362563103437424, 0.03658706322312355, -0.013247277587652206, -0.018790561705827713, -0.012957341969013214, 0.0057848975993692875, -0.014179212041199207, -0.012301536276936531, -0.019770819693803787, -0.0010061442153528333, 0.012094439938664436, 0.01575314626097679, -0.0030253357253968716, 0.015187081880867481, 0.0024540943559259176, -0.0005229188245721161, 0.014317276887595654, -0.02004694752395153, -0.004024576861411333, -0.02088914066553116, -0.021703720092773438, -0.0020692399702966213, -0.007876573130488396, 0.011217731051146984, -0.020226432010531425, -0.02387133240699768, 0.004397350363433361, -0.013116116635501385, 0.0011493859346956015, -0.018970046192407608, 0.020613012835383415, -0.03001519665122032, -0.039928220212459564, -0.023622816428542137, -0.03205854818224907, 0.013592438772320747, 0.006854896433651447, -0.02427171915769577, -0.022601138800382614, -0.019895076751708984, 0.0230843648314476, -0.02232501097023487, -0.020530173555016518, 0.02551429718732834, -0.009954442270100117, 0.0008767088293097913, -0.003738093189895153, 0.03418474271893501, 0.03708409145474434, 0.03573106229305267, 0.01060334499925375, -0.013123019598424435, 0.004721801728010178, -0.013123019598424435, -0.0036379965022206306, 0.0014194744871929288, 0.007552121765911579, 0.0036069320049136877, -0.00415228633210063, 0.02312578447163105, 0.008380508050322533, 0.005581252742558718, 0.006154220085591078, 0.028745004907250404, 0.022973913699388504, 0.007407153956592083, -0.027502425014972687, 0.013765019364655018, -0.04362834617495537, 0.03327351436018944, 0.0012210068525746465, 0.012073730118572712, 0.01930140145123005, 0.0019467078382149339, -0.03537209331989288, -0.0212481077760458, -0.011873536743223667, 0.007179347798228264, 0.010534312576055527, 0.0026508362498134375, 0.030539842322468758, -0.006758251693099737, 0.006975702941417694, -0.003361867740750313, 0.006803122349083424, 0.023319074884057045, -0.024547846987843513, -0.004059093073010445, -0.0008314064471051097, 0.0039175767451524734, 0.015642695128917694, 0.009491926059126854, -0.012073730118572712, -0.01038934476673603, -0.01655391976237297, 0.00963689386844635, -0.017161402851343155, 0.031092099845409393, -0.02663262002170086, 0.02431313693523407, -0.020944366231560707, 0.031395841389894485, 0.010762118734419346, -0.014123986475169659, 0.0006929106311872602, -0.0022970461286604404, -0.01384785771369934, -0.007296702824532986, 0.008815410546958447, 0.055308591574430466, 0.023995589464902878, -0.018693916499614716, -0.012239407747983932, -0.02008836716413498, -0.02240784838795662, -0.014455340802669525, 0.03040177747607231, 0.008780894801020622, -0.02195223607122898, -0.008974185213446617, 0.023015333339571953, 0.03150629252195358, 0.03666989877820015, -0.0016852483386173844, 0.03161674365401268, 0.021455205976963043, 0.020143592730164528, -0.012267020530998707, -0.029959971085190773, -0.01659533940255642, -0.01736849918961525, 0.009968248195946217, -0.023802299052476883, -0.01848682016134262, 0.010120118968188763, 0.00044223747681826353, -0.012301536276936531, 0.008097476325929165, -0.008256250061094761, 0.011735472828149796, 0.016788629814982414, 0.03926550969481468, 0.010292699560523033, -0.006523542106151581, -0.026397909969091415, 0.015490823425352573, 0.01136960182338953, 0.013571728952229023, 0.001848336891271174, -0.017989788204431534, 0.0016723048174753785, -0.008946572430431843, 0.01735469326376915, 0.023250041529536247, 0.022117914631962776, 0.0060713812708854675, -0.015021405182778835, -0.008849927224218845, -0.012066827155649662, 0.02088914066553116, -0.01815546676516533, -0.03197571262717247, -0.03164435550570488, 0.0030667551327496767, -0.01618114486336708, 0.01233605295419693, -0.01136960182338953, 0.03150629252195358, -0.002952852053567767, -0.010630957782268524, -0.009933732450008392, 0.017244242131710052, -0.01619495265185833, 0.017216628417372704, -0.01807262748479843, 0.002264255890622735, 0.009609281085431576, -0.01331631001085043, 0.012681213207542896, 0.010120118968188763, -0.01332321297377348, 0.01970178820192814, 0.009982055053114891, -0.01575314626097679, -0.035234030336141586, -0.03280409798026085, -0.02351236529648304, 0.002956303535029292, 0.011065860278904438, 0.007165541406720877, 0.011749278753995895, -0.009084636345505714, -0.007828250527381897, -0.02356759086251259, 0.00847025029361248, 0.021883204579353333, -0.009906119666993618, -0.027571456506848335, 0.03150629252195358, -0.017893144860863686, -0.011238440871238708, 0.01275714859366417, 0.010775924660265446, 0.004000415559858084, -0.0027008845936506987, 0.02581803873181343, -0.021758947521448135, 0.020115980878472328, 0.02202126942574978, 0.02086152881383896, 0.011997794732451439, 0.003544803010299802, 0.0038416413590312004, 0.005767639726400375, 0.029407713562250137, 0.014386308379471302, -0.019784625619649887, -0.010016570799052715, -0.0072345738299191, -0.02392655797302723, 0.007386444602161646, -0.00830457266420126, 0.023443331941962242, 0.024409782141447067, 0.0347646102309227, -0.0007619428215548396, 0.012039214372634888, -0.0013090228894725442, 0.029021132737398148, 0.01442772801965475, -0.01235676184296608, 0.00011562892177607864, -0.02200746349990368, 0.0013737406115978956, 0.026094168424606323, -0.0006109349196776748, -0.012059924192726612, 0.024810168892145157, 0.005170511081814766, -0.03973492980003357, 0.012674310244619846, -0.022200752049684525, 0.005563994403928518, -0.026522167026996613, -0.018735336139798164, 0.00016988390416372567, -0.014130889438092709, -0.00830457266420126, -0.0001469091366743669, -0.00830457266420126, -0.00694809015840292, -0.017547983676195145, -0.020902948454022408, -0.008228637278079987, 0.01580837182700634, -0.017451338469982147, -0.0044146087020635605, -0.006613283883780241, -0.05583323538303375, -0.029794294387102127, 0.008145798929035664, 0.028413649648427963, -0.0035827707033604383, 0.025127718225121498, -0.0096299909055233, 0.004877124447375536, 0.026052748784422874, -0.011625020764768124, -0.029518164694309235, -0.01844540238380432, -0.03357725962996483, 0.026397909969091415, 0.0024178524035960436, -0.0013858212623745203, -0.010258183814585209, -0.00559851061552763, 0.011914956383407116, 0.012156568467617035, -0.0075728315860033035, 0.014496760442852974, 0.02008836716413498, 0.0034395288676023483, -0.0018034660024568439, 0.021772753447294235, 0.02394036389887333, -0.0044180601835250854, -0.0038416413590312004, 0.00531202694401145, -0.05334807559847832, -0.01855585351586342, -0.0144829535856843, -0.018224498257040977, 0.0021399979013949633, 0.003586222417652607, -0.002107207663357258, 0.0069964127615094185, 0.0001320240698987618, 0.029932357370853424, -0.02394036389887333, -0.002050256123766303, -0.01623637229204178, 0.011307473294436932, -0.0011200472945347428, -0.008981088176369667, 0.006599477492272854, -0.006312993820756674, 0.017147596925497055, 0.021662302315235138, -0.021054819226264954, 0.04097750782966614, 0.00443877000361681, 0.02152423746883869, 0.011390311643481255, -0.022173140197992325, -0.012308440171182156, -0.01625017821788788, 0.024823976680636406, 0.0034447063226252794, 0.027129651978611946, 0.006885961163789034, -0.017920756712555885, 0.006523542106151581, -0.005947123281657696, -0.005436284933239222, 0.005850478075444698, -0.01847301423549652, -0.032555580139160156, -0.023774687200784683, 0.002719868440181017, -0.003196190344169736, -0.011341989040374756, 0.002540384652093053, -0.025693781673908234, -0.024920621886849403, 0.012536246329545975, 0.011659537442028522, 0.02001933567225933, 0.007690186146646738, -0.011424827389419079, -0.027226297184824944, 0.002027820562943816, -0.008270056918263435, -0.019370432943105698, -0.017271853983402252, -0.025541910901665688, 0.002678449032828212, 0.034129515290260315, 0.028261778876185417, 0.008111282251775265, -0.005135994870215654, 0.003631093306466937, 0.00929173268377781, 0.009381474927067757, -0.011210828088223934, 0.008345992304384708, -0.0001157367805717513, 0.0017706757644191384, 0.02428552508354187, 0.01700953207910061, -0.025666167959570885, -0.015656501054763794, -0.0026370296254754066, 0.03040177747607231, 0.0039175767451524734, 0.027971843257546425, -0.017064757645130157, -0.04851582273840904, 0.02006075531244278, -0.023443331941962242, -0.013785728253424168, 0.004587189294397831, -0.025169137865304947, -0.02164849452674389, 0.023719461634755135, 0.0032358840107917786, 0.02733674831688404, 0.019784625619649887, -0.024478815495967865, -0.020309271290898323, 0.009167474694550037, 0.0027043360751122236, -0.002621497493237257, -0.005060059484094381, -0.0003061146126128733, -0.016125919297337532, 0.03805054351687431, -0.005025543738156557, 0.00733121857047081, 0.01038934476673603, 0.009505732916295528, 0.04937182366847992, -0.0020295465365052223, 0.04893001541495323, 0.007303605787456036, -0.03172719478607178, 0.0067513482645154, -0.010341022163629532, -0.04285518452525139, -0.006685767788439989, 0.0043593826703727245, -0.017078563570976257, 0.0006402735598385334, 0.0019052884308621287, -0.0022435463033616543, 0.014759082347154617, -0.0025610942393541336, 0.0031806582119315863, 0.005843575112521648, 0.020557787269353867, 0.032638419419527054, -0.010858763940632343, 0.018348757177591324, 0.057213880121707916, 0.003077110042795539, -0.016761016100645065, -0.06980535387992859, 0.014413921162486076, 0.006944638676941395, 0.0500897578895092, 0.05541904270648956, -0.044953763484954834, 0.01652630604803562, 0.0017361596692353487, 0.005194672383368015, -0.013426761142909527, -0.02741958573460579, 0.015463210642337799, 0.02815132774412632, 0.01332321297377348, -0.027930425480008125, -0.001500587211921811, -0.01540798507630825, -0.004545769654214382, -0.03009803593158722, -0.021897010505199432, -0.02547287940979004, 0.008532378822565079, -0.0004370600508991629, 0.007137928623706102, -0.011176311410963535, -0.0032358840107917786, 0.01692669279873371, 0.014041148126125336, -0.004607898648828268, -0.0020243690814822912, -0.0032669485080987215, -1.9786082248174353e-06, -0.0174237247556448, 0.04094989597797394, 0.004556124564260244, 0.0005570034845732152, 0.002003659261390567, 0.012011601589620113, 0.0037864157930016518, -0.021883204579353333, -0.006692670751363039, 0.05602652579545975, -0.021330947056412697, -0.02579042688012123, 0.0003960721951443702, 0.0008081080741249025, 0.03984538093209267, -0.0021865947637706995, -0.005173962563276291, -0.0007727291085757315, 0.0037449963856488466, -0.010755215771496296, -0.0006204268429428339, -0.021455205976963043, 0.004014221951365471, -0.01078973151743412, -0.013123019598424435, -0.0036069320049136877, -6.827714969404042e-05, -0.004959962796419859, 0.003651802893728018, -0.031865257769823074, -0.001057918299920857, -0.011901149526238441, -0.019895076751708984, 0.0059919944033026695, 0.005926413461565971, 0.003620738396421075, -0.004317963495850563, 0.04553363472223282, -0.040701381862163544, -0.002531755715608597, 0.025749007239937782, 0.014731469564139843, -0.004400802310556173, 0.00041074154432862997, 0.004138479940593243, -0.024050815030932426, 0.02743339352309704, -0.0021244657691568136, -0.0013418132439255714, -0.033328741788864136, -0.002870013238862157, 0.016774822026491165, 0.020571593195199966, 0.003308367682620883, 0.03247274458408356, 0.024382170289754868, 0.02006075531244278, -0.013309406116604805, -0.002443739678710699, -0.012777858413755894, -0.0021330947056412697, -0.0017931112088263035, 0.0052775111980736256, -0.018997659906744957, 0.02160707674920559, 0.0053051239810884, 0.002576626604422927, -0.0008939668769016862, -0.031092099845409393, -0.03084358386695385, 0.0036241901107132435, -0.020198818296194077, -0.015173275955021381, -0.006133510265499353, -0.050669629126787186, -0.00045388666330836713, -0.006402735598385334, -0.0009612732683308423, 0.024589266628026962, -0.006682316306978464, 0.021469011902809143, 0.018307337537407875, 0.010851860046386719, 0.01328179333359003, -0.0008240717579610646, -0.016512500122189522, -0.026480749249458313, -0.02733674831688404, -0.03233467787504196, -0.031064486131072044, -0.02625984512269497, 0.05293388292193413, -0.004010770469903946, -0.012239407747983932, 0.0029597552493214607, -0.0173132736235857, -0.02153804339468479, -0.012639794498682022, -0.016429660841822624, 0.037222158163785934, 0.03771919012069702, -0.00750379916280508, -0.0011588778579607606, 0.029545778408646584, -0.009022507816553116, 0.017865531146526337, -0.006388929206877947, -0.004956511314958334, -0.009215797297656536, -0.006309542339295149, -0.003738093189895153, 0.014993792399764061, -0.01920475624501705, -0.023636622354388237, 0.020530173555016518, 0.0028544811066240072, 0.00750379916280508, 0.02160707674920559, 0.023291461169719696, -0.022518301382660866, -0.016761016100645065, -0.014938565902411938, -0.006640896666795015, 0.004687285982072353, 0.024078428745269775, -0.025638556107878685, -0.0017050951719284058, 0.03589674085378647, 0.0022176592610776424, 0.010423860512673855, -0.009367668069899082, 0.01735469326376915, -0.026798296719789505, 0.016015468165278435, -0.014510566368699074, -0.0041246735490858555, 0.005684800911694765, 0.006485574413090944, 0.017547983676195145, -0.0007783379405736923, 0.014317276887595654, 0.024547846987843513, 0.0037898672744631767, -0.007938701659440994, -0.02272539772093296, 0.015490823425352573, -0.03429519385099411, 0.0031288841273635626, 0.009208894334733486, -0.01619495265185833, -0.013557922095060349, 0.0033480613492429256, 0.01807262748479843, -0.017147596925497055, -0.027488619089126587, 0.012405084446072578, 0.0056502847000956535, -0.04973078891634941, 0.029159197583794594, 0.03553777188062668, -0.025928491726517677, 0.0005781446234323084, -0.009077733382582664, -0.019977916032075882, 0.009001797996461391, -0.02157946303486824, 0.004680382553488016, -0.039983443915843964, -0.011121085844933987, 0.02537623420357704, -0.009478120133280754, -0.03771919012069702, -0.009001797996461391, -0.015725532546639442, -0.0061507681384682655, -0.00928482972085476, 0.2507249116897583, -0.028040876612067223, -0.00741405738517642, 0.02272539772093296, 0.016029274091124535, 0.013965212740004063, -0.003924480173736811, -0.006727186962962151, -0.003603480290621519, 0.032914549112319946, -0.0174237247556448, -0.01210824679583311, -0.0014833292225375772, -0.005046253092586994, 0.002523126546293497, -0.00982328038662672, -0.014593405649065971, -0.023788493126630783, -0.02240784838795662, -0.005760736297816038, 0.040287185460329056, 0.02469971776008606, 0.01736849918961525, -0.017948370426893234, 0.018749143928289413, -0.005950574763119221, 0.0015877403784543276, -0.006123155355453491, 0.026687845587730408, -0.00016416718426626176, -0.021814173087477684, 0.03363248333334923, -0.005367252975702286, -0.017437530681490898, -0.02926964871585369, -0.006388929206877947, 0.025334814563393593, 0.015035211108624935, 0.01887340098619461, 0.014772889204323292, -0.0020347237586975098, -0.0059954458847641945, 0.029766680672764778, -0.017824111506342888, -0.027088232338428497, -0.0002506731543689966, -0.013412955217063427, -0.0012374019715934992, -0.025997523218393326, 0.023374300450086594, -0.0308159701526165, -0.0230981707572937, 0.02116527035832405, 0.02467210590839386, 0.007058541756123304, -0.026107974350452423, 0.018196886405348778, -0.00922270119190216, 0.01848682016134262, 0.0008063822751864791, -0.007745411712676287, 0.05594368651509285, -0.014275857247412205, 0.04039763659238815, -0.015035211108624935, 0.005456994753330946, -0.011459344066679478, 0.01847301423549652, 0.006202542223036289, 0.0027440295089036226, -0.018707724288105965, -0.004939253441989422, -0.011894246563315392, -0.02391275018453598, -0.03128539025783539, -0.02737816795706749, 0.03147868067026138, -0.00724147679284215, 0.032997388392686844, 0.03882370516657829, 0.03578628972172737, -0.011811408214271069, 0.013571728952229023, 0.017893144860863686, -0.020543979480862617, -0.013792632147669792, 0.02507249265909195, 0.0014255146961659193, -0.011507666669785976, 0.0027474812231957912, 0.01484192069619894, -0.004117770120501518, 0.005381059367209673, -0.006009252276271582, 0.006968799512833357, 0.00907082948833704, -0.00813199207186699, 0.02822035923600197, -0.027102038264274597, 0.00434902822598815, -0.025155330076813698, 0.0386580266058445, 0.012460310943424702, -0.005633026827126741, -0.012232503853738308, 0.005743478424847126, -0.005833220202475786, 0.01854204572737217, 0.007607347331941128, -0.005774542689323425, -0.0073657347820699215, -0.05619220435619354, 0.0007899871561676264, 0.005308575462549925, -0.011314376257359982, 0.020654432475566864, -0.02349855750799179, -0.024920621886849403, -0.006433800328522921, -0.016333015635609627, 0.04426344111561775, -0.014634824357926846, -0.003758802777156234, -0.010748311877250671, 0.01626398414373398, -0.026163199916481972, -0.014386308379471302, -0.0014747001696377993, -0.006768606137484312, -0.02733674831688404, 0.03401906415820122, -0.019977916032075882, 0.008449540473520756, -0.016816241666674614, 0.0027043360751122236, 0.013447470963001251, -0.008021540939807892, 0.00790418591350317, 0.005184317473322153, -0.0038278349675238132, 0.0006424308521673083, -0.0024903363082557917, 0.014717663638293743, -0.028303198516368866, -0.005822865292429924, -0.008691152557730675, 0.0012330875033512712, 0.007938701659440994, 0.00011411884042900056, 0.004794285632669926, -0.04771504923701286, 0.006319897249341011, 0.0096437968313694, -0.004756317939609289, 0.02044733427464962, -0.00444567296653986, -0.018210692331194878, -0.04072899371385574, -0.0144691476598382, 0.015090436674654484, -0.021413786336779594, -0.012032311409711838, 0.012805471196770668, 0.004449124913662672, -0.01136269886046648, -0.006168026477098465, -0.17628060281276703, 0.010665473528206348, 0.02926964871585369, -0.03752589970827103, 0.015394178219139576, -0.005135994870215654, 0.006986057851463556, 0.00945741031318903, -0.006233606953173876, -0.022242171689867973, 0.013219664804637432, 0.004290350712835789, -0.012819278053939342, -0.005425930023193359, 0.005111833568662405, 0.019563723355531693, -0.03901699557900429, 0.02275300957262516, 0.033356353640556335, 0.023719461634755135, 0.046914275735616684, -0.03169958293437958, -0.027971843257546425, 0.0174099188297987, 0.014938565902411938, 0.01579456590116024, -0.006154220085591078, -0.009395280852913857, 0.011569795198738575, -0.02003314159810543, -0.008684249594807625, -0.0029442228842526674, 0.02126191556453705, 0.00492889853194356, 0.011438634246587753, 0.0003313545312266797, 0.014593405649065971, 0.006544251926243305, -0.015518436208367348, 0.010858763940632343, 0.02356759086251259, 0.021869398653507233, 0.009705926291644573, 0.0009414264932274818, -0.0048218984156847, 0.010451474227011204, 0.02384371869266033, -0.002781997201964259, 0.00829766970127821, 0.02152423746883869, 0.03175480663776398, -0.02772332727909088, 0.005733123514801264, -0.011618117801845074, 0.03192048519849777, 0.015090436674654484, -0.0005729671684093773, 0.0047079953365027905, 0.0039866091683506966, -0.0027750940062105656, -0.007883476093411446, -0.018638690933585167, 0.034875061362981796, 0.010644763708114624, -0.013820244930684566, -0.024478815495967865, 0.004621705040335655, 0.027640489861369133, -0.010527409613132477, -0.007179347798228264, 0.03509596735239029, -0.023346686735749245, -0.0055708978325128555, -0.010271989740431309, 0.026439329609274864, -0.01964656077325344, -0.008256250061094761, 0.016319209709763527, 0.025155330076813698, 0.0012848617043346167, -0.00945050735026598, 0.026342684403061867, 0.002631852403283119, -0.02585945837199688, -0.0020519818644970655, -0.002379884710535407, 0.009885409846901894, -0.0173132736235857, -0.03788486495614052, -0.02544526569545269, 0.009043216705322266, -0.019881270825862885, -0.0044905440881848335, -0.004097060766071081, 0.011894246563315392, -0.017520369961857796, -0.023346686735749245, 0.008829217404127121, -0.011058957315981388, 0.004766672849655151, -0.012764052487909794, 0.008049153722822666, -0.02653597481548786, 0.028606940060853958, 0.021814173087477684, 0.004183350596576929, -0.02467210590839386, 0.022987719625234604, 0.020309271290898323, -0.019536109641194344, 0.010886376723647118, 0.018707724288105965, 0.022131720557808876, 0.016512500122189522, -0.009726636111736298, 0.010403151623904705, -0.0020916752982884645, -0.010278893634676933, 0.006903219036757946, -0.016885273158550262, -0.03004281036555767, -0.013247277587652206, 0.01060334499925375, 0.025569522753357887, -0.00559851061552763, -0.026163199916481972, -0.04401492699980736, -0.02079249545931816, 0.006019607186317444, 0.03283170983195305, 0.0009491926175542176, 0.008456443436443806, -0.001196845667436719, 0.04086705669760704, -0.03617286682128906, 0.027599070221185684, 0.006620187312364578, -0.02659120038151741, -0.012508632615208626, 0.006482122931629419, -0.004190254025161266, -0.002467900747433305, -0.0016127645503729582, -0.004676931072026491, 0.000253477570367977, 0.008428830653429031, -0.011397214606404305, -0.02471352368593216, 0.012812375091016293, -0.005550188012421131, -0.016277790069580078, -0.014814307913184166, -0.010113216005265713, 0.013875470496714115, 0.017133789137005806, 0.006461413111537695, 0.04117079824209213, 0.0025352071970701218, 8.89868097146973e-05, -0.029849519953131676, -0.005557091441005468, 0.010927795432507992, -0.011528375558555126, -0.036034803837537766, 0.027930425480008125, -0.01371669676154852, 0.002631852403283119, 0.0028872713446617126, 0.007455476559698582, 0.0013478535693138838, -0.03012564778327942, 0.0019501594360917807, -0.010189151391386986, -0.0014099825639277697, 0.006671961396932602, -0.01584979146718979, -0.03153390437364578, -0.0033290775027126074, -7.809266389813274e-05, -0.025555716827511787, 0.024879202246665955, 0.018293531611561775, 0.028606940060853958, 0.029186811298131943, -0.040231961756944656, -0.002238368848338723, -0.007131025195121765, 0.03128539025783539, -0.017520369961857796, 0.01327489037066698, -0.0026335781440138817, 0.0060748327523469925, -0.021703720092773438, -0.019398046657443047, 0.03313545137643814, -0.018611079081892967, 0.012273923493921757, 0.002264255890622735, -0.006903219036757946, 0.017285659909248352, -0.047245632857084274, -0.0005431970348581672, -0.030788356438279152, -0.021482817828655243, 0.01654011383652687, 0.008773991838097572, -0.03009803593158722, -0.0014134341618046165, 0.009837087243795395, -0.0012210068525746465, -0.0065787676721811295, 0.014551986008882523, -0.01524230744689703, -0.002165884943678975, 0.004939253441989422, -0.044898536056280136, -0.002678449032828212, -0.0017879337538033724, 0.014061857014894485, -0.007124122232198715, -0.021275721490383148, -0.02276681736111641, 0.001777578960172832, -0.005211930256336927, -0.01658153161406517, 0.01812785305082798, -0.037940092384815216, -0.027557650581002235, -0.09393900632858276, 0.01579456590116024, 0.008780894801020622, -0.009319345466792583, -0.0073657347820699215, -0.0012175552546977997, 0.023429526016116142, -0.032168999314308167, 0.0023539976682513952, -0.014800501987338066, -0.026397909969091415, 0.0026491102762520313, 0.0028061585035175085, 0.0014229260850697756, -0.006765154656022787, 0.00137546646874398, 0.028247972950339317, 0.0013090228894725442, 0.002191771985962987, 0.0115905050188303, 0.0022711590863764286, -0.01699572615325451, -0.00501864030957222, 0.00849095918238163, -0.03269364684820175, 0.019812239333987236, 0.002857932820916176, 0.004980672616511583, -0.01807262748479843, -0.027654295787215233, 0.0014859179500490427, -0.009768054820597172, -0.0027354005724191666, 0.01003728061914444, 0.002733674831688404, -0.01195637509226799, 0.008366701193153858, 0.004100512247532606, 0.005060059484094381, 0.01660914532840252, -0.022891074419021606, -0.03042938932776451, 0.005066962912678719, 0.0023470944724977016, 0.006903219036757946, -0.004121221601963043, -0.02083391509950161, 0.0029977229423820972, 0.024106040596961975, 0.0500069186091423, 0.013212761841714382, 0.02463068626821041, -0.005156704690307379, -0.004552673082798719, 0.015131856314837933, -0.03429519385099411, 0.0230981707572937, 0.018749143928289413, -0.006682316306978464, -0.022104106843471527, 0.019453272223472595, 0.0006342332344502211, 0.015090436674654484, -0.0033325289841741323, 0.017975982278585434, 0.006278477609157562, -0.0026439328212291002, -0.006582219619303942, 0.005094575695693493, -0.02391275018453598, -0.013447470963001251, -0.02347094565629959, 0.020323077216744423, 0.015352759510278702, -0.004500898998230696, 0.020129786804318428, -0.014551986008882523, 6.899848358443705e-06, -0.028386037796735764, 0.029904745519161224, 0.01021676417440176, 0.014565791934728622, -0.016457274556159973, -0.01967417448759079, 0.02193843014538288, -0.0031185292173177004, -0.02695016749203205, -0.0049875760450959206, -0.019149530678987503, 0.0034947546664625406, -0.02313959039747715, 0.015987856313586235, 0.023733267560601234, 0.01270882599055767, 0.017975982278585434, 0.018611079081892967, 0.008497863076627254, -0.02279442921280861, 0.023650428280234337, 0.0034308999311178923, 0.009326249361038208, -0.013992825523018837, -0.008836120367050171, -0.060306522995233536, -0.0069998642429709435, -0.005978187546133995, -0.020212626084685326, -0.043738797307014465, -0.005356898065656424, 0.01691288687288761, 0.01736849918961525, 0.0026594651862978935, -0.010755215771496296, 0.015256114304065704, 0.00027440296253189445, -0.002790626371279359, -0.004942704923450947, -0.01848682016134262, -0.029490552842617035, 0.017520369961857796, 0.03197571262717247, 0.02428552508354187, 0.0231810100376606, -0.001693014521151781, 0.02924203686416149, -0.01176308561116457, 0.026342684403061867, -0.03575867414474487, 0.02313959039747715, -0.005595059134066105, -0.0007054227171465755, 0.011714763008058071, -0.019453272223472595, -0.01966036856174469, -0.01695430651307106, -0.01920475624501705, -0.013164439238607883, 0.008097476325929165, -0.013530309312045574, 0.08615217357873917, 0.0017793047009035945, 0.01575314626097679, -0.0027716425247490406, 0.011866633780300617, 0.004525060299783945, -0.00945050735026598, -0.003310093656182289, 0.009526442736387253, -0.00905012059956789, -0.022062689065933228, 0.006423445418477058, -0.005381059367209673, -0.001808643457479775, -0.00012587588571477681, 0.006727186962962151, -0.0231810100376606, 0.01972940005362034, -0.02272539772093296, -0.006019607186317444, 0.04197157174348831, 0.0010441119084134698, 0.008863733150064945, 0.015297533944249153, -0.01966036856174469, -0.005674446001648903, 0.018638690933585167, 0.0067824129946529865, 0.01384785771369934, -0.0289659071713686, 0.02153804339468479, -0.0020433529280126095, 0.0007619428215548396, -0.004645866341888905, -0.006475219503045082, 0.0289659071713686, -0.01698191836476326, 0.014966178685426712, 0.007317412178963423, 0.0015428694896399975, 0.0003056831774301827, 0.03197571262717247, -0.020599205046892166, -0.02269778400659561, 0.019425658509135246, -0.025169137865304947, -0.023816106840968132, -0.005153253208845854, -0.016360629349946976], "f5dff58d-3f9f-438b-aec4-ad9d405dd0d0": [-0.02253555878996849, -0.019055111333727837, 0.0065107205882668495, -0.027386683970689774, -0.020197343081235886, 0.0008843896794132888, -0.025263477116823196, -0.014096482656896114, 0.0033107921481132507, -0.041819117963314056, 0.010958705097436905, 0.025424733757972717, -0.017294730991125107, 0.0074648200534284115, -0.01152982097119093, 0.005452476441860199, 0.006157972384244204, -0.011502944864332676, 0.018450401723384857, -0.023785294964909554, -0.0033914202358573675, 0.002454118337482214, -0.0006047108909115195, 0.004777215886861086, -0.04155035689473152, 0.012887060642242432, 0.012477201409637928, -0.01662283018231392, 0.0031327384058386087, -0.007511853240430355, 0.016085309907794, 0.0005799345090053976, -0.029913032427430153, 0.00413555046543479, 0.002265986055135727, 0.010374151170253754, 0.00019726592290680856, -0.011637325398623943, 0.00036933558294549584, 0.010663068853318691, 0.02352997288107872, -5.9788690123241395e-05, 0.026392269879579544, 0.008526423946022987, -0.03802959620952606, 0.009534275159239769, -0.027225427329540253, 0.016152499243617058, 0.007834365591406822, -0.00300843664444983, -0.0021148084197193384, -0.0006399856647476554, -0.03434757888317108, -0.014257739298045635, 0.0052576251327991486, -0.01677064783871174, -0.016515325754880905, 0.00850626640021801, 0.004219538066536188, -0.0016444777138531208, 0.004447984509170055, 0.009446928277611732, -0.008378605358302593, -0.006070625502616167, -0.012672052718698978, 0.007861241698265076, -0.022548997774720192, 0.018356334418058395, -0.02123207040131092, -0.008056093007326126, 0.033380042761564255, 0.010911672376096249, 0.009413332678377628, 1.1902620826731436e-05, 0.039884041994810104, 0.00011936741066165268, -0.036658916622400284, -0.009467084892094135, 0.004679790232330561, 0.007841084152460098, 0.003866790095344186, 0.004945191089063883, 0.024094369262456894, -0.01564185507595539, 0.001181705854833126, 0.006157972384244204, -0.014109920710325241, 0.010864638723433018, 0.008573456667363644, -0.0034602901432663202, 0.021796468645334244, 0.0045790052972733974, 0.0075790430419147015, 0.008566737174987793, 0.019579194486141205, 0.0139889782294631, 0.005465914495289326, 0.0048981583677232265, -0.00835172925144434, -0.03348754346370697, 0.0008041815017350018, -0.009588027372956276, -0.02765544503927231, -0.009493960998952389, -0.028488602489233017, -0.043566059321165085, 0.037277065217494965, -0.0168647151440382, 0.010515250265598297, -0.01771130971610546, -0.004400951322168112, 0.02773607335984707, 0.005549902096390724, -0.02713136188685894, -0.01533278077840805, -0.005304658319801092, 0.0199151448905468, -0.006608146242797375, -0.01069666352123022, -0.007142307702451944, 0.009063944220542908, -0.009836629964411259, 0.019485129043459892, 0.024430319666862488, -0.008680961094796658, -0.008963159285485744, -0.027104485780000687, 0.00595640204846859, -0.002307979855686426, -0.02162177301943302, 0.04305541515350342, -0.006359542720019817, -0.006117658689618111, -0.006467047147452831, -0.014056168496608734, -0.018342897295951843, -0.03088056854903698, -0.03432070091366768, -0.007699985522776842, -0.015010268427431583, 0.035530123859643936, 0.013357391580939293, -0.0031797713600099087, -0.032304998487234116, 0.01238313503563404, 0.02545160986483097, 0.0017922958359122276, 0.004720104392617941, -0.005297939293086529, -0.00021878775442019105, -0.004589083604514599, -0.010474936105310917, -0.008848936296999454, -0.021124567836523056, -0.006443530321121216, 0.028246717527508736, 0.03195561096072197, 0.007182621397078037, 0.009971010498702526, -0.02162177301943302, 0.02022421918809414, 0.022575873881578445, 0.006178129464387894, -0.016421260312199593, -0.025182848796248436, 0.034589461982250214, 0.007545447908341885, 0.002541465451940894, -0.014849011786282063, -0.020949872210621834, 0.0090101920068264, 0.0008810301660560071, -0.02522316388785839, 0.030289296060800552, -0.0010842802003026009, 0.006040389649569988, -0.02460501343011856, 0.02238774113357067, -0.01368662342429161, -0.02214585617184639, -0.012060622684657574, -0.011160274967551231, 0.004011248704046011, 0.0168647151440382, -0.02038547582924366, -0.027709197252988815, 0.009373018518090248, -0.017039408907294273, 0.02129926159977913, 0.0026926430873572826, 0.020694550126791, 0.0314449667930603, -0.013202854432165623, 0.0007899035699665546, -0.5938529372215271, -0.018947606906294823, -0.019337309524416924, 0.017415674403309822, -0.02107081562280655, 0.026110071688890457, -0.0007420306792482734, 0.020788615569472313, -0.01922980695962906, 0.029698023572564125, -0.011059490032494068, 0.0002908071328420192, -0.021030500531196594, 0.0013757172273471951, 0.009070663712918758, -0.021930847316980362, 0.008076249621808529, -0.0008801902877166867, 0.0016117225168272853, 0.017603805288672447, -0.01556122675538063, 0.007175902370363474, -0.03902401030063629, -0.003695455379784107, -0.012752681039273739, -0.025303790345788002, 0.038271479308605194, -0.010985581204295158, 0.006292352918535471, 0.02688947692513466, -0.03477759659290314, 0.01552091259509325, 0.024846898391842842, -0.012295788154006004, 0.06633006781339645, -0.010743697173893452, -0.0268088486045599, 0.021635212004184723, 0.017308169975876808, 0.03453570976853371, -0.010179299861192703, -0.03096119686961174, 0.030558057129383087, 0.010441341437399387, 0.006228521931916475, -0.002040899358689785, 0.009836629964411259, -0.01877291314303875, 0.009735845029354095, 0.01340442430227995, -0.005731315352022648, -0.013700061477720737, 0.011966556310653687, -0.006010154262185097, 0.01831602118909359, -0.00800234079360962, 0.036900803446769714, -0.04485610872507095, 0.010757135227322578, -0.027467312291264534, -0.009016911499202251, 0.0013354031834751368, -0.020492980256676674, -0.023274650797247887, -0.01570904441177845, 0.02735980786383152, -0.009816473349928856, -0.028327345848083496, 0.0027027216274291277, -0.01816820353269577, 0.012537672184407711, -0.010736977681517601, 0.026271328330039978, -0.0004316963895689696, 0.012745961546897888, 0.04098596051335335, 0.015924053266644478, -0.0034115773160010576, -0.01081088650971651, -0.0024054055102169514, -0.018517591059207916, -0.006934018339961767, 0.010951985605061054, -0.037062060087919235, 0.01164404395967722, -0.013128945603966713, -0.03501947969198227, -0.007256530690938234, -0.004209459759294987, -0.005805224645882845, 0.0180203840136528, 0.017455987632274628, 0.014674317091703415, -0.021487394347786903, 0.01234282087534666, 0.019202930852770805, -0.009668654762208462, -0.02959051914513111, -0.001909878570586443, 0.0138008464127779, -0.015574664808809757, -0.0022693455684930086, -0.004266571253538132, 0.00515348045155406, 0.04399607703089714, -0.005052695516496897, -0.03555700182914734, -0.004948550835251808, 0.04851125180721283, -0.03249313309788704, 0.02291182428598404, 0.0006614025332964957, 0.00866080354899168, -0.006497282534837723, 0.033675678074359894, -0.019727012142539024, -0.009991168044507504, 0.001333723426796496, 0.0016285199671983719, -0.022118980064988136, 0.01815476454794407, -0.006742526311427355, 0.005979918874800205, -0.011825457215309143, 0.0017788578988984227, -0.0017301450716331601, 0.014123358763754368, -0.0063259475864470005, -0.027494188398122787, 0.012927374802529812, -0.00984334945678711, -0.010790729895234108, 0.014083044603466988, -0.010871358215808868, 0.005680922884494066, 0.012396573089063168, 0.0037458480801433325, 0.00617141043767333, 0.026271328330039978, -0.0013673185603693128, -0.0038600710686296225, -0.013276763260364532, -0.003729050513356924, -0.01050181221216917, 0.00605718744918704, -0.015426846221089363, 0.0021685604006052017, -0.00831813458353281, 0.008015778847038746, 0.021017063409090042, 0.009413332678377628, 0.005260984878987074, 0.001452985918149352, 0.021930847316980362, -0.009635060094296932, 0.004232976119965315, 0.0004256072861608118, -0.02139332704246044, 0.014472747221589088, -0.005959761794656515, -0.012873622588813305, 0.0009196644532494247, -0.018141327425837517, 0.01733504608273506, -0.023489657789468765, 0.0019703495781868696, 0.021863657981157303, -0.017039408907294273, -0.01345145795494318, -0.030773065984249115, -0.0044715008698403835, -0.00701464619487524, -0.0027144800405949354, -0.012779557146131992, 0.0298861563205719, -0.0072229355573654175, -0.014687755145132542, 0.018665408715605736, 0.001066642813384533, 0.015037143602967262, 0.021406766027212143, -0.012530953623354435, -0.007162464316934347, -0.014338366687297821, 0.006399856880307198, 0.018840104341506958, 0.04380794242024422, 0.004780575633049011, -0.028327345848083496, 0.0020593765657395124, 0.0038701496087014675, 0.002783349948003888, 0.015225276350975037, 0.0033477465622127056, 0.024551261216402054, 0.031068701297044754, 0.030719313770532608, 0.016031557694077492, -0.01195983774960041, 0.008519704453647137, 0.042571645230054855, 0.019713575020432472, 0.02053329348564148, -0.009258795529603958, 0.025612864643335342, -0.02230711281299591, -0.016676582396030426, -0.007720142137259245, 0.015346218831837177, -0.0007298524724319577, -0.0033007136080414057, -0.016421260312199593, -0.006050468422472477, -0.004851125180721283, 0.033675678074359894, 0.008909407071769238, -0.038889627903699875, -0.000569016148801893, -0.01345145795494318, 0.01893416978418827, 0.005845538340508938, -0.018826665356755257, 0.018517591059207916, -0.019189491868019104, 0.010401027277112007, 0.004172505345195532, 0.023503096774220467, -0.0034233354963362217, 0.029778651893138885, -0.012168127112090588, -0.0068130758590996265, 0.003210006980225444, 0.00421617878600955, 0.004229616839438677, 0.0062083653174340725, -0.01069666352123022, 0.022575873881578445, 0.002652329159900546, 0.03708893433213234, -0.019256683066487312, 0.018598219379782677, -0.0120740607380867, -0.01577623561024666, -0.013552242890000343, 0.01376053225249052, 0.0030504304450005293, 0.04466797783970833, 0.024887211620807648, -0.02139332704246044, 0.002020742278546095, -0.004360637161880732, -0.033702552318573, -0.02222648449242115, 0.0019518723711371422, 0.008808622136712074, -0.02735980786383152, 0.008089687675237656, -0.006702212151139975, 0.03179435431957245, 0.01348505262285471, 0.03692767769098282, 0.022428054362535477, 0.007041522301733494, -0.005351691506803036, 0.005475992802530527, -0.03622890263795853, -0.033756304532289505, -0.014781821519136429, -0.009104258380830288, 0.0016595954075455666, -0.018719160929322243, 0.0010229692561551929, 0.02191741019487381, -0.02483346126973629, 0.0050157406367361546, 0.0038029595743864775, -0.00036639600875787437, 0.007437943946570158, 0.030101163312792778, -0.0009020270663313568, -0.017536615952849388, -0.01626000367105007, 0.01572248339653015, 0.02291182428598404, 0.022213047370314598, 0.009937415830790997, -0.013908350840210915, -0.0060807038098573685, 0.014513061381876469, 0.012100936844944954, 0.023099955171346664, 0.004612600430846214, -0.0013589197769761086, -0.008378605358302593, -0.006409935187548399, -0.016044994816184044, 0.033460669219493866, -0.014177110977470875, -0.011140118353068829, -0.018571343272924423, 0.026849163696169853, -0.011187151074409485, -0.019901707768440247, 0.006823154632002115, 0.0314180888235569, -0.003500604070723057, -0.019592633470892906, -0.007988902740180492, 0.008795184083282948, -0.030101163312792778, 0.0016184415435418487, -0.02859610505402088, -0.014096482656896114, -0.023650914430618286, -0.01490276399999857, 0.018571343272924423, 0.000318103120662272, -0.0007873839931562543, 0.020264534279704094, 0.009332704357802868, -0.011093085631728172, -0.01838321052491665, 0.00244236015714705, -0.009561151266098022, 0.012591424398124218, 0.004212819039821625, 0.01046821754425764, 0.00513332337141037, -0.002375169890001416, -0.004478219896554947, -0.03741144761443138, -0.014271177351474762, 0.005761550739407539, -0.016085309907794, 0.017899442464113235, -0.009641779586672783, 0.01137528382241726, 0.006762683391571045, 0.045554887503385544, 0.0012320984387770295, 0.006658538710325956, -0.025169411674141884, 0.003337668254971504, -0.026862600818276405, 0.006033670622855425, -0.017576929181814194, -0.0010884796502068639, 0.014042730443179607, 0.011086366139352322, 0.007451381999999285, -0.010145705193281174, 0.03657829016447067, 0.002155122347176075, -0.002128246473148465, -0.022481806576251984, 0.009030349552631378, -0.011227465234696865, 0.027762949466705322, 0.017751624807715416, 0.027547940611839294, -0.0012102616019546986, 0.0628361776471138, -0.018893856555223465, 0.02291182428598404, 0.006557753775268793, 0.03469696640968323, 0.008009059354662895, 0.0007386711658909917, 0.02351653389632702, -0.0521126389503479, -0.015614978969097137, 0.010434621945023537, -0.011019175872206688, -0.01552091259509325, 0.03660516440868378, 0.0033158313017338514, -0.02000921219587326, -0.010609316639602184, -0.0038567115552723408, -0.0070348032750189304, -0.03316503390669823, -0.007048241328448057, -0.002475955057889223, 0.008405481465160847, 0.0012799713294953108, -0.01498339232057333, 0.0037626454140990973, -0.004454703535884619, -0.00838532391935587, -0.011173713020980358, -0.03415944427251816, -0.017039408907294273, -0.03434757888317108, -0.011099804192781448, 0.008365167304873466, -0.04085157811641693, -0.041362226009368896, 0.008754869922995567, -0.012900498695671558, 0.0026960026007145643, 0.024927526712417603, -0.03977653756737709, -0.028112336993217468, 0.017966631799936295, -0.009695530869066715, -0.014714631251990795, -0.01329020131379366, -0.03966903313994408, 0.013229730539023876, -0.004921674728393555, 0.015588102862238884, 0.0038600710686296225, -0.0026573683135211468, 0.012322664260864258, 0.006947456393390894, 0.012571267783641815, 0.01556122675538063, 0.01639438420534134, 0.009050506167113781, 0.010105391032993793, 0.007908274419605732, 0.01808757521212101, 0.014271177351474762, -0.02735980786383152, 0.005220670718699694, -0.04052906855940819, -0.019283559173345566, 0.0017419032519683242, -0.013841160573065281, -0.0276016928255558, -0.0025330667849630117, 0.00592280738055706, 0.0031612941529601812, 0.013202854432165623, 0.005828741006553173, -0.008956439793109894, -0.016690021380782127, -0.0199285838752985, -0.011932961642742157, 0.015184962190687656, 0.008922845125198364, 0.004649554844945669, 0.0003031953237950802, 0.009890382178127766, 0.02131269872188568, -0.02093643508851528, 0.034589461982250214, 0.017684433609247208, -0.007028084248304367, 0.009735845029354095, -0.02576068416237831, -0.03596014156937599, -0.014607127755880356, 0.024551261216402054, 0.014701193198561668, 0.025814436376094818, 0.0025011515244841576, -0.01654220186173916, -0.029483014717698097, 0.0004367356305010617, 0.009480522945523262, 0.019525442272424698, -0.019068550318479538, -0.03308440372347832, -0.023973427712917328, 0.0010809206869453192, 0.0054995096288621426, -0.02146051824092865, 0.004447984509170055, -0.02827359363436699, -0.006581270135939121, -0.006843311712145805, 0.03480447083711624, 0.017993507906794548, 0.047704968601465225, -0.006413294933736324, -0.030531181022524834, -0.006749245338141918, -0.006134456023573875, -0.03418632224202156, -0.006729088257998228, -0.02996678464114666, 0.031068701297044754, 0.013881474733352661, 0.025572551414370537, 0.006362902466207743, -0.006829873658716679, 0.013787408359348774, 0.005684282165020704, 0.006655179429799318, -0.03316503390669823, 0.014808697625994682, 0.001603323733434081, 0.0038130381144583225, 0.00788811780512333, 0.02584131248295307, 0.017912879586219788, -0.0007256530807353556, 0.011932961642742157, 0.014956516213715076, -0.0031579346396028996, -0.014365242794156075, -0.01509089581668377, -0.03203623741865158, 0.005432319361716509, 0.0006643420783802867, 0.008553299121558666, 0.0019031595438718796, -0.009252076968550682, -0.005042616743594408, -0.0279779564589262, -0.0015352937625721097, 0.03725019097328186, 0.01901479810476303, 0.01003820076584816, -0.013787408359348774, 0.022414617240428925, -0.0066215842962265015, 0.0003283916157670319, 0.019942020997405052, 0.003354465588927269, -0.02077517844736576, 0.005650687497109175, 0.02773607335984707, 0.012329382821917534, 0.023718105629086494, 0.0017284653149545193, -0.00290093244984746, -0.005580137483775616, 0.044721730053424835, 0.007881398312747478, -0.0429210364818573, -0.0037693644408136606, -0.03956152871251106, -0.018557904288172722, -0.028112336993217468, -0.006618224550038576, 0.0044715008698403835, -0.05050007626414299, 0.014741507358849049, 0.007162464316934347, 0.006493923254311085, 0.011193870566785336, -0.028407974168658257, 0.004851125180721283, -0.01027336623519659, 0.022710252553224564, -0.003631624858826399, 0.0352613627910614, 0.030369924381375313, 0.003853352041915059, -0.011146836914122105, -0.04101283475756645, -0.007619357202202082, 0.003933980129659176, 0.031525593250989914, 0.05256953462958336, 0.00714902626350522, -0.026042882353067398, 0.005052695516496897, -0.0005207232898101211, -0.0032032879535108805, -0.03335316479206085, 0.022011475637555122, 0.019135739654302597, -0.0013387626968324184, -0.011691076681017876, 0.0012455364922061563, -0.01593749225139618, 0.00047453006845898926, -0.014553375542163849, -0.006913861259818077, -0.0176306813955307, -0.014553375542163849, 0.013632871210575104, 0.012510796077549458, -0.026956668123602867, -0.0022844632621854544, -0.013612713664770126, 0.03112245351076126, 0.001143911387771368, -0.014432433061301708, -0.02742699906229973, -0.0023466141428798437, -0.013162540271878242, 0.03496572747826576, -0.021326137706637383, -0.002040899358689785, 0.01348505262285471, 0.02499471604824066, 0.005754831712692976, -0.0276016928255558, -0.02445719577372074, 0.03840586170554161, 0.004105315078049898, 0.002086252672597766, -0.016300318762660027, 0.0032503209076821804, 0.02864985726773739, 0.006692133843898773, 0.007867960259318352, -0.007935150526463985, -0.016421260312199593, -0.012759399600327015, 0.0026708063669502735, 0.0013295240933075547, 0.027158237993717194, -0.01839664950966835, -0.010065076872706413, -0.005334893707185984, -0.007243092637509108, 0.009520837105810642, 0.015574664808809757, -0.031176205724477768, -0.022495245561003685, -0.02000921219587326, -0.051843881607055664, 0.008922845125198364, 0.025585990399122238, 0.01069666352123022, 0.014392118901014328, 0.04714057222008705, -0.0345088355243206, 0.027198551222682, 0.0101591432467103, -0.00022382700990419835, -0.017765061929821968, -0.007807489484548569, -0.007364034652709961, -0.010521969757974148, 0.013236449100077152, 0.007847803644835949, -0.018047260120511055, -0.03719643875956535, 0.0026153745129704475, 0.015762796625494957, 0.007202778477221727, 0.015319342724978924, 0.045877400785684586, -0.021366450935602188, 0.004276649560779333, -0.0272119902074337, -0.022186171263456345, 0.015883740037679672, -0.001785576925612986, 0.005657406523823738, -0.011126680299639702, 0.0012959290761500597, 0.008284538984298706, 0.01152982097119093, 0.012853465974330902, -0.001488260691985488, -0.008996753953397274, -0.030289296060800552, 0.010831044055521488, -0.017375359311699867, -0.027077609673142433, -0.0044715008698403835, -0.024739393964409828, -0.017496300861239433, -0.026943229138851166, -0.02191741019487381, 0.02629820443689823, 0.009507399052381516, 0.02727917954325676, 0.009446928277611732, -0.010978861711919308, 0.019821079447865486, -0.00847267173230648, -0.033299412578344345, -0.017415674403309822, -0.0302624199539423, -0.018436962738633156, 0.00012335681822150946, -0.024954402819275856, 0.037814587354660034, -0.015104333870112896, -0.0005492790369316936, -0.010367432609200478, -0.00866752304136753, -0.00877502653747797, -0.012100936844944954, -0.0023382154759019613, 0.019108863547444344, 0.04499049112200737, -0.004552129190415144, 0.01306175533682108, 0.01808757521212101, -0.006386418826878071, 0.013108788058161736, -0.016743771731853485, -0.011382002383470535, -0.007471539080142975, -0.02482002228498459, 0.006282274145632982, 0.004518534056842327, 0.0017738186288625002, -0.004148988518863916, 0.004498376976698637, 0.006104220636188984, 0.0074648200534284115, 0.006329307332634926, 0.021258946508169174, -0.024658765643835068, 0.0014756625751033425, -0.03733081743121147, -0.003950777929276228, -0.010884796269237995, 0.0001645107549848035, -0.03655141219496727, 0.006188208237290382, 0.02214585617184639, -0.015346218831837177, -0.018571343272924423, 0.002452438697218895, 0.005439038388431072, -0.005795145872980356, 0.012215159833431244, -0.003383021568879485, 0.0028706970624625683, -0.003063868498429656, -0.017590368166565895, 0.018840104341506958, -0.006218443624675274, 0.005200513638556004, 0.021178318187594414, 0.007619357202202082, -0.018450401723384857, -0.01999577321112156, 0.0058421790599823, -0.01756349205970764, 0.01000460609793663, 0.0041153933852910995, -0.02152770757675171, -0.015225276350975037, -0.0045991623774170876, 0.007740299217402935, -0.02093643508851528, 0.0006177289760671556, 0.007646233309060335, 0.023946551606059074, -0.03948090225458145, 0.033003777265548706, 0.009588027372956276, -0.015265590511262417, -0.022401178255677223, -0.003628265345469117, -0.027709197252988815, -0.012719085440039635, -0.04259852319955826, 0.006164691410958767, -0.05071508511900902, 0.00854658056050539, 0.0005627170903608203, 9.438108827453107e-05, -0.02735980786383152, 0.020210782065987587, 0.016958780586719513, 0.0017083082348108292, -0.0053113773465156555, 0.2560749053955078, -0.016999095678329468, -0.0057985056191682816, 0.012154689058661461, 0.01702597178518772, 0.001569728716276586, 0.009876944124698639, 0.018719160929322243, 0.006876906380057335, 0.029913032427430153, -0.006655179429799318, -0.012752681039273739, -0.01601811870932579, -0.012168127112090588, 0.016112186014652252, 0.017267854884266853, -0.028918618336319923, -0.030101163312792778, -0.023355279117822647, -0.00022487685782834888, 0.024161558598279953, -0.006369621492922306, -0.004478219896554947, -0.021406766027212143, 0.012779557146131992, 0.01161044929176569, 0.00042959669372066855, 0.025303790345788002, 0.020828930661082268, -0.0055532618425786495, -0.010286804288625717, 0.002863978035748005, 0.007458101026713848, -0.020062962546944618, -0.004014608450233936, -0.02137988992035389, 0.03722331300377846, -0.003866790095344186, 0.007041522301733494, 0.0038802281487733126, 0.0022122340742498636, 0.013747094199061394, 0.010239770635962486, 0.0011506304144859314, -0.008600332774221897, 0.03249313309788704, 0.01970013603568077, -0.010474936105310917, 0.009467084892094135, -0.010367432609200478, -0.01238313503563404, -0.021487394347786903, 0.010925110429525375, 0.02752106450498104, -0.00448493892326951, -0.035288240760564804, 0.015064019709825516, -0.007444662973284721, -0.01578967273235321, 0.025344105437397957, -0.008600332774221897, 0.030477428808808327, -0.03319190815091133, 0.014418995007872581, -0.03034304827451706, -0.004014608450233936, -0.012806432321667671, 0.022938700392842293, -0.010374151170253754, -0.027547940611839294, -0.0007516892510466278, 0.000916304939892143, -0.03262751176953316, 0.015399971045553684, -0.00839204341173172, -0.02144707925617695, 0.029375510290265083, 0.016461573541164398, 0.025155972689390182, 0.035825759172439575, 0.026634154841303825, 0.0018510872032493353, 0.02046610414981842, 0.01171795278787613, -0.006201646290719509, -0.03464321419596672, 0.028542354702949524, -0.020600484684109688, 0.0019485128577798605, -0.01203374657779932, 0.011019175872206688, -0.006100860890001059, -0.000569016148801893, -0.01517152413725853, 0.012504077516496181, -0.0007970425649546087, 0.016380945220589638, 0.016582516953349113, -0.01572248339653015, -0.0066820550709962845, -0.027413560077548027, 0.0574609711766243, 0.032224372029304504, -0.011267779394984245, -0.01624656654894352, 0.00125477509573102, -6.509041122626513e-05, 0.005109807010740042, 0.006238600704818964, -0.014647441916167736, -0.010380870662629604, -0.034616339951753616, 0.004162426572293043, -0.001597444643266499, -0.003907104022800922, 0.023852484300732613, -0.007068398408591747, -0.022952137514948845, -0.0003489685768727213, 0.008727993816137314, 0.030154915526509285, -0.033218786120414734, -0.004783934913575649, 0.01007179543375969, -0.010999019257724285, -0.008136721327900887, -0.015977805480360985, -0.004683149978518486, -0.010978861711919308, -0.0667063295841217, 0.029644271358847618, 0.010105391032993793, -0.013626151718199253, -0.008035935461521149, -0.0008701117476448417, 0.012121093459427357, 0.011832176707684994, -0.012403292581439018, -0.006954175420105457, 0.013350673019886017, -0.015749359503388405, -0.0005287021049298346, 0.011240903288125992, 0.002323097549378872, -0.011099804192781448, -0.031391214579343796, -0.0021618413738906384, 0.013323796913027763, -0.010931828990578651, -0.011731390841305256, -0.04574301838874817, -0.002398686483502388, 0.028219841420650482, 0.01517152413725853, 0.011906085535883904, -0.01937762461602688, -0.03467009216547012, -0.03993779420852661, -0.012255473993718624, 0.025814436376094818, -0.04028718173503876, -0.0018712442833930254, 0.024403443560004234, -0.03510010614991188, -0.002180318580940366, -0.024631889536976814, -0.16964155435562134, -0.004343839827924967, 0.016918467357754707, -0.012154689058661461, 0.04700619354844093, 0.025424733757972717, -0.01184561476111412, -0.0011665880447253585, -0.012376416474580765, -0.012047184631228447, 0.01701253280043602, -0.01639438420534134, -0.008150159381330013, -0.014392118901014328, 0.0017721388721838593, 0.020291410386562347, -0.0026136948727071285, 0.013619433157145977, 0.04705994576215744, -0.0030117961578071117, 0.06197614595293999, -0.030638685449957848, 0.00946036633104086, -0.009971010498702526, 0.010555564425885677, 0.010703383013606071, 0.002850539982318878, -0.004699947312474251, -0.01808757521212101, -0.01200015190988779, 0.0015722482930868864, -0.011516382917761803, 0.02644602209329605, 0.018840104341506958, 0.013223011046648026, -0.018047260120511055, -0.004343839827924967, 0.014203987084329128, -0.019753888249397278, 0.022669939324259758, -0.00792843196541071, 0.03402506560087204, 0.04173848778009415, 0.005633889697492123, 0.02246836945414543, 0.02635195665061474, -0.009722406975924969, -0.0053147366270422935, 0.025733808055520058, 0.013209572993218899, 0.010085233487188816, -0.028166089206933975, -0.037599578499794006, 0.0021148084197193384, 0.019942020997405052, 0.022884948179125786, -0.01294753234833479, 0.04069032520055771, -0.024174997583031654, -0.008224068209528923, 0.010085233487188816, -0.03348754346370697, 0.019753888249397278, 0.00816359743475914, -0.02666103094816208, 0.01011882908642292, -0.015897177159786224, 0.028542354702949524, -0.0014395478647202253, 0.00018183320935349911, 0.005301298573613167, -0.02367779053747654, -0.008116563782095909, 0.0004892278811894357, 0.0279779564589262, -0.016824400052428246, -0.011220746673643589, 0.022508682683110237, 0.017603805288672447, 0.00039411193574778736, -0.004961988888680935, 0.026916353031992912, 0.0013547203270718455, -0.0264325849711895, -0.004495017696171999, 0.018961045891046524, -0.005119885317981243, -0.01784569025039673, -0.025868188589811325, 0.0062083653174340725, 0.03211686760187149, -0.013088631443679333, -0.024887211620807648, -0.021366450935602188, 0.002361732069402933, 0.001003652112558484, 0.02000921219587326, 0.0027766309212893248, -0.03542261943221092, -0.006702212151139975, 0.0029479656368494034, -0.0013799166772514582, -0.04146973043680191, 0.006934018339961767, 0.04055594280362129, 0.02996678464114666, -0.009211762808263302, 0.005260984878987074, 0.0264325849711895, -0.016501888632774353, -0.004219538066536188, 0.00103892688639462, 0.023785294964909554, 0.028918618336319923, 0.002398686483502388, 0.018678847700357437, -0.00697433203458786, 0.018289145082235336, -0.012994565069675446, -0.00011695276771206409, -0.009137853048741817, 0.0016713537042960525, -0.0015184961957857013, 0.0207079891115427, 0.0012656934559345245, -0.02061392180621624, -0.07272656261920929, -0.026781972497701645, -0.006305790971964598, 0.030074287205934525, -0.015144648030400276, 0.023771855980157852, -0.004034765530377626, 0.0097694406285882, -0.018961045891046524, 0.012826589867472649, 0.0037055339198559523, -0.02008983865380287, 0.001371517893858254, 0.005785067565739155, 0.0015294146724045277, 0.00592280738055706, 0.019068550318479538, 0.002128246473148465, 0.0013589197769761086, 0.013592557050287724, 0.0037156124599277973, -0.00300843664444983, 0.0011682678014039993, -0.013108788058161736, -0.016367508098483086, -0.025465046986937523, -0.01429805252701044, 0.004118753131479025, 0.002996678464114666, 0.013518648222088814, 0.01593749225139618, -0.00041006956598721445, -0.022428054362535477, 0.0013169259764254093, 0.013632871210575104, 0.012315944768488407, -0.015184962190687656, -0.027547940611839294, 0.01785912737250328, -0.007807489484548569, 0.007874679751694202, -0.004807451739907265, 0.03200936317443848, 0.0022626265417784452, -0.012913936749100685, -0.013854598626494408, -0.007021365221589804, 0.004951910115778446, -0.010286804288625717, 0.011093085631728172, -0.032466255128383636, 0.018329458311200142, -0.008250944316387177, 0.009897101670503616, 0.022858072072267532, 0.002717839553952217, 0.03364880010485649, 0.03765333071351051, -0.03800271824002266, 0.00580186489969492, 0.00437071593478322, 0.0008869093144312501, -0.017590368166565895, 0.017765061929821968, 0.007115431595593691, -0.010394307784736156, -0.012551110237836838, -0.005260984878987074, -0.007101993542164564, -0.0061546131037175655, -0.017039408907294273, 0.001704108901321888, -0.01562841609120369, 0.02752106450498104, -0.02022421918809414, -0.014607127755880356, 0.004622678738087416, -0.03125683218240738, 0.016152499243617058, 0.012389854528009892, -0.012833308428525925, -0.0019115583272650838, -0.0010876397136598825, 0.005150121171027422, 0.027682321146130562, 0.025182848796248436, 0.010138985700905323, 0.0012119413586333394, -0.003917182795703411, -0.05907353386282921, -0.0011959837283939123, 0.007478258106857538, 0.007733580190688372, 0.005506228655576706, -0.02129926159977913, -0.027682321146130562, -0.008754869922995567, -0.011200589127838612, 0.01226891204714775, 0.01885354146361351, -0.006853390019387007, -0.00046403161832131445, -0.09164729714393616, 0.03356817364692688, 1.3805465641780756e-05, -7.69011694501387e-06, 0.018329458311200142, 0.01494307816028595, 0.01230250671505928, 0.008707837201654911, -0.003211686620488763, 0.023664353415369987, -0.029375510290265083, 0.030988072976469994, 0.00015453722153324634, -0.014620565809309483, -0.0061546131037175655, -0.009171448647975922, 0.013384267687797546, 0.01694534346461296, 0.011106523685157299, 0.0019115583272650838, -0.004478219896554947, -0.015104333870112896, 0.0005795145989395678, 0.015924053266644478, -0.017496300861239433, 0.013424581848084927, -0.010380870662629604, 0.03845961391925812, -0.0025061906781047583, -0.01901479810476303, -0.011227465234696865, 0.005217310972511768, -0.009426770731806755, -0.015682168304920197, -0.019525442272424698, 0.02314027026295662, 0.0003294414491392672, 0.01626000367105007, -0.005264344159513712, 0.052865169942379, -0.016730334609746933, -0.0016957101179286838, 0.010206175968050957, -0.013115507550537586, -0.0044143893755972385, -0.01886698044836521, 0.006181489210575819, 0.012779557146131992, 0.007740299217402935, 0.0138008464127779, 0.017429111525416374, 0.012289068661630154, -0.015668731182813644, -0.021097691729664803, -0.010817606002092361, -0.025706931948661804, -0.017227541655302048, -0.004901517648249865, -0.007699985522776842, -0.0207079891115427, 0.04130847379565239, 0.005220670718699694, 0.012678771279752254, -0.01846383884549141, 0.014271177351474762, -6.257077620830387e-05, -0.018947606906294823, -0.018504153937101364, 0.02015702985227108, -0.029993660748004913, -0.016649706289172173, 0.02351653389632702, 0.0017838971689343452, 0.003094104118645191, 0.011032613925635815, 0.0030907446052879095, -0.008801902644336224, 0.0046394760720431805, -0.012766119092702866, 0.019753888249397278, 0.0027245585806667805, 0.0073371585458517075, -0.036067645996809006, -0.002331496449187398, 0.025303790345788002, 0.00022823637118563056, -0.004699947312474251, 0.023355279117822647, -0.011341688223183155, 0.00020786936511285603, -0.02789732813835144, 0.008613770827651024, 0.02436313033103943, 0.02223992347717285, 0.04834999516606331, 0.029187379404902458, -0.002796787768602371, 0.012766119092702866, 0.044802356511354446, 0.0011976634850725532, 0.01577623561024666, -0.0017419032519683242, -0.00815687794238329, -0.03356817364692688, -0.0020157028920948505, 0.014378680847585201, -0.005865695420652628, -0.04380794242024422, -0.00835172925144434, -0.003450211603194475, -0.03324566036462784, 0.015158086083829403, 0.004034765530377626, 0.02115144394338131, -0.020587045699357986, 0.017294730991125107, 0.001054884516634047, -0.02162177301943302, -0.027198551222682, -0.005093009676784277, 0.02261618711054325, 0.01394866406917572, 0.00617141043767333, -0.013276763260364532, 0.03278876841068268, 0.012833308428525925, 0.01429805252701044, -0.03133746236562729, 0.02343590557575226, 0.002753114327788353, -0.000507705204654485, 0.014539937488734722, -0.02851547859609127, -0.02093643508851528, 0.0022038351744413376, 0.009305828250944614, 0.012665333226323128, -0.014647441916167736, 0.0031898499000817537, 0.059503551572561264, 0.04507111757993698, 0.016434697434306145, 0.0015058980789035559, 0.006739167030900717, -0.0023802092764526606, 0.008922845125198364, 0.019646385684609413, -0.004145629238337278, -0.01847727783024311, 0.03931964561343193, -0.018678847700357437, -0.006792918778955936, -0.009245357476174831, -0.01932387240231037, 0.03354129567742348, -0.032466255128383636, 0.005885852500796318, 0.01222859788686037, -0.0005769949639216065, 0.02467220462858677, -0.0023298165760934353, 0.018181640654802322, 0.0030554698314517736, -0.010938548482954502, -0.00881534069776535, 0.014042730443179607, 0.0026708063669502735, -0.006675336509943008, -0.006332666613161564, 0.016085309907794, -0.007484977133572102, -0.02014359086751938, -0.03257375955581665, -0.005932885687798262, 0.03499260172247887, -0.015346218831837177, 0.011442474089562893, 0.04308228939771652, -0.016139062121510506, 0.014701193198561668, 0.017805377021431923, -0.022186171263456345, -0.040125925093889236, -0.003618186805397272, 0.0031629737932235003, -0.005375207867473364, -0.013854598626494408, 0.004206100013107061], "71c6d102-1b98-40e2-975b-a0bca03bf152": [-0.020809633657336235, -0.032403379678726196, 0.00376830343157053, -0.027083421126008034, 0.004923647735267878, 0.007798574399203062, 0.0047960225492715836, -0.024665258824825287, 0.014898569323122501, 0.007778423372656107, 0.021736595779657364, 0.003513053059577942, -0.017209257930517197, -0.018001876771450043, -0.01835116744041443, 0.007308225147426128, -0.0012216758914291859, -0.013024493120610714, -0.010471987538039684, -0.020151356235146523, 0.0002130586071871221, -0.0038791359402239323, -0.01254086010158062, -0.014723923988640308, -0.03148985281586647, 0.0029085122514516115, 0.03380053862929344, -0.022502347826957703, 0.01438806764781475, 0.009800275787711143, 0.026640092954039574, 0.007791857700794935, -0.03046884946525097, -0.03957726061344147, -0.012641617096960545, -0.013602164573967457, 0.0017481300747022033, -0.021750029176473618, 0.005239352583885193, -0.011331778950989246, 0.012675202451646328, -0.02330840192735195, 0.012903585098683834, -0.01055931020528078, -0.029071688652038574, 0.025551918894052505, -0.035681333392858505, -0.0076911007054150105, -0.00838968064635992, 0.028050687164068222, -0.0025676186196506023, 0.008127713575959206, -0.03672920539975166, -0.0028060763143002987, 0.006539114750921726, 0.005225918255746365, -0.02252921462059021, 0.024047283455729485, -0.007986653596162796, -0.019828934222459793, 0.003539921483024955, 0.022099319845438004, -0.029286636039614677, -0.00660628592595458, -0.011237739585340023, 0.006874970626085997, 0.0023493121843785048, 0.03046884946525097, -0.021736595779657364, -0.00015596309094689786, 0.03286014497280121, 0.02265012450516224, 0.02783573977649212, -0.009377097710967064, 0.05005596578121185, -0.0068850466050207615, -0.021105187013745308, 0.023926375433802605, -0.006099143531173468, 4.99060915899463e-05, 0.0007195713114924729, -0.005991669837385416, 0.019184090197086334, -0.002340915845707059, 0.005424073431640863, 0.003546638647094369, -0.011083245277404785, 0.02342930994927883, 0.0013560183579102159, -0.004829608369618654, 0.01734359934926033, -0.02090367302298546, 0.002419841941446066, 0.014844832010567188, -0.009162149392068386, 0.004386278335005045, -0.015046345070004463, 0.03635304421186447, -0.022663557901978493, -0.037588994950056076, -0.023241229355335236, 0.006720477249473333, -0.007274639327079058, -0.007966502569615841, -0.015368767082691193, -0.03428417444229126, 0.03205408900976181, -0.00044584873830899596, -0.0006960614118725061, 0.002483654534444213, -0.008053825236856937, 0.038314443081617355, -0.0009857371915131807, -0.04384934902191162, -0.031301774084568024, 0.0017279786989092827, 0.019036313518881798, -0.020111052319407463, -0.0011360326316207647, 0.016040479764342308, 0.009793559089303017, -0.00146097328979522, 0.014965740032494068, 0.00832922663539648, 0.018875103443861008, 0.009592045098543167, 0.0066499472595751286, 0.007805291563272476, -0.0078993309289217, -0.021897805854678154, 0.027647659182548523, 0.030979350209236145, -0.005360260605812073, -0.005622228141874075, -0.02455778606235981, -0.024087587371468544, -0.009356945753097534, -0.02208588644862175, -0.011170567944645882, -0.00775155471637845, 0.00125106330960989, 0.0039530242793262005, -0.014791094698011875, -0.018015312030911446, 0.002303971676155925, 0.029877742752432823, 0.0006322487606666982, -0.006539114750921726, -0.012930452823638916, -0.007348527666181326, 0.003047892590984702, -0.023630822077393532, -0.030173296108841896, 0.009450986050069332, -0.004339258652180433, 0.012581163085997105, -0.013373782858252525, 0.01625542715191841, -0.02204558253288269, 0.006864895112812519, -0.007583627011626959, 0.02767452783882618, -0.024826470762491226, 0.004812815226614475, 0.00104871008079499, 0.015812097117304802, 0.006686891429126263, 0.004990818910300732, -0.014616450294852257, 0.005209125578403473, 0.008866596035659313, -0.0030546097550541162, -0.032645195722579956, 0.01977519690990448, 0.017007743939757347, 0.007993371225893497, -0.015247859060764313, 0.02196497842669487, -0.020809633657336235, 0.005450941622257233, -0.01587926782667637, -0.005303164944052696, -0.0033803898841142654, 0.02767452783882618, -0.006878329440951347, -0.026841605082154274, 0.00853074062615633, 0.013246158137917519, 0.00101848307531327, -0.005289730615913868, 0.027137158438563347, 0.042935822159051895, -0.013864132575690746, -0.011190719902515411, -0.5833683013916016, -0.026935644447803497, -0.00614952202886343, -0.01070037018507719, 0.0024282382801175117, 0.006572700571268797, -0.013662619516253471, 0.021669425070285797, -0.030012086033821106, 0.03697102144360542, -0.027325239032506943, 0.03224216774106026, -0.02556535229086876, -0.006021896842867136, 0.0054442244581878185, -0.031624194234609604, -0.007241053972393274, -0.02678786776959896, 0.00035012979060411453, 0.010465270839631557, -0.025336971506476402, 0.0066801742650568485, -0.0059345741756260395, 0.014428370632231236, 0.013642467558383942, 0.0055349054746329784, 0.027378974482417107, -0.03578880801796913, 0.007214185316115618, 0.031140562146902084, -0.0263445395976305, 0.028292503207921982, 0.032645195722579956, -0.005239352583885193, 0.051936760544776917, -0.015220990404486656, -0.02990461140871048, 0.029152294620871544, 0.0035936583299189806, 0.052742816507816315, -0.0168196652084589, -0.025874340906739235, 0.007872463203966618, 0.024584654718637466, -0.01625542715191841, 0.006864895112812519, 0.002565939212217927, -0.03060319274663925, 0.01917065680027008, 0.005531547125428915, -0.0016473733121529222, 0.00023111085465643555, -0.0035197699908167124, -0.01766602136194706, 0.005820383317768574, 0.0029605699237436056, 0.03659486025571823, -0.03952352702617645, 0.010163000784814358, -0.026290802285075188, -0.029770269989967346, 0.014898569323122501, 0.01323272380977869, 0.0027422637213021517, -0.012231872417032719, 0.008584477938711643, -0.02106488309800625, -0.007731403224170208, -0.003865701612085104, 0.00940396636724472, 0.01450897566974163, -0.008906899020075798, 0.03095248155295849, -0.026640092954039574, 0.02974340133368969, 0.03976534307003021, 0.03221530094742775, 0.006670098751783371, -0.007066408637911081, 0.0010948902927339077, 0.01031077653169632, 0.021306699141860008, 0.010660067200660706, -0.015744926407933235, 0.019922973588109016, 0.0028346239123493433, -0.0018119426677003503, -0.0006448433850891888, -0.0016356183914467692, 0.0020806274842470884, -0.0001960559020517394, 0.038395050913095474, -0.002490371698513627, -0.06292596459388733, 0.0014962381683290005, 0.02071559429168701, -0.013367066159844398, -0.01835116744041443, 0.021736595779657364, 0.003513053059577942, -0.01600017584860325, -0.014549278654158115, -0.011553443968296051, 0.0026902060490101576, 0.028910478577017784, -0.005380412098020315, -0.04857820272445679, -0.008047107607126236, 0.03030763939023018, -0.003074761014431715, -0.01471048966050148, 0.002606241963803768, 0.011674351990222931, -0.01531502977013588, 0.04247905686497688, -0.038233838975429535, 0.026734132319688797, 0.02479960210621357, 0.011842279694974422, -0.007254487834870815, 0.011882582679390907, 0.00593793299049139, 0.05419371277093887, -0.01694057323038578, 0.014065646566450596, 0.021575383841991425, 0.024745864793658257, -0.0015180688351392746, -0.018660156056284904, 0.007583627011626959, 0.009175583720207214, 0.01450897566974163, 0.017209257930517197, -0.005410639103502035, 0.027782002463936806, 0.019681157544255257, -0.004584433510899544, -0.006844743620604277, 0.01209753006696701, -0.005027763079851866, 0.001176335383206606, 0.010465270839631557, 0.014025343582034111, -0.007832160219550133, 0.014992608688771725, -0.009121847338974476, -0.03697102144360542, 0.01284313015639782, -0.019385604187846184, 0.012312478385865688, 0.017370468005537987, 0.005336750764399767, -0.01018986850976944, 0.004198199138045311, 0.0007758272113278508, 0.013340197503566742, -0.011345213279128075, -0.02037973701953888, -0.00901437271386385, -0.020352868363261223, 0.0063946968875825405, -0.007939633913338184, -0.007194033823907375, 0.004272087477147579, -0.028668662533164024, -0.011499706655740738, -0.01395817194133997, -0.005689399316906929, -0.026398275047540665, -0.04922304302453995, -0.020164789631962776, -0.026975948363542557, 0.008859879337251186, 0.011284759268164635, -0.00038560459506697953, -0.0010671821655705571, -0.01750481128692627, 0.007550041191279888, -0.013998474925756454, -0.0059648011811077595, -0.002344274427741766, 0.008510589599609375, 0.0015491354279220104, -0.004026912618428469, 0.015650887042284012, 0.03148985281586647, 0.007005954626947641, 0.015194121748209, -0.01985580287873745, 0.007227619644254446, -0.006461868062615395, 0.01605391316115856, 0.025498181581497192, 0.020003579556941986, 0.02208588644862175, -0.0022720652632415295, 0.037992022931575775, 0.002557542873546481, 0.017639152705669403, 0.0013048002729192376, 0.041511792689561844, 0.028964215889573097, 0.0257265642285347, -0.008577760308980942, 0.011103397235274315, -0.016631584614515305, 0.01446867361664772, 0.003232613205909729, 0.021629121154546738, 0.00765751488506794, -0.011620614677667618, -0.03420356661081314, -0.019184090197086334, -0.012534143403172493, 0.008671799674630165, 0.02273072861135006, -0.0004874108999501914, 0.018337734043598175, -0.020514080300927162, 0.011143699288368225, 0.00284637906588614, 0.0008367010741494596, 0.0123594980686903, -0.010780975222587585, -0.017289863899350166, -0.0065525490790605545, -0.00479266420006752, 0.01315211784094572, 0.006199900526553392, -0.022220227867364883, -0.022717295214533806, -0.00853074062615633, 0.022018713876605034, -0.0006859857239760458, 0.028561187908053398, -0.005417356267571449, 0.025054851546883583, -0.020729027688503265, 0.020634988322854042, 0.0035634313244372606, 0.005353543441742659, 0.007717969361692667, -0.004705341532826424, -0.017975009977817535, 0.018539248034358025, 0.02260982058942318, 0.030092690140008926, 0.016067348420619965, -0.0013585372362285852, -0.019627420231699944, -0.00259280763566494, -0.029232900589704514, -0.009256189689040184, 0.022059017792344093, 0.008120995946228504, -0.018901972100138664, -0.004641528706997633, 0.011284759268164635, 0.02813129313290119, 0.010767540894448757, 0.030119558796286583, 0.023577086627483368, 0.010693652555346489, 0.008812859654426575, 0.0010520686628296971, -0.03740091621875763, -0.015167254023253918, -0.008107561618089676, -0.0206618569791317, -0.013071512803435326, -0.023697994649410248, -0.00599838700145483, 0.010767540894448757, -0.02180376648902893, 0.019546814262866974, -0.002258631167933345, -0.005078141577541828, 0.04202229529619217, 0.01977519690990448, 0.00043283432023599744, -0.010545875877141953, -0.016631584614515305, 0.01462988369166851, 0.008141147904098034, 0.019224394112825394, -0.011674351990222931, -0.035681333392858505, 0.005840534344315529, 0.0003820361162070185, -0.0061696735210716724, 0.019667722284793854, -0.009571894071996212, 0.0004131027963012457, -0.007113428320735693, -0.011963187716901302, -0.005232635419815779, 0.03611122816801071, -0.025269800797104836, -0.00946442037820816, -0.02395324409008026, 0.003946307115256786, -0.018794497475028038, -0.015744926407933235, -0.0072007509879767895, 0.04465540498495102, -0.017209257930517197, 0.006482019554823637, 0.012702071107923985, 0.01353499386459589, -0.04065200313925743, 0.0006528199301101267, -0.021897805854678154, 0.0007619731477461755, -0.018176522105932236, -0.01617482118308544, 0.01722269132733345, 0.009457702748477459, 0.026116156950592995, 0.015731491148471832, 0.0011990056373178959, -0.003445881884545088, -0.00011387615086277947, -0.01625542715191841, 0.00024412527272943407, -0.014428370632231236, 0.020917106419801712, -0.0008354416349902749, -0.007932917214930058, -0.025981813669204712, 0.004416505340486765, -0.029797138646245003, -0.003973175771534443, -0.006972368806600571, -0.005397204775363207, -0.0028933987487107515, -0.01197662204504013, -0.006656664423644543, -0.01150642428547144, 0.0031855935230851173, 0.00962563045322895, -0.010599613189697266, -0.0012485444312915206, 0.013743224553763866, -0.019842367619276047, 0.017612284049391747, -0.008947202004492283, 0.015422504395246506, -0.008738971315324306, 0.028185028582811356, 0.005699475295841694, 0.018579550087451935, 0.03818010166287422, 0.013044644147157669, -0.010646632872521877, -0.01088173221796751, -0.0014475390780717134, -0.009410683065652847, 0.0027473014779388905, -0.01515381969511509, 0.004665039014071226, 0.01379696186631918, 0.06383949518203735, 0.0015373805072158575, 0.01256101205945015, -0.018821366131305695, 0.047154173254966736, 0.0054442244581878185, 0.013266309164464474, 0.016027044504880905, -0.022193359211087227, 0.008906899020075798, 0.009726387448608875, -0.026478881016373634, 0.00370784942060709, 0.017840666696429253, 0.02646544761955738, -0.04487035050988197, -0.0008656686404719949, 0.00404370529577136, 0.020876804366707802, -0.0257265642285347, -0.02540414221584797, 0.002438314026221633, -0.0012636579340323806, -0.004362768493592739, -0.01118400227278471, -0.01824369467794895, -0.0024097661953419447, 0.010780975222587585, -0.01021002046763897, -0.017115218564867973, 0.025054851546883583, -0.010807843878865242, -0.003513053059577942, 0.012312478385865688, -0.030818140134215355, -0.02208588644862175, 0.020231960341334343, 0.024853339418768883, 0.0025491465348750353, 0.02492051012814045, -0.016389768570661545, -0.017088349908590317, 0.027540186420083046, -0.009712953120470047, 0.003150328528136015, -0.019385604187846184, -0.029206031933426857, -0.0020655139815062284, -0.018297430127859116, 0.0075030215084552765, -0.04100129008293152, -0.008194884285330772, 0.01589270308613777, 0.009430834092199802, 0.0047590783797204494, 0.024665258824825287, 0.007764989044517279, -0.0078993309289217, 0.011781825684010983, 0.02136043645441532, -0.014441804960370064, 0.012077379040420055, -0.009880881756544113, -0.013447671197354794, -0.022112755104899406, -0.006159597542136908, -0.02974340133368969, -0.01786753535270691, 0.015462806448340416, 0.015852399170398712, 0.01961398683488369, 0.0009630668791942298, -0.003865701612085104, 0.0251220241189003, -0.010176434181630611, -0.002468541031703353, 0.010411533527076244, 0.009793559089303017, -0.0007930397987365723, -0.02325466461479664, 0.0082083186134696, -0.001247704727575183, -0.0072007509879767895, 0.024168193340301514, -0.004980743397027254, 0.026250498369336128, 0.01317226979881525, 0.01070037018507719, 0.021750029176473618, -0.006065558176487684, -0.02435627207159996, -0.019560249522328377, 0.008503871969878674, 0.03060319274663925, 0.02285163663327694, 0.005283013917505741, -0.007308225147426128, -0.036084361374378204, -0.010337645187973976, -0.013387217186391354, 0.0003748991875909269, -0.020675290375947952, -0.027499882504343987, -0.023697994649410248, -0.009249472059309483, 5.798762504127808e-05, -0.015113516710698605, -0.0061696735210716724, -0.025713128969073296, -0.012090813368558884, -0.005978235509246588, 0.03358559310436249, 0.004611301701515913, 0.02208588644862175, 0.007402264513075352, -0.03165106102824211, -0.0009336794610135257, -0.0033232944551855326, -0.012608031742274761, -0.002977362833917141, -0.009793559089303017, 0.001914378721266985, -0.00889346469193697, 0.015852399170398712, -0.001850566128268838, -0.02021852694451809, 0.004893420729786158, 0.016550980508327484, 0.003667546669021249, -0.01835116744041443, 0.027701396495103836, -0.015086648054420948, 0.002408087020739913, 0.026492316275835037, 0.014092514291405678, 0.00657605892047286, -0.0032040656078606844, 0.008806142024695873, -0.01415968593209982, -0.004392995499074459, 0.0071402969770133495, -0.009182301349937916, -0.03342438116669655, -0.0049034967087209225, -0.013467822223901749, 0.0036306024994701147, 0.00534010911360383, -0.02240830659866333, -0.02228739857673645, 0.012466971762478352, -0.009276340715587139, 0.04696609452366829, 0.025820603594183922, 0.0001668784098001197, -0.006747345440089703, 0.009726387448608875, -0.00473221018910408, 0.012614748440682888, -0.0026683753821998835, 0.0006691929302178323, -0.012930452823638916, 0.026156459003686905, 0.0003131856501568109, 0.010102545842528343, -0.007966502569615841, 0.0030546097550541162, 0.032161563634872437, -0.016671888530254364, 0.04685861989855766, 0.03234964236617088, -0.0062066176906228065, 0.007993371225893497, -0.02269042655825615, -0.0461869053542614, -0.022233663126826286, -0.00033123791217803955, -0.009921183809638023, -0.020608119666576385, 0.009108413010835648, 0.0015516544226557016, 0.012500557117164135, -0.0011108434991911054, 0.0019093409646302462, -0.010424967855215073, 0.0007367839571088552, 0.04234471544623375, 0.022596387192606926, 0.013178986497223377, 0.0364605188369751, 0.0010923714144155383, -0.00611929502338171, -0.044144902378320694, 0.014226856641471386, 0.008819576352834702, 0.02305315062403679, 0.062066175043582916, -0.013891001231968403, -0.04156553000211716, -8.445595653938653e-07, 0.00822847057133913, -0.01690026931464672, -0.030925612896680832, 0.01949307881295681, 0.019842367619276047, -0.009847295470535755, -0.010901883244514465, 0.0032796331215649843, -0.03858312964439392, 0.026196762919425964, -0.017880968749523163, -0.015194121748209, -0.009081544354557991, -0.003670905251055956, -0.005971518345177174, 0.017357034608721733, -0.00578343914821744, 0.013971606269478798, 0.0021427609026432037, 0.011600463651120663, -0.008429983630776405, -0.03804576024413109, -0.018740760162472725, -0.003674263833090663, -0.0021209302358329296, 0.04384934902191162, -0.004332541488111019, 0.0013400651514530182, 0.022502347826957703, 0.0004790145030710846, 0.009162149392068386, -0.04164613410830498, -0.018391471356153488, 0.04153865948319435, -0.01008911244571209, 0.0061696735210716724, -0.023617388680577278, -0.005440866108983755, 0.029609058052301407, 0.005098293069750071, -0.006129370536655188, -0.011405667290091515, 0.01754511334002018, -0.013615598902106285, 0.010351079516112804, 0.003761586267501116, 0.011022791266441345, 0.004241860471665859, -0.014307462610304356, -0.008000087924301624, -0.016725625842809677, -0.0066130030900239944, 0.0032762745395302773, -0.024624956771731377, -0.014307462610304356, -0.012386366724967957, -0.026290802285075188, 0.01014956645667553, 0.005299806594848633, 0.02552505023777485, -0.00614952202886343, 0.05080828443169594, -0.04640185460448265, 0.011922885663807392, 0.001591957057826221, 0.009981637820601463, -0.017571981996297836, 0.009847295470535755, -0.013810395263135433, 0.024893641471862793, 0.024181626737117767, -0.011331778950989246, -0.0230934526771307, -0.026761000975966454, 0.005010970402508974, 0.028453713282942772, 0.007731403224170208, 0.024450311437249184, 0.04145805537700653, 0.0035298457369208336, 0.030253902077674866, -0.031140562146902084, -0.00828892458230257, -0.02005731500685215, -0.025189194828271866, 0.019869236275553703, -0.01929156482219696, -0.02831937186419964, -0.004927006550133228, 0.004144462291151285, -0.011593746952712536, -0.00543079013004899, 0.003969816956669092, -0.03925484046339989, 0.0014475390780717134, -0.03562759608030319, -0.0251220241189003, -0.004305672831833363, -0.019116919487714767, -0.0056793238036334515, -0.018015312030911446, 0.01211768202483654, 0.005598718300461769, 0.015086648054420948, 0.010552593506872654, 0.02966279536485672, 0.017357034608721733, -0.002895078156143427, 0.00897407066076994, -0.03261832892894745, -0.017612284049391747, -0.022623255848884583, -0.015691189095377922, -0.03245711699128151, -0.020312566310167313, 0.02775513380765915, -0.013226006180047989, -0.021387305110692978, 0.019546814262866974, -0.01136536430567503, -0.01106309425085783, -0.00889346469193697, -0.018122786656022072, 0.02998521737754345, 0.0015331823378801346, 0.005840534344315529, 0.019506512209773064, 0.009276340715587139, 0.002602883381769061, 0.022717295214533806, 0.02568626031279564, 0.0026129591278731823, -0.012749090790748596, -0.0002632270916365087, -0.017397336661815643, -0.019546814262866974, -0.018861668184399605, -0.010048809461295605, 0.02329496666789055, 0.013306612148880959, 0.030871877446770668, 0.016188256442546844, -0.005682682152837515, -0.020527513697743416, 0.0016801193123683333, -0.012466971762478352, -0.0005184775800444186, -0.006260354537516832, 0.016282295808196068, -0.03877120837569237, -0.00026763518690131605, 0.022381439805030823, -0.008940484374761581, 0.00581366615369916, -0.012184852734208107, -0.009954770095646381, 0.00119060929864645, 0.024893641471862793, -0.03627244010567665, -0.01714208722114563, -0.002463503275066614, 0.0020621553994715214, 0.016550980508327484, -0.012325912714004517, 0.003946307115256786, 0.037508390843868256, -0.022757597267627716, 0.0017464507836848497, -0.01798844337463379, 0.011069810949265957, -0.02391294203698635, -0.006072275340557098, 0.018082482740283012, -0.01515381969511509, 0.007550041191279888, -0.0033904656302183867, 0.010364513844251633, -0.013864132575690746, 0.0053165992721915245, 0.02423536404967308, 0.0007926200050860643, -0.032430246472358704, 0.010572744533419609, 0.007207468152046204, -0.02791634388267994, -0.0037212837487459183, -0.000584389315918088, -0.0168196652084589, -0.017773495987057686, -0.021991845220327377, -0.016954006627202034, -0.026922211050987244, 0.00834937859326601, -0.013226006180047989, -0.00028484780341386795, -0.03740091621875763, -0.00633088406175375, 0.0026499032974243164, -0.00654583191499114, -0.001022681244648993, 0.27405843138694763, -0.02791634388267994, 0.010203302837908268, 0.027647659182548523, -0.0021713085006922483, -0.0016398165607824922, 0.011459404602646828, -0.004241860471665859, -0.00033732529846020043, 0.016027044504880905, 0.002340915845707059, -0.008698668330907822, 0.00039463071152567863, -0.015731491148471832, -0.01806904934346676, -0.011331778950989246, -0.01892884075641632, -0.05013657361268997, -0.021911241114139557, -0.011284759268164635, 0.007194033823907375, 0.008040390908718109, 0.0014953984646126628, -0.017531679943203926, -0.014616450294852257, 0.03006582334637642, 0.00021641716011799872, 0.011257890611886978, 0.03060319274663925, 0.007717969361692667, -0.018901972100138664, 0.018203390762209892, -0.021145489066839218, -0.03433791175484657, -0.0007086559780873358, -0.019560249522328377, 0.022582951933145523, -0.008000087924301624, 0.015435938723385334, -0.0026431861333549023, -0.0243159681558609, -0.014764226973056793, 0.02698938176035881, -0.004251935984939337, -0.02735210582613945, 0.004631453193724155, -0.005981593858450651, -0.002629751805216074, -0.0017632435774430633, 0.035761937499046326, -0.014912002719938755, -0.02136043645441532, 0.019399037584662437, 0.014105948619544506, 0.010592895559966564, -0.03358559310436249, 0.025054851546883583, -0.000215367617784068, 0.0190497487783432, 0.03457972779870033, -0.018176522105932236, 0.02682817168533802, -0.025954946875572205, 0.012614748440682888, -0.01645694114267826, 0.004523979499936104, -0.01880793273448944, -0.00907482672482729, -0.00735524483025074, -0.00932336039841175, -0.006065558176487684, -0.015019477345049381, -0.004574357531964779, -0.004799381364136934, -0.032161563634872437, -0.027970081195235252, 0.04632125049829483, 0.0025793735403567553, 0.01272222213447094, 0.05567147955298424, 0.026734132319688797, -0.022059017792344093, 0.0062670717015862465, 0.005356901790946722, -0.008577760308980942, -0.03084500879049301, 0.005356901790946722, -0.010283908806741238, -0.012225155718624592, -0.0006276307394728065, 0.010109263472259045, -0.026693828403949738, 0.004107518121600151, -0.018982576206326485, 0.012030359357595444, 0.012836413457989693, -0.01262146607041359, 0.012090813368558884, -0.014791094698011875, -0.0032964260317385197, -0.017007743939757347, 0.02861492522060871, 0.019036313518881798, -0.0028900401666760445, -0.017827233299613, 0.01786753535270691, 0.005064707249403, 0.010774258524179459, 0.00701938895508647, -0.01921095885336399, -0.0073888301849365234, -0.037750206887722015, 0.014603015966713428, 0.0006003424641676247, -0.0024702204391360283, 0.04210289940237999, -0.027701396495103836, -0.010720521211624146, 0.014025343582034111, 0.014092514291405678, 0.03917423635721207, -0.027405843138694763, 0.008638214319944382, -0.019909540191292763, -0.017760060727596283, 0.0062368446961045265, -0.01426715962588787, -0.005057990085333586, -0.009343511424958706, -0.03334377706050873, 0.023348703980445862, -0.004937082063406706, 0.015529978089034557, 0.02029913291335106, -0.0022015355061739683, 0.015946438536047935, -0.00956517644226551, -0.009941335767507553, 0.0043358998373150826, 0.008053825236856937, -0.019358735531568527, -0.008483720943331718, 0.008604628965258598, -0.005988311022520065, -0.012715505436062813, -0.01260131411254406, 0.00024307573039550334, -0.015207556076347828, 0.007946351543068886, -0.0007497983751818538, -0.022072451189160347, 0.010895166546106339, 0.01726299524307251, -0.012493840418756008, 0.013205855153501034, -0.030737534165382385, -0.019022880122065544, -0.03852939233183861, -0.00391943845897913, 0.03374680504202843, -0.010236888192594051, -0.01613451912999153, 0.005115085747092962, -0.013447671197354794, -0.01185571402311325, -0.019278129562735558, -0.16873401403427124, -0.0021410814952105284, 0.02074246108531952, -0.0360574908554554, 0.019963275641202927, -0.0028195104096084833, 0.004248577635735273, -0.009491288103163242, 0.005686040967702866, -0.028829872608184814, 0.006283864378929138, -0.006754062604159117, 0.007321659009903669, -0.012285609729588032, -0.016671888530254364, 0.010827994905412197, -0.01637633517384529, -0.00482289120554924, 0.05102323368191719, 0.007966502569615841, 0.07249114662408829, -0.0287761352956295, 0.007529889699071646, -0.0019429265521466732, 0.00019679058459587395, -0.007052974309772253, -0.0010529083665460348, -0.01347453985363245, 0.0028967573307454586, -0.004302314482629299, -0.016604717820882797, 0.011573594994843006, 0.03358559310436249, -0.006844743620604277, 0.03742778301239014, -0.01223859004676342, 0.013219289481639862, -0.007059691473841667, -0.015906136482954025, 0.011613897979259491, 0.025995248928666115, 0.025377273559570312, 0.03030763939023018, 0.002984079997986555, -0.015288162045180798, 0.026599789038300514, 0.02670726366341114, -0.0291791632771492, 0.032161563634872437, 0.004544130526483059, 0.008873313665390015, -0.026277367025613785, -0.00394966546446085, -0.013320046477019787, 0.03578880801796913, 0.01613451912999153, -0.009330078028142452, 0.010445118881762028, 0.007939633913338184, -0.012063944712281227, -0.010095829144120216, -0.0310062188655138, 0.016967441886663437, -0.006686891429126263, -0.03191974759101868, -0.007361961994320154, -0.011318344622850418, 0.005195691250264645, -0.0067876484245061874, -0.0032007070258259773, 0.013145401142537594, -0.03922797366976738, -0.038717471063137054, 0.008510589599609375, 0.015852399170398712, 0.004436656832695007, -0.008987504988908768, 0.0014408219140022993, 0.02612959034740925, -0.00497402623295784, -0.008463568985462189, 0.027782002463936806, 0.018404904752969742, -0.015328464098274708, -0.00651560490950942, 0.026452012360095978, -0.0028749266639351845, -0.012399801053106785, -0.05080828443169594, -0.01063991617411375, 0.030576324090361595, -0.011069810949265957, -0.010888448916375637, -0.0029303429182618856, -0.006579417735338211, -0.011016074568033218, -0.011788543313741684, 0.01037123054265976, 0.0011427497956901789, -0.0008450974710285664, -0.0008715461008250713, 0.005027763079851866, -0.013420802541077137, 0.035278305411338806, 0.03637991473078728, 0.0291791632771492, -0.02301284857094288, 0.0044433739967644215, 0.024611521512269974, -0.0052863722667098045, 0.007717969361692667, -0.00602861400693655, 0.0132730258628726, 0.010982489213347435, -0.0032191791106015444, 0.02642514370381832, -0.006720477249473333, -0.004816174041479826, 0.0123594980686903, -0.010062243789434433, -0.02074246108531952, -0.012124398723244667, -0.009195735678076744, 0.025175759568810463, -0.003482826054096222, -0.016215123236179352, -0.0644306018948555, -0.002453427528962493, 0.007422416005283594, 0.03054945543408394, -0.018136220052838326, 0.0016792796086519957, -0.012426669709384441, 0.030173296108841896, -0.01969459094107151, 0.009108413010835648, -0.012648333795368671, -0.0269490797072649, 0.012312478385865688, 0.01706148125231266, -0.010834712535142899, -0.004228426143527031, 0.001644014730118215, 0.00689848093315959, -0.0032561232801526785, 0.017558548599481583, 0.028561187908053398, 0.0196542888879776, 0.024611521512269974, -0.017048045992851257, 0.004806098528206348, -0.02934037335216999, -0.01601361110806465, 0.014119382947683334, 0.009054675698280334, 0.0010814560810104012, 0.00897407066076994, 0.009209169074892998, -0.008497155271470547, -0.011775108985602856, -0.009068110026419163, 0.025323536247015, -0.028803003951907158, -0.0006011821096763015, 0.0190497487783432, 0.0020134563092142344, -0.003936231601983309, 0.004251935984939337, 0.01589270308613777, 0.01353499386459589, -0.02548474818468094, -0.015046345070004463, 0.0030881953425705433, 0.0008459371165372431, -0.024826470762491226, -0.003936231601983309, -0.006324166897684336, 0.018512379378080368, -0.026277367025613785, 0.005508037284016609, 0.014482107944786549, -0.0072007509879767895, 0.024651825428009033, 0.0044433739967644215, -0.01209753006696701, 0.005162105429917574, -0.03834131360054016, 0.009236037731170654, -0.017760060727596283, 0.029474716633558273, 0.01446867361664772, 0.017316730692982674, -0.008718820288777351, -0.01909005083143711, -0.0038959288503974676, -0.001902623800560832, -0.014092514291405678, 0.012493840418756008, -0.009162149392068386, 0.03414982929825783, -0.022797901183366776, -0.01917065680027008, -0.00695893494412303, -0.01284313015639782, 0.003168800612911582, 0.02861492522060871, -0.023335270583629608, 0.0006524001364596188, -0.0016826381906867027, -0.024181626737117767, 0.004100800957530737, 0.02337557263672352, -0.019828934222459793, 0.0012561011826619506, 0.02552505023777485, -0.0482289120554924, -0.012063944712281227, -3.329696482978761e-05, 0.018203390762209892, -0.0012972435215488076, -0.017007743939757347, -0.029071688652038574, 0.016040479764342308, -0.00950472243130207, 0.0029202671721577644, 0.030764402821660042, -0.04041018337011337, -0.03181227296590805, -0.09694145619869232, 0.0269490797072649, 0.01798844337463379, -0.011822128668427467, 0.004097442142665386, -0.0005172181408852339, 0.051614340394735336, -0.007529889699071646, 0.0038892116863280535, 0.011284759268164635, -0.04379561170935631, -0.0019126995466649532, -0.002063834574073553, -0.012534143403172493, -0.008765839971601963, 0.016591282561421394, 0.03135550767183304, 0.010566027835011482, -0.001554173300974071, 0.00509493425488472, 0.013420802541077137, -0.0003929514205083251, 0.01248040609061718, 0.019278129562735558, -0.04992162436246872, 0.0218843724578619, 0.004419864155352116, 0.035842545330524445, 0.0036238853354007006, -0.0021242888178676367, 0.01187586598098278, -0.011345213279128075, 0.011620614677667618, -0.020003579556941986, -0.003640678245574236, -0.01100264023989439, -0.006653306074440479, 0.012688636779785156, 0.007939633913338184, 0.026613224297761917, -0.017598850652575493, -0.030200164765119553, 0.012010208331048489, 0.008759122341871262, 0.012990906834602356, -0.02391294203698635, 0.0030915536917746067, 0.01215798407793045, 0.013709639199078083, 0.021454475820064545, 0.027204329147934914, 0.02144104242324829, -0.02893734723329544, 0.016765927895903587, -0.0014282272895798087, -0.04468227177858353, 0.0014760867925360799, 0.007059691473841667, 0.0010092470329254866, -0.004997536074370146, 0.03936231508851051, -0.00808741059154272, 0.0184317734092474, -0.004023553803563118, 0.015610583126544952, -0.01403877791017294, -0.019640855491161346, -0.001015124493278563, 0.03054945543408394, -0.025739997625350952, -0.02759392373263836, -0.021588819101452827, 0.017128651961684227, 0.0017884328262880445, 0.021508213132619858, -0.00105626683216542, -0.032080959528684616, -0.016268860548734665, -0.0015382200945168734, 0.014052212238311768, -0.007818725891411304, 0.0022200075909495354, -0.009726387448608875, 0.0018959067529067397, 0.048363253474235535, -0.0028933987487107515, -0.017639152705669403, -0.00775155471637845, -0.02082306705415249, -0.0023157265968620777, -0.03629930689930916, -0.003482826054096222, 0.021776897832751274, 0.0073283761739730835, 0.022918809205293655, 0.01577179506421089, -0.00907482672482729, -0.008785990998148918, 0.00903452467173338, -0.008416549302637577, -0.002419841941446066, -0.021535081788897514, -0.009726387448608875, -0.029232900589704514, -0.02799694985151291, -0.013998474925756454, -0.012534143403172493, -0.020554382354021072, -0.0001516599440947175, 0.01848551072180271, 0.004523979499936104, -0.00011093741341028363, 0.004322465974837542, 0.0082083186134696, -0.01471048966050148, -0.003701132256537676, 0.01539563573896885, -0.013004341162741184, -0.007469435688108206, 0.018552681431174278, 0.02375173196196556, 0.023523349314928055, 0.0320003516972065, -0.016282295808196068, 0.04355379566550255, -0.003734717844054103, 0.005984952673316002, -0.01714208722114563, 0.04188795015215874, 0.005575208459049463, -0.021991845220327377, 0.01730329729616642, -0.007261204998940229, -0.01945277489721775, -0.014912002719938755, -0.017370468005537987, -0.0033871070481836796, 0.014132817275822163, 0.007946351543068886, 0.06582776457071304, -0.009061393328011036, -0.0007586145657114685, -0.0050613489001989365, 0.0035970169119536877, 0.01018986850976944, 0.0055516986176371574, 0.029609058052301407, -0.005246069747954607, -0.00666673993691802, 0.0004924487438984215, 0.01730329729616642, -0.0024584652855992317, -0.016685321927070618, -0.0038220405112951994, -0.012534143403172493, -0.012930452823638916, 0.00639133807271719, -0.01823025941848755, 0.018082482740283012, 0.03412296250462532, 0.016645019873976707, -0.004712058696895838, 0.019318433478474617, -0.030441980808973312, -0.012171418406069279, 0.03514396399259567, 0.008262055926024914, 0.0015608904650434852, -0.025350404903292656, 0.031194297596812248, 0.01359544787555933, -0.013024493120610714, -0.030361374840140343, 0.023362137377262115, 0.036648597568273544, -0.03562759608030319, 0.0196542888879776, 0.01391786988824606, -0.028185028582811356, 0.012346063740551472, 0.019748328253626823, -0.03148985281586647, -0.044064298272132874, 0.004171330481767654, 0.0013828867813572288, 0.021414173766970634, -0.008073976263403893, 0.0026734131388366222], "7b56d953-5d3d-4c26-b263-0d7d273eecf3": [-0.00421187374740839, -0.011879468336701393, 0.018394015729427338, -0.011386771686375141, -0.03350338712334633, -0.0008592256926931441, -0.009320181794464588, -0.012454281561076641, 0.024812759831547737, -0.009997639805078506, 0.029370207339525223, 0.01983104832470417, -0.009628118015825748, 0.010941975750029087, -0.0035241511650383472, -0.02002265304327011, 0.01576629839837551, -0.005819981452077627, 0.004263196140527725, -0.031450483947992325, 0.004225559998303652, -0.012023171409964561, 0.023088321089744568, -0.014630359597504139, -0.02051534876227379, 0.016710635274648666, 0.009025932289659977, -0.016327425837516785, 0.024443238973617554, -0.0055359965190291405, 0.018489817157387733, -0.0017552325734868646, -0.01794237643480301, -0.0039347317069768906, 0.001070076017640531, -0.007876306772232056, 0.0038970953319221735, -0.009025932289659977, 0.003838929580524564, -0.005857618059962988, 0.017121216282248497, 0.012153188697993755, 0.006589820142835379, 0.006627456750720739, -0.015478892251849174, 0.03175157308578491, -0.045711319893598557, -0.000724503886885941, 0.017846575006842613, -0.009244908578693867, 0.000578662205953151, 0.012153188697993755, -0.05720757693052292, -0.033804479986429214, 0.0005718191969208419, 0.011660492047667503, -0.01895514316856861, 0.014644045382738113, 0.009867623448371887, -0.01580735668540001, 0.010770900174975395, 0.022048184648156166, -0.02451166883111, -0.008259515278041363, 0.0038184006698429585, -0.003873144742101431, -0.013268600217998028, 0.000809613848105073, -0.018216097727417946, 0.0031340993009507656, 0.029589183628559113, 0.04754524677991867, 0.0170938428491354, 0.009210693649947643, 0.04732627049088478, 0.00681906146928668, -0.04034639894962311, 0.009279124438762665, -0.003931310493499041, 0.008362160064280033, -0.001208646921440959, -0.015492578968405724, 0.005748129915446043, -0.0267014317214489, 0.01769602857530117, 0.02370419353246689, -0.00306395860388875, 0.02708464115858078, 0.005060407333076, -0.009963424876332283, 0.008930129930377007, 0.017217017710208893, 0.01621793769299984, 0.013987116515636444, 0.020843813195824623, 0.01502725388854742, -0.0029749993700534105, 0.011270440183579922, -0.017572853714227676, -0.04650510847568512, -0.009990797378122807, 0.015068312175571918, -0.009484414011240005, -0.0005444471025839448, -0.027878429740667343, -0.027878429740667343, 0.04740838706493378, -0.0013651808258146048, 0.024169517681002617, -0.0025353359524160624, -0.016368484124541283, 0.034434035420417786, -0.0019776304252445698, -0.032025296241045, -0.029507067054510117, 0.004653248004615307, 0.030601948499679565, -0.00597052788361907, -0.026112932711839676, -0.0030109251383692026, 0.008772741071879864, -0.005857618059962988, 0.03394133970141411, 0.01895514316856861, 0.010695627890527248, 0.029753414914011955, -0.005926048383116722, 0.0006462369346991181, 0.0012206222163513303, -0.03279171139001846, 0.024648528546094894, 0.0005504347500391304, 0.0003725164569914341, -0.01194105576723814, -0.0015841572312638164, -0.014958824031054974, -0.010907760821282864, -0.018257156014442444, 0.00688064843416214, -0.0045300736092031, 0.02366313524544239, -0.0019639444071799517, -0.0010948819108307362, -0.024621156975626945, -0.01961207203567028, 0.0309304129332304, -0.0019245970761403441, 0.011852096766233444, -0.012166875414550304, -0.021842893213033676, 0.006541919428855181, -0.028111092746257782, -0.015013568103313446, -0.0181202944368124, 0.01747705228626728, 0.008389532566070557, 0.027358360588550568, 0.0007497374899685383, -0.015287288464605808, -0.015424148179590702, 0.001110278652049601, 0.006483753677457571, 0.018503503873944283, -0.015821043401956558, -0.004259774927049875, 0.042563531547784805, 0.0028535358142107725, 0.0028039240278303623, -0.014288208447396755, 0.005364921409636736, 0.0128169609233737, 0.0012753662886098027, -0.038348238915205, 0.028111092746257782, -0.02685197815299034, 0.03525519743561745, -0.005919205024838448, 0.03265485167503357, -0.01939309574663639, -0.032134782522916794, -0.017230704426765442, -0.008813799358904362, -0.009737606160342693, 0.028302697464823723, -0.007506784051656723, -0.032025296241045, 0.01940678060054779, 0.0004777277645189315, 0.010312418453395367, 0.005905519239604473, 0.008724840357899666, 0.039552606642246246, -0.013925529085099697, -0.01623162440955639, -0.6026229858398438, -0.03457089513540268, -0.009518628939986229, 0.0010469808476045728, -0.004177658818662167, 0.01753179542720318, 0.001677393214777112, 0.018435074016451836, -0.026153990998864174, 0.02258193865418434, -0.012290049344301224, 0.014315580949187279, -0.013316500931978226, 0.0013181351823732257, -0.0033770264126360416, -0.011359399184584618, -0.003698647953569889, 0.0064529599621891975, 0.0006231417646631598, 0.024799074977636337, -0.021268080919981003, 0.016258995980024338, -0.0266603734344244, 0.0018493239767849445, 0.0005256288568489254, -0.0027885274030268192, 0.01747705228626728, -0.012002642266452312, -0.014411382377147675, 0.03769131004810333, -0.03462563827633858, 0.018654050305485725, 0.003944996278733015, -0.006774581503123045, 0.06864909082651138, 0.0002482730196788907, -0.027686825022101402, 0.01877722516655922, 0.00037486874498426914, 0.04754524677991867, -0.00936808343976736, -0.024990679696202278, 0.024155830964446068, 0.018202411010861397, -0.005139101762324572, -0.003057115478441119, 0.011393615044653416, -0.02583921328186989, 0.0019280185224488378, 0.001960522960871458, 0.006788267754018307, -0.02534651570022106, 0.004437692929059267, -0.018462445586919785, 0.024374807253479958, 0.00917647872120142, 0.03328441083431244, -0.03333915397524834, 0.028412185609340668, -0.01940678060054779, -0.0012428619666025043, 0.024032657966017723, -0.010401378385722637, -0.012515868991613388, -0.028904881328344345, 0.006073173135519028, -0.026934094727039337, -0.037007007747888565, 0.0159852746874094, -0.010586138814687729, 0.007130418438464403, -0.021240709349513054, 0.026975153014063835, -0.010120814666152, 0.010634040459990501, 0.044068995863199234, 0.008512706495821476, -0.027768941596150398, 0.008629037998616695, 0.0033376789651811123, 0.006832747254520655, -0.015848414972424507, 0.008451119996607304, -0.015848414972424507, 0.01831189915537834, 0.0006496584392152727, -0.010675098747015, -0.017148587852716446, 0.002504542237147689, -0.003057115478441119, 0.008594823069870472, 0.03136836737394333, 0.019133061170578003, -0.03396870940923691, -0.008150027133524418, 0.04316571727395058, -0.013850255869328976, -0.007267278619110584, 0.017764458432793617, 0.0036815402563661337, -0.018284527584910393, -0.0018647207180038095, 0.013213856145739555, -0.019557327032089233, 0.02390948310494423, -0.012953821569681168, -0.04732627049088478, 0.01857193373143673, 0.034488778561353683, -0.0044479575008153915, 0.008430590853095055, 0.0032127939630299807, -0.0004678909317590296, -0.0047798436135053635, 0.018407702445983887, -0.02939757890999317, 0.007999480701982975, 0.02114490605890751, 0.009723919443786144, -0.02687934972345829, 0.015862101688981056, 0.00041186375892721117, 0.00929965265095234, 0.005385450087487698, -0.007479412015527487, -0.0013891314156353474, 0.033996082842350006, 0.013405459932982922, -0.0012300313683226705, 0.005477830767631531, -0.013070152141153812, -0.0028312960639595985, 0.0111883245408535, -0.022445078939199448, 0.013282286003232002, -0.001518293283879757, 0.0057583944872021675, -0.009751291945576668, -0.0016106738476082683, -0.01643691398203373, -0.006812218111008406, -0.008163712918758392, 0.008150027133524418, -0.003794450080022216, 0.014342952519655228, -0.02687934972345829, -0.021172277629375458, -0.004208452068269253, -0.010066070593893528, 0.0025849477387964725, 0.01471247524023056, 0.005443615838885307, -0.0021008045878261328, 0.025921327993273735, -0.0016542980447411537, -0.0032624059822410345, -0.009402298368513584, -0.012310578487813473, -0.000395825452869758, -0.00016701225831639022, -0.0019793412648141384, 0.007814719341695309, -0.01483564916998148, 0.004625875968486071, -0.01836664415895939, 1.1433977306296583e-05, 0.013159112073481083, -0.018298214301466942, -0.022499822080135345, -0.03183368965983391, 0.0017928690649569035, -0.012030014768242836, -0.001280498574487865, -0.007588900160044432, 0.012228461913764477, 0.0006030403892509639, -0.019557327032089233, 0.001991316443309188, -0.013713395223021507, -0.005987635347992182, 0.011065149679780006, -0.007801033556461334, 0.012707472778856754, -0.002482302486896515, 0.008163712918758392, 0.013357559219002724, 0.02432006411254406, 0.010722999460995197, -0.028302697464823723, 0.002684171311557293, 0.0159852746874094, -0.010257674381136894, 0.014794591814279556, 0.004557445645332336, 0.03503622114658356, 0.006062908563762903, 0.02733098901808262, 0.014315580949187279, 0.003910781349986792, 0.0256339218467474, 0.03588475286960602, -0.0030964629258960485, 0.006918285042047501, -0.014123976230621338, 0.03177894651889801, -0.020583778619766235, -0.017969749867916107, -0.006275041960179806, 0.03095778450369835, 0.010941975750029087, -0.007239906582981348, -0.01879091002047062, -0.022267160937190056, 0.007821562699973583, 0.021432312205433846, 0.029260719195008278, -0.020091082900762558, -0.0013352426467463374, -0.028850138187408447, 0.019269920885562897, 0.006155289243906736, -0.028959626331925392, 0.00873852614313364, -0.03801977261900902, -0.011694706976413727, -0.004348733928054571, 0.0170390997081995, 0.012399537488818169, 0.025113852694630623, -0.02942495048046112, -0.002258193911984563, 0.0013489286648109555, -0.003808136098086834, 0.008800113573670387, 0.03257273510098457, -0.024785388261079788, 0.026906723156571388, -0.018202411010861397, 0.028439557179808617, -0.003736284328624606, -0.001621793839149177, -0.012385851703584194, 0.008457962423563004, -0.012652728706598282, 0.0034950682893395424, 0.011605747975409031, 0.03944312036037445, 0.020118454471230507, -0.034160315990448, 3.373390791239217e-05, -0.016286367550492287, -0.010312418453395367, -0.02178815007209778, 0.023786308243870735, -0.0016089631244540215, -0.029917648062109947, -0.014315580949187279, -0.0023488637525588274, 0.04248141869902611, 0.02092592976987362, 0.02174709178507328, 0.019529955461621284, 0.004605346824973822, -0.0029048584401607513, -0.00884117092937231, -0.01942046731710434, -0.026742490008473396, -0.025456003844738007, -0.011379928328096867, -0.012645885348320007, -0.011400457471609116, -0.004653248004615307, -0.0025507325772196054, -0.012960663996636868, 0.014821963384747505, -0.005604426842182875, 0.005861039739102125, 0.012919606640934944, 0.028275324031710625, -0.002407029503956437, -0.00047601701226085424, -0.011051463894546032, 0.010305576026439667, 0.013316500931978226, 0.016573773697018623, -0.0024634841829538345, -0.023143066093325615, 0.013843412511050701, 0.0008575149113312364, -0.016176879405975342, 0.005228061228990555, 0.020789070054888725, 0.02072064019739628, 0.014110290445387363, -0.026619315147399902, -0.00832110270857811, 0.03719861060380936, -0.02300620637834072, -0.026304537430405617, -0.005358078051358461, 0.005187002941966057, -0.012467967346310616, -0.017367564141750336, -0.01043559331446886, 0.03470775485038757, 0.01515042781829834, -0.02156917378306389, -0.004358998499810696, -0.001661996473558247, -0.02471695840358734, -0.022554567083716393, -0.026167677715420723, -0.01769602857530117, -0.00549493869766593, -0.021870264783501625, 0.00958705972880125, 0.00688406964763999, -0.002807345474138856, 0.028521673753857613, 0.013795511797070503, -0.025852898135781288, -0.009799192659556866, -0.02089855819940567, -0.003209372516721487, 0.027344675734639168, 0.001697922358289361, -0.0015234254533424973, 0.007479412015527487, -0.015396776609122753, -0.00971023365855217, -0.028904881328344345, -0.007869463413953781, 0.00015011857612989843, -0.02026900090277195, 0.002518228255212307, -3.416159961489029e-05, 0.00464640511199832, -0.012803275138139725, 0.021623916923999786, -0.003671275917440653, -0.016806436702609062, -0.010538238100707531, -0.001715885242447257, -0.026810919865965843, -0.0009169635595753789, -0.021227022632956505, 0.006097123492509127, 0.017627598717808723, 0.002136730356141925, 0.010859860107302666, 0.02046060562133789, 0.026838291436433792, 0.0006860119174234569, -0.010113971307873726, -0.006582977250218391, 0.009764977730810642, -0.009792350232601166, 0.01687486656010151, -0.021842893213033676, 0.017860259860754013, 0.01065456960350275, 0.048120059072971344, -0.004071591887623072, 0.023102007806301117, -0.0005196412093937397, 0.01961207203567028, 0.015903159976005554, 1.5329949746956117e-05, 0.021281765773892403, -0.020364802330732346, 0.008252671919763088, 0.019954223185777664, -0.027166757732629776, -0.05247221514582634, 0.022773543372750282, -0.014438754878938198, -0.026058189570903778, 0.0017372695729136467, 0.0018578777089715004, 0.002648245543241501, -0.04108544439077377, -0.007958422414958477, -0.005946577060967684, -0.007322022691369057, 0.008889072574675083, -0.004263196140527725, -0.014192406088113785, -0.007602585945278406, -0.008943816646933556, -0.025469690561294556, -0.03558366000652313, -0.01580735668540001, -0.01958470046520233, -0.031094646081328392, 0.024032657966017723, -0.044068995863199234, -0.03153259679675102, 0.01301540806889534, 0.017422307282686234, 0.013378088362514973, 0.040236908942461014, -0.027180442586541176, -0.0181202944368124, 0.012591141276061535, -0.008964345790445805, 0.00016016924928408116, -0.02748153544962406, -0.03714386746287346, -0.008978031575679779, -0.00656586978584528, 0.020816441625356674, 0.013624436222016811, -0.03131362050771713, 0.028220580890774727, 0.013220698572695255, 0.015478892251849174, 0.03155997022986412, 0.012406379915773869, -0.006240826565772295, 0.0047558932565152645, 0.010688784532248974, 0.015643125399947166, -0.004660090897232294, -0.01150994561612606, 0.01235847920179367, -0.02430637739598751, -0.01624530926346779, -0.008259515278041363, -0.001489210408180952, -0.028083721175789833, -0.0014926319709047675, 0.016984354704618454, 0.0077326032333076, 0.02048797719180584, 0.013918685726821423, -0.010620354674756527, -0.008362160064280033, -0.010531394742429256, 0.02050166390836239, 0.006689044181257486, 0.0020511928014457226, 0.0191741194576025, 0.00029168339096941054, 0.012919606640934944, 0.012529554776847363, -0.03183368965983391, 0.022855659946799278, 0.021377569064497948, -0.003534415503963828, -0.001283064717426896, -0.014356638304889202, -0.034078199416399, -0.03933363035321236, 0.008820641785860062, 0.008191085420548916, 0.022239787504076958, -0.005156209226697683, -0.01642322912812233, -0.01643691398203373, 0.00949125736951828, 0.015410462394356728, 0.03246324881911278, -0.001017897971905768, -0.0426456481218338, -0.007712074089795351, -0.010312418453395367, 0.011694706976413727, -0.017175959423184395, -0.01354916300624609, -0.025743409991264343, -0.0003066524805035442, 0.005306755658239126, 0.02156917378306389, 0.00016305614553857595, 0.03314754739403725, -0.0005311887944117188, -0.041496023535728455, -0.016341112554073334, 0.01408291794359684, -0.030547205358743668, 0.001139361411333084, -0.020132141187787056, 0.012721158564090729, 0.019776303321123123, 0.03355813026428223, 0.0256339218467474, 0.003467696253210306, 0.011024092324078083, 0.02114490605890751, -0.01859930530190468, -0.01857193373143673, 0.016696948558092117, 0.003938153386116028, 0.0016893685096874833, 0.020132141187787056, 0.024237947538495064, -0.0017304265638813376, -0.00040844225441105664, 0.008690625429153442, 0.017819203436374664, -0.0031477853190153837, -0.0011692995904013515, 0.007493097800761461, -0.05072040483355522, -0.0007758264546282589, 0.00091952970251441, 0.016505343839526176, -0.0040407986380159855, -8.71414813445881e-05, -0.010380849242210388, -0.009409140795469284, -0.017381250858306885, 0.04729889705777168, 0.005946577060967684, 0.012153188697993755, -0.014479813165962696, -0.001753521733917296, 0.006866962183266878, 0.009573373943567276, -0.008670096285641193, 0.01747705228626728, -0.013521791435778141, 0.020542722195386887, 0.011044621467590332, -0.0011564689921215177, 0.006887491326779127, 0.011701550334692001, 0.0042221383191645145, 0.005819981452077627, 0.02154180034995079, -0.0022530616261065006, -0.04346681013703346, 0.0010546791600063443, -0.029534438624978065, -0.03366761654615402, -0.029698671773076057, -0.02474432997405529, 0.0030040822457522154, -0.053430236876010895, 0.005368342623114586, -0.0015259915962815285, 0.010305576026439667, 0.0256339218467474, -0.01939309574663639, -0.01376129686832428, -0.01873616687953472, 0.025086481124162674, 0.007869463413953781, 0.02540126070380211, 0.03681540489196777, -0.006001321133226156, -0.01939309574663639, -0.05159630998969078, 0.0019673658534884453, -0.005429930053651333, 0.03180631995201111, 0.06914179027080536, -0.009799192659556866, -0.013973429799079895, -0.005806295666843653, 0.010504023171961308, 0.00018818282114807516, -0.027029896154999733, 0.00788999255746603, 0.013432832434773445, 0.011865782551467419, -0.023745251819491386, 0.0039039382245391607, -0.030601948499679565, 0.008177398703992367, -0.013754453510046005, -0.00735623762011528, -0.01417872030287981, 0.003510465146973729, 0.002886040136218071, 0.019913164898753166, -0.024853818118572235, 0.00628872774541378, 0.004160551354289055, 0.020200571045279503, -0.007725760340690613, -0.026988837867975235, -0.05291016772389412, 0.0027782628312706947, -0.010551923885941505, 0.021829208359122276, -0.010408220812678337, 0.0017210174119099975, 0.02152811549603939, 0.014945137314498425, 0.01729913428425789, -0.03150522708892822, -0.026167677715420723, 0.04842115193605423, 0.004838009364902973, -0.00864272378385067, -0.012755374424159527, 0.008033695630729198, 0.03303806111216545, -0.0138776283711195, 0.003619953291490674, -0.01449349895119667, 0.00199644872918725, -0.016710635274648666, 0.011318341828882694, -0.02882276475429535, 0.023184124380350113, -0.029041742905974388, -0.00038085636333562434, -0.013083838857710361, -0.020118454471230507, -0.005936312954872847, 0.01939309574663639, -0.04330257698893547, -0.01751811057329178, -0.01624530926346779, -0.036185845732688904, 0.00017577986000105739, -0.0030400080140680075, 0.0018270841101184487, 0.006829325575381517, 0.056386418640613556, -0.01898251473903656, 0.017340192571282387, 0.008273201063275337, -0.003476249985396862, -0.019913164898753166, 0.003007503692060709, -0.0024703273084014654, -0.028713276609778404, 0.01342598907649517, -0.013159112073481083, -0.021829208359122276, -0.02816583588719368, 0.021062789484858513, 0.03238113224506378, -0.011202010326087475, 0.022458763793110847, 0.022896718233823776, 0.004947497509419918, 0.011708392761647701, -0.017394935712218285, -0.024374807253479958, -0.005748129915446043, -0.01363812293857336, -0.0022770122159272432, 0.012351635843515396, -0.008827485144138336, 0.016258995980024338, -0.006671936716884375, -0.005720757879316807, -0.00232320255599916, -0.0047114137560129166, -0.02046060562133789, 0.014863021671772003, -0.018612992018461227, -0.01857193373143673, -0.010853016749024391, -0.02989027462899685, -0.015643125399947166, -0.024183204397559166, -0.015533636324107647, 0.01289223413914442, 0.002547311130911112, 0.022143986076116562, 0.011167795397341251, 0.009744448587298393, -0.008786426857113838, -0.00719884829595685, -0.013993958942592144, -0.017983434721827507, -0.03131362050771713, -0.023813681676983833, -0.02044691890478134, -0.00990183837711811, 0.03183368965983391, -0.007739446125924587, -0.014165034517645836, -0.014233464375138283, 0.007034616079181433, -0.020939616486430168, -0.01859930530190468, -0.0005264842184260488, 0.017586540430784225, 0.0362679623067379, -0.006223719101399183, 0.014096604660153389, 0.02385473996400833, -0.00139939587097615, 0.017025412991642952, -0.006138181779533625, -0.013090681284666061, -0.003151206998154521, -0.0006180094787850976, 0.009764977730810642, -0.014780905097723007, -0.002128176623955369, -0.005833667702972889, 0.003101594978943467, 0.0065384977497160435, -0.006521390285342932, 0.01666957698762417, 0.01580735668540001, -0.0031187026761472225, -0.004991977009922266, -0.012522711418569088, -0.0028569574933499098, -0.007506784051656723, -0.01646428555250168, -0.02967129833996296, 0.021240709349513054, 0.026058189570903778, -0.005033035296946764, 0.010134500451385975, -0.007431510835886002, 0.011639962904155254, -0.008430590853095055, 0.010086599737405777, -0.0154652064666152, -0.014958824031054974, 0.0031477853190153837, -0.007452039979398251, 0.010168715380132198, -0.015615752898156643, -0.003142653265967965, 0.023129379376769066, 0.011044621467590332, -0.003041718853637576, -0.017435993999242783, -0.0031888436060398817, -0.026140304282307625, -0.0034916468430310488, 0.002105936873704195, -0.005563368555158377, -0.00959390215575695, 0.008136341348290443, 0.009915524162352085, -0.003344522090628743, -0.0073151797987520695, 0.0009357818635180593, 0.025291770696640015, -0.03643219545483589, 0.020611152052879333, 0.00852639228105545, -0.0075204698368906975, -0.0035823166836053133, 0.0027953702956438065, -0.009764977730810642, 0.0068053752183914185, -0.02449798211455345, -0.0067164162173867226, -0.04248141869902611, 0.010312418453395367, 0.002667063847184181, 0.0035019111819565296, -0.016943296417593956, 0.00992920994758606, 0.017326505854725838, -0.0016962115187197924, -0.009203851222991943, 0.2638665437698364, -0.019940536469221115, 0.01642322912812233, 0.0213638823479414, 0.003361629555001855, 0.002771419705823064, 0.004749050363898277, 0.006439274176955223, 0.002819320885464549, 0.026975153014063835, -0.017353877425193787, -0.020748011767864227, -0.006011585704982281, -0.003305174643173814, 0.009333868511021137, -0.02411477267742157, -0.03068406507372856, -0.016258995980024338, -0.03243587538599968, -0.014438754878938198, 0.03369498997926712, -0.0073151797987520695, 0.003879987634718418, -0.006470067426562309, 0.013932372443377972, -0.011085678823292255, -0.008355317637324333, 0.014561928808689117, 0.027673140168190002, 0.003921045921742916, -0.026947779580950737, -0.0016799593577161431, 0.0096075888723135, -0.00012809262261725962, -0.008779584430158138, -0.02280091494321823, 0.033585503697395325, -0.020624836906790733, 0.03114938922226429, -0.0005269119283184409, -0.008143183775246143, -0.003115281229838729, 0.0014635490952059627, 0.010449279099702835, -0.020570093765854836, 0.002300962805747986, 0.0038970953319221735, -0.01046296488493681, 0.016984354704618454, -0.010538238100707531, -0.016738006845116615, -0.021008046343922615, 0.03812926262617111, 0.02453904040157795, 0.016683261841535568, -0.007773661520332098, 0.01833927072584629, -0.000294891040539369, 0.0026157412212342024, 0.03692489117383957, -0.012440595775842667, 0.0362405888736248, -0.0287953931838274, 0.020091082900762558, -0.022746171802282333, -0.01395974401384592, -0.012810118496418, 0.018626678735017776, -0.00496460497379303, -0.023375729098916054, -0.0012368743773549795, -0.008266358636319637, -0.02174709178507328, 0.008150027133524418, -0.025976072996854782, -0.017997121438384056, 0.029999762773513794, 0.018818281590938568, 0.019502583891153336, 0.05244484171271324, 0.014041860587894917, 0.0006911442033015192, -0.0014182141749188304, -0.0017945797881111503, -0.004174237139523029, -0.01747705228626728, 0.023635761812329292, -0.020761698484420776, -0.01880459673702717, -0.014863021671772003, 0.005929469596594572, -0.0035788952372968197, -0.004283725284039974, -0.022677741944789886, 0.024675900116562843, 0.0030023714061826468, 0.005645484663546085, 0.005163052584975958, 0.021076476201415062, 0.0012377297971397638, -0.02197975479066372, 0.03366761654615402, 0.04779159277677536, 0.009463884867727757, -0.013966587372124195, 0.0023060948587954044, -0.006839590147137642, 0.015930531546473503, -0.0058028739877045155, -0.009477571584284306, 0.020583778619766235, -0.044753298163414, -0.00022132866433821619, -0.0026071874890476465, -0.006268198601901531, 0.04781896620988846, -0.004851695150136948, -0.022869344800710678, -0.021651288494467735, 0.01184525340795517, 0.028740650042891502, -0.02983553148806095, 0.005895254667848349, -0.013788668438792229, -0.02282828651368618, -0.0031187026761472225, -0.0298629030585289, -0.01002501230686903, -0.018284527584910393, -0.051760539412498474, 0.02626347914338112, -0.004341891035437584, 0.005648906342685223, -0.010264517739415169, 0.008512706495821476, 0.00036588727380149066, 0.016546402126550674, 0.00036652880953624845, -0.019926849752664566, -0.0006697597564198077, -0.015396776609122753, 0.01417872030287981, -0.003917624242603779, 0.008499020710587502, 0.001637190580368042, -0.008334788493812084, 0.014890393242239952, 0.014356638304889202, 0.0037841855082660913, -0.022294532507658005, -0.04565657302737236, 0.006726680789142847, 0.004718256648629904, 0.006658250465989113, 0.014821963384747505, -0.015725241973996162, -0.014999881386756897, -0.04122230410575867, -0.015300974249839783, 0.009025932289659977, -0.038293495774269104, -0.02171972021460533, 0.04582080617547035, -0.006894334219396114, -0.007410981692373753, -0.019338350743055344, -0.174962118268013, -0.0007942170486785471, 0.017559168860316277, -0.024881191551685333, 0.03925151750445366, -0.0017911583418026567, -0.00027778351795859635, -0.003344522090628743, -0.020597465336322784, -0.01014818623661995, 0.010319261811673641, 0.014123976230621338, -0.02006371133029461, 0.00096657540416345, -0.020638523623347282, 0.00915594957768917, -0.00842374749481678, -0.0021025154273957014, 0.038731448352336884, 0.013781826011836529, 0.05945208668708801, -0.019789990037679672, -0.010113971307873726, 0.012207932770252228, 0.0031204132828861475, 0.007527313195168972, -0.01985841989517212, -0.015738926827907562, 0.002834717743098736, -0.018216097727417946, -0.003921045921742916, -0.01194105576723814, 0.02728993073105812, 0.009231222793459892, -0.004985134117305279, -0.02091224491596222, 0.01731281913816929, 0.01483564916998148, 0.0004922691732645035, 0.01981736160814762, -0.003195686498656869, 0.03249061852693558, 0.0072946506552398205, 0.018229782581329346, -0.00082543829921633, 0.018298214301466942, -0.010839330963790417, -0.017832888290286064, 0.0016902239294722676, -0.0047558932565152645, 0.0006162987556308508, -0.02176077663898468, -0.02306094951927662, -0.01430189423263073, 0.012365322560071945, 0.01873616687953472, 0.009792350232601166, 0.02256825380027294, -0.006387951318174601, -0.00011323046055622399, 0.0006740366807207465, -0.012221619486808777, -0.00033445219742134213, 0.009600745514035225, -0.007616272196173668, 0.0006872949888929725, -0.0383756086230278, 0.00019801965390797704, -0.008663252927362919, 0.001056389999575913, 0.030547205358743668, -0.013460204005241394, -0.0011949609033763409, 0.003619953291490674, 0.011537318117916584, -0.0011359399650245905, 0.0022564830724149942, 0.044835414737463, 0.03328441083431244, 0.008615352213382721, -0.016135821118950844, 0.024155830964446068, 0.0026379809714853764, -0.03478987142443657, -0.009573373943567276, 0.021021733060479164, 0.015424148179590702, -0.0320526659488678, -0.03755445033311844, 0.014644045382738113, 0.04072960466146469, -0.015287288464605808, -0.006073173135519028, -0.001648310455493629, 0.013138582929968834, -0.007821562699973583, -0.005207532085478306, -0.009409140795469284, 0.0025558648630976677, -0.004283725284039974, 0.010825644247233868, -0.01184525340795517, -0.004879067186266184, 0.013569692149758339, 0.019037257879972458, 0.016354797407984734, -0.02857641689479351, 0.0128169609233737, 0.03388659283518791, 0.0024412444327026606, -0.021199651062488556, 0.007821562699973583, 0.022773543372750282, 0.014096604660153389, 0.035747893154621124, 0.0037328628823161125, -0.003231612266972661, 0.00298697454854846, 0.008800113573670387, 0.002504542237147689, 0.0054504587315022945, -0.02113122120499611, 0.0005303334328345954, 0.005854196380823851, -0.002299251966178417, -0.023074636235833168, -0.060492224991321564, -0.02813846431672573, -0.0027953702956438065, 0.021925009787082672, -0.0020118453539907932, 0.016163194552063942, -0.0021521272137761116, 0.022951461374759674, -0.003087908960878849, 0.014863021671772003, -0.0002474176581017673, -0.016258995980024338, -0.026140304282307625, 0.01408291794359684, -0.0004276882391422987, 0.01794237643480301, 0.006702729966491461, -0.0009315049974247813, 0.014110290445387363, 0.017175959423184395, 0.014698789454996586, 0.01194789819419384, 0.00042084523010998964, -0.0028244531713426113, -0.007493097800761461, -0.015602067112922668, -0.022143986076116562, 0.02514122612774372, 0.020186884328722954, 0.014219778589904308, 0.025729725137352943, -0.0028655112255364656, -0.007089360151439905, -0.023143066093325615, 0.0012676679762080312, 0.00015172240091487765, -0.02091224491596222, -0.03353075683116913, 0.018229782581329346, -0.023841053247451782, -0.0050467210821807384, -0.0010281625436618924, 0.011769980192184448, 0.0090533047914505, -0.014370325021445751, -0.008020009845495224, 0.0014703921042382717, 0.003122124122455716, -0.004270039498806, -0.01002501230686903, -0.044014252722263336, -0.009046461433172226, -0.0154652064666152, 0.006815639790147543, 0.041879232972860336, 0.018243469297885895, 0.012871704995632172, 0.0050227707251906395, -0.036350078880786896, 0.022280845791101456, 0.0033137283753603697, 0.016546402126550674, -0.030191367492079735, 0.023841053247451782, 0.0038970953319221735, -0.002661931561306119, -0.02624979242682457, -0.006685622502118349, -0.0032726703211665154, -0.0009691415471024811, -0.00959390215575695, 0.0192288625985384, -0.030109252780675888, 0.0012172007700428367, -0.01788763329386711, -0.028056347742676735, 0.013378088362514973, -0.007226220332086086, 0.019037257879972458, -0.011598904617130756, -0.001991316443309188, -0.00842374749481678, -5.2872957894578576e-05, -0.007629957981407642, 0.02300620637834072, 0.016108449548482895, 0.0055565256625413895, -0.00591236213222146, -0.0032333231065422297, -0.042782511562108994, -0.028685905039310455, -0.004858538508415222, 0.005142523441463709, -0.0014250571839511395, -0.008690625429153442, -0.01228320598602295, 0.0006877226987853646, 0.013172797858715057, 0.02537388727068901, 0.028083721175789833, -0.008697467856109142, -0.02371787838637829, -0.08386795222759247, 0.011352556757628918, 0.009532315656542778, 0.0037533920258283615, 0.013097524642944336, -0.010948819108307362, 0.008615352213382721, 0.015903159976005554, -0.0007270700298249722, 0.024251634255051613, -0.04458906501531601, 0.02749522216618061, 0.018927769735455513, -0.0017808937700465322, -0.028685905039310455, -0.02835744060575962, 0.03270959481596947, 0.008362160064280033, 0.01665589027106762, 0.012926449067890644, -0.01984473504126072, 0.008916444145143032, -0.005837088916450739, 0.015944218263030052, -0.03350338712334633, 0.019269920885562897, 0.006596663501113653, 0.01194789819419384, -0.0013429410755634308, -0.03344864025712013, 0.0008369858842343092, -0.021842893213033676, 0.006627456750720739, -0.006726680789142847, -0.0006748920422978699, 0.019680501893162727, 0.0034933574497699738, 0.020556407049298286, 0.006411902140825987, 0.03886830806732178, -0.033996082842350006, -0.009703390300273895, 0.02258193865418434, 0.002583236899226904, -0.02193869650363922, -0.014055546373128891, 0.0016209384193643928, 0.011366242542862892, 0.003060536924749613, 0.03481724485754967, 0.021076476201415062, 0.026304537430405617, 0.019023573026061058, -0.01172892190515995, 0.012728001922369003, -0.02920597419142723, -0.008238986134529114, 0.006353736389428377, -0.018695108592510223, -0.005967106204479933, 0.02967129833996296, 0.0020443496759980917, 0.0027731305453926325, -0.0013839991297572851, -0.005765237379819155, -0.008991717360913754, -0.02070695348083973, -0.022130299359560013, 0.008081597276031971, -0.014425069093704224, -0.0320526659488678, 0.01642322912812233, 0.01128412690013647, 0.0002630282542668283, 0.01216003205627203, 0.005881568416953087, -0.029370207339525223, -0.0029664456378668547, -0.00873852614313364, 0.01794237643480301, 0.01046296488493681, 0.007629957981407642, -0.042098209261894226, -0.000955455529037863, 0.037444960325956345, -0.011427829973399639, -0.0020939616952091455, 0.023622076958417892, -0.013063309714198112, 0.0057139149866998196, -0.0245664119720459, -0.015533636324107647, 0.014644045382738113, 0.01642322912812233, 0.0014832228189334273, 0.03528256714344025, 0.0012368743773549795, -0.009470728226006031, 0.029507067054510117, 0.013658651150763035, 0.020405860617756844, -0.007924207486212254, -0.015383090823888779, -0.009422827512025833, -0.003695226274430752, 0.0039552608504891396, -0.005809716880321503, -0.0383756086230278, -0.007233063690364361, 0.0020443496759980917, -0.0031340993009507656, 0.0033736047334969044, -0.010031855665147305, 0.01065456960350275, -0.005262276157736778, 0.018284527584910393, 0.007883149199187756, -0.03555629029870033, -0.02046060562133789, 0.008163712918758392, 0.02218504436314106, 0.020214257761836052, 0.023622076958417892, -0.019913164898753166, 0.023635761812329292, 0.009477571584284306, 0.0031477853190153837, -0.03599424287676811, 0.02151442877948284, -0.0015824465081095695, -0.006394794676452875, 0.014630359597504139, -0.013282286003232002, -0.028466928750276566, 0.0065795560367405415, 0.0170938428491354, 0.009648646228015423, 0.0032983317505568266, -0.015848414972424507, 0.06421482563018799, 0.03476250171661377, -0.010647726245224476, 0.009402298368513584, 0.0054709878750145435, -0.015164114534854889, 0.007034616079181433, 0.027864744886755943, -0.005604426842182875, -0.0106819411739707, 0.0320526659488678, -0.006955921649932861, 0.013699709437787533, -0.01206422969698906, -0.0202553141862154, 0.0001677607069723308, -0.037636563181877136, 0.02686566486954689, -0.00581313855946064, 0.01471247524023056, 0.03008187934756279, -0.008067910559475422, 0.0020323744975030422, 0.005255433265119791, -0.028056347742676735, -0.020775383338332176, 0.023964228108525276, 0.003671275917440653, 0.014479813165962696, 0.0006252801977097988, 0.022540880367159843, 0.011202010326087475, -0.006712994538247585, -0.015944218263030052, -0.017381250858306885, 0.013521791435778141, -0.015916844829916954, 0.019092002883553505, 0.03114938922226429, 0.00751362694427371, 0.007260435726493597, 0.004591661039739847, -0.02600344456732273, -0.026920408010482788, -0.00309475208632648, -0.003931310493499041, -0.015109370462596416, -0.01417872030287981, -0.015013568103313446], "2206a4d2-1112-4287-adcd-0bd9dc77978c": [-0.008152767084538937, -0.005897676106542349, 0.0062917377799749374, -0.011503946036100388, -0.003566421801224351, 0.012305314652621746, 0.002170649589970708, -0.023564213886857033, 0.018411612138152122, 0.005000275559723377, 0.016994314268231392, -0.003440587082877755, -0.028849273920059204, -0.012338428758084774, -0.0224648155272007, 0.000337560020852834, 0.01661018840968609, -0.015365085564553738, 0.01165627222508192, 0.005867873318493366, -0.009192559868097305, -0.0060698711313307285, 0.0004859539621975273, -0.010033666156232357, -0.02201445959508419, 0.027008112519979477, -0.00356973335146904, -0.01684861071407795, 0.013709365390241146, 0.0322931706905365, 0.019338814541697502, 0.004619460087269545, -0.014927975833415985, -0.011027098633348942, -0.0007545945700258017, -0.007801754865795374, -0.017603619024157524, 0.011331751011312008, 0.011444339528679848, 0.007185827009379864, 0.023100612685084343, 0.021444890648126602, 0.01813345029950142, 0.018345382064580917, -0.02682267129421234, 0.014080246910452843, -0.021868756040930748, -0.004208841361105442, -0.01850433275103569, 0.03616093471646309, 0.016663171350955963, 0.0002686406369321048, -0.05361885204911232, -0.010934378020465374, 0.007636182941496372, 0.0059009878896176815, -0.010762182995676994, 0.001206192304380238, -0.016106849536299706, -0.011278768070042133, 0.01152381394058466, -0.002374303061515093, -0.02529940940439701, -0.004205530043691397, -0.003722059540450573, 0.028822781518101692, -0.0001937192864716053, -0.001217782380990684, -0.0025845796335488558, -0.01711352728307247, 0.00294221518561244, 0.014358407817780972, -0.0025200066156685352, -0.005450631957501173, 0.03714112192392349, 0.008523648604750633, -0.015643246471881866, 0.014305424876511097, -0.0019322257721796632, -0.00030858488753437996, -0.008344830945134163, -0.011927810497581959, -0.0016913184663280845, -0.01147745456546545, 0.01305370032787323, -0.0012268888531252742, -0.012947733514010906, 0.02271648496389389, -0.0020282575860619545, -0.018464595079421997, -0.0008100612321868539, 0.006387769710272551, 0.0026127269957214594, 0.02890225686132908, 0.002553120953962207, -0.001983553171157837, -0.013504056259989738, 0.01968320459127426, -0.004026712384074926, -0.028398917987942696, -0.022107180207967758, 0.017351949587464333, 0.0024190074764192104, 0.0011647993233054876, -0.029220154508948326, -0.01123903039842844, 0.016133340075612068, -0.0051923394203186035, 0.0005795021425001323, -0.02425299398601055, -0.02128594182431698, 0.040108174085617065, -0.005394337233155966, -0.026610739529132843, -0.03420056030154228, -0.013504056259989738, 0.021564103662967682, -0.02773662842810154, -0.028372425585985184, 0.010172746144235134, -0.0021408465690910816, 0.025829238817095757, 0.021603841334581375, 0.024080798029899597, 0.014941221103072166, 0.025113968178629875, -0.011801975779235363, 0.002210386795923114, -0.025378882884979248, -0.011484077200293541, 0.06098349764943123, 0.0029008223209530115, 0.0008365527610294521, 0.008868038654327393, -0.007397758774459362, -0.014954467304050922, -0.017047297209501266, -0.017722832038998604, 0.0048578837886452675, -0.01578895002603531, 0.012696064077317715, 0.008742203935980797, -0.01410673838108778, 0.003745239693671465, 0.0026706771459430456, 0.037167612463235855, 0.02482256107032299, -0.009748881682753563, -0.002112699206918478, -0.002187206642702222, 0.01246426347643137, -0.009020364843308926, -0.008457420393824577, -0.03883657976984978, -0.0014686239883303642, 0.01849108561873436, 0.009391246363520622, 0.004086317960172892, 0.00270544714294374, -0.019630221650004387, -0.0026176939718425274, 0.038200780749320984, 0.006301672197878361, -0.013245763257145882, 0.0015017384430393577, 0.023511230945587158, 0.005076439119875431, 0.004791655112057924, -0.0005087201134301722, 0.016451237723231316, 0.001669794088229537, 0.003907500300556421, -0.03078315407037735, 0.02479606866836548, -0.0038214027881622314, -0.0036723879165947437, -0.0030614270363003016, 0.019590483978390694, -0.014133229851722717, 0.005679121240973473, -0.00619901716709137, -0.0181466955691576, -0.012305314652621746, 0.017060544341802597, -0.026133891195058823, -0.002750151790678501, 0.004218775779008865, 0.015298857353627682, 0.014027263969182968, 0.016596941277384758, 0.011735746636986732, 0.0405055470764637, -0.003993597812950611, -0.035392679274082184, -0.598920464515686, -0.03157790005207062, -0.0007322423625737429, 0.015351840294897556, 0.02117997594177723, 0.018358629196882248, -0.007795131765305996, 0.00923892017453909, -0.018914951011538506, 0.02177603542804718, -0.019259341061115265, 0.024902036413550377, -0.018332136794924736, -0.004900932777673006, -0.001948782941326499, -0.012497377581894398, 0.012861636467278004, -0.022557536140084267, -0.003440587082877755, 0.010238975286483765, -0.024875544011592865, 0.00878194160759449, -0.022080687806010246, -0.0025117278564721346, -0.0052320766262710094, -0.001902422751300037, 0.0020977978128939867, -0.012749047949910164, 0.00924554280936718, 0.05711573362350464, -0.033405814319849014, 0.026623984798789024, 0.01590816304087639, -0.017722832038998604, 0.0635266825556755, -0.013146420009434223, -0.014623323455452919, 0.019140128046274185, -0.011086704209446907, 0.03451846167445183, -0.015868425369262695, -0.01896793395280838, 0.01099398359656334, 0.01070920005440712, 0.018292399123311043, -0.0004942325758747756, 0.006208951584994793, -0.026239857077598572, -0.011848335154354572, -0.003924057353287935, 0.013828577473759651, -0.00600033113732934, -0.002150780986994505, -0.026994867250323296, 0.0028163804672658443, 0.019047407433390617, 0.013272254727780819, -0.039286933839321136, 0.008868038654327393, -0.031101053580641747, -0.027604172006249428, 0.015603509731590748, 0.004871129523962736, 0.003722059540450573, -0.014676306396722794, 0.013391466811299324, -0.00044870024430565536, -0.032134223729372025, 0.009199182502925396, -0.011788729578256607, 0.017881780862808228, -0.02433246746659279, 0.01070920005440712, -0.008556763641536236, 0.021948229521512985, 0.03835973143577576, 0.01917986571788788, -0.017524145543575287, 0.0013080191565677524, 0.011212538927793503, -0.007159335073083639, 0.010139632038772106, -0.013437827117741108, -0.0278690867125988, 0.005099618807435036, -0.021868756040930748, -0.025683535262942314, -0.005831447429955006, 0.0021259451750665903, 0.003245212137699127, -0.006609635893255472, 0.008232242427766323, 0.01815994270145893, -0.03859815374016762, 0.015365085564553738, 0.008742203935980797, -0.0032485234551131725, -0.009543572552502155, 0.030120866373181343, -0.01862354390323162, -0.0066261934116482735, -0.016067111864686012, -0.004275070037692785, -0.009371377527713776, 0.03594900295138359, -0.0069540259428322315, -0.01580219529569149, -0.01672939956188202, 0.016901593655347824, -0.017404932528734207, 0.0007864672224968672, -0.012676196172833443, 0.01264308113604784, -0.008298470638692379, 0.0379093773663044, -0.03168386593461037, 0.024663612246513367, 0.007073237560689449, 0.014080246910452843, -0.008570008911192417, 0.013656382448971272, -0.0026441856753081083, 0.008497157134115696, -0.016835365444421768, 0.02376290038228035, 0.015245874412357807, 0.02433246746659279, 0.007040123455226421, -0.01357690803706646, 0.03136596828699112, -0.008510403335094452, -0.004106186795979738, 0.021444890648126602, -0.009026987478137016, 0.002654119860380888, 0.013841822743415833, 0.0025266294833272696, -0.02131243422627449, 0.017166510224342346, 0.00028064462821930647, -0.008748826570808887, 0.0006316573708318174, 0.0059009878896176815, 0.00031272420892491937, 0.014530602842569351, -0.05960593745112419, -0.008656106889247894, 0.005871184635907412, 0.0031574589665979147, 0.031074561178684235, -0.00021296704653650522, 0.0021375350188463926, -0.025471603497862816, 0.032134223729372025, -0.02459738403558731, 0.00045118381967768073, -0.011576797813177109, -0.013709365390241146, -0.005695678293704987, -0.02622661180794239, 0.0026176939718425274, 0.005371157079935074, -0.030862629413604736, 0.002116010757163167, -0.005020144395530224, -0.0005468016606755555, -0.004056515172123909, 0.008808433078229427, -0.018663281574845314, -0.03454495221376419, -0.006414261180907488, 0.01480876374989748, 0.009762127883732319, -0.015086924657225609, -0.0019388486398383975, 0.0018279154319316149, -0.01270268764346838, 0.018239416182041168, -0.022769467905163765, 0.005586400628089905, 0.017351949587464333, 0.015868425369262695, -0.006940780207514763, -0.00462277140468359, 0.009060102514922619, 0.003362768329679966, 0.0419095978140831, -0.001249241060577333, -0.015762459486722946, -0.01099398359656334, -0.015484297648072243, 0.01872950978577137, 0.022411832585930824, 0.01386831421405077, 0.016570450738072395, 0.009344886057078838, 0.02331254445016384, 0.028160493820905685, -0.0122854458168149, 0.01978917047381401, 0.026054417714476585, 0.03205474838614464, 0.006612947676330805, -0.01861029863357544, 0.007722279988229275, -0.02108725532889366, 0.00958993285894394, -0.023564213886857033, 0.017974501475691795, -0.02037198469042778, -0.02388211153447628, -0.01340471301227808, -0.009934322908520699, -0.005576466675847769, 0.014941221103072166, 0.032028257846832275, -0.023908603936433792, 0.014994204044342041, -0.01029195822775364, 0.015841932967305183, 0.0017583750886842608, -0.012497377581894398, -0.0008473149500787258, -0.03205474838614464, 0.016649924218654633, 0.0029521496035158634, 0.0027882333379238844, 0.022782713174819946, 0.001960373017936945, -0.01825266145169735, -0.024676857516169548, -0.002892543561756611, -0.0034505215007811785, 0.0021093878895044327, 0.019153375178575516, -0.019948119297623634, 0.030650697648525238, -0.0245708916336298, 0.019378552213311195, 0.011848335154354572, -0.00895413663238287, -0.003983663395047188, -0.011298635974526405, -0.010682708583772182, 0.0362933911383152, 0.0011565207969397306, 0.06252000480890274, 0.015378331765532494, 0.005139356479048729, 0.02167006954550743, -0.022782713174819946, -0.02374965511262417, -0.019153375178575516, 0.023325789719820023, 0.014093492180109024, -0.013563661836087704, 0.012616589665412903, 0.01710028015077114, 0.03759147599339485, 0.036346375942230225, 0.016292288899421692, 0.004943981301039457, 0.008523648604750633, 0.01826590858399868, 0.005695678293704987, -0.017484407871961594, -0.01789502613246441, -0.022875433787703514, 0.016583696007728577, -0.02600143477320671, -0.033644240349531174, -0.005655941087752581, -0.006533472798764706, -0.0024405319709330797, 0.024054307490587234, 0.0046591972932219505, 0.0037982226349413395, 0.03703515604138374, 0.023233069106936455, -0.027365747839212418, -0.02739223837852478, -0.01733870431780815, 0.031657375395298004, -0.0169545765966177, 0.015060433186590672, 0.00202163471840322, -0.026186874136328697, 0.007238809950649738, -0.019974611699581146, 0.020795848220586777, -0.002375958953052759, 0.012563606724143028, 0.00011641784658422694, -0.0026044482365250587, -0.015524035319685936, -0.008417682722210884, 0.029458578675985336, 0.0014793862355872989, -0.006553341634571552, 0.01672939956188202, -0.009987305849790573, -0.01376234833151102, -0.03385617211461067, -0.008682598359882832, 0.03126000240445137, 0.004811523482203484, 0.004122743848711252, -0.006205640267580748, 0.01176886074244976, -0.0034273413475602865, 1.9532326405169442e-05, -0.006593078840523958, 0.008530272170901299, -0.006036756560206413, -0.007132843602448702, 0.013431204482913017, 0.02410729043185711, 0.01929907687008381, 0.01480876374989748, 0.030942104756832123, -0.012364920228719711, -0.006258623208850622, -0.008483911864459515, 0.002026601927354932, -0.0057354154996573925, 0.017616866156458855, 0.013815331272780895, -0.007119597867131233, 0.004533362574875355, -0.012504001148045063, -0.030995087698101997, 0.014557094313204288, 0.014119983650743961, -0.032584577798843384, -0.014014017768204212, -0.0041161212138831615, 0.012907996773719788, -0.01710028015077114, 0.015735967084765434, -0.008318339474499226, -0.012835144996643066, 0.01036481000483036, 0.02598818764090538, -0.015020696446299553, 0.007861360907554626, 0.002887576585635543, 0.0010472431313246489, 0.009993928484618664, 0.006987140513956547, 0.01288150530308485, 0.009391246363520622, 0.02247806079685688, 0.010166123509407043, 0.0108813950791955, -0.004927424248307943, 0.01662343367934227, -0.010583365336060524, 0.019484518095850945, -0.0004718803393188864, 0.01551078911870718, -0.0073447758331894875, 0.06622882187366486, 0.0018229482229799032, 0.010735691525042057, 0.015987636521458626, 0.04416137561202049, 0.018822230398654938, -0.00017364368250127882, -0.009530327282845974, -0.020054087042808533, -0.021471383050084114, 0.017881780862808228, -0.00541089428588748, -0.010808543302118778, 0.022080687806010246, 0.00906672514975071, -0.055791158229112625, -0.010066780261695385, 0.019378552213311195, 0.01756388321518898, -0.029061205685138702, -0.0031541474163532257, -0.006371212191879749, -0.006960648577660322, 0.0024686791002750397, -0.015974391251802444, -0.007470610551536083, 0.0004133092297706753, -0.004503559786826372, -0.02728627249598503, -0.004142612684518099, -0.0005294166039675474, -0.028610849753022194, 0.013139797374606133, 0.02528616227209568, -0.05584413930773735, -0.031895797699689865, 0.004003532230854034, 0.011457585729658604, 0.020689882338047028, 0.014225950464606285, -0.007709034252911806, -0.012855013832449913, 0.029326120391488075, -0.005129422061145306, -0.0257630106061697, -0.00913957692682743, -0.014716043137013912, 0.018451347947120667, -0.012424526736140251, -0.005308239720761776, -0.007636182941496372, -0.026266349479556084, 0.01978917047381401, -0.010060157626867294, 0.0055267950519919395, -0.0022981399670243263, 0.0004884375375695527, 0.019100390374660492, -0.011808598414063454, -0.005655941087752581, 0.010040288791060448, 0.03298195078969002, -0.017245983704924583, 0.00923892017453909, -0.04932722449302673, -0.012583475559949875, -0.03602847829461098, -0.015775704756379128, 0.011954301968216896, 0.007523593958467245, 0.005987085402011871, 0.002501793671399355, -0.0037783540319651365, 0.033988628536462784, -0.01721949316561222, 0.026888899505138397, 0.013894805684685707, 0.016901593655347824, -0.0034041611943393946, -0.00025104862288571894, 0.023736407980322838, 0.018994424492120743, -0.02446492575109005, -0.009709144942462444, -0.01837187446653843, 0.03737954422831535, 0.03703515604138374, 0.02831944264471531, 0.0167426448315382, -0.00913957692682743, -0.0351012721657753, -0.024782823398709297, 0.01920635811984539, 0.011868203990161419, 0.02213367074728012, -0.005540040787309408, -0.006079805549234152, -0.013358352705836296, -0.013265632092952728, -0.015020696446299553, 0.01989513635635376, -0.014292178675532341, -0.027180306613445282, -0.0033064738381654024, -0.028292950242757797, -0.0026359069161117077, 0.0019189800368621945, 0.0011482421541586518, -0.02541862055659294, -0.010729068890213966, 0.01053700502961874, 0.019047407433390617, -0.004089629743248224, 0.02292841672897339, 0.004861195106059313, -0.03756498545408249, -0.0160406194627285, 0.008457420393824577, -0.022623764351010323, 0.011464208364486694, -0.02013356052339077, -0.0037783540319651365, 0.02422650158405304, 0.0036889452021569014, 0.009199182502925396, -0.00605662539601326, -0.015841932967305183, -0.012331806123256683, 0.0009777029044926167, -0.013855068944394588, 0.028716815635561943, 0.005467189010232687, -0.005470500327646732, -0.0029091008473187685, 0.023961586877703667, -0.00020768943068105727, -0.01060323417186737, 0.019643466919660568, 0.020742865279316902, -0.003284949343651533, -0.0012691097799688578, -0.004821457900106907, -0.03684971481561661, -0.002053093397989869, -0.025445111095905304, 0.0057188584469258785, 0.011715877801179886, -0.0016391632379963994, -0.01386831421405077, -0.013590153306722641, -0.008848169818520546, 0.027895579114556313, 0.023458248004317284, -0.0010455874726176262, 0.003629339160397649, 0.014927975833415985, 0.00949058961123228, -0.0028147248085588217, 0.0060698711313307285, 0.014676306396722794, -0.0002616038254927844, 0.027577679604291916, -0.005540040787309408, 0.01329874712973833, 0.02237209491431713, -0.0066361273638904095, 0.01661018840968609, -0.0003205888788215816, 0.047605276107788086, 0.013497433625161648, -0.03438600152730942, 0.012166233733296394, -0.028743308037519455, -0.01988189108669758, -0.026080908253788948, -0.015749212354421616, -0.014755780808627605, -0.027948562055826187, 0.012192725203931332, 0.029591035097837448, -0.0011118162656202912, -0.003592913504689932, -0.01287488266825676, -0.016663171350955963, -0.010596610605716705, 0.046413157135248184, 0.019153375178575516, 0.019590483978390694, 0.03724708780646324, 0.021961476653814316, 0.003367735305801034, -0.07640156149864197, -0.003629339160397649, -0.0007711517973802984, 0.03984325751662254, 0.04906230792403221, -0.0037783540319651365, -0.03115403652191162, -0.004477068316191435, -0.015126662328839302, -0.0016110159922391176, -0.025127213448286057, 0.0266769677400589, 0.018650034442543983, 0.004457199480384588, -0.009748881682753563, 0.014199458993971348, -0.01988189108669758, 0.008914398960769176, -0.024067552760243416, 0.0010604889830574393, -0.01932556927204132, 0.0013593464391306043, -0.018080467358231544, 0.006742093712091446, -0.02376290038228035, -0.00033197193988598883, 0.016676416620612144, 0.024027815088629723, -0.011821843683719635, -0.034942325204610825, -0.028186984360218048, 0.018544068560004234, 0.003682322334498167, 0.02234560251235962, 0.01719300076365471, -0.004112809430807829, 0.02422650158405304, 0.01896793395280838, -0.02167006954550743, -0.011616534553468227, -0.01333848387002945, 0.04604227468371391, 0.004755229223519564, 0.0039406148716807365, -0.0006035101250745356, -0.01001379732042551, 0.02446492575109005, 0.007973949424922466, -0.004526739940047264, -0.0026938572991639376, -0.003635962028056383, 0.011815221048891544, 0.021391907706856728, -0.007040123455226421, 0.02000110223889351, -0.01707378961145878, 2.0256704374332912e-05, -0.008232242427766323, -0.027365747839212418, -0.016226060688495636, -0.002531596692278981, -0.012159611098468304, -0.018398365005850792, -0.012345051392912865, -0.01837187446653843, 0.005957282148301601, -0.01316628884524107, 0.014901484362781048, 0.0020282575860619545, 0.029776476323604584, -0.032584577798843384, -0.009934322908520699, -0.014835255220532417, 0.024756332859396935, -0.008709089830517769, -0.0011474143248051405, 0.01731221377849579, -0.0076957885175943375, 0.026782933622598648, -0.0025084165390580893, -0.007616314105689526, -0.010066780261695385, 0.0064043267630040646, 0.03777691721916199, 0.01919311098754406, 0.025074230507016182, 0.03849218785762787, 8.842581883072853e-05, 0.014398145489394665, -0.01919311098754406, -0.017126772552728653, 0.010795297101140022, -0.002976985415443778, 0.015179645270109177, 0.003990286495536566, 0.000627518049441278, -0.0012484132312238216, -0.008265356533229351, -0.010106517933309078, 0.001482697669416666, -0.015762459486722946, -0.013179535046219826, 0.011292013339698315, -0.022981399670243263, 0.0005550803034566343, -0.020782602950930595, -0.02000110223889351, -0.018120205029845238, -0.025617307052016258, -0.003008444095030427, 0.011563551612198353, 0.007437496446073055, 0.0008601467707194388, 0.03817429021000862, 0.0018229482229799032, 0.001545615028589964, 0.017007561400532722, -0.03345879912376404, -0.02879629097878933, -0.008358077146112919, -0.01778906024992466, -0.019749432802200317, -0.03091561235487461, 0.04400242865085602, -0.012960979714989662, -0.015471052378416061, -0.0169545765966177, -0.01686185784637928, 0.0006498702568933368, 0.014490865170955658, -0.02037198469042778, 0.029644019901752472, 0.027922069653868675, 0.021696560084819794, -0.028372425585985184, 0.006334786303341389, -0.00818588212132454, 0.0014139852719381452, 0.003963794559240341, -0.01427893340587616, -0.008510403335094452, 0.012749047949910164, -0.009325017221271992, -0.000958662130869925, -0.000981842284090817, -0.011139687150716782, 0.017179755493998528, 0.012550361454486847, 0.017643356695771217, 0.008801809512078762, -0.0028743306174874306, -0.015113416127860546, -0.007530216593295336, -0.04124730825424194, 0.0006920911255292594, 0.0023064184933900833, -0.012570229358971119, -0.04426734149456024, 0.0038478942587971687, 0.03263756260275841, 0.002813069149851799, -0.01755063608288765, 0.0044671338982880116, 0.002208731137216091, -0.01130525954067707, 0.015325348824262619, -0.019246093928813934, -0.009291903115808964, -0.01663667894899845, -0.01661018840968609, 0.028849273920059204, -0.009682653471827507, 0.01988189108669758, 0.01615983247756958, -0.010589987970888615, -0.010318449698388577, -0.03292896971106529, 0.015484297648072243, -0.01339809037744999, 0.005430763121694326, 0.01641150191426277, -0.00023221479204948992, -0.010669462382793427, -0.012808653526008129, -0.0029438710771501064, -0.018530823290348053, -0.016424747183918953, 0.014954467304050922, 0.006397703662514687, -0.05345990136265755, 0.011152933351695538, -0.008424305357038975, -0.017020806670188904, 0.013219271786510944, 0.029061205685138702, -0.0075037251226603985, 0.000814614468254149, -0.03655830770730972, -0.026385560631752014, -0.04720790311694145, 0.023140348494052887, -0.005993708036839962, 0.0031044757924973965, -0.049671612679958344, 0.006126165855675936, 0.003914122935384512, -0.019471272826194763, 0.004059826489537954, 0.25029194355010986, -0.017020806670188904, 0.020928306505084038, 0.02670346014201641, 0.017749322578310966, -0.006566587369889021, 0.013252386823296547, 0.0007107179844751954, -0.014689551666378975, 0.01859705150127411, -0.004255201667547226, -0.0015621721977367997, -0.0010555217741057277, -0.003270047949627042, -0.005927479360252619, -0.00888790749013424, -0.017961256206035614, -0.04879739508032799, -0.052479714155197144, -0.009755505248904228, 0.01720624789595604, 0.004288315773010254, -0.0024140405002981424, -0.009252166375517845, -0.00514597911387682, 0.017987746745347977, -0.006165903061628342, 0.009325017221271992, 0.014517356641590595, 0.007285169791430235, -0.032134223729372025, 0.00790772121399641, 0.0013477564789354801, -0.011093326844274998, -0.01989513635635376, -0.018663281574845314, 0.030491748824715614, 0.02842540852725506, 0.01253049261868, 0.018663281574845314, -0.013000717386603355, -0.014239195734262466, 0.017140017822384834, -0.014358407817780972, -0.007530216593295336, -0.002582923974841833, -0.007523593958467245, -0.017034051939845085, 0.006907665636390448, 0.024902036413550377, -0.02445168048143387, -0.039101492613554, 0.043366629630327225, 0.011252276599407196, 0.00497378408908844, -0.014610077254474163, 0.04376400262117386, -0.01077542919665575, 0.007358021568506956, 0.022557536140084267, -0.001971963094547391, 0.04002869874238968, -0.018000992015004158, 0.032028257846832275, -0.008629615418612957, 0.016212815418839455, -0.01789502613246441, -0.004543296992778778, -0.02132567949593067, -0.011166178621351719, -0.0028677077498286963, 0.0065963901579380035, 0.004354544915258884, -0.012788784690201283, -0.015497543849050999, -0.03756498545408249, 0.04230697080492973, 0.004712180234491825, 0.027312764897942543, 0.03176334127783775, 0.0222528837621212, 0.0009123019990511239, 0.012205971404910088, -0.0006560792098753154, -0.018053974956274033, -0.012298692017793655, 0.013908051885664463, 0.003288260893896222, 0.007536839693784714, -0.015325348824262619, 0.009960814379155636, -0.03745901957154274, 0.006526850163936615, -0.021696560084819794, -0.01047077588737011, 0.024676857516169548, -0.037406034767627716, 0.017060544341802597, 0.002611071104183793, -0.0005654285196214914, -0.016795627772808075, 0.04294276610016823, 0.014676306396722794, -0.004159169737249613, -0.026743195950984955, -0.004059826489537954, 0.012272199615836143, -1.1991038263658993e-05, 0.0025166950654238462, -0.013252386823296547, 0.010748936794698238, -0.021736297756433487, -0.001799768186174333, -0.00011082978744525462, -0.002657431410625577, 0.02152436599135399, -0.016106849536299706, -0.0146365687251091, -0.018173187971115112, 0.002564711030572653, 0.031180527061223984, -0.017948009073734283, -0.027816103771328926, 0.0036955680698156357, -0.003854517126455903, -0.02143164537847042, -0.014133229851722717, -0.012331806123256683, -0.01491472963243723, -0.01626579836010933, 0.0050333901308476925, -0.008291848003864288, 0.028292950242757797, 0.0055433521047234535, -0.008007064461708069, 0.013947789557278156, 0.010497267358005047, 0.0018693084130063653, 0.022915171459317207, 0.01054362766444683, -0.005881119053810835, 0.0029902311507612467, 0.01978917047381401, -0.008450796827673912, -0.008649483323097229, 0.00966278463602066, 0.009907831437885761, -0.005444008857011795, -0.010477399453520775, 0.014782272279262543, -0.03841271623969078, -0.026743195950984955, 0.006556652951985598, -0.014755780808627605, 0.015775704756379128, -0.013894805684685707, -0.02563055232167244, -0.030120866373181343, 0.0008394502801820636, 0.041141342371702194, -0.03851868212223053, -0.01417296752333641, 0.019405044615268707, -0.01614658534526825, -0.01617307774722576, -0.020160052925348282, -0.16562503576278687, -0.0033015066292136908, 0.00983497966080904, -0.036346375942230225, 0.034465476870536804, 0.006003642454743385, -0.0008295159204863012, -0.0278690867125988, 0.01152381394058466, -0.024385450407862663, 0.011159555986523628, -0.002303107175976038, -0.016451237723231316, -0.01570947654545307, -0.013510678894817829, 0.0036525193136185408, -0.019524255767464638, 0.005944036412984133, 0.04445278272032738, 0.0018759312806650996, 0.06336773186922073, -0.03147193416953087, -0.008748826570808887, 0.007199072744697332, -0.017378441989421844, 0.0050168330781161785, -0.02598818764090538, -0.023590704426169395, -0.020107069984078407, 0.0009685964905656874, -0.006576521787792444, 0.01931232400238514, 0.01263645850121975, 0.0007359677692875266, 0.02655775658786297, -0.009702522307634354, 0.024835806339979172, -0.004228710196912289, -0.005622826516628265, -0.006374523974955082, 0.003953860606998205, 0.0224648155272007, 0.03417406976222992, -0.014530602842569351, -0.01801423914730549, 0.03584303706884384, 0.01626579836010933, 0.008993873372673988, 0.022213146090507507, 0.011179424822330475, 0.0027137259021401405, -0.015775704756379128, -0.016914840787649155, -0.002443843288347125, 0.021603841334581375, 0.01557701826095581, -0.00020851728913839906, 0.023445000872015953, -0.008622991852462292, -0.020424967631697655, 0.00965616200119257, -0.0402936115860939, 0.0064043267630040646, 0.0280810184776783, -0.03912798687815666, 0.0042916275560855865, -0.006338098086416721, 0.02810751087963581, -0.020769357681274414, 0.009894585236907005, 0.02363044209778309, -0.0203587394207716, -0.01605386473238468, -0.008947513066232204, 0.011212538927793503, -0.018093712627887726, -0.011510568670928478, 0.024663612246513367, 0.023696670308709145, -0.004569788463413715, -0.0005778464255854487, 0.026862408965826035, 0.009954191744327545, -0.01322589535266161, 0.0018411611672490835, 0.014199458993971348, 0.027127323672175407, -0.025339145213365555, -0.0243589598685503, -0.023789390921592712, 0.018464595079421997, -0.016914840787649155, -0.01474253460764885, 0.014941221103072166, -0.00011828052811324596, 0.009338263422250748, -0.022862188518047333, 0.006477178540080786, -0.03181632608175278, -0.01721949316561222, 0.00807991623878479, -0.008225618861615658, -0.022451570257544518, 0.030809646472334862, 0.023378772661089897, 0.029220154508948326, -0.015974391251802444, 0.0009669407736510038, 0.023855620995163918, 0.004175726789981127, -0.013669627718627453, 0.008298470638692379, 0.013947789557278156, 0.041512224823236465, -0.00722556421533227, 0.012556984089314938, -0.00942436046898365, 0.008351453579962254, 0.005026767496019602, -0.0076626744121313095, -0.01988189108669758, -0.013543793000280857, 0.01641150191426277, 0.012093381956219673, 0.005218830890953541, -0.01789502613246441, -0.07205695658922195, -0.003503504442051053, 0.008980628103017807, 0.013066945597529411, -0.007768640294671059, 0.0017666537314653397, 0.004039958119392395, 0.027948562055826187, -0.01861029863357544, 0.013947789557278156, -0.008907776325941086, -0.013788839802145958, -0.0010455874726176262, 0.007887852378189564, -0.008695843629539013, -0.010212483815848827, -0.0005559081328101456, 0.004337987396866083, 0.00280975759960711, 0.01281527616083622, -0.019577238708734512, -0.012093381956219673, 0.01826590858399868, -0.0013320271391421556, -0.01931232400238514, -0.009219051338732243, -0.010788674466311932, -0.00439428212121129, 0.0043148077093064785, 0.004907555412501097, 0.02167006954550743, 0.0058778077363967896, 0.012013907544314861, -0.009868093766272068, 0.0003214167372789234, 0.007629559841006994, -0.03984325751662254, -0.03091561235487461, 0.023842373862862587, -0.011311882175505161, 0.012364920228719711, -0.009735636413097382, 0.0037319939583539963, 0.0068016997538506985, -0.003566421801224351, -0.01400077249854803, -0.003662453731521964, 0.011384733952581882, -0.015351840294897556, -0.0031375903636217117, -0.0463336817920208, 0.005321485456079245, -0.01696782372891903, -0.015020696446299553, 0.013735856860876083, 0.01340471301227808, 0.00047684749006293714, 0.0318693071603775, -0.01661018840968609, 0.009735636413097382, -0.02565704472362995, 0.029326120391488075, -0.012205971404910088, 0.02903471328318119, 0.002669021487236023, 0.026372315362095833, -0.02120646834373474, -0.024637119844555855, 0.03462442755699158, -0.000676361785735935, -0.014490865170955658, 0.023087365552783012, -0.010424415580928326, 0.018769247457385063, -0.027683645486831665, 0.013550416566431522, 0.014901484362781048, -0.02249130606651306, 0.01990838348865509, -0.0021656823810189962, 0.005871184635907412, -0.002228599740192294, -0.012980848550796509, -0.0004499420465435833, -0.004245267249643803, 0.030465256422758102, 0.0043081846088171005, 0.0019272585632279515, 0.024888789281249046, -0.04744632542133331, 0.000826204486656934, -0.010338318534195423, 0.010060157626867294, 0.009921076707541943, -0.019577238708734512, -0.016106849536299706, 0.020915061235427856, -0.029352612793445587, -0.010987360961735249, 0.020067332312464714, -0.04334013909101486, -0.03009437583386898, -0.08154091984033585, 0.031048070639371872, -0.011815221048891544, -0.030412273481488228, 0.007616314105689526, -0.023617196828126907, 0.02704785019159317, -0.014888238161802292, -0.005652629770338535, 0.0019852088298648596, -0.022319111973047256, 0.02355096861720085, -0.010344941169023514, -0.015484297648072243, -0.014755780808627605, 0.010073402896523476, 0.01698106899857521, 0.017722832038998604, 0.007457364816218615, 0.0023064184933900833, 0.01602737419307232, -0.023564213886857033, 0.011609911918640137, -0.0005646006902679801, -0.045485951006412506, 0.0122854458168149, -0.015590263530611992, 0.0029985096771270037, -0.002501793671399355, -0.032001763582229614, 0.009371377527713776, -0.016080357134342194, -0.008040178567171097, -0.009980683214962482, -0.017736077308654785, 0.003440587082877755, -0.0006308294832706451, 0.011252276599407196, 0.01106021273881197, 0.03933991864323616, -0.015457806177437305, -0.013802086003124714, 0.023140348494052887, -0.010166123509407043, -0.0046989344991743565, -0.014384899288415909, -0.014822009950876236, 0.010099894367158413, -0.0006138583412393928, 0.010046911425888538, 0.0016159832011908293, 0.005308239720761776, -0.012080136686563492, -0.01193443313241005, 0.0021458137780427933, -0.04458523914217949, -0.0019984545651823282, 0.018888458609580994, 0.002170649589970708, -0.006894419901072979, 0.0064506870694458485, -0.004440642427653074, -0.0011432749452069402, 0.014199458993971348, 0.01874275505542755, -0.013921297155320644, -0.017696339637041092, -0.018544068560004234, -0.009848224930465221, -0.006149346008896828, -0.009762127883732319, -0.013735856860876083, 0.006470555439591408, -0.00409956369549036, 0.022093933075666428, 0.003102820133790374, -0.03666427358984947, 0.0019520943751558661, -0.005374468397349119, 0.012802030891180038, -0.003503504442051053, 0.025921959429979324, -0.04228047654032707, 0.010583365336060524, 0.031789831817150116, -0.016596941277384758, -0.020663391798734665, -0.01299409382045269, -0.03181632608175278, -0.003771731164306402, -0.03168386593461037, -0.022054197266697884, 0.001572106615640223, 0.02879629097878933, 0.03409459441900253, 0.01720624789595604, 0.010331695899367332, 0.005980462301522493, 0.004824769217520952, 0.01194767840206623, 0.013629890978336334, -0.028398917987942696, -0.013735856860876083, -0.03732656314969063, -0.022994644939899445, -0.011146309785544872, -0.010987360961735249, -0.038571663200855255, -0.014053755439817905, 0.004907555412501097, -0.01593465358018875, 0.014119983650743961, -0.005980462301522493, 0.01638500951230526, -0.015841932967305183, -0.018080467358231544, -0.02341851033270359, -0.02128594182431698, -0.035392679274082184, 0.0002359401696594432, 0.033988628536462784, 0.027127323672175407, 0.028849273920059204, -0.030465256422758102, 0.06622882187366486, -0.0016002538613975048, 0.022756222635507584, -0.031551409512758255, 0.016941331326961517, -0.008742203935980797, -0.0036227162927389145, 0.008271979168057442, -0.01989513635635376, -0.027577679604291916, -0.013616644777357578, -0.0032170647755265236, -0.0022865498904138803, -0.0022037639282643795, 0.006367900874465704, 0.06246702000498772, -0.012298692017793655, 0.004741983488202095, -0.01847784034907818, 0.010517136193811893, -0.002061371924355626, 0.01282189879566431, 0.020742865279316902, 0.010722445324063301, -0.0008642860921099782, 0.010371432639658451, -0.011000607162714005, 0.0076957885175943375, -0.01287488266825676, -0.010424415580928326, -0.00035515203489921987, -0.017166510224342346, 0.03457144275307655, -0.009629670530557632, 0.02810751087963581, 0.04556542634963989, 0.00313262315467, 0.022570781409740448, 0.01333848387002945, -0.034730393439531326, 0.0022815826814621687, 0.019511010497808456, 0.006328163668513298, 0.0036889452021569014, -0.023034382611513138, 0.025895467028021812, 0.016928086057305336, -0.00582813611254096, -0.012378166429698467, 0.018292399123311043, 0.03981676697731018, -0.018808985128998756, 0.014583585783839226, 0.037644460797309875, 0.0014487553853541613, 0.019365306943655014, -0.003149180207401514, -0.032478611916303635, -0.04779071360826492, 0.012868259102106094, 0.006281803362071514, 0.005427451804280281, 0.011994038708508015, -0.01757712848484516], "c64c4674-00e9-4ba9-a68d-c40cbcba032b": [-0.024330928921699524, -0.010927386581897736, 0.01633724942803383, -0.024909596890211105, 0.015893157571554184, 0.0005626864149235189, -0.021679827943444252, -0.013733248226344585, 0.018678832799196243, -0.0250307135283947, -0.0022709316108375788, -0.009056811220943928, 0.0008120682905428112, -0.012717217206954956, 0.0009016439435072243, -0.015543265268206596, 0.016579482704401016, -0.006499910727143288, 0.012838332913815975, -0.03151716664433479, 0.01172810047864914, -0.018625004217028618, 0.0067825159057974815, -0.009278858080506325, -0.023940665647387505, -0.011304193176329136, 0.02281024679541588, -0.03321279585361481, 0.011506053619086742, 0.0009041671874001622, 0.028529629111289978, -0.004474576562643051, -0.012125092558562756, -0.021154990419745445, -0.01941898837685585, 0.008733835071325302, -0.00039320759242400527, 0.014870396815240383, 0.01208472065627575, -0.005628546234220266, 0.01945936121046543, -0.003145660739392042, 0.01104850322008133, 0.00022751370852347463, -0.021477965638041496, 0.010725526139140129, -0.019876539707183838, 0.004757181275635958, -0.005901057738810778, 0.013080566190183163, 0.003973289392888546, 0.013437186367809772, -0.04088349640369415, -0.016714056953787804, -0.0015072256792336702, 0.01287197694182396, -0.013457372784614563, 0.018719205632805824, -0.009090455248951912, -0.0015080667799338698, 0.023806091398000717, -0.001179202226921916, -0.02574395388364792, -0.0008553842199034989, 0.010032471269369125, -0.0010841595940291882, -0.021235734224319458, 0.006991105154156685, -0.022837160155177116, 0.005530979949980974, 0.023631146177649498, 0.04080275446176529, 0.007623601704835892, -0.009352874010801315, 0.04045286029577255, 0.008020593784749508, -0.02610730193555355, -0.011445495299994946, 0.01496459823101759, 0.004393832292407751, 0.002318032318726182, -0.001984962495043874, 0.005985166411846876, -0.012279852293431759, 0.0006938957958482206, 0.0032163120340555906, -0.010133401490747929, 0.019082553684711456, 0.006641213316470385, -0.004730266518890858, 0.014507047832012177, 0.022258494049310684, 0.003492188174277544, 0.0041213203221559525, -0.02289099059998989, 0.017494583502411842, -0.01991691067814827, 0.028341226279735565, 0.0016535746399313211, -0.049119409173727036, -0.016942832618951797, 0.01791176199913025, -0.0010202371049672365, -0.002072435338050127, -0.029229413717985153, -0.019015267491340637, 0.024519331753253937, -0.01587969996035099, 0.0021548618096858263, -0.004588963929563761, -0.02002456970512867, 0.007744717877358198, -0.009844067506492138, -0.03735766559839249, -0.04123339056968689, 0.02295827679336071, 0.05603649839758873, 0.0004777367284987122, -0.017050491645932198, -0.023254340514540672, 0.02071089670062065, 0.026484109461307526, 0.02127610519528389, -0.014466674998402596, 0.02049557864665985, 0.015220288187265396, -0.010039200074970722, 0.0017149739433079958, 0.0030834204517304897, -0.027883674949407578, 0.022581471130251884, 0.005312297958880663, -0.008229183033108711, 0.022702587768435478, 0.008915509097278118, -0.014951140619814396, -0.01924404315650463, -0.004999414086341858, -0.0026174590457230806, -0.004797553177922964, 0.0015576909063383937, 0.016189219430088997, 0.012454798445105553, -0.022594928741455078, -0.018853778019547462, 0.028583459556102753, 0.011324378661811352, 0.021410679444670677, 0.011479138396680355, 0.010335261933505535, -0.007845648564398289, -0.015543265268206596, -0.01827511191368103, -0.004218886140733957, -0.01314112450927496, -0.01539523433893919, 0.01322859711945057, 0.027668356895446777, -0.012932535260915756, -0.018436599522829056, 0.0053728558123111725, 0.025663210079073906, 0.023092851042747498, -0.02399449422955513, -0.0031826684717088938, 0.027345381677150726, 0.010362177155911922, -0.007152593228965998, -0.0027486684266477823, -0.0016510513378307223, -0.017104320228099823, 0.021047331392765045, -0.03361651673913002, 0.011593526229262352, -0.034746937453746796, 0.012003975920379162, -0.0017578692641109228, 0.02217775024473667, -0.012596100568771362, -0.014991512522101402, -0.011788657866418362, -0.007926392368972301, 0.013901465572416782, 0.027910590171813965, 0.009312502108514309, -0.020858926698565483, 0.016431450843811035, -0.0016981521621346474, 0.00012048553617205471, -0.00029984707362018526, 0.028664203360676765, 0.03937627002596855, 0.012919077649712563, -0.01730618067085743, -0.5929856896400452, -0.026080388575792313, 0.03202854469418526, 0.0036200331524014473, 0.019015267491340637, 0.026833999902009964, 0.010099758394062519, 0.028798777610063553, -0.03428938612341881, 0.018961437046527863, -0.008417586795985699, 0.01448013260960579, -0.013457372784614563, -0.003764699911698699, -0.011331107467412949, -0.034208640456199646, 0.01616230420768261, -0.008283012546598911, -0.010180502198636532, 0.017279265448451042, -0.0022944819647818804, 0.02617458999156952, -0.010234331712126732, -0.002329807495698333, 0.012145278975367546, 0.0038656301330775023, 0.018503887578845024, -0.009635478258132935, -0.005638638976961374, 0.035742782056331635, -0.007576500531286001, 0.009043354541063309, -0.009897897019982338, 0.004501491319388151, 0.04591655358672142, -0.0053089335560798645, -0.04408635199069977, 0.007495756261050701, -0.01773681677877903, 0.056628622114658356, -0.011956875212490559, -0.030655894428491592, 0.03829968348145485, -0.000416337454225868, -0.02045520581305027, 0.02131647802889347, 0.016566025093197823, -0.022231578826904297, 0.008949153125286102, 0.009117369540035725, -0.018463514745235443, -0.03372417390346527, 0.027493411675095558, -0.002319714520126581, -0.02263529971241951, -0.018194368109107018, 0.04882334545254707, -0.011882860213518143, -0.016350707039237022, -0.008208997547626495, -0.020549407228827477, 0.0019445903599262238, -0.01641799509525299, -0.017211979255080223, -0.011903045699000359, -0.003707506228238344, -0.003273505950346589, -0.02914866805076599, 0.019863082095980644, -0.017481127753853798, -0.0019445903599262238, -0.006466267630457878, 0.0039160954765975475, 0.004898483399301767, 0.01888069324195385, 0.04126030579209328, 0.021558711305260658, -0.026793628931045532, 0.0010673378128558397, -0.010873557068407536, 0.01583932712674141, 0.009399974718689919, -0.019190212711691856, -0.01870574802160263, -0.0008587485644966364, 0.008148439228534698, -0.03983382135629654, -0.004060762003064156, 0.008047509007155895, -0.01648528128862381, 0.03423555567860603, 0.023469656705856323, 0.016458366066217422, -0.007489027921110392, 0.030655894428491592, 0.021262647584080696, -0.007092035375535488, -0.010025742463767529, 0.030709724873304367, -0.017265809699892998, -0.03851500153541565, -0.01666022650897503, 0.029660049825906754, -0.0016266598831862211, 0.022689130157232285, -0.01398221030831337, -0.02489613927900791, 0.014547419734299183, 0.026618681848049164, 0.0028899707831442356, -0.017925219610333443, -0.038030534982681274, -0.02796442061662674, -0.006718593183904886, 0.02539406158030033, -0.03934935852885246, 0.009527820162475109, 0.02239306829869747, 0.011748285964131355, 0.004730266518890858, -0.002329807495698333, 0.005726112052798271, 0.01941898837685585, 0.02324088290333748, -0.014278272166848183, 0.006550375837832689, 0.02088584192097187, -0.005470422096550465, -0.012414426542818546, 0.004235708154737949, -0.007044934667646885, 0.002353358082473278, 0.009918083436787128, -0.02992919646203518, 0.03178631514310837, -0.018180910497903824, 0.013598674908280373, 0.00020228112407494336, 0.014291729778051376, -0.010355448350310326, 0.0033071492798626423, 0.006647942122071981, 0.0008335160091519356, 1.2997403246117756e-05, -0.008935695514082909, -0.015516350045800209, -0.004400560632348061, -0.0028681023977696896, 0.018113622441887856, 0.006368701346218586, 0.02081855572760105, 0.021074244752526283, -0.006789244245737791, 4.205428922432475e-05, -0.024559704586863518, -0.008087880909442902, 0.009184656664729118, -0.02742612548172474, 0.0009470625664107502, -0.01902872510254383, -0.0072737098671495914, -0.006957461591809988, -0.032136205583810806, -0.0008705237996764481, -0.009473990648984909, -0.01485693920403719, -0.01267684530466795, -0.0037041418254375458, -0.01145895291119814, -0.018194368109107018, -0.018032878637313843, -0.003017815761268139, 0.003006040584295988, 0.017925219610333443, 0.0008940741536207497, 0.007226609159260988, -0.01959393359720707, -0.009090455248951912, 0.011290735565125942, -0.02124919183552265, 0.020832013338804245, 0.012501899152994156, -0.004568777978420258, -0.005154173821210861, 0.028206652030348778, 0.014184070751070976, 0.024775022640824318, 0.0386226586997509, -0.014372473582625389, -0.013995666988193989, -0.019903453066945076, 0.019836166873574257, -0.0019429081585258245, 0.020468663424253464, 0.01777718961238861, 0.013719791546463966, -0.005123894661664963, 0.0056218174286186695, -0.018732663244009018, 0.027062775567173958, 0.004784096032381058, 0.022769873961806297, 0.015085714869201183, -0.009029896929860115, 0.001239760429598391, -0.016889002174139023, 0.006372065749019384, -0.016673684120178223, -0.0029673506505787373, 0.013679418712854385, -0.000407295796321705, -0.016068102791905403, -0.026295706629753113, -0.010389091446995735, 0.014439760707318783, 0.01842314377427101, -8.226869977079332e-05, 0.002804179908707738, -0.022016260772943497, 0.020401377230882645, 0.012320224195718765, -0.007933121174573898, 0.01827511191368103, -0.016929375007748604, 0.008094609715044498, -0.002292799763381481, 0.009366331622004509, 0.004932126961648464, -9.32028196984902e-05, -0.03722309321165085, -0.02478848025202751, -0.010267974808812141, 0.0024004587903618813, -0.0043467311188578606, 0.010691882111132145, -0.02192205935716629, 0.01425135787576437, -0.007226609159260988, 0.0039531029760837555, 0.009669122286140919, 0.001984962495043874, -0.002950528869405389, -0.006106282584369183, -0.023079393431544304, 0.029902281239628792, 0.009561463259160519, 0.04341348260641098, 0.023940665647387505, -0.027547242119908333, 0.01935170218348503, -0.03383183479309082, -0.008229183033108711, -0.008511788211762905, 0.02656485326588154, 0.010355448350310326, 0.0005668918020091951, 0.003260048571974039, 0.01501842774450779, 0.018947981297969818, 0.027331924065947533, 0.026726340875029564, 0.03186705708503723, -0.008673276752233505, 0.010072843171656132, -0.009231757372617722, -0.022298866882920265, -0.03450470417737961, -0.02338891290128231, 0.004797553177922964, -0.024505876004695892, -0.023792633786797523, -0.0006236651097424328, -0.025044169276952744, -0.0026208232156932354, -0.0015375048387795687, -0.014372473582625389, 0.010873557068407536, 0.03208237513899803, 0.029552390798926353, -0.0004663820727728307, -0.010019013658165932, -0.011822301894426346, 0.051084186881780624, -0.011573340743780136, 0.01583932712674141, -0.011526239104568958, 0.006681585218757391, -0.0015307761495932937, -0.01605464518070221, 0.020334089174866676, 0.02056286484003067, -0.0043198163621127605, 0.019903453066945076, -0.005120530258864164, -0.017427297309041023, -0.014399388805031776, 0.024398216977715492, -0.02599964290857315, -0.04169093817472458, -0.014843481592833996, 0.03264758735895157, -0.002279342385008931, -0.00011943418212467805, -0.01601427234709263, 0.05549820512533188, 0.0014121830463409424, -0.01745421253144741, -0.022056633606553078, 0.003386211348697543, -0.015637466683983803, -2.888603921746835e-05, 0.004191971383988857, -0.014493590220808983, -0.008531973697245121, 0.003643583506345749, -0.005662189330905676, 0.005285383202135563, -0.042175404727458954, 0.004104498773813248, 0.019768880680203438, -0.014210985042154789, -0.03337428346276283, -0.025219116359949112, 0.0011346247047185898, 0.0011077099479734898, 0.0025232573971152306, 0.008289741352200508, -0.0042659868486225605, -0.02678017131984234, 0.009285586886107922, -0.0379767045378685, -0.008491601794958115, 0.001312093809247017, -0.026013100519776344, 0.00670513603836298, 0.026376450434327126, 0.013639046810567379, 0.009325958788394928, 0.013255511410534382, -0.002260838635265827, 0.013834178447723389, -0.018261654302477837, 0.018678832799196243, -0.03611958771944046, -0.006082732230424881, 0.005753026809543371, 0.008935695514082909, 0.011142704635858536, 0.01620267704129219, -0.008316656574606895, 0.007388097699731588, 0.030925041064620018, 0.013060379773378372, -0.017117777839303017, -0.011122518219053745, 0.000825946219265461, -0.023658061400055885, 0.009500904940068722, -0.010806269943714142, 0.0489848367869854, 0.023039022460579872, 0.04952313005924225, -0.0012818147661164403, 0.02334854193031788, -0.0002758761402219534, 0.007065120618790388, -0.008054237812757492, 0.0008242640760727227, -0.0021212182473391294, 0.004168421030044556, 0.011559883132576942, 0.02013222873210907, -0.010718797333538532, -0.020805098116397858, 0.010644781403243542, -0.005732840858399868, -0.04397869482636452, -0.005951522849500179, -0.007630330044776201, 0.005927972495555878, -0.014574334025382996, 0.001572830369696021, 0.00043526189983822405, -0.006647942122071981, -0.007233337499201298, -0.003576296614482999, -0.014116783626377583, -0.008727106265723705, -0.023617688566446304, -0.01999765634536743, -0.013046922162175179, -0.004669708199799061, -0.01631033606827259, -0.02420981228351593, 0.020912757143378258, -0.034531619399785995, -0.034666191786527634, 0.013760163448750973, 0.025044169276952744, 0.009009710513055325, 0.027776015922427177, -0.004457754548639059, -0.005736204795539379, 0.022904448211193085, -0.01587969996035099, -0.009151013568043709, -0.002844552043825388, -0.02017260156571865, 0.027829846367239952, -0.007805276196449995, 0.008417586795985699, -0.007428469602018595, 0.0011178030399605632, -0.00630141468718648, 0.018463514745235443, 0.006496546324342489, 0.004454390145838261, 0.0029404358938336372, -0.004622607491910458, 0.008222454227507114, 0.029121754691004753, 0.024438587948679924, -0.024936510249972343, -0.020832013338804245, 0.0042390720918774605, -0.060773495584726334, 0.005446871276944876, -0.014614706858992577, -0.00042495859088376164, -0.006799337454140186, 0.011842487379908562, 0.01382072176784277, 0.01590661332011223, 0.013006550259888172, 0.024115610867738724, 0.009810424409806728, 0.008767478168010712, 0.015354862436652184, 0.007320810575038195, 0.010624595917761326, -0.006829616613686085, 0.008632904849946499, 0.009305773302912712, 0.012313495390117168, 0.012010704725980759, -0.009521091356873512, 0.03676554188132286, -0.011707914061844349, -0.002398776588961482, 0.0013911558780819178, 0.007293895818293095, -0.03894563764333725, -0.015139544382691383, 0.002033745404332876, -0.022864075377583504, 0.026524480432271957, -0.014184070751070976, -0.008666547946631908, -0.017723359167575836, -0.005578080657869577, 0.015220288187265396, 0.0040338472463190556, -6.450076762121171e-05, -0.038891807198524475, -0.027695272117853165, -0.008928966708481312, -0.012804689817130566, -0.01637762226164341, -0.018517345190048218, -0.029229413717985153, -0.013571759685873985, 0.013780348934233189, -0.004979227669537067, -0.002097667893394828, 0.014157155528664589, 0.02131647802889347, -0.033132050186395645, -0.0009092137333936989, 0.009379788301885128, -0.0390532948076725, -0.02753378450870514, -0.009669122286140919, 0.01991691067814827, 0.03132876381278038, 0.020899299532175064, 0.022164292633533478, 0.0026359627954661846, -0.009177927859127522, 0.030440576374530792, -0.007879291661083698, 0.006446081213653088, 0.019580477848649025, 0.004740359261631966, 0.004074219614267349, 0.015516350045800209, 0.01909601129591465, -0.011250363662838936, -0.011882860213518143, -0.034962255507707596, 0.033024393022060394, 0.0056857396848499775, 0.01631033606827259, -0.015368319116532803, -0.06949387490749359, -0.005813585128635168, 0.010469836182892323, 0.01224620919674635, 0.003983382135629654, -0.02099350094795227, -0.021679827943444252, 0.014830024912953377, -0.011425308883190155, 0.039753079414367676, 0.008148439228534698, 0.03046749159693718, -0.03528523072600365, -0.004975863266736269, -0.0034080795012414455, 0.0038757233414798975, -0.016404537484049797, -0.007589958142489195, -0.016714056953787804, -0.0008276284206658602, 0.017265809699892998, 0.018611546605825424, 0.007596686948090792, 0.005194545723497868, 0.018409686163067818, 0.015677839517593384, 0.015247203409671783, -0.02220466546714306, -0.006170205306261778, -0.011061959899961948, -0.01974196545779705, -0.01517991628497839, -0.02295827679336071, -0.018032878637313843, -0.017965592443943024, -0.009601835161447525, 0.012649930082261562, -0.0048009175807237625, -0.0040069324895739555, -0.009628750383853912, -0.009716222994029522, -0.0037041418254375458, -0.007845648564398289, 0.02828739769756794, 0.004387103486806154, 0.016727514564990997, 0.02699548937380314, 0.015045342035591602, -0.019392073154449463, -0.03329353779554367, -0.008242640644311905, -0.006950732786208391, 0.02971387840807438, 0.06061200425028801, -0.031167274340987206, -0.008969338610768318, 0.010389091446995735, 0.010308347642421722, -0.025918899103999138, -0.014681993052363396, 0.017925219610333443, 0.011869402602314949, 0.0015063845785334706, -0.021114617586135864, 0.020441748201847076, -0.024801937863230705, 0.013807264156639576, -0.02839505672454834, -0.043117422610521317, -0.007374640088528395, 0.007939849980175495, -0.00589096499606967, 0.024949967861175537, 0.002079164143651724, 0.03167865425348282, 0.006150019355118275, -0.004639429040253162, 0.00513062346726656, -0.012474983930587769, -0.03558129444718361, 0.01659294031560421, 0.019365159794688225, 0.015812411904335022, -0.0023752262350171804, -0.016283420845866203, 0.01988999731838703, 0.024519331753253937, 0.02267567254602909, 0.011808844283223152, -0.03576969727873802, 0.049119409173727036, 0.0029959476087242365, -0.027668356895446777, -0.00572947645559907, -0.005985166411846876, 0.027479954063892365, -0.0042289793491363525, -0.0008957563550211489, 0.015099171549081802, -0.008370486088097095, -0.01680825836956501, 0.020912757143378258, -0.016929375007748604, -0.014466674998402596, -0.010732254944741726, 0.0023146681487560272, -0.002879877807572484, -0.032163120806217194, -0.02263529971241951, 0.026201503351330757, -0.039430100470781326, -0.012905620038509369, -0.020482121035456657, -0.02392720803618431, 0.02198934741318226, 0.026766713708639145, -0.016243048012256622, 0.005625181831419468, 0.04952313005924225, -0.03773447126150131, 0.015677839517593384, 0.0016956289764493704, 0.002817637287080288, -0.017965592443943024, 0.010442920960485935, -0.008821307681500912, -0.006372065749019384, 0.015045342035591602, -0.028125908225774765, -0.007677431218326092, -0.03283599019050598, 0.018692290410399437, 0.013941837474703789, -0.008054237812757492, 0.01583932712674141, 0.030386747792363167, -0.005611724220216274, 0.009790238924324512, -0.015085714869201183, -0.013168038800358772, -0.008538702502846718, 0.007125678937882185, -0.007886020466685295, -0.010631323792040348, -0.002513164421543479, 4.88881123601459e-05, 0.00036019497201777995, 0.0012675162870436907, -0.014843481592833996, -0.04707388952374458, -0.04763909801840782, 0.006584019400179386, -0.0011556518729776144, -0.04327891021966934, 0.011606983840465546, -0.017077405005693436, -0.02707623317837715, -0.01448013260960579, -0.01991691067814827, 0.007818733341991901, -0.017171606421470642, -0.012993092648684978, 0.014332101680338383, 0.004181878641247749, 0.006977647542953491, -0.008195539936423302, -0.03025217354297638, -0.028448885306715965, -0.019297871738672256, -0.03614650294184685, -0.0362541601061821, -0.007603415288031101, 0.03299747779965401, 0.005985166411846876, -0.024129068478941917, -0.028691118583083153, -0.011849216185510159, -0.05256449803709984, -0.0030396839138120413, -0.010153587907552719, 0.027399210259318352, 0.03515065833926201, 0.006217306014150381, 0.010664967820048332, 0.02556900680065155, -0.023160137236118317, 0.01550289336591959, -0.01453396212309599, -0.00033412131597287953, -0.017494583502411842, -0.020858926698565483, -0.005110437050461769, -0.014009124599397182, -0.037680644541978836, -0.018894150853157043, 0.024653906002640724, 0.009870982728898525, -0.012091449461877346, 0.038138192147016525, 0.016081560403108597, -0.013585217297077179, -0.012232751585543156, 0.0012094813864678144, -0.039537761360406876, 0.004676437005400658, -0.004868204705417156, -0.020441748201847076, 0.01967467926442623, -0.0025838154833763838, 0.011452224105596542, -0.0030548234935849905, 0.0021716835908591747, 0.0072737098671495914, -0.022258494049310684, 0.004841289948672056, -0.03450470417737961, -0.002679699333384633, 0.0010336943669244647, -0.0028479164466261864, 0.016189219430088997, -0.017467670142650604, 0.009595106355845928, 0.022931363433599472, 0.008289741352200508, 0.008801121264696121, 0.0024626990780234337, 0.018732663244009018, -0.031490251421928406, 0.03256684169173241, 0.010153587907552719, -0.006412438116967678, -0.01812708005309105, 0.016566025093197823, 0.0033677073661237955, -0.014332101680338383, -0.002893335185945034, 0.009393245913088322, -0.023765720427036285, -0.04209466278553009, 0.006456174422055483, 0.03902637958526611, -0.03208237513899803, -0.019190212711691856, 0.007838919758796692, -0.020266802981495857, -0.01496459823101759, -0.03614650294184685, 0.01956702023744583, -0.020697439089417458, -0.004276080057024956, -0.004787460435181856, -0.0019176756031811237, -0.019149841740727425, 0.008706919848918915, 0.007266981061547995, -0.019432445988059044, -0.006567197851836681, 0.24546247720718384, 0.006257678382098675, -0.010113215073943138, 0.02420981228351593, -0.011223448440432549, 0.016108475625514984, 0.000263259862549603, 0.0026443738024681807, -0.019822709262371063, 0.018651917576789856, -0.0021632725838571787, -0.007596686948090792, 0.009897897019982338, -0.0031624825205653906, 0.019728507846593857, -0.009877711534500122, -0.01517991628497839, -0.01974196545779705, -0.01967467926442623, -0.021827857941389084, 0.018678832799196243, 0.011371479369699955, 0.009655664674937725, -0.009864253923296928, 0.016027729958295822, -0.0007027271785773337, -0.0007330062799155712, -0.007085306569933891, 0.03437012806534767, 0.005843863822519779, -0.01491076871752739, 0.002664559753611684, 0.0015946986386552453, 0.0032819167245179415, -0.011317649856209755, -0.010617867112159729, 0.05482533574104309, 0.020643608644604683, 0.02159908227622509, 0.012643201276659966, -0.0021565440110862255, -0.016041187569499016, 0.019795794039964676, -0.026470651850104332, -0.012945991940796375, -0.010153587907552719, -0.003219676436856389, -0.01355157420039177, 0.002814273117110133, 0.020872384309768677, -0.024129068478941917, -0.011532967910170555, 0.03980690613389015, 0.0028697845991700888, 0.005581445060670376, -0.018248196691274643, 0.01663331314921379, -0.017211979255080223, 0.019607391208410263, 0.0029152033384889364, 0.0042659868486225605, 0.0251383725553751, -0.025986185297369957, 0.023577315732836723, -0.042390722781419754, -0.004928762558847666, -0.025595922023057938, 0.008908780291676521, 0.006684949621558189, -0.003707506228238344, 0.0021582262124866247, -0.005850592628121376, -0.013941837474703789, 0.005514158401638269, -0.03644256293773651, -0.02614767476916313, 0.03956467658281326, 0.018678832799196243, 0.028529629111289978, 0.05253758281469345, -0.0029808080289512873, -7.049350097076967e-05, -0.0048009175807237625, 0.01442630309611559, -0.01916329748928547, -0.031597912311553955, 0.01766953058540821, 0.0014138652477413416, -0.02196243219077587, -0.004161692224442959, 0.0005387154524214566, -0.0026426916010677814, -0.002704931888729334, -0.002873149001970887, -0.004881661850959063, 0.009023168124258518, 0.000794405525084585, 0.017225436866283417, 0.013006550259888172, 0.004733630921691656, -0.03829968348145485, 0.0006682426319457591, 0.02207009121775627, 0.02142413705587387, -0.022689130157232285, -0.011196534149348736, -0.022002803161740303, 0.01577204093337059, -0.010590951889753342, -0.013369899243116379, -0.01898835226893425, -0.043790288269519806, 0.007859105244278908, -0.006173569709062576, 0.01988999731838703, 0.010705339722335339, -0.01601427234709263, -0.021504880860447884, -0.023792633786797523, -0.002047202782705426, 0.011358022689819336, -0.02267567254602909, -0.022594928741455078, -0.008700191043317318, -0.010375633835792542, -0.023160137236118317, -0.012697030790150166, -0.011997247114777565, 0.008922237902879715, -0.026982031762599945, 0.025111457332968712, -0.003885816317051649, 0.022056633606553078, 0.0059986235573887825, 0.014103326015174389, -0.009507633745670319, 0.01501842774450779, 0.003963196184486151, -0.010577495209872723, -0.0020236524287611246, 0.004703351762145758, 0.008868408389389515, 0.008854950778186321, -0.01392838079482317, -0.01265665888786316, 0.0036604052875190973, 0.016714056953787804, 0.010355448350310326, -0.010086300782859325, 0.005295475944876671, -0.02217775024473667, -0.019190212711691856, 0.0005719383480027318, 0.004414018243551254, 0.02306593582034111, 0.009682579897344112, -0.010173773393034935, -0.03275524452328682, 0.008383942767977715, 0.013834178447723389, -0.032809074968099594, -0.0015711482847109437, 0.04021063074469566, 0.0033778005745261908, -0.019069096073508263, -0.0010387409711256623, -0.17042416334152222, 0.020535949617624283, 0.02703586034476757, -0.023335084319114685, 0.02084546908736229, -0.016606397926807404, 0.003757971338927746, -0.002450923901051283, -0.022944819182157516, -0.026013100519776344, 0.02196243219077587, 0.023859921842813492, -0.013746705837547779, -0.01561055239289999, -0.008579075336456299, 0.010214145295321941, -0.006984376348555088, -0.009339416399598122, 0.04831196740269661, 0.02235269546508789, 0.042902104556560516, -0.02017260156571865, -0.021572168916463852, 0.03310513496398926, 0.001539186923764646, 0.011553154326975346, -0.01935170218348503, 0.0073275393806397915, 0.009157742373645306, -0.019445903599262238, -0.003731056582182646, 0.012892162427306175, 0.03297056257724762, 0.020401377230882645, -0.010483292862772942, -0.016566025093197823, 0.01945936121046543, 0.005480514839291573, -0.002260838635265827, -0.0029942654073238373, 0.00327182374894619, 0.04298284649848938, -0.003912731073796749, -0.009648935869336128, 0.020159143954515457, 0.022258494049310684, 0.01458779163658619, -0.015812411904335022, -0.003764699911698699, -0.007509213872253895, -0.0028630560263991356, -0.018503887578845024, -0.009689307771623135, -0.01812708005309105, 0.019930368289351463, 0.015960443764925003, 0.006456174422055483, 0.004521677270531654, -0.0007275391835719347, -0.004403925035148859, -0.009238486178219318, -0.017871391028165817, -0.0012574231950566173, 0.003165846923366189, -0.011741557158529758, -0.0033895757514983416, -0.012495170347392559, 0.019176755100488663, -0.004491398110985756, -0.004366917535662651, -0.007771632634103298, -0.01612193137407303, 0.011977061629295349, 0.0030884670559316874, 0.0019513190491124988, 0.021693283692002296, -0.02291790582239628, 0.033455029129981995, 0.01501842774450779, -0.01612193137407303, -0.0029707150533795357, 0.03555437922477722, 0.008182082325220108, -0.012683573178946972, 0.02159908227622509, 0.002826048294082284, 0.0055410731583833694, 0.010907200165092945, -0.02392720803618431, -0.023227425292134285, 0.03262067213654518, -0.018005965277552605, 0.004538498818874359, -0.015408691018819809, -0.012791232205927372, 0.004726902116090059, 0.004605785943567753, 0.01898835226893425, -0.016754427924752235, 0.004154963884502649, 0.007206422742456198, -0.00017894100164994597, -0.014157155528664589, 0.009770052507519722, 0.030763553455471992, 0.01365923322737217, -0.021948974579572678, 0.03079046867787838, 0.02231232263147831, 0.0037142348010092974, -0.026376450434327126, 0.002486249664798379, 0.016148846596479416, 0.022231578826904297, 0.009359602816402912, 0.03151716664433479, 0.011748285964131355, 0.0064696320332586765, 0.012737402692437172, 0.018907608464360237, 0.0020085128489881754, -0.035096827894449234, -0.006839709356427193, 0.012394240126013756, 0.01959393359720707, 0.0012077991850674152, -0.04241763800382614, 0.009211571887135506, 0.014978055842220783, 0.04222923517227173, -0.016458366066217422, 0.04928089678287506, 0.006015445571392775, 0.03700777515769005, -0.026484109461307526, 0.02217775024473667, -0.014009124599397182, -0.030736638233065605, -0.0051676309667527676, -0.002679699333384633, -0.001618248992599547, 0.0053997705690562725, -0.001759551465511322, -0.009393245913088322, 0.014991512522101402, 0.022662214934825897, 0.0006181980716064572, -0.02142413705587387, 0.004908576607704163, -0.009823882021009922, -0.012845061719417572, -0.012199108488857746, -0.012077991850674152, 0.03079046867787838, 0.008148439228534698, -0.006308143492788076, 0.052833642810583115, -0.0030346375424414873, -0.013295884244143963, -0.004588963929563761, -0.000544603040907532, -0.005127259064465761, 0.0071324072778224945, -0.028556544333696365, 0.032593756914138794, -0.012744131498038769, -0.006358608603477478, -0.01641799509525299, 0.01464162115007639, 0.00013520453649107367, -0.030951956287026405, -0.005117165856063366, -0.01528757531195879, 0.02174711413681507, 0.013524658977985382, -0.028637288138270378, -0.011398394592106342, -0.004659614991396666, 0.01734655350446701, -0.02377917803823948, 0.055659692734479904, 0.008235911838710308, 0.043144337832927704, 0.015704752877354622, -0.03743841126561165, 0.034316301345825195, 0.025878528133034706, -0.004111227113753557, -0.02077818289399147, -0.0011985471937805414, 0.013295884244143963, 0.001570307184010744, -0.019055640324950218, -0.0014071365585550666, 0.004578871186822653, -0.014130241237580776, -0.006977647542953491, 0.01550289336591959, -0.026591768488287926, 0.0073544541373848915, -0.016687141731381416, -0.018369313329458237, -0.008962609805166721, -0.03458544611930847, 0.026228418573737144, -0.01758878491818905, -0.022002803161740303, -0.006836345419287682, -0.011135975830256939, -0.012912348844110966, 0.009817153215408325, 0.007441926747560501, -0.012481712736189365, 0.01924404315650463, 0.01831548474729061, -0.04295593127608299, 0.007798547390848398, 0.000899961800314486, 0.0037007774226367474, -0.024626990780234337, -0.01156661193817854, -0.0003019497962668538, -0.008114795200526714, 0.013188225217163563, 0.0002571619697846472, 0.0252460315823555, -0.033912576735019684, -0.028529629111289978, -0.08860334008932114, 0.010416006669402122, 0.017427297309041023, -0.012959449551999569, 0.01083318516612053, 0.010981216095387936, 0.004276080057024956, -0.010954300872981548, 4.279023778508417e-05, -0.0020808461122214794, -0.02188168838620186, -0.016714056953787804, 0.014843481592833996, -0.0024845674633979797, -0.0379767045378685, -0.013437186367809772, 0.04397869482636452, 0.018328940495848656, 0.005510793998837471, 0.017508041113615036, 0.005356034263968468, -0.006937275640666485, 0.0008141710422933102, 0.007616872899234295, -0.024088697507977486, 0.009554734453558922, 0.013201682828366756, 0.017494583502411842, -0.01523374579846859, -0.03501608222723007, -0.022689130157232285, -0.007589958142489195, 0.009857525117695332, -0.0007645469740964472, 0.008182082325220108, -0.004955677315592766, 0.01544906385242939, 0.012219293974339962, 0.03224386274814606, 0.004400560632348061, -0.04667016863822937, -0.023859921842813492, 0.01866537518799305, -0.003737785154953599, -0.01612193137407303, 0.006183662451803684, -0.014776195399463177, -0.002418962772935629, 0.01573166809976101, 0.04502836987376213, 0.027829846367239952, 0.018611546605825424, -0.010987944900989532, -0.010759169235825539, 0.0013020008336752653, -0.04021063074469566, 0.022769873961806297, 0.021154990419745445, -0.0006985217332839966, 0.0019092647125944495, 0.036281075328588486, -0.0027890403289347887, -0.0007872562855482101, 0.0009235122124664485, 0.012232751585543156, 0.01208472065627575, -0.021652912721037865, 0.00042769210995174944, 0.03778830170631409, -0.019930368289351463, -0.030655894428491592, -0.013255511410534382, 0.0015425513265654445, 0.01834239810705185, -0.00515753822401166, -0.007340996526181698, -0.0032970563042908907, -0.008309927769005299, -0.03364343196153641, 0.013511202298104763, 0.01622959040105343, -0.004895119462162256, -0.031248018145561218, 0.020683981478214264, 0.028744947165250778, -0.0028630560263991356, -0.008208997547626495, 0.012508627958595753, 0.013403543271124363, 0.0050599719397723675, -0.009231757372617722, 0.004787460435181856, 0.005887600593268871, 0.026699427515268326, 0.021464509889483452, 0.027722187340259552, -0.023765720427036285, 0.006324965041130781, 0.0511380136013031, 0.015166458673775196, 0.013181496411561966, -0.006970918737351894, 0.006055817473679781, 0.0015063845785334706, 0.0003236077609471977, -0.008047509007155895, -0.02539406158030033, -0.05256449803709984, 0.0010648146271705627, 0.008767478168010712, 0.009850796312093735, 0.0024761564563959837, -0.0414217934012413, 0.02246035449206829, 0.010961029678583145, -0.005749662406742573, 0.008377213962376118, -0.002027016831561923, -0.022218121215701103, 0.004017025697976351, 0.01616230420768261, -0.005120530258864164, 0.015973901376128197, -0.011721371673047543, 0.025434434413909912, 0.004387103486806154, 0.010812998749315739, -0.02667251229286194, -0.008484872989356518, 0.0011396711925044656, -0.01745421253144741, -0.008646361529827118, 0.00021973365801386535, -0.018571173772215843, -0.0007485663518309593, 0.022487269714474678, 0.0039261882193386555, -0.004726902116090059, -0.0240617822855711, 0.10082263499498367, 0.01984962448477745, 0.017063947394490242, -0.009029896929860115, -0.0035157385282218456, -0.02034754678606987, 0.0009310819441452622, 0.018638459965586662, 0.014816567301750183, -0.030763553455471992, 0.020549407228827477, 0.018746118992567062, -0.0012834968511015177, -0.038353510200977325, -0.007744717877358198, 0.0001859850890468806, -0.02345620095729828, 0.02839505672454834, -0.010564037598669529, 0.004329909570515156, 0.03657713904976845, -0.0004098190402146429, 0.010005556046962738, 0.007071849424391985, -0.001570307184010744, 0.008141710422933102, 0.01587969996035099, -0.0003826940373983234, 0.002324761124327779, -0.01648528128862381, 0.034343212842941284, 0.012340410612523556, -0.028583459556102753, -0.003710870398208499, -0.02928324230015278, -0.0014702179469168186, -0.007347725331783295, 0.004649522248655558, 0.027305008843541145, 0.010718797333538532, 0.007865834049880505, 0.013901465572416782, -0.02960621938109398, -0.008208997547626495, -0.004780731629580259, -0.01458779163658619, -0.009346145205199718, -0.007536128628998995, -0.024667363613843918], "1d8fe66d-74de-42b6-b42c-602120f097f1": [-0.014656825922429562, -0.026387780904769897, 0.016332676634192467, -0.017280494794249535, -0.02479434944689274, 0.02181353233754635, 0.018214574083685875, -0.013709008693695068, 0.0013083999510854483, -0.015783216804265976, 0.019505804404616356, 0.009162233211100101, -0.0043819379061460495, -0.012280414812266827, -0.02300860732793808, -0.0034135158639401197, 0.008379253558814526, -0.009024868719279766, 0.0190937090665102, 0.015151339583098888, -0.017445331439375877, -0.0006511951214633882, -0.017582695931196213, -0.008228152990341187, -0.016167839989066124, 0.018516777083277702, -0.00407286686822772, -0.009327070787549019, 0.004883319139480591, 0.00875700730830431, 0.011538645252585411, -0.00833117589354515, -0.005824268329888582, -0.015329914167523384, -0.014698036015033722, -0.014656825922429562, -0.03008289448916912, 0.0009297881042584777, 0.028159787878394127, -0.010652641765773296, 0.029835639521479607, -0.007294071838259697, 0.026703720912337303, 0.008317439816892147, -0.04123691841959953, 0.021566277369856834, -0.024203680455684662, -0.006370293442159891, -0.019890425726771355, 0.029478490352630615, 0.021071763709187508, 0.008550959639251232, -0.0428578220307827, 0.0019351268419995904, 0.02086571604013443, 0.004739086143672466, -0.024725668132305145, 0.017088184133172035, -0.01335872896015644, -0.012582617811858654, 0.013200758956372738, 0.0029224364552646875, -0.01447825226932764, 0.002366109052672982, 0.00621575815603137, 0.010371044278144836, 0.0031044448260217905, -0.0037947031669318676, -0.007575669791549444, -0.011380675248801708, 0.011744691990315914, 0.004278914071619511, -0.009622405283153057, 0.01025428343564272, 0.03549506887793541, -0.01622278429567814, -0.011833978816866875, 0.006792690139263868, 0.009945212863385677, -0.008612774312496185, -0.008770743384957314, 0.0018218009499832988, -0.004842109978199005, -0.009409490041434765, 0.01188205648213625, -0.002381562488153577, -0.029780693352222443, 0.0011727521196007729, 0.004855846520513296, -0.027788903564214706, -0.003449574112892151, 0.010583959519863129, 0.0066038137301802635, 0.003245243802666664, -0.00458798510953784, -0.011682878248393536, -0.0008769885171204805, 0.0237641129642725, -0.009711693041026592, -0.03269282728433609, -0.019217338413000107, 0.0031319179106503725, -0.028929030522704124, -0.006521394941955805, -0.029945529997348785, -0.010769401676952839, 0.025852058082818985, 0.006263835821300745, -0.004041959997266531, -0.025206444784998894, -0.010817479342222214, 0.03120928630232811, -0.010927371680736542, -0.013468620367348194, -0.02859935536980629, -0.005844872910529375, 0.012349097058176994, -0.00968421995639801, -0.04395674169063568, -0.01313207671046257, 0.012816137634217739, 0.017665116116404533, -0.00018705225375015289, 0.02413499914109707, 0.009800979867577553, -0.0069163185544312, -0.007974027656018734, -0.010618300177156925, -0.018970081582665443, 0.004096905700862408, 0.05093487352132797, 0.018036000430583954, 0.012788664549589157, 0.0034512910060584545, -0.03695113584399223, -0.006696534808725119, -0.003255546325817704, -0.014107367023825645, -0.021071763709187508, -0.0007366188219748437, 0.00228369003161788, 0.01611289381980896, -0.016360150650143623, -0.0015934319235384464, -0.0029670801013708115, 0.03126423433423042, 0.016731034964323044, 0.007046815007925034, 0.00923091545701027, 0.02681361325085163, 0.004065998829901218, -0.009787243790924549, 0.002659726422280073, -0.04387432336807251, -0.01722554862499237, 0.01229415088891983, -0.009024868719279766, 0.006521394941955805, 0.0038736879359930754, -0.014079893939197063, 0.026772404089570045, 0.04780295863747597, 0.009052341803908348, -0.011930134147405624, 0.0015771198086440563, 0.02803616039454937, 0.0075069875456392765, 0.013564775697886944, 0.0019763363525271416, 0.0045364731922745705, -0.0069678304716944695, 0.027088342234492302, -0.018324466422200203, 0.018887663260102272, -0.0017024652333930135, -0.003423818154260516, -0.007568801753222942, -0.009807848371565342, -0.010302361100912094, 0.012273546308279037, -0.011621063575148582, -0.012149917893111706, 0.011511172167956829, 0.014313413761556149, -0.03203347697854042, 0.011985080316662788, -0.004570814315229654, -0.0006228635902516544, 0.019904162734746933, 0.014711772091686726, 0.023791586980223656, 0.039533596485853195, 0.0023214654065668583, 0.0020862282253801823, -0.5833059549331665, -0.027170760557055473, -0.02552238292992115, 0.011566117405891418, 0.014505725353956223, 0.00712236575782299, 0.0037534937728196383, 0.00917597021907568, -0.03689619153738022, 0.03335217759013176, -0.02616799809038639, 0.02011021040380001, -0.013427411206066608, -0.017747534438967705, 0.01335872896015644, -0.018008528277277946, 0.014752981252968311, -0.021854743361473083, -0.022857505828142166, 0.02030252106487751, -0.024354781955480576, 0.013901319354772568, -0.02068714238703251, 0.0037328889593482018, -0.02263772301375866, -0.01740412227809429, -0.008283098228275776, -0.0029018318746238947, -0.000408445717766881, 0.045797429978847504, -0.02645646408200264, 0.00703307893127203, 0.024629512801766396, -0.030137840658426285, 0.061319656670093536, -0.0025876096915453672, -0.023352019488811493, 0.04483587667346001, -0.0004837817104998976, 0.025838322937488556, -0.004193061031401157, -0.019340965896844864, 0.022582776844501495, -0.005120273679494858, 0.007191048469394445, -0.0014363208319991827, -0.010453462600708008, -0.021841006353497505, 0.014203522354364395, 0.015700798481702805, 0.005319452844560146, 0.02020636573433876, -0.009086682461202145, -0.019890425726771355, 0.033571962267160416, -0.0028383005410432816, 0.023997634649276733, -0.020288784056901932, -0.004804334603250027, -0.033214814960956573, -0.02589326910674572, 0.020467357710003853, 2.257665983051993e-05, 0.0037500595208257437, -0.00229399255476892, 0.02366795763373375, 0.0018458397826179862, 0.013022185303270817, 0.008035842329263687, -0.023036079481244087, 0.015769481658935547, -0.005501461215317249, -0.01853051409125328, 0.004574248567223549, 0.01770632527768612, 0.036456622183322906, 0.016827190294861794, -0.01191639807075262, 0.005000079516321421, 0.011524908244609833, -0.0017325137741863728, 0.021181654185056686, -0.0340939499437809, 0.003408364485949278, 0.013798296451568604, -0.0173354409635067, -0.035714853554964066, -0.005024118348956108, -0.01038478035479784, -0.00423427065834403, -0.004065998829901218, 0.00328473630361259, -0.01220486406236887, -0.03379174694418907, 0.017651379108428955, 0.01574200764298439, -0.026676248759031296, -0.00045673802378587425, 0.01159359049052, -0.014134840108454227, -0.01504144724458456, 0.03093455731868744, 0.010034499689936638, 0.00018758882652036846, 0.03829731047153473, 0.00276961806230247, -0.008832558058202267, -0.008118260651826859, 0.03772037848830223, 0.002324899658560753, 0.010419121943414211, -0.017527751624584198, 0.005305716302245855, -0.00752072362229228, 0.024560829624533653, -0.04052262008190155, 0.030879611149430275, 0.0014989936025813222, 0.015151339583098888, -0.0029979872051626444, 0.00011128696496598423, 0.016882136464118958, 0.0027129552327096462, -0.0023712601978331804, 0.009471304714679718, 0.010261151939630508, 0.004268611781299114, -0.01574200764298439, -0.01556343398988247, 0.002039867453277111, -0.005013816058635712, -0.004691008478403091, 0.019038764759898186, 0.008454804308712482, -0.0020415845792740583, 0.00987653061747551, 0.00244509382173419, -0.022321783006191254, 0.03659398853778839, 0.0017101919511333108, -0.010364175774157047, 0.004941699560731649, 0.004378503654152155, 0.005982237868010998, -0.008516618981957436, -0.02131902053952217, -0.011339466087520123, -0.01476671826094389, -0.005456817336380482, 0.029286179691553116, -0.008276230655610561, -0.002366109052672982, -0.015618380159139633, 0.0029447583947330713, -0.01252767164260149, 0.001183054526336491, -0.0035955242346972227, 0.001231132191605866, 0.011518039740622044, -0.02700592391192913, 0.0018733127508312464, -0.0034152327571064234, -0.03648409619927406, 0.005511763505637646, -0.02225309982895851, -0.008509750477969646, -0.025591066107153893, 0.020604722201824188, -0.015948055312037468, -0.02811857871711254, 0.006212323904037476, 0.006208889652043581, 0.008935581892728806, -0.0037809666246175766, 0.000805730524007231, -0.004065998829901218, -0.03252799063920975, -0.0021531935781240463, -0.007664957083761692, -0.011154022999107838, 0.002979099517688155, 0.01927228458225727, 0.0027661840431392193, -0.014134840108454227, 0.012857346795499325, 0.019148655235767365, 0.024808086454868317, -0.009622405283153057, -0.011559249833226204, 0.03148401528596878, -0.015906846150755882, 0.02262398600578308, -0.013633457943797112, 0.02700592391192913, 0.017088184133172035, -0.004581116605550051, 0.006129905115813017, 0.035247813910245895, 0.006899148225784302, 0.034231312572956085, 0.016236521303653717, 0.02460203878581524, 0.01038478035479784, -0.009732297621667385, -0.0015067203203216195, -0.012417779304087162, 0.003023743163794279, -0.009196574799716473, 0.0004468649276532233, 0.0013453166466206312, -0.027349336072802544, 0.004927963018417358, -0.029093869030475616, -0.01341367419809103, 0.03101697564125061, 0.019670642912387848, -0.03755554184317589, 0.007170443423092365, 0.02655261941254139, -0.007582537829875946, -0.019450858235359192, -0.00805644690990448, 0.01285047922283411, 0.0007701014983467758, 0.016044210642576218, -0.01285047922283411, -0.007582537829875946, 0.011669141240417957, 0.033764272928237915, 0.002235612366348505, -0.02449214644730091, -0.014739245176315308, -0.002561853965744376, -0.0008229011436924338, 0.03744564950466156, -0.010796874761581421, 0.0385720394551754, -0.013880714774131775, 0.031181814149022102, -0.008523487485945225, 0.0014285941142588854, 0.003161107888445258, -0.015247494913637638, -3.3911939681274816e-05, 0.009052341803908348, 0.00017921815742738545, 0.06230868026614189, 0.026978449895977974, -0.016634879633784294, 0.02821473404765129, 0.00888750422745943, -0.03379174694418907, -0.002232178347185254, -0.0051752193830907345, 0.000951251364313066, 0.007678693160414696, 0.01080374326556921, 0.018200838938355446, 0.02598942443728447, 0.039148975163698196, -0.0002378128410782665, 0.014018080197274685, 0.03975337743759155, 0.015055184252560139, 0.0005777907790616155, -0.008825689554214478, -0.008640247397124767, -0.011270783841609955, 0.019670642912387848, 0.0036607724614441395, -0.0461820513010025, -0.029313651844859123, 0.004316689446568489, -0.010460331104695797, 0.016992028802633286, 0.005068761762231588, 0.027541646733880043, 0.021387701854109764, 0.033764272928237915, -0.033104922622442245, -0.03261040896177292, -0.023448174819350243, 0.04016547277569771, -0.018791507929563522, 0.00833117589354515, -0.003640167647972703, -0.025646012276411057, 0.008447936736047268, -0.021085498854517937, 0.03008289448916912, -0.009347676299512386, -0.0062878746539354324, 0.004897055681794882, 0.003653904190286994, -0.001099777058698237, -0.002227027202025056, 0.023695431649684906, -0.013544171117246151, -0.004873016849160194, 0.004182758741080761, 0.001455208519473672, 0.022884977981448174, -0.010817479342222214, 0.004804334603250027, 0.039176445454359055, 0.011621063575148582, 0.022239364683628082, -0.010322966612875462, 0.0018011961365118623, -0.020797032862901688, 0.030440043658018112, -0.031071921810507774, -0.00752072362229228, -0.00978037528693676, -0.02355806715786457, -0.003423818154260516, 0.016167839989066124, 0.009979554452002048, 0.01686839945614338, 0.01881898008286953, -0.01964316889643669, -0.018956344574689865, -0.019231075420975685, 0.009842189028859138, -0.007403963711112738, 0.026978449895977974, 0.03439614921808243, -0.006487053353339434, -0.015453542582690716, -0.0012800684198737144, -0.015549697913229465, -0.020618459209799767, 0.0023077288642525673, -0.038324784487485886, -0.0025532685685902834, -0.0012689075665548444, 0.040028106421232224, -0.0026391216088086367, 0.024739403277635574, 0.015192548744380474, -0.01593431830406189, -0.009251520968973637, 0.031154340133070946, -0.004862714558839798, 0.0005923857679590583, 0.02618173509836197, -0.0032074684277176857, 0.012802401557564735, 0.0064218053594231606, 0.008805084973573685, -0.013812032528221607, 0.022404201328754425, 0.013276309706270695, -0.004440317861735821, -0.008365517482161522, 0.007603142876178026, 0.002319748280569911, 0.022472884505987167, 0.02059098705649376, 0.03186863660812378, -0.02729438990354538, 0.042802877724170685, 0.03112686797976494, 0.0008134572999551892, 0.009656746871769428, 0.0013461752096191049, 0.01751401461660862, 0.015769481658935547, 0.0017522600246593356, -0.04395674169063568, -0.01392879243940115, 0.0005292838322930038, 0.0016011586412787437, -0.0006048344657756388, 0.021950898692011833, 0.007211653050035238, -0.059561386704444885, -0.03299503028392792, 0.01108534075319767, 0.03620936721563339, -0.03280271962285042, -0.03574232757091522, -0.0054293442517519, 0.02030252106487751, -0.001933409832417965, -0.03494561091065407, -0.00477342726662755, -0.008365517482161522, -0.016827190294861794, -0.010082577355206013, -0.007383359130471945, 0.0061196028254926205, -0.02486303262412548, -0.0011967909522354603, 0.027885058894753456, -0.03568737953901291, -0.03359943628311157, -0.0034701786935329437, 0.012081235647201538, 0.010137523524463177, 0.016167839989066124, -0.02840704470872879, -0.002271670615300536, 0.02497292496263981, -0.008743270300328732, -0.017733797430992126, -0.0190937090665102, -0.021909689530730247, 0.01956075057387352, -0.03354448825120926, -0.002215007785707712, -0.01109220925718546, -0.010096314363181591, 0.03689619153738022, 0.00645271223038435, 0.019437121227383614, -0.011188364587724209, -0.0006387464236468077, 0.029863111674785614, -0.008640247397124767, -0.010336702689528465, 0.0187090877443552, 0.007953423075377941, -0.006713705603033304, 0.01262382697314024, -0.04796779528260231, -0.02457456663250923, -0.014327150769531727, -0.040467675775289536, 0.019670642912387848, 0.024080052971839905, 0.00421366561204195, 0.0016655484214425087, 0.003102727932855487, 0.04576995596289635, -0.020096473395824432, 0.01350982952862978, 0.03140159696340561, 0.019258547574281693, 0.015000238083302975, 0.006696534808725119, 0.020563513040542603, 0.0007258871919475496, 0.000660209683701396, 0.008908108808100224, -0.0002912563504651189, 0.030412571504712105, 0.01374335028231144, 0.028008686378598213, 0.0017419576179236174, 0.005807097535580397, -0.05236347019672394, -0.018516777083277702, -0.003561182878911495, 0.008138865232467651, -0.00043742108391597867, 0.001289512263610959, -0.019409649074077606, 0.0020724916830658913, -0.012637563049793243, -0.025852058082818985, 0.025632275268435478, -0.004388805944472551, -0.012994712218642235, -0.00814573373645544, 0.011717218905687332, -0.0067446124739944935, -0.020563513040542603, -0.0004054408345837146, -0.021401438862085342, 0.0023094459902495146, -0.0008963054278865457, 0.018214574083685875, 0.0052301655523478985, 0.02189595252275467, 0.009883399121463299, -0.03359943628311157, -0.014423306100070477, 0.009127892553806305, -0.0074383048340678215, -0.016813453286886215, 0.018503041937947273, 0.019162392243742943, 0.02460203878581524, 0.028187260031700134, -0.010164996609091759, 0.018049737438559532, 0.004093471448868513, -0.00011901374091394246, 0.006504224147647619, -0.03346206992864609, 0.018750296905636787, 0.0010147825814783573, -0.013090867549180984, 0.000710433698259294, -0.0005408739671111107, 0.007115497719496489, -0.00815260224044323, -0.011229573749005795, 0.01715686544775963, -0.001818366814404726, -0.0008885786519385874, -0.014299677684903145, -0.03225325793027878, -0.012026289477944374, 0.001104928320273757, 0.0017496843356639147, -0.00100705586373806, -0.022775087505578995, -0.017665116116404533, 0.02059098705649376, -0.00987653061747551, 0.00637716194614768, 0.0048112026415765285, -0.001773723168298602, -0.018956344574689865, 0.014409569092094898, -0.010247415862977505, -0.0025137763004750013, -0.006823597475886345, -0.005446515046060085, -0.01715686544775963, 0.01412110310047865, -0.0043819379061460495, 0.011991948820650578, 0.0252339169383049, -0.006085261702537537, 0.007163575384765863, -0.011662272736430168, 0.03788521885871887, 0.016717297956347466, -0.015123866498470306, 0.01457440759986639, -0.030989503487944603, -0.04052262008190155, -0.025275126099586487, 0.004096905700862408, -0.020728351548314095, 0.0031576738692820072, 0.006627852562814951, 0.0104740671813488, 0.009581196121871471, -0.004000750370323658, -0.010824347846210003, -0.02534380927681923, -0.0034821981098502874, 0.024327309802174568, -0.002075925935059786, 0.004938265308737755, 0.04994584992527962, 0.017362913116812706, -0.007925949990749359, -0.04079735279083252, 0.026621302589774132, -0.018557986244559288, 0.028352098539471626, 0.011703482829034328, -0.02934112586081028, -0.008221284486353397, -0.005085932556539774, 0.0009409490157850087, -0.029643328860402107, -0.022569039836525917, 0.015481014735996723, 0.019711852073669434, -0.015192548744380474, -0.009821584448218346, 0.008207547478377819, -0.010164996609091759, 0.017019500955939293, -0.01936843991279602, 0.0025876096915453672, -0.0025378151331096888, -0.011964475736021996, -0.029011450707912445, -0.0016681239940226078, 0.006020013242959976, 0.017953582108020782, 0.022486621513962746, 0.003312209155410528, -0.034148894250392914, -0.027692748233675957, -0.03178621828556061, 0.0019797703716903925, 0.0012611807323992252, 0.013070262968540192, 0.00027859301189891994, -0.01881898008286953, 0.024341046810150146, 0.016813453286886215, -0.019780533388257027, -0.016456305980682373, -0.016923345625400543, 0.05343491584062576, -0.008619642816483974, 0.008681456558406353, -0.002476000925526023, 0.0017419576179236174, 0.017912372946739197, 0.0074383048340678215, -0.004021354950964451, -0.012871083803474903, -0.012974106706678867, 0.00589295057579875, 0.03315986692905426, -0.00256357085891068, 0.027624065056443214, -0.028159787878394127, -0.013812032528221607, 0.010453462600708008, -0.019052499905228615, -0.012932897545397282, -0.0074932510033249855, -0.022692667320370674, -0.029478490352630615, -0.01898381859064102, -0.026978449895977974, 0.007836663164198399, 0.015961792320013046, 0.004938265308737755, 0.016154102981090546, 0.035632435232400894, -0.03379174694418907, 0.004017921164631844, -0.03478077054023743, 0.01038478035479784, -0.022500356659293175, 0.00402822345495224, 0.0011504304129630327, -0.0017556940438225865, 0.017582695931196213, 0.018090946599841118, -0.006806426681578159, -0.030769718810915947, -4.2309438867960125e-05, 0.03431373089551926, 0.025261390954256058, 0.030055422335863113, 0.04329739138484001, 0.006353123113512993, 0.008392990566790104, -0.02272014133632183, -0.03535770624876022, 0.015220021829009056, -0.01486287359148264, -0.00029705141787417233, -0.0070090400986373425, 0.003592089982703328, 0.006253533530980349, 0.0017908938461914659, 0.002604780485853553, 0.0015985830686986446, -0.016731034964323044, -0.01127765141427517, 0.014656825922429562, -0.024437202140688896, -0.034148894250392914, -0.005765888374298811, -0.01854425109922886, -0.02076956070959568, -0.017088184133172035, 0.004450620152056217, 0.004055696073919535, -0.012067499570548534, -0.013921924866735935, 0.028626827523112297, 0.010089445859193802, 0.027363071218132973, -0.009100419469177723, -0.02423115447163582, -0.013365596532821655, -0.0006696534692309797, -0.016538724303245544, -0.03417636826634407, -0.03131917864084244, 0.04368201270699501, 0.009430094622075558, -0.017170602455735207, -0.035247813910245895, -0.013949397020041943, 0.0004794890701305121, 0.004732218105345964, 0.007184179965406656, 0.013262573629617691, 0.0340939499437809, 0.008193811401724815, -0.0023626748006790876, 0.010075709782540798, -0.007362754084169865, 0.003578353440389037, 0.015412332490086555, 0.004519302397966385, -0.01593431830406189, 0.00804957840591669, -0.010000159032642841, -0.004282348323613405, -0.012836742214858532, -0.010233678855001926, 0.02383279614150524, 0.007610010914504528, 0.017733797430992126, -0.001365062897093594, 0.014505725353956223, -0.027321862056851387, -0.01572827249765396, -0.03568737953901291, -0.013544171117246151, -0.011428752914071083, -0.01715686544775963, -0.045495226979255676, 0.0038565173745155334, 0.035907164216041565, 0.008914976380765438, -0.002067340537905693, -0.001164166838862002, 0.011531776748597622, -0.005844872910529375, 0.0095468545332551, -0.02627789042890072, -0.023145971819758415, -0.028654301539063454, -0.02142891101539135, 0.031813692301511765, -0.0020433017052710056, 0.022692667320370674, 0.018750296905636787, -0.005058459471911192, 0.025494910776615143, -0.011991948820650578, 0.01880524307489395, -0.00945069920271635, 0.0074932510033249855, 0.01789863593876362, -0.008695192635059357, -0.014752981252968311, 0.019437121227383614, 0.013619721867144108, -0.03997316211462021, 0.0032744337804615498, -0.00400761840865016, -0.01712939329445362, -0.043901797384023666, 0.010618300177156925, 0.006181417033076286, -0.04101713374257088, 0.0014148576883599162, 0.021470122039318085, -0.012246073223650455, 0.008798216469585896, -0.03456098958849907, 0.005405305419117212, -0.040028106421232224, 0.031346652656793594, -0.0004408552194945514, 0.013502961955964565, -0.02004152722656727, -0.012555144727230072, 0.012349097058176994, -0.03533023223280907, 0.010494671761989594, 0.26132282614707947, 0.0048249391838908195, 0.009217179380357265, 0.04013799875974655, -0.00791908148676157, 0.0028176959604024887, -0.0021944029722362757, -0.011147155426442623, -0.011291388422250748, 0.03475330024957657, -0.027349336072802544, -0.01769258826971054, 0.005085932556539774, -0.011902661994099617, 0.009629273787140846, 0.019959108904004097, -0.04173143208026886, -0.02486303262412548, -0.04785790294408798, 0.009752902202308178, 0.012458989396691322, 0.00010538456990616396, -0.008482277393341064, -0.0192860197275877, 0.022472884505987167, -0.010412253439426422, 0.0011212403187528253, 0.023406965658068657, 0.014519461430609226, -0.005473988130688667, -0.040467675775289536, 0.010748797096312046, 0.007932818494737148, 0.012191127985715866, 0.0013144096592441201, -0.003453008132055402, 0.036566514521837234, 0.026415254920721054, 0.01936843991279602, -0.0005752152064815164, -0.01983547955751419, -0.0018406885210424662, 0.024917978793382645, -0.017651379108428955, -0.010377911850810051, -0.007616879418492317, 9.304319974035025e-05, -0.009656746871769428, 0.002366109052672982, 0.03063235431909561, -0.023915214464068413, -0.035907164216041565, 0.04222594574093819, 0.019038764759898186, 0.014807927422225475, -0.020700877532362938, 0.02980816550552845, 0.0029327389784157276, -0.006943791639059782, 0.0418962687253952, -0.00246741552837193, 0.041978687047958374, -0.014931555837392807, 0.003578353440389037, -0.011792769655585289, 0.012129313312470913, -0.02123660035431385, -0.0037088501267135143, -0.003592089982703328, 0.0022871242836117744, 0.00528854550793767, -0.002912134164944291, 0.005649127997457981, -0.0064218053594231606, -0.04126439243555069, -0.03593463823199272, 0.02469819411635399, 0.007664957083761692, 0.0067858221009373665, 0.041786376386880875, 0.021167919039726257, 0.01686839945614338, 0.018475567921996117, -0.004230836406350136, -0.04142922908067703, -0.01846183091402054, 0.012307887896895409, 0.013386202044785023, -0.008729534223675728, -0.010796874761581421, -0.008990527130663395, -0.01975306123495102, 0.0011942153796553612, -0.006277572363615036, -0.016552461311221123, 0.01796731911599636, -0.017926108092069626, 0.007644352037459612, -0.006095563992857933, 0.002081077080219984, -0.022582776844501495, 0.03137412294745445, 0.01741785928606987, 0.005140878260135651, -0.03126423433423042, -0.01575574465095997, 0.007108629215508699, 0.024547092616558075, -0.0016157536301761866, -0.02587953209877014, -0.007939686998724937, -0.01723928563296795, 0.01201255340129137, 0.017005763947963715, -0.011469962075352669, -0.006208889652043581, -0.014807927422225475, -0.03549506887793541, 0.00143803795799613, -0.016895873472094536, 0.02085197903215885, -0.03129170462489128, -0.027541646733880043, 0.006040617823600769, -0.0021137010771781206, -0.019505804404616356, -0.006500789895653725, -0.015165075659751892, -0.013626590371131897, -0.03277524560689926, 0.028846612200140953, -0.01767885312438011, 0.02310476265847683, -0.007843530736863613, -0.0059101213701069355, -0.005182087887078524, -0.0020999647676944733, -0.027733957394957542, 0.023159708827733994, -0.0012946634087711573, 0.0027232575230300426, 0.013908187858760357, -0.007678693160414696, -0.010714455507695675, -0.016511252149939537, -0.003822176018729806, 0.011071604676544666, -0.00544994929805398, 0.019670642912387848, -0.01740412227809429, -0.03736323118209839, -0.0028657736256718636, 0.014615616761147976, -0.004351030569523573, 0.0074657779186964035, -0.015110130421817303, -0.024066315963864326, -0.06324276328086853, 0.00888750422745943, 0.034973081201314926, -0.029670801013708115, 0.008791347965598106, 0.002805676544085145, -0.03387416526675224, -0.037115972489118576, -0.032363150268793106, -0.17384891211986542, 0.008592169731855392, 0.010446594096720219, -0.04425894469022751, 0.042143527418375015, 0.008454804308712482, -0.00615050969645381, -0.00833804439753294, -0.001602875767275691, -0.020192628726363182, 0.02168990485370159, -0.0035045200493186712, -0.010055105201900005, 0.0007095751352608204, 0.009423227049410343, -0.009327070787549019, -0.038709405809640884, -0.0037397572305053473, 0.04414905235171318, 0.0058551752008497715, 0.03686871752142906, -0.013681535609066486, -0.005820834077894688, 0.02413499914109707, 0.01572827249765396, 0.01122270617634058, -0.012513934634625912, -0.023159708827733994, 0.005525500047951937, -0.0007387651712633669, -0.020165154710412025, 0.027060870081186295, 0.02553611993789673, 8.955542580224574e-05, 0.026016896590590477, -0.005395003128796816, 0.0028863782063126564, -0.01504144724458456, -0.015398596413433552, 0.0008769885171204805, 0.017623906955122948, 0.018008528277277946, 0.015384859405457973, -0.01275432389229536, -0.039258863776922226, 0.006751480977982283, 0.01938217505812645, -0.0020381505601108074, 0.0002027204172918573, 0.015247494913637638, 0.00913476012647152, -0.03640167787671089, -0.017266757786273956, -0.0002515493251848966, 0.043077606707811356, -0.0017994791269302368, 0.02478061243891716, 0.014752981252968311, -0.0031370690558105707, -0.00048249392420984805, 0.000959836645051837, -0.02365422248840332, 0.014876609668135643, 0.022596511989831924, -0.025742167606949806, 0.015261230990290642, -0.019986581057310104, 0.0422808900475502, -0.017253020778298378, 0.03686871752142906, 0.00505159143358469, -0.028626827523112297, 0.005776190664619207, 0.002498322632163763, 0.01712939329445362, -0.00201411172747612, -0.010467199608683586, 0.027775166556239128, 0.014038684777915478, -0.010741928592324257, 0.0013410240644589067, 0.04450619965791702, 0.010123787447810173, -0.0007117214845493436, 0.01704697497189045, 0.017816217616200447, 0.02346191182732582, 0.004000750370323658, -0.04519302397966385, -0.02636030875146389, 0.043929267674684525, -0.024519620463252068, -0.015618380159139633, 0.002314597135409713, 0.0022235929500311613, 0.013255705125629902, -0.011978211812675, -0.009224047884345055, -0.001289512263610959, -0.0127131137996912, 0.006109300535172224, -0.009443831630051136, -0.030852138996124268, 0.02255530282855034, 0.008475408889353275, 0.02848946303129196, -0.015027711167931557, 0.008310571312904358, 0.027926268056035042, -0.0003927775251213461, -0.009340807795524597, 0.005027552600950003, 0.0127131137996912, 0.02887408435344696, -0.011806506663560867, 0.02326960116624832, -0.011195233091711998, 0.0014011211460456252, -0.008702061139047146, -0.004512434359639883, -0.019217338413000107, -0.016085419803857803, 0.019615696743130684, 0.016717297956347466, -0.019299756735563278, -0.001273200148716569, -0.06324276328086853, -0.013757086358964443, 0.018420621752738953, -0.013963134028017521, 0.0019042198546230793, 0.02281629666686058, 0.002070774557068944, 0.013262573629617691, -0.028654301539063454, 0.01322823204100132, 0.002063906518742442, -0.019615696743130684, 0.00018039863789454103, 0.011621063575148582, -0.01965690590441227, 0.0025309468619525433, -0.015961792320013046, 0.018846454098820686, -0.015357386320829391, 0.009945212863385677, -0.022211890667676926, 0.0034306864254176617, -0.00814573373645544, -0.005082498304545879, -0.026566356420516968, 0.01751401461660862, -0.022129472345113754, -0.0012998145539313555, 0.008131997659802437, -0.0037947031669318676, 0.01271998230367899, -0.00272497464902699, -0.0017230699304491282, 0.004800900351256132, 0.013063394464552402, 0.001108362339437008, -0.04134681075811386, -0.033022504299879074, 0.018036000430583954, -0.028159787878394127, 0.02050856687128544, 0.020068999379873276, 0.004306387156248093, 0.025755902752280235, -0.008626510389149189, 0.008104524575173855, -0.007280335295945406, 0.014849136583507061, -0.01392879243940115, -0.0043269917368888855, -0.051649171859025955, -0.0006035466794855893, -0.01836567558348179, -0.036181893199682236, 0.027418017387390137, 0.009855926036834717, 0.004478093236684799, 0.013489224947988987, -0.012417779304087162, 0.015261230990290642, -0.010851820930838585, 0.004351030569523573, 0.0004927963018417358, 0.02197837084531784, 0.010075709782540798, 0.021731114014983177, -0.006222626194357872, -0.015865636989474297, 0.026346571743488312, 0.0012131030671298504, -0.013448015786707401, 0.01109220925718546, -0.004014486912637949, 0.031346652656793594, -0.016621142625808716, -0.0052439020946621895, 0.004430015571415424, -0.019258547574281693, 0.010886161588132381, 0.016799718141555786, -0.01476671826094389, 0.007774848956614733, -0.007582537829875946, 0.011758428066968918, 0.0008417887729592621, 0.03596210852265358, 0.010371044278144836, 0.024423465132713318, 0.022005844861268997, -0.012562012299895287, -0.0032332243863493204, -0.005999408662319183, 0.005920423660427332, -0.006493921857327223, -0.03217083960771561, -0.009375148452818394, -0.000788989185821265, 0.016785981133580208, -0.009986422024667263, 0.020714614540338516, -0.04958869889378548, -0.027047133073210716, -0.0845617800951004, 0.038517095148563385, -0.02328333631157875, -0.029203761368989944, -0.010055105201900005, -0.002561853965744376, 0.029176287353038788, 0.003226356115192175, -0.010515277273952961, -0.012665036134421825, 0.003688245313242078, 0.017541486769914627, -0.008791347965598106, 0.005041288677603006, -0.00043849425856024027, -0.013860110193490982, 0.015975529327988625, 0.007211653050035238, 0.01946459524333477, 0.002230461221188307, 0.02320091798901558, -0.006703403312712908, 0.01163480058312416, -0.010535881854593754, -0.04936891421675682, 0.00554610462859273, -0.014038684777915478, -0.0006636437610723078, -0.00626727007329464, -0.030412571504712105, -0.0008306278614327312, -0.027651537209749222, -0.010851820930838585, 0.003550880588591099, 0.007877872325479984, 0.008454804308712482, 0.019299756735563278, 0.024739403277635574, 0.03549506887793541, 0.027363071218132973, -0.0022699537221342325, -0.009072946384549141, 0.02945101633667946, 0.002355806762352586, 0.005298847798258066, -0.011957607232034206, -0.012465856969356537, -0.006102432031184435, 0.004927963018417358, 0.026291625574231148, 0.016827190294861794, 0.015893109142780304, -0.00796029157936573, -0.020604722201824188, 0.0006735168863087893, -0.03673135116696358, 0.013489224947988987, -0.016442568972706795, 0.006923187058418989, -0.0004417137533891946, 0.009320203214883804, 0.011009790003299713, -0.01611289381980896, -0.004488395527005196, -0.005436212755739689, -0.008681456558406353, -0.024176208302378654, -0.019231075420975685, -0.013118340633809566, -0.01332438737154007, -0.018942609429359436, 0.004079734906554222, 0.0026082145050168037, 0.0027181063778698444, 0.03164885565638542, 0.028736719861626625, -0.013557907193899155, 0.01657993346452713, -0.01817336492240429, 0.03379174694418907, 0.004502132069319487, 0.0017754402942955494, -0.0339016355574131, 0.008770743384957314, -0.0010079143103212118, -0.0018011961365118623, -0.009533118456602097, -0.0005352935404516757, -0.009835321456193924, -0.01947833225131035, -0.02245914749801159, -0.02609931491315365, -0.005113405175507069, 0.031896110624074936, 0.01938217505812645, 0.03535770624876022, 0.00763748399913311, 0.00142687710467726, 0.02460203878581524, -3.8258247514022514e-05, 0.02653888240456581, -0.016332676634192467, 0.006442409940063953, -0.031896110624074936, -0.030577408149838448, -0.01899755373597145, -0.006026881281286478, -0.026016896590590477, -0.0028039594180881977, 0.018324466422200203, -0.012665036134421825, 0.02469819411635399, -0.017939845100045204, 0.017555223777890205, -0.021758588030934334, -0.014464515261352062, -0.009388885460793972, -0.018132155761122704, -0.01798105426132679, 0.00978037528693676, 0.030027950182557106, -0.0023266165517270565, 0.020165154710412025, -0.019601959735155106, 0.025865795090794563, 0.00018758882652036846, 0.009478172287344933, -0.035247813910245895, 0.005395003128796816, 0.0002204276097472757, 0.0005395861808210611, 0.018393149599432945, -0.020645933225750923, -0.0252339169383049, -0.023448174819350243, 0.009320203214883804, 0.009018000215291977, -0.006809860933572054, -0.010213074274361134, 0.05972622334957123, -0.011765296570956707, 0.012891688384115696, -0.03263787925243378, -0.013605985790491104, -0.004759691189974546, 0.01740412227809429, 0.013709008693695068, -0.007417700253427029, -0.014217258431017399, 0.004725349601358175, -0.024176208302378654, -0.019299756735563278, -0.011291388422250748, -0.01108534075319767, 0.004309821408241987, -0.018764033913612366, 0.041291866451501846, -0.000604405184276402, 0.023145971819758415, 0.04283035174012184, 0.024615775793790817, 0.01438209693878889, 0.010735061019659042, -0.011724087409675121, -0.002032999414950609, 0.01611289381980896, 0.006490487605333328, 0.005903253331780434, -0.02859935536980629, -0.012424647808074951, 0.013530435040593147, 0.0006009711069054902, -0.013496093451976776, 0.0033585699275135994, 0.026291625574231148, 0.0042857825756073, 0.0033860427793115377, 0.03315986692905426, -0.0007293213275261223, -0.004574248567223549, 0.01611289381980896, -0.04329739138484001, -0.02692350372672081, 0.001329004648141563, 0.012046894989907742, 0.0014706620713695884, -0.0013006731169298291, -0.03783027082681656], "4354a668-d85d-4c5b-bda7-a24d7f204a75": [-0.02248964086174965, -0.017570456489920616, -0.001143166795372963, -0.016333865001797676, -0.005394795909523964, 0.017611222341656685, -0.012596916407346725, -0.013337511569261551, -0.0118563212454319, -0.007827210240066051, 0.023332152515649796, 0.0074535151943564415, -0.0020332401618361473, -0.0042159585282206535, -0.01651052199304104, -0.022870130836963654, 0.017855823040008545, -0.004576064180582762, 0.019377781078219414, -0.011095342226326466, -0.012929844669997692, 0.014512952417135239, -0.01047704741358757, -0.029895594343543053, -0.008323205634951591, 0.0022557585034519434, 1.5805066141183488e-05, -0.02144329436123371, 0.012814339250326157, -0.002225183416157961, 0.01535546500235796, -0.007772854529321194, 0.010008229874074459, 0.0151108643040061, 0.002981066470965743, 0.002177622402086854, -0.034841958433389664, -0.016836656257510185, 0.011061370372772217, -0.010076174512505531, 0.03772280365228653, -0.0027806300204247236, 0.009784013032913208, 0.017624812200665474, -0.006909959018230438, 0.012304754927754402, 0.010776002891361713, -0.0021742251701653004, -0.003723360365256667, 0.008710489608347416, 0.03174368664622307, -0.005106031894683838, -0.026158645749092102, -0.025818923488259315, 0.012936639599502087, 0.008160138502717018, 0.0011652488028630614, 0.024052364751696587, -0.046827372163534164, -0.016537699848413467, 0.007018670439720154, 0.016306687146425247, -0.02721858024597168, 0.006210130173712969, -0.002257457235828042, -0.0011151396902278066, -0.01260371133685112, -0.001768256537616253, -0.02246246300637722, 0.0062305135652422905, 0.0345430001616478, 0.02749035879969597, -0.0002361072547500953, -0.011170080862939358, 0.029134616255760193, -0.019771859049797058, -0.006998287048190832, -0.0098587516695261, 0.018535269424319267, 0.0028519718907773495, 0.012005799449980259, -0.0042227525264024734, 0.0021470473147928715, 0.004018919076770544, 0.016592055559158325, 0.01460807491093874, -0.015273931436240673, 0.01969032548367977, -0.012868694961071014, 0.0002405661070952192, 0.020043637603521347, 0.011496215127408504, 0.005394795909523964, 0.01773352362215519, -0.0014777935575693846, -0.005513698793947697, -0.009804395958781242, 0.03919040784239769, -0.0020060623064637184, -0.03872838243842125, 0.0199756920337677, 0.021850962191820145, -0.01348698977380991, 0.006424155551940203, -0.06337866187095642, -0.024405676871538162, 0.016170799732208252, -0.019812626764178276, -0.0025954812299460173, -0.020804615691304207, -0.0031781054567545652, 0.011183669790625572, -0.00037709216121584177, -0.04068518802523613, -0.026022756472229958, 0.0028417801950126886, 0.035793181508779526, -0.03739666938781738, -0.0068556033074855804, -0.016401810571551323, 0.009158923290669918, 0.036309558898210526, 0.032368775457143784, -0.0197175033390522, 0.005462740547955036, -0.014268351718783379, 0.0009206484537571669, -0.004579461645334959, -0.0031305444426834583, -0.008425122126936913, 0.024595921859145164, -0.001955104060471058, 0.012311549857258797, 0.009423906914889812, -0.005615615751594305, 0.0046949670650064945, -0.009722862392663956, 0.01558647584170103, -0.02973252721130848, -0.02573738992214203, 0.014512952417135239, 0.007501076441258192, -0.026607079431414604, -0.0018531871028244495, 0.004446969833225012, 0.025424843654036522, 0.019839804619550705, 0.02474539913237095, 0.0076029933989048, -0.007113792467862368, 0.014322707429528236, -0.00998784601688385, 0.02842799201607704, -0.009885929524898529, -0.018630390986800194, 0.0011907279258593917, 0.0138538908213377, 0.0058194492012262344, -0.02921614982187748, -0.03378202021121979, 0.016850244253873825, 0.01577671989798546, 0.007609787862747908, 0.010816769674420357, 0.006308650132268667, 0.024025186896324158, -0.004198972135782242, 0.014676019549369812, 0.008927911520004272, 0.003526321379467845, -0.026158645749092102, 0.023304974660277367, -0.01061293575912714, 0.026647845283150673, -0.011795170605182648, 0.024405676871538162, -0.0007151162135414779, 0.00212666392326355, -0.028101859614253044, -0.019907748326659203, -0.021008450537919998, -0.017094844952225685, 0.0043416558764874935, 0.01943213678896427, -0.0152059867978096, -0.0036927855107933283, 0.017380211502313614, -0.012134893797338009, 0.011645693331956863, 0.0016901203198358417, 0.018861401826143265, 0.03927193954586983, -0.010042201727628708, 0.007942715659737587, -0.6157405376434326, -0.03043915145099163, -0.013140472583472729, 0.0042805057018995285, 0.004708555992692709, 0.0011779883643612266, 0.0032817209139466286, 0.018643980845808983, -0.0086017781868577, 0.01599414274096489, -0.017543278634548187, 0.011122520081698895, 0.010701264254748821, 0.006862397771328688, 0.0033156932331621647, -0.011740815825760365, -0.0027398632373660803, -0.007297242991626263, 0.0006017338018864393, 0.010871125385165215, -0.016605643555521965, 0.0020740069448947906, -0.011686460115015507, -0.007378776557743549, 0.03418968990445137, -0.0026923022232949734, -0.01600773259997368, -0.007963099516928196, -0.02247605100274086, 0.0349234901368618, -0.021878140047192574, 0.011842732317745686, 0.019323425367474556, -0.012556149624288082, 0.051311712712049484, -0.012019388377666473, -0.030873995274305344, 0.01820913515985012, 0.027599070221185684, 0.03413533419370651, -0.01558647584170103, -0.015912609174847603, 0.007562226615846157, -0.01776070147752762, -0.005201153922826052, 0.008465888909995556, 0.027300113812088966, -0.02600916661322117, 0.013833506964147091, 0.001615381333976984, 0.00913174543529749, -0.011224436573684216, -0.004239738918840885, -0.01235231664031744, 0.001384369912557304, -0.005309865344315767, 0.009831573814153671, -0.03693464770913124, 0.008275643922388554, -0.007412748411297798, -0.002537728287279606, -0.0012595218140631914, -0.00580246327444911, -0.0007503624656237662, -0.012542560696601868, 0.012549355626106262, -0.030330440029501915, 0.00405289139598608, 0.03997856378555298, -0.017149200662970543, -0.013670439831912518, -0.010096557438373566, 0.02768060378730297, -0.010776002891361713, 0.03288515284657478, 0.001468451227992773, 0.010646908544003963, -0.015939787030220032, -0.0014081504195928574, 0.0029572858475148678, 0.0003656265325844288, -0.002750054933130741, -0.01433629635721445, 0.00618295231834054, -0.0047187479212880135, -0.010918686166405678, -0.056312430649995804, 0.004599845036864281, -0.006740097887814045, -0.0037913050036877394, -0.009016240015625954, -0.008955089375376701, -0.01022565271705389, -0.009899518452584743, -0.0017062571132555604, 0.008078604936599731, -0.020043637603521347, -0.0010166200809180737, -0.0017631606897339225, -0.01558647584170103, -0.027381647378206253, 0.011720431968569756, 0.001839598291553557, 0.003679196583107114, 1.0768942956929095e-05, -0.004861431196331978, -0.023522397503256798, 0.00392719404771924, 0.03522244468331337, -0.0157223641872406, 0.01644257642328739, -0.010470252484083176, -0.008839583955705166, 0.009383140131831169, 0.0026107686571776867, -0.03342870995402336, 0.013154061511158943, 0.0057922713458538055, 0.0004161602701060474, 0.008153343573212624, 0.024514388293027878, 0.023889297619462013, 0.025044355541467667, 0.0023882503155618906, 0.006532866973429918, 0.027137046679854393, 0.005214742850512266, -0.005044881720095873, 0.015885431319475174, 0.003913605120033026, 0.003947577439248562, -0.0028995329048484564, 0.04144616425037384, -0.012318343855440617, 0.0005966379540041089, -0.008941500447690487, 0.013724795542657375, -0.013847095891833305, 0.04071236401796341, -0.010375129990279675, -0.021348172798752785, 0.005262304097414017, 0.015396230854094028, -0.0022982237860560417, -0.011387503705918789, -0.019799036905169487, -0.008499860763549805, 0.0030473123770207167, -0.020138759166002274, 0.01198541559278965, 0.01668717712163925, 0.010565374977886677, -0.011115726083517075, 0.028400814160704613, 0.014798318967223167, 0.023019608110189438, 0.011278792284429073, -0.013188034296035767, -0.030520685017108917, -0.007582610007375479, 0.014173229224979877, 0.007969893515110016, -0.010381924919784069, -0.005510301794856787, 0.0061285970732569695, -0.026090700179338455, 0.00014130340423434973, 0.021103572100400925, -0.030085839331150055, -0.036581337451934814, -0.006033474579453468, -0.0172715000808239, 0.007256476208567619, -0.0039000161923468113, 0.01922830380499363, -0.002953888615593314, -0.018643980845808983, -0.012576533481478691, 0.0039000161923468113, -0.023372920230031013, 0.000510857964400202, -0.01948649249970913, 0.0013809726806357503, 0.013024967163801193, 0.008812406100332737, 0.02518024481832981, 0.02845516987144947, -0.0011142903240397573, -0.00430088909342885, 0.014431418851017952, -0.01433629635721445, 0.007718498818576336, -0.0017461745301261544, -0.012780366465449333, 0.025153066962957382, 0.0018141190521419048, 0.016374632716178894, -0.011591337621212006, -0.00185828295070678, 0.02823774889111519, 0.03348306566476822, -0.010375129990279675, -0.004586256109178066, -0.018535269424319267, 0.03204264119267464, -0.042098432779312134, 0.0031899958848953247, -0.011244820430874825, 0.041120029985904694, 0.0013648357708007097, -0.022421695291996002, -0.03340153396129608, -0.025574322789907455, -0.00873087253421545, -0.0014760949416086078, 0.022910896688699722, -0.001982281683012843, 0.005972324404865503, -0.005391398910433054, -0.0056292046792805195, 0.003995138686150312, -0.0077049098908901215, 0.02624017931520939, -0.021810194477438927, -0.011564159765839577, -0.008493066765367985, 0.00014130340423434973, 0.011937854811549187, 0.010123735293745995, -0.0037980994675308466, -0.02619941160082817, 0.009417111985385418, 0.024351321160793304, 0.021049216389656067, 0.0028010134119540453, -0.0369890034198761, 0.027109868824481964, -0.032857976853847504, 0.023264208808541298, 0.025642266497015953, 0.0051943594589829445, 0.006108213681727648, -3.195516183041036e-05, -0.0060436660423874855, 0.0004227423924021423, 0.008710489608347416, 0.0389186292886734, 0.023889297619462013, 0.0035704851616173983, 0.007385571021586657, 0.0010871125850826502, 0.0014446706045418978, 0.012542560696601868, 0.013996574096381664, -0.0012263988610357046, -0.01849450170993805, 0.02619941160082817, 0.016795888543128967, 0.01702689938247204, 0.037342317402362823, 0.004739131312817335, 0.0009588672546669841, 0.012658067047595978, -0.008819200098514557, -0.016170799732208252, -0.02072308212518692, 0.0059179686941206455, -0.012168865650892258, -0.00810578279197216, -0.0174617450684309, -0.00730403745546937, -0.005109428893774748, -0.010599346831440926, -0.005136606749147177, 0.013874273747205734, -0.0157223641872406, 0.015518531203269958, -0.005999502260237932, 0.03372766822576523, 0.0036757993511855602, -0.01085074245929718, -0.03777715936303139, -0.012182454578578472, 0.015912609174847603, -0.020138759166002274, -0.0020145555026829243, -0.0035772796254605055, 0.0036622104234993458, 0.004063083324581385, 0.007066231686621904, 0.011584542691707611, 0.01398298516869545, 0.011149697937071323, 0.009057005867362022, 0.001155906356871128, -0.01822272315621376, 0.03503220155835152, -0.03277644142508507, -0.04025034233927727, -0.03226006403565407, 0.006196541246026754, -0.0036927855107933283, 0.0032902141101658344, -0.0012425356544554234, 0.04217996820807457, -0.01668717712163925, -0.012889077886939049, -0.005635999143123627, 0.0028078078757971525, -0.008078604936599731, 0.0034957462921738625, -0.023875709623098373, -0.026335300877690315, -0.016374632716178894, 0.01011014636605978, 0.028074681758880615, 0.009763629175722599, -0.0033615557476878166, 0.012100921012461185, 0.009315195493400097, -0.008914322592318058, 0.0006412265356630087, -0.023875709623098373, 0.0174617450684309, 0.012338727712631226, 0.04870264232158661, 0.005354029126465321, 0.013024967163801193, -0.010212063789367676, -0.006485305726528168, -0.013262772932648659, 0.004436777904629707, 0.0015975458081811666, -0.01793735660612583, -0.005275893025100231, 0.003923796582967043, 0.016374632716178894, -0.0057922713458538055, 0.021157927811145782, 0.00392719404771924, -0.024813342839479446, -0.021416116505861282, 0.013799535110592842, -0.024269787594676018, 0.0007422940107062459, -0.012549355626106262, 0.028020326048135757, 0.02319626323878765, -0.01644257642328739, -0.024541566148400307, 0.007100203540176153, 0.016062088310718536, 0.021144337952136993, -0.02545202150940895, 0.005727724172174931, -0.007385571021586657, -0.02121228352189064, 0.029841238632798195, -0.005167181603610516, -0.00031190787558443844, 0.0064275530166924, 0.03644544631242752, 0.01718996651470661, 0.004993923008441925, -0.0030014498624950647, 0.020845383405685425, 0.003723360365256667, 0.009838368743658066, 0.009709273464977741, -0.019119592383503914, 0.006094624754041433, 0.02224504016339779, -0.015015741810202599, -0.017883000895380974, 0.01975827105343342, -0.0038014966994524, -0.025329722091555595, 0.003723360365256667, 0.004858034197241068, 0.015654420480132103, 0.0004700912395492196, 0.007195326033979654, -0.00425672484561801, 0.0006552400882355869, 0.0029878609348088503, -0.01532828714698553, 0.020043637603521347, -0.0009113060659728944, -0.021117160096764565, -0.0324774868786335, -0.025832511484622955, -0.016306687146425247, -0.03117295168340206, -0.003116955514997244, -0.0005210496601648629, -0.011815554462373257, -0.024541566148400307, -0.005469535011798143, 0.023304974660277367, 0.027313701808452606, 0.020519249141216278, -0.012005799449980259, -0.007521459832787514, 0.01436347421258688, -0.008194110356271267, -0.018358612433075905, -0.02269347384572029, -0.031281664967536926, 0.01235911063849926, 0.012331932783126831, -0.006906562019139528, -0.012467822059988976, -0.012019388377666473, 0.0018192149000242352, 0.0033530627842992544, 0.01348698977380991, 0.013065733946859837, 0.01872551254928112, -0.018847813829779625, -0.011204053647816181, 0.008649338968098164, 0.017923768609762192, 0.006186349783092737, -0.011095342226326466, 0.021089984104037285, -0.01967673748731613, 0.0007580061792396009, -0.004232944454997778, 0.0028604648541659117, 0.003940782975405455, 0.015912609174847603, 0.023821353912353516, 0.001612833351828158, 0.01573595404624939, 0.027381647378206253, -0.015287520363926888, 0.018589625135064125, -0.0012866995530202985, -0.007582610007375479, 0.01823631301522255, 0.005197756923735142, 0.005095839966088533, -0.005034689791500568, -0.004076671786606312, 0.024378499016165733, -0.0006556647713296115, 0.04038622975349426, 0.012494999915361404, -0.003828674554824829, 0.01845373585820198, -0.012393082492053509, -0.026783734560012817, -0.003910208120942116, 0.020641548559069633, 0.009070594795048237, 0.026308123022317886, -0.013772357255220413, -0.01849450170993805, -0.046800196170806885, -0.0020060623064637184, 0.003220570972189307, 0.02970534935593605, -0.0019449122482910752, -0.0016595452325418591, -0.011299176141619682, -0.022068385034799576, 0.020315416157245636, 0.007005081512033939, 0.02447362057864666, -0.02647119015455246, 0.002225183416157961, -0.01670076698064804, 0.011761198751628399, 0.016075676307082176, 0.003142434637993574, -0.0062882667407393456, -0.011401092633605003, 0.006971109192818403, -0.011965032666921616, -0.024623099714517593, -0.00021264515817165375, -0.001980583183467388, 0.01361608412116766, 0.007100203540176153, 0.016401810571551323, 0.005360823590308428, -0.018168367445468903, 0.009077389724552631, -0.00104464718606323, 0.021660717204213142, -0.02450079843401909, 0.012719216756522655, -0.02246246300637722, -0.0012850009370595217, 0.0044707502238452435, 0.0015117658767849207, -0.01323559507727623, -0.0007388967787846923, 0.0016671889461576939, 0.02323703095316887, -0.011883499100804329, -0.005809257738292217, 0.0025037559680640697, -0.04723503813147545, -0.0014387255068868399, 0.007100203540176153, -0.000613624055404216, 0.005642793606966734, 0.004229546990245581, -0.008153343573212624, 0.004144616425037384, 0.0026566311717033386, 0.02720499038696289, -0.0032460500951856375, 0.029297683387994766, -0.011693254113197327, 0.030357617884874344, -0.003981549758464098, 0.004243135917931795, -0.012121304869651794, 0.004936170298606157, -0.006818233989179134, 0.019608791917562485, 0.019880570471286774, 0.0010234145447611809, 0.0062305135652422905, -0.012923050671815872, 0.003446486545726657, 0.0003991741396021098, 0.01235231664031744, -0.01725791208446026, -0.025642266497015953, -0.003743743756785989, -0.0152059867978096, -0.0519368015229702, -0.01248820498585701, -0.010313980281352997, -0.024623099714517593, 0.0033258849289268255, 0.005962132941931486, -0.023359330371022224, 0.014186818152666092, -0.019799036905169487, -0.011951443739235401, -0.015124453231692314, -0.024324143305420876, 0.03163497522473335, -0.00011019754310837016, 0.00862895604223013, 0.02498999983072281, 0.002510550431907177, -0.03465171158313751, -0.08474042266607285, -0.02568303421139717, -0.0017631606897339225, 0.01674153283238411, 0.05538838356733322, -0.008391150273382664, -0.011829143390059471, 0.012447438202798367, 0.008065016008913517, 0.011339942924678326, -0.02769419178366661, 0.0302217286080122, 0.03266773000359535, -0.011469037272036076, -0.009274428710341454, -0.0023474835325032473, -0.009491851553320885, 0.0314447283744812, -0.01750251092016697, -0.00848627183586359, -0.02568303421139717, 0.01892934739589691, -0.03590189293026924, -0.0006645824760198593, -0.016551287844777107, 0.01072844211012125, 0.0031560235656797886, -0.019024468958377838, 0.011346736922860146, -0.02046489343047142, -0.011740815825760365, 0.00383886625058949, -0.027123458683490753, 0.040576476603746414, 0.0039068106561899185, -0.02168789505958557, -0.009084183722734451, 0.005347234662622213, -0.017420979216694832, -0.009654917754232883, -0.02744959108531475, 0.04071236401796341, -0.024881288409233093, -0.020845383405685425, -0.008561011403799057, 0.006444538943469524, 0.03168933093547821, -0.00430428609251976, 0.003446486545726657, 0.003607854712754488, -0.015301109291613102, -0.004542091861367226, 0.01674153283238411, 0.013031761161983013, 0.013188034296035767, -0.00826205499470234, -0.006250896956771612, -0.02224504016339779, -0.021130749955773354, -0.025057943537831306, 0.012196043506264687, -0.03049350716173649, -0.019826214760541916, 0.004837650805711746, -0.006342621985822916, 0.020138759166002274, -0.002891039941459894, -0.003947577439248562, 0.0058534215204417706, 0.03242313116788864, -0.025642266497015953, 0.004297491628676653, 0.006760481279343367, -0.009614151902496815, 0.00911136157810688, 0.003008244326338172, 0.014050929807126522, -0.026036344468593597, 0.02096768282353878, -0.013058939017355442, -0.025356899946928024, -0.013575317338109016, 0.00284008146263659, 0.004725542385131121, -0.009553001262247562, 0.022598352283239365, 0.01644257642328739, -0.005707340780645609, 0.016646411269903183, 0.006373197305947542, -0.03416251018643379, 0.011251614429056644, -0.00393059104681015, -0.009919902309775352, 0.03413533419370651, -0.022367339581251144, 0.045577194541692734, 0.016619233414530754, 0.01748892292380333, -0.009260839782655239, -0.025818923488259315, -0.02569662220776081, -0.0026566311717033386, 0.013079322874546051, -0.019853392615914345, -0.023549575358629227, 0.008418328128755093, -0.004372230730950832, -0.0055680545046925545, 0.005153592675924301, 0.0024035379756242037, 0.011183669790625572, -0.0009096074500121176, 0.014173229224979877, 0.002322004409506917, -0.005218140315264463, -0.004650803282856941, -0.017420979216694832, 0.014227584935724735, -0.004161602817475796, -0.03152626380324364, -0.027272935956716537, -0.020587192848324776, -0.004824061878025532, 0.011971826665103436, -0.017380211502313614, -0.029895594343543053, 0.019785448908805847, -0.008316410705447197, -0.010585757903754711, -0.00405289139598608, 0.018766280263662338, 0.017149200662970543, -0.017339445650577545, 0.004436777904629707, 0.017325855791568756, -0.008900733664631844, 0.0262265894562006, -0.016918187960982323, -0.004990526009351015, -0.007664143573492765, -0.0020841986406594515, 0.008825995028018951, 0.019812626764178276, -0.018086835741996765, -0.019024468958377838, 0.011958237737417221, 0.00393059104681015, 0.0078611820936203, 0.03239595517516136, 0.0038524549454450607, -0.014091696590185165, -0.01448577456176281, -0.018345024436712265, -0.018603213131427765, 0.03155343979597092, -0.008499860763549805, -0.029270505532622337, 0.014879852533340454, 0.011638898402452469, 0.002553015947341919, -0.01569518633186817, 0.015396230854094028, 0.005710738245397806, -0.016823066398501396, 0.02724575810134411, -0.01626592129468918, -0.035793181508779526, 0.00425672484561801, -0.0021028832998126745, 0.009559796191751957, 0.003373446175828576, -0.0075758155435323715, 0.019894160330295563, -0.01894293539226055, -0.008180521428585052, -0.007535048760473728, 0.01622515544295311, -0.04892006516456604, -0.010701264254748821, 0.013969396241009235, -0.003652018727734685, 0.012658067047595978, 0.012467822059988976, -0.007745676673948765, -0.018331434577703476, 0.0038524549454450607, 0.004742528311908245, -0.022571174427866936, -0.028862837702035904, 0.017842235043644905, 0.004871623124927282, -0.031037062406539917, -0.011931059882044792, -0.0006297609070315957, -0.0214568842202425, -0.011971826665103436, -0.03720642626285553, -0.014784730039536953, -0.041120029985904694, 0.01460807491093874, -0.006702728103846312, 0.006594017148017883, -0.011088548228144646, -0.012868694961071014, -0.01872551254928112, -0.028618237003684044, 0.005262304097414017, 0.3170020282268524, -0.026416834443807602, -0.0013461511116474867, 0.010001434944570065, -0.01718996651470661, 0.009614151902496815, 0.013147267512977123, 0.0047798980958759785, 0.0029165190644562244, 0.012841517105698586, 0.0002242169575765729, -0.019771859049797058, -0.00925404578447342, 0.0011610022047534585, 0.0058194492012262344, -0.02523460052907467, -0.01924189180135727, -0.008160138502717018, -0.02799314819276333, -0.026892445981502533, 0.018127601593732834, 0.004715350456535816, 0.01875269040465355, -0.005364221055060625, 0.0039679608307778835, 0.0037131686694920063, -0.0064139640890061855, 0.018073245882987976, 0.020030047744512558, 0.027028335258364677, -0.019826214760541916, 0.007698115427047014, -0.018168367445468903, 0.007915537804365158, -0.014010163024067879, -0.0011457146611064672, 0.021320994943380356, 0.015287520363926888, 0.008561011403799057, 0.00755543215200305, 1.9281915228930302e-05, -0.016333865001797676, 0.009321990422904491, -0.003614649176597595, -0.015301109291613102, 0.016605643555521965, -0.0035704851616173983, -0.011999004520475864, -0.021089984104037285, 0.022829363122582436, -0.035820357501506805, -0.011910676956176758, 0.008554216474294662, 0.010212063789367676, 0.013432634063065052, -0.00835717748850584, 0.02023388259112835, 0.006274677813053131, -0.020845383405685425, 0.025153066962957382, 0.009539412334561348, 0.023563163354992867, -0.02823774889111519, 0.020532837137579918, -0.002953888615593314, 0.008717283606529236, -0.014512952417135239, -0.005218140315264463, 0.00998105201870203, -0.0500071756541729, 0.006505689118057489, 0.010096557438373566, -0.006274677813053131, -0.007664143573492765, -0.02594122290611267, -0.022924484685063362, 0.042016901075839996, 0.02399800904095173, 0.010551786050200462, 0.007664143573492765, -0.022408107295632362, -0.00705264275893569, 0.0095054404810071, -0.002128362422809005, -0.016062088310718536, -0.02246246300637722, 0.007256476208567619, 0.007752471137791872, -0.03168933093547821, 0.008452299982309341, 0.004976937081664801, -0.02470463328063488, 0.0001168858289020136, 0.002019651234149933, 0.0004178588860668242, -0.005737915635108948, -0.014050929807126522, 0.010565374977886677, -0.010918686166405678, 0.003740346524864435, -0.012617300264537334, 0.021388938650488853, 0.024324143305420876, 0.009118156507611275, -0.03049350716173649, -0.03198828548192978, -7.702149741817266e-05, 0.011333147995173931, 0.004328066948801279, -0.01844014599919319, -0.029515106230974197, -0.029786882922053337, 0.00862895604223013, -0.015627242624759674, -0.011074959300458431, 0.014404240995645523, -0.01570877619087696, 0.0006904863403178751, 0.007867977023124695, 0.007915537804365158, 0.049762576818466187, -0.02572380006313324, 0.007154559250921011, 0.00041467396658845246, -0.005707340780645609, -0.021416116505861282, -0.0015448888298124075, -0.013344306498765945, 0.0239708311855793, -0.042016901075839996, 0.049300555139780045, -0.001634065993130207, 0.03046632930636406, 0.009750040248036385, -0.014676019549369812, 0.00785438809543848, 0.004209164064377546, 0.013915040530264378, -0.0007732937228865921, 0.0025920839980244637, 0.02698756940662861, 0.008404739201068878, 0.024378499016165733, 0.001990774879232049, 0.0038456604816019535, -0.003893221728503704, -0.007310831919312477, 0.012277577072381973, 0.013154061511158943, -0.011808759532868862, -0.032613374292850494, -0.0007172394543886185, 0.009036622941493988, 0.006580428220331669, 0.020899739116430283, -0.0023967435117810965, -0.011333147995173931, -0.05044202134013176, 0.0007095957407727838, 0.02470463328063488, -0.028074681758880615, -0.014200407080352306, 0.013507373631000519, -0.03269490972161293, -0.016116444021463394, -0.004192177671939135, -0.1758948117494583, 0.003679196583107114, 0.011720431968569756, -0.014091696590185165, 0.017869412899017334, -0.0059145716950297356, 0.031308840960264206, -0.0032290639355778694, -0.0067265089601278305, 0.011170080862939358, 0.038103293627500534, -0.017774289473891258, -0.03913605213165283, -0.031336020678281784, 0.0009164019138552248, 6.0831589507870376e-05, -0.02845516987144947, -0.011278792284429073, 0.04177229851484299, 0.021388938650488853, 0.024623099714517593, -0.030602218583226204, -0.010490636341273785, 0.011428270488977432, -0.005571451969444752, 0.023916475474834442, 0.006359608378261328, 0.014322707429528236, 0.001980583183467388, -0.005768490955233574, -0.00923366192728281, -0.010803180746734142, 0.029025904834270477, 0.012624094262719154, 0.013942218385636806, 0.0024697838816791773, -0.004762911703437567, -0.011543775908648968, -0.02698756940662861, 0.004980334080755711, 0.022530406713485718, 0.019418546929955482, 0.00400193314999342, 0.021348172798752785, 0.009396729059517384, 0.0167551226913929, 0.0062305135652422905, -0.0242290198802948, 0.0001319610164500773, 0.011747609823942184, 0.015219575725495815, -0.0380217619240284, -0.006016488652676344, 0.0022455668076872826, 0.011455448344349861, 0.00025925086811184883, 0.01625233329832554, 0.015178808942437172, 0.0077049098908901215, 0.01621156558394432, -0.019119592383503914, -0.01672794483602047, 0.009512234479188919, -0.005968927405774593, -0.004100452642887831, -0.019663147628307343, -0.0302217286080122, 0.01826349087059498, -0.02467745542526245, 0.00693034240975976, -0.002099486067891121, -0.012685243971645832, 0.001300288480706513, -0.029379216954112053, 0.009417111985385418, 0.0014302324270829558, -0.010157708078622818, 0.006281472276896238, 0.013405456207692623, -0.005496712867170572, -0.0024765783455222845, 0.04125592112541199, -0.025642266497015953, 0.005048278719186783, 0.009811190888285637, 0.01774711161851883, 0.013133678585290909, -0.007684526965022087, -0.005748107563704252, -0.02295166254043579, 0.024038776755332947, -0.038538139313459396, -0.001178837614133954, -0.017108432948589325, -0.010266418568789959, -0.0031033665873110294, -0.007956304587423801, 0.0060402690432965755, -0.022543996572494507, 0.00875805038958788, -0.014798318967223167, -0.012474616058170795, -0.0039713578298687935, 0.006991492584347725, 0.03467889130115509, -0.00543216522783041, 0.01899729110300541, 0.03519526869058609, 0.05163784697651863, -0.02700115740299225, -0.004188780672848225, 0.003303803037852049, 0.0025496187154203653, 0.008581394329667091, -0.00838435534387827, -0.022761419415473938, -0.020913327112793922, 0.0012654669117182493, 0.024038776755332947, 0.009967463091015816, -0.010776002891361713, -0.0037097714375704527, 0.02519383281469345, 0.01570877619087696, -0.01508368644863367, -0.024799754843115807, -0.05587758496403694, 0.02043771557509899, 0.0128551060333848, 0.03799458220601082, -0.00018037149857264012, 0.03418968990445137, 0.021606361493468285, 0.03174368664622307, -0.011441859416663647, 0.0031832014210522175, -0.011679665185511112, -0.01600773259997368, -0.02144329436123371, -0.006736700423061848, 0.018643980845808983, 0.0047561172395944595, -0.012005799449980259, -0.002891039941459894, -0.016659999266266823, 0.045305415987968445, -0.002828191267326474, 0.0024069352075457573, -0.005187564995139837, -0.021769428625702858, 0.0024833728093653917, 0.01672794483602047, -0.027313701808452606, 0.010653702542185783, 0.028346458449959755, 0.008180521428585052, 0.01973109319806099, 0.01573595404624939, -0.010572168976068497, -0.006607606075704098, 0.005449151620268822, -0.01873910240828991, -0.030004305765032768, 0.0023152099456638098, 0.018154779449105263, -0.014091696590185165, -0.002213293220847845, 0.007066231686621904, 0.005595232360064983, -0.004606639500707388, -0.007535048760473728, 0.0028349857311695814, 0.00692694541066885, 0.010150913149118423, 0.008907528594136238, -0.017611222341656685, -0.012386288493871689, -0.010273213498294353, -0.016143621876835823, 0.008268849924206734, 0.02474539913237095, 0.010347952134907246, 0.007609787862747908, -0.009913107380270958, -0.03272208571434021, -0.001111742458306253, -0.018807046115398407, 0.008472682908177376, 0.0002830314333550632, 0.003373446175828576, 0.02446003258228302, 0.0030048470944166183, -0.011414681561291218, -0.003954371903091669, 0.02768060378730297, 0.002705891150981188, 0.002418825402855873, 0.026416834443807602, -0.0075146653689444065, 0.021647129207849503, -0.03845660760998726, 0.004202369600534439, -0.012698832899332047, -0.012379493564367294, 0.0349234901368618, -0.030330440029501915, -0.009539412334561348, -0.031879574060440063, 0.010062585584819317, -0.010273213498294353, 0.002429017098620534, 0.027639836072921753, 0.004212561063468456, -0.0014981769490987062, 0.009165717288851738, -0.02696039155125618, -0.005150195676833391, -0.0011015507625415921, 0.023916475474834442, -0.003811688395217061, 0.0015346971340477467, 0.010449869558215141, -0.007208914961665869, 0.011666076257824898, 0.02224504016339779, 0.02024747058749199, -0.008329999633133411, -0.002118170727044344, -0.10050355643033981, 0.019635969772934914, -0.008792022243142128, -0.011645693331956863, -0.0050075119361281395, 0.010973041877150536, 0.0019788844510912895, 0.004790089558809996, -0.012970611453056335, -0.005863613449037075, -0.047017619013786316, 0.016075676307082176, -0.012535766698420048, -0.022598352283239365, -0.03565729036927223, -0.00788156595081091, 0.02319626323878765, -0.001786941196769476, 0.01795094646513462, 0.015450586564838886, 0.007365187630057335, 0.028129037469625473, 0.005826243665069342, 0.01047704741358757, -0.034298401325941086, 0.01651052199304104, 0.013527756556868553, 0.020560014992952347, -0.00788835994899273, -0.002687206258997321, 0.0072632706724107265, -0.028292104601860046, -0.012698832899332047, 0.010843947529792786, 0.0021096777636557817, -0.015912609174847603, 0.004722144920378923, 0.012753188610076904, 0.0007074724417179823, 0.02373982034623623, -0.00826205499470234, -0.01668717712163925, 0.01558647584170103, -0.0006577880121767521, -0.010375129990279675, 0.013996574096381664, -0.02344086393713951, 0.02168789505958557, 0.027830081060528755, 0.0047561172395944595, 0.009682095609605312, 0.02270706370472908, 0.009057005867362022, -0.023114729672670364, 0.003205283312126994, -0.03894580528140068, 0.02072308212518692, 0.004137821961194277, 0.01386068481951952, -0.03489631414413452, 0.02493564411997795, 0.0037573326844722033, 0.024555154144763947, -0.015192397870123386, -0.0167551226913929, -0.021592773497104645, -0.0021810196340084076, -0.004185383208096027, 0.017339445650577545, -0.02319626323878765, -0.022014029324054718, 0.009023034013807774, 0.0008824296528473496, 0.024650277569890022, -0.0037641271483153105, 0.005099237430840731, -0.0008153343806043267, 0.01023244671523571, -0.026919623836874962, 0.009906313382089138, 0.025356899946928024, -0.0035229241475462914, -0.029759705066680908, 0.018385790288448334, 0.0389186292886734, -0.024582332000136375, -0.023169085383415222, 0.003198488848283887, -0.008153343573212624, 0.009553001262247562, -0.0066042086109519005, 0.019785448908805847, 0.010952658951282501, 0.004939567763358355, -0.008017455227673054, 0.034080978482961655, 0.0018090232042595744, -0.009953874163329601, 0.01048384141176939, 0.010035407729446888, -0.00693373940885067, 0.004644008819013834, -0.009457878768444061, -0.010375129990279675, -0.0304119735956192, 0.0075146653689444065, -0.024378499016165733, -0.03405379876494408, 0.006373197305947542, 0.0037369492929428816, -0.014771142043173313, 0.019051646813750267, 0.004508120007812977, 0.024392087012529373, -0.029868416488170624, 0.008676516823470592, -0.005391398910433054, -0.013493784703314304, -0.024378499016165733, 0.024052364751696587, 0.0011864814441651106, 0.010157708078622818, 0.023780586197972298, -0.01035474706441164, 0.027041925117373466, -0.0015559297753497958, 0.003998535685241222, -0.03212417662143707, 0.009811190888285637, 0.02023388259112835, 0.004266916774213314, 0.010762413963675499, -0.0020909931045025587, -0.024867698550224304, -0.013534551486372948, 0.005418576765805483, -0.004025713540613651, 0.022883718833327293, -0.003641827031970024, 0.04574026167392731, -0.001227248110808432, -0.013894656673073769, 0.007242887280881405, 0.010524608194828033, 0.013351100496947765, -0.008058222010731697, -0.011645693331956863, -0.005323454272001982, 0.0005771038704551756, 0.0013385072816163301, -0.006560044828802347, -0.004725542385131121, -0.02320985309779644, -0.014920619316399097, 0.002196307061240077, -0.010939070023596287, 0.027368057519197464, 0.0019788844510912895, 0.008268849924206734, 0.03663569316267967, -0.003330980660393834, 0.026620667427778244, 0.006831822916865349, -0.02297884039580822, -0.01671435497701168, 0.012821133248507977, -0.016320277005434036, 4.652608186006546e-05, -0.025397665798664093, 0.02320985309779644, 0.014132463373243809, -0.0199756920337677, -0.015151631087064743, -0.0006522675394080579, -0.006295061204582453, -0.011081753298640251, 0.003448185045272112, 0.015681598335504532, -0.006563441827893257, -0.0234544537961483, -0.005608821287751198, -0.030520685017108917, -0.0028893412090837955, 0.009716068394482136, -0.006030077114701271, -0.010619730688631535, 0.009457878768444061, 0.0031203527469187975], "cd26aa1c-a6d6-43dc-9074-a568ef49975e": [-0.02561522088944912, 0.0021061100997030735, 0.005614013876765966, -0.0072824908420443535, -0.025601545348763466, -0.0038839951157569885, -0.001241955324076116, -0.015098347328603268, 0.013484574854373932, -0.042806003242731094, -0.021662846207618713, 0.01373074296861887, -0.0068482765927910805, 0.000858598854392767, -0.0008470596512779593, -0.008424440398812294, 0.006068742368370295, -0.014551306143403053, 0.015358191914856434, -0.018052371218800545, 0.046307068318128586, 0.007952616550028324, -0.02303045056760311, -0.027639275416731834, -0.018052371218800545, 0.0269144456833601, 0.012622984126210213, -0.014975262805819511, -0.006547403987497091, -0.0036344074178487062, 0.02722899429500103, -0.005528538953512907, -0.0037198825739324093, -0.02655886858701706, -0.018722496926784515, -0.013703390955924988, -0.012705040164291859, 0.0006115753785707057, 0.01494791079312563, 0.020855959504842758, 0.020267890766263008, 0.00499859219416976, -0.002471944084390998, 0.006502956617623568, -0.004212220199406147, 0.022729577496647835, 0.004755842499434948, -0.008301355876028538, -0.019775552675127983, 0.03241221234202385, -0.015768473967909813, 0.03990668058395386, -0.033260125666856766, -0.014606010168790817, 0.01163147110491991, -0.006588432006537914, -0.00041476861224509776, 0.007132054306566715, -0.03555770218372345, -0.0035113231278955936, 0.020527735352516174, -0.012075942941009998, -0.03052491880953312, -0.0034275574143975973, 0.01180925965309143, 0.003210450289770961, -0.017259161919355392, 0.025765657424926758, 0.012267407029867172, 0.01779252663254738, 0.02636740356683731, 0.01611037366092205, -0.00899883359670639, -0.0038703191094100475, 0.03454567492008209, -0.018996018916368484, 0.007261976599693298, 0.005371264182031155, -0.007008970249444246, 0.012130646966397762, -0.008903101086616516, -0.005761031527072191, 0.0028839348815381527, -0.007856884971261024, 0.026312699541449547, 0.03197458013892174, -0.013450384140014648, 0.016014641150832176, -0.018886610865592957, -0.015577008947730064, -0.018284864723682404, 0.015959937125444412, 0.017970316112041473, 0.008246651850640774, -0.011398978531360626, 0.00697478000074625, -0.034600380808115005, 0.03405333682894707, -0.01253409031778574, -0.011891315691173077, 0.014332489110529423, 0.010427979752421379, -0.018216483294963837, -0.007959455251693726, -0.030196694657206535, -0.028418809175491333, 0.030114637687802315, -0.01732754148542881, -0.008903101086616516, -0.004810546990483999, -0.023440731689333916, 0.03905876725912094, 0.0005953350919298828, -0.02082860842347145, -0.02400144934654236, 0.022127831354737282, 0.029184667393565178, -0.013156349770724773, -0.013375166803598404, -0.025136560201644897, 0.010359599255025387, 0.016671091318130493, 0.016041994094848633, -0.0004004515358246863, -0.008171433582901955, 0.005726841278374195, -0.04187603294849396, -0.015098347328603268, 0.008267166092991829, -0.02742045931518078, 0.035858575254678726, 0.001288966741412878, 0.02345440723001957, 0.011460521258413792, -0.003873737994581461, 0.018954990431666374, 0.00010358531289966777, 0.007036322262138128, 0.0023386026732623577, 0.0034104622900485992, 0.03320542350411415, 0.022346647456288338, -0.009395439177751541, -0.017231808975338936, 0.0023180886637419462, -0.011043401435017586, 0.0047797756269574165, 0.023317646235227585, 0.002353988355025649, -0.0017966896994039416, 0.02349543571472168, -0.008397088386118412, 0.009586903266608715, 0.008171433582901955, -0.007097864523530006, 0.009409114718437195, 0.013778609223663807, 0.013142673298716545, 0.013464060612022877, -0.014496601186692715, 0.011857125908136368, 0.021854311227798462, -0.005019106436520815, -0.010414304211735725, 0.0025369052309542894, 0.02263384498655796, -0.006058485247194767, -0.0031044608913362026, -0.018161779269576073, 0.00443103676661849, -0.0023762118071317673, 0.006790153682231903, -0.016753148287534714, -0.0026309280656278133, 0.006037971470504999, 0.03347894549369812, 0.018804553896188736, -0.006626041140407324, 0.0022941555362194777, 0.016876231878995895, 0.016944613307714462, -0.023167209699749947, 0.007699610199779272, -0.007330357097089291, 0.013217891566455364, -0.020062750205397606, 0.022811632603406906, -0.006205502897500992, 0.009265516884624958, 0.018093399703502655, 0.041711919009685516, 0.02290736511349678, 0.02177225425839424, -0.007726962212473154, -0.5807393193244934, -0.022305620834231377, 0.010756204836070538, -0.015823177993297577, 0.03358835354447365, 0.01890028640627861, 0.01009975466877222, 0.035612404346466064, -0.02062346786260605, 0.014359841123223305, -0.014920558780431747, 0.012841801159083843, 0.004629339091479778, 0.004790032748132944, -0.016493303701281548, -0.02981376461684704, 0.027256345376372337, -0.027529867365956306, 0.011248541995882988, 0.012739230878651142, -0.008718474768102169, 0.027160614728927612, -0.02404247783124447, -0.0028326495084911585, 0.0063867103308439255, 0.0014197438722476363, -0.025492137297987938, 0.013566630892455578, 0.005774707533419132, 0.04545915499329567, -0.009539037011563778, 0.002206970937550068, 0.030360806733369827, 0.001144513487815857, 0.05289892107248306, -0.014099996536970139, -0.012465709820389748, 0.012472547590732574, 0.002036020392552018, 0.0448027029633522, -0.0028976108878850937, -0.01756003499031067, 0.033178072422742844, -0.006184988655149937, 0.009395439177751541, 0.0022770604118704796, 0.005149028729647398, -0.0005919160903431475, 0.02683238871395588, -0.022538112476468086, -0.02676400914788246, -0.016000965610146523, -0.0035249991342425346, -0.010031375102698803, 0.01224005501717329, 0.015809500589966774, 0.021854311227798462, -0.01408632006496191, 0.013703390955924988, -0.02494509518146515, -0.008909939788281918, 0.008205623365938663, 0.0033950768411159515, 0.0032737019937485456, -0.023755280300974846, -0.008827883750200272, -9.156535816146061e-05, -0.00377116771414876, -0.010045050643384457, -0.025793010368943214, -0.0121785132214427, 0.009395439177751541, -0.0036207314115017653, 0.013723905198276043, 0.02361851930618286, 0.023563815280795097, 0.02361851930618286, -0.01567274145781994, -0.0024155303835868835, 0.007603877689689398, 0.01678049936890602, -0.0003164720837958157, -0.0072961668483912945, -0.010222839191555977, 0.008103053085505962, -0.01135795097798109, -0.014674389734864235, -0.00451993104070425, 0.00482422299683094, -0.007945778779685497, 0.030278751626610756, 0.004495997913181782, 0.02836410515010357, 0.00307027087546885, 0.013901693746447563, 0.01877720095217228, -0.038292910903692245, -0.006814086344093084, 0.014496601186692715, -0.024534814059734344, -0.03818350285291672, 0.019625116139650345, 0.007993645034730434, -0.0090398620814085, 0.02443908154964447, 0.024015124887228012, -0.04018020257353783, 0.018366919830441475, -0.0002184960903832689, -0.019310567528009415, 0.00028164093964733183, -0.00416435394436121, -0.012917019426822662, 0.00014723111235070974, 0.010906641371548176, -0.03678854554891586, 0.027598246932029724, 0.012917019426822662, 0.014004264026880264, 0.022962069138884544, 0.02773500792682171, 0.01621978171169758, 0.011877640150487423, 0.01720445789396763, -0.019160130992531776, 0.0224013514816761, 0.024767307564616203, -0.0008705653599463403, -0.03845702111721039, 0.017313865944743156, -0.019515708088874817, -0.010653634555637836, 0.01284863892942667, -0.018681470304727554, 0.002247998956590891, -0.011084429919719696, 0.00495072640478611, -0.010769881308078766, 0.038566429167985916, 0.007617553696036339, -0.027666626498103142, -0.012903342954814434, 0.014934235252439976, -0.00026198162231594324, -0.02561522088944912, -0.0007773973629809916, -0.0036241502966731787, 8.702448394615203e-05, -0.014824826270341873, -0.015194079838693142, 0.008499658666551113, 0.021266240626573563, -0.016725795343518257, 0.03413539379835129, 0.015727445483207703, -0.00394895626232028, -0.00041583707206882536, 0.024015124887228012, 0.015043643303215504, -0.0014231628738343716, 0.00978520605713129, -0.023550139740109444, -0.009053537622094154, -0.008595390245318413, -0.020459353923797607, -0.0245621670037508, -0.004673786461353302, 0.019857609644532204, -0.01720445789396763, -0.04250513017177582, -0.03941434621810913, 0.013040103018283844, 0.007767990231513977, -0.02412453293800354, 0.0310446098446846, 0.005822573788464069, -0.011050240136682987, 0.0014086320297792554, 0.02286633662879467, -0.011693013831973076, -0.02345440723001957, -0.000540630950126797, -0.010181811638176441, -0.0009932223474606872, -0.0073235188610851765, 0.004383170511573553, 0.015549656935036182, 0.021115804091095924, -0.0227842815220356, -0.014715418219566345, 0.0008171433582901955, 0.021676521748304367, -0.0014624814502894878, -0.003263444872573018, 0.020049072802066803, 0.03375246375799179, 0.01567274145781994, 0.0012308434816077352, -0.009162946604192257, 0.011679337359964848, 0.02452113851904869, 0.03979727253317833, -0.0014402578817680478, -0.03394392877817154, 0.009019347839057446, -0.05749407038092613, 0.02494509518146515, -0.00990145280957222, 0.007084188517183065, -0.016835203394293785, 0.008882587775588036, -0.016178755089640617, 0.010051888413727283, 0.006954265758395195, 0.020760226994752884, -0.0007765425834804773, -0.03717147558927536, 0.013197378255426884, 0.007658582180738449, 0.020678171887993813, 0.007514983415603638, 0.0030634328722953796, 0.033615704625844955, -0.0012727264547720551, -0.0072004348039627075, -0.02479465864598751, 0.03618679940700531, 0.01701299287378788, -0.00990145280957222, -0.02353646419942379, -0.006161055527627468, -0.0003109161916654557, 0.004885764792561531, -0.0014488054439425468, -0.0026001569349318743, -0.02047303132712841, 0.036597080528736115, -0.0025950283743441105, -0.0020838864147663116, 0.00789791252464056, -0.019269539043307304, 0.0017351474380120635, -0.011932344175875187, -0.038757894188165665, 0.023645872250199318, -0.005743936635553837, 0.028555570170283318, 0.014058968052268028, -0.01661638729274273, 0.018025020137429237, -0.024233940988779068, -0.005867020692676306, -0.007767990231513977, 0.0027198223397135735, -0.005764450412243605, -0.014688066206872463, -0.00504987733438611, 0.01579582504928112, -0.0009453562088310719, 0.01732754148542881, 0.014387193135917187, 0.028117936104536057, -0.0049131172709167, 0.0009445014293305576, 0.029376132413744926, -0.02110212855041027, -0.03725353255867958, -0.043790675699710846, 0.027707654982805252, -0.0017001025844365358, -0.044228311628103256, 0.005367845296859741, -0.0032856683246791363, 0.011405816301703453, 0.004366075620055199, -0.012616146355867386, 0.01764209009706974, 0.004896021913737059, 0.028911147266626358, -0.03328748047351837, 0.034436266869306564, -0.016041994094848633, 0.004489159677177668, 0.008615904487669468, 0.009203974157571793, -0.013546116650104523, 0.0006859388668090105, 0.00487208878621459, -0.04463859274983406, 0.01858573779463768, -0.005429387558251619, 0.005839668679982424, -0.011323760263621807, 0.02400144934654236, 0.00041412757127545774, 0.015823177993297577, 0.009887776337563992, -0.01399058848619461, -0.01992598921060562, -0.016137726604938507, 0.008950967341661453, 0.026668276637792587, 0.011645147576928139, 0.003918185364454985, 0.04824906587600708, 0.022018423303961754, -0.002812135498970747, 0.014346165582537651, 0.005337074398994446, -0.01100237388163805, -0.00010000603651860729, -0.016630062833428383, -0.026668276637792587, -0.022073127329349518, -0.004054945427924395, 0.01210329495370388, 0.02093801647424698, -0.02676400914788246, 0.038839951157569885, -0.0068072485737502575, -0.022524436935782433, -0.031536947935819626, -0.03005993366241455, -0.019734524190425873, 0.0013915370218455791, 0.01388801820576191, -0.013751257210969925, -0.011364788748323917, -0.0314275398850441, -0.00496098306030035, 0.0006957685109227896, -0.003617312293499708, -0.012445195578038692, -0.016096698120236397, 0.008239814080297947, 0.0008150064386427402, -0.011556252837181091, 0.006102932617068291, 0.017149753868579865, -0.0013180283131077886, -0.019693495705723763, -0.017149753868579865, 0.01795663870871067, 0.009621093980967999, 0.007022646255791187, -0.0007008970133028924, -0.004222477320581675, 0.03952375426888466, -0.00578496465459466, -0.0034771328791975975, -0.02458951808512211, 0.036679137498140335, -0.010735690593719482, -0.02173122577369213, -0.007132054306566715, -0.009026185609400272, -0.003340372582897544, 0.02458951808512211, -0.033533647656440735, 0.023399703204631805, 0.012185350991785526, 0.042723946273326874, 0.02307147905230522, 0.03405333682894707, 0.023249266669154167, -0.002923253457993269, -0.007330357097089291, -0.011282732710242271, 0.008609066717326641, -0.019105426967144012, 0.011152810417115688, 0.0035831222776323557, 0.006072161253541708, -0.02177225425839424, 0.027721332386136055, -0.03274043649435043, -0.06739552319049835, -0.012793934904038906, 0.020008046180009842, -0.00258819037117064, -0.010551064275205135, -0.01932424306869507, 0.027365755289793015, 0.00715256854891777, -0.0041267448104918, -0.005285789258778095, -0.0028685491997748613, -0.001723180990666151, -0.013491412624716759, -0.020049072802066803, -0.025177588686347008, -0.0067935725674033165, -0.021033748984336853, 0.0030617231968790293, 0.044693294912576675, -0.018831906840205193, -0.026039179414510727, -0.025669924914836884, 0.04491211101412773, 0.012472547590732574, 0.029239371418952942, -0.024698926135897636, -0.005101162474602461, 0.004663529340177774, 0.004854993894696236, -0.01799766719341278, -0.007275653071701527, -0.0064550903625786304, 0.014400869607925415, -0.0038668999914079905, 0.00526527501642704, 0.009518523700535297, -0.019119102507829666, 0.034080687910318375, 0.007843208499252796, 0.011029725894331932, -0.014660714194178581, 0.021225212141871452, -0.01508467085659504, -0.014223081059753895, 3.472431853879243e-05, 0.011843450367450714, -0.02899320237338543, -0.007091026287525892, 0.05060134455561638, -0.02074655145406723, -0.03566711023449898, 0.001188960624858737, -0.008834721520543098, -0.014551306143403053, 0.00886207353323698, 0.01548127643764019, 0.02809058502316475, 0.02242870442569256, 0.005754193291068077, -0.018640441820025444, 0.012787096202373505, -0.022387675940990448, -0.016534332185983658, 0.008130405098199844, -0.0027164032217115164, -0.026805037632584572, -0.033533647656440735, 0.0024633966386318207, 0.03399863466620445, -0.03052491880953312, 0.029403483495116234, 0.009846747852861881, -0.024261293932795525, -0.011850288137793541, -0.011542577296495438, -0.02773500792682171, -0.016411246731877327, 0.022209888324141502, -0.0010137363569810987, 0.0026616991963237524, -0.0059114680625498295, -0.02231929637491703, -0.013299948535859585, 0.009265516884624958, 0.0020155063830316067, 0.01021600142121315, -0.02672298066318035, -0.017983991652727127, 0.020609790459275246, -0.0322207473218441, 0.01642492227256298, -0.014920558780431747, 0.034162744879722595, -0.031017256900668144, -0.021799607202410698, 0.002201842376962304, 8.023988630156964e-05, 0.02393306791782379, 0.0073508708737790585, -0.0023608263581991196, -0.02915731631219387, -0.017983991652727127, 0.01345722284168005, -0.016041994094848633, -0.02817264012992382, 0.00843127816915512, 0.03265838325023651, 0.023946745321154594, 0.009162946604192257, 0.021348297595977783, 0.0024052734952419996, 0.0081509193405509, 0.0030907848849892616, 0.000978691503405571, -0.007371385116130114, 0.012294759042561054, -0.023946745321154594, -0.019734524190425873, -0.028555570170283318, 0.01665741577744484, 0.00587385892868042, 0.012588794343173504, -0.01078355684876442, 0.01988496072590351, 0.010722015053033829, 0.027994852513074875, -0.013881179504096508, -0.0302513986825943, 0.0043318853713572025, 0.006499537732452154, 0.01929689198732376, 0.006906399969011545, -0.03555770218372345, -0.03115401789546013, 0.011330598033964634, -0.025601545348763466, -0.005155866965651512, 0.003877157112583518, -0.007118378300219774, -0.020924339070916176, -0.020090101286768913, 0.006920075975358486, 0.00875950325280428, 0.01416837703436613, 0.017163429409265518, -0.030224045738577843, 0.023960420861840248, -0.0001069509016815573, -0.004882345907390118, 0.0168899092823267, 0.007084188517183065, 0.004246409982442856, 0.01779252663254738, -0.003931861370801926, -0.021758578717708588, -0.008472306653857231, -0.005429387558251619, -0.022661196067929268, -0.026900768280029297, -0.01341619435697794, 0.004629339091479778, -0.03167370706796646, 0.04149310290813446, 0.02169019728899002, -0.00968263577669859, 0.005217408761382103, -0.015426572412252426, -0.017860908061265945, -0.009798882529139519, -0.01245203334838152, 0.017669443041086197, 0.011446844786405563, 0.019515708088874817, 0.04015285149216652, 0.009518523700535297, -0.004875508137047291, -0.058478742837905884, -0.020213186740875244, -0.01952938362956047, 0.03386187180876732, 0.024192912504076958, -0.0016530912835150957, -0.012910180725157261, 0.006533727515488863, 0.021279916167259216, 0.005908048711717129, -0.014523953199386597, 0.02307147905230522, 0.04816700890660286, 0.012322111055254936, -0.02192269079387188, 0.014373517595231533, -0.002889063209295273, -0.002041148953139782, -0.004297695122659206, 0.01732754148542881, -0.004673786461353302, -0.009053537622094154, -0.004321628250181675, 0.01494791079312563, 0.0008761212811805308, 0.012773420661687851, 0.008274003863334656, -0.013819637708365917, -0.012233217246830463, -0.0051729618571698666, -0.011159648187458515, 0.012369977310299873, -0.01583685353398323, 0.01163147110491991, -0.01881822943687439, -0.025765657424926758, 0.011761393398046494, -0.005655042361468077, -0.012787096202373505, -0.004352399613708258, -0.006390129216015339, 0.051066331565380096, -0.02880173921585083, -0.012069104239344597, -0.009757854044437408, 0.017669443041086197, 0.041192229837179184, -0.0030617231968790293, -0.011624633334577084, 0.01416837703436613, -0.03990668058395386, 0.008916777558624744, 0.0007338050054386258, -0.005720003508031368, -0.005415711551904678, -0.012075942941009998, 0.0050020115450024605, -0.015467599965631962, -0.01976187713444233, 0.0037096256855875254, 0.01007924135774374, -0.026668276637792587, -0.03870319202542305, -0.020883312448859215, -0.005402035545557737, -0.007412413135170937, 0.017614739015698433, -0.008540686219930649, 0.013976912014186382, 0.04759261757135391, -0.03238486126065254, 0.008472306653857231, -0.03547564521431923, 0.012041752226650715, -0.008315031416714191, -0.0037198825739324093, 0.011467359028756618, -0.02773500792682171, 0.023700576275587082, 0.016794176772236824, 0.003935280255973339, -0.029458187520503998, -0.003801938844844699, 0.02274325303733349, 0.007952616550028324, 0.0487140528857708, -0.006632878910750151, 0.01334097608923912, 0.011617795564234257, 0.002261674962937832, -0.006499537732452154, 0.00935441069304943, -0.0033318251371383667, -0.028774386271834373, 0.003058304311707616, -0.001222296035848558, 0.02647681161761284, 0.013436708599328995, 0.002049696398898959, 0.0036515025421977043, -0.040645189583301544, -0.03295925632119179, 0.020773904398083687, 0.003914766013622284, -0.016602711752057076, -0.004335304256528616, -0.020404649898409843, -0.020336270332336426, -0.0081509193405509, -0.00223432295024395, 0.001327430596575141, -0.008157757110893726, 0.014414545148611069, 0.02915731631219387, 0.007959455251693726, 0.010298057459294796, -0.013874341733753681, -0.041192229837179184, -0.02714693732559681, -0.03405333682894707, -0.035338886082172394, -0.004769518505781889, -0.01530348788946867, 0.030306102707982063, -0.000398955715354532, -0.01898234151303768, -0.04898757115006447, 0.009504847228527069, -0.01736856997013092, 0.004875508137047291, 0.012383653782308102, 0.03052491880953312, 0.0036207314115017653, 0.0005068681784905493, -0.02070552296936512, 0.041547808796167374, -0.023317646235227585, 0.00487208878621459, -0.021225212141871452, -0.0022633844055235386, -0.020773904398083687, 0.010243353433907032, 0.008656932972371578, 0.016096698120236397, -0.005439644679427147, -0.022838985547423363, 0.003039499744772911, 0.013197378255426884, -0.003890833118930459, -0.00622601667419076, 0.0028001689352095127, -0.04152045398950577, 0.00020759800099767745, 0.0045814733020961285, -0.018845582380890846, 0.005203732755035162, -0.04184867814183235, -0.02160814218223095, -0.008814207278192043, 0.01999436877667904, 0.002422368386760354, -0.023522786796092987, 0.0188592579215765, 0.019419975578784943, -0.008410763926804066, 0.010892964899539948, 0.007692771963775158, 0.003000181168317795, -0.011193837970495224, 0.014182052575051785, 0.013156349770724773, 0.010140783153474331, -0.004266924224793911, 0.02242870442569256, -0.0054772538132965565, 0.006831181701272726, -0.002624090062454343, 0.01905072294175625, -0.03134548291563988, -0.00872531346976757, -0.009716825559735298, 0.007432927377521992, 0.008041511289775372, -0.011187000200152397, 0.01812075264751911, -0.012335787527263165, -0.010592092759907246, 0.017231808975338936, -0.01932424306869507, -0.05418446660041809, 0.012171674519777298, -0.0002961717254947871, -0.0003867754712700844, -0.016725795343518257, 0.0012616146123036742, -0.014058968052268028, 0.004157515708357096, -0.04236837103962898, 0.013211053796112537, -0.014154700562357903, -0.006841438822448254, -0.0034583283122628927, 0.011987048201262951, 0.025040827691555023, 0.015577008947730064, 0.010263867676258087, -0.0400707945227623, -0.0237689558416605, 0.2439805418252945, -0.020732875913381577, 0.0017830135766416788, 0.015768473967909813, 0.00026134055224247277, 0.01029121968895197, 0.005425968673080206, -0.007125216536223888, -0.005846506915986538, -0.004513092804700136, 0.00715256854891777, -0.0138469897210598, -0.005904629826545715, 0.002353988355025649, -0.005880696699023247, 0.007699610199779272, -0.03399863466620445, -0.020336270332336426, 0.014332489110529423, -0.009135594591498375, 0.007843208499252796, 0.009361248463392258, -0.0002632637624628842, -0.013012751005589962, 0.017423273995518684, -0.015891557559370995, 0.011781907640397549, 0.01530348788946867, 0.02066449448466301, 0.005743936635553837, -0.02997787855565548, 0.0032754114363342524, -0.022852661088109016, 0.012910180725157261, -0.011597281321883202, -0.0130606172606349, 0.028911147266626358, -0.0023266361095011234, 0.028664978221058846, 0.005914886947721243, 0.013347813859581947, -0.016411246731877327, -0.003832709975540638, -0.012875990942120552, -0.01839427277445793, 0.018913961946964264, 0.01320421602576971, 0.010598930530250072, -0.013717067427933216, -0.010940831154584885, -0.06077631935477257, -0.03492860496044159, 0.026080206036567688, 0.00864325650036335, -0.022223563864827156, -0.009641607291996479, 0.017300190404057503, -0.009224488399922848, -0.003959213383495808, -0.005077229347079992, -0.01082458533346653, 0.030032582581043243, -0.03971521928906441, 0.03397127985954285, -0.028227344155311584, 0.0010504907695576549, -0.0288837943226099, -0.013115321286022663, 0.0227842815220356, 0.005969590973109007, -0.01029121968895197, -0.018476329743862152, -0.022141506895422935, -0.0269144456833601, -0.016206106171011925, -0.03052491880953312, 0.039004065096378326, 0.0337798185646534, 0.006513213738799095, 0.009627931751310825, -0.010995535179972649, -0.010831423103809357, -0.007303005084395409, 0.0036480834241956472, -0.01623345911502838, -0.018448976799845695, 0.033068664371967316, -0.033615704625844955, -0.016356542706489563, 0.0027420457918196917, 0.013600820675492287, 0.007617553696036339, -0.00508748646825552, 0.013128997758030891, 0.01548127643764019, 0.02173122577369213, -0.0027249509003013372, 0.020213186740875244, -0.012205865234136581, -0.0038121959660202265, -0.020951692014932632, 0.018380597233772278, 0.02978641353547573, 0.03077108785510063, -0.015112022869288921, -0.007713286206126213, -0.009675798006355762, 0.014797474257647991, 0.010680986568331718, -0.021854311227798462, 0.0073645468801259995, -0.03859378397464752, -0.012164836749434471, -0.01341619435697794, 0.005644785240292549, 0.007843208499252796, -0.002694179769605398, -0.014482925646007061, -0.029923174530267715, -0.018134428188204765, 0.029294075444340706, -0.040453724563121796, 0.011720365844666958, 0.007132054306566715, -0.016876231878995895, -0.031728409230709076, -0.015686416998505592, -0.006950846873223782, 0.01654800772666931, -0.0330139584839344, 0.028391458094120026, -0.03862113505601883, 0.0172865130007267, -0.00925184041261673, -0.011405816301703453, 0.021717550233006477, -0.013758094981312752, -0.009395439177751541, 0.000739788229111582, 0.006540565751492977, -0.0065576606430113316, 0.018804553896188736, 0.02184063382446766, 0.013580307364463806, 0.011508386582136154, -0.00517638074234128, -0.005169542971998453, 0.019789228215813637, -0.00850649643689394, -0.014072644524276257, -0.04969872534275055, -0.01814810372889042, 0.001808656146749854, -0.007679095957428217, 0.005552472081035376, 0.003644664539024234, -0.01180925965309143, -0.03914082422852516, 0.014113672077655792, 0.014045292511582375, -0.0310446098446846, 0.007473955396562815, -0.019816581159830093, -0.00745344115421176, -0.004660110455006361, 0.004348980262875557, -0.17231810092926025, 0.030579622834920883, 0.029239371418952942, -0.018599413335323334, 0.02651784010231495, -0.011351112276315689, 0.010407465510070324, 0.001435129321180284, -0.009703150019049644, 0.008807369507849216, 0.018257511779665947, 0.009983508847653866, -0.01567274145781994, 0.005251599010080099, -0.002694179769605398, -0.0012402457650750875, -0.014373517595231533, 0.0009504847112111747, 0.015221431851387024, 0.02215518429875374, 0.035858575254678726, -0.02467157505452633, -0.02668195217847824, 0.021635493263602257, 0.012616146355867386, 0.02546478435397148, 0.008561200462281704, 0.0016154821496456861, 0.00539177842438221, -0.019064398482441902, -0.015959937125444412, -0.003366015153005719, 0.0024377540685236454, 0.007884236983954906, 0.003774586832150817, -0.003877157112583518, 0.020281566306948662, 0.01575479656457901, -0.007850046269595623, 0.007733799982815981, -0.012349463067948818, 0.03446361795067787, 0.002085596090182662, -0.00868428498506546, 0.014346165582537651, -0.0013180283131077886, -0.010933993384242058, 0.002090724417939782, -0.007781666237860918, -0.011515225283801556, 0.015604360960423946, -0.010441656224429607, 0.008239814080297947, -0.016917260363698006, 0.05128514766693115, 0.016137726604938507, -0.01096134539693594, -0.008848397061228752, -0.0060208761133253574, -0.004451550543308258, 0.009033024311065674, -0.023987771943211555, -0.006171312648802996, 0.015221431851387024, -0.0013291400391608477, -0.010448493994772434, -0.004854993894696236, 0.05804111063480377, -0.016835203394293785, 0.001584711018949747, 0.005655042361468077, -0.0003658340428955853, 0.03897671028971672, -0.00193003099411726, 0.02934877946972847, 0.015823177993297577, 0.0041199070401489735, 0.00526527501642704, 0.003819033969193697, -0.010318571701645851, -0.036679137498140335, 0.052515991032123566, -0.036323558539152145, -0.014031616039574146, 0.04887816309928894, -0.012910180725157261, 0.0155223049223423, -0.006335425190627575, -0.026175938546657562, -0.016534332185983658, 0.021225212141871452, -0.027051204815506935, -0.00464643444865942, -0.006933751981705427, 0.0012316983193159103, 0.014523953199386597, -0.005757612641900778, -0.004413941875100136, -0.008609066717326641, 0.011816097423434258, -0.018531033769249916, 0.0012727264547720551, -0.005805478431284428, 0.0029745385982096195, 0.014031616039574146, 0.008930454030632973, -0.014551306143403053, 0.012431520037353039, 0.008923615328967571, 0.010701500810682774, -0.013867503963410854, -0.010462169535458088, 0.004348980262875557, 0.0026480231899768114, 0.010537387803196907, 0.029759060591459274, -0.017395921051502228, -0.007391899358481169, 0.01494791079312563, 0.015029966831207275, 0.006078999489545822, -0.009751016274094582, 0.02015848271548748, 0.0028052974957972765, -0.0006517487345263362, 0.0041882870718836784, -0.050984274595975876, -0.024972448125481606, 0.0031232654582709074, -0.00731668109074235, 0.004786613862961531, 0.019283214583992958, -0.023700576275587082, 0.035694461315870285, -0.021430352702736855, 0.0245621670037508, -0.008574876934289932, -0.019584087654948235, -0.03583122417330742, 0.02106110006570816, 0.0224013514816761, 0.0023266361095011234, -0.018011342734098434, 0.0005162704619579017, 0.019939664751291275, 0.027762359008193016, -0.027707654982805252, -0.012800772674381733, -0.0051729618571698666, -0.007603877689689398, -0.00938860047608614, 0.015891557559370995, -0.006526889745146036, 0.009703150019049644, 0.02030891738831997, 0.024644222110509872, 0.05385624244809151, -0.0072551388293504715, 0.011563091538846493, -0.011330598033964634, 0.010988697409629822, -0.006034552119672298, -0.035065364092588425, -0.043079525232315063, 0.04214955121278763, -0.024575842544436455, -0.0024497206322848797, 0.0037540728226304054, -0.007959455251693726, -0.0057029081508517265, -0.02487671561539173, -0.01583685353398323, -0.005767869763076305, -0.0016086441464722157, -0.0031061703339219093, -0.0113921407610178, -0.03449096903204918, -0.01262982189655304, 0.002468524966388941, -0.02267487347126007, 0.018448976799845695, 0.03446361795067787, -0.0041335830464959145, -0.007426089141517878, -0.029129963368177414, 0.02852821722626686, -0.02039097435772419, 0.018366919830441475, -0.004786613862961531, 0.03591327741742134, 0.02871968224644661, 0.015139375813305378, -0.024056153371930122, -0.009340735152363777, 0.03853907808661461, -0.01724548451602459, -0.011063915677368641, 0.04357185959815979, -0.012479385361075401, 0.016534332185983658, -0.027516189962625504, -0.009593741036951542, -0.015809500589966774, 0.014482925646007061, 0.013764933682978153, -0.017901934683322906, -0.022483408451080322, 0.012992237694561481, -0.026148587465286255, -0.007357709109783173, 0.03052491880953312, 0.013696553185582161, -0.006906399969011545, 0.005678975488990545, 0.02647681161761284, -0.01363501138985157, 0.013074293732643127, 0.006626041140407324, 0.005066972691565752, -0.04543180391192436, -0.008397088386118412, -0.009231326170265675, 0.006824343465268612, 0.013217891566455364, 0.009716825559735298, -0.008362897671759129, -0.034244801849126816, -0.01673947274684906, -0.0848461464047432, 0.030497567728161812, -0.03413539379835129, -0.0005068681784905493, 0.013751257210969925, -0.005808897782117128, 0.022852661088109016, -0.004612244199961424, 0.004482321906834841, -0.030825791880488396, -0.0013624754501506686, 0.01594626158475876, 0.017382245510816574, -0.006920075975358486, -0.020500382408499718, 0.0014718837337568402, 0.02758457139134407, 0.007822694256901741, 0.015850529074668884, 0.017806202173233032, -0.00482422299683094, 0.006725192070007324, 0.05084751546382904, -0.02114315703511238, -0.028309401124715805, 0.04258718714118004, 0.005313141271471977, 0.02679136022925377, -0.021854311227798462, -0.04751056060194969, -0.019939664751291275, 0.013785447925329208, 0.0010932283475995064, 0.031290777027606964, 0.015508628450334072, 0.019871285185217857, -0.005990105215460062, 0.013525602407753468, 0.04474800080060959, 0.004612244199961424, -0.003890833118930459, -0.04668999835848808, -0.017259161919355392, -0.0022804795298725367, -0.009498009458184242, 0.01693093590438366, -0.023290295153856277, 0.019037047401070595, -0.007015808019787073, 0.0008453501504845917, 0.013299948535859585, 0.013587145134806633, -0.02184063382446766, -0.015686416998505592, -0.0032976348884403706, -0.04015285149216652, 0.009142432361841202, 0.013313624076545238, -0.04318893328309059, 0.02934877946972847, 0.03295925632119179, -0.00758336391299963, 0.01594626158475876, 0.001457352889701724, 0.01732754148542881, -0.003562608268111944, -0.03211133927106857, 0.004123325925320387, 0.006944009102880955, 0.011590443551540375, -0.015809500589966774, -0.011159648187458515, -0.013293109834194183, -0.0021967138163745403, -0.010236515663564205, 0.0035660271532833576, 0.007884236983954906, -0.005668718367815018, -0.01909175142645836, 0.03976992145180702, 0.0349559560418129, -0.010667311027646065, -0.03279514238238335, 0.018763525411486626, 0.03476449102163315, -0.019283214583992958, -0.04772937670350075, 0.02345440723001957, -0.0006876483676023781, -0.008814207278192043, -0.010810908861458302, 0.02117050811648369, 0.011932344175875187, 0.018572060391306877, 0.02483568713068962, 0.02439805306494236, -0.009928804822266102, -0.009703150019049644, 0.0330139584839344, 0.024288645014166832, -0.01732754148542881, -0.003880576230585575, -0.0030463377479463816, -0.022880014032125473, -0.007617553696036339, 0.007220948580652475, -0.039578456431627274, -0.02679136022925377, -0.012041752226650715, 0.020869635045528412, 0.007159406319260597, -0.000352585397195071, -0.0178745836019516, 0.029294075444340706, -0.030278751626610756, -0.015453924424946308, 0.0007748330826871097, -0.001736856997013092, -0.03336953744292259, 0.008027834817767143, 0.012363139539957047, 0.01567274145781994, 0.011337436735630035, -0.005337074398994446, 0.007562849670648575, 0.003518161131069064, 0.010872451588511467, -0.03041551075875759, -0.01210329495370388, 0.007248300593346357, -0.0044002654030919075, 0.025204939767718315, -0.0224013514816761, -0.00041776025318540633, -0.02714693732559681, 0.015768473967909813, -0.012397329322993755, 0.009019347839057446, -0.01831221580505371, 0.05183218792080879, 0.027721332386136055, -0.0011957986280322075, 0.008581714704632759, -0.013703390955924988, -0.017395921051502228, 0.007521821651607752, -0.0063730343244969845, 0.013614497147500515, -0.015180403366684914, 0.009422791190445423, -0.006957685109227896, -0.02463054656982422, -0.021895337849855423, 0.006061904598027468, -0.0016069345874711871, -0.02246973291039467, 0.02664092369377613, -0.00186336028855294, 0.016356542706489563, 0.030579622834920883, 0.004933631047606468, 0.027092233300209045, 0.0014094867510721087, -0.015508628450334072, 0.000218068715184927, -0.0028189735021442175, -0.030388159677386284, -0.00836973637342453, 0.019378947094082832, 0.020760226994752884, 0.004677205346524715, -0.014455573633313179, -0.030442863702774048, -0.004769518505781889, 0.02129359357059002, -0.01548127643764019, 0.0021932946983724833, 0.028938498347997665, 0.004919955041259527, -0.01398374978452921, -0.0043729133903980255, -0.035776518285274506, -0.030497567728161812, -0.0034720045514404774, 0.004410522524267435, -0.012445195578038692, 0.0006991875125095248, -0.0455685630440712], "37740239-6453-42e5-9485-42937afd3209": [-0.024223681539297104, 0.01303923036903143, 0.012516266666352749, -0.01709742844104767, -0.028839709237217903, -0.007698026951402426, -0.01861751079559326, -0.05979916453361511, 0.01216065138578415, -0.0326608307659626, 0.0024666457902640104, 0.0015906814951449633, 0.0022295687813311815, -0.009064705111086369, 0.009510967880487442, 0.0013536046026274562, -0.0009055989212356508, -0.0024248086847364902, 0.0025520632043480873, -0.0243213027715683, 0.03416696563363075, 0.006101244129240513, -0.046801771968603134, -0.010347709991037846, -0.038545917719602585, 0.019565818831324577, 0.026636287569999695, -0.014852170832455158, -0.015856262296438217, -0.011581904254853725, 0.01822703145444393, 0.0011818981729447842, -0.00820007175207138, -0.03227034956216812, -0.02796112932264805, -0.011721361428499222, -0.0036956106778234243, -0.014147913083434105, 0.011240234598517418, 0.005417904816567898, 0.024948857724666595, 0.01391780935227871, 0.01064056996256113, 0.024642053991556168, -0.0065091559663414955, 0.017069537192583084, 0.017515800893306732, 0.014419854618608952, -0.01743212528526783, 0.02920229732990265, -0.0070809293538331985, 0.015256596729159355, -0.04200445115566254, -0.03963368013501167, 0.014419854618608952, -0.008227963000535965, 0.0066416398622095585, 0.01665116660296917, 0.0076213255524635315, -0.019537925720214844, 0.01206303108483553, -0.012348918244242668, -0.030931564047932625, -0.012962528504431248, 0.010159443132579327, 0.001740597770549357, 0.010347709991037846, 0.011142615228891373, -0.0023202160373330116, 0.001507007284089923, 0.019370578229427338, 0.026817582547664642, -0.021894749253988266, -0.004082603845745325, 0.04208812490105629, -0.018324650824069977, -0.0041174679063260555, 0.01486611645668745, -0.008904329501092434, 0.007032119669020176, -0.002839693333953619, -0.0065091559663414955, 0.0004728464118670672, -0.016497764736413956, 0.018366487696766853, 0.01522870548069477, -0.019761057570576668, 0.02440497651696205, 0.0064533730037510395, -0.003936173859983683, -0.015256596729159355, 0.005048343446105719, 0.004263897892087698, -0.001798995421268046, 0.0005303724319674075, 0.012237352319061756, -0.022480469197034836, 0.02934175357222557, -0.0194403063505888, -0.015912044793367386, -0.02341483160853386, 0.0049054003320634365, -0.029564885422587395, -0.012823071330785751, -0.010940401814877987, -0.027612486854195595, 0.04900519177317619, -0.018045736476778984, -0.015047411434352398, -0.02002602629363537, -0.016218850389122963, 0.016232796013355255, -0.005138990469276905, -0.02811453305184841, -0.026427103206515312, 0.03748604282736778, 0.026036623865365982, -0.01951003447175026, -0.01522870548069477, -0.033218659460544586, 0.00631042942404747, 0.002588670700788498, 0.004246465861797333, -0.028267934918403625, -0.010961321182549, 0.018715130165219307, 0.008813682943582535, -0.008465040475130081, 0.006554479245096445, -0.02836555428802967, 0.04376160725951195, 0.004821726121008396, 0.019259013235569, 0.00737030291929841, 0.010382574051618576, 0.007523705717176199, 0.004563730675727129, 0.013604030944406986, -0.006523101590573788, -0.0068926624953746796, 0.040944576263427734, 0.016428034752607346, -0.019537925720214844, -0.019677383825182915, 0.00671485485509038, 0.0019140474032610655, -0.007391221355646849, -0.005794438533484936, 0.013046203181147575, 0.009301782585680485, 0.02575770951807499, 0.010877646505832672, -0.009706207551062107, 0.023721637204289436, -0.019788948819041252, 0.0010790486121550202, 0.01093342900276184, 0.03397172689437866, 0.013778352178633213, 0.006606775801628828, 0.016874298453330994, 0.018519889563322067, 0.005358635447919369, 0.0012071747332811356, -0.008339528925716877, 0.017264777794480324, -0.00282226107083261, -0.01349943783134222, -0.02238284982740879, 0.015828371047973633, 0.009615560993552208, 0.004720619879662991, -0.006861284840852022, -0.006969363894313574, 0.004051226191222668, 0.02043045125901699, 0.011337854899466038, -0.0018896424444392323, -0.023010406643152237, -0.004389409441500902, -0.010438356548547745, -0.02497674897313118, 0.005051829852163792, 0.005316798575222492, -0.0014442516257986426, -0.017836550250649452, 0.0079420767724514, -0.019370578229427338, 0.006341807544231415, 0.009936311282217503, 0.029369644820690155, 0.03271661326289177, 0.008060614578425884, 0.009218107908964157, -0.5859425663948059, -0.02978801727294922, 0.0029198811389505863, 0.0032354025170207024, 0.033330224454402924, 0.022424686700105667, 0.011798062361776829, 0.016358306631445885, -0.032158784568309784, -0.002280122134834528, -0.01853383705019951, 0.014642985537648201, 0.007983913645148277, -0.008478986099362373, -0.018505943939089775, -0.01951003447175026, 0.01382018905133009, -0.010089714080095291, -0.006610262207686901, 0.011630713939666748, -0.004915859550237656, 0.010250089690089226, -0.02836555428802967, 0.024572324007749557, -0.007004227954894304, 0.0028484093490988016, -0.023512450978159904, 0.004567217081785202, -0.011010130867362022, 0.026134243234992027, -0.011163533665239811, 0.01938452385365963, 0.019956298172473907, -0.0034689931198954582, 0.03207511082291603, -0.0185477826744318, -0.03832278400659561, 0.017724985256791115, 0.0010250089690089226, 0.045379310846328735, -0.010110633447766304, -0.02745908498764038, 0.04038674756884575, -0.004058199003338814, -0.011365746147930622, 0.00878579169511795, -0.00529936607927084, -0.007056524511426687, 0.038211219012737274, -0.022870948538184166, -0.023066189140081406, -0.02948121167719364, -0.012830045074224472, -0.006083812098950148, 0.0010067052207887173, 0.019035881385207176, 0.007893266156315804, -0.0052819340489804745, 0.005850221496075392, -0.04111192375421524, -0.021755293011665344, 0.018394378945231438, 0.00618143193423748, 0.006083812098950148, -0.017278723418712616, 0.009239026345312595, -0.02121140994131565, -0.0037444205954670906, 0.011344827711582184, -0.010954347439110279, -0.010926456190645695, 0.01430828869342804, -0.013325116597115993, 0.008646334521472454, 0.015493673272430897, 0.054025642573833466, 0.016874298453330994, -0.00966437067836523, -0.005417904816567898, 0.015647076070308685, 0.003587531391531229, 0.01086370088160038, -0.006052433978766203, -0.017724985256791115, -0.0060140835121273994, -0.017836550250649452, -0.006334834732115269, 0.009099570102989674, 0.01545183639973402, -0.019077718257904053, 0.021183518692851067, 0.0243213027715683, 0.024293409660458565, -0.025255663320422173, -0.013060148805379868, 0.021225355565547943, -0.030847890302538872, 0.011763198301196098, -0.003897823393344879, -0.015619184821844101, -0.03154517337679863, 0.008946167305111885, -0.003918741829693317, -0.02692914754152298, 0.015661021694540977, 0.02609240636229515, -0.01991446129977703, 0.018185194581747055, -0.012118813581764698, -0.02556246891617775, -0.010006040334701538, -0.003059338079765439, -0.03291185200214386, -0.0015052640810608864, 0.0177528765052557, -0.03544997051358223, 0.03690032288432121, 0.018659347668290138, 0.021239303052425385, 0.034390099346637726, 0.01991446129977703, 0.01587020792067051, 0.02407027967274189, 0.003190079005435109, -0.003289442043751478, 0.011470339260995388, 0.022396795451641083, -0.00015895919932518154, -0.017655257135629654, 0.02146243304014206, -0.017711039632558823, 0.000872042088303715, 0.024865183979272842, -0.024823347106575966, 0.0029965825378894806, 0.005048343446105719, -0.0090089226141572, -0.005665441043674946, 0.029425429180264473, -0.010382574051618576, -0.007087902165949345, -0.001809454639442265, 0.024558378383517265, -0.02582743763923645, -0.011024076491594315, -0.02314986288547516, -0.013534302823245525, 0.020012080669403076, -0.02440497651696205, -0.021643728017807007, 0.021044062450528145, -0.01086370088160038, -0.019761057570576668, 0.02817031554877758, 0.018450161442160606, 0.013889918103814125, 0.005940868519246578, -0.012676642276346684, 0.00769105413928628, -0.002022126689553261, -0.008367420174181461, 0.006575397681444883, -0.028588686138391495, -0.02010970003902912, -0.014168831519782543, -0.02653866820037365, 0.002185988472774625, 0.008548714220523834, -0.0020848822314292192, -0.040498316287994385, -0.019761057570576668, -0.0050378842279314995, -0.0026984931901097298, -0.018254922702908516, -0.01737634278833866, 0.011330882087349892, -0.022103935480117798, -0.0026514262426644564, -0.011616768315434456, -0.028532903641462326, -0.01317171473056078, 0.00260261632502079, -0.011818981729447842, 0.006031515542417765, 0.01906377263367176, 0.016888244077563286, 0.013443655334413052, 0.00891130231320858, 0.002715925220400095, -0.007049551699310541, 0.005546902306377888, 0.012572049163281918, 0.002522428520023823, 0.013081067241728306, 0.011233261786401272, 0.01959371007978916, 0.013799270614981651, -0.003646800760179758, -0.029676450416445732, 0.026692071929574013, 0.014147913083434105, 0.03031795285642147, 0.026915201917290688, -0.012146704830229282, 0.006788069847971201, -0.03740236908197403, 0.005634062923491001, -0.021378759294748306, 0.02524171769618988, -0.004758970346301794, 0.018450161442160606, -0.00816520769149065, 0.0026043595280498266, -0.0016455926233902574, 0.006481264252215624, -0.0011688240338116884, -0.015758641064167023, 0.011665578931570053, -0.0007168962038122118, -0.001908817794173956, 0.009259944781661034, 0.003155214712023735, 0.027347518131136894, 0.011805035173892975, -0.01183990016579628, -0.013129876926541328, -0.001837346120737493, 0.0054771737195551395, 0.004211601801216602, -0.024153953418135643, 0.011435474269092083, 0.0050901807844638824, 0.023498505353927612, 0.00424297945573926, -0.020374668762087822, -0.027542758733034134, 0.049284107983112335, -0.009657397866249084, 0.02992747351527214, 0.01506135705858469, -0.0028170314617455006, 0.03227034956216812, 0.007830510847270489, -0.027598541229963303, 0.005696818698197603, 0.01050808560103178, 0.027291735634207726, -0.00379671691916883, 0.0002821825328283012, 0.01190962828695774, -0.006024542730301619, 0.011498230509459972, -0.001308281091041863, 0.005543415900319815, 0.013060148805379868, 0.0004802550538443029, -0.002475361805409193, 0.009259944781661034, 0.0038838775362819433, 0.01581442542374134, 0.015702858567237854, 0.01640014350414276, 0.023847147822380066, 0.023777419701218605, 0.023191699758172035, -0.012537185102701187, -0.029704341664910316, -0.029955364763736725, -0.011867791414260864, 0.016469871625304222, -0.022982515394687653, 2.8517868486233056e-05, -0.01518686767667532, 0.009999067522585392, -0.006237214431166649, -0.019872622564435005, 0.030819999054074287, 0.0001349900267086923, 0.029955364763736725, 0.010919483378529549, 0.0032598075922578573, -0.007419112604111433, 0.029118623584508896, -0.003653773572295904, 0.007830510847270489, -6.662340456387028e-05, 0.0003495141281746328, 0.016246741637587547, 0.001982032787054777, -0.0024056334514170885, 0.016693003475666046, -0.003545694286003709, -0.0004998662043362856, -0.010438356548547745, 0.0007796518038958311, 0.02186685800552368, 0.014670876786112785, -0.0027595055289566517, -0.0052854204550385475, 0.00357707217335701, -0.020318886265158653, -0.002928597154095769, 0.010047877207398415, -0.011602822691202164, 0.07184825092554092, 0.006268592551350594, 0.014322234317660332, 0.009929338470101357, 0.0187290757894516, -0.00618143193423748, 0.011149588041007519, -0.022912785410881042, -0.0167766772210598, 0.008953140117228031, 0.006108216941356659, 0.02238284982740879, 0.004201142117381096, -0.0017955090152099729, 0.008953140117228031, -0.031210478395223618, -0.016302524134516716, -0.005550388712435961, -0.01679062284529209, -0.003069797297939658, -0.03812754526734352, 0.02010970003902912, 0.0002510226040612906, -0.0016211876645684242, -0.025423012673854828, -0.01658143848180771, -0.003786257700994611, 0.0019175338093191385, -0.004155818838626146, -0.009545831941068172, 0.00019981573859695345, -0.0044138142839074135, 0.014350125566124916, -0.014615094289183617, -0.011825954541563988, -0.008988004177808762, -0.03690032288432121, -0.018910370767116547, 0.01755763776600361, 0.00022400281159207225, -0.030011147260665894, -0.00759343383833766, 0.012857936322689056, 0.0463276170194149, 0.0042290338315069675, -0.01118445210158825, -0.0050378842279314995, 0.048754170536994934, 0.02082093060016632, -0.013018311932682991, 0.005599198862910271, -0.0023603099398314953, 0.017599474638700485, 0.01945425197482109, -0.0297322329133749, 0.00560965808108449, 0.02108589932322502, 0.020723311230540276, 0.022006316110491753, 0.022341012954711914, -0.014447745867073536, 0.006854312028735876, 0.01716715842485428, -0.014113049022853374, 0.019496088847517967, -0.021699510514736176, 0.011024076491594315, 0.01691613532602787, 0.00037522651837207377, -0.013722569681704044, 0.03017849661409855, -0.0093645378947258, -0.05424877628684044, -0.03729080408811569, 0.03818332776427269, 0.003862959099933505, 0.022201554849743843, -0.012153678573668003, 0.026636287569999695, -0.0026043595280498266, -0.01177714392542839, -0.0034166965633630753, 0.01782260462641716, -0.02080698497593403, -0.019091663882136345, -0.01249534823000431, -0.02777983620762825, 0.0016351334052160382, -0.008311637677252293, 0.011212343350052834, 0.02895127423107624, -0.023526396602392197, -0.029313862323760986, -0.02861657738685608, 0.02575770951807499, 0.015200813300907612, 0.02400055155158043, -0.0005953070940449834, 0.005264502018690109, -0.003392291720956564, 0.016957972198724747, -0.011818981729447842, -0.006080325692892075, -0.00769105413928628, -0.002248744247481227, 0.010396519675850868, 0.006216295994818211, -0.023777419701218605, -0.015493673272430897, 0.026399211958050728, -0.01280912570655346, 0.01151914894580841, 0.010396519675850868, 0.03051319345831871, 0.008283746428787708, 0.00979685503989458, -0.00820007175207138, -0.0026932633481919765, -0.0041662780568003654, -0.017320560291409492, 0.05098548159003258, -0.004643918480724096, -0.01697191782295704, -0.017669202759861946, 0.00953188631683588, 0.003456790465861559, 0.010201280005276203, 0.004929805174469948, 0.044068414717912674, 0.021518215537071228, 0.021643728017807007, -0.015033464878797531, 0.009218107908964157, -0.02978801727294922, 0.022131826728582382, -0.013415764085948467, -0.01200724858790636, 0.0014407652197405696, -0.009601615369319916, -0.004431246314197779, 0.017543692141771317, -0.02575770951807499, 0.028156369924545288, -0.015521564520895481, -0.000631478731520474, 0.015716804191470146, 0.014266451820731163, -0.028128478676080704, -0.02485123835504055, 0.02087671309709549, -0.007544624153524637, 0.015340270474553108, 0.008660280145704746, -0.023233536630868912, -0.03862959146499634, 0.009252971969544888, -0.006648612674325705, 0.010675434023141861, -0.024363139644265175, -0.01762736588716507, 0.020918551832437515, -0.030987346544861794, 0.036788757890462875, -0.019272958859801292, -0.011637686751782894, -0.022480469197034836, -0.0326608307659626, -0.0069379862397909164, 0.005794438533484936, 0.036983996629714966, 0.024446813389658928, 0.03436220809817314, -0.01957976445555687, -0.022815166041254997, -0.0027682215441018343, -0.012076976709067822, -0.018254922702908516, 0.019272958859801292, 0.027291735634207726, -6.803976430092007e-05, 0.020779093727469444, 0.03472479432821274, -0.017125319689512253, -0.008381365798413754, 0.014259479008615017, 0.012237352319061756, -0.009608588181436062, 0.018575673922896385, -0.03238191828131676, -0.03525473177433014, 0.010354682803153992, -0.004521893337368965, -0.011749252676963806, -0.018561728298664093, -0.003303387900814414, 0.02197842486202717, -0.0005447539151646197, 0.02570192702114582, -0.01698586344718933, -0.013868999667465687, 0.0013300712453201413, -0.0027560191228985786, 0.01103104930371046, 0.00384552706964314, -0.023456668481230736, 0.0006109960377216339, 0.026622341945767403, -0.028309771791100502, 0.00112611532676965, -0.006324375048279762, 0.004480056464672089, -0.02616213448345661, 0.016567492857575417, -0.007704999763518572, 0.015200813300907612, -0.007412139791995287, -0.00453932536765933, -0.022020261734724045, -0.019998135045170784, 0.020207319408655167, -0.0168603528290987, -0.014419854618608952, 0.01951003447175026, -0.012830045074224472, 0.01408515777438879, 0.008172180503606796, -0.017348451539874077, -0.0008341272477991879, -0.0006001009605824947, -0.0209464430809021, -0.02948121167719364, -0.023205645382404327, -0.015047411434352398, -0.045435093343257904, 0.02790534682571888, 0.023721637204289436, -0.011177479289472103, 0.02401449717581272, -0.011156560853123665, -0.002015153644606471, 0.003632855135947466, -0.0005783107480965555, 0.02036072313785553, 0.01258599478751421, 0.031015237793326378, 0.0404704250395298, -0.0059652733616530895, -0.033664923161268234, -0.035171058028936386, -0.0005064032739028335, -0.006788069847971201, 0.027235953137278557, 0.024279464036226273, -0.024418922141194344, -0.025715872645378113, 0.008437149226665497, 0.014684822410345078, 0.003186592599377036, -0.03224245831370354, 0.027877455577254295, 0.04345480352640152, -0.0002527658361941576, -0.014133967459201813, 0.00419416930526495, -0.029313862323760986, -0.01737634278833866, -0.0004575932980515063, -0.0018251435831189156, 0.022299176082015038, -0.029815908521413803, -0.027947183698415756, 0.011379691772162914, -0.018631456419825554, 0.03391594439744949, 0.01645592600107193, -0.022857002913951874, -0.023861093446612358, -0.0011993302032351494, 0.0008611470111645758, 0.014364072121679783, -0.015591293573379517, 0.015242651104927063, -0.01920323073863983, -0.003557896940037608, 0.028086641803383827, 0.024669945240020752, -0.004964669235050678, -0.015856262296438217, -0.018324650824069977, 0.0516548752784729, -0.017348451539874077, -0.007342411205172539, -0.030485302209854126, -0.002177272457629442, 0.025004642084240913, 0.004560244269669056, -0.0027717079501599073, -0.006143081001937389, -0.013227497227489948, -0.009971176274120808, 0.028867600485682487, -0.013875972479581833, 0.0243213027715683, -0.008946167305111885, -0.004696214571595192, -0.002925110748037696, -0.01333208940923214, 0.0035247758496552706, -0.0013396588619798422, -0.022396795451641083, -0.04629972577095032, -0.012334972620010376, -0.0013353008544072509, 0.013624949380755424, -0.005696818698197603, -0.0019349659560248256, -0.0010372115066275, 0.009782909415662289, -0.04431943595409393, -0.006143081001937389, -0.010061822831630707, 0.0003048442886210978, -0.02199237048625946, -0.011414555832743645, 0.01011760625988245, 0.006324375048279762, 0.011282071471214294, 0.0015131084946915507, 0.011979357339441776, -0.0037304749712347984, 0.022550197318196297, 0.012076976709067822, -0.01652565598487854, 0.039131637662649155, 0.0005164267495274544, 0.01310895849019289, 0.003855986287817359, -0.013192633166909218, -0.013611003756523132, -0.001957627711817622, -0.0026008731219917536, -0.0013745231553912163, -0.015786532312631607, -0.017515800893306732, 0.0006789813051000237, -0.00618143193423748, 0.0014050293248146772, 0.018254922702908516, -0.03224245831370354, -0.04794532060623169, 0.011560985818505287, -0.02055596187710762, -0.009469131007790565, 0.0014904467388987541, -0.020960388705134392, -0.039410550147295, -0.021448487415909767, 0.004424273502081633, -3.835067764157429e-05, 0.0005674156709574163, 0.013506410643458366, 0.05444401502609253, -0.001816427567973733, 0.012042112648487091, -0.025130152702331543, -0.043231673538684845, -0.013276306912302971, -0.05101337283849716, -0.016037555411458015, -0.017125319689512253, -0.0014555825619027019, 0.04565822333097458, -0.017195049673318863, -0.02243863232433796, -0.04002416133880615, 0.0029442859813570976, -0.014768497087061405, -0.012830045074224472, 0.005180827807635069, 0.01904982700943947, -0.003066310891881585, 0.004563730675727129, -0.0026897769421339035, 0.028895491734147072, -0.010480194352567196, 0.04417997971177101, -0.015298433601856232, -0.000494636595249176, -0.0106963524594903, 0.016623275354504585, 0.026176080107688904, -0.009552804753184319, -0.03519894927740097, -0.031851980835199356, 0.004947237204760313, 0.0037757984828203917, 0.011846872977912426, 0.027375411242246628, 0.004281329922378063, -0.022145772352814674, -0.014935845509171486, 0.009197189472615719, -0.022884894162416458, -0.020779093727469444, 0.002060477389022708, -0.010954347439110279, -0.01064056996256113, -0.004333626478910446, 0.003505600616335869, 0.011428501456975937, 0.01265572290867567, 0.016302524134516716, 0.0007029504631645977, -0.0006571911508217454, -0.014154885895550251, -0.007426085416227579, -0.0022504874505102634, -0.0031953086145222187, 0.030736323446035385, 0.01324144285172224, -0.004919345956295729, 0.03182408958673477, 0.01755763776600361, 0.034306421875953674, -0.03670508414506912, 0.022745437920093536, -0.014126994647085667, -0.001730138435959816, 0.005278447642922401, -0.011128668673336506, 0.020862767472863197, -0.014161858707666397, 0.017348451539874077, -0.02953699417412281, 0.017864443361759186, 0.023052243515849113, -0.013520357199013233, -0.03611936420202255, 0.024153953418135643, 0.01587020792067051, -0.028979165479540825, -0.029034947976469994, 0.010535976849496365, -0.023596124723553658, -0.008799737319350243, -0.01600966416299343, 0.003901309799402952, -0.00956675037741661, -0.004246465861797333, 0.009685289114713669, -0.013457600958645344, -0.0028832736425101757, 0.024098170921206474, 0.029369644820690155, -0.043092213571071625, -0.004912373144179583, 0.22837479412555695, -0.019496088847517967, 0.006899635307490826, -0.008339528925716877, -0.016693003475666046, 0.008597524836659431, 0.0005582638550549746, -0.004581162706017494, -0.011658606119453907, -0.005243583582341671, -0.0158841535449028, -0.021183518692851067, -0.00917627103626728, -0.002890246454626322, 0.019175337627530098, -0.01518686767667532, -0.02835160866379738, -0.020765148103237152, -0.0023463640827685595, 0.023080134764313698, 0.0008328197873197496, 0.005947841331362724, 0.0009735842468217015, -0.005874626338481903, 0.012592967599630356, -0.01867329329252243, 0.006460345815867186, 0.01386202685534954, -0.0023533368948847055, -0.00020874971232842654, -7.849904068280011e-05, -0.013387872837483883, -0.01303923036903143, -5.0852780987042934e-05, -0.02394476719200611, -0.006066379602998495, 0.04482148215174675, 0.01755763776600361, 0.027333572506904602, 0.02575770951807499, 0.0005661082686856389, -0.029313862323760986, 0.018812749534845352, -0.016483819112181664, -0.026845473796129227, 0.006331348326057196, 0.01599571853876114, -0.001978546380996704, -0.01861751079559326, 0.01886853389441967, -0.04998139292001724, -0.024934912100434303, 0.02959277667105198, 0.009204162284731865, -0.015033464878797531, -0.015158976428210735, 0.01716715842485428, -0.007349384482949972, 0.010061822831630707, 0.017320560291409492, 0.014824279583990574, 0.05667532607913017, -0.020597800612449646, 0.02653866820037365, -0.044654134660959244, 0.00897405855357647, -0.02543695829808712, -0.027877455577254295, 0.0019924920052289963, -0.003587531391531229, 0.006564938463270664, -0.005993165075778961, 0.001228964887559414, 0.0011060683755204082, -0.035422079265117645, -0.03252137452363968, 0.03299552947282791, 0.010124579071998596, 0.014712714590132236, 0.004347572103142738, -0.030987346544861794, -0.022689655423164368, -0.019286904484033585, 0.031210478395223618, -0.05293788015842438, -0.02731962688267231, 0.00520523265004158, -0.011017103679478168, -0.005543415900319815, -0.019677383825182915, -0.0031604443211108446, 0.01600966416299343, -0.002599129918962717, 0.016079392284154892, -0.013394845649600029, 0.012948582880198956, -0.004141873214393854, 0.02282911166548729, -0.022494414821267128, 0.009483076632022858, -0.038015980273485184, 0.013415764085948467, 0.02003997191786766, 0.03140571713447571, -0.01076608058065176, -0.017920225858688354, 0.0033783460967242718, 0.017418179661035538, 0.0015601752093061805, -0.02856079488992691, 0.00910654291510582, -0.047331709414720535, -0.011268125846982002, -0.014210669323801994, -0.009266918525099754, -0.011470339260995388, 0.007921158336102962, -0.01239772792905569, -0.019942352548241615, 0.000635400996543467, 0.01307409442961216, -0.041809212416410446, 0.025715872645378113, -0.0009866582695394754, -0.014601148664951324, -0.02146243304014206, -0.025450903922319412, -0.0009265174739994109, 0.011247207410633564, -0.034055400639772415, 0.03260504826903343, -0.03397172689437866, 0.015437890775501728, 0.005616630893200636, -0.0035387214738875628, 0.022787274792790413, -0.02101617120206356, -0.004134900402277708, 0.007474895566701889, 0.022661764174699783, -0.01020825281739235, -0.005783979315310717, 0.046355508267879486, -0.0065126423723995686, 0.00887643825262785, 0.0021441513672471046, 0.004072144627571106, -0.01412002183496952, 0.02069541998207569, -0.01314382255077362, -0.036537736654281616, -0.013708624057471752, 0.005648008547723293, -0.010040904395282269, 0.024558378383517265, 0.008283746428787708, -0.0059617869555950165, -0.04468202590942383, -0.0007683209259994328, 0.01352733001112938, -0.03358124569058418, 0.012690587900578976, -0.018059682101011276, -0.005222664680331945, 0.003374859457835555, -0.001969830133020878, -0.1771661788225174, 0.03182408958673477, 0.029955364763736725, -0.012662696652114391, 0.020388614386320114, 0.008869465440511703, 0.011379691772162914, 0.002185988472774625, -0.02206209860742092, 0.010703325271606445, 0.03277239575982094, 0.014503528364002705, 0.003622395684942603, -0.01769709400832653, -0.018575673922896385, -0.003462020307779312, -0.013799270614981651, 0.00992236565798521, 0.03472479432821274, 0.027612486854195595, 0.03539418801665306, -0.02119746431708336, 0.0017597731202840805, 0.009280864149332047, 0.002131948946043849, 0.0004405969812069088, 0.008437149226665497, 0.006279051769524813, -0.0006746232975274324, -0.014336179941892624, 0.005435336846858263, -0.0086533073335886, 0.02920229732990265, -0.008632388897240162, 0.001737111364491284, -0.01486611645668745, -0.0018111978424713016, 0.00082759017823264, -0.017473962157964706, 0.019175337627530098, -0.0024195790756493807, 0.024837292730808258, -0.012648750096559525, 0.0035352350678294897, 0.005940868519246578, -0.0027072092052549124, 0.00956675037741661, -0.0011025819694623351, -0.005808384157717228, -0.02687336504459381, 0.0170416459441185, -0.05405353754758835, 0.015033464878797531, 0.00635923957452178, 0.015507618896663189, 0.027375411242246628, -0.009029841050505638, -0.004459137562662363, 0.007168089970946312, 0.01027798093855381, 0.00016593205509707332, -0.01911955513060093, -0.012983446940779686, -0.004218574613332748, 0.007628298364579678, -0.0001452314027119428, -0.01333906315267086, 0.039410550147295, -0.010535976849496365, -0.004887968301773071, 0.008214017376303673, -0.013764406554400921, 0.02231312170624733, 0.0019802895840257406, 0.019105609506368637, 0.007328465580940247, -0.002567752031609416, -0.0033731162548065186, 0.008151262067258358, 0.007788673974573612, -0.036593519151210785, 0.04652285575866699, -0.004919345956295729, 0.0016429778188467026, 0.020332831889390945, -0.02698493003845215, 0.018770912662148476, -0.004204628523439169, -0.006299970205873251, -0.018631456419825554, 0.021253248676657677, -0.03818332776427269, -0.018770912662148476, -0.020318886265158653, 0.02497674897313118, 0.021378759294748306, -0.017794713377952576, 0.021713456138968468, -0.03090367279946804, 0.021448487415909767, -0.009385456331074238, 0.0057770065031945705, -0.007042578887194395, 0.0034933979623019695, 0.015242651104927063, 0.0026078459341078997, -0.027152279391884804, 0.03868537396192551, 0.02817031554877758, 0.016511710360646248, -2.2525575332110748e-05, -0.0040372805669903755, 0.005065775942057371, -0.000587026821449399, -0.01219551544636488, 0.025576414540410042, -0.023470614105463028, -0.004260411486029625, 0.011916601099073887, 0.00737030291929841, -0.025646142661571503, -0.029313862323760986, 0.007711972575634718, 0.019733166322112083, -0.007011201232671738, 0.00769105413928628, -0.047833751887083054, -0.011630713939666748, 0.004089576657861471, 0.0064498865976929665, -0.00772591819986701, -0.006421995349228382, -0.02314986288547516, 0.017487907782197, -0.025939002633094788, 0.027807727456092834, -0.020388614386320114, -0.0321308933198452, -0.029118623584508896, 0.04175342619419098, -0.0005046600708737969, 0.02069541998207569, -0.025994785130023956, 0.024307357147336006, -0.014782442711293697, 0.029034947976469994, -0.021629782393574715, -0.014001483097672462, -0.0017972522182390094, 0.0032232000958174467, -0.013924782164394855, 0.005257529206573963, -0.011456392705440521, 0.034445881843566895, 0.021295085549354553, 0.023108026012778282, 0.039522115141153336, -0.0004340599407441914, 0.016609329730272293, 0.006146567407995462, 0.007251764182001352, -0.010975266806781292, -0.020137591287493706, -0.03450166434049606, 0.018366487696766853, -0.01665116660296917, -0.0012655723839998245, 0.02381925657391548, -0.014489582739770412, -0.025227772071957588, -0.017208995297551155, -0.02524171769618988, -0.023902930319309235, 0.03921531140804291, -0.01352733001112938, -0.00016920057532843202, -0.021295085549354553, -0.004347572103142738, 0.007858402095735073, -0.02705466002225876, 0.023010406643152237, 0.022605981677770615, 0.01725083217024803, 0.02256414294242859, -0.013945700600743294, 0.009685289114713669, -0.01796206273138523, 0.008046668954193592, -0.02992747351527214, 0.04897730052471161, 0.02296856977045536, 0.02511620707809925, -0.006216295994818211, -0.019370578229427338, 0.016804568469524384, -0.009845664724707603, -0.016567492857575417, 0.02178318426012993, -0.0097201531752944, 0.03837856650352478, -0.02348455972969532, -0.012878854759037495, -0.012042112648487091, 0.0070809293538331985, 0.0038036899641156197, -0.02029099501669407, -0.0021929615177214146, 0.015535510145127773, -0.00829769205302, -0.004891454707831144, 0.017348451539874077, 0.025869274511933327, 0.010549922473728657, -0.022815166041254997, 0.015507618896663189, -0.03988470509648323, 0.00529936607927084, 0.015103193931281567, 0.027877455577254295, -0.011379691772162914, -0.007628298364579678, -0.0029547454323619604, 0.009692261926829815, 0.0013196119107306004, -0.011888709850609303, -0.004030307289212942, -0.04144662246108055, -0.008290719240903854, -0.07625509053468704, 0.04144662246108055, -0.02667812630534172, 0.010905537754297256, 0.004378950223326683, -0.025004642084240913, 0.031573064625263214, 0.004354544915258884, 0.013304198160767555, -0.00494375079870224, -0.0014337924076244235, 0.018059682101011276, 0.01209789514541626, -0.014294343069195747, -0.02575770951807499, -0.013980564661324024, 0.034696903079748154, 0.015047411434352398, 0.023972660303115845, 0.008569632656872272, 0.00048809952568262815, 0.023303266614675522, 0.029313862323760986, -0.03960578888654709, -0.03109891340136528, 0.02784956432878971, -0.010396519675850868, 0.02850501239299774, -0.013715596869587898, -0.03254926577210426, -0.0092738913372159, 0.009643452242016792, -0.008381365798413754, 0.01567496731877327, 0.019496088847517967, -0.012906746007502079, -0.02256414294242859, 0.01506135705858469, 0.038545917719602585, -0.008109425194561481, -0.023317212238907814, -0.030039038509130478, 0.01652565598487854, 0.011226288974285126, -0.017515800893306732, 0.0015680197393521667, -0.020388614386320114, 0.030066929757595062, 0.011526121757924557, 0.008367420174181461, 0.018115464597940445, 0.005979218985885382, -0.014754551462829113, -0.006383644416928291, 0.005125044845044613, -0.05020452290773392, 0.010382574051618576, 0.029815908521413803, -0.016623275354504585, 0.02992747351527214, 0.018882479518651962, -0.018840640783309937, 0.005410932004451752, -0.014461691491305828, -0.0037618528585880995, -0.005860680714249611, -0.022354958578944206, 0.020388614386320114, 0.004654377698898315, 0.012802152894437313, -0.016483819112181664, -0.011937519535422325, -0.000669393630232662, 0.004093063063919544, 0.020193373784422874, 0.025911111384630203, 0.0020308427046984434, -0.007014687638729811, -0.003817635588347912, 0.04574189707636833, 0.028979165479540825, -0.014036348089575768, -0.029369644820690155, 0.004779888782650232, 0.017487907782197, 0.025353284552693367, -0.038155436515808105, 0.015019519254565239, -0.0020761662162840366, -0.011344827711582184, -0.030011147260665894, 0.005752601660788059, 0.004284816328436136, 0.024418922141194344, 0.04161396995186806, 0.015493673272430897, -0.01206303108483553, 0.008548714220523834, 0.02699887566268444, 0.0039710383862257, 0.0017196792177855968, 0.00383855402469635, 0.002743816701695323, -0.028672359883785248, -0.029676450416445732, -0.018003899604082108, -0.017850497737526894, -0.02426551841199398, -0.0005512909847311676, 0.04320378229022026, -0.01522870548069477, -0.006917067337781191, -0.023470614105463028, 0.023317212238907814, -0.03486425057053566, -0.010619651526212692, -0.008193098939955235, 0.012028167024254799, -0.024837292730808258, -0.0035683561582118273, 0.006739259697496891, -0.0019715733360499144, 0.01867329329252243, -0.01528448797762394, 0.015256596729159355, -0.007614352740347385, 0.003462020307779312, -0.03782074153423309, -0.013604030944406986, 0.005487633403390646, -0.012913718819618225, -0.012090922333300114, -0.011658606119453907, -0.009490049444139004, -0.04275751858949661, 0.036007799208164215, 0.007551596965640783, -0.0013797527644783258, -0.013269334100186825, 0.08233541995286942, -0.0025590360164642334, -0.008736981078982353, 0.012857936322689056, -0.01005485001951456, -0.003155214712023735, -0.002417835872620344, 0.005163395777344704, -0.00574214244261384, -0.03531051427125931, 0.008576605468988419, -0.007223872933536768, -0.02400055155158043, -0.024544432759284973, 0.0031778765842318535, -0.005546902306377888, 0.006917067337781191, 0.03536629676818848, -0.002063963795080781, 0.014364072121679783, 0.01659538410604, 0.0037688256707042456, 0.02133692242205143, 0.008925248868763447, -0.008576605468988419, 0.006826420314610004, -8.12772850622423e-05, -0.009280864149332047, 0.0062651061452925205, -0.008172180503606796, 0.013025284744799137, 0.012899773195385933, -0.012962528504431248, -0.010807918384671211, -0.003141269087791443, -0.0078095924109220505, -0.008890383876860142, 0.026259753853082657, 0.01658143848180771, 0.0009125717915594578, -0.01893826201558113, 0.025478795170783997, -0.027598541229963303, -0.017836550250649452, 0.005564334336668253, -0.0035369782708585262, -0.0020238698925822973, -0.020528070628643036, -0.03918742015957832], "9c58f533-fead-4e94-978a-70b0be81b612": [-0.00138907041400671, -0.021203115582466125, 0.017115075141191483, -0.0024110807571560144, -0.016654450446367264, 0.01432973612099886, -0.016294587403535843, -0.022570595145225525, -0.009845846332609653, -0.026975315064191818, 0.01702870801091194, 0.029911795631051064, -0.007866600528359413, -0.01576199010014534, 0.01159477885812521, 0.022081181406974792, -0.00264139287173748, -0.003042639931663871, 0.022844089195132256, 0.0010184117127209902, 0.009262868203222752, 0.02929283119738102, -0.03889397159218788, -0.010198511183261871, -0.03034363128244877, 0.01038563996553421, 0.026226799935102463, -0.01839618571102619, -0.0008978576515801251, -0.02729199454188347, 0.006542305462062359, -0.021750107407569885, -0.0170431025326252, -0.02365018241107464, -0.028299609199166298, 0.005815382581204176, 0.0012307307915762067, -0.011314086616039276, 0.01227851863950491, 0.002601807937026024, 0.00801774300634861, 0.01241526659578085, -0.008931794203817844, 0.021649345755577087, -0.0016823585610836744, 0.0031362043228000402, 0.021577373147010803, -0.024082018062472343, -0.0378863550722599, 0.031178511679172516, 0.011508411727845669, 0.013134991750121117, -0.013775547966361046, -0.030142107978463173, 0.03411499410867691, -0.004271571524441242, 0.0022545403335243464, 0.02514721266925335, 0.01976366527378559, -0.009781070984899998, 0.01533015538007021, -0.006427149288356304, -0.044392675161361694, 0.006661060266196728, -0.00649192463606596, -0.004793372470885515, -0.0008416291093453765, 0.0020368234254419804, 0.03253159672021866, 0.01803632266819477, 0.03279069811105728, 0.020238682627677917, -0.016971129924058914, -0.014927108772099018, 0.019619720056653023, -0.023304713889956474, -0.011508411727845669, 0.004275170154869556, -0.018122689798474312, -0.005401540547609329, 0.01047920435667038, 0.009428405202925205, -8.237484144046903e-05, 0.017561303451657295, 0.025161607190966606, -0.005667839199304581, -0.004246381111443043, 0.008895807899534702, 0.0005744309746660292, -0.0051820240914821625, -0.0009581347112543881, 0.024441881105303764, 0.021102353930473328, 0.01635216549038887, -0.0076434859074652195, 0.018828021362423897, -0.026658635586500168, -0.0009680308867245913, -0.0041384221985936165, 0.010457612574100494, 0.006974141113460064, 0.00042148929787799716, -0.007254833821207285, -0.024974478408694267, 0.002689974382519722, -0.037656042724847794, 0.014855136163532734, -0.009428405202925205, -0.00040259648812934756, -0.0038973139598965645, -0.010529585182666779, 0.0294655654579401, -0.01881362684071064, -0.01599230244755745, 0.010558374226093292, 0.002017030958086252, 0.022714540362358093, -0.007132480386644602, -0.01826663501560688, -0.016294587403535843, 0.014430497772991657, 0.016380954533815384, 0.013034230098128319, -0.046667005866765976, 0.01537333894520998, 0.02131827175617218, 0.00991062168031931, -0.026140432804822922, -0.02268575131893158, -0.010882250964641571, 0.05467035621404648, 0.006805005483329296, 0.023794127628207207, 0.003098418703302741, 0.008694285526871681, 0.024211568757891655, 0.025535862892866135, 0.0011470626341179013, 0.011666751466691494, -0.019792454317212105, 0.01786358840763569, 0.029537538066506386, -0.007226044777780771, -0.007902586832642555, 0.011472425423562527, -0.003488869871944189, -0.03138003498315811, -0.010630346834659576, -0.012012219987809658, -0.021620556712150574, 0.0002656237338669598, -0.0063983602449297905, -0.022714540362358093, 0.014351327903568745, -0.019187884405255318, 0.016927946358919144, 0.0003472676035016775, 0.009442799724638462, 0.008679891005158424, 0.011530003510415554, -0.015560466796159744, 0.02182208001613617, -0.025089634582400322, -0.01740296557545662, -0.009442799724638462, 0.009018161334097385, 0.028083693236112595, -0.015517283231019974, -0.023074401542544365, -0.005203615874052048, 0.0057218181900680065, -0.009385221637785435, -0.009795465506613255, -0.013458868488669395, 0.0014421500964090228, 0.011306889355182648, 0.013689180836081505, 0.0027115661650896072, -0.037742409855127335, 0.023837311193346977, -0.02674500271677971, 0.014041846618056297, 0.029451170936226845, 0.04231986403465271, -0.008795046247541904, -0.006866182200610638, 0.019965188577771187, -0.023088796064257622, 0.011889866553246975, 0.021922841668128967, 0.03310737758874893, 0.038059089332818985, -0.0034240945242345333, -0.0011785506503656507, -0.590520441532135, -0.02418277971446514, -0.005851368885487318, -0.005797389429062605, 0.015819568186998367, 0.017158258706331253, 0.02163495123386383, 0.003042639931663871, -0.04833677038550377, -0.023218346759676933, -0.015286971814930439, 0.01708628609776497, 0.007499540690332651, 0.0026953723281621933, -0.01548849418759346, -0.023117585107684135, 0.0030858234968036413, 0.007323207799345255, -0.0011587581830099225, 0.024657798931002617, -0.03158155828714371, 0.0016724623274058104, -0.01159477885812521, 0.010356850922107697, -0.0002281755005242303, -0.006801406852900982, -0.018784837797284126, 0.0009037054260261357, 0.0008281342452391982, 0.013509249314665794, -0.007535526994615793, -3.092570841545239e-05, 0.003456482198089361, 0.01944698579609394, 0.03042999841272831, -0.01982124336063862, -0.023117585107684135, 0.025262368842959404, 0.013761153444647789, 0.02059854567050934, -0.0011344674276188016, -0.019331829622387886, 0.04709884151816368, -0.009946607984602451, -0.009212487377226353, 0.008053729310631752, 0.014358525164425373, -0.00815449096262455, 0.019346224144101143, -0.04683974012732506, -0.010925434529781342, -0.01548849418759346, -0.008132899180054665, -0.008557537570595741, -0.0062904017977416515, 0.006412754766643047, 0.019965188577771187, 0.007136079017072916, 0.0019540549255907536, -0.03034363128244877, -0.023808522149920464, 0.016913551837205887, -0.004998494405299425, 0.024024439975619316, -0.008010545745491982, 0.01214177068322897, -0.01195464190095663, 0.015301366336643696, -0.0068985698744654655, -0.010846264660358429, -0.011436439119279385, 0.008190477266907692, -0.015704412013292313, 0.010983012616634369, 0.0035086623392999172, 0.03762725368142128, 0.031092144548892975, -0.007909784093499184, 0.019144700840115547, 0.003846933366730809, -0.011659554205834866, 0.00730161601677537, -0.000713877787347883, -0.007809022441506386, 0.00922688189893961, 0.007621894124895334, -0.0008285840740427375, 0.009205290116369724, 0.007693866733461618, -0.01635216549038887, 0.007294418755918741, 0.01307741366326809, 0.0033755130134522915, -0.03693631663918495, -0.0015815970255061984, 0.0038361374754458666, -0.022700145840644836, 0.030170897021889687, 0.01343727670609951, -0.04787614569067955, -0.020339444279670715, 0.011853880248963833, -0.0030390413012355566, -0.01116294413805008, 0.004836556036025286, 0.030372420325875282, -0.014063438400626183, 0.021102353930473328, -0.014121015556156635, -0.007175663951784372, -0.013221358880400658, -0.009298854507505894, -0.0248305331915617, -0.014696796424686909, -0.003076826920732856, -0.027392756193876266, 0.019734876230359077, -0.003990878351032734, 0.007226044777780771, 0.007121684495359659, 0.016640055924654007, -0.004735794384032488, 0.01889999397099018, 0.006920161657035351, 0.007578710559755564, 0.003568039508536458, 0.01830981858074665, 0.001016612397506833, -0.012775128707289696, 0.01885681040585041, 0.001131768454797566, 0.00851435400545597, 0.005228806287050247, -0.01698552444577217, 0.0186264980584383, 0.008240858092904091, 0.0070173246785998344, -0.005365554243326187, 0.02696092054247856, -0.010867856442928314, 0.006801406852900982, -0.0029184871818870306, 0.010997407138347626, -0.007938573136925697, -0.01307741366326809, -0.01163796242326498, -0.014912714250385761, 0.010911040008068085, -0.017187047749757767, 0.0043615372851490974, -0.008118504658341408, -0.030314842239022255, -0.026298772543668747, 0.0061860415153205395, -0.008219266310334206, 0.0002901393745560199, -0.005030882079154253, -0.01626579836010933, 0.01813708432018757, -0.007801825180649757, 0.0038757221773266792, 0.00922688189893961, 0.0015959914308041334, -0.010328061878681183, 0.002402084181085229, -0.023347897455096245, -9.952455729944631e-05, 0.007405976299196482, 0.004696209449321032, -0.035468075424432755, -0.019259857013821602, 0.0029364803340286016, 0.01548849418759346, -0.011544398032128811, -0.028889784589409828, 0.021030381321907043, -0.00754992151632905, -0.006283204536885023, -0.004778977949172258, 0.004066449590027332, -0.010371245443820953, 0.003184785833582282, -0.024312330409884453, -0.023535026237368584, 0.01407783292233944, 0.004509080667048693, 0.01168114598840475, -0.015459705144166946, -0.006067286711186171, 0.0024938492570072412, -0.009961002506315708, 0.01380433700978756, 0.007218847516924143, 0.0074203708209097385, 0.008795046247541904, 0.00963712576776743, 0.00023278624576050788, 0.005106452852487564, -0.013545235618948936, 0.03474835306406021, 0.016784001141786575, 0.0014664408518001437, 0.02582375332713127, -0.023261530324816704, -0.0015249185962602496, -0.023722155019640923, 0.01289028488099575, -0.027623068541288376, 0.009881832636892796, -0.02441309206187725, 0.030948199331760406, -0.002267135540023446, -0.026442717760801315, 0.011472425423562527, 0.030401209369301796, 0.02032504975795746, -0.025982093065977097, 0.020195499062538147, 0.029508749023079872, -0.012069798074662685, 0.02173571288585663, -0.002231149235740304, 0.03402862697839737, 0.002637794241309166, -0.025478286668658257, 0.007391581777483225, 0.004213993437588215, -0.011832288466393948, 0.0005469914176501334, -0.009032555855810642, -0.0003443437162786722, -0.011234916746616364, 0.005261193960905075, -0.002756549045443535, -0.0186264980584383, -0.0070749022997915745, 0.05544766038656235, 0.01612185314297676, -0.009651520289480686, -0.006643067114055157, 0.01689915731549263, 0.033280111849308014, 0.008118504658341408, -0.03394225984811783, 0.002348104724660516, 0.006909365765750408, 0.039930377155542374, 0.013768350705504417, 0.003096619388088584, 0.022311493754386902, 0.02924964763224125, 0.006499121896922588, -0.03270433098077774, 0.017618881538510323, 0.003706586780026555, -0.00038100473466329277, 0.0011767513351514935, 0.01195464190095663, 0.030257264152169228, 0.0037101854104548693, 0.026975315064191818, -0.013912295922636986, 0.008888610638678074, 0.02537752501666546, 0.026572268456220627, -0.020353838801383972, -0.03512260690331459, -0.021145537495613098, 0.003364717122167349, 0.010349653661251068, -0.004865345079451799, -0.01794995553791523, -0.020281866192817688, -0.0017885180423036218, 0.013631602749228477, -0.0063983602449297905, 0.02359260432422161, 0.01940380223095417, 0.018165873363614082, -0.0011200729059055448, 0.0020584152080118656, -0.016553688794374466, 0.03961369767785072, 0.014531259424984455, 0.00562465563416481, -0.010184116661548615, -0.039239440113306046, 0.012429661117494106, 0.006088878493756056, 0.019231067970395088, 0.0004894133890047669, 0.011925852857530117, 0.0015555069549009204, 0.01885681040585041, -0.018281029537320137, 0.0026162024587392807, 0.021922841668128967, -0.004091640003025532, 0.028371581807732582, -0.003550046356394887, -0.03267554193735123, -0.0007939473143778741, 0.004760984797030687, 0.006157252471894026, 0.049632277339696884, 0.0076434859074652195, 0.02199481427669525, -0.004778977949172258, -0.012681565247476101, -0.02792535349726677, -0.01307741366326809, -0.0011632564710453153, -0.007938573136925697, 0.02477295510470867, -0.014257763512432575, -0.014488075859844685, -0.010421626269817352, -0.009939410723745823, 0.013725167140364647, -0.018971966579556465, -0.04260775446891785, -0.033827103674411774, -0.0264139287173748, -0.0027889367192983627, -0.02091522514820099, 0.04065009951591492, 0.0069489507004618645, -0.010911040008068085, -0.02660105749964714, -0.012393674813210964, 0.0019234666833654046, -0.004760984797030687, -0.0010723911691457033, -0.007621894124895334, -0.01134287565946579, 0.0039836810901761055, -0.0056462474167346954, -0.019835637882351875, 0.042982012033462524, -0.004494686145335436, -0.004800569731742144, -0.03333768993616104, -0.007398779038339853, -0.0004523025418166071, -0.011702737770974636, 0.00398727972060442, 0.02455703727900982, 0.045803334563970566, 0.020195499062538147, 0.00707130366936326, -0.01921667344868183, 0.009629928506910801, 0.021159932017326355, 0.0018308019498363137, -0.04203197360038757, 0.027882169932127, 0.0005690330290235579, 0.03647569194436073, -0.040822833776474, 0.008672693744301796, 0.011306889355182648, 0.009824254550039768, 0.03949854150414467, 0.015517283231019974, 0.00881663803011179, 0.012623987160623074, 0.010831870138645172, -0.009255670942366123, 0.007773036137223244, -0.010536782443523407, 0.004948113579303026, 0.01052238792181015, 0.002211356768384576, -0.016740817576646805, 0.03509381785988808, -0.031495191156864166, -0.032819487154483795, -0.02555025741457939, 0.028803417459130287, -0.004037660546600819, -0.005538288503885269, -0.03138003498315811, 0.008240858092904091, 0.003584233345463872, -0.00020129824406467378, -0.03353921324014664, -0.006081681232899427, -0.02350623719394207, -0.00629759905859828, -0.006193238776177168, -0.048624660819768906, -0.006567495875060558, -0.019619720056653023, 0.0032531595788896084, 0.005563478916883469, 0.004663821775466204, -0.02965269424021244, -0.0002465060097165406, 0.023175163194537163, 0.012523225508630276, 0.010824672877788544, 0.011429241858422756, 0.028371581807732582, -0.0026000086218118668, 0.008600721135735512, -0.02226831018924713, -8.214992703869939e-05, 0.016553688794374466, 0.0055274926126003265, 0.005056072026491165, 0.030775466933846474, -0.022743329405784607, -0.028544316068291664, 0.02123190462589264, 0.020785674452781677, -0.002229349920526147, 0.008262449875473976, -0.00870148278772831, 0.01200502272695303, -0.005689430981874466, -0.016323376446962357, 0.01209138985723257, 0.009111725725233555, 0.012177756987512112, 0.036648426204919815, -0.022153154015541077, -0.02291606180369854, 0.0002941878337878734, -0.0027295593172311783, -0.007722655776888132, 0.020238682627677917, 0.0004086691769771278, 1.730785356812703e-06, -0.0027205627411603928, 4.692273432738148e-05, -0.01298384927213192, -0.0006828396581113338, -0.0308330450206995, 0.011630765162408352, -0.010090552270412445, -0.011580384336411953, -0.00416721124202013, -0.02232588827610016, -0.0065351082012057304, 0.011076577007770538, -0.0054231323301792145, 0.02834279276430607, -0.02268575131893158, 0.0019882419146597385, 0.013199767097830772, -0.0017993139335885644, -0.025118423625826836, -0.0258813314139843, 0.03342405706644058, -0.014797558076679707, 0.009198092855513096, 0.00024695583852007985, -0.014725585468113422, -0.062069132924079895, 0.008845427073538303, 0.013005441054701805, -0.0003841535362880677, 0.00019072728173341602, 0.007758641615509987, 0.0102057084441185, 0.014092227444052696, -0.001379174180328846, -0.005833375733345747, -0.02609724923968315, -0.02755109593272209, -0.03342405706644058, -0.022253915667533875, 0.016093064099550247, 0.034690774977207184, 0.026586662977933884, 0.0013665789738297462, -0.027479123324155807, -0.013012638315558434, -0.027176838368177414, -0.035324130207300186, -0.015661228448152542, 0.02268575131893158, 0.0380878783762455, 0.023347897455096245, 0.01708628609776497, 0.014113818295300007, 0.03270433098077774, -0.008658299222588539, 0.02036823332309723, 0.012271321378648281, 0.0019414597190916538, 0.012177756987512112, -0.05095657333731651, -0.012645578943192959, 0.007845008745789528, -0.0018047118792310357, -0.010032975114881992, -0.00885982159525156, 0.004519876558333635, 0.03800151124596596, -0.004383128602057695, 0.03708026185631752, -0.025118423625826836, -0.03158155828714371, -0.00963712576776743, -0.008867018856108189, -0.003330530133098364, -0.002635994926095009, -0.03572717681527138, -0.03330890089273453, 0.025679808109998703, -0.012832706794142723, -0.0014178594574332237, -0.0024776554200798273, 0.0036652025301009417, -0.02195163071155548, 0.012789523229002953, 0.0008542243158444762, -0.0007516634068451822, -0.03440288454294205, -0.004289564676582813, -0.01818026788532734, -0.01771964319050312, 0.0022617375943809748, -0.04249259829521179, 0.020944014191627502, 0.009046950377523899, -0.022829696536064148, -0.01473997998982668, 0.024341119453310966, -0.015315760858356953, -0.013142189010977745, 0.010810278356075287, -0.014797558076679707, -0.000294412748189643, -0.015258182771503925, -0.02569420263171196, -0.040103111416101456, 0.037195418030023575, 0.004444305319339037, -0.018597709015011787, 0.028544316068291664, -0.012379280291497707, -0.01241526659578085, 0.0007084798999130726, -0.007773036137223244, 0.029767850413918495, 0.012451252900063992, 0.03247401863336563, 0.025089634582400322, -0.01753251440823078, -0.02428354136645794, -0.0014367521507665515, -0.018741654232144356, 0.0021105953492224216, 0.00741317356005311, 0.012019417248666286, -0.02200920879840851, -0.004602645058184862, -0.010731108486652374, 0.00015699015057180077, -0.006081681232899427, -0.029364803805947304, 0.03607264533638954, 0.01885681040585041, 0.029681483283638954, -0.009255670942366123, -0.037281785160303116, -0.04381689429283142, -0.03299222141504288, -0.030228475108742714, -0.013998663052916527, 0.01702870801091194, -0.02205239236354828, -0.054958246648311615, 0.008132899180054665, -0.032358862459659576, 0.0427229106426239, 0.0016499708872288465, -0.010939829051494598, 0.0021789693273603916, 0.024197174236178398, -0.011479622684419155, 0.020785674452781677, -0.011544398032128811, 0.020253077149391174, -0.029393592849373817, -0.02100159227848053, 0.03299222141504288, -0.004390325862914324, 0.012343293987214565, -0.015603650361299515, -0.011933050118386745, 0.03636053577065468, -0.03722420707345009, -0.007916981354355812, -0.01635216549038887, 0.018525736406445503, 0.035784754902124405, 0.03708026185631752, -0.023247135803103447, 0.0047285971231758595, -0.02878902293741703, -0.013782745227217674, 0.027522306889295578, 0.006088878493756056, 0.04263654351234436, -0.0049193245358765125, -0.0064847273752093315, 0.00046962095075286925, -0.026845764368772507, 0.013185372576117516, 0.01841058023273945, -0.022829696536064148, -0.014574442990124226, -0.002940078964456916, -0.02755109593272209, 0.03307858854532242, 0.03561202064156532, -0.003334128763526678, 0.014430497772991657, 0.01712946966290474, -0.025391919538378716, 0.020296260714530945, 0.0011407650308683515, -0.01675521209836006, -0.042751699686050415, -0.013998663052916527, -0.008730271831154823, -4.252285179973114e-06, 0.009932213462889194, -0.011659554205834866, -0.020195499062538147, -0.012609592638909817, 0.01464641559869051, 0.0066286725923419, -0.02172131836414337, 0.001387271098792553, -0.011306889355182648, 0.03443167358636856, 0.011170141398906708, -0.013768350705504417, -0.0024254752788692713, 0.01885681040585041, -0.001244225655682385, 0.012559211812913418, 0.014106621034443378, -0.012148967944085598, -0.015459705144166946, -0.0009941209573298693, 0.014581640250980854, 0.03972885385155678, -0.031236089766025543, -0.031178511679172516, 0.030861834064126015, 0.008507156744599342, -0.02277211844921112, 0.018799232318997383, -0.040016744285821915, -0.016452927142381668, -0.02182208001613617, 0.036562059074640274, -0.004735794384032488, -0.017849193885922432, 0.008579129353165627, 0.041974395513534546, -0.02091522514820099, 0.009831451810896397, -0.008104110136628151, -0.02988300658762455, 0.00264139287173748, -0.010529585182666779, -0.007136079017072916, -0.022944850847125053, 0.01414260733872652, 0.029048124328255653, -0.004800569731742144, 0.0017768224934116006, -0.015243788249790668, -0.016208220273256302, -0.023765338584780693, -0.03926822915673256, -0.006020504515618086, 0.019778059795498848, -0.013725167140364647, 0.025751780718564987, -0.007636288646608591, 0.032963432371616364, 0.0036993895191699266, 0.022671356797218323, -0.019461380317807198, -0.019331829622387886, -0.01653929427266121, -0.007028120569884777, 0.013149386271834373, -0.0006041196756996214, -0.027522306889295578, -0.026255588978528976, -0.0005375450709834695, 0.01807950623333454, -0.009248473681509495, 0.034690774977207184, 0.004527073819190264, 0.0050956569612026215, -0.030257264152169228, 0.014768769033253193, -0.001284710131585598, -0.010716713964939117, 0.003933300264179707, -0.01662566140294075, -0.021375849843025208, -0.014898319728672504, 0.032186128199100494, -0.02424035780131817, -0.008881413377821445, 0.01004017237573862, -0.0019162694225087762, -0.019979583099484444, -0.00020545916049741209, -0.019288646057248116, -0.00403046328574419, -0.02222512662410736, 0.03420136123895645, 0.024888111278414726, -0.05446883291006088, 0.02965269424021244, 0.01612185314297676, 0.03823182359337807, -0.031178511679172516, 0.011558792553842068, -0.009183698333799839, -0.0057901921682059765, 0.02100159227848053, 0.0023067204747349024, 0.011364467442035675, 0.005415935069322586, 0.029767850413918495, -0.04678216204047203, 1.6629597666906193e-05, 0.007823416963219643, -0.0345180407166481, -0.025722991675138474, 0.02632756158709526, 0.032589174807071686, 0.000170372542925179, 0.014797558076679707, 0.0045234751887619495, -0.025262368842959404, 0.020152315497398376, -0.0020746090449392796, -0.03595748916268349, 0.0018928783247247338, -0.013487657532095909, 0.0018388988683000207, -0.023175163194537163, -0.01599230244755745, 0.02272893488407135, 0.01116294413805008, -0.016467321664094925, -0.009709098376333714, 0.16801273822784424, -0.006754624657332897, 0.024816138669848442, 0.025032056495547295, -0.02291606180369854, 0.004491087514907122, 0.00999698881059885, -0.0016769606154412031, 0.0027367565780878067, -0.0011128756450489163, 0.00497690262272954, 0.007492343429476023, -0.006347979884594679, -0.01150121446698904, 0.01913030631840229, 0.012767931446433067, -0.020699307322502136, -0.016208220273256302, -0.01120612770318985, 0.003312536980956793, -0.02449945919215679, -0.0019234666833654046, -0.02095840871334076, -0.01835300214588642, 0.02874583937227726, -0.001745334593579173, 0.0045054820366203785, 0.011573187075555325, 0.020972803235054016, -0.012659973464906216, -0.02008034475147724, 0.010378442704677582, -0.021850869059562683, 0.020353838801383972, -0.002457862952724099, -0.020123528316617012, 0.028573105111718178, 0.025535862892866135, 0.028314003720879555, 0.026946526020765305, -0.004253578372299671, -0.02354942075908184, 0.013322120532393456, -0.014516864903271198, -0.012710354290902615, 0.002537032589316368, 0.0030354426708072424, -0.023995650932192802, -0.017143864184617996, 0.007909784093499184, -0.039556119590997696, -0.013725167140364647, 0.041024357080459595, -0.00995380524545908, -0.01407783292233944, -0.016827184706926346, 0.03638932481408119, -0.01635216549038887, -0.007988953962922096, 0.016179431229829788, -0.0037137840408831835, 0.030545154586434364, -0.008068123832345009, 0.01486953068524599, -0.014596034772694111, 0.01599230244755745, -0.03365436941385269, -0.010651938617229462, 0.016208220273256302, -0.0085215512663126, -0.030861834064126015, -0.003533852519467473, 0.005905348341912031, 0.01900075562298298, -0.021850869059562683, -0.03932580724358559, 0.022887272760272026, 0.025305552408099174, 0.02186526358127594, 0.0035410497803241014, -0.002405682811513543, -0.017561303451657295, -0.020281866192817688, 0.0006720437668263912, -0.041801661252975464, -0.020828858017921448, 0.01034245640039444, 0.019331829622387886, -0.0017246424686163664, 0.009572350420057774, -0.0067762164399027824, -0.010284878313541412, -0.008917399682104588, 0.01771964319050312, 0.0006536007858812809, -0.010284878313541412, 0.009781070984899998, 0.02632756158709526, -0.027363967150449753, 0.020843252539634705, -0.0018245043465867639, -0.023750944063067436, 0.0060492935590445995, -0.003384509589523077, 0.020800068974494934, -0.0326179638504982, -0.017978744581341743, 0.001284710131585598, 0.002977864583954215, -0.012602395378053188, -0.005448322743177414, -0.0490277074277401, -0.009082936681807041, -0.015502888709306717, -0.001943259034305811, 0.005865763407200575, 0.0022563396487385035, -0.014200185425579548, 0.0056822337210178375, 0.008118504658341408, -0.004339945502579212, -0.01894317753612995, 0.018597709015011787, -0.005743409972637892, -0.009025358594954014, 0.011565989814698696, -0.03880760446190834, 0.00656029861420393, 0.01735978201031685, -0.050495948642492294, 0.011918655596673489, -0.022397860884666443, 0.01708628609776497, 0.02870265580713749, -0.0030372419860213995, 0.03854850307106972, -0.007780233398079872, -0.024470670148730278, 0.010824672877788544, -0.011789104901254177, -0.0217788964509964, -0.007492343429476023, 0.035468075424432755, -0.021534189581871033, 0.014632021076977253, -0.02072809636592865, 0.0057721990160644054, -0.02783898636698723, 0.021476611495018005, -0.015877146273851395, -0.035381708294153214, 0.017158258706331253, 0.0044011217541992664, -0.005559880286455154, 0.017115075141191483, -0.046983685344457626, -0.017115075141191483, -0.02710486575961113, 0.019101517274975777, 0.04727157577872276, -0.02920646406710148, -0.0007638087845407426, -0.017978744581341743, -0.03342405706644058, 0.0009896226692944765, 0.003044439246878028, -0.18471036851406097, 0.023160768672823906, 0.029825428500771523, -0.030228475108742714, 0.009284459985792637, -0.0012037410633638501, 0.019749270752072334, -0.0070173246785998344, -0.03215733915567398, 0.00709649408236146, 0.013466065749526024, -0.01626579836010933, 4.417456239025341e-06, 0.011753118596971035, -0.019965188577771187, -0.01473997998982668, 0.01748933084309101, 0.015589255839586258, 0.012019417248666286, 0.021807685494422913, 0.027435939759016037, -0.008665496483445168, 0.023333502933382988, 0.02436990849673748, -0.01478316355496645, -0.025478286668658257, 0.014106621034443378, 0.013631602749228477, 0.024470670148730278, -0.013019835576415062, -0.004663821775466204, -0.015819568186998367, 0.013811534270644188, 0.0068625835701823235, -0.008823835290968418, 0.0041204290464520454, 0.003861327888444066, 0.013602813705801964, -0.0006185141974128783, 0.03647569194436073, -0.0035572436172515154, 0.013199767097830772, -0.02487371675670147, 0.015272577293217182, -0.004750188905745745, 0.01607866957783699, 0.039009127765893936, 0.0015177213354036212, 0.014423300512135029, -0.013789942488074303, 0.0020926021970808506, -0.041888028383255005, 0.029220858588814735, 0.032042182981967926, 0.012911876663565636, 0.01061595231294632, -0.006578291766345501, -0.018468158319592476, 0.015171815641224384, -0.018295424059033394, 0.014149804599583149, -0.03480593115091324, -0.0009158508037216961, -0.028227636590600014, -0.009046950377523899, 0.0043291496112942696, 0.0027817394584417343, 0.029033729806542397, -0.013487657532095909, -0.010867856442928314, -0.011170141398906708, -0.019288646057248116, 0.013106202706694603, -0.0015537076396867633, 0.01335090957581997, 0.010551176965236664, -0.007981756702065468, 0.009284459985792637, 0.013998663052916527, -0.0014421500964090228, -0.020656123757362366, 0.06391163170337677, 0.00913331750780344, 0.011645159684121609, 0.033596791326999664, -0.027047287672758102, 0.0003864026803057641, -0.0008933593635447323, -0.008881413377821445, -0.018065111711621284, 0.011789104901254177, -0.02624119445681572, 0.007657880429178476, -0.04813524708151817, 0.004584651906043291, 0.01708628609776497, -0.01780601032078266, -0.009795465506613255, 0.00977387372404337, 0.0055958665907382965, 0.011033393442630768, 0.0009311449830420315, -0.01468959916383028, -0.01173152681440115, 0.025722991675138474, 0.011717132292687893, -0.015445311553776264, 0.0150998430326581, 0.027392756193876266, 0.015776384621858597, -0.0020422213710844517, 0.005329567939043045, -0.003299941774457693, 0.01450966764241457, -0.0015950917731970549, 0.006693447940051556, -0.0264139287173748, -0.0077514443546533585, 0.01584835723042488, 0.011796302162110806, -0.0023049211595207453, -0.005189221352338791, -0.013761153444647789, 0.02801172062754631, -0.014243368990719318, 0.0033629178069531918, -0.08273965120315552, -0.014171396382153034, 0.016510505229234695, 0.026802580803632736, -0.00860791839659214, 0.004548665601760149, -0.02496008388698101, 0.018108295276761055, -0.016913551837205887, 0.029350409284234047, 0.005430329591035843, -0.04724278673529625, -0.03353921324014664, 0.034546829760074615, -0.009241276420652866, 0.01155159529298544, -0.04154255986213684, 0.013969874009490013, -0.008463973179459572, 0.023678971454501152, -0.02059854567050934, -0.02136145532131195, 0.019936399534344673, 0.0022581389639526606, -0.0024290739092975855, 0.007262031082063913, -0.022282704710960388, 0.010810278356075287, 0.016380954533815384, 0.03437409549951553, 0.03834697976708412, -0.002911289921030402, 0.025118423625826836, -0.00027327079442329705, 0.01972048170864582, 0.0035608422476798296, 0.00022862532932776958, -0.0308330450206995, 0.03233007341623306, -0.00021490556537173688, -0.021419033408164978, 0.01839618571102619, -0.010558374226093292, -0.016337770968675613, -0.014394511468708515, -0.015704412013292313, -0.01321416161954403, 0.018324213102459908, 0.012544817291200161, 0.005412336438894272, -0.016107458621263504, 0.012911876663565636, 0.026269983500242233, -0.025478286668658257, 0.013127794489264488, 0.014581640250980854, 0.018122689798474312, 0.03722420707345009, -0.003598627867177129, 0.01348046027123928, 0.014531259424984455, -0.0017417359631508589, -0.02195163071155548, 0.043615370988845825, 0.012508830986917019, 0.016467321664094925, -0.034143783152103424, 0.0016337770503014326, 0.024974478408694267, -0.022570595145225525, 0.00020872041932307184, 0.05006411299109459, -0.006193238776177168, 0.02519039623439312, -0.02327592484652996, -0.01708628609776497, -0.01571880653500557, 0.001959452871233225, 0.003076826920732856, -0.03302101045846939, -0.01895757205784321, 0.002452465007081628, -0.010543979704380035, -9.207426955981646e-06, 0.03529534116387367, 0.006470332853496075, 0.009212487377226353, -0.0026845764368772507, 0.028170060366392136, -0.01763327606022358, 0.028717050328850746, 0.0203106552362442, 0.016510505229234695, -0.018468158319592476, -0.010788686573505402, 0.0004187903250567615, -0.008723074570298195, 0.008341619744896889, -0.007996151223778725, -0.020699307322502136, -0.07352716475725174, -0.008528748527169228, -0.056512851268053055, 0.04485329985618591, -0.028717050328850746, -0.007629091385751963, 0.00736998999491334, -0.029508749023079872, 0.020742490887641907, -0.006045694928616285, 0.00972349289804697, 0.0108894482254982, -0.0010211106855422258, 0.0033449246548116207, -0.008615115657448769, -0.008125701919198036, 0.0031703913118690252, -0.022858483716845512, 0.04136982560157776, 0.008852624334394932, 0.026313167065382004, 0.0101553276181221, -0.01537333894520998, -0.006517115049064159, 0.010004186071455479, -0.029393592849373817, 0.0067258356139063835, 0.019346224144101143, -0.009802662767469883, 0.028803417459130287, 0.00039270028355531394, -0.01976366527378559, 0.012739143334329128, -0.01302703283727169, -0.0015959914308041334, 0.015430917032063007, 0.016596872359514236, -0.002279730746522546, -0.035151395946741104, 0.016280192881822586, 0.025075240060687065, -0.020281866192817688, -0.040016744285821915, -0.010587163269519806, -0.00806092657148838, -0.003890116699039936, -0.013674786314368248, 0.006837393157184124, -0.008262449875473976, 0.01437291968613863, 0.022944850847125053, -0.008204871788620949, -0.0030696296598762274, -0.0009212487493641675, -0.021692529320716858, -0.017618881538510323, 0.006952549330890179, -0.030573943629860878, -0.0127319460734725, 0.0037353758234530687, 0.00020455950289033353, -0.014970292337238789, 0.00035334029234945774, -0.019015150144696236, 0.029177675023674965, -0.007305214647203684, -0.002135785762220621, -0.010234497487545013, -0.0120482062920928, 0.008413592353463173, 0.013739561662077904, 0.004221190698444843, -0.002033224795013666, -0.03299222141504288, 0.025866936892271042, 0.008622312918305397, 0.030458787456154823, 0.010954223573207855, -0.017561303451657295, 0.02150540053844452, 0.00569302961230278, 0.04240623116493225, 0.02855871059000492, -0.0054447241127491, -0.021764501929283142, 0.02277211844921112, 0.01505665946751833, 0.004026864655315876, -0.02973906137049198, 0.029508749023079872, -0.010457612574100494, -0.005236003547906876, -0.04171529412269592, -0.0043615372851490974, 0.00922688189893961, 0.014696796424686909, 0.03066031076014042, 0.038692448288202286, -0.015877146273851395, 0.008557537570595741, 0.011350072920322418, 0.005203615874052048, 0.005030882079154253, 0.010961420834064484, -0.020382627844810486, -0.01097581535577774, -0.032272495329380035, 0.024153990671038628, 0.025838147848844528, 0.0014079632237553596, -0.00707130366936326, 0.016524899750947952, 0.009298854507505894, 0.017921166494488716, -0.011724329553544521, 0.018554525449872017, -0.035784754902124405, 0.0010624949354678392, 0.023995650932192802, 0.013876309618353844, -0.05170508474111557, 0.013365304097533226, 0.005164030939340591, 0.021937236189842224, -0.0006999331526458263, -0.014423300512135029, 0.022743329405784607, 0.0054915063083171844, -0.0007606599829159677, -0.015214999206364155, -0.003298142459243536, -0.006801406852900982, -0.028184454888105392, 0.0017885180423036218, -0.02760867401957512, -0.00351945823058486, -0.02701849862933159, 0.01616503670811653, 0.014085030183196068, 0.015474099665880203, 0.01004017237573862, 0.07456357032060623, 0.014228974469006062, -0.012098587118089199, 0.016366560012102127, 0.0003031844098586589, 0.021649345755577087, 0.022973639890551567, 0.018065111711621284, -0.00806092657148838, -0.03189823776483536, -0.01029927283525467, -0.008658299222588539, -0.010356850922107697, -0.03158155828714371, 0.028803417459130287, -0.004886936862021685, -0.0072332420386374, 0.027263205498456955, -0.02504645101726055, 0.01771964319050312, 0.0008348816772922873, 0.001649071229621768, 0.0001620507100597024, -0.0028411168605089188, -0.021922841668128967, -0.0025982093065977097, -0.003720981301739812, -0.01759009249508381, -0.020713701844215393, -0.039239440113306046, -0.005970123689621687, 0.012796720489859581, -0.013969874009490013, -0.03512260690331459, -0.0017894176999107003, -0.018655287101864815, 0.010212905704975128, 0.0170431025326252, 0.035554442554712296, -0.0018928783247247338, -0.018439369276165962, 0.03811666741967201, -0.017431754618883133, -0.009442799724638462, 0.0009055047412402928, -0.011652356944978237, -0.018885599449276924, -0.012249729596078396, -0.04255017638206482], "e14c01b1-2eb3-482a-9383-fde15faf6a52": [0.0012893532402813435, -0.02067192643880844, 0.01635999046266079, 0.0025417169090360403, -0.05132048577070236, 0.0069681438617408276, -0.027139829471707344, -0.024913404136896133, -0.02433566190302372, -0.02857714146375656, 0.030747199431061745, 0.023194266483187675, 0.00577390706166625, -0.00538991903886199, 0.0058795916847884655, 0.008609779179096222, 0.014218113385140896, 0.014239250682294369, 0.009025472216308117, -0.021686498075723648, -0.0009212182485498488, 0.021320125088095665, -0.02677345462143421, -0.0017517238156870008, -0.03517186641693115, 0.0016204986022785306, 0.004886155482381582, -0.008828194811940193, 0.006090960931032896, -0.028887148946523666, 0.03793375939130783, -0.022757437080144882, -0.0221937857568264, -0.016740454360842705, -0.013788329437375069, 0.0012382722925394773, -0.011089847423136234, -0.013111947104334831, 0.02058737725019455, -0.00714428536593914, 0.012682163156569004, 0.02711164578795433, -0.004012495279312134, -0.008010899648070335, -0.004329549614340067, 0.024082018062472343, 0.009363663382828236, -0.026082981377840042, -0.017839575186371803, 0.028746236115694046, 0.028943514451384544, 0.01607816480100155, -0.024096108973026276, -0.024842947721481323, 0.005055251065641642, -0.00023911161406431347, -0.0011184962932020426, 0.01809321902692318, 0.005953570827841759, -0.026843911036849022, 0.01941780000925064, -0.009180476889014244, -0.028760327026247978, -0.009560941718518734, 0.009131157770752907, -0.021728772670030594, 0.0041604540310800076, -0.03452366590499878, 0.005611856933683157, 0.013936287723481655, 0.015021317638456821, 0.017515476793050766, -0.004917860962450504, -0.01906551793217659, 0.03745465353131294, -0.02391292341053486, 0.0009652535081841052, -0.011963507160544395, 0.01774093694984913, -0.02412429265677929, 0.03015536442399025, -0.005735156126320362, -0.0016169757582247257, 0.004632512107491493, 0.019671443849802017, 0.009828676469624043, -0.005569583270698786, 0.01886823959648609, -0.01614862121641636, -0.005305371712893248, 0.0016847901279106736, 0.01126598846167326, 0.04097747802734375, -0.005516740959137678, 0.0039385161362588406, 0.008926833979785442, -0.030127182602882385, 0.029168974608182907, -0.0007891123532317579, -0.008849331177771091, -0.005555491894483566, 0.005044682417064905, -0.013414910063147545, -0.0065207453444600105, 0.0024377936497330666, -0.03415729105472565, 0.00949753075838089, 0.006020504515618086, -0.012597614899277687, -0.0010938365012407303, -0.010145730338990688, 0.0091170659288764, -0.001995679223909974, -0.0034453209955245256, -0.010068228468298912, 0.006080392748117447, 0.03235360607504845, -0.02759074978530407, -0.020770564675331116, -0.019178248941898346, 0.03077538125216961, 0.03689100220799446, 0.011118029244244099, -0.03063446842133999, 0.006316421553492546, 0.0180368535220623, 0.02808394469320774, -0.019121883437037468, -0.012245332822203636, -0.011921233497560024, 0.04934770613908768, 0.025702517479658127, 0.011836685240268707, 3.459522486082278e-05, -0.001499841921031475, 0.013865831308066845, -0.001664533861912787, 8.47128831082955e-05, -0.00932843517512083, -0.009997772052884102, 0.023208357393741608, 0.02120739407837391, 0.001159008825197816, -0.01676863804459572, 0.02558978646993637, 0.007397928275167942, -0.002118977950885892, 0.0004117299395147711, -0.004974226001650095, -0.013774238526821136, -0.006887119263410568, -0.01767048053443432, -0.006369263865053654, 0.022771527990698814, -0.020643742755055428, 0.009539804421365261, -0.005921865347772837, 0.020643742755055428, 0.00345765077508986, -0.0067673432640731335, -0.0045127361081540585, 0.02502613514661789, -0.01692364178597927, -0.020009635016322136, 0.013936287723481655, 0.021601950749754906, 0.012661025859415531, -0.018558232113718987, -0.00852523185312748, -0.024983860552310944, -0.011709864251315594, 0.012428519316017628, -0.025956159457564354, 0.006601770408451557, -0.012985126115381718, 0.024518849328160286, 0.018135493621230125, 0.0022669367026537657, -0.027985306456685066, 0.008278634399175644, -0.014366072602570057, 0.030606286600232124, 0.014267433434724808, 0.043570276349782944, -0.00736974598839879, 0.0025910362601280212, 0.018332771956920624, -0.004375346004962921, 0.019840538501739502, -0.003515777410939336, 0.03381910175085068, 0.017656389623880386, -0.0024448391050100327, 0.0013642131816595793, -0.6155076622962952, -0.053011439740657806, -0.005551969166845083, -0.025392508134245872, 0.02134830690920353, 0.01094893366098404, 0.02440611831843853, 0.01788184978067875, -0.04929133877158165, -0.0036461218260228634, -0.015162230469286442, 0.01954462192952633, -0.004026586655527353, 0.005227869376540184, -0.007891123183071613, -0.023617004975676537, 0.015415873378515244, 0.004209773615002632, -0.01161827053874731, 0.01519041322171688, -0.030944477766752243, 0.005601288750767708, 0.012294652871787548, -0.003256849944591522, 0.01004709117114544, -0.000529744487721473, -0.015965433791279793, -0.011554859578609467, -0.008053173311054707, 0.00615437189117074, -0.020263278856873512, -0.019164158031344414, 0.023462001234292984, 0.0008564863819628954, 0.04379573464393616, -0.025758882984519005, -0.01926279626786709, 0.010152775794267654, 0.004547964781522751, 0.04292207583785057, -0.007771347649395466, -0.020023725926876068, 0.02635071612894535, -0.0071865590289235115, 0.006644044071435928, -0.0011123314034193754, -0.00039411583566106856, -0.04044200852513313, 0.0119987353682518, -0.03883560001850128, 0.014753582887351513, -0.02240515500307083, -0.006337558850646019, 0.016627725213766098, 0.018741419538855553, -0.008800012059509754, 0.015472238883376122, -0.011829639784991741, 0.00395260751247406, -0.01070938166230917, -0.017769118770956993, 0.010582560673356056, -0.004086474888026714, 0.01998145319521427, -0.011146211996674538, 0.0014285047072917223, -0.024857038632035255, -0.0038997652009129524, 0.012541250325739384, -0.021813319995999336, -0.004886155482381582, 0.02857714146375656, -0.011449174955487251, 0.013858785852789879, 0.015528604388237, 0.007686799857765436, 0.025758882984519005, -0.02633662521839142, 0.012343971990048885, 0.0025769451167434454, 0.008659099228680134, -0.012971034273505211, -0.02822485752403736, 0.00047205828013829887, -0.00783475860953331, -0.0008859899826347828, -0.02150331251323223, 0.006647567264735699, 0.019093701615929604, -0.015345416963100433, 0.01490858756005764, 0.02564615197479725, -0.00897615309804678, -0.04824858531355858, -0.011850777082145214, -0.0012532443506643176, -0.0067391605116426945, 0.015331326052546501, 0.021038299426436424, -0.02523750439286232, -0.028098037466406822, -0.0027724618557840586, 0.011780320666730404, -0.0002668538363650441, 0.006499608512967825, 0.013273997232317924, -0.00213130796328187, 0.01063892524689436, 0.009307298809289932, -0.01032891683280468, -0.023039262741804123, -0.012534204870462418, -0.010695290751755238, -0.022221967577934265, -0.0007794246193952858, -0.037398289889097214, 0.01206919178366661, -0.009553896263241768, 0.011590087786316872, -0.012921715155243874, 0.008257497102022171, 0.013245814479887486, 0.03170540928840637, -0.007320426404476166, 0.028450319543480873, 0.022010598331689835, 0.0016592496540397406, 0.00949753075838089, -0.0012435565004125237, 0.005298325791954994, -0.0012735005002468824, 0.014626760967075825, 0.010343008674681187, -0.013429001905024052, 0.006164940539747477, -0.0036813500337302685, 0.008349090814590454, -0.008194086141884327, 0.03314271941781044, -0.013548777438700199, 0.015204504132270813, -0.014781765639781952, -0.004209773615002632, -0.01025846041738987, -0.005791521165519953, 0.010941888205707073, -0.017797302454710007, 0.012139648199081421, 0.0012180160265415907, 0.012076237238943577, 0.01609225571155548, -0.009469348005950451, 0.009899132885038853, -0.005742201581597328, 0.009927315637469292, 0.01161827053874731, -0.010737564414739609, -0.03204359859228134, 0.007433156482875347, -0.01991099677979946, 0.004008972551673651, 0.01802276261150837, -0.00897615309804678, -0.014225159771740437, -0.0162331685423851, -0.018825966864824295, -0.004928429611027241, -0.00904660951346159, -0.001515694661065936, -0.03235360607504845, -0.009870950132608414, -0.0034664578270167112, 0.010871431790292263, -0.005115139298141003, -0.021376490592956543, 0.025392508134245872, -0.039342887699604034, -0.0026209803763777018, 0.009962543845176697, -0.011484403163194656, -0.01299921702593565, 0.005869023036211729, -0.02468794398009777, -0.008024990558624268, 0.010674153454601765, -0.008743646554648876, 0.016895459964871407, -0.006425629369914532, -0.008412501774728298, 0.0063269902020692825, -0.019121883437037468, 0.009307298809289932, 0.0010154537158086896, -0.013886968605220318, -0.005995844956487417, -0.0062952847220003605, -0.01650090329349041, -0.003660213202238083, -0.010343008674681187, 0.01865687035024166, 0.019023245200514793, 0.02081283926963806, 0.011893050745129585, -0.026195712387561798, 0.01268920861184597, -0.0321563296020031, 0.009504576213657856, -0.013605142943561077, 0.013675599358975887, 0.004209773615002632, 0.013147175312042236, -0.021517403423786163, -0.013908104971051216, 0.002147160703316331, 0.011625315994024277, 0.02843622677028179, -0.019079608842730522, 0.018487775698304176, 0.011040527373552322, -0.004812176339328289, -0.0022669367026537657, -0.006277670618146658, 0.048981331288814545, -0.004847404547035694, -0.009575032629072666, 0.007559978403151035, -0.018220040947198868, 0.008201131597161293, -0.0009934360859915614, 0.008870468474924564, 0.008172949776053429, 0.005692881997674704, 0.01252011302858591, 0.010293688625097275, 0.007982716895639896, 0.010610743425786495, 0.04283752664923668, -0.024166565388441086, -0.000997839611954987, 0.008405455388128757, 0.01637408137321472, 0.008687281981110573, 0.01559906080365181, -0.018332771956920624, 0.013802420347929, 0.018980970606207848, 0.04917861148715019, 0.01630362495779991, 0.01664181612432003, 0.02737938053905964, 0.00015599500329699367, -0.004234433174133301, -0.024082018062472343, 0.019389618188142776, 0.012217150069773197, 0.01768457144498825, 0.012400337494909763, 0.015768155455589294, 0.046078525483608246, 0.027097554877400398, 0.02891533076763153, 0.006781434174627066, 0.014697217382490635, 0.0015324280830100179, 0.008912742137908936, -0.013436047360301018, -0.04041382670402527, -0.007334517780691385, 0.012456702068448067, -0.0047346740029752254, 0.006728591863065958, -0.01466903556138277, -0.015655426308512688, 0.010004817508161068, 0.018952788785099983, -0.0026192190125584602, -0.003279748372733593, 0.0041005657985806465, 0.05213778093457222, -0.007151330821216106, -0.012844213284552097, -0.005428670439869165, 0.026435263454914093, 0.018417319282889366, -0.0035809497348964214, 0.002377905650064349, -0.010244369506835938, 0.0269002765417099, 0.010829158127307892, -0.004463416989892721, -0.0019128929125145078, 0.003977267071604729, -0.00783475860953331, 0.007813621312379837, -0.000420757191022858, -0.0025734221562743187, 0.005470944102853537, 0.015317234210669994, -0.00014575679961126298, -0.011695772409439087, -0.02737938053905964, 0.014098337851464748, -0.002446600701659918, -0.016613634303212166, 0.036778271198272705, -0.014556304551661015, -0.0016363513423129916, -0.017163194715976715, -0.002111932495608926, -0.01969962567090988, -0.017022281885147095, -0.0013545254478231072, -0.005960616748780012, -0.0013175358762964606, 0.001184549299068749, -0.011484403163194656, -0.012780802324414253, -0.005953570827841759, 0.012738527730107307, -0.006721546407788992, -0.04514849931001663, -0.027266649529337883, -0.014795856550335884, 0.006193122826516628, -0.019812356680631638, 0.03410092741250992, -0.007292243652045727, -0.006136757787317038, -0.021334215998649597, 0.022644706070423126, -0.01991099677979946, -0.0026474015321582556, 0.005196163896471262, -0.013950379565358162, -0.01941780000925064, -0.007693845313042402, 0.019220521673560143, -0.024730218574404716, 0.02474430948495865, 0.008715463802218437, -0.005041159689426422, -0.03548187389969826, -2.4590955945313908e-05, 0.02274334616959095, -0.01185782253742218, -0.012724436819553375, 0.019953269511461258, 0.01616271212697029, 0.00426261592656374, 0.0005024426500312984, 0.012090329080820084, 0.0007120505906641483, 0.027647115290164948, -0.014056064188480377, -0.01588088646531105, 0.02191196009516716, 0.017374563962221146, 0.020488739013671875, -0.027703480795025826, 0.020953752100467682, 0.027957124635577202, -0.0005156532279215753, 0.037821028381586075, 0.005217300727963448, -0.00417806813493371, 0.03229724243283272, -0.004357731901109219, 0.007461339235305786, 0.030803564935922623, 0.0012963989283889532, -0.0017904748674482107, 0.0164304468780756, 0.0019780651200562716, -0.010688245296478271, 0.017867758870124817, -0.007426111027598381, -0.016120437532663345, -0.020700108259916306, 0.004202727694064379, 0.015725882723927498, -0.013823557645082474, -0.01316831260919571, -0.0020361917559057474, -0.00426261592656374, -0.007235878612846136, -0.012773755937814713, -0.014020835980772972, -0.017290014773607254, -0.022841984406113625, -0.03342454507946968, -0.031592678278684616, -0.01809321902692318, -0.02302517183125019, 0.004928429611027241, 0.0005332673317752779, -0.01809321902692318, -0.04168204218149185, 0.02475840039551258, 0.023264722898602486, 0.027576658874750137, 0.024857038632035255, -0.0015623719664290547, 0.023321088403463364, 0.01504950039088726, -0.012005780823528767, -0.02488522231578827, 0.0024254636373370886, 0.019812356680631638, 0.001956928288564086, 0.004903769586235285, 0.023208357393741608, -0.009307298809289932, -0.010660062544047832, 0.0023039262741804123, 0.019445983693003654, 0.010462784208357334, 0.00977935642004013, 0.008391364477574825, 0.00918752234429121, -0.0014619715511798859, 0.015965433791279793, 0.005671745166182518, 0.0006283835391514003, -0.0110968928784132, 0.03917379304766655, -0.026942551136016846, 0.0005861097015440464, -0.00939889159053564, -0.02557569555938244, -0.017867758870124817, 0.017656389623880386, 0.020080091431736946, -0.018065037205815315, -0.001548280706629157, -0.0024413163773715496, -0.024490665644407272, 0.005326508544385433, -0.009384800679981709, 0.026815729215741158, -0.007827713154256344, 0.011963507160544395, -0.007105533964931965, -0.02587161213159561, -0.0020661356393247843, -0.006792002823203802, 0.005375828128308058, 0.020361917093396187, 0.002793598687276244, 0.0171350110322237, -0.007235878612846136, -0.020981933921575546, -0.03204359859228134, -0.019868722185492516, 0.02656208537518978, -0.011942369863390923, 0.012646934948861599, -0.010730518959462643, -0.013097856193780899, -0.0483894981443882, -0.006179031450301409, 0.0009458779823035002, -0.0022264241706579924, -0.006865981966257095, 0.012682163156569004, -0.002758370479568839, 0.015754064545035362, -0.008032036945223808, -0.002978546777740121, -0.02398337982594967, -0.02981717512011528, -0.006721546407788992, -0.007165422197431326, 0.010237324051558971, 0.036158256232738495, 0.016951823607087135, 0.0005469182506203651, -0.020206913352012634, -0.003663735929876566, -0.039427436888217926, -0.032550886273384094, -0.02467385306954384, 0.010033000260591507, 0.03813103586435318, 0.019319161772727966, 0.027773937210440636, -0.0009907940402626991, 0.02260243333876133, -0.006147326435893774, 0.015077682211995125, 0.0050200228579342365, 0.0016654145438224077, -0.004466939717531204, -0.03057810477912426, 0.0017658150754868984, 0.0308599304407835, 0.018318679183721542, -0.00020498427329584956, -0.018825966864824295, -0.00814476702362299, 0.032269060611724854, -0.014485848136246204, 0.007228832691907883, -0.009920269250869751, -0.0360737070441246, -0.011463265866041183, 0.010490966960787773, -0.01542996522039175, 0.007119625341147184, -0.027830302715301514, -0.028098037466406822, 0.013203540816903114, -0.010075273923575878, 0.016514994204044342, 0.008179995231330395, 0.018318679183721542, -0.008440683595836163, 0.0034946405794471502, -0.016134530305862427, -0.008419547230005264, -0.033170901238918304, -0.019572805613279343, -0.013330362737178802, -0.020263278856873512, 0.004470462445169687, -0.021728772670030594, 0.01140690129250288, 0.0050200228579342365, -0.01254829578101635, -0.007616343442350626, 0.01614862121641636, -0.038441043347120285, -0.013231723569333553, 0.015556786209344864, -0.019586896523833275, -0.023884739726781845, -0.020136456936597824, -0.016557268798351288, -0.021940141916275024, 0.0030948000494390726, 0.023321088403463364, -0.02502613514661789, 0.007813621312379837, -0.023278813809156418, -0.041146572679281235, -0.008539322763681412, -0.008405455388128757, 0.015979524701833725, 0.0016839094460010529, 0.02883078344166279, 0.025392508134245872, -0.008940924890339375, -0.00932843517512083, -0.023490184918045998, -0.006897687446326017, -0.0007362700416706502, 0.025138866156339645, 0.02225015126168728, -0.0317617729306221, -0.02675936371088028, 0.013083764351904392, -0.009279116056859493, -0.0028288268949836493, -0.035397324711084366, 0.03170540928840637, 0.022066963836550713, 0.010941888205707073, -0.015345416963100433, -0.007877032272517681, -0.04018836468458176, -0.03009900078177452, -0.02217969484627247, -0.006235396955162287, -0.015683608129620552, 0.011244851164519787, -0.039483800530433655, 0.019460074603557587, -0.02981717512011528, 0.04278116300702095, 0.003170540789142251, -0.013421955518424511, 0.009582079015672207, 0.023208357393741608, 0.00856750551611185, 0.01878369227051735, -0.0005059654358774424, 0.013386727310717106, -0.01720546744763851, 0.001281426870264113, 0.016599541530013084, 0.005706973373889923, 0.007954534143209457, 0.0039103333838284016, -0.004311935510486364, 0.030211729928851128, -0.028196675702929497, -2.6861525839194655e-05, -0.0003463375323917717, 0.027562567964196205, 0.03049355559051037, 0.03412910923361778, -0.019784174859523773, -0.0035879951901733875, -0.006644044071435928, -0.005220823921263218, 0.018008671700954437, 0.011287124827504158, 0.0368628203868866, -0.007531795650720596, -0.005065819714218378, 0.005636516958475113, -0.04035745933651924, -0.01788184978067875, 0.009504576213657856, -0.018262315541505814, 0.0035298687871545553, -0.019798265770077705, -0.008391364477574825, 0.01991099677979946, 0.017008189111948013, -0.017726846039295197, 0.019389618188142776, -0.006598247680813074, -0.013499458320438862, 0.022926531732082367, -0.006038118619471788, -0.00668984092772007, -0.05402601510286331, 0.00880705751478672, -0.003970221616327763, 0.009455257095396519, 0.02537841722369194, -0.030521739274263382, -0.013668552972376347, -0.00995549838989973, 0.020488739013671875, 0.008490003645420074, -0.026745272800326347, -0.004227387718856335, 0.008088401518762112, 0.019530531018972397, 0.002816497115418315, -0.0180368535220623, 0.0067673432640731335, 0.01345013827085495, -0.026745272800326347, 0.012724436819553375, 0.018135493621230125, -0.011604178696870804, -0.003942038863897324, -0.01692364178597927, 0.010589606128633022, 0.03314271941781044, -0.02905624359846115, -0.023673370480537415, 0.02842213585972786, 0.0054392386227846146, -0.01871323585510254, -0.006358695682138205, -0.041231121867895126, -0.016331806778907776, -0.008750692009925842, 0.015556786209344864, 0.0035950408782809973, -0.007968625985085964, 0.01690955087542534, 0.04049837216734886, -0.01699409820139408, 0.002738995011895895, 0.004361255094408989, -0.033593639731407166, 0.0034594121389091015, -0.01428152434527874, -0.016190893948078156, -0.019516440108418465, 0.0017975204391404986, 0.008870468474924564, 0.007045646198093891, 0.02141876332461834, -0.0010903137736022472, -0.0193332526832819, -0.020841021090745926, -0.04173840582370758, -0.015754064545035362, 0.01614862121641636, 0.0010867909295484424, 0.009272070601582527, 0.0035686197225004435, 0.05067228525876999, 0.010526195168495178, 0.027858484536409378, -0.009011381305754185, -0.0074402024038136005, 0.018882332369685173, 0.003942038863897324, 0.025617968291044235, -0.00125588639639318, -0.016190893948078156, -0.011801457032561302, 0.004414097405970097, 0.020080091431736946, 0.023546548560261726, 0.002855248050764203, -0.0033678188920021057, -0.006062778644263744, -0.018544141203165054, 0.004660694859921932, 0.01760002411901951, -0.010892569087445736, 0.01969962567090988, -0.04249933734536171, 0.009652535431087017, 0.007204173132777214, -0.0019005630165338516, -0.007503612898290157, 0.009152294136583805, 0.020981933921575546, -0.012816030532121658, -0.022757437080144882, -0.033029988408088684, -0.01428152434527874, -0.012837166897952557, -0.032550886273384094, 0.04058292135596275, 0.0050482056103646755, -0.030042635276913643, 0.033452726900577545, 0.0029415572062134743, 0.03697555139660835, -0.019727809354662895, -0.0010216187220066786, -0.009441166184842587, -0.0038680597208440304, 0.03412910923361778, -0.001394157181493938, -0.00419215951114893, -0.0016328284982591867, 0.011702817864716053, -0.021235577762126923, -0.0020502828992903233, -0.02134830690920353, -0.018558232113718987, -0.026054799556732178, 0.03190268576145172, 0.03584824874997139, -0.010054136626422405, 0.005030591506510973, -0.012597614899277687, -0.016345899552106857, 0.008363181725144386, 0.005041159689426422, -0.019657352939248085, 0.011935324408113956, -0.015993617475032806, 0.0069364383816719055, -0.0321563296020031, -0.03494640439748764, 0.02198241651058197, 0.022433336824178696, 0.0019481211202219129, -0.007397928275167942, 0.23132264614105225, -0.015415873378515244, -0.010004817508161068, 0.04345754534006119, -0.027055280283093452, 0.005699927918612957, 0.002571660792455077, -0.019502349197864532, -0.0032815097365528345, 0.015796339139342308, 0.014964952133595943, -0.004815699066966772, -0.020066000521183014, -0.011738046072423458, -0.004266138654202223, -0.00403715530410409, -0.025251595303416252, -0.024222930893301964, -0.014274478890001774, -0.002645640168339014, 0.002104886807501316, 0.009314344264566898, -0.00977935642004013, -0.017642298713326454, 0.023729735985398293, -0.019643262028694153, 0.01871323585510254, -0.0020678972359746695, 0.02752029336988926, 0.013654462061822414, -0.01796639710664749, 0.004001927096396685, -0.010772792622447014, 0.014013790525496006, 0.0065771108493208885, -0.01126598846167326, 0.013111947104334831, 0.011132121086120605, 0.044894855469465256, 0.026252077892422676, 0.007123148068785667, -0.04111839085817337, 0.01383060310035944, -0.004995363298803568, 0.004872064106166363, 0.010934842750430107, 0.0016539654461666942, -0.026674816384911537, -0.019178248941898346, 0.03520004823803902, -0.03314271941781044, -0.016825003549456596, 0.03418547660112381, 0.015768155455589294, 0.007087919861078262, -0.009603215381503105, 0.03556642308831215, -0.0067708659917116165, 0.012400337494909763, 0.02871805429458618, -0.004435234237462282, 0.026576176285743713, -0.005671745166182518, 0.009152294136583805, -0.03077538125216961, 0.012724436819553375, -0.007066783029586077, 0.0011369911953806877, 0.019784174859523773, -0.021235577762126923, -0.0025293868966400623, 0.0013756623957306147, 0.01692364178597927, 0.013978562317788601, -0.030211729928851128, -0.02677345462143421, 0.023039262741804123, 0.021446947008371353, 0.007313380483537912, 0.01616271212697029, -0.009102975018322468, -0.017219558358192444, 0.001725302543491125, -0.02233469858765602, -0.03522823005914688, -0.031592678278684616, 0.0013245814479887486, 0.013774238526821136, 0.010970070958137512, 0.0006869505159556866, -0.00540753360837698, -0.02088329568505287, -0.013823557645082474, 0.0028147355187684298, -0.0052454834803938866, 0.004773425403982401, 0.004692400339990854, 0.02039009891450405, -0.0033114536199718714, 0.01559906080365181, -0.029028061777353287, -0.004171022679656744, 0.014020835980772972, 1.359589532512473e-05, 0.00046809512423351407, -0.036299169063568115, -0.003205768996849656, -0.003698964137583971, 0.013915151357650757, -0.012646934948861599, -0.010702336207032204, -0.03195904940366745, -0.019840538501739502, -0.0091170659288764, -0.010441647842526436, 0.010617788881063461, 0.016444537788629532, -0.0049883173778653145, -0.0004335273988544941, -0.004621943924576044, 0.012118510901927948, -0.039681077003479004, -0.0002948162436950952, 0.006242442410439253, -0.004882632754743099, -0.013527640141546726, -0.04576851800084114, 0.010054136626422405, -0.0004742600431200117, -0.04410574585199356, 0.026998916640877724, -0.004174545407295227, 0.0223910640925169, -0.002330347429960966, -0.012914669699966908, 0.006344604305922985, 0.00880705751478672, 0.002959171310067177, -0.00039521671715192497, 0.0074402024038136005, 0.021531494334340096, -0.022433336824178696, 0.04083656519651413, -0.006538359448313713, -0.005935956723988056, -0.004808653611689806, 0.003566858358681202, 0.0010735803516581655, 0.02005190961062908, -0.03474912792444229, -0.04348572716116905, -0.004005449824035168, 0.0063199447467923164, 0.001548280706629157, 0.027703480795025826, -0.0454866923391819, -0.012611706741154194, -0.03376273438334465, 0.01774093694984913, -0.003956130240112543, -0.046557627618312836, -0.00273723341524601, 0.003144119633361697, -0.027759846299886703, -0.017416836693882942, 0.009272070601582527, -0.18251042068004608, 0.037201009690761566, 0.024730218574404716, -0.021306034177541733, 0.007820666767656803, 0.024434300139546394, 0.030972659587860107, -0.014077200554311275, -0.009596169926226139, -0.003277986776083708, 0.03804649040102959, -0.014013790525496006, -0.015909068286418915, 0.008201131597161293, -0.018346862867474556, -0.01535950880497694, -0.009659580886363983, 0.016472721472382545, 0.021179212257266045, 0.024039745330810547, 0.03548187389969826, -0.027773937210440636, -0.003026104997843504, 0.028816692531108856, -0.01816367544233799, -0.005414579063653946, 0.010540287010371685, 0.01514813955873251, 0.01171690970659256, -0.014711309224367142, 0.0017464394913986325, -0.027928940951824188, 0.028267132118344307, 0.010110502131283283, -0.005816180724650621, -0.011907141655683517, -0.015697699040174484, 0.010293688625097275, -0.013978562317788601, 0.007820666767656803, 0.006196645554155111, 0.008722510188817978, -0.017374563962221146, 0.03370637074112892, 0.0032198603730648756, 0.02967626228928566, 0.024575212970376015, -0.030183548107743263, 0.010300735011696815, -0.017022281885147095, 0.0017332289135083556, -0.03522823005914688, 0.013922196812927723, 0.003478787839412689, 0.008095446974039078, 0.00807431060820818, 0.0013113708700984716, 0.008292725309729576, -0.0012021634029224515, 0.0017851905431598425, 0.011174394749104977, -0.042189329862594604, 0.018685054033994675, -0.03015536442399025, 0.005386396311223507, 0.020347826182842255, -0.0017904748674482107, 0.017994580790400505, -0.02987353876233101, -0.012083282694220543, -0.006281193345785141, -0.03353727608919144, 0.009539804421365261, 0.012710345908999443, 0.021249668672680855, -0.002490635961294174, -0.012886486947536469, -0.01321058627218008, -0.009342527016997337, 0.0019780651200562716, -0.01504950039088726, 0.02737938053905964, -0.019319161772727966, 0.004611375275999308, 0.010371191427111626, -0.013703782111406326, 0.020404191687703133, 0.01285830419510603, -0.0011598895071074367, -0.028943514451384544, 0.006541882175952196, -0.024983860552310944, 0.001564133446663618, -0.02474430948495865, 0.002018577652052045, 0.00433307234197855, 0.0027548475190997124, -0.004280230030417442, 0.006753251887857914, 0.0028640551026910543, -0.000292174139758572, -0.02371564507484436, -0.009039564058184624, 0.0031617337372153997, 0.036017343401908875, -0.002369098598137498, -0.015556786209344864, 0.011723955161869526, 0.05351872742176056, 1.5866464309510775e-05, -0.022644706070423126, -0.009250933304429054, -0.009377755224704742, 0.013358544558286667, -0.0005315059097483754, 0.007475430611521006, -0.02384246699512005, 0.0028446796350181103, 0.010688245296478271, 0.021686498075723648, 0.04140021651983261, -0.013196495361626148, -0.019319161772727966, 0.03170540928840637, -0.015246777795255184, 0.010392327792942524, -0.06870914250612259, 0.010730518959462643, 0.002015054691582918, 0.023659279569983482, -0.0060416413471102715, 0.027562567964196205, -0.014753582887351513, 0.052109599113464355, -0.0269002765417099, 0.020333735272288322, -0.02573069930076599, -0.027985306456685066, -0.028168493881821632, 0.034072745591402054, -0.006813139654695988, 0.011413946747779846, -0.028675779700279236, -0.0026016049087047577, -0.022376971319317818, 0.03666554391384125, 9.027234045788646e-05, -0.042527519166469574, 0.02413838356733322, -0.007073828484863043, 3.354938598931767e-05, 0.003165256464853883, -0.012971034273505211, 0.028605323284864426, 0.01535950880497694, 0.026984823867678642, 0.014380163513123989, -0.009222750551998615, 0.0008983198786154389, -0.026322534307837486, 0.011752137914299965, -0.023631097748875618, -0.0012849497143179178, -0.008792966604232788, 0.005650608334690332, -0.025815246626734734, -0.0033431591000407934, 0.0069610984064638615, -0.004720583092421293, -0.012907623313367367, 0.00800385419279337, -0.0031265055295079947, -0.020686017349362373, 0.019093701615929604, -0.020277369767427444, -0.011118029244244099, -0.02495567873120308, 0.020559195429086685, -0.009772310964763165, -0.01581043004989624, 0.029084427282214165, 0.016049981117248535, 0.019770082086324692, 0.04390846565365791, 0.005129230208694935, 0.002531148260459304, -0.006615861784666777, -6.175949238240719e-05, 0.0033836716320365667, 0.023659279569983482, 0.016247259452939034, 0.019868722185492516, -0.04134385287761688, -0.009539804421365261, -0.006524268072098494, -0.019460074603557587, -0.014950861223042011, 0.022588340565562248, 0.0034400366712361574, 0.016331806778907776, -0.02897169627249241, -0.005414579063653946, -0.01857232302427292, -0.0041604540310800076, 0.020221004262566566, -0.049263156950473785, -0.013006262481212616, -0.022221967577934265, 0.002742517739534378, 0.01998145319521427, 0.019995544105768204, 0.008792966604232788, 0.010723473504185677, 0.014091292396187782, 0.00616846326738596, -0.019925087690353394, 0.006002890411764383, 0.015584968961775303, 0.010195049457252026, -0.029563531279563904, -0.01206919178366661, -0.010624834336340427, 0.005622425582259893, -0.008208177983760834, 0.006672226823866367, -0.012266470119357109, -0.03770829737186432, -0.007482476066797972, -0.06448175013065338, 0.025702517479658127, -0.009448211640119553, -0.027562567964196205, -0.015260869637131691, -0.026731181889772415, -0.0020678972359746695, -0.013295134529471397, 0.023109719157218933, 0.001995679223909974, 0.00045884770224802196, 0.015246777795255184, -0.018825966864824295, -0.0002959171251859516, -0.027027098461985588, -0.03779284656047821, 0.009525713510811329, 0.005830272100865841, 0.006654612720012665, 0.008165903389453888, -0.020826930180191994, 0.0164304468780756, 0.01178736612200737, 0.00501297740265727, 0.010018908418715, -0.0004914338351227343, -0.023137900978326797, 0.018628688529133797, -0.009131157770752907, -0.0020485215354710817, 0.015979524701833725, -0.012668071314692497, 0.0007239401456899941, 0.02323654107749462, -0.0016363513423129916, -0.004533873405307531, 0.011681681498885155, -0.0024871130008250475, 0.01712092012166977, 0.0061015295796096325, -0.022024689242243767, -0.01872732676565647, -0.005005931481719017, -0.01285830419510603, -0.03458002954721451, 0.002804167103022337, 0.0027671775314956903, 0.01768457144498825, 0.008687281981110573, 0.00041943610995076597, 0.0029855924658477306, 0.012484884820878506, -0.010272552259266376, -0.005812657997012138, 0.0035421985667198896, -0.05275779962539673, 0.015035408549010754, 0.013654462061822414, 0.015472238883376122, -0.008468866348266602, 0.021940141916275024, 0.007919305935502052, 0.01991099677979946, -0.004026586655527353, 0.005752770230174065, 0.00022854314011055976, -0.016275443136692047, 0.026435263454914093, 0.01720546744763851, -0.01216783095151186, -0.007341563235968351, 0.015584968961775303, 0.01071642804890871, 0.016895459964871407, 0.004054769407957792, 0.003956130240112543, -0.0008115703822113574, 0.029704444110393524, 0.015021317638456821, 0.020953752100467682, 0.00980753917247057, -0.015274960547685623, -0.028055762872099876, -0.0012858303962275386, 0.023941105231642723, -0.0026385944802314043, -0.002407849533483386, 0.020841021090745926, -0.00299968384206295, -0.009131157770752907, -0.040047451853752136, 0.009490485303103924, -0.009110020473599434, 0.01609225571155548, 0.013273997232317924, 0.015176321379840374, -0.014443574473261833, 0.008919787593185902, 0.02454703114926815, 0.006873027887195349, 0.006513699889183044, 0.016599541530013084, -0.008990244008600712, -0.005527309142053127, -0.02543478272855282, -0.002326824702322483, -0.002247561002150178, -0.00880705751478672, 0.017022281885147095, -0.0034453209955245256, 0.011921233497560024, 0.0013131322339177132, -0.004114657174795866, 0.009060700424015522, -0.009412983432412148, 0.0095679871737957, 0.028041671961545944, -0.00315468804910779, -0.0239974707365036, 0.023546548560261726, 0.012111465446650982, 0.014936769381165504, 0.002890476258471608, -0.017388654872775078, 0.03700373321771622, 0.0055484464392066, -0.00904660951346159, -0.013858785852789879, 0.014894495718181133, 0.004001927096396685, 0.003698964137583971, 0.018220040947198868, -0.014570396393537521, -0.017233651131391525, -0.06786366552114487, 0.0241947490721941, 0.017994580790400505, 0.035876430571079254, 0.005153890233486891, 0.08990244567394257, 0.02134830690920353, 0.008363181725144386, 0.03494640439748764, -0.005256052128970623, 0.0012893532402813435, -0.014556304551661015, 0.013767192140221596, -0.00918752234429121, -0.02794303186237812, -0.005189118441194296, -0.007447247859090567, -0.01664181612432003, -0.01788184978067875, 0.02274334616959095, -0.005608334206044674, 0.001828345120884478, 0.02302517183125019, -0.017360471189022064, 0.0015852703945711255, 0.018135493621230125, 0.012181921862065792, 0.01607816480100155, 0.00036174990236759186, -0.004273184575140476, -0.010836203582584858, 0.01514813955873251, -0.01361923385411501, -0.008334998972713947, -0.031733591109514236, 0.013464230112731457, 0.0065207453444600105, -0.017712755128741264, -0.026237986981868744, -0.0008221388561651111, -0.013696735724806786, -0.015260869637131691, -0.003107129829004407, 0.04630398750305176, 0.002994399517774582, 0.008482958190143108, 0.0346645787358284, -0.015486329793930054, -0.002684391103684902, 0.004280230030417442, -0.021024208515882492, -0.016064073890447617, -0.0029503642581403255, -0.0357636995613575], "2014263b-21f8-4d9f-ac1f-1ecb67ba4b67": [-0.044497426599264145, 0.002224187832325697, 0.008001609705388546, -0.017971165478229523, -0.01973411627113819, -0.0060746637172997, 0.0008511533378623426, -0.03345506638288498, 0.013181132264435291, -0.03307241201400757, 0.0011881126556545496, 0.012511484324932098, -0.002724715741351247, -0.01014038361608982, -0.006494902074337006, 0.0010241172276437283, 0.007236298173666, -0.003339698538184166, 0.014048941433429718, -0.019925443455576897, 0.032006438821554184, 0.01046837493777275, -0.024202991276979446, -0.029847167432308197, -0.018627146258950233, 0.008534595370292664, 0.02364267408847809, -0.010242881253361702, -0.004544039722532034, -0.030694477260112762, 0.0036933135706931353, -0.000722177792340517, -0.006952722556889057, -0.014322266913950443, -0.01031121239066124, -0.001359795336611569, 0.010646035894751549, -0.012545649893581867, 0.006064414046704769, 0.006450486835092306, 0.014267602004110813, -0.000535547558683902, 0.014677590690553188, 0.010946694761514664, -0.00987389124929905, 0.004882280249148607, 0.024435319006443024, 0.007400293368846178, -0.028781196102499962, 0.022563036531209946, -0.016385875642299652, 0.030147826299071312, -0.03514968603849411, -0.041764166206121445, 0.026075271889567375, -0.005104357376694679, 0.022084716707468033, 0.013317795470356941, -0.007284129969775677, -0.017451846972107887, 0.034794364124536514, -0.007721451111137867, -0.03760961815714836, -0.013187965378165245, 0.00795377790927887, -0.002323268447071314, 0.003990555182099342, 0.00011296039156150073, 0.017342515289783478, 0.018845807760953903, 0.022850029170513153, 0.01700085960328579, -0.012982971034944057, -0.018504150211811066, 0.03635231778025627, -2.1537077827815665e-06, -0.002190022263675928, 0.00694930600002408, 0.002106316154822707, 0.015565899200737476, 0.0005244436906650662, -0.004185299854725599, 0.009969554841518402, 0.004028137773275375, 0.022658701986074448, 0.013734616339206696, -0.030831139534711838, 0.017752503976225853, 0.002340351464226842, -0.006248909048736095, -0.017287850379943848, 0.0063719055615365505, 0.0033687392715364695, -0.012217659503221512, 0.015975886955857277, 0.0035429843701422215, -0.03709029778838158, 0.036762308329343796, -0.034083716571331024, -0.02790655381977558, -0.007352461572736502, 0.0035464009270071983, -0.0331270769238472, -0.009047080762684345, -0.03159645199775696, -0.02872653119266033, 0.025788281112909317, -0.026034273207187653, -0.009033414535224438, 0.0005112044746056199, -0.014732255600392818, 0.033701058477163315, -0.018080495297908783, -0.028644533827900887, -0.027168575674295425, 0.031159130856394768, 0.03629765287041664, -0.032717086374759674, -0.017096523195505142, -0.021647395566105843, 0.01892780512571335, 0.022467372938990593, 0.008671257644891739, -0.014868918806314468, 0.003628398757427931, 0.006621315144002438, -0.0018551981775090098, -0.013092301785945892, 0.0011479679960757494, -0.026389596983790398, 0.026034273207187653, 0.008295435458421707, 0.018189825117588043, 0.0020174854435026646, 0.008186104707419872, 0.020267101004719734, 0.005148773081600666, -0.018886806443333626, -0.006983472034335136, -0.008404765278100967, 0.03378305584192276, 0.022166714072227478, -0.01335196103900671, -0.01011988427489996, -0.0013931069988757372, 0.0017467221478000283, -0.005917501635849476, 0.015770893543958664, 0.012928306125104427, 0.005264936480671167, 0.016987193375825882, -0.010338544845581055, 0.000228056131163612, 0.02313702180981636, -0.012135661207139492, 0.016932526603341103, 0.017738837748765945, 0.026854250580072403, 0.023014023900032043, -0.012634480372071266, 0.007878613658249378, 0.020253434777259827, -0.001359795336611569, -0.019173799082636833, 0.013727783225476742, 0.024763308465480804, -0.012894140556454659, -0.01634487695991993, -0.007120134774595499, 0.009955888614058495, -0.0016066426178440452, 0.0044996244832873344, -0.02517329715192318, -0.01025654748082161, -0.011998998932540417, 0.03389238938689232, 0.026006940752267838, 0.008568760938942432, -0.013392959721386433, 0.0014255644055083394, 0.0011078232200816274, -0.024325987324118614, 0.005582677666097879, 0.009730394929647446, -0.005692007951438427, -0.013604787178337574, 0.021633729338645935, -0.01563423126935959, 0.011021859012544155, 0.01414460502564907, 0.03244376182556152, 0.03826559707522392, -0.004253631457686424, -0.0012316739885136485, -0.5943194031715393, -0.025214295834302902, -0.002331809839233756, -0.019119132310152054, 0.031186463311314583, 0.02406632900238037, 0.008254436776041985, 0.009081246331334114, -0.021319404244422913, 0.021702060475945473, -0.02494097128510475, 0.02237170934677124, 0.014800586737692356, 0.012654980644583702, -0.018722811713814735, -0.02768789418041706, 0.02127840556204319, -0.008903584443032742, 0.011951166205108166, 0.0017202437156811357, -0.009047080762684345, -1.7896962162922136e-05, -0.021907055750489235, 0.024722309783101082, 0.00409988546743989, 0.004270714242011309, -0.02215304784476757, 0.00043283688137307763, 0.015757227316498756, 0.015442902222275734, -0.004936945624649525, 0.007434459403157234, 0.030885804444551468, -0.007871780544519424, 0.04567272588610649, -0.01831282302737236, -0.03648898005485535, 0.026034273207187653, 0.014595592394471169, 0.036816973239183426, -0.005227354355156422, -0.02604793943464756, 0.038292933255434036, -0.008418431505560875, 0.0009925139602273703, -0.004995027091354132, 0.0030954135581851006, -0.008322767913341522, 0.03514968603849411, -0.01931046135723591, -0.01754751056432724, -0.03427504375576973, -0.001213736948557198, -0.010673369280993938, 0.0079196123406291, -0.0018056579865515232, 0.025132298469543457, -0.018791142851114273, 0.018763810396194458, -0.029683170840144157, -0.006235242821276188, 0.0022617701906710863, -0.00714063411578536, -0.0019252379424870014, -0.003970055840909481, 0.00507019180804491, -0.004735367838293314, 0.007461791858077049, -0.0062762415036559105, -0.01913279853761196, -0.007523289881646633, 0.0022276046220213175, -0.006904890760779381, 0.0073866271413862705, 0.014130938798189163, 0.04684802517294884, 0.01589388959109783, -0.01820349134504795, -0.0036078994162380695, 0.014130938798189163, 0.010960360988974571, 0.007967444136738777, -0.015757227316498756, -0.012422652915120125, 0.005459681153297424, 0.007892279885709286, -0.011828170157968998, -0.0006474402616731822, 0.02313702180981636, -0.011315683834254742, 0.014745921827852726, -0.0022788529749959707, 0.011650508269667625, -0.030284488573670387, 0.008807920850813389, 0.016713866963982582, -0.02834387496113777, 0.0026170937344431877, -0.012948805466294289, -0.004465458914637566, -0.05116657167673111, 0.032061103731393814, -0.014021608978509903, -0.009327239356935024, 0.024640312418341637, 0.012634480372071266, -0.013939610682427883, 0.00593458442017436, -0.007509623654186726, -0.03323640674352646, -0.02297302521765232, 0.007352461572736502, -0.013905445113778114, -0.014937249943614006, 0.011616342701017857, -0.04233815148472786, 0.035559672862291336, 0.010495707392692566, -0.007516456767916679, 0.021852390840649605, 0.02417565882205963, 0.007256797514855862, 0.026826918125152588, 0.013987443409860134, -0.005100940819829702, -0.0058013382367789745, 0.03520435094833374, -0.0047182850539684296, -0.02697724662721157, 0.02018510363996029, -0.00844576396048069, -0.001059137168340385, 0.012593481689691544, -0.024913638830184937, -0.0003273502516094595, -0.008705424144864082, -0.004608954768627882, -0.0028818778228014708, 0.028316542506217957, -0.004793449770659208, -0.007113301660865545, -0.002265186747536063, 0.015032913535833359, -0.020909417420625687, -0.032225102186203, -0.0161125510931015, 0.01771150529384613, 0.0286718662828207, -0.0063069905154407024, -0.02752389945089817, 0.01787550188601017, -0.001344420830719173, -0.01831282302737236, 0.035067688673734665, 0.011315683834254742, 0.010195048525929451, -0.002241270849481225, -0.005121440626680851, 0.012620814144611359, -0.011021859012544155, -0.017697839066386223, -0.014950916171073914, 0.002514596562832594, -0.015415569767355919, -0.008985582739114761, -0.022672368213534355, 0.014445263892412186, 0.0036078994162380695, -0.010974027216434479, -0.0316784493625164, -0.03736362233757973, 0.006597399245947599, -0.0038333931006491184, -0.02391599863767624, 0.010871529579162598, 0.01206049695611, -0.012087829411029816, -0.007714617997407913, 0.006112246308475733, -0.017684172838926315, -0.013570621609687805, 0.01732884906232357, -0.008015275932848454, 0.0022139381617307663, -0.0007431042613461614, 0.022522037848830223, 0.02971050515770912, 0.0034404874313622713, -0.010188215412199497, -0.004175050184130669, 0.003303824458271265, 0.007079135626554489, 0.0044005438685417175, 0.0007136363419704139, 0.005955083761364222, 0.017205853015184402, 0.013632119633257389, -0.008076774887740612, -0.011404515244066715, 0.013256296515464783, 0.028480539098381996, 0.054419148713350296, 0.005227354355156422, -0.005442597903311253, 0.006675980519503355, -0.05450114607810974, 0.017151188105344772, -0.0158392246812582, 0.014199270866811275, -0.013584287837147713, 0.010523039847612381, -0.026690255850553513, -0.009771393612027168, -0.005032609682530165, 0.022030051797628403, -0.002613677177578211, -0.03145978972315788, 0.009771393612027168, -0.0010685326997190714, 0.008459430187940598, 0.008814753964543343, 0.017943833023309708, 0.0111038563773036, -0.003343115095049143, -0.019119132310152054, -0.01721951924264431, 0.019816113635897636, 0.011322516947984695, -0.004591871984302998, -0.014909917488694191, -0.0041784667409956455, -0.011889668181538582, 0.013051302172243595, -0.008944584056735039, -0.011192687787115574, -0.018886806443333626, 0.045372068881988525, -0.0058594197034835815, 0.00352248502895236, 0.007509623654186726, -0.011459180153906345, 0.006740895099937916, -0.004318546038120985, -0.020964082330465317, 0.010926195420324802, 0.020034775137901306, 0.050100602209568024, 0.0016766823828220367, -0.008356933481991291, 0.017943833023309708, -0.021018747240304947, -0.00020200478320475668, -0.026252934709191322, 0.0002553887024987489, -0.006857058499008417, -0.007208965718746185, -0.0017749088583514094, 0.029901832342147827, 0.02812521532177925, 0.019201131537556648, 0.015442902222275734, 0.024544648826122284, 0.006959555670619011, 0.009012915194034576, 0.025596952065825462, -0.009484401904046535, -0.010051553137600422, -0.019447123631834984, -0.017738837748765945, 0.0033772806636989117, -0.016823196783661842, -0.002391599817201495, -0.00404522055760026, -0.007003971375524998, 0.007325129117816687, -0.00882842019200325, 0.020718088373541832, 0.018353821709752083, 0.018572481349110603, -0.0006593982689082623, -0.002748631639406085, -0.006392404902726412, 0.007530122995376587, 0.005582677666097879, -0.0035873998422175646, -0.020198769867420197, 0.007461791858077049, 0.0001746722118696198, -0.008486763574182987, 0.004585038870573044, 0.004294630140066147, 1.0142945939151105e-05, -0.01104919146746397, 0.016850529238581657, -0.003744562156498432, 0.028808528557419777, -0.004352712072432041, -0.008131439797580242, -0.0005252978298813105, -0.013796115294098854, 0.0190234687179327, -0.005203437991440296, 0.014240269549190998, 0.0014938957756385207, 0.0491439625620842, -0.005159022752195597, 0.02055409364402294, 0.012292823754251003, -0.005538261961191893, -0.026170935481786728, -0.0035156519152224064, -0.016850529238581657, -0.0273052379488945, -0.0001897264737635851, 0.004233131650835276, 0.028371207416057587, 0.025487622246146202, -0.006969805341213942, 0.026170935481786728, -0.01568889617919922, -0.026170935481786728, -0.01370728388428688, -0.0342203788459301, -0.006669147405773401, -0.05182255432009697, 0.018558815121650696, -0.0028186712879687548, -0.011753004975616932, -0.02817988023161888, -0.012381654232740402, -0.009846558794379234, -0.00612591253593564, -0.0076462868601083755, -0.01567522995173931, -0.00405547022819519, -0.014827919192612171, 0.01216982677578926, 0.0031705782748758793, -0.002958750817924738, -0.01370728388428688, -0.033755723387002945, -0.034411706030368805, 0.026348598301410675, -0.011841836385428905, -0.019105466082692146, 0.0038538924418389797, 0.0079196123406291, 0.04840598255395889, -0.0013358794385567307, -0.007413959596306086, -0.0131059680134058, 0.04075286164879799, 0.002622218569740653, -0.020745420828461647, 0.020868416875600815, 0.004677286371588707, 0.0020174854435026646, 0.01885947398841381, -0.014445263892412186, 0.008117773570120335, 0.030667144805192947, 0.025350959971547127, -0.0031124965753406286, 0.029300516471266747, -0.0029177519027143717, 0.019870778545737267, 0.0010523039381951094, -0.015880223363637924, -0.0014409389114007354, -0.01607155241072178, 0.02105974592268467, 0.004800282884389162, -0.007632620166987181, -0.012921473011374474, 0.011527511291205883, -0.013372460380196571, -0.047176018357276917, -0.015360904857516289, 0.03862092271447182, 0.007974277250468731, -0.0023933083284646273, 0.010106218047440052, 0.02231704443693161, 0.010181382298469543, 0.010441041551530361, -0.006710146088153124, 0.0035395678132772446, -0.02433965355157852, -0.013092301785945892, -0.018504150211811066, -0.03613365814089775, -0.0056749251671135426, -0.01340662594884634, 0.0010625537252053618, 0.04354078322649002, -0.004376627970486879, -0.042310819029808044, -0.027182241901755333, 0.020362764596939087, 0.01952912099659443, 0.03304507955908775, -0.019105466082692146, 0.008124606683850288, 0.022672368213534355, 0.012326989322900772, -0.012545649893581867, -0.0016203089617192745, 0.006382155232131481, 0.009217909537255764, 0.021948054432868958, 0.021743059158325195, -0.018381154164671898, 0.006272824946790934, 0.03736362233757973, 0.0038538924418389797, -0.0025726782623678446, 0.026621924713253975, 0.036270320415496826, -0.00036194303538650274, 0.003450737101957202, -0.005811587907373905, 0.018012164160609245, -0.014581926167011261, -0.011630008928477764, 0.04056153446435928, -0.002859670203179121, -0.010379543527960777, 0.00303733185864985, -0.004130634944885969, 0.005627092905342579, 0.0131059680134058, 0.011363516561686993, 0.021415069699287415, 0.021565398201346397, 0.0161125510931015, -0.012818975374102592, 0.007263630628585815, -0.02828921005129814, 0.009771393612027168, -0.013871279545128345, -0.010092551819980145, -0.007577955257147551, -0.043732114136219025, -0.015224241651594639, 0.020431095734238625, -0.0262119360268116, 0.034411706030368805, 0.000694418151397258, 0.013440791517496109, 0.00400422140955925, -0.011097023263573647, -0.023287350311875343, -0.02786555513739586, 0.027100244536995888, -0.003141537308692932, 0.005275186151266098, 0.00932040624320507, -0.009026581421494484, -0.018340155482292175, 0.018285490572452545, -0.0017117022071033716, 0.015073913149535656, -0.013365627266466618, -0.013966944068670273, 0.011322516947984695, -0.03159645199775696, 0.028207212686538696, -0.015401903539896011, -0.004397127311676741, -0.030448483303189278, -0.022904694080352783, 0.0005299956537783146, -0.0028818778228014708, 0.022727033123373985, 0.018435819074511528, 0.009504901245236397, -0.0286718662828207, -0.017752503976225853, 0.0050975242629647255, -0.02440798468887806, -0.026307599619030952, 0.017014525830745697, 0.02341034635901451, 0.0025607203133404255, 0.014349599368870258, 0.027660561725497246, -0.017684172838926315, 0.009764560498297215, 0.012210826389491558, 0.013775615952908993, -0.008493596687912941, 0.012422652915120125, -0.030639812350273132, -0.035723671317100525, -0.01184866949915886, 0.013037635944783688, -0.003136412473395467, -0.013905445113778114, -0.007796615827828646, 0.0069424728862941265, 0.0001515035837655887, 0.029437178745865822, -0.014253935776650906, -0.019925443455576897, -0.014458930119872093, -0.005931167863309383, 0.002253228798508644, -0.00017862262029666454, -0.02511863224208355, -0.010700701735913754, 0.017861835658550262, -0.014827919192612171, 0.011384015902876854, -0.009026581421494484, 0.004520123824477196, -0.0004219465481583029, 0.000335251068463549, -0.009518567472696304, 0.03454836830496788, -0.010536706075072289, 0.004318546038120985, -0.028480539098381996, -0.004667036235332489, 0.01694619469344616, -0.012736978009343147, -0.01272331178188324, 0.014814252965152264, -0.005719340406358242, 0.01820349134504795, 0.009996887296438217, -0.012176659889519215, -0.0017919916426762938, 0.0006777623202651739, -0.002729840576648712, -0.019447123631834984, -0.012210826389491558, -0.027974886819720268, -0.03154178708791733, 0.028917860239744186, 0.010564038529992104, -0.010529872961342335, 0.006101996172219515, -0.00400422140955925, -0.008602926507592201, 0.0032064521219581366, 0.003652314655482769, 0.026006940752267838, -0.0011940916301682591, 0.027332570403814316, 0.03487636148929596, 0.0012504650512710214, -0.013734616339206696, -0.04561806097626686, -0.03233443200588226, -0.006026831921190023, 0.026088938117027283, 0.032006438821554184, -0.021688394248485565, -0.014062607660889626, 0.019337793812155724, 0.015073913149535656, 0.008500429801642895, -0.03780094534158707, 0.021893389523029327, 0.03722696006298065, -0.004503041040152311, -0.012484151870012283, 0.0003890620719175786, -0.011718839406967163, -0.009484401904046535, -0.009846558794379234, 0.006863891612738371, -0.005606593564152718, -0.009525400586426258, -0.03416571393609047, 0.009258908219635487, -0.007605287712067366, 0.035778336226940155, 0.016823196783661842, -0.010529872961342335, 0.0030527065973728895, 0.0002840024826582521, -0.01842215284705162, 0.025665283203125, -0.021415069699287415, 0.012757477350533009, -0.031077133491635323, -0.011165355332195759, 0.020157771185040474, 0.01433593314141035, 0.008609759621322155, -0.010215547867119312, -0.004602121654897928, 0.04468875378370285, -0.018763810396194458, -0.010885195806622505, -0.02045843005180359, -0.019993774592876434, 0.029491843655705452, 0.0071064685471355915, 0.0013845654902979732, 0.0041135516948997974, -0.028644533827900887, 0.01074853353202343, 0.004995027091354132, 0.0004010200500488281, 0.027182241901755333, -0.019816113635897636, 0.00921107642352581, -0.02451731637120247, -0.031951773911714554, 0.023943331092596054, 0.0010087427217513323, -0.01940612494945526, -0.04045220464468002, -0.02737356908619404, -0.02451731637120247, -0.011794004589319229, 0.008889918215572834, -0.01650887355208397, -0.003310657572001219, 0.029546508565545082, -0.04326745867729187, -0.0004736222035717219, -0.01623554714024067, 0.007051803171634674, -0.03744562342762947, -0.018668144941329956, 0.009955888614058495, -0.019870778545737267, 0.009832892566919327, 0.0047866166569292545, 0.005886752624064684, -0.010044720023870468, 0.0104205422103405, 0.019173799082636833, -0.0006025977781973779, 0.04556339606642723, 0.0018039497081190348, 0.007755617145448923, -0.0011385723482817411, 0.00501552689820528, -0.01661820337176323, -0.002090941648930311, -0.0026153854560106993, -0.006214743480086327, -0.0026393013540655375, -0.01654987223446369, 0.0062181600369513035, -0.005237604025751352, 0.0017245144117623568, 0.022084716707468033, -0.022221380844712257, -0.046410705894231796, 0.022057384252548218, -0.004807115998119116, -0.019119132310152054, 0.018080495297908783, -0.018394820392131805, -0.025487622246146202, -0.019105466082692146, 0.01228599064052105, 0.008896751329302788, -0.011759838089346886, 0.016153549775481224, 0.03845692798495293, -0.0021951470989733934, 0.008862585760653019, -0.008568760938942432, -0.042857471853494644, -0.0010403459891676903, -0.04679336026310921, -0.014636592008173466, -0.02040376327931881, -0.015319906175136566, 0.04526273533701897, -0.012620814144611359, -0.02582927979528904, -0.02060875855386257, -0.007311462424695492, -0.0014059190871194005, -0.0024086828343570232, -0.005729590076953173, 0.04512607306241989, -0.001118927146308124, -0.0005419536028057337, -0.016194548457860947, 0.0402335450053215, -0.007851281203329563, 0.034193046391010284, -0.007229465059936047, 0.006347989663481712, -0.0019218213856220245, -0.0036352318711578846, 0.013454457744956017, 0.005603177007287741, -0.030803807079792023, -0.029081854969263077, 0.0006090038223192096, 0.0016228713793680072, 0.008753255940973759, 0.029163852334022522, -0.010926195420324802, -0.02346501126885414, -0.011643675155937672, 0.018996136263012886, -0.009436570107936859, -0.0033209072425961494, -0.007625787053257227, -0.030694477260112762, -0.013563788495957851, 0.010201881639659405, 0.012258658185601234, -0.003580566728487611, 0.023888666182756424, 0.009375072084367275, 0.015019247308373451, -0.011124356649816036, -0.0048754471354186535, -0.0016373918624594808, -0.023834001272916794, 0.017096523195505142, 0.011746171861886978, 0.028207212686538696, -0.007502790540456772, 0.030940469354391098, 0.010762199759483337, 0.008589260280132294, -0.011589010246098042, 0.0197477824985981, -0.03591499850153923, 0.0076394532807171345, 0.0036386484280228615, 0.0004706326872110367, 0.017369847744703293, -0.015128578059375286, 0.0040520536713302135, -0.025460289791226387, 0.018463151529431343, 0.018613480031490326, 0.007393460255116224, -0.037472955882549286, 0.014431597664952278, 0.02040376327931881, -0.038292933255434036, -0.0008772047003731132, 0.002827212680131197, -0.03796494007110596, 0.004106718581169844, -0.013850780203938484, 0.011589010246098042, -0.030667144805192947, 0.008616592735052109, 0.012791642919182777, -0.002767422702163458, -0.007700951769948006, 0.01433593314141035, 0.014062607660889626, -0.0275785643607378, -0.011138022877275944, 0.2455558180809021, -0.029601173475384712, 0.006795560475438833, 0.016604537144303322, -0.015470234677195549, -0.00032606901368126273, -0.00044757084106095135, 0.0023540176916867495, -0.0060541643761098385, 0.009067580103874207, -0.008725923486053944, -0.008643925189971924, -0.007379794027656317, -0.007762450259178877, 0.018941471353173256, -0.010024220682680607, -0.034685030579566956, -0.02719590812921524, 0.006932223215699196, 0.0068843914195895195, 0.012887307442724705, -0.00037475518183782697, 0.012613981030881405, -0.005367433652281761, -0.003888058243319392, -0.017670506611466408, -0.0006119933677837253, 0.01858614757657051, -0.0009771394543349743, 0.020362764596939087, -0.018326489254832268, -0.0061224959790706635, -0.021524399518966675, -0.023670006543397903, -0.014827919192612171, -0.022358043119311333, 0.03176044672727585, 0.010058386251330376, 0.02313702180981636, 0.02006210759282112, -0.01572989486157894, -0.025801947340369225, 0.013187965378165245, -0.019324127584695816, -0.014841585420072079, 0.006891224533319473, 0.012675479985773563, -0.010270213708281517, -0.012176659889519215, 0.005148773081600666, -0.042201489210128784, -0.024312321096658707, 0.030557813122868538, 0.010201881639659405, -0.006867308169603348, -0.019337793812155724, 0.006778477691113949, -0.002545345574617386, 0.010762199759483337, 0.00019965588580816984, 0.0019081550417467952, 0.036379650235176086, -0.026963580399751663, 0.019556453451514244, -0.018900472670793533, 0.008254436776041985, -0.015921222046017647, -0.029519176110625267, 0.0065939826890826225, -0.01875014416873455, 0.008623425848782063, -0.0015613731229677796, 0.0001136009959736839, -0.004885696806013584, -0.021018747240304947, -0.03810160234570503, 0.03613365814089775, 0.011896501295268536, 0.018996136263012886, 0.013673118315637112, -0.01705552451312542, 0.0035054022446274757, 0.016303878277540207, 0.002799880225211382, -0.019296795129776, -0.035723671317100525, 0.03482169657945633, -0.02313702180981636, -0.014322266913950443, 0.008507262915372849, -0.019378792494535446, -0.011964832432568073, 0.00394955649971962, 0.008978749625384808, 0.0057637556456029415, 0.013153799809515476, -0.01732884906232357, 0.0373089574277401, -0.026498926803469658, -0.0032696586567908525, -0.033373069018125534, 0.009853391908109188, 0.022781698033213615, 0.018326489254832268, -0.017041858285665512, -0.01940612494945526, -0.011575344018638134, 0.0006209618295542896, -0.0006636689649894834, -0.030147826299071312, 0.008309101685881615, -0.05029192939400673, -0.006224993150681257, -0.010167716071009636, -0.009443403221666813, 0.002892127726227045, 0.0035429843701422215, -0.010639202781021595, -0.025214295834302902, -0.010099384933710098, -0.0017544094007462263, -0.04720335081219673, -0.003628398757427931, 0.0054152654483914375, -0.0060234153643250465, -0.01978878118097782, -0.016385875642299652, -0.0004172487824689597, 0.013625286519527435, -0.02122374065220356, 0.030721809715032578, -0.04031554237008095, 0.034630365669727325, 0.0056783417239785194, -0.016153549775481224, 0.020376430824398994, -0.0033123658504337072, -0.009176910854876041, 0.02011677250266075, 0.010796365328133106, -0.011500178836286068, 0.0052922689355909824, 0.03340040147304535, -0.03307241201400757, 0.005463097710162401, -0.007249964401125908, -0.004038387443870306, 0.0009651813888922334, 0.02440798468887806, -0.012381654232740402, -0.04430609568953514, -0.009942222386598587, 0.014568259939551353, -0.00877375528216362, 0.010359044186770916, -0.005750089418143034, -0.0014323975192382932, -0.05018259957432747, 0.013905445113778114, -0.006453903391957283, -0.034575700759887695, -0.0042741307988762856, -0.013857613317668438, -0.007222631946206093, 0.005203437991440296, 0.004656786564737558, -0.173288494348526, 0.02368367277085781, 0.03624298796057701, -0.01865447871387005, 0.012381654232740402, -0.00954589992761612, 0.005343517754226923, -0.006262575276196003, -0.012367988005280495, -0.004923279397189617, 0.03383772075176239, -0.0010300962021574378, -0.008753255940973759, -0.02078641951084137, -0.016262879595160484, 0.0033294488675892353, 0.0010198465315625072, 0.00457820575684309, 0.03372839093208313, 0.03728162497282028, 0.02719590812921524, -0.035942330956459045, 0.0035395678132772446, 0.02451731637120247, 0.009955888614058495, 0.015552232973277569, 0.00559292733669281, 0.012408986687660217, 0.0015673520974814892, -0.015716228634119034, -0.0004936945624649525, -0.010044720023870468, 0.008766922168433666, -0.0036386484280228615, -0.002010652329772711, 0.0013546705013141036, -0.0021592730190604925, 0.007523289881646633, -0.02708657830953598, 0.01645420677959919, 0.0009404112352058291, 0.02187972329556942, -0.016877861693501472, 0.009416070766746998, 0.014636592008173466, -0.008165605366230011, -0.001677536522038281, -0.005408432334661484, 0.0015647896798327565, 0.0029877915512770414, 0.018176158890128136, -0.02045843005180359, 0.02417565882205963, 0.004294630140066147, 0.033373069018125534, 0.03916757553815842, -0.008725923486053944, 0.015005581080913544, -0.001487062661908567, -0.011356683447957039, -0.014513595029711723, -0.03383772075176239, -0.010851030237972736, -0.003021957352757454, 0.005811587907373905, -0.011609509587287903, -0.0021285240072757006, 0.03334573656320572, -0.029081854969263077, -0.015183242969214916, 0.006570066791027784, -0.0036864804569631815, 0.014704923145473003, 0.015237907879054546, 0.010570871643722057, 0.009689396247267723, -0.00689464109018445, 0.021360404789447784, 0.010290713049471378, 0.005353767424821854, -0.02889052778482437, 0.05111190676689148, -0.02346501126885414, -0.006976638454943895, 0.036980967968702316, -0.02561061829328537, 0.011425014585256577, -0.0106938686221838, -0.02319168671965599, -0.017397182062268257, 0.00803577620536089, -0.027113910764455795, -0.01809416152536869, -0.0004069990536663681, 0.007673619315028191, 0.015620564110577106, -0.005428931675851345, 0.008924084715545177, -0.02971050515770912, -0.0026837168261408806, -0.004762700293213129, -0.00593458442017436, -0.006634981371462345, 0.0018141993787139654, 0.018777476623654366, 0.00515560619533062, -0.013474957086145878, 0.035286348313093185, 0.04996393993496895, 0.008500429801642895, 0.006327490322291851, -0.0006179723422974348, 0.006771644577383995, -0.002570969983935356, -0.003384114010259509, 0.0060541643761098385, -0.02417565882205963, 0.0025009301025420427, 0.036215655505657196, 0.011062857694923878, -0.025733614340424538, -0.01080319844186306, 0.005295685492455959, 0.02342401258647442, -0.01074853353202343, -0.014609258621931076, -0.041764166206121445, -0.02330101653933525, 0.0014298351015895605, 0.012142494320869446, -0.008821587078273296, 0.002793047111481428, -0.019296795129776, 0.044606756418943405, -0.01821715757250786, 0.03821093216538429, -0.018777476623654366, -0.0314871221780777, -0.020991414785385132, 0.03170578181743622, 0.017028192058205605, 0.025255294516682625, -0.03383772075176239, 0.010987693443894386, 0.002244687406346202, 0.034193046391010284, -0.021797725930809975, -0.017082856968045235, 0.01025654748082161, 0.010386376641690731, -0.002272019861266017, 0.008329601027071476, -0.003295283066108823, 0.02632126584649086, 0.002832337748259306, 0.02073175460100174, 0.0460553802549839, -0.009826059453189373, 0.009252075105905533, -0.001324775512330234, 0.007161133456975222, -0.002205396769568324, -0.021428735926747322, -0.03465769812464714, 0.015770893543958664, -0.025733614340424538, 0.002142190234735608, 0.017233185470104218, 0.0121493274345994, -0.0064709861762821674, -0.02298669144511223, -0.029601173475384712, -0.018107827752828598, 0.030065827071666718, -0.0194744560867548, 0.012511484324932098, -0.029491843655705452, 8.49338248372078e-05, 0.003792394185438752, -0.00994905550032854, 0.01568889617919922, 0.02517329715192318, 0.010646035894751549, 0.022358043119311333, -0.027974886819720268, 0.020745420828461647, -0.01995277591049671, 0.0064675696194171906, -0.020362764596939087, 0.043896108865737915, 0.019993774592876434, 0.03129579499363899, -0.014841585420072079, -0.014554593712091446, 0.03596966341137886, -0.00047447634278796613, -0.006768228020519018, 0.040616199374198914, 0.014513595029711723, 0.044825416058301926, -0.02561061829328537, -0.013201631605625153, -0.0006324927671812475, 0.0008280914626084268, 0.014786920510232449, -0.020704422146081924, -0.004803699441254139, 0.0028425874188542366, -0.011199520900845528, -0.016331210732460022, 0.033974386751651764, 0.015005581080913544, -0.0023471845779567957, -0.017069190740585327, 0.01821715757250786, -0.042146824300289154, 0.03304507955908775, 0.017465513199567795, -0.0001589773310115561, -0.02133307047188282, -0.002608552109450102, -0.0041511342860758305, 0.015921222046017647, 0.016276545822620392, -0.012080996297299862, 0.004318546038120985, -0.023929664865136147, -0.005664675496518612, -0.08489496260881424, 0.03334573656320572, -0.010488874278962612, 0.002641009632498026, 0.01854514889419079, -0.010147216729819775, 0.03662564605474472, -0.015114911831915379, 0.007338795345276594, 0.004062303341925144, 0.003173994831740856, 0.025091299787163734, 0.014800586737692356, -0.012627647258341312, -0.023888666182756424, -0.02544662356376648, 0.03329107165336609, 0.010516206733882427, 0.019501788541674614, 0.01011988427489996, 0.014171937480568886, 0.0021729394793510437, 0.04026087746024132, -0.042365483939647675, -0.02823454514145851, 0.04928062483668327, -0.00921107642352581, 0.04129951447248459, -0.015880223363637924, -0.016604537144303322, 0.007352461572736502, -0.0121493274345994, -0.0036591480020433664, 0.03760961815714836, 0.009409237653017044, 0.00660764891654253, -0.001633975189179182, 0.004069136455655098, 0.0316784493625164, 0.01197849866002798, -0.009217909537255764, -0.041682168841362, 0.01156851090490818, 0.003911974374204874, -0.01891413889825344, 0.008186104707419872, -0.016003219410777092, 0.027715226635336876, 0.0037616449408233166, -0.02029443345963955, 0.019105466082692146, 0.013973777182400227, -0.014622924849390984, -0.023096023127436638, 0.003922224044799805, -0.04392344132065773, 0.014171937480568886, 0.019201131537556648, -0.007830781862139702, 0.009081246331334114, 0.02708657830953598, -0.012525150552392006, 0.02423032373189926, -0.01590755581855774, -0.0017364723607897758, -0.0025795113760977983, -0.026526259258389473, -0.006904890760779381, -0.013119634240865707, 0.004116968251764774, -0.014786920510232449, -0.030557813122868538, 0.00497452775016427, -0.0011112397769466043, 0.008479930460453033, 0.01441793143749237, -0.00907441321760416, 0.006983472034335136, -0.021046079695224762, 0.030995134264230728, 0.032662421464920044, -0.011117523536086082, -0.026621924713253975, -0.0034712364431470633, 0.026936247944831848, -0.004345878958702087, -0.03309974446892738, 0.012791642919182777, -0.009580066427588463, -0.00784444808959961, -0.02550128847360611, 0.0042741307988762856, 0.021251073107123375, 0.018340155482292175, 0.03192444145679474, 0.011971665546298027, -0.023929664865136147, 0.0030868721660226583, 0.012217659503221512, 0.005876502487808466, -0.010570871643722057, 0.007489124312996864, -0.01667286828160286, -0.009006082080304623, -0.025104966014623642, -0.0049130297265946865, -0.017369847744703293, -0.028945192694664, -0.014185603708028793, 0.024872640147805214, -0.01634487695991993, 0.009067580103874207, -0.020704422146081924, 0.021456068381667137, -0.0438687764108181, 0.0003830830683000386, -0.0015613731229677796, 0.015237907879054546, -0.015306239947676659, 0.00956639926880598, -0.004687536042183638, 0.00030279363272711635, 0.016153549775481224, -0.02313702180981636, 0.03129579499363899, -0.012572982348501682, 0.034630365669727325, -0.029218517243862152, -0.015073913149535656, 0.014021608978509903, -0.0020396930631250143, -0.0016886403318494558, -0.027537565678358078, -0.006409487687051296, -0.03400171920657158, 0.024708643555641174, -0.011582177132368088, 0.01093986164778471, -0.00968256313353777, 0.08216170966625214, -0.0024992218241095543, -0.017369847744703293, 0.016741199418902397, -0.022822696715593338, -0.001153946970589459, 0.00926574133336544, 0.022221380844712257, 0.0008592677186243236, -0.012012665160000324, 0.011855502612888813, 8.215786510845646e-05, -0.03719962760806084, -0.015456568449735641, 0.021346738561987877, 0.0016826613573357463, -0.011787171475589275, 0.02828921005129814, 0.010099384933710098, 0.009429736994206905, 0.02155173197388649, -0.009006082080304623, 0.010270213708281517, 0.015292573720216751, -0.0038812251295894384, 0.0034558619372546673, -0.021100744605064392, -0.009730394929647446, -0.005398182664066553, -0.011527511291205883, 0.015989553183317184, 0.004834448453038931, -0.025036634877324104, -0.034794364124536514, -0.027769891545176506, 0.022576702758669853, -0.002986083272844553, 0.01885947398841381, 0.029491843655705452, -0.0006060143350623548, -0.01156851090490818, 0.03471236303448677, -0.017178520560264587, -0.015989553183317184, -0.010195048525929451, -0.02297302521765232, 0.007420792710036039, -0.014677590690553188, -0.03719962760806084], "f90d1ee3-a44d-4025-8de9-ca2eff283765": [-0.046888381242752075, 0.009865869767963886, 0.03217456489801407, -0.02435530349612236, -0.038810741156339645, 0.009179134853184223, -0.01140932459384203, -0.04427742585539818, 0.0003327436279505491, -0.04101373255252838, 0.014033877290785313, 0.014822602272033691, -0.01997651718556881, -0.018127091228961945, -0.016590435057878494, -0.006755162961781025, 0.0023508784361183643, -0.010688592679798603, 0.027211034670472145, -0.03356163576245308, 0.033099278807640076, -0.0025021641049534082, -0.029155651107430458, -0.02101001888513565, -0.007010139059275389, 0.010382621549069881, 0.007105330005288124, -0.016712823882699013, -0.009206332266330719, -0.014020278118550777, 0.025606386363506317, 0.001145691960118711, -0.008859564550220966, -0.02518482506275177, -0.007724071852862835, 0.004531772807240486, -0.010144643485546112, -0.00558567326515913, 0.015067379921674728, 0.0004175231442786753, 0.017923111096024513, 0.003804241307079792, -0.00011187070049345493, 0.010688592679798603, -0.012708001770079136, 0.006105824373662472, 0.008839166723191738, 0.00608202675357461, 0.0007424050127156079, 0.01829027570784092, -0.00800284557044506, 0.004681358579546213, -0.04191124811768532, -0.03788602724671364, 0.021975528448820114, 0.011742493137717247, 0.012687603943049908, 0.015597729943692684, -0.00825442187488079, -0.012082461267709732, 0.01287118624895811, -0.006136421579867601, -0.03595501184463501, 0.006445792503654957, 0.014373844489455223, -0.006772161461412907, -0.00915873609483242, 0.003766844980418682, 0.02455928549170494, 0.018548650667071342, 0.02785017527639866, 0.030352339148521423, -0.01266720611602068, -0.0021129008382558823, 0.026830270886421204, -0.007982447743415833, 0.0027571399696171284, -0.004246199503540993, 0.007486094255000353, 0.005861047655344009, 0.020996419712901115, -0.017732728272676468, -0.016944002360105515, -0.020017312839627266, 0.017528748139739037, 0.029101256281137466, -0.01887502148747444, 0.026095939800143242, 0.003272191621363163, -0.010838177986443043, -0.013476329855620861, 0.016345659270882607, 0.009927064180374146, -0.00871677789837122, -0.0016649930039420724, -0.006445792503654957, -0.03182100132107735, 0.029482020065188408, -0.02334899827837944, -0.047513920813798904, -0.008404008112847805, -0.0017950307810679078, -0.016563238576054573, -0.0071393270045518875, -0.025198424234986305, -0.025647182017564774, 0.027618996798992157, -0.01869823783636093, -0.022832248359918594, -0.015080978162586689, -0.01430585142225027, 0.038511570543050766, 0.0022284898441284895, -0.025280017405748367, -0.039463479071855545, 0.03802201524376869, 0.027387818321585655, -0.009451108984649181, -0.020098906010389328, -0.020942024886608124, 0.013884291052818298, 0.003930029459297657, -0.00482414523139596, -0.026707882061600685, -0.013387938030064106, 0.041802458465099335, 0.0002154546818928793, -0.00796204898506403, -0.0030937083065509796, -0.027632594108581543, 0.03696131706237793, -0.0028472316917032003, 0.01920139044523239, -0.0008299467735923827, -0.00889356154948473, 0.027564601972699165, 0.011463719420135021, 0.004715355578809977, 0.006275808438658714, -0.010763385333120823, 0.01743355579674244, 0.022900240495800972, -0.010756585747003555, -0.026095939800143242, 0.008268020115792751, 0.010647796094417572, 0.008798370137810707, 0.016141679137945175, 0.007506492547690868, -0.00047128056758083403, 0.01300717331469059, -0.0005656216526404023, -0.004909137263894081, 0.0136735113337636, -0.004987329710274935, 0.004303994122892618, 0.02988998219370842, 0.013136361725628376, 0.014564227312803268, -0.0004933784948661923, 0.021146006882190704, 0.02065645344555378, 0.004429782275110483, -0.019459765404462814, -0.008859564550220966, 0.037450868636369705, -0.00821362528949976, -0.01947336457669735, -0.00983867235481739, 0.006700768135488033, 0.0007768267532810569, 0.0236209724098444, -0.01710718683898449, 0.0072413175366818905, -0.020139701664447784, 0.025402404367923737, 0.03182100132107735, 0.009750280529260635, -0.0011082955170422792, 0.005133516155183315, -0.006721166428178549, -0.020425274968147278, 0.0015655524330213666, 0.004844543058425188, 0.0008023243863135576, -0.02438250184059143, 0.005079121328890324, -0.010131045244634151, 0.003078409703448415, 0.01884782314300537, 0.02861170284450054, 0.03334405645728111, 0.004943133797496557, -0.0016105981776490808, -0.5839833617210388, -0.014101870357990265, 0.0038790341932326555, -0.012674004770815372, 0.015638526529073715, 0.041530486196279526, 0.010035853832960129, 0.02581036649644375, -0.03187539428472519, 0.02103721722960472, -0.013795899227261543, 0.028285333886742592, 0.007030537351965904, 0.016848811879754066, -0.004151008557528257, -0.020098906010389328, 0.01642725057899952, -0.018181486055254936, 0.0039878240786492825, 0.012504021637141705, -0.02400173805654049, 0.01869823783636093, -0.015230564400553703, 0.016141679137945175, -0.014645819552242756, 0.004514774307608604, -0.008132033050060272, -0.014373844489455223, 0.027714187279343605, 0.02450489066541195, -0.015815308317542076, -0.0014210660010576248, 0.030379535630345345, 0.0008307966636493802, 0.047133155167102814, -0.01513537298887968, -0.03483991697430611, 0.029019664973020554, 0.00837681069970131, 0.04639882594347, -0.012422428466379642, -0.025402404367923737, 0.03435036167502403, -0.01293238066136837, -0.010205837897956371, 0.00817962922155857, -0.010083449073135853, -0.016876008361577988, 0.042455196380615234, -0.013734704814851284, -0.015393748879432678, -0.04134010151028633, -0.010369022376835346, -0.017079990357160568, 0.009022749029099941, 0.0038280391599982977, 0.009614293463528156, -0.035438258200883865, -0.00037502715713344514, -0.03758685663342476, -0.009750280529260635, 0.002371276495978236, 0.004181605763733387, -0.005976636428385973, -0.017025595530867577, -0.007329708896577358, -0.003902832046151161, -0.018507855013012886, 0.0010853477288037539, 0.0005316248862072825, 0.003573063062503934, -0.011191745288670063, 0.007499692961573601, 0.01077018491923809, 0.035846222192049026, 0.026639888063073158, 0.02236989140510559, -0.015189767815172672, -0.009607493877410889, 0.02731982432305813, -0.007914453744888306, 0.005949439015239477, -0.008913959376513958, -0.028965270146727562, 0.0029475220944732428, -0.014469035901129246, -0.014890596270561218, -0.002786037279292941, 0.021499572321772575, -0.01698479801416397, 0.006262209732085466, 0.0019208189332857728, 0.02787737175822258, -0.01173569355159998, 0.0037498464807868004, 0.028094951063394547, -0.04800347611308098, -0.012463225051760674, -0.001155890990048647, -0.008438004180788994, -0.05847448855638504, 0.0055074808187782764, 0.0044127837754786015, -0.022913839668035507, 0.02793176658451557, 0.021553967148065567, -0.008845966309309006, -0.00681295758113265, 0.008941156789660454, -0.01997651718556881, -0.015257761813700199, -0.006969342939555645, -0.023688966408371925, -0.022206706926226616, 0.029726797714829445, -0.03668934106826782, 0.0288836769759655, 0.011722095310688019, 0.016848811879754066, 0.02855730801820755, 0.01701199635863304, 0.005789654329419136, 0.042128827422857285, 0.01057980302721262, 0.0011584408348426223, 0.02053406462073326, 0.04329831898212433, 0.004365188535302877, -0.013401536270976067, 0.00262965215370059, 0.0004989029839634895, -0.010824579745531082, 0.011123751290142536, -0.02334899827837944, 0.0016981399385258555, -0.02216590940952301, 0.010022255592048168, 0.002253987593576312, 0.022533075883984566, -0.004531772807240486, 0.002933923387899995, -0.007227718830108643, 0.010878974571824074, -0.01444183848798275, -0.03146743401885033, -0.02198912762105465, -0.002148597501218319, 0.02266906201839447, 0.003416677936911583, -0.013306345790624619, 0.025551991537213326, 0.0009340619435533881, -0.01766473427414894, 0.03135864436626434, -0.0041374098509550095, 0.01430585142225027, -0.007193721830844879, -0.00561627047136426, 0.015692921355366707, -0.0006905599148012698, -0.019092600792646408, -0.0038416378665715456, -0.02787737175822258, -0.013231552205979824, -0.02154036983847618, -0.026680685579776764, -0.0017380861099809408, 0.0014057675143703818, -0.02269626036286354, -0.03157622367143631, -0.050859205424785614, 0.0013275748351588845, 0.00839040894061327, -0.001076848478987813, -0.009906666353344917, 0.011654101312160492, -0.01630486361682415, -0.01831747218966484, -0.006347201764583588, -0.017950307577848434, -0.004548771306872368, 0.002294783713296056, -0.015516136772930622, -0.002508963458240032, 0.019378172233700752, 0.013347141444683075, 0.017651135101914406, 0.007356906309723854, -0.003664854448288679, 0.005731859710067511, -0.01285758800804615, 0.004120411351323128, 0.0015961495228111744, 0.00565366679802537, 0.004371987655758858, -0.000561797060072422, 0.01630486361682415, 0.0028302331920713186, -0.02211151458323002, 0.03168501332402229, 0.04030660167336464, 0.036145392805337906, -0.0019072202267125249, -0.009369516745209694, 0.006037830840796232, -0.043107934296131134, 0.008247622288763523, -0.006952344439923763, 0.010783783160150051, -0.016563238576054573, 0.0166312325745821, -0.01324515137821436, -0.0027707386761903763, 0.007785266265273094, 0.005198109894990921, 0.0204524714499712, -0.026707882061600685, 0.016876008361577988, -0.010382621549069881, 0.0060208323411643505, 0.01743355579674244, 0.00579985324293375, 0.014496233314275742, -0.005687663797289133, -0.016563238576054573, -0.02991717867553234, 0.006139821372926235, 0.018453460186719894, 0.0034591739531606436, -0.02415132336318493, 0.01117134653031826, -0.01281679142266512, 0.022002724930644035, -0.012286441400647163, 0.01837186887860298, -0.02770058810710907, 0.04289035499095917, -0.021581165492534637, 0.008145632222294807, -0.0002583756286185235, -0.015964895486831665, -0.004157808143645525, 0.006241811439394951, -0.018031900748610497, 0.005697862710803747, -0.0038688352797180414, 0.0395994670689106, 0.0016989897703751922, -0.01962294988334179, 0.036798130720853806, -0.023199412971735, 0.003071610350161791, -0.013381138443946838, 0.011382127180695534, 0.00356626370921731, -0.019718140363693237, 2.881759610318113e-05, 0.040170613676309586, 0.01997651718556881, 0.021907534450292587, 0.01235443539917469, 0.0072413175366818905, 0.018072696402668953, 0.024464093148708344, 0.01610088162124157, -0.02186673879623413, -0.03334405645728111, -0.02198912762105465, -0.02077884040772915, -0.008845966309309006, -0.02311781980097294, -0.00251916260458529, -0.017719129100441933, -0.005555076524615288, -0.003408178687095642, -0.021907534450292587, 0.027007054537534714, 0.006000434514135122, 0.02062925510108471, 0.003183799795806408, -0.0019361174199730158, -0.010260232724249363, 0.03225615993142128, 0.010790582746267319, 0.004973731003701687, -0.003515268675982952, 0.008839166723191738, 0.005901843775063753, -0.020887630060315132, 0.010008656419813633, 0.013353941030800343, 0.0053340969607234, 0.02012610249221325, -0.006337002385407686, 0.00046703097177669406, 0.021621961146593094, 0.007676476147025824, -0.015040182508528233, -0.018045498058199883, -0.01077018491923809, 0.007479294668883085, -0.002940722741186619, 0.00991346500813961, 0.005201509688049555, 0.06320684403181076, 0.005976636428385973, 0.0059970347210764885, -0.007819263264536858, -0.0021197001915425062, 0.0006748363957740366, -0.018099892884492874, -0.004018421284854412, -0.017882313579320908, -0.007329708896577358, -0.00951230339705944, 0.020588459447026253, 0.022274700924754143, -0.02219310775399208, 0.01192607544362545, 0.013353941030800343, -0.03228335827589035, -0.021322790533304214, -0.01894301362335682, -0.0023406792897731066, -0.03399679437279701, 0.024613680317997932, -0.005623070057481527, -0.01475460920482874, -0.00907034520059824, -0.014849799685180187, -0.015856105834245682, 0.022125113755464554, 0.004657560959458351, -0.009614293463528156, 0.01102176122367382, 0.011395725421607494, 0.015733717009425163, -0.006527384743094444, -0.012055263854563236, -0.008730377070605755, -0.031032273545861244, -0.0147682074457407, 0.018711835145950317, -0.0012765796855092049, -0.018888618797063828, 0.006700768135488033, -0.002247188240289688, 0.03655335307121277, -0.001750834984704852, -0.002789437072351575, 0.00025093884323723614, 0.035166285932064056, 0.004681358579546213, -0.011994069442152977, -0.0026024547405540943, 0.023906545713543892, 0.005191310774534941, 0.015094577334821224, -0.01675362139940262, 0.008995551615953445, 0.03334405645728111, 0.025497596710920334, -0.0047527519054710865, 0.030678708106279373, 0.0027401417028158903, -0.002165595768019557, -0.004490976687520742, -0.004994129296392202, 0.01746075414121151, -0.004596366547048092, 0.009301522746682167, 0.023335400968790054, -0.01929658092558384, -0.025769570842385292, 0.015012985095381737, -0.015788111835718155, -0.04805786907672882, -0.025783170014619827, 0.041448891162872314, 0.004120411351323128, -0.0010819480521604419, -0.003297689137980342, 0.02450489066541195, 0.0018035299144685268, 0.009151937440037727, 0.0024596680887043476, 0.011708496138453484, -0.020751643925905228, -0.02956361323595047, -0.019935719668865204, -0.028448518365621567, -0.005966437514871359, -0.019106198102235794, 0.006646373309195042, 0.03201138228178024, -0.02604154497385025, -0.031739406287670135, -0.02817654423415661, 0.02334899827837944, 0.015760913491249084, 0.0273470226675272, -0.00557887414470315, 0.002687446540221572, 0.00280813523568213, 0.012708001770079136, -0.02752380445599556, -0.0027503406163305044, -0.005436087492853403, 0.018752632662653923, 0.024423297494649887, 0.005378292873501778, -0.016794417053461075, -0.012735199183225632, 0.024314507842063904, 0.0003297689254395664, 0.012966377660632133, 0.00932192150503397, 0.030025970190763474, 0.010634197853505611, -0.0004317592829465866, -0.013659912161529064, 0.0001197324600070715, 0.0008035992505028844, -0.02083323523402214, 0.05281741917133331, -0.027455812320113182, -0.038429975509643555, -0.00327729107812047, 0.006102424580603838, 0.005881445482373238, -0.0012068862561136484, 0.010505009442567825, 0.03250093758106232, 0.011116951704025269, 0.025796767324209213, -0.020398076623678207, 0.008499198593199253, -0.017297569662332535, 0.0250624381005764, -0.019214987754821777, -0.0030750101432204247, -0.01627766527235508, -0.022478681057691574, -0.01249042246490717, 0.0168624110519886, -0.020819637924432755, 0.02793176658451557, 0.0024885653983801603, 0.004378787241876125, 0.004691557493060827, -0.008383609354496002, -0.0409049428999424, -0.0257151760160923, 0.015284959226846695, -0.004963532090187073, 0.018562249839305878, -0.005187910981476307, -0.024817660450935364, -0.00812523439526558, 0.014033877290785313, 0.003054612083360553, 0.009036348201334476, -0.017800722271203995, -0.033099278807640076, 0.01425145659595728, -0.015502538532018661, 0.01317035872489214, -0.015896901488304138, 0.020466070622205734, -0.028448518365621567, -0.022900240495800972, -0.00020823036902584136, 0.0017627337947487831, 0.014822602272033691, 0.021581165492534637, 0.011626903899013996, -0.03394240140914917, -0.013313144445419312, -0.0012969777453690767, -0.005079121328890324, -0.01577451266348362, 0.009240329265594482, 0.02515762858092785, 0.023784156888723373, 0.028774887323379517, 0.013075167313218117, -0.00915873609483242, 0.005606071557849646, 0.018086295574903488, 0.0072413175366818905, 0.000785750919021666, 0.013449132442474365, -0.001130393473431468, -0.04055137559771538, -0.010464213788509369, 0.008825567550957203, -0.014686615206301212, -0.01627766527235508, -0.008560393005609512, 0.024042533710598946, -0.00634040217846632, 0.03092348389327526, -0.02121400088071823, -0.03486711159348488, 0.002512363251298666, -0.012830390594899654, 0.009607493877410889, 0.02264186553657055, -0.02488565444946289, 0.00047085562255233526, 0.002901626517996192, -0.020561261102557182, -1.3445998092720401e-07, -0.000397974974475801, -0.007431699428707361, -0.027986161410808563, 0.019514160230755806, 0.0025599587243050337, 0.0064219944179058075, 0.002405273262411356, -0.010559404268860817, -0.024790462106466293, -0.003301088698208332, 0.006224812939763069, -0.012694403529167175, 0.00659197848290205, 0.0019786134362220764, 0.006755162961781025, 0.024110527709126472, 0.021227598190307617, -0.012809992767870426, -0.011545311659574509, 0.0014771607238799334, -0.007452097255736589, -0.025647182017564774, -0.005810052156448364, -0.0395994670689106, -0.03290889784693718, 0.03135864436626434, 0.016617633402347565, -0.016345659270882607, 0.010634197853505611, 0.004654161166399717, -0.017297569662332535, -0.00687415199354291, -0.0027214435394853354, 0.02586476132273674, -0.005126716569066048, 0.019011007621884346, 0.04596366733312607, 0.012796393595635891, -0.021200401708483696, -0.0444406121969223, -0.004766350612044334, -0.011715295724570751, 0.029699599370360374, 0.032065775245428085, -0.03054272010922432, -0.015257761813700199, 0.023077024146914482, 0.00832921452820301, -0.0016343959141522646, -0.017066391184926033, 0.03494870662689209, 0.04196564480662346, 0.010314627550542355, -0.01879342831671238, -0.0010496510658413172, -0.010742987506091595, -0.002318581333383918, -0.00025072635617107153, -0.0053578950464725494, 0.0016930403653532267, 0.005993634928017855, -0.006819757167249918, 0.02649030275642872, 0.0029662202578037977, 0.029971573501825333, -0.00044238328700885177, -0.007710473146289587, -0.017392760142683983, -0.013598717749118805, -0.022900240495800972, 0.014537029899656773, -0.022029923275113106, 0.02513043023645878, -0.02447769232094288, -0.005204909481108189, 0.022709859535098076, 0.004297195002436638, 0.01256521511822939, -0.014876997098326683, -0.015067379921674728, 0.056951429694890976, -0.024695271626114845, -0.002174095017835498, -0.01761033944785595, -0.009287924505770206, 0.025076035410165787, 0.017447154968976974, -0.0023763759527355433, 0.00450457539409399, -0.04240080341696739, -0.004334591329097748, 0.017555944621562958, -0.015883302316069603, 0.011722095310688019, 0.001314826076850295, 0.0036138594150543213, -0.011327732354402542, -0.025823965668678284, -0.012191250920295715, 0.010702190920710564, -0.02228829823434353, -0.03788602724671364, -0.027183836326003075, 0.006126222666352987, -0.004015021491795778, 0.008771172724664211, -0.024899251759052277, 0.008091237396001816, 0.03930029645562172, -0.03255533054471016, 0.02018049731850624, -0.02959080971777439, 0.008234024047851562, -0.023063424974679947, -0.006914948113262653, 0.012476823292672634, -0.01781432144343853, 0.008988752961158752, -0.006683770101517439, 0.005048524122685194, -0.007030537351965904, 0.018045498058199883, 0.025456799194216728, 0.004188405349850655, 0.03823959454894066, 0.008594390004873276, -0.0050281258299946785, 0.01610088162124157, -0.003641056828200817, -0.012789594009518623, 0.007003339938819408, 0.011191745288670063, -0.01829027570784092, 0.003440475556999445, -0.012986775487661362, 0.009369516745209694, -0.004429782275110483, 0.016386454924941063, 0.0016369456425309181, -0.03962666541337967, -0.05232786759734154, 0.012211648747324944, 0.0041000135242938995, -0.00839040894061327, 0.010335025377571583, -0.01846705935895443, -0.03788602724671364, -0.022832248359918594, 0.012007667683064938, 0.014972188510000706, -0.012286441400647163, 0.018181486055254936, 0.043162330985069275, 0.0031039074528962374, 0.0013326744083315134, 0.00024477692204527557, -0.03696131706237793, -0.008621587418019772, -0.05164793133735657, -0.02302262932062149, -0.017474353313446045, -0.009906666353344917, 0.047133155167102814, -0.0062724086456000805, -0.02589195966720581, -0.03056991845369339, 0.007112129591405392, 0.003047812730073929, -0.0156521238386631, -0.0072889127768576145, 0.04289035499095917, 0.024232914671301842, -0.004732354078441858, -0.02717023901641369, 0.03859316185116768, -0.017678333446383476, 0.03184819594025612, -0.01582890748977661, -0.015216965228319168, -0.01287118624895811, -0.0010989464353770018, 0.014074672944843769, 0.00428359629586339, -0.016767218708992004, -0.01615527644753456, -0.004929535090923309, 0.010471012443304062, 0.005041724536567926, 0.020289286971092224, 0.0038484372198581696, -0.0016131479060277343, -0.020398076623678207, 0.004188405349850655, -0.023580176755785942, -0.01494499109685421, -0.007016938645392656, -0.011082954704761505, -0.01582890748977661, 0.010056251659989357, 0.004698357079178095, -0.0023423791863024235, 0.010634197853505611, 0.009124740026891232, -0.00403881911188364, -0.0052423058077692986, -0.02649030275642872, 0.0011907377047464252, -0.016386454924941063, 0.011871680617332458, 0.02160836197435856, 0.02634071744978428, -0.01386389322578907, 0.029101256281137466, 0.017909511923789978, 0.02719743549823761, -0.028285333886742592, 0.01567932218313217, -0.021649159491062164, 0.006693969015032053, 0.003447274910286069, -0.015407347120344639, 0.010437016375362873, -0.025579188019037247, 0.006384598091244698, -0.01970454305410385, 0.009281124919652939, 0.008703179657459259, -0.01426505483686924, -0.04664360359311104, 0.007003339938819408, 0.018548650667071342, -0.017501549795269966, -0.0018375267973169684, 0.00933551974594593, -0.02855730801820755, -0.0008227224461734295, -0.017392760142683983, -0.001717688050121069, -0.02033008262515068, 0.0012876286637037992, 0.004705156199634075, 0.0037362477742135525, -0.020914828404784203, 0.004960132297128439, 0.016468048095703125, -0.045555707067251205, -0.010573003441095352, 0.24521207809448242, -0.02515762858092785, -0.0023457787465304136, 0.02861170284450054, -0.017528748139739037, 0.009056746028363705, 0.0019497162429615855, 0.00016584061086177826, -0.0005265253712423146, 0.015788111835718155, -0.0017440356314182281, -0.011470519006252289, -0.023308202624320984, -0.00152985577005893, 0.03862036019563675, -0.00403201999142766, -0.04223761707544327, -0.02503523975610733, -0.007424899842590094, 0.00013492477592080832, 0.021227598190307617, 0.01867103949189186, 0.004800347611308098, 0.0008898660889826715, 0.002282884670421481, -0.017351964488625526, 0.0071869222447276115, 0.011858082376420498, 0.015257761813700199, 0.00839040894061327, -0.022057119756937027, -0.01902460679411888, -0.025755971670150757, -0.005031525623053312, -0.012809992767870426, -0.02053406462073326, 0.03225615993142128, 0.01306836772710085, 0.03124985471367836, -0.0062724086456000805, 0.0023100823163986206, -0.023240208625793457, 0.016794417053461075, -0.03252813220024109, -0.02246508188545704, -0.008886761963367462, 0.0025939554907381535, 0.0017644336912781, -0.008621587418019772, 0.006275808438658714, -0.03965386003255844, -0.030760299414396286, 0.02447769232094288, 0.008988752961158752, -0.007431699428707361, -0.008349613286554813, 0.0026211529038846493, -0.014795404858887196, 0.0014193662209436297, 0.007452097255736589, -0.006435593124479055, 0.05170232430100441, -0.023539381101727486, 0.019187791272997856, -0.03655335307121277, 0.004745952785015106, -0.012422428466379642, -0.023716164752840996, 0.010749786160886288, -0.008009645156562328, 0.006996540352702141, -0.01306836772710085, -0.012136856094002724, -0.012334037572145462, -0.03255533054471016, -0.018535053357481956, 0.027415014803409576, 0.01527136005461216, 0.014414641074836254, 0.0181678868830204, -0.002636451506987214, -0.006884350907057524, 0.0022012924309819937, 0.014278654009103775, -0.03203858062624931, -0.018575849011540413, 0.02470887079834938, -0.025375207886099815, -0.039109911769628525, -0.01819508522748947, -0.011470519006252289, -0.006462790537625551, 0.007159724831581116, 0.0035050695296376944, -0.00013556222256738693, 0.01837186887860298, -0.01592409797012806, 0.03791322559118271, -0.005854248069226742, -0.0010037553729489446, -0.028720492497086525, 0.011511314660310745, 0.022859444841742516, 0.04569169133901596, -0.018575849011540413, -0.021404381841421127, -0.011545311659574509, 0.01040301937609911, -0.006996540352702141, -0.018059097230434418, 0.008662383072078228, -0.05706021934747696, 0.0033316859044134617, 0.002791136968880892, -0.0034846714697778225, 0.009294724091887474, -0.006557981949299574, -0.01920139044523239, -0.028094951063394547, 0.0005282252095639706, 0.01879342831671238, -0.053578950464725494, 0.007023737765848637, 0.00021842941350769252, -0.015325754880905151, -0.019690943881869316, -0.0055958726443350315, -0.0003805516171269119, 0.019962918013334274, -0.021322790533304214, 0.039463479071855545, -0.04536532238125801, 0.04898258298635483, 0.005820251069962978, -0.006727965548634529, 0.02171715348958969, -0.015407347120344639, -0.0021638961043208838, 0.01852145418524742, 0.010674993507564068, -0.009240329265594482, 0.0020874033216387033, 0.0402522049844265, -0.02101001888513565, -0.0034914708230644464, 0.0030019169207662344, -0.00557887414470315, 0.0018511255038902164, 0.021268395707011223, -0.003549265442416072, -0.03628138080239296, -0.013523925095796585, 0.008866364136338234, -0.009349118918180466, 0.02790457010269165, -0.005776055622845888, -0.002658549463376403, -0.030025970190763474, 0.008737176656723022, -0.0012952778488397598, -0.02737421914935112, 0.004470578394830227, -0.006061628460884094, 0.002148597501218319, 0.0018154288409277797, -0.004110212437808514, -0.17156141996383667, 0.022057119756937027, 0.015733717009425163, -0.015420946292579174, 0.011694897897541523, -0.0038892333395779133, 0.004385586362332106, 0.015584130771458149, -0.00846520159393549, -0.004443380981683731, 0.021417981013655663, 0.007207320537418127, -0.009253927506506443, -0.02415132336318493, -0.010131045244634151, 0.0077920653857290745, -0.00025922554777935147, 0.009519102983176708, 0.016644829884171486, 0.043189529329538345, 0.024069730192422867, -0.01944616623222828, -0.011014961637556553, 0.028394123539328575, 0.020098906010389328, 0.013517125509679317, 0.0010224536526948214, 0.005813451949506998, 0.005150514654815197, -0.012395231053233147, -0.005527878645807505, -0.014074672944843769, 0.013714306987822056, 0.011728893965482712, 0.0028353326488286257, -0.005949439015239477, -0.006099024787545204, 0.019786134362220764, -0.007526890374720097, 0.017039192840456963, 0.0032177965622395277, 0.026966257020831108, -0.0063743991777300835, 0.020398076623678207, 0.013292746618390083, 0.017025595530867577, 0.020438872277736664, -0.0021434978116303682, 0.0063608004711568356, 0.0034846714697778225, 0.028149345889687538, -0.03462233766913414, 0.013041170313954353, -0.009233529679477215, 0.012517619878053665, 0.020874032750725746, -0.005561875645071268, 0.013727906160056591, -0.0033333858009427786, -0.010824579745531082, -0.011205343529582024, -0.023688966408371925, -0.004521573893725872, 0.010600200854241848, 0.006928546819835901, -0.006075227167457342, -0.024817660450935364, 0.03299048915505409, -0.020316485315561295, -0.018956612795591354, 0.016876008361577988, -0.011110153049230576, 0.0263679139316082, 0.022709859535098076, 0.006891150493174791, 0.002405273262411356, 0.003658055095002055, 0.019187791272997856, 0.009104341268539429, -0.003420077497139573, -0.025144029408693314, 0.05026086047291756, -0.00020748669339809567, -0.016536040231585503, 0.024137724190950394, -0.01917419210076332, 0.02264186553657055, 0.006065028253942728, -0.0270206518471241, -0.03331685811281204, 0.021567566320300102, -0.010824579745531082, -0.019282981753349304, -0.015869703143835068, 0.007363705895841122, 0.016903206706047058, -0.008791571483016014, 0.000668461958412081, -0.04166647046804428, 0.008084437809884548, -0.015339354053139687, 0.0020772041752934456, -0.0076900748535990715, 0.013523925095796585, 0.011008162051439285, -0.0013488228432834148, -0.02961800806224346, 0.034431952983140945, 0.0426727756857872, 0.010124245658516884, 0.000794250110629946, 0.0020755042787641287, 0.008268020115792751, 0.005235506221652031, -0.010960566811263561, 0.029998771846294403, -0.033452846109867096, 0.009015950374305248, 0.01600569114089012, 0.004820745438337326, -0.030352339148521423, -0.04533812403678894, 0.02035728096961975, 0.028992466628551483, -0.004365188535302877, -0.024763265624642372, -0.038185201585292816, -0.011762890964746475, 0.005017926916480064, 0.01894301362335682, -0.002148597501218319, 0.008533195592463017, -0.015570532530546188, 0.03266412019729614, -0.014972188510000706, 0.025470398366451263, -0.022709859535098076, -0.012687603943049908, -0.005266103427857161, 0.027415014803409576, 0.0063608004711568356, 0.023444190621376038, -0.03304488584399223, 0.017732728272676468, -0.0003964876232203096, 0.0420200377702713, -0.02171715348958969, -0.01059340126812458, 0.005147114861756563, -0.003307888051494956, -0.0125312190502882, 0.013387938030064106, 0.0023236810229718685, 0.02412412501871586, 0.018603045493364334, 0.018603045493364334, 0.0694078579545021, 2.5696796001284383e-05, -0.001076848478987813, -0.016672028228640556, -0.006653172895312309, -0.0028098351322114468, -0.024273712188005447, -0.04074176028370857, 0.019418969750404358, -0.029808389022946358, 0.003685252508148551, 0.016291264444589615, 0.0027452411595731974, -0.012041664682328701, -0.017447154968976974, -0.026000749319791794, -0.020996419712901115, 0.038756344467401505, -0.018902217969298363, -0.014360246248543262, -0.03263692185282707, 0.009077143855392933, 0.013965883292257786, -0.020221292972564697, 0.01731116883456707, 0.017651135101914406, 0.03059711493551731, 0.007676476147025824, -0.034785520285367966, 0.012939180247485638, -0.027183836326003075, 0.008723577484488487, -0.007479294668883085, 0.01899740844964981, 0.013340342789888382, 0.014142666943371296, -0.02071084827184677, -0.0014822602970525622, 0.027143040671944618, -0.0057930536568164825, -0.009519102983176708, 0.031766604632139206, -0.018562249839305878, 0.03527507558465004, -0.023947343230247498, -0.006262209732085466, -0.0015587530797347426, -0.00040732408524490893, 0.013571520335972309, -0.040524180978536606, -0.008342813700437546, 0.01884782314300537, -0.03565583750605583, -0.0014703613705933094, 0.015883302316069603, 0.021526770666241646, 0.005908642895519733, -0.009804675355553627, 0.005449686199426651, -0.04057857394218445, -0.0043753874488174915, 0.010131045244634151, 0.0025973550509661436, -0.024232914671301842, -0.0006484888726845384, -0.002512363251298666, 0.02364817075431347, 0.011497716419398785, 0.006357400678098202, 0.0018256278708577156, -0.011973671615123749, -0.030515523627400398, -0.08099396526813507, 0.02672148123383522, -0.017147982493042946, 0.01633206009864807, 0.0250624381005764, -0.025959951803088188, 0.020370880141854286, -0.008519596420228481, 0.004198604263365269, 0.001006305101327598, -0.009566698223352432, 0.03059711493551731, 0.017052792012691498, -0.007764867972582579, -0.032473739236593246, -0.013993080705404282, 0.02515762858092785, 0.009423911571502686, 0.017324766144156456, 0.010389420203864574, 0.005208308808505535, 0.00212649954482913, 0.025674380362033844, -0.02782297693192959, -0.009940662421286106, 0.019554955884814262, -0.0014924593269824982, 0.03908271715044975, -0.010097048245370388, -0.031005077064037323, 0.010776983574032784, -0.0034948706161230803, 0.01713438518345356, 0.007336508482694626, 0.0010309527860954404, -0.006483188830316067, -0.005191310774534941, -0.00223358953371644, 0.04139449819922447, 0.016046486794948578, -0.024695271626114845, -0.03856596350669861, -0.0072889127768576145, 0.00605142954736948, -0.02447769232094288, 0.004157808143645525, -0.029753994196653366, 0.017351964488625526, 0.0127419987693429, -0.0066259754821658134, 0.03668934106826782, 0.017923111096024513, 0.0063608004711568356, -0.016032887622714043, 0.0023746760562062263, -0.05175672098994255, 0.015407347120344639, 0.029427625238895416, -0.012021266855299473, 0.0036206587683409452, 0.011878480203449726, -0.013734704814851284, 0.01695760153234005, -0.018127091228961945, -0.0012791294138878584, -0.02151317149400711, -0.016726423054933548, 0.01040301937609911, -0.0054054902866482735, 0.008132033050060272, -0.012973177246749401, -0.008356411941349506, 0.010715790092945099, 0.011334531009197235, 0.01527136005461216, 0.029971573501825333, -0.011796887964010239, -0.0053816926665604115, -0.029346033930778503, 0.030107561498880386, 0.016345659270882607, -0.01325874961912632, -0.024137724190950394, 0.02304982766509056, 0.03168501332402229, 0.007513291668146849, -0.027958964928984642, 0.02790457010269165, -0.0047527519054710865, -0.019106198102235794, -0.01683521270751953, 0.007254916243255138, 0.009036348201334476, 0.02145877666771412, 0.02334899827837944, 0.010552605614066124, -0.011728893965482712, -0.001903820550069213, 0.017623938620090485, 0.006544383242726326, -0.0012969777453690767, 0.003041013376787305, -0.004922735970467329, -0.03021635115146637, -0.021649159491062164, -0.01698479801416397, -0.025048838928341866, -0.03252813220024109, 0.01425145659595728, 0.04003462567925453, -0.013517125509679317, -0.005330697633326054, -0.01935097575187683, 0.029971573501825333, -0.01852145418524742, -0.023811355233192444, -0.007010139059275389, 0.007091731298714876, -0.0238521508872509, -0.00014374269812833518, 0.002281185006722808, 0.0011380426585674286, 0.0136259151622653, -0.02121400088071823, 0.04123131185770035, 0.00226758630014956, 0.042863160371780396, -0.05262703821063042, -0.005759057123214006, 0.0024732667952775955, -0.005483683198690414, -0.005497281905263662, -0.022233903408050537, -0.012728399597108364, -0.014360246248543262, 0.021499572321772575, 0.0060208323411643505, 0.013041170313954353, -0.009539500810205936, 0.07914453744888306, -0.00605142954736948, -0.005946039222180843, -0.0044535803608596325, -0.0008660683524794877, -0.0006433893577195704, -0.01531215663999319, 0.007431699428707361, 0.00478674890473485, -0.013394737616181374, 0.016916805878281593, -0.010056251659989357, -0.015040182508528233, -0.011314133182168007, -0.0011380426585674286, -0.002784337615594268, -0.0063608004711568356, 0.02649030275642872, -0.01814069040119648, 0.003408178687095642, 0.019106198102235794, 0.00331128784455359, 0.017229575663805008, 0.005422488786280155, -0.012728399597108364, 0.01463222038000822, 0.004898938350379467, 0.003268791828304529, 0.018426263704895973, -0.008356411941349506, 0.011960072442889214, -0.005262703634798527, -0.011919275857508183, -0.014061074703931808, -0.015352952294051647, 0.017623938620090485, -0.01261960994452238, 0.005099519155919552, 0.0043277922086417675, 0.019786134362220764, 0.0033486844040453434, 0.034486349672079086, -0.03590061515569687, -0.014020278118550777, -0.0041136122308671474, -0.007798864971846342, -0.00583045044913888, -0.007547288667410612, -0.034078385680913925], "cc5a89fa-f97d-4b34-a08d-7c8f2380f647": [-0.031575385481119156, -0.013527308590710163, 0.02880414016544819, 0.005906388163566589, -0.04025301709771156, -0.004300326574593782, -0.005297554656863213, -0.019412701949477196, -0.004454284440726042, -0.03255511820316315, 0.024591289460659027, 0.011385893449187279, -0.009713349863886833, -0.010455147363245487, -0.002421339275315404, 0.009160500019788742, 0.0011135711101815104, -0.002657524775713682, 0.011161954142153263, -0.006319275591522455, 0.018251020461320877, 0.0063752601854503155, -0.0395532064139843, -0.032639093697071075, -0.012449602596461773, 0.012302642688155174, -0.009895299561321735, -0.017481230199337006, 0.024759244173765182, -0.016431516036391258, 0.024437332525849342, 0.0014538533287122846, -0.018139049410820007, -0.02344360202550888, -0.030287735164165497, 0.016431516036391258, 0.000605334818828851, -0.02000054158270359, 0.03031572699546814, -0.00043738065869547427, -0.003017926588654518, 0.037789687514305115, -0.0063822586089372635, -0.0016043122159317136, -0.011987728998064995, 0.013359354808926582, 0.016515493392944336, -0.00036827451549470425, -0.024661270901560783, 0.05805615708231926, 0.01253357995301485, 0.012939468957483768, -0.023737521842122078, -0.025095151737332344, 0.02817431278526783, 0.0046187397092580795, 0.008523673750460148, 0.02428337372839451, 0.001046214485540986, -0.012281648814678192, 0.03389874845743179, -0.009783330373466015, -0.02838425524532795, 0.0013882461935281754, 0.014514039270579815, -0.00016358036373276263, -0.008586657233536243, 0.006140824407339096, 0.024115419015288353, 0.019076794385910034, 0.029056072235107422, 0.03493446856737137, -0.023695534095168114, 0.008194764144718647, 0.017397252842783928, -0.025962915271520615, -0.03196727856993675, -0.007529945112764835, 0.003974915482103825, -0.0066026984713971615, 0.03266708552837372, -0.04999435693025589, -0.013373350724577904, 0.0027362534310668707, 0.01624956540763378, 0.008670633658766747, -0.015521764755249023, 0.022309912368655205, -0.00013372913235798478, -0.012701533734798431, 0.014640005305409431, 0.014297098852694035, 0.02331763692200184, -0.0008848210563883185, 0.00033743918174877763, 0.003292601555585861, -0.04072888568043709, 0.006875623948872089, 0.011756791733205318, -0.016053618863224983, -0.0038034620229154825, -0.007208032999187708, -0.008509677834808826, -0.01776115410029888, -0.01818103902041912, -0.038769420236349106, 0.01494792103767395, -0.006945604924112558, 0.012967461720108986, -0.004482276737689972, -0.011833771131932735, 0.007914840243756771, -0.01176378969103098, -0.010231208056211472, -0.010189219377934933, 0.024479320272803307, 0.03300299495458603, -0.013226390816271305, -0.0350184440612793, -0.018880847841501236, 0.013562299311161041, 0.01622157357633114, 0.001026095007546246, -0.04517967253923416, 0.003607515711337328, 0.02925201877951622, 0.016179585829377174, -0.015675721690058708, -0.020378438755869865, -0.015255836769938469, 0.04946250468492508, 0.0012491591041907668, 0.010350176133215427, -0.01479396317154169, -0.008383712731301785, 0.018460962921380997, 0.012183675542473793, -0.007292010355740786, -0.00295494357123971, 0.0018789872992783785, 0.01805507391691208, 0.029308002442121506, -0.00690711522474885, -0.019832588732242584, 0.006585203111171722, 0.009762336499989033, 0.001479221391491592, 0.0016410521930083632, 0.006123329047113657, -0.004296827595680952, 0.016739431768655777, -0.016837405040860176, 0.007928836159408092, 0.020238477736711502, -0.0001394150749547407, -0.005545986816287041, 0.014612012542784214, 0.018334995955228806, 0.020140504464507103, -0.0002065530134132132, -0.00919549074023962, 0.03300299495458603, -0.027894388884305954, -0.015857672318816185, -0.009692355059087276, 0.017467234283685684, 0.01805507391691208, -0.014192127622663975, -0.02106425166130066, -0.006088338792324066, -0.013912203721702099, 0.009167497977614403, -0.013695263303816319, 0.007578931748867035, -0.011812776327133179, 0.021022263914346695, 0.03129545971751213, -0.0004819934838451445, -0.03599817678332329, 0.0114488760009408, -0.00687912292778492, 0.02173606865108013, 0.0181670431047678, 0.033814772963523865, -0.010301189497113228, -0.026424789801239967, 0.008999544195830822, -0.008019811473786831, 0.02645278163254261, 0.007382985204458237, 0.02944796346127987, 0.03473852202296257, 0.002090679481625557, -0.01053912378847599, -0.6082180142402649, -0.051114052534103394, -0.020728344097733498, -0.021372167393565178, 0.01848895475268364, 0.01510187890380621, 0.009755337610840797, 0.0014136142563074827, -0.04851076379418373, -0.0027047619223594666, -0.03095955215394497, 0.030511673539876938, 0.00118267722427845, 0.007229027338325977, -0.004083385691046715, -0.03890938311815262, 0.03095955215394497, 0.0023338631726801395, -0.008859582245349884, 0.005556483753025532, -0.01053912378847599, 0.00013427586236502975, -0.002687266794964671, -0.0020696851424872875, -0.010280194692313671, 0.017789145931601524, 0.0012622805079445243, -0.014765970408916473, 0.018978821113705635, -0.0027030124329030514, -0.007320002652704716, -0.011728799901902676, 0.015633733943104744, -0.01699136383831501, 0.03739779442548752, -0.016921382397413254, -0.036837946623563766, 0.017649183049798012, 0.023289645090699196, 0.03795764222741127, 0.010777059011161327, -0.023163679987192154, 0.02331763692200184, 0.004261836875230074, -0.005017630755901337, -0.00043847408960573375, -0.013261381536722183, -0.0015588246751576662, 0.04481577128171921, -0.032107237726449966, 0.004436789080500603, -0.030483681708574295, 0.008467689156532288, -0.01479396317154169, 0.022659815847873688, -0.00448927516117692, 0.020406432449817657, -0.01967862993478775, -0.011917747557163239, -0.036725979298353195, -0.005378032568842173, 0.010035261511802673, -0.013198398053646088, -0.004744705278426409, 0.02042042836546898, 0.003401071997359395, 0.0003669623692985624, 0.0038734429981559515, -0.007977822795510292, -0.015451783314347267, 0.006483730860054493, 0.0016629212768748403, -0.01468199398368597, -0.01601163111627102, 0.014227117411792278, 0.032975003123283386, 0.012281648814678192, -0.025654999539256096, 0.004076387733221054, -0.0012972709955647588, 0.009860309772193432, 0.005738433916121721, -0.009552393108606339, -0.012001724913716316, -0.004828682169318199, 0.003726483089849353, -0.009517403319478035, 0.01668344810605049, 0.013212394900619984, -0.019426699727773666, 0.02183404192328453, 0.007655910681933165, -0.00699109211564064, -0.008082794025540352, 0.005364036187529564, 0.01666945219039917, -0.03255511820316315, -0.0060743424110114574, 0.0011476868530735373, -0.027460506185889244, -0.04358410835266113, 0.009685357101261616, 0.0061723156832158566, -0.006270288955420256, 0.007089065387845039, 0.03356284275650978, -0.027684446424245834, 0.007320002652704716, 0.006424246821552515, 0.004184857942163944, -0.03034372068941593, -0.016165588051080704, -0.01231663953512907, -0.028972094878554344, 0.013072432950139046, -0.025515036657452583, 0.018321000039577484, 0.012344631366431713, 0.026858670637011528, 0.002176406094804406, 0.015423791483044624, 0.01945469155907631, 0.01505989022552967, 0.018041076138615608, 0.011931744404137135, -0.00015133370470721275, 0.033618826419115067, 0.002440584124997258, -0.0076349168084561825, 0.008131780661642551, 0.013471323996782303, 0.005948376841843128, 0.005287057254463434, -0.029084064066410065, -0.006042851135134697, -0.013219392858445644, 0.014723981730639935, 3.261219535488635e-05, 0.043052252382040024, -0.0030494178645312786, 0.0017285282956436276, -0.0034640547819435596, 0.012015720829367638, -0.012050711549818516, -0.02558501809835434, -0.014500043354928493, 0.007683903444558382, 0.017061345279216766, -0.008215758018195629, -0.021372167393565178, 0.007599926088005304, -0.025724980980157852, -0.011301916092634201, 0.007438970264047384, 0.008936561644077301, 0.012456600554287434, -0.012001724913716316, -0.007417975924909115, -0.0051400973461568356, -0.015171860344707966, -0.015199852176010609, -0.01128792017698288, -0.0052625639364123344, -0.0067636542953550816, -0.016417520120739937, -0.036194123327732086, -0.011952738277614117, -0.0017871373565867543, -0.0008082794374786317, -0.031127506867051125, -0.06259091943502426, -0.003579523181542754, -0.0005322922370396554, -0.0006416374235413969, -0.03904934599995613, -0.005336043890565634, -0.032835040241479874, -0.01279250904917717, -0.003513041418045759, -0.01257556863129139, -0.014584020711481571, 0.009223483502864838, -0.015829680487513542, -0.009573387913405895, 0.015241840854287148, 0.023415610194206238, 0.004660728387534618, 0.011847767047584057, -0.008873578161001205, 0.004986139480024576, -0.009384439326822758, 0.014849947765469551, -0.0036949918139725924, -0.006175814662128687, -0.011945740319788456, -0.014269106090068817, -0.0069840941578149796, 0.00047893181908875704, -0.02170807681977749, 0.02883213199675083, 0.03258311003446579, 0.042212482541799545, 0.0046187397092580795, 0.0008432698668912053, 0.0027852400671690702, -0.02505316399037838, 0.024815227836370468, -0.02225392684340477, -0.009615376591682434, -0.003841951722279191, 0.03076360560953617, -0.010280194692313671, -0.020798325538635254, 0.0036635003052651882, 0.0038314545527100563, 0.014570023864507675, -0.014010176993906498, 0.010875032283365726, 0.013226390816271305, 3.903622200596146e-05, -0.012785511091351509, 0.003577773692086339, 0.020084518939256668, -0.009076523594558239, -0.0011940491385757923, -0.009601379744708538, 0.006126828026026487, 0.016949374228715897, -0.004510269034653902, -0.002239388879388571, 0.022085973992943764, -0.0046817222610116005, -0.0023583564907312393, -0.002694264752790332, 0.007120557129383087, -0.010560118593275547, 0.055760785937309265, -0.011259927414357662, 0.002339111641049385, 8.397708734264597e-05, -0.005927382502704859, 0.015535760670900345, 0.011175950057804585, -0.032751064747571945, 0.02463327907025814, -0.0037614735774695873, 0.04190456494688988, -0.0017302779015153646, -0.009265471249818802, 0.03255511820316315, 0.0008034682250581682, -0.007005088496953249, -0.02236589603126049, 0.017999088391661644, 0.01392619963735342, -0.004457783419638872, -0.00578042259439826, 0.031043529510498047, 0.019272740930318832, 0.019160771742463112, 0.025207120925188065, 0.0008493931964039803, 0.020686354488134384, 0.028034349903464317, 0.021470140665769577, -0.008775605820119381, -0.0518418550491333, -0.02109224535524845, 0.006256293039768934, -0.003441310953348875, -0.017579203471541405, -0.004965145140886307, -0.0252631064504385, -0.004181358963251114, 0.018013084307312965, -0.019734615460038185, 0.03084758296608925, 0.010203216224908829, 0.0011660568416118622, 0.008397708646953106, -0.004499772097915411, -0.0013952442677691579, 0.03818158060312271, 0.006109333131462336, 0.0005038625095039606, -0.004345814231783152, -0.01021721214056015, 0.019860580563545227, -0.011742795817553997, -0.0022061478812247515, 0.023359626531600952, 0.0031124006491154432, -0.0005392903694882989, 0.012330635450780392, -0.01753721386194229, 0.021652091294527054, -0.012442604638636112, -0.012260654009878635, 0.000845894159283489, -0.0027467503678053617, 0.014863943681120872, 0.028244292363524437, 0.0113998893648386, -0.006998090539127588, 0.05772025138139725, 0.011315912008285522, 0.00465372996404767, -0.003950422164052725, -0.017649183049798012, -0.025417065247893333, -0.007767880335450172, -0.01134390477091074, -0.012141686864197254, 0.0030896568205207586, 0.021778056398034096, -0.006875623948872089, -0.010882030241191387, -0.04170861840248108, 0.021246202290058136, 0.0026330314576625824, -0.03401071950793266, -0.02140016108751297, -0.02859419770538807, -0.012176677584648132, -0.026270831003785133, 0.03353485092520714, 0.004534762352705002, -0.02611687406897545, -0.01294646691530943, -0.009391437284648418, -0.016109604388475418, 0.005206579342484474, -0.001342758652754128, 0.008936561644077301, -0.005364036187529564, 0.0015719460789114237, 0.002106425119563937, 0.004695718642324209, 0.007085566408932209, -0.0013803733745589852, -0.016921382397413254, -0.042212482541799545, 0.012862490490078926, 0.0003704614064190537, -0.01247759535908699, 4.994340270059183e-05, 0.004576751030981541, 0.047587014734745026, -0.009230481460690498, -0.0024458325933665037, -0.027922380715608597, 0.024213392287492752, 0.01037816796451807, -0.027684446424245834, -0.026046892628073692, 0.02352757938206196, -0.00822275597602129, 0.027614464983344078, -0.02711060270667076, 0.022197943180799484, 0.04098081588745117, -0.025836950168013573, 0.019846584647893906, 0.014751974493265152, 0.02589293383061886, 0.01037117000669241, -0.005126101430505514, 0.0063927555456757545, 0.02098027430474758, 0.014654001221060753, -0.000561159395147115, 0.017649183049798012, 0.009538397192955017, -0.02460528537631035, 0.00294269691221416, -0.01720130629837513, -0.04347213730216026, -0.009216484613716602, 0.034878481179475784, 0.007669907063245773, -0.027684446424245834, -0.02397545799612999, 0.020840313285589218, 0.0027170085813850164, -0.006056847050786018, -0.00690711522474885, 0.012925473041832447, -0.023037713021039963, -0.01750922203063965, -0.008257746696472168, -0.04498372599482536, -0.023373622447252274, -0.01155384723097086, -0.0072570196352899075, 0.030063796788454056, -0.020462416112422943, -0.031883299350738525, 0.00688262190669775, 0.027796415612101555, -0.0002219706802861765, 0.01731327548623085, -0.006837134249508381, 0.0276284608989954, 0.0167534276843071, 0.002685517305508256, -0.023611556738615036, -0.011427881196141243, 0.007977822795510292, 0.019916566088795662, -0.005441015120595694, -0.003096655011177063, 0.008719620294868946, -0.01990256831049919, 0.01462600938975811, 0.013681266456842422, 0.0061618187464773655, 0.016949374228715897, -0.0010750816436484456, -0.014178130775690079, 0.0013313867384567857, -0.01818103902041912, 0.01382122840732336, -0.0032226205803453922, 0.0006613195291720331, 0.0427723303437233, -0.03440261259675026, -0.04308024421334267, -0.012596562504768372, 0.02116222493350506, -0.003537534736096859, 0.004797190893441439, 0.017033351585268974, -0.011497862637043, 0.019188763573765755, 0.01032918132841587, -0.02947595715522766, 0.01510187890380621, -0.005010632798075676, 0.0181670431047678, -0.008705624379217625, 0.00012662170047406107, -0.007501952815800905, -0.026382800191640854, -0.014849947765469551, 0.015759699046611786, -0.024871213361620903, 0.012078704312443733, -0.007113558705896139, 0.004818185232579708, 0.0036145136691629887, 0.0022113965824246407, -0.03689393401145935, -0.01924474909901619, 0.006700671743601561, -0.0057909199967980385, 0.010868034325540066, -0.003345087170600891, -0.02312169037759304, -0.0113509027287364, 0.004793691914528608, -0.0015369555912911892, -0.014667997136712074, -0.022659815847873688, -0.01699136383831501, 0.0009062527096830308, -0.006357765290886164, -0.0030861578416079283, -0.030511673539876938, -0.004286330193281174, -0.025347083806991577, -0.024759244173765182, 0.01031518541276455, -0.01785912737250328, 0.021904023364186287, 0.0039049345068633556, 0.021232206374406815, -0.042100511491298676, -0.016809413209557533, -0.0037754697259515524, -0.00693860650062561, -0.023961462080478668, 0.024367351084947586, 0.021904023364186287, 0.027362532913684845, 0.03300299495458603, -0.0026347809471189976, -0.0014599766582250595, 0.0028832133393734694, 0.01904880255460739, 0.006249294616281986, -0.011322909966111183, -0.006672678980976343, -0.038433510810136795, -0.028776148334145546, 0.006662182044237852, 0.013191400095820427, -0.010700080543756485, -0.007229027338325977, -0.02065836265683174, 0.03602616861462593, -0.0005642210599035025, 0.009629372507333755, -0.025431061163544655, -0.0277264341711998, -0.018418973311781883, 0.00929346401244402, -0.006228300277143717, 0.01355530135333538, -0.022099969908595085, -0.009531399235129356, 0.023135686293244362, -0.006550212390720844, -0.0037089879624545574, 0.0005904638674110174, -0.002339111641049385, -0.0032541120890527964, 0.008719620294868946, -0.0114488760009408, 0.00015056828851811588, -0.016515493392944336, -0.017551211640238762, -0.033590834587812424, -0.01676742546260357, -0.016417520120739937, -0.003122897818684578, 0.014919928275048733, 0.0020311956759542227, -0.009825319051742554, -0.00913950614631176, 0.024017445743083954, -0.01387721300125122, 0.003513041418045759, -0.0037054887507110834, -0.0018422473222017288, -0.011154956184327602, -0.023135686293244362, -0.006742659956216812, -0.05161791294813156, 0.022771786898374557, 0.021582109853625298, -0.021904023364186287, 0.012652547098696232, -0.018139049410820007, -0.033282916992902756, 0.005916885565966368, 0.007641914766281843, 0.02247786708176136, -0.005608969368040562, 0.024143412709236145, 0.03308697044849396, 0.010245203971862793, -0.0017871373565867543, -0.0004784944176208228, -0.014017174951732159, -0.002500067697837949, 0.015647729858756065, 0.04204452782869339, -0.028776148334145546, -0.0158996619284153, 0.007292010355740786, -0.002961941761896014, -0.009048530831933022, -0.023961462080478668, 0.027278555557131767, 0.036306094378232956, 0.019384710118174553, -0.02839825116097927, -0.004996636416763067, -0.03524238243699074, -0.006266789976507425, -0.011945740319788456, 0.007005088496953249, 0.010651093907654285, 0.010567116551101208, -0.01721530221402645, 0.03879741206765175, 0.0019629644230008125, 0.028090335428714752, 0.0047062155790627, -0.0013217643136158586, -0.004636235069483519, 0.00045881231199018657, -0.0021781555842608213, 0.020084518939256668, 0.012771515175700188, 0.029839856550097466, -0.04011305421590805, -0.012967461720108986, 0.02065836265683174, -0.0013226390583440661, 0.0009657364571467042, 0.005287057254463434, 0.0017486478900536895, 0.045963458716869354, -0.03493446856737137, -0.01016822550445795, 0.00033547094790264964, -0.008901570923626423, 0.022841766476631165, 0.019818592816591263, -0.012554573826491833, 0.018684901297092438, -0.04893064871430397, 0.009930290281772614, 0.013170406222343445, -0.013744249939918518, -0.0013926200335845351, -0.0028289780020713806, -0.013849221169948578, 0.0027869895566254854, -0.03294701129198074, 0.004580250009894371, -0.0024860715493559837, -0.03238716349005699, 0.0027887390460819006, -0.015115874819457531, 0.002076683333143592, 0.008334726095199585, 0.01473797857761383, -0.009230481460690498, 0.040812864899635315, 0.027698442339897156, -0.029867850244045258, 0.03471053019165993, -0.022645819932222366, 0.016865398734807968, -0.057384341955184937, 0.005098108667880297, -0.0005677200970239937, -0.014751974493265152, 0.011308914050459862, -0.0003192878793925047, -0.006739160977303982, -0.005927382502704859, 0.020910294726490974, 0.01958065666258335, -0.007816866971552372, 0.0012815253576263785, 0.015521764755249023, 0.01177078764885664, 0.014059163630008698, -0.022533850744366646, -0.015339814126491547, 0.006844132207334042, -0.004226846620440483, 0.00935644656419754, 0.0038174584042280912, -0.007075069472193718, -0.0008056551450863481, -0.006672678980976343, 0.004657228942960501, 0.011574841104447842, -0.0335068553686142, -0.013422337360680103, 0.031659360975027084, 0.015745703130960464, -0.0027030124329030514, 0.026270831003785133, -0.020294461399316788, -0.02880414016544819, -0.020350446924567223, 0.013191400095820427, -0.0030354217160493135, -0.03720184788107872, 0.01500390563160181, 0.03202326223254204, 0.002708260901272297, 0.01133690681308508, -0.004195355344563723, -0.03625010699033737, -0.0019192262552678585, -0.025221118703484535, -0.017817137762904167, -0.024927198886871338, 0.002944446634501219, 0.024899205192923546, 0.017579203471541405, -0.004814686253666878, -0.014821955002844334, -0.010259200818836689, -0.02302371710538864, -0.013373350724577904, -0.023807503283023834, 0.02237989380955696, 0.014185129664838314, 0.010070252232253551, -0.022547846660017967, 0.03174333646893501, -0.006756656337529421, 0.02428337372839451, -0.020350446924567223, -0.0039469231851398945, -0.010203216224908829, 0.008691628463566303, 0.006144323386251926, -0.004370307549834251, -0.0062422966584563255, -0.022309912368655205, 0.00025761721190065145, 0.01167281437665224, 0.02258983626961708, 0.01998654566705227, -0.014528036117553711, -0.012288646772503853, -0.018013084307312965, 0.016641458496451378, 0.00291820359416306, -0.011798780411481857, -0.016795417293906212, -0.005458510480821133, -0.006385757587850094, 0.002188652753829956, -0.0033905748277902603, -0.002531559206545353, 0.010518129914999008, -0.0045487587340176105, 0.01871289312839508, 0.0034832993987947702, -0.010665089823305607, -0.018237022683024406, -0.023205667734146118, -0.008656637743115425, 0.03095955215394497, 0.011056982912123203, -0.026074884459376335, 0.03182731568813324, 0.016935378313064575, 0.03213522955775261, -0.00036105772596783936, 0.022211939096450806, -0.019594652578234673, 0.011644822545349598, 0.01053912378847599, -0.015787692740559578, 0.012057709507644176, -0.016179585829377174, 0.01750922203063965, -0.02666272409260273, 0.008663635700941086, 0.005465508438646793, -0.02065836265683174, -0.04204452782869339, 0.02149813435971737, 0.012568570673465729, -0.0026767696253955364, 0.025571022182703018, 0.009391437284648418, -0.008831590414047241, 0.013443331234157085, -0.01160983182489872, -0.007082067430019379, 0.0046817222610116005, 0.003918930422514677, 0.00929346401244402, 0.016067614778876305, -0.02246386930346489, -0.004128873348236084, 0.029699895530939102, -0.03507442772388458, -0.0038209573831409216, 0.19673031568527222, 0.007215031422674656, -0.009398435242474079, 0.035550300031900406, -0.02711060270667076, 0.009629372507333755, 0.015227844938635826, -0.006669180002063513, -0.0055704801343381405, 0.0227997787296772, 0.003754475386813283, 0.019482683390378952, -0.02352757938206196, -0.013646276667714119, 0.017341267317533493, 0.0035340357571840286, -0.037901658564805984, -0.022393889725208282, 0.0023163678124547005, 0.002024197718128562, 0.00812478270381689, 0.006207306403666735, 0.00176001968793571, -0.014360081404447556, 0.008334726095199585, -0.0011293168645352125, 0.009223483502864838, -0.0038454507011920214, 0.018782874569296837, 0.019622646272182465, -0.010574114508926868, 0.006588702090084553, -0.024143412709236145, 0.006305279675871134, -0.015185856260359287, -0.0276284608989954, 0.027824407443404198, 0.028538212180137634, 0.03552230820059776, -0.002629532478749752, -0.001286773825995624, -0.02958792634308338, 0.023037713021039963, -0.024003449827432632, -0.010987001471221447, 0.018097061663866043, -0.013905205763876438, -0.00691061420366168, 0.0036285098176449537, 0.013254383578896523, -0.03409469500184059, -0.023387618362903595, 0.050806134939193726, 0.008194764144718647, 0.005615967325866222, -0.0036669992841780186, 0.020182492211461067, -0.018334995955228806, 0.01731327548623085, 0.008684630505740643, -0.027684446424245834, 0.03280704841017723, -0.004765699617564678, -0.007445968221873045, -0.019090790301561356, -0.00015658227493986487, -0.0010969507275149226, -0.03549431264400482, 0.0008533296640962362, 0.011126963421702385, -0.003715985920280218, -0.01021021418273449, -0.0004732458619400859, 0.01839098148047924, -0.021148229017853737, -0.033058978617191315, 0.03927328437566757, -0.00056509580463171, 0.006266789976507425, 0.0035585290752351284, 0.004051894415169954, -0.02278578281402588, 0.002958442782983184, -5.893704292248003e-05, -0.01710333302617073, -0.029531940817832947, 0.025431061163544655, 0.004986139480024576, -0.015423791483044624, 0.0024003449361771345, -0.0137652438133955, -0.014863943681120872, 0.009685357101261616, 0.024689262732863426, -0.0068861208856105804, 0.005336043890565634, -0.002507065888494253, 0.03826555982232094, 0.0064452411606907845, 0.004856674931943417, -0.03678196296095848, -0.0004854925209656358, 0.015115874819457531, 0.014723981730639935, -0.0091325081884861, -0.028118327260017395, -0.0040903836488723755, -2.178702379751485e-05, 0.02109224535524845, 0.011539851315319538, 0.006609696429222822, -0.041680626571178436, -0.006917612161487341, -0.0063822586089372635, -0.004695718642324209, 0.009398435242474079, 0.012344631366431713, -0.0006967473891563714, -0.014654001221060753, 0.007536943536251783, -0.005136598367244005, -0.02461928129196167, -0.01043415255844593, -0.006189811043441296, -0.022841766476631165, -0.006476732436567545, -0.016081612557172775, 0.0006372635834850371, 0.0158016886562109, -0.014542032033205032, 0.03280704841017723, -0.050918105989694595, 0.01977660320699215, 0.0021694081369787455, -0.01500390563160181, 0.0034115691669285297, -0.011028990149497986, 0.00145910179708153, 0.01958065666258335, -0.0038454507011920214, -0.015535760670900345, 0.0017582701984792948, -0.006291283294558525, -0.013156410306692123, -0.0031193988397717476, -0.004170862026512623, -0.008033807389438152, -0.006529218517243862, 0.007180040702223778, -0.01412914413958788, -0.030399704352021217, -0.011357900686562061, -0.0038979363162070513, 0.003796464065089822, 0.02816031500697136, -0.03902135044336319, -0.009580385871231556, -0.022393889725208282, 0.018992817029356956, 0.005437516141682863, -0.03622211515903473, 0.002066186163574457, -0.005049122031778097, -0.015983639284968376, 0.0019734615925699472, -0.007222029380500317, -0.17926308512687683, 0.034346628934144974, 0.021582109853625298, -0.021008267998695374, 0.00225688423961401, 0.0023286144714802504, 0.014010176993906498, 0.004184857942163944, -0.003971416503190994, -0.010287192650139332, 0.03314295783638954, 0.017061345279216766, -0.01349931675940752, -0.019818592816591263, -0.01300245150923729, 0.018125053495168686, 0.015983639284968376, 0.008740615099668503, 0.008474687114357948, 0.04056093096733093, 0.01979059912264347, -0.018041076138615608, 0.006483730860054493, 0.04117676243185997, 0.01505989022552967, 0.0029794368892908096, -0.014164134860038757, 0.01776115410029888, 0.01612360030412674, -0.01678142137825489, -0.013023446314036846, 0.00030922811129130423, 0.005168089643120766, 0.018726889044046402, 0.011854765005409718, -0.014640005305409431, 0.0029252017848193645, 0.020616374909877777, -0.011364898644387722, 0.021974002942442894, 0.007159046363085508, 0.008075796067714691, -0.009895299561321735, 0.01494792103767395, 0.01375824585556984, 0.027670448645949364, 0.03053966723382473, 0.004849676508456469, 0.004184857942163944, -0.010609105229377747, 0.0089855482801795, -0.01477996725589037, 0.02482922561466694, -0.008726619184017181, 0.023485591635107994, 0.02428337372839451, -0.008740615099668503, -0.002227142220363021, 0.013520310632884502, -0.020154500380158424, -0.010665089823305607, -0.0421844907104969, 0.0012421610299497843, 0.0043283188715577126, -0.012211667373776436, 0.018348993733525276, -0.017467234283685684, 0.027572475373744965, -0.04666326567530632, -0.00695960083976388, 0.004174361005425453, -0.021848037838935852, 0.038881391286849976, 0.027376528829336166, 0.018125053495168686, -0.001194923883304, 0.0022043983917683363, 0.013324364088475704, 0.004083385691046715, -0.007085566408932209, -0.04268835112452507, 0.05620866268873215, 0.005252066999673843, -0.008292737416923046, 0.0473070926964283, -0.018460962921380997, -0.000819651351775974, 0.012554573826491833, -0.011301916092634201, -0.04235244169831276, 0.0250671599060297, -0.019734615460038185, -0.010805051773786545, -0.032219208776950836, -0.00341506814584136, 0.0167534276843071, 0.006357765290886164, -0.00585740152746439, 0.004874169826507568, -0.0076349168084561825, -0.001216792967170477, 0.015493771992623806, -0.007998817600309849, -0.0001809662498999387, 0.031547389924526215, 0.014290100894868374, -0.03440261259675026, 0.03280704841017723, 0.04523565620183945, 0.026256835088133812, -0.02331763692200184, 0.007508950773626566, 0.003028423525393009, 0.0004658103862311691, -0.012610559351742268, 0.02944796346127987, -0.02398945391178131, 0.01063709706068039, 0.016963372007012367, 0.027824407443404198, 0.009580385871231556, -0.0346265509724617, -0.002267381176352501, 0.028566205874085426, -0.019706621766090393, -0.02345759980380535, -0.07658710330724716, -0.022085973992943764, 0.0051400973461568356, 0.03261110186576843, -0.012806504964828491, 0.01687939465045929, -0.011063980869948864, 0.03932926803827286, -0.02571098320186138, 0.033282916992902756, -0.004303825553506613, -0.017705168575048447, -0.029867850244045258, 0.036194123327732086, 0.009811323136091232, 0.014416065998375416, -0.033814772963523865, 0.015353810042142868, -0.0019034806173294783, 0.033814772963523865, -0.009594381786882877, -0.017663180828094482, 0.015605741180479527, 0.003953921142965555, 0.009468416683375835, -0.0058014169335365295, -0.017789145931601524, 0.015017901547253132, 0.02011251263320446, 0.03389874845743179, 0.045431602746248245, -0.006221302319318056, -0.012981457635760307, 0.002052190015092492, -0.00457325205206871, 0.005427019204944372, -0.001885985373519361, -0.0333109088242054, 0.029280010610818863, -0.020686354488134384, -0.007928836159408092, -0.005301053635776043, 0.009097517468035221, -0.015241840854287148, -0.0031561388168483973, -0.008243750780820847, -0.02473125234246254, 0.02331763692200184, -0.0075649358332157135, -0.023051708936691284, -0.00892956368625164, 0.026522763073444366, 0.013842223212122917, -0.021106241270899773, 0.028412247076630592, 0.01370226126164198, 0.03986112400889397, 0.023471595719456673, -0.01124593149870634, 0.016179585829377174, -0.013618283905088902, 0.012225664220750332, -0.015339814126491547, 0.018153047189116478, 0.023191671818494797, 0.01710333302617073, -0.027936376631259918, 0.00892956368625164, 0.017915111035108566, -0.0018632415449246764, -0.008936561644077301, 0.03569025918841362, -0.010175223462283611, 0.03602616861462593, -0.013947194442152977, 0.0009141255868598819, -0.018404977396130562, -0.009888301603496075, 0.015227844938635826, -0.029112055897712708, -0.011070978827774525, 0.006088338792324066, -0.021218210458755493, -0.005846904590725899, 0.037033893167972565, 0.0027502495795488358, -0.010658091865479946, -0.0005799667560495436, 0.009881303645670414, -0.030399704352021217, 0.017271287739276886, 0.01633354276418686, 0.008607651107013226, -0.044451870024204254, 0.003275106195360422, 0.010399162769317627, -0.008894572965800762, 0.006567707750946283, -0.00677415169775486, -0.0029776873998343945, -0.03583022207021713, -0.028440238907933235, -0.07384385168552399, 0.030679628252983093, 0.010840041562914848, -0.002242887858301401, 0.0025648002047091722, -0.02085430920124054, 0.03429064154624939, -0.030287735164165497, 0.011938742361962795, -0.012960463762283325, 0.015409794636070728, 0.016599470749497414, -0.0039574201218783855, -0.01783113367855549, -0.016151592135429382, -0.012281648814678192, 0.027824407443404198, 0.005119103007018566, 0.02613086998462677, -0.0014416066696867347, -0.00021694079623557627, -0.005077114794403315, 0.02183404192328453, -0.013247384689748287, -0.0018964825430884957, 0.01763518713414669, 0.005640460643917322, 0.0412607416510582, -0.018432969227433205, -0.026074884459376335, 0.029308002442121506, -0.0032978500239551067, 0.004069389775395393, 0.027068613097071648, 0.004086884669959545, -0.012379622086882591, -0.01049013715237379, -0.005315049551427364, 0.02267381362617016, -0.0020696851424872875, -0.02967190369963646, -0.02925201877951622, -0.000537103449460119, -0.005448013544082642, -0.022435877472162247, 0.01037117000669241, -0.014975913800299168, -0.004051894415169954, 0.018125053495168686, -0.014045167714357376, 0.004111377988010645, 0.01568971946835518, -0.02140016108751297, -0.01005625631660223, -0.00228487653657794, -0.04128873348236084, 0.022771786898374557, 0.012715530581772327, -0.0060918377712368965, -0.006875623948872089, 0.011966734193265438, 0.006245795637369156, 0.013737251050770283, -0.018027080222964287, -0.017019355669617653, -0.01967862993478775, -0.013086428865790367, 0.018209030851721764, -0.015829680487513542, -0.005955374799668789, -0.00929346401244402, -0.007830862887203693, 0.006252793595194817, 0.027376528829336166, 0.008215758018195629, 0.018628915771842003, 0.0019017310114577413, 0.005371034611016512, -0.028944101184606552, 0.009594381786882877, 0.024241385981440544, -0.024045439437031746, -0.02226792275905609, 0.017775150015950203, 0.029727887362241745, -0.004254838917404413, -0.0165574811398983, 0.02944796346127987, -0.0008292737184092402, -0.015507767908275127, -0.017887119203805923, 0.010175223462283611, -0.004030900076031685, 0.014598016627132893, 0.028776148334145546, 0.006266789976507425, -0.017803141847252846, 0.001649799756705761, 0.026592742651700974, 0.00026264708139933646, -0.008047804236412048, 0.008593655191361904, -0.007704897318035364, -0.03664200007915497, -0.03636207804083824, -0.011686811223626137, -0.009328454732894897, -0.02775442600250244, 0.010287192650139332, 0.02646677754819393, 0.0007667283061891794, 0.0019472186686471105, -0.017453238368034363, 0.016319546848535538, -0.0022306411992758512, -0.00679864501580596, 0.014989909715950489, 0.013282375410199165, -0.02484322153031826, 0.006140824407339096, 0.018544940277934074, -0.0029252017848193645, 0.004737707320600748, -0.006098835729062557, 0.029923833906650543, 0.018670905381441116, 0.019958553835749626, -0.03205125406384468, -0.025836950168013573, 0.007753883954137564, -0.006189811043441296, -0.01774715632200241, -0.02849622443318367, -0.007278013974428177, -0.024773240089416504, -0.0005349165294319391, 0.009489410556852818, 0.0203364510089159, -0.0024125915952026844, 0.0794983059167862, -0.00935644656419754, -0.005626464728266001, 0.012673541903495789, -0.005850403569638729, 0.015983639284968376, -0.013401343487203121, 0.009720347821712494, -0.014667997136712074, 0.0026645229663699865, -0.020504405722022057, -0.031155498698353767, -0.014220119453966618, -0.029839856550097466, 0.001567572238855064, -0.001068083569407463, -0.007487956900149584, 0.04000108316540718, -0.040784869343042374, 0.006322774570435286, 0.025207120925188065, 0.012113694101572037, 0.007788874674588442, 0.007641914766281843, 0.010861036367714405, 0.011861762963235378, 0.0038314545527100563, 0.0013392595574259758, -0.003583022393286228, -0.01721530221402645, 0.01382122840732336, 0.00457325205206871, -0.0043982998467981815, -0.011119965463876724, -0.019286736845970154, 0.0055004991590976715, -0.028664179146289825, -0.012967461720108986, 0.02751649171113968, 0.018992817029356956, 0.0001726560149108991, 0.03258311003446579, -0.038321543484926224, -0.02711060270667076, -0.00559497345238924, -0.009825319051742554, -0.022659815847873688, -0.008502679876983166, -0.047698985785245895], "67fa80df-74b0-495b-ac54-b805b10d55be": [-0.025469573214650154, 0.0077634528279304504, 0.012101452797651291, -0.0200351569801569, -0.03731905668973923, 0.0007912422879599035, 0.005907715298235416, -0.03829970210790634, -0.0046410467475652695, -0.04001583158969879, 0.004075812641531229, -0.0005128816119395196, -0.027853090316057205, -0.02285451628267765, -0.011318297125399113, 0.005948575679212809, 0.007150548975914717, -0.0010146968998014927, 0.014396438375115395, -0.025823695585131645, 0.03443159535527229, -0.003503768937662244, -0.03533052280545235, -0.024311866611242294, -0.00467850174754858, 0.008866680786013603, 0.010283170267939568, -0.01483228150755167, -0.008580658584833145, -0.016657372936606407, 0.013517942279577255, -0.0050871046259999275, -0.011951631866395473, -0.02059357985854149, -0.025551294907927513, 0.00047755450941622257, -0.010827974416315556, 0.005390151869505644, 0.029364921152591705, 0.013279590755701065, 0.025741975754499435, -0.006220977287739515, 0.005843020044267178, -0.013374931178987026, -0.012993568554520607, 0.027444487437605858, 0.0183190256357193, -0.012305754236876965, -0.013415792025625706, 0.033668868243694305, 0.006449114065617323, 0.009506825357675552, -0.03424091264605522, -0.034622278064489365, 0.017692500725388527, 0.007851983420550823, 0.01479142066091299, 0.02376706153154373, -0.021288204938173294, -0.012646256014704704, 0.03121725283563137, -0.006238002795726061, -0.03287890553474426, -0.0009755391511134803, 0.02078426256775856, -0.01172690000385046, -0.0207025408744812, 0.004572946112602949, 0.005597858224064112, 0.013504322618246078, 0.017065975815057755, 0.021152004599571228, -0.00728674978017807, -0.012680307030677795, 0.03353266790509224, -0.024352725595235825, -0.00987456738948822, 0.005121155176311731, 0.0002587817725725472, 0.004940688610076904, 0.006949652452021837, -0.012074212543666363, -0.00044733492541126907, -0.01767888106405735, 0.013892495073378086, 0.01759715937077999, -0.02130182459950447, 0.017338378354907036, 0.003994092345237732, -0.015676727518439293, -0.009765606373548508, 0.014641599729657173, 0.0005371423903852701, -0.005144990049302578, -0.0077225929126143456, 0.003153051482513547, -0.044619426131248474, 0.02043014019727707, -0.02583731710910797, -0.03421367332339287, 0.00035199426929466426, -0.003765955800190568, -0.03148965537548065, -0.008172055706381798, -0.016861675307154655, -0.034104712307453156, 0.03301510587334633, -0.020048776641488075, -0.02229609154164791, 0.004811297636479139, -0.012046972289681435, 0.04244020953774452, -0.00039881333941593766, -0.023385699838399887, -0.044782865792512894, 0.02579645626246929, 0.04148680344223976, -0.023126918822526932, -0.019939815625548363, -0.031353455036878586, 0.017610780894756317, 0.005475277546793222, -0.002354573691263795, -0.01776060089468956, -6.38973870081827e-05, 0.023045197129249573, 0.0036263498477637768, -0.019422253593802452, 0.015186403878033161, -0.029446640983223915, 0.037891097366809845, -0.0034475859720259905, 0.027390006929636, 0.002943642670288682, -0.0016837839502841234, 0.00629248283803463, 0.006687465589493513, -0.00842402782291174, 0.0005413987091742456, -0.0015067227650433779, 0.019258812069892883, 0.01628963090479374, -0.007375280372798443, -0.021015804260969162, 0.006973487790673971, 0.00013609451707452536, -0.0055569978430867195, 0.010426181368529797, 0.008675999008119106, 0.016425833106040955, 0.02835703454911709, 0.001865952741354704, -0.009711126796901226, 0.023467419669032097, -0.007947323843836784, -0.001285396283492446, 0.035493962466716766, 0.008580658584833145, 0.0066261752508580685, -0.0056625534780323505, 0.006956462748348713, 0.029010798782110214, 0.0020923868287354708, -0.021152004599571228, -0.005676173605024815, 0.03380507230758667, 0.005982625763863325, -0.018686767667531967, -0.012380664236843586, 0.0005809820722788572, -0.008430837653577328, 0.021083904430270195, -0.027975670993328094, 0.006707896012812853, -0.012292133644223213, 0.03742801398038864, 0.02763516828417778, 0.002099196892231703, -0.005417392123490572, 0.004743197467178106, -0.009132272563874722, -0.012612205930054188, 0.0012743299594148993, -0.00025346141774207354, -0.007279939949512482, -0.028929077088832855, 0.009724746458232403, -0.009629406034946442, 0.0013117851922288537, 0.00866237934678793, 0.032197900116443634, 0.029092518612742424, -0.005284596234560013, -0.011236576363444328, -0.5940539836883545, -0.019558453932404518, -0.004484415519982576, -0.004140508361160755, 0.02655918151140213, 0.01954483427107334, 0.012033352628350258, 0.017011495307087898, -0.011903961189091206, 0.028847357258200645, -0.015881028026342392, 0.02536061406135559, 0.014914002269506454, 0.004794272594153881, -0.0166028942912817, -0.02401222474873066, 0.015676727518439293, -0.022595735266804695, -0.0013534968020394444, 0.0040792180225253105, -0.015186403878033161, 0.016357731074094772, -0.0056863888166844845, 0.004566136281937361, -0.016548413783311844, 0.008825819939374924, -0.014682460576295853, -0.00421201391145587, 0.028057390823960304, 0.017460959032177925, -0.0016054684529080987, 0.006183522287756205, 0.01803300343453884, -0.012149122543632984, 0.047043800354003906, -0.014764180406928062, -0.027975670993328094, 0.01099141500890255, 0.0019272431964054704, 0.061181459575891495, -0.014124036766588688, -0.024938389658927917, 0.029964204877614975, 0.0027665814850479364, -0.001579079544171691, 0.006993917748332024, 0.014151277020573616, -0.005121155176311731, 0.03467675670981407, -0.009241233579814434, -0.019299671053886414, -0.03086313046514988, -0.004974739160388708, -0.016425833106040955, 0.006833881605416536, 0.0006346112350001931, 0.005727249197661877, -0.00864194892346859, 0.007838363759219646, -0.02345380000770092, -0.004961119033396244, 0.018972789868712425, -0.009779226966202259, 0.007491051219403744, -0.01656203344464302, 0.0020753617864102125, 0.002082171617075801, -0.011154856532812119, 0.004920258652418852, -0.018210064619779587, -0.013640522956848145, -0.016316872090101242, 0.004324379377067089, 0.0009082899778150022, 0.03217066079378128, 0.01962655410170555, 0.007695352658629417, -0.017651639878749847, -0.01695701666176319, 0.01656203344464302, 0.0015586493536829948, 0.004899828694760799, 0.0011636667186394334, -0.009990338236093521, -0.007491051219403744, -0.010977795347571373, -0.0006120529142208397, -0.002950452733784914, 6.17160476394929e-05, -0.0009176537860184908, 0.010467041283845901, 0.018141964450478554, 0.0366380512714386, -0.00013471122656483203, -0.008689619600772858, 0.015608626417815685, -0.03778213635087013, -0.00778388325124979, -0.011066325940191746, -0.011318297125399113, -0.034486074000597, 0.00702796783298254, 0.012836937792599201, -0.02086598239839077, 0.022078171372413635, 0.017474578693509102, -0.017624400556087494, 0.001995343714952469, -0.01246238499879837, -0.01084840390831232, -0.033233027905225754, -0.001126211485825479, -0.015336224809288979, -0.012149122543632984, 0.014382818713784218, -0.03456779569387436, 0.033233027905225754, 0.021206485107541084, 0.002002153778448701, 0.032388582825660706, 0.03086313046514988, 0.00950001459568739, 0.03451331704854965, 0.009479585103690624, -0.015540526248514652, 0.01616705022752285, 0.03369611129164696, -0.00562509847804904, -0.021015804260969162, 0.012380664236843586, 0.0017876372439786792, -0.000941488950047642, 0.008825819939374924, -0.021043043583631516, 0.0004141359531786293, -0.022663835436105728, 0.008090334944427013, -0.0007142036338336766, 0.022963477298617363, -0.012189983390271664, -3.410343560972251e-05, 0.004317569546401501, 0.0034867438953369856, -0.026777103543281555, -0.027308287099003792, -0.012305754236876965, 0.003416940802708268, 0.026055237278342247, -0.005025814287364483, -0.019204331561923027, 0.0067691863514482975, 0.006023486144840717, -0.02297709695994854, 0.028847357258200645, 0.0009542577899992466, 0.00927528366446495, 0.00036540155997499824, -0.008812200278043747, 0.0019459708128124475, -0.003517389064654708, -0.02803015150129795, -0.018863828852772713, -0.014260237105190754, -0.012571346014738083, -0.009472774341702461, -0.02552405372262001, 0.003844271181151271, 0.008628329262137413, -0.027526207268238068, -0.0336143895983696, -0.037727657705545425, 0.01250324584543705, -0.0005239479360170662, -0.005482087377458811, 0.0017237929860129952, 0.007933704182505608, -0.01208783220499754, -0.011222956702113152, -0.00828101672232151, -0.025142692029476166, -0.019095370545983315, 0.012469194829463959, -0.002317118225619197, -0.004743197467178106, -0.0026780508924275637, 0.03429539501667023, 0.017311139032244682, 0.000168655053130351, -0.0043141646310687065, -0.0011560054263100028, -0.004467390477657318, 0.02990972436964512, -0.0003668912686407566, 0.0024499143473803997, 0.0066261752508580685, 0.002364788670092821, 0.0048896134831011295, -0.010562381707131863, -0.008219726383686066, 0.018182823434472084, 0.025973517447710037, 0.044183582067489624, 0.003268822329118848, -0.0010095894103869796, -0.007702162489295006, -0.05115706846117973, 0.024311866611242294, -0.01743371970951557, 0.010405750945210457, -0.020457379519939423, 0.013878874480724335, -0.025374233722686768, -0.01585378870368004, 0.01009248849004507, 0.012591776438057423, 0.00792008452117443, -0.02632763981819153, 0.01978999562561512, 0.005757894366979599, -0.003636564826592803, 0.015349844470620155, 0.01343622151762247, 0.019095370545983315, 0.0038136260118335485, 0.0050053843297064304, -0.010827974416315556, 0.002460129326209426, 0.02488390915095806, 0.008696429431438446, -0.02397136390209198, 0.007463810965418816, -0.006418468896299601, 0.011774570681154728, -0.00864194892346859, 0.02078426256775856, -0.026981404051184654, 0.05475277453660965, -0.011175286024808884, 0.0010351270902901888, 0.011154856532812119, -0.03086313046514988, -0.00047031883150339127, -0.004378859885036945, -0.0306179691106081, 0.017542680725455284, -0.005890690255910158, 0.0357663631439209, 0.0038544863928109407, -0.0092616630718112, 0.02854771539568901, -0.013408981263637543, -0.0009840517304837704, -0.014927621930837631, -0.0023154157679528, -5.232563125900924e-05, -0.025115450844168663, 0.0034390734508633614, 0.03511260077357292, 0.007681732531636953, 0.022609354928135872, 0.025306133553385735, 0.018850209191441536, 0.024420827627182007, 0.01084840390831232, 0.02126096561551094, -0.022309713065624237, -0.029038038104772568, -0.032470300793647766, -0.0026405954267829657, -0.009588545188307762, -0.02763516828417778, -0.009534064680337906, -0.009588545188307762, 0.0033079800195991993, 0.012986758723855019, -0.018427986651659012, 0.014042316004633904, 0.018564186990261078, 0.023562761023640633, -0.010283170267939568, 0.003485041204839945, -0.0047466023825109005, 0.03508536145091057, -0.002945345127955079, 0.01556776650249958, -0.007245889399200678, 0.005441226996481419, -0.013041239231824875, -0.022609354928135872, 0.005454847123473883, 0.011359157972037792, -0.015159163624048233, -0.0006069454248063266, -0.001575674512423575, 0.0068747419863939285, 0.013013998977839947, 0.0025622800458222628, -0.015268124639987946, -0.026572801172733307, -0.014805041253566742, 0.008315066806972027, 0.001126211485825479, 0.01728389784693718, -0.007749833166599274, 0.06657501310110092, 0.008968831039965153, 0.01699787564575672, -0.005570617970079184, -0.003410130739212036, -0.0060643465258181095, -0.00814481545239687, -0.006142661906778812, -0.022677455097436905, -0.005992840975522995, -0.005233520641922951, 0.023603621870279312, 0.016235150396823883, -0.026382120326161385, 0.005431012250483036, -0.0026491081807762384, -0.01691615581512451, -0.028929077088832855, -0.02827531285583973, -0.015349844470620155, -0.02707674540579319, 0.016793575137853622, -0.014505399391055107, -0.01517278328537941, -0.027253806591033936, -0.007634062319993973, -0.018455225974321365, 0.013211490586400032, -0.009431914426386356, -0.009561304934322834, 0.010998224839568138, 0.005519542843103409, 0.01589464768767357, 0.007845173589885235, 0.0004532937309704721, -0.007395710330456495, -0.02062082104384899, -0.02531975321471691, 0.027866709977388382, 0.017815081402659416, -0.017147697508335114, -0.0018131749238818884, -0.002143462188541889, 0.04148680344223976, -0.009152702987194061, -0.02794843167066574, 0.0027784989215433598, 0.026654522866010666, 0.006316318176686764, -0.02409394457936287, 0.004344809800386429, 0.004048572853207588, 0.004334594588726759, 0.00965664628893137, -0.01517278328537941, 0.011543028987944126, 0.022922616451978683, 0.018768487498164177, 0.01479142066091299, 0.02305881679058075, -0.008069905452430248, 0.014668839983642101, -0.0005584238097071648, -0.013946975581347942, 0.004290329292416573, -0.009901807643473148, 0.010453421622514725, 0.017787842079997063, -0.00935700349509716, -0.026491081342101097, 0.017733361572027206, -0.019980676472187042, -0.06488612294197083, -0.013545182533562183, 0.028248073533177376, 0.006384418811649084, -0.017951281741261482, -0.003534414106979966, 0.01835988461971283, 0.008873490616679192, 0.005601263139396906, 0.0039362069219350815, 0.0038068159483373165, -0.026504701003432274, -0.01732475869357586, -0.029174238443374634, -0.034540556371212006, -0.014478159137070179, -0.010208259336650372, 0.004964523948729038, 0.03898070752620697, -0.03208893910050392, -0.04622659459710121, -0.01676633395254612, 0.029446640983223915, 0.01347708236426115, 0.03492191806435585, -0.01596274971961975, -0.008308256976306438, -0.0007827297085896134, 0.010569192469120026, -0.008737289346754551, -0.008315066806972027, 0.0030883559957146645, 0.010330840945243835, 0.008764529600739479, -0.00853979866951704, -0.009888187982141972, -0.009493204765021801, 0.025714736431837082, -0.004528680816292763, 0.008696429431438446, 0.02018497698009014, 0.0340774729847908, 0.010378510691225529, -0.0012879500864073634, 0.008635139092803001, 0.01274159736931324, -0.011515788733959198, -0.029174238443374634, 0.0512932687997818, -0.03541224077343941, -0.02651832066476345, 0.006394633557647467, -0.009404674172401428, 0.0004894721205346286, 0.0028380868025124073, 0.005849829874932766, 0.025238031521439552, 0.01740647852420807, 0.022963477298617363, -0.017951281741261482, 0.012115072458982468, -0.018427986651659012, 0.007198219187557697, -0.019326912239193916, -0.009595355950295925, -0.01381758414208889, -0.02181938849389553, -0.005471872165799141, 0.015744827687740326, -0.01517278328537941, 0.040124792605638504, 0.009145892225205898, 0.019258812069892883, -0.003408428281545639, -0.0030117430724203587, -0.031026571989059448, -0.01405593566596508, 0.013987835496664047, -0.003616134636104107, 0.01343622151762247, -0.008335497230291367, -0.03050900809466839, -0.0003413535887375474, 0.009724746458232403, -0.012196793220937252, 0.022405052557587624, -0.019136231392621994, -0.014396438375115395, 0.003616134636104107, -0.038490381091833115, 0.022800035774707794, -0.0012683711247518659, 0.0057238442823290825, -0.025619395077228546, -0.023521900177001953, -0.005917930509895086, -0.005277785938233137, -0.004661476705223322, 0.011318297125399113, 0.011427258141338825, -0.019177090376615524, -0.0057238442823290825, 0.004763627424836159, -0.011951631866395473, -0.01405593566596508, 0.02440720610320568, 0.03775489702820778, 0.012353423982858658, 0.021329065784811974, 0.009173132479190826, -0.021751288324594498, -0.001183245563879609, 0.025891797617077827, 0.01127062737941742, -0.005226710811257362, 0.018427986651659012, -0.012414715252816677, -0.03671976923942566, -0.005894095171242952, 0.0020345014054328203, -0.0009491502423770726, -0.016153430566191673, -0.021206485107541084, 0.014559879899024963, -0.001419894746504724, 0.0314624160528183, -0.02309967763721943, -0.025346992537379265, -0.005522947758436203, 0.011154856532812119, -0.001879572868347168, 0.01058962196111679, -0.02531975321471691, -0.00802223477512598, 0.035493962466716766, -0.03181653842329979, 0.013334071263670921, -0.00816524587571621, -0.005751084070652723, -0.02229609154164791, 0.011910771019756794, -0.013381741009652615, 0.0103512704372406, 0.003973661921918392, 0.004651261959224939, -0.02473408915102482, 0.0025043946225196123, 0.0028738395776599646, -0.011577079072594643, -0.0020225837361067533, 0.003650184953585267, -0.006752161309123039, 0.028139112517237663, 0.005294810980558395, -0.02098856307566166, -0.020375659689307213, 0.014941242523491383, -0.012762026861310005, -0.024584267288446426, -0.006425278726965189, -0.023235877975821495, -0.03042728826403618, 0.037891097366809845, 0.01871400699019432, 0.010453421622514725, 0.0022813656833022833, -0.001753586926497519, -0.012816507369279861, -0.00487939827144146, -0.0033233026042580605, 0.025306133553385735, -0.00965664628893137, 0.029038038104772568, 0.03775489702820778, 0.010146968998014927, -0.0020719566382467747, -0.051783595234155655, 0.005199470557272434, -0.006806641351431608, 0.013075289316475391, 0.042385730892419815, -0.03189825639128685, -0.008328686468303204, 0.019381392747163773, 0.02401222474873066, -0.00327563239261508, -0.022187132388353348, 0.025142692029476166, 0.03612048551440239, -0.003527604043483734, -0.023317599669098854, -0.0007737915148027241, -0.010487471707165241, -0.002356276148930192, -0.0006307805306278169, 0.0019459708128124475, 0.003028768114745617, -0.0027784989215433598, 0.0035003640223294497, 0.026409359648823738, 0.009302523918449879, 0.019163470715284348, 0.006343558430671692, -0.013749483972787857, -0.004137103445827961, 0.002254125429317355, -0.026531940326094627, 0.021574227139353752, -0.014301097951829433, 0.02134268544614315, -0.028738396242260933, -0.014137656427919865, 0.018101103603839874, 0.00043477892177179456, 0.006718110758811235, -0.021070284768939018, -0.017215797677636147, 0.05265527963638306, -0.00487939827144146, -0.017746981233358383, -0.00426989933475852, -0.014845901168882847, 0.02421652525663376, 0.007205029018223286, 0.0005963047151453793, 0.016194291412830353, -0.015036582946777344, 0.0027972266543656588, 0.008117575198411942, -0.01323873084038496, 0.005887285340577364, -0.014069556258618832, 0.004290329292416573, -0.018250925466418266, -0.010548762045800686, -0.004004307556897402, 0.0041473181918263435, -0.0236989613622427, -0.031026571989059448, -0.026109717786312103, -0.012189983390271664, -0.007055208086967468, 0.013783534057438374, -0.0017893397016450763, 0.01160431932657957, 0.02624591998755932, -0.036256685853004456, 0.003285847371444106, -0.0418136864900589, 0.00853979866951704, -0.02788032963871956, -0.011243387125432491, 0.0019068130059167743, -0.00818567629903555, 0.0237262025475502, -0.0014275560388341546, 0.007872413843870163, -0.010725823231041431, 0.014192136935889721, 0.015513285994529724, -0.006333343219012022, 0.040560636669397354, -0.0018965979106724262, 0.005093914922326803, 0.006346963346004486, 0.010072058998048306, -0.016711853444576263, 0.0004443555371835828, 0.006398038938641548, -0.00892116129398346, 0.0017246443312615156, -0.025714736431837082, 0.018223684281110764, -0.00036859375541098416, 0.005904310382902622, 0.004120077937841415, -0.03889898583292961, -0.05093914642930031, 0.012734786607325077, 0.011495358310639858, -0.009493204765021801, 0.00842402782291174, -0.008083525113761425, -0.03353266790509224, -0.014546259306371212, 0.0061937374994158745, 0.008287826552987099, -0.010712203569710255, 0.018863828852772713, 0.04886889457702637, 0.0033505428582429886, 0.016303250566124916, -0.009677075780928135, -0.037210095673799515, -0.007858793251216412, -0.043339136987924576, -0.0065104044042527676, -0.030808649957180023, -0.010943744331598282, 0.04344809800386429, -0.011842670850455761, -0.01927243173122406, -0.038163501769304276, -0.0028431944083422422, -0.005247140768915415, -0.006612555123865604, -0.011161666363477707, 0.05044882372021675, 0.01505020260810852, -0.0001604617282282561, -0.015663107857108116, 0.03601152449846268, -0.013463461771607399, 0.031952738761901855, -0.01902727037668228, -0.0022983907256275415, -0.0030866535380482674, -0.0016573950415477157, 0.028220832347869873, 0.014137656427919865, -0.014178517274558544, -0.026940543204545975, 0.0007265468593686819, 0.01803300343453884, 0.005846424959599972, 0.01776060089468956, -0.0026337855961173773, -0.03042728826403618, -0.01343622151762247, -0.004692121874541044, -0.021533366292715073, -0.01058962196111679, -0.02011687681078911, -0.02111114375293255, -0.011938011273741722, 0.014736941084265709, 0.009336574003100395, -0.007572771515697241, 0.02620505914092064, 0.013810774311423302, 0.0015595006989315152, -0.020525479689240456, -0.014968481846153736, -0.005059864372014999, -0.01101184543222189, 0.0042528738267719746, 0.029174238443374634, 0.016262391582131386, -0.004950903821736574, 0.02122010476887226, 0.012537295930087566, 0.010719013400375843, -0.022609354928135872, 0.027498967945575714, -0.02966456301510334, 0.01293908804655075, 0.00862151850014925, -0.012115072458982468, 0.007845173589885235, -0.0029879079665988684, 0.01270073652267456, -0.03636564686894417, 0.004872588440775871, 0.012176362797617912, -0.020811501890420914, -0.050230901688337326, 0.019926195964217186, 0.03304234519600868, -0.012298944406211376, -0.01001757849007845, 0.02254125475883484, -0.02473408915102482, 0.009111842140555382, -0.02277279645204544, 0.008750909939408302, -0.02759430930018425, 0.0010495984461158514, 0.016344111412763596, 0.007974564097821712, 0.01362009346485138, 0.0027733915485441685, 0.003178589278832078, -0.04886889457702637, -0.016752714291214943, 0.25322476029396057, -0.026422981172800064, -0.005856640171259642, 0.026450220495462418, -0.017174936830997467, 0.008798579685389996, 0.011291056871414185, 0.008492127992212772, -0.015622247010469437, 0.018822968006134033, -0.011222956702113152, -0.010541952215135098, -0.006932627409696579, -0.006272052880376577, 0.018686767667531967, -0.012455575168132782, -0.03399575129151344, -0.02146526612341404, 0.0015978071605786681, -0.009574925526976585, 0.016071708872914314, 0.021805768832564354, 0.010807543992996216, -0.01250324584543705, 0.00605413131415844, -0.02173766866326332, 0.013606472872197628, 0.009084601886570454, 0.014587119221687317, 0.01987171545624733, -0.009554495103657246, -0.007913273759186268, -0.024379966780543327, -0.0032058292999863625, -0.022527633234858513, -0.015867408365011215, 0.029473882168531418, 0.01751543954014778, 0.029964204877614975, 0.0026303804479539394, -0.00618011737242341, -0.01767888106405735, 0.006067751441150904, -0.028847357258200645, -0.007756642997264862, 0.0002445232239551842, 0.013810774311423302, 0.004664882086217403, -0.01445091888308525, 0.004732982255518436, -0.04077855870127678, -0.03285166621208191, 0.02759430930018425, 0.007940514013171196, 0.0016837839502841234, -0.01863228715956211, 0.012830127961933613, -0.004109863191843033, -0.007177789229899645, -0.00567276868969202, 0.007102878298610449, 0.04205884784460068, -0.02014411799609661, 0.016984255984425545, -0.0327427051961422, 0.017896803095936775, -0.01763802021741867, -0.02711760438978672, 0.013204679824411869, 0.007511481177061796, -0.003517389064654708, -0.00284659955650568, -0.00864194892346859, -0.007824743166565895, -0.03127173334360123, -0.025238031521439552, 0.03050900809466839, 0.027689648792147636, 0.007463810965418816, 0.006701085716485977, -0.002591222757473588, -0.007361660245805979, 0.013054858893156052, 0.025673875585198402, -0.038926225155591965, -0.039879631251096725, 0.03424091264605522, -0.020729782059788704, -0.020076017826795578, -0.018210064619779587, -0.013987835496664047, 0.007457001134753227, -0.0021519747097045183, 0.006037106271833181, 0.0033556504640728235, 0.009745176881551743, -0.018577806651592255, 0.04173196479678154, -0.0015263017266988754, -0.005053054541349411, -0.03563016280531883, 0.0019068130059167743, 0.019885335117578506, 0.027090365067124367, -0.02651832066476345, -0.014491778798401356, -0.008253776468336582, 0.009963097982108593, -0.0008116724202409387, -0.018945548683404922, 0.0005137328989803791, -0.04366602003574371, -0.0015731207095086575, -0.009506825357675552, 0.0024277816992253065, 0.006135852076113224, -0.005332266446202993, -0.008560228161513805, -0.018019383773207664, -0.01112761627882719, 0.007341230288147926, -0.050557784736156464, -0.00013673296780325472, -0.0033641629852354527, -0.013374931178987026, -0.021056663244962692, 0.0009031824301928282, 0.0018625477096065879, -0.001418192172423005, -0.01879572868347168, 0.037509735673666, -0.04293053224682808, 0.038136258721351624, 0.009663456119596958, 0.0048896134831011295, 0.01923157088458538, -0.00612223194912076, 0.008587468415498734, 0.028683915734291077, 0.005046244245022535, -0.012455575168132782, -0.00015812076162546873, 0.028384273871779442, -0.011829051189124584, 0.0054650623351335526, -0.0060268910601735115, 0.0042630890384316444, -0.002475451910868287, 0.010507902130484581, 0.0002858091320376843, -0.03898070752620697, -0.00999714806675911, 0.009568115696310997, -0.003622944699600339, 0.024557027965784073, 0.002483964432030916, -0.013408981263637543, -0.048923373222351074, 0.002570792566984892, -0.003193911863490939, -0.03778213635087013, 0.021070284768939018, -0.00047585199354216456, -0.006166497245430946, -0.009479585103690624, 0.007518291473388672, -0.17215797305107117, 0.017896803095936775, 0.019490353763103485, -0.01150897890329361, 0.010698582977056503, 0.0010725823231041431, 0.010637292638421059, -0.0028670295141637325, -0.011393208056688309, 0.007620442193001509, 0.019735515117645264, 0.0056625534780323505, -0.008151625283062458, -0.022595735266804695, -0.015036582946777344, 0.009574925526976585, -0.007933704182505608, -0.0028942697681486607, 0.053063880652189255, 0.02699502371251583, 0.03647460788488388, -0.005996245890855789, -0.00011672845721477643, 0.031244494020938873, 0.015349844470620155, 0.018536945804953575, -0.0016608000732958317, -0.01136596780270338, 0.011665609665215015, -0.012428334914147854, -0.018986409530043602, -0.0035548442974686623, 0.012850557453930378, 0.010065249167382717, -0.01343622151762247, -0.012714357115328312, 0.008805390447378159, 0.0007840066100470722, -0.01744733937084675, 0.007879223674535751, 0.017011495307087898, 0.029010798782110214, -0.015595006756484509, 0.010943744331598282, 0.012918658554553986, 0.004566136281937361, 0.0028585169930011034, -0.010106109082698822, -0.0037250954192131758, -0.0034595036413520575, 0.020893223583698273, -0.04451046511530876, 0.016071708872914314, -0.013402171432971954, 0.019217951223254204, 0.022963477298617363, -0.013293210417032242, -0.00941829476505518, 0.0037897909060120583, -0.005189255345612764, -0.011795000173151493, -0.021015804260969162, -0.0002183471224270761, 0.01371543388813734, 0.01397421583533287, -0.004409505054354668, -0.019013650715351105, 0.040397197008132935, -0.02540147304534912, -0.015268124639987946, 0.0015714182518422604, -0.012877797707915306, 0.029719043523073196, 0.015867408365011215, 0.016902536153793335, 0.013041239231824875, 0.0014071258483454585, 0.024516167119145393, -0.0009900105651468039, 0.0127211669459939, -0.027172084897756577, 0.04165024310350418, -0.004208608530461788, -0.016670994460582733, 0.02982800453901291, -0.012312564067542553, 0.024952011182904243, -0.007851983420550823, -0.04096924141049385, -0.02581007592380047, 0.030917610973119736, -0.024257386103272438, -0.02010325714945793, 0.012707546353340149, 0.012176362797617912, 0.003170076757669449, 0.011686040088534355, 0.007470621261745691, -0.029610082507133484, -0.006701085716485977, -0.016058089211583138, 0.012489625252783298, -0.0064286841079592705, 0.00814481545239687, 0.009717936627566814, -0.0029947180300951004, -0.027390006929636, 0.028683915734291077, 0.033069584518671036, 0.020498240366578102, 0.0062482175417244434, 0.004494630731642246, 0.007136928848922253, -0.00011683486081892624, 0.005080294795334339, 0.029092518612742424, -0.031053811311721802, -0.013926545158028603, 0.018536945804953575, 0.0006163092330098152, -0.02082512155175209, -0.029964204877614975, 0.018087483942508698, 0.015445185825228691, -0.0015705670230090618, -0.01270073652267456, -0.05148395150899887, -0.026014378294348717, 0.014873141422867775, 0.01470970083028078, 0.013402171432971954, 0.012040162459015846, 0.0008687065565027297, 0.04320293664932251, -0.03500363975763321, 0.02974628284573555, -0.012251273728907108, -0.01699787564575672, -0.03336922824382782, 0.03328750655055046, 0.005591048393398523, 0.019463112577795982, -0.033233027905225754, 0.011869911104440689, 0.01160431932657957, 0.036692529916763306, -0.01788318157196045, -0.006636390462517738, 0.011447688564658165, 0.006108611822128296, -0.004116673022508621, -0.005597858224064112, 0.001126211485825479, 0.030890371650457382, 0.017229417338967323, 0.03620220720767975, 0.06559436768293381, -0.007313990034162998, -0.010228689759969711, -0.012060591951012611, -0.0077634528279304504, -0.01282331719994545, -0.03554844111204147, -0.03339646756649017, 0.04096924141049385, -0.03165309503674507, 0.014192136935889721, 0.010385320521891117, 0.005529757589101791, -0.006326533388346434, -0.01479142066091299, -0.011944822035729885, -0.03287890553474426, 0.03595704585313797, -0.004545705858618021, -0.003047495847567916, -0.03342370688915253, 0.005100724752992392, 0.007075638510286808, -0.018427986651659012, 0.021165624260902405, 0.02782585099339485, 0.04426530376076698, 0.017488200217485428, -0.024911150336265564, 0.020484620705246925, -0.012646256014704704, 0.01162474974989891, -0.006517214700579643, 0.043148454278707504, 0.01732475869357586, 0.021124763414263725, -0.020239457488059998, 0.005063269753009081, 0.022677455097436905, -0.009288903325796127, 0.003168374067172408, 0.023712582886219025, 0.0009236125624738634, 0.035493962466716766, -0.01871400699019432, -0.016630133613944054, -0.006694275885820389, -0.002356276148930192, 0.017651639878749847, -0.02405308373272419, -0.0005694901337847114, 0.01620791107416153, -0.02950112149119377, 0.00268826587125659, 0.03429539501667023, 0.01262582652270794, -0.011597509495913982, -0.012673496268689632, 0.006871337071061134, -0.0289018377661705, 0.0027955241966992617, 0.016779955476522446, 0.00939786434173584, -0.012578155845403671, -0.018332645297050476, -0.006493379361927509, 0.013402171432971954, -0.0033573529217392206, -0.0011534516233950853, -0.007845173589885235, -0.015758447349071503, -0.015486045740544796, -0.08215640485286713, 0.02440720610320568, -0.018850209191441536, -0.005999650806188583, 0.019980676472187042, -0.012789267115294933, 0.028002912178635597, -0.01138639822602272, 0.012394284829497337, -0.012414715252816677, -0.0014054233906790614, 0.03968895226716995, 0.009465964511036873, -0.01624877192080021, -0.02053910121321678, -0.0003896623384207487, 0.02262297458946705, 0.01895917020738125, -0.005601263139396906, 0.010106109082698822, 0.027131225913763046, 0.006241407711058855, 0.03309682756662369, -0.021410785615444183, -0.020198598504066467, 0.02130182459950447, -0.008648758754134178, 0.03587532415986061, -0.014532639645040035, -0.024475306272506714, -0.0017246443312615156, -0.005243735853582621, 0.010174209251999855, 0.012401094660162926, 0.01323873084038496, -0.001364563126116991, 0.004327784758061171, -0.003997497260570526, 0.04589971527457237, 0.0010283170267939568, -0.026259539648890495, -0.03778213635087013, 0.0070960684679448605, 0.019967056810855865, -0.02289537712931633, 0.017460959032177925, -0.02262297458946705, 0.024543408304452896, 0.0009721341193653643, -0.010215070098638535, 0.018782109022140503, 0.021043043583631516, -0.0038272461388260126, -0.010705392807722092, -0.009588545188307762, -0.041350603103637695, 0.007382090203464031, 0.019013650715351105, -0.018809348344802856, 0.00888030044734478, 0.03345094993710518, -0.015240884386003017, 0.008090334944427013, -0.015131923370063305, 0.003290954977273941, 0.005516137462109327, -0.022990716621279716, 0.005638718605041504, 0.0033539480064064264, 0.018863828852772713, -0.011331917718052864, -0.012782457284629345, -0.014369198121130466, 0.017256658524274826, 0.007688542362302542, 0.0207025408744812, 0.0047840578481554985, 8.858380897436291e-05, -0.016779955476522446, 0.03533052280545235, 0.03113553300499916, -0.017011495307087898, -0.021533366292715073, 0.0103512704372406, 0.026422981172800064, -0.0008461482939310372, -0.0237262025475502, 0.020961323752999306, 0.004324379377067089, -0.009479585103690624, -0.00989499781280756, -0.003044090699404478, 0.012925468385219574, 0.012789267115294933, 0.03165309503674507, 0.01792404241859913, -0.014178517274558544, -0.010644102469086647, 0.015826547518372536, 0.019299671053886414, -0.005982625763863325, -0.014818660914897919, -0.011924391612410545, -0.00100022554397583, -0.026668142527341843, -0.008056284859776497, -0.026504701003432274, -0.034976400434970856, 0.003188804257661104, 0.036338407546281815, -0.0057374644093215466, 0.012162743136286736, -0.025510434061288834, 0.033587150275707245, -0.03053624927997589, -0.01600360870361328, 0.007416140753775835, 0.006098396610468626, -0.023399319499731064, -0.0021400570403784513, 0.010201449505984783, -0.002357978606596589, 0.015281744301319122, -0.02322225831449032, 0.031081052497029305, -0.018754867836833, 0.03206169977784157, -0.036174967885017395, -0.026504701003432274, 0.0020838743075728416, -0.0007227162132039666, -0.009786036796867847, -0.014532639645040035, -0.016384972259402275, -0.02082512155175209, 0.02600075677037239, -0.008764529600739479, 0.003908966667950153, -0.02034841850399971, 0.0698438361287117, 0.00014748006651643664, -0.013075289316475391, 0.007170978933572769, -0.011093566194176674, -0.0020702541805803776, -0.008212916553020477, 0.00037902165786363184, 0.004446960519999266, -0.016534792259335518, 0.0068747419863939285, -0.015077442862093449, -0.027022264897823334, -0.008948401547968388, -0.002240505302324891, -0.0057919444516301155, 0.015717586502432823, 0.03050900809466839, 0.00030198300373740494, 0.0015782283153384924, 0.03786385804414749, 0.0002787862904369831, 0.012278513982892036, -0.002730828709900379, -0.0018353075720369816, 0.015540526248514652, 0.017297517508268356, -0.001871060230769217, 0.010228689759969711, -0.011835861019790173, 0.01394016481935978, 0.003056008368730545, 0.0022575303446501493, -0.019885335117578506, -0.0185233261436224, 0.008989261463284492, -0.016984255984425545, 0.013225110247731209, 0.021778529509902, 0.003656995017081499, -0.011692849919199944, 0.019054509699344635, -0.03170757740736008, -0.017134077847003937, 0.0027733915485441685, -0.0009789442410692573, -0.01075306348502636, -0.0024124588817358017, -0.04034271463751793], "a7dec113-d4ad-42b3-8c12-068e790f36fe": [-0.013675634749233723, -0.013314694166183472, -0.00046120176557451487, -0.013742475770413876, -0.0006817765533924103, 0.024410273879766464, -0.005494316574186087, 0.005962202325463295, -0.007192073855549097, -0.012947069481015205, 0.021028127521276474, 0.013635530136525631, 0.0020002119708806276, -0.024383537471294403, -0.013435008004307747, -0.011683777906000614, 0.01340158749371767, 0.005029772873967886, 0.03109435737133026, -0.03852705657482147, -0.0005455883219838142, 0.025506462901830673, 0.01160356868058443, -0.02539951726794243, -0.013361482881009579, -0.00788053497672081, 0.012626233510673046, -0.03978366404771805, 0.011971193365752697, -0.0054141078144311905, 0.041762154549360275, -0.003609405132010579, 0.007860482670366764, -0.013094119727611542, -0.0015390102053061128, -0.0008066853624768555, -0.009030196815729141, -0.00725891487672925, 0.022592201828956604, -0.009925863705575466, 0.010246699675917625, 0.006323142908513546, 0.016068536788225174, 0.00989912822842598, -0.020800868049263954, 0.01955762878060341, -0.03400861844420433, 0.00025671059847809374, -0.008107793517410755, 0.010554168373346329, -0.0076399073004722595, 0.0073257554322481155, -0.015172869898378849, -0.036334678530693054, -0.012947069481015205, 0.013080751523375511, -0.02793946862220764, 0.027110643684864044, -0.0018314388580620289, -0.0008367637055926025, 0.009364400990307331, -0.017244935035705566, -0.015092660672962666, 0.025506462901830673, -0.00800084788352251, -0.001183082815259695, -0.019223423674702644, 0.020145827904343605, -0.010554168373346329, -0.0016476266318932176, 0.020520135760307312, 0.021669799461960793, 0.003532538190484047, -0.008455365896224976, 0.041762154549360275, 0.01621558703482151, -0.003189978888258338, -0.005243663676083088, -0.007706748321652412, 0.014330674894154072, 0.01193777285516262, -0.001625067787244916, 0.009070301428437233, -0.006617242936044931, 0.025613408535718918, 0.016095273196697235, -0.014263834804296494, -0.0015874698292464018, 0.012806704267859459, -0.02654917910695076, 0.0008000012603588402, 0.0013510204153135419, 0.018488174304366112, 0.02272588387131691, -0.021335594356060028, 0.015827909111976624, -0.009544871747493744, 0.019049638882279396, -0.03735065832734108, -0.05946160852909088, -0.011509992182254791, 0.012091507203876972, -0.019758151844143867, -0.004912801552563906, -0.019089743494987488, -0.01337485108524561, 0.021776745095849037, 0.013755843974649906, -0.0015741016250103712, -0.003171597607433796, 0.011189156211912632, 0.0062997485511004925, 0.00978549849241972, -0.020332982763648033, -0.034275978803634644, -0.013602109625935555, 0.023260610178112984, -0.020600344985723495, -0.015466969460248947, -0.0034556712489575148, 0.04571913182735443, 0.02045329660177231, 0.0032016760669648647, 0.004909459501504898, 0.005531079135835171, 0.007680011913180351, -0.00659050652757287, -0.014918874949216843, -0.0013827697839587927, -0.02812662348151207, 0.011683777906000614, -0.016429478302598, 0.03470376133918762, 0.027137380093336105, -0.030746784061193466, 0.007760221138596535, -0.009772130288183689, 0.019089743494987488, -0.014450988732278347, -0.014156889170408249, 0.025559935718774796, 0.017873238772153854, -0.017285039648413658, -0.01775292679667473, -0.009317612275481224, 0.03467702493071556, 0.030024902895092964, -0.010694533586502075, 0.007893902249634266, 0.011697146110236645, -0.012566077522933483, -0.007392596453428268, -0.005280426237732172, 0.017472194507718086, -0.0023895599879324436, 0.010714585892856121, 0.00027258528280071914, -0.0006558757158927619, -0.003327002516016364, 0.004946222063153982, 0.018528278917074203, -0.016335900872945786, 0.021977266296744347, 0.0016200547106564045, 0.005384029354900122, 0.022191157564520836, -0.0007544659310951829, 0.0035659587010741234, -0.007646591402590275, -0.02336755581200123, -0.007278967183083296, 0.009631764143705368, -0.019450683146715164, -0.0011479913955554366, 0.013521901331841946, 0.023033352568745613, 0.00494956411421299, -0.014450988732278347, -0.014464356936514378, -0.008141214028000832, -0.012392290867865086, -0.029356494545936584, 0.01601506397128105, 0.006166066974401474, 0.005798442289233208, -0.010066229850053787, 0.018835747614502907, -0.0041274214163422585, -0.015801172703504562, -0.012840124778449535, 0.0229397751390934, 0.030880466103553772, 0.01574770174920559, -0.005865283310413361, -0.6237052083015442, -0.038179486989974976, 0.022779356688261032, 0.0001987470459425822, 0.017512299120426178, 0.011870932765305042, 0.006339853163808584, 0.009177247062325478, -0.0039068469777703285, 0.03200339153409004, -0.0031231380999088287, 0.007392596453428268, -0.008689308539032936, -0.011242629028856754, 0.008381840772926807, -0.011663725599646568, 0.008455365896224976, -0.010627692565321922, 0.005196874961256981, -0.001848149113357067, -0.02404933236539364, 0.01000607293099165, -0.024249855428934097, -0.009925863705575466, -0.009531503543257713, -0.023474501445889473, 0.01216503232717514, 0.001095354207791388, -0.014785192906856537, 0.011897669173777103, -0.0004196351219434291, 0.02884850464761257, 0.0062830387614667416, -0.0019500814378261566, 0.0396767184138298, -0.025305939838290215, -0.025920875370502472, 0.04721636697649956, -0.00865588802844286, 0.026736333966255188, -0.015119397081434727, -0.023501237854361534, 0.0036762459203600883, -0.009150510653853416, 0.01461140625178814, 0.0076866960152983665, 0.0015874698292464018, -0.02473110891878605, 0.006794371176511049, 0.003846690058708191, -0.004608675837516785, -0.00759311905130744, -0.0026151477359235287, -0.012559393420815468, -0.009818919003009796, 0.013568690046668053, 0.02140243537724018, -0.009531503543257713, -0.0038968208245933056, -0.01100868545472622, 0.00743270106613636, -0.01056753657758236, -0.02117517590522766, -0.005631340201944113, -0.023902282118797302, 0.024370169267058372, -0.0034656974021345377, 0.005534421186894178, 0.0037029823288321495, -0.022378312423825264, -0.003866742365062237, 0.029864486306905746, -0.013334746472537518, 0.009725341573357582, 0.019089743494987488, 0.012452447786927223, 0.03063983842730522, 0.0068077389150857925, -0.03764475882053375, -0.0009341006516478956, 0.011763987131416798, -0.002092118142172694, -0.006276354659348726, -0.016964204609394073, -0.0061326464638113976, -0.010988633148372173, 0.0008204712648876011, -0.011416414752602577, 0.007907270453870296, -8.966071618488058e-05, 0.009270823560655117, 0.020078986883163452, -0.004177552182227373, -0.04729657620191574, 0.0014069995377212763, 0.016589894890785217, -0.013628846034407616, -0.022110948339104652, 0.004735673312097788, 0.005744969937950373, -0.023755233734846115, 0.0008931606425903738, 0.02632192149758339, -0.018768906593322754, 0.014237098395824432, -0.001410341588780284, -0.014223730191588402, -0.007446069270372391, -0.0008572337101213634, -0.0033036083914339542, -0.004087317269295454, 0.006978183053433895, -0.009631764143705368, -0.0038400059565901756, 0.012686390429735184, -0.027324533089995384, 0.0014897151850163937, 0.010219964198768139, 0.018060393631458282, -0.004939537961035967, 0.04793824627995491, -0.007499541621655226, 0.035238489508628845, 0.007693380117416382, -0.021790113300085068, 0.02136233076453209, -0.013114172033965588, -0.03085372969508171, -0.014116784557700157, 0.011723882518708706, -0.018488174304366112, -0.016603263095021248, -0.006152698770165443, -0.015052556060254574, 0.01689736358821392, -0.016937468200922012, 0.005236979573965073, -0.01641611009836197, 0.0028891952242702246, -0.005704865325242281, -0.03039921261370182, -0.001399480039253831, 0.015600651502609253, -0.008074373006820679, -0.03665551543235779, -0.016095273196697235, 0.0015891408547759056, 0.009304244071245193, -0.025747090578079224, 0.0024296643678098917, 0.020359719172120094, 0.007058392278850079, -0.016990941017866135, 0.037457603961229324, 0.0020286194048821926, 0.008408577181398869, -0.009190615266561508, -0.03149540349841118, -0.016790417954325676, 0.004337970167398453, 0.007245546672493219, 0.01351521722972393, -0.016977572813630104, -0.002035303507000208, -0.0103670135140419, -0.016055168583989143, 0.0003534209099598229, 0.0052002170123159885, -0.017405353486537933, -0.03259159252047539, -0.00043780746636912227, -0.018581751734018326, 0.0024396905209869146, -0.0005201052408665419, 0.003042929107323289, -0.006513639353215694, -0.006166066974401474, -0.0028006311040371656, 0.004411495290696621, -0.02339429222047329, 0.0004653793293982744, 0.005544447340071201, -0.01395636610686779, -0.007024971768260002, 0.017512299120426178, 0.020078986883163452, 0.025332676246762276, 0.040425337851047516, -0.010113018564879894, 0.016255691647529602, -0.018367862328886986, 0.013241169974207878, 0.007853798568248749, 0.011403046548366547, 0.010607640258967876, 0.006423404440283775, 0.013381535187363625, 0.0014922216068953276, -0.016817154362797737, 0.01688399538397789, 0.03315305337309837, 0.02093455009162426, 0.011002001352608204, 0.004097343422472477, 0.015065924264490604, -0.018488174304366112, -0.002543293870985508, -0.01552044227719307, 0.005871967412531376, 0.009224035777151585, 0.002416296163573861, -0.02299324795603752, -0.008415261283516884, -0.014223730191588402, 0.011463203467428684, 0.022378312423825264, -0.008716044947504997, 0.009618395939469337, -0.024450378492474556, 0.015827909111976624, 0.012124927714467049, -0.005694839172065258, 0.0010786439524963498, -0.037724968045949936, -0.021108336746692657, -0.0031749396584928036, 0.00524032162502408, 0.02229810319840908, 0.010320224799215794, -0.00832168385386467, -0.03248464688658714, -0.016389373689889908, 0.0030796914361417294, 0.009832287207245827, 0.0022575492039322853, -0.03751107677817345, 0.010333593003451824, -0.007352491840720177, 0.029971430078148842, 0.016803786158561707, 0.0027822498232126236, -0.00832168385386467, 0.009504767134785652, -0.015413496643304825, 0.012285345233976841, -0.0011513334466144443, 0.05446191132068634, 0.019985409453511238, -0.026281816884875298, 0.021937161684036255, -0.029864486306905746, -0.012211821042001247, -0.011797407642006874, 0.0024831369519233704, -0.004241051152348518, -0.028714822605252266, 0.017726190388202667, 0.0002953529474325478, -0.003923557233065367, 0.021228648722171783, 0.021950529888272285, 0.032511383295059204, 0.0004937866469845176, -0.0015139449387788773, 0.004598649684339762, -0.007466121576726437, 0.009391137398779392, -0.0054141078144311905, -0.0027371321339160204, -0.0025382807943969965, -0.01624232344329357, -0.008709360845386982, 0.019731415435671806, -0.006456824950873852, 0.037003085017204285, 0.0013551979791373014, 0.011396362446248531, -0.01711125485599041, 0.035238489508628845, 0.0027237641625106335, -0.014023207128047943, -0.05114660784602165, 0.0042310249991714954, 0.0018682013032957911, -0.00798747967928648, -0.01270644273608923, -0.002663607243448496, 0.006062463857233524, -0.035452380776405334, 0.025586672127246857, -0.001516451477073133, 0.019758151844143867, 0.01025338377803564, 0.0014437620993703604, -0.005511026829481125, -0.0023461133241653442, 0.04403474181890488, 0.0020185932517051697, -0.027859261259436607, -0.033420417457818985, 0.00473233126103878, 0.0052102431654930115, 0.011530044488608837, -0.031869709491729736, 0.03708329424262047, 0.0036561936140060425, -0.0068077389150857925, 0.002123867627233267, -0.0029409967828541994, -0.01461140625178814, 0.010420486330986023, 0.0034322768915444613, -0.009845655411481857, 0.005942150484770536, 0.0012908636126667261, 0.015587283298373222, 0.00017848591960500926, -0.01937047392129898, 0.015172869898378849, 0.014250466600060463, -0.0028641298413276672, -0.010173175483942032, 0.006557086016982794, 0.004013792145997286, 0.028019677847623825, 0.002797289052978158, 0.005835204850882292, 0.009498083032667637, -0.0229397751390934, 0.006109252572059631, -0.017472194507718086, -0.015440233051776886, 0.013582058250904083, 0.0059855966828763485, -0.024570690467953682, 0.006998235359787941, 0.014023207128047943, -0.020426560193300247, 0.016282428056001663, 0.008722729049623013, -0.00725891487672925, -0.014116784557700157, 0.0021790112368762493, -0.025372780859470367, 0.010981949046254158, 0.0029978114180266857, 0.009010144509375095, 0.005233637522906065, 0.005160112399607897, -0.017712822183966637, 0.004474993795156479, 0.03895483911037445, 0.0027337900828570127, -0.003032902954146266, 0.016817154362797737, -0.01225192565470934, -0.01430393848568201, 0.01078811101615429, -0.01955762878060341, 0.017057782039046288, 0.009364400990307331, 0.056413665413856506, 0.0016284098383039236, 0.012031350284814835, 0.009143826551735401, 0.019931936636567116, -0.00021639720944222063, -0.022244630381464958, 0.017913343384861946, -0.04079964756965637, 0.013495164923369884, -0.004381416831165552, -0.010654428973793983, -0.008756149560213089, 0.004588623531162739, 0.01521297451108694, -0.056627556681632996, -0.009123774245381355, 0.0016760339494794607, 0.032992634922266006, -0.014090048149228096, -0.01662999950349331, 0.02184358425438404, -0.033634308725595474, -0.018595119938254356, -0.009330980479717255, 0.003452329197898507, -0.004755725618451834, -0.024838054552674294, -0.03152213990688324, -0.00289587932638824, -0.017405353486537933, -0.023113561794161797, 0.012305397540330887, 0.02117517590522766, -0.028260305523872375, -0.035693004727363586, -0.01394299790263176, 0.003074678359553218, 0.005166796501725912, 0.024851422756910324, -0.029142605140805244, -0.010955212637782097, 0.03489091619849205, -0.023568078875541687, -0.009518135339021683, -0.00144877505954355, -0.028901977464556694, -0.0026753044221550226, 0.012987174093723297, -0.01271981094032526, -0.024223119020462036, 0.006617242936044931, 0.02793946862220764, -0.002220786875113845, 0.007532962132245302, 0.012800020165741444, 0.023060088977217674, -0.008843042887747288, -0.006436772644519806, -0.00044156727381050587, 0.028928713873028755, -0.02451721765100956, -0.023447765037417412, 0.0021171835251152515, -0.017926711589097977, -0.02475784532725811, -0.03534543514251709, 0.00323175429366529, -0.004608675837516785, 0.011810775846242905, 0.004431547597050667, 0.014544566161930561, 0.00854894332587719, 0.0046454379335045815, -0.013421639800071716, 0.012118243612349033, -0.01235887035727501, 0.0020002119708806276, 0.008662572130560875, 0.011596884578466415, 0.0003855880640912801, -0.015172869898378849, -0.005741627886891365, 0.025773826986551285, -0.019851727411150932, 0.03403535485267639, 0.013221117667853832, -0.0037330607883632183, 0.01979825645685196, 0.011757303029298782, -0.011723882518708706, 0.008074373006820679, 0.02815335988998413, 0.009544871747493744, 0.019089743494987488, 0.015373392030596733, -0.016924099996685982, -0.011657041497528553, -0.023474501445889473, -0.00034966113162226975, 0.024610795080661774, -0.020854340866208076, -0.027364637702703476, 0.009056933224201202, -0.020413191989064217, 0.01237223856151104, -0.007954059168696404, 0.027538424357771873, -0.021883688867092133, 0.004207630641758442, 0.01181745994836092, 0.005928782280534506, 0.007459437474608421, -0.010547484271228313, 0.010126386769115925, -0.019691310822963715, -0.017819765955209732, -0.00965850055217743, -0.0374041311442852, -0.003109769895672798, -0.0007076773326843977, 0.016068536788225174, 0.012318765744566917, 0.01394299790263176, 0.002738803159445524, -0.005300478078424931, 0.013662266544997692, 0.0015231355791911483, 0.004070607014000416, 0.006837817374616861, 0.005998964887112379, -0.0021873663645237684, -0.0010886701056733727, 0.01090174075216055, -0.0016284098383039236, 0.016469581052660942, -0.0022558781784027815, 0.005815152544528246, 0.025172259658575058, -0.002610134659335017, -0.024691004306077957, -0.00933766458183527, -0.03956977650523186, -0.02003888227045536, 0.005511026829481125, 0.018047025427222252, 0.0018314388580620289, -0.01931700110435486, -0.00015268953575287014, 0.025305939838290215, -0.0012373910285532475, 0.030345739796757698, 0.00466214818879962, 0.023581447079777718, -0.004057238809764385, 0.0068077389150857925, 0.0037430867087095976, -0.0018214128213003278, -0.007673327811062336, 0.023019984364509583, -0.016777049750089645, 0.01757914014160633, 0.03438292443752289, 0.001085328054614365, 0.0056179724633693695, 0.006273012608289719, 0.014718351885676384, 0.012987174093723297, -0.0083350520581007, -0.01529318280518055, -0.014116784557700157, -0.00016532662266399711, -0.01822081208229065, -0.01552044227719307, -0.01799355261027813, -0.014878770336508751, -0.020988022908568382, 0.014464356936514378, -0.0022475230507552624, -0.007760221138596535, 0.0014395845355466008, -0.005086587741971016, -0.011102262884378433, 0.0063933259807527065, 0.004932853858917952, 0.02184358425438404, -0.002819012152031064, 0.03376799076795578, 0.031816236674785614, 0.012071454897522926, -0.013795948587357998, -0.05555810406804085, -0.014491093344986439, -0.0011229260126128793, 0.012031350284814835, 0.028875241056084633, -0.023929018527269363, -0.02207084372639656, 0.027110643684864044, 0.032965898513793945, -0.013481796719133854, -0.0285544041544199, 0.019972041249275208, 0.026950225234031677, 0.015052556060254574, -0.012472500093281269, -0.003049613209441304, -0.009384453296661377, 0.04112048074603081, 0.0028825111221522093, -0.02653581090271473, -0.021429171785712242, -0.01912984810769558, 0.010861636139452457, 0.010326908901333809, -0.0024931631051003933, 0.007813693955540657, 0.021496012806892395, 0.020306246355175972, 0.015667492523789406, -0.006931394804269075, -0.01618885062634945, -0.0037898754235357046, -0.008675940334796906, 0.021094968542456627, -0.008188002742826939, 0.0076866960152983665, 0.0006487738573923707, 0.0006567112286575139, -0.004414837341755629, -0.005551131442189217, 0.005781732499599457, 0.04093332961201668, -0.030452685430645943, -0.009384453296661377, -0.010941844433546066, -0.01270644273608923, 0.009090353734791279, 0.0035693005193024874, 0.0006408364861272275, 0.004027160350233316, -0.012532657012343407, -0.004124079365283251, 0.006035727448761463, -0.0019433973357081413, -0.007071760483086109, -0.010607640258967876, -0.0062462761998176575, -0.010173175483942032, -0.005444186273962259, -0.007720116525888443, 0.007673327811062336, -0.02501184120774269, -0.02834051474928856, 0.018555015325546265, -0.03529196232557297, -0.0028891952242702246, 0.014330674894154072, -0.0017813083250075579, 0.01665673591196537, 0.02703043445944786, -0.028474196791648865, -0.0045919655822217464, -0.01090174075216055, 0.00573494378477335, -0.0015106028877198696, -0.0021572879049926996, -0.012947069481015205, -0.005835204850882292, 0.03593363240361214, -0.004194262437522411, -0.010941844433546066, -0.01911647990345955, 0.007138601038604975, 0.007713432423770428, -0.01249923650175333, 0.025733722373843193, 0.0200121458619833, 0.0028240252286195755, -0.015627387911081314, 0.004688884597271681, -0.016523053869605064, -0.011790723539888859, -0.0011429783189669251, 0.006500271148979664, 0.0277255792170763, -0.0220441073179245, 0.025372780859470367, -0.007706748321652412, 0.01664336770772934, -0.0017545719165354967, -0.03358083590865135, -0.029303021728992462, 0.0019166609272360802, 0.013642214238643646, -0.016763681545853615, -0.029196077957749367, 0.00646350858733058, 0.00933766458183527, -0.018421335145831108, 0.00765327550470829, 0.013007226400077343, -0.00471896305680275, -0.003101414768025279, 0.02046666480600834, -0.00765327550470829, 0.013207749463617802, -0.008495470508933067, -0.006670715287327766, 0.007873850874602795, -0.032564856112003326, -0.03358083590865135, -0.00043279441888444126, -0.020319614559412003, 0.023728497326374054, 0.003472381504252553, -0.01759250834584236, -0.0315488763153553, -0.018728801980614662, -0.025546567514538765, 0.007773589342832565, -0.02791273221373558, 0.03686940670013428, -0.005831862799823284, 0.0018431360367685556, 0.011784039437770844, 0.0104539068415761, 0.0031415193807333708, -0.0004386429791338742, -0.012312081642448902, 0.002738803159445524, -0.007339123636484146, -0.01961110159754753, -0.01640274189412594, 0.004859328735619783, -0.024423642084002495, -0.01531991921365261, 0.0023043379187583923, -0.0003970763355027884, 0.0017946764128282666, 0.034543342888355255, 0.008776201866567135, -0.015560546889901161, -0.010079598054289818, 0.005587894003838301, -0.008649203926324844, 0.016255691647529602, -0.013455060310661793, -0.010868320241570473, -0.008502154611051083, 0.007853798568248749, -0.012004613876342773, -0.015573915094137192, 0.030532894656062126, 0.022806093096733093, 0.003709666430950165, 0.022792724892497063, -0.01068784948438406, -0.010320224799215794, -0.008134529925882816, -0.02269914746284485, 0.013568690046668053, -0.01114905159920454, -0.01554717868566513, 0.004237709101289511, 0.0009516464197076857, 0.0023260610178112984, -0.02183021605014801, 0.023060088977217674, -0.013033962808549404, -0.0036662197671830654, 0.021883688867092133, -0.018407966941595078, 0.002752171363681555, 0.0021155124995857477, 0.01259281300008297, -0.03473049774765968, -0.014036575332283974, 0.01712462119758129, 0.0015749371377751231, -0.03392840921878815, 0.006343195214867592, 0.005698181223124266, -0.007907270453870296, -0.005143402144312859, -0.006443456746637821, -0.012800020165741444, -0.008248158730566502, -0.0323777012526989, 0.026722965762019157, -0.03649509698152542, 0.010206595994532108, 0.011957825161516666, -0.022445153445005417, -0.02251199260354042, 0.021536117419600487, -0.005434160120785236, -0.027190852910280228, 0.0007356669520959258, 0.3142054080963135, -0.04160173609852791, -0.0037831913214176893, 0.0008204712648876011, -0.019517524167895317, -0.00709849689155817, 0.03473049774765968, -0.00438475888222456, 0.010600956156849861, 0.005915414076298475, -0.0024697689805179834, -0.007573066744953394, -0.016990941017866135, -0.008381840772926807, 0.00844868179410696, -0.030960675328969955, -0.03459681570529938, -0.01824754849076271, -0.022552097216248512, 0.006710819900035858, 0.02027950994670391, 0.005196874961256981, -0.00495290569961071, -0.007773589342832565, 0.002748829312622547, -0.002427993342280388, 0.0006888783536851406, 0.00786716677248478, -0.006483560893684626, 0.00405055470764637, -0.0022274707444012165, -0.015346655622124672, -0.0029827721882611513, 0.00422434089705348, -0.0062997485511004925, -0.00890319887548685, 0.007172021549195051, 0.015466969460248947, 0.028206832706928253, 0.00911709014326334, 0.006643978878855705, 0.016777049750089645, 0.010440538637340069, -0.0103670135140419, -0.02005225047469139, 0.026495708152651787, 0.007004919461905956, -0.02565351314842701, -0.01962446980178356, 0.02523909881711006, -0.011409730650484562, 0.004257761407643557, 0.024410273879766464, 0.012840124778449535, -0.00315154530107975, 0.0038099277298897505, 0.014223730191588402, -0.0055611575953662395, 0.020867709070444107, -0.0031080988701432943, 0.010052861645817757, 0.02161632664501667, -0.012352186255156994, 0.020199300721287727, -0.015560546889901161, -0.004241051152348518, -0.032965898513793945, 0.005564499646425247, -0.0013760856818407774, -0.005270400084555149, 0.0002955618256237358, -0.020399823784828186, -0.016269059851765633, -0.0004073113377671689, -0.028661349788308144, -0.02050676755607128, 0.048980966210365295, 0.05205564200878143, 0.008535575121641159, 0.002384546911343932, -0.016924099996685982, 0.01270644273608923, 0.0166701041162014, 0.011429782956838608, -0.010246699675917625, -0.019718047231435776, 0.0028875241987407207, -0.02092118188738823, 0.003200005041435361, -0.008361788466572762, -0.0034038694575428963, 0.005751654040068388, -0.0054040816612541676, -0.0022391679231077433, -0.005143402144312859, 0.008174634538590908, 0.006884606089442968, 0.01687062717974186, -0.009959284216165543, 0.010507379658520222, -0.003375462256371975, 0.027150748297572136, 0.022204525768756866, 0.014143520966172218, -0.007900586351752281, 0.012579445727169514, 0.002083763014525175, 0.004919485654681921, -0.015667492523789406, -0.011964509263634682, -0.014450988732278347, -0.04251077026128769, 0.004561887122690678, -0.0021756691858172417, -0.0007089306018315256, -0.007339123636484146, -0.024945000186562538, -0.024797949939966202, 0.017859870567917824, -0.019437314942479134, 0.018822379410266876, -0.018367862328886986, -0.01982499100267887, 0.020332982763648033, 0.0042209988459944725, -0.02900892309844494, -0.019771520048379898, 0.0017478878144174814, -0.010834899730980396, -0.02657591551542282, 0.03708329424262047, -0.010099650360643864, 0.01910311169922352, 0.024263223633170128, 0.010600956156849861, 0.009645132347941399, 0.013809316791594028, 0.00035467417910695076, 0.02002551406621933, -0.0008689308888278902, 0.023902282118797302, -0.011302785016596317, 0.03328673541545868, -0.009965968318283558, 0.00024104476324282587, -0.0011814117897301912, 0.014598038978874683, 0.03422250971198082, 0.01776629500091076, 0.003950293175876141, -0.034088827669620514, -0.012044718489050865, -0.005962202325463295, 0.0023511264007538557, 0.026442235335707664, 0.015720965340733528, -0.025279203429818153, 0.0003367107128724456, -0.008535575121641159, 0.03868747502565384, -0.02543962188065052, -0.0035358802415430546, 0.020386455580592155, -0.007566382642835379, -0.0200121458619833, -0.021429171785712242, -0.1722889393568039, 0.008729413151741028, 0.042189937084913254, -0.02523909881711006, 0.01251260470598936, 0.01732514426112175, -0.0008497141534462571, -0.004809197969734669, -0.003726376686245203, -0.0029008921701461077, 0.022164421156048775, -0.01820744387805462, -0.011376310139894485, -0.007746852934360504, -0.0031064278446137905, 0.001192273455671966, -0.03323326259851456, 0.01624232344329357, 0.006687425542622805, 0.007031655870378017, 0.02518562600016594, -0.015707597136497498, -0.016549790278077126, 0.006206171587109566, 0.02590750716626644, 0.013027278706431389, -0.02590750716626644, 0.005059851333498955, -0.00512669188901782, -0.023755233734846115, -0.01776629500091076, -0.021963898092508316, 0.0450507216155529, 0.005918756127357483, 0.030319003388285637, -0.021322226151823997, -0.006540375761687756, -0.01158351730555296, -0.022391680628061295, 0.007980795577168465, -0.002663607243448496, 0.049382008612155914, 0.0036361415404826403, 0.001409506076015532, 0.0023160348646342754, 0.009150510653853416, 0.01056753657758236, -0.02134896256029606, 0.004715621005743742, -0.020386455580592155, 0.029597122222185135, -0.03809927776455879, -0.006573796272277832, -0.0008363459492102265, 0.01573433354496956, 0.016736945137381554, -0.00371635053306818, 0.0004921156796626747, -0.01640274189412594, 0.006801054812967777, -0.00379655952565372, 0.004842618480324745, 0.014718351885676384, 0.0146381426602602, 0.0013518559280782938, -0.009010144509375095, -0.013461744412779808, 0.023969123139977455, 0.0034656974021345377, 0.011616936884820461, 0.012886913493275642, -0.023060088977217674, -0.006797713227570057, -0.01273317914456129, 0.008662572130560875, -0.006055779755115509, -0.012419027276337147, -0.003121467074379325, 0.02048003301024437, 0.009090353734791279, -0.011984561569988728, 0.03732392191886902, -0.03850032016634941, -0.01070121768862009, -0.00016511775902472436, 0.002974417293444276, 0.012312081642448902, -0.01461140625178814, -0.02720421925187111, -0.016536422073841095, 0.04031839221715927, -0.021108336746692657, -0.019651206210255623, 0.00365953566506505, -0.0002732119173742831, 0.01912984810769558, 0.01360879372805357, -0.009772130288183689, -0.006473534740507603, -0.001946739386767149, -0.004448257852345705, -0.0032217283733189106, 0.009678552858531475, 0.006289722863584757, 0.0009432912920601666, -0.002488150028511882, -0.004020476248115301, 0.01888922043144703, 0.031816236674785614, -0.02319376915693283, 0.01910311169922352, 0.0016392715042456985, 0.012993858195841312, 0.0229397751390934, -0.0072254943661391735, 0.03104088455438614, -0.024142909795045853, -0.0270036980509758, 0.006286380812525749, -0.019410578534007072, -0.0065971906296908855, 0.005805126391351223, -0.0018163997447118163, 0.030559629201889038, -0.005427476018667221, -0.014718351885676384, -0.046949002891778946, -0.01080147922039032, 0.015266447328031063, 0.03686940670013428, 0.007452753372490406, 0.02471774071455002, -0.0029794303700327873, 0.05609282851219177, -0.03863400220870972, 0.023327451199293137, -0.011663725599646568, -0.03981040045619011, -0.016055168583989143, 0.0027939470019191504, 0.019931936636567116, -0.00512669188901782, -0.023514606058597565, -0.0114698875695467, -0.006978183053433895, 0.017672717571258545, -0.006657347083091736, -0.008428629487752914, 0.010841583833098412, -0.03037247620522976, -0.00033441305276937783, -0.009157194755971432, -0.0374041311442852, 0.03347389027476311, 0.015079292468726635, 0.00811447761952877, 0.01554717868566513, -0.03146866708993912, -0.007553014438599348, -0.014771824702620506, 0.0038400059565901756, 0.010915108025074005, -0.022431785240769386, -0.018113866448402405, 0.011389678344130516, -0.008736097253859043, -0.00471896305680275, 0.004825908225029707, -0.005531079135835171, 0.00013127957936376333, -0.0006341524422168732, -0.00546089606359601, -0.007827062159776688, 0.02858114056289196, -0.005594578105956316, -0.026468971744179726, -0.02951691299676895, 0.0023327451199293137, -0.012044718489050865, -0.0010201582917943597, 0.02339429222047329, -0.008522206917405128, 0.023755233734846115, 0.00019979143689852208, -0.031629081815481186, 0.006897974293678999, -0.018407966941595078, 0.003766481066122651, -0.017017677426338196, 0.01824754849076271, 0.02006561867892742, 0.006343195214867592, -0.03866073861718178, -0.003846690058708191, 0.01271981094032526, -0.0039035046938806772, 0.007339123636484146, 0.03315305337309837, -0.013715739361941814, 0.032511383295059204, -0.024156277999281883, -0.016135377809405327, -0.011108946986496449, -0.0018247548723593354, 0.03932914882898331, -0.008502154611051083, -0.028420723974704742, -0.022391680628061295, 0.005233637522906065, -0.015680860728025436, -0.018795643001794815, 0.02471774071455002, -0.018354494124650955, -0.009371085092425346, -0.005039799027144909, -0.003619431285187602, 0.0001673109654802829, -0.0010351974051445723, 0.012398974969983101, 0.0038700844161212444, -0.011403046548366547, 0.004909459501504898, -0.0012691403971984982, 0.005551131442189217, 0.014464356936514378, 0.00563468225300312, -0.013916262425482273, -0.014571302570402622, -0.08347083628177643, 0.03331347182393074, 0.010995317250490189, -0.008234790526330471, -0.003445645095780492, 0.009203983470797539, 0.043794114142656326, -0.022124316543340683, 0.011523360386490822, 0.005614630412310362, -0.01982499100267887, 0.00289587932638824, -0.001721151522360742, -0.004605333786457777, -0.02586740255355835, -0.017632612958550453, 0.03042594902217388, 0.009297559969127178, 0.014143520966172218, 0.01067448128014803, 0.0178063977509737, 0.019477419555187225, 0.011068842373788357, 0.011543412692844868, -0.04344654455780983, 0.017926711589097977, -0.016148746013641357, -0.0027237641625106335, 0.005440844222903252, 0.0013852763222530484, -0.00012741534737870097, -0.026696229353547096, -0.018555015325546265, 0.016429478302598, -0.007332439534366131, -0.03539890795946121, 0.03216380998492241, 0.01576106995344162, 0.01396973431110382, 0.0427781343460083, -0.019691310822963715, -0.011870932765305042, 0.007466121576726437, -0.005317188333719969, -0.02002551406621933, -0.0038099277298897505, -0.01799355261027813, 0.012044718489050865, 0.02860787697136402, -0.0024898210540413857, 0.04122742637991905, 0.013521901331841946, -0.01957099698483944, -0.020119091495871544, -0.020854340866208076, -0.023995859548449516, 0.03689614310860634, 0.0047390153631567955, 0.007853798568248749, 0.02046666480600834, 0.027150748297572136, 0.005845231004059315, 0.010012757033109665, 0.004505072254687548, -0.008843042887747288, -0.007927322760224342, -0.004083975218236446, 0.004184236284345388, 0.014758456498384476, -0.024677636101841927, -0.02900892309844494, 0.008568994700908661, -0.021562853828072548, -0.01910311169922352, 0.005581209901720285, 0.03194991871714592, 0.020319614559412003, 0.008241474628448486, -0.005260373931378126, 0.011489939875900745, 0.030559629201889038, 0.019397210329771042, -0.013455060310661793, 0.012866861186921597, 0.039970818907022476, -0.006326484959572554, -0.019544260576367378, 0.010273436084389687, -0.005935466382652521, -0.019022902473807335, -0.01911647990345955, 0.012445763684809208, 0.02656254731118679, 0.010106334462761879, 0.03165581822395325, 0.021041495725512505, 0.0055611575953662395, -0.015413496643304825, 0.03729718551039696, 0.004197604488581419, 0.018100498244166374, -0.010995317250490189, 0.00991917960345745, -0.010854952037334442, -0.021897057071328163, -0.01823418028652668, -0.028447460383176804, -0.03358083590865135, -0.009691921062767506, 0.020787499845027924, -0.001389453886076808, 0.022151052951812744, -0.007559698540717363, 0.022151052951812744, -0.02427659183740616, 0.008802938275039196, -0.014544566161930561, -0.00551771093159914, -0.03104088455438614, 0.01931700110435486, 0.023902282118797302, 0.0004666325985454023, 0.02272588387131691, -0.029837749898433685, 0.0184614397585392, -0.004184236284345388, 0.02411617338657379, -0.03248464688658714, 0.017659349367022514, 0.009090353734791279, 0.0005760844796895981, 0.0027454872615635395, 0.0021656430326402187, -0.012185084633529186, -0.026041189208626747, -0.008348420262336731, -0.008809622377157211, 0.02005225047469139, -0.02475784532725811, 0.03890136629343033, 0.019530892372131348, 0.016135377809405327, -0.007192073855549097, -0.0025015182327479124, -0.010246699675917625, -0.00865588802844286, -0.004585281480103731, -0.026722965762019157, -0.005928782280534506, 0.0059855966828763485, -0.0094379261136055, -0.012118243612349033, -0.015146133489906788, -0.02094791829586029, -0.004187578335404396, 0.003813269780948758, 0.030105112120509148, 0.005591236054897308, -0.02025277353823185, 0.03307284414768219, 0.007332439534366131, 0.016723576933145523, 0.012673022225499153, -0.03422250971198082, -0.006156040821224451, 0.008722729049623013, -0.02697696164250374, 0.016710208728909492, -0.020586976781487465, 0.02205747552216053, -1.2141011211497243e-05, -0.01933036930859089, -0.015025819651782513, -0.006052437704056501, -0.0021856953389942646, 0.018341125920414925, -0.00043488320079632103, -0.0010126386769115925, 0.017498930916190147, -0.003042929107323289, 0.03443639725446701, -0.035906895995140076, -0.02183021605014801, -0.022418417036533356, -0.007486173417419195, -0.015480337664484978, -0.004642095882445574, -0.013983102515339851], "ce9b0860-1fd5-4916-bc02-f7003e48000c": [-0.009442934766411781, -0.0274740569293499, 0.00799800269305706, -0.013472463004291058, 0.013445327989757061, 0.012665200978517532, 0.01624022051692009, 0.0015492314705625176, 0.003937948029488325, 0.003927772399038076, 0.017746204510331154, 0.016620108857750893, -0.00198932527564466, -0.030011165887117386, -0.010684355162084103, 0.004511172417551279, 0.0033240215852856636, 0.003344372846186161, 0.007082201074808836, -0.007835193537175655, -0.012936549261212349, 0.03014684095978737, -0.004263566341251135, -0.016308056190609932, -0.011695128865540028, -0.007299280259758234, 0.012529526837170124, -0.03367437422275543, 0.0005863675614818931, 0.004707899875938892, 0.030255381017923355, -0.004270350094884634, -0.00304080150090158, -0.032507576048374176, 0.004870709031820297, 0.002123303711414337, 0.007231442723423243, -0.004005785100162029, 0.01891300454735756, -0.008140461519360542, 0.027609730139374733, 0.012950116768479347, -0.0018078606808558106, 0.012468473054468632, -0.014530722983181477, 0.01923862285912037, -0.029848357662558556, -0.005657620262354612, -0.005789902992546558, 0.006715880241245031, 0.006488625891506672, 0.006295289844274521, -0.025506777688860893, -0.004372105933725834, -0.02755546011030674, 0.0111117297783494, -0.04276455566287041, 0.024217871949076653, 0.004517955705523491, -0.025072619318962097, 0.003157820552587509, 0.012902630493044853, -0.022399835288524628, 0.004904627799987793, -0.004287309478968382, -0.007984435185790062, 0.003064544405788183, 0.03286032751202583, 0.006356343161314726, 0.0013389362720772624, 0.03456982597708702, 0.015385471284389496, -0.011593373492360115, -0.015887467190623283, 0.0395897775888443, 0.03253471106290817, -0.00023891405726317316, -0.001723912195302546, -0.003734436584636569, -0.00033960986183956265, -0.009897444397211075, -0.02649720013141632, -0.0013830304378643632, -0.00288816774263978, -0.0001747867208905518, 0.006329208612442017, -0.028328804299235344, 0.006705704610794783, 0.021138064563274384, -0.022996801882982254, 0.02382441610097885, 0.013221465982496738, 0.02416360192000866, 0.006800676696002483, -0.012644849717617035, 0.01712210290133953, -0.0018604345386847854, 0.022019946947693825, -0.011050675995647907, -0.04800158739089966, -0.02035115286707878, 0.016769349575042725, 0.0038667190819978714, -0.004707899875938892, -0.02514045685529709, -0.01175618264824152, 0.006427572574466467, -0.001490721944719553, -0.004087189678102732, 0.0210159569978714, -0.0033341972157359123, 0.036794885993003845, -0.013587785884737968, -0.0347326323390007, -0.017244210466742516, -0.0006648043054156005, 0.018153227865695953, -0.035112522542476654, -0.021070227026939392, 0.009924578480422497, 0.015181959606707096, 0.00712968735024333, 0.011600157245993614, -0.017352750524878502, 0.01240741927176714, 0.012495608069002628, 0.006668394431471825, -0.008791698142886162, -0.011817236430943012, -0.0468619205057621, 0.0165658388286829, -0.0062138852663338184, 0.024692732840776443, 0.025642452761530876, -0.027582595124840736, -0.0018146444344893098, -0.0009963585762307048, -0.00932761188596487, -0.02794891595840454, 0.008113326504826546, 0.010840380564332008, 0.014422183856368065, -0.003547884291037917, -0.03239903599023819, 0.0001599473471287638, 0.03910134732723236, 0.007475656922906637, -0.012393851764500141, -0.00900877732783556, 0.005342177581042051, -0.007855544798076153, -0.028654422610998154, -0.019496403634548187, 0.002542198169976473, 0.009822823107242584, 0.013465679250657558, 0.01584676466882229, -0.0001334484404651448, -0.02737908437848091, 0.005891658831387758, 0.01663367636501789, 0.003441040636971593, 0.002043594839051366, -0.027772540226578712, -0.00018337236542720348, 0.011762966401875019, 0.02398722618818283, 0.006257979664951563, -0.012244610115885735, -0.006397045683115721, -0.0012583796633407474, -0.001779029960744083, -0.011016757227480412, 0.006665002554655075, 0.008588186465203762, 0.014164402149617672, -0.008316838182508945, 0.0036462482530623674, -0.01325538381934166, -0.01590103469789028, 0.0031137263868004084, -0.006960094440728426, 0.014395048841834068, 0.03253471106290817, 0.02166719362139702, -0.026565037667751312, -0.002499799942597747, -0.0019469269318506122, -0.004110932815819979, -0.003378291381523013, 0.01273303758352995, 0.027433354407548904, 0.011810452677309513, 0.005722065921872854, -0.622148334980011, -0.028654422610998154, 0.01899440959095955, -0.012705903500318527, 0.0046909404918551445, 0.009761769324541092, 0.0004964833497069776, 0.0005838237120769918, -0.0022471065167337656, 0.046264953911304474, -0.018397442996501923, 0.023485230281949043, -0.03399999439716339, -0.013838783837854862, 0.017746204510331154, -0.022508375346660614, -0.00144408387131989, -0.028790097683668137, -0.0053252181969583035, 0.0010099259670823812, -0.024339979514479637, -0.004382281564176083, -0.02406862936913967, -0.0109014343470335, 0.006234236527234316, -0.00640043755993247, -0.010311250574886799, -0.008323621936142445, 0.01746128872036934, 0.019835589453577995, -0.002879688050597906, 0.011410213075578213, 0.03367437422275543, -0.0052404217422008514, 0.030173975974321365, -0.01248204056173563, -0.02496408112347126, 0.03408139571547508, 0.002370909322053194, 0.036794885993003845, -0.030743807554244995, -0.017271345481276512, -0.0014678268926218152, 0.0013991417363286018, 0.008459296077489853, 0.01208180096000433, 0.0002541774301789701, -0.015521145425736904, 0.010860731825232506, 0.011518752202391624, 0.002691440051421523, -0.013363923877477646, 0.0012855144450441003, -0.010324818082153797, 0.022969666868448257, 0.00024018599651753902, 0.011701912619173527, -0.019984832033514977, 0.007007580250501633, -0.00026880481163971126, -0.0052879080176353455, 0.0031561246141791344, -0.005084396339952946, -0.02149081788957119, -0.01994412951171398, 0.0030543687753379345, -0.015711089596152306, -0.004060055129230022, -0.011179566383361816, -0.023308854550123215, 0.011851154267787933, -0.010345169343054295, -0.004270350094884634, -0.019021544605493546, 0.008662807755172253, 0.03223622590303421, 0.008940939791500568, -0.010419790633022785, -0.02884436771273613, 0.011518752202391624, -0.007943733595311642, 0.008425377309322357, -0.011328808031976223, -0.019822021946310997, 0.008947723545134068, -0.0153583362698555, -0.005304866936057806, -0.015941737219691277, 0.010236630216240883, 0.017393451184034348, -0.0038938538637012243, 0.030201110988855362, -0.005559256765991449, -0.05063366889953613, -0.013316437602043152, 0.0258595310151577, -0.009035911411046982, 0.001889265375211835, -0.004195729270577431, -0.006922783795744181, -0.03345729410648346, 0.008167595602571964, 0.0017103448044508696, -0.008099758997559547, 0.027677567675709724, -0.021368710324168205, -0.03248044103384018, 0.016294490545988083, 0.03101515769958496, -0.018478846177458763, -0.011620508506894112, 0.009090181440114975, -0.01155267097055912, -0.0107047064229846, 0.030418189242482185, -0.031964875757694244, -0.006973661482334137, 0.014924178831279278, 0.010019551031291485, -0.0023810849525034428, 0.019577808678150177, 0.015317634679377079, 0.04344292730093002, -0.006244412157684565, 0.009544691070914268, 0.030988022685050964, 0.004572225734591484, -0.014639262109994888, -0.021802868694067, -0.0008013266487978399, -0.020866714417934418, 0.012142854742705822, 0.006397045683115721, -0.020242612808942795, 0.021802868694067, 0.008025137707591057, 0.01175618264824152, -0.02173503115773201, 0.0008165899780578911, 0.011824020184576511, -0.002033419441431761, -0.016294490545988083, -0.00015454157255589962, -0.008249000646173954, -0.004127892199903727, 0.011606940999627113, -0.011762966401875019, 0.023607337847352028, -0.0063597350381314754, 0.007563845254480839, -0.0008348212577402592, -0.0076588173396885395, -0.014544290490448475, 0.010202711448073387, -0.0034766553435474634, -0.002862728899344802, 0.003585194703191519, -0.028383074328303337, 0.005915401969105005, -0.006234236527234316, 0.006464882753789425, 0.01988985948264599, -0.015480443835258484, 0.0031832593958824873, -0.028301669284701347, 0.0003826440661214292, -0.00807940773665905, 0.014015160501003265, 0.006173183210194111, -0.03256184607744217, -0.011444131843745708, -0.028301669284701347, 0.006882081273943186, 0.0210023894906044, 0.006271546706557274, -0.0048842765390872955, -0.02035115286707878, -0.010664003901183605, -0.0010947224218398333, -0.02294253371655941, -0.010731841437518597, -0.005528729874640703, -0.000298907543765381, -0.004840182606130838, 0.03725617751479149, 0.01778690703213215, 0.028898637741804123, 0.008588186465203762, -0.01712210290133953, 0.014395048841834068, -0.022481240332126617, 0.020418990403413773, 0.006651435047388077, 0.025805260986089706, 0.0155482804402709, -0.011885073035955429, 0.021368710324168205, 0.0031476449221372604, -0.010453708469867706, 0.020866714417934418, 0.01752912625670433, 0.011199917644262314, 0.022996801882982254, -0.02075817622244358, 0.019862724468111992, -0.021816436201334, -0.0012337886728346348, -0.014069430530071259, -0.012237826362252235, -0.0010277332039549947, -0.003395250765606761, -0.025791693478822708, -0.025981638580560684, -0.030743807554244995, 0.0025303266011178493, 0.022087784484028816, -0.003656423883512616, 0.019835589453577995, -0.01914365030825138, 0.020731041207909584, 0.0035512761678546667, -0.0004735882976092398, 0.007726654410362244, -0.028247399255633354, -0.02349879778921604, -0.007699519395828247, -0.01850598119199276, 0.006678570061922073, -0.006118913181126118, -0.02649720013141632, -0.009198721498250961, -0.0205953661352396, -0.0047994800843298435, 0.007787707727402449, 0.010487627238035202, -0.028898637741804123, 0.010290899313986301, -0.015385471284389496, 0.017081400379538536, 0.013099358417093754, 0.001174431061372161, -0.00977533683180809, -0.0066378675401210785, -0.010738625191152096, 0.023973658680915833, -9.534302807878703e-05, 0.0452609620988369, 0.028383074328303337, -0.014842773787677288, 0.007835193537175655, -0.01841100864112377, -0.0005897594382986426, -0.019102949649095535, 0.02481483854353428, 0.0068786898627877235, -0.01272625382989645, 0.009639662690460682, 0.00881204940378666, 0.010982838459312916, 0.020541096106171608, 0.012319231405854225, 0.043741412460803986, 0.01187828928232193, 0.0013558955397456884, -0.003941339906305075, -0.03969831392168999, 0.02036472037434578, -0.024665597826242447, -0.0002685928193386644, -0.0062749385833740234, -0.02618514932692051, -0.010128090158104897, 0.018709493800997734, -0.037283312529325485, 0.039942529052495956, 0.005945928394794464, 0.024217871949076653, 0.025086186826229095, 0.053781311959028244, 0.009096965193748474, -0.01858738623559475, -0.015561847947537899, 0.023403825238347054, 0.011722263880074024, 0.01778690703213215, 0.0029916195198893547, -0.012217475101351738, 0.001770550268702209, -0.010195927694439888, -0.002286112867295742, 0.004809655714780092, 0.012821226380765438, -0.004989424254745245, 0.001804468920454383, -0.0025014958810061216, -0.0052505973726511, 0.03600797429680824, 0.00021156719594728202, -0.011885073035955429, -0.022196324542164803, 0.0153583362698555, -0.009632878936827183, -0.020975254476070404, -0.023308854550123215, 0.045613717287778854, -0.008411809802055359, 0.006220669019967318, 0.015086987987160683, 0.013119709677994251, -0.024122899398207664, 0.011478050611913204, -0.01647086627781391, 0.016782917082309723, -0.009883876889944077, -0.0022182755637913942, -0.01438148133456707, 0.013438544236123562, 0.010392655618488789, 0.0035037901252508163, 0.022033514454960823, -0.00152040075045079, -0.009612527675926685, -0.01609097793698311, 0.00662430003285408, -0.008554267697036266, 0.016525136306881905, -0.001049780286848545, 0.0016162206884473562, -0.04854428395628929, -0.013486030511558056, -0.0274604894220829, -0.0054575009271502495, 0.00978212058544159, -0.014218672178685665, -0.0169728621840477, 0.0011829107534140348, 0.007577412761747837, 0.0014169489732012153, 0.017651233822107315, 0.02457062527537346, -0.005661012139171362, -0.010392655618488789, 0.008988426066935062, -0.014205104671418667, 0.005718674045056105, 0.007014364004135132, 0.013275735080242157, -0.023390257731080055, 0.009347963146865368, -0.004789304453879595, 0.013682758435606956, 0.03513965755701065, 0.013173979707062244, -0.015181959606707096, 0.018234632909297943, -0.015643252059817314, -0.0024031319189816713, 0.018940139561891556, 0.01417796965688467, 0.04998243227601051, 0.016131680458784103, 0.06875976175069809, -0.006475058384239674, 0.012054665945470333, 0.013547084294259548, 0.02528969943523407, 0.003471567528322339, -0.016498001292347908, 0.01320789847522974, 0.004887668415904045, 0.012631282210350037, 0.010758976452052593, -0.010263764299452305, -0.032616112381219864, 0.017094967886805534, 0.021368710324168205, -0.04376854747533798, 0.012814442627131939, -0.0030543687753379345, 0.03201914578676224, -0.022684751078486443, -0.018288902938365936, 0.017393451184034348, -0.01850598119199276, -0.01754269376397133, -0.0010014462750405073, -0.018031122162938118, -0.008771346881985664, -0.015385471284389496, -0.028735827654600143, -0.011511968448758125, 0.0161588154733181, -0.027664000168442726, 0.0030051867943257093, 0.021707896143198013, -0.05323861539363861, -0.03570948913693428, -0.004382281564176083, -0.005861131940037012, 0.009029127657413483, 0.01889943704009056, -0.012814442627131939, -0.01761053130030632, 0.013825216330587864, -0.018031122162938118, -0.005332001950591803, -0.03432561084628105, -0.028573019430041313, 0.0028169387951493263, 0.0008827312267385423, -0.004372105933725834, -0.017162805423140526, 0.0021741813980042934, 0.022494807839393616, 0.015819629654288292, -0.003812449285760522, -0.0008776434697210789, 0.015046285465359688, -0.01397445797920227, 0.020066237077116966, -0.009137667715549469, 0.0074892244301736355, -0.004989424254745245, -0.015195527113974094, -0.0026710887905210257, -0.03093375265598297, -0.004687549080699682, -0.02173503115773201, -0.010636868886649609, -0.0017841177759692073, 0.019197920337319374, 0.009185153990983963, 0.013906621374189854, -0.0022250593174248934, 0.03831443563103676, -0.0037140853237360716, 0.02334955520927906, -0.014856341294944286, 0.009585392661392689, -0.005657620262354612, -0.005810254253447056, -0.006973661482334137, 0.005430365912616253, 0.0047146836295723915, 0.03177493438124657, -0.010847164317965508, 0.040919385850429535, 0.014313643798232079, 0.012034314684569836, 0.021463682875037193, 0.0005100507405586541, -0.007740221917629242, -0.004077014047652483, 0.006804068572819233, -0.002861032960936427, 0.03828730061650276, 0.012617714703083038, -0.03489544242620468, -0.02302393689751625, -0.00905626267194748, 0.0026982235722243786, 0.02851874940097332, -0.008893453516066074, -0.028790097683668137, -0.006665002554655075, -0.012631282210350037, 0.0003792522184085101, -0.007699519395828247, 0.011688345111906528, -0.02197924442589283, -0.006349559873342514, 0.012027530930936337, 0.002141958801075816, 0.020296882838010788, 0.0034037302248179913, -0.00030145145137794316, -0.042303264141082764, -0.021382277831435204, -0.010012767277657986, -0.0165658388286829, -0.006783717777580023, 0.0061528319492936134, 0.01744772121310234, 0.020310450345277786, 0.03562808409333229, 0.003134077414870262, 0.00400239322334528, -0.0028135469183325768, 0.009551474824547768, -0.007930166088044643, -0.008364323526620865, 0.013051873072981834, 0.010840380564332008, -0.026144446805119514, 0.02002553455531597, -0.0051183151081204414, 0.00972785148769617, -0.016932159662246704, 0.01340462639927864, 0.020242612808942795, -0.014340778812766075, 0.0008089583134278655, 0.0025082796346396208, -0.04243893548846245, 0.012387068010866642, 0.02714843861758709, -0.00839824229478836, 0.014096565544605255, -0.013472463004291058, -0.013764162547886372, 0.024692732840776443, 0.006814244203269482, 0.029766952618956566, 0.012522743083536625, 0.005393055267632008, -0.01801755465567112, -0.0041448515839874744, -0.001414405065588653, -0.014774937182664871, -0.02722984179854393, 0.015656819567084312, -0.027894645929336548, 0.03321308270096779, 0.012298880144953728, 0.013689542189240456, 0.0027083992026746273, 0.02771827019751072, 0.021463682875037193, 0.012298880144953728, 0.01712210290133953, 0.015873899683356285, -0.0014118612743914127, -0.006953310687094927, -0.015439741313457489, -0.03136790916323662, -0.029604144394397736, -0.006804068572819233, -0.0009437847184017301, -0.003853151574730873, 0.009693932719528675, -0.00924620684236288, 0.005213287193328142, -0.02990262769162655, -0.006227452773600817, 0.018628088757395744, -0.011600157245993614, 0.03910134732723236, -0.004582401365041733, 0.014110133051872253, 0.019835589453577995, 0.0046536303125321865, 0.006698921322822571, -0.049901027232408524, -0.0027083992026746273, -0.0005193784018047154, 0.031313639134168625, 0.04252034053206444, -0.034624096006155014, -0.03345729410648346, 0.01187828928232193, 0.02334955520927906, -0.010596167296171188, -0.019808456301689148, 0.018193930387496948, 0.0310965608805418, 0.006061251740902662, -0.027189139276742935, -0.010921785607933998, -0.0323447659611702, 0.026483632624149323, -0.002996707335114479, -0.01511412300169468, 0.005270948633551598, -0.0028779921121895313, -0.0019537105690687895, -0.006817636080086231, -0.023946523666381836, 0.04094652086496353, 0.030662404373288155, -0.005311650689691305, 0.009721067734062672, -0.0043992409482598305, -0.019618511199951172, 0.007224659435451031, 0.005291299894452095, 0.02196567691862583, -0.01216320600360632, 0.007319631054997444, 0.02286112867295742, -0.007747005671262741, 0.015168392099440098, -0.005416798405349255, -0.01583319716155529, 0.04919552057981491, -0.012665200978517532, -0.0019978047348558903, -0.005064045079052448, -0.009212288074195385, 0.029142851009964943, 0.000914105970878154, -0.0008343972731381655, 0.005501594860106707, -0.00042737420881167054, -0.009368314407765865, 0.012007180601358414, -0.008981642313301563, 0.00372765283100307, 0.000397059484384954, 0.0006686201668344438, -0.007685951888561249, -0.010792894288897514, 0.0036225051153451204, 0.009822823107242584, -0.030119705945253372, -0.025574615225195885, -0.004246607422828674, -0.03443415090441704, -0.0032680558506399393, 0.008818833157420158, 0.009341179393231869, 0.0005876395152881742, 0.02651076763868332, -0.024787703529000282, 0.00043924571946263313, 0.01187828928232193, 0.0008335493039339781, 0.009300476871430874, 0.008581402711570263, -0.0214229803532362, 0.011179566383361816, 0.03210055083036423, 0.004663805942982435, -0.02311890944838524, -0.036170780658721924, 0.008893453516066074, 0.024923378601670265, -0.006532719824463129, 0.018560251221060753, 0.020731041207909584, 0.002420091303065419, 0.0023098557721823454, 0.0008793394081294537, -0.011328808031976223, -0.00984995812177658, -0.013784513808786869, 0.003344372846186161, 0.00953790731728077, -0.023648040369153023, 0.004572225734591484, 0.005823821760714054, -0.003917596768587828, -0.007909814827144146, -0.039237022399902344, -0.02149081788957119, 0.003369811689481139, 0.0030034908559173346, -0.007299280259758234, -0.004419592209160328, -0.029278524219989777, 0.003441040636971593, -0.03872146084904671, -0.006498801521956921, 0.004548482596874237, -0.0014924178831279278, 0.002915302524343133, 0.02827453427016735, 0.010650436393916607, -0.017976852133870125, -0.009232639335095882, -0.014992015436291695, -0.00012030499055981636, -0.029549874365329742, -0.01640302874147892, 0.0017298479797318578, -0.02416360192000866, 0.04412129893898964, -0.0037819226272404194, -0.03030965104699135, -0.03104229085147381, -0.03657780587673187, -0.014354346320033073, -0.018193930387496948, -0.017244210466742516, 0.021382277831435204, 0.0003830680507235229, 0.009544691070914268, 0.021626491099596024, 0.014150834642350674, 0.0035105738788843155, 0.01875019632279873, 0.0016085890820249915, -0.003456304082646966, -0.015860332176089287, -0.017881879583001137, -0.01881803199648857, 0.005871307570487261, -0.02406862936913967, -0.009734634310007095, -0.0026439540088176727, -0.00833040475845337, 0.005108139477670193, 0.026307256892323494, 0.00767916813492775, -0.0355738140642643, 0.002498104004189372, -0.015168392099440098, -0.022331997752189636, -0.005382880102843046, 0.0012685551773756742, -0.02003910206258297, -0.005206503439694643, 0.02124660275876522, -0.014272942207753658, -0.0009582001366652548, 0.0005702562630176544, 0.029631277546286583, -0.011084594763815403, 0.013553868047893047, -0.031205100938677788, -0.024665597826242447, 0.00787589605897665, -0.00336302793584764, 0.023295287042856216, -0.013140060938894749, -0.006617516744881868, 0.033891454339027405, -0.01777333952486515, 0.005091180093586445, -0.03302313759922981, 0.0058577400632202625, -0.02835593931376934, 0.005247205495834351, 0.021287305280566216, -0.007869112305343151, -0.003591978456825018, -0.004965681117027998, 0.010772543959319592, -0.03359296917915344, -0.010575816035270691, 0.028220266103744507, 0.004999599885195494, -0.01672864705324173, 0.003313845954835415, 0.024299276992678642, -0.003988825716078281, -0.001785813714377582, -0.015249797143042088, -0.00795730110257864, -0.008940939791500568, -0.04007820412516594, 0.024258574470877647, -0.04650916904211044, 0.008038705214858055, 0.0034444325137883425, -0.010324818082153797, -0.013791297562420368, -0.005226854234933853, -0.015399038791656494, -0.015331202186644077, -0.009605743922293186, 0.21957537531852722, -0.025642452761530876, 0.0027083992026746273, 0.020418990403413773, -0.0038226249162107706, 0.0019554065074771643, 0.0020266356877982616, 0.004809655714780092, 0.0013389362720772624, 0.012013963423669338, -0.0011947822058573365, 0.017393451184034348, -0.012943333014845848, -0.022277727723121643, 0.007346766069531441, -0.020907416939735413, -0.02982122264802456, -0.026117313653230667, -0.02560175023972988, 0.0003389738849364221, 0.0059425365179777145, 0.0161723829805851, 0.016036707907915115, -0.019035112112760544, 0.01114564761519432, 0.007590979803353548, -0.011898640543222427, 0.017081400379538536, 0.025642452761530876, 0.004962289240211248, -0.01663367636501789, 0.029956897720694542, 0.0025642451364547014, -0.003887070110067725, -0.013167195953428745, -0.01832960546016693, 0.03188347443938255, 0.022169189527630806, 0.022250594571232796, -0.0020792095456272364, -0.015073420479893684, -0.006376694422215223, 0.014761369675397873, -0.003301974618807435, -0.02279329113662243, 0.009171586483716965, -0.007597763556987047, -0.020242612808942795, -0.01478850468993187, 0.03465123102068901, 0.0031917390879243612, -0.021857138723134995, 0.02117876708507538, 0.013357140123844147, 0.002347166184335947, -0.008337188512086868, 0.017895447090268135, 0.0018740019295364618, 0.026456499472260475, 0.035600949078798294, -0.011009973473846912, 0.036170780658721924, -0.02527613192796707, 0.02311890944838524, -0.010616517625749111, -0.019672781229019165, -0.01568395458161831, 0.0023658215068280697, -0.0103044668212533, -0.006899040658026934, -0.013262167572975159, -0.02155865542590618, -0.020717473700642586, 0.0001654591178521514, -0.03750039264559746, -0.040512360632419586, 0.059099748730659485, 0.02012050710618496, 0.019577808678150177, 0.04922265559434891, 0.009754985570907593, 0.005701714660972357, -0.0049317628145217896, 0.036062244325876236, -0.006434356328099966, -0.029604144394397736, 0.0002923358406405896, -0.020337585359811783, -0.007509575225412846, 0.008106542751193047, 0.022169189527630806, -0.028301669284701347, 0.0046061440370976925, -0.007285712752491236, 0.006376694422215223, 0.02811172604560852, 0.007984435185790062, 0.017271345481276512, -0.006006981711834669, -0.0010014462750405073, -0.024434950202703476, 0.0262529868632555, 0.008920588530600071, 0.024204304441809654, -0.010216278955340385, -0.007102552335709333, 0.012638065963983536, 0.028545884415507317, 0.014530722983181477, -0.014897043816745281, -0.010569032281637192, -0.0686512216925621, 0.0051386659033596516, 0.017705503851175308, -0.012346366420388222, 0.016932159662246704, -0.040593765676021576, -0.02659217268228531, 0.001698473235592246, -0.011586589738726616, 0.01240063551813364, -0.01994412951171398, -0.025262564420700073, 0.001422884757630527, -0.024041494354605675, -0.03584516420960426, -0.013811648823320866, -0.008649240247905254, 0.0023268151562660933, -0.02085314877331257, 0.02473343349993229, -0.016063842922449112, 0.021110929548740387, 0.013635272160172462, 0.015724657103419304, 0.0052641648799180984, 0.00016450515249744058, -0.029685547575354576, 0.003520749509334564, 0.010921785607933998, -0.002294592559337616, -0.004768953658640385, 0.014937746338546276, -0.019374297931790352, 0.003659815527498722, 0.016538703814148903, 0.0006889713113196194, 0.01503271795809269, 0.01352673303335905, -0.0012210691347718239, -0.029197121039032936, 0.006834595464169979, 0.010392655618488789, -0.009191937744617462, 0.016905024647712708, -0.0005469372263178229, -0.027758972719311714, -0.04387708380818367, -0.001153231947682798, 0.007278928998857737, -0.02343096025288105, -0.003558059921488166, 0.010318034328520298, -0.01006025355309248, -0.025398239493370056, -0.017339183017611504, -0.17268630862236023, -0.01018236018717289, 0.03853151574730873, -0.05266878381371498, 0.013282518833875656, 0.01478850468993187, -0.0006351255578920245, 0.00017998050316236913, -0.007014364004135132, -0.007808058988302946, 0.03277892246842384, -0.006678570061922073, 0.012326015159487724, 0.0032544885762035847, -0.012380284257233143, 0.009198721498250961, -0.02900717593729496, 0.016457298770546913, 0.04659057408571243, 0.004782520700246096, 0.030255381017923355, -0.0315307192504406, -0.014693532139062881, 0.028491614386439323, 0.01681005209684372, 1.1381276635802351e-05, -0.017271345481276512, 0.014802072197198868, -0.0062613715417683125, -0.012115719728171825, -0.006821027956902981, 0.00735354982316494, 0.022345565259456635, -0.001465282985009253, 0.02374301105737686, -0.003669991157948971, 0.0201883427798748, -0.018302470445632935, -0.020459692925214767, -0.002447226084768772, 0.010996405966579914, 0.025913801044225693, 0.0017247601645067334, 0.007448521908372641, -0.01866879127919674, 0.017976852133870125, 0.013669190928339958, -0.028410209342837334, 0.01705426536500454, -0.005732241552323103, 0.027528325095772743, -0.03942696750164032, -0.016430163756012917, -0.012448121793568134, 0.020893849432468414, 0.005196327809244394, -0.030960887670516968, -0.00833040475845337, -0.0018536507850512862, -0.010270548053085804, 0.00011648915096884593, -0.023770146071910858, 0.024380680173635483, 0.0015560152241960168, -0.025886666029691696, -0.017881879583001137, -0.015385471284389496, 0.025330401957035065, -0.008038705214858055, -0.013743812218308449, 0.0355466790497303, -0.03682201728224754, -0.03418993577361107, 0.0027711486909538507, 0.01704069785773754, 0.010019551031291485, -0.0016993212047964334, 0.017651233822107315, 0.015168392099440098, -0.00346478377468884, -0.003335893154144287, 0.03948123753070831, -0.01824820041656494, -0.006230844650417566, 0.0016425076173618436, 0.00029212384833954275, 0.011444131843745708, 0.0021114321425557137, -0.04886990040540695, -0.021205902099609375, 0.04862568899989128, -0.021368710324168205, -0.01122705265879631, -0.017067832872271538, 0.01875019632279873, 0.011043892242014408, 0.011946126818656921, -0.008459296077489853, -0.008995209820568562, -0.002794891595840454, -0.004901235923171043, 0.008818833157420158, -0.034217070788145065, 0.033728644251823425, 0.030499594286084175, 0.0016492913709953427, -0.015263364650309086, 0.021843571215867996, 0.02651076763868332, -0.03410853073000908, 0.00913088396191597, 0.00016842699551489204, 0.013893053866922855, 0.017094967886805534, -0.005610134452581406, 0.036252185702323914, -0.015738224610686302, -0.023132476955652237, 0.009931362234055996, -0.017732637003064156, -0.019211487844586372, -0.000717802089639008, 0.013540300540626049, 0.039942529052495956, -0.00462649529799819, -0.022101351991295815, -0.0565490685403347, -0.008459296077489853, 0.019021544605493546, 0.037527523934841156, -0.012644849717617035, 0.017759772017598152, -0.008384674787521362, 0.04968394711613655, -0.03345729410648346, 0.03014684095978737, -0.006023941095918417, -0.026076611131429672, -0.0057492004707455635, 0.011701912619173527, -0.007055066525936127, -0.015873899683356285, -0.001567038707435131, -0.012298880144953728, -0.008499998599290848, 0.0005626245983876288, 0.0032748396042734385, -0.0016874497523531318, 0.0157517921179533, -0.01899440959095955, 0.01038587186485529, 0.002548981923609972, -0.018383875489234924, 0.01638946123421192, 0.010643652640283108, -0.0009454806568101048, 0.019618511199951172, -0.00662769190967083, 0.005013167392462492, -0.013696325942873955, 0.014761369675397873, 0.005477852188050747, -0.02165362611413002, -0.023960091173648834, 0.008988426066935062, 0.0072721452452242374, 0.009409015998244286, 0.0105079784989357, 0.023892253637313843, 0.01599600538611412, -0.013228249736130238, -0.010107738897204399, -0.020907416939735413, 0.017067832872271538, -0.01940143294632435, -0.028084591031074524, -0.03256184607744217, 0.02471986599266529, -0.00640382943674922, 0.003754787612706423, 0.01850598119199276, -0.0037242609541863203, 0.03967117890715599, -0.004494213033467531, -0.0064445314928889275, 0.01155945472419262, -0.0050165592692792416, 0.0022979844361543655, -0.01195969432592392, 0.027121303603053093, 0.012441338039934635, 0.014530722983181477, -0.026483632624149323, -0.027921780943870544, 0.007034715265035629, -0.014476452954113483, 0.009171586483716965, -0.005830605048686266, -0.0036801667883992195, 0.03853151574730873, -0.038097359240055084, -0.011410213075578213, -0.014557857997715473, -0.015982437878847122, 0.01353351678699255, 0.010874299332499504, -0.022359132766723633, -0.026483632624149323, 0.010969270952045918, -0.018709493800997734, -0.003941339906305075, 0.009741418063640594, -0.01778690703213215, -0.020215477794408798, -0.008018353953957558, -0.023648040369153023, 0.010141657665371895, 0.0034325611777603626, -0.001855346723459661, -0.010792894288897514, -0.00020457147911656648, -0.006797284819185734, 0.017081400379538536, -0.005281124264001846, -0.00795730110257864, 0.015656819567084312, -0.020174775272607803, -0.03128650411963463, -0.08395528793334961, 0.022264160215854645, 0.00283728982321918, -0.01312649343162775, 0.011790101416409016, -0.004735034890472889, 0.049901027232408524, -0.007835193537175655, -0.012305663898587227, 0.007970868609845638, -0.033484429121017456, 0.009354746900498867, 0.0028661207761615515, 0.0024675773456692696, -0.022928966209292412, 0.004280525725334883, 0.02344452776014805, 0.006620908156037331, 0.009558257646858692, 0.0038599353283643723, 0.01899440959095955, 0.006631083786487579, 0.01762409880757332, -0.0024082197342067957, -0.04146208241581917, -0.013241816312074661, -0.013180763460695744, 0.01744772121310234, 0.012719470076262951, -0.008859534747898579, 0.021911408752202988, -0.00745530566200614, 0.0022148836869746447, 0.011661210097372532, -0.009151235222816467, -0.025628885254263878, 0.039454102516174316, 0.002956005046144128, 0.01491061132401228, 0.03492257744073868, -0.045532312244176865, -0.022576212882995605, 0.01633519120514393, -0.019428567960858345, -0.01666080951690674, -0.012868712656199932, -0.0061528319492936134, -0.00953790731728077, 0.03448842093348503, 0.01940143294632435, 0.04678051546216011, 0.011125297285616398, -0.010935353115200996, 0.005610134452581406, -0.005328610073775053, -0.03896567225456238, 0.030825212597846985, 0.0035037901252508163, 0.004222864285111427, 0.007068633567541838, 0.02731124684214592, 0.0007292496156878769, 0.019089382141828537, 0.021992811933159828, -0.0010887866374105215, 0.0008441488607786596, -0.012420986779034138, 0.010677571408450603, 0.021938541904091835, -0.028735827654600143, -0.027758972719311714, -0.027026331052184105, 0.0022403227631002665, -0.006522544659674168, 0.02149081788957119, 0.00800478644669056, 0.0033155418932437897, -0.005871307570487261, -0.01240063551813364, 0.015453308820724487, 0.018370307981967926, 0.014734234660863876, -0.012665200978517532, 0.02173503115773201, 0.04341579228639603, -0.0048469663597643375, -0.018356740474700928, 0.005257381126284599, -0.005898442585021257, -0.014232239685952663, -0.03101515769958496, 0.013574219308793545, 0.0339185893535614, 0.016498001292347908, 0.009029127657413483, 0.016036707907915115, 0.00944971852004528, -0.018071822822093964, 0.03177493438124657, -0.0025371103547513485, 0.012339582666754723, -0.01955067366361618, 0.00535574508830905, -0.029115715995430946, -0.024991216138005257, -0.009517556056380272, -0.0052031115628778934, -0.027175571769475937, -0.019089382141828537, 0.011932559311389923, -0.020296882838010788, 0.0021334791090339422, -0.011260971426963806, 0.011912208050489426, -0.034379880875349045, 0.0037513957358896732, -0.012644849717617035, -0.005199719686061144, -0.019618511199951172, 0.017420586198568344, 0.019754186272621155, -0.00030865916050970554, 0.03676775097846985, 0.004579009488224983, 0.03378291428089142, 0.015100555494427681, -0.0015602550702169538, -0.020622501149773598, 0.04813725873827934, -0.003931164275854826, -0.009836390614509583, 0.010609733872115612, -0.004297485109418631, -0.017067832872271538, -0.03280605748295784, -0.03223622590303421, -0.005267556756734848, 0.02367517352104187, -0.006882081273943186, 0.0694652646780014, -0.000298907543765381, 0.012034314684569836, -0.00777414022013545, -0.010643652640283108, 0.003091679187491536, 0.005694930907338858, -0.0001567674771649763, -0.010691138915717602, -0.021640058606863022, -0.004819831345230341, -0.00331215001642704, -0.011885073035955429, -0.006773542147129774, -0.004073622636497021, 0.0021962285973131657, -0.022331997752189636, 0.029034310951828957, -0.004870709031820297, 0.02269831858575344, 0.039237022399902344, 0.019971264526247978, 0.016213085502386093, 0.017719069495797157, -0.027582595124840736, -0.00860175397247076, 0.024109331890940666, -0.026402229443192482, 0.009219071827828884, -0.015222662128508091, 0.027216274291276932, 0.0073331985622644424, -0.015222662128508091, -0.02286112867295742, 0.017895447090268135, 0.02294253371655941, -0.0011099857510998845, 0.014869908802211285, 0.003184955334290862, -0.0019503188086673617, 0.02982122264802456, 0.02674141526222229, -0.03408139571547508, -0.03174779936671257, -0.022101351991295815, 0.001965582137927413, -0.008974858559668064, -0.019374297931790352, 0.00035656915861181915], "fab83493-3635-42a2-9e4c-3f9c9811b13f": [-0.018727369606494904, -0.03555585816502571, 0.014778247103095055, -0.022538891062140465, 0.009576965123414993, 0.013099526055157185, -0.01407648716121912, -0.03404225781559944, 0.014681926928460598, -0.014406726695597172, 0.013244006782770157, 0.014269126579165459, -0.023474572226405144, -0.019525449723005295, -0.013416006229817867, -0.004736882168799639, 0.0028655214700847864, -0.01681472919881344, 0.01216384582221508, -0.03629889711737633, -0.005376722663640976, -0.0015841207932680845, 0.0010913405567407608, -0.008661923930048943, -0.03814273700118065, 0.024506572633981705, 0.01786048896610737, -0.038995858281850815, -0.0030753614846616983, 0.014558087103068829, 0.03415233641862869, -0.019305288791656494, -0.007925763726234436, -0.02734113298356533, -0.0009675004985183477, -0.009831524454057217, 0.005531522911041975, -0.02295169048011303, -0.0005142802256159484, 0.007368483580648899, 0.02884097397327423, 0.0036945617757737637, 0.00721712363883853, 0.0008273203857243061, -0.012191366404294968, 0.017654089257121086, -0.005930562969297171, -0.0005430902820080519, -0.016622088849544525, 0.014571847394108772, -0.010065444745123386, 0.016044167801737785, -0.018025608733296394, -0.014461766928434372, 0.004908882547169924, 0.014847047626972198, -0.03371201828122139, 0.015741446986794472, -0.009281124919652939, -0.012666086666285992, 0.01054704561829567, 0.021575691178441048, -0.021176651120185852, 0.013739367015659809, -0.0260752122849226, 0.0023925211280584335, 0.003285201732069254, 0.01656704768538475, -0.0049880025908350945, -0.008262883871793747, 0.035280656069517136, 0.02167201042175293, -0.010622724890708923, -0.00921920407563448, 0.035500817000865936, -0.008379844017326832, -0.02999681420624256, -0.0038184018339961767, 0.005600322969257832, 0.0037358419504016638, 0.0007073503220453858, -0.021713290363550186, 0.001344180665910244, -0.003859682008624077, 0.005046482663601637, -0.0069694435223937035, -0.020433610305190086, -0.0004966502310708165, 0.003615441732108593, -0.008902724832296371, 0.020695049315690994, -0.013360966928303242, 0.001057800487615168, 0.02756129391491413, 0.0040488820523023605, 0.02630913257598877, 0.008538084104657173, 0.04821506515145302, -0.010567685589194298, -0.02699713408946991, -0.0027451212517917156, 0.014186566695570946, -0.014984647743403912, -0.0015316607896238565, -0.031125135719776154, -0.010058565065264702, 0.025758732110261917, -0.007822563871741295, 0.018342088907957077, -0.010196165181696415, -0.014654407277703285, 0.03896833956241608, 0.005651922896504402, -0.06747907400131226, -0.009673284366726875, 0.015204807743430138, 0.008909604512155056, -0.0274649728089571, -0.012996326200664043, 0.004585522226989269, 0.01262480579316616, 0.009164164774119854, 0.020997770130634308, 0.015837768092751503, 0.014902086928486824, -0.0017062408151105046, -0.0009958804585039616, -0.019883209839463234, -0.013849446550011635, -0.023708492517471313, 0.03789505735039711, -0.009294884279370308, 0.010216805152595043, -0.006549763027578592, -0.022662730887532234, -0.006443123333156109, -0.01666336879134178, 0.008950884453952312, -0.027299853041768074, -0.006591043435037136, 0.007891363464295864, 0.01786048896610737, -0.019621768966317177, -0.02467169240117073, 0.00034271017648279667, 0.04807746410369873, -0.0010775804985314608, 0.0005903902929276228, -0.005366402678191662, -0.013264646753668785, 0.010994245298206806, -0.014613127335906029, 0.013175206258893013, -0.0024200412444770336, 0.011799206025898457, -0.006364003289490938, 0.016635848209261894, 0.0036739218048751354, 0.02526337280869484, -0.0065222433768212795, 0.011489605531096458, 0.015961607918143272, -0.01066400483250618, -0.01644320785999298, 0.003046121448278427, 0.012494086287915707, 0.03555585816502571, -4.875127342529595e-05, -0.017764167860150337, -0.0015652007423341274, 0.026033932343125343, 0.0024957212153822184, -0.021121609956026077, 0.0175164882093668, 0.01622304879128933, 0.014117767103016376, -0.0034314016811549664, 0.017681607976555824, -0.0020382010843604803, -0.024479052051901817, -0.007375363726168871, -0.014681926928460598, -0.0017200008733198047, 0.007014163304120302, -0.016264328733086586, -0.03486785665154457, -0.004840082488954067, 0.010423204861581326, 0.01546624768525362, -0.006178243085741997, -0.010031044483184814, 0.042683541774749756, -0.018562249839305878, 0.0037874418776482344, -0.5860661864280701, -0.019319050014019012, -0.014117767103016376, -0.013078886084258556, 0.023846091702580452, 0.024492811411619186, 0.006728643085807562, 0.02526337280869484, -0.016057927161455154, 0.020805129781365395, -0.015576327219605446, 0.019071368500590324, -0.0032043615356087685, 0.006618563085794449, 0.0088132843375206, -0.0324736163020134, -0.0017836408223956823, -0.0040660821832716465, -0.01600288785994053, 0.015204807743430138, -0.014668167568743229, 0.011434565298259258, -0.017117448151111603, 0.015163527801632881, -0.0005422302638180554, 0.018837450072169304, 0.009253604337573051, -0.008751364424824715, -0.0013226806186139584, 0.024355212226510048, -0.013127046637237072, 0.014957127161324024, 0.029804173856973648, 0.008833924308419228, 0.05099458619952202, 0.0021293610334396362, -0.03811521828174591, 0.03808769956231117, 0.004355042241513729, 0.056966427713632584, -0.029391374439001083, -0.026859533041715622, 0.009404964745044708, 0.010877285152673721, -0.0021500010043382645, 0.016759688034653664, 0.012824326753616333, -0.037840019911527634, 0.00937744416296482, 0.015727687627077103, -0.009404964745044708, -0.0048607224598526955, 0.013808166608214378, -0.006205763202160597, 0.03024449571967125, 0.01565888710319996, 0.03569345921278, -0.035143058747053146, 0.0034847217611968517, -0.00811840407550335, -0.02549729309976101, 0.006243603304028511, -0.0062401629984378815, -0.01736512780189514, -0.024644171819090843, -0.008379844017326832, -0.006154162809252739, -0.005373282823711634, -0.006467203143984079, -0.027258573099970818, 0.016512008383870125, -0.01302384678274393, 0.028208013623952866, -0.01948416978120804, 0.01217072643339634, 0.03071233443915844, 0.021052811294794083, -0.02396993152797222, -0.02652929350733757, 0.02674945257604122, -0.01726880855858326, 0.010251205414533615, 0.003973201848566532, -0.032280974090099335, 0.017888009548187256, -0.011482725851237774, -0.02919873408973217, -0.01678720861673355, 0.013388486579060555, 0.0012194806477054954, -0.00044290022924542427, 0.027396174147725105, 0.015314887277781963, -0.0555904284119606, -0.008723843842744827, 0.023268170654773712, -0.004795362241566181, -0.015369927510619164, 0.007973924279212952, 0.012212006375193596, -0.006876563187688589, 0.0007985103875398636, -0.0012925806222483516, -0.005087762605398893, 0.020351050421595573, -0.013003206811845303, -0.017640328034758568, -0.0027571613900363445, 0.04551810398697853, -0.029749134555459023, -0.001627120771445334, -0.014847047626972198, -0.0015213408041745424, -0.00817344430834055, 0.045930903404951096, -0.036216337233781815, 0.011083685792982578, -0.0005792102892883122, 0.01141392532736063, -0.024891851469874382, 0.005366402678191662, 0.0007525003748014569, 0.029501454904675484, -0.0014860806986689568, 0.013471046462655067, 0.018465928733348846, 0.013739367015659809, -0.010519525036215782, -0.020777611061930656, 0.008950884453952312, -0.007093283347785473, -0.00024424013099633157, 0.0024905612226575613, -0.016622088849544525, 0.02421761117875576, 0.02906113490462303, -0.0038252819795161486, -0.020461130887269974, 0.03406977653503418, 0.014833287335932255, -0.017585288733243942, -0.0101480046287179, 0.001866200938820839, 0.017076168209314346, -0.002803601324558258, -0.01177168544381857, -0.017062408849596977, -0.01002416480332613, -0.011812965385615826, -0.012652326375246048, 0.01981440931558609, -0.008434884250164032, -0.0074716839008033276, 0.02189217135310173, 0.001464580767787993, 0.0021620411425828934, 0.006322722882032394, -0.013883846811950207, -0.00886144395917654, -0.010230565443634987, -0.013354086317121983, 0.02387361228466034, -0.024712972342967987, 0.0034382815938442945, -0.02513953298330307, -0.004884802270680666, -0.007684963755309582, 0.003911281935870647, -0.011324485763907433, -0.041885461658239365, 0.013863206841051579, -0.025084491819143295, 0.025634892284870148, 0.0005985603202134371, 0.0032387615647166967, -0.005060242488980293, -0.029116174206137657, 0.012322085909545422, 0.015920327976346016, -0.01967681013047695, 0.0015179007314145565, -0.001995200989767909, -0.010271845385432243, 0.002229121048003435, 0.015328647568821907, 0.0177366491407156, 0.018094409257173538, 0.008696324191987514, -0.016635848209261894, -0.0018524408806115389, -0.010189284570515156, 0.008483043871819973, 0.0064121633768081665, 0.008503683842718601, 0.0219059307128191, 0.01552128791809082, 0.020337289199233055, 0.01048512477427721, -0.004771282430738211, 0.005228802561759949, 0.032721295952796936, 0.017186248674988747, 0.009810884483158588, -0.04158274084329605, 0.029969295486807823, -0.01645696721971035, 0.005858323071151972, -0.01355360634624958, 0.013457286171615124, 0.008283523842692375, -0.009521924890577793, -0.03456513583660126, -0.034014735370874405, -0.026006413623690605, 0.00910224486142397, 0.02249761112034321, -0.0017397808842360973, -0.006336483173072338, -0.025689933449029922, -0.010822244919836521, 0.0074441637843847275, -0.006625443231314421, 0.016512008383870125, -0.021864650771021843, 0.02098401077091694, -0.008600004017353058, 0.005889283027499914, 0.009934725239872932, 0.01947041042149067, -0.024836812168359756, -0.01900256983935833, -0.012205125764012337, 0.018397128209471703, 0.010670885443687439, 0.02119041047990322, -0.03316161781549454, 0.019649289548397064, -0.020915210247039795, 0.04752706363797188, 0.007850083522498608, 0.015562567859888077, -0.006794003304094076, -0.016869768500328064, -0.005782642867416143, 0.0022824411280453205, 0.010065444745123386, 0.05071938410401344, 0.02504321187734604, -0.01702112890779972, -0.021245449781417847, -0.01013424526900053, -0.026501772925257683, -0.021713290363550186, 0.02504321187734604, 0.030161933973431587, -0.005473042838275433, 0.018452169373631477, 0.018920009955763817, 0.034014735370874405, 0.035170577466487885, 0.013656807132065296, 0.03960129991173744, 0.02385985106229782, 0.007320323493331671, -0.0027365214191377163, -0.026364173740148544, 0.0029738815501332283, -0.01036128494888544, -0.013422886840999126, -0.011909285560250282, -0.02851073443889618, -0.0008428004221059382, 0.023777291178703308, -0.024479052051901817, 0.023557132109999657, 0.007292803376913071, -0.012721125967800617, 0.03660161793231964, 0.0058927228674292564, -0.012129445560276508, -0.00040033020195551217, -0.022662730887532234, 0.002915401477366686, -0.007251523435115814, 0.005510882940143347, 0.01852096989750862, -0.022676490247249603, -0.0015806807205080986, -0.004568322096019983, 0.021589450538158417, 0.006628883071243763, 0.01345040649175644, 0.00724464375525713, 0.014599367044866085, -0.016085447743535042, -0.0015634808223694563, 0.032391056418418884, -0.0008664504275657237, -0.02328193187713623, -0.015576327219605446, 0.0020691610407084227, -0.015383687801659107, -0.01678720861673355, -0.0015944407787173986, 0.06021378934383392, 0.0006781103438697755, 0.005706962663680315, -0.017323847860097885, 0.009886564686894417, -0.015947848558425903, 0.010278725065290928, -0.006687363144010305, -0.0030719214119017124, -0.021369289606809616, -0.02202977053821087, -0.00233232113532722, 0.005435202736407518, 0.005039602518081665, 0.034922897815704346, 0.016429448500275612, -0.004743762314319611, 0.004771282430738211, 0.0045132823288440704, 0.013312806375324726, -0.009122884832322598, 0.006608243100345135, 0.005768883042037487, 0.007162083406001329, -0.04331650212407112, -0.004217442125082016, -0.03162049502134323, -0.002678041346371174, 0.007007283624261618, -0.012672966346144676, 0.008049603551626205, -0.017323847860097885, -0.005338882561773062, -0.008696324191987514, 0.018947528675198555, 0.002844881499186158, -0.017791688442230225, -0.00806336384266615, 0.0008901004330255091, -0.019525449723005295, 0.01384256687015295, -0.016388168558478355, 0.039793938398361206, -0.007946403697133064, 0.01296880654990673, -0.004946722649037838, 0.01655328832566738, 0.033189136534929276, 0.01647072844207287, -0.02072256989777088, -0.004038562066853046, -0.01864480972290039, -0.013078886084258556, 0.028428174555301666, 0.005469602532684803, 0.028235534206032753, -0.0028947615064680576, 0.06384643167257309, -0.029749134555459023, 0.0025043212808668613, -0.010856645181775093, 0.03756481781601906, 0.027024652808904648, -0.025222092866897583, 0.014736967161297798, -0.034950416535139084, -0.005982162896543741, 0.005961522925645113, -0.02604769356548786, -0.014626887626945972, 0.01327152643352747, 0.027286093682050705, -0.04584834352135658, -0.01575520820915699, 0.00798768363893032, 0.030987534672021866, -0.0189062487334013, -0.00026294513372704387, 0.016181768849492073, 0.001974561018869281, -0.018837450072169304, 0.01534240785986185, -0.02585505321621895, -0.006398403085768223, 0.0033557217102497816, -0.00926048494875431, -0.013959527015686035, -0.012425285764038563, -0.02292417176067829, 0.011799206025898457, 0.010292485356330872, -0.028070414438843727, -0.03197825700044632, 0.010526405647397041, 0.03717953711748123, 0.007237763609737158, 0.01611296832561493, -0.019841929897665977, -0.0102030448615551, 0.019511690363287926, -0.025442251935601234, -0.0130926463752985, -0.0335744172334671, -0.024988172575831413, 0.0035948017612099648, -0.014750727452337742, -0.015259847976267338, -0.0025438813026994467, -0.0074441637843847275, 0.019153930246829987, 0.001239260658621788, -0.004874482285231352, 0.025084491819143295, -0.0012151806149631739, -0.010973605327308178, 0.018232008442282677, 0.013065126724541187, 0.012569766491651535, -0.009831524454057217, -0.019153930246829987, 0.01414528675377369, -0.021355530247092247, -0.01384256687015295, -0.026364173740148544, -0.008297284133732319, 0.011675366200506687, 0.018245769664645195, 0.021176651120185852, 0.0017225808696821332, 0.009088484570384026, 0.037124499678611755, 0.0007955004111863673, -8.148504275595769e-05, -0.003990401979535818, 0.017654089257121086, 0.006680483464151621, 0.006308963056653738, -0.006515363231301308, -0.009487524628639221, -0.007168963551521301, 0.010278725065290928, -0.01142080593854189, 0.036326419562101364, 0.020915210247039795, -0.005407682619988918, 0.004344722256064415, -0.03230849653482437, -0.027767693623900414, -0.023818571120500565, 0.024121291935443878, 0.015548807568848133, 0.015727687627077103, 0.018163209781050682, -0.02109409123659134, -0.03151041641831398, -0.02665313333272934, 0.01355360634624958, 0.01669088751077652, -0.021837130188941956, -0.014654407277703285, -0.004337842110544443, 0.0008935404475778341, 0.008558724075555801, -0.005614082794636488, 0.002457881113514304, -0.02837313339114189, 0.005500562489032745, 0.0053182425908744335, 0.012721125967800617, 0.01854848861694336, 0.016773447394371033, 0.007561123929917812, -0.04039938002824783, 0.007279043551534414, -0.0025335613172501326, -0.018053129315376282, -0.009852164424955845, -0.019387848675251007, 0.007007283624261618, 0.021974731236696243, 0.030492175370454788, -0.004506402183324099, -0.011035525240004063, 0.0053629628382623196, 0.0062229628674685955, -0.005930562969297171, -0.007478563580662012, 0.0037117619067430496, -0.013594886288046837, -0.01373248640447855, 0.023323211818933487, 0.006226403173059225, -0.008235364221036434, -0.012714246287941933, -0.0033213216811418533, 0.0021758009679615498, 0.008207843638956547, 0.008035844191908836, -0.005001762416213751, -0.017433928325772285, 0.00017952508642338216, 0.014104006811976433, -0.005521202925592661, 0.004671522416174412, -0.0053629628382623196, -0.010870405472815037, 0.010065444745123386, -0.00443072197958827, 0.0276851337403059, 0.03195073455572128, 0.000584800262004137, -0.02097024954855442, 0.013594886288046837, -0.0017174208769574761, 0.011296965181827545, -0.02119041047990322, -0.004279362037777901, -0.014847047626972198, 0.023020491003990173, 0.0005749102565459907, 0.003928482066839933, 0.0202960092574358, 0.012844966724514961, 0.021231690421700478, -0.02132800966501236, 0.046866584569215775, -0.0030770814046263695, -0.027162253856658936, 0.0012315205531194806, -0.027946574613451958, -0.04089473932981491, -0.037014417350292206, 0.0026144012808799744, -0.006353683304041624, -0.009542564861476421, 0.0189062487334013, -0.0008376404293812811, 0.013120166026055813, -0.0011997006367892027, 0.021272970363497734, 0.007196483667939901, -0.009707684628665447, 0.054984986782073975, 0.009865924715995789, 0.02977665513753891, 0.02445153146982193, 0.012053766287863255, 0.004599282052367926, -0.07386371493339539, -0.009515044279396534, 0.01794304884970188, 0.021025290712714195, 0.04727938398718834, -0.006814643274992704, -0.038390420377254486, 0.01819072850048542, -0.0026814814191311598, -0.0030719214119017124, -0.016291847452521324, 0.019181448966264725, 0.0009202004293911159, -0.012886246666312218, -0.010918565094470978, 0.0006256502820178866, -0.030519695952534676, 0.028428174555301666, -0.009810884483158588, -0.014970887452363968, -0.0021448410116136074, -0.008414244279265404, -0.00868256390094757, -0.005779203027486801, 0.005070562474429607, 0.011888645589351654, -0.00420024199411273, 0.015686407685279846, 0.014736967161297798, -0.019277770072221756, -0.00023822012008167803, -0.007007283624261618, -0.008028963580727577, 0.029694095253944397, 0.0012590406695380807, 0.009714565239846706, 0.010608965530991554, -0.0043688020668923855, 0.003980081994086504, -0.020543690770864487, -0.010175525210797787, 0.04312385991215706, -0.0032456417102366686, -7.912003638921306e-05, -0.0033264816738665104, 0.010340644977986813, 0.031675536185503006, 0.0073340837843716145, 0.005473042838275433, -0.009859045036137104, -0.003949122037738562, -0.027079693973064423, 0.002721041440963745, -0.03131777420639992, -0.0063502429984509945, -0.002242881106212735, -0.008792644366621971, 0.004375682212412357, -0.006728643085807562, 0.008531204424798489, 0.035500817000865936, -0.027864012867212296, -0.031813137233257294, -0.007925763726234436, -0.027506252750754356, 0.0018541609169915318, 0.013436646200716496, -0.0010225404985249043, 0.007155203726142645, 0.05248066410422325, -0.038775697350502014, 0.012301445938646793, 0.003295521717518568, 0.0038356019649654627, -0.004877922590821981, 0.02006208896636963, -0.02504321187734604, -0.004516722168773413, 0.02721729315817356, -0.007416643667966127, 0.0005895302747376263, -0.0324736163020134, 0.015810247510671616, 0.03616129606962204, 0.010223684832453728, 0.01948416978120804, 0.027740173041820526, -0.01391136646270752, 0.008372964337468147, -0.0130376061424613, -0.01656704768538475, -0.020626250654459, -0.034455057233572006, 0.011393285356462002, 0.02189217135310173, -0.006769923493266106, -0.0009236404439434409, 0.00945312436670065, 0.003125241491943598, 0.0015265007968991995, -0.032858897000551224, -0.038170259445905685, 0.0017922408878803253, 0.002449281280860305, -0.014613127335906029, -0.010815365239977837, -0.006429363042116165, -0.005541842896491289, -0.017764167860150337, 0.00926048494875431, 0.015851527452468872, 0.011737286113202572, 0.005944322794675827, 0.030547214671969414, 0.027520013973116875, 0.018727369606494904, -0.03013441525399685, -0.009308644570410252, -0.0015247807605192065, -0.031125135719776154, -0.02315809205174446, -0.009549444541335106, -0.0177366491407156, 0.018837450072169304, -0.010388805530965328, -0.02226369082927704, -0.029584014788269997, 0.00391472177579999, -0.021149130538105965, 0.0015230607241392136, -0.024135051295161247, 0.02816673368215561, 0.009707684628665447, -0.026680653914809227, 0.0034451617393642664, -7.019753684289753e-05, -0.0027330813463777304, 0.002468201331794262, 0.009810884483158588, 0.0024062811862677336, -0.017805449664592743, -0.01043696515262127, -0.012659206055104733, -0.008572484366595745, -0.009838405065238476, -0.026088973507285118, -0.0006742403493262827, -0.007340963464230299, 0.013959527015686035, 0.02259393036365509, 0.023818571120500565, -0.02840065397322178, -0.012143205851316452, -0.03107009455561638, -0.010464484803378582, -0.000233920116443187, 0.015108487568795681, -0.03951874002814293, -0.006584163289517164, 0.03288641571998596, -0.005713842809200287, -0.021947210654616356, -0.002237721113488078, 0.017984328791499138, -0.0020072408951818943, 0.01784672960639, -0.017420168966054916, -0.026611853390932083, 0.018631048500537872, -0.01291376631706953, 0.018562249839305878, -0.020020809024572372, 0.00022489011462312192, 0.020543690770864487, 0.0010698405094444752, -0.013925126753747463, -0.019429130479693413, 0.023956172168254852, -0.030409615486860275, 0.0013992206659168005, 0.020791370421648026, -0.01853472925722599, -0.011537766084074974, 0.003042681608349085, 0.01887873001396656, -0.02805665321648121, -0.004527042154222727, 0.002707281382754445, 0.018039368093013763, -0.01448928751051426, 0.0013803007313981652, 0.0019040409242734313, -0.02176833152770996, -0.0005469602765515447, -0.0018266409169882536, 0.00030594514100812376, -0.010918565094470978, -0.037124499678611755, 0.007891363464295864, -0.03140033408999443, 0.01925024949014187, 0.004310321994125843, -0.012418406084179878, -0.04320641979575157, 0.003980081994086504, 0.012700485996901989, -0.0019057609606534243, 0.0038837618194520473, 0.25472524762153625, -0.020185930654406548, -0.014874567277729511, 0.021465610712766647, 0.010746565647423267, 0.014833287335932255, 0.016525767743587494, 0.006075042765587568, -0.0026144012808799744, 0.0064121633768081665, -0.013285286724567413, -0.02247009053826332, -0.004592402372509241, -0.0009270804584957659, -0.012143205851316452, -0.01384256687015295, -0.01841088943183422, -0.03241857513785362, -0.03511553630232811, 0.023336971178650856, 0.03662913665175438, -0.005204722750931978, 0.024960651993751526, -0.015851527452468872, 0.008538084104657173, 0.000302935135550797, -0.014503046870231628, 0.03572097793221474, 0.029721613973379135, 0.002418321091681719, -0.0024217611644417048, 0.02072256989777088, -0.0176265686750412, -0.0071070436388254166, -0.0023013611789792776, -0.010746565647423267, 0.021933451294898987, 0.019896969199180603, 0.022387530654668808, 0.0032301614992320538, -0.00822160392999649, 0.00868256390094757, -0.003410761710256338, -0.011124965734779835, -0.018603529781103134, 0.021727051585912704, 0.01106304582208395, -0.0061576031148433685, -0.00353288184851408, 0.017089927569031715, -0.008235364221036434, -0.02721729315817356, 0.03932609781622887, 0.038417939096689224, -0.008950884453952312, -0.015741446986794472, 0.00749920355156064, -0.00040613519377075136, 0.016525767743587494, 0.04089473932981491, -0.02840065397322178, 0.03362945839762688, -0.021052811294794083, 0.010801604948937893, -0.01667712815105915, -0.004482322372496128, -0.021988490596413612, 0.004592402372509241, -0.027052173390984535, -0.023708492517471313, -0.006381202954798937, 0.0035569616593420506, -0.015603847801685333, 0.0015050007496029139, -0.0221260916441679, -0.023199371993541718, 0.042683541774749756, 0.004289682023227215, 0.008152804337441921, 0.049783702939748764, 0.015383687801659107, 0.0011369205312803388, 0.016360647976398468, 0.02339201234281063, -0.024300171062350273, -0.025456013157963753, 0.025345932692289352, -0.00822160392999649, -0.010223684832453728, -0.010395685210824013, 0.008806404657661915, -0.024836812168359756, -0.004915762227028608, -0.023405771702528, 0.00799456425011158, 0.014915847219526768, -0.026267852634191513, 0.003608561819419265, -0.010347524657845497, 0.01878240890800953, -0.030216975137591362, 0.045930903404951096, 0.019621768966317177, 0.020915210247039795, -0.00631240289658308, 0.004482322372496128, 0.012225765734910965, -0.000754220352973789, 0.01933280937373638, -0.015934087336063385, 0.0016451808623969555, -0.03786753863096237, 0.006305523216724396, 0.010065444745123386, -0.0034296817611902952, 0.0038149619940668344, -0.01945664919912815, -0.009116004221141338, -0.0013244006549939513, 0.028483213856816292, 0.039436180144548416, -0.014365446753799915, -0.017750408500432968, 0.01875488832592964, 0.0012280805967748165, -0.01586528867483139, -0.018369609490036964, -0.012604165822267532, -0.009721444919705391, -0.03404225781559944, 0.034702736884355545, -0.022057291120290756, 0.01876864954829216, -0.002347801113501191, -0.0016107808332890272, 0.00788448378443718, 0.011682245880365372, -0.009239844977855682, 0.012335846200585365, -7.127253775252029e-05, -0.0009399804403074086, 0.009081604890525341, 0.011193765327334404, 0.017557768151164055, 0.005596882663667202, -0.0004459102055989206, -0.007196483667939901, 0.02120416983962059, 0.00932928454130888, -0.015397447161376476, -0.04042689874768257, -0.009638885036110878, 0.01268672663718462, -0.007148323580622673, 0.012356486171483994, 0.005266642663627863, -0.024410251528024673, -0.03588609769940376, 0.004874482285231352, 0.015163527801632881, -0.01945664919912815, -0.03153793513774872, -0.0033746417611837387, -0.004633682314306498, -0.026267852634191513, -0.0352531373500824, -0.17579784989356995, 0.0029704414773732424, 0.013649926520884037, -0.04843522235751152, 0.020901450887322426, 0.007856964133679867, 0.018465928733348846, -0.027850253507494926, -0.004117682110518217, -0.020309770479798317, 0.027079693973064423, -0.0001489950664108619, -0.014269126579165459, -0.017200008034706116, -0.004527042154222727, -0.003274881513789296, -0.039793938398361206, 0.02619905211031437, 0.04111490026116371, 0.009116004221141338, 0.0705062747001648, -0.02121793106198311, 0.0009769605239853263, -0.008070243522524834, 0.007072643376886845, 0.006116323173046112, -0.012879366055130959, -0.0306848157197237, -0.0049708024598658085, -0.04807746410369873, 0.0028466014191508293, 0.028001613914966583, 0.018823688849806786, -0.00015007007459644228, 0.025098253041505814, -0.011585925705730915, 0.006271122954785824, -0.017117448151111603, -0.002137961098924279, 0.004028242081403732, 0.011138725094497204, 0.029143694788217545, 0.018232008442282677, -0.012053766287863255, -0.008716964162886143, 0.019442889839410782, -0.000939120480325073, -0.013161446899175644, 0.012129445560276508, 0.0013252606149762869, 0.02443777211010456, -0.033216655254364014, -0.030904974788427353, -0.005411122459918261, 0.011118085123598576, -0.014516807161271572, -0.009804004803299904, 0.01759904809296131, -0.019883209839463234, -0.014943367801606655, -0.007719364017248154, -0.03916097804903984, 0.02513953298330307, -0.009893445298075676, -0.02075009047985077, 0.004183041863143444, 0.0026212811935693026, 0.02165825106203556, -0.017241287976503372, 0.0026298812590539455, 0.03162049502134323, -0.023447051644325256, -0.019841929897665977, -0.014159047044813633, 0.017131207510828972, -0.01993824914097786, -0.000818720378447324, 0.01702112890779972, 0.02862081490457058, -0.012948166579008102, 0.0024922811426222324, 0.03764737769961357, 0.004007602110505104, -0.02734113298356533, -0.0013992206659168005, 0.026130253449082375, 0.01958048902451992, -0.0038734418340027332, -0.021864650771021843, -0.021933451294898987, 0.038638100028038025, -0.01528736762702465, -0.01876864954829216, 0.0012685005785897374, 0.017351368442177773, 0.008386723697185516, 0.006192002911120653, 0.001459420775063336, -0.018342088907957077, -0.01969056949019432, -0.0002625151246320456, 0.012535366229712963, -0.010086084716022015, 0.03638145700097084, 0.02782273292541504, 0.022662730887532234, -0.015480007976293564, 0.02862081490457058, 0.022635210305452347, -0.010815365239977837, -0.005228802561759949, 0.016828488558530807, 0.016993608325719833, 0.011496485210955143, 0.0015471407677978277, 0.03420737758278847, -0.009466884657740593, -9.481504821451381e-05, -0.0053354427218437195, -0.01876864954829216, -0.008090884424746037, -0.01597536727786064, -0.006766483187675476, 0.02443777211010456, 0.002597201382741332, -0.02710721269249916, -0.060433950275182724, -0.01425536721944809, 0.012136326171457767, 0.007891363464295864, -0.015920327976346016, 0.009088484570384026, -0.006247043143957853, 0.030437134206295013, -0.02106657065451145, 0.015163527801632881, -0.012411526404321194, -0.03651905804872513, 0.007361603435128927, 0.021988490596413612, -0.008125283755362034, -0.022855371236801147, -0.0008002303657121956, -0.004392882343381643, -0.02003457024693489, 0.015424967743456364, -0.015906568616628647, 0.008386723697185516, 0.021630730479955673, -0.031675536185503006, -0.0005452402401715517, -0.005087762605398893, -0.01678720861673355, 0.010299365036189556, 0.012473446317017078, -0.003973201848566532, 0.009632004424929619, -0.00471968250349164, -0.012356486171483994, -0.0041589620523154736, -0.0024854012299329042, 0.011819845996797085, -0.02585505321621895, -0.02493313141167164, 0.011283205822110176, 0.0013940606731921434, 0.006814643274992704, -0.005407682619988918, 0.022882891818881035, 0.026488013565540314, -0.01598912850022316, -0.014530567452311516, 0.000762820360250771, 0.015493767336010933, 0.006615123245865107, -0.006198883056640625, -0.01395264733582735, 0.009721444919705391, -0.0030702014919370413, -0.00556592270731926, 0.020007049664855003, 0.009047204628586769, 0.017791688442230225, 0.008751364424824715, -0.013464166782796383, -0.00031239516101777554, -0.015080966986715794, 0.006900643464177847, -0.004544242285192013, 0.05275586619973183, 0.017296329140663147, 0.007726243697106838, -0.03244609758257866, -0.02570369280874729, -0.00827664416283369, -0.01655328832566738, -0.010705285705626011, 0.01402144692838192, -0.013140806928277016, 0.04532546177506447, -0.02756129391491413, -0.026254093274474144, -0.01232896652072668, -0.030409615486860275, 0.017695369198918343, 0.015149767510592937, -0.016415687277913094, -0.013099526055157185, 0.0038734418340027332, -0.014544326812028885, 0.005713842809200287, 0.01843840815126896, -0.01843840815126896, 0.00990032497793436, 0.004674962256103754, -0.04945346340537071, -0.007203363347798586, -0.009804004803299904, 0.009294884279370308, 0.005345762707293034, -0.011118085123598576, -0.036436498165130615, -0.0008716104202903807, -0.0009709404548630118, -0.002019281033426523, 0.030657295137643814, -0.0029756014700978994, -0.01772288791835308, -0.07683587819337845, 0.035610899329185486, -0.007375363726168871, -0.01192992553114891, 0.012955046258866787, 0.0018421208951622248, 0.019167689606547356, -0.008538084104657173, 0.00961136445403099, 0.00021263510279823095, -0.037482257932424545, 0.019057609140872955, -0.006769923493266106, -0.004757522139698267, -0.024368971586227417, -0.0020502409897744656, 0.008978404104709625, -0.00956320483237505, 0.024355212226510048, 0.0262953732162714, 0.0014276007423177361, -0.011696006171405315, 0.011530885472893715, 0.01726880855858326, -0.03420737758278847, 0.00417272187769413, -0.00613696314394474, 0.021259211003780365, -0.0070795235224068165, -0.016250567510724068, -0.00187480088789016, -0.0020416409242898226, 0.007072643376886845, -0.019855689257383347, -0.009315524250268936, 0.007457923609763384, 0.0020743210334330797, -0.00904032401740551, 0.023020491003990173, 0.0525907464325428, -0.022786570712924004, -0.02585505321621895, 0.015122247859835625, -0.023584650829434395, 0.015906568616628647, -0.01750272884964943, 0.0035535218194127083, 0.016168007627129555, 0.027533773332834244, 0.026969613507390022, 0.01420032698661089, 0.01739264838397503, -0.012611046433448792, 0.00029949515010230243, 0.008517444133758545, -0.03519809618592262, 0.01681472919881344, -0.007967043668031693, -0.0017131208442151546, -0.015080966986715794, 0.03558337688446045, 0.008655044250190258, 0.017433928325772285, 0.005782642867416143, 0.011152485385537148, -0.0024080011062324047, -0.017998088151216507, -0.02941889502108097, 0.027396174147725105, -0.04601346328854561, -0.014764486812055111, -0.005438642576336861, 0.01759904809296131, 0.01088416576385498, 0.021575691178441048, 0.004320641979575157, 0.0034881618339568377, -0.015493767336010933, -0.01407648716121912, 0.010925445705652237, 0.008359204046428204, 0.016759688034653664, -0.0306848157197237, -0.0005658802692778409, 0.039243537932634354, -0.0029859214555472136, -0.01523232739418745, -0.012225765734910965, -0.005469602532684803, -0.009859045036137104, -0.01337472628802061, -0.005803282838314772, 0.01541120745241642, 0.013078886084258556, 0.028675854206085205, 0.025318412110209465, 0.0023770411498844624, -0.03717953711748123, 0.026818253099918365, -0.005404242780059576, 0.012315206229686737, -0.02108033001422882, -5.0021117203868926e-06, -0.021396810188889503, -0.004320641979575157, -0.0008944004657678306, -0.0038149619940668344, -0.03211585432291031, -0.013870086520910263, 0.013278406113386154, -0.012879366055130959, 0.016181768849492073, -0.005964962765574455, 0.008084003813564777, -0.029336335137486458, 0.0245753712952137, -0.021589450538158417, -0.024410251528024673, -0.020887689664959908, 0.00945312436670065, 0.029639054089784622, 0.018947528675198555, 0.026611853390932083, -0.01013424526900053, 0.03682177886366844, -0.008097764104604721, 0.010464484803378582, -0.031565453857183456, 0.03508801758289337, 0.012824326753616333, 0.009281124919652939, 0.018493449315428734, -0.006147283129394054, -0.03478529676795006, -0.009391204454004765, -0.01043696515262127, -0.01945664919912815, -0.00027713514282368124, 0.006150722969323397, 0.08514691889286041, 0.005576242692768574, -0.01667712815105915, -0.009638885036110878, -0.0055728028528392315, 0.007168963551521301, -0.005201282445341349, 0.013333446346223354, -0.026185292750597, -0.014117767103016376, 0.008827044628560543, -0.01864480972290039, 0.0016649608733132482, -0.017530249431729317, -0.018837450072169304, 0.0018060009460896254, -0.034812815487384796, 0.027423692867159843, 0.0002319851191714406, 0.006928163580596447, 0.034262415021657944, 0.027423692867159843, 0.00518064247444272, 0.0057654427364468575, -0.01934656873345375, -0.021575691178441048, 0.027630094438791275, -0.005737922620028257, -0.011310725472867489, -0.02930881455540657, 0.024272652342915535, -0.002917121397331357, -0.029584014788269997, -0.024148812517523766, -0.0006944503402337432, 0.03473025560379028, -0.013980166986584663, 0.0016993607860058546, 0.039243537932634354, -0.009432484395802021, -0.012349606491625309, 0.0050636823289096355, -0.04161025956273079, -0.02467169240117073, 0.01327152643352747, 0.0035948017612099648, -0.01750272884964943, 0.0027537213172763586, -0.009432484395802021], "1b0215d1-5988-4f5c-89a9-25cdeeb163ab": [-0.01788482815027237, -0.03301600366830826, 0.01753714494407177, -0.015325878746807575, 0.013677859678864479, 0.02093053236603737, -0.004502498544752598, -0.027786847203969955, 0.020833181217312813, -0.009206652641296387, 0.02175106480717659, 0.01705038733780384, -0.015270248986780643, -0.022529875859618187, -0.010159305296838284, 0.0017497161170467734, 0.006967572961002588, -0.01720336824655533, 0.011320567689836025, -0.031180236488580704, -0.005524687003344297, 0.000729700259398669, -0.0053404150530695915, -0.008059298619627953, -0.03348885104060173, 0.016966944560408592, 0.007496051490306854, -0.028259696438908577, -0.010117582976818085, 0.018121251836419106, 0.03707694262266159, -0.012002026662230492, -0.00744042219594121, -0.025297435000538826, -0.012815605849027634, -0.007169228978455067, 0.006911943666636944, -0.025450415909290314, -0.003855807473883033, -0.00022512492432724684, 0.022696763277053833, 0.006585121154785156, 0.009589104913175106, -0.002011347794905305, -0.01083381101489067, 0.02624313347041607, -0.015006010420620441, -0.0017210321966558695, -0.031041162088513374, 0.009269235655665398, -0.01118149422109127, 0.005729820113629103, -0.010333146899938583, -0.019664965569972992, -0.0016280269483104348, 0.02229345217347145, -0.04033125936985016, 0.02093053236603737, -0.021292123943567276, 0.0038384234067052603, 0.008170557208359241, 0.02284974418580532, -0.021792788058519363, 0.011918582953512669, -0.021180864423513412, 0.008031483739614487, 0.00393577478826046, 0.012947725132107735, -0.009443077258765697, -0.011967258527874947, 0.030484870076179504, 0.015770914033055305, 0.0008987612673081458, -0.008705989457666874, 0.028704730793833733, -0.008101020008325577, -0.03624250367283821, 0.0012029841309413314, 0.00869903527200222, -0.0005706351948902011, -0.005754158366471529, -0.019025228917598724, 0.0020808842964470387, 0.007117076776921749, 0.008879831060767174, -0.012148053385317326, -0.02258550561964512, 0.002932708477601409, 0.0007210081676021218, -0.006654657889157534, 0.018900062888860703, -0.01221759058535099, -0.009130163118243217, 0.033099446445703506, -0.0021295601036399603, 0.03251533955335617, 0.009999371133744717, 0.044559087604284286, -0.011918582953512669, -0.03679879754781723, -0.017620587721467018, 0.01995701901614666, -0.015395415015518665, -0.004592895973473787, -0.026270948350429535, -0.01193944364786148, 0.022543784230947495, -0.0048362743109464645, 0.00018557594739831984, -0.01014539785683155, -0.009672548621892929, 0.041332587599754333, -0.002289494266733527, -0.07176182419061661, -0.015325878746807575, 0.005656806752085686, 0.009290097281336784, -0.040970996022224426, -0.011480501852929592, 0.0044920677319169044, 0.014560975134372711, 0.01649409532546997, 0.028412677347660065, 0.011800370179116726, 0.019094765186309814, -0.0020669770892709494, -0.010979837737977505, -0.01298249326646328, -0.020388146862387657, -0.01699475757777691, 0.042222656309604645, -0.005222202744334936, 0.01443580910563469, 0.0013185888528823853, -0.018760988488793373, -0.009790761396288872, -0.017801383510231972, 0.005802833940833807, -0.02175106480717659, -0.00631740503013134, 0.003921867348253727, 0.014129848219454288, -0.009881158359348774, -0.01940072700381279, -0.0027571283280849457, 0.044364385306835175, -0.0016358498251065612, -0.005702005699276924, -0.009436124004423618, -0.005677667912095785, 0.01912258006632328, -0.011591760441660881, 0.006971049588173628, 0.004551174119114876, 0.010284471325576305, -0.011334475129842758, 0.012961632572114468, -0.0013550955336540937, 0.01864973083138466, -0.002447690349072218, 0.01628548465669155, 0.01200897991657257, -0.010548710823059082, -0.008539101108908653, 0.007996715605258942, 0.015604025684297085, 0.033461038023233414, -0.0026823764201253653, -0.009755992330610752, -0.0009717747452668846, 0.024407366290688515, 0.005719389766454697, -0.02837095409631729, 0.018315954133868217, 0.01586826518177986, 0.02201530523598194, -0.00013646567822434008, 0.019247746095061302, -0.000989158870652318, -0.0202907957136631, -0.010965930297970772, -0.012057655490934849, -0.01018712017685175, 0.010228841565549374, -0.015381507575511932, -0.02373981475830078, -0.010110629722476006, 0.01553448848426342, 0.012481829151511192, -0.01228712685406208, -0.0023694615811109543, 0.04188888147473335, -0.011410964652895927, 0.0003883187600877136, -0.5749846696853638, -0.028704730793833733, -0.01308679860085249, -0.013775210827589035, 0.0207219235599041, 0.036075618118047714, 0.010110629722476006, 0.023392129689455032, -0.014964288100600243, 0.021639807149767876, -0.01118844747543335, 0.02693849988281727, -0.009345726110041142, -0.0015880432911217213, 0.011111957021057606, -0.033321965485811234, 0.002499842783436179, -0.01152917742729187, -0.02492193691432476, 0.013865608721971512, -0.033377595245838165, 0.005309123545885086, -0.015687469393014908, 0.016271576285362244, -0.004113093018531799, 0.00938744843006134, 0.01802390068769455, -0.012280173599720001, 0.002817973028868437, 0.018385492265224457, -0.01253050472587347, 0.007579495199024677, 0.035241175442934036, -0.0077881054021418095, 0.04881473258137703, -0.0020026557613164186, -0.04122132807970047, 0.04136040061712265, 0.00410961639136076, 0.04959354177117348, -0.02686896361410618, -0.0200265571475029, -0.001680179382674396, 0.008260954171419144, -6.0138339904369786e-05, 0.01518680527806282, 0.012127192690968513, -0.036548465490341187, 0.0045407433062791824, 0.0009178838226944208, -0.014755678363144398, -0.0034681407269090414, 0.005051837768405676, -0.012620902620255947, 0.029400097206234932, 0.015158990398049355, 0.03170871362090111, -0.029594799503684044, 0.009144069626927376, -0.009484799578785896, -0.022752393037080765, 0.012836466543376446, -0.005889754742383957, -0.010694737546145916, -0.01948416978120804, -0.007447375915944576, -0.011883813887834549, -0.011271892115473747, -0.0038870989810675383, -0.0339617021381855, 0.019414633512496948, -0.011195401661098003, 0.016897406429052353, -0.02340603806078434, 0.010541756637394428, 0.03173653036355972, 0.021500732749700546, -0.02410140447318554, -0.0346570685505867, 0.019553707912564278, -0.019595429301261902, 0.01546495221555233, 0.003269961103796959, -0.032682228833436966, 0.01476958580315113, -0.01718946173787117, -0.02340603806078434, -0.01691131480038166, 0.007975853979587555, -6.263731484068558e-05, 0.0020096092484891415, 0.033321965485811234, 0.019275560975074768, -0.05646376311779022, -0.011556992307305336, 0.013643091544508934, -0.007489097770303488, -0.020972255617380142, -0.00221648090519011, 0.000633652787655592, -0.011320567689836025, 0.0005993190570734441, -0.0011551777133718133, -0.008852016180753708, 0.03429547697305679, -0.01321891788393259, -0.013643091544508934, 0.0035411540884524584, 0.04589419066905975, -0.03334977850317955, -0.006039258558303118, -0.0008396551129408181, -0.0007449114345945418, -0.01495038066059351, 0.04439220204949379, -0.03768886625766754, 0.011668250896036625, -0.0064703854732215405, 0.015576210804283619, -0.027258368209004402, 0.01443580910563469, 0.0014776538591831923, 0.03921867161989212, -0.0010743413586169481, 0.008907645009458065, 0.023392129689455032, 0.019859667867422104, -0.02001264877617359, -0.014741770923137665, 0.010381822474300861, -0.01739807054400444, 0.009011950343847275, 0.003744548885151744, -0.014560975134372711, 0.019762316718697548, 0.03549150750041008, -0.0008779002819210291, -0.023586833849549294, 0.024685513228178024, 0.009422216564416885, -0.00897718220949173, -0.0044433921575546265, 0.007155321538448334, 0.017898734658956528, -0.00596972182393074, -0.0058793239295482635, -0.011563945561647415, -0.009950695559382439, -0.0063834646716713905, -0.0058306483551859856, 0.027244461700320244, -0.006442571058869362, -0.0026910684537142515, 0.01529806386679411, 0.0043564713560044765, 0.0004287369374651462, 0.004352994728833437, -0.022126562893390656, -0.008650359697639942, -0.007516912184655666, -0.011696064844727516, 0.026326578110456467, -0.0269941296428442, -0.002286017406731844, -0.02472723461687565, -0.0019365957705304027, -0.01025665644556284, 0.01870536059141159, -0.009749039076268673, -0.0478968471288681, 0.003734118305146694, -0.026215318590402603, 0.027453070506453514, 0.0012073301477357745, -0.0010891178390011191, -0.003730641445145011, -0.023113984614610672, 0.018733175471425056, 0.014477531425654888, -0.024768956005573273, 0.00495448661968112, -0.007273533847182989, 0.003096119500696659, 0.00810797419399023, 0.020666293799877167, 0.010395729914307594, 0.022961003705859184, -0.001084771822206676, -0.012662624940276146, 0.0005645506898872554, -0.02305835485458374, 0.011918582953512669, 0.0150199169293046, 0.007127507124096155, 0.03051268309354782, 0.006971049588173628, 0.017217274755239487, 0.01663316786289215, -0.006258299108594656, 0.00307178171351552, 0.019025228917598724, 0.016480186954140663, 0.002739744260907173, -0.04205576702952385, 0.027313997969031334, -0.014560975134372711, 0.009269235655665398, -0.016521908342838287, 0.014477531425654888, 0.012141100130975246, -0.012078517116606236, -0.033099446445703506, -0.033321965485811234, -0.033794812858104706, 0.011306660249829292, 0.01987357623875141, 0.013803025707602501, -0.0045407433062791824, -0.023711999878287315, -0.008156649768352509, 0.011230169795453548, 0.005260447971522808, 0.02878817543387413, -0.020888810977339745, 0.009575197473168373, -0.006386941764503717, 0.005482965148985386, 0.009672548621892929, 0.005524687003344297, -0.03173653036355972, -0.017843104898929596, -0.013010308146476746, 0.01488084439188242, 0.011473547667264938, 0.022112656384706497, -0.0313471220433712, 0.011758647859096527, -0.021514641121029854, 0.05040016770362854, 0.006894559133797884, 0.012002026662230492, -0.00024207447131630033, -0.008379166945815086, -0.003322113770991564, 0.008087112568318844, 0.018524564802646637, 0.04792466387152672, 0.020207351073622704, -0.010917254723608494, -0.009227514266967773, -0.010548710823059082, -0.02140338160097599, -0.022891467437148094, 0.025881541892886162, 0.0360478013753891, -0.008845061995089054, 0.02022125944495201, 0.024629883468151093, 0.028287511318922043, 0.03323851898312569, 0.006046212278306484, 0.027244461700320244, 0.018135160207748413, 0.008420889265835285, 0.00460680341348052, -0.016062967479228973, 0.0038766684010624886, -0.016327206045389175, -0.008212278597056866, -0.009352680295705795, -0.024198755621910095, 0.0052674016915261745, 0.0223768949508667, -0.01713383197784424, 0.02582591399550438, 0.0059662447310984135, -0.018552379682660103, 0.03120805136859417, 0.014463623985648155, -0.010437452234327793, -0.008240093477070332, -0.035241175442934036, 0.00880334060639143, -0.013017261400818825, 0.008970228023827076, 0.01621594838798046, -0.015729190781712532, 0.00692237401381135, -0.004085278604179621, 0.025311341509222984, 0.006133133079856634, 0.008483472280204296, 0.0044677299447357655, 0.008914599195122719, -0.013295408338308334, -0.005719389766454697, 0.03334977850317955, -0.0031517487950623035, -0.028537843376398087, -0.01107718888670206, 0.0005176134873181581, -0.00623396085575223, -0.017439793795347214, -0.0015628363471478224, 0.06219358369708061, -0.003240408143028617, 0.0026476080529391766, -0.02023516595363617, 0.001953979954123497, -0.018482843413949013, 0.000724919606000185, -0.011612621136009693, -0.0030509207863360643, -0.02485240064561367, -0.010562618263065815, 0.0038905758410692215, 0.008302676491439342, 0.011341428384184837, 0.0353524349629879, 0.016396742314100266, -0.0025554720778018236, 0.010729505680501461, 0.01007586158812046, 0.012523551471531391, -0.008949367329478264, 0.00787154957652092, 0.00759340263903141, 0.0008005407289601862, -0.038022641092538834, -0.004193060100078583, -0.021639807149767876, -0.004964916966855526, 0.007683800533413887, -0.01443580910563469, 0.0004215659573674202, -0.012495736591517925, -0.00333080580458045, -0.010722552426159382, 0.01677224040031433, 0.009609965607523918, -0.022835837677121162, -0.012377524748444557, 0.0005719389882870018, -0.02250206097960472, 0.013858655467629433, -0.017690123990178108, 0.041666362434625626, -0.010340100154280663, 0.011480501852929592, -0.00903976522386074, 0.017245089635252953, 0.03568620979785919, 0.022112656384706497, -0.013636138290166855, 0.0026702075265347958, -0.017898734658956528, -0.010875532403588295, 0.028565658256411552, 0.00032269355142489076, 0.02189013920724392, -7.143804396037012e-05, 0.05757635086774826, -0.02817625179886818, 0.006432140711694956, -0.00828181579709053, 0.03707694262266159, 0.02755042165517807, -0.02401795983314514, 0.019164301455020905, -0.028482213616371155, -0.019567614421248436, 0.004415577743202448, -0.022043120115995407, -0.010799042880535126, 0.014588790014386177, 0.03301600366830826, -0.04583856090903282, -0.007026678882539272, 0.00942917075008154, 0.03507428988814354, -0.00478064501658082, -0.0008587776683270931, 0.01574309915304184, 0.003308206330984831, -0.01273911539465189, 0.013552693650126457, -0.03571402654051781, -0.006352173164486885, -7.795710553182289e-05, -0.012627856805920601, -0.01273911539465189, -0.007061447482556105, -0.02091662585735321, 0.008615591563284397, 0.012627856805920601, -0.03162527084350586, -0.02521399036049843, 0.014588790014386177, 0.025436507537961006, 0.01511726900935173, 0.014936473220586777, -0.008935459889471531, -0.009616918861865997, 0.03271004185080528, -0.02147291973233223, -0.009130163118243217, -0.03212593495845795, -0.03485177084803581, -0.003202162915840745, -0.007461282890290022, -0.0039149136282503605, -0.0017992609646171331, 0.0016714873490855098, 0.02079145982861519, 0.002668469212949276, -0.0063139284029603004, 0.013198057189583778, 0.005695051979273558, -0.007203997578471899, 0.013239778578281403, 0.01222454383969307, 0.01663316786289215, -0.006706810090690851, -0.018399398773908615, 0.013170242309570312, -0.026145782321691513, -0.019511984661221504, -0.02816234529018402, -0.0013707412872463465, 0.016174225136637688, 0.019317282363772392, 0.00862949900329113, -0.0008618198917247355, 0.001790568814612925, 0.03824516013264656, -0.0036784890107810497, 0.003024844452738762, 0.005469057708978653, 0.020207351073622704, 0.009700363501906395, -0.0018827049061655998, -0.005587270017713308, -0.011257984675467014, -0.005726343486458063, 0.01453316118568182, -0.0026841149665415287, 0.04508756846189499, 0.027453070506453514, 0.0021834508515894413, 0.015520581044256687, -0.028259696438908577, -0.03101334720849991, -0.014713956043124199, 0.022613320499658585, 0.01795436441898346, 0.016188133507966995, 0.011960304342210293, -0.01807953044772148, -0.027494793757796288, -0.0379670150578022, 0.01333017647266388, 0.013761304318904877, -0.0199431125074625, -0.02271067164838314, 0.0037271645851433277, 0.009888112545013428, 0.010117582976818085, 0.0016106427647173405, -0.003744548885151744, -0.025436507537961006, -0.0002275152364745736, 0.010965930297970772, 0.020318610593676567, 0.016619259491562843, 0.007523865904659033, 0.009651687927544117, -0.03824516013264656, 0.011556992307305336, -0.005896708462387323, -0.005319553893059492, -0.00846261065453291, -0.007489097770303488, 0.007642078213393688, 0.027578236535191536, 0.026743797585368156, -0.005100513808429241, -0.009102348238229752, 0.0017045172862708569, 0.009067580103874207, -0.006376511417329311, -0.006605982314795256, -0.0005293478025123477, -0.017036480829119682, -0.013893423601984978, 0.03543587774038315, 0.0073430705815553665, -0.011696064844727516, -0.018552379682660103, -0.007968900725245476, 0.008121881633996964, 0.00640084920451045, 0.008643406443297863, 0.0002890117175411433, -0.022599412128329277, -0.0029274930711835623, 0.013003353960812092, -0.013691767118871212, -0.0007149237208068371, -0.008073205128312111, -0.015784820541739464, 0.011480501852929592, 0.004791075363755226, 0.0279537346214056, 0.028537843376398087, 0.002207788871601224, -0.01760668121278286, 0.019359003752470016, 0.003932297695428133, 0.012718253768980503, -0.017370255663990974, -0.009436124004423618, -0.012106331996619701, 0.019317282363772392, -0.0009804668370634317, 0.004099185578525066, 0.01211328525096178, 0.016049059107899666, 0.0186358243227005, -0.010465266183018684, 0.04486504942178726, -0.006435617338865995, -0.022279543802142143, 0.0013046815292909741, -0.04158291965723038, -0.04631141200661659, -0.03479614108800888, -0.00547253480181098, -0.005865416955202818, -0.004026172216981649, 0.016521908342838287, -0.0057472046464681625, 0.012342756614089012, -0.009582150727510452, 0.025645118206739426, -0.0024668127298355103, -0.0003231281298212707, 0.047952476888895035, 0.006352173164486885, 0.018886154517531395, 0.02554776705801487, -0.00019003063789568841, 0.007968900725245476, -0.086726114153862, 0.010701690800487995, 0.016202040016651154, 0.013768257573246956, 0.05813264474272728, -0.008149695582687855, -0.02547823078930378, 0.02126430906355381, -0.005670714192092419, -0.007961946539580822, -0.024602068588137627, 0.028676915913820267, 0.007781151682138443, -0.013573555275797844, -0.006957142148166895, 0.011633481830358505, -0.02906632237136364, 0.025394786149263382, -0.007913270965218544, -0.008469564840197563, -0.001674964209087193, -0.005441243294626474, -0.010639107786118984, -0.002675422700121999, 0.013267593458294868, 0.011417918838560581, 0.009853343479335308, 0.01235666312277317, 0.017801383510231972, -0.02431001514196396, -0.0017271166434511542, -0.0006853706436231732, -0.007110123056918383, 0.03543587774038315, 0.007113599684089422, 0.011195401661098003, 0.010465266183018684, -0.00230340170674026, 0.003489001654088497, -0.027425255626440048, -0.0036471975035965443, 0.044920679181814194, 0.0010743413586169481, -0.0027623435016721487, -0.006654657889157534, 0.007005817722529173, 0.0269941296428442, 0.004026172216981649, 0.008365259505808353, -0.011369243264198303, -0.0039496817626059055, -0.019345097243785858, 0.005277832038700581, -0.030679572373628616, -0.005945384036749601, -0.012711300514638424, -0.0012360140681266785, 0.0006032304954715073, -0.016535816714167595, -0.0026197934057563543, 0.041110068559646606, -0.02222391404211521, -0.03543587774038315, -0.010750366374850273, -0.010625200346112251, 0.005684621632099152, 0.008010623045265675, -0.0049092876724898815, -0.0048745195381343365, 0.04447564482688904, -0.039051786065101624, 0.015367601066827774, 0.0012342756381258368, 0.0038384234067052603, -0.0016836562426760793, 0.012321894988417625, -0.02450471743941307, -0.010207980871200562, 0.023364316672086716, -0.006929327733814716, 0.00020839266653638333, -0.04333524405956268, 0.014713956043124199, 0.026298763230443, 0.010958977043628693, 0.026799427345395088, 0.030707387253642082, -0.014741770923137665, 0.015840450301766396, -0.016869591549038887, -0.024949751794338226, -0.029261024668812752, -0.031180236488580704, 0.013865608721971512, 0.016202040016651154, -0.0063139284029603004, -0.005580316297709942, 0.004613757133483887, -0.0007701184367761016, 0.0009778592502698302, -0.035046473145484924, -0.03788356855511665, -1.5550676835118793e-05, 0.003264745930209756, -0.011849045753479004, -0.018608009442687035, -0.0016436727019026875, -0.002611101372167468, -0.01698085106909275, 0.006386941764503717, 0.008733803406357765, 0.016897406429052353, 0.005024023354053497, 0.026702076196670532, 0.02796764299273491, 0.005420382134616375, -0.026632538065314293, -0.007447375915944576, 0.008733803406357765, -0.026131873950362206, -0.022196101024746895, -0.017147738486528397, -0.030540497973561287, 0.02451862394809723, -0.016466280445456505, -0.0283848624676466, -0.028357047587633133, -0.0001556969218654558, -0.017648402601480484, -0.001468092668801546, -0.0216815285384655, 0.02953917160630226, 0.0010473958682268858, -0.030067648738622665, -0.003259530756622553, 0.010875532403588295, -0.00495448661968112, 0.0008205324993468821, 0.0007270926143974066, 0.004168722312897444, -0.0141924312338233, -0.011264937929809093, -0.008914599195122719, -0.016132503747940063, -0.008949367329478264, -0.019859667867422104, 0.0068528372794389725, -0.00019644104759208858, 0.019831852987408638, 0.01974841021001339, 0.019637150689959526, -0.02574246935546398, -0.002866648603230715, -0.024685513228178024, -0.008712942712008953, 0.004137430805712938, 0.019651059061288834, -0.033739183098077774, -0.007120553404092789, 0.036214690655469894, -0.0044538225047290325, -0.014282829128205776, -0.001940072630532086, 0.02533915638923645, -0.003953158855438232, 0.013858655467629433, -0.010333146899938583, -0.015604025684297085, 0.010986790992319584, -0.013969914056360722, 0.016813963651657104, -0.02312789112329483, 0.0008431319147348404, 0.0186358243227005, 0.0072943950071930885, -0.016813963651657104, -0.015826541930437088, 0.029010692611336708, -0.030623942613601685, -0.003542892634868622, 0.010465266183018684, -0.017078202217817307, -0.009130163118243217, -0.011334475129842758, 0.02079145982861519, -0.026201412081718445, -0.006529491860419512, 0.0019435494905337691, 0.005555978510528803, -0.012606995180249214, -0.007061447482556105, 0.0019279037369415164, -0.026910685002803802, -0.0031743482686579227, 0.005138758569955826, -0.004412100650370121, -0.008135788142681122, -0.03162527084350586, 0.009957648813724518, -0.037049129605293274, 0.014463623985648155, -0.012968585826456547, -0.01739807054400444, -0.05062268301844597, -0.005044884048402309, 0.005309123545885086, 0.00631740503013134, 0.004074847791343927, 0.265018105506897, -0.019414633512496948, -0.020415961742401123, 0.029149765148758888, 0.005816740915179253, 0.004554650746285915, 0.02478286437690258, 0.009477846324443817, -0.006870221346616745, 0.009484799578785896, 0.002338170073926449, -0.012662624940276146, -0.013990774750709534, -0.0005154404789209366, -0.0010256656678393483, -0.020193444564938545, -0.02643783576786518, -0.04444782808423042, -0.03382262960076332, 0.02291928045451641, 0.03410077467560768, 0.006115748547017574, 0.022682856768369675, -0.01657753810286522, 0.004102662671357393, -0.0005819348734803498, -0.011487455107271671, 0.035797469317913055, 0.023781536146998405, 0.006936281453818083, -0.0034768327604979277, 0.015631839632987976, -0.024073589593172073, -0.00972817838191986, -0.008935459889471531, -0.0011795155005529523, 0.018037809059023857, 0.018621915951371193, 0.024880215525627136, 0.010326193645596504, -0.008678174577653408, 0.004220874980092049, 0.002779727801680565, -0.006369557697325945, -0.012071562930941582, 0.00510746706277132, 0.00657469080761075, -0.008142742328345776, -0.006654657889157534, 0.01781529001891613, -0.005938430316746235, -0.023600740358233452, 0.035880912095308304, 0.033600110560655594, -0.01607687398791313, -0.0202907957136631, 0.006727671250700951, -0.0014646158087998629, 0.02105569839477539, 0.03568620979785919, -0.01629939116537571, 0.03410077467560768, -0.014866936951875687, 0.023086169734597206, -0.02422657050192356, 0.00014200688747223467, -0.027647774666547775, -0.0003111765254288912, -0.02016562968492508, -0.016188133507966995, -0.005691575352102518, 0.0071970438584685326, -0.012168914079666138, -0.005684621632099152, -0.016591446474194527, -0.026549095287919044, 0.047535255551338196, 0.000970036315266043, 0.0026441311929374933, 0.048925988376140594, 0.008476518094539642, 0.0025085348170250654, 0.008379166945815086, 0.011216262355446815, -0.02244643121957779, -0.02506100945174694, 0.030735202133655548, -0.01884443312883377, -0.01221759058535099, -0.013038123026490211, 0.0038697149138897657, -0.03195904567837715, -0.002376415068283677, -0.02617359720170498, -0.0016923482762649655, 0.024977566674351692, -0.023517295718193054, 0.008998042903840542, -0.010715598240494728, 0.02326696366071701, -0.033099446445703506, 0.043752461671829224, 0.008539101108908653, 0.016313299536705017, -0.01125103048980236, -0.0017888303846120834, 0.016591446474194527, 0.008316583931446075, 0.02312789112329483, -0.01215500757098198, -0.003292560577392578, -0.04016437008976936, 0.002625008812174201, 0.004738923162221909, 0.00358113762922585, 0.016174225136637688, -0.021153049543499947, -0.019901391118764877, 0.003904483048245311, 0.025506045669317245, 0.04261206090450287, -0.011167586781084538, -0.015131176449358463, 0.010194073431193829, 0.006150517147034407, -0.023294778540730476, -0.016813963651657104, -0.016591446474194527, -0.007384792901575565, -0.01315633486956358, 0.033933889120817184, -0.017300719395279884, 0.025074917823076248, 0.002322524320334196, -0.008330491371452808, 0.015590118244290352, 0.02223782241344452, -0.01483912207186222, 0.00863645225763321, -0.0006162686040624976, -0.003311683190986514, 0.010284471325576305, 0.024671604856848717, 0.014588790014386177, 0.010444405488669872, 0.006682472303509712, -0.011125864461064339, 0.014658327214419842, 0.00033442783751524985, -0.019553707912564278, -0.04241735860705376, -0.01273911539465189, -0.0016784409526735544, -0.010027186013758183, 0.008149695582687855, 0.0048119365237653255, -0.02666035294532776, -0.026396114379167557, 0.00495448661968112, 0.011063281446695328, -0.020972255617380142, -0.036631908267736435, 0.0019383342005312443, 0.002021778142079711, -0.02471332624554634, -0.03624250367283821, -0.17790257930755615, 0.0044433921575546265, 0.014866936951875687, -0.04149947687983513, 0.01525634154677391, 0.009596058167517185, 0.02408749796450138, -0.018955692648887634, -0.003292560577392578, -0.020624572411179543, 0.02878817543387413, 0.0016288961051031947, -0.009895065799355507, -0.019651059061288834, -0.005062268581241369, 0.004770214669406414, -0.04500412195920944, 0.02375372126698494, 0.04350212961435318, 0.010764273814857006, 0.0719287171959877, -0.02953917160630226, -0.006098364479839802, 0.005875847302377224, -0.0009126685908995569, 0.007913270965218544, -0.01001327857375145, -0.02009609341621399, -0.007412607315927744, -0.039246488362550735, -0.007099692244082689, 0.02713320218026638, 0.028565658256411552, -0.0021156526636332273, 0.03215374797582626, -0.0073569780215620995, 0.006181808654218912, -0.010020231828093529, 0.005945384036749601, -0.013455342501401901, 0.015604025684297085, 0.02948354184627533, 0.018385492265224457, -0.013803025707602501, -0.012759976089000702, 0.014727863483130932, 0.005806310568004847, -0.014491438865661621, 0.015909986570477486, 0.0009413524530827999, 0.019984833896160126, -0.035185545682907104, -0.028287511318922043, 0.002798850415274501, 0.0196788739413023, -0.012586134485900402, -0.00846261065453291, 0.017829198390245438, -0.019233837723731995, -0.010722552426159382, -0.008949367329478264, -0.04536571353673935, 0.027564330026507378, -0.017940456047654152, -0.026062337681651115, -0.004227828700095415, 0.0022686333395540714, 0.009310957975685596, -0.014630512334406376, 0.0030074603855609894, 0.022974910214543343, -0.017564959824085236, -0.017870919778943062, -0.010653015226125717, 0.011779509484767914, -0.020109999924898148, -0.0029553077183663845, 0.008413935080170631, 0.02264113537967205, -0.00928314309567213, 0.008991089649498463, 0.036492835730314255, 0.006734624970704317, -0.027383534237742424, 0.008142742328345776, 0.023906702175736427, 0.023698091506958008, -0.005500349216163158, -0.02713320218026638, -0.026257039979100227, 0.04645048454403877, -0.020471591502428055, -0.02485240064561367, -0.0022877559531480074, 0.018413305282592773, 0.014644419774413109, -0.001272520748898387, -0.0013907330576330423, -0.012015934102237225, -0.02782856859266758, -0.004286934621632099, 0.016800055280327797, -0.005319553893059492, 0.02953917160630226, 0.035602767020463943, 0.0220292117446661, -0.023239150643348694, 0.029566984623670578, 0.03390607237815857, -0.013663952238857746, -0.006355650257319212, 0.021319938823580742, 0.019734501838684082, 0.00910930149257183, 0.0030126755591481924, 0.033099446445703506, -0.004499021451920271, -0.0058584632351994514, -0.0033829582389444113, -0.016939129680395126, -0.012572227045893669, -0.015979522839188576, 0.0016932175494730473, 0.02354511059820652, 0.010374869219958782, -0.019206024706363678, -0.06280550360679626, -0.008142742328345776, 0.01339275948703289, 0.010965930297970772, -0.013629184104502201, 0.0067937313579022884, -0.006898036226630211, 0.040748480707407, -0.028704730793833733, 0.015576210804283619, -0.0042973654344677925, -0.03799482807517052, -0.0009900281438603997, 0.023572925478219986, -0.012029841542243958, -0.02906632237136364, 0.0007809835369698703, -0.005896708462387323, -0.023225242272019386, 0.016674889251589775, -0.012926864437758923, 0.014755678363144398, 0.01643846556544304, -0.033461038023233414, 0.0026232702657580376, -0.0009761207620613277, -0.01656363159418106, 0.01877489686012268, 0.014268921688199043, -0.0023503389675170183, 0.010194073431193829, 0.004613757133483887, -0.010819903574883938, -0.008448703214526176, -0.0023816304747015238, 0.007704661227762699, -0.013281500898301601, -0.022418618202209473, 0.017926549538969994, -0.000614530174061656, 0.006272206082940102, -0.0017697078874334693, 0.021389475092291832, 0.01650800183415413, -0.008845061995089054, -0.017175553366541862, -0.0023555541411042213, 0.01649409532546997, -0.0035985219292342663, -0.010805996134877205, -0.029038507491350174, 0.012481829151511192, -0.003297775750979781, -0.002463335869833827, 0.01008281484246254, -0.005263924598693848, 0.013371898792684078, 0.0033881734125316143, -0.00880334060639143, 0.0017636234406381845, -0.02878817543387413, 0.008573869243264198, -0.00018883547454606742, 0.0487591028213501, 0.009686456061899662, 0.00102740409784019, -0.028982877731323242, -0.023016633465886116, -0.011237123049795628, -0.014164616353809834, -0.0035550615284591913, 0.009846390224993229, -0.008295723237097263, 0.04572730511426926, -0.03065175749361515, -0.028120623901486397, -0.007176182698458433, -0.022390803322196007, 0.013573555275797844, 0.005256970878690481, -0.009116255678236485, -0.017704032361507416, -0.00022132213052827865, -0.026841148734092712, -0.000345727545209229, 0.02284974418580532, -0.013837793841958046, 0.007030155975371599, 0.007537773344665766, -0.04992731660604477, -0.0029639999847859144, -0.0073569780215620995, 0.00115170085337013, 0.0006132263806648552, -0.011709972284734249, -0.03529680520296097, 0.007005817722529173, 0.001722770626656711, -0.0011065020225942135, 0.030345795676112175, 0.00032269355142489076, -0.01734244078397751, -0.07971682399511337, 0.038412049412727356, -0.0013437957968562841, -0.008163603022694588, 0.0032351927366107702, -0.010639107786118984, 0.021000070497393608, -0.024282200261950493, 0.010889439843595028, -0.007384792901575565, -0.04113788530230522, 0.013114613480865955, -0.013163289055228233, -0.0010699952254071832, -0.023864978924393654, 0.006386941764503717, 0.0015863049775362015, -0.011577853001654148, 0.02208484150469303, 0.02845439873635769, 0.008747710846364498, -1.017924296320416e-05, 0.011675204150378704, 0.011021560057997704, -0.035519324243068695, 0.006831976119428873, -0.014227199368178844, 0.030290165916085243, -0.0034976936876773834, -0.021917954087257385, 0.0048849498853087425, 0.0007692492217756808, -0.0019000890897586942, -0.017870919778943062, -0.010270563885569572, -0.010131490416824818, 0.01031923945993185, -0.017078202217817307, 0.023572925478219986, 0.05179090052843094, -0.018872248008847237, -0.030151093378663063, 0.01828813925385475, -0.015006010420620441, 0.0141507089138031, -0.015979522839188576, 0.0009726439602673054, 0.01663316786289215, 0.035602767020463943, 0.027661681175231934, 0.021250400692224503, 0.012245404534041882, -0.016104688867926598, -0.0035846144892275333, 0.003796701319515705, -0.041610732674598694, 0.02008218504488468, 0.0006162686040624976, -0.00136291841045022, -0.0223768949508667, 0.0287325456738472, 0.013100706040859222, 0.017982179298996925, 0.011508316732943058, 0.010931162163615227, 0.006772870197892189, -0.011751694604754448, -0.02293318882584572, 0.03460143879055977, -0.04695114865899086, -0.01635502092540264, -0.00945698469877243, 0.015103361569344997, 0.0013003353960812092, 0.019664965569972992, 0.004158291965723038, -0.0013507495168596506, -0.003466402180492878, -0.004252166487276554, 0.013900376856327057, 0.0031986860558390617, 0.01246096845716238, -0.0220292117446661, -0.00030509207863360643, 0.027786847203969955, -0.0018635822925716639, -0.01408117264509201, -0.018524564802646637, -0.00856691598892212, -0.008810293860733509, -0.01616031862795353, 0.005489918868988752, 0.01429673656821251, 0.010305332019925117, 0.025506045669317245, 0.02279411442577839, -0.00043264837586320937, -0.034963030368089676, 0.005392567720264196, -0.012509644031524658, 0.014282829128205776, -0.024615975096821785, -0.0010691260686144233, -0.0209861621260643, -0.010221888311207294, -0.005100513808429241, -0.01221759058535099, -0.029400097206234932, -0.01643846556544304, 0.02831532619893551, -0.0054621039889752865, 0.014129848219454288, -0.007829827256500721, 0.008135788142681122, -0.03949682042002678, 0.019164301455020905, -0.024685513228178024, -0.02319742739200592, -0.016341114416718483, 0.020680200308561325, 0.023920608684420586, 0.015548395924270153, 0.030262352898716927, -0.003897529561072588, 0.029789503663778305, -0.0053890906274318695, 0.010159305296838284, -0.02678551897406578, 0.0287325456738472, 0.010917254723608494, 0.014241106808185577, 0.008587776683270931, -0.0062270076014101505, -0.03354448080062866, -0.014894751831889153, -0.012620902620255947, -0.01193944364786148, 0.006080980412662029, 0.010924207977950573, 0.0837777629494667, 0.0048606120981276035, -0.00949870701879263, -0.009992416948080063, -0.0019609336741268635, 0.02236298844218254, -0.0021608516108244658, 0.013378852047026157, -0.021445104852318764, -0.014964288100600243, 0.0070092948153615, -0.021639807149767876, -0.005309123545885086, -0.01635502092540264, -0.01685568504035473, -0.0011821230873465538, -0.020749738439917564, 0.029733873903751373, -0.005604654550552368, 0.006074026692658663, 0.03974715247750282, 0.02920539490878582, 0.00657469080761075, 0.010764273814857006, -0.02346166782081127, -0.015659654513001442, 0.024004053324460983, -0.00632088165730238, -0.011821230873465538, -0.025088824331760406, 0.026771612465381622, -0.0011151940561830997, -0.029038507491350174, -0.020694108679890633, 0.0028440491296350956, 0.035741839557886124, -0.01980403997004032, 0.012349709868431091, 0.0346570685505867, -0.01807953044772148, -0.012766929343342781, 0.003668058430776, -0.0485922135412693, -0.029233209788799286, 0.00983943697065115, 0.0020530696492642164, -0.012148053385317326, -0.004839750938117504, -0.00607750378549099], "3948ac0d-cd21-41a2-b82d-23463eda3c94": [-0.01676435023546219, 0.00825517252087593, 0.01522694993764162, -0.017071830108761787, 0.010360742919147015, -0.010808594524860382, 0.012646790593862534, 0.013295172713696957, -0.015414111316204071, -0.02033379301428795, -0.0015474270330742002, 0.038047321140766144, 0.0011162864975631237, -0.0007544960244558752, -0.01092222798615694, -0.011223023757338524, 0.012259098701179028, 0.010481061413884163, 0.014210928231477737, -0.022980796173214912, 0.0032302122563123703, 0.0030547480564564466, -0.004000583663582802, -0.050908010452985764, 0.002890981500968337, 0.008589389733970165, 0.018355226144194603, -0.02573474869132042, -0.0009500132873654366, 0.014732307754456997, 0.03831469640135765, -0.003907002508640289, 0.012272466905415058, -0.01557453628629446, 0.02074822410941124, -0.01933114044368267, 0.0018348541343584657, -0.0013611008180305362, 0.0114436075091362, -0.0007937665795907378, 0.018529018387198448, 0.01792742684483528, 0.002042069099843502, -0.008703024126589298, -0.0026570293121039867, 0.02320806495845318, -0.01677771843969822, 0.001991936471313238, 0.004702440463006496, 0.01751299761235714, 0.020895278081297874, 0.00669103441759944, -0.04625570401549339, -0.006503872573375702, -0.0328335277736187, 0.02327490784227848, -0.03400997444987297, 0.009197666309773922, 0.004588806536048651, -0.02326153963804245, 0.009999788366258144, 0.01451840903609991, -0.018716180697083473, -2.660031839241128e-07, 0.0031717242673039436, -0.009391511790454388, -0.0002481565170455724, 0.01684456318616867, -0.007292625959962606, -0.0025601061061024666, 0.012640106491744518, 0.030293475836515427, 0.0027907162439078093, -0.015587904490530491, 0.03786015883088112, -0.004979840945452452, -0.010380796156823635, 0.003327135229483247, -0.03205814212560654, 0.007158939260989428, -0.020293686538934708, -0.023889867588877678, -0.0006964257336221635, -0.008916922844946384, 0.008549284189939499, -0.018114589154720306, -0.020307056605815887, 0.015387373976409435, -0.008662917651236057, -0.008094748482108116, 0.02399681694805622, 0.02967851422727108, 0.03138970956206322, 0.006477135233581066, -0.02609570324420929, 0.0036496552638709545, -0.020855173468589783, 0.021737506613135338, 0.0035493900068104267, -0.01018026564270258, -0.02866249345242977, 0.021176021546125412, -0.017245624214410782, -0.005167002789676189, -0.04286005347967148, 0.0036931035574525595, 0.018716180697083473, -0.004515278618782759, -0.004288010764867067, -0.0033538728021085262, -0.012740371748805046, 0.034838832914829254, -0.006015915423631668, -0.060640424489974976, -0.0282346960157156, 0.006219787988811731, 0.017459522932767868, -0.01970546506345272, 0.0016761007718741894, -0.002600212348625064, 0.011771140620112419, 0.010186949744820595, 0.030560849234461784, -0.013702917844057083, 0.012787162326276302, -0.0031115650199353695, -0.008342069573700428, -0.023689337074756622, 0.0036296022590249777, -0.03189771994948387, 0.018435437232255936, 0.015079894103109837, 0.0005539655103348196, 0.02320806495845318, -0.009772520512342453, 0.010989071801304817, 0.02110917866230011, -0.009244455955922604, -0.023756179958581924, 5.261314527160721e-06, 0.004251246806234121, 0.0017947480082511902, -0.01647023856639862, -0.004712467081844807, 0.006019257474690676, 0.02892986871302128, 0.019491564482450485, 0.033742599189281464, 0.01198504026979208, 0.011483713984489441, -0.014331246726214886, -0.03729867562651634, -0.011490398086607456, -0.002067135414108634, 0.017392680048942566, 0.014451565220952034, 0.010741750709712505, 0.01830175146460533, -0.02610907144844532, -0.0012925862101837993, 0.016216233372688293, 0.007225782610476017, -0.010494429618120193, -0.010661538690328598, -0.018769655376672745, 0.02006641961634159, 0.015026419423520565, 0.0011672546388581395, -0.006483819801360369, -0.008636180311441422, -0.02541389875113964, 0.006654270458966494, 0.002779018599539995, 0.010340689681470394, 0.008977082557976246, 0.0048962864093482494, 0.027004774659872055, -0.010307268239557743, -0.017700159922242165, -0.009418249130249023, 0.016242971643805504, -0.011042546480894089, 0.008195013739168644, 0.017740266397595406, 0.012319257482886314, -0.025868436321616173, 0.02892986871302128, -0.010547904297709465, -0.013188223354518414, -0.005026631522923708, 0.012753739953041077, 0.030935173854231834, 0.007479787804186344, 0.01640339568257332, -0.6066181659698486, -0.018769655376672745, 0.009765835478901863, -0.016617294400930405, 0.006306684575974941, 0.012646790593862534, -0.00019071287533733994, 0.0068180374801158905, 0.0039203716441988945, 0.0564693920314312, -0.0017529708566144109, 0.009017188102006912, -0.004217824898660183, -0.010334005579352379, 0.001615941640920937, -0.037753209471702576, 0.010053263045847416, -0.02248615399003029, 0.007553315721452236, -0.01165750715881586, -0.02397008053958416, 0.007987798191606998, -0.0186627060174942, -0.0035460477229207754, 0.0018682759255170822, 0.021349813789129257, -0.01756647229194641, 0.006497188471257687, 0.034170400351285934, 0.030641062185168266, -0.028796181082725525, 0.013321910053491592, 0.028101008385419846, -0.007640212308615446, 0.03138970956206322, 0.0057786209508776665, -0.014157453551888466, 0.023836392909288406, 0.02217867411673069, 0.040186312049627304, -0.024157240986824036, -0.02364923059940338, 0.018154695630073547, 0.012279151007533073, 0.015480955131351948, -0.002606896683573723, 0.019197454676032066, 0.017432784661650658, 0.0011463661212474108, 0.003435756079852581, -0.004374907352030277, 0.0021122547332197428, -0.01304116751998663, -0.009378143586218357, 0.020307056605815887, 0.011309920810163021, 0.021216128021478653, -0.020935384556651115, 0.015200212597846985, -0.010280530899763107, 0.003462493419647217, -0.012620053254067898, -0.04104191064834595, -0.012319257482886314, -0.02034716308116913, 0.012312573380768299, -0.006493846420198679, -0.0014321220805868506, -0.012854005210101604, -0.0364430770277977, 0.009692307561635971, -0.01522694993764162, 0.012660159729421139, -0.020507587119936943, 0.008823342621326447, 0.0185958631336689, 0.017325835302472115, -0.01967872679233551, -0.019478196278214455, 0.018876604735851288, -0.02501283772289753, -0.01058132667094469, -0.012118726968765259, -0.0210824403911829, 0.007653580978512764, -0.010454324074089527, -0.016644032672047615, 0.01818143203854561, 0.005965782795101404, 0.00750652514398098, -0.008335384540259838, 0.02151023969054222, -0.011363395489752293, -0.04799363389611244, -0.015333899296820164, 0.034865569323301315, -0.010848700068891048, 0.006998514756560326, -0.00014998011465650052, -0.016737613826990128, -0.015374005772173405, 0.01213878020644188, 0.018729548901319504, -0.001652705599553883, 0.017258992418646812, -0.001516512013040483, -0.011744403280317783, 0.02390323579311371, 0.036255914717912674, -0.03360891342163086, -0.001973554491996765, -0.009906207211315632, -0.021216128021478653, 0.003820106154307723, 0.022044986486434937, -0.03515968099236488, 0.01183130033314228, 0.0021206100936979055, 0.023020902648568153, -0.0058488063514232635, 0.018742918968200684, 0.010781857185065746, 0.021363183856010437, -0.01234599482268095, -0.001863262616097927, -0.0011672546388581395, -0.00858270563185215, -0.01034737378358841, -0.013094642199575901, -0.0030981963500380516, -0.01165082212537527, 0.004929708316922188, 0.01856912486255169, -0.016657400876283646, -0.0023311672266572714, -0.012359363958239555, 0.023020902648568153, -0.020641272887587547, 0.008469072170555592, -0.011383448727428913, -0.001963527873158455, -0.008696340024471283, 0.033876288682222366, -0.01822153851389885, -0.031951192766427994, -0.006066048052161932, -0.010775172151625156, 0.01021368708461523, -0.0062398407608270645, 0.009698992595076561, -0.0005272281123325229, -0.0015307161957025528, -0.016296446323394775, 0.035587482154369354, -0.004254588857293129, -0.0009742440306581557, 0.0021506897173821926, -0.016162758693099022, 0.002135650021955371, -0.027125094085931778, -0.01429114118218422, 0.008883501403033733, -0.02358238771557808, 0.00014820457727182657, -0.011309920810163021, -0.0014070557663217187, 0.014144085347652435, 0.016216233372688293, -0.0049330503679811954, -0.03390302509069443, 0.0003864390018861741, -0.022004881873726845, 0.019170716404914856, 6.060956366127357e-06, 0.03229878097772598, -0.00048712201532907784, -0.013642759062349796, 0.004735862370580435, 0.004702440463006496, -0.019157348200678825, -0.017700159922242165, -0.010133475065231323, 0.015200212597846985, -0.000699767901096493, 0.0364430770277977, 0.012259098701179028, 0.03949114307761192, -0.010701645165681839, -0.030266737565398216, -0.0076736342161893845, 0.001033567707054317, 0.04355522617697716, -0.008689654991030693, 0.013622705824673176, 0.017352573573589325, 0.005400955211371183, 0.015641380101442337, 0.00030539126601070166, -0.012165517546236515, 0.027044881135225296, 0.018435437232255936, 0.009705676697194576, -0.008301963098347187, -0.024865783751010895, 0.0009065649937838316, -0.02576148509979248, 0.01759321056306362, -0.018836498260498047, -0.0016443501226603985, 0.012232361361384392, -0.004862864967435598, -0.02151023969054222, -0.014050504192709923, -0.029919151216745377, 0.00326864724047482, 0.027111724019050598, -0.014317878521978855, 0.004201114177703857, -0.013007745146751404, 0.03400997444987297, 0.022740159183740616, 0.0077939522452652454, 0.004856180399656296, -0.015454217791557312, 0.007486472371965647, 0.013796498998999596, -0.013154800981283188, 0.01251978799700737, -0.017392680048942566, -0.03777994588017464, -0.019237559288740158, 0.004181060940027237, 0.01233262661844492, 0.01395692303776741, 0.011350026354193687, -0.008983766660094261, 0.01901029236614704, -0.008134854026138783, 0.03676392510533333, 0.01199840847402811, -0.003803395200520754, -0.0016761007718741894, -0.01088880654424429, -0.015173475258052349, 0.02290058322250843, -0.013836605474352837, 0.03566769137978554, 0.024504827335476875, -0.029758727177977562, 0.003970504272729158, -0.04112212359905243, 0.004572095349431038, -0.006490503903478384, 0.007426313124597073, -0.003387294476851821, -0.023502174764871597, 0.005531299859285355, 0.02255299687385559, 0.02751278504729271, 0.009799257852137089, 0.03291374072432518, 0.01752636581659317, -0.015307161957025528, -0.01109602116048336, 0.0018365252763032913, -0.04221835732460022, 0.022659948095679283, -0.04050716385245323, 0.004147639498114586, 0.0025484084617346525, -0.03037368692457676, -0.006985146086663008, 0.017339205369353294, -0.021924668923020363, 0.01357591524720192, 0.024531565606594086, 0.02397008053958416, 0.03005283884704113, 0.03646981343626976, 0.028101008385419846, -0.011410186067223549, -0.013408806174993515, 0.01926429755985737, 0.018783023580908775, -0.0004925530520267785, 0.0012683554086834192, -0.007319363299757242, -0.01447830256074667, -0.01342217531055212, 0.015507692471146584, -0.013027798384428024, 0.011316604912281036, 0.008054642006754875, -0.005568063817918301, -0.010293899103999138, -0.0016251326305791736, 0.03302069008350372, -0.010828647762537003, -0.02933092974126339, -0.02723204344511032, 0.02935766614973545, 0.003039708361029625, -0.019210822880268097, -0.0026486737187951803, 0.053875863552093506, 0.0032185146119445562, 0.0011789522832259536, -0.0004328116774559021, -0.0008309482946060598, -0.021282970905303955, 0.009351406246423721, -0.02109580859541893, 0.012626737356185913, 0.010608064010739326, 0.013542493805289268, -0.015039787627756596, 0.020213475450873375, 0.01926429755985737, -0.0005439390079118311, 0.0014713925775140524, -0.011543872766196728, -0.0005932360654696822, -0.02609570324420929, 0.014090610668063164, 0.004792679101228714, 0.008148223161697388, -0.0029879044741392136, 0.009952997788786888, -0.032325517386198044, -0.02141665853559971, -0.0442771352827549, 0.010835331864655018, 0.0055814324878156185, -0.0008351260330528021, -0.008248488418757915, -0.0037800001446157694, 0.0011797877959907055, -0.004321432206779718, 0.03513294458389282, 0.016924774274230003, 0.009946312755346298, -0.01110270619392395, 0.01823490671813488, -0.012513103894889355, 0.021724138408899307, 0.003382281167432666, 0.01540074311196804, 0.009879469871520996, -0.013368700630962849, 0.00591565016657114, 0.0003883189638145268, 0.029170503839850426, 0.0047726258635520935, -0.03184424340724945, 0.014718939550220966, -0.015908753499388695, 0.017085200175642967, 0.03606875240802765, -0.006554005201905966, 0.033796075731515884, 0.0006792970816604793, 0.054250188171863556, -0.0041509815491735935, 0.012793846428394318, -0.0008351260330528021, 0.012419522739946842, -0.007867480628192425, -0.011684244498610497, 0.011055915616452694, -0.0006880703149363399, 0.0050065782852470875, 0.003973846323788166, 0.008589389733970165, -0.029518090188503265, 0.012747055850923061, 0.005611511878669262, -0.053849127143621445, -0.00017347978428006172, 0.014157453551888466, 0.015668116509914398, -0.020200107246637344, -0.006517241708934307, 0.02930419147014618, -0.023007534444332123, -0.011804562993347645, -0.017994271591305733, 0.014772414229810238, -0.0013184880372136831, 0.013890080153942108, -0.029544828459620476, -0.0121588334441185, 0.0077805835753679276, -0.03906334191560745, -0.02538716234266758, 0.004889602307230234, -0.037432361394166946, -0.038448382169008255, -0.010447639040648937, -0.002977878088131547, 0.016242971643805504, 0.027338992804288864, 0.002117268042638898, -0.014197560027241707, 0.024170611053705215, -0.017232254147529602, 0.0009558621095493436, -0.01967872679233551, -0.029892414808273315, 0.009438302367925644, -0.01684456318616867, -0.010454324074089527, -0.020119894295930862, 0.0026971353217959404, 0.0010694960365071893, 0.011089337058365345, -0.005571405868977308, -0.0008092241478152573, 0.01684456318616867, 0.0019367905333638191, 0.009692307561635971, 0.007961060851812363, 0.023034270852804184, 0.014023766852915287, -0.01197835523635149, 0.010788541287183762, -0.030614323914051056, -0.018422069028019905, -0.013181538321077824, -0.004682387225329876, -0.008616127073764801, 0.022726790979504585, 0.017085200175642967, 0.013341963291168213, -0.0022743502631783485, 0.03392976149916649, -0.016002334654331207, 0.03542705625295639, 0.000563574256375432, 0.009765835478901863, 0.011456976644694805, 0.0006454575923271477, 0.011724350042641163, -0.002048753434792161, -0.027432573959231377, 0.019077135249972343, 0.015079894103109837, 0.02542726881802082, -0.007098780013620853, -0.024852413684129715, -0.0016276392852887511, -0.01413071621209383, -0.03786015883088112, -0.015882017090916634, 0.012573262676596642, 0.010273846797645092, 0.04566748067736626, -0.02356901951134205, -0.035560742020606995, -0.02078832872211933, 0.009010503999888897, -0.008422281593084335, 0.02212519943714142, -0.008936976082623005, -0.030560849234461784, 0.008335384540259838, 0.000365132640581578, 0.002514986786991358, -0.01092891301959753, 0.0264967642724514, -0.033074166625738144, -0.007259204518049955, 0.0033221221528947353, -0.013335279189050198, 0.014785782434046268, 0.011684244498610497, 0.009043925441801548, -0.0282346960157156, -0.020841803401708603, -0.004361538682132959, -0.01684456318616867, 0.001963527873158455, -0.012245729565620422, 0.018783023580908775, 0.024397877976298332, 0.037352148443460464, 0.002481565112248063, -0.005120212212204933, 0.0056917243637144566, 0.013809867203235626, 0.003046392695978284, 0.0012332625919952989, 0.0023445358965545893, -0.011764456517994404, -0.0006157957832328975, -0.01052785199135542, -1.1266785804764368e-05, 0.005253899376839399, 0.009070663712918758, 0.010106737725436687, 0.01827501319348812, 0.0061930506490170956, -0.00789421796798706, -0.016309814527630806, -0.05962440371513367, 0.02073485404253006, 0.02721867337822914, -0.00017462864343542606, 0.010280530899763107, -0.02003968134522438, -0.002952811773866415, 0.016590557992458344, 0.0057418569922447205, 0.01824827678501606, 0.002885968191549182, 0.0168579313904047, -0.014184190891683102, 0.00840891245752573, 0.022700052708387375, 0.008288593962788582, -0.050587162375450134, -0.0015532758552581072, -0.04614875465631485, 0.0185958631336689, 0.029437879100441933, 0.0018014323431998491, 0.019210822880268097, 0.016750982031226158, 0.009010503999888897, -0.00678795762360096, -0.006376869976520538, -0.03323458880186081, -0.003472520038485527, -0.00913750659674406, -0.030320212244987488, -0.027125094085931778, -0.017419416457414627, -0.024210717529058456, -0.004582121968269348, 0.02112254686653614, 0.02788710966706276, -0.002961167134344578, -0.003703129943460226, -0.03871575742959976, -0.004762599710375071, 0.016349921002984047, -0.028715968132019043, 0.039892204105854034, -0.009017188102006912, 0.024157240986824036, 0.04117559641599655, 0.0009700663504190743, 0.0009859416168183088, -0.039464402943849564, -0.010694960132241249, 0.0003327552985865623, 0.04331459105014801, 0.05157644674181938, -0.02284710854291916, -0.02938440442085266, 0.014277772046625614, -0.00031667109578847885, 0.01307458896189928, -0.032004669308662415, 0.022619841620326042, 0.030641062185168266, -0.004050716292113066, -0.02041400596499443, 0.0002886803704313934, -0.024758832529187202, 0.014625358395278454, -0.015868647024035454, -0.028448594734072685, -0.0009182626381516457, -0.0070118834264576435, -0.007493156474083662, 0.00931129977107048, 0.015120000578463078, 0.03406344726681709, 0.004231193568557501, 0.0011689257808029652, 0.007533262949436903, -0.00878992024809122, -0.0225128922611475, 0.026309601962566376, -0.0017479575471952558, 0.043073952198028564, -0.017700159922242165, 0.0007411273545585573, 0.04104191064834595, -0.002494933782145381, -0.005999204237014055, 0.014665464870631695, -0.018809761852025986, 0.04446429759263992, -0.005036658141762018, -0.007446366362273693, -0.01342217531055212, -0.010113421827554703, 0.029571564868092537, -0.0037499205209314823, 0.007880848832428455, -0.01376976165920496, -0.012780477292835712, -0.006958408746868372, 0.031042123213410378, 0.005223819520324469, -0.0019284350564703345, 0.0015958886360749602, 0.0010753448586910963, -0.008783236145973206, -0.016256339848041534, -0.007626843638718128, 0.03184424340724945, -0.03291374072432518, -0.02651013247668743, -0.009264509193599224, -0.03376933932304382, 0.0058120423927903175, -0.0012107029324397445, -0.004973156377673149, 0.009732414036989212, 0.02965177781879902, -0.01860923133790493, 0.00927787832915783, 0.00491633964702487, -0.0026820956263691187, -0.016523713245987892, -0.0041509815491735935, -0.027285518124699593, -0.018408700823783875, 0.01360933668911457, -0.011450291611254215, -0.0032185146119445562, -0.04767278581857681, 0.006300000008195639, 0.025226738303899765, 0.002352891257032752, 0.043127428740262985, 0.01557453628629446, 0.009511830285191536, -0.0033154378179460764, 0.004254588857293129, -0.01899692416191101, 0.01578843593597412, 0.013796498998999596, -0.011477028951048851, 0.0016543767414987087, -0.027325624600052834, 0.03684413805603981, 0.00308315665461123, -0.02184445597231388, -0.013341963291168213, -0.041416235268116, -0.021978143602609634, -0.004989867564290762, 0.00590562354773283, -0.023448700085282326, 0.0015131698455661535, -0.024157240986824036, -0.000755331595428288, -0.03326132521033287, -0.010795225389301777, 0.01034737378358841, -0.010293899103999138, 0.0042245094664394855, 0.006587427109479904, 0.003226869972422719, -0.012807214632630348, -0.008007851429283619, -0.03339501470327377, 0.013462281785905361, -0.028822917491197586, -0.004354854114353657, 0.005942387506365776, -0.01751299761235714, 0.042726367712020874, 0.009839363396167755, -0.029170503839850426, -0.029223978519439697, -0.0055814324878156185, -0.019892625510692596, -0.0016577189089730382, 0.00967893935739994, 0.016710875555872917, 0.012526472099125385, 0.023889867588877678, -0.0051903980784118176, 0.016577187925577164, -0.005945729557424784, -0.005541326478123665, -0.020547693595290184, 0.009451671503484249, -0.029491353780031204, -0.01965199038386345, -0.008589389733970165, 0.007907586172223091, -0.01888997294008732, 0.000482944305986166, 0.01749962940812111, -0.02145676501095295, 0.004398302640765905, 0.02641655132174492, -0.022593103349208832, -0.0451594702899456, -0.006945040076971054, -0.01688466966152191, -0.016523713245987892, -0.014611989259719849, 0.009946312755346298, -0.03179077059030533, -0.008669602684676647, 0.0012483024038374424, -0.023796286433935165, -0.020173368975520134, 0.020093156024813652, 0.019865889102220535, 0.020587798207998276, 0.012700265273451805, -0.04697761312127113, -0.020975491032004356, -0.002210848731920123, 0.016523713245987892, 0.0010227055754512548, 0.00822175107896328, 0.003997241612523794, 0.04007936269044876, 0.0004029409901704639, 0.016617294400930405, -0.01036742702126503, -0.006386896595358849, -0.01482588890939951, -0.01580180414021015, 0.02181771956384182, 0.005156976170837879, -0.0014881035313010216, -0.016537083312869072, 0.015895385295152664, -0.023823024705052376, -0.0027355703059583902, 0.013188223354518414, -0.011376763693988323, -0.01720551773905754, -0.0018398674437776208, 5.156871702638455e-05, -0.042779840528964996, 0.005023289006203413, -0.006423660553991795, 0.0031249336898326874, -0.0032001326326280832, -0.030159788206219673, 0.026911193504929543, -0.026322972029447556, 0.014144085347652435, 4.616379374056123e-05, 0.013849973678588867, -0.004067427013069391, -0.019090503454208374, -0.009030557237565517, -0.012700265273451805, -0.009866100735962391, 0.24192000925540924, -0.024544933810830116, -6.418020348064601e-05, 0.009952997788786888, 0.005290663335472345, 0.025186631828546524, -0.0038301327731460333, -0.0048962864093482494, 0.009150875732302666, 0.012981007806956768, -0.003373925806954503, 0.012071936391294003, -0.027726685628294945, -0.010681591928005219, 0.014224297367036343, -0.01179119385778904, -0.021603820845484734, -0.033074166625738144, -0.01856912486255169, 0.0002934847434516996, 0.004518620669841766, 0.014184190891683102, 0.01553442981094122, -0.009892838075757027, 0.01019363384693861, 0.013729655183851719, -0.01606917753815651, 0.009371459484100342, 0.010033209808170795, 0.018087850883603096, -0.0261224415153265, 0.019237559288740158, 0.007125517353415489, 0.010494429618120193, -0.025627799332141876, -0.00842896569520235, 0.049250293523073196, 0.00987278576940298, 0.016644032672047615, 0.0009358090464957058, 0.00660413783043623, 0.002421405864879489, -0.010915543884038925, 0.010327321477234364, -0.02213856764137745, 0.01863596774637699, -0.01109602116048336, -0.012031830847263336, -0.007272573187947273, 0.01755310408771038, -0.014665464870631695, -0.0044684880413115025, 0.022740159183740616, 0.03224530443549156, 0.009999788366258144, 0.003261962905526161, -9.008206689031795e-05, -0.003833474824205041, 0.022392572835087776, 0.019892625510692596, -0.013756392523646355, 0.029170503839850426, -0.024317666888237, 0.034116923809051514, 0.011858037672936916, -0.02185782603919506, -0.0036830769386142492, 0.002000291831791401, -0.010534536093473434, -0.012118726968765259, -0.010086684487760067, -0.021002229303121567, -0.020601168274879456, -0.00481941644102335, -0.027486048638820648, -0.014103978872299194, 0.04791342094540596, 0.005167002789676189, -0.0030681167263537645, 0.02713846229016781, -0.0028692572377622128, 0.023475438356399536, -0.016015702858567238, 0.008703024126589298, 0.0025801591109484434, -0.02938440442085266, 0.017045093700289726, -0.0025734747759997845, -0.007112148683518171, -0.007987798191606998, 0.01688466966152191, -0.027058249339461327, -0.011029178276658058, -0.003435756079852581, 0.0025901857297867537, 0.006423660553991795, 0.025534218177199364, 0.02326153963804245, -0.009886153973639011, -0.012840637005865574, -0.024611778557300568, 0.049490928649902344, 0.03721846267580986, 0.04048042371869087, -0.0027539522852748632, 0.0037164988461881876, 0.019959470257163048, 0.01602907106280327, 0.012666843831539154, -0.009551936760544777, -0.006878196261823177, -0.04804711043834686, 0.0007870822446420789, -0.0015892043011263013, -0.01818143203854561, 0.0013945226091891527, -0.022004881873726845, -0.029437879100441933, -0.010781857185065746, -0.013849973678588867, -0.013502387329936028, -0.00537421740591526, -0.032753314822912216, -0.009551936760544777, -0.017767002806067467, -0.027994059026241302, 0.016603926196694374, -0.004635597113519907, -0.007740477565675974, -0.022766897454857826, 0.03967830166220665, -0.022085092961788177, 0.030614323914051056, 0.009197666309773922, 0.01320827566087246, 0.0025116445031017065, -0.005220477469265461, -0.030266737565398216, -0.006340106017887592, 0.001262506702914834, -0.007399575784802437, 0.01681782491505146, 0.004869549069553614, 0.005668329074978828, 0.0009683952666819096, 0.008094748482108116, 0.008161591365933418, 0.021724138408899307, 0.012279151007533073, 0.020200107246637344, -0.016724243760108948, 0.0024431301280856133, 0.008509177714586258, -0.01182461529970169, 0.010153528302907944, -0.007346101105213165, -0.014745676890015602, -0.04050716385245323, 0.007760530803352594, -0.016550451517105103, -0.04050716385245323, -0.013014430180191994, 0.013181538321077824, -0.005718461703509092, -0.015855278819799423, -0.006236498709768057, -0.16908732056617737, 0.002792387269437313, 0.04358196258544922, -0.019879257306456566, 0.014571883715689182, 0.010400849394500256, 0.01792742684483528, -0.010240424424409866, -0.01213878020644188, -0.011817931197583675, 0.013890080153942108, -0.016015702858567238, 0.018863236531615257, -0.012038514949381351, -0.021202759817242622, -0.013295172713696957, -0.014665464870631695, 0.014665464870631695, 0.041015174239873886, -0.004134270828217268, 0.050908010452985764, -0.03229878097772598, -0.00573183037340641, 0.032004669308662415, -0.0037632891908288, 0.019237559288740158, -0.00299626006744802, 0.028769442811608315, -0.0063133686780929565, -0.037806686013936996, -0.008261856622993946, -0.01645687036216259, 0.034170400351285934, -0.004709124565124512, -0.013636074960231781, 0.012486366555094719, 0.010474377311766148, 0.00027823608252219856, -0.025173263624310493, 0.0102003188803792, 0.011951617896556854, 0.03176403418183327, 0.006420318502932787, 0.001666074269451201, -0.018809761852025986, -0.0006797148380428553, -0.002570132724940777, 3.316064248792827e-05, 0.0016819495940580964, -0.002797400578856468, 0.025266844779253006, -0.01578843593597412, 0.013983660377562046, -0.013549177907407284, 0.025494111701846123, 0.00010480852506589144, -0.029838940128684044, 0.004137612879276276, -0.006229814607650042, -0.00878992024809122, -0.01540074311196804, -0.028368381783366203, 0.020307056605815887, 0.005695066414773464, -0.013014430180191994, -0.013522440567612648, -0.04620222747325897, 0.03676392510533333, -0.02683098241686821, -0.004792679101228714, 0.00581872696056962, -0.02327490784227848, -0.017352573573589325, -0.014611989259719849, 0.010407533496618271, 0.02576148509979248, -0.004144296981394291, -0.0012591645354405046, 0.022472785785794258, -0.02685771882534027, 0.0020955437794327736, 0.025681274011731148, 0.0008723076898604631, 0.016162758693099022, 0.0014112334465608, -0.01021368708461523, 0.007580053061246872, 0.01161740068346262, -0.028528807684779167, -0.023034270852804184, 0.015988966450095177, -0.031336233019828796, -0.009605411440134048, -0.01713867485523224, 0.0050065782852470875, -0.006062705535441637, -0.0006692705792374909, -0.004712467081844807, -0.010166896507143974, -0.002954482799395919, -0.004765941761434078, 0.006965092848986387, -0.027312254533171654, 0.012894111685454845, 0.025935279205441475, 0.002563448389992118, -0.02033379301428795, 0.01752636581659317, 0.04687066376209259, -0.023823024705052376, 0.04120233654975891, 0.0046155438758432865, 0.022298991680145264, 0.023074377328157425, -0.010440954938530922, 0.01198504026979208, -0.016296446323394775, -0.014946207404136658, 0.024197347462177277, -0.009057294577360153, 0.016951512545347214, -0.0023696022108197212, 0.011771140620112419, 0.007339416537433863, -0.012800530530512333, -0.028715968132019043, -0.049170080572366714, -0.016590557992458344, 0.018769655376672745, 0.034143660217523575, -0.010801910422742367, 0.04299373924732208, -0.018796393647789955, 0.04267289116978645, -0.020828435197472572, 0.048154059797525406, -0.008208381943404675, -0.007372838445007801, 0.007954376749694347, 0.02292732149362564, -0.008335384540259838, -0.0022643236443400383, 0.0018181432969868183, -0.024157240986824036, -0.0010360742453485727, 0.03441103547811508, 0.010688276030123234, 0.0010828647064045072, -0.0058488063514232635, 0.0009140848997049034, 0.006366843823343515, 0.013014430180191994, 0.00011238063598284498, 0.01553442981094122, 0.0058153849095106125, 0.006898249499499798, 0.031657081097364426, -0.02866249345242977, 0.005267268046736717, -0.016042441129684448, 0.01649697683751583, -0.013021114282310009, -0.018903343006968498, -0.020266950130462646, 0.024103766307234764, -0.008783236145973206, 0.004515278618782759, 0.019785676151514053, 0.007459735032171011, 0.005197082180529833, -0.021737506613135338, -0.009752467274665833, -0.016590557992458344, 0.02858228236436844, -0.020173368975520134, -0.017673421651124954, -0.034143660217523575, -0.0013753051171079278, -0.0094850929453969, -0.004338143393397331, 0.021643925458192825, 0.022432679310441017, 0.021323077380657196, -0.001423766603693366, -0.015681486576795578, 0.004231193568557501, -0.0192776657640934, 0.004899628926068544, -0.03510620817542076, 0.011864721775054932, 0.01483925711363554, -0.004451777320355177, -0.03585485368967056, -0.023742811754345894, 0.00019248839817009866, -0.015480955131351948, -0.0013677851529791951, 0.029571564868092537, 0.006931671407073736, 0.03045389987528324, -0.028528807684779167, -0.004879575688391924, -0.011597347445786, -0.03002610057592392, 0.029170503839850426, -0.012907479889690876, -0.003876923117786646, -0.02068137936294079, -0.0004520291986409575, -0.007493156474083662, 0.024531565606594086, 0.014251034706830978, -0.002438116818666458, -0.005985835567116737, -0.020587798207998276, -0.003696445608511567, 0.0018498939462006092, 0.004488541278988123, 0.005427692551165819, -0.016015702858567238, -0.0068180374801158905, 0.0012833952205255628, -0.007539947051554918, -0.006570716388523579, 0.016550451517105103, 0.033127639442682266, -0.0013034483417868614, -0.028796181082725525, -0.07197708636522293, 0.0026637136470526457, -0.006269920617341995, 7.506838755944045e-06, 0.014424827881157398, 0.011236392892897129, 0.028876392170786858, -0.014398090541362762, -0.009244455955922604, 0.009358090348541737, -0.05080106109380722, 0.014759045094251633, 0.012954270467162132, -0.005103501491248608, -0.03828795999288559, -0.02820795774459839, 0.01819480210542679, 0.002167400671169162, 0.019852520897984505, 0.013529124669730663, 0.01482588890939951, -0.0038668967317789793, 0.03786015883088112, -0.001232427079230547, -0.021577082574367523, 0.014317878521978855, -0.00245315651409328, 0.00840891245752573, 0.001714535872451961, 0.004201114177703857, 0.010855385102331638, -0.01998620666563511, 0.009525199420750141, 0.011129443533718586, -0.015146737918257713, -0.04112212359905243, 0.008121485821902752, 0.012773793190717697, 0.0150531567633152, 0.03534684330224991, -0.023034270852804184, -0.03334153816103935, -0.010013156570494175, 0.009418249130249023, -0.021710770204663277, -0.007138886023312807, -0.02149686962366104, -0.0006446220213547349, 0.024558302015066147, 0.015120000578463078, 0.03716498613357544, -0.008195013739168644, -0.013549177907407284, -0.03911681845784187, -0.00912413839250803, -0.028475333005189896, -0.000411923072533682, -0.019090503454208374, 0.0026988063473254442, 0.00893029198050499, 0.03400997444987297, 0.005340795964002609, 0.01680445671081543, 0.02185782603919506, -0.011844668537378311, -0.002304429654031992, -0.02720530517399311, 0.022807003930211067, 0.001170596806332469, -0.020534323528409004, -0.008315331302583218, -0.0039537930861115456, -0.009378143586218357, 0.022085092961788177, 0.015293793752789497, -0.009966365993022919, -0.003769973525777459, -0.011209655553102493, -0.02644328959286213, 0.009999788366258144, 0.024544933810830116, 0.0035961803514510393, -0.007800636813044548, 0.030881697311997414, 0.011223023757338524, 0.005878886207938194, -0.019170716404914856, 0.010848700068891048, 0.01430450938642025, -0.0007875000010244548, -0.007412944454699755, 0.012579946778714657, -2.7337948267813772e-05, -0.0010920556960627437, -0.0029929177835583687, 0.011670875363051891, 0.00950514618307352, -0.02284710854291916, 0.021028965711593628, 0.0006596618331968784, 0.025186631828546524, -0.007967745885252953, 0.0014446552377194166, -0.02930419147014618, -0.02322143316268921, -0.01232594158500433, -0.019197454676032066, -0.01609591580927372, 0.015146737918257713, 0.02470535784959793, -0.00759342173114419, 0.020213475450873375, -0.019197454676032066, 0.00669103441759944, -0.011049230583012104, 0.020494217053055763, -0.026630451902747154, -0.01645687036216259, -0.03280679136514664, -0.0015716578345745802, 0.008422281593084335, -0.0012457957491278648, 0.03566769137978554, 0.012773793190717697, 0.019946102052927017, 0.03515968099236488, 0.019170716404914856, -0.020935384556651115, 0.031042123213410378, 0.014424827881157398, -0.011470344848930836, 0.011035862378776073, -0.010654854588210583, -0.012178885750472546, -0.030240001156926155, -0.02935766614973545, -0.0027405836153775454, 0.010467692278325558, -0.028769442811608315, 0.05973135307431221, 0.01790069043636322, -0.004267957527190447, -0.004204456228762865, -0.01553442981094122, -0.00987278576940298, -0.0027957295533269644, -0.015440848655998707, 0.004792679101228714, -0.01790069043636322, 0.002837506588548422, -0.00392705574631691, -0.020948754623532295, -0.021189389750361443, -0.0005297347670421004, -0.012653474695980549, -0.03580138087272644, 0.03828795999288559, -0.018047746270895004, 0.013863342814147472, 0.014491671696305275, 0.00011238063598284498, 0.017954165115952492, 0.01643013209104538, 0.0004599668609444052, 0.003689761273562908, 0.015882017090916634, -0.022272255271673203, 0.02509305067360401, -0.010313952341675758, 0.009999788366258144, 0.015066525898873806, -0.02895660512149334, -0.040213052183389664, -0.005150292068719864, 0.015079894103109837, 0.0018131299875676632, -0.00606939010322094, 0.004759257193654776, -0.0039303977973759174, 0.013997029513120651, 0.03259289264678955, -0.026991406455636024, -0.0240101870149374, -0.02284710854291916, 0.00024627652601338923, -0.02546737529337406, -0.03173729404807091, 0.0010001459158957005], "260d1dd4-dfbf-4c84-b924-99494034f8d5": [-0.025286026298999786, 0.00726783974096179, 0.01900925487279892, -0.020371975377202034, -0.014714622870087624, 0.026166977360844612, 0.012484717182815075, -0.014301677234470844, -0.01187906414270401, -0.015389100648462772, 0.010578285902738571, 0.05015910789370537, -0.0005828553112223744, 0.004105365835130215, -0.015416630543768406, -0.009360097348690033, 0.0019683733116835356, -0.0020423594396561384, 0.022216465324163437, -0.008534206077456474, 0.0006202784716151655, -0.0032794750295579433, -0.005519704427570105, -0.04272608831524849, 0.004298073705285788, 0.008754443377256393, -0.0017283487832173705, -0.023248828947544098, -0.0006731871399097145, 0.036862265318632126, 0.015237687155604362, 0.002002785447984934, 0.007439900655299425, -0.011287176050245762, 0.009298155084252357, -0.016793115064501762, -8.732075366424397e-05, 0.001074518426321447, 0.023124946281313896, -0.0029267508070915937, 0.01339319720864296, 0.021968698129057884, 0.016614172607660294, 0.011225233785808086, -0.019752558320760727, 0.02297353185713291, -0.028741003945469856, 0.011713885702192783, -0.006576156243681908, 0.021624576300382614, 0.00440475158393383, 0.018844077363610268, -0.02254682220518589, -0.0075224898755550385, -0.013661611825227737, 0.02284964919090271, -0.01302154641598463, 0.014810976572334766, -0.003565095830708742, -0.02678639441728592, -0.004927815869450569, -0.006916836369782686, -0.02452895976603031, 0.0003125050861854106, 0.024267427623271942, 0.006882424000650644, -0.0053648496977984905, 0.004435722250491381, -0.0015287584392353892, -0.00030454728403128684, 0.02030315063893795, 0.0248868465423584, -0.014205323532223701, 0.0033930351492017508, 0.034797538071870804, -0.0005174722755327821, -0.016696760430932045, 0.0071164267137646675, -0.00747431255877018, -0.011473000980913639, -0.004287750460207462, -0.023056121543049812, -0.013819907791912556, -0.00445981090888381, 0.024294957518577576, -0.00553002767264843, -0.020757392048835754, 0.016559112817049026, -0.006090945564210415, -0.01243654079735279, 0.015306511893868446, 0.01856878027319908, 0.026758864521980286, 0.013930026441812515, -0.026194507256150246, 0.001046128454618156, -0.015320275910198689, 0.013117900118231773, -0.004628430120646954, -0.012037360109388828, -0.02090880461037159, 0.0012061448069289327, -0.015278981998562813, -0.012594836764037609, -0.052031125873327255, -0.017440063878893852, 0.005867266561836004, -0.010309871286153793, -0.015746986493468285, -0.021418103948235512, -0.015375335700809956, 0.04787414148449898, -0.0016087666153907776, -0.06006979942321777, -0.03614649176597595, -0.0038679223507642746, 0.009380743838846684, -0.01832101307809353, -0.005942973308265209, -0.005932649597525597, 0.02173469588160515, 0.0016672672936692834, 0.015320275910198689, -0.006417860742658377, 0.014074557460844517, 0.005691764876246452, 0.0028372793458402157, -0.023358948528766632, -0.0009910691296681762, -0.02695157378911972, 0.04311150684952736, 0.020316915586590767, 0.004342809785157442, 0.013028428889811039, -0.040193356573581696, -0.00590512016788125, 0.016600407660007477, -0.010523227043449879, -0.03917475789785385, 0.020399505272507668, 0.0018513720715418458, 0.013764848001301289, 0.005898237694054842, -0.02167963609099388, 0.005196230486035347, 0.0343845896422863, 0.011115115135908127, 0.023166239261627197, 0.00040240673115476966, 0.010770994238555431, -0.003322490258142352, -0.03832133859395981, -0.011899711564183235, -0.004800491034984589, 0.03281540051102638, 0.016834409907460213, 0.007598196156322956, 0.006249241065233946, 0.0021541987080127, 0.011734533123672009, 0.02713051624596119, 0.013345020823180676, -0.018899137154221535, -0.005454321391880512, -0.020137973129749298, 0.03611896187067032, 0.030640551820397377, 0.001987299881875515, -0.007742727175354958, 0.0011235557030886412, -0.005963620729744434, -0.00027809294988401234, 0.00030863372376188636, 0.010791640728712082, -0.005065464414656162, 0.01814207062125206, 0.013785495422780514, -0.010598933324217796, -0.017385004088282585, 0.008892091922461987, -0.01827971823513508, -0.005836295895278454, -0.002257435116916895, 0.02652486227452755, -0.0023228181526064873, -0.02272576466202736, 0.0024965994525700808, -0.010488814674317837, 0.006899630185216665, -0.0075293718837201595, 0.0057537066750228405, 0.0374954454600811, 0.015746986493468285, 0.0024621873162686825, -0.5972843170166016, -0.012553541921079159, 0.0023331418633461, -0.006706922315061092, 0.004563047084957361, 0.009642275981605053, -0.003940187860280275, 0.007426135707646608, -0.0020458006765693426, 0.04302891716361046, 0.010241047479212284, 0.020798686891794205, -0.0250107292085886, -0.007037278730422258, -0.0009368699975311756, -0.03317328542470932, 0.02397836558520794, -0.028328057378530502, 0.012209420092403889, 0.0074467831291258335, -0.024253662675619125, 0.0008164275786839426, -0.006483243778347969, 0.006916836369782686, -0.0008723472710698843, 0.014287912286818027, -0.021569518372416496, -0.006872100755572319, 0.031163616105914116, 0.03209962695837021, -0.023124946281313896, 0.018857842311263084, 0.0439649261534214, 0.00012388364120852202, 0.04176254943013191, -0.014081439934670925, -0.026800159364938736, 0.035568367689847946, 0.006527979392558336, 0.036944855004549026, -0.018816547468304634, -0.009890043176710606, 0.023400241509079933, 0.0005024169804528356, -0.006576156243681908, -0.005860384088009596, 0.005457762628793716, 0.01525145210325718, 0.016738055273890495, -0.0003785333246923983, -0.011528060771524906, -0.004841785412281752, -0.009814336895942688, -0.032760340720415115, 0.02729569375514984, 0.02357918582856655, 0.03785333409905434, -0.021528223529458046, 0.01706841215491295, -0.01761900633573532, -0.01628381572663784, 0.010812288150191307, -0.01662793755531311, -0.0011140924179926515, -0.013345020823180676, 0.010984349064528942, 0.005543792620301247, 0.0021060218568891287, -0.003294960595667362, -0.04759884625673294, 0.01291831023991108, -0.03014501743018627, 0.015127568505704403, -0.0148385064676404, 0.02264317497611046, 0.03014501743018627, 0.013186724856495857, -0.02798393741250038, -0.018252188339829445, 0.029181478545069695, -0.010502579621970654, -0.0008289019460789859, -0.008898974396288395, 0.000794059713371098, 0.011383529752492905, -0.00969733577221632, -0.010337401181459427, 0.001885784207843244, 0.011562473140656948, 0.009814336895942688, -0.016490288078784943, 0.019711263477802277, 0.0024380988907068968, -0.042615972459316254, -0.00668283412232995, 0.02133551426231861, -0.016682995483279228, -0.009752395562827587, 0.010179105214774609, -0.01827971823513508, -0.016008518636226654, 0.020482094958424568, 0.017040882259607315, -0.009277507662773132, 0.03873428329825401, -0.004900285974144936, -0.02388201281428337, 0.021913638338446617, 0.03174174204468727, -0.021018924191594124, -0.028410647064447403, -0.008754443377256393, -0.02574026584625244, 0.009091682732105255, 0.02414354495704174, -0.03369634971022606, 0.02147316373884678, 0.003843833925202489, 0.04335927218198776, -0.004267103038728237, 0.01827971823513508, 0.007302252110093832, 0.03391658514738083, 0.005574763752520084, 0.004621547646820545, 0.013159194961190224, -0.008375910110771656, 0.003503154031932354, -0.006541744340211153, 0.007866610772907734, -0.0054061440750956535, 0.004790167324244976, 0.01805948093533516, -0.024776726961135864, -0.006634656805545092, 0.006207946687936783, 0.03251257166266441, -0.018637605011463165, 0.03589872643351555, 0.011548708193004131, -0.006817040964961052, -0.02854829654097557, 0.010268577374517918, -0.024336252361536026, -0.014150263741612434, -0.02016550302505493, -0.0011725929798558354, 0.003740597516298294, -0.019601143896579742, -0.0005811346927657723, -0.010124046355485916, -0.0015648911939933896, -0.022904707118868828, 0.025464968755841255, -0.00538893835619092, 0.00015689776046201587, -0.028066525235772133, 0.0021800079848617315, 0.011934123933315277, -0.023592950776219368, -0.016751820221543312, -0.004834902938455343, -0.02915394864976406, 0.01129405852407217, -0.014384266920387745, -0.008547971025109291, 0.004673166200518608, 0.008375910110771656, -0.004535517655313015, -0.028796063736081123, -0.0023709952365607023, -0.026882749050855637, 0.020482094958424568, 0.004425398539751768, 0.020248092710971832, -0.0064385076984763145, -0.005936090834438801, 0.0046662837266922, 0.002061286009848118, -0.005901678930968046, -0.015843341127038002, 0.005299466662108898, 0.021225396543741226, 0.0032502247486263514, 0.03642179071903229, 0.01719229482114315, 0.008541088551282883, -8.662175969220698e-05, -0.03843145817518234, 0.008871444500982761, 0.007240310311317444, 0.037770744413137436, 0.004428839776664972, 0.01706841215491295, 0.022794589400291443, 0.02117033675312996, 0.013255548663437366, 0.0014590739738196135, -0.016779350116848946, 0.023138709366321564, 0.011521178297698498, 0.01662793755531311, -0.010929289273917675, -0.015554279088973999, 0.014590739272534847, -0.017302414402365685, 0.016118638217449188, -0.018334778025746346, 0.006872100755572319, 0.00880950316786766, -0.021569518372416496, -0.029264068230986595, 0.0007235148223116994, -0.012044242583215237, 0.003967717755585909, 0.025671442970633507, -0.005574763752520084, -0.007205897942185402, -0.020055383443832397, 0.0314389131963253, 0.0021025806199759245, 0.0030471934005618095, 0.008926504291594028, -0.018210895359516144, 0.014136499725282192, 0.0011330191045999527, -0.006156328599900007, 0.0038094217889010906, -0.010530108585953712, -0.022670704871416092, -0.009270625188946724, 0.0035203599836677313, 0.013152312487363815, 0.019890205934643745, 0.013455139473080635, -0.010922406800091267, 0.036394260823726654, 0.004101925063878298, 0.02523096650838852, -0.0004727365158032626, -0.00850667618215084, -0.0027426460292190313, -0.005337319802492857, -0.004635312594473362, 0.01870642974972725, 0.001973535167053342, 0.042010318487882614, 0.019986560568213463, -0.014439325779676437, 0.02068856731057167, -0.028961241245269775, 0.0007669601473025978, 0.007377958856523037, 0.007164603564888239, -0.014439325779676437, -0.018197130411863327, -0.0024467017501592636, 0.023895777761936188, 0.019325846806168556, 0.0205096248537302, 0.019559849053621292, 0.031686682254076004, 0.0028183527756482363, -0.012718720361590385, 0.001421220600605011, -0.04154231399297714, 0.026194507256150246, -0.03559589758515358, -0.007756492123007774, -0.002348627196624875, -0.03311822563409805, -0.0020285944920033216, 0.002482834504917264, -0.03179679811000824, 0.014026380144059658, -0.0002064727304968983, 0.03650437667965889, 0.021060217171907425, 0.04415763542056084, 0.013455139473080635, -0.011493648402392864, -0.011603767052292824, 0.02228529006242752, 0.005027610808610916, 0.011438588611781597, -0.00218172837048769, -0.011307822540402412, -0.0007415811996906996, -0.002420892706140876, 0.012264479883015156, 0.00553002767264843, 0.006259564775973558, 0.0014238015282899141, -0.010330518707633018, -0.01261548325419426, -0.0033878732938319445, 0.04016582667827606, -0.012567306868731976, 0.0017593196826055646, -0.029346656054258347, 0.01896796189248562, 0.005760589148849249, -0.01457697432488203, -0.019380906596779823, 0.042478322982788086, 0.02579532563686371, -0.016682995483279228, -0.005106758791953325, 0.012223185040056705, -0.006256123539060354, -0.0009256860357709229, -0.0140607925131917, 0.006104710046201944, 0.007357311435043812, 0.021266691386699677, 0.001210446353070438, 0.018238423392176628, 0.007969846948981285, 0.0054233502596616745, 0.013936908915638924, -0.03424694389104843, -0.015334040857851505, -0.00918115396052599, 0.008348380215466022, -0.02854829654097557, 0.014074557460844517, 0.01442556083202362, -0.009428921155631542, -0.04316656291484833, -0.014907331205904484, -0.02868594415485859, -0.004501105286180973, -0.0008775090682320297, -0.005929208360612392, -0.006662186700850725, -0.003035149071365595, -0.0051514944061636925, -0.01468709297478199, 0.01735747419297695, 0.004607783164829016, -0.022133875638246536, -0.01183776929974556, 0.03468741849064827, 0.01026169490069151, 0.020619742572307587, 0.007942317984998226, 0.0027787787839770317, 0.012085536494851112, 0.008279556408524513, 0.005072346422821283, 0.001348094898276031, 0.017908068373799324, 0.017385004088282585, -0.01832101307809353, 0.013345020823180676, -0.001782547915354371, 0.021225396543741226, 0.04677295312285423, -0.00984874926507473, 0.03075067140161991, -0.013640964403748512, 0.04129454493522644, 0.004535517655313015, -0.013000898994505405, 0.01224383246153593, 0.01000016275793314, -0.0006620031781494617, -0.008527323603630066, 0.011011878959834576, -0.021184101700782776, -0.008541088551282883, -0.0060840630903840065, 0.00607029814273119, -0.039202287793159485, 0.028741003945469856, 0.0085548534989357, -0.06133616343140602, -0.003768127178773284, 0.022395407781004906, 0.032457511872053146, -0.02436378225684166, -0.011177056469023228, 0.016999587416648865, 0.002346906578168273, 0.005065464414656162, -0.02250552736222744, 0.018307248130440712, -0.005640146788209677, -0.0010056942701339722, -0.030392784625291824, -0.025423675775527954, 0.007109544239938259, -0.04578188434243202, -0.024941904470324516, -0.001063334522768855, -0.051508061587810516, -0.04302891716361046, -0.005963620729744434, 0.011018761433660984, 0.03521048277616501, 0.030530434101819992, 0.0004959647194482386, -0.009717983193695545, 0.03240245208144188, -0.00583285465836525, -0.0021748461294919252, -0.016270050778985023, -0.0235378909856081, 0.0068858652375638485, -0.002362392144277692, 0.012202538549900055, -0.009201801382005215, -0.017632771283388138, 0.0036373611073940992, -0.012450305745005608, -0.008217614144086838, 0.005929208360612392, 0.017219824716448784, 0.003799098078161478, 0.00167414965108037, 0.014563209377229214, 0.022354112938046455, 0.02246423251926899, 0.005973944440484047, 0.014976155012845993, -0.03711003065109253, -0.0312737338244915, 0.00284072058275342, -0.0034618594218045473, -0.010819170624017715, 0.020592212677001953, -0.0020888156723231077, 0.009043505415320396, 0.00591888464987278, 0.021486928686499596, -0.013689141720533371, 0.023510361090302467, 0.00736419390887022, 0.02678639441728592, 0.011603767052292824, 0.0012827118625864387, 0.009621629491448402, -0.008568618446588516, -0.00907103531062603, 0.01883031241595745, -0.008541088551282883, 0.04415763542056084, 0.003967717755585909, 0.0047213430516421795, 0.002787381876260042, -0.013702906668186188, -0.03631167113780975, -0.007350428961217403, 0.011782710440456867, 0.0043152798898518085, 0.01775665394961834, 0.006527979392558336, -0.03174174204468727, -0.017853008583188057, 0.009951985441148281, -0.02052338980138302, 0.03485259786248207, -0.019807616248726845, -0.030255137011408806, -0.009126094169914722, -0.012223185040056705, -0.0018049157224595547, -0.028823591768741608, 0.03353117033839226, -0.024611549451947212, -0.019105609506368637, 0.006225152872502804, 0.003947070334106684, 0.0057709128595888615, 0.009456451050937176, 0.009724865667521954, -0.03595378249883652, -0.023469066247344017, 0.006638098042458296, -0.018293483182787895, -0.009311920031905174, -0.015526749193668365, 0.008561735972762108, 0.02017926797270775, 0.03529307246208191, 0.001897828420624137, 0.0022970091085880995, 0.006180416792631149, 0.006407537031918764, 0.0031487091910094023, 0.0024776726495474577, -0.0008663251646794379, -0.004783284850418568, -0.021404339000582695, 0.012821956537663937, -0.004294632934033871, 0.024735432118177414, -0.009311920031905174, 0.01571945659816265, 0.0313563235104084, 0.0012018433772027493, 0.005643588025122881, -0.007935435511171818, -0.05252666026353836, 0.0025654237251728773, 0.01540286559611559, 0.002500040689483285, 0.00954592227935791, -0.033283405005931854, -0.013819907791912556, 0.022340349853038788, 0.010894877836108208, 0.0039849234744906425, 0.0024036867544054985, 0.01540286559611559, -0.01810077577829361, -0.007371076382696629, 0.019890205934643745, 0.004700695630162954, -0.04145972430706024, 0.005915443412959576, -0.03204456716775894, 0.018472427502274513, 0.004318721126765013, -0.010660874657332897, 0.012539776973426342, 0.007178368512541056, 0.019064314663410187, -0.01874772273004055, 0.015925928950309753, 0.0027151163667440414, -0.03545824810862541, -0.02268446981906891, -0.022395407781004906, -0.028741003945469856, -0.03735779970884323, -0.00275813159532845, -0.009635393507778645, 0.02462531439960003, 0.011569354683160782, 0.012801309116184711, -0.004153543151915073, -0.02915394864976406, -0.019146904349327087, 0.014521915465593338, -0.017206059768795967, 0.05087488144636154, -0.006796394009143114, 0.01862384006381035, 0.04126701503992081, 0.0004826299846172333, 0.013668494299054146, -0.04236820340156555, -0.0009471936500631273, -0.0017137236427515745, 0.036944855004549026, 0.05654599890112877, -0.0313563235104084, -0.01991773582994938, 0.013296843506395817, -0.007088896818459034, 2.4397655579377897e-05, -0.03036525472998619, 0.0295944232493639, 0.028052760288119316, -0.01883031241595745, -0.026070622727274895, -0.006779187824577093, -0.018087010830640793, -0.00046284301788546145, -0.0205096248537302, 0.012904545292258263, -0.01580204628407955, -0.005189348012208939, -0.019559849053621292, 0.00880950316786766, 0.007185250986367464, 0.022904707118868828, 0.0019528878619894385, 0.010695287026464939, 0.0038231867365539074, 0.00019657924713101238, -0.03565095737576485, 0.018885372206568718, -0.013778612948954105, 0.02167963609099388, 0.0006336132064461708, 0.011335352435708046, 0.021789755672216415, -0.0029112654738128185, 0.015017449855804443, -0.00523752486333251, -0.01384055521339178, 0.040496185421943665, -0.013764848001301289, -0.0037922158371657133, -0.002510364167392254, -0.012285127304494381, 0.011789592914283276, 0.0016681276028975844, 0.006139122415333986, -0.009442686103284359, -0.017426298931241035, -0.01099123153835535, 0.006176975555717945, -0.009690453298389912, 0.008547971025109291, -0.007680785376578569, -0.0065142144449055195, -0.010695287026464939, -0.013826790265738964, -0.0016681276028975844, 0.03242998197674751, -0.03961523249745369, -0.02454272471368313, 0.00212666904553771, -0.0219824630767107, -0.006335271522402763, -0.0006873821257613599, 0.02077115699648857, 0.015086273662745953, 0.042010318487882614, -0.026153212413191795, 0.013689141720533371, -0.006761981640011072, 0.019890205934643745, -0.010619580745697021, -0.01797689124941826, -0.017508886754512787, 4.6456363634206355e-05, 0.012491599656641483, -0.00965604092925787, 0.0015020890859887004, -0.05335255339741707, 0.004655960015952587, 0.016352640464901924, 0.00684801209717989, 0.04495599493384361, 0.010874230414628983, -0.0017335106385871768, 0.01862384006381035, 0.012835721485316753, -0.025423675775527954, 0.0020268738735467196, 0.0019821382593363523, -0.0032502247486263514, 0.0002658336306922138, -0.022574352100491524, 0.007598196156322956, -0.004380662925541401, -0.007047602441161871, -0.002783940639346838, -0.018087010830640793, 0.006748217158019543, -0.005760589148849249, -0.002288406016305089, -0.01235395111143589, 0.015471689403057098, -0.027749935165047646, -0.002615321194753051, -0.031025968492031097, -0.0007355590933002532, 0.01157623715698719, -0.02077115699648857, 0.004518311470746994, 0.01788053847849369, 0.0015390821499750018, -0.011163292452692986, -0.0072334278374910355, -0.035926252603530884, 0.003066119970753789, -0.00337582896463573, -0.008926504291594028, -0.023909540846943855, -0.0076050786301493645, 0.05351772904396057, 0.008341497741639614, -0.01291831023991108, -0.021404339000582695, -0.004893403500318527, -0.02444637008011341, 0.019105609506368637, 0.015237687155604362, 0.010695287026464939, 0.022051287814974785, 0.03543071821331978, -0.010103398934006691, 0.030337726697325706, -0.010309871286153793, -0.008486028760671616, -0.0026686599012464285, -0.0027770581655204296, -0.048314619809389114, 0.0015734942862764, -0.012113066390156746, 0.0002600266016088426, -0.023482831194996834, 0.0011588281486183405, -0.004050306510180235, -0.015058743767440319, 0.005354525987058878, 0.0251759085804224, -0.003926422912627459, -0.036394260823726654, 0.0067275697365403175, -0.0235378909856081, -0.01110135018825531, -0.0019632114563137293, -0.01715100184082985, -0.0016930763376876712, -0.006259564775973558, 0.0009463333408348262, -0.021018924191594124, -0.018995489925146103, 0.00023228181817103177, 0.019711263477802277, -0.00692027760669589, 0.002257435116916895, -0.043083976954221725, -0.023744363337755203, 0.007611961103975773, 0.0011407617712393403, 0.008534206077456474, 0.003950511571019888, -0.018651369959115982, 0.024074720218777657, 0.00017388875130563974, 0.015086273662745953, -0.010770994238555431, 0.009690453298389912, -0.027116751298308372, -0.007143956143409014, 0.008086848072707653, -0.007143956143409014, 0.009325684979557991, 0.008238261565566063, -0.004318721126765013, -0.030557963997125626, 0.014287912286818027, 0.010743464343249798, 0.0005402702954597771, -0.03900958225131035, 0.001675009960308671, -0.008334615267813206, -0.052719369530677795, -0.002961162943392992, -0.007412370759993792, -0.004797049798071384, 0.007322899531573057, -0.048314619809389114, 0.024074720218777657, -0.0374128594994545, 0.02194116823375225, -0.0032846368849277496, 0.008437852375209332, -0.015733221545815468, -0.020661037415266037, -0.007756492123007774, -0.024171072989702225, -0.0025516587775200605, 0.24776726961135864, -0.025864150375127792, -0.0002565853646956384, 0.02107398211956024, 0.008272673934698105, 0.027970172464847565, 0.010096516460180283, -0.0005497336387634277, -0.0056779999285936356, 0.02388201281428337, -0.006817040964961052, -0.016655467450618744, -0.016572877764701843, -0.01347578689455986, 0.020495859906077385, 0.007412370759993792, -0.034880127757787704, -0.034494709223508835, -0.0205096248537302, 0.006001473870128393, 0.009470215998589993, 0.01680688001215458, -0.0037509212270379066, -0.01978008635342121, 0.004267103038728237, 0.014398031868040562, -0.0157607514411211, 0.012835721485316753, 0.010419989936053753, 0.01254665944725275, -0.03044784441590309, 0.021046454086899757, 0.002376156859099865, -0.00025142356753349304, -0.013895614072680473, -0.006149446126073599, 0.027075456455349922, 0.014810976572334766, 0.009552804753184319, 0.00907103531062603, 0.00469725439324975, 0.0014091763878241181, -0.0061253574676811695, 0.00022970090503804386, -0.00913297664374113, 0.019518554210662842, -0.00973863061517477, -0.008424087427556515, -0.010399343445897102, 0.010509462095797062, -0.023785658180713654, -0.01235395111143589, 0.027075456455349922, 0.03254010155797005, -0.007405488286167383, -5.347320984583348e-05, 0.024859316647052765, -0.0030471934005618095, 0.016448993235826492, 0.05376549810171127, -0.00825202651321888, 0.026318389922380447, 0.0012612042482942343, 0.02768111042678356, -0.0016818924341350794, -0.020014090463519096, -0.02561638318002224, 0.0125053646042943, -0.011713885702192783, -0.01856878027319908, -0.006476361304521561, -0.014177793636918068, -0.019325846806168556, -0.008417204953730106, -0.035706017166376114, -0.02838311716914177, 0.043689627200365067, 0.0038575988728553057, 0.01640770025551319, 0.04795673117041588, -0.0020991393830627203, 0.01939467154443264, 0.001481441780924797, 0.008437852375209332, -0.02479049190878868, -0.029814662411808968, 0.011280293576419353, -0.016256285831332207, -0.01779794879257679, -0.0026875867042690516, 0.028272999450564384, -0.023661773651838303, 0.01187906414270401, -0.002123227808624506, -0.01943596638739109, 0.004280867986381054, 0.01697205752134323, 0.017440063878893852, -0.008603029884397984, -0.0235378909856081, -0.026208272203803062, 0.01540286559611559, 0.017288649454712868, 0.018940431997179985, -0.019931500777602196, 0.0004637033271137625, 0.0093945087864995, 0.0026290861424058676, 0.018899137154221535, -0.007247192785143852, -0.0027925437316298485, -0.06397901475429535, 0.012711837887763977, 0.003916099201887846, -0.027584755793213844, 0.008630559779703617, -0.015650631859898567, -0.016682995483279228, -0.010330518707633018, 0.006627774331718683, 0.0218998733907938, -0.016916999593377113, -0.016173696145415306, -0.007680785376578569, -0.012161243706941605, -0.03309069573879242, -0.01362720038741827, -0.025520028546452522, 0.008871444500982761, -0.030420314520597458, 0.010578285902738571, -0.044432930648326874, 0.008389675058424473, 0.003964276518672705, 0.0018358866218477488, 0.017178531736135483, 0.007667020428925753, -0.010963701643049717, -0.0012009830679744482, -0.0020888156723231077, -0.01002080924808979, 0.008045554161071777, -0.012016712687909603, -0.008231379091739655, 0.011018761433660984, -0.009277507662773132, -0.002952560083940625, 0.008424087427556515, -0.0037509212270379066, 0.02341400645673275, -0.027034161612391472, -0.0022230229806154966, 0.0046043419279158115, -0.004232690669596195, 0.01510003861039877, 0.006163211073726416, -0.029924780130386353, -0.04154231399297714, 0.001213887589983642, 0.001062474213540554, -0.0315215028822422, -0.013062841258943081, 0.00825202651321888, -0.009428921155631542, -0.027956407517194748, -0.01676558516919613, -0.1758597046136856, 0.006194181740283966, 0.03991806134581566, -0.025864150375127792, 0.025712735950946808, 0.00568144116550684, 0.01239524595439434, -0.007199015934020281, -0.01805948093533516, -0.008754443377256393, 0.008176320232450962, 0.0035582133568823338, 0.0078390808776021, -0.0012801309349015355, -0.029264068230986595, 0.0033895939122885466, -0.022009992972016335, 0.007453665602952242, 0.032154686748981476, 0.0005901678814552724, 0.06342842429876328, -0.03149397298693657, -0.01442556083202362, 0.030530434101819992, 0.00412601325660944, 0.01801818609237671, -0.003940187860280275, 0.009566569700837135, -0.017385004088282585, -0.046497657895088196, -0.023386476561427116, -0.0008805201505310833, 0.022409172728657722, -0.0022471114061772823, 0.012305774725973606, 0.0053820558823645115, 0.009635393507778645, -0.01479721162468195, -0.02046833001077175, 0.0060083563439548016, -0.006830805912613869, 0.03576107695698738, 0.008224496617913246, 0.0018376072403043509, -0.022106345742940903, -0.0018427690956741571, -0.008369027636945248, -0.008912739343941212, -0.0025791884399950504, 0.01827971823513508, 0.029043830931186676, -0.025809090584516525, 0.011011878959834576, -0.018789017572999, 0.03567848727107048, -0.004621547646820545, -0.005024169571697712, -0.008079965598881245, -0.01646275818347931, -0.018045715987682343, -0.013682259246706963, -0.023166239261627197, 0.021280456334352493, 0.01672429032623768, -0.02220270037651062, -0.021225396543741226, -0.033503640443086624, 0.029126418754458427, -0.016517817974090576, 0.008534206077456474, 0.013379432260990143, -0.028107820078730583, -0.0071577210910618305, -0.006927160080522299, 0.005822530947625637, 0.009325684979557991, 0.0156781617552042, 0.0057950010523200035, 0.016655467450618744, -0.014095204882323742, -0.01514133345335722, 0.04938827455043793, 0.003246783511713147, 0.004029659554362297, -0.007467430084943771, -0.015347805805504322, 0.009373861365020275, 0.014976155012845993, -0.021266691386699677, -0.03380646929144859, 0.03281540051102638, -0.01563686691224575, -0.017770418897271156, -0.008575500920414925, 0.013200489804148674, 0.010702169500291348, 0.0014831623993813992, -0.0002656185533851385, -0.005994591396301985, -0.0019718145485967398, -0.020963864400982857, 0.015512984246015549, -0.018761487677693367, 0.017674066126346588, 0.02531355619430542, 0.0007088896818459034, -0.009759277105331421, 0.025244731456041336, 0.03163162246346474, -0.013868085108697414, 0.03504530340433121, -0.0023124944418668747, 0.02099139429628849, 0.015155098401010036, -0.002173125511035323, 0.00898844562470913, -0.02418483793735504, -0.004232690669596195, 0.0024329370353370905, 0.0037027441430836916, -0.009642275981605053, -0.01514133345335722, 0.021115276962518692, 0.016338875517249107, -0.015127568505704403, -0.015127568505704403, -0.05238901451230049, 0.00046929530799388885, 0.024432605132460594, 0.028176644816994667, 0.01761900633573532, 0.04357951134443283, 0.00365456729196012, 0.046112243086099625, -0.020330680534243584, 0.04597459360957146, -0.0009110608953051269, -0.02030315063893795, 0.013234902173280716, 0.0025826296769082546, 0.0019718145485967398, -0.009869396686553955, 0.011562473140656948, -0.020757392048835754, -0.0011304381769150496, 0.029346656054258347, -0.00872691348195076, -0.00045725106610916555, 0.013117900118231773, -0.0133656682446599, 0.012980252504348755, -0.011734533123672009, -0.00583285465836525, 0.014673328027129173, 0.0045079877600073814, 0.0045458413660526276, 0.017426298931241035, -0.028630884364247322, 0.010206635110080242, -0.00965604092925787, 0.028713474050164223, -0.00020969886099919677, -0.03251257166266441, -0.02129422128200531, 0.01317295990884304, -0.0008035229984670877, 0.015416630543768406, 0.011755180545151234, -0.0027013514190912247, 0.006741334684193134, -0.00518246553838253, -0.0021473164670169353, -0.006049650721251965, 0.019146904349327087, -0.02513461373746395, -0.0031934448052197695, -0.044735755771398544, -0.00031358044361695647, -0.023290123790502548, 0.0026394096203148365, -0.004862432833760977, 0.011913476511836052, 0.02284964919090271, 0.004841785412281752, -0.024735432118177414, 0.004098483826965094, -0.00630774162709713, 0.0009317082003690302, -0.017054647207260132, -0.0006779187824577093, 0.018899137154221535, 0.02212011069059372, -0.050186637789011, -0.025712735950946808, 0.004421957768499851, 0.0007222244166769087, -0.014047027565538883, 0.01982138119637966, 0.007281604688614607, 0.027199340984225273, -0.04159737378358841, 0.006538303103297949, -0.011720768176019192, -0.02553379349410534, 0.023097416386008263, 0.0028940592892467976, -0.006004915107041597, -0.003408520482480526, -0.01254665944725275, 0.003988364711403847, 0.016118638217449188, 0.020922569558024406, -0.012250714935362339, 0.009449568577110767, -0.013055958785116673, -0.022670704871416092, -0.010791640728712082, 0.021445633843541145, 0.005165259353816509, -0.00840344000607729, -0.030337726697325706, -0.012966487556695938, 0.01099123153835535, -0.009828101843595505, 0.005492174532264471, 0.014810976572334766, -0.011775827966630459, -0.036394260823726654, -0.08335991948843002, -0.00445981090888381, -0.015788281336426735, 0.0008142768056131899, 0.018114540725946426, 0.01311101857572794, 0.04143219441175461, -0.014342972077429295, 0.0009936499409377575, -0.0031934448052197695, -0.028961241245269775, 0.031466443091630936, 0.003830068977549672, 0.0061838580295443535, -0.029704542830586433, -0.019119374454021454, 0.01995903067290783, 0.015168863348662853, 0.010447519831359386, 0.016187461093068123, 0.01047504972666502, -0.008775090798735619, 0.03589872643351555, -0.011094467714428902, -0.026194507256150246, 0.020853744819760323, 0.00046628425479866564, 0.0075293718837201595, 0.0028183527756482363, 0.0007600777316838503, 0.005234083626419306, 0.011493648402392864, -0.0072747222147881985, 0.009635393507778645, -0.011686356738209724, -0.018733957782387733, 0.01563686691224575, 0.007494959980249405, 0.011417942121624947, 0.03474247828125954, -0.03080573119223118, -0.02068856731057167, 0.01852748543024063, -0.00630774162709713, -0.0037750096525996923, -0.00484866788610816, -0.012298892252147198, -0.0036648910026997328, 0.008114377968013287, 0.0009919294388964772, 0.040881600230932236, 0.012051125057041645, 0.003541007172316313, -0.026111917570233345, 0.003647684818133712, -0.031989507377147675, 0.010819170624017715, -0.03331093490123749, 0.003408520482480526, -0.006837688386440277, 0.03353117033839226, -0.01099123153835535, 0.03149397298693657, 0.013606552965939045, -0.011204586364328861, -0.014439325779676437, -0.012925192713737488, -0.0036855381913483143, -0.013682259246706963, -0.03551330789923668, -0.00640409579500556, 0.005502498243004084, 0.014232853427529335, 0.0016216712538152933, 0.020358210429549217, -0.000613396055996418, 0.003336255205795169, -0.02337271347641945, -0.02704792656004429, 0.031686682254076004, 0.030034899711608887, 0.013269313611090183, -0.031136086210608482, 0.02885112166404724, 0.01233330462127924, 0.0132211372256279, 0.007143956143409014, -0.015058743767440319, 0.01287013292312622, -0.006331830285489559, -0.02207881771028042, 0.0010203194105997682, 0.02072986215353012, 0.0011037688236683607, 0.010826053097844124, 0.0312737338244915, 0.013496434316039085, -0.00697533693164587, 0.005409585312008858, 0.0031056939624249935, 0.029732072725892067, -0.0017773860599845648, 0.002078492194414139, -0.034632358700037, -0.01753641664981842, -0.01606357842683792, -0.013689141720533371, -0.01943596638739109, -0.005946414545178413, 0.02143186889588833, -0.010096516460180283, 0.0028389999642968178, -0.013510198332369328, 0.016834409907460213, -0.020399505272507668, -0.002704792656004429, -0.009965750388801098, -0.02808029018342495, -0.033586230129003525, 0.0057950010523200035, 0.014700857922434807, 0.010757229290902615, 0.02604309283196926, -0.007687667850404978, 0.03248504176735878, 0.010206635110080242, 0.006748217158019543, -0.029952310025691986, 0.017385004088282585, 0.011197703890502453, -0.021197866648435593, 0.002945677610114217, -0.0003959544701501727, -0.027075456455349922, -0.021831050515174866, -0.01961490884423256, -0.00730913458392024, -0.007016631308943033, -0.03278787061572075, 0.07713820785284042, 0.015471689403057098, -0.012133713811635971, -0.00254305568523705, -0.012223185040056705, -0.01581581123173237, -0.004411634057760239, 0.01503121480345726, -0.006755099166184664, -0.021197866648435593, 0.002426054561510682, -0.012773779220879078, -0.026153212413191795, -0.02258811704814434, -0.005027610808610916, -0.012058007530868053, -0.025561323389410973, 0.037082500755786896, -0.01628381572663784, 0.016531582921743393, 0.035568367689847946, 0.014783447608351707, 0.010667757131159306, -0.003575419308617711, -0.002678983611986041, -0.008547971025109291, 0.03171421214938164, -0.013819907791912556, 0.020895039662718773, -0.0205096248537302, 0.023083651438355446, -0.004914050921797752, -0.025506263598799706, -0.030695611611008644, -0.004766078665852547, 0.02773617021739483, 0.01198918279260397, 0.0004770380328409374, 0.004945021588355303, -0.004759196192026138, 0.006321506574749947, 0.02739204838871956, -0.02885112166404724, -0.03507283329963684, -0.014508150517940521, 0.003713067853823304, -0.0003163764486089349, -0.015925928950309753, -0.010440637357532978], "dbf80e15-499d-45af-ba7c-ecca12f0bcf5": [-0.006961646489799023, 0.0015603690408170223, 0.003434526501223445, -0.015226458199322224, -0.007976743392646313, 0.02581639215350151, 0.004259292967617512, -0.016145532950758934, -0.008443139493465424, -0.007921873591840267, 0.004259292967617512, 0.058381807059049606, -0.019794395193457603, -0.005970554891973734, -0.012702432461082935, 0.007530923932790756, 0.0047359773889184, 0.006543261930346489, 0.022565336897969246, -0.007764121983200312, 0.001147985807619989, 0.0066255670972168446, -0.013367732986807823, -0.05122125521302223, 0.011385549791157246, 0.007825850509107113, 0.011364973150193691, -0.02401939406991005, 0.009684575721621513, 0.02968473546206951, 0.021440498530864716, 0.003878631629049778, -0.010020655579864979, -0.003487681970000267, 0.0005499871913343668, -0.012791596353054047, 0.0003864485479425639, -0.0035562696866691113, 0.011749064549803734, -0.013827269896864891, 0.010994600132107735, 0.02026079222559929, 0.021070126444101334, 0.0017592732328921556, -0.02491103485226631, 0.02030194364488125, -0.014334818348288536, 0.008422563783824444, 0.005747645162045956, 0.02292199246585369, 0.007908156141638756, 0.009993220679461956, -0.028971422463655472, -0.0020816351752728224, -0.01838148944079876, 0.024787576869130135, -0.00855288002640009, 0.009458237327635288, 0.002263392321765423, -0.024760141968727112, 0.01650218851864338, 0.007510347757488489, -0.038765739649534225, 0.00022205252025742084, 0.022126376628875732, 0.00040681048994883895, 0.003153317142277956, 0.010795695707201958, 0.004053530283272266, -0.0049554575234651566, 0.022647641599178314, 0.03832677751779556, -0.0070096575655043125, -0.002503449097275734, 0.03465048223733902, -0.008093342185020447, -0.01272300910204649, 0.004063818138092756, -0.018258031457662582, -0.004976034164428711, 0.0013888998655602336, -0.018408924341201782, -0.017860224470496178, 0.012578974477946758, 0.028120936825871468, -0.01954747922718525, -0.019300565123558044, 0.016749104484915733, -0.013998739421367645, -0.01853238232433796, 0.009945209138095379, 0.02540486492216587, 0.021769719198346138, 0.01751728542149067, -0.035500966012477875, 0.0006220042705535889, -0.007421183865517378, 0.006028854288160801, 0.0021433639340102673, -0.01942402310669422, -0.017681896686553955, 0.014554299414157867, -0.030535221099853516, -0.010692814365029335, -0.045075803995132446, -0.01567913591861725, 0.009814892895519733, -0.014664039015769958, -0.013470614328980446, -0.020356815308332443, -0.017640743404626846, 0.045377589762210846, -0.00021744427795056254, -0.046173207461833954, -0.040987979620695114, -0.006862194277346134, -0.0073251607827842236, -0.01661192812025547, -0.003038432914763689, -0.006104300729930401, 0.02164626307785511, 0.008580314926803112, 0.009225038811564445, -0.013546060770750046, 0.016529623419046402, 0.0037791794165968895, -0.010315582156181335, -0.024828728288412094, 0.0014386259717866778, -0.019149672240018845, 0.029821909964084625, 0.001939315814524889, 0.0005894250934943557, 0.009574836120009422, -0.038656000047922134, -0.0012071426026523113, 0.021317042410373688, -0.02957499399781227, -0.03972596675157547, 0.023690173402428627, -0.0004771128296852112, 0.014842367731034756, 0.0013940440258011222, -0.03467791527509689, 0.006766171660274267, 0.04930080100893974, 0.019492609426379204, 0.016076944768428802, -0.0007626089500263333, -0.0005941404961049557, -0.008827230893075466, -0.029712170362472534, -0.007544641382992268, -0.0036522923037409782, 0.019629785791039467, 0.007146832998842001, 0.01680397428572178, 0.005240096244961023, -0.011845086701214314, -0.0025463164784014225, 0.009615988470613956, 0.017270369455218315, -0.008230517618358135, -0.0012431511422619224, -0.022153811529278755, 0.038244474679231644, 0.030233435332775116, 0.0021759432274848223, -0.007606370374560356, 0.009917774237692356, -0.006001419387757778, 0.004197563976049423, -0.011906815692782402, 0.01514415256679058, 0.007853285409510136, 0.006848476827144623, 0.013292286545038223, -0.013580354861915112, -0.015171588398516178, 0.01071339100599289, -0.004060389008373022, -0.006159170996397734, 0.0030264300294220448, 0.03769577294588089, -0.002685206476598978, -0.03270259127020836, 0.0063683632761240005, -0.02814837172627449, -0.0012928772484883666, -0.004979463294148445, 0.007997320033609867, 0.04087824001908302, 0.009225038811564445, 0.002369703259319067, -0.5860128998756409, -0.018216880038380623, -0.0017969964537769556, -0.0069136349484324455, 0.017613308504223824, 0.011598171666264534, 0.0004818282322958112, 0.0028806813061237335, 0.005840238183736801, 0.053964763879776, -0.0024194293655455112, 0.017942529171705246, -0.022428160533308983, -0.009869762696325779, 0.024554379284381866, -0.029218338429927826, 0.0076955342665314674, -0.022222397848963737, 0.0056790574453771114, 0.006241476163268089, -0.03868343308568001, 0.025624345988035202, -0.02259277179837227, 0.0075995116494596004, 0.0001336387504125014, 0.007908156141638756, -0.027723127976059914, -0.01180393435060978, 0.029739605262875557, 0.02739390730857849, -0.028395287692546844, 0.03037061169743538, 0.01747613400220871, 0.0007437473395839334, 0.05089203640818596, 0.002836099360138178, -0.035418663173913956, 0.02927320823073387, 0.013621507212519646, 0.04581654816865921, -0.022990580648183823, -0.024869881570339203, 0.026858923956751823, -0.005188655573874712, -0.0018707280978560448, -0.009629705920815468, 0.00941708404570818, 0.01593977026641369, 0.012222318910062313, 0.0032030432485044003, -0.016735386103391647, 0.0038340496830642223, -0.01559683121740818, -0.027448777109384537, 0.019780678674578667, 0.027297884225845337, 0.04205794632434845, -0.02717442624270916, 0.007393748499453068, -0.014238796196877956, -0.008909535594284534, 0.0034996848553419113, -0.013429461978375912, -0.016927432268857956, -0.009355355054140091, 0.00593969039618969, 0.007489771116524935, -0.0007343165343627334, -0.010418464429676533, -0.03333359584212303, 0.011831369251012802, -0.01676282100379467, 0.012414364144206047, -0.016968583688139915, 0.029081163927912712, 0.017805354669690132, 0.0067010135389864445, -0.019190823659300804, -0.021742284297943115, 0.025130514055490494, -0.011646183207631111, -0.003172178752720356, -0.015775159001350403, 0.005973984487354755, 0.008600891567766666, -0.013731247745454311, -0.016282707452774048, -0.019177107140421867, 0.004423903301358223, 0.007585794199258089, -0.013299144804477692, 0.03679041564464569, 0.005366983357816935, -0.03950648754835129, -0.0027195003349334, 0.018326619639992714, -0.019533762708306313, -0.0042078522965312, 0.008621467277407646, -0.031166227534413338, -0.016639363020658493, 0.010514486581087112, 0.01646103523671627, -0.011529583483934402, 0.05009641870856285, 0.0023748474195599556, -0.022935710847377777, 0.01585746370255947, 0.02375876158475876, -0.030343176797032356, -0.017709331586956978, -0.014609169214963913, -0.028505027294158936, 0.0078121330589056015, 0.028724508360028267, -0.029190903529524803, 0.013895858079195023, -0.004002089146524668, 0.018559817224740982, 0.00016568203864153475, 0.02417028695344925, 0.026337657123804092, 0.02566549926996231, -0.0025840396992862225, 0.008635184727609158, 0.014760062098503113, 0.007921873591840267, -0.007242855615913868, 0.0030744413379579782, 0.009821751154959202, -0.0054801530204713345, -0.013703812845051289, 0.014046750962734222, -0.020658599212765694, -0.007784698158502579, 0.0027332177851349115, 0.03048035129904747, -0.01747613400220871, 0.02769569307565689, 0.016529623419046402, -0.012064567767083645, -0.012462375685572624, 0.021673697978258133, -0.01041160523891449, -0.018244314938783646, -0.03783294931054115, -0.005840238183736801, 0.007997320033609867, -0.0035768458619713783, 0.003803185187280178, -0.017942529171705246, -0.013799834996461868, -0.021975483745336533, 0.029382949694991112, -0.004262722562998533, -0.010301864705979824, 0.002410855842754245, 0.005065198056399822, 0.013758682645857334, -0.03555583581328392, -0.010747685097157955, 0.0034208090510219336, -0.028120936825871468, 0.014677757397294044, -0.012791596353054047, -0.004797705914825201, 0.0018793016206473112, 0.001521788421086967, -0.0014789211563766003, -0.02894398756325245, 0.009705152362585068, -0.02484244666993618, 0.023360952734947205, 0.012654420919716358, 0.006004848517477512, -0.009972644038498402, -0.005500729661434889, -0.006399227771908045, -0.004108400084078312, -0.013079664669930935, -0.026749182492494583, 0.000942222832236439, 0.00764752272516489, 0.004811423830688, 0.029629863798618317, 0.02397824265062809, 0.015061847865581512, -0.002554890001192689, -0.04192076995968819, 2.4380766262765974e-05, 0.008374552242457867, 0.036406323313713074, 0.0036454335786402225, 0.007551500108093023, 0.028175806626677513, 0.02438976801931858, 0.019835548475384712, 0.009890339337289333, -0.014622886665165424, 0.01317568775266409, 0.008573455736041069, 0.030206000432372093, -0.02462296560406685, -0.011419843882322311, -0.0026440538931638002, -0.02214009314775467, 0.02030194364488125, -0.025199102237820625, -0.007887579500675201, 0.005188655573874712, -0.011934250593185425, -0.04491119459271431, -0.0153499161824584, -0.019588632509112358, 0.00020061887335032225, 0.019629785791039467, -0.0014986401656642556, -0.0024211439304053783, 0.00043681758688762784, 0.02183830738067627, 0.006196894217282534, -0.004379321355372667, 0.004996610339730978, -0.00825109425932169, 0.0043587451800704, 0.012839607894420624, -0.008738067001104355, -0.0038306203205138445, -0.0074006072245538235, -0.025240255519747734, -0.01631014235317707, 0.0048491470515728, -0.0010451043490320444, 0.011563877575099468, 0.014965824782848358, -0.026227917522192, 0.033772557973861694, 0.011378690600395203, 0.027709409594535828, 0.002289112890139222, -0.004739406518638134, -0.0006130021065473557, -0.0065981317311525345, -0.012284047901630402, 0.011673618108034134, -0.0114061264321208, 0.04065875709056854, 0.016749104484915733, -0.029108598828315735, 0.010363593697547913, -0.040384408086538315, 0.007908156141638756, 0.0017421263037249446, 0.016639363020658493, 0.008244235068559647, -0.03240080550312996, 0.008751784451305866, 0.015528243966400623, 0.02886168286204338, 0.03259285166859627, 0.03253798186779022, 0.02104269154369831, -0.006142023950815201, -0.006947929039597511, 0.005370412953197956, -0.04886184260249138, 0.007407465949654579, -0.025624345988035202, -0.005318972282111645, 4.712721784017049e-05, -0.03443099930882454, -0.006591273006051779, 0.01717434823513031, -0.020987819880247116, 0.010102961212396622, 0.00023769907420501113, 0.04024723172187805, 0.028011195361614227, 0.04107028618454933, 0.006457527168095112, -0.007345737423747778, -0.0009002129081636667, 0.035308923572301865, 0.0033470774069428444, 0.006423233542591333, 0.008600891567766666, -0.011296385899186134, -0.01336087379604578, -0.005586463958024979, 0.016186684370040894, 0.007688675541430712, 0.0069719343446195126, 0.007633805274963379, -0.014938389882445335, -0.02401939406991005, -0.005805944558233023, 0.031166227534413338, -0.016337577253580093, 0.004533643834292889, -0.02240072563290596, 0.007743545807898045, 0.0021193583961576223, -0.01120036281645298, -0.017791636288166046, 0.05799771472811699, 0.025651780888438225, -0.015061847865581512, -0.009081005118787289, 0.011989121325314045, 0.0038854903541505337, 0.008518585935235023, -0.015171588398516178, 0.01596720516681671, 0.013950727880001068, 5.685273208655417e-05, 0.006334069650620222, 0.015391068533062935, 0.007956167683005333, -0.005312113557010889, 0.019039930775761604, -0.02620048262178898, -0.017297804355621338, -0.02503449283540249, 0.012661280110478401, -0.02443092130124569, 0.025830108672380447, 0.022428160533308983, -0.0034551029093563557, -0.038463953882455826, -0.006591273006051779, -0.03223619610071182, 0.007414325140416622, 0.0016924001974985003, -0.0048388587310910225, -0.001006523729301989, -0.005099491681903601, 0.004365603905171156, -0.013827269896864891, 0.03585762158036232, 0.011872522532939911, -0.007496630307286978, -0.012428082525730133, 0.02886168286204338, 0.002572036813944578, 0.01048705168068409, -8.412703755311668e-05, 0.015199023298919201, 0.008148212917149067, -0.008676338009536266, 0.010397887788712978, 0.0002698495227377862, 0.01928684674203396, 0.0012320056557655334, -0.011927392333745956, 0.009458237327635288, -0.009609129279851913, 0.023237494751811028, 0.034897394478321075, -0.0017935670912265778, 0.02246931381523609, -0.016790255904197693, 0.046776775270700455, -0.004465056117624044, 0.00021540808666031808, 0.015308763831853867, 0.01913595385849476, 0.011858804151415825, -0.002592613222077489, 0.020644882693886757, -0.014444558881223202, 0.004303874913603067, 0.0035734164994210005, -0.002822381677106023, -0.03231849893927574, 0.022414444014430046, 0.005843667779117823, -0.07495258003473282, -0.0025480312760919333, 0.013950727880001068, 0.03574788197875023, -0.044719148427248, -0.0226613599807024, 0.022867122665047646, 0.008408845402300358, 0.0031807522755116224, -0.017393827438354492, 0.01548709161579609, -0.003597422270104289, 0.0014703477500006557, -0.028505027294158936, -0.02855989709496498, 0.0014943534042686224, -0.04581654816865921, -0.02721557952463627, -0.006426662672311068, -0.043347395956516266, -0.027599669992923737, 0.006923923268914223, 0.008237376809120178, 0.028669636696577072, 0.021714849397540092, -0.0043313102796673775, -0.0013023080537095666, 0.023813631385564804, -0.013113958761096, 0.009286767803132534, -0.01901249587535858, -0.035308923572301865, 0.014321100898087025, -0.014677757397294044, 0.011186645366251469, -0.016899997368454933, -0.024101700633764267, 0.006159170996397734, -0.002259962959215045, -0.008196224458515644, 0.010281288996338844, 0.0193965882062912, 0.012201743200421333, -0.0032699161674827337, 0.010288147255778313, 0.023649021983146667, 0.014760062098503113, 0.005569316912442446, 0.019369151443243027, -0.04013749212026596, -0.025775238871574402, -0.004561078734695911, -0.008559738285839558, -0.0010691100033000112, 0.02214009314775467, -0.011241516098380089, 0.0028498168103396893, -0.002501734532415867, 0.023950807750225067, -0.01987670175731182, 0.02600843645632267, 0.020096180960536003, 0.02375876158475876, 0.017407545819878578, -0.0030470064375549555, 0.02449950762093067, -0.01641988381743431, -0.017723048105835915, 0.007187985815107822, -0.010850566439330578, 0.03558327257633209, -0.0020799203775823116, -0.005291537381708622, 0.003844337770715356, -0.014417123980820179, -0.03108392283320427, -0.011412984691560268, 0.012037132866680622, 0.008984982036054134, 0.02503449283540249, -0.0013374591944739223, -0.04005518555641174, -0.015541961416602135, 0.0112552335485816, -0.01585746370255947, 0.015912335366010666, -0.004513067193329334, -0.02555575780570507, 0.0003050006926059723, -0.022428160533308983, -0.017558438703417778, -0.023429540917277336, 0.04589885473251343, -0.02927320823073387, -0.011721629649400711, 0.008683196268975735, 0.0023251213133335114, -0.0009430801728740335, 0.014513147063553333, 0.009917774237692356, -0.04540502279996872, -0.02998652122914791, -0.004564507864415646, -0.01883416809141636, -0.004845717456191778, -0.0028069496620446444, 0.00577850965783, 0.020617447793483734, 0.03898521885275841, 0.006512397434562445, 0.009499389678239822, 0.0026183335576206446, -0.0015620837220922112, -0.00956797692924738, 0.005997989792376757, -0.004327880684286356, -0.010761402547359467, -0.018326619639992714, -0.012921913526952267, 0.007853285409510136, 0.008079624734818935, 0.01320998091250658, -0.0013760396977886558, 0.036406323313713074, -0.005329260602593422, 0.0038306203205138445, -0.01381355244666338, -0.05871102958917618, -0.01513043511658907, 0.012613268569111824, 0.0065981317311525345, 0.009183886460959911, -0.03593992814421654, -0.011625606566667557, 0.0178876593708992, 0.005706492345780134, 0.01412905566394329, 0.006227758713066578, 0.009890339337289333, -0.016968583688139915, 0.0132648516446352, 0.006388939451426268, -0.006392369046807289, -0.03555583581328392, 0.014485711231827736, -0.01935543492436409, 0.024417202919721603, 0.002743505872786045, -0.009259332902729511, 0.024348614737391472, 0.008847806602716446, 0.0387931764125824, -0.011625606566667557, 0.012716149911284447, -0.018546100705862045, -0.018408924341201782, -0.011296385899186134, -0.028477592393755913, -0.034101780503988266, -0.02510307915508747, -0.014856085181236267, -0.02026079222559929, 0.02404683083295822, 0.007640664000064135, 0.013354015536606312, -0.00012142157356720418, -0.023799914866685867, -0.0168314091861248, 0.013834129087626934, -0.011179787106812, 0.048614926636219025, -0.008710631169378757, 0.02209893986582756, 0.039972882717847824, -0.005500729661434889, 0.004749694839119911, -0.0400003157556057, -0.020809492096304893, 0.013278569094836712, 0.026296505704522133, 0.05069999024271965, -0.029739605262875557, -0.02378619648516178, 0.007517206482589245, -0.004437620751559734, -0.009437660686671734, -0.03028830513358116, 0.02179715409874916, 0.01581631228327751, -0.010740825906395912, -0.017599590122699738, -5.106565004098229e-05, -0.025432299822568893, 0.013621507212519646, -0.02762710489332676, -0.003096732310950756, -0.004139264579862356, -0.007640664000064135, -0.0055830348283052444, -0.0033607948571443558, 0.017229218035936356, 0.022194962948560715, -0.0001371753023704514, 0.012455517426133156, -0.006814183201640844, -0.00017018310609273612, -0.027489930391311646, 0.007270290981978178, -0.007229138165712357, 0.022085223346948624, -0.006035713013261557, -0.0006138594471849501, 0.04310047999024391, -0.009897197596728802, -0.007661240641027689, 0.0035185464657843113, -0.004653672222048044, 0.04340226575732231, -0.012510387226939201, -0.003710591932758689, -0.025007057934999466, -0.022880839183926582, 0.01544593833386898, -0.004259292967617512, 0.012441799975931644, -0.009615988470613956, -0.004856005776673555, -0.008168788626790047, 0.016227837651968002, -0.021179866045713425, -0.0043210219591856, -0.008360834792256355, -0.004317592363804579, -0.004084394313395023, -0.020878080278635025, 0.0021553668193519115, 0.02397824265062809, -0.03945161774754524, -0.026474833488464355, 0.0069136349484324455, -0.013031653128564358, 0.007777839433401823, -0.0018552959663793445, 0.01665308140218258, 0.005034333560615778, 0.03676297888159752, -0.030617527663707733, 0.022414444014430046, 0.01559683121740818, 0.0023902796674519777, -0.015404785983264446, -0.0028138083871454, -0.021673697978258133, -0.008539162576198578, 0.00986290443688631, -0.010144113563001156, 0.003137884894385934, -0.03706476464867592, 0.004224999342113733, 0.02423887513577938, 0.016378730535507202, 0.04266151785850525, 0.016515906900167465, 0.013450037688016891, 0.004430762026458979, 0.008559738285839558, -0.026488550007343292, 0.009739446453750134, 0.00552473496645689, -0.0008654904086142778, -0.0038923490792512894, -0.024485791102051735, 0.00679360656067729, 0.0095474012196064, -0.011515866033732891, 0.008840948343276978, -0.02855989709496498, -0.012208601459860802, 0.0013408885570243, 0.008134495466947556, -0.01624155603349209, 0.005473294295370579, -0.02747621200978756, -0.007064527831971645, -0.03127596899867058, -0.008559738285839558, 0.018669558688998222, -0.01687256246805191, 0.010473334230482578, 0.0033522213343530893, 0.0018930190708488226, -0.017599590122699738, -0.010747685097157955, -0.04104284942150116, 0.008168788626790047, -0.01533619873225689, -0.00888895895332098, -0.03525405004620552, -0.020658599212765694, 0.04249690845608711, 0.018724428489804268, -0.0234158243983984, -0.02784658595919609, -0.012935630977153778, -0.010048090480268002, -0.003861484583467245, 0.012983642518520355, 0.007352596148848534, 0.027188144624233246, 0.033278726041316986, -0.004413615446537733, 0.02559691108763218, -0.004166699480265379, 0.002836099360138178, -0.009684575721621513, -0.0031275968067348003, -0.043429698795080185, -0.007318302057683468, -0.012092002667486668, -0.0009396508103236556, -0.016639363020658493, 0.007860144600272179, -0.005586463958024979, -0.012105720117688179, 0.01010981947183609, 0.02322377823293209, -0.0006022853194735944, -0.03352564200758934, -0.007105680648237467, -0.029382949694991112, 0.0008320539491251111, -0.0029578423127532005, -0.011131775565445423, -0.021015256643295288, -0.0018432930810377002, -0.0051543619483709335, -0.024060547351837158, -0.021824590861797333, -0.002199948765337467, 0.020315662026405334, -0.005373842548578978, -0.007338878698647022, -0.048724666237831116, -0.02976704016327858, -0.001370895653963089, 0.0002709212130866945, 0.001028814702294767, 0.0017867082497105002, -0.0026937799993902445, 0.01984926499426365, 0.008875241503119469, 0.018504947423934937, -0.01672166958451271, 0.0046776775270700455, -0.019862983375787735, -0.026598289608955383, 0.017832789570093155, -0.005137214902788401, -5.318222065398004e-06, 0.008107060566544533, 0.007935591042041779, -0.01641988381743431, 0.012174307368695736, 0.012366353534162045, -0.014938389882445335, -0.02792889066040516, 0.010665379464626312, 0.0004374606069177389, -0.04249690845608711, 0.002743505872786045, -0.0020181916188448668, -0.003542552003636956, 0.011735347099602222, -0.04982206970453262, 0.024005677551031113, -0.03157775476574898, 0.023182624951004982, -0.002800090704113245, 0.023470694199204445, -0.007880721241235733, -0.02935551479458809, -0.01343632023781538, -0.009780598804354668, 0.01823059655725956, 0.25371941924095154, -0.021920612081885338, 0.0021690845023840666, 0.022085223346948624, 0.02825811132788658, 0.030343176797032356, 0.014389689080417156, 0.0023748474195599556, 0.015953486785292625, 0.010528204031288624, -0.0059294020757079124, 0.006488391663879156, -0.012928771786391735, -0.011234656907618046, 0.02363530360162258, -0.006025425158441067, -0.04430762305855751, -0.032757461071014404, -0.019931571558117867, -0.003710591932758689, 0.006320351734757423, 0.007345737423747778, 0.005233237519860268, -0.013594072312116623, 0.009293626062572002, 0.01518530584871769, -0.011961686424911022, 0.015103000216186047, 0.0025823249015957117, 0.014293665997684002, -0.021714849397540092, 0.017805354669690132, 0.00668043689802289, 0.013155111111700535, -0.008209941908717155, -0.005168079398572445, 0.023182624951004982, 0.014252513647079468, 0.01574772410094738, 0.002556604566052556, 0.013744965195655823, 0.0010168119333684444, 0.0017798495246097445, 0.003895778441801667, -0.021783437579870224, 0.0008654904086142778, -0.0018055698601529002, -0.01961606740951538, -0.007880721241235733, 0.022990580648183823, -0.032345935702323914, -0.0002409141161479056, 0.018559817224740982, 0.02814837172627449, -0.008600891567766666, 0.0020953526254743338, 0.025171667337417603, -0.025528322905302048, 0.016899997368454933, 0.03401947394013405, -0.0043313102796673775, 0.031742364168167114, -0.00019322427397128195, 0.040713630616664886, -0.01187938079237938, -0.016022074967622757, -0.008786077611148357, 0.0015663704834878445, 0.0020439119543880224, -0.011646183207631111, -0.0003341504489071667, -0.015226458199322224, -0.0020216209813952446, 0.010480192489922047, -0.03659836947917938, -0.025651780888438225, 0.04460940882563591, -0.006268911063671112, 0.010967165231704712, 0.028505027294158936, 0.0026371951680630445, 0.033580511808395386, 0.0017112618079409003, -0.010308723896741867, -0.030837006866931915, -0.028916552662849426, 0.006474674213677645, 0.0015732292085886002, -0.019437739625573158, -0.003995230421423912, 0.021605109795928, -0.02367645688354969, 0.000895068806130439, -0.004029524512588978, -0.011289526708424091, 0.004026094917207956, 0.010000078938901424, 0.008772360160946846, -0.01366265956312418, -0.011906815692782402, -0.04011005908250809, 0.03432125970721245, 0.004046671092510223, 0.01585746370255947, -0.023100320249795914, 0.005775080062448978, 0.021330758929252625, 0.0180385522544384, 0.027119556441903114, -0.005185226444154978, 0.010644802823662758, -0.06694154441356659, 0.0012388643808662891, 0.00794930849224329, -0.026886358857154846, 0.0037997558247298002, -0.011138633824884892, -0.019122237339615822, -0.022318420931696892, -0.0014197643613442779, 0.02480129338800907, -0.003559699049219489, -0.015734007582068443, -0.008840948343276978, -0.012482952326536179, -0.02477385848760605, 0.006142023950815201, -0.009760022163391113, 0.002410855842754245, -0.009725729003548622, 0.021221019327640533, -0.03311411663889885, 0.016776539385318756, 0.004756553564220667, 0.0018398637184873223, 0.020878080278635025, -0.005068627186119556, -0.023511845618486404, -0.015020695514976978, 0.0035151171032339334, -0.01033615879714489, 0.008957547135651112, -0.005240096244961023, 0.001939315814524889, 0.021413063630461693, 0.007256573531776667, 0.003786038141697645, 0.024485791102051735, 0.01172848790884018, 0.013381450437009335, -0.021522805094718933, -0.009890339337289333, -0.004211281891912222, -0.0005585606559179723, 0.017201783135533333, -0.0011754208244383335, -0.022579053416848183, -0.04307304322719574, -0.003281919052824378, 0.006550120655447245, -0.031961843371391296, -0.0032184754963964224, 0.002405711915344, -0.004310733638703823, -0.012661280110478401, -0.023141473531723022, -0.17459672689437866, 0.01373810600489378, 0.045651938766241074, -0.02998652122914791, 0.014170208014547825, 0.008388269692659378, 0.005960266571491957, -0.012146872468292713, -0.011015176773071289, -0.012215460650622845, 0.008580314926803112, 0.0172840878367424, 0.005428712349385023, -0.006279199384152889, -0.005106350407004356, -0.014499428682029247, -0.02432117983698845, 0.022688794881105423, 0.03476022183895111, -0.009410225786268711, 0.052565574645996094, -0.034403566271066666, -0.007990460842847824, 0.03832677751779556, 0.0034482441842556, 0.02067231759428978, -0.009252473711967468, 0.012510387226939201, -0.021522805094718933, -0.04386866092681885, -0.015377351082861423, 0.003981512971222401, 0.02488359995186329, -0.0023748474195599556, 0.0025497458409518003, -0.0016169538721442223, 0.021070126444101334, 0.0009576550801284611, -0.02570665068924427, 0.0046982541680336, 0.02002759277820587, 0.0471334345638752, 0.007956167683005333, 0.0007017374155111611, -0.013991880230605602, 0.015528243966400623, -0.007249714341014624, -0.0013486046809703112, -0.01279845554381609, 0.00965714082121849, 0.02609074115753174, -0.023813631385564804, 0.022126376628875732, -0.015761442482471466, 0.009972644038498402, -0.00577850965783, -0.014033033512532711, -0.004139264579862356, -0.008930112235248089, -0.023882219567894936, -0.01620040275156498, -0.03956135734915733, 0.027654539793729782, 0.0008080482366494834, -0.0306998323649168, -0.01995900645852089, -0.03904008865356445, 0.0345681756734848, -0.017297804355621338, -0.006570696830749512, 0.006725018844008446, -0.035116877406835556, -0.014691474847495556, 0.002686921274289489, 0.02495218627154827, 0.01961606740951538, -0.0017969964537769556, 0.0025994719471782446, 0.018134575337171555, -0.02751736529171467, -0.006512397434562445, 0.04266151785850525, 0.008738067001104355, 0.013443179428577423, 0.003916354849934578, -8.696699660504237e-05, 0.026447398588061333, 0.023470694199204445, -0.030452916398644447, -0.027736846357584, 0.025583192706108093, -0.0033796564675867558, -0.018916474655270576, -0.013141393661499023, 0.009293626062572002, 0.004564507864415646, 0.0074006072245538235, 0.0090947225689888, 0.001994185848161578, 0.003393373917788267, 0.004965745843946934, 0.008004178293049335, -0.020946668460965157, 0.011070046573877335, 0.002553175203502178, 0.011227798648178577, -0.00757207628339529, 0.036625806242227554, 0.02045283652842045, -0.009375931695103645, 0.03333359584212303, -0.0002158367569791153, 0.0390949584543705, 0.02927320823073387, 0.007284008432179689, 0.02240072563290596, -0.03138570860028267, -0.008065907284617424, 0.01710576005280018, 0.006426662672311068, -0.0032802042551338673, -0.017956247553229332, 0.021673697978258133, 0.020535143092274666, -0.01954747922718525, -0.01916338875889778, -0.06145453453063965, -0.011831369251012802, 0.017832789570093155, 0.02954755909740925, 0.019835548475384712, 0.034074343740940094, -0.0010399601887911558, 0.05078229680657387, -0.018518665805459023, 0.05319657921791077, 0.0052298083901405334, -0.021481651812791824, 0.015994640067219734, 0.01570657081902027, -0.003909496124833822, 0.0017472703475505114, 0.011913674883544445, -0.027407625690102577, 9.629062697058544e-05, 0.0351717472076416, -0.004766841419041157, -0.009375931695103645, 0.0028240964747965336, -0.010932871140539646, 0.004098112229257822, 0.004063818138092756, -0.006382080726325512, 0.01604950986802578, 0.0017301234183833003, 0.005946549121290445, 0.025116797536611557, -0.028052348643541336, 0.013470614328980446, -0.004118688404560089, 0.020864363759756088, -0.011412984691560268, -0.04214025288820267, -0.024293744936585426, 0.01898506097495556, 0.003954078070819378, 0.016131814569234848, 0.007222279440611601, 0.0020936380606144667, 0.008484291844069958, -0.014197643846273422, -0.006824471056461334, -0.010418464429676533, 0.016282707452774048, -0.019177107140421867, 0.006169458851218224, -0.03382742777466774, -0.0037928970996290445, -0.015418503433465958, 0.005569316912442446, -0.0027092122472822666, 0.004050100687891245, 0.01702345535159111, 0.011488431133329868, -0.029108598828315735, -0.0024588671512901783, -0.011913674883544445, 0.009725729003548622, -0.02687264047563076, -0.005761362612247467, 0.010960306040942669, 0.011598171666264534, -0.035418663173913956, -0.025720369070768356, 0.014869802631437778, -0.011509007774293423, -0.014156490564346313, 0.020699752494692802, 0.010829989798367023, 0.016968583688139915, -0.03193441033363342, -0.009554259479045868, -0.012812172994017601, -0.02401939406991005, 0.03363538160920143, -0.006255193613469601, -0.0032201900612562895, -0.007709251716732979, -0.008086483925580978, -0.018889037892222404, 0.03492483124136925, 0.017572155222296715, -0.002410855842754245, -0.007757263258099556, -0.014773779548704624, -0.018367772921919823, -0.0035185464657843113, 0.02015105076134205, 0.00941708404570818, -0.014664039015769958, -0.022839687764644623, -0.01056249812245369, 0.0033865151926875114, -0.0017952817725017667, 0.0010759687284007668, 0.011858804151415825, -0.017338957637548447, -0.04268895462155342, -0.08016524463891983, 0.0012302909744903445, -0.020727187395095825, -0.016131814569234848, 0.005799085833132267, 0.020164769142866135, 0.03901265561580658, -0.010816272348165512, 0.010926012881100178, 0.0020027593709528446, -0.026433680206537247, 0.01503441296517849, -0.004461626522243023, 0.002722929697483778, -0.031166227534413338, -0.031166227534413338, 0.006008278112858534, -0.007002798840403557, 0.01976696029305458, 0.006961646489799023, 0.01980811357498169, -0.015061847865581512, 0.0274350605905056, -0.007064527831971645, -0.034897394478321075, 0.009122157469391823, 0.0005054052453488111, 0.014787496998906136, -0.0026766329538077116, -0.0038374790456146, 0.014444558881223202, -0.006917064543813467, 0.00028120935894548893, 0.01412905566394329, -0.0037208800204098225, -0.026543419808149338, 0.005109780002385378, 0.003882060991600156, 0.017297804355621338, 0.025157948955893517, -0.014307383447885513, -0.023690173402428627, 0.0035871341824531555, -0.0027657970786094666, -0.00881351251155138, -0.004224999342113733, -0.01548709161579609, -0.013854704797267914, 0.019739525392651558, 0.0016735387034714222, 0.031769800931215286, 0.005775080062448978, 0.0019135954789817333, -0.0387931764125824, -0.010288147255778313, -0.024609249085187912, 0.015432220883667469, -0.021440498530864716, -0.0056619103997945786, -0.0017412689048796892, 0.02954755909740925, -0.01687256246805191, 0.03201671317219734, 0.018655840307474136, -0.013333438895642757, 0.005754503887146711, -0.014471993781626225, -0.003509972942993045, -0.018724428489804268, -0.02814837172627449, -0.00018154292774852365, 0.018998779356479645, 0.024815011769533157, 0.003415664890781045, 0.029849344864487648, -0.00950624793767929, 0.011831369251012802, -0.018395207822322845, -0.01827174983918667, 0.016996020451188087, 0.029739605262875557, 0.0009885195177048445, -0.026447398588061333, 0.03281233087182045, 0.01497954223304987, 0.024334898218512535, -0.003659151028841734, -0.013127676211297512, -0.00593969039618969, -0.008443139493465424, -0.0049554575234651566, 0.007915014401078224, -0.0015235032187774777, -0.008847806602716446, 0.014526864513754845, 0.023511845618486404, 0.005034333560615778, -0.022647641599178314, 0.005017186515033245, 0.0032716309651732445, 0.028203241527080536, -0.008580314926803112, -0.0049726045690476894, -0.028669636696577072, -0.026104459539055824, -0.02894398756325245, -0.005315542686730623, -0.01620040275156498, 0.0060905832797288895, 0.009814892895519733, -0.0013417458394542336, 0.00888895895332098, -0.02345697581768036, 0.017599590122699738, -0.02244187891483307, 0.008882100693881512, -0.014238796196877956, -0.030809571966528893, -0.024705272167921066, -0.011063188314437866, 0.01528132800012827, 0.006340928375720978, 0.01578887738287449, 0.013957587070763111, 0.04063132405281067, 0.016899997368454933, -0.0014652037061750889, -0.03171492740511894, 0.031166227534413338, 0.006176318041980267, -0.012620127759873867, -0.0030710119754076004, -0.0039129252545535564, -0.028285546228289604, -0.010795695707201958, -0.01313453447073698, -0.010288147255778313, -0.0023577003739774227, -0.027750562876462936, 0.07901297509670258, -0.001961606787517667, -0.0004762554890476167, -0.0048388587310910225, -0.019643502309918404, -0.009403366595506668, 0.006851906422525644, 0.021248454228043556, -0.0010030943667516112, -0.018847886472940445, -0.00022976862965151668, -0.0067833187058568, -0.019478892907500267, -0.02246931381523609, 0.007091962732374668, -0.007743545807898045, -0.023690173402428627, 0.03078213706612587, -0.018518665805459023, 0.026666877791285515, 0.03484252467751503, 0.021056408062577248, 0.015240175649523735, 0.007928731851279736, -0.010871142148971558, -0.005493870936334133, 0.02853246219456196, -0.017709331586956978, 0.02641996182501316, -0.022030353546142578, 0.009794316254556179, 0.014012456871569157, -0.008635184727609158, -0.0259261317551136, 0.0014823505189269781, 0.030919311568140984, 0.010130396112799644, -0.021961765363812447, 0.016927432268857956, 0.003707162570208311, -0.0028395287226885557, 0.004986322019249201, -0.01691371388733387, -0.011138633824884892, -0.007105680648237467, 0.0012508672662079334, -7.786439937262912e-07, -0.022167528048157692, 0.00029685592744499445], "084f7f0a-335a-4332-8fba-ea8af93adb07": [-0.004678745754063129, -0.006869699340313673, 0.0043465690687298775, -0.009880493395030499, -0.02313929609954357, 0.01771138608455658, 0.0008922835113480687, -0.013386019505560398, -0.0034295490477234125, -0.027097146958112717, 0.022220509126782417, 0.021485479548573494, 0.0034754883963614702, -0.005247686989605427, -0.010311616584658623, -0.03089951165020466, 0.011626188643276691, 0.014742996543645859, 0.019973015412688255, 0.0033977448474615812, -0.007191274780780077, 0.005456181243062019, -0.02718195877969265, -0.056229762732982635, -0.003129176329821348, 0.012085582129657269, 0.01662297733128071, -0.01241775881499052, 0.008841557428240776, -0.004109804984182119, 0.02114623598754406, 0.004240555223077536, 0.000264372123638168, 0.0008269082754850388, 0.02096247859299183, -0.002180352108553052, 0.022178104147315025, -0.004611603915691376, 0.03564893454313278, -0.017329735681414604, 0.005816628225147724, 0.01491261925548315, 0.0035196607932448387, 0.009138396941125393, -0.008495246060192585, 0.023916730657219887, -0.013004369102418423, 0.0066188001073896885, -0.004053263925015926, 0.02335132472217083, -0.014212927781045437, 0.02822796255350113, -0.026234902441501617, -0.005979182664304972, -0.006201812066137791, 0.01301143690943718, 0.0005172594101168215, 0.016721922904253006, -0.02295553870499134, -0.01154844556003809, 0.01587381213903427, -0.008163068443536758, -0.03516833856701851, -0.005392572842538357, 0.023266512900590897, -0.0014470894820988178, -0.003820033511146903, -0.0023340722545981407, -0.02873682975769043, 0.016651246696710587, 0.0030832369811832905, 0.0161565151065588, -0.024849653244018555, -0.024750707671046257, 0.04760729894042015, 0.015237728133797646, -0.0005322780343703926, 0.015039836056530476, -0.007233680225908756, 0.019040092825889587, 0.012495502829551697, -0.0015681219520047307, -0.0007288454216904938, 0.02769082598388195, 0.016637111082673073, -0.007943973876535892, -0.02165510132908821, 0.00635376526042819, 0.0019806926138699055, 0.003099139081314206, 0.02769082598388195, 0.0031256426591426134, 0.038984838873147964, 0.023916730657219887, 0.007802621461451054, 0.014785402454435825, -0.02516062743961811, 0.0016069937264546752, -0.013096247799694538, -0.02764841914176941, -0.010558982379734516, 0.015576972626149654, -0.026503469794988632, -0.0007553488831035793, -0.040143921971321106, -0.01550629734992981, 0.03245438262820244, -0.011145592667162418, -0.030786430463194847, -0.021626831963658333, -0.03774094209074974, 0.013520303182303905, -0.024058083072304726, -0.0377974808216095, -0.045995887368917465, 0.00949177611619234, 0.02432665228843689, -0.002203321782872081, -0.020990747958421707, -0.012679260224103928, 0.018517091870307922, 0.013315343298017979, 0.022361861541867256, -0.019746851176023483, -0.0007942206575535238, 0.0034295490477234125, 0.0019877601880580187, -0.01901182346045971, -0.0017191917868331075, -0.027846312150359154, 0.035224877297878265, 0.006558725610375404, 0.009322154335677624, -0.0009329221211373806, -0.03525314852595329, 0.00804291944950819, -0.004572731908410788, -0.02118864096701145, -0.0377974808216095, -0.01344962790608406, 0.030588537454605103, 0.032878439873456955, -0.021739913150668144, -0.03567720577120781, -0.013350681401789188, 0.029514264315366745, -0.005053328350186348, 0.009951169602572918, 0.01677846349775791, -0.028114881366491318, -0.010332819074392319, -0.017032897099852562, 0.00392958102747798, 0.01724492385983467, -0.004752955865114927, 0.014898483641445637, 0.04169879108667374, -0.010424697771668434, -0.016835004091262817, -0.0026132422499358654, 0.008982909843325615, 0.02198021113872528, -0.003844770137220621, -0.0020566692110151052, -0.012142122723162174, 0.0239308662712574, 0.011209201067686081, -0.009103058837354183, 0.009265612810850143, 0.0018799795070663095, -0.016312003135681152, 0.003968453034758568, -0.0018994153942912817, 0.012403624132275581, -0.01398676447570324, 0.0072442819364368916, 0.018064765259623528, 0.0030001928098499775, -0.00863659754395485, -0.006155872717499733, 0.01181701384484768, 0.0012721666134893894, 0.006682408042252064, 0.02551400661468506, 0.01103957835584879, -0.03694937005639076, 0.014184657484292984, 0.02525957301259041, 0.01446029357612133, -0.010848754085600376, 0.019223850220441818, 0.042999230325222015, 0.002233359031379223, 0.021443074569106102, -0.5794294476509094, -0.021160369738936424, -0.0003871715161949396, -0.0067848884500563145, -0.00407446688041091, 0.018743254244327545, -0.022065022960305214, 0.010184399783611298, -0.03799537569284439, 0.03361346945166588, -0.017725521698594093, -0.0043465690687298775, -0.0035903367679566145, -0.016057569533586502, 0.011004241183400154, -0.01752762869000435, 0.022418402135372162, -0.024595219641923904, -0.008883963339030743, 0.0441017746925354, -0.023959137499332428, 0.01109611988067627, -0.030588537454605103, 0.005622269585728645, 0.03355692699551582, -0.0029701555613428354, -0.023902596905827522, -0.01699049212038517, 0.013456694781780243, 0.002968388609588146, -0.017018761485815048, 0.01926625519990921, 0.018601901829242706, 0.002001895336434245, 0.05459007993340492, 0.0038695065304636955, -0.030673349276185036, 0.00467167841270566, -0.008792084641754627, 0.05102801322937012, -0.012622719630599022, -0.028977127745747566, 0.01810717023909092, -0.025542277842760086, -0.013216396793723106, 0.006321961060166359, -0.01710357330739498, -0.008134798146784306, 0.020114365965127945, -0.009011180140078068, 0.011901824735105038, -0.0001578060764586553, 0.009548316709697247, -0.023577487096190453, 0.019676176831126213, 0.012552043423056602, 0.03446158021688461, -0.022983809933066368, 0.01152724213898182, -0.022969674319028854, 0.007435106672346592, 0.005890837870538235, -0.010452968999743462, -0.008127731271088123, -0.004717617761343718, -0.002132645808160305, -0.011103186756372452, 0.0010239173425361514, 0.008226676844060421, -0.02288486249744892, 0.0040355948731303215, -0.005731817334890366, 0.0048059625551104546, -0.008580056950449944, 0.020920071750879288, 0.031323567032814026, 0.013838345184922218, -0.015195323154330254, 0.010375224985182285, 0.006890902295708656, -0.016580570489168167, 0.006346697453409433, -0.000798637920524925, 0.001087525743059814, -0.018488820642232895, -0.013555641286075115, -0.01875738985836506, -0.00874967873096466, 0.013032639399170876, -0.004081534221768379, -0.009505911730229855, 0.026192495599389076, 0.002604407723993063, -0.05252634361386299, 0.005597532726824284, 0.013803007081151009, 0.006010986864566803, 0.012799409218132496, 0.01836160384118557, -0.024623490869998932, -0.042603444308042526, -0.02541506104171276, 0.017810331657528877, -0.013576844707131386, 0.029994860291481018, 0.004830698948353529, -0.019619636237621307, -0.005346633493900299, 0.030531996861100197, 0.002097307937219739, -0.0007853861898183823, -0.012205731123685837, -0.018488820642232895, 0.0064633130095899105, 0.01930866204202175, -0.036383964121341705, 0.0076542021706700325, 0.028242098167538643, 0.013930223882198334, 0.00997943989932537, 0.03451811894774437, -0.01070033386349678, 0.031606271862983704, 0.01229054294526577, 0.0215420201420784, 0.022404266521334648, -0.005219416692852974, -0.0014055673964321613, -0.017442816868424416, 0.01684913970530033, -0.020863531157374382, 0.006336096208542585, 0.018234387040138245, -0.015223593451082706, 0.0067848884500563145, -0.0006095797871239483, 0.010163197293877602, 0.007064058445394039, 0.01368285808712244, -0.014813672751188278, -0.0274363923817873, -0.017994089052081108, 0.03593163937330246, -0.026870984584093094, -0.026828579604625702, -0.019577229395508766, 0.0027298573404550552, 0.003784695640206337, -0.000909069029148668, -0.0025902725756168365, 0.028609612956643105, 0.01221986673772335, -0.033019788563251495, 0.03720380365848541, -0.012226934544742107, 0.006003919523209333, -0.019040092825889587, -0.027210230007767677, 0.004275893326848745, -0.025782575830817223, 0.0031256426591426134, 0.006830827798694372, -0.04005911201238632, 0.0013799472944810987, -0.031832434237003326, -0.011152660474181175, 0.00759059377014637, -0.007611796725541353, -0.0383063480257988, -0.03214341029524803, -0.011053713969886303, -0.028143150731921196, 0.004431380424648523, 0.006947442889213562, 0.004908442497253418, -0.0017050565220415592, -0.026658957824110985, 0.0024913260713219643, -0.02056669257581234, -0.001924151903949678, -0.008410434238612652, -0.012226934544742107, -0.001961256843060255, 0.001173220225609839, 0.047013621777296066, 0.0161565151065588, 0.014700591564178467, 0.006746016442775726, -0.039606787264347076, 0.020905937999486923, -0.015803135931491852, 0.017866872251033783, -0.0008291169069707394, 0.014085710979998112, 0.01757003366947174, 0.0008494362118653953, 0.013103315606713295, 0.009873425588011742, -0.017400411888957024, 0.03010794147849083, 0.006180609110742807, -0.006880301050841808, 0.01053777989000082, -0.013364816084504128, 0.024241840466856956, -0.028256233781576157, 0.020199177786707878, -0.021711641922593117, 0.009505911730229855, -0.0008273500134237111, -0.016170650720596313, -0.027266770601272583, -0.003342970972880721, -0.0043359678238630295, 0.020976612344384193, -0.008170136250555515, -0.008756746537983418, 0.004851901903748512, 0.0007032253779470921, 0.029090208932757378, -0.007413904182612896, 0.014969159848988056, 0.004085068125277758, 0.0014903785195201635, -0.00561166787520051, -0.017810331657528877, -0.003040831536054611, -0.006608198396861553, 0.007943973876535892, -0.031606271862983704, -0.004449049010872841, -0.014545104466378689, 0.010919429361820221, 0.015195323154330254, 0.008205474354326725, -0.04017219319939613, 0.034037522971630096, -0.017796196043491364, 0.008700205944478512, 0.0004995904164388776, 0.03762786090373993, -0.0016493992879986763, 0.009350424632430077, -0.03219994902610779, 0.013237600214779377, -0.00478122616186738, 0.022319454699754715, 0.04229247197508812, -0.039239272475242615, 0.011689797043800354, -0.016368543729186058, 0.01173220295459032, -0.012926626019179821, 0.0166653823107481, 0.010071318596601486, -0.03239784017205238, 0.00023433484602719545, 0.002037233440205455, 0.025612954050302505, 0.029768697917461395, 0.011322282254695892, 0.03177589550614357, -0.006258352659642696, -0.0060533927753567696, -0.012983166612684727, -0.036129530519247055, -0.0012650989228859544, -0.005897905677556992, -0.018319198861718178, 0.0030726357363164425, -0.020806990563869476, -0.026913389563560486, -0.003901310730725527, -0.0033217682503163815, 0.010021845810115337, 0.0052158827893435955, 0.033783089369535446, 0.008792084641754627, 0.047833461314439774, 0.01789514347910881, -0.02363402768969536, -0.02328064851462841, 0.053628887981176376, 0.02657414600253105, 0.01070033386349678, -0.005456181243062019, 0.00840336736291647, 0.0008269082754850388, 0.0041698794811964035, 0.015011565759778023, -0.0052158827893435955, 0.013605115003883839, -0.03253919258713722, -0.008742610923945904, -0.03321768343448639, -0.010240940377116203, 0.035733744502067566, -0.02323824167251587, -0.013166924007236958, -0.02602287381887436, 0.01031868439167738, -0.020693909376859665, -0.04082241281867027, -0.018121305853128433, 0.04124646633863449, 0.0016882710624486208, -0.01472886186093092, -0.00672481395304203, 0.011230403557419777, -0.002668015891686082, -0.004304163623601198, -0.014015034772455692, 0.015534567646682262, -0.01673605851829052, 0.020524287596344948, 0.015124646946787834, 0.010968903079628944, -0.0022722308058291674, 0.005357234738767147, -0.010120791383087635, -0.005777756683528423, -0.017584169283509254, -0.025867387652397156, -0.002850006567314267, -0.013060909695923328, 0.03890002518892288, -0.0060851965099573135, 0.00661526620388031, -0.013414289802312851, -0.013322411105036736, -0.009470573626458645, 0.005887303967028856, -0.008869827724993229, -0.009809818118810654, -0.0019877601880580187, -0.0011016608914360404, 0.018389875069260597, -0.005558661185204983, 0.022107427939772606, 0.0014073342317715287, -0.02639038860797882, -0.019096633419394493, 0.014644050970673561, -0.0008388348505832255, 0.01652402989566326, 0.006572860758751631, 0.012304677627980709, 0.005343099590390921, -0.014700591564178467, 0.005943845026195049, -0.008459907956421375, 0.02418529987335205, 0.006837895140051842, -0.017725521698594093, 0.010156129486858845, -0.008679003454744816, 0.005286558996886015, 0.020142637193202972, 0.016933949664235115, 0.01789514347910881, -0.012043177150189877, 0.033924441784620285, -0.005325430538505316, -0.01095476746559143, 0.006781354546546936, 0.014128116890788078, -0.0025991068687289953, -0.011852351948618889, 0.0258108451962471, -0.019223850220441818, 0.007053456734865904, 0.011110254563391209, -0.017329735681414604, -0.02439732849597931, 0.016905680298805237, 0.006509252358227968, -0.048992548137903214, -0.0025301978457719088, 0.030786430463194847, 0.01894114725291729, -0.0009479408035986125, -0.02121691033244133, 0.005442045629024506, -0.006311359815299511, -0.008770882152020931, -0.027521204203367233, 0.01764070987701416, -0.009315086528658867, -0.0037281548138707876, -0.026362117379903793, -0.02125931717455387, -0.0014038004446774721, -0.037147264927625656, -0.008580056950449944, -0.0039578513242304325, -0.039889488369226456, -0.042631715536117554, -0.02483551762998104, -0.0009064186597242951, 0.014516834169626236, 0.01070033386349678, -0.005569262430071831, -0.017471088096499443, 0.019633769989013672, -0.001481543993577361, 0.015421485528349876, -0.029005397111177444, -0.022065022960305214, 0.017414547502994537, -0.011463634669780731, 0.012997301295399666, -0.004837766755372286, -0.008410434238612652, -0.0009726773714646697, -0.009329221211373806, 0.005413775332272053, 0.011739270761609077, 0.011937162838876247, 0.004007324576377869, 5.259282261249609e-05, -0.00392251368612051, -0.00039688945980742574, 0.02613595500588417, -0.012438962236046791, 0.018969416618347168, -0.022983809933066368, -0.018658442422747612, -0.004286494571715593, -0.003767026588320732, 0.011661526747047901, 0.022178104147315025, -0.010778077878057957, 0.03641223534941673, 0.011795811355113983, 0.01626959629356861, -0.008502312935888767, 0.015986893326044083, 0.009633127599954605, 0.032228220254182816, 0.005155808292329311, 0.012424826622009277, 0.02089180238544941, 0.00028623748221434653, 0.011011308059096336, 0.0303341057151556, -0.02576844021677971, 0.04421485587954521, 0.008869827724993229, 0.0023199371062219143, 0.02771909534931183, 0.0025902725756168365, -0.01051657646894455, -0.01296196412295103, 0.027860447764396667, 0.0031963184010237455, 0.02172577753663063, 0.015053970739245415, -0.01677846349775791, -0.023916730657219887, -0.00023080105893313885, 0.013470830395817757, 0.012700462713837624, -0.042744796723127365, -0.022149832919239998, 0.016792599111795425, -0.02411462366580963, -0.0035921037197113037, -0.0017262593610212207, 0.0377974808216095, -0.03089951165020466, 0.0033995117992162704, -0.0035549988970160484, 0.01070033386349678, 0.013901953585445881, 0.021570291370153427, -0.006661205552518368, -0.045204319059848785, -0.0017271428368985653, -0.0172731950879097, -0.016425084322690964, 0.019647905603051186, 0.01807890087366104, 0.0020036622881889343, 0.012297609820961952, 0.038447700440883636, -0.0031627474818378687, 0.004551529418677092, 0.012566179037094116, 0.00027276488253846765, -0.007385633885860443, 0.010657928884029388, 0.009187869727611542, 0.006809624843299389, -0.0042794267646968365, 0.009032382629811764, -0.002798766363412142, 0.017471088096499443, -0.026687227189540863, 0.011668594554066658, 0.03946543484926224, -0.022870726883411407, -0.012467232532799244, -0.018573632463812828, -0.06558725237846375, -0.011908892542123795, 0.003940182738006115, 0.0005146090406924486, 0.005003855098038912, -0.025641223415732384, -0.0210331529378891, -0.006703610997647047, 0.013590979389846325, 0.031182216480374336, 0.01677846349775791, 0.009032382629811764, -0.036270882934331894, -0.018022360280156136, -0.010643793269991875, 0.005788357928395271, -0.02038293518126011, -0.004487921018153429, -0.03149319067597389, 0.01569005474448204, 0.020806990563869476, 0.0008534117368981242, 0.00912426132708788, -0.0011316981399431825, 0.01720251888036728, -0.013894885778427124, 0.00426529161632061, -0.01735800690948963, -0.032228220254182816, -0.020481880754232407, -0.016962220892310143, -0.03904137760400772, -0.030814701691269875, 0.008686070330440998, -0.00243125157430768, -0.012029041536152363, 0.002114976989105344, -0.01075687538832426, 0.022729376330971718, -0.019294526427984238, -0.01174633763730526, 0.012170393019914627, -0.0012845348101109266, 0.05077357962727547, -0.010580184869468212, 0.010127859190106392, 0.04893600568175316, -0.004717617761343718, -0.025358520448207855, -0.050547417253255844, 0.007951040752232075, 0.01176754105836153, 0.018389875069260597, 0.021117964759469032, -0.03530969098210335, -0.018700849264860153, 0.009293883107602596, 0.009717939421534538, -0.006120534613728523, -0.02302621491253376, 0.03022102266550064, 0.03253919258713722, 0.030447186902165413, -0.02114623598754406, 5.349007551558316e-06, -0.00986635871231556, 0.020510151982307434, -0.00047352866386063397, -0.0021291121374815702, 0.02114623598754406, -0.007816757075488567, -0.036892831325531006, 0.016057569533586502, 0.02356335148215294, 0.03203032538294792, -0.01691981591284275, 0.022757645696401596, 0.009258545935153961, -0.0119654331356287, -0.05077357962727547, 0.01945001259446144, -0.004470251966267824, 0.051423799246549606, -0.007117065135389566, 0.0018481753068044782, 0.024227704852819443, -0.01912490464746952, 0.0040249936282634735, -0.010417630895972252, -0.014502698555588722, 0.052074018865823746, -0.013018504716455936, -0.012516705319285393, -0.024849653244018555, -0.0013984998222440481, 0.017909279093146324, 0.015746595337986946, 0.0037811617366969585, 0.011612053960561752, -0.024708300828933716, -0.01694808527827263, 0.029401183128356934, 0.005017990246415138, -0.004081534221768379, -0.005950912367552519, -0.00225986260920763, 0.0077319457195699215, -0.025824980810284615, 0.006569326855242252, 0.04138781875371933, -0.03621434047818184, -0.016170650720596313, -0.004784759599715471, -0.010820483788847923, 0.0036786815617233515, -0.003604471916332841, -0.0035779685713350773, -0.004795361310243607, 0.028468260541558266, -0.04644821584224701, -0.006604664959013462, -0.013506168499588966, 0.0025991068687289953, 0.002611475298181176, -0.0028040672186762094, -0.004823631606996059, 0.0025973401498049498, 0.003616840112954378, -0.010848754085600376, -0.015774864703416824, -0.02439732849597931, 0.009590722620487213, 0.042857877910137177, 0.019492419436573982, 0.03723207488656044, 0.013343613594770432, 0.023478541523218155, 0.01710357330739498, 0.013633385300636292, -0.0005472966586239636, -0.010792212560772896, 0.02251734770834446, 0.0004256015527062118, 0.018191982060670853, -0.03047545626759529, 0.020948342978954315, 0.022785916924476624, -0.004152210429310799, 0.004088602028787136, -0.01901182346045971, -0.012318813242018223, -0.010968903079628944, 0.013103315606713295, -0.01641094870865345, 8.178804819181096e-06, 0.003003726713359356, -0.03448984771966934, -0.02595219761133194, -0.0172731950879097, -0.014212927781045437, -0.02353508211672306, 0.0072442819364368916, 0.016396813094615936, 0.004219352267682552, 0.010792212560772896, -0.0062972246669232845, -0.03474428132176399, -0.009470573626458645, -0.003228122601285577, -0.03024929389357567, -0.017654845491051674, -0.007025186438113451, 0.03595990687608719, 0.014997430145740509, -0.0280442051589489, 0.0009081855532713234, 0.004650475457310677, -0.01319519430398941, -0.007979311048984528, -0.014113981276750565, 0.03904137760400772, 0.030192753300070763, -0.01601516269147396, -0.011336417868733406, 0.017838602885603905, 0.0010133159812539816, 0.007866229861974716, 0.010410563088953495, 0.0095765870064497, -0.03344384580850601, 0.011336417868733406, -0.038080185651779175, -0.0031662811525166035, -0.027337446808815002, 0.004463184159249067, 0.001105194678530097, -0.010078386403620243, 0.0035055256448686123, 0.0016600006492808461, -0.015732459723949432, -0.010474171489477158, -0.006276021711528301, -0.009809818118810654, -0.006791955791413784, -0.009852223098278046, 0.01330120861530304, -0.012594449333846569, 0.011647392064332962, 0.025853252038359642, -0.0013499100459739566, -0.043649449944496155, 0.00613466976210475, 0.006466846913099289, -0.01152724213898182, 0.03010794147849083, -0.0244397334754467, -0.01861603744328022, -0.002182119060307741, -0.02762014977633953, 0.030277565121650696, 0.009845155291259289, 0.0030549666844308376, 0.002067270688712597, 0.014686455950140953, 0.012912490405142307, -0.040341816842556, 0.010566050186753273, -0.023577487096190453, 0.019577229395508766, 0.007894500158727169, -0.012191596440970898, 0.021019019186496735, 0.001803119434043765, 0.0071771396324038506, -0.005622269585728645, 0.002169750863686204, 0.006046324968338013, 0.005078064743429422, -0.038193266838788986, 0.016312003135681152, 0.0156476479023695, -0.05343099683523178, -0.01898355223238468, -0.018559496849775314, -0.012735800817608833, 0.004498522263020277, -0.04356463626027107, 0.02894885651767254, -0.029768697917461395, -0.004000257235020399, -0.03217167779803276, -0.004385441076010466, -0.022065022960305214, -0.003759959014132619, -0.002537265419960022, -0.01393729168921709, 0.0285530723631382, 0.22763299942016602, -0.04192495718598366, -0.00155928754247725, -0.004710549954324961, 0.008339758962392807, 0.009442303329706192, 0.011336417868733406, -0.008021716959774494, 0.0022792983800172806, 0.0064633130095899105, 0.010728605091571808, -0.0003323976998217404, -0.028977127745747566, -0.0012209265260025859, 0.002956020412966609, -0.0069403755478560925, -0.03364173695445061, -0.023082755506038666, -0.004321832675486803, 0.0005605483893305063, 0.009322154335677624, 0.0037988307885825634, 0.0026256104465574026, 0.010530712082982063, 0.02067977376282215, -0.004957915749400854, -0.007279619574546814, -0.018276793882250786, 0.01301143690943718, 0.029344642534852028, -0.02566949464380741, 0.01680673472583294, 0.010672063566744328, 0.0071771396324038506, -0.025033410638570786, -0.006682408042252064, 0.024962734431028366, 0.014969159848988056, 0.02028398960828781, -0.0024047482293099165, 0.02360575646162033, -0.02291313372552395, -0.012014906853437424, -0.023591622710227966, -0.04548702389001846, 0.019252121448516846, -0.011923028156161308, -0.009498843923211098, -0.012283475138247013, 0.013400154188275337, -0.018305063247680664, -0.015930352732539177, 0.027351580560207367, 0.02508995123207569, 0.016029298305511475, 0.001230644411407411, -0.007767283823341131, 0.0038624389562755823, 0.011951298452913761, 0.018587766215205193, -0.00015471401275135577, 0.026234902441501617, -0.002615008968859911, 0.007541120517998934, -0.016326136887073517, 0.005417309235781431, -0.013336545787751675, -0.026333848014473915, 0.016608841717243195, 0.01919558085501194, 0.004926111549139023, -0.0073220254853367805, -0.0250475462526083, -0.0011263975175097585, -0.042857877910137177, -0.03191724419593811, 0.04517604783177376, 0.01241775881499052, 0.02226291410624981, 0.054561808705329895, 0.002104375511407852, -0.010043048299849033, -0.000440178468124941, -0.009498843923211098, -0.0014170522335916758, -0.03590336814522743, 0.02866615355014801, -0.021160369738936424, -0.017994089052081108, -0.005904973018914461, 0.0012288775760680437, 0.011074916459619999, -0.007816757075488567, 0.019209714606404305, 0.0017704317579045892, -0.003664546413347125, -0.0009779779938980937, 0.011315214447677135, -0.01984579861164093, 0.015096376650035381, -0.036016449332237244, 0.023393729701638222, 0.0172731950879097, 0.02829863876104355, -0.0005022407858632505, 0.001195306540466845, 0.0029171486385166645, 0.010000642389059067, 0.017160113900899887, -0.02746466174721718, 0.001396732870489359, -0.06055513024330139, 0.021881265565752983, -0.005894371774047613, -0.012212798930704594, 0.0010839919559657574, -0.011647392064332962, 0.009859290905296803, -0.012926626019179821, -0.010834618471562862, 0.022828321903944016, -0.029768697917461395, 0.006643536500632763, -0.020722180604934692, -0.02371883951127529, -0.0019329864298924804, -0.023761244490742683, -0.0008114479132927954, -0.01720251888036728, -0.04458237066864967, 0.03692110255360603, -0.024736572057008743, 0.010968903079628944, -0.017683114856481552, 0.01706116646528244, -0.017782062292099, -0.016792599111795425, -0.009463505819439888, 0.0008459024247713387, 0.016001028940081596, 0.0010159664088860154, 0.0062300823628902435, 0.0008048220188356936, 0.0025673029012978077, -0.002228058408945799, -0.0112798772752285, 0.0033341364469379187, 0.009993575513362885, -0.006025122012943029, 0.0013004369102418423, -0.026658957824110985, -0.008163068443536758, -0.0002979431883431971, -0.0012677493505179882, 0.008276150561869144, -0.007226612884551287, -0.002574370475485921, -0.054420460015535355, -0.0009603090584278107, 0.017343871295452118, -0.04478026181459427, -0.019690310582518578, -0.004880172200500965, -0.016283731907606125, -0.02190953493118286, -0.02906193770468235, -0.18070419132709503, 0.011032511480152607, 0.029033668339252472, -0.020015420392155647, 0.01571832410991192, -0.0005874935886822641, 0.0028994795866310596, -0.0010062484070658684, -0.0323130302131176, 0.0022952004801481962, 0.028652017936110497, -0.005632870830595493, 0.015336674638092518, -0.03567720577120781, -0.011951298452913761, 0.01796581968665123, -0.016354408115148544, -0.006191210821270943, 0.037429966032505035, 0.00032047112472355366, 0.04220765829086304, -0.0576150119304657, 0.006293690763413906, 0.011972500942647457, -0.0008609210490249097, 0.030531996861100197, 0.013124518096446991, 0.015393215231597424, -0.010799280367791653, -0.037034183740615845, -0.008353893645107746, -0.0025301978457719088, 0.033528655767440796, 0.027097146958112717, -0.011378822848200798, -0.0010513042798265815, 0.0012527307262644172, -0.007180673535913229, -0.03253919258713722, 0.022460807114839554, 0.017188383266329765, 0.03576201573014259, 0.008989976719021797, 0.023407865315675735, -0.023803649470210075, -0.0055162557400763035, 0.01619892008602619, -0.003127409378066659, 0.005827229470014572, 0.007774351164698601, 0.005890837870538235, -0.007208943832665682, 0.0074209715239703655, 0.008410434238612652, 0.02320997230708599, 0.0048907739110291, -0.00515934219583869, -0.0024913260713219643, 0.001250963774509728, -0.010368157178163528, -0.011838216334581375, 0.006350231356918812, 0.026729632169008255, 0.0034754883963614702, 0.006777820643037558, -0.012552043423056602, -0.01840400882065296, 0.02894885651767254, -0.026814443990588188, -0.00784502737224102, 0.018601901829242706, -0.022800052538514137, -0.005548059940338135, 0.005643472075462341, 0.010262143798172474, 0.022503212094306946, -0.020156772807240486, 0.009194937534630299, 0.022432537749409676, 0.014884348958730698, -0.017979953438043594, 0.026842715218663216, -0.013025572523474693, -0.025499872863292694, 0.0018552428809925914, -0.010106656700372696, -0.0008238161681219935, -0.020510151982307434, -0.03259573504328728, -0.010792212560772896, 0.03245438262820244, 0.004290028475224972, -0.008608327247202396, -0.011187998577952385, 0.003074402455240488, 0.006675340700894594, -0.006526921410113573, -0.002537265419960022, -0.0023146364837884903, -0.007724877912551165, 0.001788100809790194, -0.005297160241752863, -0.032115139067173004, 0.02309689112007618, 0.04486507549881935, 0.0009033266105689108, -0.010975969955325127, 0.007371498271822929, 0.02172577753663063, -0.011576715856790543, 0.012870085425674915, 0.007120599038898945, 0.009392829611897469, 0.01344962790608406, -0.001612294465303421, 0.007456309627741575, -0.012516705319285393, -0.02291313372552395, 0.021923670545220375, 0.0031185750849545, -0.02186712995171547, -0.034857362508773804, 0.02089180238544941, 0.04432793706655502, -0.01817784644663334, -0.026729632169008255, -0.042999230325222015, 0.002622076543048024, -0.006120534613728523, 0.023012079298496246, 0.01070033386349678, 0.021174505352973938, -0.0012085582129657269, 0.029938319697976112, -0.04500642418861389, 0.014615780673921108, -0.00392251368612051, -0.030051400884985924, -0.006968645844608545, 0.03024929389357567, -0.005774222780019045, 0.021852994337677956, 0.014255332760512829, -6.797035894123837e-05, -0.01766897924244404, 0.040935494005680084, 0.0038094320334494114, -0.02371883951127529, -0.0006564026116393507, -0.009279748424887657, 0.008134798146784306, 0.002963087987154722, -0.012990234419703484, 0.03330249339342117, 0.003880108008161187, -0.005321896634995937, 0.019252121448516846, -0.012650989927351475, 0.0015283668180927634, -0.009753276593983173, 0.0027333912439644337, 0.0007800854509696364, -0.009131329134106636, -0.023648163303732872, 0.00537843769416213, 0.002842938993126154, -0.0021432472858577967, -0.0045691984705626965, -0.003383609699085355, 0.016396813094615936, -0.024213571101427078, -0.004208751022815704, -0.008721408434212208, 0.028100745752453804, -0.024807248264551163, -0.03584682568907738, -0.04110511392354965, -0.029118478298187256, -0.02274351194500923, -0.006265420466661453, 0.007233680225908756, 0.02346440590918064, 0.012516705319285393, 0.008035852573812008, -0.020877666771411896, 0.008657800033688545, 0.010057182982563972, -0.009887561202049255, -0.03321768343448639, 0.01807890087366104, 0.03050372749567032, 0.018700849264860153, -0.0003282013058196753, -0.033670008182525635, 0.00833269115537405, 0.0036786815617233515, -0.021485479548573494, 0.02418529987335205, 0.006834361702203751, 0.04746594652533531, -0.03839116171002388, -0.007336160633713007, -0.02147134393453598, -0.040426626801490784, 0.04271652549505234, -0.02776150219142437, -0.011067848652601242, 0.002956020412966609, -0.003069101832807064, -0.0239308662712574, 0.0001123636684496887, 0.0047388202510774136, -0.0057812901213765144, 0.009371627122163773, 0.002044301014393568, -0.031860705465078354, -0.010778077878057957, 0.0073997690342366695, 0.014686455950140953, -0.011866486631333828, -0.016213055700063705, 0.0046575432643294334, 0.013654587790369987, -0.013711128383874893, 0.0056823440827429295, 0.0072442819364368916, -0.018008224666118622, -0.035988178104162216, -0.08746851980686188, 0.014997430145740509, -0.014785402454435825, -0.011498971842229366, -0.013944359496235847, 0.0003116366278845817, 0.04203803837299347, 0.00025067865499295294, -0.004632806405425072, 0.004802428651601076, -0.035479310899972916, 0.018771523609757423, 0.0029701555613428354, -0.02797352895140648, -0.03138010948896408, -0.0031927847303450108, 0.02486378885805607, -0.0014497397933155298, 0.01843228004872799, 0.007198342587798834, 0.012241069227457047, 0.007979311048984528, 0.020623233169317245, 0.015576972626149654, -0.005364302545785904, 0.006519853603094816, 0.007696607615798712, 0.02198021113872528, 0.011859419755637646, 0.013364816084504128, 0.00563993863761425, -0.016142379492521286, -0.01267219241708517, 0.014615780673921108, 0.004668144509196281, 0.0035974043421447277, 0.025909792631864548, -0.01417052187025547, 0.0244397334754467, 0.016312003135681152, -0.00474588805809617, -0.014545104466378689, 0.024708300828933716, 0.011089052073657513, -0.004484387114644051, 0.01446029357612133, -0.015661783516407013, -0.012375353835523129, 0.01006425078958273, 0.030588537454605103, 0.025499872863292694, 0.0274363923817873, -0.003342970972880721, -0.014700591564178467, -0.004661077167838812, -0.030447186902165413, 0.0031079736072570086, 0.008770882152020931, -0.012007839046418667, 0.011392958462238312, 0.040794141590595245, -0.0072442819364368916, 0.0032811295241117477, -0.01998715102672577, -0.022149832919239998, -0.007336160633713007, -0.0012341781985014677, -0.017626574262976646, 0.009463505819439888, -0.02985350787639618, -0.01991647481918335, 0.008756746537983418, -0.004028527531772852, 0.014742996543645859, -0.012509637512266636, 0.01662297733128071, 0.0011096119415014982, 0.0024082818999886513, -0.018771523609757423, 0.04161398112773895, 0.021782318130135536, -0.006339630112051964, -0.024453869089484215, -0.004629272967576981, 0.02198021113872528, 0.017909279093146324, 0.0017721987096592784, -0.010749807581305504, 0.010905294679105282, 0.006756618153303862, -0.009166667237877846, 0.023775380104780197, 0.002455988200381398, 0.026333848014473915, 0.028100745752453804, 0.014361347071826458, 0.012990234419703484, -0.0027634284924715757, 0.014113981276750565, 0.021117964759469032, 0.012806477025151253, -0.002102608559653163, -0.0014108680188655853, -0.035988178104162216, 0.004689347464591265, -0.030390646308660507, -0.020976612344384193, -0.030051400884985924, 0.01431187428534031, 0.03726034611463547, -0.0026061744429171085, -0.018276793882250786, -0.014686455950140953, 0.01807890087366104, -0.01028334628790617, 0.022559754550457, -0.00613466976210475, -0.03516833856701851, -0.03446158021688461, 0.008382163941860199, 0.0078096892684698105, -0.01021267008036375, 0.03256746381521225, -0.010474171489477158, 0.03528141975402832, 0.0007076426409184933, 0.027210230007767677, -0.024227704852819443, 0.020990747958421707, 0.004219352267682552, -0.0018163711065426469, 0.007003983482718468, -0.017259059473872185, -0.019817527383565903, -0.01684913970530033, -0.003940182738006115, 0.025782575830817223, -0.012848882004618645, -0.03335903584957123, 0.08628116548061371, 0.016382677480578423, 0.003146845381706953, -0.0030125610064715147, 0.007371498271822929, 0.005551593378186226, 0.0032404910307377577, 0.013803007081151009, -0.010346954688429832, -0.021923670545220375, -0.027916988357901573, -0.005936777219176292, -0.044836804270744324, -0.015916217118501663, 0.0060639940202236176, 0.012347083538770676, -0.004477319773286581, 0.047918274998664856, -0.01398676447570324, 0.014559239149093628, 0.047833461314439774, -0.0003498457954265177, 0.013626317493617535, 0.010177332907915115, 0.00036177237052470446, -0.0009505911148153245, 0.028864046558737755, 0.009654331021010876, 0.01792341284453869, -0.0074209715239703655, 0.0029507195577025414, 0.021598560735583305, -0.013096247799694538, -0.013555641286075115, -0.02251734770834446, -0.010608455166220665, -0.015492161735892296, 0.00549505278468132, 0.02223464474081993, -0.002016030717641115, 0.019605500623583794, 0.013407221995294094, -0.023831920698285103, -0.03072988986968994, -0.0008785900427028537, 0.023959137499332428, -0.006071061361581087, 0.009477640502154827, -0.011506039649248123], "e02f1412-7ee8-4e47-8fab-65ec2e609219": [-0.021688468754291534, -0.017098458483815193, 0.025929531082510948, -0.020829519256949425, -0.018870040774345398, 0.021594520658254623, 0.01917872577905655, -0.032801125198602676, 0.0010434890864416957, -0.01703135296702385, 0.006898436229676008, 0.04034377261996269, -0.011521998792886734, -0.016038192436099052, -0.03341849520802498, 0.009817521087825298, 0.001748095965012908, 0.011535420082509518, 0.017715828493237495, -0.011891079135239124, 0.0005754288868047297, 0.008696861565113068, -0.029687432572245598, -0.042893778532743454, -0.005459025036543608, 0.016346877440810204, 0.004730931483209133, -0.021124783903360367, 0.0037377714179456234, 0.005801262799650431, 0.013890819624066353, 0.019084779545664787, -0.01743398606777191, -0.024345843121409416, 0.00910620391368866, -0.004385338630527258, 0.007945280522108078, -0.014628979377448559, 0.000888307869900018, -0.018467409536242485, 0.012877528555691242, 0.004838299937546253, 0.02269504964351654, 0.007784227374941111, -0.02044030837714672, 0.019970569759607315, -0.019755832850933075, 0.014212925918400288, -0.006062973756343126, 0.011656209826469421, -0.0026087227743119, 0.020856361836194992, -0.014266610145568848, 0.01146160438656807, -0.008676729165017605, 0.021567678079009056, -0.0067508043721318245, 0.018695566803216934, -0.018802935257554054, -0.01140792015939951, 0.01767556555569172, -0.0015987864462658763, -0.037417978048324585, -0.00621396116912365, 0.030358487740159035, -0.00010799776646308601, 0.011273709125816822, 0.015353717841207981, -0.004519549198448658, 0.0038518505170941353, 0.0011550518684089184, 0.03927008435130119, -0.004502772819250822, 0.0010485220700502396, 0.04120272025465965, -0.01134752482175827, -0.029580064117908478, 0.007515805773437023, -0.015997929498553276, -0.014602137729525566, 0.012333974242210388, 0.005053037311881781, -0.004140403587371111, 0.0006609882693737745, 0.006116657983511686, 0.0022480313200503588, 0.00845528207719326, 0.007945280522108078, 0.002155761234462261, -0.007408437319099903, 0.01203871052712202, 0.011575683020055294, 0.010689891874790192, 0.021044256165623665, -0.022238733246922493, 0.001798424986191094, 0.0006341460975818336, 0.026721375063061714, -0.004737642128020525, 0.015595297329127789, -0.02300373464822769, 0.0140787148848176, -0.02590268850326538, 0.0034039218444377184, -0.04012903571128845, -0.0014998059486970305, 0.0059858025051653385, -0.011535420082509518, 0.0007058650371618569, -0.008052648976445198, -0.02258768118917942, 0.04960431903600693, -0.014628979377448559, -0.0497116893529892, -0.016776353120803833, -0.008072780445218086, 0.003543165745213628, -0.013394240289926529, -0.014709506183862686, 0.004341720137745142, 0.006539422087371349, -0.0028637233190238476, 0.015447665005922318, -0.002675828291103244, 0.018172144889831543, -0.006730672437697649, -0.034519024193286896, -0.018373461440205574, -0.006824620068073273, -0.022507155314087868, 0.05502643808722496, 0.009656468406319618, 0.017286352813243866, 0.013508318923413754, -0.023433208465576172, 0.007488963659852743, -0.00010883658978855237, -0.005234221927821636, -0.044799573719501495, 0.008958572521805763, 0.013152660802006721, 0.02696295455098152, -0.006834685802459717, -0.018239250406622887, -0.02751321904361248, 0.020587939769029617, 0.02764742821455002, 0.015903981402516365, 0.01076370757073164, 0.00020718795713037252, 0.0027966180350631475, -0.029472695663571358, 0.006120013538748026, 0.0018554645357653499, 0.02068188786506653, -0.008012386038899422, 0.03341849520802498, 0.010065811686217785, -0.019769253209233284, 0.0046906680800020695, 0.009683310985565186, 0.029499538242816925, -0.006787712220102549, 0.005901920609176159, -0.0181050393730402, 0.01841372437775135, 0.021862942725419998, -0.010408049449324608, -0.006918567698448896, -0.0014670920791104436, 0.0031774411909282207, -0.0014805131359025836, -0.024547159671783447, 0.014977927319705486, -0.010119495913386345, 0.019836358726024628, 0.0138102937489748, 0.008448570966720581, 0.003462639171630144, 0.009824232198297977, -0.0023352683056145906, 0.0008455281495116651, -0.009824232198297977, 0.02731190249323845, -0.00618376350030303, -0.024896107614040375, 0.027915850281715393, 0.01776951178908348, 0.013078844174742699, -0.018910303711891174, 0.01950083300471306, 0.025124264881014824, 0.0029627038165926933, 0.03245217725634575, -0.5999760627746582, -0.015004769898951054, -0.006650146096944809, -0.009918179363012314, 0.022507155314087868, -0.0014352169819176197, -0.009790679439902306, 0.016964247450232506, 0.005526130553334951, 0.04896010830998421, -0.020279254764318466, 0.01905793696641922, -0.026157688349485397, -0.020842939615249634, 0.014172662980854511, -0.040424298495054245, 0.0037579028867185116, -0.030761120840907097, 0.005207379814237356, -0.0018420434789732099, -0.02998269721865654, 0.009079362265765667, -0.01819898746907711, 0.009918179363012314, -0.00031434689299203455, -0.021876363083720207, -0.020400045439600945, -0.0001912504230858758, 0.003918956033885479, 0.023392945528030396, -0.03135164827108383, 0.011656209826469421, 0.012548712082207203, 0.0056066568940877914, 0.03932376950979233, 0.0055630384013056755, -0.03137848898768425, 0.02698979526758194, 0.012823844328522682, 0.03975324332714081, -0.020265834406018257, -0.014924243092536926, 0.009461862966418266, 8.461572724627331e-05, 0.012991607189178467, -0.008596203289926052, 0.021567678079009056, 0.007301068864762783, 0.0024258606135845184, 0.0008119754493236542, -0.009549099951982498, 0.00687830476090312, 0.003476060228422284, -0.03188849240541458, -0.0024241828359663486, 0.0072272527031600475, 0.031539544463157654, -0.040934301912784576, 0.0230171550065279, -0.03583429008722305, -0.005854947026818991, 0.03247901797294617, 0.004845010582357645, -0.013629108667373657, -0.019527673721313477, 0.00797883328050375, -0.017286352813243866, -0.014843716286122799, 0.010146337561309338, -0.007576200645416975, -0.003680731635540724, -0.013729766942560673, 0.0025047094095498323, -0.0036270474083721638, 0.0027831969782710075, 0.030680593103170395, 0.007475542835891247, -0.0072540948167443275, 0.009461862966418266, 0.030170591548085213, 0.014360558241605759, -0.005630143918097019, -0.01300502847880125, -0.013568714261054993, 0.018131881952285767, -0.030251119285821915, -0.007764095906168222, -0.005714025814086199, 0.01681661605834961, -0.005425472278147936, 0.013608977198600769, 0.0405048243701458, -0.0033116519916802645, -0.029955854639410973, -0.00013043613580521196, 0.003472704906016588, -0.006247513461858034, -0.003120401641353965, -0.002778163878247142, -0.052422747015953064, -0.03771324083209038, 0.028855325654149055, -0.0013546905247494578, 0.024023737758398056, 0.030116908252239227, -0.000638759636785835, -0.033579546958208084, 0.013072133995592594, 0.00952225737273693, -0.01755477488040924, -0.006489092949777842, -0.0020198728889226913, -0.017501091584563255, 0.00010081539221573621, 0.024480054154992104, -0.030143750831484795, 0.02515110746026039, 0.03366007283329964, 0.02858690544962883, -0.0016474378062412143, 0.020748993381857872, 0.006415277253836393, 0.03862587362527847, -0.003509612986817956, 0.007931859232485294, 0.004348430782556534, 0.01896398887038231, 0.007274226285517216, 0.011428051628172398, 0.007488963659852743, -0.005935473367571831, -0.000894179567694664, 0.030358487740159035, -0.01594424620270729, 0.012850685976445675, 0.0018101684981957078, 0.025191370397806168, -0.0006177891627885401, 0.02311110310256481, 0.0062575796619057655, -0.02292320877313614, 0.006307908333837986, 0.018024513497948647, -0.030251119285821915, 0.009488704614341259, -0.023392945528030396, -0.00808620173484087, -0.02461426518857479, 0.009441731497645378, -0.008716993033885956, -0.004898694809526205, -0.0004275872779544443, -0.00985778495669365, 0.021916627883911133, -0.02014504373073578, 0.005559683311730623, -0.03964587673544884, -0.008401596918702126, -0.008428439497947693, -0.028130587190389633, -0.014615558087825775, 0.0175681971013546, -0.03204954415559769, -0.004845010582357645, -0.012495026923716068, -0.02794269286096096, 0.0067508043721318245, 0.0016465990338474512, -0.00787146482616663, -0.024345843121409416, -0.007213831413537264, -0.012548712082207203, 0.006814554333686829, -0.0033435269724577665, 0.022614523768424988, -0.0037310607731342316, 0.0032294478733092546, -0.0029492827598005533, -0.040639035403728485, -0.00516376132145524, -0.013501608744263649, 0.016105297952890396, -0.0054925777949392796, -0.006898436229676008, 0.02257426083087921, 0.03446533903479576, 0.04039745777845383, -0.015501350164413452, -0.030761120840907097, 0.021272415295243263, 0.013984767720103264, 0.03213007003068924, 0.002075234893709421, 0.025540318340063095, 0.048235367983579636, 0.014682663604617119, -0.002123886253684759, 0.00035796541487798095, -0.005754288751631975, 0.0134277930483222, 0.04227640852332115, -0.0017279642634093761, -0.0046470495872199535, -0.014092136174440384, 0.02356741949915886, -0.024654528126120567, 0.03137848898768425, -0.010985155589878559, 0.01140120904892683, 0.000894179567694664, -0.015273191034793854, -0.04018272086977959, -0.0028016509022563696, -0.011381077580153942, 0.015138980932533741, -0.007441990077495575, -0.02496321313083172, -0.004304812289774418, 0.003462639171630144, 0.02998269721865654, 0.0070393574424088, 0.018883462995290756, 0.0104348910972476, 0.009226993657648563, 0.014696084894239902, 0.01509871706366539, -0.0007192860939539969, -0.010146337561309338, -0.02613084763288498, -0.019849780946969986, -0.013515030033886433, -0.010951602831482887, -0.011669631116092205, 0.005388564430177212, 0.01001883763819933, -0.02237294428050518, 0.012904370203614235, 0.003841784782707691, 0.03647850081324577, -0.03245217725634575, -0.0024661237839609385, 0.0037813899107277393, 0.019312936812639236, -0.013770029880106449, 0.031405333429574966, -0.004012903664261103, 0.023822421208024025, 0.019460568204522133, -0.0056167226284742355, -0.019661884754896164, -0.03910903260111809, 0.004818168468773365, 0.005663696676492691, 0.00841501820832491, 0.0001407116506015882, -0.004284680355340242, 0.016118720173835754, 0.01048857532441616, 0.008529097773134708, 0.04029008746147156, 0.027996378019452095, 0.03226428106427193, 0.014628979377448559, 0.00029274733969941735, 0.00353309977799654, -0.03685428947210312, 0.016843458637595177, -0.027889007702469826, -0.01670924760401249, -0.009495415724813938, -0.0018101684981957078, -0.0018856619717553258, -0.017340037971735, -0.02162136323750019, 0.00920015200972557, -0.014508189633488655, 0.041712723672389984, 0.03618323802947998, 0.04015587642788887, 0.018252670764923096, -0.020091360434889793, -0.0004827395314350724, 0.025755057111382484, 0.01504503283649683, 0.016977669671177864, -0.0032613228540867567, -0.02536584436893463, -0.006079750135540962, -0.005311393178999424, 0.01354858186095953, -0.0015115493442863226, -0.004130337852984667, -0.018588198348879814, 0.0001880000054370612, -0.022627944126725197, 0.006522645708173513, 0.038276925683021545, -0.014870558865368366, -0.010354365222156048, -0.02507058158516884, -0.007072910200804472, -0.011609235778450966, -0.01724608987569809, -0.021446889266371727, 0.007804359309375286, 0.019098199903964996, -0.006519290618598461, -0.019943727180361748, 0.007992254570126534, -0.002199379727244377, -0.006693764589726925, -0.035512182861566544, 0.009656468406319618, 0.0016826681094244123, 0.010938181541860104, -0.0010082587832584977, 0.03706903010606766, 0.007307779043912888, 0.017850039526820183, 0.013085555285215378, -0.013770029880106449, -0.016427405178546906, -0.022037416696548462, 0.009112915024161339, -0.03747165948152542, 0.02901637926697731, -0.0009268934954889119, -0.03408954665064812, -0.023916367441415787, -0.013890819624066353, -0.023701630532741547, 0.008126465603709221, -0.01391766220331192, -0.0030281315557658672, -0.009428310208022594, 0.0012280290247872472, 0.004670536611229181, -0.010401338338851929, 0.008213702589273453, 0.0014779967023059726, -0.012924501672387123, -0.019031094387173653, 0.02174215205013752, 0.006589751224964857, 0.029714275151491165, -0.030385330319404602, -0.023634525015950203, 0.00172628671862185, 0.002190991537645459, 0.022104522213339806, -0.023043997585773468, 0.02129925787448883, -0.002217833884060383, -0.010085943154990673, 0.01594424620270729, -0.001321976538747549, 0.02249373309314251, 0.014253188855946064, 0.025446372106671333, 0.03170059621334076, 0.0029543156269937754, 0.049845900386571884, -0.01778293401002884, -0.012515159323811531, -0.016521351411938667, 0.017863459885120392, -0.0064622508361935616, -0.0003413987869862467, 0.004932247567921877, -0.010287259705364704, -0.006368303205817938, 0.02269504964351654, 0.015232928097248077, -0.023057419806718826, 0.01124015636742115, 0.0224803127348423, -0.061951715499162674, 0.0029459274373948574, 0.022976892068982124, 0.021809257566928864, -0.015071875415742397, -0.01830635592341423, 0.015179243870079517, 0.009810810908675194, -0.009676599875092506, -0.03599534183740616, 0.013098975643515587, 0.0019326357869431376, 0.004381983075290918, -0.029392169788479805, -0.031539544463157654, -0.00787146482616663, -0.04874537140130997, -0.001273325178772211, -0.004210864659398794, -0.04163219779729843, -0.022319259122014046, -0.016199246048927307, -0.008817651309072971, 0.044719044119119644, -0.00888475589454174, -0.032183755189180374, -0.01787688210606575, 0.013179502449929714, -0.027754798531532288, 0.006324684713035822, -0.028640588745474815, -0.03213007003068924, 0.0012188020627945662, -0.004895339719951153, -0.0020819453056901693, 0.0020098069217056036, -0.03135164827108383, 0.013850556686520576, -0.0202524121850729, -0.009166599251329899, 0.0054657356813549995, 0.010173180140554905, 0.009300810284912586, -0.00012383045395836234, -0.013025159947574139, 0.019621621817350388, 0.03288165107369423, -0.0019242475973442197, 0.018977409228682518, -0.031029541045427322, -0.014199504628777504, -0.021124783903360367, 0.002167504746466875, 0.006623303983360529, 0.02568795159459114, -4.2235778892063536e-06, -0.0032999084796756506, 0.007348042447119951, -0.0027982955798506737, -0.014924243092536926, 0.019635042175650597, 0.0033938561100512743, 0.031190594658255577, 0.015353717841207981, -0.002162471879273653, 0.015420823357999325, -0.011609235778450966, 0.0015660724602639675, 0.019192148000001907, -0.037337448447942734, 0.03051954135298729, -0.006542777642607689, -0.003135500242933631, 0.026426110416650772, -0.016883721575140953, -0.04796694591641426, -0.024574000388383865, 0.03908219188451767, 0.004412180744111538, 0.03543165698647499, 0.0072272527031600475, -0.026748215779662132, -0.0060294209979474545, -0.0037277054507285357, -0.009481994435191154, 0.029257958754897118, -0.030036382377147675, 0.0005519419792108238, 0.005797907244414091, -0.02162136323750019, -0.0101664699614048, -0.00618376350030303, 0.0383574515581131, -0.02717769145965576, -0.0032529346644878387, -0.00045505855814553797, -0.0025164529215544462, -0.00343915238045156, 0.029150590300559998, -0.0035196787212044, -0.013380819000303745, -0.01605161465704441, -0.015501350164413452, -0.009844363667070866, -0.010683181695640087, -0.017581617459654808, 0.010414759628474712, 0.02281584031879902, 0.059052761644124985, 0.017608460038900375, 0.0031422108877450228, 0.007938570342957973, -0.008716993033885956, -0.016736090183258057, -0.014843716286122799, -0.010401338338851929, -0.01744740642607212, -0.0011533742072060704, 0.017393723130226135, 0.008824361488223076, 0.009683310985565186, -0.01563556119799614, 0.010562391951680183, 0.030546382069587708, -0.0028586904518306255, -0.007522516418248415, -0.02097715064883232, -0.05148326978087425, -0.00013253318320494145, 0.002251386409625411, 0.0058784340508282185, 0.010005416348576546, -0.0385185070335865, -0.011018708348274231, 0.006911857053637505, 0.02162136323750019, 0.017259512096643448, -0.005049682222306728, -0.006026065908372402, 0.0010921405628323555, 0.0074218581430613995, 0.015286612324416637, -0.011193182319402695, -0.015434244647622108, 0.006814554333686829, -0.03510954976081848, 0.007609753403812647, -0.0071467263624072075, -0.008965282700955868, 0.034331128001213074, -0.0036572448443621397, 0.01927267387509346, -0.01683003641664982, 0.016507931053638458, -0.04520220309495926, -0.018588198348879814, -0.01990346424281597, -0.01065633911639452, -0.034331128001213074, -0.01980951800942421, 0.011884368024766445, -0.019299516454339027, 0.03105638362467289, 0.01402503065764904, 0.0014201182639226317, 0.014280031435191631, -0.01853451505303383, -0.014736347831785679, 0.013447924517095089, -0.027164269238710403, 0.031136909499764442, -0.0005339074414223433, 0.011280419304966927, 0.03403586521744728, -0.0076500168070197105, -0.024345843121409416, -0.03607586771249771, 0.002578525338321924, 0.017970828339457512, 0.03162007033824921, 0.053496431559324265, -0.00172628671862185, -0.01925925351679325, 0.011152919381856918, -0.0004271678626537323, -0.0003273485926911235, -0.04316220059990883, 0.03757902979850769, 0.04007535055279732, -0.008743834681808949, -0.02643953077495098, 0.022560838609933853, -0.029580064117908478, 0.016360299661755562, -0.00786475371569395, -0.005026195198297501, -0.01382371410727501, -0.0023906303104013205, -0.002165827201679349, 0.013850556686520576, 0.01488398015499115, 0.01617240346968174, -0.012018579058349133, 0.005747578572481871, -0.008871335536241531, -0.014722926542162895, -0.031405333429574966, 0.01755477488040924, 0.004358496516942978, 0.042679041624069214, -0.0028469469398260117, 0.0037142843939363956, 0.030922172591090202, -0.005039616487920284, 0.0019879976753145456, -0.023419788107275963, -0.022614523768424988, 0.03986061364412308, 0.012273579835891724, 0.021339520812034607, -0.01873582974076271, 0.00032881650258786976, 0.0012724862899631262, -0.0032361585181206465, 0.0011542130960151553, -0.022131364792585373, -0.006666922476142645, -0.004167246166616678, 0.01990346424281597, -0.002497998997569084, 0.007233963347971439, -0.019648464396595955, -0.01060265488922596, -0.014602137729525566, -0.024332420900464058, 0.013273450545966625, 0.03392849490046501, -0.024600842967629433, -0.022211890667676926, -0.0009629626292735338, -0.024278737604618073, 0.007327910978347063, -0.0064622508361935616, 0.008488834835588932, 0.016346877440810204, 0.028425851836800575, -0.03755218908190727, 0.01864188350737095, 0.000443734519649297, -0.0009319263626821339, 0.0016348555218428373, -0.002533229300752282, -0.020708730444312096, -0.011790420860052109, -0.003075105370953679, -0.006844752002507448, -0.025634266436100006, -0.034411653876304626, 0.005858302116394043, 0.019447147846221924, 0.004086719360202551, 0.028962695971131325, 0.01776951178908348, 0.00845528207719326, 0.014508189633488655, 0.014360558241605759, -0.01712530106306076, -0.00516376132145524, -0.029606906697154045, -0.007019225973635912, 0.004861786961555481, -0.00915988814085722, 0.001758161699399352, 0.0029274735134094954, -0.013394240289926529, 0.0019041160121560097, -0.005613367538899183, -0.0159576665610075, -0.0064521851018071175, 0.0003684506518766284, -0.012011868879199028, 0.009495415724813938, -0.029929012060165405, -0.007696990389376879, -0.01873582974076271, -0.001702799811027944, 0.025339003652334213, 0.0054925777949392796, 0.01831977628171444, 0.011173050850629807, 0.013340555131435394, -0.0006685376283712685, -0.0028016509022563696, -0.04316220059990883, 0.007327910978347063, -0.01821240782737732, -0.00899883545935154, -0.026493215933442116, -0.004230996128171682, 0.04165903851389885, 0.010206732898950577, -0.0017950697802007198, -0.018266092985868454, 0.00623744772747159, -0.023258734494447708, -0.008233834058046341, -0.00941488891839981, 0.022507155314087868, 0.018923725932836533, 0.009240414947271347, -0.0006257579661905766, 0.006650146096944809, -0.009488704614341259, 0.011381077580153942, -0.0189505685120821, -0.0008966960594989359, -0.04592694342136383, -0.006710540968924761, -0.016212666407227516, 0.0002180925803259015, -0.04012903571128845, 0.027915850281715393, -0.010790550149977207, -0.008341202512383461, 0.014575295150279999, 0.045255888253450394, -0.004167246166616678, -0.036666397005319595, -0.0004345075285527855, -0.010951602831482887, -0.021245572715997696, -0.010609365068376064, 0.007126594427973032, -0.031217437237501144, -0.014414242468774319, 0.021701889112591743, -0.02987532876431942, -0.00270434794947505, 0.023500313982367516, 0.00819357018917799, -0.004694023635238409, 0.007757385261356831, -0.04474588856101036, -0.02634558454155922, 0.021071098744869232, -0.0023369458504021168, 0.004858431871980429, 0.008985414169728756, -0.0033368165604770184, 0.014709506183862686, -0.008576071821153164, 0.004865142051130533, -0.0019510898273438215, 0.01049528643488884, -0.03137848898768425, -0.01295134425163269, 0.010850944556295872, 0.0076768589206039906, -0.0029929012525826693, -0.0037042186595499516, 0.0006270161829888821, -0.005123497918248177, 0.014467926695942879, 0.01723266951739788, -0.01721924915909767, -0.027540059760212898, -0.0020584585145115852, -0.008428439497947693, -0.04675905033946037, -0.014253188855946064, -0.016239508986473083, -0.006180408410727978, 0.014897401444613934, -0.01936662197113037, 0.0030012894421815872, -0.01669582538306713, 0.030922172591090202, -0.01597108691930771, 0.011394498869776726, -0.01905793696641922, -0.0029794801957905293, -0.0011584071908146143, -0.00265066372230649, -0.004818168468773365, 0.23857314884662628, -0.028130587190389633, -0.006945409812033176, 0.02290978655219078, 0.007562779821455479, 0.015273191034793854, 0.023272156715393066, 0.00593882892280817, 0.0025617489591240883, 0.016427405178546906, -0.006562909111380577, -0.005969026125967503, -0.009844363667070866, -0.00846870243549347, 0.028023218736052513, 0.0047175101935863495, -0.04176640883088112, -0.03242533281445503, -0.016091877594590187, -0.012890948913991451, 0.0140787148848176, 0.020950309932231903, -0.02131267823278904, -0.0028033284470438957, 0.0023755314759910107, 0.026426110416650772, -0.014280031435191631, 0.01831977628171444, -6.553262937813997e-05, 0.004012903664261103, -0.025728214532136917, 0.026063742116093636, -0.0032529346644878387, 0.0045229047536849976, -0.008663308806717396, -0.0004240223206579685, 0.01564898155629635, -0.000913472380489111, 0.006193829234689474, 0.013723056763410568, -0.0023101037368178368, 0.0004974188632331789, 0.0303048025816679, 0.0018135237041860819, 0.0015283257234841585, 0.0004093429888598621, -0.011260287836194038, -0.0020819453056901693, -0.0011055616196244955, 0.01819898746907711, -0.0007226413581520319, 0.014454505406320095, 0.02035978063941002, 0.007247384171932936, -0.003516323398798704, 0.001312749576754868, 0.012656080536544323, -0.02987532876431942, 0.004657115321606398, 0.01801109127700329, -0.025137687101960182, 0.017366880550980568, -0.01022015418857336, 0.029526380822062492, -0.008253965526819229, 0.012495026923716068, -0.013159370981156826, 0.009193440899252892, -0.0036907976027578115, 0.0023503669071942568, -0.012018579058349133, -0.027231374755501747, -0.023258734494447708, -0.015917403623461723, -0.03159322589635849, -0.025432949885725975, 0.02665426954627037, 0.013575424440205097, 0.006150210741907358, 0.04198114573955536, -0.004559812601655722, -0.027271639555692673, -5.876965951756574e-05, -0.014709506183862686, 0.003576718270778656, -0.01874925196170807, -0.00034181817318312824, -0.02078925631940365, 0.010468443855643272, -0.016440825536847115, 0.012179631739854813, -0.03199585899710655, 0.006438764277845621, -0.012823844328522682, -0.010468443855643272, -0.0020601360592991114, 0.0029761248733848333, 0.010931471362709999, -0.011870946735143661, -0.019970569759607315, -0.04222272336483002, 0.04979221522808075, -0.0033401718828827143, 0.01754135452210903, 0.012005157768726349, 0.00126409821677953, 0.022668207064270973, 0.014749769121408463, 0.009569231420755386, -0.009394757449626923, -0.0023973407223820686, -0.06774961948394775, -0.004841655492782593, -0.0071198842488229275, 0.002222866751253605, -0.0010720089776441455, -0.030009539797902107, -0.013662661425769329, -0.005297972355037928, 0.00038690463406965137, 0.04498746618628502, -0.0268555860966444, -0.009133046492934227, -0.01353516150265932, -0.018225830048322678, -0.030787961557507515, 0.0058079734444618225, -0.009059230796992779, -0.030787961557507515, -0.0005053876084275544, 0.028023218736052513, -0.03843797743320465, 0.03395533934235573, 0.002289972035214305, 0.0004932247684337199, 0.009676599875092506, -0.005599946714937687, -0.014642400667071342, -0.0035599421244114637, 0.005126853473484516, -0.007307779043912888, 0.0025667818263173103, -0.00930752046406269, -0.011736736632883549, 0.010689891874790192, -0.008844492956995964, -0.0015492961974814534, 0.014051873236894608, 0.01118647214025259, 0.012340685352683067, -0.04348430410027504, -0.010213443078100681, 0.023822421208024025, -0.0033334612380713224, 0.022225311025977135, 0.01386397797614336, -0.008388176560401917, -0.0395921915769577, -0.015286612324416637, -0.00425448315218091, -0.02751321904361248, -0.004120272118598223, 0.003051618579775095, 0.004425602033734322, -0.020051097497344017, -0.017836617305874825, -0.16921299695968628, -0.005542906932532787, 0.028318483382463455, -0.02568795159459114, 0.0037209950387477875, -0.003081816015765071, 0.021124783903360367, -0.014226347208023071, -0.017514511942863464, -0.036666397005319595, -0.0008459475939162076, 0.010824102908372879, 0.005177182611078024, -0.0014528321335092187, -0.015004769898951054, 0.02399689517915249, -0.02729848027229309, 0.013709635473787785, 0.03940429538488388, 0.01103883981704712, 0.05610012263059616, -0.02218504808843136, 0.0009185053058899939, 0.02152741514146328, 0.00033175238058902323, 0.004767839331179857, 0.004811457823961973, 0.031405333429574966, -0.017702408134937286, -0.03884061053395271, -0.0076768589206039906, 0.006032776553183794, 0.005673762410879135, 0.02003767527639866, -0.0007029291591607034, -0.0009797390084713697, 0.01220647431910038, -0.00026988956960849464, -0.02129925787448883, 0.0060126446187496185, -0.007388305850327015, 0.008992125280201435, -0.005989158060401678, 0.00958265271037817, -0.007314489688724279, -0.00047225432354025543, 0.006864883471280336, -0.01145489327609539, 0.006965541746467352, 0.00444573350250721, 0.03701534494757652, -0.01787688210606575, 0.019218988716602325, -0.009817521087825298, 0.03696165978908539, -0.00889146700501442, -0.010971734300255775, -0.027030060067772865, -0.012018579058349133, -0.033579546958208084, -0.017165564000606537, -0.019312936812639236, 0.004311522468924522, 0.019943727180361748, -0.018185565248131752, -0.011548841372132301, -0.019084779545664787, 0.02226557582616806, 0.0004928053822368383, -0.012676212005317211, 0.014427662827074528, -0.002276550978422165, 0.01970214769244194, 0.007086331490427256, 0.03194217383861542, 0.015273191034793854, -0.0005238415906205773, -6.752481567673385e-05, 0.026291899383068085, -0.005623433273285627, -0.01968872733414173, 0.04740326106548309, -0.011085813865065575, 0.009012256748974323, 0.012005157768726349, -0.008012386038899422, 0.003939087502658367, -0.0006987350643612444, -0.012756738811731339, -0.018279513344168663, 0.021916627883911133, -0.004801392089575529, -0.0024694791063666344, -0.025218212977051735, 0.004016258753836155, 0.010884497314691544, -0.020212149247527122, 0.005365077406167984, -0.017380300909280777, 0.0062743560411036015, 0.0024812226183712482, -0.012978185899555683, -0.021983731538057327, 0.017085038125514984, 0.035807445645332336, -0.006069684401154518, 0.007757385261356831, 0.024225052446126938, 0.0498727411031723, -0.0232453141361475, 0.024157946929335594, 0.010696602053940296, 0.0012833909131586552, 0.02281584031879902, 0.014467926695942879, -0.015340296551585197, -0.013743188232183456, -0.009609494358301163, -0.005895210430026054, 0.007958701811730862, -0.013025159947574139, -0.02880164235830307, 0.024922950193285942, 0.018252670764923096, 0.0014729637186974287, -0.017272932454943657, -0.05695907399058342, -0.025862425565719604, 0.0010711700888350606, 0.04788642004132271, -0.007079620845615864, 0.02614426799118519, 0.0049624452367424965, 0.05019484832882881, 0.0020450374577194452, 0.030787961557507515, -0.017608460038900375, -0.02764742821455002, 0.02078925631940365, 0.024278737604618073, -0.016400562599301338, -0.0001316943671554327, 0.017192406579852104, -0.015286612324416637, -0.008978703990578651, 0.03180796280503273, -0.00642869807779789, -0.017581617459654808, -0.021822679787874222, -0.03521692007780075, 0.015501350164413452, 0.012763448990881443, -0.0024829001631587744, -0.003472704906016588, 0.00519060343503952, 0.0024376041255891323, 0.01316608116030693, -0.0325327031314373, 0.01515240129083395, -0.009374625980854034, 0.010669760406017303, 0.01162265706807375, -0.018158724531531334, -0.016883721575140953, 0.017299775034189224, 0.003814942669123411, 0.008401596918702126, 0.018078196793794632, -0.0016264673322439194, 0.0028704339638352394, 0.0010359397856518626, -0.019017674028873444, -0.01681661605834961, 0.034009020775556564, -0.022104522213339806, 0.0024006960447877645, -0.03339165076613426, 0.006448830012232065, -0.01755477488040924, 0.0047007338143885136, 0.01386397797614336, 0.020950309932231903, 0.010589233599603176, 0.011340814642608166, -0.02442636899650097, 0.008314359933137894, 0.003130467375740409, -0.0025835582055151463, -0.017487669363617897, -0.003065039636567235, 0.02218504808843136, 0.0026087227743119, -0.0417395643889904, -0.010246995836496353, 0.004274614620953798, 0.005297972355037928, -0.013984767720103264, 0.026399267837405205, 0.0016675693914294243, 0.030868489295244217, -0.04622220620512962, 0.0025667818263173103, -0.018588198348879814, -0.020292675122618675, 0.018386881798505783, -0.022144785150885582, -0.011327393352985382, -0.00797883328050375, -0.0003112013509962708, -0.013944503851234913, -0.0011315649608150125, 0.02270847000181675, -0.0024577355943620205, -0.004425602033734322, -0.0033603033516556025, -0.033257439732551575, 0.002268162788823247, 0.012709764763712883, -0.00030805577989667654, -0.01692398451268673, -0.016789773479104042, -0.016950827091932297, 0.02794269286096096, -0.006918567698448896, -0.008904888294637203, -0.007140015717595816, -0.020628202706575394, -0.04509483650326729, -0.0788622796535492, -0.002961026271805167, 0.013998189009726048, -8.382933447137475e-05, 0.002638920210301876, 0.006640080362558365, 0.034223757684230804, -0.01594424620270729, -0.0013924372615292668, 0.014347136951982975, -0.034733761101961136, 0.014722926542162895, 0.004502772819250822, -0.01850767247378826, -0.04724220931529999, -0.009703442454338074, 0.015702666714787483, 0.0006907663191668689, -0.0004999352968297899, 0.0035867842379957438, -0.003526389366015792, -0.0104348910972476, 0.03349902108311653, -0.0026926046703010798, -0.015769772231578827, 0.0060394867323338985, -0.017098458483815193, 0.02419821172952652, -0.014951085671782494, 0.006640080362558365, 0.009596074000000954, 0.004902050364762545, -0.012837264686822891, 0.011944763362407684, -0.00899883545935154, -0.0015971087850630283, -0.001307716709561646, -0.004549746867269278, 0.015568454749882221, 0.02560742385685444, -0.02152741514146328, -0.01563556119799614, 0.025432949885725975, 0.0047879707999527454, -0.001321976538747549, 0.001341269351541996, -0.020292675122618675, 0.0010090975556522608, 0.009394757449626923, -0.010575812309980392, 0.03736429288983345, 0.00593882892280817, 0.006405211519449949, -0.029687432572245598, -0.006334750913083553, -0.04600746929645538, 0.01885662041604519, -0.0038115873467177153, 0.01328016072511673, 0.0140787148848176, 0.04037061333656311, -0.004791326355189085, 0.017085038125514984, 0.00011533742508618161, 0.000440379255451262, -0.009918179363012314, -0.010287259705364704, -0.0006693764589726925, 0.01215279009193182, -0.015474507585167885, -0.01285739615559578, 0.01864188350737095, 0.019205568358302116, 0.01801109127700329, 0.013642529956996441, 0.0157295074313879, 0.0010325844632461667, -0.0046369838528335094, -0.023808998987078667, 0.04018272086977959, 0.004311522468924522, -0.0018604975193738937, -0.010401338338851929, 0.026922689750790596, -0.003576718270778656, 0.0015224539674818516, -0.023607682436704636, -0.01882977783679962, -0.005784486420452595, 0.0003156051388941705, 0.0009411533828824759, 0.009381336160004139, 0.0021003992296755314, 0.008529097773134708, 0.024802159518003464, 0.020467150956392288, 0.012689633294939995, -0.01504503283649683, 0.016320034861564636, 0.03798166289925575, 0.009924890473484993, -0.0024694791063666344, -0.0003921472525689751, -0.01874925196170807, -0.009206862188875675, 0.006351527292281389, -0.01574292965233326, -0.03459955006837845, 0.008153307251632214, 0.03846482187509537, -0.007046068087220192, 0.010065811686217785, -0.019567938521504402, 0.020722150802612305, -0.023272156715393066, 0.01703135296702385, 0.012776870280504227, -0.045121677219867706, -0.031432174146175385, 0.0023923078551888466, 0.015997929498553276, 0.015514770522713661, 0.03468007594347, 0.006841396447271109, 0.03696165978908539, -0.01990346424281597, 0.015380560420453548, -0.030814804136753082, 0.017957407981157303, 0.011797131039202213, 0.010428180918097496, 0.01285739615559578, 0.006532711908221245, -0.019312936812639236, -0.010394628159701824, -0.007260805461555719, -0.003060006769374013, -0.005828104913234711, -0.019943727180361748, 0.06823278218507767, -0.004479286260902882, -0.00781778059899807, 0.0018370106117799878, -0.002721124328672886, 0.0037646135315299034, 0.011897789314389229, 0.012958054430782795, 0.016105297952890396, -0.015514770522713661, -0.010193311609327793, -0.004381983075290918, -0.025030318647623062, -0.01594424620270729, 0.0009864495368674397, -0.007938570342957973, -0.017178984358906746, 0.04700062796473503, -0.0124279223382473, 0.005841525737196207, 0.050919584929943085, 0.012401079759001732, 0.019125042483210564, 0.018870040774345398, -0.00505639286711812, -0.011555551551282406, 0.03765955567359924, -0.007435279432684183, -0.011327393352985382, -0.002239643130451441, 0.01264265924692154, -0.006287776865065098, -0.010998576879501343, -0.020748993381857872, -0.007837912067770958, 0.003502902342006564, 0.005955605302006006, 0.0015652336878702044, 0.025446372106671333, 0.012904370203614235, -0.005771065130829811, -0.004180666990578175, -0.008663308806717396, -0.0175681971013546, 0.016400562599301338, 0.02249373309314251, -0.005344945937395096, -0.009918179363012314, -0.01597108691930771], "2fa953dc-0470-4f3f-9486-03d37d36846c": [-0.0251972246915102, -0.028403643518686295, 0.021866953000426292, -0.013183473609387875, -0.02065594494342804, 0.01958255097270012, 0.0011938061797991395, -0.02958712913095951, 0.009873843751847744, -0.014958702027797699, 0.015536682680249214, 0.010974760167300701, -0.02589905820786953, -0.013238519430160522, -0.031018320471048355, 0.009461000561714172, 0.006674305535852909, -0.006598617881536484, 0.021977044641971588, -0.0112568698823452, -0.0063749938271939754, 0.003557336051017046, -0.028266029432415962, -0.021096311509609222, -0.019747687503695488, 0.014477050863206387, 0.010878430679440498, -0.025720158591866493, 0.0036227030213922262, -0.007823387160897255, 0.03374308720231056, 0.004362381063401699, -0.009584853425621986, -0.0006850624340586364, 0.00175802584271878, 0.00025114655727520585, 0.014477050863206387, -0.0021588283125311136, 0.014284390024840832, -0.003299308940768242, 2.8598024073289707e-05, 0.00947476178407669, 0.006842883303761482, -0.01024540327489376, -0.02873391844332218, 0.011731640435755253, -0.017325671389698982, 0.000710435095243156, -0.010782100260257721, 0.02620181068778038, -0.014724756591022015, 0.010871549136936665, -0.036192625761032104, -0.021825667470693588, 0.0014010882005095482, 0.01610090211033821, -0.028568780049681664, 0.021674292162060738, -0.010637604631483555, -0.008607789874076843, 0.019210990518331528, -0.00734173646196723, -0.032862354069948196, 0.00562499463558197, 0.013458702713251114, -0.0076651303097605705, 0.014958702027797699, 0.018619248643517494, -0.011876136064529419, -0.014449527487158775, -0.004434628877788782, 0.023518327623605728, -0.01283943746238947, -0.017669707536697388, 0.04175225645303726, -0.009364670142531395, -0.020944934338331223, -0.0021880713757127523, -0.017614662647247314, 0.009970174171030521, 0.020862365141510963, -0.020243100821971893, 0.00716971792280674, -0.014779802411794662, 0.025073371827602386, -0.011133017018437386, -0.020600898191332817, 0.010300449095666409, -0.01468347292393446, -0.018220165744423866, 0.0012763749109581113, 0.001497418386861682, 0.00798164401203394, 0.031954098492860794, -0.0225137397646904, 0.01618347130715847, 0.012756869196891785, 0.02566511370241642, -0.00780274486169219, -0.018825670704245567, -0.019692642614245415, 0.03335776552557945, -0.02227979525923729, 0.001278095180168748, -0.02759171649813652, -0.014298152178525925, 0.008628432638943195, 0.01314218994230032, -0.013919712044298649, -0.012302740477025509, -0.0168853048235178, 0.04546784609556198, -0.0014174298848956823, -0.040651340037584305, -0.04648619517683983, -0.018935762345790863, 0.017710993066430092, -0.0048921974375844, -0.03836693614721298, -0.007396782282739878, 0.012467877939343452, 0.025293555110692978, 0.030192632228136063, 0.002447818871587515, 0.005913985427469015, -0.004874995443969965, -0.01438072044402361, -0.012715584598481655, -0.004186922684311867, -0.017064204439520836, 0.026490800082683563, 0.008291277103126049, 0.024220161139965057, 0.009006872773170471, -0.01765594631433487, 0.0038188036996871233, -0.0113325584679842, -0.012247694656252861, -0.03231189772486687, 0.00553210498765111, 0.020380714908242226, 0.02358713373541832, -0.0028021764010190964, -0.01879814825952053, -0.0059002237394452095, 0.03963299095630646, 0.03608253598213196, 0.009220174513757229, 0.007513754535466433, 0.012701823376119137, -0.011621548794209957, -0.01625227928161621, 0.008002285845577717, 0.0030602035112679005, -0.006037838291376829, -0.00801604799926281, 0.03258712589740753, 0.0038841706700623035, -0.001672876882366836, 0.0028365799225866795, 0.0033629555255174637, 0.03443115949630737, -0.010926594957709312, 0.012516043148934841, 0.023600894957780838, 0.012990813702344894, 0.012715584598481655, -0.02072475105524063, -0.006368113216012716, -0.021316494792699814, -0.009612376801669598, 0.011931181885302067, -0.025155939161777496, 0.005986232776194811, -0.006846324075013399, 0.014256867580115795, 0.0247430969029665, -0.018288973718881607, -0.026931166648864746, 0.024481628090143204, 0.010548155754804611, -0.022995391860604286, 0.00022254853683989495, 0.020669706165790558, 0.0031548135448247194, -0.018770623952150345, -0.004809628706425428, 0.0066983881406486034, 0.00843577180057764, -0.019376128911972046, 0.02243117243051529, 0.03839445859193802, 0.004155959468334913, 0.006749993655830622, -0.600659966468811, -0.04794491082429886, 0.0003644635435193777, -0.022252272814512253, 0.04706417769193649, 0.017435763031244278, 0.0031341714784502983, 0.009316504932940006, -0.0034300426486879587, 0.027261441573500633, -0.01672016829252243, 0.015288976952433586, -0.026724746450781822, -0.012316502630710602, 0.020091723650693893, -0.037266019731760025, 0.011538980528712273, -0.027467863634228706, -0.0019730485510081053, 0.005969031248241663, -0.029862357303500175, 0.0019524064846336842, -0.007871552370488644, -0.012591731734573841, 0.011745401658117771, -0.014766041189432144, -0.014449527487158775, 0.0030774055048823357, 0.01302521675825119, 0.020545853301882744, -0.018866954371333122, 0.025100894272327423, 0.018068790435791016, -0.0011680035386234522, 0.04255041852593422, 0.025417407974600792, -0.03272474184632301, 0.030577953904867172, 0.027302727103233337, 0.04615592211484909, -0.020518328994512558, -0.03228437528014183, 0.006264902651309967, -0.010155953466892242, 0.014614664949476719, 0.003560776589438319, 0.01649998500943184, 0.01491741742938757, 0.021068787202239037, -0.0032700656447559595, -0.0020865807309746742, 0.0011963865254074335, -0.005098619032651186, -0.031321071088314056, 0.0063749938271939754, 0.009839440695941448, 0.029146762564778328, -0.04139445722103119, 0.0006420579156838357, -0.029421990737318993, 0.004513757303357124, 0.013190354220569134, -0.010665128007531166, -0.015977049246430397, -0.029146762564778328, 0.013974757865071297, -0.015399068593978882, 0.006767195649445057, 0.017587140202522278, -0.0173394326120615, 0.005982792470604181, -0.001494838041253388, 0.013733931817114353, -0.008091735653579235, 0.006464443635195494, 0.03206419199705124, 0.030688045546412468, 0.00893806479871273, -0.02243117243051529, 0.01904585398733616, 0.011188062839210033, 0.0004300454747863114, -0.007527515757828951, -0.020999981090426445, -0.006794718559831381, -0.010665128007531166, -0.008229349739849567, -0.005401371046900749, 0.005652517545968294, -0.006550452671945095, 0.016995396465063095, 0.04084399715065956, -0.012756869196891785, -0.04813757166266441, -0.004871555138379335, -0.005538985598832369, -0.0026318782474845648, -0.007472469937056303, 0.013190354220569134, -0.027564194053411484, -0.02511465549468994, -0.010431182570755482, 0.0029638733249157667, 0.01841282658278942, 0.01972016505897045, 0.011621548794209957, -0.02975226566195488, -0.0020934613421559334, 0.01572934351861477, -0.010217880830168724, -0.0017588859191164374, -0.008284395560622215, -0.009405954740941525, -0.006836002692580223, 0.033412814140319824, -0.028403643518686295, 0.0017305029323324561, 0.012323383241891861, 0.03154125437140465, -0.002946671564131975, 0.03660546988248825, 0.020435761660337448, 0.010548155754804611, -0.01005962397903204, 0.0012264896649867296, 0.019747687503695488, 0.012674300000071526, -0.008325680159032345, 0.009275220334529877, -0.0008596609113737941, -0.008112377487123013, -0.01673392951488495, 0.00639907643198967, -0.011002283543348312, 0.0022087134420871735, -0.01098164077848196, 0.019293559715151787, 0.006849764380604029, 0.015564206056296825, 0.013417419046163559, -0.029889879748225212, -0.0008239671005867422, 0.022912822663784027, -0.008573386818170547, -0.018137598410248756, -0.017862368375062943, -0.0023446078412234783, 0.005253435578197241, -0.001209287904202938, 0.00951604638248682, -0.002251718193292618, -0.010431182570755482, -0.024096308276057243, 0.03421097621321678, -0.016307324171066284, 0.0060722422786056995, -0.02527979388833046, -0.009192652069032192, 0.004534399602562189, -0.0092545785009861, -0.009151367470622063, 0.0042694914154708385, -0.013417419046163559, 0.020380714908242226, -0.015550443902611732, -0.02388988621532917, 0.010314210318028927, 0.0037775193341076374, -0.00602751737460494, -0.014201821759343147, 0.003588299499824643, -0.021550439298152924, -0.003440363798290491, 0.0037912807893007994, 0.009763752110302448, -0.005783251486718655, -0.0030326806008815765, 0.007720176130533218, -0.03575225919485092, -0.013960995711386204, -0.017903653904795647, 0.024921994656324387, -0.006701828446239233, -0.0046204086393117905, 0.011649072170257568, 0.00794035941362381, 0.03288987651467323, -0.005721325054764748, -0.05232105031609535, 0.011876136064529419, -0.02881648764014244, 0.04692656174302101, -0.006137609016150236, 0.01438072044402361, 0.025802727788686752, 0.024454105645418167, 0.008146781474351883, 0.01202063076198101, -0.006309627089649439, 0.015344022773206234, 0.02851373516023159, 0.008318799547851086, 0.007919717580080032, -0.005366967525333166, 0.020366953685879707, -0.013286684639751911, 0.008470175787806511, -0.01827521249651909, 0.0008497698581777513, -0.020766036584973335, -0.000826977426186204, -0.029174285009503365, 0.0017571657663211226, -0.005219032056629658, 0.0113325584679842, -0.0030171989928931, -0.013981638476252556, 0.006643342319875956, -0.01487613283097744, 0.012770630419254303, 0.010947237722575665, 0.013176592998206615, 0.0051674265414476395, 0.008717881515622139, 0.002846901072189212, -0.0015430031344294548, 0.015330260619521141, 0.0026129563339054585, 3.0452594728558324e-05, -0.02898162417113781, -0.004586005117744207, -0.021977044641971588, 0.006189214531332254, 1.5293491742340848e-05, 0.007727057207375765, -0.026724746450781822, 0.0225137397646904, -0.008525221608579159, 0.036715563386678696, -0.007644488476216793, 0.00035865791141986847, -0.0317339152097702, 0.010121550410985947, -0.01106420997530222, 0.0355871245265007, 0.002926029497757554, 0.042880695313215256, 0.029036670923233032, -0.03844950720667839, -0.009199532680213451, -0.03506418690085411, -0.0065091680735349655, 0.005944948643445969, 0.018096312880516052, -0.0005298160249367356, 0.0019592870958149433, 0.014174298383295536, 0.009323385544121265, 0.014174298383295536, 0.04992656037211418, 0.03013758733868599, 0.027261441573500633, 0.020064201205968857, 0.02488071098923683, 0.01926603727042675, -0.0174908097833395, -0.0009340587421320379, -0.012006869539618492, -0.008332560770213604, 0.010878430679440498, -0.00801604799926281, -0.004730500280857086, 0.00301375868730247, -0.0015361224068328738, 0.0038084827829152346, 0.009350908920168877, 0.014518335461616516, 0.01819264329969883, 0.029917404055595398, 0.015206407755613327, -0.01788989081978798, -0.026380708441138268, 0.03283483162522316, 0.02159172296524048, 0.026270616799592972, 0.024013739079236984, -0.0014251706888899207, -0.01124998927116394, -0.006880727596580982, 0.025155939161777496, 0.009309624321758747, 0.014256867580115795, 0.00287958444096148, -0.005876141134649515, -0.021151356399059296, 0.010499990545213223, 0.03432106971740723, -0.01572934351861477, -0.008497698232531548, -0.036027491092681885, -0.012323383241891861, -0.019073376432061195, -0.013926592655479908, -0.00652981037274003, 0.03239446505904198, 0.006371553521603346, -0.0007078548660501838, -0.01101604476571083, 0.005618114024400711, -0.02189447544515133, -0.003258024575188756, -0.007376139983534813, 0.007014901842921972, -0.007028663065284491, 0.015275214798748493, 0.01255732774734497, 0.023600894957780838, -0.01856420375406742, 0.01329356525093317, 0.0056662792339921, -0.007816506549715996, -0.01725686527788639, -0.02320181392133236, 0.01056191697716713, -0.013857785612344742, 0.026642177253961563, -0.0023411675356328487, 0.002690364373847842, -0.017986221238970757, -0.01742200180888176, -0.028348596766591072, 0.011545861139893532, -0.007761460728943348, 0.007080268580466509, -0.018550440669059753, 0.017380718141794205, 0.04007335752248764, -0.010850907303392887, 0.025623830035328865, 0.002819378161802888, -0.0074793510138988495, -0.018123837187886238, 0.014298152178525925, -0.005559627898037434, 0.023064197972416878, -0.01515136193484068, -0.01098164077848196, -0.005955269560217857, 0.005845177918672562, 0.011456411331892014, -0.008401368744671345, 0.03710088133811951, 5.7787361583905295e-05, -0.007775221951305866, 0.013403656892478466, 0.00502981198951602, 0.013864666223526001, 0.015825673937797546, -0.00951604638248682, 0.016857782378792763, -0.00175802584271878, 0.05463297665119171, -0.029091715812683105, -0.013685766607522964, 0.009261459112167358, 0.014573381282389164, 0.002100342186167836, -0.012860079295933247, 0.0032545840367674828, -0.01619723252952099, 0.01757337898015976, 0.01641741581261158, 0.004850912839174271, -0.016004571691155434, 0.0009908247739076614, 0.020394476130604744, -0.059229303151369095, -0.017766037955880165, 0.0014509734464809299, 0.028376121073961258, -0.02042199857532978, -0.027027497068047523, 0.030412815511226654, -0.011800447478890419, -0.005177747458219528, -0.013802739791572094, -0.0026009150315076113, 0.0020177734550088644, -0.008112377487123013, -0.02087612822651863, -0.01972016505897045, -0.005236233584582806, -0.046816471964120865, 0.014669710770249367, 0.004919720347970724, -0.02719263546168804, -0.020532090216875076, -0.01279815286397934, -0.011986227706074715, 0.03685317561030388, -0.00552866468206048, -0.015495398081839085, -0.03236694261431694, 0.0256513524800539, -0.01826145127415657, 0.0059724715538322926, -0.03228437528014183, -0.014353197999298573, 0.008470175787806511, -0.006086003500968218, -0.02442658320069313, -0.009454119950532913, -0.00034683168632909656, 0.007678891997784376, -0.02273392304778099, -0.005573389120399952, 0.010871549136936665, 0.008876138366758823, 0.02958712913095951, -0.012137603014707565, 0.006753433961421251, 0.011002283543348312, 0.004733940586447716, -0.013727051205933094, 0.013080262579023838, -0.018605487421154976, -0.014311913400888443, -0.02799079939723015, 0.005559627898037434, 0.010038981214165688, 0.02812841348350048, 0.008683478459715843, 0.027344010770320892, 0.0015739664668217301, 0.009818797931075096, -0.00029135579825378954, 0.012089438736438751, -0.01438072044402361, 0.009082560427486897, 0.008373845368623734, 0.007644488476216793, 0.010782100260257721, -0.007121553178876638, -0.0025183463003486395, 0.023559611290693283, -0.038587119430303574, 0.03027520142495632, 0.0015189206460490823, -0.0015928883804008365, 0.017545854672789574, -0.01764218509197235, -0.03366051986813545, -0.01410549134016037, 0.023834839463233948, 0.020752273499965668, 0.020091723650693893, 0.00793347880244255, -0.012688061222434044, -0.01124998927116394, -0.0007009741384536028, -0.012350905686616898, 0.021633006632328033, -0.024866949766874313, -0.02496328018605709, 0.018123837187886238, -0.030715567991137505, -0.0024030942004173994, -0.013176592998206615, 0.03605501353740692, -0.02936694584786892, -0.008552744053304195, 0.016844021156430244, -0.0015146201476454735, 0.0025991948787122965, 0.02289906144142151, 0.008332560770213604, -0.03539446368813515, -0.00425573019310832, -0.0072798095643520355, -0.02087612822651863, 0.004672014154493809, 0.01001833938062191, 0.018013745546340942, 0.03583483025431633, 0.04161464050412178, 0.01048622839152813, 0.008559624664485455, 0.010307329706847668, -0.0038910515140742064, 0.005150224547833204, 0.013885308057069778, 0.001899080816656351, -0.025087133049964905, -0.0001227779866894707, 0.005962150637060404, 0.017353195697069168, 0.012213291600346565, -0.012777511030435562, 0.009048156440258026, 0.04315592348575592, -0.011428888887166977, -0.03655042499303818, -0.012233933433890343, -0.06033021956682205, 0.004283253103494644, 0.0029243091121315956, 0.007520635146647692, 0.027935754507780075, -0.014807325787842274, -0.004183482378721237, 0.008346322923898697, 0.010410540737211704, 0.021949520334601402, -0.00952292699366808, 0.010438064113259315, -0.022376125678420067, 0.017518332228064537, 0.0010759737342596054, -0.011346319690346718, -0.01625227928161621, 0.01594952680170536, -0.02256878651678562, 0.022623831406235695, 0.02867887169122696, 0.015839435160160065, 0.021412823349237442, 0.003522932529449463, 0.009295863099396229, -0.017766037955880165, -0.01132567785680294, -0.03635776415467262, 0.0019919706974178553, -0.008277514949440956, -0.015908241271972656, -0.04637610539793968, -0.015233931131660938, -0.006925452034920454, -0.01819264329969883, 0.03035777062177658, 0.00734173646196723, -0.0038772900588810444, 0.007527515757828951, 0.002826258772984147, -0.017064204439520836, 0.0018560762982815504, -0.03715592995285988, 0.04131188988685608, -0.0070665073581039906, 0.038339413702487946, 0.04169720783829689, 0.016004571691155434, -0.014518335461616516, -0.0506972000002861, 0.0038084827829152346, 0.02335318922996521, 0.0052603161893785, 0.038201797753572464, -0.012970170937478542, -0.0337706096470356, 0.001084574731066823, 0.01826145127415657, 0.0047442615032196045, -0.04513757303357124, 0.035119231790304184, 0.03520180284976959, 0.016610076650977135, -0.010231642052531242, -0.00022211848408915102, -0.009172010235488415, 0.01933484524488449, 0.0011791846482083201, -0.013121547177433968, -0.010706411674618721, -0.00328554748557508, -0.012206410989165306, -0.0011292994022369385, 0.039577946066856384, 0.02335318922996521, -0.0009048156789503992, 0.007059626281261444, -0.0026353185530751944, -0.021454108878970146, -0.0007930038264021277, 0.00021588282834272832, 0.0019489660626277328, 0.04667885601520538, 0.0031599742360413074, 0.0185091570019722, 0.0308256596326828, -0.006959856022149324, 0.010032100602984428, -0.009227056056261063, -0.00680159917101264, 0.05061463266611099, 0.005583710502833128, -0.007190360222011805, -0.01773851551115513, 0.0008437492069788277, 0.027013735845685005, -0.0016702966531738639, -0.0034610058646649122, 0.01572934351861477, -0.03864216431975365, -0.008490817621350288, 0.03712840750813484, 0.0012591731501743197, -0.023463280871510506, -0.020779797807335854, -0.017477048560976982, -0.004434628877788782, -0.017532093450427055, 0.010087146423757076, 0.020133009180426598, -0.02249997854232788, -0.0266696996986866, 0.016444938257336617, -0.025142177939414978, -0.023243097588419914, 0.008050451055169106, -0.015577967278659344, -0.0006037838174961507, 0.032339420169591904, -0.05025683343410492, 0.0031152493320405483, 0.005538985598832369, -0.0021588283125311136, -0.00643692072480917, 0.016940351575613022, -0.01579814963042736, -0.012990813702344894, 0.019362367689609528, 0.0006803319556638598, -0.028032083064317703, -0.032256849110126495, 0.016155948862433434, 0.03635776415467262, 0.0021055026445537806, 0.053064171224832535, 0.01965135708451271, 0.012646777555346489, -0.0017631864175200462, 0.003003437537699938, -0.025266030803322792, -0.008800450712442398, 0.005769490264356136, -0.0020934613421559334, 0.021412823349237442, -0.01673392951488495, 0.029256854206323624, 0.0062855444848537445, 0.01663759909570217, 0.003479928011074662, -0.012983933091163635, -0.04040363058447838, -0.005191509146243334, -0.0034317628014832735, -8.767552208155394e-05, -0.0016247117891907692, 0.0020366953685879707, -0.016678882762789726, -0.02898162417113781, -0.0018749982118606567, 0.007001140154898167, -0.016444938257336617, 0.015288976952433586, 0.012584851123392582, 0.0120687959715724, 0.017600901424884796, -0.018743101507425308, -0.026105480268597603, 0.00716971792280674, -0.04122931882739067, -0.03319263085722923, -0.008153662085533142, -0.007286690641194582, 0.0302201546728611, 0.01711924932897091, -0.039330240339040756, -0.044587112963199615, -0.0003464016190264374, -0.01079586148262024, -0.002136465860530734, -0.0026869240682572126, 0.010844026692211628, -0.0028916257433593273, 0.013864666223526001, -0.0027935754042118788, 0.0014432326424866915, -0.013823381625115871, 0.023545850068330765, -0.013383015058934689, -0.004974766168743372, -0.04687151685357094, -0.013988519087433815, -0.0225137397646904, -0.0026129563339054585, -0.03454125300049782, 0.005033252295106649, -0.010204118676483631, -0.02713758870959282, 0.019018331542611122, 0.028169699013233185, -0.03027520142495632, -0.01364448294043541, 0.011387604288756847, -0.014057326130568981, -0.026532085612416267, 0.002655960852280259, 0.0008596609113737941, -0.012316502630710602, 0.002170869614928961, 0.01051375176757574, -0.019665120169520378, -0.006870406214147806, 0.0133348498493433, -0.007142195012420416, -0.01287384144961834, 0.03192657604813576, -0.02799079939723015, -0.01279127225279808, -0.01005274336785078, -0.012213291600346565, 0.011270632036030293, 0.012619254179298878, 0.014504573307931423, 0.007376139983534813, 0.0011482214322313666, 0.005807334091514349, -0.010155953466892242, 0.003894491819664836, -0.02567887492477894, -0.011717879213392735, 0.012770630419254303, -0.005043573211878538, 0.0018577964510768652, -0.0025716719683259726, 0.017862368375062943, -0.010493109934031963, 0.005177747458219528, 0.02543116919696331, 0.00138216617051512, -0.046128395944833755, 0.005717884749174118, 0.003746556118130684, -0.041807301342487335, -0.013933473266661167, -0.007616965565830469, 0.005518343299627304, -0.005755728576332331, -0.0334678590297699, 0.009584853425621986, -0.032036665827035904, 0.011243108659982681, -0.012529805302619934, 0.0011551021598279476, -0.024288969114422798, 0.01155962236225605, 0.005741967353969812, -0.03613758087158203, 0.006474764551967382, 0.25078874826431274, -0.03751372545957565, -0.007892194204032421, 0.009825678542256355, 0.011710998602211475, 0.014766041189432144, 0.025775205343961716, 0.011160540394484997, 0.015688057988882065, 0.02234860323369503, -0.010307329706847668, 0.007266048341989517, -0.023642180487513542, -0.004241968505084515, 0.021013742312788963, -0.04326601326465607, -0.05166050046682358, -0.005143343936651945, -0.030385293066501617, -0.00219667237251997, 0.021055025979876518, 0.0005440075183287263, -0.005153664853423834, -0.014697234146296978, 0.003055043052881956, 0.015426591038703918, -0.01780732348561287, 0.006240820046514273, 0.006010315380990505, 0.005852058995515108, -0.011587144806981087, 0.004376142751425505, 0.0074793510138988495, 0.006959856022149324, -0.011511457152664661, -0.0047167385928332806, 0.008621552027761936, 0.009756871499121189, 0.007121553178876638, 0.012956409715116024, 0.0041077942587435246, -0.0028383000753819942, 0.018302734941244125, -0.007740818429738283, -0.034871526062488556, 0.006684626918286085, 0.004379583057016134, -0.009915128350257874, -0.01560548972338438, 0.016775213181972504, -0.0028365799225866795, -0.016059618443250656, 0.02958712913095951, 0.008917422965168953, 0.007988524623215199, 0.01563301309943199, 0.008580267429351807, -0.019981632009148598, -0.0005831416347064078, 0.02003667876124382, -0.0011525218142196536, 0.024990802630782127, -0.002029814524576068, 0.02397245541214943, -0.014353197999298573, 0.009901367127895355, -0.024412821978330612, -0.011181182228028774, 0.007021782454103231, 0.0030171989928931, -0.00817430391907692, -0.01082338485866785, -0.005091738421469927, -0.0020504568237811327, -0.04260546341538429, -0.02950455993413925, 0.027151349931955338, 0.02775685489177704, -0.0014475330244749784, 0.024564197286963463, -0.003089446574449539, -0.006213297136127949, -0.006244260352104902, 0.0020366953685879707, 0.002840020228177309, -0.015247692354023457, 0.00023157948453444988, -0.010960998944938183, -0.00017986651801038533, -0.00871100090444088, -0.009942651726305485, -0.019761448726058006, -0.009880724363029003, -0.023944931104779243, -0.006172012537717819, -0.011490815319120884, -0.004286693409085274, 0.010176596231758595, -0.014518335461616516, 0.009584853425621986, -0.02404126152396202, 0.05411004275083542, 0.02179814502596855, 0.03539446368813515, -0.01610090211033821, 0.002170869614928961, 0.004417426884174347, -0.00015073093527462333, 0.011649072170257568, -0.0029569927137345076, -0.008332560770213604, -0.042743079364299774, 0.005721325054764748, 0.008573386818170547, -0.012536685913801193, -0.014710995368659496, -0.03291739895939827, -0.020683467388153076, -0.00475802319124341, -0.007754580117762089, 0.0423852801322937, -0.020944934338331223, -0.012440355494618416, 0.008380725979804993, -0.00756880035623908, -0.02172933705151081, -0.01440824382007122, 0.004995408002287149, -0.010465586557984352, -0.015853196382522583, 0.0414770245552063, -0.014710995368659496, 0.022389886900782585, 0.014256867580115795, 0.012392190285027027, -0.006089443806558847, -0.005387609824538231, -0.013534391298890114, 0.00030253699515014887, -0.0028142174705863, -0.005243114195764065, 0.018440349027514458, 0.013651363551616669, 0.00652981037274003, 0.004850912839174271, -0.0010415700962767005, -0.004424307961016893, 0.015990810468792915, -0.0013262602733448148, 0.010892191901803017, -0.04199996218085289, -0.006674305535852909, 0.009165128692984581, 0.007004580460488796, 0.028348596766591072, 0.009447239339351654, -0.011979347094893456, -0.024027500301599503, -0.007162837311625481, 0.012736226432025433, -0.03886234760284424, -0.0010862948838621378, 0.00425573019310832, -0.010087146423757076, -0.02789446897804737, -0.015096316114068031, -0.1758163571357727, 0.011552741751074791, 0.023477042093873024, -0.02382107824087143, 0.031155934557318687, -0.013802739791572094, 0.006220177747309208, -0.013176592998206615, -0.009770632721483707, -0.028651349246501923, 0.007727057207375765, -0.011628429405391216, -0.012970170937478542, -0.002428896725177765, -0.007176598999649286, 0.011353200301527977, -0.019678881391882896, 0.037733908742666245, 0.04530271142721176, -0.010960998944938183, 0.0337706096470356, -0.0154128298163414, -0.008883018977940083, 0.0069942595437169075, 0.004981646779924631, 0.018990807235240936, -0.009639899246394634, 0.004871555138379335, -0.010176596231758595, -0.032642170786857605, -0.007431185804307461, 0.016844021156430244, 0.016995396465063095, 0.012749987654387951, 0.01005962397903204, -0.015935765579342842, 0.0016849181847646832, 0.0011413407046347857, -0.028100891038775444, 0.01487613283097744, 0.010809622704982758, 0.017518332228064537, 0.015068793669342995, 0.013004574924707413, -0.01740824058651924, 0.024990802630782127, 0.013410537503659725, 0.00893806479871273, 0.017545854672789574, -0.011208705604076385, 0.018440349027514458, -0.012467877939343452, 0.0016212713671848178, -0.0037018314469605684, 0.020243100821971893, 0.014160537160933018, 0.007389901205897331, 0.009763752110302448, 0.002313644625246525, -0.015399068593978882, -0.010678889229893684, -0.00820182729512453, 0.02536236122250557, 0.008759166114032269, -0.02035319246351719, -0.02496328018605709, -0.024082547053694725, 0.027688046917319298, 0.0038463266100734472, -0.001771787297911942, 0.01545411441475153, -0.006202975753694773, -0.0018509157234802842, -0.010912833735346794, 0.028486212715506554, -0.006154811009764671, -0.013493106700479984, 0.01229585986584425, 0.023022914305329323, -0.0028107771649956703, -0.017366956919431686, 0.04530271142721176, -0.005779811181128025, -0.005267196800559759, 0.014614664949476719, 0.0028486212249845266, 0.020683467388153076, -0.02033943124115467, -0.021302731707692146, -0.004324537236243486, 0.029091715812683105, -0.010582558810710907, -0.03638528659939766, -0.014779802411794662, -0.01965135708451271, 0.022238511592149734, -0.004802747629582882, 0.004345179535448551, -0.0023566491436213255, -0.004524078220129013, 0.01619723252952099, -0.0022740804124623537, -0.014449527487158775, 0.00462728925049305, 0.02705502137541771, -0.005917425733059645, 0.014174298383295536, 0.017917415127158165, 0.03547703102231026, -0.015825673937797546, 0.03814675286412239, 0.020600898191332817, 0.009873843751847744, 0.025857774540781975, -0.007775221951305866, 0.014999985694885254, -0.019899064674973488, -0.01904585398733616, 0.008029809221625328, -0.008188066072762012, -0.028926579281687737, -0.01949998177587986, 0.031954098492860794, 0.04673390090465546, -0.023256858810782433, -0.018467873334884644, -0.0500916950404644, -0.011422007344663143, 0.004974766168743372, 0.03828436881303787, -0.005989673547446728, 0.015288976952433586, -0.0002922159037552774, 0.04263298958539963, -0.026876121759414673, 0.02574768289923668, -0.02189447544515133, -0.03809170797467232, -0.00948164239525795, 0.023477042093873024, -0.013162831775844097, 0.01002521999180317, -0.025720158591866493, -0.012220172211527824, -0.014215582981705666, 0.01515136193484068, 0.004482794087380171, -0.01773851551115513, -0.005569948814809322, -0.024399060755968094, 0.005989673547446728, 0.009970174171030521, -0.012626134790480137, 0.024412821978330612, 0.004427748266607523, 0.006116966716945171, 0.024701811373233795, -0.014848610386252403, 0.008532102219760418, -0.008415129967033863, -0.01233026385307312, 0.006175452843308449, -0.014477050863206387, -0.01695411279797554, 0.01872934028506279, -0.012110080569982529, 0.002513185841962695, 0.014449527487158775, 0.005604352802038193, 0.014545857906341553, -0.00848393701016903, -0.021399062126874924, -0.0056284349411726, 0.021412823349237442, -0.030110063031315804, -0.030577953904867172, -0.03798161447048187, -0.016128424555063248, -0.024082547053694725, -0.010135311633348465, 0.007616965565830469, 0.015055031515657902, 0.018605487421154976, 0.0179449375718832, -0.0195687897503376, 0.02256878651678562, 0.0009547009249217808, 0.007561919745057821, -0.009261459112167358, 0.018935762345790863, 0.03052290715277195, 0.004032106138765812, -0.029394468292593956, -0.020779797807335854, 0.0010579118970781565, 0.010169715620577335, -0.014084849506616592, 0.029394468292593956, 0.00026770331896841526, 0.03652290254831314, -0.024399060755968094, -0.02179814502596855, -0.03415593132376671, -0.0272752046585083, 0.03776143118739128, -0.031155934557318687, -0.008270634338259697, -0.016155948862433434, -0.009811917319893837, -0.015288976952433586, -0.017133012413978577, 0.0084426524117589, -0.011153659783303738, -0.02010548673570156, 0.002203552983701229, -0.025252269580960274, 0.0031152493320405483, 0.008552744053304195, 0.007513754535466433, -0.021633006632328033, -0.012756869196891785, -0.016128424555063248, 0.019637595862150192, -0.020243100821971893, 0.0027557313442230225, 0.010128431022167206, -0.018825670704245567, -0.026408232748508453, -0.08218341320753098, 0.02551373839378357, 0.011545861139893532, -0.0041731614619493484, -0.0033027492463588715, 0.0033715565223246813, 0.023642180487513542, -0.02219722792506218, 0.004186922684311867, 0.014697234146296978, -0.032091714441776276, 0.010899072512984276, 0.007850910536944866, -0.004410546272993088, -0.010162835009396076, -0.015440352261066437, 0.03368804231286049, 0.0001762111351126805, 0.003571097506210208, 0.001954126637428999, 0.0031788961496204138, 0.011883016675710678, 0.022155942395329475, 0.011305035091936588, -0.021082548424601555, 0.019541265442967415, -0.020986219868063927, 0.006371553521603346, 0.007252286653965712, 0.025610066950321198, 0.016555029898881912, -0.021454108878970146, -0.02142658643424511, -0.0055527472868561745, -0.008814211934804916, -0.005494261160492897, 0.02172933705151081, -0.0014853770844638348, 0.02581648901104927, 0.03451373055577278, -0.027261441573500633, -0.010527512989938259, 0.012082557193934917, 0.0006141049088910222, -0.013493106700479984, -0.003942656796425581, -0.02150915376842022, 0.003588299499824643, 0.01571558229625225, 0.010458705946803093, 0.03030272386968136, 0.008456414565443993, -0.006650222931057215, -0.03432106971740723, -0.009096321649849415, -0.03536694124341011, 0.02219722792506218, -0.013259162195026875, 0.0038497671484947205, 0.025321077555418015, 0.04054124653339386, -0.00974999088793993, 0.00851146038621664, -0.0021949519868940115, -0.01279127225279808, -0.0052293529734015465, -0.004025225527584553, -0.015743104740977287, 0.011366961523890495, -0.01672016829252243, -0.036660514771938324, 0.007527515757828951, -0.003866968909278512, 0.007954120635986328, 0.011545861139893532, 0.03236694261431694, -0.0004450970736797899, 0.012571088969707489, -0.020215578377246857, 0.016155948862433434, 0.020394476130604744, -0.0002638328878674656, -0.005115821026265621, 0.009653660468757153, -0.0018354341154918075, -0.016128424555063248, -0.034568775445222855, -0.02072475105524063, -3.5693774407263845e-05, -0.01438072044402361, -0.01283943746238947, 0.013362373225390911, -0.0009856641991063952, 0.04062381386756897, 0.024550436064600945, 0.005865820217877626, 0.016678882762789726, -0.031403642147779465, -0.003691510297358036, 0.026146763935685158, 0.015206407755613327, -0.010912833735346794, -0.0007177459192462265, -0.01572934351861477, -0.01965135708451271, -0.026958690956234932, -0.027096305042505264, -0.04552289471030235, 0.012426594272255898, 0.012419713661074638, 0.001264333724975586, 0.010844026692211628, -0.012392190285027027, 0.027041258290410042, -0.028100891038775444, 0.021454108878970146, -0.015853196382522583, -0.0194174125790596, -0.03839445859193802, -0.0032201805151998997, 0.017903653904795647, 0.001753725460730493, 0.03129354864358902, -0.006753433961421251, 0.043348584324121475, -0.001084574731066823, 0.011428888887166977, -0.0450274795293808, 0.03729354217648506, -0.01305962074548006, 9.552385017741472e-05, 0.012412832118570805, -0.015908241271972656, -0.013121547177433968, -0.013224758207798004, 0.0016917989123612642, -0.0022534383460879326, -0.01005274336785078, -0.03492657467722893, 0.06434856355190277, 0.000814506143797189, 0.010300449095666409, -0.00041026336839422584, 0.0048543531447649, -0.01128439325839281, -0.01596328802406788, 0.01611466333270073, -0.007293571252375841, -0.008924303576350212, -0.009082560427486897, -0.006017196457833052, -0.030385293066501617, -0.004885316360741854, -0.015894480049610138, -0.0064472416415810585, -0.010727054439485073, 0.03734859079122543, 0.0031926576048135757, 0.001361523987725377, 0.026477038860321045, 0.014986224472522736, 0.00928210187703371, 0.0168853048235178, -0.012247694656252861, -0.007266048341989517, 0.024068785831332207, -0.021288970485329628, 0.008931184187531471, -0.019665120169520378, 0.007114672102034092, 0.009371550753712654, -0.010011458769440651, -0.009908247739076614, -0.005091738421469927, -0.0006162551580928266, -0.006887608207762241, 0.006753433961421251, 0.007809625938534737, 0.013527510687708855, 0.026408232748508453, 0.001649654470384121, -0.01314218994230032, -0.02073851227760315, -0.0011860653758049011, 0.014532096683979034, -0.015055031515657902, -0.0216467697173357, -0.014422005042433739], "06ef4019-abd1-439c-bb45-44f3e4971932": [-0.023035818710923195, 0.008046199567615986, -0.0033491794019937515, -0.02479209564626217, 0.011844659224152565, 0.013090389780700207, 0.004656176082789898, -0.02044905535876751, -0.01029259990900755, -0.0281548909842968, 0.006361398845911026, 0.01934627629816532, 0.008148308843374252, -0.01697734370827675, -0.0004973565228283405, -0.015316369011998177, 0.006041456945240498, -0.007794329896569252, 0.03125900775194168, -0.011994418688118458, 0.004635754507035017, -0.002780771814286709, 0.008209574036300182, -0.019332662224769592, -0.01564311794936657, 0.011939960531890392, 0.015575045719742775, -0.02189219743013382, -0.006055071484297514, -0.002025164430961013, 0.03090502880513668, -0.00018018006812781096, -0.024560648947954178, -0.01383919082581997, -0.0010551277082413435, -0.017413010820746422, 0.005462838336825371, 0.007699028123170137, 0.031068403273820877, 0.0037576158065348864, 0.021483760327100754, 0.011395378969609737, 0.0010483203222975135, 0.002489760983735323, -0.00017581915017217398, 0.018243497237563133, -0.029407428577542305, 0.005047594662755728, -0.02176966518163681, 0.016432762145996094, 0.0015461023431271315, 0.023757390677928925, -0.02741970494389534, -0.008822228759527206, -0.0046902126632630825, 0.020027004182338715, -0.029924781993031502, 0.03215756639838219, 0.0038188814651221037, -0.0256089698523283, -6.15845710854046e-05, 0.008502286858856678, -0.03327396139502525, 0.0007496511680074036, -0.014540339820086956, 0.01757638528943062, -0.01280448492616415, 0.014349736273288727, -0.013328644447028637, 0.02211003005504608, -0.0069093843922019005, 0.009101326577365398, -0.004468976054340601, -0.015956252813339233, 0.03814797103404999, 0.007181675173342228, -0.035996872931718826, 0.009843319654464722, 0.010932483710348606, 0.0027654555160552263, 0.007835173979401588, -0.027515007182955742, -0.010857603512704372, -0.01131369173526764, -0.0030377465300261974, 0.0026922773104161024, 0.0019570915028452873, 0.018583862110972404, 0.0073722791858017445, 0.0019724080339074135, 0.02416582778096199, 0.03645976632833481, 0.021252313628792763, 0.015929024666547775, -0.016214929521083832, 0.01269556861370802, -0.030333219096064568, 0.01237562671303749, -0.012178215198218822, -0.024478960782289505, -0.02416582778096199, 0.0013155059423297644, -0.021129781380295753, 0.004237528890371323, -0.06447850912809372, 0.00314155756495893, 0.025540895760059357, 0.0005781929357908666, -0.012858943082392216, -0.014254434034228325, -0.020530741661787033, 0.045527055859565735, -0.002328088041394949, -0.05208927020430565, -0.029407428577542305, 0.01708626002073288, 0.029053449630737305, -0.010632963851094246, -0.002717804629355669, -0.0018260516226291656, -0.0005769165582023561, 0.00017156460671685636, 0.03850194811820984, 0.00444855447858572, 0.018488559871912003, 0.009707174263894558, -0.013791539706289768, -0.007474387995898724, -0.0004352401592768729, -0.037358324974775314, 0.023662088438868523, 0.017494697123765945, 0.011579175479710102, -0.01040832418948412, -0.03534337133169174, 0.01208972092717886, -0.00604486046358943, -0.012082913890480995, -0.025091616436839104, -0.0021698190830647945, 0.01522106770426035, 0.0015597168821841478, 0.012185022234916687, -0.027324402704834938, 0.0036555067636072636, 0.004322619643062353, 0.013743888586759567, 0.04269523173570633, -0.0031994192395359278, 0.010381095111370087, -0.005762358661741018, -0.016895657405257225, -0.0015171715058386326, 0.008338912390172482, 0.011504295282065868, 0.006688147783279419, 0.0009028148488141596, -0.0035704157780855894, -0.01400937233120203, -0.01720879226922989, 0.010394709184765816, -0.002559535438194871, 0.013308223336935043, -0.02585403062403202, 0.008264032192528248, 0.03055105172097683, 0.008100657723844051, -0.005364133045077324, 0.009414461441338062, -0.005156510975211859, -0.007651377469301224, 0.003934605047106743, 0.02262738347053528, 0.023607630282640457, -0.02344425581395626, 0.010564890690147877, 0.00505099818110466, 0.0002833528269547969, -0.02260015346109867, -0.0027739645447582006, -0.021728822961449623, -0.00020570734341163188, 0.009530185721814632, 0.028726700693368912, 0.01971386931836605, -0.015670347958803177, 0.017957592383027077, 0.003703157650306821, 0.010558083653450012, -0.009312352165579796, 0.006871944293379784, 0.023988837376236916, 0.010741880163550377, 0.01497600506991148, -0.6212591528892517, -0.009822898544371128, 0.0036486994940787554, -0.00014061278488952667, 0.009816090576350689, 0.008890300989151001, -0.014717329293489456, 0.008726926520466805, -0.01900591142475605, 0.05110902339220047, 0.0010151349706575274, -0.00799174141138792, -0.020980022847652435, -0.008631625212728977, 0.008760963566601276, -0.041442692279815674, 0.0016779933357611299, -0.017603613436222076, 0.021361229941248894, 0.026861507445573807, -0.024560648947954178, -0.0009308948647230864, -0.008992410264909267, 0.009836512617766857, 0.036160245537757874, 0.021320385858416557, -0.024029681459069252, -0.014962390996515751, 0.023403411731123924, 0.019073985517024994, -0.01467648521065712, 0.006184409372508526, 0.023035818710923195, 0.009754825383424759, 0.0374944731593132, -0.011837851256132126, -0.006208234932273626, 0.009291931055486202, 0.022790757939219475, 0.037331096827983856, -0.004938678350299597, -0.0019656007643789053, 0.02848163992166519, 0.004938678350299597, 0.005881485994905233, 0.009713981300592422, 0.02537752129137516, -0.010197298601269722, -0.006592846009880304, 0.011259233579039574, 0.015833722427487373, -0.013423946686089039, 0.0015078114811331034, 0.0026190991047769785, 0.014227204956114292, 0.007242940831929445, 0.027501391246914864, -0.03449926897883415, 0.014907932840287685, -0.036378078162670135, -0.005306270904839039, -0.003890357678756118, -0.006691551301628351, -0.0042579504661262035, -0.011531524360179901, 0.015302754938602448, -0.013880033977329731, 0.004315812606364489, 0.00782836601138115, -0.0272835586220026, -0.0023076662328094244, -0.01658252254128456, 0.005227987188845873, -0.01466287113726139, 0.00878819264471531, 0.02646668627858162, 0.016895657405257225, -0.031694673001766205, -0.009965850971639156, 0.02044905535876751, -0.0056160022504627705, 0.00757649727165699, -0.004782110918313265, -0.026521144434809685, 0.009509763680398464, -0.010258563794195652, -0.03436312451958656, 0.021211469545960426, 0.01172212790697813, 0.00865885429084301, 0.021606290712952614, 0.006187813356518745, -0.000879840343259275, -0.0212931577116251, -0.00011934004578506574, 0.026167165488004684, -0.002981586614623666, -0.014730943366885185, 0.006082300562411547, -0.012205444276332855, -0.03166744485497475, 0.004251143429428339, 0.0013903859071433544, 0.005663652904331684, 0.01682758517563343, 0.001980917062610388, -0.02070773020386696, 0.008155115880072117, 0.04302198067307472, -0.004676598124206066, 0.008937952108681202, -0.004363463260233402, -0.027147414162755013, 0.0002925001026596874, 0.017344936728477478, -0.03147684037685394, 0.0010874621802940965, 0.019931701943278313, 0.013396717607975006, -0.006426067557185888, 0.025445595383644104, 0.00541518721729517, 0.029679719358682632, 0.0011734040454030037, -0.003092204686254263, 0.011163931339979172, -0.007345050107687712, -0.0004539601504802704, -0.0062899221666157246, -0.0015733314212411642, -0.005456030834466219, 0.017862290143966675, 0.010619348846375942, -0.02091194875538349, 0.018229883164167404, -0.01275683380663395, 0.011926346458494663, -0.00865204632282257, 0.018706392496824265, -0.006269500590860844, -0.014907932840287685, -0.019536878913640976, 0.012654724530875683, -0.024342816323041916, -0.015847336500883102, -0.004976117983460426, -0.021851353347301483, 0.002707593608647585, -0.011756164021790028, -0.012130564078688622, 0.02837272360920906, -0.004914852790534496, -0.005078227259218693, 0.020966406911611557, -0.005758954677730799, 0.013321837410330772, -0.021456532180309296, -0.027828140184283257, -0.0042273178696632385, -0.0205851998180151, 0.00961187295615673, -0.0022429972887039185, -0.01926458813250065, -0.0012797677190974355, -0.017018187791109085, -0.022273404523730278, 0.0067528169602155685, 0.014771787449717522, -0.02309027686715126, -0.010367480106651783, -0.007624148391187191, -0.006997878663241863, -0.009741210378706455, 0.015357213094830513, 0.021946655586361885, 0.01196038257330656, -0.028917305171489716, -0.001757978810928762, 0.001226160442456603, -0.013682623393833637, -0.003900568699464202, 0.007998548448085785, 0.004183070734143257, 0.0044451504945755005, 0.017481083050370216, -0.0018924225587397814, 0.04247739538550377, 0.016214929521083832, -0.020980022847652435, -0.001761382445693016, -0.014744558371603489, 0.026384998112916946, -0.009271509014070034, 0.022886058315634727, 0.006136758718639612, 0.0011742549249902368, 0.02091194875538349, 0.00017028824368026108, -0.014091059565544128, 0.04138823226094246, 0.028182119131088257, -0.0025782554876059294, 0.006984264124184847, -0.037086036056280136, 0.02163352072238922, -0.014240819960832596, -0.0016354478430002928, -0.011667669750750065, 0.011232004500925541, 0.008665661327540874, -0.014063830487430096, -0.02175605110824108, -0.01718156225979328, -0.010503625497221947, 0.015289139933884144, 0.011579175479710102, -0.010571698658168316, -0.0008764367084950209, -0.003985659684985876, 0.004084364976733923, 0.015425285324454308, 0.005762358661741018, 0.014567568898200989, -0.0040299068205058575, -0.013308223336935043, 0.0023944589775055647, -0.014867088757455349, 0.004771899897605181, -0.004482590593397617, -0.027487777173519135, -0.019550494849681854, -0.015438900329172611, 0.013982143253087997, 0.001872000633738935, 0.0346626453101635, -0.027487777173519135, 0.02115701138973236, -0.008951567113399506, 0.04141546040773392, 0.01225990243256092, 0.010884832590818405, 0.018066508695483208, -0.007494810037314892, -0.012702375650405884, 0.0295708030462265, 0.012777255848050117, 0.05279722809791565, 0.03079611249268055, -0.023607630282640457, 0.014118288643658161, -0.028890075162053108, 0.014159132726490498, -0.016664208844304085, 0.014336121268570423, -0.015112150460481644, -0.01173574198037386, 0.010115611366927624, 0.023144735023379326, 0.01286575011909008, 0.02166074886918068, 0.020258450880646706, 0.028073202818632126, 0.008829035796225071, -0.005387958139181137, 0.0017749969847500324, -0.027760067954659462, 0.00956422183662653, -0.029788635671138763, 0.014880703762173653, -0.0011283059138804674, -0.02213725820183754, -0.010884832590818405, 0.009176206775009632, -0.019400734454393387, 0.010238141752779484, -0.004819551017135382, 0.013737081550061703, 0.019291818141937256, 0.028590556234121323, 0.021238697692751884, -0.028699472546577454, -0.03237539902329445, 0.03621470555663109, 0.022790757939219475, 0.0016209824243560433, -0.005064612720161676, -0.014445037581026554, -0.01935989037156105, -0.015792878344655037, 0.017617227509617805, -0.013492019847035408, 0.022096415981650352, -0.010449167340993881, -0.019999774172902107, -0.003143259324133396, 0.0006552002159878612, 0.022654611617326736, -0.017290478572249413, -0.02981586568057537, -0.013852804899215698, 0.03327396139502525, 0.0006832802318967879, -0.03610578924417496, -0.002683768281713128, 0.03741278499364853, 0.0030105174519121647, -0.031122861430048943, -0.006865137256681919, 0.0074811954982578754, -0.00854313001036644, 0.013430753722786903, -0.01697734370827675, 0.006334169767796993, -0.0114362221211195, 0.005694285500794649, -0.005884889513254166, 0.03286552429199219, 0.011762971989810467, 0.00679706409573555, -0.0007777311839163303, -0.013444368727505207, -0.001717986073344946, -0.021919425576925278, 0.010190490633249283, -0.010823567397892475, 0.00528925284743309, 0.0024642336647957563, -0.0011453240877017379, -0.020734960213303566, -0.006984264124184847, -0.009693560190498829, -0.0009096221183426678, 0.00152653141412884, -0.010884832590818405, -0.008679276332259178, -0.023131120949983597, 0.015384442172944546, -0.010149647481739521, 0.00979566853493452, 0.007699028123170137, -0.015112150460481644, -0.017004573717713356, 0.021864967420697212, -0.01684119924902916, 0.03262046352028847, 0.002801193855702877, 0.007556075230240822, -0.0025374118704348803, -0.009761632420122623, -0.0037712303455919027, 0.003709964919835329, 0.029679719358682632, 0.011238811537623405, -0.030523821711540222, -0.00046459652367047966, 0.0021936444099992514, 0.0035465904511511326, 0.014540339820086956, -0.005602387711405754, 0.030333219096064568, -0.005701093003153801, 0.05124516785144806, -0.01046958938241005, -0.008059813641011715, -0.008556745015084743, 0.011279654689133167, -0.008679276332259178, 0.009217050857841969, 0.008134693838655949, 0.0022004516795277596, 0.013587321154773235, 0.00021889644267503172, -0.016623366624116898, -0.023648474365472794, 0.010973327793180943, 0.015942638739943504, -0.01982278563082218, -0.008447828702628613, -0.017099875956773758, -0.003938008565455675, -0.017467468976974487, -0.007283784449100494, 0.020966406911611557, -0.011143509298563004, -0.00421029981225729, -0.024261128157377243, 0.007086373399943113, -0.01791674830019474, 0.0072769769467413425, -0.013859611935913563, -0.006419260520488024, -0.026031021028757095, -0.04002677649259567, 0.0006675384356640279, 0.0005713856662623584, -0.038556408137083054, -0.026847893372178078, 0.008924338035285473, 0.0016941606299951673, 0.008386562578380108, 0.007835173979401588, -0.01029259990900755, -0.012559422291815281, 0.020598813891410828, -0.018189039081335068, -0.0010491713183000684, -0.007134024519473314, -0.017399394884705544, 0.006694955285638571, 0.006313747726380825, 0.01696372963488102, -0.022777142003178596, 0.0019196516368538141, 0.010238141752779484, 0.009761632420122623, 0.0031160302460193634, 0.01202164776623249, 0.005255216266959906, 0.010176876559853554, 0.007331435568630695, -0.004261354450136423, 0.017835060134530067, 0.003020728472620249, -0.022886058315634727, 0.0022344880271703005, -0.02055797167122364, -0.0011334113078191876, 0.0002096428070217371, -0.01202164776623249, -0.017140718176960945, 0.020544355735182762, 0.0001813500712160021, 0.017753373831510544, 0.011014170944690704, 0.029679719358682632, -0.006766431499272585, 0.013083582744002342, -0.008924338035285473, 0.027937056496739388, 0.011565560474991798, -0.020040618255734444, -0.0021936444099992514, -0.010939291678369045, -0.01935989037156105, 0.017712529748678207, -0.009986273013055325, 0.027868984267115593, 0.0016235351795330644, -0.015180223621428013, -0.007236133329570293, -0.021810509264469147, -0.03825688734650612, 0.010973327793180943, 0.004853587131947279, -0.005714707542210817, 0.03076888434588909, -0.011238811537623405, -0.022777142003178596, -0.02826380729675293, 0.003631681203842163, -0.007767100818455219, 0.03550674766302109, -0.007753486279398203, -0.027691995725035667, -0.00275184097699821, 0.003488728543743491, -0.004601717926561832, -0.010020309127867222, 0.022695455700159073, -0.02514607459306717, -0.023498713970184326, 0.005272234790027142, 0.0043532527051866055, 0.022041957825422287, 0.011340920813381672, 0.00017294732970185578, -0.020517127588391304, -0.0006768984021618962, -0.015466129407286644, -0.023485099896788597, -0.009509763680398464, 0.0050748237408697605, 0.022994976490736008, 0.01960495300590992, 0.05336903780698776, -0.007746679242700338, -0.00537774758413434, 0.009421268478035927, 0.01697734370827675, 0.007658184505999088, -0.027201872318983078, 0.02211003005504608, -0.014703714288771152, 0.001489942311309278, 0.014390579424798489, -0.010006694123148918, 0.01693650148808956, -0.017848676070570946, 0.021388458088040352, 0.0438116230070591, -0.004343041684478521, -0.00985012762248516, 4.863478898187168e-05, -0.05336903780698776, 0.0009002621518447995, 0.040843650698661804, 0.011204775422811508, 0.0017358551267534494, -0.013648586347699165, -0.007896439172327518, 0.0038529178127646446, 0.010156454518437386, 0.007841981016099453, 0.014145517721772194, -0.0020540952682495117, -0.009748018346726894, -0.004404306877404451, 0.015929024666547775, 0.018611090257763863, -0.023512328043580055, -0.013076775707304478, -0.02716102823615074, 0.014417808502912521, 0.007984933443367481, 0.017971206456422806, 0.02826380729675293, 0.029543574899435043, 0.007767100818455219, -0.022314248606562614, 0.010265370830893517, -0.009455305524170399, -0.020952792838215828, -0.008236803114414215, 0.011218389496207237, -0.03188527747988701, -0.0018992298282682896, -0.016555292531847954, -0.0028386337216943502, 0.011293269693851471, 0.02921682596206665, -0.023280881345272064, 0.0010857604211196303, -0.01768530160188675, -0.007093180902302265, 0.002678662771359086, -0.02981586568057537, 0.04675236716866493, 0.00973440334200859, 0.001375920488499105, 0.049965400248765945, 0.013451175764203072, 0.007964512333273888, -0.04585380479693413, 0.008917530067265034, -0.003975448664277792, 0.02959803305566311, 0.04062581807374954, -0.031340695917606354, -0.026044635102152824, 0.013451175764203072, 0.018447715789079666, 0.007556075230240822, -0.019945316016674042, 0.018488559871912003, 0.004567681811749935, -0.01624215953052044, -0.031830817461013794, 0.010272177867591381, -0.0380118228495121, 0.01419997587800026, -0.004036714322865009, -0.02453341893851757, -0.009741210378706455, 0.0025459208991378546, -0.022518467158079147, 0.012110142968595028, -2.64047830569325e-05, 0.0281548909842968, -0.0016626769211143255, 0.0006871093646623194, 0.00986374169588089, -0.01087802555412054, -0.025949332863092422, 0.00782836601138115, -0.009060483425855637, 0.035561203956604004, -0.011388571001589298, -0.0071272170171141624, 0.014526724815368652, 0.009618679992854595, 0.016391918063163757, -0.006572423968464136, -0.011300076730549335, 0.04639838635921478, -0.005173529032617807, -0.023389797657728195, 0.009816090576350689, 0.0041966852732002735, 0.0016226841835305095, -0.009305545128881931, 0.004833165556192398, -0.009693560190498829, -0.016514450311660767, -0.003327055834233761, 0.04008123651146889, 0.002258313586935401, 0.022205332294106483, 0.00967313814908266, -0.010653385892510414, -0.0005347965634427965, -0.022327862679958344, -0.002559535438194871, 0.017481083050370216, -0.043947767466306686, -0.012464120984077454, 0.006701762322336435, -0.018080122768878937, 0.010374287143349648, 0.0015375933144241571, 0.0007981529925018549, 0.007978126406669617, 0.03341010585427284, -0.02741970494389534, 0.020054232329130173, 0.0009104730561375618, 0.0031687866430729628, -0.012709182687103748, -0.014254434034228325, -0.029026221483945847, -0.008863071911036968, 0.028100432828068733, -0.018788078799843788, -0.017644457519054413, -0.040353529155254364, 0.008502286858856678, 0.013219728134572506, 0.010319828987121582, 0.020231222733855247, 0.013791539706289768, 0.016160471364855766, 0.010067960247397423, 0.00822999607771635, -0.019400734454393387, 0.00299009564332664, 0.02236870676279068, -0.008686083368957043, 0.01842048577964306, -0.04607163742184639, 0.019632181152701378, -0.021470146253705025, -0.026248853653669357, -0.008624817244708538, -0.026643674820661545, -0.02176966518163681, -0.015016849152743816, -0.014050216414034367, -0.03055105172097683, -0.016664208844304085, -0.015166609548032284, 0.0062797111459076405, -0.028944533318281174, -0.008672468364238739, 0.012736411765217781, -0.017589999362826347, -2.0634552129195072e-05, 0.011266040615737438, 0.006919595412909985, -0.007719450164586306, -0.010095189325511456, -0.029189595952630043, -0.0037610195577144623, -0.019060371443629265, -0.022327862679958344, -0.0011036294745281339, -0.018951453268527985, 0.026984039694070816, 0.02367570251226425, -0.033382877707481384, -0.02151099033653736, -0.0053811511024832726, -0.0438116230070591, 0.003526168642565608, -0.0011036294745281339, 0.006545194890350103, 0.017603613436222076, 0.0028539500199258327, -0.0002033673517871648, 0.006786853540688753, -0.012845328077673912, 0.00359424133785069, -0.01562950387597084, -0.004683405160903931, -0.03316504508256912, -0.015016849152743816, -0.0026582409627735615, -0.009360003285109997, -0.04547259956598282, -0.006364802364259958, 0.03319227322936058, -0.01779421791434288, 0.007903246209025383, 0.022218946367502213, -0.00046587290125899017, -0.023049434646964073, -0.014730943366885185, 0.0005207565263845026, -0.008890300989151001, -0.021470146253705025, 0.010394709184765816, -0.019101213663816452, 0.0074811954982578754, 0.021388458088040352, -0.004707230720669031, 0.002984990132972598, 0.012858943082392216, 0.016882043331861496, -0.009244279935956001, 0.01137495692819357, -0.024097753688693047, -0.012477735057473183, 0.011456644162535667, 0.001492495066486299, 0.00848186481744051, 0.010952905751764774, -0.022559309378266335, 0.020775804296135902, -0.008161922916769981, 0.024438118562102318, -0.011640440672636032, 0.016541678458452225, -0.009155784733593464, 0.026003791019320488, 0.01660975068807602, 0.00895837415009737, 0.006075493060052395, -0.0034955358132719994, -0.00267696101218462, 0.0022787353955209255, -0.0015171715058386326, 0.004625543486326933, -0.011517909355461597, -0.04307643696665764, 0.016528064385056496, 0.02198749966919422, -0.03365517035126686, -0.018951453268527985, -0.021211469545960426, 0.00130018952768296, 0.007923668250441551, -0.021361229941248894, 0.027882598340511322, -0.04133377596735954, 0.008577167056500912, -0.011000556871294975, -0.0038461105432361364, -0.0032691939268261194, 0.004856990650296211, 0.005935944151133299, -0.008808613754808903, 0.005847449414432049, 0.2587853670120239, -0.0315040685236454, -0.015466129407286644, 0.014227204956114292, 0.023893535137176514, 0.03754892945289612, 0.006187813356518745, -0.014703714288771152, -0.008372948504984379, 0.0044451504945755005, 0.01961856707930565, 0.0012048877542838454, -0.015929024666547775, -0.0018992298282682896, 0.004911449272185564, 0.011238811537623405, 0.0006773239001631737, -0.013696237467229366, -0.011667669750750065, -0.024329202249646187, 0.02166074886918068, 0.01545251440256834, -0.000666687497869134, -0.011980804614722729, 0.015193838626146317, -0.0017154333181679249, -0.026725362986326218, -0.008556745015084743, 0.027964286506175995, 0.010129225440323353, -0.03471710532903671, 0.01647360622882843, 0.006848118733614683, 0.015588659793138504, -0.040135692805051804, -0.023893535137176514, 0.03526168689131737, 0.011885502375662327, 0.022287018597126007, 0.0014958987012505531, -0.013008702546358109, 0.0010057749459519982, -0.0136417793110013, -0.00481274351477623, -0.019278204068541527, 0.01172212790697813, -0.01087802555412054, -0.0018090333323925734, 0.000991309410892427, 0.011136702261865139, -0.007869210094213486, -0.0008211275562644005, 0.03776676207780838, 0.022695455700159073, 0.014880703762173653, -0.0203265231102705, 0.020476283505558968, 0.0031228375155478716, 0.03714049234986305, 0.023866306990385056, -0.02731078863143921, 0.02777368202805519, -0.012743218801915646, 0.01768530160188675, -0.00013614550698548555, -0.013376295566558838, -0.021143397316336632, 0.024928241968154907, -0.014390579424798489, -0.004370270762592554, -0.012525386177003384, -0.005245005711913109, -0.004959099926054478, 0.007453966420143843, -0.03605132922530174, -0.022817986086010933, 0.029897551983594894, -0.005347114522010088, 0.023757390677928925, 0.04040798544883728, 0.008842650800943375, -0.006160584278404713, -0.001376771368086338, 0.006694955285638571, 0.0026480299420654774, -0.026262467727065086, 0.0057861837558448315, -0.029434658586978912, -0.018311569467186928, 0.004407710861414671, -0.0056160022504627705, -0.013287801295518875, 0.004955696407705545, -0.0206805020570755, 0.007923668250441551, 0.007583304774016142, 0.0013325241161510348, 0.03076888434588909, -0.0012116950238123536, -0.009155784733593464, -0.01418636180460453, 0.03406360372900963, 0.006739202421158552, 0.0322120264172554, -0.008794999681413174, -0.006119740195572376, 0.011368149891495705, -0.012334782630205154, 0.0020455862395465374, -0.0003909928782377392, 0.002995201153680682, -0.0531512051820755, 0.023648474365472794, -0.0014958987012505531, -0.01673228293657303, 0.021252313628792763, -0.014690100215375423, -0.025527281686663628, 0.02743331901729107, -0.0020115498919039965, 0.015588659793138504, -0.03090502880513668, -0.01599709689617157, -0.013192499056458473, -0.01696372963488102, -0.02078941836953163, -0.019155671820044518, -0.018447715789079666, -0.01370304450392723, -0.03964557126164436, 0.038175199180841446, -0.006997878663241863, 0.01418636180460453, 0.0026752592530101538, 0.008372948504984379, -0.011592789553105831, -0.0029237247072160244, -0.009523377753794193, -0.00822999607771635, 0.009428076446056366, 0.02417944185435772, -0.010217719711363316, -0.013893648982048035, 0.00986374169588089, -0.013777924701571465, -0.011095858179032803, -0.002789281075820327, 0.006766431499272585, 0.011163931339979172, 0.01466287113726139, -0.026915965601801872, -0.003781441366299987, 0.00260208104737103, -0.015792878344655037, 0.020721346139907837, -0.008794999681413174, -0.013995757326483727, -0.04903960973024368, -0.005404976662248373, -0.016990959644317627, -0.01745385304093361, -0.01670505292713642, 0.009632294066250324, -0.008386562578380108, -0.02250485122203827, -0.02370293252170086, -0.17470191419124603, 0.009959043934941292, 0.032647691667079926, -0.03833857551217079, 0.001532487804070115, -0.0015375933144241571, 0.020299294963479042, 0.005285849329084158, -0.00038333467091433704, -0.019427962601184845, 0.017875904217362404, -0.007072758860886097, -0.015711192041635513, -0.015411671251058578, -0.022082800045609474, 0.030714426189661026, -0.01648722030222416, 0.00788282509893179, 0.05832473561167717, -0.007379086222499609, 0.04778707027435303, -0.04397499933838844, 0.006340976804494858, 0.036241933703422546, -0.004999943543225527, 0.012430084869265556, -0.01576565019786358, 0.013607743196189404, 0.0011657458962872624, -0.02140207402408123, -0.007733064703643322, 0.010966520756483078, 0.020898334681987762, -0.0004058837948832661, 0.00037312376662157476, 0.0003037746646441519, 0.011157124303281307, -0.007229326292872429, -0.03196696564555168, 0.012770447880029678, -0.009550606831908226, 0.006058475002646446, 0.010803145356476307, 0.006208234932273626, -0.006572423968464136, 0.00846825074404478, 0.00025357099366374314, -0.01837964355945587, 0.01099374983459711, 0.00012838095426559448, 0.016623366624116898, -0.02021760679781437, 0.00436005974188447, -0.018978683277964592, 0.038910385221242905, -0.021796895191073418, -0.03041490539908409, 0.002950953785330057, -0.00406053988263011, -0.0002725037338677794, -0.013764310628175735, -0.0157520342618227, 0.021088939160108566, -0.00022442734916694462, 0.003982256166636944, -0.015806492418050766, -0.012368818745017052, 0.016201315447688103, -0.01670505292713642, 0.002797790104523301, 0.016024325042963028, -0.03327396139502525, -0.011831044219434261, -0.011463451199233532, 0.009788861498236656, -0.0007564584375359118, -0.005146299954503775, 0.012770447880029678, 0.020476283505558968, -0.002898197388276458, -0.01842048577964306, 0.01660975068807602, -0.002872670069336891, 0.00854313001036644, -0.005071420222520828, 0.020054232329130173, 0.0022855426650494337, -0.004928467329591513, -0.03210311010479927, -0.025459209457039833, 0.0348532497882843, -0.04789598658680916, -0.022572925314307213, -0.012974666431546211, 0.0161060132086277, 0.001454204204492271, -0.018842536956071854, -0.001797120668925345, -0.012321168556809425, -0.0137711176648736, -0.005367536563426256, -0.0023978627286851406, -0.025214146822690964, 0.03213033825159073, 0.037467241287231445, 0.00718848267570138, -0.005010154563933611, 0.006041456945240498, 0.019455192610621452, -0.0017307497328147292, 0.017018187791109085, -0.00314155756495893, 0.008325297385454178, 0.00429539056494832, 0.0037712303455919027, 0.015493358485400677, -0.011170738376677036, -0.0157520342618227, 0.021102553233504295, 0.0022004516795277596, -0.008536322973668575, 0.00709998793900013, 0.018202653154730797, 0.019999774172902107, -0.017481083050370216, -0.03934605047106743, -0.046725135296583176, -0.007528846152126789, 0.005166721995919943, 0.02861778438091278, 0.004278372507542372, 0.034335896372795105, -0.004928467329591513, 0.019904471933841705, 0.002833528211340308, 0.02526860497891903, -0.014594797976315022, -0.020653272047638893, -0.0017818042542785406, 0.011300076730549335, -0.006739202421158552, 0.016255773603916168, 0.006681340746581554, -0.007229326292872429, -0.00025910191470757127, 0.03302890062332153, -0.004370270762592554, -0.009639102034270763, 0.006187813356518745, 0.003863128600642085, 0.009727596305310726, -0.00902644731104374, -0.00944849755614996, 0.022681841626763344, 0.021592676639556885, 0.004298794083297253, 0.026398614048957825, -0.012028454802930355, -0.0007436948362737894, -0.018733620643615723, 0.010980134829878807, 0.007113602478057146, 0.0024387063458561897, 0.001263600424863398, 0.01083037443459034, -0.0056772674433887005, -0.005748744122684002, -0.0025374118704348803, 0.011266040615737438, -0.0009360003168694675, -0.016745897009968758, -0.019890857860445976, -0.022178102284669876, 0.03760338947176933, 0.004023099783807993, -0.03899207338690758, -0.05268831178545952, 0.0030309392604976892, -0.02262738347053528, -0.012362011708319187, 0.017971206456422806, 0.03455372899770737, 0.027378860861063004, -0.020476283505558968, -0.026044635102152824, 0.02430197224020958, -0.00733824260532856, 0.002340000821277499, -0.018434101715683937, 0.00949614867568016, 0.014295278117060661, 0.0019417752046138048, -0.04176944121718407, -0.027256330475211143, 0.016201315447688103, 0.0002237891749246046, 0.0023110699839890003, 0.027501391246914864, -0.00742673734202981, 0.04770538583397865, -0.04604440927505493, 0.004142227116972208, -0.02683427929878235, -0.014145517721772194, 0.029870323836803436, -0.003938008565455675, -0.007242940831929445, -0.007801137398928404, 0.002294051693752408, -0.02692958153784275, 0.003961834125220776, 0.012974666431546211, -0.007950897328555584, -0.012981473468244076, 0.0020506917499005795, -0.035779036581516266, -0.00742673734202981, 0.009598257951438427, -0.0031602776143699884, -0.008536322973668575, -0.029135137796401978, 0.0012559422757476568, -0.006187813356518745, -0.018474943935871124, 0.024342816323041916, 0.025881260633468628, -0.020394597202539444, -0.03547951951622963, -0.08854903280735016, 0.009298738092184067, 0.02020399272441864, -0.0004675747186411172, 0.02153821848332882, 0.014526724815368652, 0.023539558053016663, 0.00610612565651536, 0.002905004657804966, -0.027691995725035667, -0.0258676465600729, 0.005619405768811703, 0.004084364976733923, -0.01588818058371544, -0.040653046220541, -0.009033254347741604, 0.013941299170255661, 0.00528925284743309, 0.012913401238620281, 0.0009036657866090536, -0.005901907570660114, -0.003172190161421895, 0.023648474365472794, 0.02091194875538349, 0.008311683312058449, 0.0034921320620924234, -0.01046958938241005, 0.006654111668467522, -0.00908771250396967, 0.004959099926054478, -0.004213703330606222, -0.02285883016884327, -0.0013691132189705968, 0.025813188403844833, -0.008134693838655949, -0.01515299454331398, 0.019414348527789116, 0.024955470114946365, 0.01219863723963499, 0.02634415589272976, -0.01611962728202343, -0.01696372963488102, 0.013151655904948711, 0.0013155059423297644, -0.006684744264930487, -0.005309674423187971, -0.011443029157817364, 0.018120966851711273, 0.02118423953652382, 0.00992500688880682, 0.013743888586759567, 0.007113602478057146, -0.006786853540688753, -0.015929024666547775, -0.022994976490736008, -0.048032134771347046, -0.01949603669345379, -0.0035874340683221817, 0.015942638739943504, -0.002110255416482687, 0.02069411613047123, -0.006834504194557667, 0.010156454518437386, 0.009700367227196693, -0.023008590564131737, -0.007950897328555584, -0.016446376219391823, 0.01588818058371544, 0.014867088757455349, -0.012620688416063786, -0.006453297100961208, -0.005493470933288336, -0.008856264874339104, 0.014104674570262432, 0.010537661612033844, 0.016813969239592552, -0.011300076730549335, 0.01027898583561182, -0.016378303989768028, 0.012035262770950794, 0.0073722791858017445, 0.010986941866576672, -0.031204549595713615, 0.02609909325838089, 0.03441758453845978, -0.012042069807648659, 0.005418591201305389, 0.004070750437676907, -0.014458652585744858, -0.003737193997949362, -0.005513892974704504, 0.0006190366111695766, -0.002719506388530135, 0.0061095296405255795, 0.013689430430531502, 0.030632738023996353, 0.008332104422152042, -0.025118844583630562, 0.0139004560187459, 0.013791539706289768, 0.028236577287316322, -0.0139004560187459, 0.004622139967978001, 0.002190240891650319, -0.010149647481739521, 1.5475914551643655e-05, -0.02043543942272663, -0.034689873456954956, -0.013022317551076412, 0.019073985517024994, -0.0023859499488025904, 0.017385780811309814, -0.03953665494918823, 0.007365471683442593, -0.0161060132086277, 0.0067221843637526035, -0.0135941281914711, -0.008869879879057407, -0.025922104716300964, 0.020612429827451706, 0.01862470433115959, 0.001188720460049808, 0.045527055859565735, -0.0016541678924113512, 0.0019264589063823223, 0.009707174263894558, 0.03166744485497475, -0.03580626845359802, 0.024451732635498047, 0.004952292889356613, -0.010217719711363316, 0.013199307024478912, -0.021606290712952614, -0.018692778423428535, -0.013287801295518875, -0.015003234148025513, 0.007821558974683285, 0.011136702261865139, 0.0022055571898818016, 0.07177591323852539, 0.009536992758512497, -0.011939960531890392, 0.0024250918067991734, -0.0020081461407244205, 0.018937839195132256, 0.0006734947673976421, 0.02622162364423275, -0.0140774454921484, -0.0212931577116251, 0.006317151244729757, -0.007297398988157511, -0.01292701531201601, -0.0249010119587183, -0.007406315300613642, -0.028672242537140846, -0.024996314197778702, 0.03474433347582817, -0.025949332863092422, 0.029080679640173912, 0.02970694936811924, -0.010571698658168316, 0.013029124587774277, 0.03019707277417183, 0.0013708150945603848, -0.005180336534976959, 0.04089811071753502, -0.01982278563082218, 0.009741210378706455, -0.003601048607379198, -0.013240150175988674, 0.0020762188360095024, -0.036405306309461594, -0.024152211844921112, -0.012430084869265556, 0.005881485994905233, -0.006534984335303307, 0.013805153779685497, 0.01946880668401718, 0.0031500665936619043, 0.026766205206513405, 0.026384998112916946, -0.024438118562102318, -0.03929159417748451, -0.01437696535140276, 0.03294721245765686, -0.022940516471862793, -0.015479743480682373, 0.001950284349732101], "c84d20ec-e28f-4f37-bd24-4c09ae107433": [-0.024162596091628075, 0.006375114433467388, 0.010392078198492527, -0.014973241835832596, -0.01227724738419056, -0.0037770948838442564, 0.014067820273339748, -0.030595144256949425, -0.01018937211483717, -0.02878430113196373, 0.012581306509673595, 0.011979945003986359, 0.010851546190679073, -0.014108361676335335, -0.02009495534002781, -0.011709669604897499, 0.00517576839774847, -0.012317788787186146, 0.025554513558745384, -0.009392060339450836, 0.017135443165898323, -0.006446061655879021, -0.044000789523124695, -0.012675902806222439, -0.018878716975450516, 0.03270328789949417, 0.014919186942279339, -0.02964918129146099, 0.0020811185240745544, -0.007540675811469555, 0.03235193341970444, 0.005354825872927904, -0.010425862856209278, -0.013554297387599945, 0.019378725439310074, -0.0076014879159629345, 0.01758139580488205, -0.00108110043220222, 0.02125713787972927, -0.0103245098143816, 0.0026757237501442432, 0.01311510056257248, 0.020540909841656685, -0.005064280238002539, -0.012094811536371708, 0.01760842464864254, -0.012047513388097286, -0.014959728345274925, -0.025608567520976067, 0.02259499952197075, 0.00544604379683733, 0.013392132706940174, -0.042622387409210205, -0.004513594321906567, 0.003375060623511672, 0.01368267834186554, -0.014067820273339748, 0.014081333763897419, -0.003067622659727931, -0.02543288841843605, 0.02179768867790699, 0.008033927530050278, -0.01481107622385025, 0.011283986270427704, 0.006473089102655649, -0.005726454313844442, -0.00811501033604145, 0.018581414595246315, -0.004179128911346197, 0.00718931807205081, 0.014054305851459503, 0.033649250864982605, -0.012804283760488033, -0.01700030453503132, 0.03659525141119957, -0.007993387058377266, -0.02681129239499569, 0.0033210054971277714, -0.02623020112514496, 0.011919132433831692, 0.0022382158786058426, 0.00033826619619503617, -0.007087965030223131, -0.015784066170454025, 0.009865041822195053, -0.0008627688512206078, -0.008973133750259876, -0.014770535752177238, -0.01118938997387886, -0.014027278870344162, 0.03502765670418739, 0.01958143338561058, 0.02321663312613964, 0.017757074907422066, 0.004226427059620619, -0.0013572878669947386, -0.007946088910102844, 0.023054467514157295, 0.01897331327199936, -0.03216274082660675, -0.011939403600990772, 0.01591920480132103, -0.034838464111089706, -0.003996693529188633, -0.048514384776353836, -0.011405610479414463, 0.020878752693533897, -0.005256851203739643, -0.02041928470134735, -0.012338059023022652, -0.029703235253691673, 0.026676153764128685, -0.025892356410622597, -0.04075748845934868, -0.04075748845934868, 0.0031250561587512493, 0.022959871217608452, -0.01618948020040989, -0.018608441576361656, 0.005479827988892794, 0.00726364366710186, 0.007256886921823025, 0.020581450313329697, -0.01677057147026062, -0.008054198697209358, -0.014973241835832596, -0.011081280186772346, -0.003473035292699933, -0.025054503232240677, -0.025811273604631424, 0.030946500599384308, 0.012905636802315712, 0.02543288841843605, -0.008756914176046848, -0.028649162501096725, 0.011013710871338844, -0.024419358000159264, -0.021662550047039986, -0.053730692714452744, 0.01104073878377676, 0.023878807201981544, 0.02237877994775772, -0.0032804643269628286, -0.03462224453687668, 0.006229841616004705, 0.012952934950590134, 0.016067855060100555, 0.02267608232796192, 0.015811095014214516, -0.00600348599255085, -0.009033946320414543, -0.014919186942279339, 0.005057523027062416, 0.002775387605652213, -0.013554297387599945, 0.015270544216036797, 0.029432959854602814, 0.007919060997664928, 0.0018784120911732316, 0.021946338936686516, 0.011398852802813053, 0.037541214376688004, -0.015527306124567986, -0.008000143803656101, -0.027216704562306404, 0.01594623178243637, 0.01981116645038128, -0.011297499760985374, -0.0036115513648837805, -0.0021807823795825243, -0.017175983637571335, 0.018919259309768677, -0.011142091825604439, 0.0073041850700974464, -0.010297481901943684, 0.025811273604631424, 0.0013927614782005548, -0.013865113258361816, -0.03354114294052124, -0.0015498589491471648, -0.005304149352014065, -0.01844627782702446, 1.193671141663799e-05, 0.03400060907006264, 0.007865006104111671, -0.023540962487459183, 0.020811185240745544, -0.0020388879347592592, 0.0020743615459650755, -0.007006882689893246, 0.03164921700954437, 0.04381159693002701, -7.305874169105664e-05, 0.02266256883740425, -0.5967674851417542, -0.02260851301252842, -0.0035304687917232513, -0.012094811536371708, 0.012925907969474792, 0.00523658050224185, -0.01812194660305977, 0.024527467787265778, -0.020811185240745544, 0.03527090325951576, -0.024405842646956444, -0.010811004787683487, -0.021959854289889336, -0.0035068197175860405, 0.017662478610873222, -0.03513576462864876, 0.011108307167887688, -0.037081748247146606, -0.00622308487072587, 0.024162596091628075, 0.0017517206724733114, 0.0009611658751964569, -0.023676101118326187, 0.01245968323200941, 0.021027404814958572, -0.009196111001074314, -0.016594892367720604, -0.006770391948521137, 0.0424872487783432, -0.02097334899008274, -0.017648965120315552, 0.009331248700618744, 0.020540909841656685, 0.01329077873378992, 0.029216740280389786, 0.003314248751848936, -0.02123011089861393, 0.006358222104609013, 0.035595234483480453, 0.054919905960559845, 0.008033927530050278, -0.009750175289809704, 0.012074541300535202, -4.6928627853048965e-05, 0.005641993135213852, 0.004500080831348896, 0.007047423627227545, 0.003817636054009199, 0.015446223318576813, 0.01731112226843834, -0.005067658610641956, -0.003209517104551196, 0.025649109855294228, -0.02571667730808258, 0.01018937211483717, 0.005280500277876854, 0.01902736909687519, -0.03383844345808029, -0.0037331751082092524, -0.01481107622385025, -0.0016866857185959816, -0.0015498589491471648, -0.025013962760567665, -0.013932682573795319, -0.019946303218603134, 0.005199417471885681, -0.0013564432738348842, -0.0006461264565587044, -0.011939403600990772, -0.02016252465546131, 0.010547487065196037, -0.01679759845137596, 0.014986755326390266, -0.01812194660305977, 0.022730138152837753, 0.01931115798652172, 0.025622081011533737, 0.0028784300666302443, -0.009128542616963387, 0.010588027536869049, -0.002378421137109399, -5.843643884873018e-05, -0.011804265901446342, -0.037838518619537354, 0.010216400027275085, -0.0025034232530742884, 0.009392060339450836, 0.023365283384919167, 0.031081639230251312, -0.022216614335775375, 0.020284147933125496, 0.02994648367166519, -0.021378761157393456, -0.03886556252837181, -0.010297481901943684, 0.016108397394418716, -0.014878645539283752, -0.020459827035665512, 0.005746724549680948, -0.02824375033378601, -0.03656822443008423, -0.0040102070197463036, 0.002961201826110482, 0.020000359043478966, 0.028432942926883698, 0.006719715427607298, -0.03286545351147652, 0.014135388657450676, 0.005165633279830217, -0.009182597510516644, 0.012047513388097286, -0.006375114433467388, -0.012756985612213612, -0.014905672520399094, 0.023122036829590797, -0.03748716041445732, 0.02118956856429577, 0.03164921700954437, 0.025324778631329536, 0.025662623345851898, 0.04527108371257782, -0.004148723091930151, 0.03013567626476288, 0.00821636337786913, 0.017730047926306725, 0.010763706639409065, -0.009358275681734085, -0.009196111001074314, 0.0030135675333440304, 0.0046926517970860004, -0.01383132953196764, 0.01256103627383709, 0.0329195111989975, -0.02631128393113613, 0.011419123969972134, -0.009831257164478302, 0.024392329156398773, 0.007047423627227545, 0.031432997435331345, 0.01982467994093895, -0.029811345040798187, -0.007763653062283993, 0.02517612837255001, -0.014189443551003933, -0.019784139469265938, -0.008675831370055676, -0.006398763507604599, 0.004016963765025139, -0.014770535752177238, -0.009709633886814117, 0.007790680509060621, -0.01329753641039133, -0.01284482516348362, 0.018540874123573303, -0.017203010618686676, -0.0009442737209610641, -0.004723057616502047, -0.019892249256372452, 0.004398727789521217, -0.03467629849910736, 0.003658849513158202, 0.007101478986442089, -0.04446025565266609, -0.00503725279122591, -0.008716372773051262, 0.0012441101716831326, 0.023932861164212227, 0.011121821589767933, -0.01479756273329258, -0.009473143145442009, -0.003935881424695253, -0.01704084686934948, 0.0016419213498011231, -0.007520405109971762, 0.0024274084717035294, -0.006966341286897659, -0.022122018039226532, -0.00697985477745533, -0.014040792360901833, -0.011770481243729591, -0.020621992647647858, 0.0024341652169823647, -0.02345987968146801, -0.009878555312752724, 0.036162812262773514, 0.013020504266023636, 0.04305482655763626, 0.0077974372543394566, -0.04027099162340164, 0.008912322111427784, -0.016851654276251793, 0.01706787385046482, -0.005837942473590374, 0.026365337893366814, 0.02317609079182148, 0.011108307167887688, 0.010000179521739483, -0.001973008271306753, -0.023892320692539215, 0.009425844997167587, 0.007405538111925125, 0.014135388657450676, 0.01300698984414339, -0.026189658790826797, 0.004337915685027838, -0.023243660107254982, 0.019446294754743576, -0.021567953750491142, 0.014000250957906246, 0.002956134034320712, 0.0009071108652278781, -0.01650029607117176, -0.025216668844223022, -0.005182525608688593, 0.014257012866437435, 0.003373371437191963, -0.01814897358417511, 0.002594641176983714, -0.0012998543679714203, 0.023081494495272636, 0.005783887580037117, 0.012493467889726162, 0.011162362061440945, 0.003098028479143977, 0.0025625459384173155, 0.0003916877612937242, -0.01329753641039133, 0.008581235073506832, -0.005506855435669422, -0.02654101699590683, -0.012250219471752644, -0.023365283384919167, 0.015162434428930283, 0.007439322769641876, 0.0017213146202266216, -0.022284183651208878, 0.02654101699590683, -0.01481107622385025, 0.030297841876745224, -0.004321023356169462, 0.017419232055544853, -0.027541033923625946, -0.0004974751500412822, -0.02258148603141308, 0.010250183753669262, 0.00011940670083276927, 0.023405825719237328, 0.044298093765974045, -0.028162667527794838, -0.009527198038995266, -0.029189713299274445, 0.006219706032425165, -0.0012635361636057496, 0.015121893025934696, 0.0038514204788953066, -0.021135514602065086, 0.002131795044988394, 0.014081333763897419, 0.019148992374539375, 0.02573019079864025, 0.028162667527794838, 0.021392276510596275, 0.00963530782610178, 0.020324688404798508, 0.023608531802892685, -0.03962233290076256, -0.008986648172140121, -0.00732445577159524, -0.033676281571388245, 0.0029223498422652483, -0.010317753069102764, -0.004391970578581095, 0.0024426113814115524, -0.01645975559949875, -0.014365122653543949, -0.0017686127685010433, 0.011655614711344242, 0.044027816504240036, 0.023878807201981544, 0.01594623178243637, -0.029568098485469818, -0.016851654276251793, 0.025662623345851898, 0.022297697141766548, 0.024513954296708107, 0.0028851868119090796, -0.0021149027161300182, -0.00600348599255085, -0.0007690172060392797, 0.02741941064596176, -0.003008499974384904, 0.011513720266520977, -0.02294635772705078, -0.006104839500039816, 0.012115082703530788, 0.012229949235916138, 0.037595268338918686, -0.008905565366148949, -0.02766265906393528, -0.012473196722567081, 0.0002187539212172851, -0.014919186942279339, -0.017770588397979736, -0.013452944345772266, 0.033973582088947296, 0.00048184985644184053, -0.017784103751182556, -0.01589217782020569, 0.011669128201901913, -0.011331284418702126, 0.01898682676255703, -0.03640605881810188, 0.005516991019248962, -0.015419195406138897, 0.02486531063914299, 0.0016182722756639123, 0.01060829870402813, 0.017540855333209038, -0.002055780030786991, 0.011642101220786572, -0.029541071504354477, -0.005513612646609545, -0.02624371461570263, 0.013986737467348576, -0.01481107622385025, 0.020905781537294388, 0.006145380437374115, -0.0034375616814941168, -0.03154110535979271, -0.02379772439599037, -0.037027690559625626, 0.01536514051258564, 0.0006655525066889822, 0.01451377384364605, 0.004598055500537157, 0.003962908871471882, 0.02041928470134735, 0.0046926517970860004, 0.021067945286631584, 0.010783976875245571, -0.007209588773548603, -0.01986522227525711, 0.010642082430422306, 0.011696156114339828, 0.016094883903861046, -0.012952934950590134, 0.006648768205195665, 0.014784049242734909, -0.008858267217874527, 0.01648678258061409, 0.001458641025237739, 0.03500062972307205, 0.017675992101430893, -0.003052419750019908, -0.008844753727316856, 0.023946376517415047, 0.02986540086567402, 0.024176109582185745, 0.001822667894884944, 0.03105461224913597, 0.0010262008290737867, 0.04562244191765785, -0.03075730800628662, 0.0019442916382104158, 0.007047423627227545, 0.006446061655879021, -0.0034865490160882473, -0.00850015226751566, 0.017175983637571335, 0.00012225726095493883, 0.006037270650267601, -0.005317662842571735, 0.014702966436743736, -0.02547343075275421, 0.022122018039226532, 0.005006846506148577, -0.035892535001039505, -0.019338184967637062, 0.016851654276251793, 0.014162416569888592, -0.002903768327087164, -0.029541071504354477, 0.014000250957906246, 0.005334555171430111, -0.0021165921352803707, -0.040406130254268646, 0.028946464881300926, 0.001297320588491857, 0.0018801012774929404, -0.0024037593975663185, -0.0293248500674963, -0.0035879022907465696, -0.038433123379945755, 0.00993936788290739, -0.0003815524687524885, -0.028432942926883698, -0.034243859350681305, -0.011581288650631905, -0.014784049242734909, -0.004081154242157936, -0.010277211666107178, -0.023095009848475456, -0.010155587457120419, 0.009175840765237808, -0.018648983910679817, 0.015392168425023556, -0.013635380193591118, -0.013865113258361816, 0.008642046712338924, -0.005635236389935017, -0.006946070585399866, -0.015284057706594467, 0.003015256719663739, 0.012121839448809624, -0.003008499974384904, 0.0020371987484395504, 0.0011317770695313811, 0.017459772527217865, 0.017270579934120178, 0.0008555896929465234, -0.014784049242734909, 0.007919060997664928, 0.01708138734102249, -0.009256922639906406, 0.009547468274831772, -0.03791959956288338, -0.020013872534036636, -0.010310996323823929, 0.004641975276172161, 0.012756985612213612, 0.028405915945768356, -0.00011338885815348476, 0.01395970955491066, -0.0030878933612257242, 0.018554387614130974, -0.004402106162160635, 0.0013817815342918038, -0.006094703916460276, -0.00017895169730763882, -0.007479864172637463, -0.005915646906942129, 0.01339888945221901, -0.012371843680739403, -0.017405718564987183, 0.021689578890800476, -0.0231896061450243, 0.05116308107972145, 0.01297996286302805, 0.009006918407976627, 0.0162300206720829, 0.011182633228600025, -0.015594874508678913, -0.006294032093137503, 0.01928412914276123, 0.01272995863109827, 0.012784013524651527, 0.004821032285690308, -0.013851599767804146, -0.03183840960264206, 0.0016182722756639123, 0.015027296729385853, 0.02794644795358181, -0.01927061565220356, -0.01925710216164589, 0.009135299362242222, -0.009317735210061073, -0.0036858769599348307, -0.02118956856429577, 0.029162686318159103, -0.028838355094194412, -0.007560946512967348, -0.010466404259204865, 0.018365195021033287, 0.014973241835832596, 0.007331212516874075, 0.0008724818471819162, -0.03443305194377899, -0.01705436035990715, -0.010898844338953495, -0.008905565366148949, 0.005304149352014065, 0.0011647169012576342, 0.005969701800495386, 0.01986522227525711, 0.04502783343195915, 0.0070947217755019665, 0.002797347493469715, 0.01812194660305977, 0.008594748564064503, 0.011101550422608852, -0.01159480307251215, -0.006449440028518438, -0.012784013524651527, -0.015527306124567986, 0.009175840765237808, 0.009838014841079712, 0.02155444025993347, -0.025581540539860725, 0.004378457088023424, 0.016000287607312202, 0.005513612646609545, -0.011838050559163094, -0.008006900548934937, -0.05670372024178505, 0.009493413381278515, 0.01813546009361744, -0.00649673817679286, 0.01760842464864254, -0.015784066170454025, -0.02398691698908806, 0.009196111001074314, -0.004020342603325844, 0.026662640273571014, -0.01590569131076336, -0.00127789459656924, -0.042054809629917145, -0.001511006848886609, 0.020270634442567825, 0.017703020945191383, -0.012452926486730576, 0.0027061295695602894, -0.03373033553361893, -0.012081298045814037, 0.02320311963558197, 0.01424349844455719, 0.021959854289889336, 0.007378510665148497, 0.010858302935957909, -0.022703109309077263, -0.005148740950971842, -0.03267626091837883, -0.01157453190535307, 0.011675884947180748, -0.009412331506609917, -0.04018991068005562, -0.01820302940905094, -0.008337987586855888, -0.011783995665609837, -0.007101478986442089, 0.015702985227108, -0.009716390632092953, 0.016284076496958733, -0.022811220958828926, -0.011621830053627491, 0.0003038483555428684, -0.021122001111507416, 0.02964918129146099, 0.0024257192853838205, 0.019621973857283592, 0.026405880227684975, -0.029676208272576332, -0.015419195406138897, -0.04732517525553703, -0.001436681137420237, 0.009601524099707603, 0.02490585297346115, 0.028892410919070244, -0.023622045293450356, -0.025243695825338364, 0.01897331327199936, 0.006209570914506912, 0.0018581415060907602, -0.01791924051940441, 0.03408169373869896, 0.030054593458771706, 0.005054144654422998, -0.004280482418835163, 0.014473232440650463, -0.018527358770370483, 0.0046385969035327435, 0.003285531885921955, 0.0007723956368863583, -0.006395385134965181, -0.0035203334409743547, -0.015243517234921455, 0.0059663234278559685, 0.024108540266752243, 0.031378939747810364, 0.009094757959246635, -0.006439304910600185, 0.014148902148008347, -0.001800708007067442, -0.04197372496128082, 0.0046250829473137856, 0.011047495529055595, 0.03916286677122116, -0.017378689721226692, 0.006672417279332876, 0.010101532563567162, 0.003675741609185934, -0.006037270650267601, -0.012473196722567081, -0.015202975831925869, 0.05062253028154373, -0.03218976780772209, 0.002483152784407139, -0.008162308484315872, -0.02824375033378601, 0.020878752693533897, -0.018594928085803986, -0.0154867647215724, 0.004168993793427944, -0.008432583883404732, -0.010033964179456234, 0.018013836815953255, -0.0014501949772238731, 0.0025693029165267944, -0.021932825446128845, -0.01312861405313015, -0.00670620147138834, -0.03175732493400574, 0.016121910884976387, 0.015459736809134483, -0.0369466096162796, -0.013973223976790905, 0.0012137042358517647, -0.023365283384919167, 0.010709651745855808, 0.005571045912802219, 0.0009392060455866158, -0.0009586320957168937, 0.03240598738193512, -0.03943314030766487, 0.0012517116265371442, -0.016811111941933632, 0.004942656494677067, -0.02405448630452156, -0.0005663108313456178, -0.032514095306396484, -0.011709669604897499, 0.022567972540855408, 0.008912322111427784, -0.020311174914240837, -0.02989242784678936, 0.017703020945191383, 0.04000071808695793, 0.014446205459535122, 0.055190179497003555, 0.027189677581191063, 0.009709633886814117, -0.009432601742446423, 0.02986540086567402, -0.005858213175088167, -0.008270418271422386, -0.00891907885670662, -0.010121803730726242, 0.006878501735627651, -0.02490585297346115, 0.027865365147590637, 0.00781770795583725, -0.008351501077413559, 0.0071825613267719746, -0.024122053757309914, -0.03159516304731369, 0.010243427008390427, 0.0013268819311633706, -0.012081298045814037, 0.002103078179061413, -0.005746724549680948, -0.031405970454216, -0.03335195034742355, -0.0037162830121815205, 0.0052940137684345245, -0.020067928358912468, 0.022216614335775375, 0.033676281571388245, 0.01671651564538479, -0.0022247021552175283, -0.007297428324818611, -0.03548712283372879, 0.0011756967287510633, -0.02712210826575756, -0.009669092483818531, -0.01356105413287878, -0.004530486650764942, 0.019513864070177078, 0.0206490196287632, -0.036730390042066574, -0.024689631536602974, -0.022838247939944267, -0.01329753641039133, -0.014175930060446262, -0.018392222002148628, 0.023635558784008026, -0.0025321401190012693, 0.019432781264185905, -0.009797473438084126, 0.0018412492936477065, -0.001087857410311699, 0.026676153764128685, -0.0010405592620372772, -0.0009662335505709052, -0.028676189482212067, 0.0031689757015556097, -0.010642082430422306, -0.011094793677330017, -0.022689595818519592, 0.004091289825737476, -0.00016395986313000321, -0.0335141159594059, 0.00838528573513031, 0.01590569131076336, -0.011142091825604439, -0.03554117679595947, -0.015446223318576813, -0.009817743673920631, -0.016351643949747086, -0.028405915945768356, 0.014905672520399094, -0.021865257993340492, 0.00011550038470886648, 0.02152741327881813, -0.03132488578557968, -0.01242589857429266, 0.014473232440650463, 0.011527233757078648, -0.005635236389935017, 0.013838086277246475, -0.0408385694026947, -0.029514042660593987, 0.005604830104857683, -0.009702877141535282, 0.010405592620372772, 0.004074397496879101, -0.003614929737523198, 0.022135531529784203, 0.015311085619032383, 0.019338184967637062, -0.015594874508678913, 0.004821032285690308, -0.02289230190217495, 0.01898682676255703, 0.00810149684548378, 0.010452890768647194, -0.0012094811536371708, 0.002679102122783661, 0.017175983637571335, 0.0008382751839235425, 0.009628551080822945, 0.009020431898534298, -0.017797617241740227, -0.0498117059469223, 0.024703146889805794, 0.015311085619032383, -0.05978485569357872, 0.009885312989354134, -0.031460024416446686, -0.0020388879347592592, 0.008479882031679153, -0.03743310272693634, 0.027257245033979416, -0.012398871593177319, 0.0009062662720680237, -0.020743615925312042, -0.005290635395795107, -0.013662407174706459, 0.009135299362242222, 0.017257066443562508, -0.032541126012802124, -0.005753481760621071, 0.24368004500865936, -0.051271189004182816, 0.00811501033604145, 0.02485179714858532, 0.016135424375534058, 0.007804193999618292, -0.0007364997291006148, 0.013054287992417812, -0.006344708614051342, 0.0048345462419092655, 0.004307509865611792, 0.012892123311758041, -0.01370970532298088, -0.0073379697278141975, 0.023959890007972717, 0.00017557325190864503, -0.032541126012802124, -0.019351698458194733, -0.028108611702919006, 0.0008610796649008989, 0.009135299362242222, 0.011851564049720764, 0.005996729247272015, -0.007729868404567242, 0.021027404814958572, 0.014270526356995106, -0.014175930060446262, 0.0008767049293965101, 0.02458152174949646, 0.01843276247382164, -0.026635613292455673, 0.006131866946816444, 0.022851761430501938, -0.009838014841079712, -0.016013801097869873, -0.01954089105129242, 0.029973510652780533, 0.00910151470452547, 0.024176109582185745, 0.003848042106255889, 0.006821068469434977, -0.01299347635358572, 0.025243695825338364, -0.004118317272514105, -0.021135514602065086, -0.005925782024860382, -0.0016292522195726633, -0.005314284469932318, 0.00018507511413190514, 0.015284057706594467, -0.002273689489811659, -0.019094936549663544, 0.028054557740688324, 0.021297680214047432, 0.013324563391506672, -0.0003137725288979709, 0.007689327001571655, -0.010959655977785587, 0.009689362719655037, 0.008033927530050278, -0.007587973959743977, 0.031216775998473167, -0.01871655136346817, 0.02262202836573124, -0.018013836815953255, 0.00012933087418787181, -0.025378834456205368, -0.011804265901446342, 0.0025101802311837673, -0.004476431757211685, -0.013500242494046688, 0.010642082430422306, -0.03275734558701515, 0.009513684548437595, -0.04970359429717064, -0.026149118319153786, 0.038730423897504807, 0.025311265140771866, 0.01645975559949875, 0.04029802232980728, -0.007621758617460728, -0.00490211509168148, -0.005172390025109053, 0.01437863614410162, 0.004794004838913679, -0.03437899425625801, 0.01845979131758213, -0.013311049900949001, -0.014473232440650463, -0.018270598724484444, -0.007986629381775856, -0.01756788231432438, 0.0029831617139279842, -0.01105425227433443, -0.0024932879023253918, 0.0034933059941977262, -0.004766977392137051, 0.01256103627383709, -0.017392203211784363, -0.00864880345761776, -0.01678408496081829, 0.03921692073345184, 0.028162667527794838, 0.04835221916437149, -0.01117587648332119, 0.011979945003986359, 0.019770625978708267, 0.007621758617460728, 0.012419141829013824, -0.02735184133052826, 0.013919169083237648, -0.055730730295181274, 0.008182579651474953, 0.008047441951930523, -0.009844771586358547, -0.007027152925729752, -0.022986898198723793, -0.012763742357492447, -0.00440886290743947, 0.0009459629072807729, 0.02237877994775772, -0.02459503524005413, -0.009608280844986439, -0.00543590821325779, -0.017973296344280243, -0.03164921700954437, -0.015108379535377026, 0.00726364366710186, -0.006591334473341703, -0.022486889734864235, 0.035081710666418076, -0.012020486406981945, 0.026662640273571014, -0.007729868404567242, -0.004645353648811579, -0.011770481243729591, -0.011966430582106113, -0.014365122653543949, -0.002924039028584957, 0.0004144922422710806, -0.0025101802311837673, 0.01594623178243637, 0.007865006104111671, -0.014027278870344162, 0.016338130459189415, -0.005155498161911964, -0.004057505168020725, 0.02236526645720005, 0.010838032700121403, -0.0077095977030694485, -0.025095045566558838, 0.0032196524553000927, 0.0001142334658652544, -0.009452871978282928, 0.023081494495272636, -0.0003408000338822603, -0.005554153583943844, -0.04386565089225769, 0.0032956672366708517, -0.01424349844455719, -0.04240616783499718, -0.014959728345274925, 0.019405754283070564, -0.0033649252727627754, -0.009588009677827358, -0.013000233098864555, -0.17103008925914764, 0.01983819343149662, 0.016811111941933632, -0.0329195111989975, 0.019135478883981705, 0.009588009677827358, 0.0234869085252285, 0.00419939961284399, -0.023324742913246155, -0.014851617626845837, 0.018581414595246315, -0.005500098690390587, 0.003902096999809146, -0.016973277553915977, -0.02266256883740425, 0.02604100853204727, -0.029487015679478645, 0.0055034770630300045, 0.03716282919049263, 0.013358348049223423, 0.04527108371257782, -0.04381159693002701, 0.0007141175447031856, 0.018824663013219833, 0.004361564759165049, 0.0010557621717453003, 0.007824464701116085, 0.03267626091837883, -0.009642064571380615, -0.03791959956288338, 0.006256869062781334, -0.0016410767566412687, 0.0240139439702034, 0.0037939869798719883, -0.002079429104924202, -0.004415619652718306, 0.0067771486937999725, -0.0034764136653393507, -0.026095062494277954, 0.006054162513464689, -0.0020828077103942633, 0.020513880997896194, 0.014270526356995106, 0.007135263178497553, -0.008324474096298218, 0.0074460795149207115, 0.010047477670013905, -0.008162308484315872, 0.005179147236049175, 0.007594730705022812, 0.011966430582106113, -0.018878716975450516, -0.0018513845279812813, -0.005956187844276428, 0.024459898471832275, -0.00502711720764637, -0.0184733048081398, -0.013324563391506672, 0.0038987186271697283, -0.014473232440650463, -0.023270687088370323, 0.0052399588748812675, 0.009378546848893166, 0.017973296344280243, 0.006719715427607298, -0.016270563006401062, -0.018567901104688644, 0.0260274950414896, 0.009648822247982025, -0.013169155456125736, 0.027459952980279922, -0.037324994802474976, -0.0025997087359428406, 0.006229841616004705, 0.011621830053627491, 0.014351609162986279, 0.0005067658494226635, 0.007087965030223131, 0.01158804539591074, 0.0030034321825951338, -0.02679777890443802, 0.032541126012802124, -0.0032889104913920164, -0.019419267773628235, -0.00011613384413067251, -0.00021315838966984302, 0.004794004838913679, -0.0028902546036988497, -0.027568062767386436, -0.030838390812277794, 0.028054557740688324, -0.0057028052397072315, -0.014257012866437435, -0.01329753641039133, -0.009358275681734085, 0.009642064571380615, -0.008337987586855888, -0.01199345849454403, -0.012128596194088459, -0.009560982696712017, -0.017770588397979736, 0.007750139106065035, -0.031189749017357826, 0.019513864070177078, 0.023622045293450356, -0.0027432923670858145, -0.011074523441493511, 0.021959854289889336, 0.026784265413880348, -0.028351860120892525, 0.02066253311932087, 0.007675813511013985, 0.01159480307251215, 0.007202832028269768, 0.017703020945191383, -0.007364997174590826, -0.02994648367166519, -0.026176145300269127, 0.021446330472826958, 0.006533901207149029, -0.012115082703530788, -0.019230075180530548, 0.03218976780772209, 0.04927115514874458, -0.02624371461570263, -0.00690552918240428, -0.03546009585261345, -0.013817815110087395, 0.019635487347841263, 0.050109006464481354, -0.0026520746760070324, 0.0162300206720829, -0.012635362334549427, 0.04297374561429024, -0.02490585297346115, 0.02120308391749859, -0.012243462726473808, -0.03994666412472725, -0.008973133750259876, 0.028568079695105553, -0.00010652640776243061, 0.01523000281304121, 0.00426021171733737, -0.014865132048726082, -0.01790572702884674, 0.03689255565404892, 0.01033802330493927, -0.032838426530361176, -0.004402106162160635, -0.01679759845137596, -0.008601505309343338, -0.005537261720746756, -0.013202940113842487, 0.02370312809944153, 0.004043991677463055, 0.0009248476708307862, 0.014973241835832596, -0.02091929502785206, -0.005023738835006952, -0.006236598361283541, 0.007824464701116085, 0.014405664056539536, -0.011047495529055595, -0.019216561689972878, 0.024081513285636902, -0.010094775818288326, 0.016527323052287102, 0.004614947829395533, -0.006094703916460276, -0.001717936247587204, -0.004233184270560741, -0.01157453190535307, -0.013973223976790905, 0.044325120747089386, -0.02209499105811119, -0.007986629381775856, -0.033649250864982605, -0.0030862039420753717, -0.016405699774622917, -0.001380092347972095, -0.0044291336089372635, 0.026486961171030998, 0.016567865386605263, 0.012385357171297073, 0.002775387605652213, 0.012669146060943604, -0.015811095014214516, -0.005692669656127691, -0.014392150565981865, 0.030865419656038284, 0.023122036829590797, 0.005054144654422998, -0.03043297864496708, -0.011209660209715366, 0.013054287992417812, 0.0025980195496231318, -0.010696138255298138, 0.026108575984835625, 0.016811111941933632, 0.042568329721689224, -0.028676189482212067, -0.02175714634358883, -0.021905798465013504, -0.030108649283647537, 0.023905834183096886, -0.04056829586625099, -0.004287239164113998, -0.0022010530810803175, 0.009263679385185242, -0.0012770500034093857, -0.008689344860613346, 0.03821690380573273, 0.0014088090974837542, -0.02429773285984993, -0.003006810788065195, -0.017459772527217865, 0.009702877141535282, 0.013074559159576893, -0.0011241756146773696, -0.00544604379683733, -0.023135550320148468, -0.0046385969035327435, 0.021108487620949745, -0.005979836918413639, -0.007459593471139669, 0.023581504821777344, -0.016324616968631744, -0.035379014909267426, -0.07973115891218185, 0.021865257993340492, 0.01733814924955368, 0.0035507394932210445, 0.011682641692459583, -0.010331266559660435, 0.022986898198723793, 0.00495279161259532, -0.004665624350309372, 0.0215409267693758, -0.018054377287626266, 0.029405932873487473, 0.00544604379683733, -0.002146997954696417, -0.042298056185245514, -0.012297517620027065, 0.016067855060100555, -0.006280518136918545, -0.0042196703143417835, 0.0026976836379617453, 0.008966377004981041, 0.02398691698908806, 0.03986557945609093, 0.0052940137684345245, -0.02487882412970066, 0.008770427666604519, -0.032838426530361176, 0.025027476251125336, 0.003571009961888194, 0.006554171908646822, 0.010047477670013905, -0.014635398052632809, -0.0035000627394765615, 0.01451377384364605, -0.010500188916921616, -0.008094740100204945, 0.006810932885855436, -0.013804301619529724, 0.0357574000954628, 0.01820302940905094, -0.014892159029841423, -0.02487882412970066, 0.01624353416264057, 0.00022529964917339385, -0.0013893829891458154, 0.01479756273329258, -0.013284021988511086, 0.002603087341412902, 0.013304293155670166, 0.016608405858278275, 0.04032504931092262, 0.004418998025357723, -0.004513594321906567, -0.02651399001479149, -0.0018108433578163385, -0.03043297864496708, 0.009128542616963387, -0.004081154242157936, 0.003434183308854699, 0.01732463575899601, 0.05810914933681488, -0.03129785880446434, 0.016378672793507576, -0.0003080714086536318, -0.009533954784274101, -0.004266968462616205, -0.0021554441191256046, 0.0022399050649255514, 0.009959638118743896, -0.03135191276669502, -0.01509486511349678, -0.0037297967355698347, 0.003270328976213932, 0.014959728345274925, 0.005456178914755583, 0.03583848103880882, -0.02432476170361042, 0.002327744383364916, -0.009858285076916218, 0.022419320419430733, 0.03289248049259186, 0.007858249358832836, -0.022284183651208878, 0.020324688404798508, 0.02343285270035267, 0.0005718008032999933, -0.007675813511013985, -0.0293248500674963, -0.004500080831348896, 0.0024172731209546328, -0.026473447680473328, 0.005807536654174328, 0.016108397394418716, 0.017662478610873222, 0.022135531529784203, 0.022270670160651207, 0.018824663013219833, -0.02127065137028694, 0.016689488664269447, 0.01841924898326397, 0.016257047653198242, -0.01644624024629593, -0.009662335738539696, -0.023838264867663383, 0.00035072420723736286, -0.03467629849910736, -0.021838229149580002, -0.03605470061302185, -0.0020152388606220484, 0.029487015679478645, -0.02148687280714512, 0.0016013800632208586, -0.03240598738193512, 0.025068016722798347, -0.02486531063914299, 0.010662353597581387, -0.002131795044988394, -0.019892249256372452, -0.030649198219180107, 0.01074343640357256, 0.01564892940223217, -0.006736607290804386, 0.0363520048558712, 0.01048667449504137, 0.01733814924955368, 0.017973296344280243, 0.019513864070177078, -0.020027386024594307, 0.023581504821777344, 0.014892159029841423, -0.00285984855145216, -0.004226427059620619, 0.002520315581932664, -0.0025236939545720816, -0.016094883903861046, -0.010662353597581387, 0.00811501033604145, 0.002491598716005683, -0.023622045293450356, 0.0820014700293541, 0.008297446183860302, 0.004209535196423531, 0.016865167766809464, 0.00893259234726429, -0.004854816943407059, -0.009419088251888752, 0.0161624513566494, -0.005956187844276428, -0.009148812852799892, 0.008006900548934937, -0.009196111001074314, -0.0385952889919281, -0.00838528573513031, 0.0007947777630761266, -0.007628515362739563, -0.01959494687616825, 0.04246022179722786, -0.013986737467348576, 0.006219706032425165, 0.027324814349412918, -0.011736697517335415, 0.01647326909005642, 0.03662227839231491, 0.005020360462367535, -0.02177066169679165, 0.012108325026929379, -0.00376695953309536, -0.006587956100702286, 0.0051960390992462635, 0.0019324671011418104, 0.02174363285303116, -0.013777274638414383, -0.018648983910679817, 0.003451075404882431, 0.019730083644390106, -0.01285833865404129, -0.006868366617709398, 0.019432781264185905, -0.02573019079864025, 0.022459862753748894, 0.005452800542116165, -0.02597343921661377, -0.024730173870921135, -0.009189354255795479, 0.035595234483480453, -0.01523000281304121, -0.016703002154827118, -0.021432816982269287], "533efdc1-0693-470c-b252-baa900561f46": [-0.05689343810081482, -0.019926998764276505, 0.010542440228164196, -0.017982900142669678, -0.02025577984750271, 0.026759928092360497, 0.023629359900951385, -0.008862797170877457, 0.0014732612762600183, -0.036680541932582855, 0.020012767985463142, 0.018626168370246887, 0.00043934278073720634, -0.011071348562836647, -0.007654883433133364, 0.0010301214642822742, -0.00388462096452713, -0.014709384180605412, 0.0030287178233265877, -0.00940600037574768, -0.002967964857816696, 0.01896924339234829, -0.026116661727428436, -0.01788283698260784, 0.004342055879533291, 0.003845310304313898, 0.009077219292521477, -0.015238292515277863, 0.011364392936229706, 0.01641046814620495, 0.0278034508228302, -0.0009970646351575851, 0.009970646351575851, -0.004563625436276197, -0.01454499363899231, -0.012457947246730328, 0.0005128271295689046, -0.007947927340865135, 0.01718238927423954, 0.017353927716612816, -0.00029818128678016365, -0.0002483727294020355, -0.017268158495426178, 0.003666624892503023, -0.000761199917178601, 0.019855523481965065, -0.008698406629264355, 0.015509894117712975, -0.0033700070343911648, 0.017997195944190025, -0.013237016275525093, 0.023758012801408768, -0.030619533732533455, -0.01653912290930748, 0.015509894117712975, -0.013815957121551037, 0.00495315995067358, 0.01072827260941267, -0.015081049874424934, -0.022328529506921768, 0.03087684139609337, 0.012629485689103603, -0.02202833816409111, 0.0056607541628181934, 0.029618894681334496, 0.008298151195049286, -0.014580730348825455, 0.015424125827848911, -0.003931079059839249, 0.016367584466934204, 0.024830125272274017, 0.025044549256563187, -0.0025230380706489086, -0.00684722512960434, 0.027817746624350548, -0.019298024475574493, -0.005517805926501751, 0.010699682869017124, 0.00929878931492567, 0.013472880236804485, 0.010921252891421318, 0.016553416848182678, -0.0003008615749422461, -0.0124722421169281, 0.017353927716612816, 0.010571029037237167, 0.0036112323869019747, 0.0005065731820650399, -0.015023870393633842, 0.0108712213113904, 0.018497515469789505, 0.0022049781400710344, 0.028132231906056404, 0.011328655295073986, 0.0055785588920116425, 0.015638548880815506, -0.013401406817138195, 0.008298151195049286, -0.00341289141215384, -0.013637271709740162, -0.005378431174904108, 0.018511809408664703, -0.016796428710222244, -0.0011007022112607956, -0.04888832941651344, -0.015595663338899612, 0.005957372020930052, -0.012436505407094955, -0.00743331341072917, -0.004838800989091396, -0.04628667235374451, 0.025787880644202232, -0.013530059717595577, -0.020355843007564545, -0.030247867107391357, -0.009127250872552395, 0.03833874315023422, -0.006525591481477022, -0.03021927736699581, -0.01332993246614933, 0.01752546615898609, 0.00934167392551899, 0.023929551243782043, -0.010528145357966423, -0.003214550670236349, 0.024858715012669563, -0.001199872582219541, -0.002312189433723688, 0.0087269963696599, -0.01154307834804058, 0.04485718905925751, 0.015295471996068954, 0.02553057298064232, -0.006868667434900999, -0.022185582667589188, 0.027346016839146614, -0.0071903010830283165, -0.017482580617070198, -0.04119770973920822, 0.004281302448362112, 0.018697641789913177, 0.021856799721717834, -0.00791933760046959, -0.01718238927423954, 0.015295471996068954, 0.009005744941532612, 0.019583921879529953, 0.018197324126958847, 0.01596732996404171, 0.0009309510351158679, 0.02480153553187847, -0.025687815621495247, 0.010992727242410183, 0.030390815809369087, 0.006143204867839813, 0.010828336700797081, 0.015624253079295158, 0.004795916844159365, 0.015123933553695679, -0.008955713361501694, 0.006757882423698902, 0.02503025345504284, -0.011993365362286568, 0.0019101471407338977, -0.011528783477842808, 0.024186858907341957, -0.01215775590389967, -0.030276456847786903, 0.0030394389759749174, 0.010285132564604282, -0.010092152282595634, 0.018297387287020683, -0.02645973674952984, 0.008691258728504181, -0.02074180357158184, 0.020770393311977386, 0.020656034350395203, 0.004392087459564209, -0.025787880644202232, 0.00969904474914074, -0.01558136846870184, -0.01425194926559925, 0.004888833034783602, 0.03516529127955437, 0.015023870393633842, -0.03470785543322563, 0.02515890635550022, -0.013908873312175274, 0.005710786208510399, -0.020212894305586815, 0.02054167538881302, 0.012886792421340942, -0.009741929359734058, 0.01618175208568573, -0.581856906414032, -0.019984178245067596, 0.0024408427998423576, 0.005968092940747738, 0.03527965024113655, 0.0069472892209887505, 0.003916784189641476, 0.018368860706686974, -0.02124212309718132, 0.03184888884425163, -0.007183154113590717, -0.007869306020438671, -0.019269436597824097, 0.007147416938096285, 0.0005440970999188721, -0.021771032363176346, 0.00648985430598259, -0.010185069404542446, 0.017940016463398933, 0.010070710442960262, -0.038024257868528366, -0.007333249785006046, -0.021056290715932846, 0.02109917439520359, 0.016338994726538658, -0.0012856415705755353, -0.030562354251742363, -0.02553057298064232, 0.0036701986100524664, -0.018568988889455795, -0.02774627134203911, 0.010778304189443588, 0.018340270966291428, -0.00235150009393692, 0.05266216769814491, -0.01558136846870184, -0.011921891011297703, 0.020555971190333366, 0.03527965024113655, 0.04482859745621681, -0.013530059717595577, -0.020212894305586815, -0.0021924700122326612, 0.010878368280827999, -0.00909151416271925, -0.007240333128720522, 0.004999618045985699, 0.017053736373782158, 0.021756736561655998, -0.0032985329162329435, -0.0015938739525154233, -0.011092791333794594, -0.006471985951066017, -0.011485898867249489, -0.0025569882709532976, 0.014123295433819294, 0.035536956042051315, -0.028746910393238068, 0.013072625733911991, -0.04511449486017227, -0.03622310981154442, 0.031248506158590317, -0.01995558850467205, -0.02387237176299095, -0.019140781834721565, -0.0020048504229635, -0.018011489883065224, -0.012586601078510284, 0.0072867912240326405, -0.023114746436476707, 0.001334780128672719, -0.0224571842700243, 0.008784174919128418, -0.0006865987088531256, 0.006211105268448591, 0.032477863132953644, 0.03230632469058037, -0.030190689489245415, -0.0027410343755036592, 0.019426679238677025, 0.010735420510172844, -0.013551502488553524, -0.008755585178732872, 0.010742567479610443, -0.017782773822546005, -0.006790046114474535, 0.010806893929839134, -0.0040311431512236595, 0.009670455008745193, -0.028475308790802956, 0.005803702399134636, 0.01661059632897377, -0.010971284471452236, -0.032620809972286224, -0.01753976009786129, 0.00449215155094862, -0.028704026713967323, -0.017725594341754913, 0.005110403057187796, -0.023429231718182564, -0.0363374687731266, -0.008655522018671036, -0.013865988701581955, 0.007905042730271816, 0.0263739675283432, 0.012965413741767406, -0.007215317338705063, -0.01169317401945591, 0.00720102246850729, 3.1933038258102897e-07, 0.0014178687706589699, -0.025216085836291313, 0.002381876576691866, -0.016553416848182678, 0.005160435102880001, -0.031763121485710144, 0.02381519228219986, 0.013615828938782215, -0.005732228513807058, 0.008912828750908375, 0.020012767985463142, -0.00717958016321063, 0.015710022300481796, 0.0009148693643510342, 0.026988646015524864, -0.007340397220104933, 0.03202042728662491, 0.004499298986047506, 0.008047991432249546, 0.0010488834232091904, -0.015781495720148087, -0.0029626041650772095, 0.03236350417137146, -0.019769754260778427, 0.0016930443234741688, -0.00994920451194048, 0.006200383882969618, 0.0153240617364645, 0.036108750849962234, 0.008112317882478237, -0.01982693374156952, -0.006218252703547478, 0.02886126935482025, -0.006600639317184687, -0.009970646351575851, -0.013887430541217327, 0.013136952184140682, 0.004656542092561722, -0.016882197931408882, -0.009205873124301434, 0.0196125116199255, 0.0027142316102981567, -0.030390815809369087, -0.0015116786817088723, -0.009370263665914536, 0.008055138401687145, -0.041455019265413284, -0.027060119435191154, -0.01037804875522852, -0.023972436785697937, -0.003923931624740362, -0.011392982676625252, -0.019126487895846367, 0.0006785579025745392, -0.0012186345411464572, -0.024858715012669563, -0.0040990435518324375, 1.4881145034451038e-05, -0.0014250162057578564, -0.03302106633782387, -0.019841229543089867, -0.013244163244962692, -0.014709384180605412, -0.015724316239356995, -0.029275819659233093, 0.01215060893446207, -0.010563882067799568, 0.007483345456421375, -0.020584560930728912, -0.001614422770217061, -0.0012472242815420032, 0.005392726045101881, -0.020584560930728912, 0.0068936836905777454, 0.022185582667589188, 0.0167535450309515, 0.02594512328505516, 0.0067400140687823296, -0.028961332514882088, 0.019641101360321045, -0.040540147572755814, 0.016624892130494118, -0.009613275527954102, 0.024058204144239426, 0.0231719259172678, 0.008291003294289112, -0.004109764471650124, 0.012107724323868752, -0.0054391841404139996, 0.025473393499851227, 0.01169317401945591, 0.01831168122589588, -0.0005615189438685775, -0.010814041830599308, 0.021642377600073814, -0.018769117072224617, 0.0321061946451664, -0.009284494444727898, 0.0005356095498427749, 0.0002883535926230252, -0.010470965877175331, -0.009670455008745193, -0.020570265129208565, 0.01866905204951763, 0.010492407716810703, -0.003831015434116125, -0.020441612228751183, 0.0160530973225832, 0.005875176750123501, -0.0007160818204283714, -0.006568476092070341, 0.002433695364743471, 0.026331083849072456, 0.010099300183355808, -0.031105557456612587, -0.0021388644818216562, 0.00010793716501211748, -0.000766560435295105, -0.0056178695522248745, -0.018711937591433525, -0.008047991432249546, -0.030390815809369087, 0.0002354180469410494, 0.00483165355399251, 0.015995919704437256, -0.033192604780197144, 0.045228853821754456, -0.01832597702741623, 0.032477863132953644, 0.012650927528738976, -0.01768270879983902, -0.008555457927286625, 0.017639825120568275, -0.015081049874424934, 0.010642503388226032, -0.007840716280043125, 0.04754461720585823, 0.02474435791373253, -0.025559162721037865, 0.014752267859876156, -0.028060758486390114, 0.0010730059584602714, -0.012715254910290241, 0.008040843531489372, 0.0014661138411611319, 0.0021102747414261103, 0.009641865268349648, 0.02474435791373253, 0.028932742774486542, 0.03856746107339859, 0.015624253079295158, 0.019197961315512657, -0.0014571795472875237, 0.0031823874451220036, 0.017210979014635086, -0.024629998952150345, -0.007561966776847839, -0.030905431136488914, -0.0006102106999605894, 0.008584047667682171, -0.000819719338323921, -0.00600383011624217, -0.015881560742855072, -0.014895216561853886, -0.015609958209097385, -0.003813146846368909, 0.0017573711229488254, 0.030190689489245415, 0.040597327053546906, 0.022585837170481682, -0.00940600037574768, -0.036108750849962234, 0.029047101736068726, 0.054491907358169556, 0.00047217620885930955, -0.012636632658541203, -0.017582645639777184, -0.018568988889455795, -0.0181830283254385, 0.0167678389698267, -0.0008094449294731021, 0.02523038163781166, -0.01859757862985134, 0.0042920238338410854, -0.002106701023876667, -0.007361839525401592, 0.02039872668683529, -0.0018726232228800654, -0.025573456659913063, -0.02959030494093895, -0.00904862955212593, -0.0067149982787668705, -0.009227314963936806, -0.010849778540432453, 0.016067393124103546, -0.0025033827405422926, -0.01954103820025921, -0.007890747860074043, -0.009670455008745193, -0.006561328656971455, 0.006028845906257629, -0.03619451820850372, -0.005396299529820681, -0.022900324314832687, 0.024830125272274017, -0.002212125575169921, 0.030333636328577995, -0.017468286678195, 0.01143586728721857, 0.004324187058955431, -0.042884502559900284, -0.0028268033638596535, -0.02181391604244709, 0.024401281028985977, -0.03665195405483246, 0.0556069016456604, 0.009284494444727898, -0.003720230422914028, -0.02787492610514164, -0.0328209362924099, -0.020270073786377907, 0.0051818774081766605, 0.0016689217882230878, -0.01796860620379448, 0.02152801863849163, 0.006675687152892351, 0.02558775246143341, -0.010420933365821838, 0.002637396799400449, 0.0047208690084517, 0.0009747289586812258, -0.03793848678469658, 0.01902642287313938, 0.0028911300469189882, 0.0249444842338562, 0.004313466139137745, 0.012021955102682114, 0.03073389269411564, -0.03393593430519104, 0.013001151382923126, -0.007065221667289734, 0.005432036705315113, 0.0027785582933574915, 0.010792599059641361, -0.007100958377122879, -0.007890747860074043, 0.006189662963151932, 0.01500957552343607, 0.000954180140979588, 0.004506446421146393, 0.007776389364153147, -0.002900064457207918, -0.02431551180779934, -0.0005248883971944451, -0.013844545930624008, 0.012243525125086308, -0.01251512672752142, -0.027774861082434654, -0.00625398987904191, -0.01225781999528408, 0.006547033786773682, 0.004917422775179148, -0.01732533797621727, -0.006568476092070341, 0.032077606767416, 0.013265606015920639, -0.03239209204912186, -0.02758902870118618, 0.015795791521668434, 0.011450162157416344, -0.003859605174511671, -0.01875482127070427, 0.04577205702662468, 0.004392087459564209, -0.015795791521668434, -0.02224276028573513, 0.006629229057580233, -0.007222464773803949, -0.009491769596934319, -0.03179170936346054, -0.03659477457404137, -0.009827698580920696, -0.039310794323682785, 0.001860115211457014, -0.0007008935790508986, -0.027417490258812904, -0.043656423687934875, -0.009677601978182793, 0.010492407716810703, 0.007869306020438671, 0.0016555204056203365, -0.017439696937799454, -0.010185069404542446, 0.006064583081752062, -0.004602936562150717, -0.015795791521668434, -0.0013723040465265512, -0.02630249410867691, 0.0032038295175880194, -0.008641227148473263, -0.0041562230326235294, 0.0025319724809378386, -7.335874215641525e-06, -0.02588794380426407, 0.00306624174118042, -0.009691896848380566, 0.006168220657855272, 0.019197961315512657, 0.024930190294981003, 0.004424251150339842, 0.01925514079630375, 0.0016707086469978094, 0.01773988828063011, 0.00044515004265122116, 0.022828849032521248, -0.022328529506921768, -0.025787880644202232, -0.0007638801471330225, -0.010928399860858917, 0.0034915131982415915, 0.03236350417137146, 0.0210419949144125, 0.02415826916694641, 0.003657690482214093, 0.010185069404542446, -0.01002067793160677, 0.014838037081062794, -0.013265606015920639, 0.006804340984672308, 0.014552140608429909, -0.0013401407049968839, 0.011671731248497963, -0.007293938659131527, -0.01194333378225565, 0.012958266772329807, -0.036108750849962234, 0.032535042613744736, 0.011321508325636387, 0.0040704538114368916, 0.0033664333168417215, -0.014709384180605412, -0.03699503093957901, -0.010392343625426292, 0.028260886669158936, -0.008869944140315056, 0.019555332139134407, 0.016796428710222244, -0.0024712192825973034, -0.02673133835196495, 0.015795791521668434, 0.0019387367647141218, -0.006547033786773682, -0.037967078387737274, -0.03545118868350983, 0.010185069404542446, -0.012122019194066525, -0.00483165355399251, 0.0035987242590636015, 0.03244927152991295, -0.024072499945759773, -0.004256286658346653, -0.016024507582187653, -0.010435228236019611, -0.017997195944190025, 0.024043910205364227, -0.004420677199959755, -0.04797346144914627, -0.0002588705101516098, -0.01568143256008625, -0.02052738144993782, -0.03430759906768799, -0.004356350749731064, 0.020327253267169, 0.023772308602929115, 0.05111832544207573, 0.011214297264814377, 0.009413148276507854, 0.018354566767811775, -0.004349203314632177, 0.005725081078708172, 0.001546522369608283, 0.012286409735679626, -0.04079745337367058, -0.006304021459072828, 0.007576261647045612, -0.006922272965312004, 0.020298663526773453, -0.01022795308381319, -0.014287685975432396, 0.023772308602929115, 0.0017001917585730553, 0.018783411011099815, -0.015166818164288998, -0.05460626259446144, -0.007476198021322489, 0.005053223576396704, 0.009813403710722923, 0.0117575004696846, -0.020999111235141754, -0.030390815809369087, -0.002367581706494093, 0.01062106154859066, 0.016224635764956474, -0.021227827295660973, 0.013151247054338455, -0.012994003482162952, 0.011607404798269272, 0.010363754816353321, 0.007654883433133364, -0.0029626041650772095, -0.012593748047947884, -0.03665195405483246, 0.0027303132228553295, 0.003402170492336154, 0.0007884494261816144, 0.019941292703151703, -0.017082326114177704, 0.012529421597719193, -0.02837524563074112, 0.015123933553695679, -0.025058843195438385, -0.014387750066816807, -0.003745246445760131, 0.0009166562231257558, -0.03356426954269409, -0.005199745763093233, 0.004477856680750847, -0.033678628504276276, 0.017125209793448448, 0.028260886669158936, -0.007669178303331137, 0.014316275715827942, -0.0023979584220796824, -0.0016340782167389989, -0.003802425693720579, -0.0238866675645113, 0.01482374221086502, -0.007640588562935591, 0.008426804095506668, 0.023700833320617676, -0.0009175496525131166, -0.04482859745621681, -0.03628028929233551, -0.006346906069666147, 0.013115509413182735, 0.018711937591433525, 0.062497012317180634, -0.008047991432249546, 0.008848502300679684, 0.011328655295073986, 0.012236377224326134, -0.008412509225308895, -0.016596302390098572, 0.04697282239794731, 0.03336414322257042, 0.002313976176083088, -0.028332360088825226, 0.0032359929755330086, -0.009606128558516502, 0.010971284471452236, 3.7914811400696635e-05, -0.0028839826118201017, 0.007318954914808273, -0.012686665169894695, -0.00979910884052515, 0.012243525125086308, 0.0034950869157910347, 0.01262233778834343, 0.0020423743408173323, 0.01297970861196518, -0.010506702587008476, -0.00224607577547431, -0.0032699431758373976, 0.01861187256872654, -0.004102617036551237, 0.050146277993917465, -0.010149331763386726, -0.0055213794112205505, 0.03150581195950508, -0.006293300539255142, 0.015609958209097385, -0.009877730160951614, 0.0012266754638403654, 0.05254780873656273, -0.015910150483250618, -0.002817869186401367, -0.01845462992787361, -0.004199107177555561, 0.03264940157532692, 0.009899172000586987, -0.011378687806427479, 0.00848398357629776, -0.017868541181087494, -0.00816235039383173, 0.016095982864499092, -0.0034807920455932617, -0.013665860518813133, -0.01482374221086502, -0.009370263665914536, 0.011535930447280407, 0.0013133378233760595, 0.0009586472879163921, 0.032906707376241684, -0.023129040375351906, -0.010842631570994854, 0.001214167452417314, -0.011371539905667305, 0.008684111759066582, 0.011614552699029446, 0.0014187622582539916, 0.03273516893386841, 0.03385016694664955, -0.040883224457502365, 0.0019369499059394002, -0.027360310778021812, 0.004131206776946783, -0.021699557080864906, 0.0015599237522110343, -0.0037809833884239197, -0.014173327945172787, 0.021999748423695564, -0.023357758298516273, -0.006693555973470211, -0.004931717645376921, -0.015352651476860046, 0.020941931754350662, 0.017468286678195, 0.025116022676229477, -0.003103765659034252, -0.0022407150827348232, 0.00732610234990716, -0.002399745164439082, -0.010785452090203762, -0.011021316982805729, -0.009820550680160522, 0.02950453571975231, 0.02658838964998722, -0.009127250872552395, 0.032535042613744736, -0.007283217739313841, 5.9971294831484556e-05, 0.012772433459758759, -0.03164876252412796, -0.03676631301641464, 0.030333636328577995, -0.0031823874451220036, -0.020784687250852585, -0.013351374305784702, -0.012379325926303864, -0.017053736373782158, -0.012786728329956532, 0.005142566282302141, -0.0023193368688225746, -0.021628083661198616, 0.019712574779987335, 0.02595941722393036, 0.0028589668218046427, 0.011493045836687088, -0.011007022112607956, -0.027560438960790634, 0.017068032175302505, -0.0327923484146595, -0.033678628504276276, -0.016439057886600494, -0.0052640726789832115, 0.014230506494641304, 0.03359285742044449, -0.016296111047267914, -0.031248506158590317, -0.00341289141215384, -0.03762400150299072, -0.01824020780622959, -0.013658713549375534, 0.04125488921999931, 0.014409191906452179, -0.012429357506334782, -0.0043313344940543175, 0.010542440228164196, -0.004309892188757658, 0.01689649373292923, -0.0004739630676340312, 0.007905042730271816, -0.024415574967861176, -0.027103004977107048, 0.0022585836704820395, 0.005875176750123501, -0.035394009202718735, -0.003845310304313898, 0.010921252891421318, 0.005031781271100044, 0.027460375800728798, 0.01575290597975254, -0.004656542092561722, -0.004052585456520319, -0.0023872372694313526, 0.01989840902388096, 0.02061315067112446, -0.01482374221086502, 0.015123933553695679, -0.023043271154165268, -0.01618175208568573, 0.036108750849962234, -0.003109126351773739, -0.004081175196915865, 0.03127709776163101, 0.0009135291911661625, -0.021370775997638702, -0.009977794252336025, -0.031906068325042725, -0.002490874845534563, 0.0015500959707424045, -0.0002669113455340266, 0.004409956280142069, 0.022471478208899498, 0.0013088707346469164, 0.03642323613166809, 0.022828849032521248, 0.014137590304017067, -0.018511809408664703, 0.01418762281537056, -0.015438420698046684, -0.005964519456028938, 0.007983664982020855, 0.0041955336928367615, 0.011464457027614117, -0.013680155389010906, 0.003402170492336154, -0.003759541315957904, 0.012672370299696922, 0.016453353688120842, -0.013287047855556011, -0.04620090126991272, 0.01838315650820732, 0.020198600366711617, -0.04148360714316368, -0.007140269502997398, -0.011778943240642548, -0.0013070838758721948, -0.0014160819118842483, -0.017053736373782158, 0.023357758298516273, -0.03313542529940605, 0.016667775809764862, -0.015381241217255592, -0.007476198021322489, -0.035536956042051315, 0.016567712649703026, -0.012600895948708057, -0.00979910884052515, -0.0020977668464183807, 0.23134759068489075, -0.044371165335178375, 0.0010131463641300797, 0.0313628651201725, 0.0004900447675026953, 0.001181110623292625, 0.02864684723317623, 0.002251436235383153, -0.0015965541824698448, 0.008355330675840378, 0.010613913647830486, -0.019012128934264183, -0.010735420510172844, -0.006096746772527695, 0.007340397220104933, 0.000578494044020772, -0.045800648629665375, -0.03527965024113655, -0.029676074162125587, -0.005696491338312626, 0.026616979390382767, 0.004184812773019075, 0.015452715568244457, -0.010285132564604282, 0.0015590302646160126, 0.011400129646062851, -0.006664966233074665, -0.003287811763584614, 0.024001026526093483, 0.01583867520093918, -0.021413661539554596, 0.00483165355399251, 0.014323423616588116, -0.006522017996758223, -0.0018333124462515116, -0.018497515469789505, 0.01753976009786129, 0.00743331341072917, 0.017639825120568275, 0.015238292515277863, 0.024487050250172615, -0.011414424516260624, 0.023643655702471733, -0.01775418408215046, -0.0031109130941331387, 0.0003126994997728616, -0.01546701043844223, 0.012307851575314999, 0.006554181221872568, 0.0044814301654696465, -0.014980985783040524, -0.015209702774882317, 0.025916533544659615, 0.016624892130494118, 0.006647097412496805, -0.0039489478804171085, 0.013472880236804485, -0.0427987314760685, 0.01618175208568573, 0.013751629739999771, 0.0007031271234154701, 0.04783051460981369, -0.01165743637830019, 0.025559162721037865, -0.012343589216470718, -0.004009700845927, -0.033049654215574265, 0.006872241385281086, 0.005625016987323761, -0.010406638495624065, -0.014537845738232136, -0.015309766866266727, -0.011135675013065338, -0.0010810467647388577, -0.043742191046476364, -0.0413406603038311, 0.02410108968615532, 0.007569114211946726, 0.013287047855556011, 0.03545118868350983, 0.004106190986931324, -0.037795539945364, 0.005732228513807058, 0.009649012237787247, -0.018068669363856316, -0.03250645101070404, 0.01875482127070427, -0.014559288509190083, -0.026574095711112022, -0.007383281365036964, -0.001976260682567954, 0.0015161457704380155, -0.011049906723201275, -0.003016209928318858, -0.013279900886118412, -0.005582132376730442, -0.0038667526096105576, 0.03327837213873863, -0.039739638566970825, -0.0020441613160073757, -0.036165930330753326, 0.05040358379483223, 0.004867390729486942, 0.021656673401594162, -0.005053223576396704, 0.004449266940355301, -0.001127504976466298, 0.0030537338461726904, 0.002453350927680731, -0.011407277546823025, -0.005946650635451078, -0.0484880767762661, 0.0070545002818107605, 0.0027946399059146643, -0.007862158119678497, -0.005610722117125988, 0.008512573316693306, -0.0034718576353043318, 0.0039096372202038765, -0.014387750066816807, 0.025344740599393845, -0.04785910248756409, 0.0031698793172836304, 0.007161711808294058, -0.0005199745646677911, -0.023858077824115753, -0.02730313129723072, 0.015381241217255592, -0.013158394023776054, -0.03242068365216255, 0.042884502559900284, -0.0499175600707531, 0.04222693666815758, -0.0054427580907940865, 0.0010533505119383335, 0.020698919892311096, -0.013951757922768593, -0.009284494444727898, 0.010699682869017124, 0.015252587385475636, 0.00602527242153883, 0.002901851199567318, 0.008019401691854, -0.01369445025920868, 0.02638826332986355, -0.005321251694113016, -0.01924084685742855, 0.028260886669158936, -0.00023117425735108554, 0.018497515469789505, -0.03702361881732941, -0.006400511600077152, -0.010642503388226032, 0.011993365362286568, 0.04214116930961609, -0.024687178432941437, -0.016582006588578224, -0.043799370527267456, 0.006450543645769358, -0.00934167392551899, -0.05512087792158127, -0.008069433271884918, -0.003618379822000861, -0.0069865998812019825, -0.02038443274796009, -0.015038165263831615, -0.18377438187599182, 0.03465067595243454, 0.018626168370246887, -0.009112956002354622, 0.013522912748157978, -0.017468286678195, 0.010742567479610443, -0.004756605718284845, -0.012064839713275433, -0.029990561306476593, 0.02488730475306511, 0.001074792817234993, -0.027317427098751068, -0.014137590304017067, -0.0029894071631133556, 0.006153925787657499, -0.011207149364054203, 0.001083727111108601, 0.03722374513745308, 0.020341549068689346, 0.030390815809369087, -0.025144612416625023, 0.0013597960351034999, 0.010356606915593147, 0.019512448459863663, -0.007604851387441158, -0.0008478623349219561, 0.02138507179915905, 0.02024148404598236, -0.031191326677799225, -0.016996556892991066, 0.00018181241466663778, 0.017768478021025658, 0.025430509820580482, 0.0037130829878151417, 0.0021245696116238832, 0.00388462096452713, 0.010799746960401535, -0.020227190107107162, 0.014609320089221, 0.008019401691854, 0.013051182962954044, 0.0005583919119089842, 0.02395814098417759, -0.005571411456912756, 0.016996556892991066, 0.013630123808979988, -0.00047932364395819604, 0.006454117596149445, 0.015795791521668434, 0.02374371886253357, -0.04042578861117363, 0.027503259479999542, 0.006443396210670471, 0.03713797777891159, 0.0037523938808590174, 0.0028357375413179398, -0.0007004468352533877, -0.00812661275267601, -0.001561710610985756, -0.023972436785697937, -0.00024211873824242502, 0.00034821321605704725, -0.009877730160951614, -0.004906701855361462, -0.013408553786575794, -0.014680794440209866, 0.027245953679084778, -0.006010977551341057, 0.0015965541824698448, 0.02680281363427639, -0.0005901086260564625, 0.0025623489636927843, 0.0014375242171809077, 0.039739638566970825, 0.01946956291794777, 0.015409830957651138, 0.01179323811084032, 0.013730187900364399, 0.003657690482214093, -0.03928220272064209, 0.06072445213794708, -0.0041133384220302105, -0.03093402087688446, 0.012779581360518932, 0.0003513402189128101, 0.00493529113009572, 0.011871859431266785, -0.02964748442173004, -0.04545757174491882, 0.01695367321372032, -0.010713977739214897, -0.01415188517421484, -0.013558649457991123, 0.0052497778087854385, 0.021199237555265427, -0.0043313344940543175, -0.017368223518133163, -0.025416214019060135, -0.015795791521668434, -0.0067971935495734215, 0.008669816888868809, -0.017782773822546005, 0.013615828938782215, 0.02830377034842968, 0.0028089347761124372, -0.007215317338705063, 0.021928275004029274, 0.043027449399232864, -0.0040454380214214325, 0.027789156883955002, -0.0004954053438268602, 0.021342186257243156, 0.002308615716174245, -0.00887709204107523, -0.000544543843716383, -0.03213478624820709, -0.017268158495426178, 0.0328209362924099, 0.010928399860858917, -0.014980985783040524, -0.030562354251742363, 0.016939377412199974, 0.03659477457404137, -0.02723165787756443, -0.022442888468503952, -0.05146140232682228, -0.008534016087651253, 0.013908873312175274, 0.029847612604498863, -0.01996988244354725, 0.019512448459863663, 0.005914487410336733, 0.03716656565666199, -0.007383281365036964, 0.025044549256563187, -0.0007259095436893404, -0.019298024475574493, -0.01368730328977108, 0.038681820034980774, 0.020984815433621407, 0.024930190294981003, -0.022614426910877228, -0.0035486924462020397, -0.005349841434508562, 0.05337690934538841, 0.006607786752283573, -0.03516529127955437, -0.0018368861638009548, -0.03130568563938141, 0.0003946714277844876, -0.013001151382923126, 0.02167096734046936, 0.015338356606662273, 0.012608042918145657, 0.015209702774882317, 0.03593721240758896, -0.016782134771347046, 0.0068507990799844265, 0.0007058074115775526, -0.00366305117495358, 0.010878368280827999, -0.010599618777632713, -0.005099681671708822, 0.00579298147931695, -0.04082604497671127, -0.0003017550043296069, 0.011378687806427479, -0.007804979104548693, 0.01098557934165001, -0.022042633965611458, -0.015038165263831615, -0.014709384180605412, 0.04442834109067917, -0.019126487895846367, -0.02067033015191555, -0.025187496095895767, -0.00541774183511734, -0.0031788137275725603, -0.017282454296946526, 0.00366305117495358, 0.03270658105611801, 0.02294320799410343, 0.02068462409079075, -0.00919872522354126, 0.014244801364839077, -0.008326740935444832, -0.018054375424981117, -0.027531849220395088, 0.022185582667589188, 0.02437269128859043, 0.009413148276507854, -0.02267160639166832, -0.016653481870889664, 0.008355330675840378, 0.02159949392080307, -0.029761843383312225, 0.022900324314832687, -0.003798851976171136, 0.06238265335559845, -0.03662336245179176, -0.0031895346473902464, -0.027703387662768364, -0.04654397815465927, 0.02595941722393036, -0.025644931942224503, 0.012522274628281593, -0.004202681127935648, 0.011478750966489315, -0.00990631990134716, 0.0036076586693525314, 0.0005700064939446747, -0.01875482127070427, 0.002689215587452054, -0.025644931942224503, -0.02038443274796009, -0.009012892842292786, -0.011628847569227219, 0.014316275715827942, -0.027002939954400063, -0.008569752797484398, -0.0067686038091778755, 0.012986856512725353, -0.003555839881300926, 0.009348820894956589, -0.0017269946401938796, 0.0032699431758373976, -0.03593721240758896, -0.08336746692657471, 0.016338994726538658, 0.005096108186990023, -0.007229612208902836, 0.011450162157416344, -0.01845462992787361, 0.02717447839677334, -0.011736058630049229, 0.0039346530102193356, -0.004395661409944296, -0.02574499510228634, 0.023929551243782043, 0.00039735171594657004, -0.01811155490577221, -0.020513085648417473, -0.02089904621243477, 0.03770977258682251, 0.0057143596932291985, 0.0071903010830283165, 0.008634079247713089, -0.0035147422458976507, 0.020698919892311096, 0.022328529506921768, 0.0016269307816401124, -0.03079107217490673, 0.01881200075149536, 0.0043456293642520905, 0.03170594200491905, -2.8896782168885693e-05, 0.02252865768969059, 0.0067149982787668705, -0.027217363938689232, -0.010199363343417645, 0.015624253079295158, -0.01882629655301571, 0.0006767710437998176, 0.01589585468173027, -0.011264328844845295, 0.02907569147646427, 0.01083548367023468, -0.0034825787879526615, -0.030276456847786903, 0.02117064781486988, 0.0160530973225832, -0.025144612416625023, 0.003160945139825344, -0.022442888468503952, 0.01641046814620495, 0.019140781834721565, 0.015438420698046684, 0.02723165787756443, 0.016982262954115868, -0.0012356096412986517, -0.01802578568458557, -0.005582132376730442, -0.03713797777891159, 0.030905431136488914, -0.000727696402464062, 0.0005141673027537763, 0.001566177699714899, 0.026288198307156563, -0.02667415887117386, 0.0356513150036335, -0.013108362443745136, -0.010442376136779785, -0.0181830283254385, -0.01773988828063011, -0.0027892794460058212, 0.010778304189443588, -0.014173327945172787, -0.014394897036254406, 0.003916784189641476, -0.007783536799252033, 0.019069308415055275, -0.0034468418452888727, 0.04076886549592018, -0.00625756336376071, 0.008148055523633957, -0.03230632469058037, 0.021470841020345688, 0.024629998952150345, -0.009391705505549908, -0.021585198119282722, -0.005846587009727955, 0.00507823983207345, -0.008112317882478237, -0.03716656565666199, -0.00531053077429533, -0.02281455509364605, 0.001561710610985756, -0.03227773308753967, 0.013487175107002258, 0.008333887904882431, 0.006936567835509777, 0.03116273693740368, 0.017196685075759888, -0.017654119059443474, -0.013908873312175274, 0.030619533732533455, 0.03173452988266945, 0.003084110328927636, 0.0029947676230221987, -0.00940600037574768, -0.023643655702471733, -0.0018547546351328492, 0.00497460225597024, -0.02538762427866459, -0.030333636328577995, 0.0018672626465559006, 0.03387875482439995, -0.002853606129065156, 0.0005159541615284979, -0.01618175208568573, 0.027560438960790634, -0.01689649373292923, 0.00224607577547431, 0.003287811763584614, 0.00483165355399251, -0.019583921879529953, 0.011021316982805729, 0.004434972070157528, -0.003984685055911541, 0.023343462496995926, -0.017697004601359367, 0.041455019265413284, 0.0028500324115157127, 0.010735420510172844, -0.0420554019510746, 0.004906701855361462, 0.006557754706591368, 0.006039567291736603, 0.005696491338312626, -0.016667775809764862, -0.023729423061013222, -0.010899811051785946, 0.004885259550064802, -0.00017622849554754794, 0.02045590616762638, -0.032334912568330765, 0.06730007380247116, 0.010320870205760002, -0.0037416727282106876, 0.004020421765744686, 0.008190939202904701, 0.015624253079295158, -0.0042884498834609985, 0.021628083661198616, 0.006300447974354029, -0.013108362443745136, -0.006554181221872568, -0.021285006776452065, -0.023414937779307365, -0.0010917679173871875, -0.016982262954115868, -0.011164264753460884, -0.005993109196424484, 0.05923778936266899, -0.0058787502348423, -0.005985961761325598, 0.030333636328577995, -0.02410108968615532, 0.02645973674952984, 0.018940653651952744, 0.0001121809400501661, -0.0024497772101312876, 0.015710022300481796, 0.0034522023051977158, -0.0246014092117548, -0.004545757081359625, 0.014116148464381695, 0.0068079144693911076, -0.004517167340964079, -0.02431551180779934, -0.007819274440407753, 0.006990173831582069, -0.02430121786892414, 0.022414298728108406, 0.004381366539746523, -0.004924570210278034, 0.013808809220790863, 0.02068462409079075, -0.03622310981154442, -0.007847863249480724, -0.007733505219221115, -0.00859119463711977, -0.016353290528059006, -0.009670455008745193, -0.03322119265794754], "3ede1386-094b-460e-b22d-c32b7e2e60b1": [-0.030699213966727257, 0.008612604811787605, 0.019335264340043068, -0.01736312173306942, -0.0047200387343764305, 0.0029461453668773174, 0.01838367059826851, -0.023748448118567467, -0.03875327482819557, -0.030119983479380608, -0.007447248790413141, 0.013522272929549217, 0.013687767088413239, 0.0004195542132947594, -0.003252999624237418, -0.011170873418450356, 0.013977382332086563, -0.01222589984536171, 0.018659494817256927, -0.018494000658392906, 0.0011998345144093037, 0.004127016756683588, -0.030368225648999214, -0.0310302022844553, -0.012743069790303707, 0.006399117410182953, 0.02909943461418152, -0.01756999082863331, 0.02614811807870865, -0.00014373016892932355, 0.032298993319272995, 0.01120535098016262, -0.003225417109206319, 0.0025444766506552696, 0.00395807484164834, -0.006316370330750942, 0.011956971138715744, 0.008667769841849804, 0.013618811033666134, 0.00297200377099216, 0.002034202218055725, -0.0013549855211749673, 0.012991311959922314, 0.02733416110277176, -0.007316232193261385, 0.011384636163711548, -0.016163287684321404, -0.0023462281096726656, -0.019031858071684837, 0.018700869753956795, 0.01186732854694128, 0.017514824867248535, -0.04200799763202667, 0.0032443800009787083, 0.009060819633305073, 0.01130878459662199, 0.0010731278453022242, 0.031830091029405594, -0.01580471731722355, -0.033347126096487045, 0.010639911517500877, 0.008895324543118477, -0.029016686603426933, 0.009412494488060474, -0.0038787752855569124, 0.0016032271087169647, -0.00793683622032404, 0.020300649106502533, 0.0054544201120734215, 0.023886360228061676, 0.023251965641975403, 0.03249207139015198, -0.005047579761594534, -0.001602365169674158, 0.02624465525150299, -0.025927457958459854, -0.012632740661501884, 0.01001930795609951, -0.001254137372598052, 0.012715487740933895, 0.006588746327906847, 0.019555922597646713, 0.011129499413073063, -0.00801958329975605, 0.006443938706070185, -0.016301199793815613, -0.015749551355838776, -0.0035857122857123613, -0.01631499081850052, -0.0016101227374747396, -0.0061750104650855064, 0.013701558113098145, 0.029485588893294334, 0.005426837597042322, 0.0016670114127919078, 0.008605709299445152, -0.022024547681212425, 0.0313887745141983, -0.0027875464875251055, -0.021541856229305267, -0.0024013929069042206, 0.0066818371415138245, -0.045455798506736755, -0.006040546111762524, -0.05455799028277397, -0.023582953959703445, 0.018218176439404488, -0.0028099571354687214, -0.012508619576692581, -0.021100537851452827, -0.029761413112282753, 0.03737415373325348, -0.017266584560275078, -0.059191834181547165, -0.027016963809728622, 0.014453179202973843, 0.024189766496419907, 0.002553096041083336, -0.004133912734687328, 0.012722383253276348, 0.024175975471735, -0.00275134458206594, 0.02268652617931366, -0.016094332560896873, -0.002403116784989834, -0.008640187792479992, 0.00888153351843357, -0.018397461622953415, -0.013115432113409042, -0.026768721640110016, 0.04153909906744957, 0.004016687162220478, 0.01820438541471958, -0.005288925487548113, -0.018838780000805855, 0.006288787815719843, 0.012039718218147755, -0.029899323359131813, -0.033043719828128815, 0.0033667769748717546, 0.016328781843185425, 0.01783202402293682, -0.0029857950285077095, -0.025279272347688675, -0.016439111903309822, 0.006426699925214052, 0.00405116518959403, 0.005988829303532839, -0.0011894911294803023, -0.013570542447268963, -0.01305337157100439, -0.015239276923239231, 0.005685422569513321, 0.02926492877304554, 0.017418287694454193, -0.0016704592853784561, 0.02285202033817768, 0.018728451803326607, -0.007757550571113825, -0.0009291821625083685, 0.019680043682456017, 0.019845537841320038, -0.00583367794752121, 0.002944421488791704, -0.014004964381456375, 0.016287408769130707, 0.007378292735666037, -0.004437319003045559, -0.0007727382471784949, -0.007074886001646519, -0.006147427950054407, 0.0171976275742054, 0.004164942540228367, 0.00704385619610548, -0.021045373752713203, 0.018163012340664864, 0.014232520014047623, -0.0013127499260008335, 0.0063577438704669476, 0.012736174277961254, -0.01252930611371994, -0.031995587050914764, 0.012653427198529243, 0.018425045534968376, 0.006406012922525406, -0.03593986853957176, 0.01366708055138588, -0.029375258833169937, -0.010384774766862392, -0.011598399840295315, 0.02563784271478653, 0.0474141500890255, -0.017790649086236954, 0.0046166046522557735, -0.5807750821113586, -0.007240380626171827, -0.011143290437757969, 0.018480209633708, 0.0014765204396098852, 0.024782788008451462, -0.010722658596932888, 0.015142738819122314, -0.014301476068794727, 0.02807888574898243, -0.018121639266610146, -0.0008158357231877744, -0.005485450383275747, -0.011501861736178398, -0.006381878163665533, -0.040877118706703186, 0.031857673078775406, -0.037622395902872086, 0.0015989174135029316, 0.015225485898554325, -0.02868569828569889, 0.00893669854849577, -0.009922768920660019, 0.005085505545139313, 0.017818231135606766, 0.004782098811119795, -0.021983174607157707, -0.01808026432991028, 0.029871741309762, 0.008909115567803383, 0.008247138001024723, 0.013405047357082367, 0.010570955462753773, 0.008164390921592712, 0.031885258853435516, -0.018425045534968376, -0.029871741309762, 0.010991587303578854, 0.016218451783061028, 0.044435251504182816, -0.004689008463174105, -0.019997240975499153, 0.01692180335521698, -0.0028185767587274313, -0.0017023513792082667, 0.0015549579402431846, 0.0059681423008441925, -0.0008356606122106314, 0.005264791194349527, 0.024672459810972214, -0.016521859914064407, -0.006123293191194534, -0.0002825041301548481, -0.02784443460404873, 0.019555922597646713, 0.019114604219794273, 0.03163701668381691, -0.019542131572961807, -0.00038076643249951303, -0.03251965343952179, -0.010770928114652634, -0.0019962764345109463, -0.026603227481245995, -0.0026237759739160538, -0.012081092223525047, 0.010591642931103706, -0.012281064875423908, 0.02020411007106304, -0.0016876982990652323, -0.021003998816013336, -0.004944145679473877, -0.010970900766551495, 0.0029616605024784803, -0.012998207472264767, 0.028768446296453476, 0.01675630919635296, 0.023279547691345215, 0.00048053715727292, -0.017707902938127518, 0.02410702034831047, -0.007950627245008945, -0.0052475519478321075, -0.007405875250697136, 0.0002865983988158405, 0.013453316874802113, 0.0035960557870566845, -0.008419528603553772, 0.01078471913933754, 0.020907461643218994, -0.013301613740622997, 0.01332919578999281, 0.026865260675549507, -0.006616328842937946, -0.0385877825319767, -0.01715625450015068, 0.014797958545386791, -0.007923045195639133, -0.0032478279899805784, -0.0009343538549728692, -3.889549770974554e-05, -0.045317888259887695, 0.017707902938127518, -0.0036753551103174686, -0.010046890005469322, 0.030671631917357445, -0.00018413408542983234, -0.01126051601022482, 0.002578954678028822, 0.011101917363703251, -0.012998207472264767, 0.002222107257694006, -0.007502413354814053, -0.006674941163510084, 0.010281340219080448, 0.022217625752091408, -0.034671079367399216, -0.004223555326461792, 0.0052406564354896545, 0.00915735773742199, 0.01841125451028347, 0.05055854469537735, -0.0028375396504998207, 0.03668459504842758, 0.02105916477739811, 0.013025789521634579, 0.010950213298201561, 0.004258033353835344, -0.003390911500900984, 0.00832298956811428, 0.0109846917912364, -0.018480209633708, 0.005788856651633978, 0.01654944196343422, -0.021334988996386528, 0.010874361731112003, -0.014535926282405853, 0.008778099901974201, -0.011639773845672607, 0.04275272414088249, 0.0033012686762958765, -0.013798097148537636, -0.018742242828011513, 0.026492897421121597, -0.03149910271167755, -0.0220797136425972, -0.014522135257720947, -0.009536615572869778, 0.007895463146269321, -0.016232244670391083, -0.01692180335521698, 0.012232795357704163, -0.00935733038932085, -0.012384498491883278, 0.029678665101528168, -0.020866086706519127, 0.01715625450015068, -0.014687629416584969, -0.003951179329305887, -0.008260929957032204, -0.029347676783800125, 0.004930354654788971, -0.022052131593227386, -0.03442283719778061, -0.01803889125585556, -0.02333471179008484, -0.016370154917240143, -0.0047131432220339775, 0.013432630337774754, -0.023141635581851006, -0.029320092871785164, -0.00832298956811428, -0.021279823035001755, 0.003589160041883588, 0.0059612467885017395, -0.00024285443942062557, -0.008757412433624268, -0.011363949626684189, -0.0013144739205017686, -0.0077299680560827255, -0.0046097091399133205, 0.0015058268327265978, -0.006402565166354179, -0.005292373243719339, 0.01015722006559372, 0.033043719828128815, 0.02245207503437996, 0.029237346723675728, 0.01780444011092186, -0.03676734119653702, 0.013370569795370102, -0.012508619576692581, 0.018163012340664864, -0.013784305192530155, 0.01729416660964489, 0.04018756002187729, 0.007909254170954227, 0.025789545848965645, -0.003142670029774308, -0.00606123311445117, 0.02489311806857586, 0.022603778168559074, 0.011950075626373291, -3.676755659398623e-05, -0.021859053522348404, 0.005885395221412182, -0.01959729753434658, 0.030947456136345863, -0.009536615572869778, 0.013591228984296322, -0.004671769216656685, -0.00888153351843357, -0.018163012340664864, -0.012232795357704163, -0.016121914610266685, 0.00738518824800849, -0.008074748329818249, -0.012956833466887474, 0.00384429725818336, 0.0023600193671882153, 0.015211694873869419, 0.022576196119189262, 0.017280375584959984, 0.01366708055138588, -0.0051165358163416386, -0.014660046435892582, -0.017487242817878723, 0.0013851537369191647, 0.004847607109695673, 0.0016704592853784561, -0.022934768348932266, -0.03194042295217514, -0.029816577211022377, 0.02020411007106304, 0.00704385619610548, 0.020493725314736366, -0.033347126096487045, 0.040435802191495895, -0.004895876627415419, 0.010233071632683277, 0.007640325464308262, 0.015239276923239231, 0.008743621408939362, -0.006033650599420071, -0.0053440905176103115, -0.005561301950365305, 0.0012127637164667249, 0.04258722811937332, 0.04107019677758217, -0.02394152618944645, 0.002230726880952716, -0.015473728068172932, -0.006999034434556961, -0.009005654603242874, 0.011929389089345932, 0.0027306578122079372, -0.025982623919844627, -0.001364466967061162, 0.03469866141676903, 0.03072679601609707, 0.016259826719760895, 0.02108674682676792, 0.028120258823037148, 0.004899324383586645, -0.012625845149159431, 0.010453730821609497, -0.04255964607000351, 0.0012196593452244997, -0.017997518181800842, -0.008488484658300877, -0.005426837597042322, -0.026796303689479828, -0.012101778760552406, 0.0026272237300872803, -0.03825679048895836, -0.003423665650188923, 0.00937801692634821, 0.01441180519759655, 0.023307129740715027, 0.026092952117323875, 0.03017514757812023, 0.004261481110006571, -0.011570817790925503, 0.02536201849579811, 0.008060957305133343, 0.02034202218055725, -0.0001145316127804108, -0.013405047357082367, -0.020162736997008324, -0.02187284454703331, 0.025541305541992188, 0.004282168112695217, 7.568998989881948e-05, -0.012729278765618801, 0.0027892703656107187, -0.0024565577041357756, -0.006633567623794079, 0.033622950315475464, 0.0012524134945124388, -0.015818508341908455, -0.04953799396753311, 0.013680871576070786, -0.00606123311445117, -0.01352916844189167, -0.007536891382187605, 0.041015032678842545, 0.009550406597554684, -0.014480761252343655, -0.03116811439394951, -0.0009705557604320347, -0.02054888941347599, 0.0195283405482769, -0.03536063805222511, 0.0034443524200469255, -0.006730106193572283, 0.01668735407292843, 0.012784443795681, 0.02475520595908165, 0.010184802114963531, 0.010812302120029926, 0.016190869733691216, -0.01108812540769577, -0.0018376775551587343, -0.01012274157255888, -0.005302716977894306, 0.0009283202234655619, 0.029044270515441895, 0.00407874770462513, -0.0069817956537008286, -0.03337470814585686, -0.003899462055414915, -0.013094745576381683, 0.008550545200705528, 0.002506550867110491, -0.007529995869845152, 0.013239553198218346, 0.004268376622349024, 0.005799199920147657, -0.00915735773742199, 0.004502827301621437, -0.0007904082303866744, 0.0018859467236325145, -0.03218866512179375, 0.02119707688689232, 0.010508894920349121, 0.036877673119306564, 0.0040132394060492516, 0.01587367244064808, 0.018300924450159073, -0.006654254626482725, 0.010171011090278625, 0.015059991739690304, 0.02621707320213318, 0.00418907729908824, -0.016728727146983147, -0.00704385619610548, 0.002182457596063614, 0.023003723472356796, 0.04040822014212608, -0.018631912767887115, -0.0069886911660432816, -0.013294718228280544, 0.042807888239622116, -0.0038339539896696806, 0.005406151060014963, -0.010329609736800194, -0.0019997241906821728, 0.000792563077993691, 0.0022962349466979504, 0.02292097732424736, -0.029899323359131813, 0.0030392359476536512, -0.0019014618592336774, -0.020948834717273712, -0.024134602397680283, 0.04062888026237488, -0.013522272929549217, -0.03709832951426506, -0.015115156769752502, 0.02059026248753071, 0.00033185078063979745, -0.010881258174777031, -0.03136119246482849, 0.046917665749788284, 0.00898496713489294, 0.00034801234141923487, -0.01831471547484398, 0.026603227481245995, -0.008364363573491573, 0.003533995244652033, -0.02105916477739811, -0.028271961957216263, 0.008033374324440956, -0.03560888022184372, -0.015584057196974754, -0.010695076547563076, -0.019238725304603577, -0.034808993339538574, -0.013798097148537636, 0.008371259085834026, 0.02401048131287098, 0.019031858071684837, -0.005826782435178757, -0.007661012466996908, 0.0015247897244989872, -0.017252793535590172, -0.00781961064785719, -0.027747897431254387, -0.026506688445806503, 0.008778099901974201, -0.015984002500772476, 0.010674390010535717, -0.02303130552172661, -0.02821679785847664, 0.012591366656124592, -0.001953178783878684, -0.004292511381208897, 0.009419390000402927, 0.00837815459817648, 0.004692456219345331, -0.0003204299428034574, -0.026354985311627388, 0.012191422283649445, 0.029651083052158356, -0.012556889094412327, -0.00026871293084695935, -0.013598124496638775, -0.019776582717895508, 0.0015325472922995687, -0.020797131583094597, 0.0018376775551587343, 0.015390980988740921, -0.0005611294764094055, 0.0244104266166687, 0.0060577853582799435, 0.01671493612229824, -0.016797682270407677, 0.002704799408093095, -0.01908702217042446, 0.011453592218458652, 0.011488070711493492, 0.013729141093790531, 0.0077161770313978195, -0.009109088219702244, -0.015087573789060116, 0.010722658596932888, -0.021859053522348404, 0.037898220121860504, 0.002261756919324398, -0.012998207472264767, -0.01813543029129505, 0.018535373732447624, -0.016011584550142288, -0.02438284456729889, 0.021555647253990173, -0.00627499632537365, 0.003930492326617241, 0.010295131243765354, -0.009481450542807579, -0.048407115042209625, 0.009557302109897137, 0.014232520014047623, 0.021210867911577225, -0.025306854397058487, -0.023389877751469612, -0.007998896762728691, -0.01256378460675478, 0.009633153676986694, -0.001163632608950138, 0.04551096260547638, -0.033898770809173584, -0.012653427198529243, -0.0030961246229708195, -0.012184525839984417, 0.009247000329196453, 0.03227141126990318, -0.00507861003279686, -0.05119293928146362, -0.02275548130273819, -0.015473728068172932, 0.005861260462552309, 0.00912287924438715, 0.004199420567601919, 0.01064680702984333, 0.01705971546471119, 0.04200799763202667, 0.00915735773742199, -0.0032236932311207056, 0.0061888014897704124, 0.022424492985010147, 0.010501999408006668, 0.009943456389009953, 0.004613156896084547, -0.031692180782556534, 0.008095434866845608, 0.015115156769752502, 0.004754516761749983, 0.015570266172289848, -0.016535650938749313, 0.004099434707313776, 0.03640877082943916, -0.007364501245319843, 0.013260239735245705, -0.029513170942664146, -0.04586953669786453, 0.02194180153310299, 0.008398841135203838, 0.004964832216501236, -0.000472779618576169, -0.027223831042647362, -0.008619500324130058, 0.004571783356368542, 0.010619224980473518, 0.018066473305225372, -0.0029478692449629307, -0.005230313166975975, -0.036712177097797394, 0.007847193628549576, 0.006899048574268818, 0.00727485865354538, -0.017335539683699608, 0.006109502166509628, -0.04636601731181145, -0.003954627085477114, 0.006609433330595493, -0.006936974357813597, 0.01973520964384079, -0.002959936624392867, 0.005485450383275747, -0.022796856239438057, -0.014949661679565907, -0.01610812358558178, -0.031857673078775406, 0.0018066474003717303, -0.008212660439312458, -0.0337056964635849, -0.014480761252343655, 0.003465039189904928, -0.00757826492190361, 0.01641152985394001, 0.02926492877304554, -0.00879878643900156, 0.014315267093479633, -0.022934768348932266, -0.0036270858254283667, 0.018218176439404488, -0.0019393876427784562, 0.03847745060920715, 0.0037236243952065706, 0.012936146929860115, 0.04451799765229225, -0.00783340260386467, 0.0015041028382256627, -0.050779201090335846, -0.004461453761905432, 0.013246448710560799, 0.026713557541370392, 0.04170459136366844, -0.02743070013821125, -0.024865536019206047, -0.008771204389631748, -0.001187767251394689, -0.008812577463686466, -0.012046614661812782, 0.03547096997499466, 0.022258998826146126, -0.0013722245348617435, -0.01875603385269642, 0.003361605340614915, -0.036601848900318146, 0.0031771480571478605, 0.0037132808938622475, 0.008640187792479992, 0.016232244670391083, -0.014604882337152958, -0.01620466075837612, -0.002628947841003537, 0.030837126076221466, 0.01810784637928009, 0.002944421488791704, -0.0025341331493109465, -0.00891601201146841, -0.005175148136913776, -0.036132946610450745, -0.0005688870442099869, -0.007909254170954227, 0.041152942925691605, -0.017349330708384514, -0.006354296114295721, 0.01980416476726532, 0.002561715664342046, 0.010922631248831749, -0.018949110060930252, -0.018328506499528885, 0.05088953301310539, -0.026189491152763367, -0.00318749132566154, -0.024493172764778137, -0.026423942297697067, 0.024051854386925697, -0.021514274179935455, -0.006768031977117062, 0.0011739759938791394, -0.01803889125585556, -0.007867880165576935, 0.03194042295217514, 0.01692180335521698, 0.0017687215004116297, -0.0021738382056355476, -0.0010731278453022242, -0.009446972981095314, -0.015556475147604942, 0.017928561195731163, 0.02238311991095543, -0.03809129819273949, -0.011281202547252178, -0.018507791683077812, -0.019252516329288483, 0.01739070564508438, 0.00329782092012465, 0.005588884465396404, 0.009026341140270233, 0.03072679601609707, -0.04032547399401665, 0.0033891876228153706, -0.0037443111650645733, -0.0033254034351557493, -0.014398014172911644, -0.021693559363484383, -0.031554266810417175, 0.010453730821609497, 0.024162184447050095, 0.005581988487392664, -0.011922493577003479, -0.039084263145923615, 0.0011808716226369143, 0.017776858061552048, 0.013763618655502796, 0.05665425583720207, 0.009957247413694859, 0.01752861589193344, -0.0034977933391928673, 0.03014756552875042, -0.01354985497891903, -0.016025375574827194, 0.004292511381208897, 0.0042338985949754715, 0.0011834574397653341, -0.02898910455405712, 0.02014894410967827, -0.019390428438782692, 0.009667632170021534, -0.0012868914054706693, -0.017349330708384514, -0.007543786894530058, -0.012046614661812782, 0.0037994759622961283, -0.025141360238194466, -0.006337056867778301, -0.028740864247083664, -0.026272239163517952, -0.030975038185715675, 0.005478554870933294, 0.008991863578557968, -0.020976416766643524, 0.009915873408317566, 0.04666942358016968, 0.007267963141202927, 0.001541166682727635, -0.011363949626684189, -0.029016686603426933, 0.0058647082187235355, -0.013639497570693493, -0.0014584194868803024, -0.023913942277431488, -0.008426424115896225, 0.02956833504140377, 0.015542684122920036, -0.03500206768512726, -0.01349468994885683, -0.0007985967677086592, -0.03105778433382511, -0.0011731140548363328, -0.016080541536211967, 0.01857674866914749, 0.013156806118786335, 0.004957936704158783, -0.002878913190215826, 0.012936146929860115, -0.0021479795686900616, -0.005313060246407986, -0.006240518763661385, 0.00285650254227221, -0.03000965341925621, -0.002691008150577545, 0.015184112824499607, -0.007764446083456278, -0.013011998496949673, 0.0011231208918616176, 0.016452902927994728, -0.008212660439312458, -0.008950489573180676, 0.04029788821935654, 0.005761274136602879, -0.019004276022315025, -0.017170045524835587, 0.003478830447420478, -0.00832298956811428, -0.017032133415341377, -0.020797131583094597, -0.03177492693066597, 0.0016583919059485197, 0.02241070196032524, -0.008329885080456734, -0.023458832874894142, 0.021679768338799477, 0.01692180335521698, -0.007654116488993168, 0.003920149058103561, -0.02601020596921444, -0.037043165415525436, 0.007978210225701332, -0.012943042442202568, 0.005385464057326317, -0.0005469073075801134, -0.03381602466106415, 0.010729554109275341, 0.0036029512993991375, 0.02064542844891548, -0.015997793525457382, 0.023693284019827843, 0.011908702552318573, 0.013218866661190987, 0.023555371910333633, -0.006123293191194534, 0.004413184244185686, 0.015956420451402664, 0.02156943827867508, -0.017004551365971565, 0.020659219473600388, 0.012487933039665222, -0.032161083072423935, -0.03737415373325348, 0.020190319046378136, 0.02163839526474476, -0.05177216976881027, 0.004561439622193575, -0.01349468994885683, -0.01685284823179245, 0.0008326437673531473, -0.04167700931429863, 0.021831471472978592, -0.027444491162896156, -0.003982209134846926, -0.01026065368205309, 0.004782098811119795, -0.006526685785502195, 0.021376362070441246, -0.0008912563789635897, -0.0313887745141983, -0.00901944562792778, 0.26214316487312317, -0.03886360675096512, -0.00027172977570444345, 0.0125499926507473, 0.007529995869845152, 0.01945938542485237, -0.008660874329507351, 0.0030650945845991373, -0.0038615362718701363, -0.005309612490236759, 0.015363398008048534, -0.0027565164491534233, -0.010584746487438679, -0.015253068879246712, 0.018521582707762718, -0.007440353278070688, -0.023045096546411514, -0.011253620497882366, 0.00824024248868227, 0.007150738034397364, 0.014004964381456375, 0.023417459800839424, -0.005416494328528643, -0.0013549855211749673, 0.011722520925104618, 0.005057923030108213, -0.025086194276809692, 0.0009929664665833116, 0.018893945962190628, 0.01763894595205784, -0.027789270505309105, -0.0006059508887119591, -0.004171838518232107, -0.007267963141202927, -0.01722520962357521, -0.007626534439623356, 0.03977382555603981, -0.01232933346182108, 0.01613570563495159, 0.010605433955788612, 0.002792718354612589, 0.013301613740622997, -0.004247690085321665, 0.0059750378131866455, -0.01664597913622856, 0.016935594379901886, -0.0022962349466979504, 0.0036098468117415905, 0.00043593125883489847, 0.0067025236785411835, -0.028933940455317497, -0.020838504657149315, 0.04512481018900871, 0.018466418609023094, 0.01432905811816454, -0.019445594400167465, 0.010357191786170006, -0.00832298956811428, 0.028161633759737015, 0.041456349194049835, -0.006730106193572283, 0.0310302022844553, -0.013439525850117207, 0.005223417654633522, -0.023210592567920685, -0.02027306519448757, -0.02814784087240696, -0.008309198543429375, -0.00197903742082417, -0.004385602194815874, -0.013536063954234123, -0.013536063954234123, -0.01905944012105465, 0.005471658892929554, -0.04504206404089928, -0.027899600565433502, 0.048876017332077026, 0.003654668340459466, 0.01427389308810234, 0.03839470446109772, 0.007571369409561157, -0.009591780602931976, -0.017776858061552048, 0.005385464057326317, -0.02658943645656109, -0.0313887745141983, 0.001913529122248292, -0.0010576127097010612, -0.02047993429005146, 0.002175562083721161, -0.006768031977117062, 0.00096107431454584, -0.008419528603553772, -0.001673045102506876, 0.003616742556914687, -0.0014463522238656878, 0.01332919578999281, 0.020866086706519127, -0.034671079367399216, -0.031223280355334282, -0.01661839708685875, 0.02424493245780468, 0.019031858071684837, 0.02505861222743988, -3.6794492189073935e-05, -0.014577299356460571, 0.004444214515388012, 0.024562129750847816, 0.0010033098515123129, -0.015142738819122314, 0.029651083052158356, -0.07656875252723694, 0.004799338057637215, 0.0005861260578967631, -0.012501724064350128, 0.003933940082788467, -0.0031530132982879877, -0.015570266172289848, 0.006426699925214052, 0.003727072151377797, 0.014660046435892582, -0.014894497580826283, 0.0030909529887139797, -0.007757550571113825, -0.0007718763081356883, -0.018742242828011513, -0.02352778986096382, -0.004923458676785231, 0.0027099710423499346, -0.014122189953923225, 0.028933940455317497, -0.033788442611694336, -0.0031788719352334738, -0.000897290010470897, -0.0075920564122498035, 0.001498931203968823, -0.02492070011794567, -0.015501310117542744, 0.023183008655905724, 0.010605433955788612, -0.02489311806857586, 0.011970763094723225, 0.02129361405968666, -0.008343677036464214, 0.01015722006559372, -0.011777685955166817, -0.010957109741866589, 0.02503103017807007, 0.01427389308810234, 0.009646945632994175, -0.025968831032514572, 0.007392083760350943, -0.0016101227374747396, 0.002435870934277773, 0.01945938542485237, 0.0043304371647536755, -0.014218728058040142, -0.04302854835987091, 0.009702109731733799, -0.003047855570912361, -0.03359536454081535, -0.0022186595015227795, 0.018094055354595184, -0.013977382332086563, -0.00023380396305583417, -0.02909943461418152, -0.17465177178382874, 0.015611640177667141, 0.03491932153701782, -0.020535098388791084, 0.021403944119811058, -0.012391394004225731, 0.018287133425474167, -0.008260929957032204, -0.03831195831298828, -0.008591918274760246, 0.012639636173844337, -0.007433457300066948, 0.009488346055150032, -0.02489311806857586, -0.03147152066230774, 0.014866914600133896, -0.022603778168559074, 0.006140532437711954, 0.03685009106993675, 0.007330023217946291, 0.046035028994083405, -0.03632602468132973, -0.0009843469597399235, 0.031554266810417175, 0.008129913359880447, -0.0024703489616513252, 0.015473728068172932, 0.01722520962357521, 0.007426561787724495, -0.04079437255859375, -0.002134188311174512, 0.011839746497571468, 0.032574817538261414, -0.004395945463329554, -0.004871741868555546, 0.014342849142849445, 0.004030478652566671, -0.0069817956537008286, -0.026837676763534546, 0.007281754165887833, 0.02275548130273819, 0.03883602097630501, -0.02926492877304554, 0.02943042293190956, -0.02254861406981945, 0.013232657685875893, 0.020893670618534088, -0.017101090401411057, -0.01808026432991028, 0.005378568544983864, 0.01641152985394001, -0.03251965343952179, -0.007081781979650259, 0.006992138922214508, 0.039966899901628494, 0.0006727520376443863, 0.0011843193788081408, -0.021307405084371567, -0.01537718903273344, -0.008516066707670689, -0.012722383253276348, -0.0028685699217021465, 0.028906358405947685, 0.013094745576381683, -0.009722797200083733, -0.004702799487859011, -0.005223417654633522, 0.038670528680086136, -0.006895600818097591, 0.0018790512112900615, 0.00043981001363135874, -0.0219693835824728, -0.009467659518122673, 0.005971590057015419, 0.01750103384256363, 0.02573438175022602, 0.020810922607779503, -0.011612191796302795, 0.02282443828880787, -0.009612467139959335, -0.006009515840560198, 0.03963591158390045, 0.000992104527540505, -0.013542959466576576, -0.014246311038732529, 0.008929803036153316, 0.004992414731532335, 0.009474555030465126, -0.026699764654040337, -0.03872569277882576, 0.03251965343952179, -0.014866914600133896, 0.008343677036464214, -0.01780444011092186, 0.008281616494059563, 0.0052337609231472015, -0.014218728058040142, -0.004516618326306343, -0.02394152618944645, -0.008564336225390434, -0.022700317203998566, 0.020328231155872345, -0.02156943827867508, 0.014908288605511189, 0.032133497297763824, -0.003616742556914687, -0.013384360820055008, 0.03351261839270592, 0.024837953969836235, -0.01264653168618679, 0.0110398568212986, -0.011212246492505074, -0.0020135154481977224, 0.018452627584338188, 0.002997862407937646, 0.018094055354595184, -0.023679492995142937, -0.0019100813660770655, 0.018466418609023094, 0.0160391665995121, -0.015749551355838776, -0.021459108218550682, 0.01929389126598835, 0.006912839598953724, -0.008026478812098503, -0.013742932118475437, -0.04837953299283981, -0.013315404765307903, 0.01026065368205309, 0.027389325201511383, 0.021762516349554062, 0.02359674498438835, -0.005402703303843737, 0.04424217343330383, -0.025858502835035324, 0.03707074746489525, -0.02424493245780468, -0.02794097363948822, -0.003451248165220022, 0.02614811807870865, -0.007261067628860474, 0.014315267093479633, 0.009081506170332432, 0.017914770171046257, -0.004995862487703562, 0.04581436887383461, 0.003899462055414915, -0.023417459800839424, 0.002808233257383108, -0.01745966076850891, -6.0282633057795465e-05, 0.007764446083456278, -0.0008735863957554102, 0.022203834727406502, -0.0038546407595276833, 0.0031857674475759268, 0.042201075702905655, -0.0022514136508107185, -0.00341159850358963, -0.02064542844891548, 0.006964556407183409, 0.0027720313519239426, 0.00031827506609261036, -0.021238449960947037, -0.004982071463018656, -0.008005792275071144, 0.008398841135203838, 0.009840021841228008, 0.006150875706225634, 0.002927182475104928, -0.019693834707140923, -0.010233071632683277, -0.01377051416784525, 0.04198041558265686, -0.015004826709628105, 0.012460350058972836, -0.04460074380040169, 0.002918562851846218, -0.021790098398923874, 0.010722658596932888, 0.011729416437447071, 0.01908702217042446, 0.015115156769752502, -0.00693352660164237, 0.0012687905691564083, 0.015501310117542744, -0.04848986491560936, 0.0149910356849432, -0.02594124898314476, 0.029044270515441895, 0.02800992876291275, 0.008943594060838223, -0.031581852585077286, -0.026134327054023743, 0.02143152616918087, -0.014742794446647167, -0.029899323359131813, 0.030037235468626022, 0.0077161770313978195, 0.0620604045689106, -0.030975038185715675, 0.0033029927872121334, -0.03685009106993675, -0.02543097548186779, 0.02733416110277176, -0.005075162276625633, -0.0021462556906044483, -0.001842849305830896, 0.0007684284937568009, -0.02658943645656109, 0.014453179202973843, 0.015225485898554325, -0.0012618949403986335, 0.0019342160085216165, -0.014135980978608131, -0.03136119246482849, -0.013460212387144566, 0.018494000658392906, 0.008840159513056278, -0.017928561195731163, -0.003252999624237418, -0.016452902927994728, -0.00857812725007534, -0.00010822860349435359, 0.006471521221101284, 0.011246724985539913, -0.039856571704149246, -0.020052406936883926, -0.05908150598406792, 0.02224520780146122, -0.015487519092857838, 0.015115156769752502, 0.002609984716400504, 0.010846779681742191, 0.037898220121860504, 0.003390911500900984, -0.008385050110518932, -0.0313887745141983, -0.036712177097797394, 0.032436903566122055, -0.0015041028382256627, -0.03522272780537605, -0.030395807698369026, -0.010336505249142647, 0.01244655903428793, 0.004437319003045559, 0.004261481110006571, 0.012081092223525047, 0.0048441593535244465, 0.025913666933774948, 0.035829540342092514, -0.009846917353570461, -0.019004276022315025, 0.019928285852074623, -0.016811475157737732, 0.020976416766643524, -0.006550820544362068, -0.008295407518744469, -0.0028358157724142075, -0.023417459800839424, -0.004982071463018656, 0.03058888390660286, -0.004685560707002878, -0.009240104816854, 0.0024565577041357756, 0.0020617845002561808, 0.03238173946738243, 0.015418563038110733, -0.017266584560275078, -0.015432354062795639, 0.007895463146269321, -0.018480209633708, 0.015087573789060116, 0.021955592557787895, -0.021003998816013336, 0.010695076547563076, -0.0010033098515123129, 0.014866914600133896, 0.036877673119306564, 0.007309336680918932, -0.003284029895439744, -0.02896152250468731, 0.013398151844739914, -0.030478553846478462, -0.0034357330296188593, -0.0015566818183287978, -0.007888566702604294, 0.004182181786745787, 0.03149910271167755, -0.042780306190252304, 0.03326437622308731, -0.018397461622953415, -0.006099158897995949, -0.014315267093479633, 0.00857812725007534, 0.009957247413694859, 0.010970900766551495, -0.0017756171291694045, -0.0047131432220339775, -0.014963453635573387, 0.006492207758128643, 0.032905805855989456, 0.013791201636195183, 0.046338435262441635, -0.00738518824800849, 0.0031668045558035374, -0.013377465307712555, 0.0036753551103174686, 0.029788995161652565, 0.00473038200289011, -0.0209212526679039, 0.004037374164909124, 0.02059026248753071, 0.009067715145647526, -0.024975866079330444, 0.0029375257436186075, -0.01363260205835104, -0.0063922218978405, -0.005526823922991753, 0.005471658892929554, 0.006533581763505936, -0.013453316874802113, 0.031857673078775406, 0.04358019679784775, 0.01678389124572277, -0.03075437806546688, 0.020300649106502533, 0.0029306302312761545, 0.010108950547873974, 0.006523238029330969, -0.018893945962190628, -0.02682388573884964, -0.005437180865556002, -0.008950489573180676, -0.006109502166509628, -0.03693283721804619, 0.01569438725709915, 0.03665701299905777, -0.005250999704003334, 0.006605985574424267, -0.028409874066710472, 0.023376086726784706, -0.007392083760350943, 0.0231278445571661, -0.015280650928616524, -0.02587229385972023, -0.021472901105880737, 0.018976692110300064, 0.015087573789060116, -0.02254861406981945, 0.02865811623632908, -0.0025289615150541067, 0.03133361041545868, 0.005092401057481766, 0.014080816879868507, -0.04049096629023552, 0.016742518171668053, 0.015197903849184513, -0.007295545656234026, -0.005775065626949072, 0.008929803036153316, -0.010922631248831749, -0.006788718979805708, -0.023486414924263954, -0.0064680734649300575, 0.0069817956537008286, -0.01190180703997612, 0.06167425215244293, 0.007150738034397364, -0.009957247413694859, -0.016149496659636497, -0.0024806922301650047, 0.014591091312468052, 0.0012636188184842467, 0.01631499081850052, 0.004075299948453903, -0.02621707320213318, -0.008591918274760246, -0.0012817197712138295, -0.003599503543227911, -0.029485588893294334, 0.006199144758284092, -0.006557716056704521, -0.01868707686662674, 0.05072403699159622, -0.016466693952679634, 0.008784995414316654, 0.03787063807249069, -0.009522824548184872, 0.0039994483813643456, 0.004999310243874788, -0.0008231623214669526, -0.016908012330532074, 0.014922079630196095, -0.006075024139136076, -0.006333609111607075, -0.008626396767795086, -0.0015747827710583806, 0.029816577211022377, -0.01943180337548256, -0.01763894595205784, -0.015846090391278267, 0.006947317626327276, -0.00022259860998019576, 0.027251413092017174, 0.002753068460151553, -0.021417735144495964, -0.010508894920349121, 0.03000965341925621, -0.013825679197907448, -0.03359536454081535, -0.00704385619610548, 0.017045924440026283, -0.021003998816013336, -0.014011860825121403, -0.0332367941737175], "f8e78a3b-853d-4dd6-96a8-8c757663e864": [-0.02525181695818901, -0.01480184867978096, 0.026834318414330482, -0.012400811538100243, -0.004525818396359682, 0.0003393511287868023, -0.004802074283361435, -0.017707649618387222, -0.001566301565617323, -0.017748575657606125, 0.008676474913954735, 0.027475504204630852, -0.020245108753442764, 0.005514882039278746, -0.011745982803404331, -0.009379051625728607, 0.0064016287215054035, -0.010893342085182667, 0.022646145895123482, -0.02424228936433792, 0.0009694528416730464, 0.026547830551862717, -0.003601555712521076, -0.035633575171232224, -0.02234601601958275, 0.017475729808211327, 0.007005298510193825, -0.024269575253129005, -0.007844297215342522, -0.004802074283361435, 0.021363774314522743, 0.01241445355117321, -0.009078921750187874, -0.033669088035821915, 0.00537163857370615, 0.007516883313655853, 0.018294265493750572, 0.0046451883390545845, -0.0007030025590211153, -0.004795253276824951, 0.0238330215215683, 0.01055910624563694, -0.008574157953262329, 0.006616494618356228, -0.02222323603928089, 0.01488370168954134, -0.0363975390791893, -0.003526523243635893, -0.006902982015162706, 0.017653079703450203, 0.014788205735385418, 0.00419158348813653, -0.023792095482349396, -0.005603556986898184, -0.005286374595016241, 0.01660262607038021, -0.030531371012330055, 0.012885111384093761, -0.0016106389230117202, -0.01390145905315876, 0.016002366319298744, -0.004491712898015976, -0.00717582693323493, -0.005228394642472267, -0.002343057654798031, -0.004116551019251347, -0.014569929800927639, 0.026179490610957146, -0.024787981063127518, 0.0176121536642313, 0.014269799925386906, 0.01643892005085945, 0.004563334863632917, -0.015524888411164284, 0.025019899010658264, -0.004017644561827183, -0.031186198815703392, -0.013580866158008575, -0.014392580837011337, 0.0036834091879427433, -0.008417272008955479, -0.005709284450858831, 0.006715400610119104, -0.015388465486466885, 0.012223461642861366, -0.0012388874311000109, 0.0009796845261007547, 0.015606741420924664, 0.0205861646682024, -0.010975195094943047, 0.011418568901717663, 0.008840181864798069, 0.015838660299777985, 0.020654376596212387, -0.010572749190032482, 0.022987201809883118, 2.909637441916857e-05, 0.01983584091067314, 0.006517588160932064, -0.03263227641582489, -0.024392355233430862, 0.01703917793929577, -0.013151135295629501, -0.009283555671572685, -0.04493759199976921, -0.01596144028007984, 0.03088606894016266, -0.022114098072052002, -0.001172381453216076, 0.007701053749769926, -0.012025648728013039, 0.03740706667304039, -0.0265751164406538, -0.05735204741358757, -0.01841704547405243, 0.006432324182242155, 0.03214115649461746, -0.041417889297008514, -0.020668018609285355, -0.0006991656264290214, 0.0010973489843308926, -0.007066688966006041, 0.014829132705926895, -0.004781610798090696, 0.007619200274348259, 0.008594621904194355, -0.005780906416475773, -0.00994520541280508, 0.005259090103209019, -0.038225602358579636, 0.032277580350637436, 0.01225756760686636, 0.006115141324698925, 0.014624498784542084, -0.024978971108794212, -0.003359405789524317, 0.0032246883492916822, 0.0018246518447995186, -0.015088335610926151, 0.00014207130880095065, 0.006749506574124098, 0.00434846943244338, 0.017789501696825027, -0.025797506794333458, 0.01113890204578638, 0.020940864458680153, 0.005381870083510876, 0.011329893954098225, -0.011643665842711926, 0.015947798267006874, 0.005719515960663557, -0.028294039890170097, -0.015620383433997631, -0.005156773142516613, 0.023491965606808662, 0.015715880319476128, 0.014419864863157272, 0.010941090062260628, -0.0026431872975081205, 0.012775973416864872, 0.02425593137741089, 0.01984948292374611, -0.0010478958720341325, 0.0011067281011492014, 0.010872878134250641, 0.020190538838505745, 0.018594395369291306, 0.006476661190390587, -0.013164777308702469, -0.004617903847247362, 0.003084855154156685, 0.023846663534641266, -0.024324143305420876, 0.01957663893699646, -0.015006482601165771, 0.0019372004317119718, 0.005136309657245874, 0.0033696372993290424, -0.01803506352007389, -0.002670471789315343, -0.009638254530727863, 0.005647893995046616, -0.007789728697389364, 0.01586594432592392, 0.006439145188778639, -0.030122103169560432, 0.004276847466826439, -0.019985904917120934, -0.00695072952657938, -0.003656124696135521, 0.030285809189081192, 0.03470589965581894, 0.012093860656023026, 0.008717401884496212, -0.6155385971069336, -0.029903827235102654, 0.012796436436474323, 0.006943908520042896, -0.0013463201466947794, 0.009454083628952503, -0.016725406050682068, 0.004495123401284218, -0.036370255053043365, 0.023682957515120506, -0.009010710753500462, 0.013690004125237465, -0.021841252222657204, -0.005429618060588837, 0.007994362153112888, -0.041254185140132904, 0.01931743510067463, -0.033832795917987823, -0.009106206707656384, 0.02365567348897457, -0.033832795917987823, 0.00655169365927577, -0.02499261312186718, 0.01570223644375801, 0.005167004652321339, 0.007919330149888992, 0.002823946997523308, -0.0003613066510297358, 0.03055865503847599, 0.022905347868800163, -0.023478323593735695, 0.0022850779350847006, 0.037598058581352234, -0.020872652530670166, 0.0417180210351944, -0.014297084882855415, -0.024419639259576797, 0.024842549115419388, 0.02255064994096756, 0.04987609013915062, -0.00690980302169919, -0.014406222850084305, 0.010415863245725632, 0.039289698004722595, 0.0022867831867188215, -0.003901685355231166, 0.005695641972124577, -0.011554990895092487, 0.002409563632681966, 0.015074693597853184, 0.00877879187464714, 0.0016191652975976467, -0.011084333062171936, -0.01856711134314537, 0.027339082211256027, 0.018294265493750572, 0.01703917793929577, -0.02658875845372677, 0.0065789781510829926, -0.019808556884527206, -0.010156660340726376, -0.002146950224414468, -0.01693003997206688, -0.019590280950069427, -0.032277580350637436, 0.03394193574786186, 0.0010248745093122125, -0.011179829016327858, -0.010777383111417294, -0.021077286452054977, 0.009085742756724358, -0.021090928465127945, -0.014747279696166515, -0.022100456058979034, 0.030313093215227127, 0.036588530987501144, -0.00523862661793828, -0.007278143893927336, 0.00370046216994524, 0.013874175027012825, -0.0034804807510226965, -0.005681999959051609, -0.010258977301418781, -0.024105867370963097, 0.004150656517595053, 0.00028030574321746826, -0.014597214758396149, -0.006387986708432436, 0.00023404996318276972, 0.012407632544636726, -0.00782383419573307, 0.03197744861245155, -0.0022663199342787266, -0.038389310240745544, -0.011268503963947296, 0.013778679072856903, -0.00421545747667551, -0.006176531780511141, -0.002636366058140993, -0.015388465486466885, -0.022414227947592735, 0.014842774718999863, 0.0068893395364284515, -0.0019900642801076174, 0.005948023870587349, -0.02732544019818306, -0.03214115649461746, 0.017325665801763535, 0.024228647351264954, -0.026711538434028625, -0.011316251941025257, -0.004293900448828936, -0.0016907871467992663, -0.00017457825015299022, 0.024215005338191986, -0.027366366237401962, 0.014679067768156528, 0.008908393792808056, 0.012025648728013039, -0.016670837998390198, 0.010913805104792118, 0.004771379288285971, 0.027257228270173073, 0.011507243849337101, -0.00069660774897784, 0.020722588524222374, 0.009740571491420269, -0.01597508229315281, -0.02128192037343979, 0.009065279737114906, -0.006606262642890215, 0.01851254142820835, 0.015320254489779472, -0.011077512055635452, 0.013144314289093018, -0.006077625323086977, 0.02488347515463829, -0.008028468117117882, 0.017857713624835014, 0.0021401289850473404, 0.0010444852523505688, -0.007414566352963448, 0.020599806681275368, 0.008137606084346771, -0.015606741420924664, -0.018594395369291306, -0.018962737172842026, 0.007755622733384371, -0.008587800897657871, 0.00616971030831337, -0.0002229656238341704, 0.004757736809551716, 0.0030388126615434885, 0.03931698203086853, 0.0047304523177444935, 0.003028580918908119, -0.011943795718252659, -0.011111618019640446, -0.008785612881183624, -0.010886521078646183, -0.013342127203941345, 0.008287671022117138, -0.03495145961642265, 0.019290151074528694, -0.012073396705091, -0.003437848761677742, 0.0036424824502319098, 0.02949455939233303, -0.012878290377557278, -0.03885314613580704, -0.00038155686343088746, -0.023205477744340897, -0.00690980302169919, 0.01856711134314537, 0.007605557795614004, -0.0024624273646622896, -0.010306725278496742, -0.0006821128190495074, 0.0013505833921954036, -0.010518180206418037, 0.0016481551574543118, -0.010681887157261372, 0.013342127203941345, -0.013069281354546547, 0.032332148402929306, 0.009665538556873798, 0.01437893882393837, 0.0045974403619766235, -0.008110321126878262, 0.013539939187467098, -0.004488302394747734, 0.024215005338191986, -0.0017317138845100999, 0.013921923004090786, 0.04357336834073067, 0.017257453873753548, 0.011684592813253403, 0.009706465527415276, -0.020231466740369797, 0.020231466740369797, 0.03293240815401077, 0.017762217670679092, -0.004808895289897919, -0.023069055750966072, 0.013383053243160248, -0.03634297102689743, 0.027680138126015663, -0.008260386064648628, 0.016684480011463165, -0.016588984057307243, 0.0018553468398749828, -0.011868762783706188, -0.014638141728937626, -0.024024013429880142, 0.012482664547860622, 0.009331303648650646, 0.004573566373437643, -0.009017531760036945, -0.022209594026207924, 0.012455380521714687, -0.007346355356276035, -0.0009191470453515649, 0.0065414621494710445, -0.020408816635608673, 0.0003553381538949907, 0.012762331403791904, -0.0058286539278924465, 0.015456676483154297, -0.012980607338249683, -0.03587913513183594, -0.022373300045728683, -0.003639071946963668, 0.0061390153132379055, -0.005398923065513372, 0.024269575253129005, -0.020013190805912018, 0.02207317017018795, -0.015838660299777985, 0.029085291549563408, -0.001204781816340983, 0.0006305280257947743, -0.006381165701895952, -0.01156863383948803, -0.026247700676321983, 0.01899002119898796, 0.009972489438951015, 0.04335509240627289, 0.016043294221162796, -0.005514882039278746, 0.019590280950069427, -0.0340510718524456, -0.0013642256380990148, -0.02175939828157425, 0.02233237400650978, 0.008505946956574917, -0.02754371613264084, -0.0036834091879427433, 9.64550199569203e-05, 0.023423753678798676, 0.021868538111448288, 0.01602965220808983, 0.03214115649461746, 0.004556513857096434, -0.001277256291359663, 0.0032911943271756172, -0.033396244049072266, -0.012544054538011551, -0.014733636751770973, -0.0037584416568279266, -0.018335193395614624, -0.026179490610957146, -0.015170189552009106, 0.011254861950874329, -0.009583685547113419, 0.019126443192362785, -0.02069530263543129, 0.032768700271844864, 0.0339692197740078, 0.03787090256810188, -0.002390805399045348, -0.02196403220295906, -0.03353266790509224, 0.03432391583919525, -0.02642505057156086, 0.004846411757171154, 0.010456789284944534, -0.015170189552009106, -0.025933928787708282, -0.0060094138607382774, 0.008062574081122875, -0.0022509724367409945, 0.018294265493750572, -0.020981790497899055, -0.001178349950350821, -0.008164890110492706, -0.008485483936965466, 0.031158914789557457, -0.008724222891032696, -0.011323072947561741, 0.0008969783666543663, 0.01957663893699646, -0.00023447629064321518, -0.022959917783737183, -0.02016325481235981, 0.036097411066293716, 0.004440554417669773, -0.004225688986480236, 0.0005601851735264063, -0.002002001041546464, -0.021527480334043503, -0.00399036007001996, -0.009372230619192123, 0.015606741420924664, -0.014747279696166515, 0.008942498825490475, -0.003946022596210241, 0.024474209174513817, 0.0064493766985833645, 0.013949207030236721, 0.019590280950069427, -0.01994497887790203, -0.005832064896821976, -0.020040474832057953, 0.007025761995464563, 0.008123964071273804, -0.00019845219503622502, -0.0029876541811972857, -0.001886041951365769, -0.04250927269458771, -0.038225602358579636, -0.016834544017910957, -0.0007805928471498191, 0.007428208831697702, -0.004754326306283474, -0.011309430934488773, 0.006892750039696693, 0.008792433887720108, 0.011220755986869335, 0.021090928465127945, 0.008137606084346771, -0.004433733411133289, 0.0015066167106851935, 0.02350560761988163, -0.025088109076023102, 0.02271435782313347, 0.003049044404178858, -0.0002468395687174052, -0.014160661958158016, 0.019017305225133896, 0.0006445966428145766, 0.02308269776403904, 0.032277580350637436, -0.002177645219489932, -0.02291899174451828, 0.011943795718252659, 0.0005051898187957704, -0.015456676483154297, 0.02993111126124859, 0.009037994779646397, 0.037543490529060364, 0.013035176321864128, 0.05751575529575348, -0.013956028036773205, -2.8323669539531693e-05, 0.008949319832026958, 0.013676362112164497, -0.01212114468216896, 4.156625072937459e-05, -0.011377641931176186, -0.011548169888556004, 0.011043407022953033, -0.005719515960663557, -0.01116618700325489, -0.030149387195706367, 0.017230169847607613, 0.01570223644375801, -0.04668380320072174, 0.00037771998904645443, 0.003714104415848851, 0.028730591759085655, -0.014283442869782448, -0.012755509465932846, 0.020449742674827576, 0.00869693886488676, -0.008744686841964722, -0.017803145572543144, 0.008526409976184368, 0.002568154828622937, -0.012284851633012295, -0.004883927758783102, -0.016275212168693542, 0.011630023829638958, -0.03836202621459961, -0.017857713624835014, 0.015552172437310219, -0.06111731007695198, -0.024433281272649765, 0.0060366983525455, 0.016739048063755035, 0.011282145977020264, 0.013383053243160248, -0.008410451002418995, -0.02381937950849533, 0.015784090384840965, -0.003932380583137274, -0.012803257443010807, -0.01803506352007389, -0.034351203590631485, 0.01878538727760315, 0.0010589801240712404, -0.002653418807312846, -0.01847161538898945, -0.005364817567169666, 0.009863351471722126, 0.016725406050682068, -0.0010231692576780915, 0.019644849002361298, 0.004604261368513107, -0.00481571676209569, 0.010081627406179905, 0.008417272008955479, -0.0003979702014476061, 0.007612379267811775, -0.019140085205435753, -0.0011485074646770954, -0.05320480093359947, -0.015252042561769485, -0.01130260992795229, -0.01446079183369875, -0.009904278442263603, 0.019753986969590187, 0.014638141728937626, 0.00688592903316021, 0.022632503882050514, 0.025961214676499367, -9.027336636791006e-05, 0.019290151074528694, -0.015252042561769485, 0.0039050958584994078, 0.002242445945739746, 0.007189469411969185, 0.0014563108561560512, 0.02568836882710457, -0.012434916570782661, 0.023955803364515305, -0.013062460348010063, 0.04812988266348839, 0.0043245954439044, 0.009276734665036201, -0.0032826680690050125, -0.0018962736940011382, -0.02286442182958126, -0.023696599528193474, 0.010647781193256378, 0.03034037910401821, 0.021622976288199425, -0.012025648728013039, -0.024842549115419388, -0.023260047659277916, -0.027189018204808235, -0.008267207071185112, 0.03189559653401375, -0.0169846098870039, -0.03317796811461449, -0.008894750848412514, -0.007851118221879005, 0.0024487851187586784, -0.009590506553649902, 0.013983312994241714, -0.01952206902205944, -0.006309543736279011, 0.013778679072856903, 0.007721517235040665, 0.00811714306473732, 0.019726702943444252, 0.020013190805912018, -0.03767991438508034, -0.015511245466768742, -0.004300721455365419, -0.002638071309775114, -0.01656170003116131, -0.004767968785017729, 0.019917694851756096, 0.025551946833729744, 0.030203955247998238, -0.01374457310885191, -0.00199518003500998, -0.01650713011622429, 0.0018468204652890563, 0.007550988811999559, -0.015320254489779472, 0.002095791744068265, -0.0022697304375469685, 0.0007912509026937187, 0.0071553634479641914, 0.026616042479872704, 0.002227098448202014, -0.025224532932043076, -0.0060094138607382774, 0.018962737172842026, 0.0032059303484857082, 0.013028355315327644, -0.0071553634479641914, -0.04848457872867584, -0.008860645815730095, 0.020777156576514244, -0.017925925552845, 0.0008893046178855002, -0.01592051424086094, -0.01010209135711193, 0.022850779816508293, 0.005149951670318842, 0.01836247742176056, 0.025961214676499367, -0.002080444013699889, -0.017871355637907982, 0.011868762783706188, 0.011295787990093231, 0.009024352766573429, -0.019562995061278343, 0.0009626317187212408, -0.04073577746748924, 0.020013190805912018, 0.01909915916621685, 0.020668018609285355, 0.007926151156425476, 0.028403177857398987, 0.01968577690422535, -0.012905574403703213, 0.0256747268140316, 0.006466429680585861, -0.0265751164406538, -0.0023515839129686356, -0.011930153705179691, -0.04572884365916252, -0.044009920209646225, 0.009474547579884529, 0.007516883313655853, -0.013246631249785423, 0.021309204399585724, 0.0064971246756613255, 0.005542166531085968, -0.031049776822328568, -0.0008036141516640782, 0.0009779792744666338, -0.01063413918018341, 0.030995206907391548, 0.004958960227668285, 0.025770222768187523, 0.04286396875977516, 0.01682090200483799, 0.01968577690422535, -0.05347764492034912, -0.019344719126820564, 0.012782794423401356, 0.031595464795827866, 0.034514907747507095, -0.015156546607613564, -0.04916669428348541, 0.013185241259634495, -0.0030268756672739983, -0.009324482642114162, -0.025019899010658264, 0.03628840297460556, 0.016957323998212814, -0.015797732397913933, -0.030176671221852303, -0.0047372737899422646, -0.028321323916316032, 0.030585939064621925, -0.000607080408371985, -0.009999774396419525, -0.004617903847247362, -0.008294492028653622, 0.00042738631600514054, 0.008314955048263073, 0.001886041951365769, 0.013915101997554302, 0.0013326779007911682, -0.00421545747667551, 0.002358405152335763, -0.015006482601165771, -0.038171034306287766, 0.00021646423556376249, 0.013048818334937096, 0.03134990483522415, -0.017489373683929443, -0.005398923065513372, 0.028375893831253052, 0.015101977623999119, 0.0007605557912029326, -0.007885224185883999, -0.020613450556993484, 0.04381892830133438, -0.01750301569700241, -0.0128373634070158, 0.009372230619192123, 0.007387281861156225, 0.011936974711716175, -0.00592756038531661, 0.006043519824743271, -0.005910507868975401, -0.005511471536010504, -0.023737525567412376, 0.007721517235040665, 0.0023703421466052532, 0.00011553285730769858, -0.007769265212118626, 0.0057433899492025375, -0.014406222850084305, -0.025974856689572334, 0.012421274557709694, 0.01856711134314537, -0.03792547434568405, -0.01999954879283905, -0.028512315824627876, -0.02376481145620346, 0.0003570434346329421, -0.005688820965588093, 0.02223687805235386, 0.00740092433989048, 0.04174530506134033, -0.01798049360513687, 0.015593099407851696, 0.0049555497244000435, 0.012066575698554516, -0.0006190174026414752, 0.019399289041757584, -0.019453857094049454, -0.0037789051420986652, 0.014024239964783192, -0.0002500369737390429, -0.01878538727760315, -0.03904413804411888, 0.010872878134250641, 0.041035909205675125, -0.007373639848083258, 0.01374457310885191, 0.004447375424206257, -0.0005478218663483858, 0.010033879429101944, 0.01180737279355526, -0.014338011853396893, 0.005593325011432171, -0.008342240005731583, 0.004699757322669029, -0.011575454846024513, -0.029167143628001213, 0.005357996094971895, -0.007851118221879005, 0.004594029858708382, -0.010920626111328602, -0.034405771642923355, -0.04278211668133736, 0.0064493766985833645, -0.00677679106593132, 0.013539939187467098, -0.00586275989189744, -0.022427869960665703, -0.005654715467244387, -0.032277580350637436, -0.01628885418176651, 0.003785726148635149, -0.0009379051625728607, 0.0012985722860321403, 0.0295491274446249, 0.01974034495651722, 0.014269799925386906, 0.012605445459485054, 0.0016353655373677611, -0.0055660405196249485, -0.03137718886137009, -0.016684480011463165, -0.015006482601165771, -0.019494784995913506, 0.04354608431458473, -0.007182647939771414, -0.020668018609285355, -0.023260047659277916, -0.016152432188391685, -0.010975195094943047, -0.005057866685092449, -0.021240994334220886, 0.018976379185914993, 0.017925925552845, 0.004358700942248106, -0.012196177616715431, -0.002259498694911599, -0.022509723901748657, 0.0030899711418896914, -0.009385872632265091, 0.0012926037888973951, -0.012482664547860622, -0.0005827801651321352, -0.010831952095031738, 0.005282963626086712, -0.014474433846771717, -0.01044996827840805, -0.0031735298689454794, 0.0005968487239442766, 0.01230531558394432, 0.026288628578186035, 0.0001402594498358667, -0.033505383878946304, 0.0006484335171990097, -0.021200066432356834, 0.0034310275223106146, -0.0006190174026414752, 0.009474547579884529, -0.012598623521625996, -0.017898639664053917, 0.01199154369533062, -0.012216640636324883, 0.0012397400569170713, -0.005143130663782358, 0.01069552917033434, -0.015715880319476128, 0.0038437058683484793, -0.03476047143340111, -0.026779750362038612, 0.009085742756724358, 0.013778679072856903, 0.03596098721027374, -0.014529002830386162, -0.0029126217123121023, 0.016957323998212814, -0.01203929167240858, -0.0038744008634239435, -0.020245108753442764, 0.01740751974284649, -0.012080217711627483, -0.01069552917033434, 0.01499283965677023, -0.013362590223550797, -0.003993770573288202, -0.011773267760872841, 0.010143017396330833, -0.020149612799286842, -0.02049066871404648, 0.0025442808400839567, -0.0026483030524104834, -0.017694007605314255, 0.007762444205582142, 0.008744686841964722, -0.028239471837878227, 0.0069268555380403996, 0.0051465411670506, -0.028730591759085655, -0.0007119552465155721, -0.04742048308253288, 0.023955803364515305, -0.04559241980314255, 0.01130260992795229, -0.005422797054052353, 0.003720925422385335, -0.007435029838234186, 0.01363543514162302, 0.0068074860610067844, -0.019112801179289818, -0.007585094776004553, 0.23464681208133698, -0.02875787764787674, -0.0023481734097003937, 0.0089629627764225, 0.01032036729156971, 0.02128192037343979, 0.0042973109520971775, 0.0036936409305781126, -0.001966190291568637, 0.002735272515565157, 0.01230531558394432, 0.0013548466376960278, -0.006319775246083736, -0.013355769217014313, 0.009365408681333065, -0.018007779493927956, -0.025702010840177536, -0.04259112477302551, -0.013860533013939857, 0.005112435668706894, 0.023055413737893105, 0.002588618081063032, 0.0013591097667813301, -0.015047408640384674, 0.002373752649873495, 0.017489373683929443, -0.03323253616690636, 0.023519249632954597, 0.039125990122556686, 0.007544167805463076, -0.033341675996780396, 0.03377822786569595, -0.002748914761468768, 0.0033508792985230684, -0.014065166935324669, -0.013887817040085793, 0.03667038679122925, 0.024815265089273453, 0.03394193574786186, 0.01596144028007984, -0.010463611222803593, -0.011398104950785637, -0.0014477844815701246, -0.003956254571676254, -0.02658875845372677, 0.010484074242413044, -0.008853824809193611, -0.026943456381559372, -0.0019065053202211857, 0.008656011894345284, -0.009645075537264347, -0.028403177857398987, 0.031595464795827866, 0.02706623636186123, 0.005340943578630686, -0.029903827235102654, 0.004222278483211994, 0.010791025124490261, 0.024051297456026077, 0.023437397554516792, -0.009529116563498974, 0.031104344874620438, -0.0086491908878088, 0.021213708445429802, -0.02652054652571678, -0.0006450229557231069, 4.265869574737735e-05, -0.007073509972542524, -0.004795253276824951, -0.007632842753082514, -0.008724222891032696, 0.00744185084477067, -0.020545238628983498, -0.014406222850084305, -0.023273689672350883, -0.02128192037343979, 0.03145904466509819, 0.01798049360513687, 0.025742938742041588, 0.03246857225894928, 0.01862167939543724, -0.0065789781510829926, -0.02372388355433941, 0.013737752102315426, -0.009488189592957497, -0.040926769375801086, 0.009808782488107681, -0.02345103956758976, -0.007762444205582142, 0.004273436963558197, 0.011207113973796368, -0.018075989559292793, -0.010006595402956009, -0.03055865503847599, -0.001336088520474732, 0.006384576205164194, 0.027871130034327507, 0.027311798185110092, 0.004969191737473011, -0.004634956829249859, -0.015292969532310963, 0.019453857094049454, 0.020504310727119446, 0.002603965811431408, -0.010866057127714157, -0.008485483936965466, 0.004317773971706629, 0.00325538357719779, -0.0167117640376091, -0.0026619452983140945, -0.0038641691207885742, -0.04286396875977516, 0.011889226734638214, -0.0017820197390392423, -0.00015677936607971787, 0.03241400048136711, -0.021582050248980522, -0.025538304820656776, 0.008021647110581398, 0.000848804134875536, 0.017803145572543144, -0.012503128498792648, -0.01374457310885191, -0.018280623480677605, -0.019753986969590187, -0.03274141624569893, 0.007796549703925848, -0.007789728697389364, -0.019017305225133896, -0.000643317645881325, 0.022318731993436813, -0.02706623636186123, 0.033559951931238174, 0.013649078086018562, 0.009624611586332321, 0.00022275246737990528, -0.005845706909894943, -0.0024300268851220608, 0.021732114255428314, 0.009706465527415276, -0.007530525792390108, -0.01601600833237171, 0.006118552293628454, 0.0019440215546637774, 0.0015287853311747313, -0.005129488650709391, 0.009515473619103432, -0.016575342044234276, 0.008144427090883255, 0.0048634642735123634, -0.019399289041757584, -0.019112801179289818, -0.005385280586779118, -0.00301834917627275, 0.030858784914016724, -0.009269913658499718, -0.020572522655129433, -0.03377822786569595, -0.004375753924250603, 0.01145949587225914, -0.01825333945453167, -0.0047304523177444935, 0.021609334275126457, -0.005286374595016241, -0.01010209135711193, -0.026861602440476418, -0.17418433725833893, 0.007550988811999559, 0.02583843469619751, -0.04346422851085663, 0.02971283532679081, 0.025551946833729744, -0.009658717550337315, -0.0064186817035079, -0.00652781967073679, -0.013751395046710968, 0.04461017996072769, -0.011684592813253403, -0.0028444104827940464, -0.009863351471722126, -0.006241332273930311, 0.025920286774635315, -0.024365069344639778, 0.00655169365927577, 0.048048026859760284, 0.010381757281720638, 0.056860923767089844, -0.03443305566906929, -0.016329780220985413, 0.009965668432414532, -0.0024487851187586784, 0.006862055044621229, -0.01446079183369875, 0.008471840992569923, -0.016316138207912445, -0.03134990483522415, 0.0021861717104911804, 0.010067985393106937, 0.021500196307897568, -0.010811488144099712, 0.029903827235102654, -0.003292899578809738, 0.00337645853869617, -0.02435142733156681, -0.014051523990929127, -0.0005094530060887337, 0.012966964393854141, 0.0244605652987957, -0.006258385255932808, 0.008669653907418251, -0.0023396469186991453, 0.0018962736940011382, 0.014897343702614307, -0.011268503963947296, 0.010067985393106937, -0.004897570237517357, 0.02859416976571083, -0.03615197911858559, -0.011534527875483036, 0.006282259244471788, 0.03617926314473152, 0.01570223644375801, -0.013028355315327644, -0.004341647960245609, 0.0015168484533205628, -0.020449742674827576, -0.008151248097419739, -0.016097862273454666, 0.012168892659246922, 0.018662607297301292, -0.02169118821620941, -0.014760921709239483, -0.028403177857398987, 0.03039494715631008, -0.013649078086018562, -0.0024607221130281687, 0.019590280950069427, -0.02807576395571232, -0.01005434338003397, 0.010777383111417294, 0.01225756760686636, -0.0001254448143299669, 0.014119735918939114, 0.009570042602717876, 0.010525001212954521, -0.007639663759618998, -0.021295562386512756, 0.032823268324136734, -0.0022850779350847006, -0.01974034495651722, 0.005167004652321339, 0.01002705842256546, 0.014160661958158016, -0.016138790175318718, -0.03994452580809593, -0.012578160502016544, 0.03792547434568405, -0.022032244130969048, -0.014174304902553558, -0.01617971621453762, 0.02807576395571232, -0.005460313055664301, -0.0017564404988661408, -0.008410451002418995, -0.013308021239936352, 0.0034344380255788565, -0.012325778603553772, 0.007912509143352509, -0.008847003802657127, 0.024801623076200485, 0.06182670593261719, 0.018648965284228325, -0.01883995719254017, 0.01661626808345318, 0.03072236105799675, -0.001638776040636003, -0.0029569591861218214, -0.0051328991539776325, 0.009931562468409538, 0.022086814045906067, 0.014078808948397636, 0.01845797337591648, -0.019590280950069427, -0.013853711076080799, 0.005044224206358194, 0.000650991452857852, -0.017489373683929443, -0.019290151074528694, 0.004921444226056337, 0.029221713542938232, -0.007851118221879005, -0.013151135295629501, -0.06084446236491203, -0.010381757281720638, 0.010504537262022495, 0.03331439197063446, -0.0004655419907066971, 0.01772129163146019, -0.013799142092466354, 0.038716722279787064, 0.005156773142516613, 0.023314615711569786, -0.02965826541185379, -0.016779975965619087, -0.003703872673213482, 0.018553469330072403, -0.018717175349593163, 0.006503945682197809, 0.0031701193656772375, 0.016302496194839478, -0.0002754030574578792, 0.02960369735956192, 0.0008424093248322606, 0.005245447624474764, 0.0011340125929564238, -0.0074623143300414085, -0.009699644520878792, -0.000942168349865824, -0.022114098072052002, 0.033396244049072266, 0.016779975965619087, 0.007223574910312891, 0.029058005660772324, -0.015470318496227264, -0.022195952013134956, -0.010702350176870823, -0.0013676362577825785, 0.0067222220823168755, -0.009413156658411026, -0.010647781193256378, 0.027652854099869728, -0.022987201809883118, 0.0024607221130281687, -0.00869693886488676, -0.006609673146158457, 0.010545464232563972, -0.017925925552845, 0.0009293787297792733, -0.01873081736266613, 0.017161957919597626, -0.014979197643697262, -0.018294265493750572, -0.036370255053043365, 0.01379232108592987, -0.01113890204578638, -0.0006382018327713013, 0.02605671063065529, 0.018662607297301292, 0.021472912281751633, -0.01212114468216896, -0.017175601795315742, 0.0003894437977578491, 0.0012260978110134602, 0.017789501696825027, -0.01643892005085945, 0.020995432510972023, 0.028375893831253052, 0.012243925593793392, -0.031131628900766373, -0.02010868676006794, 0.013942386023700237, 0.00018960605666507035, 0.001988358795642853, 0.017734933644533157, -0.022537007927894592, 0.04761147499084473, -0.035688143223524094, -0.021732114255428314, -0.0026090815663337708, -0.019399289041757584, 0.016998251900076866, 0.0072849649004638195, 0.003789136651903391, -0.0058866338804364204, -0.017339307814836502, -0.00035086178104393184, 0.0125235915184021, -0.0006769970059394836, -0.017230169847607613, 0.008192175067961216, 0.005763853434473276, -0.029849257320165634, 0.004399627912789583, 0.015743164345622063, 0.012175713665783405, -0.009658717550337315, -0.013696825131773949, -0.0064868931658566, -0.004188172984868288, -0.009317661635577679, 0.009290376678109169, 0.02366931550204754, -0.019140085205435753, -0.02993111126124859, -0.09505924582481384, 0.01660262607038021, -0.018007779493927956, 0.006698348093777895, 0.01477456372231245, -0.005190878640860319, 0.0298219732940197, -0.011268503963947296, 0.013048818334937096, 0.005006708204746246, -0.038962285965681076, 0.03470589965581894, 0.0029194429516792297, -0.008594621904194355, -0.02365567348897457, 0.004126782529056072, 0.02556558884680271, 0.0034037430305033922, 0.0006458755815401673, 0.004273436963558197, 0.008410451002418995, 0.014529002830386162, 0.036424826830625534, 0.005777495447546244, -0.03140447288751602, 0.007830655202269554, 0.008922035805881023, 0.04354608431458473, 0.00434846943244338, -0.031077060848474503, -0.008546873927116394, -0.001105875475332141, 0.004004002083092928, 0.003540165489539504, 0.008164890110492706, -0.009351766668260098, 0.01851254142820835, -0.004703167825937271, 0.03309611603617668, 0.028785161674022675, -0.03538801521062851, -0.03527887538075447, 0.01570223644375801, -0.005327301099896431, -0.020599806681275368, -0.004147246014326811, -0.003922148607671261, 0.021554766222834587, 0.007271322887390852, 0.019071875140070915, 0.02073623053729534, 0.020708944648504257, -0.012400811538100243, -0.012291673570871353, 0.000654828327242285, -0.03868943825364113, 0.007134899962693453, 0.016739048063755035, 0.005900275893509388, -0.013887817040085793, 0.03931698203086853, 0.007544167805463076, 0.019140085205435753, 0.03129533678293228, -0.006725632585585117, -0.018717175349593163, -0.020436100661754608, 0.010709171183407307, 0.017530299723148346, -0.029112575575709343, -0.024378713220357895, -0.007387281861156225, -0.018485257402062416, 0.00796025712043047, -0.00028115836903452873, -0.0025664495769888163, -0.013471728190779686, 0.010640960186719894, -0.01735294982790947, 0.02727087028324604, 0.016698122024536133, 0.012632729485630989, -0.040872201323509216, 0.017625795677304268, 0.02903072163462639, 0.019617564976215363, -0.016752691939473152, -0.008451377972960472, -0.012032470665872097, -0.011691413819789886, -0.026029424741864204, -0.002196403220295906, 0.013546761125326157, 0.023942159488797188, 0.019644849002361298, 0.031540896743535995, 0.0013232989003881812, -0.0132875582203269, 0.016902755945920944, -0.011868762783706188, 0.031650036573410034, -0.008233102038502693, 0.013614972122013569, -0.014542645774781704, -0.022155024111270905, -0.009515473619103432, -0.012400811538100243, -0.04144517704844475, 0.002704577287659049, 0.01845797337591648, -0.02622041665017605, 0.013076103292405605, -0.019808556884527206, 0.002929674694314599, -0.02323276363313198, 0.008635547943413258, 0.004437143914401531, -0.009726928547024727, -0.03377822786569595, 0.03039494715631008, 0.01724381186068058, -6.272240716498345e-05, 0.03664310276508331, -0.0031053186394274235, 0.03931698203086853, 0.011705055832862854, 0.012475843541324139, -0.036042843014001846, 0.021677546203136444, -0.011943795718252659, -0.020463384687900543, 0.009610969573259354, -0.01793956756591797, -0.014228873886168003, -0.017052819952368736, -0.005078330170363188, -0.005719515960663557, 0.0033559950534254313, 0.0006616494501940906, 0.0704486146569252, -0.010088448412716389, 0.001317330403253436, -0.013185241259634495, -0.008008004166185856, -0.005702463444322348, 0.005467134527862072, 0.00030652445275336504, -0.016575342044234276, -0.012455380521714687, -0.008656011894345284, 0.002719924785196781, -0.019590280950069427, -0.011936974711716175, -0.016684480011463165, 0.007216753903776407, -0.012168892659246922, 0.039125990122556686, -0.008744686841964722, 0.029139859601855278, 0.04870285466313362, -0.0003708988369908184, 0.007755622733384371, 0.020681660622358322, -0.007394102867692709, 0.01196425873786211, 0.042045433074235916, -0.009256270714104176, 0.0006919181905686855, -0.018294265493750572, 0.02604306861758232, -0.0015697121853008866, -0.022577933967113495, -0.015429392457008362, -0.021950390189886093, 0.025224532932043076, -0.018594395369291306, 0.004696346819400787, 0.005757032427936792, 0.0038641691207885742, 0.02049066871404648, 0.025129036977887154, -0.03437848761677742, -0.04537414386868477, -0.015674952417612076, 0.019221939146518707, -0.012264388613402843, -0.0009873582748696208, -0.004675883334130049], "70a996da-13cc-4b16-816a-ef5e21359e11": [-0.02696915529668331, 0.0008339545456692576, 0.005833896808326244, -0.023779690265655518, 0.009521296247839928, 0.02758820727467537, -0.019230999052524567, -0.02231280505657196, -0.0076035792008042336, -0.014641936868429184, 0.009083922021090984, 0.0020640690345317125, 0.015435938723385334, -0.01964818686246872, -0.008242818526923656, 0.0009950259700417519, 0.020845919847488403, -0.017858318984508514, 0.017871776595711708, -0.033078934997320175, -0.0031053556594997644, 0.010227823629975319, -0.028530243784189224, -0.012233015149831772, -0.004427570849657059, 0.004047391936182976, 0.00669518718495965, -0.02885322831571102, 0.01846391335129738, -0.0013508128467947245, 0.03227147459983826, 0.02523311786353588, -0.013969053514301777, 0.005315776914358139, 0.001038763322867453, -0.004292994271963835, -0.01814092881977558, -0.006217440124601126, 0.011149673722684383, -0.027238309383392334, 0.024614064022898674, -0.007482460234314203, -0.0034687125589698553, 0.018934931606054306, -0.04069597274065018, 0.014211291447281837, -0.012845339253544807, 0.0012406283058226109, -0.011513030156493187, 0.010153806768357754, -0.007913105189800262, 0.014601564034819603, -0.013955595903098583, -0.035259075462818146, 0.0007628812454640865, 0.009501109831035137, -0.008242818526923656, 0.02777661569416523, -0.016889367252588272, -0.019634729251265526, 0.012273387983441353, 0.01573200710117817, -0.03095262311398983, 0.012986644171178341, -0.004797656554728746, 0.00821590330451727, -0.0313294380903244, 0.014453529380261898, -0.01106219831854105, 0.0023836884647607803, 0.01327598374336958, 0.02205710858106613, 0.0006034920806996524, -0.015435938723385334, 0.04898589104413986, 0.013040474615991116, -0.010106704197824001, -0.003586467122659087, -0.01115640252828598, 0.001253244816325605, 0.005655582528561354, 0.004972606431692839, -0.01746804639697075, -0.004821207374334335, 0.004938961938023567, 0.02445257268846035, -0.013329815119504929, 0.016162652522325516, -0.019715474918484688, -0.010739214718341827, -0.0033341359812766314, 0.015974245965480804, 0.02286456897854805, 0.007670867722481489, -0.029795264825224876, 0.01625685580074787, -0.02131693810224533, 0.028718652203679085, -0.01473614014685154, -0.02400846965610981, -0.011243877001106739, 0.0022356542758643627, -0.019042592495679855, -0.00949438102543354, -0.03967319056391716, -0.020361443981528282, 0.014480444602668285, 0.008666734211146832, 0.003919544164091349, -0.015328277833759785, -0.007415172178298235, 0.024694811552762985, 0.02614823915064335, -0.032971274107694626, -0.014857259579002857, -0.012892440892755985, 0.0024896676186472178, -0.0031204954721033573, -0.007778529077768326, -0.03224455937743187, 0.01059790886938572, 0.0275209192186594, 0.014547733590006828, 0.014911090023815632, 0.014453529380261898, 0.0006144263898022473, 0.0029135840013623238, 0.006627898663282394, -0.0043535539880394936, -0.017521876841783524, 0.018827270716428757, 0.008969532325863838, 0.03544748201966286, -0.015651261433959007, -0.037546876817941666, 0.023914266377687454, -0.028422582894563675, 0.004592427518218756, -0.016377976164221764, -0.023362502455711365, 0.011721624061465263, 0.011432284489274025, -0.0014567920006811619, -0.01636451669037342, 0.0032079704105854034, 0.028207261115312576, 0.019823137670755386, 0.015705091878771782, -0.019998086616396904, 0.03162550553679466, 0.0003093159757554531, -0.0020909842569381, 0.0035965603310614824, 0.03264828771352768, 0.023725859820842743, 0.00047900868230499327, -0.012468524277210236, 0.0008532999199815094, -0.017737198621034622, -0.01670095883309841, 0.02142459899187088, 0.004784198943525553, 0.002541816094890237, 0.012165727093815804, 0.0010101657826453447, 0.009723161347210407, -0.015570515766739845, -0.003152457531541586, 0.0009008222841657698, -0.005571472458541393, -0.0018352887127548456, 0.010645011439919472, 0.002287802519276738, 0.023658569902181625, -0.007623765617609024, 0.034666936844587326, 0.021599547937512398, -0.003889264538884163, -0.011600504629313946, -0.021626463159918785, -0.0028429313097149134, -0.028530243784189224, 0.017710283398628235, 0.013821019791066647, 0.0018571574473753572, -0.004770741332322359, 0.004928868729621172, -0.013861392624676228, -0.001179227721877396, 0.0038758066948503256, 0.015933873131871223, 0.03036048635840416, 0.013356730341911316, -0.004841394256800413, -0.6175451874732971, -0.027642039582133293, 0.003626839956268668, -0.014318953268229961, 0.007717969361692667, 0.020361443981528282, -0.006355381105095148, 0.006681729573756456, -0.0026393840089440346, 0.008027495816349983, -0.009871195070445538, 0.003327406942844391, -0.01824858970940113, 0.005877634044736624, 0.009945212863385677, -0.014157461002469063, 0.01462847925722599, -0.022151311859488487, 0.014561191201210022, 0.007650681305676699, -0.03202923759818077, 0.0009243732201866806, -0.007670867722481489, -0.011788912117481232, 0.017427673563361168, -0.017158519476652145, 0.0014803428202867508, -0.011418826878070831, -0.018073640763759613, -0.001487912843003869, -0.016835534945130348, 0.026578882709145546, 0.030333571135997772, 0.0037075860891491175, 0.043118350207805634, -0.014453529380261898, -0.016243398189544678, 0.01051043439656496, 0.018571574240922928, 0.022985687479376793, -0.0023517266381531954, -0.028314922004938126, 0.01801981031894684, -0.0051711066626012325, 0.012111896649003029, 0.020549850538372993, 0.015099497511982918, -0.00430308748036623, 0.005689227022230625, -0.0049086823128163815, -0.015718549489974976, -0.02386043593287468, -0.018221674486994743, -0.0073949857614934444, 0.017225807532668114, 0.0027790074236691, 0.007966936565935612, -0.026686545461416245, -0.003677306231111288, -0.024317996576428413, 0.013646069914102554, 0.025165829807519913, -0.02178795635700226, -0.026726918295025826, -0.019782762974500656, -0.007199849467724562, -0.02371240220963955, -0.00028912947163917124, 0.030037501826882362, -0.007105645723640919, -0.01316832285374403, -0.006506779696792364, -0.0006665748660452664, -0.013383645564317703, 0.01958089880645275, 0.004161782097071409, 0.024075757712125778, -0.016162652522325516, -0.016593297943472862, -0.003101991256698966, -0.009104108437895775, -0.003882535733282566, 0.0036470266059041023, -0.01483034435659647, -0.008040953427553177, 0.004367011599242687, -0.022514669224619865, -0.017239265143871307, -0.0020051917526870966, -0.0014803428202867508, 0.021074699237942696, -0.012630016542971134, -0.01372008677572012, -0.012892440892755985, 0.01361242588609457, 0.0342901237308979, -0.006600983440876007, -0.02320100925862789, -0.002738634357228875, 0.01655292510986328, -0.023429790511727333, -0.002203692216426134, 0.009904840029776096, -0.02334904484450817, 0.007596850395202637, 0.013578781858086586, 0.0069845267571508884, 0.006749017629772425, 0.03722389414906502, -0.02098049595952034, 0.009851008653640747, 0.016149194911122322, -0.009016633965075016, -0.004161782097071409, -0.0033946954645216465, -0.028907058760523796, 0.0098981112241745, 0.013888307847082615, 0.024533318355679512, -0.014803429134190083, 0.03143709897994995, 0.014870717190206051, 0.02341633290052414, -0.010032687336206436, 0.006254448555409908, 0.017817944288253784, 0.020065374672412872, -0.021922532469034195, -0.0027857362292706966, 0.004511681385338306, -0.0012397872051224113, -0.014453529380261898, 0.003626839956268668, -0.002671346068382263, 0.031598590314388275, -0.026013661175966263, -0.0024694809690117836, -0.014547733590006828, 0.027695870026946068, -0.013471120037138462, -0.023295214399695396, 0.004141595680266619, 0.00843795482069254, -0.007946750149130821, -0.01225993037223816, -0.0062241689302027225, -0.002126310719177127, 0.007105645723640919, -0.024802472442388535, 0.009211770258843899, 0.022783823311328888, 0.011627420783042908, 0.0006871818914078176, 0.027157563716173172, -0.007852545939385891, 0.013363459147512913, -0.009460736997425556, -0.001830242108553648, -0.003083486808463931, -0.0034922633785754442, -0.009413635358214378, 0.0028513423167169094, -5.4461477702716365e-05, 0.00927232950925827, -0.021841786801815033, -0.012313760817050934, -0.0062712705694139, 0.02563684619963169, -0.02205710858106613, -0.026982612907886505, -0.008875328116118908, -0.023725859820842743, -0.011169860139489174, 0.014265121892094612, 0.02430453896522522, 0.01695665530860424, -0.0229722298681736, 0.006950882729142904, 0.0011422190582379699, -0.006045854650437832, -0.0060559483245015144, -0.007731426972895861, 0.01372008677572012, -0.00843795482069254, 0.011936946772038937, 0.0038017896004021168, 0.030871877446770668, -0.0013718404807150364, -0.010079788975417614, -0.0035831027198582888, -0.021411141380667686, 0.00900990515947342, -0.00037345013697631657, 0.002415650524199009, 0.02578488178551197, 0.010967995040118694, 0.008532158099114895, -0.0074891890399158, 0.014359326101839542, 0.02496396377682686, 0.03948478028178215, 0.006641356274485588, 0.014843801967799664, -0.029095467180013657, 0.030172079801559448, -0.03865040838718414, 0.006079499144107103, -0.023093348369002342, 0.03321351110935211, 0.002099395263940096, 0.0008474122150801122, -0.019769305363297462, -0.00525521719828248, -0.02614823915064335, 0.010752672329545021, 0.017387300729751587, 0.0078323595225811, 0.010099975392222404, -0.02600020356476307, -8.13768056104891e-05, 0.0037311369087547064, -0.002439201343804598, 0.008431226015090942, -0.008565802127122879, -0.03630877286195755, 0.0036032891366630793, 0.005944922566413879, 0.006765839643776417, 0.02438528463244438, -0.0315447598695755, -0.03275595232844353, 0.0026225619949400425, 0.01898876205086708, 0.00657406821846962, 0.018181301653385162, -0.049847181886434555, 0.026605797931551933, -0.016297228634357452, 0.037627626210451126, 0.007704511750489473, 0.022433923557400703, 0.023093348369002342, 0.008740752004086971, -0.012798236683011055, 0.005924736149609089, -0.007677596528083086, 0.04559456184506416, 0.028099600225687027, -0.00949438102543354, 0.003059935988858342, -0.0034266572911292315, 0.01657984033226967, -0.007798715494573116, 0.005507548339664936, 0.00576324388384819, -0.021209275349974632, 0.020213408395648003, 0.024990878999233246, -0.002144814934581518, 0.017333468422293663, 0.01314813643693924, 0.026605797931551933, 0.0004693359660450369, -0.006382296327501535, -0.006267906166613102, 0.009817364625632763, -0.016499094665050507, -0.0007532085292041302, 0.008538886904716492, 0.010005772113800049, -0.025098539888858795, 0.008175529539585114, 0.002185188001021743, -0.00982409343123436, 0.012212828733026981, -0.008962803520262241, 0.024802472442388535, -0.00535614974796772, 0.0221243966370821, 0.003626839956268668, -0.020738257095217705, -0.03523216024041176, 0.012387778609991074, 0.019715474918484688, 0.000915121054276824, 0.027049900963902473, 0.00635201670229435, 0.02589254267513752, -0.03181391581892967, 0.010167264379560947, -0.014197833836078644, 0.03792369365692139, -0.005652218125760555, -0.019823137670755386, -0.00971643254160881, 0.013915223069489002, 0.03194849193096161, -0.025771424174308777, -0.02906855009496212, -0.01820821687579155, 0.02966068871319294, 0.0036133823450654745, -0.02552918531000614, -0.006617805454879999, 0.04750555008649826, -0.005981930997222662, -0.012037878856062889, -0.002457705559208989, -0.015718549489974976, -0.0156647190451622, -0.0018521108431741595, -0.00923195667564869, -0.008188988082110882, 0.007913105189800262, 0.015435938723385334, 0.010019229725003242, 0.019082965329289436, -0.009595313109457493, 0.01691628247499466, 0.00703835766762495, 0.00104549212846905, -0.0002458126109559089, -0.014615021646022797, 0.024883218109607697, 0.04021149501204491, 0.012811694294214249, 0.005436895880848169, 0.010941079817712307, 0.006466406863182783, -0.013329815119504929, -0.029014719650149345, 0.013847935013473034, 0.0006854996900074184, -0.014265121892094612, -0.0021565903443843126, 0.009057006798684597, 0.031383268535137177, -0.013067389838397503, 0.006971069145947695, -0.003963281400501728, -0.004356918390840292, -0.0030548893846571445, 0.017858318984508514, -0.02108815684914589, 0.003271894296631217, 0.008935888297855854, 0.011587047018110752, 0.009931755252182484, -0.015193700790405273, -0.01577237993478775, -0.010449875146150589, 0.04034607112407684, 0.010665197856724262, -0.0165125522762537, 0.02885322831571102, -0.0009630639688111842, -0.01318850927054882, 0.010355670936405659, -0.03830050677061081, 0.029714519158005714, -0.0039666458033025265, 0.02205710858106613, -0.01939249224960804, -0.004656351171433926, 0.004760648123919964, -0.0007258726982399821, 0.001706599839963019, -0.003140681888908148, 0.004010383505374193, -0.028907058760523796, -0.009575126692652702, 0.01383447740226984, -0.02885322831571102, -0.03590504452586174, 0.012778050266206264, 0.011021825484931469, -0.03192157670855522, -0.007199849467724562, 0.01283861044794321, 0.022245517000555992, 0.0005887727602384984, -0.010173993185162544, 0.03439778462052345, -0.013847935013473034, -0.010927622206509113, 0.000734704255592078, -0.0006224169046618044, -0.02002500183880329, -0.05374990403652191, -0.022447381168603897, 0.006170338485389948, -0.027251766994595528, -0.023927723988890648, 0.01483034435659647, 0.022285889834165573, -0.02364511229097843, -0.014803429134190083, -0.00663799187168479, 0.02523311786353588, 0.024358369410037994, 0.023658569902181625, -0.01920408383011818, -0.017158519476652145, 0.007314239628612995, -0.016781704500317574, -0.02788427658379078, -0.02046910487115383, -0.022555042058229446, 0.025327321141958237, -0.000354735559085384, 0.003727772505953908, -0.03531290590763092, -0.005595023278146982, 0.017925607040524483, 0.0038690778892487288, 0.0032500254455953836, 0.006553881801664829, 0.009104108437895775, 0.004777470137923956, -0.02618861198425293, 0.008491785265505314, 0.036847081035375595, -0.006203982513397932, -0.020617138594388962, 0.005275403615087271, -0.01861194707453251, -0.01880035363137722, -0.006964340340346098, -0.006382296327501535, -0.00038690780638717115, 0.027278682217001915, -0.0012902533635497093, 0.01913679577410221, 0.01799289509654045, 0.02290494181215763, -0.00847832765430212, 0.019405949860811234, -0.02064405381679535, -0.015597430989146233, 0.02589254267513752, -0.0007271343492902815, -0.0006812941865064204, -0.012138811871409416, -0.010577722452580929, 0.031706251204013824, -0.027749700471758842, 0.012017692439258099, -0.002888350747525692, -0.015355193056166172, 0.013915223069489002, -0.004464579746127129, -0.015785837545990944, 0.01954052597284317, 0.002999376505613327, -0.004410748835653067, 0.02707681618630886, 0.0006308279116638005, -0.02966068871319294, 0.0034720769617706537, -0.0012212828733026981, -0.0032247924245893955, 0.020522935315966606, -0.012179184705018997, -0.009763534180819988, -0.012717491015791893, -0.023927723988890648, 0.005124005023390055, -0.009830822236835957, 0.020307613536715508, -0.03025282546877861, -0.014453529380261898, 0.020159577950835228, 0.023873893544077873, 0.016229940578341484, 0.01383447740226984, -0.009285787120461464, -0.03283669799566269, 0.007596850395202637, -0.023739317432045937, -0.022393550723791122, -0.012973186559975147, 0.02116890251636505, 0.013847935013473034, 0.03439778462052345, 0.035851214081048965, -0.010052873753011227, -0.0062880925834178925, 0.004144960083067417, 0.010564264841377735, 0.006277999375015497, -0.015745464712381363, 0.012656931765377522, -0.009198312647640705, 0.022703075781464577, 0.014399698935449123, 0.004609249532222748, 0.002390417270362377, -0.008020767010748386, 0.027803530916571617, 0.03816593065857887, -0.006853314582258463, -0.019957713782787323, -0.0014677263097837567, -0.055714722722768784, 0.010766129940748215, 0.007233493495732546, -0.0026595706585794687, -0.007361341267824173, -0.01964818686246872, -0.0005303160287439823, 0.014843801967799664, 0.016862452030181885, 0.02515237033367157, 0.010126890614628792, 0.010194179601967335, -0.017198892310261726, 0.015758922323584557, -0.004420842044055462, -0.0062477197498083115, -0.0036066535394638777, 0.012973186559975147, -0.009487652219831944, 0.021478429436683655, 0.02157263271510601, 0.006039125844836235, 0.030521977692842484, 0.01828896254301071, -0.006977797951549292, -0.013511492870748043, 0.010032687336206436, -0.014803429134190083, -0.025354236364364624, -0.020926665514707565, -0.02267616055905819, -0.009877923876047134, -0.01858503185212612, -0.03245988115668297, -0.006190524902194738, 0.019177168607711792, -0.004972606431692839, -0.030575810000300407, 0.004363647196441889, 0.0024021926801651716, -0.010503705590963364, 0.023295214399695396, 0.00187229725997895, 0.03501683846116066, -0.0004970924346707761, 0.02885322831571102, 0.0415034294128418, 0.032594457268714905, 0.004710182081907988, -0.04653659835457802, 0.0013634294737130404, -0.000919326557777822, 0.01596078835427761, 0.03402097150683403, -0.02108815684914589, -0.01994425617158413, 0.015207158401608467, 0.03692782670259476, 0.005026436876505613, -0.017925607040524483, 0.021222732961177826, 0.02610786445438862, 0.01583966799080372, -0.024062300100922585, 0.007677596528083086, -0.03167933598160744, 0.001821831101551652, -0.0035831027198582888, -0.02301260270178318, -0.019257914274930954, -0.017925607040524483, -0.00870037917047739, 0.02356436662375927, 0.022178227081894875, 0.018665777519345284, -0.00738825649023056, -0.007462273817509413, -0.0018453819211572409, -0.01617611013352871, -0.0028917151503264904, 0.004558783024549484, -0.033294256776571274, 0.029203128069639206, -0.014292038045823574, -0.007993851788341999, -0.01235413458198309, 0.0007759183645248413, 0.0050600809045135975, 0.00686004338786006, -0.022555042058229446, 0.04505625367164612, -0.005245123989880085, -0.012064794078469276, 0.003933001775294542, -0.009016633965075016, 0.014170918613672256, 0.0020287425722926855, 0.004605885129421949, 0.00596510898321867, -0.039027221500873566, 0.00759012158960104, 0.013646069914102554, 0.01577237993478775, 0.006335194688290358, 0.007347883656620979, -0.003636933397501707, -0.008444683626294136, -0.01093435101211071, 0.004441028460860252, 0.015597430989146233, -0.03889264538884163, -0.03224455937743187, 0.007354612462222576, -0.02193599008023739, 0.02888014353811741, 0.014911090023815632, -0.012495439499616623, -0.0011556767858564854, 0.024291081354022026, -0.031383268535137177, 0.011344809085130692, 0.004067578352987766, -0.007085459306836128, 0.002269298303872347, -0.008155343122780323, -0.007045086473226547, -0.023618197068572044, 0.03488226234912872, -0.024990878999233246, -0.03340191766619682, -0.03184083104133606, 0.013915223069489002, 0.01932520419359207, -0.0014517453964799643, 0.04702107235789299, 0.017683368176221848, -0.004370376002043486, -0.014897632412612438, 0.019109880551695824, -0.009137752465903759, 0.004259350243955851, -0.0051139118149876595, 0.016391433775424957, 0.020778631791472435, -0.02722485177218914, 0.019311746582388878, -0.00236350204795599, 0.008660005405545235, 0.0005055034416727722, -0.030898792669177055, -0.021141987293958664, 0.019446322694420815, -0.00960204191505909, -0.009016633965075016, -0.014440071769058704, -0.005571472458541393, -0.010496976785361767, -0.019890425726771355, -0.012138811871409416, 0.014964920468628407, -0.0020304247736930847, -0.012111896649003029, 0.02511199750006199, 0.015126412734389305, 0.0098981112241745, -0.010214366018772125, -0.03073730133473873, 0.01610882207751274, -0.02925695851445198, -0.0156647190451622, -0.0011211915407329798, -0.009702974930405617, 0.024089215323328972, 0.014130545780062675, -0.027507461607456207, -0.043414417654275894, -0.008713836781680584, -0.021007411181926727, -0.012165727093815804, -0.004346825182437897, 0.010227823629975319, 0.010752672329545021, -0.02807268314063549, 0.005002886056900024, 0.03114103153347969, -0.011990777216851711, 0.001305393292568624, -0.028637906536459923, -0.007805444300174713, -0.021411141380667686, -0.018194759264588356, -0.0043367319740355015, 0.013477848842740059, -0.019042592495679855, 0.0017999623669311404, 0.0057733370922505856, -0.011856201104819775, 0.014466986991465092, 0.031787000596523285, -0.014453529380261898, -0.02855715900659561, -0.007327697239816189, 0.0025031252298504114, -0.021814871579408646, -0.008444683626294136, 0.0013508128467947245, -0.032890528440475464, 0.0030296563636511564, -0.0027991938404738903, 0.000459663278888911, -0.005325870122760534, 0.015166785567998886, 0.02559647336602211, -0.006274634972214699, 0.019971171393990517, -0.00894261710345745, -0.013181780464947224, -0.01073248591274023, 0.0111160296946764, 0.0013676349772140384, 0.006348652299493551, 0.011593775823712349, 0.013262526132166386, 0.004797656554728746, 0.008787853643298149, -0.013753730803728104, 0.0156647190451622, -0.024627521634101868, 0.00993848405778408, 0.018383167684078217, -0.004700088407844305, 0.018813813105225563, -0.007253679912537336, -5.367294215830043e-05, -0.021626463159918785, -0.004538596607744694, 0.01687590964138508, 0.005786794703453779, -0.036470264196395874, -0.00408103596419096, 0.014480444602668285, -0.03173316642642021, -0.02578488178551197, -0.004905317910015583, -0.027722785249352455, -0.019459780305624008, -0.02877248264849186, 0.0026545238215476274, -0.020697884261608124, -0.011587047018110752, 0.012656931765377522, -0.007092188112437725, -0.016081906855106354, 0.015651261433959007, -0.010369128547608852, -0.007193120662122965, -0.013794103637337685, 0.2534346878528595, -0.03687399625778198, -0.016889367252588272, 0.0006182113429531455, -0.005100454203784466, 0.01438624132424593, 0.03464002162218094, 0.0023433153983205557, 0.011405369266867638, 0.02005191706120968, 0.02674037590622902, -0.006355381105095148, -0.03956552594900131, -0.0037614167667925358, 0.013524950481951237, -0.023443248122930527, -0.037842947989702225, -0.010153806768357754, -0.0330251045525074, -0.026565425097942352, 0.025031251832842827, 0.010624824091792107, -0.00503316568210721, -0.009433821775019169, 0.00907046440988779, -0.0026545238215476274, -0.01274440623819828, 0.0067389244213700294, 0.008081326261162758, 0.006873500999063253, -0.015395565889775753, -0.00184706412255764, -0.0020051917526870966, -0.00026641966542229056, -0.04543306678533554, -0.014332410879433155, 0.046079035848379135, 0.0028614355251193047, 0.009528025053441525, -0.01341056078672409, -0.015341735444962978, -0.005847354419529438, -0.013074119575321674, -0.007818901911377907, -0.011580318212509155, 0.030575810000300407, -0.00947419460862875, 0.0031389996875077486, -0.03800443932414055, 0.02153225988149643, -0.010429688729345798, -0.006897051818668842, 0.030629640445113182, 0.01740075834095478, 0.022191684693098068, -0.005823803599923849, 2.4759996449574828e-05, -0.004794292151927948, 0.004767376929521561, -0.0019967807456851006, -0.0033492757938802242, 0.018046725541353226, 0.00401711231097579, 0.022985687479376793, -0.018961846828460693, 0.002720130141824484, -0.00940017681568861, 0.0021481793373823166, -0.004269443452358246, -0.011546674184501171, 0.005204751156270504, -0.01865231990814209, -0.0167278740555048, -0.00384552706964314, -0.04694032669067383, -0.006654813885688782, 0.05455736443400383, 0.044302623718976974, 0.006479864474385977, 0.023927723988890648, -0.006116507574915886, -0.00947419460862875, -0.015974245965480804, 0.010517163202166557, 0.0044578504748642445, -0.023187551647424698, 0.006543788593262434, -0.023174094036221504, -0.0024089214857667685, 0.003906086552888155, -0.019257914274930954, -0.011183317750692368, -0.00039447774179279804, -0.015005293302237988, 0.008135156705975533, 0.0024005104787647724, 0.014305495657026768, 0.02072479948401451, 0.010335484519600868, 0.010853604413568974, -0.0024341547396034002, 0.0567375048995018, 0.009756805375218391, 0.02438528463244438, -0.005571472458541393, -0.031598590314388275, -0.0008116652606986463, -0.0018941659945994616, -0.014655394479632378, -0.01816784404218197, 0.009904840029776096, -0.05781411752104759, 0.014318953268229961, -0.009218499064445496, -0.01640489138662815, 6.854996900074184e-05, -0.0075228335335850716, -0.027171021327376366, 0.01717197708785534, -0.01902913488447666, 0.03544748201966286, -0.037896778434515, -0.011425555683672428, 0.013020288199186325, -0.011681251227855682, -0.01126406341791153, -0.008249547332525253, -0.019850052893161774, 0.0057329642586410046, -0.03711623325943947, 0.0503854900598526, -0.015758922323584557, 0.03630877286195755, 0.011889845132827759, 0.0022676161024719477, 0.0027554563712328672, 0.002464434364810586, 0.023995012044906616, 0.01655292510986328, -0.0009016633848659694, 0.00903009157627821, -0.019042592495679855, 0.0191637109965086, -0.006728831212967634, -0.002127992920577526, -0.01230030320584774, 0.006190524902194738, 0.022366635501384735, -0.003906086552888155, 0.019082965329289436, -0.04411421716213226, -0.01374027319252491, -0.007482460234314203, 0.013094305992126465, 0.00791983399540186, 0.01943286508321762, -0.003310584928840399, -0.010826689191162586, 0.002745363162830472, 0.014332410879433155, -0.03412863239645958, -0.006456313654780388, 0.006543788593262434, -0.014601564034819603, -0.035178329795598984, -0.032486796379089355, -0.1721504181623459, 0.01898876205086708, 0.02976834960281849, -0.030010586604475975, 0.0009992314735427499, -0.005948286969214678, 0.020146120339632034, 0.0051307338289916515, 0.02688840962946415, 0.007731426972895861, 0.02906855009496212, 0.01960781402885914, -0.007630494423210621, -0.016229940578341484, 0.005080267786979675, 0.007018170785158873, -0.03830050677061081, 0.0149783780798316, 0.036201111972332, 0.004700088407844305, 0.033697985112667084, -0.0275209192186594, -0.02626935765147209, 0.008121699094772339, -0.013565324246883392, 0.029741434380412102, -0.02282419614493847, -0.009487652219831944, -0.022447381168603897, -0.016983570531010628, -0.011519758962094784, -0.01398251112550497, 0.028018852695822716, 0.026255900040268898, 0.008760938420891762, -0.022945314645767212, -0.019850052893161774, 0.005679133348166943, -0.03216381371021271, -0.004370376002043486, -0.003805154003202915, 0.017239265143871307, 0.0349360927939415, 0.02197636291384697, -0.006611076649278402, 0.01069211307913065, 0.015260988846421242, -0.001393709215335548, 0.0037916963919997215, 0.0016409937525168061, -0.0022827559150755405, -0.03076421655714512, 0.023254841566085815, 0.0034031064715236425, 0.006432762835174799, 0.00030637209420092404, -0.0033778732176870108, 0.0033963776659220457, 0.01522061601281166, 0.0066985515877604485, 0.006678365170955658, -0.023402875289320946, 0.03065655566751957, -0.02091320790350437, -0.001737720682285726, -0.025757966563105583, -0.007866003550589085, 0.02707681618630886, -0.00657406821846962, 0.0205363929271698, 0.023147178813815117, -0.010584451258182526, -0.00024938731803558767, -0.0234970785677433, 0.019311746582388878, -0.0010177356889471412, -0.009790449403226376, 0.008390852250158787, 0.03364415466785431, -0.007240222301334143, -0.009487652219831944, 0.026094406843185425, -0.03103337064385414, -0.011452470906078815, -0.0033526401966810226, 0.0156647190451622, 0.005951651372015476, 0.001964818686246872, 0.004700088407844305, -0.007354612462222576, 0.0334557481110096, -0.03612036630511284, -0.021734124049544334, -0.019809680059552193, 0.004286265466362238, 0.021545717492699623, -0.009689517319202423, -0.0005172789096832275, -0.02005191706120968, 0.013424018397927284, -0.0013230564072728157, -0.0014475397765636444, -0.012643474154174328, 0.010725757107138634, 0.01305393222719431, -0.006584161426872015, -0.004276172257959843, 0.023039517924189568, 0.04664425924420357, -0.0026881680823862553, -0.007637223694473505, -0.0012111896649003029, 0.015112955123186111, 0.02563684619963169, -0.013208695687353611, 0.029714519158005714, -0.033671069890260696, -0.01888110116124153, 0.015745464712381363, -0.014897632412612438, -0.009756805375218391, 0.007933291606605053, 0.0019294923404231668, 0.005315776914358139, -0.01613573729991913, -0.023443248122930527, -0.03827359154820442, -0.012919356115162373, -0.008747480809688568, 0.018934931606054306, 0.0010984817054122686, 0.03184083104133606, 0.003862349083647132, 0.022689618170261383, -0.029203128069639206, 0.022447381168603897, -0.01987696811556816, -0.045971374958753586, -0.009528025053441525, 0.028045767918229103, 0.0102681964635849, 0.019257914274930954, -0.009568397887051105, -0.00021910756186116487, -0.00845814123749733, 0.033697985112667084, 0.00849851407110691, 0.0019143525278195739, 0.020509477704763412, -0.01828896254301071, 0.009144481271505356, 0.004562147427350283, -0.012993372976779938, 0.01640489138662815, 0.028422582894563675, 0.0074353585951030254, 0.0062073469161987305, -0.005389793775975704, -0.002457705559208989, -0.0156647190451622, -0.02009228989481926, -0.008639818988740444, 0.006600983440876007, -0.014884174801409245, 0.016848992556333542, -0.030871877446770668, 0.010416231118142605, -0.003118813270702958, 0.019553983584046364, -0.012004234828054905, -0.031167946755886078, -0.011055469512939453, -0.017037400975823402, 0.011546674184501171, -0.007630494423210621, -0.04266079142689705, -0.04928195849061012, -0.014951462857425213, -0.002745363162830472, -0.009299244731664658, 0.046294357627630234, 0.00569932023063302, 0.01843699812889099, -0.019217541441321373, -0.04540615156292915, 0.007630494423210621, -0.009366532787680626, -0.011916760355234146, -0.0347207710146904, 0.002827791264280677, 0.025098539888858795, 0.002149861538782716, -0.03717006370425224, -0.025179287418723106, 0.012825152836740017, -0.007980394177138805, 0.016539467498660088, -0.0017780936323106289, -0.013646069914102554, 0.028422582894563675, -0.03964627534151077, -0.01806018315255642, -0.027722785249352455, -0.030629640445113182, 0.03956552594900131, 0.0009756805375218391, -0.008343750610947609, -0.01869269274175167, 0.024089215323328972, -0.032379135489463806, -0.018046725541353226, 0.009346346370875835, 0.0026393840089440346, 0.0023752774577587843, 0.01363261230289936, -0.03299818933010101, -0.0017949157627299428, 0.003221428021788597, 0.024627521634101868, -0.01617611013352871, -0.02235317789018154, 0.02216476947069168, -0.036066535860300064, -0.012677118182182312, 0.01617611013352871, 0.03095262311398983, -0.027722785249352455, -0.013504764065146446, -0.08639819175004959, 0.024250708520412445, 0.004982699640095234, 0.0023668664507567883, 0.0004802703333552927, -0.006971069145947695, 0.027467088773846626, -0.015018750913441181, -0.006712009198963642, -0.014157461002469063, -0.025879085063934326, 0.011425555683672428, -0.0019244457362219691, -0.012273387983441353, -0.0109545374289155, -0.008861870504915714, 0.013578781858086586, 0.009184855036437511, 0.019769305363297462, 0.004706817679107189, 0.010126890614628792, 0.0349360927939415, 0.01820821687579155, 0.01483034435659647, 0.0027150833047926426, 0.019446322694420815, -0.016189567744731903, 0.027009528130292892, -0.007933291606605053, 0.018665777519345284, -0.0039262729696929455, -0.037950608879327774, -0.03313276544213295, 0.013491306453943253, -0.01442661415785551, -0.007273866795003414, 0.025731051340699196, 0.02267616055905819, -0.0003427498450037092, 0.02828800678253174, -0.018033267930150032, -0.01820821687579155, 0.021505344659090042, -0.0026292908005416393, 0.004414113238453865, -0.0034367504995316267, -0.032002322375774384, 0.009662602096796036, 0.012125354260206223, -0.0038253406528383493, 0.018867643550038338, 0.02042873203754425, -0.017225807532668114, -0.01197059080004692, -0.012636745348572731, -0.03851582854986191, 0.023039517924189568, -0.0023517266381531954, -0.005396522581577301, -0.0052653104066848755, 0.028610991314053535, -0.0004171875480096787, 0.02955302596092224, 0.009911568835377693, -0.007852545939385891, 0.005251852795481682, -0.018571574240922928, 0.007960207760334015, 0.015799295157194138, -0.018100555986166, -0.027911191806197166, 0.016633670777082443, -0.0068499501794576645, 0.013524950481951237, -0.011761996895074844, 0.04292994365096092, 0.002752091968432069, 0.02231280505657196, -0.005574836861342192, 0.005806981585919857, 0.04193407669663429, -0.0017730470281094313, -0.017589164897799492, 0.015610888600349426, 0.027171021327376366, -0.007280595600605011, -0.002033789176493883, -0.0010110068833455443, -0.005504183936864138, -0.014615021646022797, -0.006503415293991566, 0.018867643550038338, 0.029391534626483917, 0.007859274744987488, 0.01327598374336958, 0.023039517924189568, 0.0013087576953694224, -0.01666058599948883, 0.025973288342356682, -0.0014298766618594527, 0.021182360127568245, -0.01113621611148119, -0.00025821890449151397, -0.0023836884647607803, -0.019782762974500656, 0.0034451615065336227, -0.01239450741559267, -0.03722389414906502, 0.02034798637032509, 0.026202069595456123, 0.004955784417688847, -0.0014256711583584547, -0.02390080876648426, 0.02655196748673916, -0.031975407153367996, -0.0016527691623196006, -0.0029438636265695095, -0.01414400339126587, -0.032379135489463806, 0.02504470944404602, -0.003347593592479825, 0.004124773666262627, 0.0140767153352499, -0.032379135489463806, -0.008397581055760384, 0.002619197592139244, 0.025623388588428497, -0.04416804760694504, 0.017077773809432983, 0.00292199500836432, 0.0023483620025217533, 0.010261467657983303, -0.005194657947868109, -0.006405847147107124, -0.02127656526863575, -0.0069037810899317265, -0.004057485144585371, 0.01049024797976017, -0.005386429373174906, 0.06362783163785934, 0.026134779676795006, -0.011190046556293964, 0.018975304439663887, 0.0026208797935396433, 0.003788331989198923, -0.015489769168198109, 0.012919356115162373, -0.0013466073432937264, -0.016054991632699966, -0.018033267930150032, -0.021249648183584213, -0.015462853945791721, -0.015543600544333458, -0.008424496278166771, -0.0030380673706531525, -0.000619052501861006, 0.02722485177218914, 0.009743347764015198, -0.017629537731409073, 0.033859480172395706, -0.002016967162489891, 0.00192276353482157, 0.01274440623819828, -0.02341633290052414, -0.004750554915517569, 0.02729213982820511, -0.02574450895190239, 0.02485630288720131, -0.004010383505374193, 0.0032500254455953836, 0.0028530245181173086, -0.03194849193096161, -0.010624824091792107, -0.018302420154213905, -0.012064794078469276, 0.0014895950444042683, -0.004259350243955851, 0.0009723161347210407, 0.02356436662375927, 0.015557058155536652, 0.028691736981272697, -0.029499195516109467, -0.010786316357553005, 0.010328755713999271, 0.01527444738894701, -0.013336543925106525, -0.0026057399809360504, 0.005174471065402031], "742d11db-0a2b-4ecf-bb72-3544da7c3f52": [-0.021159475669264793, 0.007092914544045925, -0.022955505177378654, -0.024442844092845917, -0.004423425067216158, 0.017048250883817673, -0.03269335627555847, -0.0034254358615726233, 0.0065491944551467896, -0.011646131053566933, 0.009394077584147453, 0.011007698252797127, -0.00960454996675253, 0.00030365007114596665, -0.00983606930822134, 0.0007134132320061326, 0.012705507688224316, 0.015785418450832367, 0.022745033726096153, -0.043188903480768204, 0.008341716602444649, -0.007976897992193699, -0.011940792202949524, -0.001997732324525714, -0.02169267274439335, 0.003991956822574139, 0.04111224412918091, -0.035639967769384384, 0.00827155914157629, 0.0013277290854603052, 0.027150919660925865, -0.0012540637981146574, -0.0002948803885374218, -0.03549965098500252, -0.007191135082393885, -0.014999655075371265, -0.003974417690187693, -0.012845822609961033, 0.01508384384214878, 0.01645892858505249, 0.016879873350262642, -0.011688224971294403, 0.008425905369222164, 0.004826830234378576, -0.005230235401540995, 2.8446638680179603e-05, -0.008117212913930416, 0.009008212015032768, 0.014298081398010254, 0.009225700050592422, 0.008453968912363052, 0.0140805933624506, -0.03089732490479946, -0.024793630465865135, 0.011477752588689327, 0.0014522584388032556, -0.02263278141617775, 0.013694727793335915, 0.0005305654485709965, -0.024541063234210014, 0.02202942781150341, 0.007345481310039759, -0.017286786809563637, 4.0395323594566435e-05, -0.030757009983062744, -0.009779943153262138, -0.019854547455906868, 0.01438227016478777, -0.021482199430465698, -0.006622859742492437, 0.006864903029054403, 0.02541101537644863, 0.0013882397906854749, -0.014901435002684593, 0.050597526133060455, -0.017118409276008606, -0.02194523997604847, -0.005237251054495573, 0.0094922985881567, 0.006970139220356941, -0.010614817030727863, 0.010965604335069656, 0.024849755689501762, -0.005935317371040583, 0.00022176319907885045, 0.015799449756741524, -0.004602326545864344, 0.02674400620162487, 0.015111907385289669, -0.0014645360643044114, -0.0050443182699382305, 0.023081788793206215, -0.006984170526266098, 0.000927831802982837, -0.004100700840353966, 0.0042796023190021515, -0.009934290312230587, 0.019138943403959274, -0.02966255508363247, -0.05065365508198738, 0.0005608208593912423, 0.017202598974108696, -0.01731484942138195, -0.009436172433197498, -0.030953451991081238, -0.009232715703547001, 0.03830594941973686, 0.0070683592930436134, -0.014213892631232738, -0.027740241959691048, -0.012944042682647705, 0.017777888104319572, -0.013182578608393669, -0.041589315980672836, -0.024148182943463326, 0.014354206621646881, 0.026687880977988243, -0.011996918357908726, 0.008839834481477737, -0.022394247353076935, 0.022127648815512657, 0.023643048480153084, 0.011456705629825592, -0.0005595053662545979, 0.01877412386238575, 0.010972619988024235, -0.004458503797650337, -0.00571081368252635, 7.9255951277446e-05, -0.0235728919506073, 0.027627989649772644, -0.004816306289285421, 0.010144761763513088, 0.015238190069794655, -0.019138943403959274, 0.002629149006679654, -0.009197637438774109, 0.01967213861644268, -0.019082816317677498, -0.01339305005967617, 0.016304582357406616, -0.001073408406227827, -0.02893291786313057, -0.01967213861644268, -0.006058092694729567, 0.017300818115472794, 0.00808213371783495, 0.009267794899642467, 0.0076331268064677715, 0.01273357030004263, 0.002122261794283986, -0.0029466114938259125, 0.006735111586749554, -0.0065456866286695, -0.007696268614381552, 0.014704993925988674, -0.0018363703275099397, 0.004788243677467108, -0.016234425827860832, -0.013694727793335915, 0.012677445076406002, 0.017721762880682945, 0.028989043086767197, -0.020457902923226357, 0.019616013392806053, 0.028820665553212166, -0.001679393113590777, 0.007443701848387718, 0.013056294992566109, -0.012361736036837101, 0.002802788745611906, 0.01658521220088005, -0.02006502076983452, 0.009190620854496956, -0.02215571142733097, 0.03283366933465004, -0.018016424030065536, 0.012417862191796303, -0.01431211270391941, -0.01081827376037836, -0.007254276890307665, -0.005240758880972862, 0.023839488625526428, 0.020079052075743675, -0.01268446072936058, -0.006780714262276888, 0.001221615937538445, 0.012333673425018787, -0.00880475528538227, -0.008355747908353806, -0.001899512019008398, 0.028399720788002014, 0.0017793674487620592, -0.01624845713376999, -0.606609046459198, -0.03143052011728287, 0.003300906391814351, -0.009976384229958057, 0.01602395437657833, 0.007464748807251453, 0.007976897992193699, 0.00494960555806756, -0.029241610318422318, 0.0010927016846835613, -0.012740586884319782, -0.0012198620242998004, 0.0022380214650183916, 0.012530114501714706, -0.012768649496138096, -0.018198832869529724, 0.0022994093596935272, -0.025172479450702667, 0.013470223173499107, 0.012109169736504555, -0.007366528734564781, 0.009674707427620888, -0.012965090572834015, -0.008482031524181366, 0.022773096337914467, -0.005310916341841221, 0.003409650409594178, 0.015588977374136448, -0.00737354438751936, 0.02893291786313057, -0.010769163258373737, 0.03008349984884262, -0.0026344109792262316, 0.0012295086635276675, 0.045967139303684235, -0.0002580477448645979, -0.006096679251641035, 0.042627643793821335, 0.007289355155080557, 0.034264881163835526, -0.007485796231776476, -0.02353079617023468, 0.013126452453434467, -0.005086412653326988, 0.015631072223186493, -0.0025870546232908964, 0.013680695556104183, -0.034264881163835526, 0.037183430045843124, 0.01442436408251524, -0.009380046278238297, -0.009590518660843372, 0.016571180894970894, -0.004791751503944397, 0.009316904470324516, 0.009148526936769485, 0.02069643698632717, -0.027501706033945084, 0.015182064846158028, -0.011540894396603107, -0.002366058761253953, -0.004882955923676491, 0.003613106906414032, 0.010853352025151253, -0.01009565219283104, -0.006401863880455494, -0.011877650395035744, 0.006093171425163746, 0.0031062194611877203, -0.014347190968692303, -0.011218170635402203, 0.009155542589724064, -0.012158280238509178, 0.0015346934087574482, 0.017904171720147133, 0.02073853090405464, 0.003127266652882099, -0.043525658547878265, -0.003925307188183069, 0.006619351916015148, 0.0032272411044687033, 0.006991186179220676, -0.00857323594391346, -0.00181883096229285, 0.006970139220356941, 0.008489047177135944, -0.03339492902159691, 0.01612217351794243, 0.017258724197745323, 0.008917007595300674, 0.01172330416738987, 0.008004960604012012, 0.0014654130209237337, -0.028792602941393852, -0.0027677100151777267, 0.024456875398755074, 0.005468770395964384, -0.011393563821911812, -0.013863105326890945, 0.005738876294344664, -0.01998083107173443, 0.0026870290748775005, 0.01718856580555439, -0.015266253612935543, -0.00691050523892045, -0.011996918357908726, -0.04675289988517761, 0.008152291178703308, 0.02482169307768345, 0.018535589799284935, -0.026561597362160683, 0.001559248543344438, -0.021075287833809853, -0.00525128236040473, 0.00303781614638865, -0.03552771359682083, 0.020864814519882202, 0.025312794372439384, 0.0035867977421730757, -0.0028168202843517065, 0.01624845713376999, 0.009225700050592422, 0.016304582357406616, 0.006100187078118324, -0.0045882947742938995, 0.03367555886507034, 0.012354720383882523, -0.023755300790071487, -0.022310057654976845, 0.0009199390769936144, -0.0010164055274799466, 0.005791494622826576, 0.023222103714942932, -0.0191950686275959, 0.013631585985422134, -0.004977668635547161, 0.004353267606347799, -0.004262062720954418, 0.020289523527026176, -0.023081788793206215, -0.016809716820716858, -0.028006840497255325, 0.0036481856368482113, -0.003592059714719653, -0.01195482350885868, -0.03154277428984642, 0.0072051663883030415, -0.0012058306019753218, -0.01941957324743271, 0.026393219828605652, -0.008839834481477737, 0.003900752170011401, -0.019321352243423462, 0.01833914779126644, 0.01796029880642891, 0.022253932431340218, -0.028694381937384605, -0.029887057840824127, 0.01056570652872324, -0.008987165056169033, 0.0004185328143648803, 0.009625596925616264, -0.02782442979514599, -0.004577771294862032, -0.04405885562300682, -0.04739835113286972, -0.017258724197745323, -0.017342912033200264, -0.011961839161813259, -0.030055437237024307, -0.013343940488994122, 0.0025046197697520256, 0.005135522689670324, 0.0016215132782235742, 0.006191391963511705, 0.011898697353899479, -0.0030132608953863382, -2.0458011931623332e-05, -0.0008094411459751427, -0.017581447958946228, -0.006187884137034416, -0.00959753431379795, 0.0029062707908451557, -0.014277033507823944, 0.0047531649470329285, 0.005163585767149925, 0.016472961753606796, 0.020093083381652832, 0.005454739090055227, 0.020219366997480392, -0.0321320965886116, 0.005058349575847387, 0.0022625767160207033, -0.007983913645148277, 0.04217863827943802, 0.002864176407456398, 0.005142538342624903, 0.011288328096270561, -0.005496833473443985, 0.03780081495642662, 0.02447090670466423, -0.01650102436542511, 0.02250649780035019, -0.025663582608103752, 0.030364129692316055, -0.019938737154006958, 0.0031939162872731686, -0.006766682490706444, 0.02626693621277809, 0.002580038970336318, -0.00013110667350701988, -0.026294998824596405, -0.029157420620322227, 0.006626368034631014, 0.005651179701089859, 0.013463207520544529, -0.013849074020981789, 0.012600271962583065, -0.02160848304629326, -0.009562456049025059, 0.008482031524181366, -0.014361223205924034, 0.0014057791559025645, -0.019616013392806053, -0.010088636539876461, -0.0003988010575994849, 0.010706021450459957, -0.013217656873166561, -0.007331450004130602, -0.00923973135650158, -0.027024636045098305, -0.009358999319374561, -0.018802186474204063, 0.004149810876697302, 0.024611221626400948, -0.028820665553212166, 0.00621594674885273, -0.022015396505594254, 0.011688224971294403, 0.005696781910955906, 0.021271727979183197, 0.005163585767149925, -0.03072894737124443, 0.013785932213068008, 0.007934803143143654, 0.018100613728165627, 0.03850238770246506, 0.01166016235947609, -0.004840861540287733, 0.0040656221099197865, -0.02447090670466423, -0.00494960555806756, -0.02173476666212082, 0.014648867771029472, -0.011449689976871014, -0.016486993059515953, 0.012165295891463757, 0.024063993245363235, 0.021412042900919914, 0.012719538994133472, 0.034433260560035706, 0.014150750823318958, 0.013000168837606907, 0.008783708326518536, 0.01693600043654442, -0.024246402084827423, -0.005030286498367786, -0.025382952764630318, -0.01352634932845831, 0.0016416835132986307, 0.006854379549622536, -0.015378504991531372, 0.02151026390492916, -0.014206876046955585, 0.003402634523808956, -0.01467693131417036, 0.0009392324136570096, -0.002574777230620384, 0.02803490310907364, 0.004809290636330843, -0.03134633228182793, -0.04697740450501442, 0.005994950886815786, 0.009709786623716354, 0.004739133175462484, -0.006177360191941261, 0.018703967332839966, 0.01693600043654442, -0.03639766573905945, 0.007976897992193699, 0.012880900874733925, 0.019054753705859184, 0.03810950741171837, 0.009737849235534668, -0.011351469904184341, -0.019349414855241776, 0.034264881163835526, -0.01842333748936653, -0.0267019122838974, -0.007485796231776476, 0.0327494814991951, -0.0067316037602722645, 0.006903489585965872, -0.00540913688018918, 0.051972612738609314, 0.007647158112376928, -0.01504174992442131, -0.000366572494385764, -0.015350442379713058, -0.032973986119031906, 0.021440105512738228, 0.00874161347746849, -0.01727275550365448, -0.01927925832569599, -0.016964063048362732, -0.01206707488745451, 0.00498117646202445, -0.005661703180521727, 0.01036926545202732, 0.002702814294025302, -0.009155542589724064, -0.013442160561680794, -0.03771662712097168, 0.004118240438401699, 0.039456531405448914, 0.022085554897785187, -0.011912728659808636, 0.005696781910955906, -0.026280967518687248, 0.0008528510807082057, -0.013322892598807812, -0.022660844027996063, 0.00846098456531763, -0.005609085317701101, 0.029690617695450783, -0.014115671627223492, 0.003565750550478697, 0.004149810876697302, 0.011491784825921059, 0.00030781564419157803, -0.007492811884731054, 3.129678589175455e-05, 0.018184801563620567, -0.025004101917147636, 0.014887403696775436, -0.014066562056541443, 0.011674193665385246, 0.0062405019998550415, 0.010179840959608555, -0.03134633228182793, 0.010951572097837925, 0.046219706535339355, 0.004812798462808132, -0.016697464510798454, 0.016178300604224205, -0.008832818828523159, -0.014859340153634548, 0.02705269865691662, -0.01015879400074482, 0.014957561157643795, 0.020022926852107048, 0.04804379865527153, -0.005633640568703413, 0.0053705498576164246, 0.017581447958946228, 0.018198832869529724, 0.012944042682647705, -0.015785418450832367, -0.00106376176699996, -0.024442844092845917, -0.00820841733366251, 0.0002913725038524717, -0.01920909993350506, -0.00021748799190390855, 0.018970564007759094, -0.00501625519245863, -0.038249824196100235, -0.028596162796020508, 0.021847018972039223, 0.02365707978606224, -0.0009129233658313751, 0.0018153231358155608, 0.015210127457976341, 0.008671456016600132, 0.025733739137649536, -0.014803214929997921, 0.000736214395146817, -0.021145444363355637, -0.004837353713810444, -0.02336241863667965, -0.015336411073803902, -0.01075513195246458, -0.010727068409323692, -0.001957391854375601, 0.008867897093296051, -0.02073853090405464, -0.011260265484452248, 0.0038165634032338858, 0.009267794899642467, 0.0026238872669637203, 0.033535245805978775, -0.01683777943253517, -0.0024783106055110693, 0.034433260560035706, -0.023713206872344017, -0.002162602264434099, -0.017076315358281136, -0.03976522386074066, -0.0066368915140628815, 0.005360026378184557, 0.012614303268492222, -0.010467486456036568, -0.01474708877503872, 0.0360889732837677, 0.007471764460206032, 0.0023116867523640394, 0.018409306183457375, -0.008973133750259876, -0.013322892598807812, 0.0016846549697220325, 0.0005033794441260397, 0.02546714060008526, -0.007394591346383095, -0.01769370026886463, -0.0045988187193870544, -0.03131826967000961, -0.002746662823483348, -0.0024204307701438665, -0.0024923421442508698, -0.010292092338204384, -0.0010242982534691691, 0.00959753431379795, -0.002131031360477209, 0.008706535212695599, 0.02507426030933857, -0.006001967005431652, -0.002725615631788969, -0.016234425827860832, 0.007773441728204489, 0.019728265702724457, -0.04439561069011688, -0.009113447740674019, -0.013294829986989498, 0.001116379862651229, 0.013849074020981789, -0.027880556881427765, 0.01666940189898014, 0.037520185112953186, -0.018353179097175598, 0.019531823694705963, -0.01791820302605629, -0.017455164343118668, -0.02027549222111702, 0.011007698252797127, 0.014340175315737724, 0.02632306143641472, -0.0037008037324994802, -0.016037985682487488, -0.0245130006223917, 0.0010646387236192822, -0.014690962620079517, 0.008657424710690975, -0.001258448581211269, -0.032384663820266724, -0.009099416434764862, 0.004970652982592583, 0.0013750853249803185, -0.015125938691198826, 0.003998972475528717, -0.03513483330607414, -0.004946097731590271, -0.0031465599313378334, -0.005258298013359308, 0.007513859309256077, 0.01645892858505249, -0.006465005688369274, -0.008973133750259876, 0.003136036451905966, 0.00808213371783495, -0.02263278141617775, 0.00013483378279488534, -0.00966769177466631, 0.007142024580389261, 0.01414373517036438, 0.014733057469129562, 0.027066729962825775, -0.004661960061639547, -0.003844626247882843, 0.00026002092636190355, 0.021271727979183197, -0.006921028718352318, 0.010116699151694775, -0.030757009983062744, 0.014761120080947876, 0.01796029880642891, 0.0026133637875318527, -0.018956532701849937, -0.019012659788131714, 0.007962866686284542, 0.03530321270227432, -0.011126966215670109, 0.00431818887591362, 0.02228199504315853, -0.04885762184858322, 0.005840604659169912, 0.003276351373642683, 0.017862077802419662, -0.019363446161150932, -0.003844626247882843, 0.012908964417874813, 0.03965296968817711, 0.014817246235907078, 0.02789458818733692, 0.025004101917147636, 0.02477959915995598, -0.000977818970568478, 0.013996404595673084, -0.00989921111613512, -0.0067912377417087555, 0.011084871366620064, 0.00018361510592512786, -0.02893291786313057, -0.008643393404781818, 0.016360709443688393, 0.002567761344835162, -0.009555439464747906, -0.009415125474333763, 0.004718086216598749, -0.003935831133276224, 0.015434631146490574, 0.015013686381280422, -0.011870634742081165, -0.02862422540783882, -0.018802186474204063, -0.05545242130756378, -0.005837096832692623, -0.019517792388796806, -0.02169267274439335, 0.035555776208639145, -0.0017951529007405043, -0.026126621291041374, 0.01637474074959755, -0.008159307762980461, -0.010663926601409912, 0.0022660845424979925, -0.05054140090942383, 0.057753585278987885, 0.0070332810282707214, 0.0022345136385411024, 0.020471934229135513, 0.011919744312763214, 0.0023309800308197737, -0.03404037654399872, -0.009723817929625511, -0.004988192114979029, 0.023727238178253174, 0.04478849470615387, -0.01109890267252922, -0.011982886120676994, 0.00408316170796752, 0.017721762880682945, -0.00846098456531763, -0.026421282440423965, 0.01693600043654442, 0.03008349984884262, 0.006794745568186045, -0.007724331226199865, 0.01206707488745451, -0.008966117165982723, 0.013870120979845524, -0.012894933111965656, -0.016318615525960922, -0.00985711719840765, -0.020850783213973045, -0.011989901773631573, 0.009485282003879547, -0.023516764864325523, 0.021706704050302505, -0.013484255410730839, -0.018591715022921562, 0.0005761677748523653, -0.002081921324133873, -0.04074742645025253, 0.012291578575968742, -0.011028745211660862, 0.02918548509478569, 6.0510770708788186e-05, 0.009976384229958057, 0.04268377274274826, 0.006535163149237633, 0.006001967005431652, -0.01401745155453682, -0.01714647188782692, 0.05264612287282944, -0.010579737834632397, -0.0025624996051192284, -0.021454136818647385, -0.0006467636558227241, 0.02125769667327404, 0.0011803985107690096, 0.00455321604385972, 0.0052933767437934875, -0.019868580624461174, -0.0007462995126843452, 0.012719538994133472, -0.014887403696775436, -0.0031220049131661654, -0.003399126697331667, 0.0047426410019397736, -0.012179327197372913, 0.0076611898839473724, -0.009162558242678642, 0.015350442379713058, -0.04094386845827103, -0.026463376358151436, 0.002252053003758192, -0.019265225157141685, 0.014220908284187317, -0.0087626613676548, -0.019181037321686745, 0.012158280238509178, 0.06375905871391296, -0.025944212451577187, 0.016262488439679146, -0.017132440581917763, -0.006051077041774988, 0.0033815873321145773, -0.014620805159211159, -0.013561428524553776, -0.020556122064590454, 0.03951265662908554, -0.011730319820344448, -0.021201571449637413, -0.026631753891706467, 0.0033956188708543777, 0.013982372358441353, -0.013926247134804726, 0.02318000979721546, 0.018198832869529724, -0.011337438598275185, 0.017370976507663727, 0.015715260058641434, -0.014690962620079517, -0.006882442161440849, 0.02344660833477974, 0.0008791601285338402, 0.0074366857297718525, -0.022646812722086906, 0.011912728659808636, -0.0017469195881858468, -0.00637380126863718, -0.014438396319746971, -0.016360709443688393, -0.014985623769462109, -0.02734735980629921, -0.0015978351002559066, -0.03064475953578949, -0.00786464661359787, -0.005128507036715746, 0.004721594043076038, -0.017539354041218758, -0.02528473176062107, 0.021243665367364883, -0.010916493833065033, 0.009969368577003479, 0.03982134908437729, -0.021847018972039223, 0.01036926545202732, -0.010986651293933392, -0.013940278440713882, 0.0013636847725138068, -0.021285759285092354, -0.03373168408870697, -0.016052016988396645, -0.01629055105149746, 0.00887491274625063, 0.0013592998730018735, -0.03210403397679329, -0.04290827363729477, 0.0026993064675480127, -0.05480697378516197, -0.023081788793206215, -0.02108931913971901, 0.007513859309256077, 0.01219335850328207, -0.0046654678881168365, 0.012944042682647705, 0.00010715449025155976, -0.004756672773510218, 0.007612079381942749, -2.3801450879545882e-05, -0.028876792639493942, 0.0001250775094376877, -0.041420936584472656, -0.008194386027753353, 0.004009496420621872, -0.0342087559401989, -0.033366866409778595, 0.04097193107008934, -0.008418889716267586, 0.0007748009520582855, 0.024835724383592606, -0.003662216942757368, -0.002993967616930604, -0.008320669643580914, 0.010207903571426868, -0.022997600957751274, 0.016964063048362732, 0.025102322921156883, -0.026196777820587158, -0.009225700050592422, -0.00591426994651556, -0.007976897992193699, -0.02455509454011917, 0.0254531092941761, 0.0026484422851353884, 0.003492085263133049, 0.018956532701849937, -0.01933538354933262, 0.019658107310533524, -0.014340175315737724, 0.001952130114659667, 0.023348387330770493, 0.0042796023190021515, -0.0031202509999275208, 0.016823748126626015, 0.010221934877336025, -0.005959872156381607, -0.022745033726096153, 0.006314167287200689, -0.020598217844963074, -0.006352753844112158, 0.015757355839014053, 0.0047531649470329285, 0.02722107619047165, 0.020626280456781387, 0.011176075786352158, -0.014277033507823944, 0.013996404595673084, 0.015504788607358932, 0.01082528941333294, -0.02476556785404682, 0.007096422370523214, 0.01756741665303707, -0.029297735542058945, -0.0008090026676654816, -0.002406399231404066, 0.0034692841582000256, -0.018409306183457375, -0.02246440388262272, -0.009387061931192875, -0.03917590156197548, 0.0002337118930881843, 0.013645617291331291, -0.011540894396603107, -0.000980449840426445, 0.001193552976474166, -0.0026309031527489424, -0.03468582406640053, -0.029606429859995842, 0.27479255199432373, -0.04574263468384743, 0.0014426117995753884, 0.027080761268734932, -0.022225869819521904, 0.01540656853467226, 0.019910674542188644, -0.001351407147012651, -0.005928301718086004, 0.025902116671204567, 0.0040375590324401855, 0.0001226658496307209, -0.005086412653326988, -0.002211712533608079, 0.017763856798410416, -0.01322467252612114, -0.03103763982653618, -0.009969368577003479, -0.02459719032049179, -0.010902462527155876, 0.013898183591663837, 0.00025103200459852815, 0.029045170173048973, -0.005605577491223812, 0.02186105027794838, -9.88232932286337e-05, -0.0031991780269891024, -0.009744864888489246, 0.01890040747821331, -0.009843084961175919, -0.024849755689501762, -0.007745378650724888, 0.011884666047990322, -0.02699657343327999, -0.01585557498037815, 0.004167350474745035, 0.026589659973978996, 0.013470223173499107, 0.02649143896996975, 0.0007660312694497406, -0.004668975714594126, -0.001172505784779787, 0.0037253587506711483, -0.005686258431524038, -0.007878677919507027, 0.03538740053772926, -0.010179840959608555, 0.001468920847401023, -0.0020222875755280256, 0.011625083163380623, -0.03089732490479946, -0.01208812277764082, 0.0350506454706192, 0.015617040917277336, 0.007047312334179878, 0.0001945772091858089, 0.02434462308883667, 0.015434631146490574, 0.01062884833663702, 0.017777888104319572, -0.002450247760862112, 0.04481655731797218, -0.033114299178123474, 0.01598185859620571, 0.0006616720929741859, -0.014971592463552952, -0.014298081398010254, 0.010642879642546177, -0.003774469019845128, -0.022899379953742027, 0.01002549473196268, -0.030785074457526207, -0.016402803361415863, -0.005142538342624903, -0.007885693572461605, -0.0321320965886116, 0.030925387516617775, 0.02593018114566803, 0.022941473871469498, 0.033759746700525284, 0.008678472600877285, 0.004774211905896664, 0.02653353475034237, 0.02499007061123848, -0.0033394929487258196, -0.022997600957751274, 0.01007460430264473, 0.007331450004130602, 0.01650102436542511, -0.010916493833065033, -0.013799963518977165, -0.013785932213068008, -0.004198921378701925, -0.009758896194398403, 0.001924067153595388, 0.0006748266168870032, 0.010011463426053524, -0.0033482625149190426, -0.012473988346755505, 0.008566220290958881, -0.01442436408251524, 0.02876454032957554, 0.025902116671204567, 0.023629017174243927, -0.015715260058641434, 0.017328880727291107, -0.021678641438484192, -0.0026835210155695677, 0.00833470094949007, -0.02682819589972496, 0.023390481248497963, -0.029297735542058945, 0.008945070207118988, 0.014536616392433643, -0.014648867771029472, 0.026968510821461678, -0.00574238458648324, -0.02104722522199154, 0.009415125474333763, -0.0019468682585284114, 0.005791494622826576, -0.03260916471481323, 0.01208812277764082, -0.00295713497325778, -0.005889715161174536, -0.008748630061745644, -0.017763856798410416, -0.002180141629651189, 0.018788155168294907, -0.04144899919629097, 0.024414779618382454, 0.005521388724446297, 0.03030800260603428, 0.0038832128047943115, -0.02121560275554657, 0.003285120939835906, 0.003788500325754285, -0.002911532763391733, 0.009422141127288342, 0.004577771294862032, 0.004342744126915932, 0.007408623117953539, -0.006770190317183733, -0.005851128604263067, -0.009611565619707108, -0.034012313932180405, 0.0070683592930436134, -0.020766595378518105, 0.02035968191921711, -0.004269078839570284, -0.02549520507454872, 0.012586239725351334, -0.01316153071820736, 0.009358999319374561, 0.015392537228763103, 0.007113961968570948, 0.009583503007888794, -0.03260916471481323, -0.003977925516664982, 0.018872344866394997, -0.025298763066530228, -0.013603522442281246, 0.03151471167802811, -0.02442881092429161, -0.013666664250195026, -0.010271045379340649, -0.18162351846694946, -0.00537756597623229, 0.0331704244017601, -0.01714647188782692, 0.04512524977326393, -0.005430183839052916, 0.03406843915581703, -0.0022292518988251686, -0.002402891404926777, 0.002350273309275508, 0.009457219392061234, -0.00558453006669879, -0.0020485965069383383, -0.025705676525831223, -0.009351983666419983, -0.005896730814129114, -0.027291234582662582, 0.012291578575968742, 0.046051327139139175, 0.03148664906620979, 0.043778225779533386, -0.012466972693800926, -0.0063106594607234, 0.017904171720147133, 0.0017206105403602123, 0.026561597362160683, 0.004567247815430164, -0.02413414977490902, 0.012116185389459133, 0.012544145807623863, 0.000683596299495548, -0.005644164048135281, 0.05786583572626114, 0.005924793891608715, 0.01593976467847824, -0.0182549599558115, -0.005009239539504051, -0.0010321909794583917, -0.0291012953966856, 0.006952599622309208, -0.020850783213973045, 0.028792602941393852, 0.006857887376099825, -0.025256669148802757, -0.0059212855994701385, 0.0009208160918205976, 0.006370293442159891, -0.004002480302006006, -0.0070402966812253, -0.008341716602444649, 0.017090346664190292, -0.026898352429270744, -0.008924023248255253, 0.002487080404534936, 0.014733057469129562, 0.014396301470696926, 0.018830250948667526, 0.02040177583694458, -0.01129534374922514, 0.00567924277856946, -0.014298081398010254, -0.00591426994651556, 0.04038260877132416, 0.012375768274068832, -0.006489560939371586, -0.020289523527026176, -0.02000889554619789, 0.006447466555982828, -0.004314681049436331, 0.007605063728988171, 0.004384838510304689, -0.011477752588689327, -0.005156570114195347, -0.02926967293024063, -0.0003898121358361095, -0.005998459178954363, -0.03103763982653618, 4.562972389976494e-05, 0.020303556695580482, -0.01706228405237198, -0.027796367183327675, 0.04330115765333176, -0.024849755689501762, -0.020906910300254822, 0.025663582608103752, 0.0167956855148077, -0.0018451400101184845, -0.02146816812455654, -0.03168308734893799, 0.000422259938204661, 0.031655024737119675, -0.045153312385082245, -0.0024011374916881323, -0.023123884573578835, 0.004360283259302378, 0.022169742733240128, 0.0012286317069083452, 0.011568957939743996, -0.005486309994012117, -0.007822551764547825, 0.009323920123279095, -0.03025187738239765, -0.0071595641784369946, 0.02532682754099369, 0.01756741665303707, 0.025004101917147636, 0.0025467141531407833, 0.03460163623094559, 0.030448317527770996, 0.022745033726096153, -0.00846098456531763, 0.027361391112208366, 0.00893805455416441, 0.0037534215953201056, 0.02649143896996975, 0.03625735267996788, 0.013119436800479889, -0.0031728690955787897, 0.02194523997604847, 0.007745378650724888, 0.0016206363216042519, 0.007801504340022802, -0.000683596299495548, 0.031262144446372986, -0.001367192598991096, -0.019223131239414215, -0.05267418548464775, -0.007822551764547825, 0.007682236842811108, 0.03926008939743042, -0.0065772575326263905, 0.037267617881298065, -0.004658452235162258, 0.014662900008261204, 0.0014426117995753884, 0.01808658055961132, -0.02319404110312462, -0.03112182952463627, 0.0007726085023023188, -0.01650102436542511, 9.739822417031974e-05, 0.017090346664190292, -0.004212952684611082, -0.0269123837351799, -0.0016557149356231093, 0.021959271281957626, 0.0006621105712838471, -0.006065108347684145, 0.019321352243423462, -0.017174534499645233, 0.011028745211660862, -0.01568719744682312, -0.02622484229505062, 0.04703352972865105, 0.0052442667074501514, 0.003237764583900571, 0.005773955024778843, -0.0013838550075888634, -0.018746061250567436, -0.026435313746333122, 0.005033794324845076, -0.010299108922481537, -0.012340689077973366, -0.015757355839014053, 0.015097876079380512, -0.018928470090031624, -0.014648867771029472, 0.013708759099245071, -0.0007848860695958138, -0.00786464661359787, -0.0006616720929741859, -0.034826140850782394, -0.0152802849188447, 0.013386034406721592, 0.007135008927434683, -0.03322655335068703, -0.04534975439310074, 0.0006638645427301526, 0.0005130260833539069, -0.005668719299137592, 0.02893291786313057, 0.020457902923226357, 0.003207947826012969, 0.01504174992442131, -0.021327853202819824, 0.013154515065252781, 0.0016864088829606771, 0.0047426410019397736, 0.01868993602693081, 0.017174534499645233, 0.002564253518357873, -0.009267794899642467, -0.02156638912856579, -0.009625596925616264, 0.016402803361415863, -0.01052361261099577, 0.002231005812063813, 0.025958243757486343, -0.014354206621646881, 0.014178813435137272, -0.018675902858376503, -0.020977066829800606, -0.022310057654976845, -0.006980662699788809, 0.04565844684839249, -0.015757355839014053, -0.006682493723928928, -0.02768411487340927, 0.000525742128957063, 0.004451488144695759, 0.032973986119031906, -0.008931038901209831, 0.0011111180065199733, -0.00022538068878930062, -0.0021783877164125443, -0.029325800016522408, -0.017777888104319572, 0.005556467454880476, 0.0023678126744925976, -0.030504444614052773, -0.004121748264878988, 0.010376282036304474, -0.018535589799284935, -0.0004259870620444417, -0.0010760393925011158, 0.021524295210838318, -0.01658521220088005, -0.03446132317185402, -0.08626555651426315, 0.01358949113637209, 0.029213547706604004, 0.01658521220088005, 0.014929497614502907, 0.020640311762690544, 0.014129702933132648, 0.012109169736504555, -0.004654944408684969, -0.011554926633834839, -0.03201984241604805, -0.009050306864082813, 0.02421833947300911, -0.025509236380457878, -0.01202498096972704, -0.04243120551109314, 0.005840604659169912, 0.007184119429439306, -0.008496062830090523, 0.009548423811793327, 0.016964063048362732, 0.018746061250567436, 0.0070332810282707214, 0.02207152172923088, -0.03642572835087776, 0.014031482860445976, 0.006465005688369274, 0.002066135872155428, -0.01292299572378397, 0.004160334821790457, -0.0006015998078510165, -0.03535933792591095, 0.00418839743360877, 0.014704993925988674, -0.0018574175192043185, -0.004419917240738869, 0.003792008152231574, 0.0235728919506073, 0.010713037103414536, 0.03586446866393089, -0.034180693328380585, -0.03277754411101341, 0.019517792388796806, -0.003967401571571827, -0.0005130260833539069, -0.0012172311544418335, -0.009871148504316807, 0.015799449756741524, 0.03412456810474396, 0.015336411073803902, 0.02957836538553238, 0.008040039800107479, 0.0003718342923093587, -0.006899981759488583, -0.0042971414513885975, -0.011049793101847172, 0.01281775999814272, 0.013673679903149605, 0.00204158085398376, -0.017904171720147133, 0.023081788793206215, 0.013736821711063385, -0.006208931095898151, -0.018633808940649033, -0.019531823694705963, 0.003167607355862856, -0.03204790875315666, 0.0016565920086577535, 0.015210127457976341, -0.02396577224135399, -0.0145506476983428, 0.004893479868769646, -0.01662730798125267, 0.002060874132439494, 0.013701743446290493, 0.028596162796020508, -0.00025563608505763113, 0.008138259872794151, -0.015125938691198826, 0.028904855251312256, -0.006671970244497061, 0.0040796538814902306, -0.02820328064262867, 0.028820665553212166, 0.024891851469874382, -0.026729974895715714, -0.013007184490561485, 0.03785694018006325, -0.013940278440713882, 0.012284562923014164, -0.009744864888489246, 0.015827512368559837, 0.019391508772969246, 0.015420599840581417, 0.00923973135650158, 0.025691645219922066, 0.007047312334179878, -0.015799449756741524, 0.03642572835087776, 0.005437199492007494, 0.024583157151937485, 0.013196609914302826, 0.00034442904870957136, -0.014803214929997921, -0.017595479264855385, -0.002434462308883667, -0.016683433204889297, -0.057585205882787704, -0.026729974895715714, 0.006994694005697966, -0.020640311762690544, 0.0014899680390954018, -0.016037985682487488, 0.002985198050737381, -0.0067912377417087555, 0.010762147605419159, 0.012249484658241272, -0.01770773157477379, -0.02382545731961727, 0.021524295210838318, 0.008096165955066681, 0.02841375209391117, 0.021243665367364883, -0.018535589799284935, 0.028708413243293762, -0.014578710310161114, 0.009660676121711731, -0.022702939808368683, 0.01251608319580555, 0.022829223424196243, -0.003767453134059906, 0.029438050463795662, -0.024667346850037575, -0.019489729776978493, 0.0037043115589767694, 0.013042263686656952, 0.009218684397637844, 0.0152802849188447, 0.009695754386484623, 0.05649074912071228, 0.006159821059554815, -0.0037849924992769957, -0.006001967005431652, -0.007675221189856529, 0.014010435901582241, 0.017034219577908516, 0.00837679486721754, -0.019124912098050117, 0.002585300710052252, 0.018156738951802254, 0.009653660468757153, 0.0011549664195626974, -0.030757009983062744, -0.010186856612563133, -0.0009287087596021593, -0.028526004403829575, 0.016388772055506706, -0.010769163258373737, 0.0023029171861708164, 0.022352151572704315, 0.00287119229324162, -0.010488533414900303, 0.0055354200303554535, -0.009990415535867214, -0.017076315358281136, 0.011126966215670109, -0.01424897089600563, 0.00037819231511093676, 0.005082904826849699, -0.009120464324951172, 0.004181381780654192, -0.033198487013578415, -0.03204790875315666, -0.02271697111427784, -0.007591032423079014, -0.0025870546232908964, 0.0035832899156957865, -0.0010620078537613153, 0.0061808680184185505, -0.0026273950934410095, 0.03210403397679329, -0.03704311326146126, -0.023306293413043022, -0.016430865973234177, -0.009969368577003479, 0.0033482625149190426, 0.008517109788954258, -0.03737987205386162], "342e8fc2-89cb-4b43-b0c9-5f505ec39829": [-0.025731390342116356, -0.005990739446133375, -0.021920347586274147, -0.026512790471315384, -0.014736944809556007, 0.00880104023963213, -0.04622602462768555, -0.021755842491984367, 0.010864212177693844, -0.016080405563116074, 0.0017632925882935524, 0.013071327470242977, -0.002351056784391403, 0.0030759088695049286, 0.0031461662147194147, -0.006727586500346661, 0.02074139192700386, 0.007766027003526688, 0.035917017608881, -0.04455355182290077, 0.013146725483238697, -0.007306782528758049, -0.00039455597288906574, -0.007848279550671577, -0.03410745784640312, 0.007395889610052109, 0.04855651780962944, -0.01207744050770998, -0.007827716879546642, 0.008136164397001266, 0.021344579756259918, 0.016642466187477112, -0.01784883812069893, -0.02475806698203087, -0.004266859497874975, 0.0037253624759614468, 0.02420971542596817, 0.003780197585001588, -0.005315581802278757, 0.016464252024888992, 0.025196747854351997, 0.003961839247494936, -0.0008383779204450548, 0.016546504572033882, -0.004201742820441723, 0.002304789610207081, -0.00035214441595599055, 0.010452949441969395, -0.004948871675878763, 0.004345685243606567, -0.009561877697706223, 0.019397931173443794, -0.029062625020742416, -0.019521310925483704, 0.014229719527065754, -0.011823827400803566, -0.009308265522122383, 0.00890385638922453, 0.02048092521727085, -0.025155620649456978, 0.020124496892094612, 0.00852000992745161, -0.01205687690526247, -0.002822296228259802, 0.0011275475844740868, -0.007882551290094852, 0.006227215752005577, -0.018479442223906517, -0.03196888789534569, 0.005281309597194195, -0.003907003905624151, 0.03739756718277931, -0.009088925085961819, -0.004739812575280666, 0.03539608418941498, -0.021344579756259918, -0.02397666685283184, 0.01716339960694313, 0.005641165189445019, 0.012516121380031109, -0.010267880745232105, 0.0035608571488410234, 0.012591519393026829, -0.013496299274265766, 0.016395706683397293, 0.022071145474910736, -0.0008619399159215391, 0.018493151292204857, 0.012879404239356518, -0.000790825579315424, -0.026032984256744385, 0.022413864731788635, 0.02104298584163189, 0.007149131502956152, 0.02097444236278534, 0.008855875581502914, -0.01365395076572895, 0.019959991797804832, -0.033065591007471085, -0.03791850060224533, 0.00040847898344509304, -0.004900890868157148, -0.018081888556480408, 0.0007698339759372175, -0.03248982131481171, 0.0008790759020484984, 0.042963333427906036, -0.0031495934817939997, -0.008033348247408867, -0.035917017608881, -0.018835870549082756, 0.018040761351585388, 0.004876900464296341, -0.04852909967303276, -0.019726943224668503, 0.036739546805620193, 0.04565025493502617, -0.009212303906679153, 0.009630422107875347, -0.001491687260568142, 0.025649137794971466, 0.005552058108150959, 0.022071145474910736, -0.005795388948172331, 0.02097444236278534, 0.010069102980196476, 0.0002561829169280827, 0.0031444525811821222, -0.005593184381723404, -0.028980372473597527, 0.028623944148421288, -0.00873249676078558, -0.0011909507447853684, 0.015134499408304691, -0.010720270685851574, -0.004153762012720108, -0.0006134681752882898, 0.003632828127592802, -0.00448619993403554, -0.015449801459908485, 0.018479442223906517, -0.016340872272849083, 0.02098815143108368, -0.035917017608881, -0.009198594838380814, 0.013085035607218742, 0.0007625512080267072, 0.024854028597474098, -0.006391721311956644, 0.014476477168500423, 0.016080405563116074, -0.008753059431910515, -0.009034089744091034, 0.006806412246078253, -0.008924419060349464, 0.01767062395811081, -0.012646354734897614, 0.03561542555689812, -0.0105831827968359, -0.013270104303956032, 0.001797564560547471, 0.0273079015314579, 0.03764432668685913, -0.01709485612809658, 0.025841061025857925, 0.03547833859920502, -0.018863288685679436, 0.028788449242711067, 0.008382922038435936, -0.013133016414940357, 0.00862282607704401, 0.0020014827605336905, -0.01531271357089281, 0.006124400068074465, -0.004948871675878763, 0.02722564898431301, -0.001269776257686317, 0.0008542286814190447, 0.013359211385250092, 0.009945724159479141, -0.0011789555428549647, -0.0065733627416193485, 0.021714717149734497, 0.019219717010855675, -0.018301228061318398, -0.023620236665010452, 0.020193040370941162, 0.014983702450990677, -0.00435253931209445, -0.02033012919127941, -0.004074936732649803, 0.04606151953339577, 0.0029645247850567102, 0.0005504934233613312, -0.6093280911445618, -0.025279000401496887, 0.012776588089764118, -0.02368878200650215, 0.018040761351585388, 0.013393483124673367, 0.009404227137565613, 0.005264173727482557, -0.028733614832162857, -0.0104803666472435, 0.008019639179110527, -0.004205170087516308, 0.005829661153256893, 0.008835311979055405, -0.023154139518737793, -0.022125979885458946, 0.004986570682376623, 0.005997593514621258, -0.0010367268696427345, 0.018726201727986336, -0.008238980546593666, 0.02104298584163189, -0.014695818535983562, -0.004023528657853603, 0.02818526327610016, 0.011330311186611652, -0.005432106088846922, 0.004143480211496353, -0.003259263699874282, 0.046555034816265106, -0.008499447256326675, 0.014640983194112778, 0.005401261616498232, -0.007676919922232628, 0.05129827558994293, -0.0026063828263431787, -0.0074918512254953384, 0.032983336597681046, 0.0021968327928334475, 0.0417843796312809, -0.011275475844740868, -0.004784366115927696, 0.05203855037689209, -0.0010110229486599565, 0.029007790610194206, 0.002494998974725604, 0.006792703177779913, -0.04153762012720108, 0.024785485118627548, 0.0015328135341405869, -0.003336375579237938, -0.003999538253992796, 0.005260746460407972, -0.0004127629508730024, -0.00012455716205295175, 0.026416828855872154, 0.018849579617381096, -0.03418971225619316, 0.012509266845881939, -0.016409415751695633, -0.016395706683397293, -0.0019586426205933094, -0.013194706290960312, 0.010672289878129959, -0.03704113885760307, 0.00890385638922453, -0.02118007279932499, 0.010884775780141354, 0.011460544541478157, -0.014599856920540333, -0.019192298874258995, 0.004479345865547657, -0.007135422900319099, 0.0019946282263845205, 0.008129309862852097, 0.01701260358095169, 0.016066696494817734, -0.03915229067206383, -0.004236014559864998, 0.016299746930599213, 0.002755465917289257, -0.00045410351594910026, 0.0014728376409038901, 0.007560395170003176, 0.02064543031156063, 0.007676919922232628, -0.03904262185096741, 0.006001020781695843, 0.007903114892542362, 0.012680626474320889, 0.01195406075567007, 0.02057688683271408, 0.013228978030383587, -0.042963333427906036, -0.0028274371288716793, 0.023455731570720673, -0.016107823699712753, 0.0019020939944311976, -0.00602501118555665, -0.00518877524882555, -0.019891448318958282, 0.011104116216301918, 0.012975365854799747, -0.0009073502151295543, 0.004846055526286364, -0.007498705759644508, -0.021632462739944458, 0.01765691488981247, 0.03865877538919449, 0.0004337545542512089, -0.004708967637270689, -0.0156005984172225, -0.005380698479712009, -0.010144500993192196, 0.021618755534291267, -0.029007790610194206, 0.01699889451265335, 0.01557318028062582, -0.011604486964643002, -0.004283995367586613, 0.01771175116300583, -0.003379215719178319, 0.007971658371388912, 0.008561136201024055, 0.0028856992721557617, 0.019836612045764923, 0.025498341768980026, -0.01057632826268673, -0.013263249769806862, 0.004033809993416071, -0.020124496892094612, 0.004146907478570938, 0.018534278497099876, -0.010960173793137074, 0.00532929040491581, -0.001982633024454117, -0.007361617870628834, 0.010836794972419739, 0.02017933316528797, -0.009164323098957539, -0.01555947121232748, -0.02382586896419525, 0.01716339960694313, 0.009986850433051586, -0.008917565457522869, -0.04611635580658913, 0.00040483757038600743, -0.001359740155749023, -0.0335865244269371, 0.007176549173891544, -0.0026149507611989975, -0.005010561086237431, -0.010439240373671055, 0.022797711193561554, 0.000171145613421686, 0.01697147637605667, -0.010946465656161308, -0.033065591007471085, -0.016560213640332222, -0.0023253527469933033, 0.01760208047926426, -0.0074507249519228935, -0.02091960608959198, -0.010432385839521885, -0.028596526011824608, -0.04145536571741104, -0.015696559101343155, -0.009027235209941864, -0.022907380014657974, -0.03887811675667763, -0.019343096762895584, -0.012433868832886219, 0.013503153808414936, 0.0204123817384243, 0.0028856992721557617, 0.008917565457522869, -0.00889014732092619, 0.00019749219063669443, 0.012269362807273865, -0.020083371549844742, -0.005438960622996092, -0.00176157895475626, 0.012022605165839195, -0.009849762544035912, -0.0055726212449371815, 0.01012393832206726, 0.039508718997240067, 0.022523535415530205, -0.016025571152567863, 0.024936281144618988, -0.012982219457626343, 0.021632462739944458, 0.008849021047353745, -0.012865695171058178, 0.019726943224668503, 0.0013554561883211136, 0.018643949180841446, 0.0168618056923151, -0.016121530905365944, 0.022317903116345406, 0.01714969053864479, 0.006631624884903431, 0.019466474652290344, -0.026841802522540092, 0.016560213640332222, -0.016669882461428642, 0.010973882861435413, -0.014339389279484749, 0.020193040370941162, 0.005685718730092049, -0.0003073766711167991, -0.011844391003251076, -0.01704001985490322, -0.011714157648384571, 0.009932015091180801, 0.022496117278933525, -0.012625791132450104, 0.009979995898902416, 0.001231220318004489, 0.0008782190852798522, 0.02407262660562992, 0.00843775738030672, 0.002443591132760048, -0.022537242621183395, -0.009507042355835438, 0.002880558604374528, 0.029885152354836464, -0.011460544541478157, -0.01203631330281496, -0.032572075724601746, -0.00698805321007967, -0.016217492520809174, -0.012454431504011154, 0.002935393713414669, 0.030159328132867813, -0.023620236665010452, 0.016272328794002533, -0.013208414427936077, 0.010439240373671055, 0.022482408210635185, 0.018232684582471848, 0.023633945733308792, -0.020275292918086052, -0.01233790721744299, 0.009178032167255878, 0.04551316797733307, 0.04126344621181488, 0.013009637594223022, -0.004760375712066889, 0.011487962678074837, -0.02824009768664837, 0.012797151692211628, -0.036383118480443954, -0.0018918124260380864, -0.005164784844964743, -0.0007179976673796773, 0.009829198941588402, 0.019535019993782043, 0.015422383323311806, 0.025690264999866486, 0.011899225413799286, -0.001102700480259955, 0.023126721382141113, 0.012385888025164604, 0.0010530060390010476, -0.016231201589107513, -0.003677381668239832, -0.0139281265437603, -0.008095038123428822, -0.008759913966059685, -0.026485374197363853, -0.0022328183986246586, 0.026869218796491623, -0.012173401191830635, -0.00017885680426843464, -0.011248058639466763, -0.0012200819328427315, -0.006820120848715305, 0.02390812151134014, 0.01064487174153328, -0.018040761351585388, -0.03769915923476219, 0.026759549975395203, -0.008149873465299606, 0.00441080192103982, -0.01793109066784382, -0.0009313406189903617, -0.0174101572483778, -0.016162658110260963, 0.012193964794278145, 0.004589016083627939, 0.011145242489874363, 0.032544657588005066, 0.025512050837278366, -0.013304376043379307, -0.014545021578669548, 0.0032335598953068256, -0.000762122799642384, -0.025512050837278366, -0.02138570509850979, 0.009301410987973213, 0.005044833291321993, 0.010912192985415459, -0.01772546023130417, 0.036575041711330414, 0.014243428595364094, -0.014695818535983562, -0.00022255357180256397, 0.0010367268696427345, -0.0246483962982893, -0.001790710142813623, -0.013941834680736065, -0.010898484848439693, -0.02094702422618866, -0.032763998955488205, 0.009438498876988888, 0.010836794972419739, -0.02049463428556919, 0.015888482332229614, -0.009040944278240204, -0.02016562409698963, -0.0007167124422267079, -0.02752724103629589, -0.0074918512254953384, 0.03937163203954697, 0.013228978030383587, 0.0033706475514918566, 0.010987591929733753, -0.039919983595609665, 0.009623567573726177, -0.0019363659666851163, -0.03539608418941498, 0.005815952084958553, -0.010171919129788876, -0.006477401126176119, -0.01772546023130417, 0.0012106571812182665, -0.004986570682376623, 0.00510652270168066, 0.00518192071467638, -0.014449059963226318, -0.01363338716328144, 0.014311972074210644, -0.0021882648579776287, 0.0020494633354246616, -0.010884775780141354, 0.019754359498620033, 0.010062248446047306, -0.002073453739285469, -0.012385888025164604, -0.008012785576283932, 0.02414117194712162, 0.004434792324900627, -0.012982219457626343, -0.0010855644941329956, -0.023044468834996223, -0.0063745854422450066, 0.021961474791169167, 0.005863932892680168, 0.006131254136562347, 0.0025344116147607565, 0.03388811647891998, -0.0018523996695876122, 0.008252688683569431, 0.02017933316528797, 0.012714898213744164, 0.0084651755169034, -0.01691664196550846, 0.0038590230979025364, -0.014051505364477634, 0.01793109066784382, 0.013290667906403542, -0.023442022502422333, -0.01683438941836357, -0.004064654931426048, -0.014531312510371208, -0.026320869103074074, -0.011460544541478157, -0.006755004171282053, 0.0087050786241889, -0.02146795764565468, 0.005483514163643122, 0.0176157895475626, 0.003930994309484959, 0.022139688953757286, -0.024922572076320648, -0.009856617078185081, -0.019356805831193924, -0.00515793077647686, -0.05560283362865448, 0.009054652415215969, -0.015093373134732246, -0.011049280874431133, -0.010802523232996464, 0.015723977237939835, -0.015532054007053375, -0.03443646803498268, -0.013585406355559826, 0.005675437394529581, 0.007354763336479664, 0.03188663348555565, -0.009726383723318577, -0.015696559101343155, 0.04263432323932648, -0.01691664196550846, -0.01735532283782959, -0.02139941416680813, -0.035971853882074356, -0.005442387890070677, -0.004023528657853603, 0.015929609537124634, -0.011062989942729473, -0.010994446463882923, 0.04499223455786705, 0.00598045764490962, 0.0009544742060825229, 0.01734161376953125, 0.012577810324728489, -0.0153949661180377, -0.0036431096959859133, -0.002844572998583317, 0.019384222105145454, -0.0003774200158659369, -0.009102633222937584, -0.01709485612809658, -0.014997411519289017, -0.005682291463017464, -0.0076495022512972355, 0.015765102580189705, -0.026841802522540092, 0.03076251409947872, -0.003790479153394699, 0.01749240979552269, 0.009959432296454906, 0.003636255394667387, -0.0015799375250935555, 0.013153580017387867, -0.00770433759316802, 0.011042426340281963, 0.00305363186635077, -0.021426832303404808, 0.00689894612878561, -0.0074918512254953384, -0.004246296361088753, 0.0014325680676847696, -0.01730048656463623, 0.015902191400527954, 0.011206932365894318, -0.026951473206281662, 0.003917285241186619, -0.011158951558172703, -0.04079734534025192, -0.023661363869905472, 0.0031221758108586073, -0.011549651622772217, 0.003793906420469284, 0.02840460278093815, -0.007190258242189884, -0.05664470046758652, 0.022811418399214745, -0.006175807677209377, 0.0053361449390649796, 0.0028822722379118204, -0.028596526011824608, -0.013201560825109482, 0.01713598147034645, -0.008190999738872051, -0.018356064334511757, -0.007368472404778004, -0.025169329717755318, -0.0033826427534222603, 0.0025258436799049377, -0.00046052952529862523, 0.007814007811248302, 0.0048494827933609486, 0.0017701468896120787, -0.025498341768980026, -0.007224529981613159, 0.02442905493080616, -0.025717681273818016, -0.005360135342925787, -0.012762879021465778, 0.03931679576635361, 0.03114636056125164, 0.009849762544035912, 0.04940646141767502, -0.009411081671714783, -0.003924139775335789, 0.018630240112543106, 0.003151307115331292, -0.014545021578669548, 0.0013588833389803767, -0.02776029147207737, 0.01380474679172039, 0.004777511581778526, 0.010350133292376995, 0.009863471612334251, -0.005401261616498232, 0.00345975486561656, 0.02404521033167839, 0.0007951095467433333, 0.022372737526893616, 0.006645333953201771, -0.043347179889678955, -2.408408727205824e-05, 0.012660063803195953, 0.019343096762895584, -0.012351615354418755, -0.0034905995707958937, -0.013050763867795467, 0.011049280874431133, -0.0011875235941261053, 0.018164141103625298, 0.02804817445576191, 0.018342355266213417, -0.009692111052572727, -0.001115552382543683, -0.014449059963226318, -6.784778088331223e-05, -0.00700176227837801, -0.007683774456381798, -0.015244169160723686, -0.00617238087579608, 0.005271028261631727, -0.006707023363560438, -0.004421083256602287, -0.006731013767421246, -0.0060867005959153175, 0.0005997593398205936, 0.006652188021689653, 0.0007706907927058637, -0.01400352455675602, -0.0019946282263845205, -0.007121714297682047, -0.039563555270433426, -0.003266118234023452, 0.011501670815050602, -0.030296416953206062, 0.03904262185096741, 0.021577628329396248, -0.0028154419269412756, 0.019233426079154015, -0.010500929318368435, -0.01365395076572895, -0.00038277500425465405, -0.030406085774302483, 0.050695087760686874, 0.006727586500346661, 0.02381215989589691, 0.007354763336479664, 0.017204524949193, 0.005946185905486345, -0.05140794441103935, -0.006045574322342873, 0.0063745854422450066, 0.027061142027378082, 0.04271657392382622, 0.0012286498676985502, -0.006539090536534786, 0.005740554071962833, 0.0032112831249833107, -0.016409415751695633, -0.03155762329697609, 0.009657839313149452, 0.019809195771813393, -0.0010538628557696939, -0.022921089082956314, 0.0066144890151917934, -0.013153580017387867, 0.020014826208353043, -0.022879963740706444, -0.030159328132867813, -0.018218975514173508, -0.011762138456106186, -0.014695818535983562, 0.00617238087579608, -0.0211663655936718, 0.025978147983551025, 0.0006764428690075874, -0.005620602052658796, -0.011844391003251076, -0.005761117208749056, -0.03139311820268631, 0.02453872561454773, 0.025827351957559586, 0.025128204375505447, -0.0017033165786415339, 0.01039125956594944, 0.025717681273818016, 0.008314378559589386, 0.01407892256975174, -0.011433127336204052, -0.004222305957227945, 0.054314207285642624, -0.004191461019217968, 0.01057632826268673, -0.019548729062080383, 0.019630981609225273, 0.021728424355387688, -0.02050834335386753, 0.0005187918432056904, 0.011453690007328987, -0.00515793077647686, -0.014476477168500423, 0.029748065397143364, -0.013366065919399261, -0.009417935274541378, -0.004400520119816065, 0.001328038633801043, -0.023058177903294563, -0.0059324768371880054, -0.0003701372188515961, 0.02468952350318432, -0.03863135725259781, -0.01723194308578968, 0.0023390615824609995, -0.016491668298840523, 0.002282512839883566, 0.0022071143612265587, -0.005620602052658796, -0.005627456586807966, 0.033531688153743744, -0.0306528452783823, 0.0014265704667195678, -0.025786224752664566, 0.006662469822913408, -0.007005189545452595, -0.005243610590696335, -0.009328828193247318, -0.02094702422618866, 0.02774658240377903, -0.03073509782552719, 0.0016322023002430797, -0.03131086751818657, 0.022592078894376755, 0.0014874031767249107, -0.014586147852241993, 0.009486479684710503, 0.012022605165839195, 0.012687481008470058, 0.016313454136252403, 0.008417194709181786, -0.015203042887151241, -0.007087442092597485, 0.022180814296007156, -0.006275196559727192, 0.006134681403636932, -0.01757466234266758, 0.0036568185314536095, -0.01743757538497448, -0.01380474679172039, -0.012598373927175999, -0.0306528452783823, -0.03161245957016945, -0.023195264860987663, -0.016039278358221054, -0.03218822926282883, -0.009431644342839718, -0.02392183057963848, -0.003070767968893051, -0.007505560293793678, -0.015874773263931274, -0.006001020781695843, -0.003574565751478076, 0.015888482332229614, 0.03772657737135887, -0.006844111252576113, 0.012927385047078133, -0.019439058378338814, -0.022345321252942085, -0.0009304838022217155, -0.03704113885760307, -0.03224306181073189, -0.015134499408304691, -0.018493151292204857, 0.03180438280105591, 0.004935162607580423, -0.031201196834445, -0.036465369164943695, 0.0069674900732934475, -0.050119321793317795, -0.01204316783696413, 0.0026475090999156237, 0.016628757119178772, 0.021605046465992928, -0.003629400860518217, 0.014545021578669548, 0.019452767446637154, -0.01746499352157116, 0.009171177633106709, -0.014503895305097103, -0.009349391795694828, -0.02802075818181038, -0.029693229123950005, -0.0307899322360754, -0.0024572997353971004, -0.03934421390295029, -0.016094114631414413, 0.028980372473597527, -0.026087818667292595, 0.0017084573628380895, 0.03446388617157936, 0.011734720319509506, 0.009726383723318577, -0.022660622373223305, 0.007957950234413147, -0.008835311979055405, 0.005243610590696335, 0.00686124712228775, -0.03827492892742157, -0.009328828193247318, 0.004294277168810368, 0.0006648760754615068, -0.01688922382891178, 0.023551693186163902, 0.010082812048494816, -0.011789555661380291, 0.011131533421576023, -0.006871528923511505, -0.006641906686127186, -0.02016562409698963, -0.0002056317898677662, 0.01719081774353981, 0.014750652946531773, -0.004798074718564749, 0.00597360311076045, 0.0034871723037213087, -0.008252688683569431, -0.019864030182361603, 0.016669882461428642, 0.0007728327764198184, -0.0009459062130190432, 0.01372934877872467, -0.0204123817384243, 0.026704713702201843, 0.008060765452682972, 0.004989997949451208, 0.004057800397276878, -0.001192664378322661, -0.0009013526723720133, -0.0037185081746429205, -0.03838459774851799, 0.02416858822107315, 0.02453872561454773, -0.012708044610917568, -0.002231104765087366, 0.002356197452172637, -0.0355057530105114, 0.0007081444491632283, -0.012187110260128975, 0.011035572737455368, -0.03377844765782356, 0.013386629521846771, 0.003937848843634129, -0.007135422900319099, 0.0011780987260863185, 0.012824568897485733, 0.028432020917534828, -0.03438163548707962, -0.014558730646967888, 0.272859662771225, -0.039261963218450546, 0.007909969426691532, 0.029090043157339096, -0.025443505495786667, 0.025731390342116356, 0.013085035607218742, -0.015710268169641495, -0.024991115555167198, 0.0016741853905841708, 0.0013348929351195693, -0.005990739446133375, -0.007718046195805073, 0.0019209436140954494, 0.01768433302640915, -0.0172730702906847, -0.016258619725704193, -0.012029459699988365, -0.0030656270682811737, -0.015203042887151241, 0.02471693977713585, 0.005795388948172331, 0.012289926409721375, -0.009993704967200756, 0.008944982662796974, -0.0022653767373412848, -0.012742316350340843, -0.0025601156521588564, 0.02769174613058567, -0.0074575794860720634, -0.029281966388225555, -0.0007197112427093089, 0.002925112145021558, -0.013523717410862446, -0.025731390342116356, 0.0017024597618728876, 0.020097078755497932, 0.01224880013614893, 0.014462769031524658, 0.009582441300153732, -0.010514638386666775, 0.02448389120399952, -0.002073453739285469, 0.0024127461947500706, -0.023579111322760582, 0.022290484979748726, -0.004184606950730085, -0.015669140964746475, 0.012468140572309494, 0.0026817810721695423, -0.03934421390295029, 0.00015775812789797783, 0.023633945733308792, 0.02119378186762333, -0.002871990669518709, 0.0102747343480587, 0.029857734218239784, -0.00769062852486968, 0.021659880876541138, 0.029144877567887306, -0.0174101572483778, 0.04537608101963997, -0.015915900468826294, 0.012831423431634903, -0.019329387694597244, -0.015134499408304691, -0.006635052151978016, 0.023167846724390984, 0.0023442022502422333, 0.0033672205172479153, 0.007711191661655903, -0.011912934482097626, -0.015367548912763596, -0.012673771940171719, 0.012481849640607834, -0.03062542714178562, 0.05151761695742607, 0.018410898745059967, 0.010110229253768921, 0.025279000401496887, -0.008204707875847816, 0.002285940106958151, 0.008362359367311, 0.019260844215750694, -0.00440394738689065, -0.036684710532426834, 0.028459439054131508, -0.0014265704667195678, 0.0023356343153864145, 0.00686124712228775, -0.012742316350340843, -0.022592078894376755, 0.003591701854020357, -0.011398855596780777, 0.028843285515904427, -0.002189978491514921, 0.0168618056923151, 0.009637276642024517, -0.029994823038578033, -0.009897743351757526, -0.009424789808690548, -0.0036705273669213057, 0.02481290139257908, 0.035917017608881, -0.018246393650770187, 0.0072862193919718266, -0.0014505608705803752, 0.0055760485120117664, 0.0035642841830849648, -0.010233608074486256, 0.016354581341147423, -0.04603410139679909, 0.011083553545176983, -0.004955726210027933, 0.005342999007552862, 0.014490186236798763, -0.026101527735590935, -0.015079664066433907, -0.012783442623913288, 0.014531312510371208, 0.001366594573482871, -0.012762879021465778, 0.01702631078660488, 0.012961656786501408, -0.026087818667292595, -0.025882186368107796, -0.02767803892493248, 0.01065172627568245, 0.003879586234688759, -0.033394601196050644, 0.010069102980196476, -0.03098185546696186, 0.01751982793211937, 0.01066543534398079, -0.018561694771051407, 0.0010821372270584106, -0.005185347981750965, -0.03558800742030144, -0.004438219126313925, -0.00515107624232769, 0.005346426274627447, 0.013544280081987381, 0.011001300066709518, 0.013064472936093807, 0.000909920665435493, -0.019713234156370163, -0.005881069228053093, -0.004808356519788504, 0.005528067704290152, -0.01758837141096592, -0.026142654940485954, -0.0032249917276203632, 0.009616713039577007, -0.009335682727396488, 0.01742386631667614, -0.008574845269322395, 0.013352356851100922, -0.04789849743247032, -0.008396631106734276, 0.009260284714400768, -0.03224306181073189, -0.015902191400527954, 0.02138570509850979, -0.032818831503391266, 0.0013751625083386898, -0.018369773402810097, -0.17536278069019318, 0.018314937129616737, 0.03191405162215233, 0.002150565618649125, 0.03882328048348427, -0.018671365454792976, 0.009719529189169407, -0.009959432296454906, -0.013784184120595455, 0.004763802979141474, 0.019535019993782043, -0.013228978030383587, -0.006686460226774216, -0.014449059963226318, -0.005504077300429344, -0.006388294044882059, -0.0013803032925352454, 0.006484255660325289, 0.05955096334218979, 0.018589112907648087, 0.036300864070653915, -0.02436051145195961, 0.015751395374536514, 0.0350944921374321, -0.005860505625605583, 0.011508525349199772, -0.0029919424559921026, -0.01372934877872467, 0.03462839126586914, -0.018164141103625298, 0.006066137459129095, -0.0017333045834675431, 0.02063172310590744, -0.022550951689481735, 0.0002476149529684335, -0.025731390342116356, -0.00255326135084033, -0.009863471612334251, -0.026937764137983322, 0.009376809000968933, -0.012605228461325169, 0.02090589888393879, -0.003430623561143875, -0.005524640437215567, -0.005603466182947159, 0.012502412311732769, 0.0009579014149494469, -0.014517603442072868, 0.0037082266062498093, -0.008053911849856377, 0.010240462608635426, -0.012598373927175999, 0.005620602052658796, 0.008362359367311, 0.01409263163805008, 0.011056135408580303, 0.016354581341147423, -0.006292332429438829, -0.0015833646757528186, 0.010000559501349926, -0.021673589944839478, -0.018794745206832886, 0.014586147852241993, 0.012762879021465778, -0.01232419814914465, -0.015641724690794945, -0.0016758990241214633, 0.035807348787784576, -0.00616552634164691, -0.00021002287394367158, -0.0032678318675607443, -0.015628015622496605, 0.02388070523738861, -0.010336424224078655, -0.0006233213352970779, 0.011453690007328987, -0.009740091860294342, -0.010267880745232105, 0.02755465917289257, 0.003494026605039835, -0.029912570491433144, 0.03920712694525719, -0.025292709469795227, -0.012783442623913288, 0.014353098347783089, 0.019370514899492264, -7.920036296127364e-05, -0.0008919278625398874, -0.039755478501319885, -0.011378291994333267, 0.029364218935370445, -0.026649879291653633, -0.012776588089764118, -0.026211198419332504, 0.007443870417773724, 0.026485374197363853, 0.004417655989527702, 0.005665155593305826, -0.00445535546168685, 0.005116804037243128, 0.007299928460270166, -0.009082070551812649, -0.013866436667740345, 0.02466210536658764, 0.020206749439239502, 0.019918864592909813, -0.014216010458767414, 0.023099303245544434, 0.022400155663490295, 0.015120790340006351, -0.006004448048770428, 0.01215969305485487, 0.01187180820852518, 0.0030587727669626474, 0.015093373134732246, 0.011069844476878643, 0.002356197452172637, -0.014969993382692337, 0.03196888789534569, 0.012776588089764118, -0.01793109066784382, -0.03429938107728958, 0.0052127656526863575, 0.025895895436406136, 0.002683494705706835, -0.008204707875847816, -0.06876327097415924, -0.02098815143108368, 0.008047057315707207, 0.019260844215750694, -0.010103374719619751, 0.011165806092321873, -0.007169694639742374, 0.0017770013073459268, 0.00017939231474883854, 0.03794591873884201, -0.019535019993782043, -0.026896636933088303, 0.0006533093401230872, -0.01401723362505436, 0.0019380796002224088, 0.00509281363338232, 0.00422573322430253, -0.0088078947737813, 0.008657097816467285, 0.028815867379307747, -0.00299022882245481, -0.005161357577890158, 0.010699707083404064, -0.02776029147207737, 0.004613006487488747, -0.019274553284049034, -0.019014084711670876, 0.03081735037267208, 0.012379033491015434, 0.005795388948172331, 0.03210597485303879, -0.0015328135341405869, -0.022838836535811424, -0.008663952350616455, 0.029802899807691574, -0.008012785576283932, -0.013544280081987381, -0.02797963097691536, 0.003732216777279973, -0.02393553964793682, -0.03364136070013046, 0.010144500993192196, 0.00682354811578989, 0.0013169002486392856, -0.005757689941674471, -0.04236014559864998, -0.0069674900732934475, 0.012653209269046783, 0.00035707102506421506, -0.024991115555167198, -0.04225047677755356, -0.018068179488182068, -0.02740386314690113, -0.028459439054131508, 0.04120860993862152, 0.026636170223355293, 0.007676919922232628, 0.02039867267012596, -0.019123755395412445, 0.018575403839349747, -0.004643850959837437, -0.011700448580086231, -0.014531312510371208, 0.036465369164943695, 0.01698518544435501, 0.009054652415215969, -0.0009938869625329971, -0.003732216777279973, 0.009308265522122383, -0.01197462435811758, 0.0015259592328220606, 0.04230531305074692, -0.005140794441103935, 0.03432679921388626, -0.01248870324343443, -0.02034383825957775, -0.019946282729506493, -0.0015071096131578088, 0.03830234706401825, -0.01767062395811081, -0.01356484368443489, -0.002058031503111124, 0.0026663588359951973, -0.021947765722870827, 0.042853664606809616, -0.0025001398753374815, -0.0015833646757528186, -0.0041400534100830555, 0.012934239581227303, -0.030268998816609383, 0.001256924238987267, 0.026389412581920624, -0.010247317142784595, -0.0420585535466671, 0.01242015976458788, 0.007368472404778004, -0.003581420285627246, 0.0033929243218153715, 0.009102633222937584, 0.013948689214885235, -0.029939986765384674, -0.03876844421029091, -0.07375326752662659, 0.02093331515789032, 0.012584664858877659, 0.019356805831193924, 0.02754095010459423, 0.027033725753426552, 0.021879222244024277, 0.009630422107875347, -0.016450542956590652, -0.01012393832206726, -0.02388070523738861, 0.014202301390469074, 0.025004824623465538, -0.01398296095430851, -0.026581335812807083, -0.016779553145170212, -4.476775211514905e-05, 6.506318459287286e-05, -0.006484255660325289, 0.019603563472628593, -0.0048186383210122585, 0.011577069759368896, 0.0006670181173831224, 0.002630373230203986, -0.015902191400527954, 0.0055726212449371815, 0.006696741562336683, 0.010596890933811665, -0.014668400399386883, -0.021646171808242798, 0.0064157117158174515, -0.005654874257743359, -0.003841887228190899, 0.022989632561802864, -0.0048186383210122585, 0.006467119790613651, -0.02090589888393879, 0.016848096624016762, 0.004900890868157148, 0.03539608418941498, -0.022331612184643745, -0.027170812711119652, 0.029199713841080666, -0.014778071083128452, -0.0006438845302909613, -0.004575307015329599, -0.011371437460184097, 0.03169471397995949, 0.023304935544729233, 0.011933498084545135, 0.0024247413966804743, 0.0207551009953022, -0.008252688683569431, -0.02404521033167839, -0.01756095513701439, -0.03545092046260834, -0.004033809993416071, 0.004592443350702524, -0.005072250496596098, -0.023071886971592903, 0.02086477167904377, 0.040550585836172104, 0.01231734361499548, -0.0153949661180377, -0.018685074523091316, -0.008177290670573711, -0.03758949041366577, 0.012481849640607834, 0.014723235741257668, -0.019918864592909813, 0.00034957402385771275, 0.0032455548644065857, -0.012015750631690025, 0.0037699160166084766, 0.015024828724563122, 0.01746499352157116, -0.003951557446271181, 0.012468140572309494, -0.011254913173615932, 0.03857652097940445, -0.0072862193919718266, -0.009753800928592682, -0.044005200266838074, 0.01531271357089281, 0.030515756458044052, -0.023236392065882683, -0.02477177605032921, 0.01712227240204811, -0.036712128669023514, 0.009870325215160847, -0.006676178425550461, -0.0020426090341061354, -0.019137464463710785, 0.01407892256975174, 0.01031586155295372, 0.02468952350318432, 0.009671548381447792, -0.013448318466544151, 0.018465735018253326, 0.02105669490993023, -0.0020597451366484165, -0.004938589874655008, -0.007951095700263977, 0.0031581614166498184, 0.0011146956821903586, 0.011213786900043488, -0.0177528765052557, -0.036218609660863876, 0.007025752682238817, 0.006223788484930992, -0.009075216017663479, 0.010850504040718079, -0.0042977044358849525, -0.0016056415624916553, -0.003488885937258601, 0.021920347586274147, -0.00879418570548296, -0.015216751955449581, -0.026142654940485954, 0.02082364447414875, 0.016683591529726982, -2.921149462054018e-05, 0.028569109737873077, 0.006857819855213165, 0.01398981548845768, -0.019452767446637154, 0.007951095700263977, -0.030049657449126244, 0.0017333045834675431, 0.013304376043379307, -0.013578551821410656, 0.022962216287851334, -0.02122120000422001, -0.010912192985415459, -0.007718046195805073, 0.021673589944839478, 0.007279365323483944, 0.013448318466544151, 0.008026493713259697, 0.0473775640130043, 0.011529088951647282, -0.0016544790705665946, -0.0060867005959153175, -0.009452207945287228, 0.025265291333198547, 0.0279933400452137, 0.002998796757310629, -0.003989256452769041, -0.013462027534842491, 0.02762320265173912, 0.03525899723172188, -0.006182662211358547, -0.01691664196550846, -0.0040166741237044334, -0.01784883812069893, -0.04543091356754303, 0.004832346923649311, -0.020960733294487, 0.009452207945287228, 0.03819267824292183, -0.019356805831193924, 0.0012877690605819225, 0.005349853541702032, -0.0007004332728683949, -0.011302893981337547, 0.009020380675792694, -0.010603745467960835, -0.0014488472370430827, 0.004541035275906324, -0.005394407082349062, -0.011302893981337547, -0.02367507293820381, -0.03498481959104538, -0.0034631818998605013, 0.0018883851589635015, -0.011460544541478157, 0.018123013898730278, 0.02138570509850979, -0.005983884911984205, 0.0046575600281357765, 0.01549092773348093, -0.014462769031524658, -0.044005200266838074, -0.01557318028062582, 0.001231220318004489, 0.0207551009953022, -0.005390979815274477, -0.02736273594200611], "a50538d7-39ba-408d-b535-b62c3d5bb41b": [-0.013580476865172386, -0.009305519051849842, -0.021892135962843895, -0.01147022657096386, -0.004295378923416138, 0.017276816070079803, -0.028808308765292168, -0.036759182810783386, 0.010258534923195839, -0.025200463831424713, -0.012382399290800095, -0.008563528768718243, -0.0027263062074780464, 0.0027314117178320885, -0.012144145555794239, -0.009632267989218235, 0.003767816349864006, -0.006667707581073046, 0.027378784492611885, -0.025649741291999817, 0.015384399332106113, 0.02829095721244812, -0.005694270133972168, -0.024369977414608, -0.04302186146378517, 0.017603565007448196, 0.03392736613750458, -0.021660689264535904, -0.007031895685940981, 0.020421769469976425, 0.01914200559258461, -0.006691533140838146, -0.0034887189976871014, -0.017984772101044655, -0.017344888299703598, -0.002351907081902027, 0.01901947520673275, -0.0049692969769239426, -0.003801852697506547, 0.01268191821873188, 0.022232498973608017, -0.01116390060633421, 0.018325133249163628, -0.0027229024562984705, -0.01012239046394825, 0.018624654039740562, -0.013362644240260124, 0.00847503449767828, -0.03357338905334473, 0.0199861042201519, 0.0027654478326439857, 0.02294045314192772, -0.021320326253771782, -0.027283484116196632, 0.013512403704226017, -0.0011155391111969948, 0.003570405999198556, 0.016010666266083717, 0.012219024822115898, -0.027855293825268745, 0.011184322647750378, 0.009421242401003838, -0.020272009074687958, -0.020272009074687958, 0.004513211082667112, -0.017018141224980354, 0.0047684828750789165, 0.009911364875733852, -0.03185795992612839, -0.0026327064260840416, 0.009162566624581814, 0.014390540309250355, -0.015139338560402393, -0.0031517597381025553, 0.04195992648601532, -0.005976771004498005, -0.013437524437904358, -0.0026258991565555334, 0.01104137022048235, 0.012967823073267937, -0.017589950934052467, 0.003104108851402998, -0.010095161385834217, 0.007855573669075966, 0.004550650715827942, 0.011422576382756233, -0.012804449535906315, 0.011340889148414135, 0.00448598200455308, 0.003931190352886915, -0.004679988604038954, 0.021919365972280502, 0.029625179246068, 0.010401487350463867, 0.014513070695102215, -0.003999263048171997, -0.010524018667638302, 0.02352587878704071, -0.012287097983062267, -0.029107827693223953, -0.012484508566558361, 0.008720095269382, -0.03801171854138374, -0.0013129495782777667, -0.05339612066745758, -0.023621179163455963, 0.05290599539875984, -0.0052790273912250996, 0.0029917892534285784, -0.039917752146720886, -0.026902277022600174, 0.052633706480264664, -0.01444499846547842, -0.04087076708674431, -0.023376118391752243, -0.0044451383873820305, 0.017099827527999878, -0.0254999827593565, 0.0022225691936910152, 0.005313063506036997, 0.005142882000654936, 0.025554440915584564, 0.028100354596972466, 0.00025378301506862044, 0.016051510348916054, -0.005381136201322079, 0.008229972794651985, -0.011204743757843971, 0.001091713784262538, -0.04146980494260788, 0.038610756397247314, 0.004057124722748995, 0.0057929749600589275, 0.021538158878684044, 0.0019264535512775183, 0.001155531732365489, -0.012736376374959946, 0.00515309302136302, -0.009162566624581814, 0.009182988665997982, 0.026616372168064117, -0.0016975596081465483, -0.00029569020261988044, -0.02878108061850071, -0.011558721773326397, 0.003439366351813078, 0.009196603670716286, 0.011776553466916084, -0.0028573458548635244, -0.012852099724113941, 0.0019383662147447467, -0.012212217785418034, -0.0013010369148105383, 0.0009453577222302556, -0.0007024237420409918, 0.023321660235524178, 0.00496589345857501, 0.03692255914211273, -0.00822316575795412, -0.010163233615458012, 0.01901947520673275, 0.014227165840566158, 0.009128530509769917, -0.0004896969767287374, 0.02635769732296467, 0.01535717025399208, -0.006313730496913195, 0.00901961512863636, -0.007460752967745066, 0.0035159478429704905, 0.007875995710492134, 0.0025731429923325777, -0.020285623148083687, 0.018447665497660637, -0.02070767432451248, 0.009645882062613964, -0.0028658548835664988, 0.005568335764110088, -0.005748727824538946, -0.00044885347597301006, -0.017276816070079803, -0.015438857488334179, 0.007767079398036003, 0.015261868946254253, -0.029815783724188805, -0.03447194769978523, 0.019591283053159714, -0.009965823031961918, -0.016541633754968643, -0.008291237987577915, 0.015506929717957973, 0.04038064554333687, 0.005633004475384951, 0.012974631041288376, -0.6060091853141785, -0.01470367331057787, 0.012579809874296188, -0.019332608208060265, 0.008127864450216293, 0.02682059071958065, 0.0027160951867699623, -0.0012167970417067409, -0.021293098106980324, 0.00884262565523386, -0.003910768777132034, -0.009271482937037945, -0.0024608231615275145, -0.008025755174458027, -0.002125565893948078, -0.03667749837040901, 0.004411102272570133, -0.006647286005318165, -0.016024282202124596, 0.012709147296845913, -0.006848100107163191, -0.0046153198927640915, -0.022613706067204475, -0.005633004475384951, 0.011545106768608093, 0.005830415058881044, -0.023090213537216187, 0.006803852505981922, 0.012715955264866352, 0.038338467478752136, -0.01554777380079031, 0.027120109647512436, 0.0008721797494217753, -0.005690866149961948, 0.043103545904159546, -0.0037644128315150738, -0.023593951016664505, 0.020993579179048538, 0.0031313379295170307, 0.05325997248291969, -0.0029611564241349697, -0.028808308765292168, 0.043702587485313416, -0.001756272162310779, 0.008543106727302074, -0.0014388838317245245, -0.007181655615568161, -0.037739429622888565, 0.008168707601726055, 0.009679918177425861, 0.003825678024441004, -0.013907224871218204, 0.012845292687416077, 0.0049863154999911785, 0.01696368306875229, 0.005816800519824028, 0.020081406459212303, -0.01645994558930397, 0.0034887189976871014, -0.012341556139290333, -0.018869714811444283, -0.013879995793104172, -0.011967157013714314, 0.0009036632836796343, -0.017971156165003777, 0.014962349086999893, -0.031068317592144012, -0.008202743716537952, -0.01470367331057787, -0.018815256655216217, -0.020939121022820473, 0.0066166534088552, -0.007882802747189999, -0.01500319316983223, 0.02074851654469967, 0.026425769552588463, 0.01684115268290043, -0.03046927973628044, 0.0028301167767494917, 0.011157093569636345, -0.013437524437904358, -0.002416576026007533, -0.014621987007558346, 0.006409031804651022, 0.01122516579926014, 0.00903322920203209, -0.04046232998371124, -0.012137338519096375, 0.012695533223450184, 0.004928453825414181, 0.002404663246124983, 0.023348890244960785, 0.009618652984499931, -0.03289266303181648, 0.001087459153495729, 0.021170567721128464, -0.005622793920338154, 0.010775886476039886, 0.014431383460760117, -0.011238779872655869, -0.03746714070439339, 0.0010636338265612721, 0.0007088055717758834, 0.006831081584095955, 0.029924698173999786, -0.005095231346786022, -0.03234808146953583, 0.014662830159068108, 0.03498929738998413, -0.022477559745311737, -0.0018447664333507419, -0.0011810589348897338, -0.037249308079481125, -0.024451665580272675, 0.027719147503376007, -0.03392736613750458, 0.014254394918680191, 0.015275483019649982, 0.01268191821873188, 0.01607874035835266, 0.042858485132455826, -0.0027160951867699623, 0.002908400259912014, 0.0032913084141910076, 0.001355494954623282, 0.010959682986140251, 0.0027943786699324846, -0.0016065124655142426, -0.0006615802412852645, 0.021020807325839996, -0.02025839500129223, 0.004346433095633984, 0.023580336943268776, -0.016555247828364372, -0.01635102927684784, -0.01377107948064804, 0.009904557839035988, 0.004822941031306982, 0.017903083935379982, -0.014472226612269878, -0.010197269730269909, -0.01547970063984394, 0.01876079849898815, -0.003299817442893982, -0.02157900296151638, -0.03452640399336815, -0.027583003044128418, 0.01353963278234005, -0.016391873359680176, 0.013001860119402409, 0.01854296587407589, -0.008577142842113972, -0.012511737644672394, 0.02294045314192772, 0.0017290430841967463, 0.013362644240260124, -0.000210280399187468, -0.04089799523353577, -6.307348667178303e-05, -0.0016456542070955038, 0.008869854733347893, -0.0005313914734870195, -0.035179901868104935, -0.002874363912269473, -0.015084880404174328, -0.027719147503376007, -0.006708551198244095, 0.0018651882419362664, -0.0028913822025060654, -0.040081124752759933, -0.006511140614748001, -0.00722249923273921, -0.008774553425610065, 0.013022281229496002, -0.01843404956161976, 0.001055124681442976, -0.007426716852933168, -0.015329941175878048, 0.004349836613982916, -0.017385732382535934, -0.00988413579761982, -0.0010457647731527686, -0.0017298940801993012, -0.016786694526672363, 0.01622849889099598, -0.005095231346786022, 0.03098663128912449, 0.04392041638493538, 0.0032164286822080612, 0.01445861253887415, 0.007249727845191956, 0.016881994903087616, 0.017440190538764, 0.00945527944713831, 0.03327386826276779, 0.02266816422343254, 0.004257938824594021, -0.005282430909574032, -0.03343724459409714, 0.021796835586428642, 0.024424435570836067, 0.012654689140617847, 0.0164735596626997, -0.022763464599847794, 0.012702340260148048, -0.036650266498327255, 0.019713815301656723, -0.015643075108528137, 0.0070659322664141655, 0.009128530509769917, -0.007760272361338139, -0.026248781010508537, -0.010816730558872223, -0.00938720628619194, 0.035288818180561066, 0.012613845989108086, -0.0009104705532081425, 0.01596982404589653, -0.002079616766422987, 0.020517069846391678, 0.015874521806836128, -0.005336889065802097, 0.02303575538098812, -0.02586757391691208, -0.008958349004387856, -0.012110109440982342, 0.010401487350463867, -0.02535022236406803, -0.016405487433075905, -0.02596287615597248, -0.020571528002619743, -0.014417769387364388, -0.007317800540477037, 0.0001214669828186743, 0.004400891251862049, -0.028073124587535858, 0.016868380829691887, -0.003577213268727064, 0.02500985935330391, 0.029597951099276543, 0.01757633686065674, 0.02427467703819275, -0.007113582920283079, -0.02070767432451248, 0.029434576630592346, 0.02769191935658455, 0.038120634853839874, 0.02756938897073269, -0.0043532405979931355, 0.02560889907181263, -0.03085048496723175, 0.010626127012073994, -0.040053896605968475, 0.011497455649077892, -0.005956349428743124, -0.008978771045804024, 0.018679112195968628, 0.011463419534265995, 0.02196020819246769, 0.022518403828144073, 0.02070767432451248, 0.012212217785418034, 0.0011946734739467502, 0.011293238028883934, -0.004996526055037975, -0.011531492695212364, -0.010156426578760147, -0.035288818180561066, -0.03659581020474434, -0.01238920632749796, -0.01912838965654373, -0.0012482806341722608, 0.015615846030414104, -0.02694312110543251, -0.01433608215302229, -0.01696368306875229, 0.012021615169942379, 0.010095161385834217, 0.020816590636968613, 0.01243685744702816, -0.016174040734767914, -0.011129864491522312, 0.011157093569636345, -0.0036180566530674696, 0.010891609825193882, -0.007263342384248972, -0.006381802726536989, 0.0024846484884619713, 0.006650689523667097, -0.0016660760156810284, 0.015289098024368286, -0.0021664092782884836, 0.033981822431087494, 0.0007394382264465094, -0.011483841575682163, 0.013607705011963844, 0.0024301905650645494, -0.012096494436264038, -0.034880381077528, -0.012341556139290333, 0.019564054906368256, 0.0065043335780501366, -0.0015061054145917296, -0.020911891013383865, 0.039073649793863297, 0.006310326512902975, -0.014295238070189953, 0.0012014807434752584, -0.0006300966488197446, -0.02160623110830784, -0.0064737009815871716, -0.007576476316899061, -0.008931119926273823, -0.0045370361767709255, 0.004084353800863028, 0.021919365972280502, 0.004138811957091093, -0.0066166534088552, 0.018474893644452095, 0.001323160482570529, -0.003733780002221465, -0.01488066278398037, -0.009816063567996025, -0.0015971525572240353, 0.003403628244996071, 0.01901947520673275, 0.019713815301656723, 0.002974770963191986, -0.03852907195687294, -0.010217691771686077, -0.004540440160781145, -0.04479174688458443, -0.004809326492249966, -0.010660163126885891, 0.010537632741034031, -0.00897196400910616, 0.02245033159852028, -0.0015086581697687507, -0.003376399166882038, -0.01036745123565197, -0.01644633151590824, -0.010809923522174358, 0.011973964050412178, -0.0076581635512411594, 0.002339994302019477, -0.0027637460734695196, 0.01523463986814022, 0.00951654464006424, -0.002818204229697585, 3.6748548154719174e-05, 0.005752131808549166, 0.030932173132896423, 0.005704480689018965, -0.02767830528318882, 0.0029628584161400795, -0.002612284617498517, -0.005411768797785044, 0.038338467478752136, 0.005653426516801119, 0.017739709466695786, 0.00588487321510911, 0.05301491171121597, 0.0003926935896743089, 0.014853433705866337, -0.006327344570308924, 0.019713815301656723, -0.005258605349808931, -0.011381732299923897, -0.010605704970657825, -0.006521351635456085, 0.00810063537210226, 0.0064634899608790874, -0.014349696226418018, -0.00786238070577383, 0.009965823031961918, 0.0017069195164367557, -0.03825677931308746, -0.01023130677640438, -0.0004931006114929914, 0.013920838944613934, -0.03474423661828041, 0.0013988912105560303, 0.025935646146535873, 0.00816190056502819, -0.008577142842113972, -0.010319801047444344, 0.02245033159852028, -0.023362504318356514, -0.008502263575792313, -0.04269511252641678, -0.005435594357550144, -0.014785360544919968, -0.01693645305931568, -0.012082880362868309, 0.017276816070079803, -0.03643243759870529, -0.03460809215903282, -0.02842710167169571, 0.011783360503613949, 0.028944453224539757, 0.019414294511079788, -0.0036282676737755537, -0.006814063526690006, 0.01554777380079031, -0.018801642581820488, -0.022001052275300026, 0.0014014438493177295, -0.02148370072245598, 0.009359977208077908, 0.01794392801821232, 0.026507455855607986, -0.032021332532167435, -0.01012239046394825, 0.04002666845917702, 0.00454724719747901, 0.0009215323370881379, 0.0033304502721875906, -0.005952945910394192, -0.021374784409999847, 0.005292641930282116, -0.00884262565523386, 0.009067265316843987, -0.006749394815415144, -0.01644633151590824, -0.0015384398866444826, -0.018202602863311768, 0.0001874122826848179, -0.01926453597843647, -0.001553756301291287, -0.0158609077334404, 0.01658247597515583, 0.007848766632378101, 0.0006356275407597423, 0.015643075108528137, 0.016051510348916054, -0.01719512976706028, 0.01426800899207592, -0.005983578506857157, 0.01745380461215973, 0.012824870645999908, -0.023008527234196663, -0.004366855137050152, -0.007161233574151993, 0.0005088424077257514, 0.023702867329120636, -0.018461279571056366, 0.034580864012241364, -0.0007696454413235188, -0.014785360544919968, 0.011592757888138294, -0.01030618604272604, -0.027514930814504623, -0.014635601080954075, 0.01756272092461586, 0.0037201656959950924, 0.014417769387364388, 0.0012116916477680206, -0.018842484802007675, -0.06039397791028023, 0.024369977414608, 0.0045370361767709255, 0.012232639826834202, -0.01903308928012848, -0.018352363258600235, 0.004036703146994114, -0.005704480689018965, 0.007331415079534054, -0.01493512000888586, 0.017276816070079803, -0.032729290425777435, -0.002186831086874008, -0.005166707560420036, -0.013049510307610035, 0.019918031990528107, 0.011592757888138294, 0.002770553342998028, -0.0429401732981205, -0.013076739385724068, 0.023335274308919907, -0.040789078921079636, -0.008440997451543808, -0.009550580754876137, 0.024492507800459862, 0.00713400449603796, 0.01635102927684784, 0.03136783838272095, 0.002147689461708069, -0.006507737096399069, 0.003611249616369605, 0.01914200559258461, -0.005139478482306004, 0.005258605349808931, -0.016636934131383896, 0.0031364434398710728, -0.0001948577119037509, 0.016391873359680176, 0.006534966174513102, -0.01635102927684784, 0.005105442367494106, 0.03561556711792946, -0.019305378198623657, 0.02938011847436428, 0.00901961512863636, -0.05816119909286499, -0.008046177215874195, 0.01839320734143257, -0.005442401394248009, -0.004261342342942953, -0.012675111182034016, 0.004438331350684166, 0.011626794002950191, 0.007331415079534054, 0.028971683233976364, 0.02108887955546379, 0.013097161427140236, 0.003699743887409568, 0.016881994903087616, -0.023226357996463776, 0.014785360544919968, 0.002311063464730978, 0.002779062371701002, -0.025935646146535873, 0.01900585927069187, 0.03934594243764877, 0.015425242483615875, -0.0038290817756205797, 0.012790834531188011, -0.006732376758009195, -0.001324011362157762, 0.008604371920228004, -0.00034674460766837, 0.004455349408090115, -0.0005254350835457444, -0.012198603712022305, -0.039699919521808624, -0.017862239852547646, 0.004775290377438068, -0.014376925304532051, 0.029951928183436394, 0.022504789754748344, -0.01347836758941412, 0.01806645840406418, -0.007093161344528198, -0.0012244551908224821, 0.01891055889427662, -0.029352890327572823, 0.04460114240646362, 0.013471560552716255, 0.011204743757843971, 0.018679112195968628, 0.025568054988980293, 0.0033627846278250217, -0.07019642740488052, -0.026425769552588463, 0.013430716469883919, 0.026616372168064117, 0.03869244456291199, -0.014118249528110027, -0.00805298425257206, 0.010449138469994068, 0.005888276733458042, -0.01756272092461586, -0.02181044965982437, 0.012355170212686062, 0.016500789672136307, 0.013253727927803993, -0.02559528313577175, 0.02073490247130394, -0.022763464599847794, 0.003982244990766048, -0.010176848620176315, -0.02097996324300766, -0.008066599257290363, -0.011585949920117855, -0.020557913929224014, 0.0009776921942830086, -0.03743990883231163, 0.031122775748372078, 0.002745026024058461, -0.0020574931986629963, -0.012852099724113941, 0.007406294811517, -0.03950931504368782, 0.034880381077528, 0.018502123653888702, 0.0227906946092844, 0.014281623996794224, 0.010387873277068138, 0.01915561966598034, 0.01622849889099598, 0.002831818535923958, -0.02439720742404461, -0.0014788764528930187, 0.05658191442489624, -0.007910031825304031, 0.010265342891216278, -0.02389346994459629, 0.012396014295518398, 0.018624654039740562, -0.0013282658765092492, -0.004979507997632027, -0.0068957507610321045, 0.002385943429544568, -0.0064941225573420525, 0.042368363589048386, -0.019849959760904312, -0.006701743695884943, -0.0096390750259161, -0.0009827975882217288, 0.00015773689665365964, -0.006936594378203154, 0.015820063650608063, 0.015316327102482319, -0.04465560242533684, -0.011027755215764046, 0.007045510224997997, -0.01249812263995409, 0.011368118226528168, -0.0011665935162454844, -0.005833818577229977, 0.016664164140820503, 0.030169760808348656, -0.03234808146953583, -0.0007279510027728975, 0.0047684828750789165, -0.0009147250675596297, -0.001951980753801763, 0.0014652619138360023, -0.02633046731352806, -0.0076105124317109585, 0.014553913846611977, -0.004914839286357164, -0.0021664092782884836, -0.03852907195687294, 0.010932453908026218, 0.003995859529823065, -0.020326467230916023, 0.024165760725736618, -0.002770553342998028, 0.018937787041068077, 0.02585395984351635, 0.01145661249756813, -0.006034632679075003, -0.027242640033364296, 0.0176988672465086, -1.4807776551606366e-06, 0.017903083935379982, -0.017276816070079803, 0.001419312902726233, -0.01901947520673275, -0.014621987007558346, 0.0023536088410764933, -0.03229362517595291, -0.04179655387997627, -0.008386540226638317, -1.5555644495179877e-05, -0.031013859435915947, -0.007229306269437075, -0.025568054988980293, -0.0009325941209681332, -0.019414294511079788, -0.017140671610832214, -0.0028947857208549976, -0.009972630999982357, 0.008692866191267967, 0.026983963325619698, -0.01433608215302229, 0.016187654808163643, -0.024097686633467674, -0.021429242566227913, -0.023716481402516365, -0.057997822761535645, -0.009605038911104202, -0.0037644128315150738, -0.02951626293361187, 0.03948208689689636, 0.010735043324530125, -0.02767830528318882, -0.042885713279247284, -0.0026190918870270252, -0.03036036342382431, -0.0199861042201519, 0.0076990071684122086, 0.018719954416155815, 0.021265868097543716, -0.012961016036570072, 0.013131197541952133, 0.03144952282309532, -0.01779416762292385, 0.003042843658477068, -0.0010151320602744818, -0.007773886900395155, -0.025091547518968582, -0.01670500636100769, -0.010769079439342022, 0.0017664830666035414, -0.01794392801821232, -0.014281623996794224, 0.01987718790769577, -0.004717428702861071, 0.012116916477680206, 0.019945261999964714, -0.025214077904820442, 0.005251798313111067, -0.01644633151590824, -0.006861714646220207, -0.0076990071684122086, 0.005136074963957071, 0.002884574932977557, -0.02888999693095684, -0.0005496859666891396, 0.0004316226113587618, 0.004387276712805033, -0.02145647257566452, 0.015588616952300072, 0.0022906416561454535, -0.003143250709399581, 0.008202743716537952, -0.01986357383430004, 0.005411768797785044, -0.0065553877502679825, -0.013825537636876106, 0.0237573254853487, 0.013886802829802036, 0.0001555032649775967, 0.025159619748592377, 0.006837889086455107, 0.011245587840676308, -0.017835011705756187, 0.010571668855845928, -0.018012000247836113, 0.00488080270588398, -0.00035078643122687936, -0.015670303255319595, 0.04520018398761749, 0.010238113813102245, 0.010312993079423904, -0.013914031907916069, -0.008733710274100304, 0.02160623110830784, -0.008706481195986271, -0.015057651326060295, 0.010653356090188026, 0.030632654204964638, -0.028563247993588448, -0.0055785467848181725, -0.014785360544919968, -0.026030948385596275, -0.016419101506471634, -0.024070458486676216, 0.013001860119402409, -0.030823256820440292, 0.00962546095252037, -0.010639742016792297, 0.008134671486914158, 0.02193298004567623, 0.010530825704336166, 0.027460472658276558, -0.005952945910394192, 0.005990385543555021, 0.2611808180809021, -0.03196687623858452, 0.0035908278077840805, 0.023076599463820457, -0.0036486894823610783, 0.02294045314192772, 0.015779219567775726, 0.0077806939370930195, -0.002806291449815035, -0.0005352205480448902, -0.018502123653888702, -0.005473033990710974, -0.016636934131383896, -0.0031483559869229794, 0.020775746554136276, -0.02913505770266056, -0.022477559745311737, -0.011660830117762089, -0.00536411814391613, -0.01645994558930397, 0.024206602945923805, -0.007848766632378101, -0.015166567638516426, -0.01854296587407589, 0.02793698012828827, 0.004720832221210003, -0.008338889107108116, 0.01851573772728443, 0.014962349086999893, 0.013995719142258167, -0.023961542174220085, 0.0039652269333601, 0.0012789133470505476, -0.014826204627752304, -0.015071265399456024, -0.013124390505254269, 0.035070985555648804, 0.009877328760921955, 0.00810063537210226, 0.02303575538098812, 0.0005216060089878738, 0.004979507997632027, 0.006783430930227041, -0.008440997451543808, -0.004567669238895178, 0.017889469861984253, -0.0011742516653612256, -0.02058514393866062, 0.004084353800863028, -0.01048998162150383, -0.015697533264756203, -0.015398014336824417, 0.034444715827703476, 0.023457804694771767, 0.01445861253887415, -0.0005662786425091326, 0.020448997616767883, -0.011054984293878078, 0.026534685865044594, 0.025037089362740517, -0.021048037335276604, 0.02902614139020443, -0.012695533223450184, 0.015425242483615875, -0.023961542174220085, -0.012287097983062267, -0.0033917154651135206, 0.011803782545030117, 0.0027875714004039764, 0.009169374592602253, -0.01023130677640438, -0.009965823031961918, 0.0017290430841967463, 0.00043608987471088767, 0.006289904937148094, -0.03893750533461571, 0.0429401732981205, 0.017508262768387794, 0.024356363341212273, 0.037848345935344696, -0.008195936679840088, 0.004642548970878124, 0.004465559963136911, -0.004809326492249966, -0.009087687358260155, -0.04144257679581642, 0.02341696247458458, -0.013825537636876106, -0.003611249616369605, -0.003464893437922001, -0.008965156972408295, -0.020530685782432556, 0.008760939352214336, -0.0019264535512775183, 0.012770412489771843, 0.014390540309250355, 0.02352587878704071, 0.03221193701028824, -0.024206602945923805, 0.009618652984499931, -0.00909449439495802, 0.02159261703491211, 0.022491175681352615, 0.01768525131046772, -0.005074809771031141, 0.005170111078768969, 0.0140229482203722, -0.011844625696539879, 0.013308186084032059, -0.024710340425372124, 0.014363311231136322, -0.05317828804254532, 0.003927786834537983, -0.00840696133673191, 0.0015341853722929955, 0.0076581635512411594, -0.017249587923288345, -0.006708551198244095, -0.0158609077334404, 0.011606371961534023, 0.0011538299731910229, -0.0063341520726680756, -0.014649216085672379, -0.004377065692096949, -0.026616372168064117, -0.0368136428296566, -0.023131057620048523, 0.010857573710381985, 0.008121056482195854, -0.0443560816347599, 0.015289098024368286, -0.004326011519879103, 0.02842710167169571, -0.002736516995355487, 0.010149619542062283, 0.020026948302984238, -0.02084381878376007, -0.026997579261660576, 0.006021018140017986, -0.0004973551840521395, 0.0022242709528654814, -0.005789571441709995, 0.013614512979984283, -0.00511565338820219, 0.003631671192124486, -0.01719512976706028, -0.011191129684448242, -0.0020694059785455465, 0.0049386643804609776, -0.013349030166864395, -0.02718818187713623, 0.002314467215910554, 0.015575002878904343, -0.020939121022820473, 0.004257938824594021, 0.003536369651556015, 0.01035383716225624, -0.0460987389087677, 0.00020081405818928033, 0.008189129643142223, -0.029924698173999786, -0.0007551800226792693, 0.005289238411933184, -0.020149478688836098, -0.000529264158103615, -0.02815481275320053, -0.17339442670345306, 0.012763605453073978, 0.04735127463936806, -0.01707259938120842, 0.026616372168064117, -0.015751991420984268, 0.0009904558537527919, -0.017494648694992065, -0.03278374671936035, -0.007671778090298176, 0.004230709746479988, -0.007637741509824991, 0.0005420277593657374, -0.02047622762620449, -0.015697533264756203, 0.02694312110543251, -0.01684115268290043, 0.015016807243227959, 0.061537597328424454, 0.03596954420208931, 0.0329471193253994, -0.026779746636748314, 0.009012807160615921, 0.03515267372131348, 0.007835151627659798, 0.019046703353524208, 0.0007356091518886387, 0.002382539678364992, 0.00976160541176796, -0.0375215969979763, 0.004574476275593042, -0.014240779913961887, 0.01915561966598034, -0.006671111099421978, 0.0073790657334029675, -0.023934314027428627, -0.003907365258783102, -0.007440331391990185, -0.025282150134444237, 0.00469360314309597, -0.012784027494490147, 0.01742657646536827, -0.010197269730269909, -0.013859573751688004, -0.005336889065802097, -0.00350573705509305, 0.01151787769049406, 0.0002969665511045605, -0.011565528810024261, -0.0035533877089619637, 0.021442856639623642, -0.015711147338151932, -0.01212372351437807, 0.010748657397925854, 0.030932173132896423, 0.01470367331057787, 0.0024386995937675238, -0.005605775397270918, -0.004867188166826963, -0.00962546095252037, -0.023702867329120636, -0.006232043262571096, 0.005190533120185137, 0.02050345577299595, -0.027120109647512436, -0.012831678614020348, -0.003798448946326971, 0.03708593174815178, -0.0192781500518322, -0.006027825642377138, 0.008665637113153934, -0.021293098106980324, 0.0079304538667202, -0.010762272402644157, 0.003863117890432477, 0.0029611564241349697, -0.010381066240370274, -0.007753464858978987, 0.011442997492849827, 0.0008968560141511261, -0.019604898989200592, 0.03705870360136032, -0.007290571462363005, -0.006984245032072067, 0.019836345687508583, 0.0047072176821529865, -0.011075406335294247, -0.014499455690383911, -0.028998911380767822, -0.01061931997537613, 0.021402014419436455, -0.034934841096401215, 0.010980104096233845, -0.02940734662115574, 0.005602371878921986, 0.001485683722421527, 0.0034921225160360336, -0.006511140614748001, -0.01718151569366455, -0.0014091021148487926, 0.022763464599847794, -0.012137338519096375, -0.009067265316843987, 0.009060458280146122, 0.021075265482068062, 0.0011623390018939972, 0.008713288232684135, 0.040489561855793, 0.02766468934714794, 0.024969017133116722, -0.012532158754765987, 0.00021623676002491266, 0.00999305211007595, -0.0036214604042470455, -0.001649908721446991, 0.00767858512699604, 0.00011806335533037782, -0.0035091405734419823, 0.015316327102482319, 0.019114775583148003, -0.019795501604676247, -0.023702867329120636, 0.015207410790026188, 0.019958876073360443, -0.011191129684448242, -0.012280290946364403, -0.056527458131313324, -0.006797045469284058, -5.235737262410112e-05, 0.014009333215653896, 0.005592161323875189, 0.0068651181645691395, 0.00041885898099280894, 0.02790975198149681, -0.011027755215764046, 0.055302150547504425, -0.02818204089999199, -0.016909224912524223, -0.008985578082501888, -0.003607845865190029, -0.018951401114463806, 0.025146005675196648, -0.0008696269942447543, 0.013212884776294231, 0.014227165840566158, 0.042994629591703415, -0.004346433095633984, -0.009353170171380043, 0.0009538668091408908, -0.017031755298376083, 0.0028811711817979813, -0.0069263833574950695, -0.021306712180376053, 0.019332608208060265, 0.0040128775872290134, 0.014295238070189953, 0.02330804616212845, -0.011946734972298145, -0.017113441601395607, -0.01366216316819191, 0.01915561966598034, 0.0019349625799804926, -0.01061931997537613, -0.020694060251116753, 0.008617986924946308, -0.016405487433075905, -0.01989080384373665, 0.006984245032072067, 0.0019264535512775183, -0.003869925159960985, -0.007603705395013094, -0.02206912450492382, -0.015261868946254253, 0.03545219078660011, -0.0027501315344125032, -0.016391873359680176, -0.02938011847436428, -0.006266079377382994, -0.023239973932504654, -0.004315800499171019, 0.028944453224539757, 0.015425242483615875, 0.002613986376672983, 0.014662830159068108, -0.030904943123459816, 0.026766132563352585, -0.005510474089533091, 0.0001852850109571591, -0.013982104137539864, 0.035288818180561066, 0.00847503449767828, 0.013859573751688004, -0.00909449439495802, -0.010387873277068138, 0.015751991420984268, 0.01360089797526598, -0.02781444974243641, 0.031395066529512405, -0.02341696247458458, 0.03779388591647148, -0.011511070653796196, -0.017644409090280533, -0.017603565007448196, -0.0026241973973810673, 0.02976132556796074, -0.005895084235817194, -0.009564194828271866, -0.011477034538984299, 0.015820063650608063, -0.014485841616988182, 0.0324297696352005, 0.015044036321341991, -0.004557458218187094, -0.008311660028994083, 0.01891055889427662, -0.02864493429660797, 0.009557387791574001, 0.04500957950949669, 0.003669111290946603, -0.02059875801205635, 0.012695533223450184, -0.010905224829912186, 0.0038495035842061043, 0.020190322771668434, -0.004356644116342068, 0.014526684768497944, -0.02379816770553589, -0.042504508048295975, -0.06970630586147308, 0.0366230383515358, 0.005646619014441967, -0.0035635987296700478, 0.026153478771448135, 0.02924397401511669, 0.017712481319904327, 0.005888276733458042, -0.01719512976706028, -0.00962546095252037, -0.010033896192908287, 0.023008527234196663, -0.0030343346297740936, -0.024587810039520264, -0.023988772183656693, -0.016432717442512512, 0.002120460383594036, 0.024192988872528076, 0.002025158843025565, 0.009244253858923912, -0.0015239744680002332, 0.006650689523667097, 0.007310993503779173, 0.002142583951354027, -0.02695673517882824, 0.00615716353058815, 0.00350573705509305, 0.018025614321231842, -0.025636127218604088, -0.021252254024147987, 0.006027825642377138, 0.002314467215910554, -4.754443216370419e-05, 0.024342749267816544, -0.008291237987577915, -0.0024318923242390156, -0.002256605541333556, 0.028263729065656662, 0.019591283053159714, 0.03547941893339157, -0.014227165840566158, -0.031749043613672256, 0.014172707684338093, -0.02136117033660412, 0.006044843699783087, -0.015874521806836128, -0.02829095721244812, 0.014036562293767929, 0.019087547436356544, -0.00145505100954324, 0.023621179163455963, 0.01866549625992775, -0.015520544722676277, -0.02205551043152809, -0.012477700598537922, -0.053613949567079544, -0.0029220147989690304, 0.012736376374959946, 0.007596897892653942, -0.010435524396598339, 0.041660409420728683, -0.0038597143720835447, 0.016732236370444298, -0.011116249486804008, -0.015425242483615875, 0.014676445163786411, -0.0168275386095047, 0.025513596832752228, 0.027882521972060204, -0.017263201996684074, -0.024805642664432526, -0.01599705219268799, -0.011551913805305958, -0.002219165675342083, 0.011654023081064224, -0.00022825581254437566, -0.009829678572714329, 0.022518403828144073, 0.003560194978490472, 0.040053896605968475, -0.00020315406436566263, -0.002139180200174451, -0.03670472651720047, 0.03460809215903282, 0.03948208689689636, -0.012600231915712357, -0.015765605494379997, 0.022368645295500755, -0.033001579344272614, 0.002557826694101095, -0.01249812263995409, 0.001253386028110981, -0.010544439777731895, 0.015874521806836128, 0.026806974783539772, 0.021402014419436455, 0.015561387874186039, -0.007310993503779173, 0.012103301472961903, 0.018856100738048553, 0.0015563089400529861, 0.00034653188777156174, 0.009788834489881992, -0.014826204627752304, -0.02537745237350464, 0.013730236329138279, -0.02257286198437214, -0.04378427192568779, -0.006483911536633968, 0.02242310158908367, -0.02547275274991989, -0.017712481319904327, -0.022600091993808746, 0.010312993079423904, -0.029788553714752197, 0.023743709549307823, -0.01731766015291214, -0.011776553466916084, -0.03722207620739937, 0.026425769552588463, 0.010394680313766003, 0.016977297142148018, 0.015329941175878048, -0.002314467215910554, 0.01818898878991604, -0.013314993120729923, 0.019046703353524208, -0.03703147545456886, 0.0023416962940245867, 0.011061791330575943, -0.0018056248081848025, 0.02231418713927269, -0.0050169480964541435, -0.011361311189830303, -0.01705898530781269, 0.0096867261454463, -0.0011206446215510368, 0.011490648612380028, 0.009652689099311829, 0.06349808722734451, 0.01635102927684784, -6.96680126566207e-06, 0.0002365521650062874, -0.023348890244960785, 0.015152952633798122, 0.03218470886349678, -0.0033270465210080147, 0.00957780983299017, -0.025404680520296097, 0.027719147503376007, 0.0070182811468839645, -0.017589950934052467, -0.02196020819246769, 0.006599634885787964, -0.01444499846547842, -0.030033614486455917, 0.01470367331057787, -0.03232085332274437, 0.008733710274100304, 0.033246640115976334, -0.007964489981532097, 0.021116109564900398, 0.014063791371881962, -0.004679988604038954, -0.009802449494600296, 0.013512403704226017, -0.010088354349136353, 0.00185157370287925, 0.01023130677640438, 0.00799171905964613, 0.0021017403341829777, -0.00496589345857501, -0.04574476182460785, -0.021007193252444267, 0.014172707684338093, 0.01183101162314415, 0.024220218881964684, 0.0006079730810597539, 0.016786694526672363, -0.008543106727302074, 0.0026088810991495848, -0.017835011705756187, -0.029843011870980263, -0.012729569338262081, 0.009741184301674366, 0.020299239084124565, -0.011266008950769901, -0.01855657994747162], "18ca8e93-92d9-4eff-be6a-b6e49099476b": [-0.015258008614182472, -0.007560212630778551, 0.01856001280248165, -0.025563012808561325, -0.0038592168129980564, 0.01338687352836132, -0.011350637301802635, -0.015987200662493706, 0.005740670952945948, -0.0019055312732234597, 0.020926447585225105, 0.015478142537176609, -0.023169059306383133, -0.0016922769136726856, -0.018271086737513542, -0.020376114174723625, 0.013985361903905869, -0.012912210077047348, 0.0405045785009861, -0.005737231578677893, 0.010752149857580662, -0.013840898871421814, -0.012279326096177101, -0.008117426186800003, -0.022907650098204613, 0.013001639395952225, 0.007058032788336277, -0.01217613834887743, 0.005551493726670742, 0.00332264113239944, 0.016510019078850746, 0.014294924214482307, -0.01723921112716198, -0.026140863075852394, -0.00031988159753382206, -0.005420789588242769, 0.007285045459866524, 0.0054001519456505775, 0.00794544629752636, -0.02132544107735157, 0.015216733328998089, 0.01105483341962099, 0.010614566504955292, 0.006872295401990414, -0.03560660779476166, 0.0011849377769976854, -0.024544894695281982, 0.009823461063206196, -0.014831500127911568, 0.01638619415462017, 0.012017917819321156, 0.01108922902494669, -0.03420325368642807, 0.0158771350979805, 0.009651482105255127, 0.028644882142543793, -0.026608645915985107, 0.01945430599153042, -0.005929848179221153, -0.01315298117697239, 0.03802807629108429, -0.0033037234097719193, -0.03973411023616791, -0.005038995295763016, 0.010875974781811237, 0.0065627321600914, -0.0002506599121261388, 0.0012296524364501238, 0.011639563366770744, 0.0029976002406328917, 0.0018573771230876446, 0.02952541597187519, -0.031864337623119354, 0.009403831325471401, 0.025095228105783463, -0.006459544878453016, -0.03585425764322281, 0.0015624325023964047, -0.004540255293250084, 0.01119929552078247, -0.013834020122885704, -0.005950485821813345, -0.0016209054738283157, -7.991665916051716e-05, 0.008915410377085209, 0.006039915140718222, -0.007257529068738222, 0.013490061275660992, 0.011288724839687347, -0.022219732403755188, 0.0021497420966625214, 0.022893892601132393, 0.016812702640891075, 0.00512498477473855, -0.0048257410526275635, 0.022288525477051735, -0.029442867264151573, 0.023664359003305435, -0.01884893700480461, -0.010759028606116772, -0.017308002337813377, 0.011164899915456772, -0.02382946014404297, -0.008330680429935455, -0.0356341227889061, -0.02894756570458412, 0.03252473473548889, -0.003962404560297728, 0.004980522207915783, -0.011302483268082142, -0.03656969219446182, 0.049942806363105774, -0.021394232288002968, -0.04906227067112923, -0.026856297627091408, -0.006552413571625948, 0.012265567667782307, -0.019014038145542145, -0.02872743271291256, 0.00204655434936285, 0.006727832369506359, 0.018105987459421158, -0.0022942046634852886, 0.00820685550570488, 0.03010326623916626, 0.014927808195352554, -0.006215333938598633, -0.019082829356193542, -0.024709993973374367, -0.035001240670681, 0.05420789495110512, -0.008991081267595291, 0.01638619415462017, 0.013854657299816608, -0.03117641806602478, 0.020733831450343132, -0.004203175660222769, -0.00026205353788100183, -0.03329520300030708, 0.010064232163131237, 0.023623084649443626, 0.023691875860095024, 0.01558820903301239, -0.010016078129410744, -0.022219732403755188, 0.0273791141808033, 0.018229812383651733, -0.0030061991419643164, -0.00020358056644909084, 0.010931008495390415, 0.02301771752536297, -0.007876655086874962, 0.00026377334143035114, 0.002808423014357686, 0.004079350270330906, 0.008908530697226524, 0.021793223917484283, -0.004640003200620413, 0.005895452573895454, -0.0033123225439339876, 0.014886533841490746, 0.046393152326345444, -0.021972082555294037, -0.021820740774273872, -0.022095907479524612, 0.03197440132498741, 0.03703747317194939, 4.659565820475109e-05, -0.028053272515535355, 0.00902547687292099, 0.001371535356156528, 0.009961044415831566, -0.02546670287847519, -0.0006986661464907229, -0.0387435108423233, 0.01971571333706379, 0.013882174156606197, 0.0019485261291265488, -0.01368955709040165, 0.007285045459866524, 0.0028049834072589874, 0.002082670107483864, -0.0016123064560815692, 0.0421280637383461, -0.028589848428964615, -0.028617365285754204, 2.497395598766161e-06, -0.007856016978621483, 0.02187577448785305, -0.006652161478996277, 0.019041555002331734, 0.02925024926662445, 0.019523097202181816, -0.004010558594018221, -0.5811526775360107, -0.033377755433321, -0.005389833357185125, -0.013104827143251896, 0.028809983283281326, 0.011020437814295292, -0.015491900965571404, -0.0061706192791461945, -0.03511130437254906, 0.02461368590593338, -0.011956005357205868, 0.033212654292583466, -0.00554117513820529, -0.009610206820070744, 0.011949125677347183, -0.03395560383796692, 0.03007575124502182, -0.01545062568038702, 0.012471943162381649, 0.013999120332300663, -0.01609726808965206, -0.0034430266823619604, 0.004856697283685207, -0.018656320869922638, 0.0016630403697490692, 0.011281846091151237, -0.014790224842727184, -0.01355197373777628, 0.01722545176744461, 0.03577170521020889, -0.022316042333841324, -0.0047294325195252895, 0.011935367248952389, -0.016909010708332062, 0.04738375172019005, -0.010972282849252224, -0.007986721582710743, 0.03178178519010544, -0.002237451495602727, 0.039018675684928894, -0.023678118363022804, -0.006500819697976112, 0.005671879276633263, -0.0036872373893857002, 0.012189896777272224, -0.014831500127911568, 0.019798263907432556, -0.005441426765173674, -0.005235051736235619, 0.01315298117697239, 0.015904651954770088, 0.007635883521288633, 0.007037395611405373, -0.0328824520111084, 0.017610685899853706, 0.021174099296331406, 0.015643242746591568, -0.045264966785907745, 0.0008108826586976647, -0.028617365285754204, -0.01342126913368702, 0.029167698696255684, -0.0010482141515240073, -0.0027826260775327682, 0.009692756459116936, 0.015808342024683952, 0.014955325052142143, -0.00574411079287529, 0.02839723229408264, -0.02707643061876297, 0.0077390712685883045, -0.0045677716843783855, -0.012093588709831238, -0.0232516098767519, -0.0018298603827133775, 0.05357500910758972, -0.0006027876515872777, -0.021463023498654366, 0.01079342421144247, 0.009685877710580826, -5.3985397244105116e-05, 0.011144262738525867, -0.010807182639837265, -0.002987281419336796, 0.0023887932766228914, -0.003214294323697686, -0.04515489935874939, 0.020610006526112556, 0.009286885149776936, 0.01177026703953743, 0.014528816565871239, 0.025260329246520996, 0.006511138752102852, -0.03282742202281952, 0.007195616606622934, 0.009479502215981483, -0.02238483354449272, 0.004481782205402851, -0.005166260059922934, -0.03723009303212166, -0.03167171776294708, 0.011336879804730415, 0.0037044354248791933, 0.010525137186050415, 0.04298108071088791, -0.019220413640141487, -0.006218773778527975, 0.008426988497376442, 0.004419869743287563, -0.007677158806473017, -0.019082829356193542, -0.017349278554320335, -0.024792544543743134, -0.01671639457345009, 0.03167171776294708, -0.03142406791448593, 0.00512498477473855, 0.008578330278396606, 0.03772539272904396, 0.0007769167423248291, -0.005472383461892605, -0.002887533511966467, 0.012258688919246197, -0.0011900971876457334, 0.01301539782434702, 0.016812702640891075, 0.013971603475511074, -0.013999120332300663, -0.012334359809756279, 0.014143582433462143, -0.004007119219750166, 0.021765707060694695, 0.028837498277425766, -0.023347917944192886, 0.016069751232862473, -0.002834219951182604, 0.029360316693782806, -0.0024489860516041517, 0.02183450013399124, 0.0032744870986789465, -0.028067031875252724, -0.006187817547470331, 0.0030818700324743986, -0.009906010702252388, 0.008901651948690414, -0.019014038145542145, -0.03032340109348297, 0.0035702914465218782, -0.026209654286503792, 0.014446265995502472, -0.007333199959248304, -0.005579010583460331, -0.00352557678706944, 0.023182816803455353, -0.009101147763431072, 0.003941766917705536, -0.02135295793414116, -0.022343559190630913, 0.009073630906641483, -0.018105987459421158, 0.013538215309381485, -0.010525137186050415, -0.022219732403755188, -0.006600567605346441, -0.02213718369603157, -0.013042914681136608, -0.0006234251777641475, 0.024476101621985435, 0.003958964720368385, -0.023623084649443626, -0.025053953751921654, 0.011020437814295292, 0.013187377713620663, 0.01406791154295206, -0.0010731512447819114, 0.00588169414550066, -0.008089909330010414, 0.001960564637556672, -0.00697892252355814, 0.0001731617230689153, -0.007773466873914003, 0.010456345044076443, 0.002806703094393015, -0.004151581786572933, 0.020444905385375023, 0.02510898746550083, 0.024159660562872887, -0.011144262738525867, -0.006108706817030907, 0.018711354583501816, 0.005224733147770166, 0.019536854699254036, 0.00464688241481781, 0.024159660562872887, 0.027296563610434532, 0.019880814477801323, -0.004557453095912933, 0.0156294833868742, -0.013744590803980827, 0.01589089259505272, 0.02052745595574379, -0.001922729192301631, -0.004619365558028221, -0.020045913755893707, 0.01917913742363453, -0.01064896211028099, 0.020389873534440994, -0.02574187144637108, 0.006965164095163345, -0.006641842890530825, 0.004602167755365372, -0.014652641490101814, -0.015368076041340828, 5.2077499276492745e-05, 0.029690517112612724, 0.0051972162909805775, 0.00820685550570488, -0.0065627321600914, -0.001955405343323946, 0.023912010714411736, -0.013586369343101978, 0.011378154158592224, 0.004550573881715536, -0.011618925258517265, 0.00831692200154066, 0.006315082311630249, -0.00889477226883173, 0.008516417816281319, -0.015079149976372719, -0.024971403181552887, -0.01013302430510521, 1.7298705188295571e-06, -0.0008061532280407846, 0.006432028021663427, 0.03145158663392067, -0.010421949438750744, 0.029057633131742477, -0.009610206820070744, 0.013077310286462307, -0.0035358956083655357, -0.006531775929033756, 0.013297444209456444, -0.010291244834661484, -0.011102987453341484, 0.029195215553045273, 0.022756308317184448, 0.05357500910758972, 0.03205695375800133, -0.010043594986200333, 0.006614326033741236, -0.02897508256137371, -0.0002766717807389796, -0.012279326096177101, 0.013407510705292225, -0.0026089269667863846, -0.003133463906124234, -0.0019485261291265488, 0.007512058597058058, 0.010580169968307018, 0.0312589667737484, 0.006208454724401236, 0.02052745595574379, 0.017596928402781487, 0.006325400900095701, 0.00273791141808033, -0.040834780782461166, 0.0019622845575213432, -0.019812021404504776, 0.01642746850848198, 0.005506779067218304, -0.017060352489352226, -0.029387833550572395, -0.008743430487811565, -0.019784506410360336, -0.0002008933952311054, -0.011921608820557594, 0.017651962116360664, 0.027406631037592888, 0.017376795411109924, -0.003314042231068015, -0.026622405275702477, -0.021724432706832886, 0.036624725908041, -0.012334359809756279, 0.013875294476747513, -0.006686557549983263, -0.02210966683924198, -0.0048945327289402485, -0.011983522213995457, 0.0012528696097433567, -0.0008745150407776237, 0.00431324215605855, 0.01608351059257984, 0.004626244772225618, -0.023953285068273544, 0.006105267442762852, 0.020610006526112556, -0.009059872478246689, 0.016331160441040993, -0.0065627321600914, 0.03632204234600067, 0.01491404976695776, -0.018642563372850418, -0.010064232163131237, 0.031066352501511574, 0.019027795642614365, 0.004106867127120495, -0.005252249538898468, -0.006487061269581318, -0.024998920038342476, 0.009644602425396442, -0.017418069764971733, 0.020472422242164612, -0.0032486901618540287, 0.02023853175342083, -0.01666136085987091, 0.007580850273370743, 6.556713196914643e-05, 0.009307523258030415, 0.022646242752671242, -0.0213116817176342, -0.029470382258296013, -0.03698244318366051, 0.002732752123847604, -0.028053272515535355, 0.0018952125683426857, 0.013373115099966526, -0.018752628937363625, -0.03808311000466347, -0.02765428088605404, -0.02539791166782379, 0.014391233213245869, -0.00411030650138855, -0.032992519438266754, 0.004409550689160824, -0.007924809120595455, -0.0008487181621603668, -0.005582449957728386, 0.03007575124502182, -0.004031196236610413, -0.013641403056681156, -0.004275406710803509, 0.02409086935222149, -0.013723952695727348, 0.019069071859121323, -0.012781506404280663, -0.008963564410805702, -0.004928928334265947, 0.008007358759641647, -0.004203175660222769, 0.01611102558672428, 0.02299020066857338, 0.002651921706274152, -0.015381833538413048, 0.002915050135925412, 0.003271047491580248, 0.011887213215231895, 0.03442338854074478, 0.02129792422056198, 0.020472422242164612, 0.022013358771800995, 0.050438106060028076, -0.0013672359054908156, 0.0011703195050358772, 0.002918489743024111, 0.007027076557278633, 0.006689996924251318, -0.0022030556574463844, -0.0045987279154360294, -0.017335519194602966, -0.026044555008411407, 0.006008958909660578, -0.00527288718149066, -0.026636162772774696, 0.02869991585612297, 0.00354965403676033, -0.0602615661919117, -0.019798263907432556, 0.022522417828440666, 0.009307523258030415, -0.03885357826948166, -0.01776202768087387, 0.012485701590776443, -0.00791792944073677, 0.0017567691393196583, -0.038165658712387085, -0.004794784355908632, -0.008777826093137264, -0.0036837977822870016, -0.0015813502250239253, -0.01406103279441595, 0.0047982241958379745, -0.033762987703084946, 0.00033256507595069706, 0.02980058267712593, -0.04642066732048988, -0.046640802174806595, 0.0011307642562314868, -0.0001428503601346165, 0.03425828740000725, 0.00458153011277318, -0.008798464201390743, 0.002648482099175453, 0.012121105566620827, -0.014570090919733047, -0.01638619415462017, -0.022357316687703133, -0.032139502465724945, 0.024971403181552887, -0.01608351059257984, 0.011825300753116608, -0.0025177777279168367, -0.01491404976695776, 0.032111987471580505, 0.0006561012705788016, 0.0018797344528138638, 0.00500459922477603, -0.00024851018679328263, 0.003948646131902933, 0.01013302430510521, -0.016743909567594528, 0.005826660897582769, 0.021174099296331406, -0.00527288718149066, 0.015271767042577267, -0.04350389912724495, -0.008977322839200497, -0.021476782858371735, -0.029167698696255684, 0.004220373462885618, 0.028232131153345108, 0.011398792266845703, 0.000573981087654829, 0.01858752965927124, 0.011928488500416279, -0.0090323556214571, 0.011178658343851566, 0.014625124633312225, 0.027956964448094368, 0.00662808446213603, -0.02076134830713272, -0.006954845506697893, -0.00013403641059994698, 0.008027996867895126, 0.019605647772550583, -0.016840219497680664, 0.023884493857622147, 0.012052313424646854, 0.024159660562872887, 0.010174298658967018, -0.008440746925771236, -0.03574419021606445, -0.018670080229640007, 0.020458664745092392, -0.008791584521532059, 0.042760949581861496, 0.02246738411486149, -0.03852337598800659, -0.004251329693943262, 0.002653641626238823, -0.026732470840215683, 0.015147942118346691, -0.03013078309595585, -0.00395552534610033, -0.007312562316656113, -0.0028686157893389463, -0.008929168805480003, -0.03882605955004692, -0.017321761697530746, -0.02627844549715519, -0.005200655665248632, 0.015725793316960335, -0.008406351320445538, 0.000822921225335449, 0.020940206944942474, -0.004278846550732851, -0.04119249805808067, -0.010332520119845867, 0.001041335053741932, -0.007704675197601318, -0.025631804019212723, -0.01010550744831562, 0.02894756570458412, 0.011577650904655457, 0.03698244318366051, 0.011453825049102306, 0.018697595223784447, -0.0031798982527107, 0.013675798662006855, -0.0002749520062934607, -0.000660400721244514, -0.0048670158721506596, -0.013490061275660992, -0.02380194328725338, 0.003618445713073015, 0.015189217403531075, 0.0019330480135977268, -0.028369715437293053, 0.004860136657953262, 0.04972267150878906, -0.003628764534369111, 0.013132344000041485, -0.005819781683385372, -0.05679446458816528, -0.014542574994266033, 0.01719793677330017, 0.014054153114557266, -0.007119945716112852, -0.015436867251992226, -0.004887653514742851, 0.029497899115085602, -0.0026622405275702477, 0.006800063885748386, 0.002393952803686261, -0.017404310405254364, -0.023389192298054695, 0.006246290169656277, 0.017583169043064117, -0.004327000584453344, -0.01754189468920231, 0.005806023254990578, -0.027131464332342148, 0.004739751107990742, -0.013778986409306526, 0.01392344944179058, 0.025095228105783463, 0.0098440982401371, 0.002450705971568823, -0.015546933747828007, 0.03279990330338478, -0.013668919913470745, -0.023347917944192886, -0.016234852373600006, 0.0014996599638834596, -0.03656969219446182, -0.026072071865200996, 0.007897292263805866, -0.027970723807811737, 0.014404991641640663, 0.012375635094940662, 0.01406103279441595, 0.005021797493100166, -0.00804863404482603, -0.0041275047697126865, 0.003062952309846878, -0.030736152082681656, 0.04999784007668495, 0.01287781447172165, 0.002870335476472974, 0.024255968630313873, 0.009740910492837429, 0.002547014271840453, -0.01938551291823387, -0.02875494956970215, -0.007443266920745373, 0.032992519438266754, 0.0361294224858284, -0.007986721582710743, -0.015106666833162308, -0.0008831140003167093, 0.011749629862606525, -0.01778954453766346, -0.03700995817780495, 0.03362540528178215, 0.04265088215470314, -0.0036046872846782207, -0.02985561639070511, 0.0027017956599593163, -0.009094269014894962, 0.011852817609906197, -0.012258688919246197, -0.012224293313920498, -0.017335519194602966, -0.0005309862899594009, -0.020940206944942474, -0.0007498299819417298, 0.006297884043306112, 0.010284366086125374, 0.0015426548197865486, 0.023430468514561653, -0.021463023498654366, -0.01095852442085743, -0.03577170521020889, 0.012698955833911896, 0.009369435720145702, 0.028920048847794533, 0.0007678878610022366, 0.004210054874420166, 0.045842818915843964, -5.433473052107729e-05, 0.0063322801142930984, -0.010882853530347347, 0.001043914700858295, 0.04917233809828758, -0.021242890506982803, -0.0026295643765479326, -0.021187856793403625, 0.0008220613235607743, 0.014886533841490746, 0.015546933747828007, 0.0026192455552518368, 0.005245370324701071, -0.03720257431268692, -0.007126824464648962, 0.022054633125662804, -0.02903011627495289, 0.01862880401313305, -0.0290025994181633, -0.0018040634458884597, 0.011096108704805374, -0.0010731512447819114, 0.013778986409306526, 0.01584961824119091, -0.0354965403676033, -0.023719392716884613, -0.017706993967294693, -0.009906010702252388, -0.0022099348716437817, 0.008647122420370579, 0.016798943281173706, 0.015326800756156445, 0.04754885286092758, -0.04232067987322807, 0.023636844009160995, -0.01352445688098669, -0.0026553613133728504, -0.002142862882465124, 0.003945206291973591, -0.015285525470972061, -0.0026949166785925627, 0.015120425261557102, 0.011790905147790909, -0.015932168811559677, -0.033790506422519684, 0.02684253826737404, 0.023086508736014366, 0.0156294833868742, 0.043366316705942154, 0.022811342030763626, -0.004670959431678057, 0.01010550744831562, 0.0005675319116562605, -0.026168379932641983, -0.009692756459116936, 0.00423069205135107, -0.0014480662066489458, -0.009218093939125538, -0.0011290444526821375, 0.019055312499403954, -0.008371954783797264, -0.004509298596531153, 0.012341238558292389, -0.02869991585612297, -0.017404310405254364, 0.012630164623260498, -0.01410230714827776, -0.0025212173350155354, 0.005953925661742687, -0.027447905391454697, -0.00772531284019351, -0.03032340109348297, -0.009362556040287018, 0.00045875494834035635, -0.019578130915760994, -0.0006427728803828359, 0.05547366291284561, 0.012526976875960827, 0.01802343688905239, 0.0003906081255991012, -0.021793223917484283, -0.014941566623747349, -0.0047328718937933445, -0.01382026169449091, -0.029718033969402313, -0.014088548719882965, 0.03335023671388626, 0.0027740271762013435, -0.022261008620262146, -0.040917329490184784, -0.01037379540503025, -0.020458664745092392, -0.012767747975885868, -0.006315082311630249, 0.018945246934890747, 0.032442186027765274, 0.005183457862585783, -0.000561082677450031, -0.0001640253176447004, -0.009369435720145702, 0.013070431537926197, -0.004213494248688221, -0.011247450485825539, -0.01663384400308132, -0.006779426243156195, -0.01862880401313305, -0.0014910610625520349, -0.02820461429655552, -0.00929376482963562, -0.0069342078641057014, 0.0025143383536487818, 0.00372851244173944, 0.04342135041952133, -0.0018934927647933364, -0.008860376663506031, -0.007388233207166195, -0.024214694276452065, -0.018807662650942802, -0.0003540625039022416, -0.017046594992280006, -0.016221093013882637, -0.022508658468723297, 0.0037973043508827686, -0.011928488500416279, -0.0011161461006850004, 0.0006109566893428564, 0.001084329909645021, -0.005623725242912769, 0.01666136085987091, -0.01726672798395157, -0.010160540230572224, 0.0039658439345657825, -0.005279766395688057, 0.03090125136077404, -0.007690916769206524, -0.0022150941658765078, 0.035166338086128235, 0.0009390073246322572, 0.0061706192791461945, -0.018174778670072556, 0.012024796567857265, -0.022302282974123955, -0.002247770316898823, 0.021119065582752228, 0.00035814702278003097, 0.009513897821307182, 0.010160540230572224, 0.010717753320932388, -0.018546253442764282, 0.02186201699078083, 0.023691875860095024, -0.02217845804989338, -0.024022076278924942, 0.008475142531096935, 0.022329799830913544, -0.02378818579018116, 0.00731944153085351, 0.008543934673070908, -0.016289884224534035, 0.014941566623747349, -0.034863654524087906, -0.006242850795388222, -0.040366996079683304, 0.036487139761447906, 0.010084869340062141, 0.012203655205667019, -0.032992519438266754, -0.009424468502402306, 0.006910130847245455, -0.032387152314186096, 0.0014102307613939047, 0.23994560539722443, -0.029965683817863464, 0.007367595564574003, 0.02484757825732231, -0.018697595223784447, 0.03205695375800133, -0.0049667637795209885, 0.014432507567107677, -0.005224733147770166, 0.029415350407361984, -0.03271735459566116, -0.0017283925553783774, 0.004787905607372522, -0.010566411539912224, 0.03255225345492363, 0.006659040693193674, -0.02652609720826149, -0.034588489681482315, -0.026856297627091408, -0.009190577082335949, 0.0008594668470323086, 0.011178658343851566, -0.028259648010134697, -0.02109154872596264, 0.0067656678147614, 0.020100947469472885, -0.02872743271291256, 0.008674639277160168, 0.02107779122889042, -0.00294084707275033, -0.02297644317150116, 0.018986521288752556, -0.00513530382886529, -0.001592528889887035, -0.00045273566502146423, -3.244766730858828e-06, 0.01971571333706379, 0.03811062499880791, 0.011109866201877594, 0.013723952695727348, -0.022219732403755188, -0.015354317612946033, 0.017418069764971733, -0.025026436895132065, 0.0004510158614721149, -0.001566731953062117, -0.019468063488602638, -0.020940206944942474, 0.014281165786087513, 0.0163724347949028, -0.019206654280424118, -0.01365516148507595, 0.03940391167998314, 0.00745702488347888, 0.0011213053949177265, -0.020087189972400665, 0.0273103229701519, 0.003945206291973591, 0.005441426765173674, 0.045787785202264786, -0.013159860856831074, 0.04947502166032791, -0.012004159390926361, -0.002603767439723015, -0.0035668518394231796, 0.0030182376503944397, -0.03833075985312462, -0.013834020122885704, 0.004774147178977728, -0.007243770640343428, 0.009658360853791237, -0.008426988497376442, -0.022027116268873215, -0.016510019078850746, -0.020678797736763954, -0.04421933367848396, 0.04044954478740692, 0.01695028506219387, 0.03632204234600067, 0.05134615674614906, 0.019908331334590912, -0.014047274366021156, 0.009101147763431072, 0.030736152082681656, -0.00731944153085351, -0.023169059306383133, 0.0074363877065479755, -0.00533823948353529, 0.002908170921728015, 0.005572131369262934, -0.0075051793828606606, -0.038385793566703796, 0.008564571850001812, -0.010456345044076443, -0.006383873987942934, 0.008151821792125702, 0.0010722912847995758, 0.0010138183133676648, -0.002418029820546508, -0.023733152076601982, -0.02461368590593338, 0.02458616904914379, 0.005159380845725536, 0.012024796567857265, -0.030268367379903793, -0.0008534475928172469, 0.0021652202121913433, 0.014652641490101814, 0.01068335771560669, -0.008289405144751072, 0.006063992157578468, -0.037615325301885605, 0.004337319638580084, -0.00889477226883173, -0.018381154164671898, -0.004406111314892769, -0.019302964210510254, -0.027516698464751244, -0.003931448329240084, 0.012506338767707348, 0.011041074991226196, -0.009252489544451237, -0.008034875616431236, -0.00875718891620636, -0.017596928402781487, -0.034065671265125275, -0.007828500121831894, -0.020912690088152885, -0.0038867334369570017, -0.01723921112716198, 0.008371954783797264, -0.02842474915087223, 0.026085829362273216, 0.004953005351126194, -0.010504499077796936, 0.0002521647256799042, -0.023650601506233215, -0.013139222748577595, 0.017638202756643295, -0.0005933287902735174, -0.010229332372546196, 0.02875494956970215, 0.012520097196102142, -0.01807847060263157, -0.0010525137186050415, -0.011887213215231895, 0.002663960214704275, -0.013428148813545704, 0.01882142201066017, -0.012974122539162636, -0.02486133575439453, 0.0069342078641057014, 0.022783825173974037, 0.00348946126177907, 0.02026604861021042, -0.012561372481286526, -0.008908530697226524, -0.05861056596040726, -0.006462984252721071, 0.018752628937363625, -0.02381570264697075, -0.005296964198350906, 0.021930808201432228, -0.01051137875765562, -0.02246738411486149, -0.023636844009160995, -0.17412565648555756, 0.009046114049851894, 0.023856977000832558, -0.041164979338645935, 0.024242211133241653, 0.005953925661742687, 0.010022956877946854, 0.005806023254990578, 0.0076014879159629345, -0.019867055118083954, 0.03172675147652626, -0.003164420137181878, -0.0035032194573432207, -0.011777146719396114, 0.00016735741519369185, 0.01693652756512165, -0.029415350407361984, 0.022329799830913544, 0.05258440971374512, 0.0048291804268956184, 0.04532000049948692, -0.026691196486353874, 0.005517097655683756, 0.04644818603992462, -0.006208454724401236, 0.008399471640586853, -0.026402270421385765, -0.010731511749327183, -0.008433868177235126, -0.005795704200863838, 0.025604287162423134, 0.026732470840215683, 0.003855777205899358, 0.000975122966337949, 0.001063692383468151, 0.003480862360447645, 0.023650601506233215, -0.003217733930796385, -0.015973443165421486, 0.0035874894820153713, -0.003804183332249522, 0.026649922132492065, -0.012767747975885868, -0.0036803584080189466, -0.02327912673354149, 0.002770587569102645, 0.013338719494640827, -0.007006438914686441, -0.002361276652663946, 0.005585889797657728, 0.02429724484682083, -0.042238131165504456, -0.006057112943381071, -0.0027241529896855354, 0.02110530622303486, -6.766313163097948e-05, -0.00024227592803072184, -0.005926408804953098, -0.01119929552078247, -0.0106558408588171, 0.004237571265548468, -0.019633164629340172, -0.0017352717695757747, 0.01327680703252554, -0.00458153011277318, -0.03332272171974182, -0.018477462232112885, 0.03959652781486511, -0.00259516853839159, 0.007629004307091236, 0.021146582439541817, -0.022591209039092064, 0.004010558594018221, -0.0013809942174702883, 0.004289165139198303, 0.0031798982527107, -0.01285029761493206, 0.02791569009423256, 0.009651482105255127, -0.010731511749327183, -0.02242610789835453, 0.061417270451784134, 0.014831500127911568, 0.004839499015361071, 0.018394911661744118, -0.000767027959227562, 0.009493260644376278, 0.0008745150407776237, -0.037918008863925934, -0.0257556289434433, 0.0585004985332489, -0.002829060424119234, -0.01829860359430313, -0.00677598686888814, -0.0036872373893857002, 0.01670263521373272, -0.0020998679101467133, -0.006882613990455866, -0.026649922132492065, -0.01970195583999157, -0.0041309441439807415, -0.015161700546741486, -0.010401311330497265, 0.027186498045921326, 0.032689835876226425, 0.024200934916734695, 0.001337999477982521, 0.04460456594824791, 0.03357037156820297, 0.007718433625996113, -0.006177498493343592, 0.016289884224534035, 0.015780825167894363, 0.026883812621235847, 0.011247450485825539, 0.00650769891217351, -0.011756508611142635, -0.015299283899366856, 0.005995200481265783, 0.007972963154315948, -0.023471742868423462, -0.02570059522986412, 0.026677438989281654, 0.025934487581253052, -0.0015727512072771788, -0.030571050941944122, -0.061362236738204956, -0.013214893639087677, 0.012485701590776443, 0.037340160459280014, -0.013730832375586033, 0.019302964210510254, 0.01203167624771595, 0.034065671265125275, 0.010738391429185867, 0.019357996061444283, 0.0060983882285654545, -0.025274086743593216, -0.0035393352154642344, 0.005011478438973427, -0.020169738680124283, -0.01051825750619173, -0.0008173318929038942, 0.010710874572396278, -0.003945206291973591, 0.023058991879224777, -0.03087373450398445, 0.0012262128293514252, 0.0044301883317530155, -0.004137823358178139, 0.0032676078844815493, -0.004904851317405701, -0.020417390391230583, 0.017019078135490417, 0.01545062568038702, 0.006277246866375208, 0.01861504651606083, -0.018959004431962967, -0.0135313356295228, -0.01271271426230669, 0.02188953384757042, 0.009390072897076607, -0.026416029781103134, -0.025274086743593216, 0.011653321795165539, -0.015932168811559677, 0.012045434676110744, 0.01162580493837595, 0.018917730078101158, -0.0029976002406328917, 0.0068413387052714825, -0.01781706139445305, -0.01531304232776165, 0.02545294538140297, -0.01583585888147354, -0.006855097133666277, -0.03794552758336067, 0.0014179698191583157, -0.016014717519283295, -0.015973443165421486, 0.02054121531546116, 0.021463023498654366, 0.019894571974873543, 0.008199975825846195, -0.01612478494644165, 0.014026636257767677, 0.00512498477473855, -0.006524896714836359, -0.0030010398477315903, 0.010208695195615292, -0.0015736111672595143, 0.03469855710864067, -0.04452201724052429, -0.023347917944192886, 0.021407991647720337, 0.013373115099966526, -0.015725793316960335, 0.01970195583999157, 0.001587369479238987, 0.030158299952745438, -0.03445090353488922, -0.012210534885525703, 0.004254769533872604, -0.032111987471580505, 0.024682477116584778, -0.0016828180523589253, -0.0024541455786675215, 0.01586337573826313, -0.009286885149776936, -0.0016424028435721993, 0.013840898871421814, 0.01392344944179058, -0.007133703678846359, -0.003159260842949152, 2.5447570806136355e-05, -0.03687237575650215, 0.022233491763472557, 0.01974323019385338, -0.022233491763472557, -0.020348597317934036, -0.009603327140212059, -0.003121425397694111, -0.007257529068738222, 0.006153421476483345, -0.010160540230572224, 0.01300851907581091, -0.035991840064525604, -0.035166338086128235, -0.08161452412605286, 0.01162580493837595, 0.005173139274120331, 0.00642514880746603, 0.018656320869922638, -0.0012055753031745553, 0.025246569886803627, -0.004959884565323591, 0.012526976875960827, 0.0026192455552518368, -0.01608351059257984, 0.01163268368691206, -0.0019347678171470761, 0.006053673569113016, -0.004777586553245783, -0.01243754755705595, 0.024132143706083298, 0.004471463151276112, -0.0028170219156891108, 0.00015940336743369699, 0.01616605930030346, 0.0016166060231626034, 0.014996600337326527, -0.005781946238130331, -0.01966067962348461, 0.018917730078101158, -0.012802143581211567, 0.017583169043064117, -0.022329799830913544, -0.03552405536174774, 0.0175006203353405, 0.01776202768087387, -0.007367595564574003, 0.007126824464648962, 0.005991761106997728, 0.0098440982401371, 0.005775067023932934, 0.0005202375468797982, 0.014735191129148006, 0.0008831140003167093, -0.04014686122536659, -0.024696236476302147, 0.04377906769514084, -0.0019743230659514666, -0.006136223673820496, 0.004650321789085865, -0.00532792042940855, -0.004461144562810659, 0.0035032194573432207, 0.013428148813545704, 0.012967243790626526, -0.0005701115587726235, -0.01890397071838379, -0.012692077085375786, -0.00513530382886529, -0.05340991169214249, 0.02110530622303486, -0.005111226346343756, 0.0034051912371069193, 0.007443266920745373, 0.04152269661426544, -0.0009209494455717504, 0.025796903297305107, -0.0015065391780808568, -0.009912890382111073, -0.021201616153120995, -0.009231852367520332, -0.02080262266099453, -0.002627844689413905, -0.0034378673881292343, -0.019234171137213707, -0.027200255542993546, -0.004681278020143509, 0.010882853530347347, 0.033515337854623795, 0.001239111297763884, -0.012196776457130909, 0.0004931507864966989, -0.03156165033578873, 0.05569379776716232, 0.018408671021461487, -0.0009510458330623806, -0.03335023671388626, 0.025796903297305107, 0.012100467458367348, 0.010036715306341648, -0.01777578704059124, -0.02272879146039486, -0.022907650098204613, -0.005943606607615948, -0.018697595223784447, -0.030433466657996178, 0.0078147416934371, 0.0131254643201828, 0.02519153617322445, 0.03456097096204758, 0.009885373525321484, -0.00505275372415781, 0.006707195192575455, 0.0034516258165240288, 0.029938166961073875, -0.017170419916510582, -0.0011694596614688635, -0.03147910162806511, -0.020720073953270912, 0.014969083480536938, -0.012265567667782307, -0.04270591586828232, -0.0005658121081069112, 0.013049793429672718, -0.02630596235394478, 0.009059872478246689, -0.030185816809535027, 0.013785865157842636, -0.01611102558672428, -0.011660200543701649, -0.008798464201390743, -0.019770747050642967, -0.028534814715385437, 0.011158021166920662, 0.03618445619940758, 0.0046365633606910706, 0.03290997073054314, 0.001595108537003398, 0.02026604861021042, -0.017431827262043953, 0.018491221591830254, -0.027007639408111572, 0.00956205278635025, -0.015739550814032555, -0.006614326033741236, 0.019825780764222145, -0.024269727990031242, -0.02464120276272297, -0.024462344124913216, -7.873430149629712e-05, 0.011756508611142635, -0.012416909448802471, -0.02903011627495289, 0.0837608277797699, -0.009101147763431072, -0.008358197286725044, -0.003621885320171714, -0.015368076041340828, 0.02491636946797371, 0.018174778670072556, 0.019192896783351898, -0.0021652202121913433, -0.023719392716884613, -0.01203855499625206, -0.005967683624476194, -0.016179818660020828, -0.03601935878396034, 0.014845258556306362, -0.022604966536164284, -0.022357316687703133, 0.046365633606910706, -0.0036872373893857002, 0.037064991891384125, 0.04287101328372955, -0.0014884814154356718, 0.007849138230085373, 0.005723473150283098, -0.007119945716112852, 0.009059872478246689, 0.017363036051392555, -0.012313722632825375, -0.011832179501652718, -0.010593928396701813, 0.0063976324163377285, -0.0010765907354652882, -0.00512498477473855, -0.026471063494682312, -0.018105987459421158, 0.009899131953716278, 0.0014867616118863225, -0.014253648929297924, 0.014597607776522636, 0.013242410495877266, 0.002971803303807974, 0.007250649854540825, -0.03467103838920593, -0.03142406791448593, 0.00018025586905423552, 0.02135295793414116, 0.01013302430510521, 0.00010050043783849105, -0.045512616634368896], "aa3dd74c-bf10-4fec-98e2-94661eeb3270": [0.0017970427870750427, 0.011744242161512375, -0.0015097830910235643, -0.029100067913532257, -0.013227303512394428, 0.01064864732325077, -0.020335309207439423, -0.02550598233938217, 0.025185320526361465, -0.018037231639027596, -0.004519328474998474, -0.010354707017540932, -0.01642056182026863, -0.004586133174598217, -0.03326867148280144, -0.006947674322873354, 0.014897417277097702, 0.010368067771196365, 0.016540810465812683, -0.02803119458258152, 0.03407032787799835, 0.02025514282286167, -0.031852416694164276, -0.015765877440571785, -0.037089891731739044, 0.013494521379470825, 0.04117833077907562, -0.02046891860663891, -0.017449351027607918, -0.0076424418948590755, 0.015231439843773842, 0.00019613401673268527, -0.010381429456174374, -0.019266435876488686, 0.0020458896178752184, -0.005297601688653231, 0.02688215672969818, -0.02248641662299633, 0.006219504866749048, 0.012752991169691086, 0.019493570551276207, -0.0015239791246131063, 0.016808027401566505, 0.006894230842590332, -0.00921234954148531, 0.0074821109883487225, -0.0078094531781971455, 0.02490474097430706, -0.015324966982007027, 0.0182777289301157, -0.010655327700078487, 0.029046623036265373, -0.027015764266252518, -0.02773725427687168, 0.010989350266754627, -0.004716401919722557, -0.00807667151093483, 0.021764926612377167, 0.015805959701538086, -0.027109291404485703, 0.0347650945186615, 0.017208855599164963, -0.026588216423988342, -0.00015897398407105356, 0.009666619822382927, -0.011784324422478676, -0.0002214988780906424, 0.01813075877726078, -0.006396536715328693, 0.018598390743136406, 0.01663433574140072, 0.036047741770744324, -0.02117704600095749, -0.011937974952161312, 0.02628091536462307, -0.0017185473116114736, -0.021764926612377167, 0.004409101326018572, -0.011350095272064209, 0.006313031073659658, -0.018544945865869522, 0.005962307099252939, 0.0066704354248940945, 0.0036341683007776737, -0.010935907252132893, 0.021350737661123276, -0.015351688489317894, 0.012345483526587486, 0.011283290572464466, 0.005040404386818409, -0.015538740903139114, 0.012492452748119831, 0.0013152147876098752, -0.002222921699285507, 0.016260230913758278, -0.009058699011802673, -0.013320829719305038, 0.025158599019050598, -0.017542878165841103, -0.00800318643450737, 0.007001118268817663, 0.008885006420314312, -0.03773121535778046, -0.008591067045927048, -0.04823289439082146, -0.04045684263110161, 0.0451866053044796, 0.0030563087202608585, 0.0005327663966454566, -0.02984827756881714, -0.03682267665863037, 0.05702437460422516, -0.013841905631124973, -0.029981886968016624, -0.03345572575926781, 0.007128046825528145, 0.018077313899993896, -0.03059648908674717, -0.006894230842590332, -0.006794023793190718, -0.0023665516637265682, 0.0217382051050663, 0.00655018724501133, -0.012993487529456615, 0.0014296176377683878, -0.000994552974589169, -0.0023415000177919865, -0.0012634412851184607, -0.020522361621260643, -0.03516592085361481, 0.038987141102552414, -0.004302213899791241, 0.012031502090394497, 0.03377638757228851, -0.00537108676508069, 0.0021160345058888197, -0.011530467309057713, -0.0019941162317991257, -0.03059648908674717, 0.014763807877898216, 0.02125721238553524, 0.015151274390518665, -0.004004933405667543, -0.023608732968568802, -0.0023247988428920507, 0.011263249441981316, -0.011049474589526653, 0.021096881479024887, 0.005187374074012041, -0.0037911590188741684, 0.025225402787327766, -0.0033769705332815647, 0.007168129552155733, 0.0024734388571232557, -0.005995709449052811, 0.03030254878103733, 0.03412377089262009, 0.010675368830561638, -0.00284253410063684, -0.011844448745250702, 0.01468364242464304, 0.03909403085708618, 0.005147291347384453, -0.023501845076680183, 0.013801822438836098, 0.025158599019050598, 0.005290921311825514, -0.006680456455796957, 0.001218348159454763, 0.0004425802326295525, 0.005320983473211527, -0.005551459267735481, -0.018451420590281487, -0.0005523902364075184, -0.013855266384780407, 0.03703644871711731, 0.004171945154666901, 0.008784799836575985, -0.016540810465812683, 0.006653734482824802, -0.01247241161763668, -0.012445690110325813, 0.01086910255253315, 0.040483564138412476, -0.018104037269949913, -0.03513919934630394, 0.017876900732517242, 0.0016500726342201233, 0.013674894347786903, 0.005194054916501045, 0.01195133663713932, 0.026013696566224098, -0.010080808773636818, 0.00908542051911354, -0.6045545935630798, -0.017970427870750427, 0.009873714298009872, -0.005394468549638987, 0.019667264074087143, 0.026254193857312202, 0.011603952385485172, 0.023141101002693176, -0.0304896030575037, -0.022018784657120705, -0.003650869242846966, 0.011269929818809032, 0.005548119079321623, -0.005558139644563198, 0.001701011206023395, -0.032253243029117584, 0.0183578934520483, -0.00239160330966115, 0.012218554504215717, 0.02653477154672146, -0.001465525128878653, 0.010187695734202862, -0.04064389690756798, -0.0076958853751420975, 0.014897417277097702, 0.022994130849838257, -0.008784799836575985, -0.005731831304728985, 0.010154293850064278, 0.010802297852933407, -0.02363545447587967, 0.0018972496036440134, 0.0005657511646859348, -0.0012701217783614993, 0.0435565747320652, 0.0108891436830163, -0.01931987889111042, 0.02400955930352211, 0.013641491532325745, 0.0469769686460495, -0.0015273193130269647, -0.005571500398218632, 0.033001452684402466, -0.02229936234652996, 0.00428885268047452, -0.010501677170395851, 0.007802772801369429, -0.04026979207992554, 0.017582960426807404, -0.0062462263740599155, 0.014216010458767414, -0.01946684904396534, 0.021537790074944496, 0.004222048446536064, 0.0031064122449606657, -0.0051072086207568645, 0.030836986377835274, -0.02553270384669304, 0.002244633389636874, -0.010595203377306461, -0.010441552847623825, -0.003002865007147193, -0.00399157265201211, -0.011303331702947617, 0.005999049637466669, -0.010207736864686012, -0.010541760362684727, -0.010214417241513729, -0.005307622253894806, 0.0027389870956540108, -0.010822338983416557, -0.00441244151443243, -0.013881987892091274, -0.013173859566450119, 0.017957067117094994, 0.023515205830335617, 0.013895348645746708, -0.023421678692102432, 0.0038646438624709845, 0.015538740903139114, -0.01906602270901203, 0.011477023363113403, -0.005765233654528856, -0.019774150103330612, 0.0018104036571457982, 0.017623042687773705, -0.037276946008205414, 0.0019273116486147046, 0.012906641699373722, 0.013254025019705296, 0.018157480284571648, 0.022807078436017036, -0.00015302420069929212, -0.017142049968242645, 0.025185320526361465, 0.022125670686364174, -0.001181605737656355, -0.006660414859652519, -2.479075556038879e-05, -0.01319390069693327, -0.028111359104514122, 0.010501677170395851, -0.012412287294864655, 0.0157124325633049, 0.0209231898188591, -0.0011014401679858565, -0.026721825823187828, 0.008911728858947754, 0.01589948497712612, -0.0070879640989005566, -0.005130590405315161, 0.0076424418948590755, -0.02471768856048584, -0.027443313971161842, 0.023234626278281212, -0.02755020186305046, 0.010287902317941189, 0.027603644877672195, 0.026027057319879532, 0.026147305965423584, 0.029768113046884537, -0.004940197337418795, -0.01449659001082182, 0.009559732861816883, 0.009259112179279327, 0.0064432998187839985, 0.010588523000478745, -0.020041368901729584, -0.028432020917534828, 0.020188339054584503, -0.0063096908852458, 0.01894577406346798, 0.03089042939245701, -0.009599816054105759, 0.0040516965091228485, -0.012111667543649673, 0.012058223597705364, 0.006282968912273645, 0.03412377089262009, -0.024704327806830406, -0.001049666665494442, -0.015151274390518665, 0.004168604500591755, -0.017770012840628624, -0.018625112250447273, -0.029206953942775726, -0.01842469908297062, 0.008818202652037144, -0.02698904275894165, 0.0027556882705539465, 0.003891365835443139, -0.01449659001082182, -0.011096238158643246, 0.03562019392848015, 0.016928276047110558, 0.016353756189346313, -0.004739783704280853, -0.02944745123386383, 0.008123435080051422, -0.013046931475400925, 0.022366167977452278, -0.011583911255002022, -0.008985213935375214, -0.01667441800236702, -0.024837937206029892, -0.01627359166741371, -0.013494521379470825, 0.018010510131716728, -0.00889836810529232, -0.03591413423418999, -0.03695628419518471, 0.007034520618617535, 0.002090982859954238, -0.012318761087954044, -0.002730636391788721, -0.005665027070790529, -0.013735017739236355, -0.025826644152402878, -0.0045360298827290535, -0.011376816779375076, -0.0018855588277801871, 0.034711651504039764, -0.025158599019050598, -0.014723725616931915, 0.016794666647911072, 0.022165752947330475, 0.014817251823842525, 0.025920169427990913, -0.011543828062713146, 0.010788937099277973, -0.005130590405315161, 0.001662598573602736, 0.021096881479024887, -0.0005519727128557861, 0.014229372143745422, 0.0243836659938097, -0.008965171873569489, -0.0023949434980750084, -0.02098999358713627, -0.005297601688653231, 0.01902593858540058, 0.008791480213403702, 0.010448233224451542, -0.017970427870750427, 0.00932591687887907, -0.033669497817754745, 0.016180064529180527, -0.013387634418904781, 0.01237888541072607, -0.009092100895941257, 0.003116432810202241, -0.019854316487908363, -0.01838461495935917, 0.011009392328560352, 0.02721617929637432, 8.402761159231886e-05, -0.0027540181763470173, 0.005467953626066446, 0.0014104113215580583, 0.00734182121232152, 0.012479091994464397, -0.01459011621773243, 0.004272151738405228, -0.01608653925359249, -0.012205193750560284, 0.009158905595541, 0.006329732481390238, -0.015458575449883938, -0.020482279360294342, -0.027122652158141136, -0.011430260725319386, -0.02755020186305046, -0.012004779651761055, -0.008591067045927048, -0.003767777234315872, -0.014670281670987606, 0.01377510093152523, -0.018678555265069008, 0.0008091702475212514, -0.0027640387415885925, 0.027897585183382034, 0.008497539907693863, -0.00388134503737092, -0.02192525751888752, 0.017596321180462837, 0.030649933964014053, 0.027790697291493416, 0.028244968503713608, -0.0037410554941743612, 0.013260705396533012, -0.03198602423071861, 0.014429785311222076, -0.038880255073308945, 0.010875782929360867, 0.002551934216171503, -0.011196444742381573, 0.012031502090394497, 0.02457071840763092, 0.027082569897174835, 0.01492413878440857, 0.023034213110804558, 0.001256760791875422, 0.02002800814807415, 0.029287120327353477, -0.008343890309333801, -0.03350916877388954, -0.01112964004278183, -0.03145158663392067, -0.01886560767889023, -0.020562443882226944, 0.004596153739839792, -0.01627359166741371, 0.00741530628874898, -0.006316371262073517, 0.0009569753310643137, -0.011998099274933338, 0.00798314530402422, 0.014175928197801113, 0.01965390145778656, -0.0009436144609935582, -0.01965390145778656, -0.0199478417634964, 0.03407032787799835, -0.0038212209474295378, 0.009606496430933475, 0.004018294624984264, 0.023916034027934074, -0.0016074847662821412, -0.0003089710953645408, 0.01708860695362091, 0.009118822403252125, -0.0002436278882669285, 0.026788629591464996, 4.9268364818999544e-05, -0.024650882929563522, -0.007014479022473097, -0.012572618201375008, -0.011229846626520157, -0.02054908312857151, -0.02915351092815399, 0.03487198054790497, 0.0017552898498252034, 0.00010949685383820906, -0.005608242936432362, 0.04377035051584244, 0.023020852357149124, -0.011523786932229996, 0.018999217078089714, -0.00019394198898226023, -0.025853365659713745, -1.039906965161208e-05, -0.017409268766641617, -0.016888193786144257, -0.009573093615472317, 0.009840312413871288, 0.011797686107456684, 0.019253075122833252, -0.017369186505675316, 0.022179115563631058, 0.0008246187935583293, -0.01112964004278183, -0.02821824699640274, -0.03153175488114357, -0.0039514899253845215, -0.02192525751888752, 0.004008273594081402, 0.011577230878174305, -0.016701141372323036, -0.028378577902913094, -0.028645796701312065, -0.024584079161286354, -0.010327985510230064, -0.005624944344162941, -0.02058916538953781, 0.011062835343182087, -0.01756959967315197, -0.003261732868850231, 0.013320829719305038, 0.01283983699977398, 0.003841262310743332, -0.005397808738052845, -0.006797364447265863, 0.01420264970511198, 0.0014830612344667315, 0.0014722055057063699, -0.019226353615522385, 0.01581932045519352, 0.00802322756499052, 0.001709361793473363, 0.007548915687948465, 0.00805663038045168, 0.024704327806830406, -0.000992882763966918, -0.015031026676297188, 0.005267539527267218, -0.002665502019226551, 0.014322898350656033, 0.03532625362277031, 0.013040250167250633, 0.03382983058691025, 0.01667441800236702, 0.049568984657526016, -0.0023030873853713274, 0.021377459168434143, 0.01742262952029705, 0.018023870885372162, 0.0026688422076404095, -0.017355825752019882, 0.02065597102046013, -0.0036007659509778023, -0.004679659381508827, 0.015926208347082138, -0.0027757296338677406, -0.02690887823700905, 0.00046763193677179515, 0.0017870219890028238, -0.04061717540025711, -0.007442028261721134, 0.030569767579436302, -0.011844448745250702, -0.024584079161286354, 0.011430260725319386, 0.011557189747691154, -0.012519175186753273, 0.013087013736367226, -0.020909827202558517, 0.0001949858124135062, -0.014322898350656033, -0.004609514959156513, -0.029100067913532257, -0.019827594980597496, -0.008911728858947754, -0.030943872407078743, 0.008009866811335087, 0.026294276118278503, -0.0486871637403965, -0.02430349960923195, 0.004031655378639698, 0.007114686071872711, 0.03393671661615372, 0.021350737661123276, -0.03294800966978073, -0.0020959931425750256, 0.024250056594610214, -0.015418493188917637, -0.0015507008647546172, -0.013153818435966969, -0.028565630316734314, 0.019627179950475693, -0.007094644475728273, 0.03019566275179386, -0.026494689285755157, -0.004148563370108604, 0.034043606370687485, 0.013908710330724716, 0.0037310346961021423, 0.01031462475657463, 0.017970427870750427, -0.023769063875079155, 0.00031231134198606014, 0.0008642840548418462, 0.013541284948587418, -0.006523465737700462, -0.030997317284345627, 0.008196920156478882, -0.02684207260608673, 0.003861303674057126, -0.010187695734202862, 0.0029410708229988813, -0.0006012410740368068, 0.020108172670006752, 0.0006505094352178276, 0.0063898563385009766, 0.0005160652217455208, -0.005665027070790529, -0.009332597255706787, -0.0022529838606715202, -0.015298244543373585, 0.015391770750284195, -0.0011356775648891926, -0.025439176708459854, -0.0026604917366057634, -0.008237002417445183, -0.002645460655912757, 0.025599507614970207, -0.03770449385046959, 0.028244968503713608, 0.004399080295115709, 0.004489266779273748, 0.013801822438836098, -0.02062924951314926, -0.02513187564909458, -0.018063953146338463, 0.014763807877898216, -0.00019174997578375041, 0.013113735243678093, 0.002044219523668289, -0.005608242936432362, -0.022847160696983337, 0.0020592506043612957, -0.0019423426128923893, 0.018678555265069008, -0.02129729464650154, -0.006810725200921297, 0.0011707500088959932, -0.024022920057177544, -0.007034520618617535, -0.0384259857237339, -0.012572618201375008, -0.03219980001449585, -0.006483383011072874, -0.03171880543231964, -0.012866558507084846, 0.0010104189859703183, 0.01611326076090336, -0.00024279282661154866, -0.026013696566224098, -0.007662483491003513, 0.018705276772379875, -0.015846041962504387, -0.027710532769560814, -0.011770963668823242, 0.031852416694164276, 0.015872763469815254, 0.018451420590281487, 0.024664243683218956, -0.015298244543373585, -0.002523542381823063, 0.004111820831894875, 0.019306518137454987, -0.013641491532325745, -0.00020751167903654277, -0.023595372214913368, -0.0045059677213430405, -0.0016592582687735558, 0.03284112364053726, -0.006460001226514578, -0.03551330417394638, 0.004208687227219343, 0.04932848736643791, -0.011837768368422985, 0.016460644081234932, -0.001059687347151339, -0.06210152059793472, 0.004622875712811947, 0.018304450437426567, -0.0025552744045853615, -0.013227303512394428, -0.015137913636863232, -0.00228972639888525, -0.003510579699650407, -0.01250581443309784, 0.020121533423662186, 0.004372358787804842, 0.017582960426807404, -0.00932591687887907, 0.002797441091388464, -0.014028958044946194, 0.0014680302701890469, -0.0035573430359363556, -0.01935996301472187, -0.01894577406346798, -0.012479091994464397, 0.0313447006046772, 0.012492452748119831, -0.008758078329265118, 0.002692223759368062, -0.01742262952029705, 0.003637508489191532, 0.006620332133024931, 0.006981076672673225, -0.0058186776004731655, 0.01014093216508627, -0.005100528243929148, -0.037089891731739044, -0.012966766022145748, -0.007214892655611038, -0.02307429537177086, 0.02501162886619568, 0.016848111525177956, -0.0028475443832576275, 0.017703209072351456, 0.0017853518947958946, 0.01596629060804844, -0.01254589669406414, -0.030756819993257523, 0.03978879749774933, -0.016246870160102844, 0.00833720900118351, 0.011797686107456684, 0.012612701393663883, 0.0009052018285728991, -0.034150492399930954, -0.012385565787553787, 0.010969309136271477, 0.02984827756881714, 0.03465820848941803, 0.00040646400884725153, -0.005230797454714775, 0.016540810465812683, 0.013046931475400925, -0.018491502851247787, -0.006313031073659658, 0.008744717575609684, 0.019079383462667465, 0.04214031621813774, -0.019146187230944633, 0.031024038791656494, -0.0070412009954452515, -0.007301738485693932, -0.014777169562876225, -0.006219504866749048, -0.00041815481381490827, -0.0028024513740092516, -0.020228421315550804, -0.007234934251755476, -0.018304450437426567, 0.026975682005286217, 0.014042318798601627, 0.0013202251866459846, -0.012899961322546005, 0.016474004834890366, -0.04916815832257271, 0.009392721578478813, 0.019533654674887657, 0.04240753501653671, 0.0028508848045021296, 0.004262131173163652, 0.029714670032262802, 0.013180539943277836, 0.010080808773636818, -0.01110959891229868, 0.004445843398571014, 0.05149295553565025, -0.03588741272687912, 0.003721014130860567, -0.032921288162469864, -0.0014438135549426079, 0.022392889484763145, 0.017248937860131264, -0.003644188866019249, -0.00047389487735927105, -0.036021020263433456, 0.0006905921618454158, 0.026160666719079018, -0.03607446327805519, 0.010214417241513729, 0.002296406775712967, 0.0021460966672748327, 0.002797441091388464, -0.020829662680625916, 0.020522361621260643, 0.03019566275179386, -0.020201699808239937, -0.018438059836626053, -0.02352856658399105, -0.0348452590405941, 0.005935585591942072, -0.0018053932581096888, -0.014550033956766129, 0.003161525819450617, 0.03874664753675461, -0.05368414521217346, 0.015832681208848953, -0.01767648756504059, 0.01660761423408985, -0.018705276772379875, 0.01079561747610569, -0.015204718336462975, -0.0067840032279491425, 0.025158599019050598, 0.01444314606487751, -0.006847467739135027, -0.0304896030575037, 0.0279243066906929, 0.009593134745955467, -0.003483857959508896, 0.037276946008205414, 0.005000321660190821, 0.00975346565246582, -0.0020776218734681606, 0.015137913636863232, -0.010735493153333664, -0.026628298684954643, 0.011096238158643246, -0.013841905631124973, 0.012960084713995457, -0.02002800814807415, 0.0028007812798023224, -0.01163067389279604, -0.008270405232906342, 0.02534565143287182, -0.012606021016836166, -0.0434764102101326, 0.017222216352820396, 0.0016124951653182507, -0.005842058919370174, 0.0002020838001044467, -0.021805008873343468, -0.021951979026198387, -0.015912847593426704, -0.020482279360294342, 0.015204718336462975, -0.022018784657120705, 0.011904573068022728, 0.02632099762558937, -0.01425609365105629, 0.022994130849838257, -0.0108891436830163, -0.03682267665863037, -0.0183578934520483, -0.043235912919044495, -0.023435041308403015, -0.020949911326169968, -0.018491502851247787, 0.02557278610765934, 0.00043798741535283625, -0.02955433912575245, -0.03097059577703476, 0.0016317014815285802, -0.029500894248485565, -0.012398926541209221, 0.005264199338853359, 0.020268503576517105, 0.02006809040904045, -0.01254589669406414, 0.026040418073534966, 0.011062835343182087, -0.0015356699004769325, 0.01723557710647583, -0.0008045774302445352, -0.013568006455898285, -0.036127906292676926, -0.016540810465812683, -4.762434400618076e-06, 0.005260859150439501, -0.030062053352594376, -0.012699547223746777, 0.004866712260991335, -0.001031295396387577, 0.006052493583410978, 0.01746271178126335, -0.011617313139140606, -0.004008273594081402, -0.015792598947882652, 0.00831716787070036, -0.026721825823187828, -0.003388661425560713, -0.004402420483529568, -0.02736314944922924, -0.010227778926491737, -0.0008759748307056725, -0.011350095272064209, -0.015765877440571785, 0.020121533423662186, 0.004926836583763361, -0.00470972154289484, -0.004018294624984264, -0.03059648908674717, 0.01038810983300209, -0.026548132300376892, -0.010187695734202862, 0.018638473004102707, -0.007034520618617535, -0.011917933821678162, 0.01425609365105629, 0.015872763469815254, 0.014135845005512238, -0.0015198037726804614, 0.011503745801746845, -0.012338802218437195, 0.020522361621260643, -0.0002903910935856402, 0.012318761087954044, 0.020201699808239937, 0.007395265158265829, 0.02103007584810257, -0.006596950348466635, -0.0067606219090521336, 0.014135845005512238, -0.008230322040617466, -0.04093783721327782, 0.009045337326824665, 0.029019901528954506, -0.0349254235625267, -0.006750600878149271, -0.014269454404711723, -0.04235409200191498, -0.006763962097465992, -0.025252124294638634, 0.012338802218437195, -0.04270147532224655, -0.01660761423408985, 0.0010379758896306157, 0.015378409996628761, -0.02326134778559208, -0.004479245748370886, 0.016834748908877373, -0.009198987856507301, 0.003958170302212238, 0.2387862205505371, -0.0329747311770916, 0.003091381164267659, 0.03246701881289482, -0.02821824699640274, 0.011497065424919128, -0.0015682370867580175, 0.01965390145778656, -0.0018237645272165537, 0.01600637286901474, -0.02098999358713627, 0.006981076672673225, -0.012225234881043434, -0.0028208226431161165, 0.041605882346630096, -0.01723557710647583, -0.048259615898132324, -0.010181015357375145, -0.004332276061177254, 0.006737240124493837, 0.02050900086760521, -0.010107530280947685, -0.011944655328989029, 0.003109752433374524, 0.022018784657120705, 0.007629081141203642, 0.0004768175713252276, 0.0112966513261199, 0.012104987166821957, 0.02330143190920353, -0.03388327360153198, -0.008664552122354507, -0.00627294834703207, -0.017743291333317757, -0.012459050863981247, -0.02032194845378399, 0.031130926683545113, 0.03187913820147514, 0.016620974987745285, 0.01573915407061577, -0.01869191601872444, -0.005878801457583904, 0.02557278610765934, -0.012873238883912563, -0.011924614198505878, 0.012679506093263626, -0.0009903776226565242, -0.015993012115359306, -0.001341936644166708, 0.0019824253395199776, -0.0067840032279491425, -0.02955433912575245, 0.01611326076090336, 0.023328153416514397, -0.003166536334902048, -0.008671232499182224, 0.024744410067796707, -0.015418493188917637, 0.015565463341772556, 0.027897585183382034, -0.01444314606487751, 0.0398956835269928, -0.00947288703173399, 0.004739783704280853, -0.01319390069693327, -0.0009953880216926336, 0.0009811919881030917, -0.022940685972571373, 0.01715541072189808, -0.004983620252460241, -0.0018504863837733865, -0.014122484251856804, -0.017890261486172676, 0.007862896658480167, 0.02475777082145214, -0.037838105112314224, 0.02620074898004532, 0.009887075051665306, 0.011577230878174305, 0.028672518208622932, 0.015979651361703873, 0.0004417451564222574, 0.007161449175328016, 0.008958491496741772, 0.013694935478270054, -0.04572104290127754, 0.035192642360925674, -0.009432803839445114, -0.0052040754817426205, -0.021390821784734726, -0.02140418253839016, -0.02813808247447014, 0.00033840685500763357, 0.0009052018285728991, 0.03067665547132492, 0.031130926683545113, 0.021096881479024887, 0.018010510131716728, -0.012592660263180733, 0.01112964004278183, -0.02471768856048584, 0.03976207599043846, 0.01585940271615982, 0.019440127536654472, -0.015846041962504387, -0.010501677170395851, -0.004799908027052879, -0.007188171148300171, 0.0006187772378325462, 0.004669638816267252, 0.017582960426807404, -0.03746400028467178, 0.012225234881043434, -0.0019757449626922607, -0.006072534713894129, -0.0018705277470871806, -0.019894398748874664, -0.0028141422662883997, -0.012245276011526585, -0.010748853906989098, -0.013227303512394428, -0.020308587700128555, -0.009432803839445114, -0.0036341683007776737, -0.029019901528954506, -0.007281697355210781, -0.03241357207298279, -0.00428885268047452, 0.015084470622241497, -0.04727090895175934, 0.017208855599164963, -0.001520638819783926, 0.05216100066900253, 0.011998099274933338, -0.0012534206034615636, 0.009573093615472317, -0.012773032300174236, -0.020856384187936783, 0.02207222767174244, 0.005080487113445997, -0.02159123495221138, -0.004335616249591112, 0.02300749160349369, -0.01723557710647583, -0.007729287724941969, -0.033856552094221115, -0.02219247631728649, -0.0021143644116818905, 0.014189288951456547, -0.02192525751888752, -0.025733117014169693, 0.002060920698568225, 0.016928276047110558, -0.009219029918313026, 0.01263942290097475, -0.0043088942766189575, 0.005494675133377314, -0.049595706164836884, 0.016460644081234932, 0.017770012840628624, -0.03155847638845444, -0.007936381734907627, 0.026895517483353615, -0.011483704671263695, 0.001648402540013194, -0.039441414177417755, -0.1681337207555771, 0.026307636871933937, 0.03596757724881172, -0.023662175983190536, 0.01660761423408985, -0.0025268825702369213, -0.00391808757558465, 0.011336734518408775, -0.0058186776004731655, -0.004415781702846289, 0.021537790074944496, -0.014042318798601627, 0.001965724164620042, -0.015512019395828247, -0.010227778926491737, 0.030062053352594376, -0.03369622305035591, 0.012238595634698868, 0.062475625425577164, 0.030649933964014053, 0.03938797116279602, -0.028164803981781006, 0.007462069392204285, 0.01368157472461462, 0.015324966982007027, 0.031184369698166847, 0.005641645286232233, 0.003493878524750471, 0.009726744145154953, -0.033188506960868835, 0.0054779741913080215, -0.01694163680076599, 0.031585197895765305, 0.004155243746936321, -0.004205347038805485, -0.006206143647432327, 0.0007715927204117179, 0.008818202652037144, -0.01386862713843584, 0.007455389015376568, -0.02073613554239273, 0.023020852357149124, -0.00391808757558465, 0.009459526278078556, 0.005214096046984196, 0.007582318037748337, 0.015044387429952621, -0.004589473363012075, 0.004933516960591078, 0.016580892726778984, 0.025359012186527252, -0.00865787174552679, 0.00548131437972188, 0.0018321151146665215, 0.04112488776445389, 0.033963438123464584, -0.009158905595541, -0.009786868467926979, -0.0029995248187333345, -0.010975989513099194, -0.027710532769560814, -0.012425648979842663, -0.004472565371543169, 0.01798378862440586, 0.016059815883636475, -0.023501845076680183, -0.00790966022759676, 0.021992061287164688, -0.00037995094317011535, 0.012980126775801182, 0.014656920917332172, -0.014189288951456547, 0.004860031884163618, 0.00899189431220293, 0.013160498812794685, -0.0026153987273573875, -0.023622093722224236, 0.0002956101961899549, 0.01105615496635437, 0.0045360298827290535, -0.020375391468405724, 0.03912075236439705, -0.002785750199109316, -0.010334665887057781, 0.02584000490605831, -0.003784478409215808, -0.004803248215466738, -0.020829662680625916, -0.03286784514784813, 0.0014930819161236286, 0.029527615755796432, -0.022913964465260506, 0.005618263501673937, -0.02271355129778385, -0.012018140405416489, 0.013881987892091274, -0.0004146058054175228, 0.00980690959841013, -0.017369186505675316, -0.020001286640763283, 0.019493570551276207, -0.020976632833480835, -0.011336734518408775, -0.0042487699538469315, 0.029794834554195404, 0.009673300199210644, -0.001818754244595766, 0.026601577177643776, 0.03417721390724182, 0.023461762815713882, -0.006406557746231556, 0.011483704671263695, 0.021136963739991188, 0.011817727237939835, 0.001049666665494442, -0.010167654603719711, -0.006673775613307953, -0.019253075122833252, 0.030730098485946655, 0.00232646893709898, -0.025492621585726738, -0.021203767508268356, 0.007128046825528145, 0.026147305965423584, 0.007067922502756119, -0.014950861223042011, -0.056970931589603424, -0.009700022637844086, 0.008798160590231419, 0.0419265441596508, -0.011784324422478676, 0.014563394710421562, 0.0002849632001016289, 0.035459861159324646, -0.006122638005763292, 0.03733038902282715, -0.015391770750284195, -0.014964221976697445, -0.02129729464650154, 0.011503745801746845, -0.016834748908877373, 0.03511247783899307, 0.0020659309811890125, 0.004926836583763361, -0.009720063768327236, 0.025546064600348473, -0.024624161422252655, -0.007261655759066343, -0.003851283108815551, -0.01410912349820137, -0.0028976479079574347, -0.007515513338148594, -0.025212042033672333, 0.028725961223244667, 0.005200735293328762, 0.022232558578252792, 0.008524262346327305, -0.002917689271271229, -0.02565295249223709, -0.026895517483353615, 0.01809067465364933, -0.005735171493142843, -0.0026488008443266153, -0.009392721578478813, 0.021377459168434143, -0.01861175149679184, -0.010354707017540932, -0.01195133663713932, 0.0007766030612401664, -0.0117041589692235, 0.004105140455067158, -0.017916982993483543, -0.010695410892367363, 0.037250224500894547, -0.009893755428493023, -0.011944655328989029, -0.021951979026198387, 0.008684593252837658, -0.0020492300391197205, -0.017476074397563934, 0.025599507614970207, 0.025038350373506546, 0.028244968503713608, 0.04083094745874405, -0.02717609517276287, 0.004990300629287958, 0.01269286684691906, 0.004355657380074263, -0.01416256744414568, 0.0437169075012207, 0.01596629060804844, 0.014362980611622334, -0.000753221451304853, 0.007194851525127888, 0.020562443882226944, 0.0015932888491079211, -0.024557357653975487, 0.019867677241563797, -0.02032194845378399, 0.03866647928953171, -0.02311437949538231, -0.027790697291493416, -0.015565463341772556, 0.0020876426715403795, 0.04561415687203407, -0.03401688486337662, -0.00990043580532074, 0.006045812740921974, 0.00270391465164721, -0.00474646408110857, 0.025853365659713745, 0.005411169491708279, 0.00183545530308038, -0.018023870885372162, 0.006349773611873388, -0.027870863676071167, 0.017449351027607918, 0.021056797355413437, -0.01809067465364933, -0.02292732521891594, -0.0018421357963234186, -0.0036007659509778023, 0.01131669245660305, 0.00908542051911354, -0.005310962907969952, 0.00691427243873477, -0.038586314767599106, -0.034978870302438736, -0.0714007169008255, 0.036208074539899826, 0.006333072669804096, 0.002570305485278368, 0.015552102588117123, 0.015124552883207798, 0.014028958044946194, -0.0033953418023884296, -0.015699071809649467, -0.008370611816644669, -0.01923971436917782, 0.011503745801746845, 0.010955948382616043, -0.030142217874526978, -0.00792970135807991, -0.010862422175705433, 0.0049234963953495026, 0.024517273530364037, -0.001780341612175107, 0.00290766847319901, 0.01103611383587122, 0.001652577891945839, 0.018438059836626053, 0.00557484058663249, -0.023622093722224236, 0.018304450437426567, -0.00617942214012146, 0.028191525489091873, -0.012165110558271408, -0.006466681603342295, 0.011303331702947617, -0.0005565655301325023, 0.016407201066613197, 0.011176403611898422, 0.0024517273996025324, -0.008878326043486595, -0.014135845005512238, 0.02125721238553524, 0.023742342367768288, 0.0005189879448153079, -0.0313447006046772, -0.03658217936754227, 0.02821824699640274, -0.005838718730956316, 0.00200580689124763, -0.00027995285927318037, -0.017289020121097565, 0.0014722055057063699, 0.0278441421687603, -0.0011932965135201812, 0.01875872164964676, 0.021524429321289062, -0.016367116943001747, -0.027710532769560814, -0.02813808247447014, -0.04652269557118416, 0.010054086335003376, 0.032921288162469864, 0.002052570227533579, 0.014870695769786835, 0.031024038791656494, -0.010054086335003376, 0.01879880391061306, -0.015044387429952621, -0.004793227184563875, 0.000984532292932272, -0.0225532203912735, 0.001055512111634016, 0.02461080066859722, -0.007128046825528145, -0.004041675943881273, -0.01823764480650425, -0.01756959967315197, -0.0008538457914255559, 0.001790362293832004, 0.015458575449883938, 0.003804519772529602, 0.019146187230944633, -0.014095762744545937, 0.040857668966054916, -0.006887550465762615, 0.00553809804841876, -0.033669497817754745, 0.04053700715303421, 0.03505903482437134, -0.006226185243576765, -0.02899318002164364, 0.006536826491355896, -0.015324966982007027, 0.007435347884893417, -0.020562443882226944, -0.004282172303646803, -0.018438059836626053, 0.02408972568809986, 0.015151274390518665, 0.011897892691195011, 0.025693034753203392, -0.005608242936432362, 0.01269286684691906, 0.029126789420843124, -0.01219183299690485, 0.00971338339149952, -0.006045812740921974, -0.012732950039207935, -0.015912847593426704, 0.0019256415544077754, -0.03153175488114357, -0.032066188752651215, -0.012532535940408707, -0.005791955627501011, -0.036983005702495575, -0.015445214696228504, -0.026601577177643776, 0.017997149378061295, -0.026067139580845833, 0.020455557852983475, -0.011263249441981316, 0.00899189431220293, -0.015391770750284195, 0.013320829719305038, 0.004773186054080725, 0.01946684904396534, 0.016914915293455124, -3.1379877327708527e-06, 0.01902593858540058, -0.0071414075791835785, 0.020856384187936783, -0.02617402747273445, -0.0077092465944588184, 0.010902504436671734, 0.00474646408110857, 0.03428409993648529, -0.021751565858721733, -0.010862422175705433, -0.015298244543373585, -0.0018003829754889011, 0.025853365659713745, -0.0007928866543807089, 0.007782731670886278, 0.07033184170722961, -0.005377767141908407, -0.002657151548191905, 0.013380954042077065, 0.007488791365176439, 0.019306518137454987, 0.006186102516949177, 0.011844448745250702, 0.0012225235113874078, 0.00017118669347837567, 0.006493403576314449, -0.019493570551276207, -0.01798378862440586, -0.017596321180462837, -0.0022262621205300093, -0.016139982268214226, -0.030569767579436302, 0.02185845375061035, 5.667949517373927e-05, 0.000974511553067714, 0.020442195236682892, -0.005047084763646126, 0.006920952815562487, 0.011770963668823242, -0.008110074326395988, -0.011557189747691154, 0.008437416516244411, 0.009446165524423122, -0.016914915293455124, 0.010394790209829807, -0.0045059677213430405, -0.0020843022502958775, -0.01756959967315197, -0.03874664753675461, -0.024410387501120567, -0.004693020600825548, 0.0018955795094370842, -0.013013528659939766, 0.015993012115359306, 0.005244158208370209, -0.006329732481390238, 0.015592184849083424, -0.03505903482437134, -0.04246097803115845, 0.013387634418904781, -0.0014788859989494085, 0.0025736456736922264, -0.0030245764646679163, -0.03994912654161453], "b5acf5c9-7372-4cad-936f-15baf28828d4": [-0.017983291298151016, 0.0016065331874415278, 0.0024790544994175434, -0.021808622404932976, -0.03252237290143967, 0.04567812383174896, -0.030292106792330742, -0.03150605037808418, 0.011356011033058167, 6.45127656753175e-05, 0.018195025622844696, 0.01702342927455902, -0.0123723354190588, -0.004640507977455854, -0.03317169100046158, -0.02155454084277153, -0.0031266084406524897, 0.014595543965697289, 0.017644517123699188, -0.02559160627424717, 0.021879199892282486, -0.0036665305960923433, -0.016642307862639427, -0.021018147468566895, -0.030969655141234398, 0.0011266024084761739, 0.01686815731227398, -0.03475264087319374, 0.0013471588026732206, 0.014059150591492653, 0.021808622404932976, 0.00885754730552435, -0.009697426110506058, -0.022669674828648567, -0.0011133690131828189, 0.012351161800324917, 0.017531592398881912, -0.012915786355733871, -0.007707125041633844, -0.011807710863649845, 0.010756097733974457, -0.029896868392825127, 0.017828019335865974, -0.0010957245249301195, -0.030856730416417122, 0.010445553809404373, -0.00152007513679564, 0.01907019317150116, -0.01566833071410656, 0.011730074882507324, 0.007502448279410601, 0.004876944236457348, -0.009633906185626984, 0.002796655986458063, 0.01216060109436512, 0.01815267838537693, -0.015513058751821518, 0.016896389424800873, -0.02326253056526184, -0.004026478622108698, 0.009923276491463184, -0.0026360908523201942, -0.03599481284618378, 0.017489245161414146, 0.01679757982492447, -0.007354234345257282, -0.006330852396786213, 0.006175580900162458, -0.02432120218873024, -0.01134895347058773, 0.01672700233757496, 0.03252237290143967, -0.00893518328666687, -0.008582293055951595, 0.01779978908598423, 0.0197053961455822, -0.030884962528944016, 0.0061579360626637936, 0.004142932593822479, 0.005812103860080242, -0.0038147445302456617, 0.008928125724196434, 0.016501151025295258, 0.011715958826243877, 0.012802861630916595, -0.005967375356703997, -0.002858411753550172, 0.014165017753839493, 0.014101497828960419, 0.005430981982499361, -8.667868678458035e-05, -0.01778567209839821, 0.016769347712397575, 0.00042832063627429307, -0.009909160435199738, 0.013565104454755783, 0.003221888793632388, 0.036277126520872116, -0.011680670082569122, -0.0028143003582954407, -0.005159256514161825, 0.02950163185596466, -0.027920683845877647, -0.012612299993634224, -0.04296792671084404, -0.04141521081328392, 0.02240147814154625, -0.009887986816465855, 0.0038782646879553795, -0.031731899827718735, -0.03997541591525078, 0.024518819525837898, -0.017249278724193573, -0.04260092228651047, -0.04183867946267128, -0.0057768146507442, 0.009591558948159218, -0.03142135590314865, -0.008144709281623363, -0.015089591033756733, 0.00045302294893190265, 0.019126655533909798, -0.008998703211545944, 0.0038782646879553795, 0.014299116097390652, 0.018816111609339714, -0.020933454856276512, -0.015188399702310562, -0.02552102878689766, -0.04099174216389656, 0.041443441063165665, 0.00904105044901371, 0.01212531141936779, 0.01736220344901085, -0.02019944228231907, 0.008772853761911392, -0.00043383456068113446, 0.023446032777428627, -0.03901555389165878, 0.028273573145270348, 0.02899346873164177, 0.027172556146979332, -0.001243938459083438, -0.012351161800324917, -0.045480504631996155, 0.010339686647057533, 0.005258066114038229, 0.011087814345955849, 0.0016215310897678137, 0.00885754730552435, 0.021229881793260574, -0.018816111609339714, 0.021738044917583466, -0.007389523554593325, 0.011306606233119965, -0.006450835149735212, 0.031026117503643036, 0.0035253744572401047, 0.00687783258035779, -0.010713750496506691, 0.006902534980326891, 0.06352026015520096, 0.003041914664208889, -0.0062108696438372135, -0.01695285178720951, 0.017743326723575592, 0.015160168521106243, 0.013162809424102306, -0.01336042769253254, -0.00296074990183115, 0.026607930660247803, -0.006990757305175066, -0.038394469767808914, -0.006161465309560299, -0.009549212642014027, 0.03418801352381706, 0.0008945770096033812, 0.008158824406564236, 0.019945360720157623, 0.005843863822519779, -0.0061861677095294, 0.003708877367898822, -0.0037441663444042206, 0.01404503546655178, -0.011172507889568806, -0.032296523451805115, -0.027624255046248436, -0.009302189573645592, 0.02657970041036606, 0.00197795033454895, -0.003280115546658635, 0.042008064687252045, -0.004841655492782593, 0.005879153031855822, -0.5786272287368774, -0.035768963396549225, -0.03706759959459305, -0.0021085196640342474, 0.029247550293803215, 0.006694329436868429, 0.0075236218981444836, -0.0034477384760975838, -0.01477904710918665, 0.00914691761136055, -0.009273957461118698, 0.03150605037808418, 0.009789178147912025, -0.011927693150937557, 0.012753456830978394, -0.018378527835011482, 0.007883570156991482, -0.020015940070152283, -0.0008341445354744792, 0.024659976363182068, -0.010156183503568172, -0.0008764913654886186, -0.046270981431007385, -0.01120779663324356, -0.0001865907688625157, -0.001926781260408461, -0.00012307050928939134, -0.011384242214262486, 0.0021808622404932976, 0.030376799404621124, -0.04494411125779152, 0.012704052031040192, 0.017686862498521805, -0.006997815333306789, 0.04356078431010246, -0.006535529159009457, -0.031308431178331375, 0.027610139921307564, -0.005046331789344549, 0.0527641624212265, -0.0513526014983654, -0.010967831127345562, 0.0012068849755451083, -0.024899940937757492, -0.003920611459761858, -0.007138971239328384, 0.012252352200448513, -0.04189513996243477, 0.0035077298525720835, 0.006175580900162458, -0.004259386099874973, 0.01751747541129589, 0.017333973199129105, -0.014623775146901608, 0.008427021093666553, 0.016854042187333107, 0.012880496680736542, -0.03489379584789276, -0.0008509068284183741, -0.010699634440243244, -0.0023361339699476957, 0.014292058534920216, -0.00203794171102345, -0.01750336028635502, 0.009196322411298752, 0.008130593225359917, -0.006383785977959633, -0.005840335041284561, 0.026918474584817886, -0.011200739070773125, -0.01318398304283619, -0.0070013441145420074, -0.017390435561537743, -0.011087814345955849, 0.0055227335542440414, 0.01942308433353901, 0.0015262507367879152, -0.00851171463727951, 0.003308346960693598, 0.013395717367529869, -0.008603466674685478, 0.004326435271650553, -0.008970472030341625, 0.002193213440477848, 0.004943993408232927, -0.0069448817521333694, -0.03204244375228882, -0.011666554026305676, 0.0020732306875288486, 0.0008217933354899287, -0.0003579631447792053, 0.04135874658823013, 0.005981490947306156, -0.0316472053527832, 0.017686862498521805, 0.012068849056959152, 0.002404947532340884, -0.008370558731257915, -0.025069329887628555, -0.02360130473971367, -0.02913462556898594, -0.015004896558821201, 0.019169002771377563, 0.01084784884005785, 0.0316472053527832, -0.017813904210925102, -0.024787016212940216, -0.006870774552226067, 0.017686862498521805, -0.010113837197422981, -0.004640507977455854, 0.002904287539422512, -0.01575302518904209, 0.017757441848516464, 0.02139926888048649, -0.043222006410360336, 0.021681582555174828, 0.015922412276268005, 0.04025772958993912, 0.00039236992597579956, 0.020100632682442665, -0.005910912994295359, -0.002484347904101014, 0.006913121789693832, 0.014122671447694302, 0.008892836049199104, 0.020086517557501793, -0.016077684238553047, -0.006401430815458298, 0.0019356034463271499, 0.005282768048346043, 0.024914057925343513, 0.03255060315132141, -0.013833301141858101, 0.02141338586807251, -0.0045593432150781155, -0.007777702994644642, -0.014637891203165054, 0.03373631462454796, -0.005812103860080242, -0.029812175780534744, -0.002401418751105666, -0.0007525386172346771, -0.015160168521106243, 0.00753067946061492, -0.01750336028635502, -0.005205132532864809, -0.005759170278906822, -0.0152448620647192, 0.010297340340912342, -0.014228538610041142, -0.0024949347134679556, -0.004764019511640072, 0.010339686647057533, 0.0069519393146038055, 0.008709333837032318, -0.010480842553079128, -0.015922412276268005, 0.021596888080239296, -0.0247446708381176, 0.010544363409280777, 0.0019744213204830885, -0.053357016295194626, -0.013494526036083698, -0.0020485282875597477, -0.03319992125034332, -0.0038429757114499807, 0.008187055587768555, -0.0028972295112907887, -0.03099788725376129, -0.004072354640811682, 0.007375407963991165, 0.0031848351936787367, 0.01424971129745245, 0.016430573537945747, -0.01751747541129589, -0.026678508147597313, -0.007805934175848961, -0.025055212900042534, -0.0039064958691596985, 0.0025019925087690353, 0.0068672457709908485, 0.011123103089630604, -0.012584068812429905, 0.022726137191057205, 0.02185096964240074, 0.020679373294115067, -0.0015694797039031982, -0.0216956976801157, 0.02346014976501465, -0.00696958415210247, 0.025055212900042534, 0.007198962848633528, -0.004132345784455538, 0.05979373678565025, 0.03297407180070877, -0.011532455682754517, 0.008074130862951279, 0.008010610938072205, 0.01707989163696766, 0.006475537549704313, 0.006009722128510475, 0.004605218768119812, -0.008906952105462551, 0.028541769832372665, -0.020509986206889153, 0.008928125724196434, -0.0270878616720438, -0.0004861064371652901, 0.009520981460809708, 0.0008773735607974231, -0.02190743200480938, -0.0158236026763916, -0.010127952322363853, 0.03204244375228882, -0.01588006503880024, -0.014891971834003925, -0.0022090934216976166, -0.014736699871718884, 0.018491452559828758, -0.006306149996817112, 0.0029536921065300703, 0.00013542166561819613, -0.004665210377424955, 0.0115536293014884, 0.0011830648873001337, 0.007008402142673731, 0.008709333837032318, -0.011984155513346195, -0.024292970076203346, -0.004665210377424955, -0.002463174518197775, 0.005233363714069128, -0.003938256297260523, 0.02964278869330883, -0.010883137583732605, 0.019761858507990837, -0.02539398893713951, 0.02453293651342392, -0.0197053961455822, 0.0068919481709599495, 0.003892380278557539, -0.0020220614969730377, -0.005145140923559666, 0.019973592832684517, 0.015484827570617199, 0.025760993361473083, 0.03077203780412674, 0.018039753660559654, -0.02106049470603466, -0.044068943709135056, 0.014447330497205257, -0.0030260346829891205, 0.009422171860933304, -7.736017869319767e-05, -0.01283815037459135, 0.0053004128858447075, 0.017545707523822784, 0.022246206179261208, 0.039608411490917206, 0.027567792683839798, 0.039523717015981674, 0.019239580258727074, -0.00586856622248888, 0.008596408180892467, -0.03599481284618378, -0.011638322845101357, -0.020820530131459236, -0.018420875072479248, 0.005554493982344866, 0.011250143870711327, 0.01686815731227398, 0.015682445839047432, -0.013762722723186016, -0.002404947532340884, -0.008850489743053913, 0.025210484862327576, 0.019098425284028053, 0.028457077220082283, -0.009393940679728985, -0.04000364616513252, -0.020749950781464577, 0.02609976939857006, -0.028019491583108902, 0.019098425284028053, 0.014165017753839493, -0.004047652240842581, 0.00428761774674058, 0.011588918045163155, 0.00208381749689579, 0.009549212642014027, -0.003648885991424322, -0.00035399312037043273, -0.0010295575484633446, -0.016359996050596237, 0.02694670483469963, 0.033369310200214386, 0.012379392981529236, -0.019451314583420753, -0.01148305181413889, 0.019832435995340347, 0.0037759265396744013, -0.0034265650901943445, 0.004951051436364651, 0.03249414265155792, 0.0140732666477561, -0.0020767597015947104, -0.016261186450719833, 0.017856251448392868, -0.021752160042524338, -0.009288073517382145, -0.025648068636655807, 0.004255857318639755, 0.0031865995842963457, 0.0031001416500657797, 0.013134578242897987, 0.00751656387001276, -0.00661316467449069, 0.01053024735301733, 0.026212694123387337, 0.0062108696438372135, -0.05121144652366638, -0.02936047501862049, 0.012322930619120598, -0.048529479652643204, -0.01957835629582405, 0.00942922942340374, -0.0045946319587528706, -0.037971001118421555, -0.027003169059753418, -0.03311523050069809, 0.0018438519909977913, 0.012675820849835873, -0.01679757982492447, 0.031449586153030396, -0.01084784884005785, 2.947185748780612e-05, -0.015865949913859367, 0.024942288175225258, 0.00922455359250307, -0.023516612127423286, -0.009902102872729301, 0.0216956976801157, -0.0030101544689387083, 0.003382453927770257, -0.04511350020766258, -0.003338342532515526, -0.016966966912150383, 0.021596888080239296, -0.006373199168592691, 0.024405894801020622, 0.010699634440243244, 0.014080324210226536, -0.020030055195093155, 0.020368829369544983, -0.004259386099874973, 0.02000182308256626, 0.02643854357302189, 0.011617150157690048, 0.01127131748944521, 0.01801152341067791, 0.05344171077013016, -0.011073698289692402, 0.005625071935355663, 0.021286344155669212, 0.007700067013502121, -0.00836350116878748, -0.009231611154973507, 0.0113136637955904, -0.04039888456463814, -0.01173713244497776, 0.012951075099408627, -0.017884481698274612, -0.03667236492037773, 0.0039594294503331184, 0.02319195307791233, -0.07961206138134003, 0.004898117855191231, 0.015470712445676327, 0.04773900285363197, -0.029162857681512833, 0.007304830010980368, -0.011356011033058167, 0.009231611154973507, 0.0070048728957772255, -0.020524101331830025, -0.0025778638664633036, 0.004749903921037912, -0.011186623945832253, -0.02837238274514675, -0.04432302713394165, 0.013099289499223232, -0.028668809682130814, 0.00935865193605423, 0.009577443823218346, -0.04212098941206932, -0.03125196695327759, 0.018844343721866608, -0.0017521005356684327, 0.025619838386774063, 0.012012386694550514, -0.022796714678406715, -0.006161465309560299, 0.02809007093310356, -0.030433261767029762, -0.009400998242199421, -0.006447306368499994, -0.0281465332955122, 0.007050748914480209, -0.012598184868693352, 4.30360778409522e-05, -0.007283656392246485, -0.0347244068980217, 0.03636182099580765, 0.00851171463727951, 0.0023626007605344057, 0.012696994468569756, -0.009789178147912025, 0.00400883425027132, -0.005455684382468462, -0.006913121789693832, 0.024871710687875748, 0.011715958826243877, -0.0043687825091183186, 0.016557615250349045, -0.020947569981217384, -0.03170366585254669, -0.015019012615084648, -0.005183958914130926, 0.023093143478035927, 0.012569953687489033, 0.014877856709063053, -0.01743278279900551, -0.008074130862951279, -0.00593561539426446, 0.017743326723575592, 0.006648453883826733, -0.021356923505663872, 0.013141635805368423, 0.0074389283545315266, -0.009443345479667187, -0.00017589377239346504, -0.006164994090795517, 0.037547532469034195, 0.008836373686790466, -0.017051661387085915, 0.03540195897221565, 0.011772421188652515, 0.00964096374809742, 0.022387363016605377, -0.007361292373389006, -0.028414729982614517, -0.016698770225048065, 0.0295580942183733, -0.021427500993013382, 0.031026117503643036, 0.021258113905787468, -0.017912713810801506, -0.008984588086605072, -0.027257248759269714, -0.004026478622108698, 0.01801152341067791, -0.030094487592577934, -0.023234300315380096, 0.008744622580707073, -0.011687727645039558, 0.0029272253159433603, -0.011793594807386398, 0.012090022675693035, -0.018773766234517097, 0.031026117503643036, 0.0031460172031074762, 0.0039629582315683365, -0.009662137366831303, 0.03616420179605484, -0.013536873273551464, -0.029614556580781937, 0.004651094786822796, -0.015682445839047432, -0.017602169886231422, -0.012605242431163788, -0.002348485169932246, 0.005949730984866619, -0.00572388106957078, 0.04093527793884277, 0.022782599553465843, -0.002142044249922037, -0.009295131079852581, 0.0010277930414304137, 0.010304397903382778, 0.015202515758574009, -0.008215286768972874, -0.017743326723575592, 0.009026934392750263, 0.014482619240880013, 0.014376752078533173, -0.002726077800616622, -0.051804300397634506, 0.0011813003802672029, 0.02374246157705784, -0.02936047501862049, -0.0009898573625832796, -0.011123103089630604, -0.04855770990252495, -0.01477904710918665, 0.006355554796755314, 0.007643604651093483, -0.012746398337185383, -0.029473399743437767, -0.02643854357302189, 0.01949366182088852, 0.017206933349370956, 0.006143820472061634, 0.007248367182910442, 0.020086517557501793, -0.00964096374809742, 0.00857523549348116, -0.00033656915184110403, -0.01496255025267601, -0.019324274733662605, 0.018195025622844696, -0.011179565452039242, 0.02950163185596466, -0.01603533700108528, 0.008067073300480843, 0.003484792076051235, -0.006602578330785036, -0.00293428311124444, -0.005515675991773605, 0.024857595562934875, 0.007078980095684528, -0.032381217926740646, 0.009408055804669857, -0.021822737529873848, -0.042290378361940384, -0.04714614897966385, -0.009796235710382462, -0.018251487985253334, 0.019888898357748985, 0.01326161902397871, 0.01326161902397871, 0.01736220344901085, -0.0076224310323596, 0.006140291690826416, -0.017969176173210144, -0.03212713450193405, 0.026269156485795975, -0.01304282620549202, 0.0052439505234360695, 0.015611868351697922, 0.005049860570579767, -0.005939144175499678, -0.00460874754935503, -0.018914921209216118, 0.007361292373389006, 0.013212214224040508, 0.034075088798999786, 0.02289552427828312, -0.01357216201722622, 0.009676252491772175, -0.01644468866288662, 0.004915762227028608, -0.025831572711467743, 0.04943287745118141, 0.04892471432685852, 0.006461421959102154, -0.005363932810723782, 0.022076819092035294, -0.03277645260095596, 0.0026219752617180347, -0.0020767597015947104, 0.0020432351157069206, -0.0014327347744256258, 0.002681966405361891, 0.0025214015040546656, 0.0017088714521378279, -0.0026307974476367235, 0.034498557448387146, -0.002373187569901347, 0.015442481264472008, -0.0140732666477561, 0.0035853658337146044, -0.017249278724193573, 0.013508642092347145, -0.0006828428013250232, 0.030659111216664314, 0.025055212900042534, -0.002597272861748934, 0.024490589275956154, -0.0017723917262628675, 0.0032624711748212576, -0.013741549104452133, -0.007841222919523716, 0.049037639051675797, -0.01566833071410656, -0.015781255438923836, -0.03444209694862366, 0.016275301575660706, 0.013169866986572742, 0.008518772199749947, 0.004178221337497234, 0.022429710254073143, -0.02921932004392147, -0.005769757088273764, 0.023276645690202713, -0.026763202622532845, 0.008483483456075191, -0.005046331789344549, 0.00021173419372644275, -0.009259842336177826, 0.010770212858915329, 0.01866084150969982, 0.02539398893713951, -0.018124448135495186, -0.03489379584789276, -0.03139312565326691, -0.012132369913160801, 0.010262050665915012, -0.008003552444279194, 0.0027754823677241802, 0.0344703271985054, 0.05005396530032158, -0.045339349657297134, 0.008307038806378841, -0.006327323615550995, 0.0016735823592171073, -0.011363068595528603, -0.0019126655533909798, -0.0026784376241266727, -0.013134578242897987, 0.007862396538257599, 0.004771077074110508, -0.026057422161102295, -0.05027981474995613, 0.006655511446297169, 0.020820530131459236, 0.012986363843083382, 0.043504320085048676, 0.02913462556898594, -0.004654623568058014, 0.01857614703476429, -0.01892903819680214, -0.0012730518355965614, -0.020157095044851303, -0.007587142288684845, -0.004439360462129116, 0.015315440483391285, -0.017700979486107826, -0.015414250083267689, -0.0002514343650545925, 0.003627712605521083, 0.007996494881808758, -0.02545045129954815, -0.023883618414402008, 0.005342759657651186, -0.001164538087323308, -0.02715843915939331, -0.009937391616404057, -0.0240388885140419, -0.014383809641003609, -0.00794003251940012, -0.018406759947538376, 0.018547914922237396, -0.004217039328068495, -0.007008402142673731, 0.018971383571624756, -0.005042803008109331, 0.01991713047027588, -0.02317783609032631, -0.016769347712397575, -0.013303965330123901, -0.021992124617099762, -0.013917994685471058, -0.03483733534812927, -0.02624092437326908, 0.01894315332174301, -0.011116045527160168, -0.014023861847817898, -0.04096350818872452, -0.00662728026509285, -0.02587391994893551, -0.00288134953007102, -0.012068849056959152, 0.01422148011624813, 0.009048108011484146, 0.009697426110506058, 0.0182938352227211, 0.010487901046872139, -0.014934319071471691, -0.0001846057566581294, 0.008038842119276524, 0.001599475392140448, -0.021046379581093788, -0.018773766234517097, -0.010854906402528286, -0.01173713244497776, -0.011461878195405006, 5.166534901945852e-05, 0.000865904672536999, -0.012329988181591034, 0.0192254651337862, 0.021512195467948914, -0.002230266807600856, -0.0206370260566473, -0.0011971804779022932, -0.021258113905787468, -0.033425770699977875, 0.01979009062051773, -0.02049587108194828, -0.01730574108660221, -0.01772920973598957, 0.013565104454755783, -0.028047723695635796, -0.00819411315023899, 0.010502016171813011, 0.01623295433819294, -0.0070048728957772255, 0.028908776119351387, -0.013974457047879696, 0.011080756783485413, -0.013198098167777061, -0.004107643384486437, 0.02622680924832821, -0.014376752078533173, 0.012824034318327904, 0.026396196335554123, 0.007678893394768238, 0.005251008085906506, -0.006722560618072748, 0.01892903819680214, -0.02084876038134098, 0.0016418222803622484, 0.0022532048169523478, 0.004280559718608856, 0.020608795806765556, 0.024659976363182068, 0.009520981460809708, -0.012809919193387032, 0.001801505102775991, 0.02765248715877533, 0.0032465909607708454, -0.018971383571624756, 0.004435831680893898, 0.013805069960653782, -0.024899940937757492, -0.02305079624056816, 0.01396739948540926, -0.011638322845101357, 0.018209140747785568, -0.023008449003100395, -0.007954147644340992, -0.01667053997516632, 0.010262050665915012, -0.0009475105325691402, 0.007361292373389006, -0.03176013007760048, -0.012541722506284714, 0.006055598147213459, -0.009965622797608376, 0.011045467108488083, 0.20382945239543915, -0.03551488369703293, -0.0008566412725485861, 0.015414250083267689, -0.0046757967211306095, 0.004068825393915176, 0.023079028353095055, 0.030800268054008484, 0.015315440483391285, 0.02185096964240074, -0.015004896558821201, -0.0015818309038877487, 0.009944449178874493, -0.007848281413316727, 0.02338957041501999, -0.032381217926740646, -0.054062798619270325, -0.013388658873736858, -0.01201944425702095, 0.008215286768972874, 0.023643651977181435, -0.0015138995368033648, -0.005540378391742706, 0.010205588303506374, 0.029473399743437767, 0.011878288350999355, -0.0188725758343935, 0.019521893933415413, 0.0032907023560255766, -0.0018932566745206714, -0.029699251055717468, 0.00851171463727951, -0.0032077732030302286, -0.04536757990717888, 0.008758737705647945, -0.0022126224357634783, 0.00512396777048707, 0.029332244768738747, 0.0007547442219220102, 0.0067260898649692535, 0.002327311784029007, 0.015004896558821201, 0.020735835656523705, -0.00376533973030746, -0.01638822630047798, 0.021879199892282486, -0.029614556580781937, -0.020227674394845963, 0.015216630883514881, 0.016077684238553047, -0.012562896125018597, 0.0027190200053155422, 0.02816064842045307, 0.01233704574406147, -0.009189263917505741, -0.028132418170571327, 0.010127952322363853, -0.029247550293803215, 0.02233090065419674, 0.034780871123075485, -0.010269108228385448, 0.028386497870087624, -0.007333061192184687, 0.02106049470603466, -0.002514343708753586, 0.017771556973457336, -0.017531592398881912, -0.0113136637955904, 0.006796667817980051, -0.0004516996268648654, 0.009337478317320347, -0.011250143870711327, -0.02041117660701275, -0.02793479897081852, -0.006006193347275257, -0.03438563272356987, 0.03531726449728012, 0.027313711121678352, 0.044435951858758926, 0.04915056377649307, 0.028188880532979965, -0.005060447379946709, 0.023841271176934242, -0.001854438683949411, -0.016007104888558388, -0.034357402473688126, 0.001204238273203373, -0.003548312233760953, 0.02014297991991043, -0.0070295752957463264, 0.004298204090446234, -0.024123582988977432, 0.005519204773008823, -0.01045261137187481, -0.005014571826905012, 0.00656023109331727, 0.003599481424316764, -0.012809919193387032, -0.009549212642014027, -0.004344080109149218, -0.019310159608721733, 0.04296792671084404, 0.018604379147291183, 0.0267349723726511, -0.005307470448315144, -0.002727842191234231, 8.954592340160161e-05, 0.005663889925926924, 0.02069348841905594, -0.042516227811574936, 0.014877856709063053, -0.06436719745397568, -0.009633906185626984, -0.005872095003724098, -0.01658584550023079, 0.004259386099874973, -0.005716823507100344, -0.006369670387357473, -0.02241559326648712, 0.004749903921037912, 0.044068943709135056, -0.0011848292779177427, -0.009196322411298752, -0.012104138731956482, -0.009972680360078812, -0.01651526801288128, -0.004933407064527273, -0.021596888080239296, -0.0067543210461735725, -0.02234501577913761, 0.015230746939778328, -0.011906519532203674, 0.024547051638364792, 0.005840335041284561, 0.008928125724196434, 0.009598617441952229, -0.006433190777897835, -0.01035380270332098, 0.014807278290390968, -0.017051661387085915, -0.004051181022077799, 0.027821874246001244, 0.011970040388405323, -0.011066640727221966, 0.00508514977991581, -0.029981562867760658, 0.004442889243364334, 0.014242653734982014, 0.0006127058295533061, -0.016712885349988937, -0.03438563272356987, -0.0018297364003956318, -0.0019726569298654795, -0.018350297585129738, 0.037745151668787, 0.0025302236899733543, -0.015654215589165688, -0.04502880573272705, -0.006708445027470589, 0.006472008768469095, -0.03274822235107422, -0.0011213090037927032, 0.03568426892161369, -0.015640098601579666, -0.021427500993013382, -0.034498557448387146, -0.17955060303211212, 0.0059214998036623, 0.03509141504764557, -0.018830228596925735, 0.030715573579072952, 0.026551468297839165, 0.008772853761911392, 0.0010921956272795796, -0.023093143478035927, -0.004442889243364334, 0.02389773353934288, 0.016755232587456703, 0.0037476953584700823, -0.006768436636775732, 0.007382465526461601, 0.0009598616743460298, -0.04370193928480148, 0.022810831665992737, 0.031139042228460312, 0.028555884957313538, 0.05299001187086105, -0.023925963789224625, 0.005621543154120445, 0.025916265323758125, -0.005995606537908316, 0.008652870543301105, -0.021074609830975533, 0.011934750713407993, -0.008942240849137306, -0.016966966912150383, -0.008758737705647945, 0.016896389424800873, 0.030179182067513466, 0.020227674394845963, 0.0005474211066029966, -0.020397061482071877, -0.009916217997670174, -0.0028689983300864697, -0.019267812371253967, 0.0062108696438372135, -0.001960305729880929, 0.024335317313671112, 0.014299116097390652, -0.0060697137378156185, -0.01276051439344883, 0.012661704793572426, 0.011723016388714314, -0.005099265370517969, -0.004972224589437246, 0.006553173530846834, 0.013021653518080711, -0.017912713810801506, -0.008208229206502438, -0.017616285011172295, 0.039100248366594315, 0.015329555608332157, 0.004421715624630451, 0.001402739086188376, -0.010325571522116661, -0.010996062308549881, -0.016825811937451363, -0.02156865783035755, 0.015513058751821518, 0.024787016212940216, -0.009838582016527653, -0.0473719984292984, -0.009231611154973507, 0.031590741127729416, 0.018180910497903824, 0.008243517950177193, 0.021215766668319702, -0.0034794986713677645, -0.004333493299782276, -0.018279720097780228, 0.015851832926273346, 0.00391708267852664, -0.017884481698274612, 0.009626848623156548, 0.024377664551138878, 0.010325571522116661, -0.018773766234517097, 0.06978759169578552, 0.0034706764854490757, -0.00381827331148088, 0.03636182099580765, 0.0053815776482224464, 0.0060697137378156185, -0.010184414684772491, -0.04133051633834839, -0.013240445405244827, 0.04367370903491974, -0.007121326867491007, -0.011786537244915962, -0.01333219651132822, 0.011320722289383411, 0.01602122187614441, -0.00971859972923994, 0.0019338390557095408, -0.013762722723186016, -0.004573458805680275, 0.013847416266798973, -0.02851353958249092, -0.016063567250967026, 0.010043258778750896, 0.017828019335865974, 0.020312367007136345, 0.0026607930194586515, 0.031223736703395844, 0.04316554591059685, -0.01017029955983162, -0.012090022675693035, 0.013127520680427551, 0.02921932004392147, 0.027708949521183968, 0.019888898357748985, -0.006242630071938038, 0.0068919481709599495, -0.008462309837341309, 0.0021808622404932976, 0.0045346408151090145, -0.03319992125034332, -0.026466775685548782, 0.019536009058356285, 0.019832435995340347, 0.007061335723847151, -0.013607450760900974, -0.06498828530311584, 0.00017159292474389076, -0.005148670170456171, 0.04474649578332901, -0.011490109376609325, -0.003984131850302219, -0.0009995618602260947, 0.03785807639360428, -0.011772421188652515, 0.006669627036899328, -0.004855771083384752, -0.03568426892161369, 0.014920203015208244, 0.0029466343112289906, 0.0060661849565804005, 0.009281015954911709, 0.0035571346525102854, -0.029191087931394577, 0.005314528476446867, 0.026212694123387337, -0.004580516368150711, -0.02375657670199871, -0.018025638535618782, -0.03785807639360428, 0.013021653518080711, -0.0009995618602260947, -0.010897253639996052, 0.02389773353934288, 0.022288553416728973, 0.007784760557115078, -0.016416458413004875, 0.0024208277463912964, -0.01700931414961815, -0.02206270396709442, 0.02290964126586914, -0.0045911031775176525, -0.017616285011172295, -0.03226829320192337, 0.010890196077525616, -0.020044170320034027, 0.015216630883514881, -0.007558911107480526, -0.0009819173719733953, 0.00044662682921625674, 0.0014053857885301113, -0.01679757982492447, -0.017108123749494553, 0.031731899827718735, -0.02084876038134098, -0.011758306063711643, -0.04206452891230583, 0.01095371600240469, -0.007202491629868746, -0.005346288438886404, 0.027694832533597946, 0.012118253856897354, 0.01799740642309189, 0.022373247891664505, -0.03246590867638588, 0.0060167801566421986, -0.0014900794485583901, -0.003853562520816922, 0.0052192481234669685, 0.03466794639825821, 0.014468503184616566, 0.011927693150937557, -0.02864057943224907, -0.010671403259038925, -0.003153074998408556, 0.010283224284648895, -0.010911368764936924, 0.00993033405393362, -0.0070578064769506454, 0.014383809641003609, -0.019973592832684517, -0.02573276311159134, -0.006002664566040039, -0.009005761705338955, 0.020594680681824684, -0.03249414265155792, -0.018420875072479248, 0.009859755635261536, -0.004079412203282118, -0.0074671595357358456, 0.014934319071471691, 0.010593768209218979, 0.012217063456773758, -0.00586856622248888, -0.011363068595528603, -0.03334107995033264, 0.011913578025996685, 0.027610139921307564, 0.0025002278853207827, -0.033284615725278854, -0.02588803507387638, -0.031788360327482224, 0.01545659638941288, 0.0008429667796008289, -0.03308699652552605, -0.007996494881808758, -0.02530929446220398, -0.02353072725236416, -0.0862746313214302, -0.008921067230403423, 0.027835989370942116, 0.012075907550752163, 0.00794003251940012, -0.006814312189817429, 0.016684655100107193, -0.015089591033756733, 0.020157095044851303, 0.0023343695793300867, -0.04020126536488533, 0.011327779851853848, -0.010643172077834606, -0.007262483239173889, -0.007749471813440323, -0.002724313409999013, 0.006468479987233877, -0.0012545251520350575, -0.033792778849601746, 0.0017009313451126218, 0.019239580258727074, 0.002879585139453411, -0.0010542598320171237, 0.01757393777370453, -0.004227626137435436, 0.008554061874747276, -0.009238668717443943, 0.028668809682130814, -0.03246590867638588, -0.011497166939079762, 0.008822258561849594, 0.007220136001706123, -0.014404983259737492, 0.029388707131147385, 0.000994268455542624, 0.01596475951373577, -0.000911339302547276, 0.015216630883514881, 0.011320722289383411, 0.029755713418126106, -0.024067120626568794, -0.018279720097780228, 0.024857595562934875, 0.0008292922866530716, 0.017757441848516464, -0.008589350618422031, -0.025789225473999977, 0.014736699871718884, 0.017249278724193573, 0.012464086525142193, 0.03537372499704361, 0.008991645649075508, -0.0016338822897523642, -0.026424428448081017, -0.006062655709683895, -0.04353255033493042, 0.018392644822597504, -0.008730506524443626, -0.00922455359250307, -0.0028231225442141294, 0.045339349657297134, -0.019183117896318436, 0.033849239349365234, -0.019874783232808113, -0.022937871515750885, -0.008659929037094116, -0.006274390034377575, -0.020735835656523705, 0.012386450543999672, -0.04099174216389656, -0.019112540408968925, 0.0009554505813866854, -0.004824010655283928, 0.001561539713293314, 0.021187536418437958, 0.006281448062509298, 0.005233363714069128, 0.010382033884525299, -0.024405894801020622, 0.03932609781622887, 0.0015147817321121693, -0.003511258866637945, -0.022147396579384804, 0.033284615725278854, 0.0016497622709721327, 0.02240147814154625, -0.025986844673752785, -0.022429710254073143, -0.01328985020518303, 0.004333493299782276, -0.033284615725278854, -0.011687727645039558, 0.0055227335542440414, 0.0018614964792504907, 0.035910118371248245, 0.023996543139219284, 0.011250143870711327, 0.007537737488746643, 0.01907019317150116, 0.01286638155579567, -0.009083396755158901, 0.01328985020518303, -0.008554061874747276, -0.02204858884215355, -0.0030013322830200195, 0.003414213890209794, -0.021159304305911064, -0.04469003155827522, 0.0015871243085712194, 0.016628192737698555, -0.02546456642448902, 0.0013339254073798656, -0.018562031909823418, 0.021498078480362892, -0.011440704576671124, 0.0027313712053000927, 0.008582293055951595, -0.014722584746778011, -0.023996543139219284, 0.013395717367529869, 0.023784808814525604, 0.012696994468569756, 0.007777702994644642, 0.0037053485866636038, 0.04728730395436287, -0.015442481264472008, -8.870504643709864e-06, -0.02268378995358944, 0.0009029581560753286, -0.010339686647057533, 0.016190608963370323, 0.019832435995340347, -0.013487468473613262, -0.03226829320192337, -0.025055212900042534, 0.010177357122302055, 0.005169843323528767, -0.024575281888246536, -0.02672085538506508, 0.07859573513269424, 0.002681966405361891, 0.005942672956734896, -0.000550067808944732, -0.0019444257486611605, 0.0340186282992363, 0.030433261767029762, 0.0011768892873078585, -0.007389523554593325, -0.012619358487427235, -0.002932518720626831, -0.0030489724595099688, -0.01907019317150116, -0.0222744382917881, 0.013550988398492336, 0.018279720097780228, -0.016176491975784302, 0.024829363450407982, 0.03334107995033264, 0.015851832926273346, 0.02545045129954815, 0.012393508106470108, 0.00512396777048707, 0.01165949646383524, -0.014849625527858734, -0.0075447955168783665, 0.013882705941796303, 0.017206933349370956, -0.015258978120982647, 0.01314869336783886, 0.009732715785503387, 0.005455684382468462, -0.012492317706346512, -0.024631744250655174, -0.017771556973457336, -0.0022426180075854063, -0.000620204780716449, -0.02864057943224907, 0.02211916632950306, 0.007121326867491007, -0.02652323804795742, -0.009097512811422348, -0.03808392584323883, -0.029727481305599213, 0.028965238481760025, 0.012555837631225586, 0.024377664551138878, 0.01751747541129589, -0.0163035336881876], "ed8e6383-00ce-4f6e-9f26-c13c25f41b52": [-0.002048067981377244, 0.02331646718084812, 0.007375909481197596, -0.016756920143961906, -0.02070983499288559, 0.0337429940700531, -0.010440850630402565, -0.005915049929171801, 0.02563665620982647, -0.007504808716475964, 0.010519621893763542, 0.028787530958652496, -0.02598038874566555, -0.006248039659112692, -0.03225349262356758, -0.010347756557166576, 0.011944676749408245, 0.006280264817178249, 0.029360415413975716, -0.0005710959085263312, 0.010927803814411163, -0.01033343467861414, -0.02288680337369442, -0.02999059110879898, -0.024863259866833687, 0.005925791338086128, -0.002914558397606015, -0.011801455169916153, -0.012180992402136326, 0.015854625031352043, 0.00895850732922554, 0.0011251842370256782, -0.01996508240699768, -0.02625250816345215, 0.0030613604467362165, -0.006559546571224928, 0.01259633433073759, -0.015611148439347744, 0.02397528663277626, -0.02855837531387806, 0.013018838129937649, -0.001604081247933209, 0.02022288180887699, 0.00471914978697896, -0.0360058955848217, -0.009867964312434196, -0.019377874210476875, 0.026968616992235184, -0.023115957155823708, 0.02706887200474739, 0.00020285988284740597, 0.012954388745129108, -0.020280171185731888, -0.011772810481488705, -0.0004489100247155875, 0.018432611599564552, -0.015668436884880066, 0.010777421295642853, -0.010362078435719013, -0.008657742291688919, 0.01770218275487423, 0.004550864454358816, -0.035948608070611954, 0.01578301377594471, 0.018275069072842598, -0.007920151576399803, -0.00432529067620635, 0.0030703118536621332, 0.013462824746966362, -0.014050032943487167, 0.0198361836373806, 0.023216212168335915, -0.02926016040146351, -0.006917600519955158, 0.024218762293457985, 0.01434363704174757, -0.03279773145914078, 0.009660293348133564, -0.0002671976981218904, 0.004543703515082598, -0.012789683416485786, -0.005177458748221397, 0.001024033990688622, 0.009567199274897575, 0.015367671847343445, -0.00417490815743804, -0.011042380705475807, 0.009710420854389668, 0.018361002206802368, -0.012897100299596786, -0.003931431565433741, -0.003016603644937277, 0.039128124713897705, -0.003159825224429369, -0.0025421823374927044, 0.0027444828301668167, -0.02572258934378624, 0.015969201922416687, -0.01181577704846859, -0.023345110937952995, -0.013233670964837074, 0.006373358424752951, -0.02493487112224102, -0.010082796216011047, -0.04110458120703697, -0.03666471317410469, 0.02450520545244217, -0.02497783675789833, 0.01054826658219099, -0.012288408353924751, -0.02615225315093994, 0.03231078013777733, -0.01070581004023552, -0.040875427424907684, -0.03998745605349541, -0.015725726261734962, -0.0031974208541214466, -0.02058093622326851, -0.03208162635564804, -0.018733378499746323, 0.011414756998419762, 0.024118507280945778, -0.01307612657546997, -0.019062787294387817, 0.007948795333504677, 0.02401825226843357, -0.026352763175964355, -0.02105356752872467, -0.044054947793483734, -0.03239671140909195, 0.040388476103544235, -0.006885375827550888, 0.02633844129741192, 0.01992211677134037, -0.025880131870508194, 0.009896609000861645, -0.003575167851522565, 0.01133598480373621, -0.05405180901288986, 0.02227094955742359, 0.019850505515933037, 0.029847368597984314, 0.016642343252897263, -0.0014089419273659587, -0.015682758763432503, 0.019850505515933037, 0.006455711089074612, 0.0033549645449966192, -0.01008995808660984, 0.012968710623681545, 0.01515283901244402, -0.015052583999931812, 0.010111440904438496, -0.005195361562073231, -0.004450609441846609, 0.018905242905020714, 0.02646734192967415, 0.012130864895880222, 0.01515283901244402, -0.006359036546200514, 0.013863845728337765, 0.05147382244467735, -0.0037846292834728956, -0.02297273464500904, -0.020638223737478256, 0.029417704790830612, 0.036951158195734024, -0.0012370761251077056, -0.01394977793097496, 0.0006283845286816359, 0.019850505515933037, 0.002731950953602791, -0.023474011570215225, 0.0013104771496728063, -0.026051998138427734, 0.029331771656870842, 0.006086915731430054, -0.00874367542564869, 0.0020892443135380745, -0.001912007573992014, -0.013913973234593868, 0.008521681651473045, -0.013477147556841373, 0.013849522918462753, -0.01604081317782402, -0.03305553272366524, -0.015381993725895882, -0.016298610717058182, 0.017344128340482712, 0.006337553262710571, 0.006122720893472433, 0.0347169004380703, -0.0025744072627276182, -0.013455663807690144, -0.5724278688430786, -0.030019234865903854, -0.013047482818365097, 0.007920151576399803, 0.02062390185892582, 0.016728276386857033, -0.0024186538066715, -0.012488918378949165, -0.019478129222989082, 0.012496079318225384, -0.011020897887647152, 0.03950050100684166, 0.010147246532142162, -0.01909143105149269, 0.01708633080124855, -0.02058093622326851, 0.008256722241640091, -0.015281738713383675, 0.0014268446248024702, 0.020509324967861176, -0.016670987010002136, 0.005256230477243662, -0.02327350154519081, -0.021311365067958832, -0.006265942472964525, 0.0012370761251077056, -0.0014340056804940104, -0.006409164052456617, 0.016585053876042366, 0.009388172067701817, -0.019206007942557335, 0.00386340101249516, 0.015883268788456917, -0.006018885411322117, 0.043797146528959274, -0.01371346227824688, -0.031222296878695488, 0.0319097600877285, 0.005997402127832174, 0.041047293692827225, -0.027627436444163322, -0.0020176335237920284, -0.0014966650633141398, -0.022256627678871155, -0.002355994423851371, -0.012238280847668648, 0.005299197044223547, -0.019635673612356186, 0.010175890289247036, 0.009803514927625656, 0.017931336537003517, 0.006008143536746502, 0.028658630326390266, -0.02676810696721077, 0.03855523839592934, 0.02179831825196743, 0.019607029855251312, -0.020265847444534302, 0.007236268371343613, -0.016384543851017952, -0.010827548801898956, 0.009753387421369553, -0.0031096977181732655, -0.009402493946254253, 0.015424960292875767, 0.009402493946254253, 0.01840396784245968, 0.010326272808015347, 0.012402985244989395, -0.021869929507374763, -0.002375687239691615, -0.004489995539188385, -0.008614775724709034, -0.013104771263897419, 0.010204534977674484, 0.01532470528036356, 0.0008852881728671491, -0.020437713712453842, -0.016900142654776573, 0.017601927742362022, -0.008507359772920609, 0.016312934458255768, -0.008929863572120667, -0.0020659707952290773, 0.0007250590715557337, -0.0016604748088866472, -0.03849795088171959, -0.0027086774352937937, -0.004454189911484718, 0.01292574405670166, 0.007977440021932125, 0.026352763175964355, 0.01388532854616642, -0.026997260749340057, 0.00468692509457469, 0.024562494829297066, 0.0011404015822336078, -0.0002367631095694378, -0.01639886572957039, -0.02218501642346382, -0.025751233100891113, 0.01039788406342268, 0.01887659914791584, -0.008070534095168114, 0.052419085055589676, -0.01800294779241085, -0.0043288711458444595, -0.001218278193846345, 0.012675106525421143, -0.02040906995534897, -0.02053796872496605, -0.004629636183381081, -0.015195805579423904, -0.0064127445220947266, 0.01081322692334652, -0.04170611500740051, -0.0026495985221117735, 0.00080383091699332, 0.031709250062704086, 0.009323722682893276, 0.016814209520816803, 0.003542942926287651, 0.02345968782901764, -0.005567737389355898, 0.0036539395805448294, 0.016628021374344826, -0.0009112470434047282, -0.007426036987453699, -0.020938988775014877, -0.0013955149333924055, -0.01037640031427145, 0.02572258934378624, 0.03142280504107475, -0.03448774665594101, 0.007812734693288803, 0.0007608644664287567, 0.002991539891809225, 0.0013498630141839385, 0.044226814061403275, -0.0011493528727442026, -0.026968616992235184, -0.02126839943230152, -0.0009184081573039293, -0.020853057503700256, 0.016670987010002136, -0.023989608511328697, -0.01286129467189312, 0.012675106525421143, -0.02537885680794716, 0.018289390951395035, -0.0241471529006958, -0.01316922064870596, -0.0012048511998727918, 0.01887659914791584, 0.0011421918170526624, 0.010884837247431278, -0.0053206803277134895, -0.017816759645938873, 0.018733378499746323, -0.023373756557703018, 0.012059253640472889, -0.00862909760326147, -0.020423391833901405, 0.0007930892752483487, -0.0067922817543148994, -0.015296060591936111, -0.010254662483930588, 0.01595488004386425, -0.011930354870855808, -0.027011582627892494, -0.01957838423550129, -0.00040751005872152746, 0.01229556929320097, 0.03182382509112358, 0.009481266140937805, -0.018461257219314575, -0.027083193883299828, -0.0039457534439861774, 0.004772857762873173, -0.010956447571516037, -0.00850019883364439, 0.027656080201268196, 0.01244595181196928, -0.005023495759814978, 0.029704147949814796, 0.023860709741711617, 0.016599377617239952, -0.004232196602970362, -0.026782428845763206, 0.033026888966560364, -0.00694266427308321, 0.027326669543981552, 0.0061012376099824905, 0.00998254120349884, 0.028544053435325623, 0.019807539880275726, -0.011464884504675865, 0.005055720452219248, 0.002551133744418621, 0.004507897887378931, 0.002355994423851371, 0.02529292367398739, 0.0024687813129276037, -0.019936438649892807, 0.02380342036485672, -0.032196201384067535, 0.002543972572311759, -0.03213891386985779, -0.004948304500430822, -0.0017070217290893197, 0.017329806461930275, -0.026009032502770424, -0.016814209520816803, -0.009481266140937805, 0.01642751134932041, 0.007583580911159515, 0.002970056841149926, 0.0027444828301668167, -0.01357740256935358, 0.01319070439785719, -0.008285365998744965, -0.00784854032099247, 0.00784854032099247, -0.024261729791760445, 0.007984600961208344, -0.0028447378426790237, -0.014293509535491467, 0.008006083779036999, -0.01268942840397358, -0.007912990637123585, -0.004321710206568241, 0.000840978987980634, -0.007690996862947941, 0.019692962989211082, 0.021282721310853958, -0.03543300926685333, 0.03551894426345825, -0.015210127457976341, 0.009123212657868862, -0.007025016471743584, -0.0031562447547912598, -0.002671081805601716, -0.013441341929137707, 0.0009962848853319883, 0.008399943821132183, 0.01421473827213049, 0.028100065886974335, 0.04001609981060028, 0.0024490882642567158, 0.004103297367691994, -0.04411223530769348, 0.0010652102064341307, -0.00745468121021986, 0.004554444923996925, -0.002884123707190156, -0.010906320065259933, -0.004604572430253029, 0.01591191254556179, 0.02079576812684536, 0.035375721752643585, 0.00873651448637247, 0.02598038874566555, 0.029847368597984314, 0.010662843473255634, 0.0035536845680326223, -0.05095822364091873, -0.01111399196088314, -0.008156467229127884, -0.0019567643757909536, 0.015367671847343445, -0.0029611054342240095, -0.015811657533049583, 0.009302238933742046, -0.024777326732873917, 0.006953405681997538, -0.007640869356691837, 0.028887785971164703, 0.015625469386577606, 0.04651835560798645, -0.006996372248977423, -0.024863259866833687, -0.03465961292386055, 0.03116500750184059, -0.0437685027718544, 0.012453112751245499, -0.0011090717744082212, -0.011722682975232601, 0.00817078910768032, -0.003942172974348068, 0.004178488627076149, 0.009409654885530472, 0.009116050787270069, 0.017186585813760757, -0.0019728767219930887, -0.014422409236431122, 0.014952328987419605, 0.019893473014235497, -0.001672111451625824, -0.006291006226092577, -0.010884837247431278, 0.018475579097867012, 0.015023940242826939, 0.010218856856226921, -0.02489190362393856, 0.03884168341755867, 0.011429078876972198, -0.013598885387182236, -0.006394841708242893, 0.006692026741802692, -0.02209908328950405, 0.007676674518734217, -0.01883363351225853, 0.009696098044514656, -0.0018350259633734822, -0.00013438209134619683, -8.341536158695817e-05, 0.003942172974348068, 0.007447520270943642, 0.015109872445464134, 0.02898804098367691, -0.019062787294387817, -0.03998745605349541, -0.04373985901474953, 0.008271044120192528, -0.04958329722285271, -0.0003676765481941402, 0.019549740478396416, -0.01405719481408596, -0.04855210334062576, -0.02083873376250267, -0.029016684740781784, -0.00015385127335321158, -0.007862863130867481, -0.02638140879571438, 0.010662843473255634, -0.010440850630402565, 0.008342654444277287, 0.0011063864221796393, 0.02419011853635311, -0.002207402139902115, -0.005979499313980341, -0.01063419971615076, 0.028486764058470726, -0.002558294916525483, 0.010763098485767841, -0.027842268347740173, -0.002722999546676874, -0.006291006226092577, -0.010490978136658669, 0.003075682558119297, 0.015940558165311813, 0.007239848840981722, 0.005055720452219248, -0.017773794010281563, 0.014436731114983559, 0.011250052601099014, 0.009989702142775059, 0.028758885338902473, 0.02166941948235035, 0.027613112702965736, 0.032368067651987076, 0.03844066336750984, 0.0029449928551912308, 0.015897590667009354, 0.02005101554095745, 0.01127153541892767, 0.012352857738733292, -0.005804053042083979, 0.014236221089959145, -0.02585148811340332, -0.016241323202848434, -0.0010052361758425832, -0.0027498535346239805, -0.02623818628489971, 0.026094965636730194, 0.007733963429927826, -0.062100861221551895, 0.0018923146417364478, 0.029245838522911072, 0.02928880602121353, -0.026123609393835068, -0.008786641992628574, 0.010598394088447094, 0.013613207265734673, 0.012030609883368015, -0.027656080201268196, -0.005095106549561024, 0.0016237742966040969, -0.022958412766456604, -0.016585053876042366, -0.04353934898972511, -0.0002584701287560165, -0.023531299084424973, -7.161076791817322e-05, 0.018117524683475494, -0.05052855983376503, -0.030191101133823395, 0.012868455611169338, 0.015639793127775192, 0.025708267465233803, 0.024691393598914146, -0.020853057503700256, -0.00499127060174942, 0.02467707172036171, -0.013978422619402409, -0.011643911711871624, -0.01379939541220665, -0.026438696309924126, 0.0039457534439861774, -0.011951837688684464, 0.00019860800239257514, -0.022858157753944397, -0.029102617874741554, 0.01844693534076214, -5.1666051149368286e-05, 0.0014232640387490392, 0.011479206383228302, 0.006298167165368795, -0.009753387421369553, -0.005302777513861656, -0.01033343467861414, 0.016542088240385056, 0.014171771705150604, -0.007189721334725618, 0.019334908574819565, -0.041476957499980927, -0.027885233983397484, -0.0043288711458444595, -0.021869929507374763, 0.014880718663334846, 0.01721522957086563, -0.00393501203507185, -0.011536494828760624, -4.433713911566883e-05, 0.00745468121021986, -0.002372106770053506, 0.017988625913858414, -0.008521681651473045, 0.020695513114333153, -0.0012773571070283651, -0.020108304917812347, -0.007039338815957308, 0.0015163581119850278, 0.018031591549515724, 0.005173878278583288, -0.016599377617239952, 0.022027473896741867, 0.016026491299271584, 0.02938906103372574, 0.011500690132379532, -0.0016389915253967047, -0.026653528213500977, -0.004013783764094114, 0.024777326732873917, -0.02802845649421215, 0.038784392178058624, 0.036378271877765656, -0.030019234865903854, -0.008901218883693218, -0.005227586254477501, -0.012911422178149223, 0.025751233100891113, -0.010641360655426979, -0.026839716359972954, -0.0040281061083078384, -0.01286129467189312, -0.01421473827213049, -0.031451452523469925, 0.004962626378983259, -0.019678639248013496, 0.004271582700312138, 0.005879244301468134, 0.0033370619639754295, -0.012739555910229683, 0.00856464821845293, 0.002615583362057805, -0.0314800962805748, -0.010061313398182392, 0.006015304941684008, -0.009882286190986633, -0.02022288180887699, 0.007841379381716251, 0.017902692779898643, 0.01181577704846859, 0.046718865633010864, 0.0006861207075417042, 0.0077554467134177685, -0.003646778641268611, -0.0008875260245986283, 0.01721522957086563, 0.011944676749408245, -0.0058899857103824615, -0.020681191235780716, -0.01545360404998064, 0.0005603542667813599, -0.0008391887531615794, 0.0111856022849679, -0.03858388215303421, 0.004332451615482569, 0.04276595264673233, -0.01591191254556179, 0.014880718663334846, -0.001559324562549591, -0.04651835560798645, -0.009259272366762161, -0.00017421557276975363, 0.01783108152449131, -0.01979321800172329, -0.02772769145667553, -0.021125176921486855, 0.01826074719429016, 0.00850019883364439, 0.007798412814736366, -0.005445999093353748, 0.017501672729849815, -0.025751233100891113, 0.00583269726485014, 0.00928791705518961, -0.012424468994140625, -0.02781362272799015, 0.0016604748088866472, -0.010140085592865944, 0.031050430610775948, -0.010662843473255634, 0.0130976103246212, 0.01612674631178379, 0.003970817197114229, 0.023087313398718834, 0.0021930797956883907, 0.033542484045028687, 0.025908777490258217, -0.02436198480427265, -0.019291941076517105, -0.005850600078701973, -0.026223864406347275, -0.02175535261631012, -0.012173831462860107, -0.038297440856695175, 0.01787404902279377, 0.006405583582818508, 0.018189135938882828, 0.013770751655101776, -0.012732394970953465, 0.012639300897717476, 0.0014152078656479716, -0.010140085592865944, 0.046747513115406036, -0.012632139958441257, -0.0020409070421010256, 0.01922033168375492, 0.019320586696267128, 0.0029485735576599836, -0.017759472131729126, -0.019435163587331772, -0.009724742732942104, 0.012968710623681545, 0.03798235207796097, -0.003770307172089815, -0.007136013358831406, 0.024247407913208008, 0.011407596059143543, 0.004271582700312138, -0.021168144419789314, 0.03566216304898262, 0.021912895143032074, 0.005173878278583288, -0.018031591549515724, 0.005567737389355898, -0.01930626481771469, -0.007905828766524792, -0.01516716182231903, 0.012202475219964981, 0.008113500662147999, -0.0032654511742293835, -0.0120735764503479, -0.007318621035665274, -0.0018421871354803443, 0.03849795088171959, -0.0009909140644595027, 0.012274086475372314, -0.008851091377437115, 0.003698696382343769, -0.03305553272366524, 0.016098100692033768, 0.0024293954484164715, 0.02523563615977764, 0.012188153341412544, -0.00184755795635283, 0.024003930389881134, -0.012159508652985096, 0.002395380288362503, -0.005209683440625668, -0.003419414395466447, 0.05061449483036995, -0.04170611500740051, -0.018361002206802368, -0.026524629443883896, 0.016585053876042366, 0.015181483700871468, 0.019649995490908623, 0.007712480146437883, 0.011908871121704578, -0.048809900879859924, 0.002558294916525483, 0.011071025393903255, -0.040961362421512604, 0.00856464821845293, -0.010319111868739128, 0.008679225109517574, -0.0039887200109660625, 0.0015091970562934875, 0.01975025050342083, 0.006359036546200514, -0.020781446248292923, -0.028973717242479324, -0.025994710624217987, -0.018518544733524323, 0.0029861691873520613, 0.010512460954487324, -0.004092555493116379, 0.026324119418859482, 0.04608869180083275, -0.053421635180711746, 0.0166566651314497, -0.016799887642264366, 0.0077840909361839294, -0.005202522501349449, 0.010920642875134945, -0.004636797588318586, 0.003927850630134344, 0.025966065004467964, 0.016198355704545975, -0.030620764940977097, -0.04216442257165909, 0.023817742243409157, 0.01936355233192444, 0.023989608511328697, 0.04918227717280388, 0.034860122948884964, 0.001721343956887722, 0.009015795774757862, 0.0012666154652833939, -0.01783108152449131, -0.012259763665497303, -0.016284288838505745, -0.014379442669451237, 0.010132923722267151, -0.024032574146986008, -0.0005621445598080754, 0.004733472131192684, 0.008228077553212643, 0.019420841708779335, -0.013462824746966362, -0.005746764596551657, 0.02433333918452263, -0.011006576009094715, -0.0032779830507934093, 0.0029611054342240095, -0.016155390068888664, -0.01292574405670166, -0.03016245737671852, -0.022442815825343132, 0.02214205078780651, -0.0287302415817976, -0.00571095896884799, 0.02928880602121353, -0.0024938450660556555, 0.024820294231176376, -0.012095059268176556, -0.013419858179986477, -0.018976854160428047, -0.009015795774757862, -0.0018582994816824794, -0.033284686505794525, -0.009065923281013966, 0.021254077553749084, -0.0047692772932350636, -0.012080737389624119, -0.03806828707456589, -0.018847955390810966, -0.021998828276991844, -0.003559055272489786, -0.016799887642264366, 0.009882286190986633, 0.00887257419526577, 0.011164119467139244, 0.010934964753687382, 0.006319650448858738, 0.005947274621576071, 0.003607392543926835, 0.02154052071273327, -0.014443892985582352, -0.034459102898836136, -0.025350213050842285, -0.010498139075934887, -0.0014733916614204645, -0.019864827394485474, -0.020036693662405014, -0.0013435970759019256, 0.009667454287409782, 0.027340993285179138, 0.02305866777896881, 0.000818600645288825, -0.021511875092983246, 0.005356485489755869, -0.019248975440859795, -0.02450520545244217, 0.005474643316119909, -0.004608152899891138, -0.01735845021903515, -0.014400926418602467, 0.007447520270943642, -0.0075334529392421246, -0.002586939139291644, -0.0019048465183004737, 0.014615758322179317, -0.003465961432084441, 0.002400750992819667, -0.019764572381973267, 0.011328823864459991, -0.0074331979267299175, -0.0006019780412316322, 0.027541503310203552, -0.026166575029492378, 0.01490936242043972, 0.03064941056072712, 0.011171280406415462, 0.01721522957086563, -0.00606901291757822, 0.014751818962395191, -0.015840303152799606, -0.00887257419526577, 0.011772810481488705, 0.005732442252337933, 0.01286129467189312, 0.022987058386206627, 0.0010490977438166738, -0.01652776636183262, 0.01499529555439949, 0.015596825629472733, 0.006724251434206963, -0.03497470170259476, 0.014007067307829857, 0.003043457865715027, -0.047406330704689026, -0.015281738713383675, 0.007322201505303383, -0.02271493710577488, 0.005292036104947329, -0.050242118537425995, 0.01499529555439949, -0.04027389734983444, 0.013290959410369396, 0.005897147115319967, -0.004969787318259478, -0.03975829854607582, -0.011178441345691681, 0.004275163169950247, -0.022858157753944397, 0.023516977205872536, 0.23247720301151276, -0.02903100661933422, 0.01648479886353016, 0.013656173832714558, -0.003344222903251648, 0.028185999020934105, 0.010899159125983715, 0.0250637698918581, 0.0016210888279601932, 0.04153424873948097, -0.007991761900484562, 0.005360066425055265, 0.011565139517188072, -0.013262314721941948, 0.02706887200474739, -0.010405045002698898, -0.05227586254477501, -0.006004563067108393, -0.036779291927814484, -0.009259272366762161, 0.015181483700871468, -0.0015109872911125422, 0.0018869438208639622, -0.01608377881348133, 0.01765921711921692, 0.00230049598030746, -0.01244595181196928, 0.010183051228523254, 0.0034928154200315475, 0.01048381719738245, -0.02258603647351265, 0.009266434237360954, 0.002667501335963607, -0.024906225502490997, -0.010011185891926289, -0.007490486837923527, 0.009517071768641472, 0.04210713505744934, 0.015682758763432503, 0.005696636624634266, -0.01397126168012619, -0.016184033825993538, 0.01853286847472191, -0.020280171185731888, -0.0036772130988538265, 0.0026818234473466873, -0.020208559930324554, -0.02009398303925991, 0.01190171018242836, 0.014651563949882984, -0.006405583582818508, -0.0018511384259909391, 0.02907397225499153, 0.03540436550974846, -0.004622475244104862, -0.0064413887448608875, 0.0314800962805748, -0.008041889406740665, 0.009624487720429897, 0.04288053140044212, -0.00574318366125226, 0.04477105289697647, 0.004694086033850908, 0.010254662483930588, -0.0032815635204315186, -0.02292976900935173, -0.02254307083785534, -0.02397528663277626, -0.014895040541887283, -0.019764572381973267, 0.021039243787527084, 0.0037738876417279243, -0.01896253228187561, -0.01165823359042406, -0.007483325432986021, -0.0470053106546402, 0.04626055806875229, 0.022213662043213844, 0.03056347742676735, 0.04259408637881279, 0.01717226207256317, -0.00020386691903695464, 0.02201315201818943, 0.01787404902279377, -0.02192721888422966, -0.02493487112224102, 0.0034086727537214756, 0.0013999906368553638, -0.007698157802224159, -0.012331374920904636, 0.013656173832714558, -0.019291941076517105, 0.015854625031352043, -0.015381993725895882, -0.00222351448610425, 0.00012778046948369592, 0.01740141771733761, -0.010362078435719013, -0.0007563887629657984, -0.010956447571516037, -0.023559942841529846, 0.004124780651181936, 0.017888370901346207, 0.030420254915952682, -0.02472003735601902, -0.010125762782990932, -0.0005809423746541142, 0.006538063287734985, 0.014866395853459835, -0.025493433699011803, 0.02092466689646244, -0.061356108635663986, -0.007519131060689688, 0.010627038776874542, -0.030277034267783165, 0.007282815407961607, -0.012603496201336384, -0.01135746855288744, -0.014866395853459835, 0.0071216910146176815, 0.03216755762696266, -0.018060237169265747, -0.010075635276734829, -0.0026460180524736643, -0.009688937105238438, -0.027169127017259598, -0.010712970979511738, -0.029102617874741554, 0.03334197402000427, -0.030935853719711304, 0.0026137931272387505, -0.016055135056376457, 0.00643064733594656, 0.007025016471743584, 0.002210982609540224, 0.022041795775294304, -0.016943108290433884, -0.0018690411234274507, 0.020824411883950233, -0.0019567643757909536, -0.011636750772595406, 0.01236001867800951, 0.017544638365507126, -0.03540436550974846, -0.00574318366125226, -0.02288680337369442, 0.0029414123855531216, 0.006903278175741434, 0.005954435560852289, -0.004629636183381081, -0.02689700573682785, 0.00874367542564869, 0.007819896563887596, -0.010276145301759243, 0.029589571058750153, 0.004758535884320736, -0.013441341929137707, -0.048408880829811096, -0.011371790431439877, 0.015496570616960526, -0.03918541222810745, -0.00646287202835083, 0.03285502269864082, -0.025565044954419136, -0.0122096361592412, -0.037781842052936554, -0.18332357704639435, -0.007984600961208344, 0.044713765382766724, -0.03566216304898262, 0.01744438335299492, 0.023989608511328697, 0.006359036546200514, 0.004815824329853058, -0.01382087916135788, 0.00345521979033947, 0.039299990981817245, 0.009896609000861645, -0.006806603632867336, -0.0064127445220947266, -0.011686878278851509, 0.006795862223953009, -0.04878125712275505, 0.018847955390810966, 0.032024335116147995, 0.016713954508304596, 0.02633844129741192, -0.028214644640684128, -0.001747302827425301, 0.04216442257165909, 0.007769768591970205, 0.013061804696917534, -0.03162331506609917, 0.009996864013373852, -0.013147737830877304, -0.024777326732873917, -0.001439376501366496, 0.01944948546588421, 0.02546478994190693, 0.003913528751581907, 0.0006722460966557264, -0.0005710959085263312, -0.005836277734488249, 0.0019137978088110685, -0.014379442669451237, 0.0051094284281134605, -0.015668436884880066, 0.030964497476816177, 0.0063697779551148415, -0.0010741616133600473, -0.018733378499746323, 0.02371748723089695, 0.029217194765806198, -0.01279684528708458, -0.004525800701230764, 0.01896253228187561, 0.013233670964837074, -0.04709124192595482, -0.0011520382249727845, -0.008715030737221241, 0.030047880485653877, 0.022299593314528465, -0.0029056069906800985, 0.0013131625019013882, -0.02589445561170578, -0.01770218275487423, -0.011479206383228302, -0.016556410118937492, 0.010326272808015347, 0.015296060591936111, -0.006326811853796244, -0.04127644747495651, -0.01578301377594471, 0.018733378499746323, 0.009846481494605541, 0.027842268347740173, 0.0123170530423522, -0.00348744448274374, -0.001037461101077497, -0.004475673194974661, 0.010290468111634254, -0.01081322692334652, -0.0054495795629918575, 0.020480681210756302, 0.00603678822517395, 0.012782522477209568, -0.011221407912671566, 0.06032491475343704, 0.0007783195469528437, -0.015682758763432503, 0.015124195255339146, 0.010906320065259933, 0.009889447130262852, 0.0009488427313044667, -0.03549029678106308, -0.020824411883950233, 0.04812243953347206, -0.012632139958441257, -0.023130279034376144, -0.02606632001698017, 0.0018779925303533673, 0.017630571499466896, -0.009624487720429897, 0.004500736948102713, -0.017072007060050964, -0.007383070420473814, 0.005961596500128508, -0.0034534295555204153, -0.011973320506513119, -0.00365035911090672, 0.011493529193103313, 0.02489190362393856, 0.005335002671927214, 0.04574495926499367, 0.03483147919178009, -0.004672602750360966, -0.0074618421494960785, 0.006133462768048048, 0.035031989216804504, 0.0406462736427784, 0.015023940242826939, 0.015181483700871468, -0.011343145743012428, -0.008937024511396885, -0.0024132831022143364, 0.0005393186002038419, -0.038641173392534256, -0.02280087023973465, 0.013813718222081661, 0.02437630668282509, -0.0004681554273702204, -0.0019173783948644996, -0.05462469533085823, -0.016456155106425285, 0.006745734717696905, 0.03159467130899429, -0.005496126599609852, 0.026453018188476562, 0.02201315201818943, 0.0437685027718544, -0.005356485489755869, 0.02406121976673603, 0.0011878436198458076, -0.023903675377368927, 0.004536542575806379, -0.004396901465952396, -0.004404062405228615, 0.018060237169265747, 0.004862371366471052, -0.005814794450998306, -0.013348247855901718, 0.018633123487234116, -0.022156372666358948, -0.007733963429927826, 0.011350307613611221, -0.031050430610775948, 0.02410418540239334, -0.0008705184445716441, -0.02397528663277626, 0.030047880485653877, 0.008006083779036999, 0.01747302897274494, 0.007655191235244274, -0.014794785529375076, -0.01817481406033039, -0.02602335438132286, 0.02410418540239334, -0.004941143095493317, -0.03958643600344658, -0.031451452523469925, 0.017644893378019333, -0.009624487720429897, 0.009631648659706116, -0.002570826793089509, -0.005821955855935812, -0.0026728720404207706, 0.0014152078656479716, -0.01748735085129738, 0.00024638581089675426, 0.03815421834588051, -0.011472045443952084, -0.011464884504675865, -0.04411223530769348, 0.006720670964568853, -0.014293509535491467, 0.004339612554758787, 0.011314501985907555, 0.008836769498884678, 0.032940953969955444, 0.023345110937952995, -0.026051998138427734, -0.011608106084167957, 0.010254662483930588, -0.0029414123855531216, -0.001649733167141676, 0.025206992402672768, -0.009073085151612759, 0.028801852837204933, -0.03391486033797264, -0.03139416128396988, 0.014708852395415306, 0.02542182430624962, -0.016499122604727745, 0.0008338179322890937, 0.004622475244104862, 0.035117920488119125, -0.03844066336750984, -0.016026491299271584, 0.003806112566962838, -0.011321662925183773, 0.02938906103372574, -0.01644183322787285, 0.003507137531414628, 0.0061119794845581055, -0.011951837688684464, -0.007229107432067394, 0.032940953969955444, 0.0182177796959877, -0.008657742291688919, -0.008693547919392586, -0.019392196089029312, -0.02540750242769718, 0.011686878278851509, 0.035576231777668, 0.00856464821845293, -0.036464203149080276, -0.03179518133401871, -0.004106877837330103, 0.011328823864459991, 0.010569749400019646, -0.022385526448488235, -0.0016094520688056946, -0.019105752930045128, -0.03047754429280758, -0.08627665787935257, -0.002026584930717945, 0.006878214422613382, 0.0038204346783459187, 0.008571809157729149, -0.0010670004412531853, 0.025779876857995987, -0.015066905878484249, 0.013398375362157822, -0.02036610245704651, -0.005488965660333633, 0.030105167999863625, -0.001407151692546904, -0.006634737830609083, 0.001348072779364884, -0.021826963871717453, 0.008929863572120667, 0.023359432816505432, -0.01879066601395607, 0.0021178885363042355, 0.028787530958652496, 0.006749315187335014, 0.010798904113471508, -0.0032618707045912743, -0.026410052552819252, 0.018461257219314575, -0.009903769940137863, 0.038813039660453796, -0.012130864895880222, -0.019191686064004898, 0.013863845728337765, 0.0023148180916905403, -0.00039095006650313735, 0.018103202804923058, 0.013133415021002293, 0.009824997745454311, 0.004067491739988327, 0.0073329429142177105, 0.016456155106425285, 0.018361002206802368, -0.036292340606451035, -0.01238150242716074, 0.035031989216804504, 0.002252158708870411, 0.009022957645356655, 0.007526291999965906, -0.010992253199219704, -0.010641360655426979, 0.020251525565981865, 0.005274133291095495, 0.034029439091682434, 0.0008785746758803725, -0.007562097627669573, -0.029961947351694107, -0.0045687672682106495, -0.033370617777109146, 0.020853057503700256, -0.014207577332854271, -0.0015127775259315968, 0.013240831904113293, 0.035031989216804504, -0.01987914927303791, 0.02559369057416916, -0.004976948723196983, -0.02938906103372574, -0.006301748100668192, 0.007354426197707653, -0.0207528006285429, -0.005270552821457386, -0.020738478749990463, -0.013462824746966362, -0.004035267047584057, 0.006928341928869486, 0.0008181530865840614, 0.02990465797483921, 0.0034462683834135532, -0.0009783821878954768, -0.004554444923996925, -0.027627436444163322, 0.029503637924790382, 0.01669963262975216, -0.003380028298124671, -0.032940953969955444, 0.014723174273967743, 0.004955465439707041, 0.015353349037468433, -0.027784978970885277, -0.015066905878484249, -0.016513444483280182, 0.01165823359042406, -0.03397215157747269, -0.0203231368213892, 0.023158922791481018, 0.01953541859984398, 0.018647445365786552, 0.021082211285829544, 0.013699140399694443, -0.0032779830507934093, 0.00976770929992199, 0.0027444828301668167, 0.014293509535491467, -0.014100160449743271, 0.011715522035956383, -0.03927134722471237, -0.019807539880275726, -0.009252111427485943, -0.025278601795434952, -0.021898573264479637, -0.007157496642321348, -0.0008982676081359386, -0.02651030756533146, -0.01024750154465437, -0.029532281681895256, 0.019420841708779335, 0.0009846481261774898, -0.008750836364924908, 0.0022253047209233046, 0.013462824746966362, -0.01813184656202793, 0.01181577704846859, 0.02973279170691967, 0.010233179666101933, 0.017759472131729126, -0.00492682121694088, 0.030935853719711304, -0.003607392543926835, 0.007891506887972355, -0.015969201922416687, 0.008464393205940723, -0.0008078590035438538, 0.013806556351482868, 0.01545360404998064, -0.013763589784502983, -0.025049448013305664, -0.03560487553477287, 0.0007586266146972775, 0.007977440021932125, -0.005750345066189766, -0.03606318309903145, 0.06897549331188202, -0.01883363351225853, -0.007418876048177481, -0.013727785088121891, -0.01037640031427145, 0.042049843817949295, 0.016012167558073997, 0.011307341046631336, -0.014408087357878685, -0.018933888524770737, 0.012431629933416843, -0.031136363744735718, -0.01936355233192444, -0.03359977528452873, 0.021483231335878372, -0.009903769940137863, -0.02000804990530014, 0.02990465797483921, 0.012832649983465672, 0.013333925977349281, 0.03789642080664635, 0.014536986127495766, 0.01427918765693903, 0.01379939541220665, -0.002048067981377244, -0.008092016912996769, 0.0021250497084110975, -0.006563127040863037, -0.002604841720312834, 0.012718073092401028, 0.014415248297154903, -0.0011645702179521322, -0.006777959410101175, -0.03849795088171959, -0.016198355704545975, 0.014236221089959145, -0.00025802257005125284, -0.02755582518875599, 0.009574360214173794, 0.004106877837330103, -0.006699187681078911, 0.010190213099122047, -0.040961362421512604, -0.03875574842095375, 0.011149796657264233, 0.010197374038398266, 0.036464203149080276, 0.005882824771106243, -0.03732353448867798], "be96e7c0-2f2d-44e9-bfc5-6deaf6a7f934": [-0.017416860908269882, 0.01828281581401825, 0.006225794553756714, -0.020419767126441002, -0.021760599687695503, 0.021523160859942436, -0.018212979659438133, -0.0190789345651865, 0.005991846788674593, -0.007304745726287365, 0.006732098292559385, 0.030252542346715927, -0.020559437572956085, 0.0008965074084699154, -0.026663020253181458, -0.004944321233779192, 0.00115315115544945, -0.019023066386580467, 0.022598620504140854, -0.0013399599120020866, 0.0197074506431818, -0.011823073029518127, -0.021048283204436302, -0.025056814774870872, -0.03217998892068863, 0.008582727052271366, 0.016886115074157715, -0.011529766023159027, 0.0005381663213483989, 0.01723529025912285, 0.024693671613931656, 0.01196274347603321, -0.0009288061410188675, -0.012716962024569511, 0.003596504917368293, -0.012661093845963478, -0.009420747868716717, -0.014372052624821663, 0.030950892716646194, -0.021439358592033386, 0.0097489720210433, 1.6145944528034306e-06, 0.015433545224368572, 0.0004268667253199965, -0.038548946380615234, -0.005544902756810188, -0.0018645956879481673, 0.005209694616496563, -0.008533842861652374, 0.023534409701824188, -0.0018314240733161569, 0.012702994979918003, -0.023115400224924088, -0.0047173574566841125, 0.0030378245282918215, 0.0190789345651865, 0.0027602300979197025, 0.0201264601200819, -0.008114832453429699, -0.0020985431037843227, 0.0171514879912138, 0.0068962108343839645, -0.03190064802765846, 0.026327813044190407, 0.003414933802559972, -0.00801706314086914, -0.0007393785635940731, 0.001270997803658247, 0.005768375005573034, -0.014211432076990604, 0.017668265849351883, 0.031537506729364395, -0.006609887350350618, -0.0006001449073664844, 0.02300366386771202, 0.011425013653934002, -0.010195916518568993, 0.013813371770083904, -0.005352856125682592, 0.01195575948804617, -0.0031111512798815966, -0.0023464574478566647, 0.006243253126740456, -0.005621721036732197, 0.02938658744096756, -0.011746254749596119, -0.028995512053370476, 0.007486316841095686, -0.00523762870579958, -0.02183043584227562, -0.009385829791426659, -0.0006315706996247172, 0.017137520015239716, 0.000428612605901435, -0.0024407347664237022, 0.006693689152598381, -0.014274283312261105, 0.013722586445510387, -0.018562154844403267, -0.021187953650951385, 0.0006804552394896746, 0.012702994979918003, -0.03148163855075836, -0.008547809906303883, -0.006791458465158939, -0.03134196996688843, 0.017933640629053116, -0.0053598396480083466, 0.0024896194227039814, -0.026453515514731407, -0.041146811097860336, 0.03326941654086113, -0.01317088957875967, -0.0348895899951458, -0.029665928333997726, -0.0017703183693811297, 0.008401156403124332, -0.005293496418744326, -0.019972823560237885, -0.011194557882845402, 0.031118497252464294, 0.01979125291109085, -0.007423465605825186, -0.005317938979715109, 0.001608824823051691, 0.019651582464575768, -0.004102808889001608, -0.010105131193995476, -0.030867090448737144, -0.014707260765135288, 0.041761357337236404, 0.005796308629214764, 0.00970707181841135, 0.01620173081755638, -0.023324904963374138, 0.00918330904096365, -0.0004253390652593225, -0.009022687561810017, -0.04704088717699051, 0.026355747133493423, 0.013883206993341446, 0.025699296966195107, -0.0073256962932646275, -0.006826375611126423, -0.04287871718406677, 0.019930921494960785, -0.0166486743837595, -0.0002529337943997234, 0.011180590838193893, 0.0018296781927347183, 0.017333058640360832, -0.016914047300815582, 0.014344118535518646, 0.012402703985571861, -0.01553131453692913, 0.013813371770083904, 0.02743120677769184, 0.014358085580170155, -0.0009480107692070305, 0.0017668267246335745, 0.030029069632291794, 0.06111963093280792, -0.0059569296427071095, -0.02567136287689209, -0.015978258103132248, 0.028366995975375175, 0.026663020253181458, -0.009546451270580292, -0.009469632059335709, -0.009008720517158508, 0.015196106396615505, 0.009923560544848442, -0.019358275458216667, 0.004371673800051212, -0.024274662137031555, 0.031034694984555244, 0.007423465605825186, 0.009399796836078167, 0.01586652174592018, -0.0031024219933897257, 0.0017799207707867026, -0.007814541459083557, 0.007234910968691111, 0.03159337490797043, -0.018436452373862267, -0.009204259142279625, -0.007151108700782061, -0.007556152064353228, 0.02266845665872097, 0.0011871957685798407, 0.010419389232993126, 0.0348057858645916, -0.011515798978507519, -0.027277568355202675, -0.5877317786216736, -0.0351409949362278, -0.02483334206044674, 0.008226568810641766, 0.02145332656800747, 0.022137708961963654, 0.01578272134065628, 0.004570703953504562, -0.021606963127851486, 0.013589899986982346, 0.005391265731304884, 0.026774756610393524, -0.005695048253983259, -0.013122005388140678, 0.0023813750594854355, -0.007500283885747194, 0.023283004760742188, -0.018296781927347183, -0.025699296966195107, 0.013827338814735413, -0.02697029523551464, -0.005227153189480305, -0.023855652660131454, -0.013212790712714195, -0.0027392797637730837, -0.008820166811347008, -0.009518517181277275, 0.009197275154292583, 0.0047278325073421, 0.024945078417658806, -0.012535390444099903, 0.002117747673764825, 0.015545281581580639, -0.007667887955904007, 0.053661249577999115, -0.015056435950100422, -0.023702014237642288, 0.030029069632291794, 0.019986789673566818, 0.048772796988487244, -0.03072742000222206, 0.0021648863330483437, 0.0056077539920806885, -0.0204616691917181, -0.007786607835441828, -0.032626934349536896, -0.0005359839997254312, -0.03544826805591583, -0.0049582882784307, -0.0015171663835644722, 0.0076469373889267445, 0.00884809996932745, 0.02241704985499382, -0.046398404985666275, 0.014441887848079205, 0.00582424271851778, 0.0100841810926795, -0.0195398461073637, 0.00044017902109771967, -0.013261674903333187, 0.01302423607558012, 0.021844401955604553, 0.00787040963768959, -0.017347024753689766, -0.0009104743949137628, -0.01319184061139822, -0.008694463409483433, 0.013729570433497429, 0.030448080971837044, -0.008177683688700199, -0.002603101311251521, 0.008177683688700199, 0.010824432596564293, -0.0010475256713107228, 0.017514629289507866, 0.025322187691926956, 0.006431807763874531, -0.019051000475883484, -0.025140617042779922, 0.024847310036420822, -0.0012256050249561667, 0.010929184965789318, -0.019847121089696884, -0.005293496418744326, 0.0003223323728889227, -0.007681855000555515, -0.03544826805591583, -0.004661489278078079, 0.013101054355502129, 0.0061943684704601765, -0.0025123157538473606, 0.038800351321697235, 0.012116380967199802, -0.02842286415398121, 0.004441509023308754, 0.01620173081755638, 0.0027445172891020775, -0.008010080084204674, 0.0014333643484860659, -0.0020147410687059164, -0.017514629289507866, -0.0020409291610121727, 0.00032451472361572087, -0.004085350316017866, 0.04653807356953621, -0.00696953758597374, -0.0045357863418757915, 0.003016873961314559, -0.0007280303398147225, -0.019051000475883484, -0.019064968451857567, -0.0192046370357275, -0.01615983061492443, -0.01053810864686966, 0.03335321694612503, -0.033576689660549164, 0.004532294347882271, -0.01393907517194748, 0.03826960548758507, -0.005890585947781801, -0.009385829791426659, 0.009986411780118942, 0.016020160168409348, 0.016955949366092682, -0.0034708017483353615, 0.023618211969733238, 0.02044770121574402, -0.003959646914154291, -0.016928015276789665, -0.008561776950955391, 0.0007179915555752814, 0.031453706324100494, 0.035587940365076065, -0.015251974575221539, 0.02495904639363289, -0.004025990609079599, 0.020754976198077202, -0.0009986411314457655, 0.04204069823026657, -0.003980597481131554, -0.032459329813718796, -0.012381753884255886, 0.005757899489253759, -0.014295234344899654, 0.013373411260545254, -0.027836250141263008, -0.005778850056231022, 0.009721038863062859, -0.02562946267426014, 0.01014004833996296, -0.013638784177601337, -0.01439998671412468, -0.004595146048814058, 0.024316562339663506, -0.010719679296016693, 0.013722586445510387, -0.020768942311406136, -0.020810844376683235, 0.010237817652523518, -0.023618211969733238, 0.008317354135215282, -0.011306294240057468, -0.021271755918860435, 0.0060546984896063805, -0.00947661604732275, -0.0350571945309639, -0.0175704974681139, 0.014749161899089813, -0.020489603281021118, -0.02266845665872097, -0.026830624788999557, -0.015112304128706455, 0.021565062925219536, 0.011222491972148418, 0.011718320660293102, -0.028939643874764442, -0.027696579694747925, -0.005852176807820797, -0.0054436419159173965, -0.004190102685242891, 0.0015189122641459107, 0.02128572203218937, 0.008275453001260757, -0.022905895486474037, 0.029610060155391693, 0.03148163855075836, 0.021062249317765236, 0.0017528596799820662, -0.038157869130373, 0.02491714432835579, -0.005705523304641247, 0.023283004760742188, 0.019470011815428734, -0.00780755840241909, 0.026956327259540558, 0.02384168468415737, 0.012277001515030861, -0.009211242198944092, -0.014190481044352055, -0.001889038016088307, 0.01624363102018833, 0.016341401264071465, -0.007570119109004736, -0.005702031310647726, 0.01561511680483818, -0.032291725277900696, 0.01385527290403843, -0.01962364837527275, 0.00498971389606595, -0.0022032957058399916, -0.008477974683046341, -0.010852365754544735, -0.026160208508372307, 0.004273904953151941, 0.02388358674943447, 0.002510569989681244, -0.007255861535668373, -0.008938886225223541, -0.007500283885747194, 0.028827907517552376, -0.0068228840827941895, 0.0018087277421727777, 0.013135972432792187, -0.012612209655344486, 0.0072837951593101025, -0.007056831382215023, -0.009839758276939392, 0.014623458497226238, 0.011431996710598469, -0.019400175660848618, -0.007423465605825186, -0.015461479313671589, 0.0026153225917369127, 0.0009235684992745519, 0.036174554377794266, -0.013149939477443695, 0.013953042216598988, -0.01945604383945465, 0.023953421041369438, 0.000901745050214231, 0.014539656229317188, -0.005813767667859793, 0.013073120266199112, -0.005796308629214764, 0.01141802966594696, 0.03326941654086113, 0.02905137836933136, 0.03307387977838516, 0.0030500455759465694, 0.013282625935971737, -0.02500094659626484, 0.012465556152164936, 0.0016638200031593442, 0.03684496879577637, 0.0016385047929361463, -0.007521234452724457, -0.0005578074487857521, 0.024302596226334572, 0.01840851828455925, 0.029442455619573593, 0.016872147098183632, 0.039973579347133636, 0.01731909066438675, 0.0004884088411927223, 0.011844024062156677, -0.028562534600496292, -0.01870182529091835, -0.004106300882995129, 0.014372052624821663, 0.0021875828970223665, -0.0068228840827941895, -0.009120456874370575, 0.012842665426433086, -0.02391151897609234, 0.008862067013978958, 0.005101450253278017, 0.024470200762152672, 0.019735384732484818, 0.0372360460460186, -0.008450040593743324, -0.021439358592033386, -0.021313656121492386, 0.01649503782391548, -0.012598242610692978, 0.007521234452724457, 0.002835302846506238, -0.01731909066438675, 0.014358085580170155, 0.005995338782668114, 0.025433924049139023, -0.002351695206016302, 0.0070044551976025105, 0.007095240522176027, 0.006005813833326101, -0.02128572203218937, 0.014246349222958088, 0.019358275458216667, -0.00023809386766515672, -0.003119880799204111, -0.02838096208870411, 0.028227325528860092, 0.006204843986779451, 0.005296988412737846, -0.03106262907385826, 0.033381152898073196, 0.01620173081755638, -0.0002710472617764026, -0.0015520838787779212, 0.017891738563776016, -0.007172059267759323, -0.0009139661560766399, -0.029498323798179626, 0.011711337603628635, 0.0033625573851168156, 0.010042279958724976, 0.0066168708726763725, 0.0085757439956069, -0.0024232761934399605, 0.03240346163511276, 0.02738930471241474, -0.011466914787888527, -0.010202900506556034, -0.049275606870651245, 0.007014930248260498, -0.0400853157043457, 0.0032612967770546675, -0.0024581935722380877, -0.01565701700747013, -0.046901218593120575, -0.0196655485779047, -0.027920052409172058, 0.001092918450012803, 0.00832433719187975, -0.023702014237642288, 0.007423465605825186, -0.016844213008880615, 0.0018174570286646485, -0.020936546847224236, 0.0199588555842638, 0.010573025792837143, -0.004179627634584904, -0.008457023650407791, 0.022095808759331703, 0.003421917324885726, 0.00636546453461051, -0.027487074956297874, 0.012318901717662811, 0.0009331707842648029, -0.008617645129561424, 0.0019344307947903872, 0.006700672674924135, -0.0013355952687561512, 0.010510174557566643, 0.007158092223107815, 0.016062060371041298, 0.013659735210239887, 0.011390096507966518, 0.028688237071037292, 0.007042864337563515, 0.01104092039167881, 0.024567969143390656, 0.02863236889243126, -0.005366823170334101, 0.012053528800606728, 0.022766225039958954, 0.012088446877896786, -0.0012622685171663761, -0.003123372560366988, 0.016103962436318398, -0.029023446142673492, -0.0098537253215909, -0.0004670218622777611, -0.02279415912926197, -0.04296252131462097, 0.029917333275079727, -0.011676419526338577, -0.05726473778486252, 0.003676815191283822, 0.015377677045762539, 0.041258543729782104, -0.033241480588912964, -0.023478543385863304, -0.0064178407192230225, 0.010796498507261276, 0.006690197624266148, -0.005174777004867792, -0.007919293828308582, -0.00743044912815094, -0.02183043584227562, -0.021816467866301537, -0.03310181200504303, 0.013925108127295971, -0.021173985674977303, -0.010496207512915134, 0.010174966417253017, -0.049610815942287445, -0.00556236132979393, 0.004979238845407963, 0.00697302957996726, 0.02504284679889679, 0.03452644869685173, -0.027668645605444908, -0.006159450858831406, 0.024861276149749756, -0.012689027935266495, -0.005642671603709459, -0.0166486743837595, -0.02850666642189026, 0.001997282262891531, -0.011760221794247627, -0.0017982524586841464, -0.012856632471084595, -0.019190670922398567, 0.0169419813901186, -0.006323563400655985, -0.006665755063295364, 0.0014787571271881461, 0.0172771904617548, -0.015545281581580639, -0.019386209547519684, 0.010482240468263626, 0.028772039338946342, 0.02065720595419407, -0.013073120266199112, 0.010545091703534126, -0.03868861496448517, -0.015670984983444214, 0.005586803890764713, -0.009504550136625767, 0.004277396481484175, 0.023324904963374138, -0.015461479313671589, -0.0023115400690585375, 0.0063514974899590015, 0.006850818172097206, 0.00138273392803967, 0.020252162590622902, -0.0008594075334258378, 0.02650938369333744, 0.011976710520684719, -0.003610471962019801, 0.003966630436480045, -0.019064968451857567, 0.04427541792392731, -0.0011688640806823969, -0.03894002363085747, 0.02755690924823284, 0.02663508616387844, 0.0361466184258461, 0.02871617116034031, 0.007884376682341099, -0.03307387977838516, -0.012765846215188503, 0.02529425360262394, -0.013827338814735413, 0.012402703985571861, 0.02963799424469471, -0.024721605703234673, -0.020168362185359, -0.010356537066400051, -0.014637425541877747, 0.008114832453429699, -0.02947038970887661, -0.019386209547519684, 0.00204616691917181, 0.0055099851451814175, -0.002753246808424592, -0.03215205669403076, 0.010007361881434917, -0.023199202492833138, -0.0022155167534947395, 0.006526085082441568, 0.012388736940920353, -0.006382923107594252, 0.02116001956164837, -0.011529766023159027, -0.04787890613079071, -0.009064588695764542, -0.013247707858681679, -0.009755956009030342, -0.007625987287610769, 0.023534409701824188, 0.00895285326987505, 0.0007315221009775996, 0.03276660293340683, 0.0042704129591584206, 0.003910762723535299, 0.0005093593499623239, -0.005684572737663984, 0.020349932834506035, 0.008519875817000866, -0.02613227441906929, -0.01014703232795, -0.015894455835223198, 0.02053150348365307, 0.00726284459233284, 0.008827149868011475, -0.039722174406051636, -0.008659545332193375, 0.03877241909503937, -0.03670530021190643, 0.013450229540467262, 0.003456834703683853, -0.06352195888757706, -0.013261674903333187, 0.0035057193599641323, 0.009469632059335709, -0.009497566148638725, -0.025852933526039124, -0.033213548362255096, 0.012751879170536995, 0.005506493616849184, 0.010098148137331009, -0.009448681958019733, 0.008582727052271366, 0.003498735837638378, 0.0009497566497884691, 0.018478352576494217, -0.008938886225223541, -0.022025974467396736, 0.016006192192435265, -0.007067306898534298, 0.017249256372451782, -0.0032787553500384092, -0.0036244390066713095, 0.010614926926791668, -0.001567796804010868, 0.029945267364382744, -0.01452568918466568, 0.030448080971837044, 0.012702994979918003, -0.042264170944690704, -0.013834322802722454, -0.004137726500630379, -0.0348057858645916, -0.02495904639363289, -0.010887283831834793, -0.03081122227013111, 0.023283004760742188, 0.017752068117260933, -0.0075072674080729485, 0.010300668887794018, -0.001029193983413279, 0.019735384732484818, 0.012360802851617336, -0.013589899986982346, 0.02930278517305851, -0.029107246547937393, 0.01719338819384575, 0.0194979440420866, 0.011369145475327969, 0.006442282814532518, -0.027151865884661674, -0.010670795105397701, 0.001743257394991815, 0.011781171895563602, 0.03952663764357567, -0.0199588555842638, 0.013827338814735413, 0.018729759380221367, -0.001595730776898563, -0.005803292151540518, -0.021355556324124336, 0.042431775480508804, 0.020643239840865135, 0.011529766023159027, -0.0323755256831646, 0.010922200977802277, -0.008464007638394833, -0.006285154260694981, 0.003610471962019801, 0.005478559527546167, -0.0006232777959667146, 0.0024285137187689543, -0.011906875297427177, -0.00907855574041605, 0.007612020242959261, 0.047152623534202576, -0.014358085580170155, 0.018771659582853317, -0.01656487211585045, 0.0040888418443500996, -0.040839534252882004, 0.010838399641215801, -0.002521045273169875, 0.01886942982673645, 0.009204259142279625, -0.012863615527749062, 0.029246916994452477, -0.0016385047929361463, -0.00613500876352191, -0.012919483706355095, -0.029749730601906776, 0.051286857575178146, -0.0402529202401638, -0.008973803371191025, -0.025517726317048073, -0.0010030058911070228, 0.028911709785461426, 0.0004059162165503949, -0.002514061750844121, 0.015754787251353264, -0.030615683645009995, 0.015964291989803314, 0.024274662137031555, -0.018981166183948517, 0.013506097719073296, -0.007947227917611599, 0.01204654574394226, -0.01014004833996296, 0.006850818172097206, 0.014043827541172504, 0.019847121089696884, -0.0361466184258461, -0.015307841822504997, -0.03268280252814293, -0.021592997014522552, -0.01068476215004921, 0.01674644462764263, -0.009385829791426659, 0.029107246547937393, 0.043605003505945206, -0.03687290474772453, 0.024819375947117805, -0.019218605011701584, -0.010035295970737934, -0.017221322283148766, 0.018254881724715233, -0.0033555738627910614, -0.006770507898181677, 0.0174447949975729, 0.0025035864673554897, -0.004144710022956133, -0.045057572424411774, 0.0001445803645765409, 0.0036139637231826782, 0.017752068117260933, 0.041007138788700104, 0.02789211831986904, -0.014958666637539864, 0.008310370147228241, -0.005922012031078339, -0.02208184078335762, -0.015335775911808014, -0.009811824187636375, 0.011892908252775669, 0.02588086761534214, -0.01014703232795, 0.005998830311000347, -0.004692914895713329, 0.008827149868011475, 0.005883602425456047, -0.0161877628415823, -0.018855461850762367, 0.008862067013978958, -0.02178853377699852, -0.0008873415645211935, -0.0002140880678780377, -0.025070780888199806, -0.027906084433197975, -0.020796876400709152, -0.01089426688849926, 0.008505908772349358, -0.005422691348940134, 0.00947661604732275, 0.028688237071037292, -0.013764487579464912, 0.013869239948689938, 0.007130158133804798, -0.0192465391010046, -0.0169419813901186, -0.02095051482319832, -0.012479523196816444, -0.02541995607316494, -0.0043786573223769665, 0.037878528237342834, -0.0016018414171412587, -0.02808765508234501, -0.04313012585043907, -0.006257220171391964, -0.01452568918466568, -0.004472934640944004, 0.01595032401382923, 0.008883018046617508, 0.020252162590622902, 0.008135782554745674, 0.01051715761423111, 0.004563720431178808, -0.010133065283298492, 0.024274662137031555, 0.01014703232795, -0.019190670922398567, -0.031621307134628296, -0.01175323873758316, -0.019023066386580467, -0.002341219922527671, -0.027109965682029724, -0.007255861535668373, -0.005991846788674593, 0.011857991106808186, 0.02325507067143917, 0.026411615312099457, 0.006344513967633247, -0.011760221794247627, -0.0007873901631683111, -0.01641123555600643, -0.023408707231283188, 0.0028143522795289755, -0.02153712883591652, -0.034833721816539764, -0.02350647747516632, 0.01477709598839283, -0.02304556593298912, -0.02021026238799095, 0.0013521810760721564, 0.0063514974899590015, -0.011459930799901485, 0.0005167793715372682, -0.019595714285969734, 0.000633753021247685, -0.013897174037992954, -0.0037710925098508596, 0.02367408014833927, -0.028995512053370476, 0.004500868730247021, 0.02141142450273037, 0.005974388215690851, 0.020112494006752968, 0.0039072707295417786, 0.009029671549797058, -0.020168362185359, -0.006484183948487043, 0.0022644014097750187, -0.013128988444805145, 0.020321998745203018, 0.009679137729108334, 0.013708619400858879, -0.016690576449036598, 0.017626365646719933, 0.012856632471084595, 0.002568183932453394, -0.045476581901311874, 0.0192465391010046, 0.02279415912926197, -0.031705111265182495, -0.008031030185520649, 0.0035388909745961428, -0.009923560544848442, 0.015419578179717064, -0.03139783814549446, 0.01229096855968237, -0.014427920803427696, -0.0029103755950927734, -0.004678948316723108, 0.006047714967280626, -0.024819375947117805, -0.015545281581580639, 0.004528802819550037, -0.015587182715535164, 0.013010269030928612, 0.24693672358989716, -0.018394550308585167, 0.018925298005342484, 0.02829716168344021, -0.009679137729108334, 0.0200007576495409, 0.014155563898384571, 0.006358481012284756, -0.01683024689555168, 0.044889967888593674, 0.0021334607154130936, -0.014665359631180763, -0.011515798978507519, -0.016020160168409348, 0.014846931211650372, -0.0050804996863007545, -0.050448838621377945, -0.018296781927347183, -0.01410667970776558, 0.004630063660442829, 0.017472729086875916, -0.0028475241269916296, -0.007667887955904007, 0.002356932731345296, 0.024037223309278488, 0.012256050482392311, 0.007172059267759323, 0.002089813817292452, 0.008484957739710808, 0.006784474942833185, -0.023646146059036255, -0.01287758257240057, 0.00587661936879158, -0.035224799066782, -0.008198634721338749, -0.004864010959863663, 0.030671551823616028, 0.0186599250882864, -0.009651203639805317, 0.01752859726548195, -0.009364879690110683, 0.006620362401008606, 0.010628893971443176, -0.024693671613931656, -0.021397458389401436, 0.0193722415715456, -0.011327244341373444, -0.004022498615086079, 0.007486316841095686, 0.029246916994452477, -0.019986789673566818, -0.02037786692380905, 0.02604847215116024, 0.0181571114808321, -0.014344118535518646, -0.013659735210239887, 0.010761580429971218, -0.008694463409483433, 0.022850027307868004, 0.05335397645831108, 0.005171285010874271, 0.04785097390413284, -0.005576328374445438, 0.003170511219650507, -0.02800385281443596, -0.0027410255279392004, -0.022012006491422653, -0.030839156359434128, -0.0010431610280647874, -0.01565701700747013, 0.0013198823435232043, -0.011704353615641594, -0.01173228770494461, -0.009127440862357616, -0.006229286082088947, -0.041509952396154404, 0.025936735793948174, 0.027417238801717758, 0.04645427316427231, 0.04245970770716667, 0.014455854892730713, 0.00803801417350769, 0.012514440342783928, 0.003070996142923832, -0.009343929588794708, -0.0169419813901186, 0.004144710022956133, -0.009930543601512909, -0.023897552862763405, -0.0032508214935660362, 0.005698539782315493, -0.03114643134176731, 0.0053703151643276215, -0.0040329741314053535, -0.010209883563220501, -0.0037536337040364742, 0.015210073441267014, -0.012367786839604378, -0.0049966974183917046, -0.006204843986779451, -0.0184504184871912, 0.005125892348587513, 0.027403272688388824, 0.01636933535337448, -0.009839758276939392, -0.016634708270430565, -0.01233286876231432, 0.0091623580083251, 0.03226379305124283, -0.03410743549466133, 0.01371560338884592, -0.05318637192249298, 0.0004460713535081595, 0.0036837987136095762, -0.03181684762239456, 0.004158677067607641, -0.004598637577146292, -0.00018200758495368063, -0.022822093218564987, 0.005258578807115555, 0.04195689409971237, -0.018464386463165283, -0.003998056519776583, -0.00374665018171072, -0.0030482998117804527, -0.0021805993746966124, -0.032794538885354996, -0.02817145735025406, 0.028744105249643326, -0.02054547145962715, 0.013701636344194412, -0.021481260657310486, 0.0171514879912138, 0.017710167914628983, -0.024735573679208755, 0.024051189422607422, 0.0008598440326750278, -0.02174663357436657, 0.015852555632591248, -0.005963913165032864, -0.0076469373889267445, 0.011397079564630985, 0.017081651836633682, -0.024945078417658806, 0.0030605208594352007, -0.02095051482319832, -0.002877203980460763, 0.013722586445510387, 0.002704362152144313, -0.007632970344275236, -0.03310181200504303, -0.008533842861652374, 0.01074761338531971, -0.010929184965789318, 0.012654110789299011, 0.010349554009735584, -0.018394550308585167, -0.038409274071455, -0.0023586787283420563, 0.0166486743837595, -0.04329773038625717, 0.0036139637231826782, 0.012989318929612637, -0.02216564305126667, -0.008296403102576733, -0.0394987016916275, -0.17799556255340576, 0.012423655018210411, 0.034582313150167465, -0.020196296274662018, 0.016509005799889565, 0.022012006491422653, 0.029079312458634377, 0.012402703985571861, -0.03156544268131256, 0.0028632369358092546, 0.020503569394350052, 0.01824091374874115, 0.0019117343472316861, -0.0012500473530963063, -0.020685140043497086, -0.0017310362309217453, -0.04441509023308754, 0.01916273683309555, 0.04095127061009407, 0.017933640629053116, 0.01840851828455925, -0.0341353714466095, -0.005628704559057951, 0.018967198207974434, 0.00374665018171072, 0.009553434327244759, -0.02099241502583027, -0.01666264235973358, -0.010265751741826534, -0.031369902193546295, -0.011823073029518127, 0.010342570021748543, 0.03536446765065193, 0.004343739710748196, 0.0053039719350636005, -0.005492526572197676, 0.001593112014234066, 0.014008910395205021, -0.020643239840865135, 0.00400853157043457, -0.0065749697387218475, 0.052124880254268646, 0.003449851181358099, 0.0002116874820785597, -0.006931128446012735, 0.014043827541172504, -0.0063200718723237514, -0.0012849648483097553, -0.0056252130307257175, 0.011711337603628635, 0.02103431522846222, -0.0346381813287735, -0.0016515988390892744, -0.012339852750301361, 0.014972633682191372, 0.011243442073464394, 0.010405422188341618, 0.006183893419802189, -0.0016201731050387025, -0.013680685311555862, -0.010335586965084076, -0.005995338782668114, 0.01912083476781845, 0.019693482667207718, -0.014972633682191372, -0.03662149980664253, -0.012807747349143028, 0.028855841606855392, 0.005660130642354488, 0.012235100381076336, 0.0034044585190713406, 0.0036907822359353304, 0.006026764400303364, 0.015210073441267014, 0.007570119109004736, -0.010733646340668201, -0.00648069242015481, 0.030699485912919044, 0.007514250930398703, 0.00884809996932745, -0.030168740078806877, 0.06804727017879486, 0.006955570541322231, -0.010482240468263626, 0.007091748993843794, 0.0091623580083251, 0.011627535335719585, 0.01006323006004095, -0.036593563854694366, -0.011243442073464394, 0.02879997342824936, -0.015224040485918522, -0.009490583091974258, -0.00810086540877819, -0.006753048859536648, 0.012479523196816444, 0.011613568291068077, 0.005750915966928005, -0.01945604383945465, 0.004542769864201546, 0.007905326783657074, -0.018338683992624283, -0.01369465235620737, -0.0036523728631436825, 0.026285910978913307, 0.03097882680594921, 0.004605621099472046, 0.036425959318876266, 0.030196674168109894, 0.0024512100499123335, -0.0008707557572051883, 0.008282436057925224, 0.02086671255528927, 0.0184504184871912, 0.006676230579614639, -0.0036872904747724533, -0.00012788543244823813, -0.01310803834348917, -0.004748783074319363, -0.005922012031078339, -0.04955494776368141, -0.03536446765065193, 0.003186224028468132, 0.034917522221803665, 0.013031220063567162, -0.014553623273968697, -0.0699467808008194, -0.020880678668618202, 0.021844401955604553, 0.041593752801418304, -0.007535201497375965, 0.011969726532697678, -0.0032263791654258966, 0.044526826590299606, -0.0169419813901186, 0.019092902541160583, 0.008191650733351707, -0.02279415912926197, -0.00038562039844691753, 0.01235381979495287, 0.008338304236531258, 0.016774378716945648, 0.007109207566827536, -0.0093299625441432, -0.014330151490867138, 0.028995512053370476, -0.0004657124518416822, -0.01213034801185131, 0.01062191091477871, -0.02417689375579357, 0.011851007118821144, -0.008589711040258408, -0.0166486743837595, 0.038632746785879135, 0.02321316860616207, 0.006180401425808668, 0.011515798978507519, 0.0002847960568033159, -0.012856632471084595, -0.013080104254186153, 0.0068228840827941895, -0.0030448080506175756, -0.033716361969709396, -0.017374958842992783, 0.013527048751711845, -0.025489792227745056, 0.016020160168409348, 0.009804840199649334, -0.008966820314526558, 0.0053598396480083466, -0.016145862638950348, -0.012682044878602028, -0.008589711040258408, 0.03332528471946716, -0.027864184230566025, -0.008261485956609249, -0.04148201644420624, 0.010363521054387093, -0.011830057017505169, -0.019595714285969734, 0.01620173081755638, -0.004361198749393225, 0.04366087168455124, 0.006274678744375706, -0.039470769464969635, 0.0084709906950593, 0.0045497533865273, 0.005618229508399963, -0.014036844484508038, 0.02854856662452221, 0.005387773737311363, 0.004706881940364838, -0.02325507067143917, -0.011006003245711327, 0.015894455835223198, 0.014050811529159546, -0.024554003030061722, 0.011334228329360485, 0.005579820368438959, 0.03081122227013111, -0.04399608075618744, -0.0029103755950927734, -0.0015870013739913702, -0.016299499198794365, 0.02208184078335762, -0.015936357900500298, -0.0014743923675268888, 0.007213960401713848, -0.020489603281021118, -0.0045183273032307625, 0.02428862825036049, 0.012395720928907394, -0.0009611048153601587, -0.002356932731345296, -0.013359444215893745, -0.03419123962521553, 0.008191650733351707, 0.014344118535518646, -0.0019536353647708893, -0.0387444831430912, -0.021062249317765236, 0.01507040299475193, 0.01089426688849926, -0.0023237611167132854, -0.020936546847224236, 0.006588936783373356, -0.024400364607572556, -0.03368842601776123, -0.07760070264339447, -0.010461290366947651, 0.01736099272966385, 0.012849648483097553, 0.012179232202470303, -0.009378846734762192, 0.01736099272966385, -0.0021491735242307186, 0.008114832453429699, -0.022221511229872704, -0.02575516514480114, 0.013359444215893745, -0.015587182715535164, -0.009958477690815926, -0.011802122928202152, -0.002109018387272954, 0.010321619920432568, 0.016341401264071465, -0.011990677565336227, 0.004012023564428091, 0.030503949150443077, 0.0008087771129794419, 0.0031582899391651154, 0.0021561570465564728, -0.009113473817706108, 0.012737912125885487, 0.007660904433578253, 0.03114643134176731, -0.012821714393794537, -0.025601528584957123, 0.006190876942127943, 0.001162753556855023, 0.004067891277372837, -0.008617645129561424, 0.01636933535337448, -0.010580009780824184, -0.002344711683690548, 0.002590880263596773, 0.007702805567532778, 0.019819187000393867, -0.029330719262361526, -0.015768753364682198, 0.040308788418769836, -0.02491714432835579, -0.0024826359003782272, 0.0036279307678341866, -0.004829093348234892, -0.013729570433497429, 0.010468273423612118, 0.019232571125030518, 0.0343867763876915, 0.016760410740971565, -0.01824091374874115, -0.03055981546640396, -0.01281473133713007, -0.05234834924340248, 0.01624363102018833, 0.012723945081233978, -0.018799593672156334, -0.0020060117822140455, 0.03022460825741291, -0.021020349115133286, 0.03402363508939743, -0.0077726407907903194, -0.028660302981734276, 0.0012631413992494345, -0.014162546955049038, -0.024302596226334572, -0.014267300255596638, -0.024679705500602722, -0.006145484279841185, 0.011327244341373444, 0.005077007692307234, -0.015503380447626114, 0.01561511680483818, 0.005174777004867792, -0.021509194746613503, 0.009197275154292583, -0.019134802743792534, 0.024302596226334572, 0.012549357488751411, 0.004528802819550037, -0.0350571945309639, 0.01886942982673645, 0.02141142450273037, 0.023324904963374138, -0.022277379408478737, -0.009721038863062859, -0.010649845004081726, 0.0067146397195756435, -0.0385768786072731, -0.016928015276789665, 0.018422484397888184, 0.004291363526135683, 0.012318901717662811, 0.01386225689202547, 0.0004406154912430793, 0.0034742935094982386, 0.008233551867306232, 0.024693671613931656, 0.00700096320360899, -0.002224246272817254, -0.001755478442646563, -0.023743916302919388, -0.02533615566790104, 0.009804840199649334, -0.02796195261180401, -0.0334649533033371, 0.0032927223946899176, 0.00371522456407547, -0.030755354091525078, 0.01218621525913477, -0.02132762223482132, 0.024148959666490555, -0.006093107629567385, -0.0015808908501639962, 0.015251974575221539, -0.007821525447070599, -0.029442455619573593, 0.014721227809786797, 0.02470763958990574, 0.016928015276789665, 0.01066381111741066, -0.006700672674924135, 0.029023446142673492, -0.0010955373290926218, -0.005621721036732197, -0.023785816505551338, -0.0007969924481585622, 0.004259937908500433, 0.004417066462337971, 0.012751879170536995, -0.014958666637539864, -0.030280476436018944, -0.019930921494960785, 0.0014534419169649482, 0.02474953979253769, -0.01212336402386427, -0.008219584822654724, 0.08385792374610901, -0.0019449060782790184, -0.018687859177589417, -0.012661093845963478, 0.0008502416894771159, 0.007779624313116074, 0.010314635932445526, 0.004553244914859533, -0.009958477690815926, -0.01097806915640831, 0.0059569296427071095, -0.0035249239299446344, -0.012214149348437786, -0.016928015276789665, 0.0033887457102537155, 0.0010379233863204718, -0.013506097719073296, 0.051119253039360046, -0.002456447808071971, 0.01515420526266098, 0.05064437538385391, 0.023562343791127205, 0.0019763316959142685, 0.002281860215589404, -0.010328602977097034, -0.013848289847373962, 0.010580009780824184, 0.01748669520020485, -0.01523800753057003, -0.008603678084909916, 0.00026777375023812056, 0.016634708270430565, -0.014008910395205021, -0.024428298696875572, -0.018645957112312317, 0.021355556324124336, -0.008687479421496391, -0.01112472265958786, 0.012458572164177895, 0.01582462154328823, -0.012982334941625595, -0.0020025200210511684, -0.03477785363793373, -0.024232761934399605, 0.010810465551912785, 0.0040993173606693745, 0.008966820314526558, -0.010524141602218151, -0.03123023360967636], "a483c1ee-77b4-48a7-be28-b9a92ec5fb65": [0.0012626415118575096, 0.012732635252177715, 0.023710934445261955, -0.004238500725477934, -0.0050916834734380245, 0.032838959246873856, -0.020462673157453537, 0.004498910158872604, 0.038239020854234695, -0.013383657671511173, 0.006109334994107485, 0.004019209183752537, -0.00884020421653986, -0.014048386365175247, -0.006140172481536865, -0.018160108476877213, 0.015802720561623573, 0.0008823071839287877, 0.015857543796300888, -0.030728274956345558, 0.002783979056403041, 0.0003826900210697204, -0.02006520703434944, -0.02150431089103222, -0.02329976297914982, -0.004365278873592615, 0.005002595949918032, -0.010580833069980145, -0.011019417084753513, -0.007503894157707691, 0.009436403401196003, -0.002037015976384282, -0.01476108469069004, -0.014555498957633972, 0.005201329477131367, -0.028919117525219917, 0.006664417218416929, -0.03785526007413864, 0.01515855174511671, -0.013945593498647213, -0.0016326965996995568, 0.0035703459288924932, 0.008093240670859814, -0.008531824685633183, 0.003532655071467161, 0.0015453224768862128, -0.03423694521188736, 0.015007788315415382, -0.006729519460350275, 0.01666618324816227, 0.016405774280428886, 0.0014913561753928661, -0.04246038943529129, -0.00619156938046217, -0.010875506326556206, -0.0010956027545034885, -0.038814663887023926, 0.026205379515886307, -0.0010741875739768147, -0.0015607414534315467, 0.01994185522198677, 0.018831690773367882, -0.009429550729691982, 0.007044751662760973, 0.01323974784463644, -0.010848095640540123, -0.0027874053921550512, 2.1629375623888336e-05, -0.0036697126924991608, -0.003460699925199151, 0.033606480807065964, 0.03716997429728508, -0.01228034496307373, -0.016721006482839584, 0.009265081956982613, 0.013157512992620468, -0.022669298574328423, 0.0012763473205268383, -0.013390510343015194, -0.0018571281107142568, 0.007013913709670305, -0.013184924609959126, 0.009326757863163948, -0.005996262189000845, 0.004454366397112608, 0.002713737078011036, -0.0035977575462311506, 0.006517080590128899, 0.010327276773750782, -0.0015795868821442127, 0.01780376024544239, 0.019064687192440033, 0.010149102658033371, -0.001826290157623589, -0.007969889789819717, -0.01001889817416668, -0.013328834436833858, 0.022888589650392532, -0.007709480356425047, -0.017392586916685104, -0.00021736451890319586, 0.0164605975151062, -0.02217589132487774, -0.0019205171847715974, -0.032263319939374924, -0.01480220165103674, 0.04564012214541435, -0.007716333027929068, -0.01621389389038086, -0.008079535327851772, -0.012917662039399147, 0.04070605710148811, -0.006551344878971577, -0.023011941462755203, -0.025862736627459526, 0.006369743961840868, 0.0025852457620203495, -0.022943412885069847, -0.01711847260594368, -0.01199252437800169, 0.011601910926401615, 0.018050463870167732, 0.01746111549437046, -0.028453120961785316, 0.003957533277571201, 0.004180251620709896, -0.011615617200732231, -0.008250856772065163, -0.03185214474797249, -0.04399543255567551, 0.03253743425011635, -0.0031985777895897627, 0.028946528211236, 0.035305991768836975, -0.007908213883638382, 0.0023351158015429974, -0.005444606300443411, 0.023519054055213928, -0.03549787402153015, -0.009922957979142666, 0.021819543093442917, 0.018735749647021294, -0.004608556162565947, -0.004670231603085995, -0.008319385349750519, 0.01206105388700962, 0.007620392832905054, 0.017748937010765076, 0.0038684457540512085, -0.007469629868865013, 0.02342311479151249, -0.004516042303293943, 0.008799086324870586, -0.012294051237404346, 0.006119614001363516, 0.03634762763977051, 0.030837921425700188, 0.016981415450572968, -0.0027736995834857225, 0.005293842870742083, 0.01689918152987957, 0.044790368527173996, 0.01824234426021576, -0.017968228086829185, -0.019777387380599976, 0.029110997915267944, -0.0012095317943021655, -0.0035909046418964863, -0.003304797224700451, -0.008449590764939785, 0.0034230093006044626, -0.015295608900487423, -0.03662174567580223, 0.0032311289105564356, -0.01961291767656803, 0.04224110022187233, -0.003196864388883114, 0.008011006750166416, -0.015706781297922134, -0.0340176522731781, -0.019283980131149292, -0.00106990453787148, 0.00375879998318851, 0.023244939744472504, -0.012862839736044407, -0.03960959613323212, 0.007435365580022335, -0.0034915378782898188, 0.004128855187445879, 0.0035429345443844795, 0.006746651604771614, 0.030947566032409668, 0.009367874823510647, 0.007051604799926281, -0.6004211902618408, -0.026753610000014305, -0.00591402780264616, -0.009354169480502605, 0.04163804650306702, 0.014226560480892658, 0.023614995181560516, -0.0019033850403502584, -0.032592255622148514, 0.020517496392130852, -0.011711557395756245, 0.037142563611269, 0.01035468839108944, -0.01913321763277054, 0.0162275992333889, -0.03601869195699692, 0.01813269779086113, -0.02376575767993927, 0.003532655071467161, 0.010573980398476124, 0.007428512442857027, -0.008353650569915771, -0.024409927427768707, 0.016200188547372818, 0.015131140127778053, -0.005619354546070099, 0.003885578131303191, -0.007120133377611637, -1.505757882114267e-05, 0.006654138211160898, -0.017159590497612953, 0.007551864255219698, -0.002084986073896289, -0.002347108442336321, 0.049285851418972015, 0.009080054238438606, -0.0236424058675766, 0.007346278056502342, 0.0004355856217443943, 0.07061198353767395, -0.016035718843340874, -0.0013937026960775256, 0.0018931056838482618, -0.011108504608273506, 0.004468072205781937, -0.024588102474808693, 0.010279307141900063, -0.02375205233693123, -0.00035506440326571465, 0.022107362747192383, 0.011218150146305561, -0.011526529677212238, 0.016625065356492996, 0.009470668621361256, 0.013938739895820618, -0.0015838699182495475, 0.011533382348716259, -0.014062091708183289, 0.017858583480119705, 0.02162766270339489, -0.012191258370876312, 0.01755705662071705, -0.002763420343399048, -0.02320382185280323, 0.017995640635490417, -0.025944970548152924, 0.0022528814151883125, -0.024601807817816734, 0.008977261371910572, -0.013918181881308556, 0.007695774547755718, -0.013102689757943153, -0.004694216884672642, -0.016816945746541023, 0.015953484922647476, 0.010848095640540123, -0.00945696234703064, -0.03489482030272484, -0.005006022285670042, 0.019311390817165375, -0.010258748196065426, 0.024862216785550117, -0.01598089560866356, -0.007216073572635651, -0.0017423424869775772, -0.007736891508102417, -0.0355801060795784, -0.013883917592465878, 0.004269338678568602, -0.012890251353383064, -0.004402969963848591, 0.02613685093820095, 0.00017442698299419135, -0.0233271736651659, 0.004755892790853977, 0.03286636993288994, -0.007236632052809, 0.009429550729691982, -0.012622988782823086, 0.0007409667014144361, -0.01961291767656803, 0.027109958231449127, 0.002890198491513729, 0.006489668972790241, 0.050300076603889465, -0.02139466442167759, -0.004632540978491306, -0.007373689673841, 0.03749890998005867, -0.03399024158716202, 0.008031564764678478, 0.0021843528375029564, -0.01121129747480154, -0.008134358562529087, 0.010436923243105412, -0.04133652150630951, 0.004406396299600601, 0.01644689030945301, 0.027178486809134483, 0.004988890141248703, 0.03108462505042553, 0.0013286004541441798, 0.0052835638634860516, 0.01312324870377779, 0.019626623019576073, 0.024848511442542076, 0.0032653931993991137, -0.010615097358822823, -0.0045845708809792995, 0.008189180865883827, -0.01736517623066902, 0.029193231835961342, 0.02039414457976818, -0.02693178504705429, 0.014843319542706013, -0.009977780282497406, 0.007270896341651678, 0.010012044571340084, 0.03423694521188736, -0.019092099741101265, -0.001966773997992277, -0.0068151806481182575, -0.005643339361995459, -0.011615617200732231, 0.01710476726293564, -0.019325098022818565, -0.03388059511780739, -0.008881321176886559, -0.025698266923427582, 0.0019102378282696009, 0.014062091708183289, -0.002249455079436302, -0.009785899892449379, 0.01031357143074274, 0.006328626535832882, 0.000923424435313791, 0.009086906909942627, -0.03579939901828766, -0.004975184798240662, -0.016049424186348915, 0.029933342710137367, 0.016296127811074257, -0.016625065356492996, -0.011074240319430828, -0.01724182441830635, 0.004988890141248703, 0.004745613317936659, 0.006959090940654278, 0.0008339087944477797, -0.0326196663081646, -0.018091579899191856, -0.007702627219259739, 0.013493303209543228, 0.004128855187445879, 0.004077458288520575, -0.005448032636195421, -0.01609054207801819, -0.0043515730649232864, 0.020229676738381386, -0.009477521292865276, -0.007572422735393047, 0.010957741178572178, -0.000770519720390439, 0.004457792732864618, 0.02815159596502781, 0.006835739128291607, 0.006434846203774214, 0.005307548679411411, -0.03673138841986656, 0.03039933741092682, -0.01700882613658905, 0.015144845470786095, 0.022354066371917725, 0.001391132827848196, 0.017036238685250282, 0.009785899892449379, -0.01879057288169861, 0.025876441970467567, -0.0020267367362976074, -0.008634617552161217, 0.00442010210826993, 0.01199252437800169, -0.012855986133217812, -0.03516893461346626, 0.03168767690658569, -0.05057419091463089, -0.0018828264437615871, -0.011142768897116184, 0.009319905191659927, 0.0023710934910923243, -0.0001890964194899425, -0.04054158553481102, -0.02172360196709633, -0.011526529677212238, 0.016954002901911736, -0.004344720393419266, 0.008360503241419792, -0.00026319309836253524, -0.0057906764559447765, 0.018091579899191856, -0.015021493658423424, -0.013712595216929913, 0.0076409513130784035, -0.0411994606256485, 0.008942997083067894, 0.011718410067260265, -0.0117800859734416, -0.01164988148957491, -0.016022013500332832, -0.021298723295331, -0.009607725776731968, -0.01746111549437046, -0.007654657121747732, 0.013465892523527145, 0.039143599569797516, -0.020983491092920303, 0.01972256414592266, -0.023025646805763245, 0.01644689030945301, 0.007867095991969109, -0.001105882111005485, -0.002748001366853714, -0.003738241270184517, -0.0010227910242974758, 0.003458986757323146, 0.011410030536353588, 0.023381996899843216, 0.04122687503695488, -0.006575330160558224, 0.013945593498647213, -0.03207143768668175, -0.002162080956622958, -0.0006141886115074158, 0.00515335937961936, 0.019955560564994812, -0.001559884869493544, -0.00136629119515419, 0.009710518643260002, 0.01836569420993328, 0.028782060369849205, 0.0061161876656115055, 0.018310872837901115, -0.003186585148796439, 0.008614059537649155, 0.0009080054587684572, -0.04898432269692421, -0.005547399166971445, -0.026849549263715744, 0.0020490086171776056, 0.009114318527281284, -0.013630361296236515, -0.007551864255219698, 0.00693167932331562, 0.0067911953665316105, 0.01283542811870575, 0.002857647370547056, 0.003693697741255164, 0.000804784067440778, 0.038814663887023926, -0.006736372597515583, -0.03119426965713501, -0.023368291556835175, 0.0236424058675766, -0.012760045938193798, 0.01610424742102623, 0.02839829958975315, 5.089461410534568e-06, 0.009155436418950558, 0.014555498957633972, 0.011560793966054916, -0.00017035809287335724, 0.024684041738510132, 0.023587582632899284, -0.014514381065964699, -0.028124183416366577, 0.009045789949595928, 0.009402139112353325, 0.0045845708809792995, -0.02376575767993927, 0.0006964230560697615, 0.01243796106427908, 4.711349174613133e-05, -0.006941958796232939, -0.018310872837901115, 0.033743537962436676, 0.0135755380615592, -0.02151801623404026, 0.013726301491260529, -0.011163326911628246, -0.012451667338609695, -0.0036662861239165068, -0.03176991268992424, -0.012492784298956394, -0.0005679316818714142, 0.001052772393450141, -0.004296750295907259, -0.002470460021868348, 0.007250337861478329, 0.02025708742439747, 0.014445852488279343, -0.020325616002082825, -0.02366981841623783, -0.04314567893743515, 0.022326653823256493, -0.020407849922776222, 0.0037519470788538456, 0.0020113177597522736, -0.00346583966165781, -0.04424213618040085, -0.028864294290542603, -0.03656692057847977, -0.006201848387718201, -0.004468072205781937, -0.02974146232008934, 0.012705223634839058, -0.03163285553455353, 0.025095215067267418, -0.018447929993271828, 0.017269235104322433, -0.013274012133479118, 0.0030204029753804207, -0.001495639211498201, 0.01182805560529232, -0.027301838621497154, 0.016392068937420845, -0.02209365740418434, 0.0038376080337911844, 0.025478975847363472, -0.0008960129343904555, 0.015309314243495464, 0.022683003917336464, 0.022559652104973793, -0.010875506326556206, -0.00946381501853466, 0.008045271039009094, -0.006626726593822241, 0.005828367080539465, 0.01903727650642395, 0.02250482887029648, 0.02454698458313942, 0.019763680174946785, 0.040596410632133484, -0.006750078406184912, 0.008511265739798546, 0.015843838453292847, 0.03420953452587128, 0.014007269404828548, -0.00868258811533451, 0.018872806802392006, -0.0030529540963470936, -0.0020661407615989447, 0.010409511625766754, 0.0014373897574841976, -0.04303603246808052, 0.012746340595185757, 0.019873326644301414, -0.04739445820450783, 0.007551864255219698, 0.03253743425011635, 0.005797529127448797, -0.01836569420993328, 0.005694736260920763, -0.009635137394070625, -0.004683937411755323, -0.006009967997670174, -0.011636175215244293, -0.010697332210838795, 0.0021466619800776243, -0.026082027703523636, -0.03377094864845276, -0.028590179979801178, -0.019900739192962646, -0.01894133724272251, 0.00013941309589426965, 0.008634617552161217, -0.040377117693424225, -0.014034680090844631, 0.0013294570380821824, -0.005149932578206062, 0.020586024969816208, 0.02883688174188137, -0.011437442153692245, -0.002903904300183058, 0.014994082041084766, -0.018996158614754677, -0.0029484478291124105, -0.00940899271517992, -0.02262818068265915, -0.005896895658224821, -0.0051019624806940556, 0.0011581352446228266, -0.005269858054816723, -0.0009268508292734623, 0.013102689757943153, -0.005071124993264675, 0.009765341877937317, 0.011238709092140198, 0.005934586748480797, -0.019873326644301414, 0.00325340055860579, 0.022450005635619164, 0.01643318496644497, -0.0029792857822030783, -0.011266120709478855, 0.017282942309975624, -0.018187521025538445, 0.014569204300642014, -0.01724182441830635, -0.004296750295907259, 0.006842591799795628, 0.01250649057328701, 0.006941958796232939, 0.009114318527281284, -0.0028439415618777275, 0.018626105040311813, -0.005454885773360729, 0.015103728510439396, -0.016063129529356956, -0.0031060639303177595, -0.0029827123507857323, -0.013726301491260529, 0.018406812101602554, 0.016364656388759613, 0.015350432135164738, 0.01789969950914383, -0.019009865820407867, 0.02206624485552311, 0.015473783016204834, 0.012198111042380333, 0.009676254354417324, -0.010519157163798809, -0.026095733046531677, -0.0109234768897295, 0.0304267480969429, -0.005386356730014086, 0.034072477370500565, 0.0026572009082883596, -0.01295877993106842, -0.012849133461713791, -0.01210217084735632, 0.016076836735010147, 0.031495798379182816, -0.0032088570296764374, -0.02116166613996029, 0.011629322543740273, 0.002004464855417609, 0.0032602534629404545, -0.016282422468066216, -0.005372650921344757, -0.026561729609966278, 0.00577011751011014, -0.005201329477131367, -0.0005863488186150789, 0.003991797566413879, 0.021463192999362946, -0.01598089560866356, -0.031166858971118927, 0.004430381115525961, -0.004903229419142008, -0.012753193266689777, -0.020572319626808167, -0.009361022152006626, 0.005030007567256689, 0.010046309791505337, 0.042295921593904495, 0.00815491657704115, -0.019297685474157333, 0.003162600100040436, -0.009223964996635914, 0.00991610437631607, 0.017872288823127747, -0.0062840827740728855, -0.0037656528875231743, -0.009100613184273243, 0.0013217475498095155, 0.020695671439170837, -0.014774790965020657, -0.02297082543373108, 0.003004983998835087, 0.039938535541296005, -0.007565570063889027, -0.0036662861239165068, 0.01905098184943199, -0.05811234936118126, 0.013507009483873844, 0.008826497942209244, 0.001668674172833562, -0.0074490709230303764, -0.014898141846060753, -0.0198185034096241, 0.004755892790853977, 0.00026597705436870456, 0.03675880283117294, -0.0027445750311017036, 0.039828889071941376, -0.0069556646049022675, -0.004300176631659269, -0.0027377221267670393, 0.0005944865988567472, -0.016488008201122284, 0.009587166830897331, -0.010587685741484165, 0.018201226368546486, 0.009313052520155907, 0.00036577199352905154, 0.006887135561555624, 0.017872288823127747, -0.006167584098875523, 0.010937182232737541, 0.02218959666788578, -0.00990925170481205, -0.009703665971755981, -0.007956183515489101, 0.003340774681419134, -0.026273908093571663, -0.012047347612679005, -0.022354066371917725, -0.019188039004802704, 0.007462776731699705, 0.03681362420320511, 0.008353650569915771, 0.02476627752184868, -0.013020455837249756, 0.0029655799735337496, -0.009100613184273243, -0.02003779634833336, 0.03637504205107689, 0.002174073364585638, 0.004629114642739296, 0.02963181585073471, 0.002818243345245719, -0.022148480638861656, -0.026849549263715744, -0.005554252304136753, -0.008339944295585155, 0.007627245970070362, 0.05361686646938324, -0.008298827335238457, -0.017543351277709007, 0.036429863423109055, 0.0056159282103180885, -0.009415845386683941, -0.01109479833394289, 0.022833766415715218, 0.007716333027929068, 0.014966671355068684, -0.011478559114038944, 0.012492784298956394, 0.008223445154726505, 0.007462776731699705, -0.012047347612679005, -0.014966671355068684, 0.02938511222600937, -0.0014887863071635365, -0.026219084858894348, 0.009230817668139935, 0.008065829984843731, 0.03670397773385048, 0.013184924609959126, -0.00707216328009963, -0.009731077589094639, -0.010882359929382801, -0.02680843323469162, 0.024012461304664612, -0.010704184882342815, 0.027329251170158386, 0.009093760512769222, -0.004152840003371239, 0.009868134744465351, -0.01983220875263214, -0.0036799919325858355, -0.013212336227297783, -0.01983220875263214, 0.045557890087366104, -0.010601392015814781, -0.016063129529356956, -0.018982453271746635, 0.014706261456012726, 0.02701401896774769, 0.0233271736651659, 0.015268197283148766, -0.016282422468066216, -0.019654035568237305, -0.014939259737730026, 0.013328834436833858, -0.018639810383319855, 0.007168103475123644, -0.005300696007907391, 0.005393209867179394, -0.0019753400702029467, -0.01492555346339941, 0.012883397750556469, 0.011444294825196266, -0.03522375971078873, -0.024163223803043365, -0.012170699425041676, -0.02173730731010437, 0.017063649371266365, -0.012170699425041676, -0.008634617552161217, -0.0005075407680124044, 0.02905617468059063, -0.042871564626693726, 0.012465372681617737, -0.013534421101212502, -0.009237670339643955, 0.0009645416284911335, 0.017611879855394363, -0.017077354714274406, -0.006157305091619492, 0.011341501958668232, 0.01757076196372509, -0.01992814987897873, -0.015816427767276764, 0.040020767599344254, 0.023806875571608543, 0.002439622301608324, 0.029988164082169533, 0.030783098191022873, -0.003222562838345766, -0.00013866357039660215, -0.0005585090257227421, -0.025931265205144882, -0.023148998618125916, -0.029110997915267944, -0.023176411166787148, 0.023025646805763245, -0.022710416465997696, 0.010457481257617474, -0.00459142355248332, -0.002386512467637658, 0.019969267770648003, -0.012986191548407078, -0.028316063806414604, 0.031166858971118927, 0.009388433769345284, -0.007565570063889027, -0.018489046022295952, -0.00517734419554472, -0.008984114043414593, -0.01927027478814125, -0.029001351445913315, 0.025054097175598145, -0.008990966714918613, -0.012533901259303093, 0.02409469522535801, -0.019311390817165375, 0.01503519993275404, -0.008367355912923813, 0.013787977397441864, -0.024533279240131378, -0.047257401049137115, -0.013993563130497932, -0.01666618324816227, -0.019626623019576073, 0.003813622985035181, -0.01691288687288761, -0.028206419199705124, -0.031029801815748215, -0.027411485090851784, -0.023464230820536613, -0.009189700707793236, -0.019914444535970688, 0.005513134878128767, 0.02521856687963009, -0.010107984766364098, 0.011314090341329575, 0.0014356765896081924, 0.007901360280811787, 0.017817465588450432, 0.006849444936960936, -0.014349912293255329, -0.03031710349023342, -0.010950888507068157, -0.0035429345443844795, 0.003078652545809746, -0.024355104193091393, -0.02164136804640293, -0.014843319542706013, 0.019681446254253387, 0.02837088704109192, 0.026177968829870224, -0.005787249654531479, -0.011951407417654991, 3.182837463100441e-05, -0.0011469993041828275, 0.00794247817248106, -0.012622988782823086, -0.003584051737561822, -0.03470294177532196, -0.004166545812040567, 0.011499118059873581, -0.008360503241419792, -0.013020455837249756, 4.4670814531855285e-06, 0.006777489557862282, 0.004324161913245916, 0.0007867952808737755, -0.048271626234054565, 0.004152840003371239, -0.007209220435470343, -0.0032979443203657866, 0.01724182441830635, -0.030947566032409668, 0.01532302051782608, 0.015350432135164738, 0.01148541271686554, -0.0030872186180204153, -0.008778528310358524, 0.017625585198402405, -0.007154397666454315, -0.00957346148788929, 0.012581871822476387, -0.0018896792316809297, 0.005160212051123381, -0.0024824526626616716, 0.0008651749812997878, -0.021024608984589577, 0.01059453934431076, 0.012472225353121758, -0.0001293479435844347, -0.030563805252313614, 0.011060534045100212, 0.028206419199705124, -0.023930227383971214, 0.014377323910593987, -0.0004056043107993901, -0.028233829885721207, 0.0031214829068630934, -0.0396370068192482, 0.02297082543373108, -0.04257003590464592, 0.007058457471430302, -0.008874468505382538, -0.016611360013484955, -0.05561790242791176, -0.018763162195682526, -0.005650192499160767, -0.008716852404177189, 0.02443733997642994, 0.26161521673202515, -0.03415470942854881, -0.0071406918577849865, 0.011197592131793499, -0.016954002901911736, -0.013541273772716522, 0.010889212600886822, 0.026781020686030388, -0.005934586748480797, 0.03886948525905609, 0.0016207040753215551, -0.0029998444952070713, 0.001732919830828905, -0.010731596499681473, 0.013349393382668495, -0.03286636993288994, -0.05101277306675911, 0.001062195049598813, -0.015336725860834122, -0.007195515092462301, 0.024135813117027283, -0.0031249092426151037, 0.009278787299990654, 0.012986191548407078, 0.022669298574328423, -0.00318144541233778, -0.02850794419646263, 0.026273908093571663, 0.004474924877285957, 0.013602949678897858, -0.02086014114320278, -0.0033030840568244457, 0.013548126444220543, -0.006160731427371502, -0.01813269779086113, -0.004128855187445879, 0.017652995884418488, 0.03719738498330116, 0.02398504875600338, 0.009395286440849304, 0.008744264021515846, -0.021326135843992233, -0.005482296925038099, -0.011129062622785568, -0.021380959078669548, 0.0031728793401271105, -0.01108794566243887, -0.029549581930041313, 0.006907694507390261, 0.005300696007907391, 0.002992991590872407, -0.00243619573302567, 0.021846953779459, 0.03738926723599434, 0.01519966870546341, -0.0073325722478330135, 0.030481571331620216, -0.0038239022251218557, 0.0056159282103180885, 0.031112035736441612, 0.008346796967089176, 0.04517412930727005, -0.026890667155385017, 0.009491226635873318, -0.00990925170481205, -0.006184716243296862, -0.017858583480119705, -0.0255886223167181, 0.01961291767656803, -0.015432666055858135, 0.01487073116004467, -0.013424774631857872, 0.007709480356425047, 0.010060015134513378, 0.019174333661794662, -0.016501713544130325, 0.03253743425011635, 0.01800934597849846, 0.03423694521188736, 0.02927546575665474, -0.004745613317936659, 0.01880427822470665, 0.011108504608273506, 0.006386876106262207, 0.009491226635873318, -0.045886825770139694, 0.015062611550092697, -0.015240785665810108, -0.001455378602258861, -0.026109440252184868, 0.005828367080539465, -0.022587064653635025, 0.008189180865883827, -0.02488962933421135, 0.021792130544781685, 0.026082027703523636, 0.002715450245887041, 0.0011812637094408274, 0.007873949594795704, 0.016748417168855667, -0.016926592215895653, 0.011512823402881622, 0.005413768347352743, 0.031578030437231064, -0.023450525477528572, -0.012547607533633709, 0.0012112449621781707, 0.008209739811718464, 0.003078652545809746, -0.011615617200732231, 0.01657024212181568, -0.06260783225297928, -0.007668362930417061, 0.002694891532883048, -0.0040671792812645435, 0.01644689030945301, -0.0003897570422850549, -0.0082714157178998, -0.0165428314357996, -0.00228029303252697, 0.025629738345742226, -0.016858063638210297, 0.0022717267274856567, 0.004673658404499292, 0.0026537743397057056, -0.008614059537649155, -0.014610321260988712, -0.006164157763123512, 0.01328771747648716, -0.03933548182249069, 0.03445623815059662, -0.003912989515811205, 0.0235601719468832, 0.018160108476877213, 0.0126778120175004, 0.029988164082169533, 0.008771675638854504, 0.0002858932130038738, 0.017049944028258324, 0.003515522927045822, 0.008524972014129162, 0.010217631235718727, 0.03344201296567917, -0.03018004447221756, -0.0009379867697134614, -0.01328771747648716, 0.0007114136824384332, 0.0019119511125609279, 0.010183366946876049, -0.008689440786838531, -0.050080783665180206, 0.02094237506389618, 0.0012403697473928332, -0.004594850353896618, 0.01206105388700962, 0.008072682656347752, -0.006451978348195553, -0.05572754889726639, 0.024862216785550117, 0.005711868405342102, -0.04528377205133438, -0.008463296107947826, 0.019558094441890717, -0.012033642269670963, -0.012170699425041676, -0.026397259905934334, -0.174775630235672, -0.006023673806339502, 0.031358737498521805, -0.025876441970467567, 0.0008767392137087882, 0.008250856772065163, 0.013870211318135262, -0.00399522390216589, -0.014911848120391369, -0.003865019418299198, 0.033606480807065964, 0.006414287723600864, 0.0026743330527096987, 0.0010210778564214706, -0.015391549095511436, -0.012472225353121758, -0.06622614711523056, 0.010964593850076199, 0.036320216953754425, 0.020078912377357483, 0.033496834337711334, -0.029083585366606712, 0.015501194633543491, 0.017872288823127747, -0.008415325544774532, 0.016625065356492996, -0.015693075954914093, 0.018214931711554527, -0.010683625936508179, -0.021449487656354904, -0.013801682740449905, -0.006565050687640905, 0.021846953779459, -0.009395286440849304, -0.01036154106259346, -0.011355208232998848, -0.017296647652983665, 0.002676046220585704, -0.00500944908708334, 0.0091280248016119, -0.015953484922647476, 0.03278413787484169, -0.019201746210455894, 0.009045789949595928, -0.01080697774887085, 0.020188558846712112, 0.022559652104973793, -0.014706261456012726, -0.00896355602890253, 0.008497560396790504, 0.001111878314986825, -0.03708773851394653, 0.0005525127635337412, 0.0028216696809977293, -0.0006989928660914302, 0.004752466455101967, 0.005489150062203407, 0.002573253121227026, -0.014199149794876575, -0.003638874739408493, -0.0054411799646914005, -0.02276523783802986, 0.01610424742102623, 0.00990239903330803, -0.012465372681617737, -0.018269754946231842, -0.011629322543740273, 0.019626623019576073, 0.002299138344824314, 0.01632354035973549, 0.025273390114307404, 0.006866577081382275, -0.00962143111974001, -0.025698266923427582, 0.003943827468901873, -0.016816945746541023, -0.030783098191022873, 0.013822241686284542, 0.011122209951281548, -0.016515420749783516, -0.016707301139831543, 0.0529041662812233, -0.01030671875923872, -0.0012095317943021655, -0.001529903500340879, 0.027521131560206413, 0.020106324926018715, -0.002206624485552311, -0.037992317229509354, -0.0035771988332271576, 0.03453847020864487, -0.023053059354424477, -0.020983491092920303, 0.00546173844486475, -0.00664728507399559, 0.009641990065574646, -0.017872288823127747, 0.006472536828368902, -0.02815159596502781, 0.00676378421485424, 0.012067906558513641, -0.015117433853447437, 0.011266120709478855, -0.001746625523082912, 0.026548024266958237, 0.010012044571340084, 0.007257190532982349, 0.0182560496032238, 0.044214725494384766, -0.028809471055865288, 0.005448032636195421, 0.0220799520611763, 0.020435262471437454, 0.009491226635873318, 0.010491745546460152, 0.01969515159726143, 0.0020935521461069584, -0.02253224141895771, 0.007716333027929068, -0.014473264105618, -0.022011423483490944, -0.028343476355075836, -0.0012163846986368299, 0.03242778778076172, 0.0023933653719723225, 0.004437234252691269, -0.05646765977144241, -0.005893469322472811, 0.006462257821112871, 0.0446258969604969, -0.01657024212181568, 0.030892744660377502, 0.0005842073005624115, 0.04876503348350525, -0.015007788315415382, 0.02557491511106491, -0.016255009919404984, -0.03969183191657066, -0.013582390733063221, -0.007455924060195684, -0.014857024885714054, 0.013308276422321796, 0.0028456547297537327, -0.009196553379297256, -0.017173295840620995, 0.017652995884418488, -0.01611795276403427, 0.0036662861239165068, -0.003549787448719144, -0.03130391612648964, -0.005139653570950031, -0.011410030536353588, -0.018557574599981308, 0.04503706842660904, 0.026164263486862183, 0.009025231935083866, 0.004786730743944645, -0.013767418451607227, -0.0031077770981937647, -0.016816945746541023, -0.00213980907574296, -0.002593811834231019, -0.02499927394092083, -0.021901777014136314, -0.00012067478382959962, 0.0025972381699830294, -0.005468591116368771, -0.0006540209287777543, -0.010676773265004158, -0.0010142249520868063, 0.005948292091488838, -0.009840723127126694, -0.0009097186848521233, 0.04536600783467293, -0.033414602279663086, -0.006088776048272848, -0.030371924862265587, 0.02634243667125702, 0.004204236436635256, -0.003236268414184451, 0.04013041406869888, 0.013664625585079193, 0.03163285553455353, 0.016200188547372818, -0.027630778029561043, -0.0018725470872595906, -0.026520611718297005, 0.0038376080337911844, -0.022998236119747162, 0.040952760726213455, 0.004180251620709896, 0.01611795276403427, -0.024629220366477966, -0.01532302051782608, 0.01724182441830635, 0.013829094357788563, -0.012485931627452374, 0.006887135561555624, -0.019503271207213402, 0.032044027000665665, -0.026876961812376976, -0.02604091167449951, 0.015103728510439396, -0.020558614283800125, 0.028343476355075836, -0.039253246039152145, 0.011567646637558937, -0.012972485274076462, 0.00917599443346262, -0.012602430768311024, -0.0005743562942370772, 0.006589035969227552, 0.004450940061360598, -0.01345903892070055, -0.020229676738381386, -0.043693907558918, 0.014733673073351383, 0.014857024885714054, -0.011279826052486897, -0.02218959666788578, -0.02679472602903843, 0.013493303209543228, 0.017515938729047775, 0.00661987392231822, -0.015350432135164738, 0.00531782815232873, -0.00888817384839058, -0.029193231835961342, -0.06770636886358261, 0.01503519993275404, 0.019736269488930702, -0.0025252830237150192, -0.008744264021515846, 0.012328315526247025, -0.005547399166971445, -0.001930796541273594, -0.002658914076164365, -0.00901837833225727, -0.02826124057173729, 0.02094237506389618, 0.0033185030333697796, -0.012664105743169785, -0.019283980131149292, -0.00855238363146782, 0.010800125077366829, 0.024067284539341927, -0.025753090158104897, -0.009271934628486633, 0.02376575767993927, 0.013041013851761818, 0.007476482540369034, 0.012760045938193798, -0.022833766415715218, 0.03322272002696991, 0.004642820451408625, 0.03527858108282089, -0.00751759996637702, -0.013136954046785831, 0.0071475449949502945, -0.01811899244785309, 0.0038992837071418762, 0.015391549095511436, 0.018214931711554527, -0.022011423483490944, -0.014788496308028698, -0.004307029768824577, 0.014322500675916672, 0.033743537962436676, -0.03738926723599434, -0.022587064653635025, 0.019092099741101265, 0.016967710107564926, -0.009271934628486633, 0.01063565630465746, -0.02828865312039852, 0.004838127177208662, 0.0326196663081646, 0.006897415034472942, 0.041829925030469894, 0.014267678372561932, 0.009066348895430565, -0.023121587932109833, -0.023614995181560516, -0.030728274956345558, -0.003460699925199151, 0.009765341877937317, -0.001425397233106196, 0.0001147855946328491, 0.03829384595155716, 0.0018142976332455873, 0.012540754862129688, 0.00529726967215538, -0.020750494673848152, 0.010882359929382801, 0.0017783200601115823, -0.01747482270002365, 0.020572319626808167, -0.03423694521188736, -0.028919117525219917, 0.0031043507624417543, -0.0254378579556942, -0.011403177864849567, 0.004152840003371239, 0.00707216328009963, -0.008703146129846573, -0.0032328420784324408, -0.015350432135164738, 0.019516978412866592, 0.0034504206851124763, -0.001792025868780911, -0.005187623668462038, 0.023162705823779106, 0.016967710107564926, 0.013095837086439133, -0.022888589650392532, -0.0004659952537622303, -0.039582185447216034, 0.01238313876092434, -0.0273840744048357, -0.007250337861478329, -0.00740110082551837, 0.0019359361613169312, 0.01736517623066902, 0.027329251170158386, 0.001168414601124823, -0.004536600783467293, 0.024601807817816734, 0.009594019502401352, -0.008449590764939785, 0.001132437027990818, 0.008244004100561142, -0.015556017868220806, -0.0082302987575531, -0.005033433903008699, -0.034511059522628784, -0.03815678879618645, 0.003256827127188444, 0.01104682870209217, -0.026972901076078415, -0.011547088623046875, -0.026164263486862183, 0.008600353263318539, -0.0066061681136488914, 0.009196553379297256, -0.015048905275762081, 0.009518638253211975, -0.016638770699501038, 0.004677084740251303, 0.01811899244785309, 0.006544492207467556, 0.014774790965020657, 0.010526010766625404, 0.01667988859117031, -0.0043584262020885944, -0.005358945578336716, -0.028179006651043892, 0.009169141761958599, 0.012616136111319065, 0.0163098331540823, 0.043693907558918, 0.006095629185438156, -0.009594019502401352, -0.03684103488922119, -0.004841553512960672, 0.016474302858114243, -0.00044458001502789557, -0.02771301195025444, 0.06671955436468124, -0.003027255879715085, -0.01699512079358101, -0.005362371914088726, 0.009840723127126694, 0.027973420917987823, -9.631496504880488e-05, 0.006907694507390261, -0.011677293106913567, -0.010964593850076199, 0.01905098184943199, -0.01758446730673313, 0.01699512079358101, -0.026301320642232895, -0.022271832451224327, -0.003186585148796439, -0.037800438702106476, 0.016858063638210297, 0.011471706442534924, 0.014747379347682, 0.033387187868356705, 0.0020798463374376297, 0.03297601640224457, 0.012067906558513641, -0.014048386365175247, -0.023683523759245872, -0.0018142976332455873, -0.009710518643260002, 0.002768560079857707, 0.023614995181560516, -0.0029981310945004225, 0.006705534644424915, -0.018187521025538445, -0.03648468852043152, -0.023258645087480545, 0.02985110692679882, -0.002871353179216385, -0.01329457014799118, -0.0004955482436344028, 0.02050379104912281, 0.012869692407548428, 0.012622988782823086, -0.038814663887023926, -0.02487592212855816, 0.02083272859454155, -0.006314920727163553, 0.017378881573677063, 0.00531782815232873, -0.016954002901911736], "33e9e11c-0356-4c36-9d24-127d9ec3f40d": [-0.0027662997599691153, 0.011384387500584126, 0.0035199392586946487, -0.024414369836449623, -0.0240597166121006, 0.021988537162542343, -0.020257826894521713, -0.01736385188996792, 0.013122191652655602, -0.010951709933578968, 0.008192503824830055, 0.0210806243121624, -0.01583174616098404, -0.002737927483394742, -0.025123676285147667, -0.014739412814378738, 0.0073342411778867245, 0.007561219856142998, 0.024116460233926773, -0.01642756536602974, 0.012838468886911869, -0.015973608940839767, -0.016172215342521667, -0.03730958327651024, -0.03450072556734085, 0.005546785891056061, 0.005709926597774029, -0.010015424340963364, -0.004348055925220251, 0.013696731068193913, 0.020796900615096092, 0.006504351273179054, -0.015704071149230003, -0.015434534288942814, 0.004358695354312658, -0.008157038129866123, 0.009107510559260845, 0.0002868262818083167, 0.018640605732798576, -0.024726465344429016, 0.0064511531963944435, -0.0027308345306664705, 0.019378285855054855, -0.004103344865143299, -0.036146316677331924, -0.002565920352935791, -0.011136130429804325, 0.013604520820081234, -0.014271270483732224, 0.023336222395300865, 0.001226215623319149, 0.008171224035322666, -0.01668291538953781, -0.014086849987506866, 0.0070079597644507885, 0.01969038136303425, -0.01264695543795824, 0.007504474837332964, -0.006965401116758585, -0.002929440699517727, 0.019917359575629234, 0.0007084209937602282, -0.03625980764627457, 0.01366126537322998, 0.018101532012224197, -0.0005789723945781589, 0.002961359452456236, -0.0031581923831254244, 0.006309291813522577, -0.019832242280244827, 0.017037570476531982, 0.01815827563405037, -0.012278115376830101, -0.003979215864092112, 0.03509654104709625, 0.012235556729137897, -0.02666996791958809, 0.0008675719145685434, 0.009341581724584103, 0.0021846676245331764, -0.007852035574615002, -0.0016535734757781029, 0.006539816502481699, 0.013164750300347805, 0.022924823686480522, -0.007674708962440491, -0.020768528804183006, 0.0024488847702741623, 0.009398326277732849, -0.009462163783609867, -0.0071214488707482815, -0.013235680758953094, 0.03606120124459267, -0.00660720095038414, 0.001884985133074224, 0.006277372594922781, -0.02533646859228611, 0.009745887480676174, -0.007082437165081501, -0.018881769850850105, -0.012129160575568676, -0.0016659863758832216, -0.024769023060798645, -0.004383521154522896, -0.0381891243159771, -0.034812819212675095, 0.026159266009926796, -0.008504598401486874, 0.010001237504184246, -0.015292673371732235, -0.024017157033085823, 0.036940742284059525, -0.011987299658358097, -0.0425584577023983, -0.0469277948141098, -0.018966887146234512, 0.007852035574615002, -0.019633635878562927, -0.030301623046398163, -0.010802756063640118, 0.011129037477076054, 0.025109490379691124, -0.01781780831515789, -0.0099444929510355, 0.023549014702439308, 0.02539321407675743, -0.019917359575629234, -0.027436019852757454, -0.049509674310684204, -0.027393462136387825, 0.042643576860427856, -0.0006179842748679221, 0.0226694718003273, 0.014093942940235138, -0.023038312792778015, 0.012398697435855865, -0.008809600956737995, 0.015235928818583488, -0.0413668230175972, 0.02310924418270588, 0.019520146772265434, 0.03217419609427452, 0.018441999331116676, 0.00652208412066102, -0.022683659568428993, 0.023194359615445137, 0.0024559777230024338, -0.003466741181910038, -0.004298404324799776, 0.010582869872450829, 0.020101778209209442, -0.021052250638604164, 0.012051137164235115, 0.005947544705122709, -0.008022269234061241, 0.023336222395300865, 0.016995010897517204, 0.016654543578624725, 0.019278982654213905, -0.001876118709333241, 0.011618459597229958, 0.05484366789460182, 0.0021350160241127014, -0.024556230753660202, -0.028684401884675026, 0.03921052813529968, 0.02696787752211094, -0.0034472353290766478, -0.01563314162194729, 0.0006188709521666169, 0.01865479163825512, 0.00484811794012785, -0.03274163976311684, 0.0052701560780406, -0.030840696766972542, 0.02261272817850113, 0.0053375400602817535, 0.0047310818918049335, 0.002443564822897315, 0.005787950474768877, -0.012590210884809494, 0.011207060888409615, -0.012178812175989151, 0.015150811523199081, -0.03274163976311684, -0.02569112367928028, -0.03137977048754692, -0.013448473066091537, 0.020924575626850128, -0.0004942987579852343, 0.004532475955784321, 0.042643576860427856, 0.003929564263671637, -0.022385749965906143, -0.574709415435791, -0.043324511498212814, -0.008220875635743141, 0.007724360562860966, 0.02588973008096218, 0.01825757883489132, 0.002755660330876708, -0.014023012481629848, -0.019023630768060684, 0.018598046153783798, -0.009369954466819763, 0.031351398676633835, 0.00490131601691246, -0.004738175310194492, 0.01682477816939354, -0.017789436504244804, 0.014796157367527485, -0.01851293072104454, -0.0029755455907434225, 0.011504970490932465, -0.02207365445792675, -0.0029755455907434225, -0.020910389721393585, -0.014455690048635006, -0.012008578516542912, 0.004138810094445944, 0.0005754258600063622, -0.00868192594498396, 0.014505341649055481, 0.005695740692317486, -0.026513921096920967, 0.010632521472871304, 0.015562210232019424, -0.012278115376830101, 0.05810648202896118, -0.020697597414255142, -0.03648678585886955, 0.04326776787638664, 0.00015937256102915853, 0.03770679607987404, -0.03586259484291077, -0.004199101123958826, -0.0050928290002048016, -0.020995507016777992, -0.002585426438599825, -0.01737803779542446, 0.002959586214274168, -0.022286446765065193, 0.008667739108204842, 0.002940080128610134, 0.007178193423897028, 0.009589839726686478, 0.017988042905926704, -0.027038807049393654, 0.03146488592028618, 0.01549127884209156, 0.03274163976311684, -0.024456927552819252, 0.0016385007183998823, -0.002899294951930642, -0.013363356702029705, 0.008596808649599552, -0.009611118584871292, -0.006202895659953356, 0.01737803779542446, 0.004883583169430494, 0.011029734276235104, 0.009738794527947903, 0.010107633657753468, -0.013987546786665916, -0.011207060888409615, -0.008220875635743141, -0.00598655641078949, -0.0026279848534613848, 0.01210078876465559, 0.02340715192258358, -0.0005115881212987006, -0.015008949674665928, -0.014611737802624702, 0.013590334914624691, -0.004291311372071505, 0.012576024979352951, -0.006348303519189358, -0.001754649798385799, 0.015136625617742538, -0.01281718909740448, -0.0473250076174736, -0.009511815384030342, -0.005784403998404741, 0.003954390063881874, 0.006103592459112406, 0.015306859277188778, 0.01696663908660412, -0.030840696766972542, 0.010937524028122425, 0.017633387818932533, -0.002581879962235689, 0.0008126005996018648, -0.012803003191947937, -0.02499600127339363, -0.024769023060798645, 0.010249495506286621, 0.012462535873055458, -0.010036703199148178, 0.033876534551382065, -0.021108996123075485, -0.008497505448758602, -0.009299023076891899, 0.014625923708081245, -0.006429873872548342, -0.029109986498951912, 0.008830880746245384, -0.01573244296014309, 0.00027795994537882507, 0.014852901920676231, -0.03750818967819214, 0.014491155743598938, -7.192823250079527e-05, 0.039125408977270126, -0.0016792858950793743, 0.008809600956737995, -0.00013100025535095483, 0.020371316000819206, -0.0011384388199076056, -0.0007208338938653469, 0.025449959561228752, -0.0010692812502384186, -0.01831432431936264, -0.013838591985404491, 0.0066320267505943775, -0.010455194860696793, 0.028074396774172783, 0.02716648392379284, -0.020314570516347885, 0.012079508975148201, 0.0064334203489124775, 0.002333622192963958, 0.0005466102156788111, 0.04267194867134094, 0.0071391817182302475, -0.024229949340224266, -0.011519156396389008, -0.004919048398733139, -0.026187637820839882, 0.007554126437753439, -0.02203109674155712, -0.0101430993527174, 0.010327519848942757, -0.016640357673168182, 0.04108310118317604, -0.025251353159546852, -0.007355520501732826, -0.009490536525845528, 0.009752980433404446, 0.009582746773958206, 0.015562210232019424, -0.0057170195505023, -0.007922966964542866, 0.011065199039876461, -0.02692531794309616, 0.013427194207906723, -0.006518537178635597, -0.024116460233926773, 0.0024896699469536543, -0.01771850511431694, -0.02752113714814186, -0.011795786209404469, 0.019435029476881027, -0.01197311282157898, -0.023222733289003372, -0.01944921538233757, -0.01321440190076828, 0.020413873717188835, 0.01940665766596794, -0.001055981731042266, -0.018399439752101898, -0.023435525596141815, -0.011143223382532597, 0.0007926513208076358, -0.0016562333330512047, -0.005199225153774023, 0.03586259484291077, 0.02396041341125965, -0.008923090063035488, 0.012107881717383862, 0.02796090766787529, 0.02613089419901371, 0.002494989661499858, -0.024258321151137352, 0.01420033909380436, -0.010086354799568653, 0.03018813394010067, 0.016072912141680717, -0.00022564850223716348, 0.03572073206305504, 0.01930735446512699, -0.011618459597229958, 0.0025393213145434856, 0.00804354902356863, 0.0010072168661281466, -0.013150564394891262, 0.027308344841003418, -0.0020410327706485987, -0.010788569226861, 0.02221551537513733, -0.021520394831895828, 0.007355520501732826, -0.020655039697885513, -0.004550208803266287, 0.0012918266002088785, 0.014895460568368435, -0.023733433336019516, -0.01865479163825512, -0.0032663617748767138, 0.022229701280593872, 0.0037770632188767195, -0.0017067715525627136, -0.008767042309045792, -0.0074477302841842175, 0.018441999331116676, -0.010348798707127571, -0.004301950801163912, 0.009015300311148167, -0.023251105099916458, 0.0017635161057114601, -0.0200875923037529, -0.01583174616098404, 0.021548766642808914, -0.01781780831515789, 0.0034827005583792925, -0.009561466984450817, 0.004454452078789473, 0.007532847113907337, 0.007476102560758591, 0.02103806473314762, -0.031947217881679535, 0.02662741020321846, -0.01583174616098404, 0.010625428520143032, 0.007575405761599541, -0.0045679411850869656, -0.0008684585336595774, -0.018867583945393562, 0.007589592132717371, 0.020002475008368492, 0.02093876153230667, 0.039324015378952026, 0.023619944229722023, 0.005114108324050903, 0.006259640213102102, -0.03821749612689018, 0.0063695828430354595, 0.00019727619655895978, 0.0024276054464280605, -0.003730958327651024, -0.009909028187394142, -0.001055095111951232, 0.01795966923236847, 0.031209537759423256, 0.04113984480500221, 0.011987299658358097, 0.03240117430686951, 0.027393462136387825, 0.004457998555153608, 0.012150440365076065, -0.03549375385046005, -0.01727873459458351, -0.012994516640901566, 0.0008622521418146789, 0.015335231088101864, -0.007192379795014858, 0.008369830437004566, 0.004933234769850969, -0.02014433778822422, 0.013363356702029705, -0.004536022432148457, 0.020924575626850128, 0.0120298583060503, 0.03844447433948517, -0.011079385876655579, -0.01801641471683979, -0.028244631364941597, 0.03492631018161774, -0.03262815251946449, 0.014867088757455349, -0.004660151433199644, -0.012022764421999454, 0.01108647882938385, 0.003475607605651021, -0.0008103839936666191, 0.01751989871263504, 0.0009859376586973667, 0.025520889088511467, -0.002727288054302335, -0.005131840705871582, 0.019264796748757362, 0.016356633976101875, 0.014434411190450191, -0.011093571782112122, -0.018981073051691055, 0.012959050945937634, 0.010682173073291779, 0.010306240059435368, -0.01574663072824478, 0.046303603798151016, 0.008320178836584091, -0.010894965380430222, -0.0013866964727640152, 0.021506208926439285, -0.012966143898665905, 0.00019982527010142803, -0.006213535089045763, 0.00828471314162016, 0.010951709933578968, 0.021520394831895828, 0.005571611691266298, 0.00497224647551775, -0.004319683648645878, 0.024769023060798645, 0.030755579471588135, -0.026684153825044632, -0.042132873088121414, -0.02579042688012123, -0.0020144337322562933, -0.047495242208242416, -0.009476350620388985, 0.01736385188996792, -0.010214029811322689, -0.04766547307372093, -0.012093695811927319, -0.015207556076347828, 0.007320054806768894, -0.011739041656255722, -0.029478825628757477, 0.00405723974108696, -0.009433791972696781, 0.007419358007609844, -0.003840900957584381, 0.02752113714814186, -0.011299271136522293, -0.010994268581271172, -0.002310569630935788, 0.03648678585886955, 0.004028867464512587, 0.006461792625486851, -0.018229207023978233, 0.0007434430881403387, -0.003812528681010008, -0.006720690056681633, -0.0032770014367997646, 0.019222237169742584, 0.0001537202624604106, 0.009377047419548035, -0.019463401287794113, 0.013923709280788898, 0.005855334922671318, 0.0030553427059203386, 0.030954185873270035, -0.007993897423148155, 0.014186153188347816, 0.02979092113673687, 0.039721228182315826, 0.014136501587927341, 0.010937524028122425, 0.018371067941188812, 0.02167644165456295, 0.01393080223351717, -0.005858881399035454, 0.010093447752296925, -0.03217419609427452, -0.028244631364941597, 0.011852530762553215, -0.008696111850440502, -0.028131142258644104, 0.019278982654213905, 0.006922842934727669, -0.06712887436151505, -0.013824406079947948, 0.02682601474225521, 0.046984538435935974, -0.039465878158807755, -0.006309291813522577, 0.0001175899087684229, 0.015250114724040031, 0.01220009196549654, -0.021265042945742607, -0.006490164902061224, 0.0011783373774960637, -0.02613089419901371, -0.01881083846092224, -0.03543701022863388, -0.0054191104136407375, -0.02509530447423458, -0.007511568255722523, 0.01708012819290161, -0.043154276907444, -0.03452909737825394, 0.025379028171300888, 0.012781724333763123, 0.025705309584736824, 0.03518166020512581, -0.02241412177681923, 0.0004012021527159959, 0.02979092113673687, -0.01549127884209156, -0.013228587806224823, -0.014781971462070942, -0.03024487942457199, 0.009377047419548035, -0.013675451278686523, 0.008157038129866123, -0.018271764740347862, -0.027052994817495346, 0.029138358309864998, 0.004202648065984249, -0.005624809768050909, 0.004433172754943371, 0.01706594228744507, -0.011426946148276329, -0.021194113418459892, -0.0033408391755074263, 0.022726217284798622, 0.009185533970594406, -0.006280919071286917, 0.00476300111040473, -0.03478444740176201, -0.03923889994621277, -0.013058354146778584, -0.023137615993618965, 0.006720690056681633, 0.011852530762553215, 0.004262939095497131, -0.024017157033085823, 0.0015241248765960336, 0.010972989723086357, 0.0015755495987832546, 0.026797642931342125, 0.0013538909843191504, 0.018598046153783798, -0.004089158494025469, -0.00851169228553772, 0.011966019868850708, -0.0008901811088435352, 0.021364346146583557, 0.010249495506286621, -0.015406162478029728, 0.02811695635318756, 0.01805897243320942, 0.03294024616479874, 0.01321440190076828, -0.0029773188289254904, -0.03143651410937309, -0.006178069859743118, 0.022584356367588043, -0.015164997428655624, 0.034812819212675095, 0.02360575832426548, -0.02810276858508587, -0.007575405761599541, 0.002615571953356266, -0.01573244296014309, 0.008752856403589249, -0.011051013134419918, -0.0226694718003273, -0.0016987918643280864, -0.00970332883298397, -0.004043053835630417, -0.02840067818760872, 0.0005497134407050908, -0.020498991012573242, 0.004770094063133001, 0.005855334922671318, 0.0037238651420921087, -0.0077101741917431355, 0.01618640124797821, 0.0016580066876485944, -0.04519708454608917, -0.001713864621706307, 0.008816693909466267, -0.0021421092096716166, -0.017633387818932533, 0.0011570581700652838, 0.004592766985297203, 0.006231267936527729, 0.03770679607987404, 0.011504970490932465, 0.016214773058891296, -0.005234690383076668, -9.1157118731644e-05, 0.015250114724040031, 0.019974103197455406, -0.009455070830881596, -0.021704813465476036, 0.0008387563284486532, 0.012682421132922173, 0.008767042309045792, -0.0006255207117646933, -0.03628817945718765, -0.003759330604225397, 0.03824586793780327, -0.028429049998521805, 0.0026599036063998938, 0.00283900392241776, -0.04448777809739113, -0.016909895464777946, -0.0027840326074510813, 0.024712279438972473, -0.016597799956798553, -0.024031342938542366, -0.02281133458018303, 0.028145328164100647, 0.014186153188347816, 0.02044224739074707, -0.0019718753173947334, 0.01658361218869686, -0.01193055510520935, 0.004922595340758562, 0.011398574337363243, -0.012157533317804337, -0.016299890354275703, 0.008774135261774063, -0.006149697583168745, 0.017704319208860397, -0.016257330775260925, 0.006114231888204813, 0.006153244059532881, 0.002541094785556197, 0.007880408316850662, -0.003131593344733119, 0.03648678585886955, 0.028329748660326004, -0.025010187178850174, -0.01692408137023449, -0.009455070830881596, -0.023577386513352394, -0.03271326795220375, -0.002869149437174201, -0.03404676914215088, 0.026599036529660225, 0.003181244945153594, 0.012966143898665905, 0.008298899978399277, -0.007117902394384146, -0.0008693452109582722, 0.0011978433467447758, -0.0016846057260408998, 0.03756493330001831, -0.024315066635608673, 0.0008724484359845519, 0.015136625617742538, 0.021350160241127014, 0.011150316335260868, -0.026655782014131546, -0.015760816633701324, -0.013639986515045166, 0.009689142927527428, 0.042842183262109756, -0.004383521154522896, -0.0034206362906843424, 0.023449711501598358, -0.0017041116952896118, 0.005316260736435652, -0.026216011494398117, 0.02830137498676777, 0.024385998025536537, -0.004631779156625271, -0.020115965977311134, 0.0049119554460048676, -0.005947544705122709, -0.007979711517691612, -0.013618706725537777, 0.00977425929158926, 0.0027131016831845045, -0.006153244059532881, -0.009533095173537731, -0.0060574873350560665, 0.0051424806006252766, 0.026655782014131546, -0.013356262817978859, 0.01090915221720934, -0.010675080120563507, -0.004216833971440792, -0.019080376252532005, 0.026059962809085846, -0.00304292980581522, 0.024783208966255188, 0.022300632670521736, -0.0002252051781397313, 0.01668291538953781, -0.004206194542348385, 0.004202648065984249, -0.0032734547276049852, -0.003425956005230546, 0.05430459603667259, -0.03645841404795647, -0.009979958645999432, -0.03265652433037758, 0.018796652555465698, 0.015760816633701324, 0.0038870058488100767, 0.006259640213102102, 0.01628570444881916, -0.04701291024684906, 0.004798466339707375, 0.016455937176942825, -0.02607414871454239, 0.020725969225168228, -0.010469380766153336, 0.0026492641773074865, -0.006951215211302042, 0.000527104246430099, 0.013441380113363266, 0.007852035574615002, -0.022995755076408386, -0.018924327567219734, -0.025648564100265503, -0.012008578516542912, 0.00702923908829689, 0.008540064096450806, 0.0065469094552099705, 0.022555982694029808, 0.046502210199832916, -0.040402162820100784, 0.015164997428655624, -0.017448969185352325, -0.007277496624737978, -0.004851664416491985, 0.012540559284389019, -0.010639614425599575, -0.0005723226349800825, 0.023648317903280258, -0.0019328633788973093, -0.017534084618091583, -0.040118440985679626, 0.016399193555116653, 0.0018601593328639865, 0.026400430127978325, 0.04162217304110527, 0.03861470893025398, -0.006901563610881567, 0.01301579549908638, -0.01742059551179409, -0.015406162478029728, -0.020328758284449577, -0.018881769850850105, 0.0038692732341587543, 0.011214153841137886, -0.01930735446512699, -0.006834179162979126, -0.011582993902266026, 0.0078094773925840855, 0.01696663908660412, -0.013703824020922184, -0.013625799678266048, 0.01706594228744507, -0.01603035256266594, -0.0034312757197767496, -0.007355520501732826, -0.015292673371732235, -0.009937399998307228, -0.014824530109763145, -0.014434411190450191, 0.021293416619300842, -0.022797148674726486, 0.0006259640213102102, 0.03132302686572075, 0.004344509448856115, 0.029507199302315712, -0.012221370823681355, -0.019335726276040077, -0.005848241504281759, -0.008724484592676163, -0.007589592132717371, -0.0435514897108078, -0.016058726236224174, 0.03413188457489014, -0.007795291021466255, -0.01024240255355835, -0.03555050119757652, -0.012122067622840405, -0.01746315509080887, -0.008206689730286598, -0.012086602859199047, 0.004929688293486834, 0.012583117932081223, 0.01210078876465559, 0.0016863789642229676, 0.0191938653588295, -0.0016695328522473574, 0.004323230125010014, 0.013519403524696827, -0.014682668261229992, -0.028429049998521805, -0.01676803268492222, 0.003589096711948514, -0.01900944486260414, -0.01256893202662468, -0.011363108642399311, 0.0031085407827049494, 0.010703452862799168, 0.023194359615445137, 0.013739289715886116, -0.00314223300665617, -0.019732939079403877, -0.006816446781158447, -0.019264796748757362, -0.014207432046532631, 0.012256836518645287, -0.015335231088101864, -0.011653924360871315, -0.007582498714327812, 0.02583298459649086, -0.010873686522245407, 0.0010400223545730114, -0.002360221231356263, 0.009547281078994274, -0.0024790302850306034, 0.008469133637845516, -0.021761558949947357, 0.01193055510520935, -0.00711435591802001, 0.0035305789206176996, 0.03750818967819214, -0.022527610883116722, 0.01027077529579401, 0.03032999485731125, 0.0032362162601202726, 0.011994392611086369, -0.017236176878213882, 0.01284556183964014, -0.00858971569687128, -0.008979834616184235, 0.029422082006931305, 0.011263805441558361, 0.013349169865250587, 0.02869858779013157, 0.0023779538460075855, -0.0058766137808561325, 0.014257083646953106, 0.013781847432255745, 0.01642756536602974, -0.03359280899167061, 0.009575653821229935, 0.006671038456261158, -0.04834641143679619, -0.021293416619300842, 0.006621386855840683, -0.008625181391835213, 0.0058305091224610806, -0.03696911409497261, 0.004869397263973951, -0.01944921538233757, 0.018768280744552612, -0.0035695908591151237, -0.010469380766153336, -0.0399765782058239, -0.021690627560019493, 0.004904862493276596, -0.0208820179104805, 0.021562952548265457, 0.25920939445495605, -0.03316722437739372, 0.005791496951133013, 0.013803127221763134, -0.018186647444963455, 0.014235804788768291, 0.012668234296143055, 0.02810276858508587, -0.004706256091594696, 0.03756493330001831, -0.01751989871263504, -0.0021811211481690407, 0.009263558313250542, -0.014257083646953106, 0.024471113458275795, -0.0012235557660460472, -0.051552481949329376, -0.004262939095497131, -0.02163388393819332, -0.003385170828551054, 0.015505465678870678, 0.0067135971039533615, 0.003080168506130576, -0.014157780446112156, 0.006486618425697088, -0.0014664935879409313, -0.008440760895609856, 0.0002717534953262657, 0.006209988612681627, 0.005312714260071516, -0.023449711501598358, 0.009788446128368378, -0.004390614572912455, -0.04150868579745293, -0.0016757393022999167, -0.00437997467815876, 0.014668482355773449, 0.03404676914215088, 0.007440637331455946, 0.014093942940235138, -0.004028867464512587, -0.013051261194050312, 0.012434163130819798, -0.020910389721393585, -0.010597056709229946, 0.010100540705025196, -0.01598779484629631, -0.01944921538233757, 0.01795966923236847, 0.016952453181147575, -0.015618954785168171, 0.004106891341507435, 0.03364955633878708, 0.03577747941017151, -0.007632150314748287, -0.021449463441967964, 0.027336716651916504, -0.0019310901407152414, 0.007146274670958519, 0.03172023966908455, 0.002704235492274165, 0.040004950016736984, 0.00013687420869246125, 0.014966391958296299, -0.00828471314162016, -0.006578828673809767, -0.023520641028881073, -0.027804860845208168, -0.0017289373790845275, -0.011547528207302094, 0.01578918844461441, 0.0009460391011089087, -0.0018113944679498672, -0.026343686506152153, -0.0037557841278612614, -0.04621848836541176, 0.03555050119757652, 0.018073158338665962, 0.03804726153612137, 0.0471264012157917, 0.024669719859957695, 7.547476707259193e-05, 0.02181830443441868, 0.0021137369330972433, -0.035805851221084595, -0.03245791792869568, -0.005068003199994564, 0.0021030972711741924, 0.0013210854958742857, -0.011448225937783718, 0.007589592132717371, -0.02513786405324936, 0.006536270026117563, -0.011469504795968533, -0.019775496795773506, 0.0020498991943895817, 0.011129037477076054, -0.010192750953137875, -0.0105403121560812, -0.006209988612681627, -0.024584602564573288, 0.006486618425697088, 0.024371810257434845, 0.029109986498951912, -0.02034294418990612, -0.0076605225913226604, -0.0014549673069268465, -0.005060910247266293, 0.015434534288942814, -0.031890470534563065, 0.025464145466685295, -0.05963858962059021, -0.009355767630040646, -0.0007758052670396864, -0.028329748660326004, 0.0060078357346355915, -0.018697349354624748, -0.00711435591802001, -0.01791711151599884, 0.005348179955035448, 0.020399687811732292, -0.020725969225168228, -0.0032681350130587816, -0.007511568255722523, -0.0033124666661024094, -0.026896946132183075, -0.0037664235569536686, -0.029876038432121277, 0.01990317367017269, -0.027691371738910675, 0.008937276899814606, -0.0189952589571476, 0.01051903236657381, 0.012008578516542912, -0.0014008826110512018, 0.02811695635318756, -0.013973360881209373, 0.0020729515235871077, 0.022825520485639572, -0.0072704036720097065, -0.01732129231095314, 0.014881274662911892, 0.010902058333158493, -0.03206070512533188, -0.00600074278190732, -0.026911132037639618, -0.0009956905851140618, 0.015207556076347828, -0.0009770713513717055, -0.00387281971052289, -0.03404676914215088, 0.0072704036720097065, -0.00932739581912756, -0.014242897741496563, 0.036997485905885696, 0.0029542664997279644, -0.016257330775260925, -0.03716772049665451, -0.006965401116758585, 0.018328510224819183, -0.03608957305550575, -0.0048303850926458836, 0.027691371738910675, -0.022641099989414215, -0.004039506893604994, -0.036543529480695724, -0.18146927654743195, 0.001954142702743411, 0.03512491658329964, -0.025166235864162445, 0.0208820179104805, 0.03197558969259262, 0.004046600311994553, 0.003901192219927907, -0.01598779484629631, 0.004560848232358694, 0.03299699351191521, 0.018399439752101898, -0.013540683314204216, -0.008497505448758602, -0.01910874806344509, 0.012554745189845562, -0.03092581406235695, 0.006344757042825222, 0.03464258462190628, 0.015618954785168171, 0.036401670426130295, -0.03583422303199768, -0.005099921952933073, 0.03132302686572075, 0.001904491102322936, 0.011107757687568665, -0.03157837688922882, 0.006135511212050915, -0.01964782178401947, -0.018441999331116676, -0.008086107671260834, 0.02430088073015213, 0.033280715346336365, 0.0017493299674242735, 0.01676803268492222, 0.0024346986319869757, -0.002260918263345957, -0.0002706451923586428, -0.017846180126070976, -0.0031138607300817966, -0.00987356249243021, 0.03410351276397705, 0.007135635241866112, -0.007110809441655874, -0.028443237766623497, 0.01736385188996792, 0.01831432431936264, -0.009632398374378681, 0.0034897937439382076, 0.02394622564315796, 0.009348674677312374, -0.03736632689833641, -0.0018105078488588333, -0.017250362783670425, 0.027407648041844368, 0.024428555741906166, 0.01090915221720934, 0.011022641323506832, -0.02800346538424492, -0.00659301457926631, -0.011824158951640129, -0.03072720766067505, 0.008610994555056095, 0.012767537496984005, -0.008263434283435345, -0.03583422303199768, -0.009150069206953049, 0.023392966017127037, 0.0014762465143576264, 0.029081614688038826, -0.004192008171230555, -0.004575034603476524, -0.0007487629191018641, 0.0043870676308870316, 0.013512310571968555, -0.011809972114861012, -0.003629881888628006, 0.012909399345517159, 0.01244834903627634, 0.01737803779542446, -0.008994021452963352, 0.06009254604578018, 0.005472308490425348, -0.00608585961163044, 0.01905200444161892, 0.010093447752296925, 0.014051384292542934, 0.006142604164779186, -0.037536561489105225, -0.019832242280244827, 0.0387849435210228, -0.015207556076347828, -0.02672671340405941, -0.004926141817122698, -0.004004041664302349, 0.009433791972696781, -0.006444060243666172, 0.004759454168379307, -0.022939009591937065, 0.0021226031240075827, 0.011753227561712265, -0.011490783654153347, -0.011838344857096672, -0.011568807996809483, 0.01795966923236847, 0.013356262817978859, -0.0046495115384459496, 0.050162237137556076, 0.03316722437739372, -0.005557425320148468, -0.011887996457517147, 0.0016048086108639836, 0.029109986498951912, 0.038274239748716354, 0.010164379142224789, 0.0023903667461127043, -0.007887501269578934, -0.006997319869697094, -0.004351602401584387, 0.007589592132717371, -0.03574910759925842, -0.020811086520552635, 0.005805683322250843, 0.017548270523548126, 2.7915135433431715e-05, -0.0053871916607022285, -0.059468355029821396, -0.009618211537599564, 0.002110190223902464, 0.024371810257434845, 0.004713349509984255, 0.018768280744552612, 0.012214277870953083, 0.040856119245290756, -0.010738917626440525, 0.019335726276040077, -0.00557870464399457, -0.013150564394891262, 0.0019701020792126656, 0.006688771303743124, -0.003587323473766446, 0.01722198911011219, 0.004301950801163912, -0.0013929029228165746, 0.0019647821318358183, 0.01668291538953781, -0.013710916973650455, -0.02469809353351593, 0.012937772087752819, -0.029876038432121277, 0.025705309584736824, 0.0029719991143792868, -0.013824406079947948, 0.037933774292469025, 0.010951709933578968, 0.010589963756501675, 0.0055928910151124, -0.005621263291686773, -0.01672547496855259, -0.0193924717605114, 0.025662751868367195, -0.0076959882862865925, -0.03645841404795647, -0.028925566002726555, 0.011575900949537754, -0.020158523693680763, 0.01737803779542446, 0.0028975217137485743, -0.006585921626538038, -0.0008977174875326455, -0.004883583169430494, -0.01717943139374256, 0.007674708962440491, 0.03484119102358818, -0.022144585847854614, -0.010433916002511978, -0.04888548329472542, 0.008476226590573788, -0.007539940532296896, 0.003101447829976678, 0.011320549994707108, 0.004316137172281742, 0.01930735446512699, 0.03455746918916702, -0.03390490636229515, -0.006780981086194515, 0.0028957484755665064, -0.0013113325694575906, 0.004745268262922764, 0.0230666846036911, 0.0072845895774662495, 0.03535189479589462, -0.031209537759423256, -0.02499600127339363, 0.0063695828430354595, 0.015916863456368446, -0.015391976572573185, 0.005848241504281759, 0.0027609800454229116, 0.014008826576173306, -0.03129465505480766, -0.020995507016777992, -0.006068127229809761, -0.01622895896434784, 0.026982063427567482, -0.013455566018819809, 0.0005107015022076666, 0.004355148877948523, -0.01757664419710636, -0.006749062333256006, 0.030500229448080063, 0.01702338457107544, -0.008937276899814606, -0.0017661760793998837, -0.019122933968901634, -0.016796404495835304, 0.005848241504281759, 0.02786160446703434, 0.013264053501188755, -0.03299699351191521, -0.02830137498676777, -0.01583174616098404, 0.008979834616184235, -0.001053321873769164, -0.01861223205924034, -0.013902430422604084, -0.024187391623854637, -0.03157837688922882, -0.09033742547035217, -0.002237865701317787, 0.006965401116758585, 0.0071852863766252995, 0.011575900949537754, -0.0031493259593844414, 0.020101778209209442, -0.01845618523657322, 0.022853892296552658, -0.015718257054686546, -0.02801765315234661, 0.018172461539506912, 0.007263310253620148, -0.00818540994077921, 0.0022662379778921604, -0.017973855137825012, 0.002706008730456233, 0.012136254459619522, -0.019037816673517227, -0.001582642667926848, 0.03004627302289009, 0.019761310890316963, 0.0011925235157832503, -0.004046600311994553, -0.01795966923236847, 0.012341952882707119, -0.0066639455035328865, 0.0389835499227047, -0.01980387046933174, -0.028670215979218483, 0.008915997110307217, 0.006330570671707392, -0.013349169865250587, 0.02153458073735237, 0.004021774511784315, 0.008433667942881584, 0.0026616770774126053, 0.009887748397886753, 0.018427813425660133, 0.03197558969259262, -0.024385998025536537, -0.01549127884209156, 0.030415112152695656, -0.0010666213929653168, 0.011611366644501686, 0.0006507897633127868, -0.0013725103344768286, 0.0027414741925895214, 0.012838468886911869, 0.01068926602602005, 0.03137977048754692, 0.005865974351763725, -0.022130398079752922, -0.02692531794309616, 0.00117567740380764, -0.04400544613599777, 0.020555736497044563, -0.01578918844461441, -0.00932739581912756, 0.012242650613188744, 0.02617345191538334, -0.012561838142573833, 0.03376304358243942, -0.014881274662911892, -0.029762549325823784, -0.006812899839133024, -0.0006414800882339478, -0.027833232656121254, -0.0015542703913524747, -0.02627275511622429, -0.0076463366858661175, 0.008022269234061241, -0.0021367892622947693, 0.0006414800882339478, 0.027095552533864975, 0.006355396471917629, 0.01618640124797821, -0.0016447071684524417, -0.027733929455280304, 0.030103016644716263, 0.003296507289633155, -0.0005599097348749638, -0.037791911512613297, 0.02058410830795765, 0.0023939134553074837, 0.027109738439321518, -0.021506208926439285, -0.018129903823137283, -0.010284961201250553, 0.0015578169841319323, -0.02637205831706524, -0.025180421769618988, 0.02113736793398857, 0.015008949674665928, 0.009823910892009735, 0.014264176599681377, 0.007554126437753439, -0.008369830437004566, -0.0056496355682611465, 0.001368077122606337, 0.023449711501598358, -0.0027201948687434196, 0.00710016954690218, -0.03747981786727905, -0.02657066471874714, -0.0028443236369639635, -0.023052498698234558, -0.025549260899424553, -0.0016970186261460185, 0.004050146788358688, -0.01825757883489132, -0.013469752855598927, -0.03146488592028618, 0.023180173709988594, 0.00952600222080946, -0.015817560255527496, 0.01395917497575283, 0.0034312757197767496, -0.015973608940839767, 0.008064827881753445, 0.039863090962171555, 0.010490660555660725, 0.014349293895065784, -0.0016358407447114587, 0.03881331533193588, -0.011370201595127583, 0.009008207358419895, -0.019931545481085777, -0.0010169699089601636, -0.009164255112409592, 0.008809600956737995, 0.013647079467773438, -0.025123676285147667, -0.03591933846473694, -0.03302536532282829, 0.018739908933639526, 0.015916863456368446, -0.021293416619300842, -0.028925566002726555, 0.08506017178297043, -0.0067632487043738365, -0.0038267148192971945, -0.009135882370173931, -0.020229455083608627, 0.03242954611778259, 0.016399193555116653, 0.0111857820302248, -0.009178441017866135, -0.01642756536602974, 0.013810220174491405, -0.015548023395240307, -0.03282675892114639, -0.01881083846092224, 0.010604149661958218, -0.0015853026416152716, -0.020130151882767677, 0.03291187435388565, 0.013788941316306591, 0.011306364089250565, 0.03169186785817146, 0.01861223205924034, 0.0072349379770457745, 0.00540847098454833, -0.004695616662502289, -0.007082437165081501, 0.019888985902071, -0.0004430956323631108, 0.0009194400627166033, -0.007390985731035471, 0.011143223382532597, 0.001015196554362774, -0.008071920834481716, -0.03535189479589462, -0.011136130429804325, 0.021194113418459892, -0.003901192219927907, -0.03370629996061325, 0.013526497408747673, 0.005443936213850975, -0.006954761687666178, 0.004316137172281742, -0.03648678585886955, -0.043579861521720886, 0.01469685509800911, 0.001277640461921692, 0.03750818967819214, 0.003206070512533188, -0.05438971146941185], "9355f9f7-4d0f-4eb7-8c26-b117bc816adc": [-0.013507334515452385, -0.004630678799003363, -0.0024952234234660864, -0.023637834936380386, -0.0226974505931139, 0.024165019392967224, -0.0437421053647995, -0.027256887406110764, -0.01594378426671028, -0.004285159055143595, -0.00857031811028719, 0.00795051921159029, 0.0035139727406203747, 0.01759658008813858, -0.009482205845415592, -0.0036546741612255573, 0.006550629623234272, 0.013065638951957226, 0.019904794171452522, -0.021215632557868958, 0.013279362581670284, 0.007779540494084358, -0.0070136976428329945, -0.03710242360830307, -0.029322883114218712, 0.001085537951439619, 0.03351186588406563, -0.01013762503862381, 0.0014337294269353151, 0.0014497586525976658, 0.030918685719370842, 0.0172831192612648, -0.0428302176296711, -0.028524981811642647, -0.005211294628679752, 0.020161263644695282, 0.04163336381316185, 0.0012395970989018679, 0.023538097739219666, -0.00010797496361192316, 0.013557203114032745, -0.004121304024010897, 0.00354959350079298, 0.016641948372125626, -0.011833165772259235, 0.004274472594261169, -0.0013544735265895724, -0.0033287457190454006, -0.02094491757452488, 0.015502087771892548, -0.010892781428992748, 0.01838023215532303, -0.028952429071068764, 0.00844208337366581, 0.005638741888105869, 0.009866908192634583, 0.012552701868116856, 0.0265017319470644, 0.0037294775247573853, -0.0023473980836570263, 0.02110164798796177, 0.00014103534340392798, -0.013621320016682148, 0.008762668818235397, -0.007508824113756418, -0.011726303957402706, -0.01528836414217949, -0.006807098165154457, -0.008043132722377777, 0.009596191346645355, 0.00015383648860733956, 0.032656971365213394, -0.011427090503275394, -0.005656552501022816, 0.03513616696000099, 0.0032984681893140078, -0.0046164304949343204, 0.004869336728006601, 0.0016430005198344588, 0.01011625211685896, -0.010643437504768372, 0.013599948026239872, 0.03359735757112503, -0.015758557245135307, 0.015473591163754463, 0.0061730509623885155, 0.0007471422431990504, 0.02943686954677105, 0.013386224396526814, 0.008762668818235397, -0.005959327332675457, 0.019847802817821503, 0.018237750977277756, -0.008064505644142628, -0.013692561537027359, 0.015145882032811642, -0.03735889121890068, 0.007815160788595676, -0.019733816385269165, -0.020617207512259483, -0.019719567149877548, 0.015658818185329437, -0.030320260673761368, -0.004089245572686195, -0.03744438290596008, -0.03884071111679077, 0.025746574625372887, -0.0008669164963066578, -0.011761924251914024, -0.01688416674733162, -0.008157119154930115, 0.03137462958693504, -0.0029689776711165905, -0.029607849195599556, -0.014091512188315392, 0.002628800692036748, 0.04092095419764519, -0.022868430241942406, -0.01507464051246643, -0.007006573490798473, 0.03627602756023407, 0.001848709536716342, 0.000540097476914525, -0.014960655011236668, 0.017568083480000496, 0.02285418100655079, 0.001401670859195292, -0.014575952664017677, -0.0437421053647995, -0.0554826557636261, 0.05377286672592163, -0.007423334289342165, 0.008563193492591381, 0.0361335426568985, -0.004773161374032497, 0.0066254329867661, 0.0016982124652713537, -0.012816294096410275, -0.0041070557199418545, -0.024563970044255257, 0.03436676040291786, 0.0027766262646764517, 0.02474919706583023, -0.010493830777704716, -0.016271492466330528, 0.024307502433657646, -0.015487839467823505, 0.012217868119478226, -0.015245619229972363, -0.008406463079154491, 0.009931025095283985, -0.009425212629139423, -0.003273533657193184, 0.018095267936587334, 0.0012974805431440473, 0.00219422928057611, 0.008862406946718693, 0.02125837840139866, -0.019976036623120308, -0.017881544306874275, -0.003033094573765993, 0.0210019089281559, 0.012752177193760872, -0.033882319927215576, 0.007323596626520157, 0.021543342620134354, -0.008784041740000248, 0.03436676040291786, -0.013735305517911911, -0.013037142343819141, -0.0004786518984474242, -0.013008645735681057, -0.009845535270869732, 0.005357339046895504, 0.00018522715254221112, 0.00895502045750618, 0.0075658168643713, 0.004669861402362585, -0.0052896603010594845, 0.013599948026239872, 0.007886402308940887, -0.013856415636837482, 0.015302612446248531, 0.031317636370658875, -0.027313880622386932, -0.02021825686097145, 0.009254233911633492, 0.01862245239317417, 0.011106505058705807, -0.009553446434438229, 0.013713933527469635, 0.027399370446801186, -0.010429713875055313, 0.0025593405589461327, -0.5462206602096558, -0.023124897852540016, 0.004798095673322678, -0.01605776883661747, 0.0018878921400755644, 0.0042709107510745525, 0.018850425258278847, 0.0025646837893873453, -0.023937048390507698, -0.0012485022889450192, -0.0019395420094951987, 0.001129173208028078, 0.009325474500656128, 0.0035086297430098057, -0.002480975352227688, -0.016641948372125626, 0.013763802126049995, -0.014454842545092106, 0.02305365726351738, 0.03220102936029434, -0.027541853487491608, 0.0036760466173291206, -0.0010988956782966852, 0.009774294681847095, 0.008712800219655037, 0.004367086570709944, -0.0124030951410532, -0.011270360089838505, -0.00846345629543066, 0.019064148887991905, -0.006735856644809246, 0.014932158403098583, -0.014647193253040314, -0.0022993101738393307, 0.051635630428791046, -0.015117385424673557, -0.01785304769873619, 0.025803567841649055, 0.015430847182869911, 0.02258346416056156, -0.0043457141146063805, -0.027541853487491608, 0.02758459746837616, -0.017667820677161217, 0.0004857760213781148, 0.0011006767163053155, 0.013222369365394115, -0.026686958968639374, 0.02001878060400486, -0.012652439065277576, -0.0029867878183722496, -0.013614196330308914, -0.003961011301726103, -0.02670120634138584, 0.009439460933208466, 0.028183024376630783, 0.01057219598442316, -0.030491238459944725, 0.023395614698529243, -0.04662024974822998, -0.005129367578774691, -0.01647096872329712, 0.005777662619948387, -0.0015120947500690818, -0.02871020883321762, 0.005802596919238567, -0.019748063758015633, -0.0066895498894155025, 0.01734011061489582, -0.020574461668729782, -0.02254072017967701, 0.020417731255292892, -0.00877691712230444, 0.011384345591068268, 0.0019751626532524824, 0.03322690352797508, 0.031146658584475517, -0.04471098631620407, 0.013507334515452385, 0.014141380786895752, -0.007145493756979704, 0.007373465690761805, -0.008356594480574131, 0.01039409264922142, 0.027955051511526108, 0.0005303017678670585, -0.012111006304621696, 0.011769048869609833, 0.024222012609243393, 0.024464232847094536, 0.015758557245135307, 0.026886433362960815, 0.037130922079086304, -0.0597856268286705, 0.013265114277601242, 0.014091512188315392, -0.030377253890037537, 0.0023082152474671602, 0.009724426083266735, -0.038413263857364655, -0.03564910218119621, 0.01635698229074478, 0.010828664526343346, -0.016542209312319756, 0.015630321577191353, 0.002828276250511408, -0.01966257579624653, -0.0067643532529473305, 0.020488973706960678, -0.009275605902075768, -0.020460477098822594, -0.011569572612643242, -0.005033191759139299, 0.0029387001413851976, 0.035278648138046265, -0.03710242360830307, 0.011263235472142696, 0.022412486374378204, -0.009724426083266735, 0.0026341439224779606, 0.03194456174969673, 0.011662187054753304, -0.0009831287898123264, 0.0012191152200102806, 0.018608205020427704, 0.004402706865221262, 0.03277095779776573, -0.007601437624543905, -0.003300249110907316, 0.005307470448315144, -0.022469479590654373, 0.005791910458356142, 0.010109128430485725, -0.02541886456310749, 0.021215632557868958, -0.017411353066563606, -0.008898027241230011, -0.005923707038164139, 0.024820439517498016, -0.015473591163754463, -0.018864672631025314, -0.03020627424120903, 0.008876655250787735, -0.02378031611442566, 0.007451830897480249, -0.029921310022473335, -0.008164242841303349, 0.0037366016767919064, -0.014704186469316483, -0.007644182071089745, 0.010914154350757599, 0.005977137945592403, -0.0210019089281559, 0.034765712916851044, -0.017097890377044678, 0.025561347603797913, -0.0034231403842568398, -0.03396781161427498, -0.003398205852136016, 0.0013126193080097437, 0.0024364495184272528, -1.1938468560401816e-05, -0.013642692007124424, -0.017254622653126717, -0.028012044727802277, -0.025604091584682465, 0.009560571052134037, 0.0022369741927832365, -0.004986885003745556, -0.03148861601948738, -0.02366633154451847, -0.017511090263724327, 0.012182247824966908, 0.005257601384073496, -0.010194617323577404, 0.023851558566093445, -0.009831287898123264, 0.017425600439310074, 0.0023545220028609037, -0.016456719487905502, -0.017938537523150444, -0.0005307470564730465, 0.0009216832113452256, -0.014946406707167625, 0.014917910099029541, 0.01753958687186241, 0.03077620454132557, 0.003961011301726103, 0.0062015475705266, 0.014704186469316483, 0.008541821502149105, -0.0037437258288264275, 0.0033590232487767935, 0.011655062437057495, 0.03676046431064606, 0.017739061266183853, 0.0068462807685136795, -0.014013146981596947, -0.01739710383117199, 0.03838476538658142, 0.03525015339255333, 0.00862018670886755, 0.02171432226896286, -0.0168271753937006, 0.035535115748643875, -0.027969300746917725, 0.005100870970636606, -0.013044266030192375, 0.025076907128095627, -0.0023901427630335093, -0.004399145022034645, -0.02350960113108158, -0.012574073858559132, -0.020090023055672646, 0.018337488174438477, 0.010436837561428547, -0.019263623282313347, 0.01621449925005436, 0.0066824257373809814, 0.011533952318131924, 0.02259771339595318, 0.02923739328980446, 0.012716556899249554, -0.01003076322376728, 0.005923707038164139, -0.031317636370658875, 0.018351737409830093, -0.01966257579624653, -0.02202778309583664, -0.04169035702943802, -0.003733039600774646, -0.019719567149877548, -0.011448463425040245, 0.000949289184063673, 0.017781807109713554, -0.019377609714865685, 0.04719017818570137, 0.0006344920839183033, 0.011362973600625992, 0.0025913992431014776, 0.0064330813474953175, 0.0302632674574852, -0.014632944948971272, -0.012004144489765167, 0.013158252462744713, 0.02325313165783882, 0.035677600651979446, 0.038156792521476746, 0.021856803447008133, 0.03824228420853615, -0.03678896278142929, 0.007213172968477011, -0.027570350095629692, 0.01011625211685896, -0.028952429071068764, -0.01791004091501236, 0.010151873342692852, 0.03801431134343147, 0.019491596147418022, 0.009410964325070381, 0.022711697965860367, 0.03211553767323494, -0.007815160788595676, 0.015715811401605606, 0.002233412116765976, -0.028938181698322296, -0.005033191759139299, -0.02912340871989727, -0.006180175114423037, 0.008036009036004543, 0.0007222078274935484, -0.00830672588199377, -0.013379099778831005, -0.005164987873286009, 0.01507464051246643, -0.007049317937344313, 0.015972280874848366, -0.0031862633768469095, 0.039239659905433655, -0.023851558566093445, -0.034765712916851044, -0.03245749697089195, 0.03428127244114876, 0.006956704426556826, 0.0048372782766819, -0.01141996681690216, 0.013101259246468544, -0.006885463371872902, -0.007401962298899889, -0.015117385424673557, 0.0017347235698252916, 0.004815905820578337, 0.006351154297590256, 0.03556361421942711, -0.042630743235349655, -0.012666687369346619, 0.016086265444755554, -0.0172403734177351, -0.02943686954677105, -0.007423334289342165, 0.0328279510140419, 0.021643079817295074, -0.004302969202399254, -0.00010341107554268092, 0.05585310980677605, -0.003136394312605262, -0.0030384378042072058, -0.00125384540297091, -0.015601825900375843, -0.02084517851471901, -0.0018121983157470822, -0.023224635049700737, -0.006604060530662537, 0.023552345111966133, -0.0035887761041522026, 0.021443605422973633, -0.009745798073709011, -0.021999286487698555, 0.03334088623523712, -0.0028817071579396725, -0.0005770538118667901, -0.035677600651979446, -0.01430523581802845, -0.0031844822224229574, -0.019847802817821503, 0.015473591163754463, -0.024535473436117172, -0.010978271253407001, -0.04359962418675423, 0.020973412320017815, 0.001594022149220109, -0.019363362342119217, 0.010045011527836323, -0.024008288979530334, -0.007088500540703535, -0.008627311326563358, 0.01960558257997036, -0.00296541559509933, 0.0362190343439579, 0.010714678093791008, -0.010579320602118969, -0.0071419314481318, 0.012481460347771645, 0.013279362581670284, -0.004238852299749851, -0.030861694365739822, 0.0037686601281166077, 0.013849291950464249, -0.01235322654247284, -0.03066221810877323, -0.01067905779927969, 0.0231533944606781, -0.0055710626766085625, -0.02969333715736866, 0.000657645461615175, -0.010258735157549381, 0.007423334289342165, 0.05103720352053642, 0.000614010205026716, 0.008356594480574131, 0.03160260245203972, 0.023609338328242302, 0.0025201579555869102, -0.0012547358637675643, 0.009988018311560154, 0.018665198236703873, 0.004965512547641993, -0.017254622653126717, 0.01923512853682041, -0.016285741701722145, -0.0038719598669558764, 0.02630225569009781, -0.011918654665350914, -0.013870663940906525, 0.00810724962502718, -0.020873675122857094, -0.04892846569418907, -0.01003076322376728, 0.009524949826300144, 0.030234770849347115, -0.03066221810877323, 0.005075936671346426, 0.0023278065491467714, -0.009154495783150196, 0.023281628265976906, -0.021030405536293983, 0.0151316337287426, -0.027242640033364296, 0.008613063022494316, -0.04810206592082977, -0.014604448340833187, -0.004534503445029259, -0.03103267215192318, -0.021486349403858185, 0.011199118569493294, -0.00890515185892582, -0.031118161976337433, -0.0026305818464607, -0.0014364009257405996, 0.023865805938839912, 0.04066448286175728, -0.013941905461251736, -0.010123376734554768, 0.03462322801351547, -0.024008288979530334, -0.016399728134274483, -0.015829797834157944, -0.018024027347564697, 0.019491596147418022, 0.005895210430026054, 0.01913538947701454, -0.011177746579051018, -0.012111006304621696, 0.03499368578195572, 0.006148116663098335, 0.0027499108109623194, 0.0005133819649927318, 0.022569216787815094, -0.020873675122857094, -0.0027267574332654476, -0.018081020563840866, 0.035734593868255615, -0.00037245795829221606, -0.01686991937458515, 0.004032252822071314, -0.021486349403858185, -0.01991904340684414, -0.008534697815775871, -0.01909264549612999, -0.0168271753937006, 0.023181891068816185, -0.000480878195958212, 0.017126386985182762, -0.006742980796843767, 0.009859783574938774, 0.00333765079267323, 0.02283993363380432, -0.004149800632148981, 0.01651371270418167, 0.004025128670036793, -0.01314400415867567, -0.0028638967778533697, -0.017924290150403976, 0.013699685223400593, 0.011904406361281872, -0.023851558566093445, 0.015316860750317574, 0.015416598878800869, -0.013656940311193466, 0.024991417303681374, 0.0008054709760472178, -0.04642077535390854, -0.017169132828712463, 0.01497490331530571, -0.005250477232038975, 0.027157150208950043, 0.005535442382097244, -0.016599202528595924, -0.031061168760061264, 0.005357339046895504, -0.0044276416301727295, -0.00098045717459172, -0.02486318349838257, -0.009710177779197693, 0.01800977811217308, 0.01090702973306179, -0.008705676533281803, -0.018351737409830093, -0.002244098111987114, -0.029037918895483017, -0.02037498727440834, 0.005909458734095097, -0.010978271253407001, 0.004135552328079939, 0.015601825900375843, -0.005086622666567564, -0.02594604901969433, -0.031773582100868225, -0.014832420274615288, -0.008883778937160969, -0.00844208337366581, -0.003665360389277339, 0.01301576942205429, 0.013856415636837482, 0.04080696776509285, 0.02053171768784523, -0.006287036929279566, -0.014440594241023064, 0.027983548119664192, 0.01842297799885273, -0.0008014636696316302, 0.03376833349466324, -0.026515979319810867, 0.006450891960412264, 0.005606683436781168, 0.019933290779590607, -0.018123764544725418, -0.027342377230525017, -0.0008166024344973266, 0.05306045711040497, -0.02701466903090477, 0.01966257579624653, 0.00045438535744324327, -0.05984262004494667, -0.018536964431405067, -0.016129011288285255, 0.01981930620968342, -0.010045011527836323, -0.03744438290596008, -0.013379099778831005, 0.032856445759534836, 0.011519704014062881, 0.01368543691933155, 0.029921310022473335, 0.010023638606071472, 0.0020321556366980076, -0.006425957661122084, 0.009019137360155582, 0.008370842784643173, -0.010094880126416683, -0.0019324178574606776, -0.02023250423371792, -0.004466824233531952, -0.0028015607967972755, 0.0006638790364377201, 0.010223113931715488, 0.009681681171059608, -0.003255723509937525, 0.009282730519771576, 0.014932158403098583, -0.02098766155540943, -0.029721833765506744, -0.010764547623693943, -0.018351737409830093, -0.01528836414217949, -0.001786373439244926, -0.0028870501555502415, -0.03510766848921776, 0.022968167439103127, 0.030120784416794777, 0.0004603963461704552, 0.018465721979737282, -0.005410769954323769, -0.01753958687186241, -0.0027053849771618843, -0.013115507550537586, 0.04143388941884041, -0.007163303904235363, 0.011975647881627083, 0.0302632674574852, -0.011484083719551563, 0.006696674041450024, -0.03633301705121994, -0.005492697469890118, -0.011519704014062881, 0.03462322801351547, 0.03000679984688759, -0.023139145225286484, -0.003442731685936451, 0.01157669723033905, 0.001228020410053432, -0.02454972267150879, -0.037130922079086304, 0.02876720204949379, 0.049327414482831955, 0.014219745993614197, -0.020560214295983315, 0.012253488413989544, -0.036304522305727005, 0.008171367458999157, -0.010102003812789917, 0.00143818196374923, -0.011932902969419956, -7.29109306121245e-05, -0.024478480219841003, -0.010785919614136219, -0.016485216096043587, 0.014860916882753372, -0.008634435012936592, -0.004894271492958069, -0.007163303904235363, -0.023552345111966133, -0.0319160632789135, 0.020602958276867867, 0.02603153884410858, 0.04528091475367546, -0.02151484601199627, 0.001636766828596592, 0.04707619547843933, -0.004146238788962364, -0.01129173208028078, -0.01966257579624653, -0.028482237830758095, 0.054371293634176254, -0.030690714716911316, -0.003006379120051861, -0.049270424991846085, 0.02074544131755829, 0.01296590082347393, 0.00846345629543066, -0.009311226196587086, 0.013749553821980953, -0.0462213009595871, 0.005161426030099392, 0.0307192113250494, -0.02593180164694786, 0.021571839228272438, 0.0010160778183490038, 0.0008277338347397745, -0.005250477232038975, -0.014526083134114742, 0.0021123019978404045, 0.04770311713218689, -0.0319160632789135, -0.005592435132712126, -0.017268870025873184, -0.014376476407051086, 0.014347980730235577, 0.0007230982882902026, -0.005813282914459705, 0.0064188335090875626, 0.0362190343439579, -0.02496292069554329, 0.009054758585989475, -0.007743919733911753, -0.0012440496357157826, -0.0077082994394004345, -0.0018896731780841947, -0.018437225371599197, -0.018494218587875366, 0.022925421595573425, -0.017724813893437386, 0.0023064343258738518, -0.015373853966593742, 0.013400472700595856, -0.006443767808377743, -0.019121142104268074, 0.011811792850494385, 0.009325474500656128, 0.0019146075937896967, 0.030234770849347115, 0.011932902969419956, -0.013279362581670284, -0.0005405427073128521, 0.012566950172185898, 0.007409085985273123, -0.013286486268043518, -0.014419221319258213, 0.002580713015049696, -0.016542209312319756, -0.027028916403651237, 0.009617564268410206, -0.03544962778687477, -0.014134257100522518, -0.0037508499808609486, -0.0017943880520761013, -0.013799423351883888, 0.00956769473850727, -0.04357112571597099, 0.013485961593687534, -0.018608205020427704, -0.014447717927396297, -0.009083254262804985, -0.015986528247594833, 0.007359217386692762, 0.02670120634138584, -0.020004533231258392, 0.0014061233960092068, -0.003200511448085308, -0.03205854445695877, 0.01625724509358406, -0.0214578527957201, -0.0023669893853366375, -0.035221654921770096, -0.015245619229972363, 0.027912307530641556, -0.012445840053260326, -0.019748063758015633, -0.022056279703974724, 0.0024382304400205612, -0.032400503754615784, -0.027769824489951134, -0.01923512853682041, 0.018793432042002678, 0.0071169971488416195, 0.008591690100729465, 5.24847382621374e-05, 0.03482270613312721, -0.027712831273674965, 0.010978271253407001, -0.01551633607596159, 0.005588873289525509, 0.004819468129426241, -0.016029272228479385, -0.008819662034511566, 0.0023954857606440783, -0.03812829777598381, -0.01191153097897768, 0.006486512254923582, -0.0018843300640583038, -0.006842718459665775, 0.028069037944078445, 0.015658818185329437, -0.008014636114239693, -0.0033091544173657894, -0.00038559306995011866, -0.002340273931622505, 0.004887147340923548, -0.015046143904328346, -0.029465366154909134, -0.010308603756129742, -0.003467665985226631, 0.00478740967810154, -0.010486706160008907, 0.01791004091501236, 0.005677924491465092, 0.006696674041450024, 0.009667432866990566, -0.015402350574731827, -0.006443767808377743, -0.00411774218082428, -0.026216765865683556, 0.03906868025660515, 0.0007244340959005058, 0.004381334409117699, 0.009617564268410206, 0.022654706612229347, 0.028881188482046127, -0.016285741701722145, 0.014440594241023064, -0.020289497449994087, -0.01718338020145893, 0.023808812722563744, -0.004406269174069166, 0.021215632557868958, -0.00928985420614481, 0.02470645308494568, -0.005763414315879345, 0.009916776791214943, 0.012082509696483612, -0.026530228555202484, -0.022668953984975815, 0.020973412320017815, 0.03205854445695877, -0.024478480219841003, -0.002003659028559923, 0.015060392208397388, -0.032856445759534836, 0.02352384850382805, -0.023067904636263847, -0.0027748453430831432, -0.01459020096808672, 0.0073663415387272835, 0.0068676527589559555, -0.014333732426166534, -0.02778407372534275, -0.003757973900064826, 0.021315371617674828, -0.03741588443517685, -0.018494218587875366, 0.2475774586200714, -0.03487969934940338, 0.01242446806281805, 0.02340986207127571, -0.012794922105967999, 0.0184799712151289, -0.00320229260250926, 0.008577441796660423, -0.00709918700158596, 0.016271492466330528, 0.004919205792248249, -0.0053003462962806225, -0.019178135320544243, -0.006415271200239658, 0.03582008183002472, -0.009083254262804985, -0.02171432226896286, -0.03966710716485977, -0.014803924597799778, 0.014426345936954021, -0.0035513744223862886, 0.013528706505894661, -0.005179236177355051, -0.006700236350297928, 0.025504354387521744, 0.0007943395175971091, -0.011427090503275394, 0.005795472767204046, -0.004730416461825371, 0.002450697822496295, -0.03639001026749611, 0.010415465570986271, -0.007886402308940887, -0.012417343445122242, -0.012054013088345528, 0.014989151619374752, 0.03767235204577446, 0.02563258819282055, 0.021842556074261665, 0.005115119274705648, -0.004313655663281679, -0.008043132722377777, 0.0117832962423563, -0.004758913069963455, -0.018038274720311165, 0.027826817706227303, -0.01005925890058279, -0.025091154500842094, 0.00017743514035828412, 0.003218321828171611, -0.022042032331228256, -0.029009422287344933, 0.012111006304621696, 0.008719924837350845, 0.0013598166406154633, -0.026174021884799004, 0.018864672631025314, -0.016399728134274483, 0.02155759185552597, 0.04359962418675423, -0.015459342859685421, 0.04146238788962364, -0.0153596056625247, 0.021272625774145126, -0.025718078017234802, 0.0038007188122719526, -0.04174735024571419, -0.0072844140231609344, -0.00490139564499259, -0.0037615359760820866, 0.009218612685799599, -0.014632944948971272, -0.013963277451694012, -0.01162656582891941, -0.019619829952716827, -0.04308668524026871, 0.0581328310072422, 0.02376606874167919, 0.011427090503275394, 0.025846311822533607, -0.009318350814282894, -0.00239370483905077, 0.02628800831735134, 0.011256111785769463, -0.011035263538360596, -0.030234770849347115, 0.01394902914762497, -0.0026394869200885296, 0.0010775233386084437, -0.004684109706431627, -0.009966645389795303, -0.01219649612903595, -0.0008655807469040155, 0.009610439650714397, 0.005164987873286009, 0.010287230834364891, 0.029351379722356796, 0.005161426030099392, -0.01692691259086132, -0.016812926158308983, -0.050410281866788864, 0.0008415368502028286, -0.0029511672910302877, 0.03308441862463951, 0.0023723323829472065, -0.008962145075201988, -0.009019137360155582, 0.006425957661122084, 0.021757066249847412, -0.026872185990214348, 0.019477346912026405, -0.053031958639621735, 0.006693112198263407, -0.01594378426671028, 0.011263235472142696, 0.014034518972039223, -0.004217479843646288, -0.0005098199471831322, -0.03194456174969673, 0.022754443809390068, 0.0036315207835286856, -0.0345662385225296, 0.011769048869609833, -0.008320974186062813, -0.022398237138986588, -0.030861694365739822, -0.03627602756023407, 0.009581943042576313, -0.013357727788388729, -0.03849875181913376, 0.012538453564047813, -0.03525015339255333, 0.029265889897942543, 0.02073119394481182, -0.025646837428212166, 0.01749684289097786, -0.039296653121709824, -0.020830931141972542, -0.003455198835581541, -0.012338978238403797, -0.014205497689545155, 0.012367474846541882, 0.0012164437212049961, -0.019676823168992996, 0.005385835655033588, -0.02130112238228321, -0.009296977892518044, 0.00311324093490839, 0.019021404907107353, -0.018095267936587334, -0.013756678439676762, -0.0043457141146063805, -0.010821539908647537, -0.004057187121361494, -0.008841034956276417, -0.0086415596306324, -0.0027748453430831432, -0.05146465077996254, -0.008014636114239693, -0.0016946503892540932, -0.0172403734177351, -0.0025539975613355637, 0.021828308701515198, -0.013628443703055382, -8.0647281720303e-05, -0.009503577835857868, -0.1810096800327301, 0.006999449338763952, 0.034138791263103485, -0.012659563682973385, 0.034138791263103485, -0.010650561191141605, 0.022868430241942406, -0.003239694284275174, -0.02943686954677105, -0.022654706612229347, 0.029664840549230576, -0.0011799326166510582, 0.01189015805721283, -0.01986205019056797, -0.018408728763461113, 0.0023741135373711586, -0.003936077002435923, 0.008520449511706829, 0.038612738251686096, 0.022355493158102036, 0.0336543507874012, -0.03160260245203972, -0.0036617983132600784, 0.025433113798499107, -0.006621870677918196, 0.002383018610998988, 0.011127877980470657, -0.01657070592045784, 0.015872541815042496, -0.012210744433104992, 0.014604448340833187, -0.0153596056625247, 0.02449272945523262, -0.010600692592561245, -0.010315727442502975, -0.008605938404798508, -0.004067873116582632, -0.01459020096808672, -0.020545965060591698, 0.0075515685603022575, -0.009282730519771576, 0.041034940630197525, 0.00729510048404336, -0.028211520984768867, -0.04203231632709503, 0.013037142343819141, 0.010123376734554768, -0.02624526247382164, -0.008206987753510475, 0.003754412056878209, 0.015046143904328346, -0.01877918466925621, 0.01625724509358406, 0.0028674588538706303, 0.03322690352797508, 0.026743952184915543, 0.0006211343570612371, -0.0015646351967006922, 0.005442828871309757, 0.002783750416710973, 0.0013758459826931357, -0.026530228555202484, 0.023552345111966133, 0.0013811889803037047, -0.01412713248282671, -0.025190893560647964, -0.008698551915585995, 0.03647550195455551, -0.02161458507180214, -0.0061623649671673775, 0.004174734931439161, -0.0026145526207983494, 0.025304878130555153, 0.0005098199471831322, 0.023908551782369614, 0.019277872517704964, -0.007270165719091892, 0.0007177552324719727, 0.017710566520690918, 0.004701919853687286, -0.027798321098089218, 0.05531167984008789, 0.0038292151875793934, -0.01842297799885273, 0.0462213009595871, -0.004164048936218023, 0.011719179339706898, -0.017311614006757736, -0.05103720352053642, -0.01877918466925621, 0.02218451350927353, -0.019947540014982224, 0.008491952903568745, -0.020446227863430977, 0.02378031611442566, 0.02496292069554329, -0.013051390647888184, 0.0027321004308760166, -0.00817849114537239, -0.009232860989868641, 0.0013731743674725294, -0.020261000841856003, -0.015573329292237759, 0.04174735024571419, 0.016200251877307892, 0.024563970044255257, -0.013001521117985249, 0.019833553582429886, 0.01702664978802204, 0.016129011288285255, -0.002065995242446661, 0.007287976332008839, 0.012075386010110378, 0.025718078017234802, 0.025034163147211075, 0.016941159963607788, 0.007686926983296871, -0.0043457141146063805, 0.031716588884592056, 0.026159772649407387, -0.006636118981987238, -0.02238398976624012, -0.007056442089378834, 0.0327424630522728, 0.012331853620707989, -0.020204007625579834, -0.05605258792638779, -0.0019377609714865685, 0.010415465570986271, 0.04245976358652115, -0.022198762744665146, 0.02125837840139866, -0.02037498727440834, 0.03245749697089195, -0.02578931860625744, 0.05944366753101349, -0.006604060530662537, -0.03180207684636116, -0.006301285233348608, 0.004110618028789759, -0.010080631822347641, 0.010657685808837414, -0.012517081573605537, -0.010287230834364891, 0.009076130576431751, 0.04197532311081886, -0.009097502566874027, -0.004904957488179207, 0.03721641004085541, -0.017767557874321938, 0.005453514866530895, -0.005036753602325916, -0.013094134628772736, 0.029166152700781822, 0.015259867534041405, 0.0172831192612648, 0.030833197757601738, -0.01877918466925621, -0.02074544131755829, -0.028596222400665283, 0.0243929922580719, -0.006557753775268793, -0.010287230834364891, -0.022270003333687782, 0.01903565227985382, -0.013521581888198853, -0.018950162455439568, 0.0054570771753787994, -0.0134788379073143, -0.00354959350079298, 0.013051390647888184, -0.029052166268229485, -0.009033385664224625, 0.038612738251686096, 0.0019270748598501086, -0.023751821368932724, -0.04567986726760864, -0.005649428348988295, 0.0172831192612648, -0.018294744193553925, 0.0184799712151289, 0.023338621482253075, 0.005296783987432718, 0.017981281504034996, -0.03932515159249306, 0.007095624692738056, 0.02027525007724762, -0.019434602931141853, -0.010914154350757599, 0.031574103981256485, 0.039439134299755096, 0.004555875435471535, -0.024350246414542198, -0.0039289528504014015, 0.011761924251914024, 0.0019039214821532369, -0.010073507204651833, 0.037073928862810135, 0.009553446434438229, 0.027570350095629692, -0.020389234647154808, -0.005585310980677605, -0.007765292190015316, -0.017411353066563606, 0.03479420766234398, -0.004961950704455376, -0.015402350574731827, 0.004741102922707796, -0.01446196623146534, -0.012509956955909729, 0.01047245878726244, 0.01816650852560997, -0.015787051990628242, -0.0027000419795513153, 0.0051436154171824455, -0.03040575049817562, 0.004338589962571859, 0.018536964431405067, 0.010600692592561245, -0.034708719700574875, 0.005460639018565416, 0.025076907128095627, -0.007152617909014225, -0.004944140091538429, 0.015174378640949726, 0.013065638951957226, -0.028938181698322296, -0.04835853725671768, -0.07745344936847687, 0.02588905766606331, 0.011256111785769463, 0.0020891486201435328, 0.006554191466420889, 0.0002609209332149476, 0.040322527289390564, 0.007758168037980795, 0.005635180044919252, -0.00481234397739172, -0.021913796663284302, 0.0024097340647131205, 0.006158803123980761, -0.027142902836203575, -0.014832420274615288, -0.01662769913673401, 0.007836533710360527, -0.008278229273855686, 0.015544832684099674, 0.009418088011443615, 0.019163886085152626, 0.02218451350927353, -0.002368770306929946, 0.006582688074558973, -0.007922022603452206, 0.014447717927396297, -0.01379229873418808, 0.015986528247594833, -0.023295877501368523, -0.015345357358455658, -0.0009555227588862181, -0.0007026164676062763, -0.01080729253590107, 0.026102781295776367, 0.0012618600158020854, 0.011248987168073654, -0.0013063857331871986, 0.00177479675039649, 0.0011567792389541864, 0.018536964431405067, -0.02423625998198986, -0.011747675947844982, 0.03066221810877323, 0.006294161081314087, 0.003868397790938616, -0.006621870677918196, -0.004395582713186741, 0.01419837400317192, -0.0015058611752465367, -0.0016608107835054398, 0.01677018217742443, -0.0020944916177541018, -0.01795278489589691, -0.03812829777598381, -0.00812862254679203, -0.03855574503540993, 0.008819662034511566, -0.011747675947844982, 0.009760046377778053, -0.0035709657240659, 0.027670087292790413, 0.020959164947271347, 0.02937987633049488, -0.009496454149484634, -0.03433826565742493, -0.0167844295501709, -0.03644700348377228, 0.003093649633228779, 0.00037312586209736764, -0.002903079381212592, 0.0004857760213781148, -0.014476214535534382, -0.011997019872069359, 0.02764159068465233, 0.01023736223578453, 0.01872219145298004, -0.011113629676401615, 0.019363362342119217, -0.031574103981256485, 0.027698583900928497, 0.00823548436164856, -0.018237750977277756, -0.019790809601545334, 0.010914154350757599, 0.023352868854999542, -0.02464945986866951, -0.006750104948878288, 0.024122275412082672, -0.021443605422973633, 0.013542954809963703, 0.0002976546820718795, -0.003289563115686178, -0.016485216096043587, -0.0001086985066649504, 0.019363362342119217, 0.037586864084005356, -0.0012333635240793228, -0.0015468248166143894, 0.02417926862835884, 0.006212234031409025, 0.0005013600457459688, 0.0001472689473303035, -0.001365159754641354, -0.0075515685603022575, 0.005371587350964546, 0.02634500153362751, 0.0001405900839017704, -0.03525015339255333, 0.015929535031318665, 0.009760046377778053, -0.014205497689545155, 0.011184870265424252, -0.021757066249847412, 0.00980279128998518, -0.008563193492591381, 0.0252621341496706, 0.004409831017255783, 0.0033340887166559696, -0.040835462510585785, 0.025176644325256348, 0.009190116077661514, 0.014191249385476112, 0.02192804589867592, -0.010985394939780235, 0.030291764065623283, -0.020289497449994087, 0.027199896052479744, -0.025817815214395523, -0.00299034989438951, -0.023124897852540016, -0.0034284833818674088, 0.02084517851471901, -0.02474919706583023, -0.001748971757479012, 0.0005191703676246107, -0.011947151273488998, 0.02831125818192959, -0.0017810303252190351, 0.016841422766447067, 0.07984714955091476, 0.005749166011810303, -0.005799034610390663, 0.007352093234658241, -0.018294744193553925, 0.028695961460471153, 0.03889770433306694, -0.0017756872111931443, 0.011669310741126537, -0.019334865733981133, 0.01753958687186241, 0.011106505058705807, 0.006963828578591347, -0.03371134400367737, 0.021172888576984406, -0.012595446780323982, -0.03904018551111221, 0.0429157055914402, -0.016969656571745872, -0.00026648666244000196, 0.04308668524026871, -0.005635180044919252, -0.008157119154930115, 0.012645315378904343, 0.012217868119478226, -0.012980149127542973, 0.011305980384349823, -0.007056442089378834, 0.000564586604014039, 0.004527379292994738, -0.019463099539279938, -0.013649816624820232, -0.01775331050157547, -0.055083706974983215, -0.021828308701515198, 0.0020695573184639215, -0.003989507909864187, 0.019947540014982224, 0.04830154404044151, 0.02541886456310749, -0.02496292069554329, 0.015316860750317574, -0.02531912736594677, -0.030348757281899452, -0.01211812999099493, -0.006133868359029293, 0.006604060530662537, -0.0010935526806861162, -0.055967096239328384], "11bb893b-06dd-46fa-9c3b-05d0561e330b": [-0.023661628365516663, 0.0012071902165189385, 0.008176050148904324, -0.009755355305969715, -0.02637300081551075, 0.015066293068230152, -0.03362662345170975, -0.010649829171597958, -0.0038783825002610683, -0.004503815434873104, 0.009210284799337387, 0.020321326330304146, -0.005279492121189833, 0.02310258150100708, -0.008092192932963371, -0.006726023741066456, 0.005359855014830828, 0.010027890093624592, 0.0318097248673439, -0.0097483666613698, 0.009538725018501282, 0.0006900726002641022, -0.00577564537525177, -0.033403005450963974, -0.021313633769750595, 0.0031621046364307404, 0.03217310458421707, -0.013130595907568932, 0.002601311542093754, 0.002323535503819585, 0.032676246017217636, -0.0023654638789594173, -0.04452802613377571, -0.03376638516783714, -0.015052317641675472, 0.011418517678976059, 0.036226190626621246, 0.008693167008459568, 0.03024439513683319, -0.010957304388284683, 0.020265422761440277, 0.0029507153667509556, -0.012802156619727612, 0.01794538088142872, -0.02444429323077202, -0.009384986944496632, 0.006974100600928068, 0.014409414492547512, -0.0025611300952732563, 0.035946667194366455, -0.010342353954911232, 0.013018786907196045, -0.027560975402593613, -0.009839211590588093, 0.004898641724139452, 0.004133447539061308, 0.005911912769079208, 0.01565329171717167, -0.014716889709234238, -0.01039126981049776, 0.030440062284469604, -0.001953167375177145, -0.0273653082549572, 0.013584821484982967, -0.014032058417797089, -0.0014474054332822561, -0.012529621832072735, -0.005964323412626982, -0.0046365889720618725, 0.01921721175312996, 0.005621907766908407, 0.03485652804374695, -0.0059573352336883545, 0.005408771336078644, 0.041453272104263306, -0.003588377498090267, -0.02240377478301525, 0.009433903731405735, -0.002010819036513567, 0.009685474447906017, -0.00946185551583767, 0.004695987328886986, 0.01918925903737545, -0.01924516260623932, 0.005803597625344992, 0.0013941213255748153, 0.005964323412626982, 0.025897812098264694, -0.005747693125158548, 0.004168387968093157, 0.0036652463022619486, 0.010454162955284119, 0.032089248299598694, -0.012473717331886292, -0.029098350554704666, 0.01449327077716589, -0.020321326330304146, 0.013794463127851486, -0.02434645965695381, -0.02307462878525257, -0.016338123008608818, 0.006774940527975559, 0.0064779468812048435, -0.00035551839391700923, -0.036337997764348984, -0.022585464641451836, 0.025590337812900543, -0.0028127008117735386, -0.018700093030929565, -0.006767952349036932, -0.016981026157736778, 0.025185028091073036, -0.003836454125121236, -0.042767029255628586, -0.0006691083544865251, -0.0029646914917975664, 0.03552738204598427, -0.01752609573304653, -0.018951663747429848, -0.017176693305373192, 0.031166821718215942, 0.013759522698819637, -0.01628221943974495, -0.027239523828029633, 0.02149532362818718, 0.035024240612983704, -0.028413519263267517, -0.019706375896930695, -0.03815490007400513, -0.043801262974739075, 0.061047837138175964, -0.020740611478686333, 0.009636557660996914, 0.03278805688023567, 0.011264779604971409, -0.010482114739716053, -0.0028004718478769064, -0.0069461483508348465, 2.224719719379209e-05, -0.026135407388210297, 0.026289144530892372, -0.0019374443218111992, 0.011474422179162502, -0.017763691022992134, 0.00593637116253376, 0.029545588418841362, -0.0017382841324433684, 0.004695987328886986, -0.014577127993106842, -0.01138357724994421, 0.02043313719332218, -0.020377231761813164, 0.006575779989361763, 0.00667710741981864, 0.004143929574638605, -0.005139730405062437, 0.006767952349036932, 0.012543597258627415, -0.00179069465957582, -0.027085784822702408, -0.02343800850212574, 0.031166821718215942, 0.001837864168919623, -0.043773312121629715, 0.016114505007863045, 0.030076682567596436, -0.013151559978723526, 0.020279398187994957, -0.009566676802933216, 0.0022047380916774273, -0.014605080708861351, -0.008784012869000435, -0.011180922389030457, -0.01287203747779131, -0.0037351269274950027, 0.02113194391131401, 0.016449932008981705, 0.01629619486629963, -0.01186575461179018, 0.011341648176312447, 0.010761638171970844, -0.007036993280053139, 0.027127712965011597, 0.026554690673947334, -0.007057957351207733, -0.008595334365963936, -0.004014649894088507, -0.005922394804656506, 0.010705733671784401, -0.020265422761440277, 0.03030030056834221, 0.02965739741921425, -0.011453458108007908, -0.006988076493144035, -0.5653074383735657, -0.0370088554918766, -0.0040006740018725395, -0.007854598574340343, 0.01563931629061699, 0.009028594940900803, 0.018742021173238754, 0.016086552292108536, -0.03457700461149216, 0.013493976555764675, 0.005167682655155659, 0.007330492604523897, 0.008141109719872475, 0.018378641456365585, 0.0027969777584075928, -0.02371753193438053, 0.015429673716425896, -0.007735800929367542, 0.03731632977724075, 0.032676246017217636, -0.030719585716724396, 0.022347869351506233, -0.00032298016594722867, 0.014660985209047794, -0.006170471664518118, 0.01654776558279991, -0.0035953654441982508, -0.020642777904868126, -0.010565971955657005, 0.02990896813571453, -0.015415697358548641, 0.0038644063752144575, -0.0033752410672605038, -0.009818247519433498, 0.05109681561589241, -0.006177459843456745, -0.007994359359145164, 0.02999282442033291, 0.012976858764886856, 0.03686909377574921, -0.009699450805783272, -0.008036288432776928, 0.00690421974286437, -0.0037595853209495544, -0.002805712865665555, -0.015848958864808083, 0.017036931589245796, -0.015303888358175755, 0.02341005764901638, -0.017484167590737343, -0.004182363860309124, -0.008784012869000435, 0.0022134731989353895, -0.028371591120958328, 0.01854635588824749, 0.030188491567969322, 0.014276640489697456, -0.028078092262148857, 0.012655407190322876, -0.049671247601509094, -0.015443649142980576, 0.0012010757345706224, 0.006041192449629307, -0.007945443503558636, -0.02082446776330471, 0.033011674880981445, -0.018057189881801605, -0.006816868670284748, 0.023312224075198174, -0.0037595853209495544, -0.02504526637494564, 0.0138014517724514, -0.010859470814466476, 0.01946878246963024, 0.006802892778068781, 0.04195641353726387, 0.032704200595617294, -0.029238112270832062, 0.007728812750428915, 0.009357035160064697, -0.0007477242033928633, 0.010538019239902496, -0.009916081093251705, 0.002229196485131979, 0.019971923902630806, 0.00914040394127369, -0.01755404844880104, -0.002653722185641527, 0.005845526233315468, 0.007512182462960482, -0.00144478480797261, 0.021900631487369537, 0.015876909717917442, -0.051180675625801086, 0.00683783320710063, 0.01984613761305809, -0.02567419409751892, 0.012620466761291027, -0.0022711248602718115, -0.023535842075943947, -0.030971156433224678, 0.0036128356587141752, 0.005359855014830828, -0.014409414492547512, 0.024821648374199867, -0.002031783340498805, -0.029769206419587135, -0.023899221792817116, 0.027099762111902237, -0.0036372938193380833, -0.022934867069125175, -0.027588926255702972, -0.017749715596437454, -0.0029769206885248423, 0.02374548465013504, -0.033682528883218765, 0.012948906049132347, -0.0003310601459816098, 0.0016972291050478816, -0.0050453911535441875, 0.008693167008459568, 0.01006283052265644, -0.02218015491962433, -0.0015137920854613185, 0.017400311306118965, 0.010356329381465912, 0.0402233712375164, -0.0029839088674634695, -0.01352192834019661, -0.0076659200713038445, -0.007267599925398827, 0.00561491958796978, 0.006970606744289398, -0.020251445472240448, 0.0227811299264431, -0.018574308604002, -0.007728812750428915, 0.0028004718478769064, 0.021257730200886726, -0.020335303619503975, -0.033654578030109406, -0.01724657416343689, 0.007603027392178774, -0.028734970837831497, 0.014884603209793568, -0.0185044277459383, 0.0037700673565268517, 0.004273208789527416, -0.006918196100741625, 0.00043347914470359683, 0.0061495075933635235, 0.006243846379220486, -0.02701590396463871, 0.046065401285886765, -0.028539305552840233, 0.015751125290989876, -0.003976215608417988, -0.020572897046804428, 0.004206822253763676, -0.004668035078793764, 0.0002417437790427357, -0.010272473096847534, 0.0021890150383114815, -0.011264779604971409, -0.021956536918878555, -0.03161405771970749, 0.0026135407388210297, 0.009832223877310753, -0.01851840317249298, -0.03603052347898483, -0.016044624149799347, -0.010936340317130089, -0.002206485252827406, 0.00978330709040165, -0.014702913351356983, 0.031753819435834885, -0.008420632220804691, 0.0169670507311821, 0.0005778265767730772, -0.00780568178743124, -0.00925920158624649, 0.003895852714776993, 0.002150580519810319, -0.010565971955657005, 0.008462561294436455, 0.016184385865926743, 0.021425442770123482, -0.013619761914014816, -0.007155790459364653, 0.0016046371310949326, -0.01238986011594534, -0.008665215224027634, 0.0035534370690584183, 0.01688319258391857, 0.025240933522582054, 0.03457700461149216, 0.007784717250615358, 0.0053563606925308704, -0.013060715049505234, 0.023941149935126305, 0.028078092262148857, 0.02153725177049637, 0.004206822253763676, -0.030160538852214813, 0.017693810164928436, -0.022962819784879684, 0.005653353873640299, -0.012417811900377274, 0.02051699347794056, -0.011125017888844013, 0.011963587254285812, -0.017428264021873474, -0.019902043044567108, -0.016659574583172798, 0.020684707909822464, 0.01170502882450819, -0.00603071041405201, 0.017344405874609947, 0.006719035562127829, 0.040167465806007385, 0.01759597659111023, 0.01663162186741829, 0.010803566314280033, -0.0045562260784208775, 0.01299782283604145, -0.030104635283350945, 0.028762923553586006, -0.0089796781539917, -0.029853064566850662, -0.03863008692860603, -0.009839211590588093, -0.0198740903288126, -0.012068408541381359, -0.013598796911537647, 0.03642185404896736, -0.01918925903737545, 0.04231979325413704, -0.013556868769228458, -0.0001974131737370044, -0.008623287081718445, 0.002017807215452194, 0.02313053421676159, -0.015066293068230152, -0.0244582686573267, -0.0030205962248146534, 0.033011674880981445, 0.04810592159628868, 0.043745361268520355, -0.013445059768855572, 0.02901449427008629, -0.029377873986959457, -0.0005319673218764365, -0.02048904076218605, 0.01984613761305809, -0.007092897780239582, -0.0039238049648702145, 0.016799336299300194, 0.0357789508998394, 0.011837801896035671, 0.021341586485505104, 0.029741253703832626, 0.022543534636497498, -0.011474422179162502, 0.015303888358175755, -0.003301866352558136, -0.026177335530519485, -0.007728812750428915, -0.026149382814764977, 0.008022312074899673, -0.003383976174518466, -0.0018413582583889365, -0.015737148001790047, -0.0008481778204441071, -0.006076132878661156, 0.030523918569087982, -0.009468844160437584, 0.01825285702943802, 0.0065932502038776875, 0.03119477443397045, -0.027798568829894066, -0.03804308921098709, -0.028790876269340515, 0.04229183867573738, 0.0011425504926592112, 0.003224997315555811, -0.00961559358984232, 0.013235417194664478, -0.0005354613531380892, 0.0037980196066200733, -0.009398963302373886, -0.005985287483781576, -0.00026489177253097296, 0.020293375477194786, 0.016981026157736778, -0.04237569868564606, -0.004559719935059547, 0.025157075375318527, -0.019440829753875732, -0.030328253284096718, 0.0014771047281101346, 0.036310046911239624, 0.01320047676563263, -0.0019846137147396803, -0.0031463815830647945, 0.056771136820316315, 0.010670793242752552, -0.003060777671635151, 0.008441596291959286, -0.015331840142607689, -0.011837801896035671, -0.00240389839746058, -0.006079626735299826, -0.004053084645420313, 0.006456982810050249, -0.03088729828596115, 0.01790345273911953, -0.011159958317875862, -0.014619056135416031, 0.02213822677731514, 0.007491218391805887, -0.0006608099793083966, -0.04290679097175598, -0.02343800850212574, -0.00015024364984128624, -0.03231286630034447, 0.02607950195670128, -0.011348636820912361, -0.01886780746281147, -0.04366150498390198, 0.00957366544753313, -0.00019861424516420811, -0.003291384084150195, 0.0034625919070094824, -0.02732338011264801, -0.0090984757989645, -0.009280165657401085, -0.007145308423787355, 0.005621907766908407, 0.029853064566850662, 0.004573696292936802, -0.00780568178743124, -0.00897269044071436, 0.018951663747429848, 0.01319348905235529, 0.001836117124184966, -0.0016186132561415434, 0.007568086963146925, 0.0069496422074735165, -0.019706375896930695, -0.03222901001572609, -0.0036372938193380833, 0.02929401770234108, 0.016086552292108536, -0.014395438134670258, -0.002763784257695079, 0.0026484811678528786, -0.00990909244865179, 0.051935385912656784, -0.0025716121308505535, 0.002910533919930458, 0.03583485633134842, 0.01918925903737545, 0.010600912384688854, 0.009594629518687725, 0.028902685269713402, 0.01496846042573452, 0.0016194867203012109, -0.014842675067484379, 0.01918925903737545, -0.0136826541274786, -0.007770741358399391, 0.01624028943479061, -0.014381461776793003, -0.03742814064025879, 0.016477884724736214, -0.008581358008086681, -0.05556918680667877, 0.0038294659461826086, 0.013263369910418987, 0.0324246771633625, -0.03876984864473343, 0.006184448022395372, -0.0038329600356519222, -0.0043920064345002174, 0.031697917729616165, -0.025632265955209732, 0.004828760866075754, -0.02152327634394169, -0.0009206791291944683, -0.03941275179386139, -0.006027216091752052, -0.012788180261850357, -0.006180953700095415, 0.003986697643995285, 0.01787550002336502, -0.0319494865834713, -0.02472381480038166, 0.006991570815443993, -2.4417322492809035e-05, 0.020069755613803864, 0.036617521196603775, -0.022012442350387573, -0.00040509007521905005, 0.012306002900004387, -0.01591883786022663, -0.01724657416343689, -0.01090139988809824, -0.022068345919251442, 0.028553280979394913, 0.0165896937251091, 0.026261191815137863, -0.021942561492323875, -0.017484167590737343, 0.03969227522611618, 0.019049497321248055, 0.0012727035209536552, -0.0007782970205880702, 0.014213748276233673, -0.003951757214963436, 0.002031783340498805, -0.014234712347388268, 0.029881015419960022, -0.00861629843711853, -0.009440891444683075, 0.015275935642421246, -0.03720451891422272, -0.0023427526466548443, -0.018658164888620377, -0.021732918918132782, -0.0006625570240430534, 0.03085934743285179, -0.0047169518657028675, 0.02410886436700821, -0.008742083795368671, 0.005681306589394808, 0.010510067455470562, 0.00593986501917243, -9.079040319193155e-05, 0.018462497740983963, -0.006432524416595697, -0.013549881055951118, -0.00861629843711853, -0.011781897395849228, -0.0032966251019388437, 0.00925221387296915, -0.01953866332769394, 0.004979004617780447, 0.00487068947404623, -0.007833633571863174, 0.0016483125509694219, -0.011208875104784966, -0.04025132209062576, -0.024472244083881378, 0.0084485849365592, -0.018979616463184357, 0.014066998846828938, -0.007057957351207733, -0.014199771918356419, -0.01236190740019083, 0.010621876455843449, -0.01563931629061699, 0.01336120255291462, -0.020307350903749466, -0.006942654028534889, 0.010600912384688854, 0.002463296987116337, -0.010209579952061176, -0.008001348003745079, -0.006733011920005083, -0.018378641456365585, -0.015569434501230717, 0.005667330231517553, -0.005653353873640299, -0.0030747537966817617, 0.012445764616131783, 0.007365433033555746, -0.025925764814019203, -0.019077450037002563, -0.014996412210166454, -0.026247216388583183, -0.009825236164033413, -0.0026397460605949163, 0.008231954649090767, 0.020712658762931824, 0.04511502385139465, 0.017791643738746643, -0.020293375477194786, -0.009860176593065262, 0.030691633000969887, 0.023340176790952682, 0.0024213686119765043, 0.03055187128484249, -0.025827931240200996, 0.003422410460188985, 0.012962882407009602, 0.011767921037971973, -0.0015094245318323374, -0.026568667963147163, 0.00732350442558527, 0.030468015000224113, -0.0178894754499197, 0.01203346811234951, -0.0040810368955135345, -0.055149901658296585, -0.0195666141808033, -0.008853892795741558, 0.0260655265301466, -0.009657521732151508, -0.03963636979460716, -0.012438776902854443, 0.0319494865834713, 0.009384986944496632, 0.00861629843711853, 0.02406693622469902, 0.009825236164033413, -0.008469549007713795, 0.008721119724214077, 0.015220031142234802, 0.01883985474705696, -0.02533876523375511, 0.013088667765259743, -0.021327609196305275, -0.007281575817614794, 0.0029786676168441772, -0.003972721751779318, 0.011523338034749031, 0.010125722736120224, 0.0048741833306849, 0.00865123886615038, 0.01923118717968464, -0.02048904076218605, -0.030160538852214813, -0.004213810432702303, -0.0105869360268116, -0.015471601858735085, -0.007246635388582945, -0.03544352576136589, -0.023997055366635323, 0.005335396621376276, 0.01413687877357006, -0.0009512519463896751, 0.008378704078495502, 0.003993685822933912, -0.02763085439801216, -0.02343800850212574, 0.0059538413770496845, 0.05758175253868103, 0.0055170864798128605, 0.025660216808319092, 0.04690397158265114, -0.0074702538549900055, 0.005632389802485704, -0.05358457192778587, -0.020656755194067955, -0.008916785940527916, 0.03217310458421707, 0.045702021569013596, -0.024863576516509056, 0.006020227912813425, 0.003130658296868205, -0.018336713314056396, -0.02120182476937771, -0.031446345150470734, 0.023298248648643494, 0.02535274252295494, 0.023018725216388702, -0.005719740875065327, -0.0003122796770185232, -0.042152076959609985, 0.008378704078495502, -0.019440829753875732, -0.01657571829855442, 0.007089403923600912, 0.014465318992733955, -0.010922363959252834, 0.0027166148647665977, -0.013955188915133476, 0.010915376245975494, 0.011823825538158417, 0.001601143041625619, -0.0016256013186648488, -0.009762343019247055, -0.02015361376106739, 0.021355561912059784, 0.008560393936932087, 0.033319149166345596, -0.03306758031249046, 0.0036233176942914724, 0.03371048346161842, -0.0036233176942914724, -0.014926532283425331, -0.01793140545487404, -0.018462497740983963, 0.05705065652728081, -0.03667342662811279, -0.010342353954911232, -0.046400830149650574, 0.016338123008608818, 0.017330430448055267, 0.009867164306342602, -0.008071228861808777, 0.03362662345170975, -0.03309553116559982, 0.011474422179162502, 0.043493788689374924, -0.025324789807200432, 0.021914608776569366, -0.003588377498090267, -0.012865048833191395, -0.011327672749757767, -0.015303888358175755, 0.003120176261290908, 0.03667342662811279, -0.03555533289909363, 0.004018144216388464, 0.001965396571904421, -0.01596076786518097, 0.001218545832671225, 0.013913260772824287, -0.009496795944869518, 0.006928678136318922, 0.03192153573036194, -0.0389934666454792, 0.02825978212058544, -0.007099885959178209, 0.005457688122987747, -0.01918925903737545, -0.005118766333907843, -0.0023654638789594173, -0.024514172226190567, 0.030132586136460304, -0.016491860151290894, 0.009315106086432934, -0.012019491754472256, 0.015261959284543991, 0.012948906049132347, 0.0011940875556319952, 0.025240933522582054, 0.02468188665807247, 0.0028983047232031822, 0.016030648723244667, 0.006436018738895655, -0.01090139988809824, -0.01303975097835064, -0.0018640694906935096, 0.004538755863904953, -0.006659637205302715, -0.021006159484386444, 0.004699481651186943, -0.01756802573800087, -0.01918925903737545, 0.007033499423414469, -0.047658681869506836, -0.012669382616877556, -0.012452752329409122, -0.008141109719872475, -0.011250803247094154, 0.012627454474568367, -0.024653933942317963, 0.0029035459738224745, -0.01622631400823593, -0.01854635588824749, -0.007728812750428915, -0.002587335417047143, 0.014674960635602474, 0.016366075724363327, -0.02470983937382698, 0.0018326231511309743, 0.000776986766140908, -0.02373150922358036, 0.013906273059546947, -0.003530725836753845, -0.013011799193918705, -0.010971280746161938, -0.0195666141808033, 0.024136817082762718, 0.00013746856711804867, -0.015178102999925613, -0.035667143762111664, -0.011858765967190266, -0.015024364925920963, -0.00454574404284358, -0.017665857449173927, 0.02999282442033291, 0.008273882791399956, -0.0005009577726013958, 0.004339595790952444, 0.02076856419444084, -0.017470192164182663, 0.0011766174575313926, -0.009545712731778622, -0.005255033727735281, 0.007833633571863174, -0.009322094731032848, -0.01122285146266222, 0.010020902380347252, -0.0409780815243721, -0.024304531514644623, 0.015094245783984661, 0.022194132208824158, 0.007456277962774038, 0.03949660807847977, -0.0018256350886076689, 0.004042602144181728, -0.007589051499962807, -0.013703618198633194, 0.0024912492372095585, 0.002239678520709276, -0.028231829404830933, -0.03085934743285179, -0.003025837242603302, -0.0029262572061270475, 0.0069496422074735165, -0.008336775936186314, 0.01385036762803793, 0.0005546786123886704, 0.008728107437491417, -0.0029367392417043447, -0.016981026157736778, 0.002346246736124158, 0.0026135407388210297, -0.01171201653778553, 0.031725868582725525, -0.00577913923189044, 0.017721762880682945, 0.0168971698731184, 0.032676246017217636, 0.02865111455321312, -0.030104635283350945, 0.009343058802187443, -0.007910503074526787, -0.008434608578681946, 0.03055187128484249, -0.0030765007250010967, 0.029825111851096153, -0.009524748660624027, 0.016324147582054138, 0.0024982374161481857, 0.012110336683690548, 0.0006673613097518682, -0.01596076786518097, -0.03765175864100456, 0.035331714898347855, 0.036980900913476944, -0.03907732665538788, -0.002575106220319867, 0.014982436783611774, -0.02728145197033882, 0.008301835507154465, -0.02272522635757923, -0.03030030056834221, -0.027826521545648575, 0.023172462359070778, -0.0034241576213389635, -0.0020859409123659134, -0.030691633000969887, -0.005803597625344992, 0.019678423181176186, -0.022012442350387573, -0.022934867069125175, 0.2403898388147354, -0.035974618047475815, 0.02996487356722355, 0.02932197041809559, -0.011090077459812164, 0.0033892171923071146, 0.0084485849365592, 0.019454805180430412, -0.019622519612312317, 0.024933457374572754, 0.0022466666996479034, 0.0011678823502734303, -0.010307413525879383, -0.0048776776529848576, 0.022068345919251442, -0.005890948697924614, -0.014591104350984097, -0.045059118419885635, -0.008867869153618813, 0.012501669116318226, 0.020642777904868126, 0.009440891444683075, -0.007050969172269106, -0.0022361844312399626, 0.018029237166047096, 0.001305023324675858, -0.023899221792817116, 0.007505194284021854, -0.0033927112817764282, -0.0017278019804507494, -0.02798025868833065, -0.004580684471875429, -0.0004164456913713366, 0.0010202592238783836, -0.018783949315547943, 0.00019293643708806485, 0.029042446985840797, 0.030020777136087418, 0.02669445239007473, 0.0038644063752144575, -0.013948201201856136, -0.012278051115572453, 0.0027567963115870953, -0.014073986560106277, -0.020293375477194786, 0.008574370294809341, -0.025953717529773712, -0.03292781859636307, 0.012927941977977753, -0.0021296164486557245, -0.02637300081551075, -0.024807672947645187, 0.016827289015054703, 0.017847547307610512, -0.008832928724586964, -0.031055012717843056, 0.043130408972501755, -0.011753944680094719, 0.018071167171001434, 0.027393260970711708, -0.003361264942213893, 0.042739078402519226, -0.016505837440490723, 0.004940570332109928, -0.014234712347388268, 0.0033315655309706926, -0.04033517837524414, -0.012564562261104584, -0.006201918236911297, -0.0211738720536232, 0.011628159321844578, -0.026624571532011032, -0.01723259687423706, -0.01090139988809824, -0.017707785591483116, -0.03094320371747017, 0.053556621074676514, 0.021411467343568802, 0.030691633000969887, 0.03505219146609306, 0.0042801969684660435, -0.017358383163809776, 0.004531767684966326, 0.008679191581904888, -0.02113194391131401, -0.017777666449546814, 0.01090838760137558, 0.0007516550249420106, 0.009727402590215206, 0.007840622216463089, -0.016659574583172798, -0.0130327632650733, 0.0026292637921869755, 0.013123608194291592, -0.006271798629313707, 0.0037351269274950027, 0.019902043044567108, 0.0032512026373296976, -0.009958009235560894, -0.020684707909822464, -0.02867906726896763, -0.0006573159480467439, -0.0002504788863006979, 0.029545588418841362, 0.0017609953647479415, -0.016380051150918007, -0.01566726714372635, 0.0105869360268116, 0.020083732903003693, -0.030020777136087418, 0.008637262508273125, -0.05651956424117088, 0.0128440847620368, -0.007176754996180534, 0.008497501723468304, 0.007505194284021854, 0.002872099634259939, -0.018714070320129395, -0.02962944470345974, 0.027826521545648575, 0.007047475315630436, -0.03186563029885292, -0.007554111070930958, 0.008532441221177578, -0.021663038060069084, -0.02479369565844536, -0.03745609149336815, 0.0011757438769564033, -0.00432561943307519, -0.03021644428372383, 0.0020055780187249184, -0.027183618396520615, 0.043745361268520355, 0.039804086089134216, -0.002150580519810319, 0.01429760456085205, -0.024304531514644623, 0.000678280193824321, 0.0009477579151280224, -0.02088037319481373, -0.008874857798218727, 0.020251445472240448, -0.012110336683690548, -0.010349341668188572, 0.011788885109126568, -0.020363256335258484, -0.006736505776643753, 0.014996412210166454, 0.017064882442355156, -0.014507247135043144, -0.015094245783984661, -0.014178807847201824, 0.009371010586619377, -0.00929414201527834, 0.004217304289340973, -0.019007569178938866, -0.010894411243498325, -0.05338890478014946, -0.0010324883041903377, 0.011041161604225636, -0.01413687877357006, -0.009755355305969715, 0.02374548465013504, -0.009391974657773972, -0.0024807672016322613, -0.010020902380347252, -0.17699401080608368, 0.00764495600014925, 0.027183618396520615, -0.017078859731554985, 0.029461732134222984, 0.00480430293828249, 0.01204045582562685, -6.900725566083565e-05, -0.006684095598757267, -0.010517055168747902, 0.024961410090327263, 0.004255738575011492, 0.01948275789618492, -0.019035520032048225, -0.02538069523870945, -0.009042571298778057, -0.021551229059696198, 0.016785360872745514, 0.05663137510418892, 0.018029237166047096, 0.040446989238262177, -0.024220673367381096, -0.006939160171896219, 0.038210801780223846, 0.004580684471875429, 0.004451404791325331, -0.023200415074825287, -0.005041897296905518, 0.02111796848475933, -0.00894473772495985, 0.021369539201259613, -0.0029070398304611444, 0.0313345342874527, -0.007337480317801237, -0.016785360872745514, -0.017008978873491287, -0.0031586107797920704, -0.0037840434815734625, -0.020684707909822464, 0.014395438134670258, -0.002227449556812644, 0.047043733298778534, 0.003245961619541049, -0.023172462359070778, -0.029545588418841362, 0.030719585716724396, 0.008839917369186878, -0.03656161576509476, -0.019748304039239883, -0.01336120255291462, 0.009049559012055397, -0.014660985209047794, 0.01545762550085783, -0.010251508094370365, 0.029154255986213684, 0.03164201229810715, 0.01010475866496563, 0.020405184477567673, 0.019594566896557808, 0.01171201653778553, 0.00014795069000683725, -0.030971156433224678, 0.03225696086883545, -0.00828785914927721, -0.015373768284916878, -0.02212425135076046, 0.0029629445634782314, 0.026135407388210297, -0.015751125290989876, 0.022026417776942253, 0.011628159321844578, 0.013116619549691677, 0.003993685822933912, -0.009853187948465347, 0.021551229059696198, 0.017987309023737907, -0.01823887974023819, 0.00974137894809246, 0.0099370451644063, -0.009916081093251705, -0.01654776558279991, 0.054590854793787, -0.000107933024992235, -0.01271131169050932, 0.03798718377947807, -0.0024807672016322613, 0.022837035357952118, -0.004028626251965761, -0.03706475719809532, -0.01888178288936615, 0.026764333248138428, -0.014563151635229588, 0.016338123008608818, -0.017456214874982834, 0.009182333014905453, 0.022347869351506233, -0.011739969253540039, 0.004619118757545948, -0.01921721175312996, -0.012893001548945904, -0.0013382167089730501, -0.022333893924951553, 0.0008276503067463636, 0.03675728291273117, 0.003721150802448392, 0.021565204486250877, -0.01496846042573452, 0.0337943397462368, 0.02666650153696537, 0.007896526716649532, 0.000418847834225744, 0.0025349247734993696, 0.013759522698819637, 0.010279460810124874, 0.021313633769750595, 0.02211027406156063, 0.01352192834019661, -0.007281575817614794, 0.02412284165620804, 0.02243172563612461, -0.02177484706044197, -0.017749715596437454, -0.0006442133453674614, 0.03329119831323624, 0.022305941209197044, -0.01955263875424862, -0.05104091390967369, -0.008057252503931522, 0.017749715596437454, 0.04416464641690254, -0.020405184477567673, 0.03882575407624245, -0.014688936993479729, 0.011593218892812729, -0.022222083061933517, 0.03941275179386139, 0.005981793627142906, -0.021928584203124046, -0.017442239448428154, -5.508569665835239e-05, -0.020670730620622635, 0.011739969253540039, -0.011243815533816814, -0.019287092611193657, 0.013780487701296806, 0.03457700461149216, 0.0017889476148411632, -0.0026048056315630674, 0.028567258268594742, -0.01948275789618492, -0.01793140545487404, -0.01758200116455555, -0.024011030793190002, 0.01920323446393013, 0.012410824187099934, 0.01631017029285431, 0.03605847433209419, -0.018378641456365585, -0.030775489285588264, -0.012851073406636715, 0.02081049233675003, -0.0028965577948838472, -0.008106169290840626, -0.03795923292636871, 0.01654776558279991, -0.027435189113020897, -0.017763691022992134, -0.007931467145681381, 0.012459740974009037, -0.009629569947719574, -0.0001634554791962728, -0.029377873986959457, -0.003476568264886737, 0.025254908949136734, -0.008665215224027634, -0.02145339548587799, -0.04072651267051697, 0.007721824571490288, 0.001576684764586389, -0.02085242047905922, 0.02865111455321312, 0.021411467343568802, 0.0105869360268116, 0.004496827255934477, -0.03371048346161842, 0.022054370492696762, 0.02634504996240139, 0.008057252503931522, -0.027742665261030197, 0.012585526332259178, 0.02732338011264801, 0.005534556694328785, -0.018434546887874603, -0.0023951632902026176, 0.004398994147777557, -0.0013600544771179557, -0.017078859731554985, 0.034996289759874344, 0.009175344370305538, 0.027574950829148293, -0.03158610686659813, -0.018071167171001434, 0.005674318410456181, -0.020712658762931824, 0.022669320926070213, -0.011453458108007908, 0.004290679004043341, 0.004262726753950119, -0.01888178288936615, -0.023284271359443665, 0.005164188798516989, -0.00353247276507318, -0.02015361376106739, -0.0029297510627657175, -0.0018658165354281664, -0.032117199152708054, 0.015793053433299065, 0.0013146318960934877, 0.01383639220148325, -0.02475176751613617, 0.0023148003965616226, 0.02473779208958149, -0.005300456192344427, -0.018085142597556114, -0.00977631937712431, 0.01464700885117054, -0.03362662345170975, -0.04399693012237549, -0.07591846585273743, 0.008902809582650661, 0.008350751362740993, 0.001045590965077281, 0.004849725402891636, -0.0023986573796719313, 0.010482114739716053, 0.014367485418915749, -0.002506972523406148, -0.02406693622469902, -0.02076856419444084, 0.013074691407382488, -0.007183742709457874, -0.010321388952434063, -0.031446345150470734, -0.008679191581904888, 0.012159253470599651, -0.020726636052131653, 0.02798025868833065, 0.01822490431368351, 0.017372358590364456, 0.023018725216388702, -0.005862996447831392, 0.0071418145671486855, -0.005960829555988312, 0.010510067455470562, -0.019007569178938866, 0.02211027406156063, -0.01624028943479061, -0.01106212567538023, 0.0034381337463855743, 0.0005590461078099906, -0.013228429481387138, 0.006652649026364088, 0.01688319258391857, 0.004409476183354855, 0.009867164306342602, 0.0006420295685529709, 0.006967112421989441, 0.015415697358548641, -0.026554690673947334, -0.01818297617137432, 0.02602359838783741, 0.0018553343834355474, -0.007714836858212948, 0.001754007302224636, 0.0052725039422512054, 0.005887454841285944, 0.011132006533443928, 0.0012665889225900173, 0.0021872681099921465, 0.00454574404284358, -0.0246958639472723, -0.03807104006409645, -0.0018658165354281664, -0.04424850270152092, 0.005719740875065327, -0.0036198238376528025, 0.004102000966668129, -0.007610015571117401, 0.00486719561740756, 0.011991539970040321, 0.03217310458421707, -0.008993654511868954, -0.022571487352252007, -0.01984613761305809, -0.038602136075496674, -0.014046033844351768, -0.0021767858415842056, -0.00023519246315117925, 0.010328377597033978, -0.00976933166384697, -0.0005018312367610633, 0.017344405874609947, -0.002017807215452194, 0.002760290401056409, -0.013375178910791874, 0.013570845127105713, -0.027449164539575577, 0.019902043044567108, 0.005901430733501911, -0.018644189462065697, -0.021942561492323875, 0.006275292951613665, 0.031027060002088547, -0.02018156461417675, -0.007784717250615358, 0.03644980862736702, -0.021020134910941124, -0.005478652194142342, 0.004395500291138887, -0.01038428209722042, -0.013018786907196045, -0.005108284298330545, 0.03094320371747017, 0.03589076176285744, -0.01728850230574608, 7.271967479027808e-05, 0.023340176790952682, -0.009825236164033413, 0.014605080708861351, 0.0009923068573698401, -0.00893076229840517, -0.025226956233382225, -0.00503490911796689, 0.013892296701669693, -0.004937076009809971, -0.03248057886958122, 0.005345878656953573, -0.0050768377259373665, -0.016701502725481987, 0.0027183617930859327, -0.03538762032985687, 0.013542892411351204, -0.001189720002003014, -0.004517791792750359, -0.007393385283648968, 0.011628159321844578, -0.034017957746982574, 0.02313053421676159, 0.007337480317801237, 0.012410824187099934, 0.02345198579132557, -0.023857293650507927, 0.024891529232263565, -0.009999937377870083, 0.03865804150700569, -0.014053022488951683, 0.01399711798876524, -0.007040487136691809, -0.020363256335258484, 0.011006221175193787, -0.03544352576136589, -0.00045728226541541517, 0.006684095598757267, -0.006809880957007408, 0.021663038060069084, -0.011404541321098804, 0.008441596291959286, 0.07563894242048264, 0.015052317641675472, 0.00015603065548930317, -0.002589082345366478, -0.020237470045685768, 0.02901449427008629, 0.023256318643689156, 0.002494743326678872, 0.013584821484982967, -0.015862934291362762, 0.0034940382465720177, 0.0011696293950080872, 0.003027584170922637, -0.03183767572045326, 0.022515583783388138, -0.02015361376106739, -0.028902685269713402, 0.023899221792817116, 0.0018780456157401204, 0.009371010586619377, 0.032648295164108276, -0.00470646983012557, -0.012906977906823158, 0.008658226579427719, 0.006806386634707451, -0.005384312942624092, 0.01303975097835064, -0.005363348871469498, -0.016715480014681816, -0.003616329748183489, -0.0072256713174283504, -0.00961559358984232, -0.02111796848475933, -0.03390614688396454, -0.010048854164779186, 0.005681306589394808, -0.011677076108753681, 0.0017286754446104169, 0.04852520301938057, 0.026932047680020332, -0.019412877038121223, 0.029070399701595306, -0.027169642969965935, -0.0285952091217041, -0.009245225228369236, -0.00944788008928299, 0.015541482716798782, -0.002842400223016739, -0.02926606498658657], "f53eefe8-eb19-4cd3-94db-225026bd31af": [-0.03555698320269585, 0.015647361055016518, 0.005109706893563271, -0.019366111606359482, -0.03158077970147133, 0.023170679807662964, -0.02184051088988781, -0.02886323072016239, -0.001337320078164339, 0.0019845259375870228, 0.007401744835078716, 0.003649024525657296, -0.012371999211609364, 0.014531735330820084, -0.016491230577230453, -0.003200271399691701, -0.0029928795993328094, 0.009425603784620762, 0.02113967016339302, -0.014116951264441013, 0.010362442582845688, 0.019923923537135124, -0.021854814141988754, -0.004036990460008383, -0.02184051088988781, -0.0015599088510498405, 0.022956136614084244, -0.0011782004730775952, 0.0023188558407127857, -0.002958910074084997, 0.015418514609336853, -0.009647298604249954, -0.02892044186592102, -0.022326810285449028, -0.0062324837781488895, 0.000190965918591246, 0.017993034794926643, 0.007169323042035103, 0.025902532041072845, -0.005767640192061663, 0.027833422645926476, -0.003268210217356682, -0.00830282736569643, 0.023971641436219215, -0.024086065590381622, 0.007283746264874935, 0.004026263020932674, -0.015919115394353867, -0.0061252121813595295, 0.04021972417831421, -0.012758176773786545, 0.020538948476314545, -0.03753077983856201, -0.03198125958442688, 0.003445208305492997, 0.0001353187399217859, 0.009919053874909878, 0.014603249728679657, -0.02545914240181446, -0.011606794781982899, 0.03492765501141548, -0.004952375311404467, -0.019194476306438446, 0.017435221001505852, -0.009346937760710716, -0.026846522465348244, -0.010920255444943905, 0.009003669023513794, -0.0031412718817591667, 0.017621159553527832, 0.01094886101782322, 0.01623377948999405, -0.015232576988637447, -0.0037080240435898304, 0.04874424636363983, -0.0013963194796815515, -0.022527050226926804, 0.010376745834946632, -0.00883918534964323, 0.01926599070429802, -0.0035185106098651886, 0.005538793746381998, 0.015132456086575985, -0.009075183421373367, 0.022040752694010735, -0.007966709323227406, 0.002941031474620104, 0.03252476826310158, -0.009218212217092514, 0.00972596462816, 0.012093092314898968, 0.02189772203564644, 0.026460343971848488, -0.00842440128326416, -0.007587682455778122, 0.008760519325733185, -0.018250485882163048, 0.01534700021147728, -0.006346907000988722, -0.017778491601347923, -0.006511390209197998, 0.01963786594569683, -0.019594958052039146, -0.00033634138526394963, -0.028748806565999985, -0.030837029218673706, 0.01534700021147728, -0.008510218933224678, -0.010526926256716251, -0.00903942622244358, -0.010526926256716251, 0.04139256104826927, -0.006225332617759705, -0.037416357547044754, 0.0008103480795398355, -0.008267070166766644, 0.043394964188337326, -0.027518758550286293, -0.03670121356844902, -0.009168151766061783, 0.019780894741415977, 0.02545914240181446, -0.011592491529881954, -0.02355685830116272, 0.013366050086915493, 0.020267194136977196, -0.016562744975090027, -0.01551863458007574, -0.03249616548418999, -0.038188714534044266, 0.05972886458039284, -0.024286305531859398, 0.0185079388320446, 0.030751211568713188, 0.0048522548750042915, -0.010484017431735992, -0.011835640296339989, -0.0011120495619252324, -0.006986961234360933, -0.020167073234915733, 0.042622607201337814, 0.0009502481552772224, 0.012243272736668587, -0.01687740907073021, 0.005839154589921236, 0.009082334116101265, -0.008996517397463322, -0.02267007902264595, -0.0075662280432879925, -0.00941845215857029, 0.0181074570864439, -0.017935821786522865, 0.010283777490258217, 0.016591351479291916, 0.009804630652070045, 0.02165457420051098, 0.01872248202562332, 0.014388706535100937, 0.00014571068459190428, -0.01915156841278076, -0.012543633580207825, 0.040448568761348724, 0.013716470450162888, -0.026016954332590103, 0.01439585816115141, 0.024500848725438118, -0.010991769842803478, 0.016119355335831642, -0.023213589563965797, -0.01404543686658144, -0.007172898855060339, -0.012843994423747063, -0.009447057731449604, -0.001713664853014052, 0.00767350010573864, 0.011113344691693783, 0.014124102890491486, 0.002172251231968403, -0.021096760407090187, 0.012136001139879227, -0.0036114794202148914, 0.006815326400101185, 0.012543633580207825, 0.01875108666718006, -0.01278678234666586, -0.012858296744525433, -0.002147221239283681, 0.004988132510334253, 0.017778491601347923, -0.0038439014460891485, 0.03203847259283066, 0.03289664536714554, -0.016977529972791672, -0.009790327399969101, -0.5528924465179443, -0.02116827480494976, -0.0229418333619833, -0.006075152195990086, 0.00027287230477668345, 0.010684258304536343, 0.009354089386761189, 0.02497284486889839, -0.04671323671936989, 0.009432755410671234, -0.013766530901193619, 0.0007062051445245743, 0.0042837150394916534, 0.01325162686407566, 0.004601954482495785, -0.03198125958442688, 0.011442311108112335, -0.003482753410935402, 0.014095497317612171, 0.03200986608862877, -0.00491661811247468, 0.016133658587932587, -0.01636250503361225, 0.025359021499753, -0.0035864494275301695, -0.0032109986059367657, -0.019923923537135124, 0.004305169451981783, -0.010820135474205017, 0.01727788895368576, -0.010333837009966373, 0.006886840797960758, -0.0008970593335106969, -0.017077649012207985, 0.06207453832030296, -0.009547178633511066, -0.016619956120848656, 0.023113468661904335, 0.013180112466216087, 0.044281743466854095, -0.009318332187831402, -0.010898801498115063, 0.01614796184003353, -0.019437626004219055, 0.00961869303137064, -0.01988101564347744, -0.015432816930115223, -0.019351808354258537, 0.022541353479027748, -0.02031010203063488, -0.014324342831969261, -0.007945254445075989, -0.0041263834573328495, -0.024300608783960342, 0.00883918534964323, 0.034756019711494446, -0.00889639649540186, -0.01660565473139286, 0.01899423636496067, -0.0319240465760231, -0.0170347411185503, 0.005191948730498552, -0.000987793318927288, -0.01727788895368576, -0.009454209357500076, 0.014124102890491486, -0.017106255516409874, 0.0005381461814977229, 0.03206707537174225, -0.014331494458019733, -0.029034864157438278, 0.011070435866713524, -0.014095497317612171, 0.02741863764822483, 0.004877285100519657, 0.04110650345683098, 0.018178971484303474, -0.025359021499753, 0.017778491601347923, 0.02573089674115181, -0.013916711322963238, 0.012872599996626377, -0.02156875655055046, 0.008817731402814388, 0.01551863458007574, 0.01130643393844366, -0.015218273736536503, 0.00578194297850132, -0.005252736154943705, 0.017807096242904663, -0.005581702571362257, 0.015561543405056, 0.03275361657142639, -0.047771647572517395, 0.014903610572218895, 0.02218378148972988, -0.026431739330291748, 0.01679159142076969, 0.0007459850749000907, -0.03918991610407829, -0.04328054189682007, 0.011242070235311985, -0.0011183071183040738, -0.012493573129177094, 0.038274530321359634, 0.013215869665145874, -0.03707308694720268, -0.01596202328801155, 0.016805894672870636, -0.004140686243772507, -0.023857219144701958, -0.010305231437087059, -0.01832200028002262, -0.01859375648200512, 0.03109448030591011, -0.03713029995560646, 0.013845196925103664, -0.0007857649470679462, -0.0023814309388399124, -0.006039394997060299, 0.026889430359005928, -0.00299824308604002, -0.016748683527112007, -0.0009140439797192812, 0.013459018431603909, 0.0122075155377388, 0.03795986622571945, -0.01315865758806467, 0.008352886885404587, -0.00570685276761651, -0.03060818277299404, -0.01660565473139286, 0.00957578420639038, -0.0327250100672245, 0.011964366771280766, -0.027332819998264313, -0.0068939924240112305, 0.014560340903699398, 0.006725933402776718, -0.015003730542957783, -0.02857717126607895, -0.003940445836633444, 0.013330292887985706, -0.020939430221915245, 0.013444715179502964, -0.007880891673266888, -0.012021577917039394, 0.0011495946673676372, 0.0019344657193869352, 0.003972627222537994, 0.0013757591368630528, -0.00877482257783413, -0.030980058014392853, 0.040448568761348724, -0.018479332327842712, 0.014295737259089947, -0.008188404142856598, -0.015189668163657188, -0.009010819718241692, 0.004812922328710556, -0.007909497246146202, 0.0038832344580441713, -0.001634105108678341, -0.019680775701999664, -0.028477052226662636, -0.03624352067708969, 0.011048981919884682, 0.022384021431207657, -0.016105052083730698, -0.032152894884347916, -0.004451774060726166, -0.009439907036721706, -0.004108504857867956, 0.013659259304404259, -0.01325162686407566, 0.013773681595921516, -0.01706334576010704, 0.02055325172841549, -0.008345735259354115, -0.02055325172841549, -0.01531839370727539, 0.013945316895842552, -0.0033164822962135077, -0.02468678541481495, 0.015661662444472313, 0.009776024147868156, 0.016548441722989082, -0.013559138402342796, -0.021468635648489, -0.0007978330249898136, -0.011699763126671314, 0.0020167073234915733, 0.012050183489918709, 0.0062861195765435696, 0.047685831785202026, 0.039533186703920364, 0.0070978086441755295, 0.001526833395473659, -0.01712055876851082, 0.015332696959376335, 0.028991956263780594, 0.026889430359005928, 0.012994174845516682, -0.02693234011530876, 0.022198082879185677, -0.03715890645980835, 0.017106255516409874, -0.01114910189062357, 0.020610462874174118, -0.014746278524398804, 0.005156191531568766, -0.020810702815651894, -0.009690207429230213, -0.00920390896499157, 0.022999044507741928, 0.01779279299080372, -0.006611510179936886, 0.009196757338941097, 0.01557584572583437, 0.028376931324601173, 0.0020435252226889133, 0.011242070235311985, 0.013916711322963238, 0.004001233261078596, 0.011721217073500156, -0.03455577790737152, 0.029750008136034012, -0.01514675933867693, -0.010684258304536343, -0.03209568187594414, -0.011621097102761269, -0.02487272396683693, -0.01985240913927555, -0.018393514677882195, 0.010340988636016846, -0.04182164743542671, 0.0383603498339653, -0.008145495317876339, 0.0031913320999592543, -0.00974026694893837, 0.0027783361729234457, 0.014903610572218895, -0.004805770702660084, -0.03315409645438194, -0.0072050802409648895, 0.01813606359064579, 0.04628415033221245, 0.030093278735876083, 0.01036959420889616, 0.029521163552999496, -0.022555656731128693, 0.02205505408346653, -0.022741593420505524, 0.02036731317639351, -0.006582904607057571, -0.007895194925367832, 0.0034791778307408094, 0.0340694822371006, 0.00845300778746605, 0.009969113394618034, 0.03415529802441597, 0.02392873354256153, -0.0008134767995215952, 0.008917851373553276, 0.019351808354258537, -0.025645079091191292, -0.005864184349775314, -0.013115748763084412, -0.0063719372265040874, -0.010405351407825947, -0.01231478713452816, -0.015389908105134964, 9.889106877380982e-05, -0.01510385051369667, 0.012736722826957703, 0.0016108629060909152, 0.014538886956870556, 0.011056133545935154, 0.029049167409539223, -0.022555656731128693, -0.0340694822371006, -0.013122900389134884, 0.04119231924414635, 0.0026174287777394056, 0.00240467325784266, -0.0019094357267022133, 0.010498320683836937, 0.0013650319306179881, -0.001257760333828628, 0.00718362582847476, -0.0024475818499922752, 0.00554594537243247, 0.030493758618831635, 0.011599643155932426, -0.030522365123033524, 0.0021418575197458267, 0.01948053389787674, -0.019223082810640335, -0.019308900460600853, -0.0002538762928452343, 0.026145681738853455, 0.012164606712758541, 0.01050547230988741, -0.016290990635752678, 0.05274905264377594, 0.001811103313229978, -0.00473425630480051, 0.008553127758204937, -0.016405412927269936, -0.01072001550346613, -0.02125409245491028, -0.022627171128988266, -0.0025566413532942533, 0.02119688130915165, -0.012658056803047657, 0.028434142470359802, -0.00529206870123744, -0.015404211357235909, 0.036129098385572433, 0.009811781346797943, -0.00018493187963031232, -0.04250818490982056, -0.023542555049061775, -0.010755772702395916, -0.03458438441157341, 0.02505866065621376, -0.01580469310283661, -0.011764125898480415, -0.033926453441381454, 0.0029016986954957247, -0.017935821786522865, -0.016405412927269936, 0.002510156948119402, -0.023814309388399124, -0.0006588268443010747, -0.003000030992552638, 0.01326592918485403, -0.0008747110259719193, 0.0229418333619833, -0.0011442310642451048, -0.007902346551418304, -0.020081255584955215, 0.011299282312393188, 0.018236182630062103, -0.0006275392370298505, -0.0020846461411565542, -0.009261121042072773, 0.01015505101531744, -0.005095404107123613, -0.02055325172841549, -0.0007893407018855214, 0.033125489950180054, 0.0034505720250308514, -0.019580654799938202, -0.0019094357267022133, 0.0012121698819100857, -0.006346907000988722, 0.03464159741997719, -0.014131254516541958, 0.005796245764940977, 0.024028852581977844, 0.013773681595921516, 0.01639111153781414, 0.012336242012679577, 0.01121346466243267, 0.0150895481929183, 0.00788804329931736, -0.008753367699682713, 0.012464967556297779, -0.023428132757544518, -0.015432816930115223, 0.015046639367938042, -0.01767837069928646, -0.03446996212005615, 0.014031133614480495, -0.01363065280020237, -0.052949294447898865, -0.010233717039227486, 0.005013162735849619, 0.026603372767567635, -0.034756019711494446, -0.010777226649224758, 0.009597238153219223, -0.010333837009966373, 0.02226959727704525, -0.023256497457623482, 0.007501865271478891, -0.01530409138649702, -0.010433957912027836, -0.04757140949368477, -0.02101094461977482, -0.023199286311864853, -0.02462957426905632, -0.0012202152283862233, 0.03578582778573036, -0.039046887308359146, -0.0297786146402359, -0.005317098926752806, -0.010226565413177013, 0.009568632580339909, 0.03858919441699982, -0.021025246009230614, 0.012615147978067398, 0.0017074074130505323, -0.027189791202545166, -0.016891712322831154, -0.007959557697176933, -0.018665270879864693, 0.03146635740995407, 0.011721217073500156, 0.013687864877283573, -0.01872248202562332, -0.01948053389787674, 0.039475973695516586, 0.014310040511190891, 0.006357633974403143, -0.015475725755095482, 0.0006208347622305155, -0.00565321696922183, 0.0015071668894961476, -0.009396998211741447, 0.02533041685819626, -0.012672359123826027, -0.007802226115018129, 0.017606856301426888, -0.011335039511322975, -0.0023295830469578505, -0.020453130826354027, -0.007966709323227406, -0.003064393997192383, 0.022569958120584488, -0.00475571071729064, 0.016319597139954567, -0.0066365404054522514, 0.016591351479291916, -0.014317192137241364, 0.027189791202545166, -0.009997718967497349, 0.0026370950508862734, -0.0023170679342001677, -0.020968034863471985, 0.009082334116101265, -0.01510385051369667, 0.011785580776631832, 0.008810579776763916, -0.041306741535663605, 0.0041692922823131084, 0.021068155765533447, 0.00240467325784266, 0.019552048295736313, -0.003797417040914297, -0.04376684129238129, -0.02086791582405567, 0.02009555883705616, 0.0035614194348454475, 0.01712055876851082, 0.007702105678617954, -0.016891712322831154, -0.012715267948806286, 0.018793996423482895, -0.014639006927609444, 0.007480410858988762, -0.01450312975794077, -0.0009207484545186162, 0.015890508890151978, -0.0006034031393937767, -0.005385037511587143, -0.019780894741415977, -0.0047914679162204266, -0.022069357335567474, -0.019351808354258537, -0.01062704622745514, 0.0040191118605434895, -5.8552450354909524e-05, 0.019594958052039146, -0.0038975372444838285, -0.038703616708517075, -0.017177769914269447, -0.012357695959508419, -0.015561543405056, -0.017935821786522865, 0.007666348479688168, 0.01125637348741293, 0.03341154754161835, 0.03275361657142639, 0.026789311319589615, -0.016105052083730698, -0.018207577988505363, 0.012493573129177094, 0.020024044439196587, 0.005413643550127745, 0.012843994423747063, -0.03924712538719177, 0.009868993423879147, -0.008309978060424328, 0.031781017780303955, -0.007026294246315956, -0.033125489950180054, -0.0023456737399101257, 0.03856058791279793, -0.021339910104870796, -0.004290866665542126, 0.011656854301691055, -0.06012934446334839, -0.0034505720250308514, -0.022226689383387566, 0.013551987707614899, 0.016376808285713196, -0.04616972431540489, -0.013101446442306042, 0.029120681807398796, -0.0003334360953886062, 0.012429210357367992, 0.020624766126275063, 0.020596159622073174, -0.004605530295521021, 0.01099892146885395, 0.021511545404791832, 0.004795043729245663, -0.01993822678923607, 0.0005998273845762014, -0.017721278592944145, 0.008059677667915821, 0.028376931324601173, -0.0017360131023451686, -0.0056138839572668076, 0.002107888227328658, 0.012486422434449196, 0.010298079811036587, 0.0024082488380372524, -0.009754570201039314, -0.023442434147000313, 0.008009618148207664, -0.02012416534125805, -0.024100366979837418, -0.011613945476710796, -0.02787633053958416, -0.032639194279909134, 0.030493758618831635, 0.013931013643741608, -0.014917912892997265, 0.028720200061798096, 0.004065596032887697, -0.025473445653915405, -0.006836780812591314, -0.004097777884453535, 0.0381028950214386, -0.015618754550814629, 0.03627212718129158, 0.0474855899810791, -0.008953608572483063, 0.005406491924077272, -0.039933666586875916, -0.013687864877283573, -0.013623502105474472, 0.03229592368006706, 0.04225073382258415, -0.01109189074486494, 0.01015505101531744, -0.0011335039744153619, -0.012915508821606636, -0.03198125958442688, -0.017406616359949112, 0.021039549261331558, 0.0185079388320446, 0.014202768914401531, -0.007573379669338465, 0.007895194925367832, -0.028806017711758614, 0.011678309179842472, -0.011649702675640583, -0.008524522185325623, -0.0003200271457899362, 0.0083171296864748, -0.034813232719898224, -5.2853643865091726e-05, -0.01305138599127531, 0.016219476237893105, -0.0009806418092921376, 0.004516137298196554, -0.011556734330952168, -0.0025208841543644667, -0.023685583844780922, 0.023342315107584, -0.00199882872402668, 0.026817915961146355, -0.0038939614314585924, 0.007616288494318724, 0.024729695171117783, -0.005388613324612379, -0.00549230957403779, -0.03426972031593323, -0.026689190417528152, 0.052434392273426056, -0.03767380863428116, 0.001527727348729968, -0.04539737105369568, 0.011513825505971909, 0.03203847259283066, 0.007072778418660164, -0.007873740047216415, 0.037416357547044754, -0.04153558984398842, 0.009861841797828674, 0.02272729016840458, -0.011206313036382198, 0.0028838200960308313, 0.0026299436576664448, -0.009239666163921356, -0.007065627258270979, -0.014295737259089947, 0.01340180728584528, 0.03681563585996628, -0.036529578268527985, -0.01309429481625557, 0.007180050015449524, -0.028391234576702118, -0.0012515027774497867, 0.007147868629544973, 0.00011151783837703988, 0.011356493458151817, 0.030493758618831635, -0.025144478306174278, 0.018436424434185028, 0.009103788994252682, -0.0009439906571060419, -0.00657217763364315, -0.01596202328801155, -0.0022455535363405943, -0.009332635439932346, 0.034756019711494446, -0.001254184520803392, 0.007830831222236156, -0.008402947336435318, 0.01084158942103386, 0.008810579776763916, -0.0032074227929115295, 0.0327250100672245, -0.0033951483201235533, 0.015532937832176685, 0.00497025391086936, 0.007501865271478891, -0.013587744906544685, -0.018307697027921677, -0.0053099473007023335, -0.0047449832782149315, -0.006132363807410002, -0.015947721898555756, 0.015904812142252922, -0.007745014503598213, -0.009275423362851143, 0.02181190624833107, -0.04139256104826927, -0.013616350479424, -0.0033522394951432943, 0.013044234365224838, -0.01134934276342392, 0.009675904177129269, -0.02425769902765751, -0.0042837150394916534, -0.02827681228518486, 0.0009654450113885105, 0.0068939924240112305, -0.0063361795619130135, 0.015461422502994537, 0.024372123181819916, -0.015504331327974796, 0.0061788479797542095, -0.007494713645428419, -0.03856058791279793, 0.011070435866713524, -0.023656979203224182, -0.004201473668217659, -0.02508726716041565, -0.030922845005989075, 0.024400727823376656, 0.003861780045554042, -0.02827681228518486, -0.030465153977274895, -0.018579453229904175, -0.013151505962014198, -0.025630777701735497, -0.00678672082722187, 0.026946643367409706, -0.0026424587704241276, -0.00021688990818802267, 0.009654450230300426, 0.027618877589702606, -0.018150366842746735, 0.0010315958643332124, -0.0028999107889831066, 0.002050676615908742, -0.003402299713343382, 0.00866755098104477, -0.004094202071428299, 0.009232514537870884, -0.04021972417831421, -0.00994050782173872, -0.003198483493179083, 0.015618754550814629, 0.01644832268357277, 0.03538534790277481, -0.0007182732224464417, -0.003634721739217639, -0.011692611500620842, -0.001025338307954371, -0.0001154287820099853, -0.008352886885404587, -0.015218273736536503, -0.03489904850721359, -0.006404118612408638, 0.008495915681123734, -0.0052491603419184685, -0.01047686580568552, 0.010598440654575825, 0.015504331327974796, 0.005156191531568766, -0.010298079811036587, -0.003743781242519617, 0.006189574953168631, -0.012979871593415737, -0.03066539391875267, 0.03455577790737152, -0.011077587492763996, -0.012078789994120598, 0.015475725755095482, 0.032238710671663284, 0.03718751296401024, -0.028190994635224342, 0.010033476166427135, -0.023671280592679977, -0.016863105818629265, 0.019552048295736313, -0.01219321321696043, 0.030436547473073006, 0.008631793782114983, 0.0219978429377079, -0.00199882872402668, 0.018207577988505363, -0.0029249407816678286, 0.0019130114233121276, -0.03747357055544853, 0.027404334396123886, 0.04505410045385361, -0.04491107165813446, -0.01058413740247488, 0.016062144190073013, -0.023599766194820404, 0.022898925468325615, -0.02318498305976391, -0.010641349479556084, -0.03375481814146042, 0.00888209417462349, -0.005370734725147486, -0.005964304786175489, -0.025287507101893425, 0.0006865386967547238, 0.014324342831969261, -0.018150366842746735, -0.02521599270403385, 0.24623852968215942, -0.037416357547044754, 0.013623502105474472, 0.023213589563965797, -0.008045375347137451, 0.006768842227756977, 0.016548441722989082, 0.018121760338544846, -0.012615147978067398, 0.03458438441157341, 0.007630591280758381, -0.008217009715735912, -0.022898925468325615, -0.01240775641053915, 0.02380000799894333, -0.02098233811557293, -0.037845443934202194, -0.030808422714471817, -0.0009511421085335314, 0.010240868665277958, 0.018908418715000153, 0.0016144386027008295, -0.014438766054809093, -0.01035529188811779, 0.03750217333436012, -0.0066901762038469315, -0.007880891673266888, 0.011900003999471664, -0.0030947874765843153, 0.00853167288005352, -0.022498443722724915, 0.007644894067198038, -0.010026325471699238, 0.0036168431397527456, -0.006325452588498592, 0.005216978956013918, 0.04007669538259506, 0.014181314036250114, 0.03418390452861786, 0.00428729085251689, 0.008009618148207664, -0.02267007902264595, -0.00018090919184032828, -0.01326592918485403, -0.02033870853483677, 0.01604784093797207, -0.006093030795454979, -0.02371419034898281, -0.002676428062841296, -0.001945192925632, -0.013931013643741608, -0.036500971764326096, 0.022341111674904823, 0.018708178773522377, -0.015075244940817356, -0.02986443229019642, 0.023385223001241684, -0.014846398495137691, 0.024286305531859398, 0.03936155140399933, 0.0018933449173346162, 0.0517764575779438, -0.02462957426905632, 0.02156875655055046, -0.014917912892997265, 0.0022616442292928696, -0.03507068380713463, -0.012307635508477688, -0.004237230867147446, -0.011742671951651573, -0.01819327473640442, -0.030751211568713188, -0.00926827173680067, -0.018021639436483383, -0.011056133545935154, -0.04679905250668526, 0.047256745398044586, 0.027461547404527664, 0.017435221001505852, 0.04585506021976471, -0.003700872417539358, -0.01829339563846588, 0.00626466516405344, 0.002143645426258445, -0.027118276804685593, -0.023471040651202202, 0.013273080810904503, -0.01278678234666586, -0.011435159482061863, 0.009876145049929619, -0.009540027007460594, -0.01789291389286518, -0.0007003945647738874, -0.002728275954723358, -0.0009350513573735952, 0.0032360285986214876, 0.022069357335567474, 0.018178971484303474, -0.012851146049797535, -0.009926204569637775, -0.037359144538640976, 0.01877969317138195, 0.0025620050728321075, 0.044224534183740616, 0.009153848513960838, -0.026860825717449188, -0.02653185836970806, 0.003690145444124937, 0.01283684279769659, -0.024457940831780434, 0.015532937832176685, -0.06510674953460693, 0.007373139262199402, 0.014531735330820084, -0.01266520842909813, 0.01679159142076969, 0.018064549192786217, -0.013337443582713604, -0.0381028950214386, 0.015947721898555756, 0.019809501245617867, -0.033096883445978165, -0.008903548121452332, -0.00048674517893232405, -0.009168151766061783, -0.011442311108112335, -0.03158077970147133, 0.00788804329931736, -0.01488930732011795, -0.043824050575494766, 0.005066798534244299, -0.03984784707427025, 0.04408150538802147, 0.026732100173830986, -0.010162202641367912, 0.020238587632775307, -0.024887027218937874, -0.011048981919884682, 0.013287384063005447, -0.014989427290856838, -0.006411269772797823, 0.028076570481061935, 0.007201504427939653, -0.007487562485039234, 0.025873925536870956, -0.029578374698758125, 0.009611541405320168, 0.011227767914533615, 0.020782098174095154, -0.018679572269320488, -0.045511793345212936, -0.002905274275690317, 0.015647361055016518, -0.012007275596261024, 0.016076447442173958, -0.015461422502994537, 0.0013310626382008195, -0.05014592781662941, 0.008817731402814388, 0.022956136614084244, -0.02288462221622467, -0.0037080240435898304, 0.01862236112356186, -0.007101384457200766, -0.0002798002678900957, -0.012371999211609364, -0.18284812569618225, 0.007230110466480255, 0.036500971764326096, -0.01156388595700264, 0.024543756619095802, 0.004566197283565998, 0.02851996012032032, -0.0013042447390034795, -0.01746382750570774, -0.02138281986117363, 0.012994174845516682, 0.001783391460776329, 0.0025852471590042114, 0.004101353231817484, -0.024100366979837418, 0.018479332327842712, -0.029750008136034012, 0.013244475238025188, 0.04328054189682007, 0.025859622284770012, 0.035671405494213104, -0.01960926130414009, -0.008646096102893353, 0.03504207730293274, 0.013430412858724594, 0.008259918540716171, -0.004591227509081364, -0.002713973168283701, 0.0022705835290253162, -0.012715267948806286, 0.004398138262331486, -0.008231312967836857, 0.023170679807662964, -0.007702105678617954, -0.01571887545287609, -0.018550846725702286, -0.011764125898480415, -0.008124041371047497, -0.030779816210269928, 0.0028391233645379543, -0.0111991623416543, 0.03361178934574127, 0.005406491924077272, -0.015761783346533775, -0.028848927468061447, 0.03295385465025902, 0.01004777941852808, -0.03804568573832512, -0.0015482876915484667, 0.009246817789971828, 0.012686662375926971, -0.017878610640764236, 0.023256497457623482, 0.008710459806025028, 0.01341610960662365, 0.032581981271505356, 0.005306371953338385, 0.0207964014261961, 0.01853654347360134, 0.013859499245882034, 0.009103788994252682, -0.0219978429377079, 0.02814808487892151, -0.002454733243212104, -0.023757098242640495, -0.01840781792998314, -0.0035006320104002953, 0.022112267091870308, -0.023900127038359642, 0.01736370660364628, 0.016305293887853622, -0.000622175692114979, 0.0015098487492650747, -0.0010324898175895214, 0.028934745118021965, 0.005360007751733065, -0.005964304786175489, 0.0012050183722749352, 0.001038747257553041, 0.0025173083413392305, -0.043080300092697144, 0.06052982434630394, -0.005924971774220467, -0.0051955245435237885, 0.023542555049061775, -0.006379088386893272, 0.013823742046952248, -0.01789291389286518, -0.035671405494213104, -0.023757098242640495, 0.020295798778533936, -0.0072587160393595695, 0.001795012503862381, -0.006346907000988722, 0.012279029935598373, 0.023213589563965797, -0.0019827380310744047, -0.006482784636318684, -0.019580654799938202, -0.0064255730248987675, 0.00017945656145457178, -0.021826207637786865, -0.0046841963194310665, 0.01902284286916256, 0.00983323622494936, 0.017850005999207497, -0.001968435011804104, 0.0307226050645113, 0.04139256104826927, 0.009196757338941097, 0.011835640296339989, -0.00747325923293829, 0.013473321683704853, 0.0319240465760231, 0.024071762338280678, 0.0037223268300294876, -0.0017753461143001914, -0.005885638762265444, 0.02787633053958416, 0.028620081022381783, -0.025959743186831474, -0.01779279299080372, -0.0010047779651358724, 0.04782886058092117, 0.010562683455646038, -0.03158077970147133, -0.04142116755247116, 0.002109676133841276, 0.011907154694199562, 0.046884868294000626, -0.011263525113463402, 0.022870318964123726, -0.01636250503361225, 0.018822601065039635, -0.012958417646586895, 0.05014592781662941, 0.004491107072681189, -0.01510385051369667, -0.02218378148972988, 0.008960760198533535, -0.01596202328801155, 0.02422909438610077, -0.0070441728457808495, -0.008338584564626217, 0.018207577988505363, 0.04196467623114586, -0.00021688990818802267, -0.002190129831433296, 0.03538534790277481, -0.023299405351281166, 0.00736598763614893, 0.006350482814013958, -0.020624766126275063, 0.03979063779115677, 0.0037223268300294876, 0.022655775770545006, 0.02221238613128662, -0.011985820718109608, -0.02854856662452221, -0.01776418834924698, 0.019537746906280518, 0.00117551872972399, -0.012722419574856758, -0.05140458419919014, 0.019280293956398964, -0.015246879309415817, -0.013916711322963238, 0.020224284380674362, -0.015976326540112495, -0.011099041439592838, -0.00018414969963487238, -0.02049604058265686, -0.001338214031420648, 0.05343559384346008, -0.008073980920016766, -0.02086791582405567, -0.05023174732923508, 0.008138343691825867, 0.004770013503730297, -0.02282741107046604, 0.006164545193314552, 0.01230048481374979, 0.002349249552935362, 0.007466108072549105, -0.03544255718588829, 0.0026639129500836134, 0.030121883377432823, -0.009640146978199482, -0.018793996423482895, 0.03226731717586517, 0.014846398495137691, 0.009139546193182468, -0.006568601820617914, 0.011506673879921436, 0.012493573129177094, 0.000777272623963654, -0.011664005927741528, 0.025015752762556076, 0.004491107072681189, 0.03987645357847214, -0.025502050295472145, -0.008867790922522545, 0.006897568237036467, -0.013952468521893024, 0.01329453568905592, -0.012085940688848495, -0.007923800498247147, -0.011764125898480415, -0.006665146443992853, -0.01534700021147728, 0.013959619216620922, 0.002713973168283701, -0.011184859089553356, 0.009754570201039314, -0.008267070166766644, -0.028448445722460747, -0.00033321260707452893, 0.024214791133999825, 0.020538948476314545, -0.02674640156328678, 0.004272988066077232, 0.013115748763084412, 0.014281434938311577, 0.007115687243640423, -0.02221238613128662, 0.004469652660191059, -0.033554576337337494, -0.052462995052337646, -0.07958127558231354, 0.018150366842746735, 0.004015536047518253, 0.0025190962478518486, 0.0016439382452517748, -0.014317192137241364, 0.01039820071309805, 0.009568632580339909, -0.0069047193974256516, -0.01231478713452816, -0.008038223721086979, 0.020782098174095154, -0.004226503893733025, -0.013287384063005447, -0.019552048295736313, -0.022598564624786377, 0.014331494458019733, -0.012157456018030643, 0.013544836081564426, 0.009597238153219223, 0.013559138402342796, 0.03298246115446091, 8.034201164264232e-05, -0.00043579115299507976, -0.00863894447684288, 0.024329213425517082, -0.021239789202809334, 0.03498486801981926, -0.013838045299053192, -0.02015276998281479, 0.009504269808530807, -0.016219476237893105, -0.019981136545538902, 0.014445917680859566, 0.009675904177129269, 0.00903942622244358, -0.00765204569324851, -0.015890508890151978, 0.009868993423879147, 0.016705773770809174, -0.02640313282608986, -0.015261182561516762, 0.029292317107319832, 0.01754964515566826, 0.0036543880123645067, 0.004165716469287872, -0.007845134474337101, 0.003196695586666465, 0.009368392638862133, -0.0009305817075073719, 0.02058185636997223, -0.003947597462683916, -0.026031257584691048, -0.028262509033083916, -0.010519774630665779, -0.04760001599788666, 0.015790389850735664, -0.014631855301558971, 0.005950001999735832, -0.0018575877184048295, 0.009211060591042042, 0.012250424362719059, 0.024944238364696503, -0.020295798778533936, -0.008824882097542286, -0.011971518397331238, -0.03298246115446091, -0.011377948336303234, -0.015447120182216167, -0.0005779261118732393, -0.005020313896238804, -0.009175303392112255, -0.012650905176997185, 0.023571161553263664, 0.007137141656130552, 0.02578810788691044, -0.005334977526217699, 0.007051324471831322, -0.005377886351197958, 0.020853612571954727, 0.01493221614509821, -0.020510341972112656, -0.0077092573046684265, 0.014488826505839825, 0.026088468730449677, 0.005073949694633484, -0.012178909964859486, 0.021025246009230614, -0.02251274697482586, -0.004641287494450808, 0.003768811235204339, -0.017020437866449356, -0.019194476306438446, 0.0015161061892285943, 0.023456737399101257, 0.028591474518179893, -0.005531642120331526, 0.0010566259734332561, 0.011113344691693783, 0.01109189074486494, 0.003847477026283741, -0.006922598462551832, -0.00478789210319519, -0.022999044507741928, -0.011878549121320248, 0.010126445442438126, 0.0037187510170042515, -0.024758299812674522, 0.0190514475107193, 0.009561480954289436, -0.02661767601966858, -0.009847539477050304, -0.019065750762820244, 0.028991956263780594, -0.018908418715000153, 0.010905953124165535, 0.003740205429494381, -0.006046546157449484, -0.04182164743542671, 0.02763318084180355, 0.01450312975794077, 0.017749885097146034, 0.021954935044050217, -0.027590272948145866, 0.025044359266757965, -0.01536130253225565, 0.03721611574292183, -0.0307226050645113, 0.008824882097542286, -0.013366050086915493, -0.0066293892450630665, 0.017749885097146034, -0.019795197993516922, 0.008495915681123734, 0.002687155269086361, 0.005606732331216335, 0.03404087573289871, -0.0009690207079984248, -0.004405289888381958, 0.085874542593956, 0.010884498246014118, 0.0012792146299034357, -5.1847971917595714e-05, -0.018793996423482895, 0.020181376487016678, 0.020267194136977196, -0.00605012197047472, 0.015790389850735664, -0.010426806285977364, 0.009289726614952087, -0.0038689314387738705, -0.009261121042072773, -0.01456749252974987, 0.01862236112356186, -0.012286181561648846, -0.015661662444472313, 0.027676090598106384, -0.00507752550765872, 0.013344595208764076, 0.03544255718588829, -0.007816528901457787, 0.0020685552153736353, 0.0006123424391262233, -0.004770013503730297, -0.012236121110618114, 0.0166342593729496, -0.00621102936565876, -0.022169478237628937, 0.013122900389134884, -0.009747418574988842, 0.004119231831282377, -0.00014649286458734423, -0.04442477226257324, -0.01015505101531744, -0.010298079811036587, -0.008009618148207664, 0.014145556837320328, 0.03069400042295456, 0.020596159622073174, -0.027103975415229797, 0.019494837149977684, -0.02468678541481495, -0.02980722114443779, -0.002093585440889001, -0.01583329774439335, 0.007240837439894676, 0.01278678234666586, -0.03592885658144951], "b9fdbcb9-5edc-43ae-8050-dd72079dac26": [-0.015523308888077736, -0.011139537207782269, 0.0053114998154342175, -0.03082912787795067, 0.007999533787369728, 0.007761654444038868, -0.03167190030217171, -0.029361074790358543, 0.007836416363716125, -0.02620747871696949, -0.003340501803904772, -0.010011310689151287, -0.006242626812309027, 0.00012329357559792697, -0.010344341397285461, -0.011363822966814041, 0.020498380064964294, 0.010276376269757748, 0.040779270231723785, -0.03727225214242935, 0.007143168710172176, -0.006031933706253767, -0.012818284332752228, -0.015400971285998821, -0.024440376088023186, 0.005291110370308161, 0.03322151303291321, -0.0342274010181427, 0.006303795613348484, -0.01170365046709776, 0.018350671976804733, -0.003874030662700534, -0.007639316841959953, -0.01674668677151203, -0.01662435010075569, 0.01748071424663067, 0.030421335250139236, 0.002633661264553666, 0.0006376008968800306, -0.007285896223038435, 0.023298555985093117, 0.0004995460622012615, 0.00586541835218668, -0.008318970911204815, -0.03172627091407776, 0.01394651085138321, -0.017793355509638786, -0.008604425936937332, -0.008298581466078758, 0.005420244764536619, 0.0023397107142955065, 0.01939733885228634, -0.02089257910847664, -0.026180291548371315, 0.011751226149499416, 0.0016464630607515574, 9.939946903614327e-05, 0.015265040099620819, 0.004781369585543871, -0.0030244626104831696, 0.022523749619722366, 0.006511090323328972, -0.01603984646499157, 0.0012760513927787542, -0.00358177931047976, -0.010099666193127632, -0.006246024742722511, 0.010065683163702488, -0.005060027819126844, 0.003982775378972292, 0.002276842715218663, 0.027729904279112816, 0.008414123207330704, -0.0007973196916282177, 0.03996368497610092, -0.002467145910486579, -0.02849111706018448, -0.004200264811515808, 0.014843654818832874, 0.007578147575259209, -0.012437677942216396, 0.02161301299929619, 0.004125502891838551, -0.0070072379894554615, -0.003938598092645407, 0.018024437129497528, -0.015129109844565392, 0.018527381122112274, 0.02153145521879196, 0.0016965875402092934, -0.015958288684487343, 0.030013542622327805, 0.026071546599268913, 0.017630238085985184, -0.002565695671364665, 0.013960103504359722, -0.022782018408179283, 0.00787039939314127, -0.025813277810811996, -0.025283148512244225, -0.01220659539103508, 0.004475525114685297, -0.02249656431376934, -0.010283173061907291, -0.021816909313201904, -0.015509716235101223, 0.04858170449733734, 0.006796544883400202, 0.005943578667938709, -0.00514498446136713, -0.02692791260778904, 0.030176660045981407, 0.0035376017913222313, -0.040833644568920135, -0.01723603904247284, 0.018840022385120392, 0.02938826195895672, -0.007700485642999411, -0.01950608380138874, -0.00843451265245676, 0.018024437129497528, 0.03213406354188919, 0.006636826321482658, 0.014884433709084988, 0.047303952276706696, 0.021585827693343163, -0.009623907506465912, 0.007143168710172176, -0.012091053649783134, -0.03776160627603531, 0.04782048985362053, -0.0021748943254351616, 0.01760305091738701, 0.014435862191021442, -0.018296299502253532, 0.01998184248805046, -0.004794962704181671, 0.0007527173729613423, -0.00849568098783493, -0.023828687146306038, 0.011343433521687984, 0.005291110370308161, 0.020607125014066696, -0.010215207003057003, -0.00525033101439476, 0.018350671976804733, 0.0071091861464083195, 0.014517419971525669, -0.004927495028823614, 0.001470602466724813, 0.007190744858235121, -0.0005624141194857657, 0.006932476069778204, 0.010908454656600952, 0.014639758504927158, 0.03542359173297882, 0.01459897868335247, 0.010330748744308949, -0.022890763357281685, -0.001579347182996571, 0.011717244051396847, 0.02656089887022972, 0.02177613042294979, -0.01723603904247284, 0.014680537395179272, 0.029768867418169975, 0.010391917079687119, 0.006307194009423256, 0.004655633587390184, -0.0011265273205935955, -0.006558666005730629, 0.02859986200928688, -0.018622534349560738, 0.022238295525312424, -0.025337520986795425, 0.02830081433057785, 0.013606683351099491, 0.01173083670437336, -0.0010152339236810803, -0.012002699077129364, -0.01841863803565502, -0.006674207281321287, 0.015509716235101223, 0.0207702424377203, 0.006674207281321287, -0.018024437129497528, 0.02657449059188366, -0.007496589329093695, 0.00210183160379529, -0.010160834528505802, 0.016964176669716835, 0.0356682687997818, 0.0062596178613603115, -0.01662435010075569, -0.6185399889945984, -0.015754392370581627, 0.015224261209368706, -0.012063867412507534, 0.02117803506553173, 0.02286357805132866, 0.010453086346387863, -0.0021222212817519903, -0.018568161875009537, 0.016298115253448486, -0.0031637917272746563, -0.008536460809409618, -0.0006779553950764239, 0.0009617111063562334, -0.011404602788388729, -0.01143178902566433, 0.023366522043943405, -0.009793821722269058, 0.012383305467665195, 0.027512414380908012, -0.012634777463972569, 0.0028052739799022675, -0.009909362532198429, -0.004264832008630037, 0.01098321657627821, 0.025337520986795425, 0.01801084540784359, -0.012471660040318966, -0.018527381122112274, 0.02513362467288971, -0.005624141078442335, 0.008685984648764133, -0.011690057814121246, -0.01704573445022106, 0.046461183577775955, -0.006337778177112341, -0.006558666005730629, 0.024277258664369583, 0.006042128428816795, 0.02639778144657612, -0.02040322870016098, 0.002217372879385948, 0.034200213849544525, -0.005729487631469965, 0.006198449060320854, 0.007782044354826212, 0.0036089655477553606, -0.020376041531562805, 0.0065314797684550285, 0.0017671016976237297, 0.01343677006661892, -0.011893954128026962, 9.531092655379325e-05, 0.004247840493917465, -0.0036905240267515182, 0.029578564688563347, 0.020484786480665207, -0.01927500218153, 0.006779553834348917, 0.0021256194449961185, -0.02441319078207016, -0.0010288270423188806, -0.02191206067800522, 0.006918882951140404, -0.028409559279680252, 0.015890322625637054, -0.011153130792081356, -0.013266855850815773, 0.0037924721837043762, -0.0038128618616610765, -0.0060591199435293674, -0.0015997368609532714, -0.018622534349560738, 0.00918892864137888, 0.00692567927762866, 0.02130037173628807, 0.022537343204021454, -0.018337078392505646, 0.01229494996368885, 0.010942437686026096, 0.009168539196252823, 0.003894420340657234, -0.010867675766348839, 0.0033948742784559727, 0.029578564688563347, 0.01586313545703888, -0.05380145087838173, 0.0010781019227579236, 0.025160809978842735, 0.009759838692843914, 0.040425851941108704, 0.019478898495435715, -0.001572550623677671, -0.005607149563729763, 0.011125944554805756, 0.02627544291317463, -0.016909804195165634, 0.019614828750491142, 0.014911619946360588, -0.019533270969986916, -0.03632073849439621, -0.005542582366615534, -0.0037109137047082186, -0.004373576957732439, 0.023067474365234375, -0.003918208181858063, -0.020076993852853775, 0.008937456645071507, 0.04542810842394829, -0.0028783369343727827, -0.0007187346345745027, -0.005410050041973591, -0.016134997829794884, -0.011085164733231068, 0.030067915096879005, -0.035097360610961914, 0.037136323750019073, 0.016964176669716835, 0.0022649485617876053, -0.010962827131152153, 0.0261395126581192, -0.000262516550719738, -0.005060027819126844, 0.006307194009423256, -0.014748502522706985, 0.016828246414661407, 0.008658798411488533, -0.019764352589845657, -0.01926140859723091, 0.023951025679707527, 0.0029191160574555397, 0.007374251261353493, 0.01711370050907135, -0.010670576244592667, 0.0034356536343693733, -0.012464864179491997, 0.0097190598025918, -0.015197074972093105, 0.007415030617266893, -0.031916577368974686, -0.0048187505453825, -0.01531941257417202, 0.013192093931138515, 0.002822265261784196, -0.01813318207859993, -0.031128177419304848, -0.01574079878628254, -0.00197609537281096, -0.015903916209936142, 0.012417287565767765, 0.0010330748045817018, 0.006405743770301342, -0.0016005863435566425, 0.0062290336936712265, -0.010935640893876553, 0.0027984774205833673, -0.01956045627593994, -0.022523749619722366, -0.007856805808842182, -0.007877196185290813, 0.009630704298615456, -0.02399180456995964, -0.008298581466078758, -0.023380115628242493, -0.01850019581615925, -0.022782018408179283, 7.80009722802788e-05, -0.0008325767703354359, -0.014748502522706985, -0.02884453721344471, -0.01674668677151203, 0.00793156772851944, -0.011805598624050617, -0.0009294275660067797, 0.0008181341108866036, 0.03759848698973656, -0.0028783369343727827, -0.010772524401545525, 0.010990013368427753, -0.019166257232427597, 0.0010347740026190877, 0.004737191833555698, -0.005777063313871622, -0.017086515203118324, 0.0028579472564160824, 0.009535552933812141, 0.017100106924772263, 0.04869044944643974, 0.006789748556911945, 0.01343677006661892, 0.008067498914897442, 0.014857247471809387, 0.019043918699026108, 0.0013227775925770402, 0.006799943279474974, 0.018296299502253532, -0.012668760493397713, 0.004105113446712494, -0.010140445083379745, 0.03058445267379284, 0.025922022759914398, -0.0032147658057510853, 0.01050066202878952, -0.014055254869163036, 0.030856315046548843, -0.0215994194149971, 0.010120055638253689, -0.012308543547987938, 0.008013126440346241, 0.027199773117899895, 0.0072587099857628345, -0.009678279981017113, -0.015509716235101223, -0.020199332386255264, 0.03792472183704376, 0.010303562507033348, -0.02483457513153553, 0.00035469469730742276, -0.011363822966814041, 0.005926587153226137, 0.007190744858235121, -0.004638642072677612, 0.00939962174743414, -0.020906172692775726, -0.021110069006681442, -0.0114929573610425, 0.008040312677621841, 0.004760979674756527, -0.01028996892273426, -0.050539109855890274, -0.02578609250485897, -0.002735609421506524, -0.004349788650870323, -0.001254812115803361, 0.003156995167955756, -0.017521493136882782, 0.029823239892721176, -0.00691208615899086, 0.011601702310144901, 0.034444890916347504, 0.011323044076561928, 0.03213406354188919, -0.009236505255103111, -0.002305727917701006, 0.030475707724690437, 0.01097642071545124, 0.05763470381498337, 0.023679163306951523, -0.015088330022990704, 0.017929285764694214, -0.05021287500858307, 0.0008555151289328933, -0.04681460186839104, 0.012852266430854797, 0.0033744846004992723, -0.0006342026172205806, 0.012349322438240051, 0.02626185119152069, 0.008441309444606304, 0.012947418726980686, 0.014503827318549156, -0.009005422703921795, -0.012464864179491997, 0.005155179649591446, -0.014898027293384075, -0.018649719655513763, 0.012193001806735992, -0.011961919255554676, 0.008760746568441391, -0.008685984648764133, -0.015536902472376823, -0.01568642631173134, -0.00022364880715031177, -0.022700460627675056, -0.005015850067138672, -0.007075203582644463, 0.0007824522326700389, -0.00846849475055933, 0.010303562507033348, -0.004995460622012615, -0.022727645933628082, -0.03849563002586365, 0.03229718282818794, 0.015360192395746708, -0.0038162600249052048, -0.02944263257086277, 0.005511998198926449, -0.00048128035268746316, -0.008040312677621841, 0.005212950054556131, 0.01432711724191904, 0.013783393427729607, 0.03985494002699852, 0.019193442538380623, -0.023352928459644318, -0.03346618637442589, 0.018935173749923706, -0.012566812336444855, -0.03178064525127411, -0.026724014431238174, 0.03526047617197037, 0.022347040474414825, -0.01903032697737217, 0.0081694470718503, 0.04852733388543129, 0.024086955934762955, -0.006195050664246082, 0.014354303479194641, -0.010595813393592834, -0.025106437504291534, -0.016134997829794884, -0.024630678817629814, -0.009895769879221916, -0.0026659448631107807, 0.0031790840439498425, 0.00888988096266985, 0.014503827318549156, -0.02865423448383808, 0.006303795613348484, 0.01614859141409397, -0.00945399422198534, -0.022890763357281685, -0.013749410398304462, 0.006541674491018057, 0.04415035620331764, -0.01693698950111866, 0.0024552519898861647, 0.01322607696056366, -0.029877612367272377, -0.021572234109044075, -0.010283173061907291, -0.0032504478003829718, -0.00011299256584607065, -0.02370634861290455, -0.001105288160033524, -0.0045502870343625546, 0.00846849475055933, -0.00764611316844821, 0.010663779452443123, -0.006320787128061056, 0.023203404620289803, -0.0050260452553629875, 0.018473010510206223, -0.013164907693862915, -0.00514498446136713, 0.012961011379957199, 0.007272303104400635, 0.005780461709946394, -0.004852733109146357, -0.018622534349560738, 0.001675348379649222, 0.02789302170276642, 0.003116216044872999, -0.014014475978910923, 0.0008996926480904222, -0.016665128991007805, -0.014177593402564526, 0.01830989308655262, -0.0023533038329333067, 0.008624815382063389, 0.0038196584209799767, 0.05573166906833649, 0.010072479955852032, 0.004281823523342609, -0.005015850067138672, 0.021517861634492874, -0.00034088920801877975, -0.006456717848777771, 0.006371761206537485, 0.005267322529107332, -0.004917300306260586, 0.02465786598622799, -0.014408675953745842, -0.04787486419081688, 0.041866715997457504, -0.004998859018087387, -0.03259623050689697, -0.0178341343998909, 0.002988780615851283, 0.008849102072417736, -0.031508784741163254, 0.004852733109146357, 0.021395523101091385, -0.014381489716470242, 0.02388305962085724, -0.03333025798201561, -0.018622534349560738, -0.023325743153691292, -0.017018549144268036, -0.02685994654893875, 0.02358401194214821, -0.010731744579970837, -0.012009494937956333, -0.01208425685763359, 0.013090145774185658, -0.04548247903585434, -0.03632073849439621, 0.0021816908847540617, 0.015400971285998821, 0.009005422703921795, 0.0402083620429039, -0.01531941257417202, -0.006317388731986284, 0.015305819921195507, -0.023556824773550034, -0.003945394419133663, -0.0011885458370670676, -0.028762979432940483, 0.012424084357917309, -0.025337520986795425, 0.029904797673225403, -0.014843654818832874, -0.015237853862345219, 0.031100990250706673, 0.023529639467597008, -0.0026608475018292665, 0.025514230132102966, 0.02052556537091732, -0.018758464604616165, 0.017521493136882782, -0.006188254337757826, 0.018989546224474907, -0.012838673777878284, -0.02388305962085724, 0.002676139585673809, -0.04450377821922302, -0.011622091755270958, -0.003524008672684431, -0.01275031827390194, -0.002319321036338806, 0.02974168211221695, 0.006871307268738747, 0.023434488102793694, 0.009943345561623573, 0.006993644870817661, -0.0018724481342360377, 0.020321669057011604, 0.0024331631138920784, 0.018527381122112274, 0.00993654876947403, -0.0178885068744421, 0.002662546467036009, -0.0022360633593052626, -0.03327588364481926, 0.022890763357281685, -0.04667867347598076, 0.0016490117413923144, -0.008529664017260075, -0.011309451423585415, 0.013538718223571777, -0.00939962174743414, -0.03069319762289524, -0.007428623735904694, 0.007088796701282263, -0.0004727846826426685, 0.02518799528479576, 0.005732886027544737, -0.01319889072328806, -0.04115987569093704, 0.003420361317694187, 0.017521493136882782, 0.0076529099605977535, -0.004774572793394327, -0.014259151183068752, -0.03441770374774933, 0.01208425685763359, 0.006942670792341232, -0.015713611617684364, -0.024753017351031303, -0.03199813514947891, -0.00548821035772562, -0.003517212113365531, -0.006762562319636345, 0.0008776038885116577, 0.008482088334858418, 0.0037584893871098757, -0.015632053837180138, -0.0069562639109790325, 0.015944695100188255, -0.029225144535303116, -0.03322151303291321, -0.018880803138017654, 0.04322602599859238, 0.01867690682411194, 0.040371477603912354, 0.024032583460211754, 0.0012471660738810897, -0.007231524214148521, 0.025894837453961372, 0.0025351112708449364, -0.014666944742202759, 0.006871307268738747, -0.015360192395746708, -0.003513813717290759, 0.012288153171539307, 0.017317596822977066, -0.010222003795206547, -0.010188020765781403, 0.012376508675515652, 0.02518799528479576, -0.016434045508503914, 0.013001791201531887, -0.00846849475055933, -0.035042986273765564, -0.005240136291831732, 0.017072921618819237, 0.007639316841959953, -0.024073362350463867, 1.270369830308482e-05, -0.008264598436653614, 0.01716807298362255, -0.0012684052344411612, 0.012546421959996223, 0.027661938220262527, 0.004696412477642298, -0.022591715678572655, 0.004370178561657667, -0.005712496116757393, 0.02722696028649807, -0.009671484120190144, 0.0050770193338394165, -0.021803317591547966, -0.002886832458898425, 0.022238295525312424, 0.010589017532765865, 0.007095593027770519, 5.777063415735029e-05, 0.003520610276609659, 0.00429541664198041, 0.029306702315807343, -0.004526499193161726, -0.0027542999014258385, -0.006871307268738747, -0.010561831295490265, -0.04292697831988335, -0.017453527078032494, -0.012254171073436737, -0.030801942571997643, 0.02219751663506031, 0.017752576619386673, -0.013729020953178406, 0.007822823710739613, -0.007115982938557863, -0.03033977746963501, -0.002045760164037347, -0.0081422608345747, 0.04338914528489113, 0.006840722635388374, 0.0050056553445756435, 0.023679163306951523, 0.009148149751126766, 0.004261433612555265, -0.03063882514834404, -0.0041764769703149796, -0.008658798411488533, 0.042220138013362885, 0.04926135763525963, -0.02196643315255642, 0.008699577301740646, 0.00471340399235487, -0.003986173775047064, -0.03207969292998314, -0.03292246535420418, 0.005980959627777338, 0.021871281787753105, 0.0025453062262386084, -0.02685994654893875, 0.00021812661725562066, -0.011540533974766731, 0.016705907881259918, -0.03765286132693291, -0.034200213849544525, -0.024005398154258728, -0.004359983839094639, -0.009515163488686085, 0.011982308700680733, -0.021884875372052193, 0.0026948300655931234, 0.004896910861134529, -0.01913907192647457, 0.016719501465559006, 0.0005394757608883083, -0.02668323554098606, 0.016202963888645172, 0.015414563938975334, 0.03458082303404808, -0.010935640893876553, -0.014381489716470242, 0.03460800647735596, 0.012410491704940796, 0.007299489341676235, -0.009657890535891056, -0.0049750711768865585, 0.0519527904689312, -0.008488885127007961, 0.0067353760823607445, -0.013674648478627205, 0.011676464229822159, 0.013559107668697834, -0.008923863992094994, -0.0005636884598061442, 0.0013975396286696196, -0.026588084176182747, -0.000893745687790215, 0.03248748555779457, -0.03178064525127411, 0.014476641081273556, -0.0063105919398367405, -0.004370178561657667, 0.010636593215167522, -0.014381489716470242, -0.003727904986590147, 0.037435371428728104, -0.05146344006061554, -0.015781577676534653, -0.021708164364099503, -0.023665569722652435, 0.00514498446136713, 0.0070072379894554615, -0.017970064654946327, -0.016121404245495796, 0.03153596818447113, -0.04637962207198143, 0.0208246149122715, -3.152694105779119e-08, 0.003625956829637289, 0.008067498914897442, -0.012301746755838394, 0.0011715544387698174, -0.022183923050761223, 0.018024437129497528, -0.013423176482319832, 0.00915494654327631, -0.0216537918895483, 0.006266414653509855, 0.0066028437577188015, 0.01534659881144762, 0.0077548581175506115, 0.01429993100464344, 0.001583595061674714, 0.004771174862980843, 0.011819192208349705, -0.0036939221899956465, -0.003036356531083584, 0.009406418539583683, 0.002059353282675147, -0.010405510663986206, -0.02184409648180008, 0.025949209928512573, -0.01692339777946472, -0.019968248903751373, 0.008692781440913677, -0.03827814385294914, -0.03292246535420418, -0.004849334713071585, -0.0037958703469485044, -0.01830989308655262, 0.0003120038891211152, -0.027621159330010414, -0.013028976507484913, -0.025106437504291534, -0.03368367627263069, -0.011091961525380611, -0.033112768083810806, 0.007591740693897009, 0.04338914528489113, 0.0010152339236810803, 0.012723132036626339, -0.007618926931172609, -0.01980513334274292, -0.018704092130064964, -0.014666944742202759, -0.02346167340874672, -0.010092869400978088, -0.021409116685390472, 0.03343900293111801, -0.007761654444038868, -0.0327865332365036, -0.04306291043758392, 0.0019234222127124667, -0.03142722323536873, -0.026601677760481834, 0.010507458820939064, 0.009617111645638943, 0.03792472183704376, -0.011200706474483013, 0.02094695158302784, 0.010901658795773983, -0.01903032697737217, -0.007197541184723377, -0.009379232302308083, -0.003138304688036442, -0.02525596134364605, -0.023556824773550034, -0.0007684343727305532, 0.00924330111593008, -0.03194376081228256, -0.010888065211474895, 0.023842280730605125, 0.009345249272882938, -0.002256453037261963, 0.029116399586200714, -0.014150407165288925, -0.000997393042780459, -0.01962842233479023, -0.0034900258760899305, -0.017276817932724953, 0.009277284145355225, -0.0034866277128458023, -0.04178515821695328, -0.010487069375813007, 0.006347972899675369, 0.013185297138988972, -0.012111443094909191, 0.0275260079652071, 0.007442216854542494, 0.0063105919398367405, -0.0031213134061545134, -0.01913907192647457, -0.0051076035015285015, 0.0006431230576708913, 0.0003665886470116675, 0.028409559279680252, -0.0001180899707833305, -0.017738983035087585, 0.020362449809908867, 9.520472667645663e-05, 0.007251913659274578, -0.015400971285998821, 0.015251447446644306, -0.013348414562642574, 0.0026897327043116093, 0.007394641172140837, -0.01658356934785843, 0.030122287571430206, -0.027417263016104698, 0.02003621496260166, -0.010622999630868435, -0.00011309875844744965, 0.00787039939314127, -0.021680979058146477, -0.031046617776155472, 0.010582220740616322, 0.028056137263774872, -0.030475707724690437, -0.01432711724191904, -0.021504268050193787, -0.023896653205156326, -0.021517861634492874, -0.012464864179491997, 0.009854990057647228, -0.04300853610038757, 0.022428598254919052, 0.02238781936466694, 0.005743080750107765, -0.008060702122747898, 0.0065008956007659435, 0.0028766377363353968, -0.0035783809144049883, -0.01688261888921261, 0.2329311966896057, -0.014531013555824757, -0.0020287686493247747, 0.03333025798201561, -0.020376041531562805, 0.009005422703921795, -0.0003489601076580584, 0.008815119042992592, -0.01591750793159008, 0.019424526020884514, 0.008624815382063389, 0.016298115253448486, -0.012872656807303429, -0.003989572171121836, 0.020376041531562805, -0.0035376017913222313, -0.01681465283036232, -0.02543267235159874, 0.00040694314520806074, -0.021463489159941673, 0.005175569094717503, -0.0036157621070742607, -0.015767984092235565, -0.015156295150518417, -0.002727113664150238, -0.012424084357917309, -0.002621767343953252, 0.00608970457687974, 0.015360192395746708, -0.006072713062167168, -0.030910687521100044, -0.006555267609655857, -0.006884900387376547, 0.006973255425691605, -0.003880827222019434, -0.021980026736855507, 0.024861762300133705, 0.011934733018279076, 0.01897595450282097, 0.015265040099620819, -0.008183040656149387, 0.00787039939314127, 0.0010653584031388164, -0.019220629706978798, -0.0006248573772609234, 0.012009494937956333, -0.010840489529073238, -0.018323484808206558, 0.011397805996239185, -5.315110684023239e-05, -0.018146775662899017, -0.002518119988963008, 0.03409146890044212, 0.017127294093370438, 0.017195258289575577, -0.0057023013941943645, 0.03651104122400284, 0.004509507678449154, 0.005885808262974024, 0.015944695100188255, -0.007680096197873354, 0.03830532729625702, -0.014707723632454872, 0.015115516260266304, -0.026370594277977943, 0.007917975075542927, -0.01429993100464344, -0.006215440575033426, 0.0007378499140031636, -0.0012429181952029467, 0.013776596635580063, -0.020797427743673325, -0.005709097720682621, -0.011771616525948048, -0.00661303848028183, -0.0357770137488842, 0.04469408094882965, 0.02854548953473568, 0.019968248903751373, 0.021585827693343163, -0.0025436070282012224, -0.0245898999273777, -0.0009778529638424516, 0.005216348450630903, -0.006548471283167601, -0.040670525282621384, 0.02369275689125061, -0.009596721269190311, 0.006378557533025742, 0.004244442563503981, -0.027063842862844467, -0.01387854479253292, 0.0037041171453893185, 0.006164466496556997, 0.024399597197771072, 0.019777946174144745, 0.005729487631469965, 0.01349793840199709, -0.019519677385687828, -0.003931801300495863, -0.006446523126214743, 0.009025812149047852, 0.021572234109044075, 0.009256894700229168, -0.028327999636530876, 0.00242976495064795, 0.004811953753232956, -0.0026506525464355946, 0.010561831295490265, -0.004893512465059757, 0.015183481387794018, -0.030475707724690437, 0.014965992420911789, -0.007693688850849867, 0.005168772768229246, 0.025351112708449364, -0.021436303853988647, -0.016488417983055115, 0.0007025928352959454, -0.0021409117616713047, 0.0021409117616713047, -0.02974168211221695, 0.0006248573772609234, 0.0018180757761001587, -0.026724014431238174, -0.015265040099620819, -0.012308543547987938, -0.0030091702938079834, -0.023964617401361465, -0.03531484678387642, 0.0015351696638390422, -0.0007854257710278034, 0.04118706285953522, -0.004410957917571068, -0.013246466405689716, 0.013960103504359722, 0.00179088965523988, -0.00894425343722105, 0.004961478058248758, -0.0010730045614764094, -0.016379673033952713, -0.005420244764536619, 0.010052090510725975, -0.005359075963497162, -0.01603984646499157, -0.041622042655944824, -0.011506550945341587, -0.0008130366913974285, 0.005817842669785023, -0.009732652455568314, -0.02590842917561531, -0.008815119042992592, -0.005376067012548447, 0.004519702401012182, 0.0012454668758437037, 3.54694711859338e-05, 0.0036157621070742607, -0.02639778144657612, -0.006697995122522116, 0.01462616492062807, -0.026547305285930634, -0.0035545930732041597, 0.03792472183704376, -0.012498846277594566, -0.020009029656648636, -0.0342274010181427, -0.17388281226158142, 0.020240111276507378, 0.031100990250706673, -0.019913876429200172, 0.013056162744760513, -0.014218372292816639, 0.0019794937688857317, 0.004268230404704809, 0.005912994034588337, -0.013429973274469376, 0.01866331323981285, -0.009644297882914543, -0.004393966402858496, -0.03082912787795067, -0.0043293992057442665, 0.009549145586788654, -0.009583128616213799, 0.0035579914692789316, 0.05309461057186127, 0.0045808712020516396, 0.02925232984125614, -0.02405976876616478, 0.005440634209662676, 0.028409559279680252, 0.0041798753663897514, 0.02112366259098053, -0.0022309659980237484, 0.00039037654642015696, 0.03088350035250187, -0.0009158344473689795, 0.011819192208349705, -0.012913435697555542, 0.011445381678640842, 0.0004455984744708985, -0.003413564758375287, 0.007048017345368862, 0.007591740693897009, -0.00421725632622838, -0.01939733885228634, 0.007054813671857119, -0.009651093743741512, 0.02652011811733246, 0.007455809973180294, -0.006130483467131853, -0.011391009204089642, 0.023135440424084663, 0.015876729041337967, -0.013307635672390461, -0.007571351248770952, -0.01373581774532795, 0.010772524401545525, -0.027974579483270645, 0.006691198796033859, -0.006966458633542061, 0.031264107674360275, 0.0010882967617362738, -0.0011120847193524241, 0.0009404719457961619, 0.0022156736813485622, 0.0009634102461859584, -0.03352056071162224, -0.01825552061200142, 0.017399154603481293, 0.004509507678449154, -0.0021290178410708904, -0.00692567927762866, 0.01001810748130083, 0.008923863992094994, -0.0060591199435293674, -0.00419007008895278, -0.009304470382630825, -0.015061143785715103, 0.015999067574739456, -0.004220654722303152, -0.0005811045994050801, 0.024222886189818382, -0.02388305962085724, -0.0031417030841112137, 0.011214299127459526, 0.0016532596200704575, -0.026125919073820114, 0.012974604964256287, -0.0115745160728693, 0.005678513552993536, 0.015210667625069618, 0.008923863992094994, -0.012702742591500282, 0.0009634102461859584, -0.039827752858400345, -0.014177593402564526, 0.0311825480312109, -0.027811462059617043, -0.00011798377818195149, -0.042029835283756256, 4.2504954762989655e-05, 0.003928402904421091, -0.007469403091818094, 0.0028273628558963537, -0.014843654818832874, -0.021830502897500992, -0.0032402528449892998, -0.014136813580989838, -0.005967366509139538, 0.0276347529143095, 0.027485229074954987, 0.011112350970506668, -0.01693698950111866, 0.023679163306951523, 0.0430900976061821, 0.022401412948966026, -0.007421827409416437, 0.0033863785210996866, 0.01771179586648941, 0.006697995122522116, -0.0014816467883065343, 0.007591740693897009, -0.01567283272743225, -0.02495691366493702, 0.02925232984125614, -0.0029191160574555397, 0.004611455835402012, -0.010888065211474895, 0.0035342033952474594, 0.020715869963169098, -0.001841863733716309, 0.008781136013567448, -0.05730846896767616, -0.01499317865818739, 0.014925212599337101, 0.036646969616413116, -0.01574079878628254, 0.0370003916323185, 0.005946977064013481, 0.012220188044011593, 0.01459897868335247, 0.039392776787281036, -0.0015920907026156783, -0.03324870020151138, -0.0033812811598181725, 0.0024926329497247934, -0.006585852243006229, 0.013613480143249035, 0.009236505255103111, 0.012906638905405998, -0.013117332011461258, 0.016896210610866547, -0.006759163923561573, 0.0032572441268712282, 0.020416822284460068, -0.02889890968799591, 0.009895769879221916, -0.018812837079167366, -0.030421335250139236, 0.025052065029740334, 0.014259151183068752, 0.010303562507033348, 0.018948767334222794, -0.002835858380421996, -0.029415447264909744, -0.020308077335357666, 0.0005683610797859728, -0.020308077335357666, 0.01205707062035799, -0.015781577676534653, 0.0130153838545084, -0.03931121528148651, -0.006891696713864803, 0.010813303291797638, -0.00028205662965774536, -0.014707723632454872, 0.0015827454626560211, -0.0178341343998909, 0.005991154350340366, 0.025867650285363197, 0.01202308852225542, -0.020865393802523613, -0.023121846839785576, -0.005192560609430075, 0.012526032514870167, -0.015333006158471107, 0.051191579550504684, 0.0013015384320169687, 0.01531941257417202, 0.00034407508792355657, -0.03776160627603531, 0.0015470635844394565, -0.006867908872663975, -0.009420011192560196, -0.010860878974199295, 0.023801501840353012, 0.0067557659931480885, 0.004944486543536186, -0.011003606952726841, -0.015265040099620819, 0.017371969297528267, 0.0023889855947345495, -0.0030176660511642694, 0.03561389818787575, -0.009379232302308083, 0.021218813955783844, -0.02297232300043106, -0.02555500902235508, -0.019370153546333313, -0.01166966836899519, 0.04787486419081688, 0.002511323429644108, -0.013164907693862915, -0.011893954128026962, -0.013898935168981552, -0.022211110219359398, 0.03860437497496605, 0.0034900258760899305, -0.018269112333655357, 0.016134997829794884, 0.008060702122747898, -0.03651104122400284, -0.00036149125662632287, 0.014163999818265438, 0.0021782927215099335, -0.04094238951802254, 0.0015564088243991137, 0.02777068316936493, -0.004339593928307295, -0.0018809438915923238, 0.017738983035087585, 0.016107812523841858, -0.020987730473279953, -0.030666012316942215, -0.08199352025985718, 0.015156295150518417, -0.0007221329142339528, -0.005338686052709818, 0.027091028168797493, 0.011710447259247303, 0.006014942191541195, 0.0017993852961808443, -0.00768689252436161, -0.006123687140643597, -0.02573172003030777, 0.011832784861326218, 0.0064329300075769424, -0.015999067574739456, -0.01651560515165329, -0.011268671602010727, 0.01076572760939598, 0.02520158886909485, 0.006286804098635912, 0.004495914559811354, -0.0006414239178411663, 0.019478898495435715, 0.00662663159891963, 0.003320112358778715, 0.0015895420219749212, 0.014422268606722355, -0.015496122650802135, 0.023176219314336777, -0.010609406977891922, -0.03648385405540466, 0.00798594020307064, -0.014340709894895554, -0.002890230854973197, 0.03387397900223732, -0.002834159415215254, -0.015101923607289791, -0.012247374281287193, 0.023733535781502724, 0.004319204483181238, 0.008047109469771385, -0.020960545167326927, -0.02968730963766575, 0.0021171236876398325, -0.002458650153130293, -0.012634777463972569, 0.007605333812534809, -0.002156203845515847, 0.010357934981584549, 0.0032572441268712282, 0.02830081433057785, 0.013565904460847378, 0.0045842695981264114, -0.024250073358416557, -0.029333889484405518, -0.02089257910847664, -0.02733570523560047, 0.016651535406708717, 0.00987538043409586, 0.01280469074845314, -0.0017637034179642797, 0.039528705179691315, 0.020783834159374237, 0.0071771517395973206, -0.00713637238368392, -0.000890347408130765, -0.0031230123713612556, -0.013164907693862915, 0.015061143785715103, 0.02465786598622799, -0.008896677754819393, -0.0007497438928112388, -0.014354303479194641, -0.008624815382063389, 0.01202308852225542, 0.012852266430854797, 0.003167190123349428, 0.0013958404306322336, 0.015237853862345219, -0.012260966934263706, 0.016705907881259918, -0.005073620937764645, -0.001527523505501449, -0.05138188228011131, 0.015835950151085854, 0.02226548083126545, -0.006341176573187113, -0.005087214056402445, 0.024576306343078613, -0.01504755113273859, 0.022890763357281685, 0.007544165011495352, -0.01998184248805046, -0.01824192702770233, 0.01568642631173134, 0.00115541263949126, 0.020144959911704063, -0.016189370304346085, -0.005607149563729763, 0.028762979432940483, 0.0274716354906559, 0.013565904460847378, -0.01432711724191904, 0.003034657333046198, -0.02476661093533039, -0.019669201225042343, 0.021762536838650703, -0.013620276004076004, -0.035749826580286026, 0.009345249272882938, 0.004767776466906071, -0.006201847456395626, 0.0014960895059630275, -0.041567668318748474, 0.008781136013567448, -0.018772058188915253, 0.01704573445022106, -0.006483904086053371, -0.0038706324994564056, -0.024576306343078613, 0.049587592482566833, 0.008006330579519272, 0.012709539383649826, 0.04265511780977249, -0.004771174862980843, 0.011391009204089642, 0.006701393518596888, 0.033357445150613785, -0.02908921241760254, 0.01885361596941948, -0.01760305091738701, 0.001886041252873838, 0.006721782963722944, -0.03159034252166748, -0.012736725620925426, -0.016175776720046997, 0.0075849443674087524, 0.00859083328396082, 0.014041662216186523, 0.006878103595227003, 0.0858539566397667, 0.0025351112708449364, -0.013103739358484745, 0.008203430101275444, -0.021014917641878128, 0.006504293531179428, 0.03303121030330658, 0.00576007179915905, 0.008767543360590935, -0.024943320080637932, 0.013769800774753094, 0.01534659881144762, -0.009977328591048717, -0.012614388018846512, -0.02705024927854538, -0.029551377519965172, -0.04569996893405914, 0.041078317910432816, -0.03501579910516739, -0.010663779452443123, 0.02698228321969509, 0.0048323436640203, 0.0024484554305672646, 0.006035332102328539, 0.01122109591960907, 0.005301305092871189, 0.026601677760481834, -0.003406768199056387, -0.02112366259098053, -0.0004451737040653825, -0.0009532154654152691, -0.014952398836612701, -0.02075664885342121, -0.040969572961330414, -0.007992736995220184, -0.014979585073888302, 0.0082238195464015, 0.0045808712020516396, 0.010888065211474895, 0.010561831295490265, 0.01454460620880127, 0.022877171635627747, -0.0403171069920063, -0.024250073358416557, -0.0012327233562245965, -0.004546888638287783, -0.014979585073888302, -0.021463489159941673, -0.027213366702198982], "8bb5fe02-f66d-4302-85cd-4c0c956bf6c0": [-0.037701595574617386, -0.018202198669314384, -0.00945299956947565, -0.015331799164414406, -0.020203199237585068, 0.0070724994875490665, -0.016104599460959435, -0.023018397390842438, -0.011557498946785927, -0.033616796135902405, -0.016656598076224327, -0.002402924932539463, -0.012337199412286282, -0.0027651747222989798, -0.016270197927951813, -0.010688099078834057, -0.001513687428086996, -0.00538544962182641, 0.02141759917140007, -0.007403699681162834, 0.0354107990860939, 0.023059798404574394, 0.005271599628031254, -0.03532799705862999, -0.018574798479676247, 0.006931049283593893, 0.005199149716645479, -0.021141598001122475, -0.004881749860942364, -0.0025633499026298523, 0.03786719590425491, -0.0028790247160941362, 0.010315499268472195, -0.011654099449515343, -0.006354899611324072, -0.01667039841413498, -0.009052799083292484, -0.005133599508553743, -0.004626449663192034, 0.01806419901549816, 0.014131198637187481, -0.015166198834776878, -0.001517999917268753, 0.017318999394774437, -0.01328249927610159, 0.008107499219477177, 0.0029980498366057873, -0.010343099012970924, -0.010211999528110027, 0.010032598860561848, -0.014807399362325668, 0.030249597504734993, -0.03615599870681763, -0.013786198571324348, 0.01984439790248871, -0.018271198496222496, -0.0010970999719575047, 0.001087612472474575, -0.02003759890794754, -0.013316999189555645, 0.015856198966503143, -0.012502798810601234, -0.014172598719596863, 0.012337199412286282, 0.02464679814875126, 0.00421244977042079, -0.029062798246741295, 0.01016369927674532, -0.007652099244296551, 0.0058097997680306435, 0.0019164748955518007, 0.02190059795975685, -0.02776559814810753, 0.009791099466383457, 0.036625199019908905, -0.01871279813349247, -0.00945299956947565, 0.0031015498097985983, 0.004353899508714676, 0.005837399512529373, -0.007776299491524696, -0.012385498732328415, 0.017001599073410034, -0.0024236247409135103, 0.013786198571324348, 0.009770398959517479, 0.004840349778532982, 0.0324023962020874, -0.009880798868834972, -0.024080997332930565, -0.011039999313652515, 0.012792599387466908, 0.004609199706465006, -0.003681149799376726, -0.01625639945268631, 0.009156299754977226, -0.025778397917747498, 0.022204197943210602, -0.008079899474978447, -0.010418999008834362, 0.02550239861011505, 0.0027858747635036707, -0.018988799303770065, -0.0016689373878762126, -0.04366319626569748, -0.008342099376022816, 0.019416598603129387, -0.014959199354052544, 0.019582198932766914, -0.008838899433612823, -0.015359398908913136, 0.04462919756770134, 0.0006067687063477933, -0.020106598734855652, -0.0353831984102726, 0.0055544995702803135, 0.04186919704079628, -0.030083997175097466, -0.014848798513412476, -0.01136429887264967, 0.0037466997746378183, 0.022093798965215683, 0.02639939822256565, 0.003939899615943432, 0.012965098954737186, 0.0013308373745530844, -0.036266397684812546, -0.0209897980093956, 0.015759598463773727, -0.033865198493003845, 0.048493195325136185, -0.006154799368232489, 0.008880299516022205, 0.023128798231482506, -0.006165149621665478, 0.017415598034858704, -0.0109433988109231, 0.00839729979634285, -0.011861098930239677, 0.005395799409598112, 0.042145196348428726, 0.011626498773694038, -0.010391399264335632, -0.011736898683011532, -0.0127442991361022, -0.004878299776464701, 0.0003193406155332923, 0.02428799867630005, 4.2127732740482315e-05, 0.005813249386847019, 0.005685599520802498, -0.005513099487870932, 0.009618598967790604, -0.020713798701763153, -0.0003081281029153615, 0.005982299335300922, 0.024218998849391937, 0.021569399163126945, -0.0002867812290787697, -0.025391997769474983, 0.013910398818552494, 0.014862598851323128, 0.006351449526846409, -0.007024199701845646, 0.003130874829366803, 0.03571439906954765, -0.009052799083292484, -0.0018181498162448406, -0.007493399549275637, -0.002038949867710471, 0.005564849823713303, 0.0012178499018773437, -0.02873159758746624, 8.576484106015414e-05, 0.008907899260520935, 0.013648198917508125, 0.002051024930551648, -0.007817699573934078, 0.006796499714255333, 0.01259939931333065, 0.0036880497355014086, -0.026716798543930054, 0.022894198074936867, -0.0053716497495770454, 0.010694999247789383, -0.01817459799349308, 0.043221596628427505, 0.0012264748802408576, 0.017539799213409424, 0.002245949814096093, 0.029283598065376282, 0.028055397793650627, 0.020948398858308792, -0.0005649374797940254, -0.5908607840538025, -0.01883699931204319, 0.000695174967404455, -0.01340669859200716, 0.014627998694777489, -0.007852199487388134, -0.0012549373786896467, 0.0293939970433712, -0.018519598990678787, 0.018215999007225037, -0.013227298855781555, 0.007376099471002817, 0.02399819903075695, -0.006582599598914385, -0.00743819959461689, -0.03138119727373123, 0.012040498666465282, -0.007879799231886864, 0.01686359941959381, 0.01613219827413559, -0.009846298955380917, 0.02460539899766445, -0.015345598571002483, 0.002118299948051572, 0.017429398372769356, 0.006696449592709541, -0.013682698830962181, -0.005878799594938755, -0.005430299788713455, 0.04115159809589386, -0.006044399458914995, -0.0017836499027907848, 0.014041499234735966, 0.001973399892449379, 0.06232079491019249, -0.02380499802529812, -0.01716719940304756, 0.0038570996839553118, 0.020092798396945, 0.0308843981474638, 0.007106999401003122, -0.028952397406101227, 0.047113195061683655, 0.0009306374122388661, 0.026081997901201248, -0.009618598967790604, 0.010239599272608757, -0.004805849865078926, 0.0071000996977090836, -0.008659499697387218, -0.010895099490880966, -0.009004499763250351, -0.009873899631202221, 0.008576699532568455, -0.014738398604094982, 0.02837279811501503, 0.027213597670197487, -0.017111998051404953, 0.018008999526500702, -0.040213197469711304, -0.01175759918987751, -0.004698899574577808, -0.021997198462486267, -0.003974399529397488, -0.024315597489476204, -0.018740398809313774, -0.0122957993298769, -0.003805349813774228, -0.02824859879910946, -0.024274198338389397, -0.015069599263370037, 0.019720198586583138, 0.0075002992525696754, 0.016601398587226868, 0.01811939850449562, 0.023377198725938797, 0.025764597579836845, -0.013806899078190327, 0.00043469996307976544, 0.010777799412608147, 0.009335699491202831, -0.010122299194335938, -0.03372719883918762, -0.0075554996728897095, 0.018864598125219345, 0.0061754994094371796, -0.035852398723363876, -0.003553499700501561, 0.007921199314296246, -0.0206999983638525, 0.027461998164653778, 0.0018871498759835958, 0.014834999106824398, -0.02260439842939377, 0.017732998356223106, 0.021100198850035667, -0.029228398576378822, -0.014082899317145348, 0.014862598851323128, -0.039743997156620026, -0.03905399888753891, 0.022949397563934326, 0.006544649600982666, 0.007838399149477482, 0.026468398049473763, -0.006517049390822649, -0.04592639580368996, 0.02602679841220379, 0.025585198774933815, -0.025999197736382484, -0.004850699566304684, -0.030001197010278702, -0.005913299508392811, 0.0017922748811542988, -0.0020993249490857124, -0.028041597455739975, 0.00858359970152378, -0.009211499243974686, 0.00962549913674593, -0.009308099746704102, 0.014282998628914356, -0.002709974767640233, -0.0016197748482227325, 0.015055798925459385, 0.0060133496299386024, 0.0017819248605519533, 0.032843995839357376, -0.0023063248954713345, -0.03403079882264137, 0.0030929248314350843, -0.013358399271965027, -0.011419499292969704, 0.02081039920449257, -0.021762598305940628, -0.0027824249118566513, -0.01382759865373373, 0.002908349735662341, -0.0008918249513953924, 0.039026398211717606, 0.0012764999410137534, -0.03267839923501015, -0.0008353312150575221, 0.011081399396061897, 0.013896599411964417, -0.01148159895092249, -0.0023649749346077442, -0.010667399503290653, 0.0040364996530115604, -0.004861049819737673, 0.0012877123663201928, 0.006082349456846714, 0.018215999007225037, -0.0127442991361022, 0.0324023962020874, 0.010225798934698105, 0.002402924932539463, -0.0007788374205119908, 0.012695998884737492, 0.016877397894859314, 0.005954699590802193, -0.011474698781967163, -0.02742059715092182, -0.006517049390822649, -0.0009168374235741794, -0.0011609249049797654, -0.018643798306584358, 0.01013609953224659, 0.007258799392729998, -0.013151398859918118, -0.04217279702425003, -0.024067198857665062, 0.02351519837975502, -0.0053750998340547085, -0.01883699931204319, 0.031822796911001205, 0.00011611405352596194, -0.01079849898815155, 0.021679798141121864, 0.020962199196219444, -0.005523449741303921, -0.0001704515452729538, -0.0073484992608428, -0.0016292623477056623, -0.010129199363291264, -0.00031998747726902366, 0.014793599024415016, 0.035355597734451294, 0.019085397943854332, -0.03345119580626488, -0.019775398075580597, -0.006927599664777517, 0.021983398124575615, -0.0001714218669803813, -0.0010953749297186732, 0.04170359671115875, 0.046340394765138626, 0.011095198802649975, 0.004467749502509832, 0.004847249481827021, 0.01142639946192503, 0.014655599370598793, 0.01842299848794937, -0.00816269963979721, -0.04752719774842262, 0.0022856248542666435, -0.045374397188425064, 0.03154679760336876, -0.013965599238872528, 0.010122299194335938, -0.012999598868191242, -0.0028910997789353132, -0.01457279920578003, -7.891874702181667e-05, 0.006941399537026882, 0.0308843981474638, -0.00490589952096343, -0.03270599618554115, 0.02039639838039875, 0.01436579879373312, 0.03267839923501015, 0.01541459932923317, 0.012364799156785011, 0.01738799922168255, -0.012640799395740032, -0.017291398718953133, -0.0046781995333731174, 0.035245198756456375, 0.011764499358832836, -0.009618598967790604, -0.024936597794294357, 0.0008534436929039657, -0.004723049700260162, -0.01835399866104126, -0.004174499772489071, 0.012758099474012852, -0.022811397910118103, 0.031822796911001205, 0.0010108499554917216, 0.008493899367749691, 0.0005757187027484179, -0.02093459852039814, 0.019388997927308083, 0.0020337747409939766, -0.04371839761734009, 0.029587198048830032, 0.0015568124363198876, 0.036680396646261215, 0.03138119727373123, -0.007638299372047186, 0.011723099276423454, -0.04059959575533867, -0.003248174674808979, -0.01967879943549633, 0.002822099719196558, -0.007403699681162834, -0.01431059930473566, -0.004281449597328901, 0.008141999132931232, 0.023473797366023064, 0.016118397936224937, 0.010839899070560932, 0.0503699965775013, -0.02765519730746746, 0.0013851749245077372, 0.010957199148833752, -0.02975279837846756, 0.001535249873995781, -0.029973598197102547, 0.011909399181604385, -0.0038950496818870306, -0.017360398545861244, -0.009935999289155006, 0.0009789373725652695, -0.0019337248522788286, 0.006724049337208271, -0.023349598050117493, 0.024563997983932495, 0.01631159894168377, 0.03461039811372757, -0.007893599569797516, 0.01077089924365282, -0.01166789885610342, 0.00572699960321188, 0.03449999913573265, -0.0070724994875490665, -0.01745699904859066, -0.003389624645933509, -0.006917249411344528, -0.028400398790836334, 0.021679798141121864, -0.024619197472929955, 0.013399799354374409, -0.007645199541002512, 0.031933195888996124, -0.0012911624507978559, 0.009411599487066269, 0.007928099483251572, -0.0004933499731123447, -0.019664999097585678, -0.023722197860479355, 0.018188398331403732, 0.005671799648553133, 0.0010315498802810907, -0.012488999404013157, 0.05152919515967369, 0.023349598050117493, 0.012751199305057526, 0.009101099334657192, 0.0018250498687848449, -0.01517999917268753, 0.006127199623733759, -0.02466059848666191, -0.010501799173653126, -0.03154679760336876, -0.009590999223291874, 0.02518499828875065, 0.0033413248602300882, -0.017774399369955063, 0.03952319547533989, 0.006379049737006426, -0.01649099960923195, -0.029200797900557518, -0.0269927978515625, -0.004547099582850933, -0.021279597654938698, 0.006937949452549219, -0.004150349646806717, -0.012799498625099659, -0.027254998683929443, 0.0057890997268259525, 0.002318399725481868, -0.02123819850385189, 0.010356899350881577, -0.011288398876786232, 0.013254898600280285, -0.005271599628031254, -0.008742298930883408, 0.0075554996728897095, 0.01032239943742752, -0.008597399108111858, -0.006034049671143293, -0.014186399057507515, 0.0230873990803957, -0.018202198669314384, 0.01034999918192625, 0.02758619748055935, 7.277342956513166e-05, 0.03317519649863243, -0.011681699194014072, -0.002382224891334772, -0.02500559762120247, 0.03367199748754501, -0.003715649712830782, 0.0034775997046381235, -0.017788197845220566, -0.001617187401279807, -0.006527399644255638, 0.030608396977186203, -0.018740398809313774, 0.02495039813220501, 0.01842299848794937, 0.03245759755373001, -4.409530811244622e-05, 0.028593597933650017, 0.007410599384456873, -0.006006449460983276, -0.015787199139595032, -0.013448098674416542, -0.013385999016463757, -0.007941899821162224, 0.0010082623921334743, 0.009004499763250351, 0.011564399115741253, -0.026054397225379944, 0.01181279867887497, -0.021872999146580696, -0.07722479104995728, 0.012675299309194088, 0.012661498971283436, 0.015083398669958115, -0.019292399287223816, 0.002035499783232808, 0.02842799760401249, -0.004253849852830172, -0.004122749902307987, -0.0109433988109231, 0.005830499343574047, -0.01551119890064001, -0.008880299516022205, -0.03690119832754135, -0.038363996893167496, -0.015345598571002483, -0.012330299243330956, 0.0035638497211039066, 0.03127079829573631, -0.017443198710680008, -0.03919199854135513, -0.01589759811758995, 0.029200797900557518, 0.01871279813349247, 0.024619197472929955, -0.005043899640440941, -0.01232339907437563, 0.02933879755437374, -0.005409599747508764, -0.026178598403930664, -0.0100463991984725, -0.00426074955612421, 0.02657879889011383, 0.0008594811661168933, 0.023142598569393158, -0.0008706937078386545, -0.013310099020600319, 0.02333579771220684, 0.014434798620641232, 0.019416598603129387, -0.006917249411344528, 0.01457279920578003, -0.02634419873356819, -0.01124699879437685, 0.0013627499574795365, 0.017912399023771286, -0.02417759783565998, 0.010922699235379696, 0.04656119644641876, -0.01391729898750782, -0.01625639945268631, -0.00011557499237824231, -0.0077417995780706406, -0.013648198917508125, 0.02692379802465439, 0.024798598140478134, 0.03066359832882881, 0.016835998743772507, 0.016587598249316216, -0.01190249901264906, 0.009839399717748165, -0.01584239862859249, -0.0012187124229967594, 0.024508798494935036, 0.0066619496792554855, -0.003091199789196253, -0.0191957987844944, 0.0020993249490857124, 0.03919199854135513, -0.029725197702646255, 0.03579719737172127, -0.0031636497005820274, -0.020796598866581917, -0.017111998051404953, -0.018505798652768135, -0.025267798453569412, -0.020230798050761223, 0.0185885988175869, -0.005699399393051863, -0.001042762422002852, -0.010853699408471584, -0.010701899416744709, -0.01655999943614006, 0.006917249411344528, 0.015676798298954964, 0.012102599255740643, -0.03593519702553749, -0.009556499309837818, 0.015055798925459385, -0.03047039732336998, 0.015276598744094372, -0.002168324775993824, 0.015221399255096912, -0.02675819769501686, -0.0008840624359436333, -0.01431059930473566, -0.023832598701119423, 0.017318999394774437, 0.01871279813349247, 0.01631159894168377, -0.03209879621863365, -0.020092798396945, 0.020299797877669334, -0.0278897974640131, -0.03342359885573387, -0.0015542248729616404, 0.02579219825565815, 0.027986397966742516, 0.011509198695421219, 0.0335891991853714, -0.012019799090921879, -0.010487998835742474, 0.007479599677026272, -0.008949299342930317, -0.010087799280881882, -0.002038949867710471, -0.017429398372769356, -0.0006028874777257442, -0.011088299565017223, 0.03516239672899246, 0.010481099598109722, 0.0014395123580470681, -0.013489498756825924, 0.013434299267828465, 0.0053233494982123375, 0.016753198578953743, -0.009770398959517479, -0.029780397191643715, 0.010639798827469349, -0.0044470494613051414, 0.0055510494858026505, 0.0035103748086839914, -0.027641398832201958, -0.024136198684573174, 0.006299699656665325, -0.025943998247385025, 0.011992199346423149, 0.01016369927674532, -0.0020009998697787523, -0.006917249411344528, -0.02512979879975319, 0.015345598571002483, 0.024011997506022453, 0.003694949671626091, 0.009963599033653736, -0.0371771976351738, 0.03695639595389366, 0.011157299391925335, -0.010550099425017834, 0.024398397654294968, -0.0040433998219668865, -0.011999099515378475, -0.0010824374621734023, -0.009328799322247505, -0.03345119580626488, -0.0066550495103001595, 0.013268698938190937, -0.005133599508553743, -0.037949997931718826, -0.02014799788594246, -0.012019799090921879, -0.01001879945397377, 0.034472398459911346, 0.01860239915549755, 0.002515049884095788, -0.0012023248709738255, -0.011398798786103725, -0.025060798972845078, 0.0012963374610990286, -0.017236199229955673, 0.008956199511885643, 0.0057373493909835815, 0.035189997404813766, 0.03971639648079872, 0.01960979774594307, 0.0047057997435331345, -0.051501594483852386, -0.03143639862537384, -0.00335167464800179, 0.040516797453165054, 0.02392919734120369, -0.00129029992967844, -0.01722239889204502, 0.009791099466383457, 0.008210998959839344, -0.0012971998658031225, -0.009239098988473415, 0.025930197909474373, 0.030083997175097466, 0.0008926874143071473, -0.019526999443769455, 0.014213998802006245, -0.030939597636461258, 1.7506054064142518e-05, -0.012730498798191547, 0.003798449644818902, -0.014048399403691292, -0.029945997521281242, -0.011654099449515343, -0.010301698930561543, -0.003293024841696024, 0.023404797539114952, 0.020920798182487488, -0.005074949469417334, -0.019209599122405052, 0.0007706437027081847, -0.005230199545621872, 0.024274198338389397, -0.019816799089312553, 0.013199699111282825, -0.009004499763250351, -0.02525399811565876, 0.0047092498280107975, -0.0007727999472990632, 0.007997099310159683, -0.017291398718953133, -0.0005757187027484179, 0.041399996727705, -0.028952397406101227, -0.015759598463773727, -0.01787099801003933, 0.011164199560880661, 0.02824859879910946, 0.006948299705982208, -0.015262799337506294, 0.008597399108111858, -0.04244879633188248, -0.0012212998699396849, 0.005016299430280924, 0.0017310373950749636, -0.009784199297428131, -0.003577649826183915, 0.004529849626123905, -0.02243879809975624, -0.020893199369311333, 0.009846298955380917, 0.01720859855413437, -0.020465398207306862, -0.033865198493003845, -0.029366398230195045, 0.00147314986679703, 0.009197698906064034, 0.01967879943549633, -0.019278598949313164, 0.008438698947429657, 0.04733399674296379, -0.02686859853565693, 0.006496349349617958, -0.01793999783694744, 0.00469199987128377, -0.02399819903075695, -0.014517598785459995, 0.0006335062207654119, -0.01878179796040058, 0.026137197390198708, -0.0020130749326199293, 0.012040498666465282, -0.034389596432447433, -0.024136198684573174, 0.020354999229311943, -0.0018836999079212546, 0.034637998789548874, -0.008776799775660038, 0.01960979774594307, 0.007196699269115925, 0.015345598571002483, 0.0035276247654110193, 0.0001677562395343557, 0.009756599552929401, -0.014862598851323128, 0.016063198447227478, -0.006437699310481548, 0.020175598561763763, 0.004667849745601416, -0.007679699454456568, 0.0059857494197785854, -0.050231996923685074, -0.04084799811244011, 0.02867639809846878, -0.008038499392569065, -0.012033599428832531, 0.004467749502509832, -0.037397995591163635, -0.021555598825216293, -0.006982799619436264, -0.005050799809396267, 0.010922699235379696, -0.007493399549275637, 0.00448499945923686, 0.033202797174453735, -0.010101599618792534, 0.010708799585700035, -0.015221399255096912, -0.02753099799156189, -0.01667039841413498, -0.03491399809718132, -0.020603397861123085, -0.0011600623838603497, -0.01636679843068123, 0.02374979853630066, 0.007479599677026272, -0.03077399730682373, -0.03593519702553749, 0.008673299103975296, -0.024191398173570633, -0.007141499314457178, 0.0021338248625397682, 0.04973519593477249, 0.023666998371481895, -0.020051399245858192, 0.007037999574095011, 0.051915597170591354, -0.02550239861011505, -0.0027030748315155506, -0.01302029937505722, 0.001021199976094067, -0.009528899565339088, -0.00046316246152855456, 0.003230924718081951, 0.011736898683011532, -0.01271669939160347, -0.007824599742889404, 0.0006852562073618174, 0.003936449531465769, -0.006527399644255638, 0.001675837324000895, 0.0017646749038249254, -0.0218867976218462, 0.003798449644818902, 0.005606249440461397, -0.0055303494445979595, 0.003632849780842662, -0.03129839897155762, -0.02087939903140068, 0.000477824971312657, 0.027903597801923752, 0.012026699259877205, -0.0317951962351799, 0.017056798562407494, 0.019223399460315704, -0.013841398991644382, 0.012102599255740643, -0.0013127248967066407, 0.008990699425339699, -0.004812749568372965, 0.019416598603129387, 0.016822198405861855, 0.00950819905847311, 0.0087008997797966, 0.020203199237585068, -0.0003087749646510929, 0.005771849770098925, -0.006448049563914537, 0.015938999131321907, -0.04708559811115265, -0.03574199602007866, -0.0003014437388628721, 0.005978849716484547, -0.013068598695099354, -0.001179037382826209, 0.016532398760318756, -0.00016150310693774372, -0.02243879809975624, 0.011598899029195309, -0.006413549650460482, -0.05867759510874748, 0.004395299591124058, 0.0003831656067632139, -0.01007399894297123, -0.02292179875075817, -0.004598849453032017, -0.009646199643611908, -0.00048558745766058564, -0.046699196100234985, 0.016808398067951202, -0.028096798807382584, 0.0017215498955920339, 0.006275549530982971, 0.01655999943614006, -0.003712199628353119, 0.03369959816336632, 0.010094699449837208, -0.0035276247654110193, -0.027875997126102448, 0.2508287727832794, -0.020893199369311333, -0.019057799130678177, 0.019830599427223206, -0.007658999413251877, 0.023735998198390007, 0.004160699900239706, -0.014013898558914661, -0.004553999751806259, -0.012792599387466908, -0.005999549757689238, -0.011957699432969093, -0.017857199534773827, -0.004605749621987343, -0.010294799692928791, 0.010736399330198765, -0.021610798314213753, -0.018036598339676857, 0.011888698674738407, -0.02123819850385189, 0.013489498756825924, 0.0025616248603910208, -0.01865759864449501, -0.006917249411344528, 0.02933879755437374, -0.0010073998710140586, -0.007707299664616585, 0.02086559869349003, 0.025999197736382484, 0.006337649654597044, -0.026661597192287445, 0.010039499029517174, -0.009535799734294415, 0.007382999639958143, 0.0002552999940235168, -0.0032826748210936785, 0.03701159730553627, -0.007638299372047186, 0.027862198650836945, 0.007645199541002512, -0.0003167531103827059, -0.012785699218511581, -0.01690499857068062, -0.011654099449515343, 0.013986298814415932, 0.022286998108029366, 0.011867999099195004, -0.0017060248646885157, -0.023666998371481895, -0.023542799055576324, -0.04540199786424637, -0.03071879781782627, 0.030139198526740074, 0.010315499268472195, -0.014269199222326279, -0.004381499718874693, -0.0025840497110038996, -0.004464299883693457, 0.00990149937570095, 0.0016973998863250017, -0.017305199056863785, 0.025585198774933815, -0.026716798543930054, 0.02639939822256565, -0.030497997999191284, -0.0003378843539394438, -0.020589599385857582, 0.013786198571324348, 0.0075278994627296925, -0.0029807998798787594, -0.020313598215579987, -0.0019130248110741377, -0.016063198447227478, -0.01774679869413376, -0.023183997720479965, -0.02704799734055996, 0.0462023951113224, 0.03963359817862511, 0.015580198727548122, 0.028869597241282463, -0.01770539954304695, 0.010294799692928791, -0.005851199384778738, -0.005478599574416876, -0.01206119917333126, -0.025102198123931885, 0.012806398794054985, -0.026288997381925583, -0.0030635998118668795, 0.018740398809313774, 0.004867949523031712, -0.003027374856173992, -0.003801899729296565, 0.015083398669958115, 0.014862598851323128, 0.014110499061644077, 0.004091699607670307, 0.019237197935581207, -0.0348035991191864, -0.004160699900239706, -0.02315639890730381, 0.02460539899766445, 0.013068598695099354, 0.02692379802465439, 0.006144449580460787, -0.01436579879373312, -0.01842299848794937, 0.023708397522568703, 0.0028652248438447714, -0.007893599569797516, 0.0031291497871279716, -0.03891599550843239, -0.009549599140882492, -0.027103198692202568, -0.008769899606704712, 0.008721599355340004, -0.009797999635338783, -0.017843399196863174, -0.015041998587548733, -0.012344098649919033, 0.00496454956009984, -0.017801998183131218, -0.0066274493001401424, 0.023956798017024994, -0.012164698913693428, -0.03505199775099754, -0.025723198428750038, -0.0034931248519569635, 0.0013023748761042953, -0.014917799271643162, 0.008286898955702782, -0.03643199801445007, 0.011384999379515648, -0.005799449514597654, -0.0034724248107522726, 0.024315597489476204, -0.012288899160921574, -0.02141759917140007, -0.008383499458432198, -0.014517598785459995, 0.007376099471002817, 0.015745798125863075, 0.010901999659836292, 0.0236945990473032, 0.0030687747057527304, -0.017070598900318146, 0.003094649873673916, 0.012309598736464977, -0.006234149448573589, -0.006344549357891083, -0.04344239830970764, -0.025723198428750038, 0.019471798092126846, -0.011978399008512497, -7.110233855200931e-05, 0.019513199105858803, -0.0020251497626304626, -0.03160199895501137, 0.0287867970764637, -0.0036880497355014086, -0.04289039596915245, 0.008590498939156532, 0.00945299956947565, -0.01978919841349125, -0.006237599533051252, -0.013178998604416847, -0.17586718499660492, 0.01878179796040058, 0.03138119727373123, -0.012337199412286282, 0.03761879727244377, -0.012516599148511887, 0.0018888749182224274, 0.0010574249317869544, 0.005181899759918451, -0.003484499640762806, 0.007596899289637804, 0.010839899070560932, -0.02290799841284752, -0.009749699383974075, -0.008148899301886559, -0.011295299045741558, -0.02615099772810936, 0.013096199370920658, 0.02292179875075817, 0.011709298938512802, 0.03634919598698616, -0.033313196152448654, -0.01810559816658497, 0.02392919734120369, 0.0036845996510237455, 0.018077999353408813, -0.001245449879206717, -0.003977849613875151, 0.007548599503934383, -0.04402199760079384, -0.01702919788658619, 0.011557498946785927, -0.021665997803211212, -0.0005287124658934772, 0.0057856496423482895, -0.0044504995457828045, 0.01013609953224659, 0.018629997968673706, -0.01860239915549755, 0.00695864949375391, -0.01439339853823185, 0.044960398226976395, 0.0009038999560289085, 0.004522949457168579, 0.02554379776120186, -0.00485759973526001, -0.005816699471324682, -0.012709799222648144, -0.005523449741303921, -0.0022597499191761017, 0.02873159758746624, -0.007134599611163139, 0.010239599272608757, -0.011695499531924725, 0.04529159516096115, 0.028345197439193726, -0.023970598354935646, 0.002068274887278676, -0.022521598264575005, -0.004616099875420332, 0.005185349844396114, -0.013109998777508736, 0.0005278499447740614, 0.015221399255096912, 6.538827437907457e-05, -0.015566399320960045, -0.007941899821162224, 0.04783079773187637, -0.02202479913830757, 0.0036638998426496983, 0.025805998593568802, 0.006586049683392048, 0.03587999567389488, -0.006182399578392506, 0.032540395855903625, 0.021941998973488808, -0.0023563497234135866, 0.0075554996728897095, 0.004371149465441704, -0.010087799280881882, -0.028814397752285004, 0.059781596064567566, -0.02633039839565754, -0.00939089898020029, 0.04385639727115631, -0.005564849823713303, 0.002163149882107973, 0.001679287408478558, -0.009549599140882492, -0.02674439735710621, 0.025336798280477524, -0.016394399106502533, 0.007445099297910929, -0.015869999304413795, 0.016835998743772507, 0.011895598843693733, -0.0001769202935975045, -0.008990699425339699, -0.01564919948577881, -0.012978899292647839, -0.0073277996852993965, -0.010660499334335327, -0.013206599280238152, -0.0025788748171180487, 0.023970598354935646, 0.00965309888124466, 0.0029531996697187424, 0.00974279921501875, 0.0189059991389513, -0.002477099886164069, -0.029918398708105087, -0.004491899628192186, 0.012406199239194393, 0.014917799271643162, 0.00858359970152378, 0.02950439788401127, -0.018188398331403732, -0.015248998999595642, 0.013965599238872528, 0.02260439842939377, 0.011108999140560627, -0.013358399271965027, 0.005713199730962515, 0.023045998066663742, -0.0066343494690954685, -0.0036500997375696898, -0.0347759984433651, -0.006534299347549677, -0.017360398545861244, -0.0037259997334331274, 0.005944349337369204, 0.016987798735499382, -0.017374198883771896, 0.03640439733862877, 0.0010099874343723059, 0.034472398459911346, -0.013461899012327194, -0.027641398832201958, -0.013109998777508736, 0.02170739881694317, 0.02663399837911129, 0.0039916494861245155, -0.017677798867225647, -0.01439339853823185, 0.018395397812128067, 0.031463999301195145, -0.00443669967353344, -0.035548798739910126, -0.012068099342286587, -0.02093459852039814, 0.00875609926879406, 0.01490399893373251, -0.0057890997268259525, 0.005958149675279856, 0.011709298938512802, 0.012896099127829075, 0.052577994763851166, -0.014379599131643772, 0.020051399245858192, -0.008486999198794365, 0.02496419847011566, -0.006085799541324377, -0.028869597241282463, -0.02075519785284996, 0.02944919839501381, -0.021914398297667503, 0.004384949803352356, -0.0001735781115712598, -0.0005287124658934772, -0.004136549774557352, -0.016477199271321297, -0.021859198808670044, -0.011957699432969093, 0.008300699293613434, -0.006265199743211269, 0.00010134374315384775, -0.031822796911001205, -0.01985819824039936, -0.015083398669958115, -0.01853339932858944, 0.022411197423934937, 0.026840997859835625, -0.011516098864376545, 0.008038499392569065, -0.043883997946977615, 0.021265799179673195, -0.024370798841118813, -0.00830759946256876, -0.017829598858952522, 0.02206619828939438, 0.011626498773694038, 0.01067429967224598, -0.036376796662807465, -0.012861599214375019, 0.046340394765138626, 0.00999119970947504, 0.003343049669638276, 0.043580397963523865, -0.014724599197506905, 0.01738799922168255, -0.017829598858952522, -0.018340198323130608, -0.01013609953224659, 0.009356399066746235, 0.016421997919678688, -0.0068585993722081184, -0.006717149633914232, -0.0029066246934235096, -0.0006382499705068767, -0.011198699474334717, 0.010729499161243439, 0.007189799565821886, 0.0033033748622983694, 0.009977399371564388, 0.02765519730746746, -0.004629899747669697, 0.013765498995780945, 0.029945997521281242, 0.0010324124014005065, -0.033009596168994904, 0.0005386312259361148, -0.008342099376022816, -0.0003378843539394438, 0.019664999097585678, 0.011074499227106571, 0.00939089898020029, -0.037646397948265076, -0.015704398974776268, -0.08053679764270782, 0.013931099325418472, -0.028110597282648087, -0.007079399656504393, 0.02842799760401249, 0.016283998265862465, 0.02068619802594185, 0.002011349890381098, 0.003757049795240164, -0.01793999783694744, -0.017967598512768745, 0.009397799149155617, -0.0027151498943567276, -0.018036598339676857, -0.005958149675279856, -0.011488499119877815, 0.02812439762055874, -0.0001803703053155914, 0.01667039841413498, -0.002966999774798751, -0.005709749646484852, 0.00566834956407547, 0.033920396119356155, -0.008652599528431892, -0.00029066248680464923, 0.033975597470998764, -0.0053267995826900005, 0.02944919839501381, -0.02381879836320877, -0.021845398470759392, -0.010122299194335938, 0.0014981623971834779, -0.000951337453443557, 0.02339099906384945, 0.008652599528431892, 0.01788479834794998, -0.00013293280790094286, 0.0064031993970274925, 0.028814397752285004, 0.007062149699777365, 0.0018940498121082783, -0.03171239793300629, -0.009170099161565304, -0.015635399147868156, 0.012882298789918423, 0.019292399287223816, -4.808437006431632e-05, 0.01697399839758873, 0.006768899504095316, 0.003160199848935008, 0.013040998950600624, 0.005009399726986885, -0.03041519783437252, -0.0359903983771801, 0.0032999247778207064, -0.0491831973195076, 0.010715698823332787, -0.012033599428832531, -0.024370798841118813, 0.01643579825758934, 0.03005639836192131, 0.007831498980522156, 0.024563997983932495, -0.008976899087429047, 0.010653599165380001, 0.011419499292969704, -0.025157397612929344, 0.007569299545139074, 0.013310099020600319, 0.0016896374290809035, -0.01860239915549755, -0.021251998841762543, -0.010729499161243439, -0.005909849423915148, -0.01086059957742691, -0.004105499479919672, -0.0008775937021709979, 0.00631349952891469, -0.02722739800810814, 0.021279597654938698, 0.025240197777748108, -0.00045151871745474637, -0.0059891995042562485, 0.018505798652768135, 0.018698997795581818, -0.02579219825565815, -0.02512979879975319, 0.008231699466705322, -0.0224939975887537, -0.001183349872007966, -0.011108999140560627, 0.013144498690962791, 0.011150399222970009, 0.012054299004375935, 0.016711799427866936, 0.023556597530841827, -0.0001797234290279448, 0.0033085497561842203, 0.030939597636461258, 0.028897197917103767, -0.011916299350559711, 0.002044124761596322, -0.00012463124585337937, -0.011840399354696274, -0.014476198703050613, 0.009804898872971535, -0.016035599634051323, -0.02711699716746807, 0.01055699959397316, -0.0006542062037624419, 0.01241309940814972, 0.011619599536061287, -0.010087799280881882, 0.027931198477745056, -0.015925198793411255, 0.005620049778372049, -0.005699399393051863, -0.02118299901485443, -0.036735597997903824, 0.029062798246741295, 0.022935599088668823, 0.02579219825565815, 0.019361399114131927, -0.01967879943549633, 0.009908399544656277, -0.003950249869376421, 0.012226799502968788, -0.023846399039030075, -0.004760999698191881, -0.005399249494075775, -0.009632399305701256, 0.026647798717021942, -0.026440797373652458, -0.0018836999079212546, -0.0016732498770579696, -0.0011324624065309763, -0.006103049498051405, 0.012571798637509346, -0.008976899087429047, 0.06734399497509003, 0.028262397274374962, 0.0044746496714651585, 0.0023304747883230448, 0.0006335062207654119, -0.018133198842406273, 0.02118299901485443, 0.017291398718953133, 0.012081898748874664, -0.03173999860882759, 0.009101099334657192, 0.010267199017107487, -0.025419598445296288, -0.027682797983288765, 0.01865759864449501, 0.016766998916864395, -0.038060396909713745, 0.02837279811501503, -0.029587198048830032, 0.010080899111926556, 0.02862119860947132, 0.0010125748813152313, 0.021431397646665573, 0.0073001994751393795, -0.021969597786664963, -0.0064273495227098465, -0.0011229749070480466, -0.01751219853758812, -0.009225299581885338, 0.007514099590480328, 0.020617198199033737, 0.003953699488192797, 0.0022597499191761017, -0.03888839855790138, -0.021376198157668114, 0.003198149846866727, -0.00344999972730875, 0.0026219997089356184, 0.0278897974640131, -0.0031843497417867184, -0.004747199825942516, 0.003801899729296565, -0.027737997472286224, -0.015911398455500603, -0.012551099061965942, 0.006492899730801582, -0.006482549477368593, 0.014945399016141891, -0.02892479859292507], "9b546d02-7c84-40d5-aaae-19fad4f818b9": [-0.02948797307908535, 0.019557220861315727, 0.002053922973573208, -0.0157259963452816, -0.04199131578207016, -0.002461941447108984, -0.02352675423026085, -0.03557366877794266, -0.006102986633777618, -0.05117518827319145, -0.002204336691647768, 0.0004538340144790709, -0.024356622248888016, -0.015504698269069195, -0.0030463067814707756, -0.003803561208769679, 0.002854399848729372, 0.0022873233538120985, 0.0267355777323246, -0.017607031390070915, 0.031175371259450912, -0.01114097610116005, -0.022613899782299995, -0.006808374542742968, -0.010172797366976738, 0.014951453544199467, 0.010082894936203957, -0.02578122913837433, -0.010864353738725185, 0.015145089477300644, 0.03717808052897453, -0.0024550259113311768, 0.0007451522396877408, -0.02578122913837433, -0.00988234393298626, -0.006479884963482618, -0.005681137088686228, 0.0108781848102808, 0.01778683438897133, 0.02222662791609764, 0.028436806052923203, 0.011085651814937592, 0.013955611735582352, 0.00887267105281353, -0.006711556576192379, 0.023429937660694122, 0.012282044626772404, -0.003143124748021364, -0.01596112549304962, 0.026666421443223953, 0.00475445156916976, 0.0012413440272212029, -0.03825690969824791, -0.026389800012111664, 0.011853279545903206, -0.0004585884453263134, 0.0005329307750798762, 0.006441849749535322, -0.007378908805549145, -0.016320735216140747, 0.023333119228482246, -0.007531051058322191, -0.01601644977927208, 0.003445680718868971, 0.0257535669952631, -0.0024809592869132757, -0.010331855155527592, 0.008160367608070374, -0.017081446945667267, -0.01038026437163353, 0.007925238460302353, 0.017690017819404602, -0.006670063361525536, -0.002384141320362687, 0.009598805569112301, -0.030649786815047264, -0.0207052044570446, 0.008665204048156738, 0.0027230039704591036, -0.005705341696739197, -0.014204571954905987, 0.004052521660923958, 0.012420356273651123, -0.012627823278307915, 0.010304193012416363, 0.0314519926905632, -0.010228121653199196, 0.015822814777493477, -0.00040239948430098593, -0.02203299291431904, 0.005757208447903395, 0.008547639474272728, -0.002854399848729372, 0.007593291345983744, -0.008976404555141926, -0.0016018179012462497, -0.04027625545859337, 0.046832211315631866, -0.018326248973608017, -0.019543388858437538, 0.00256567494943738, 0.014591843821108341, -0.03496510162949562, -0.007095370441675186, -0.03219887614250183, -0.01871352083981037, 0.03001355566084385, -0.012288960628211498, -0.011030327528715134, -0.00475445156916976, -0.022060655057430267, 0.036901459097862244, 0.011542079038918018, -0.007282090838998556, -0.039059117436409, 0.04807701334357262, 0.024826880544424057, -0.021590396761894226, -0.020663710311055183, -0.021147800609469414, 0.01449502632021904, 0.0033644228242337704, 0.013955611735582352, -0.005591235123574734, -0.01186711061745882, 0.011383021250367165, -0.02701219916343689, -0.0027402930427342653, 0.01578132063150406, -0.027551613748073578, 0.02352675423026085, 0.0009431102662347257, 0.012959769926965237, 0.01325022429227829, -0.0006954465643502772, -0.0030030845664441586, -0.01774534210562706, 0.014536519534885883, 0.006289707031100988, -0.01123087853193283, 0.026652591302990913, 0.033609651029109955, -0.0009595347801223397, -0.015435542911291122, -0.0048858472146093845, 0.00324858701787889, -0.0017548247706145048, 0.02748245932161808, 0.019640207290649414, 0.0028336530085653067, 0.01900397427380085, -0.002864773152396083, -0.005854026414453983, 0.012939023785293102, -0.0021420964039862156, 0.009100884199142456, 0.018616702407598495, 0.03244783356785774, 0.0048616426065564156, -0.009190786629915237, 0.016638850793242455, 0.026362136006355286, 0.005044905468821526, 0.004391384311020374, 0.00960572063922882, 0.030566800385713577, 0.0007075488101691008, -0.019100792706012726, -0.005798702128231525, 0.002289052354171872, -0.005300781223922968, 0.01099574938416481, -0.022945847362279892, 0.0011099482653662562, -0.007143779657781124, 0.02500668540596962, 0.04030391573905945, 0.0034768006298691034, 0.0031932624988257885, -0.0017314847791567445, 0.004626513458788395, -0.027344146743416786, -0.0010805571218952537, -0.005753750912845135, 0.00014587522309739143, -0.00911471527069807, 0.028409143909811974, -0.008291763253509998, 0.017122941091656685, 0.003969534765928984, 0.024052338674664497, 0.019543388858437538, 0.02049773745238781, 0.018353911116719246, -0.5957344770431519, -0.03333302587270737, 0.005487501621246338, -0.012842205353081226, 0.04268287122249603, 0.019875336438417435, 0.005895519629120827, 0.040857162326574326, -0.012185227125883102, 0.0217563696205616, -0.013644411228597164, 0.017109109088778496, 0.0020625675097107887, 0.0010719127021729946, -0.009204617701470852, -0.02327779494225979, 0.01050474401563406, -0.011438345536589622, 0.0032122803386300802, 0.0004966240958310664, -0.020193452015519142, 0.012171396054327488, -0.021299943327903748, -0.0047233314253389835, 0.0014565910678356886, 0.0032364847138524055, -0.01603028178215027, 0.0029183686710894108, -0.001086608273908496, 0.037897299975156784, -0.002563945949077606, -0.0057468353770673275, 0.03172861412167549, 0.005331901367753744, 0.036348212510347366, -0.00706425029784441, -0.025822723284363747, 0.01114097610116005, 0.008582217618823051, 0.05775880441069603, -0.015573854558169842, -0.024121493101119995, 0.020912671461701393, -0.002588150557130575, 0.010781367309391499, 0.02027643844485283, 0.012344284914433956, 0.004436335526406765, 0.024550259113311768, -0.012807628139853477, -0.017330408096313477, -0.01825709454715252, 0.0011341527570039034, 0.004322228487581015, 0.0013442131457850337, -0.0008359189960174263, 0.020400919020175934, -0.021106306463479996, -0.001734078163281083, -0.027634600177407265, -0.02152124047279358, 0.0182156004011631, -0.0126139922067523, -0.017178265377879143, -0.01846456155180931, -0.010663802735507488, -0.024605583399534225, -0.01273847185075283, 0.006815290078520775, -0.01598878763616085, -0.005525537300854921, 0.00513480743393302, 0.01594729535281658, 0.013997104950249195, 0.015463205054402351, 0.018436897546052933, 0.03280744329094887, -0.010200459510087967, -0.006113360170274973, 0.015684504061937332, -0.0029304709751158953, 0.0023184434976428747, -0.011562826111912727, -0.02120312489569187, 0.0023443768732249737, -0.013395451009273529, -0.01673566922545433, 0.0008091211784631014, 0.006504089571535587, -0.015338725410401821, 0.03455016762018204, 0.025559931993484497, 0.0172335896641016, 0.003238213714212179, 0.002316714497283101, 0.023402275517582893, -0.023333119228482246, 0.0016286157770082355, 0.003966076765209436, -0.007309752982109785, -0.03969534859061241, 0.019806180149316788, 0.02051156759262085, 0.004349891096353531, 0.03455016762018204, 0.007302837446331978, -0.02923901192843914, -0.0040490636602044106, -0.009723285213112831, -0.008858839981257915, 0.0006630298448726535, 0.0011350172571837902, -0.03125835582613945, -0.00531807029619813, 0.01679099351167679, -0.035407695919275284, 0.031341344118118286, 0.02403850667178631, 0.008506146259605885, 0.03479912877082825, 0.022295784205198288, 0.0033281161449849606, 0.01699846051633358, 0.0052350834012031555, -0.013665158301591873, 0.022351108491420746, 0.029404986649751663, 0.005646559409797192, -0.013720482587814331, 0.020414751023054123, -0.022295784205198288, -0.016694175079464912, 0.012890614569187164, -0.01948806457221508, -0.007026215083897114, -0.017164435237646103, 0.016389891505241394, -0.0008955657831393182, 0.023665066808462143, -0.002959862118586898, -0.021631889045238495, -0.006078782491385937, 0.006621654145419598, -0.011362274177372456, -0.01348535344004631, -0.006676978897303343, -0.015020608901977539, 0.003290080465376377, -0.010463250800967216, -0.009419000707566738, 0.020428581163287163, 0.02348526194691658, -0.002231998834758997, 0.031092382967472076, 0.008775852620601654, 0.004401757847517729, -0.003692912170663476, -0.008042803034186363, 0.006593992002308369, -0.0031586845871061087, 0.004356806632131338, -0.017081446945667267, -0.01721975952386856, -0.021673383191227913, -0.006206720136106014, -0.021037152037024498, 0.015795152634382248, 0.012821459211409092, -0.026140838861465454, -0.014149247668683529, -0.022544745355844498, 0.008022055961191654, 0.011936266906559467, -0.017565537244081497, 0.02302883379161358, 0.018450729548931122, -0.022655393928289413, 0.004657633602619171, 0.007952900603413582, -0.02576739899814129, -0.009827018715441227, 0.0032243826426565647, -0.0180219653993845, 0.009598805569112301, 0.002684968523681164, 0.023665066808462143, 0.027357978746294975, 0.028436806052923203, -0.013091166503727436, -0.005356105510145426, -0.008630625903606415, 0.021341435611248016, 0.0010883371578529477, -0.005110603291541338, 0.0141215855255723, 0.027330316603183746, -0.0015836645616218448, -0.018658196553587914, -0.022572407498955727, 0.011466007679700851, 0.02376188337802887, 0.035131074488162994, 0.007752349134534597, -0.029045376926660538, 0.0014159621205180883, -0.04027625545859337, 0.021631889045238495, -0.020387088879942894, 0.025117335841059685, 0.008983319625258446, 0.01424606516957283, -0.02172870747745037, -0.007607122417539358, 0.01511742640286684, 0.0237203910946846, -0.006984721403568983, -0.008554554544389248, 0.004730246961116791, 0.0043083974160254, 0.017122941091656685, 0.013540677726268768, -0.0031621423549950123, 0.029902907088398933, -0.01397635880857706, 0.006158311385661364, -0.008976404555141926, 0.018340080976486206, 0.02528330869972706, 0.0012283773394301534, -0.00951581820845604, 0.0046852957457304, 0.005300781223922968, 0.02421831153333187, -0.004322228487581015, -0.015034439973533154, -0.030898747965693474, 0.03372029960155487, -0.02125844918191433, 0.030400827527046204, 0.02178403176367283, -0.017344238236546516, 0.0038934636395424604, -0.002557030413299799, -0.021659551188349724, 0.020304100587964058, -0.0014730155235156417, 0.02423214167356491, 0.022046823054552078, -0.006064951419830322, 0.011396852321922779, -0.037841975688934326, 0.0039038369432091713, -0.013001264072954655, 0.012295875698328018, 0.009903090074658394, 0.011085651814937592, -0.00963338278234005, 0.020954163745045662, -0.005037989467382431, 0.010214290581643581, 0.03153498098254204, 0.03272445872426033, -0.0006042475579306483, 0.012710809707641602, 0.002008971758186817, -0.024439608678221703, -0.021092476323246956, -0.04282118380069733, -0.0052385409362614155, 0.002854399848729372, -0.01648670807480812, 0.01795280911028385, -0.0022959678899496794, 0.007786927279084921, 0.0009647214319556952, -0.020414751023054123, 0.023914026096463203, 0.011728799901902676, 0.028187846764922142, -0.006676978897303343, 0.004066352732479572, -0.015338725410401821, 0.011694221757352352, 0.019335921853780746, 0.002634830540046096, 0.004491659812629223, -0.0007287277258001268, -0.008831177838146687, -0.023153314366936684, 0.019640207290649414, -0.006389982998371124, -0.002498248126357794, 0.004827064927667379, 0.009972245432436466, 0.009218448773026466, 0.01073295809328556, -0.0025950660929083824, -0.007219850551337004, -0.026044020429253578, -0.013312464579939842, 0.0029114531353116035, 0.003907294478267431, 0.0055359103716909885, 0.001411639852449298, 0.05651400238275528, 0.011051074601709843, -0.01264165434986353, 0.010255783796310425, 0.008277932181954384, -0.005854026414453983, -0.003428391646593809, -0.033886272460222244, -0.013181068003177643, -0.024093830958008766, 0.011147892102599144, 0.027606938034296036, 0.03421821817755699, -0.01748255081474781, 0.0062101781368255615, -0.0018758472288027406, -0.012683147564530373, -0.019100792706012726, -0.02121695503592491, -0.014467363245785236, -0.023706559091806412, 0.008858839981257915, -0.011120229959487915, -0.007793842814862728, -0.03919742628931999, -0.019861504435539246, -0.02348526194691658, 0.01749638095498085, 0.0031310224439948797, -0.006593992002308369, 0.023443767800927162, -0.001538713346235454, 0.004055979195982218, -0.008817346766591072, -0.00724751316010952, -0.007793842814862728, -0.024411946535110474, -0.010691464878618717, 0.02802187204360962, 0.010449419729411602, -0.016376059502363205, -0.0030670533888041973, -0.007551797665655613, 0.033084068447351456, 0.0005152096273377538, 0.0008644456975162029, -0.014508857391774654, 0.03842288255691528, 0.0005735597223974764, -0.01651437021791935, 0.008194945752620697, -0.005217794328927994, 0.013063503429293633, 0.012862952426075935, -0.017925146967172623, 0.03402458503842354, 0.02701219916343689, 0.024909868836402893, -0.0053733945824205875, 0.023167146369814873, -0.01424606516957283, 0.005082940682768822, -4.64369441033341e-05, -0.014204571954905987, 0.023886363953351974, -0.007123032584786415, -0.001016588183119893, 0.0202487763017416, 0.016071774065494537, -0.02345759980380535, 0.023084158077836037, -0.0059992531314492226, -0.0394463874399662, -0.01578132063150406, 0.017855990678071976, 0.005086398683488369, -0.012600161135196686, 0.010186628438532352, 0.02446727268397808, -0.009453578852117062, -0.015698334202170372, -0.00031876435969024897, 0.02052539959549904, -0.011770293116569519, -0.02578122913837433, -0.04804935306310654, -0.0404975526034832, -0.01695696823298931, -0.027344146743416786, 0.016873979941010475, 0.03222653642296791, -0.03189459070563316, -0.04425962269306183, -0.021894682198762894, 0.047634419053792953, 0.01626541092991829, 0.028796415776014328, -0.014301390387117863, -0.0045850202441215515, 0.006386524997651577, -0.004709500353783369, -0.02446727268397808, -0.00811887439340353, -0.010815944522619247, 0.016818655654788017, 0.0006055442499928176, -0.007551797665655613, 0.007116117049008608, 4.24118697992526e-05, 0.01050474401563406, -0.008450821042060852, 0.01998598501086235, -0.004415588919073343, 0.03100939653813839, -0.0014211487723514438, -0.004906593821942806, -0.000957805837970227, 0.008685950189828873, -0.016085606068372726, -0.016334567219018936, 0.03856119513511658, -0.024080000817775726, -0.019654037430882454, -0.005490959156304598, -0.006434933748096228, 0.004820149391889572, -0.00043546452070586383, 0.0038865478709340096, 0.02253091335296631, 0.03156264126300812, 0.010712211020290852, -0.02172870747745037, 0.01125854067504406, -0.0024584836792200804, -0.004253073129802942, -0.0025328260380774736, 0.009170040488243103, -0.026943044736981392, -0.014481195248663425, -0.010684548877179623, 0.023084158077836037, -0.03103705868124962, 0.03048381395637989, -0.0018447272013872862, -0.019156116992235184, 0.01226129848510027, -0.011694221757352352, -0.036126915365457535, -0.015186582691967487, 0.0232639629393816, -0.012095324695110321, 0.010815944522619247, -0.011791039258241653, -0.012717725709080696, -0.001264684135094285, 0.013775806874036789, 0.00023080701066646725, 0.011403768323361874, -0.0180219653993845, -0.01752404309809208, 0.007904491387307644, -0.02550460584461689, 0.016293073073029518, -0.008596048690378666, 0.0180219653993845, -0.03167328983545303, -0.017178265377879143, -0.0016191068571060896, 0.0013450775295495987, 0.02800804190337658, 0.007268259767442942, 0.0036548764910548925, -0.010338771156966686, -0.006421102676540613, -0.0006958788144402206, -0.011832533404231071, -0.03399692103266716, -0.004024859517812729, 0.03322237730026245, 0.009425915777683258, 0.017385732382535934, 0.02376188337802887, -0.011223963461816311, -0.0004415156436152756, 0.015629177913069725, 0.0034595117904245853, -0.007655531167984009, -1.2075226550223306e-05, -0.01363058015704155, -0.04666623845696449, -0.013360872864723206, 0.015241906978189945, 0.007676278240978718, -0.015352556481957436, 0.0030411200132220984, 0.009004066698253155, 0.004021401517093182, 0.021120138466358185, -0.014114669524133205, -0.0319775752723217, 0.011341528035700321, 0.004152797162532806, 0.0037758988328278065, 0.01727508381009102, -0.03468847647309303, -0.014329052530229092, -0.0029010798316448927, -0.02727499231696129, -0.0026538483798503876, -0.011638897471129894, 0.00456773117184639, -0.017358070239424706, 0.002818093169480562, -0.0007304566097445786, 0.02076052874326706, 0.006282791495323181, 0.0075103044509887695, -0.02701219916343689, 0.018575210124254227, 0.009681791998445988, 0.015269569121301174, -0.00040953117422759533, 0.007897576317191124, -0.002819821937009692, 0.013803469017148018, -0.0032814359292387962, -0.03576730564236641, 0.0015067289350554347, -0.0011644084006547928, -0.015297231264412403, -0.03374795988202095, -0.004948087502270937, -0.020165789872407913, -0.013644411228597164, 0.03991664573550224, 0.019681699573993683, -0.007392739877104759, 0.013319379650056362, -0.022807536646723747, -0.01875501498579979, -0.0017202469753101468, -0.029294336214661598, 0.0024740437511354685, 0.009059390984475613, 0.012586330063641071, 0.03405224531888962, 0.004177001770585775, -0.011880941689014435, -0.052115704864263535, -0.01513125840574503, -0.004201206378638744, 0.030400827527046204, 0.0330287404358387, -0.03822924941778183, -0.01929442770779133, 0.03493743762373924, 0.02300117164850235, 0.006635485216975212, -0.01604411192238331, 0.023678896948695183, 0.05427335947751999, -0.011410683393478394, -0.016611188650131226, 0.016389891505241394, -0.00706425029784441, -0.017911314964294434, -0.0030463067814707756, 0.001820522709749639, -0.003945330157876015, -0.005632728338241577, 0.00030017876997590065, 0.019100792706012726, -0.014909960329532623, 0.03316705301403999, 0.01223363634198904, -0.021327605471014977, -0.01853371597826481, 0.00024161257897503674, 0.006255129352211952, 0.006206720136106014, -0.01026269979774952, 0.01876884512603283, -0.02345759980380535, -0.006784169934689999, 0.007897576317191124, 0.008955657482147217, 0.003008271101862192, -0.009916921146214008, -0.010836691595613956, 0.05529686436057091, -0.01576749049127102, -0.006324284709990025, -0.00536647904664278, 2.8877890144940466e-05, 0.04152105748653412, -0.00022453977726399899, 0.0034837161656469107, 0.000851046817842871, -0.014674830250442028, 0.0011816973565146327, 0.013353957794606686, -0.016334567219018936, 0.006670063361525536, -0.020691372454166412, -0.0028872487600892782, -0.033084068447351456, -0.025186490267515182, -0.017053784802556038, -0.005155554506927729, -0.017911314964294434, -0.0344671793282032, -0.019128454849123955, 0.004591935779899359, -0.0009102613548748195, 0.02625148743391037, -0.01697079837322235, 0.009965330362319946, 0.03571198135614395, -0.037814315408468246, -0.006597450003027916, -0.025186490267515182, -0.009080138057470322, -0.02100948803126812, -0.025587594136595726, -0.0017980471020564437, -0.03980599716305733, 0.016403721645474434, -0.0017963182181119919, 0.007275175303220749, -0.024937530979514122, 0.018934819847345352, 0.021064814180135727, -0.009730201214551926, 0.029073039069771767, 0.014979115687310696, 0.002221625531092286, 0.010677633807063103, 0.0012586329830810428, -0.01262090727686882, 0.01560151670128107, -0.0004819284949917346, -0.038367558270692825, 0.013326295651495457, -0.012862952426075935, 0.02976459451019764, 0.011991591192781925, 0.007095370441675186, -0.001710738055408001, -0.052585963159799576, -0.051368821412324905, 0.022447926923632622, -0.010318024083971977, -0.020857347175478935, 0.00011270210961811244, -0.027302654460072517, -0.03596094250679016, -6.051119999028742e-05, -0.00823643896728754, -0.002939115511253476, -0.0022198965307325125, 0.021078644320368767, 0.03723340481519699, 0.0022510166745632887, 0.017579367384314537, -0.008160367608070374, -0.032918091863393784, -0.01778683438897133, -0.056126732379198074, -0.031617965549230576, 0.0014055887004360557, -0.0013952153967693448, 0.05305622145533562, 0.004277277272194624, -0.012579414062201977, -0.04979207366704941, 0.003921126015484333, -0.015449373982846737, -0.006718472111970186, 0.004007570445537567, 0.03479912877082825, 0.014481195248663425, 0.0017876737983897328, -0.0004415156436152756, 0.030871085822582245, -0.03327770158648491, 0.03208822384476662, -0.01461950596421957, -0.003651418723165989, -0.00016975552716758102, -0.010815944522619247, 0.009142378345131874, 0.00680491654202342, -0.021355267614126205, -0.01363058015704155, 0.007614037953317165, -0.0010209104511886835, -0.005518621299415827, 0.016348397359251976, 0.011908604763448238, -0.030566800385713577, -0.019930660724639893, -0.018685858696699142, -0.020885009318590164, -0.010975003242492676, -0.013402366079390049, -0.02297350950539112, -0.014965284615755081, 0.01626541092991829, -0.009266857989132404, -0.008692866191267967, 0.03327770158648491, 0.01699846051633358, 0.010670717805624008, 0.006230924744158983, -0.02298734150826931, 0.0010874727740883827, -0.014716324396431446, 0.0060753244906663895, 0.01850605383515358, 0.01511742640286684, -0.012178311124444008, 0.028907064348459244, -0.01197776012122631, 0.03372029960155487, -0.02300117164850235, 0.01849222369492054, -0.028796415776014328, -0.0012240551877766848, 0.008319425396621227, -0.014633337035775185, -0.012669316492974758, -0.004090557340532541, -0.005643101874738932, -0.019128454849123955, -0.015421711839735508, 0.017842160537838936, -0.0013606376014649868, -0.054605308920145035, 0.01560151670128107, 0.007385824341326952, -0.01928059756755829, -0.03983365744352341, -0.0019553762394934893, -0.016611188650131226, 0.0033454049844294786, -0.023844871670007706, 0.00630699610337615, -0.010152050293982029, 0.013270970433950424, 0.006649316288530827, -0.002392785856500268, -0.002684968523681164, -0.001572426757775247, 0.004467455670237541, -0.03496510162949562, -0.021701045334339142, 0.23855936527252197, -0.022793704643845558, 0.005601608194410801, 0.024176817387342453, -0.01596112549304962, -0.0002718681935220957, -0.010075978934764862, -0.0057468353770673275, -0.004028317052870989, -0.0008108500624075532, -0.006044204346835613, -0.01189477276057005, -0.00876202154904604, -0.0029218264389783144, 0.0037067432422190905, -0.012828374281525612, -0.03593327850103378, -0.020553061738610268, -0.008914164267480373, 0.007289006374776363, 0.01360291801393032, -0.0018862205324694514, 0.00924611184746027, -0.011846364475786686, 0.014522688463330269, -0.01087126974016428, -0.00437755323946476, 0.007378908805549145, 0.015864307060837746, 0.022434094920754433, -0.014149247668683529, -0.007330499589443207, -0.013174152933061123, 0.0022976966574788094, -0.0008670390816405416, -0.017109109088778496, 0.039086777716875076, 0.008194945752620697, 0.019156116992235184, 0.0003051493549719453, 0.0068602412939071655, -0.013063503429293633, 0.001411639852449298, -0.039335738867521286, -0.002427363535389304, 0.014425870031118393, 0.017067616805434227, 0.005114060826599598, -0.0108781848102808, 0.012773049995303154, -0.04345741495490074, -0.0035960942041128874, 0.033637311309576035, 0.0047994027845561504, -0.00028353818925097585, -0.009432831779122353, 0.004011027980595827, -0.009619551710784435, 0.004605766851454973, -0.011182470247149467, 0.005947386380285025, 0.049598436802625656, -0.029930569231510162, 0.040110282599925995, -0.03615457937121391, 0.01200542226433754, -0.011880941689014435, 0.004156255163252354, 0.01573982834815979, -0.00011940156400669366, 0.0036375876516103745, -0.0057226307690143585, -0.02596103399991989, -0.01746871881186962, -0.022918185219168663, -0.023886363953351974, 0.02798037976026535, 0.022876691073179245, 0.0060511198826134205, 0.004194290842860937, -9.157721797237173e-05, -0.01499294675886631, 0.02052539959549904, 0.017122941091656685, -0.03427354246377945, -0.028796415776014328, 0.0222819522023201, -0.03831223398447037, -0.00988234393298626, 0.0025172659661620855, 0.00649371650069952, 0.003734405618160963, 0.005501332692801952, 0.004107845947146416, 0.002178403316065669, 0.010975003242492676, -0.009965330362319946, 0.025629086419939995, -0.018063457682728767, -0.000675996532663703, -0.017814498394727707, 0.03828457370400429, 0.01928059756755829, 0.04171469435095787, -0.024909868836402893, -0.001102168345823884, -0.0036272143479436636, 0.009308351203799248, 0.0040974728763103485, -0.0028111774008721113, 0.0019259850960224867, -0.054107386618852615, -0.010774451307952404, -0.004695669282227755, 0.003917668014764786, -0.0013303819578140974, 0.0025760482531040907, -0.013264055363833904, -0.024909868836402893, -0.00234091910533607, 0.020649880170822144, -0.0479663647711277, 0.01536638755351305, 0.007503388915210962, -0.01948806457221508, -0.03396926075220108, -0.006607823073863983, 0.010954256169497967, 0.0025310970377177, -0.030428489670157433, 0.04376170039176941, -0.02376188337802887, 0.02499285526573658, -0.02145208604633808, 0.009356760419905186, 0.00910780020058155, -0.00824335403740406, -0.0007512033334933221, -0.010781367309391499, 0.012420356273651123, 0.0008566657197661698, 0.004342975094914436, 0.022890523076057434, 0.00028894099523313344, 0.012205973267555237, -0.00029326320509426296, -0.001050301594659686, 0.009308351203799248, 0.00826410111039877, 0.005338816903531551, -0.047330133616924286, -0.012537920847535133, 0.007337415125221014, -0.005850568879395723, 0.030179528519511223, 0.005473670549690723, -0.0025086214300245047, -0.05153479799628258, 0.00873435940593481, -0.0019363583996891975, -0.05565647408366203, 0.015407880768179893, 0.004477828741073608, -0.010158966295421124, -0.0059128087013959885, 0.0059370133094489574, -0.17604264616966248, 0.03856119513511658, 0.02004130929708481, -0.019335921853780746, 0.02471623197197914, -0.0006613009609282017, 0.016057943925261497, 0.00899023562669754, -0.016915474086999893, 0.006967432331293821, 0.03189459070563316, 0.018893325701355934, -0.017192097380757332, -0.01748255081474781, -0.017164435237646103, -0.01626541092991829, -0.011694221757352352, 0.004553900100290775, 0.0374823659658432, 0.02396935038268566, 0.02798037976026535, -0.023402275517582893, -0.017648523673415184, 0.022295784205198288, 0.020387088879942894, 0.01525573804974556, 0.009377507492899895, 0.01374814473092556, 0.013596002012491226, -0.02224045991897583, -0.009093969129025936, -0.014342883601784706, -0.008602963760495186, -0.00812578946352005, -0.005145180970430374, -0.012475680559873581, 0.013596002012491226, 0.007316668517887592, -0.013042757287621498, 0.0032848936971277, -0.01573982834815979, 0.03427354246377945, -0.001974394079297781, -0.0018308960134163499, 0.015075933188199997, 0.003917668014764786, -0.005490959156304598, 0.0010572171304374933, -0.009163124486804008, -0.015822814777493477, 0.03679081052541733, -0.039391063153743744, 0.014868466183543205, -0.022945847362279892, 0.03208822384476662, 0.020165789872407913, 0.0013493997976183891, -0.015587685629725456, -0.007219850551337004, 0.014591843821108341, -0.008582217618823051, -0.016389891505241394, -0.013478437438607216, 0.02275221236050129, 0.014467363245785236, -0.006894818972796202, -0.03103705868124962, 0.03869950771331787, -0.002059109741821885, -0.012192142195999622, 0.01622391678392887, -0.022060655057430267, 0.030566800385713577, -0.003298725001513958, 0.03493743762373924, 0.011825617402791977, -0.010283445939421654, -0.002657306147739291, 0.022918185219168663, -0.006766881328076124, -0.02528330869972706, 0.04674922302365303, -0.009432831779122353, -0.020871177315711975, 0.010947341099381447, -0.008056634105741978, 0.01298743300139904, 0.0007663311553187668, -0.028160184621810913, -0.038616519421339035, 0.028353819623589516, -0.023803377524018288, 0.002496519358828664, 0.0009154480067081749, 0.006521378643810749, 0.010463250800967216, 0.004882389679551125, 0.007116117049008608, -0.033111728727817535, 0.00525237200781703, -0.0012802440905943513, 0.0035113785415887833, -0.005037989467382431, 0.010566984303295612, 0.012427271343767643, -0.017385732382535934, -0.01720592752099037, 0.01174263097345829, 0.05194973200559616, 0.014702493324875832, -0.01695696823298931, 0.009896175004541874, -0.004529695492237806, 0.00487547367811203, -0.0008609879296272993, 0.013125743716955185, -0.025587594136595726, -0.01301509514451027, 0.009813187643885612, -0.0070469616912305355, 0.0025743194855749607, -0.01929442770779133, 0.019557220861315727, 0.035158734768629074, 0.009695623070001602, -0.010186628438532352, -0.04724714532494545, -0.022655393928289413, 0.007344330660998821, -0.0005100229755043983, 0.010774451307952404, 0.014522688463330269, -0.010255783796310425, 0.03554600849747658, -0.00800822488963604, 0.027385640889406204, -0.023609742522239685, -0.03919742628931999, -0.026569603011012077, 0.026943044736981392, 0.010207375511527061, 0.015297231264412403, -0.037095095962285995, 0.005636186338961124, 0.019169948995113373, 0.04149339348077774, -0.019391246140003204, -0.02351292409002781, -0.015034439973533154, -0.005145180970430374, -0.015587685629725456, 0.00045902066631242633, -0.0030653246212750673, 0.025103503838181496, 0.028063366189599037, 0.027883561328053474, 0.05518621578812599, -0.003006542334333062, -0.005037989467382431, 0.0008303000940941274, 0.004138966090977192, 0.006058035418391228, -0.02398318238556385, -0.03607159107923508, 0.012482596561312675, -0.019557220861315727, -0.0002725165104493499, 0.014591843821108341, 0.0003768983297049999, -0.013457691296935081, -0.025131165981292725, -0.011880941689014435, -0.012510258704423904, 0.03875483199954033, -0.0037689832970499992, -0.006224009208381176, -0.037897299975156784, -0.011154808104038239, 0.0025345548056066036, -0.04345741495490074, 0.022641561925411224, 0.025144997984170914, 0.02500668540596962, 0.028796415776014328, -0.029902907088398933, 0.013616749085485935, -0.022102149203419685, 0.0030497645493596792, -0.0007205154979601502, 0.0389208048582077, 0.01571216620504856, 0.007219850551337004, -0.02625148743391037, -0.0029736931901425123, 0.024107662960886955, -0.010905846953392029, -0.011320780962705612, 0.03277978301048279, -0.007517219986766577, 0.02150741033256054, -0.02524181455373764, -0.022364940494298935, -0.01771767996251583, 0.005231625400483608, 0.01623774878680706, -0.03153498098254204, -0.0060234577395021915, 0.006313911639153957, -0.022669224068522453, 0.00532152783125639, 0.019626375287771225, 0.03518639877438545, -0.004253073129802942, -0.014149247668683529, -0.006839494686573744, -0.020829685032367706, -0.0004633429052773863, 0.020871177315711975, -0.0021334521006792784, -0.028063366189599037, -0.007468811236321926, 0.00306013785302639, 0.0017721137264743447, -0.009654129855334759, -0.00041234062518924475, 0.00029953045304864645, -0.016555864363908768, -0.00901789776980877, -0.09073222428560257, 0.032918091863393784, -0.014100838452577591, 0.006203262601047754, 0.007330499589443207, -0.01598878763616085, 0.013243308290839195, -0.013063503429293633, 0.0131395747885108, -0.008768937550485134, -0.017358070239424706, 0.014896128326654434, 0.02976459451019764, -0.0044501665979623795, -0.029626283794641495, -0.0207052044570446, 0.03352666273713112, 0.01798047125339508, 0.008049719035625458, 0.018174106255173683, 0.0031742446590214968, 0.008485399186611176, 0.028630442917346954, -0.027039863169193268, -0.02004130929708481, 0.02347142994403839, -0.016057943925261497, 0.009903090074658394, -0.013969442807137966, -0.02799420990049839, 0.004789029248058796, 0.0030411200132220984, 0.015048271045088768, 0.018381573259830475, -0.00680145900696516, 0.012551751919090748, 0.0014937622472643852, 0.0032952670007944107, 0.038367558270692825, 0.010912762954831123, -0.0015767490258440375, -0.019598713144659996, 0.006293165031820536, -0.006545583251863718, -0.01695696823298931, 0.010601562447845936, -0.024093830958008766, 0.023568248376250267, 0.01626541092991829, 0.01162506639957428, 0.027136679738759995, 0.017192097380757332, 0.0015171022387221456, -0.021867018193006516, -0.009896175004541874, -0.04766207933425903, 0.008685950189828873, 0.020912671461701393, -0.025836553424596786, 0.019640207290649414, 0.04132742062211037, 0.008194945752620697, 0.01549086719751358, -0.020566891878843307, 0.022793704643845558, 0.0026175417006015778, -0.020829685032367706, 0.02102332003414631, 0.010020654648542404, 0.013817300088703632, -0.01424606516957283, -0.014674830250442028, -0.028658105060458183, -1.6492003851453774e-05, -0.002660763915628195, 0.021341435611248016, 0.014059345237910748, 0.0015750201418995857, -0.02374805323779583, 0.03858885541558266, 0.0037413211539387703, -0.004695669282227755, -0.01851988583803177, 0.01159740425646305, 0.010324940085411072, -0.012883699499070644, -0.04506182670593262, 0.0018257093615829945, -0.005567030515521765, -0.007302837446331978, -0.031120046973228455, 0.015103595331311226, 0.007261344231665134, 0.013519931584596634, 0.02550460584461689, 0.01301509514451027, 0.00037884333869442344, -0.00939133856445551, 0.03178394213318825, 0.019695531576871872, -0.008395496755838394, 0.008326341398060322, -0.006846410222351551, -0.012821459211409092, -0.013070419430732727, 0.006327742710709572, -0.04022093117237091, -0.038339897990226746, 0.01899014413356781, 0.020373256877064705, -0.017855990678071976, 0.015615347772836685, -0.03623756393790245, 0.02723349817097187, -0.019640207290649414, 0.00437755323946476, -0.002830195240676403, -0.008111958391964436, -0.033609651029109955, 0.011362274177372456, 0.016860149800777435, -0.0068360366858541965, 0.004761367104947567, -0.014826972968876362, 0.019100792706012726, -0.035628996789455414, 0.007759264670312405, -0.03147965669631958, -0.01349226851016283, 0.00642801821231842, -0.007828420028090477, 0.0012301062233746052, 0.001341619761660695, -0.007911407388746738, -0.020553061738610268, 0.028091028332710266, -0.006362320389598608, 0.0025795060209929943, -0.016389891505241394, 0.06815981864929199, 0.02572590485215187, -0.002060838509351015, 0.021327605471014977, -0.006445307284593582, -0.019667869433760643, -0.009827018715441227, -0.003720574313774705, 0.01473015546798706, -0.03897612914443016, 0.015587685629725456, -0.006445307284593582, -0.01748255081474781, -0.013201815076172352, -0.0010892016580328345, -0.007703940384089947, -0.011147892102599144, 0.023429937660694122, 0.007109201513230801, -0.0013139575021341443, 0.024162987247109413, -0.0016121913213282824, 0.0262791495770216, 0.0016191068571060896, -0.013533762656152248, -0.0018222515936940908, 0.014287559315562248, -0.017344238236546516, -0.00800130981951952, 0.004298024345189333, 0.022171303629875183, -0.002145554404705763, -0.0242459736764431, -0.019598713144659996, -0.007911407388746738, 0.02145208604633808, -0.017662355676293373, 0.012862952426075935, 0.01825709454715252, 0.008312510326504707, 0.0036548764910548925, -0.013077334500849247, -0.04143806919455528, -0.02775908075273037, -0.00744114862754941, -0.004239242058247328, -0.012192142195999622, -0.010394095443189144, -0.02623765729367733], "b689de3d-49d0-4f72-b07a-a561248ccc58": [-0.012998919002711773, -0.003021528013050556, -0.008647643961012363, -0.02514680102467537, -0.03157076612114906, 0.02719203755259514, -0.02775482088327408, -0.030335387215018272, 0.01096054632216692, -0.021495573222637177, 0.007741700392216444, 0.00901825726032257, 0.012003753334283829, -0.00018466323672328144, 0.006276405416429043, -0.010637975297868252, 0.008187809027731419, -0.028825480490922928, 0.023183923214673996, -0.014659815467894077, 0.01710311882197857, 0.01946406252682209, -0.0036477958783507347, -0.024611469358205795, -0.009052573703229427, 0.02325255423784256, 0.008050545118749142, -0.024748733267188072, -0.011489013209939003, -0.011056630872189999, 0.032504159957170486, -0.005922949872910976, -0.01910717599093914, -0.015963826328516006, -0.010061465203762054, 0.004859152249991894, 0.0076112993992865086, 0.0024484500754624605, 0.02177010104060173, 0.0006575812585651875, 0.032394349575042725, -0.0024827660527080297, 0.01106349378824234, 0.017171749845147133, 0.0038022182416170835, 0.0033372356556355953, 0.01244299951940775, 0.015757929533720016, -0.016883496195077896, 0.027233216911554337, -0.011289980262517929, 0.013348942622542381, -0.026546895503997803, -0.02617628127336502, 0.0037404492031782866, -0.02689005620777607, 0.0030180965550243855, 0.002765873447060585, -0.0004431059642229229, -0.007474035490304232, 0.0026629252824932337, -0.004066451918333769, -0.04411671310663223, -0.008620191365480423, -0.0009720020461827517, -0.0034985211677849293, -0.014151938259601593, 0.005150838755071163, -0.02602529153227806, -0.00955358799546957, 0.009128068573772907, 0.018887553364038467, -0.0020246468484401703, 0.007288728840649128, 0.03752803057432175, -0.006190615240484476, -0.0007914138841442764, 0.012765569612383842, 0.011694909073412418, 0.004890036769211292, 0.011646866798400879, -0.012484178878366947, -0.01997194066643715, -0.008929035626351833, 0.007487761788070202, 0.01736392080783844, -0.0015467958291992545, 0.021893639117479324, -0.007975049316883087, -0.009656536392867565, 0.021907364949584007, 0.025009535253047943, 0.012971466407179832, 0.015565759502351284, -0.005243492312729359, -0.009677126072347164, -0.00017082957492675632, 0.03442585840821266, -0.01306068804115057, -0.030253028497099876, -0.016773683950304985, 0.01848948746919632, -0.02505071461200714, -0.005119954235851765, -0.03950463607907295, -0.008462337777018547, 0.020452365279197693, -0.010885050520300865, 0.01023990847170353, -0.038955576717853546, -0.019985666498541832, -0.012511631473898888, 0.01910717599093914, 0.001981751760467887, -0.039010483771562576, 0.024460479617118835, 0.01042521558701992, -0.030500104650855064, -0.014714721590280533, -0.027727367356419563, 0.012992056086659431, 0.003987524658441544, -0.003026675432920456, -0.013348942622542381, 0.00835252646356821, 0.013795051723718643, -0.005699895787984133, 0.009004531428217888, 0.012909697368741035, -0.010843871161341667, 0.023650620132684708, 0.010823281481862068, 0.020246468484401703, 0.011715498752892017, -0.022113261744379997, -0.0009685704717412591, -0.02413104474544525, 0.011543918401002884, -0.020726893097162247, -0.012593990191817284, 0.027617555111646652, 0.02981378324329853, -0.009924201294779778, -0.022936847060918808, -0.00204866798594594, -0.0032720351591706276, 0.001345189055427909, 0.010013422928750515, 0.011351748369634151, -0.0027418523095548153, 0.024570289999246597, -0.006667608395218849, 0.023334912955760956, 0.02013665810227394, -0.015373589470982552, -0.011097810231149197, -0.010356583632528782, 0.03881831467151642, -0.019271893426775932, -0.010857597924768925, 0.004540013149380684, 0.005384188145399094, 0.012580263428390026, 0.001162456115707755, 0.005205744411796331, 0.02074061892926693, -0.01644425094127655, -0.0015442222356796265, -0.007343634497374296, 0.007707384414970875, 0.005257218610495329, 0.01303323544561863, 0.005339577328413725, 0.004989553242921829, 0.01695212721824646, 0.015799108892679214, -0.0009471229277551174, -0.01730901561677456, -0.0028448004741221666, -0.03247670829296112, -0.031131519004702568, -0.016567789018154144, -0.009539861232042313, -0.0008300194167532027, -0.006190615240484476, 0.002170490100979805, 0.006228362675756216, -0.006043056026101112, 0.009992833249270916, -0.006183751858770847, 0.02396632730960846, 0.022923121228814125, 0.027164584025740623, 0.000924817519262433, -0.62636399269104, -0.030198123306035995, -0.012058659456670284, -0.00809172447770834, 0.00983497966080904, 0.014536278322339058, 0.009814389981329441, 0.01818750612437725, -0.023334912955760956, -0.005360166542232037, -0.019999392330646515, 0.02156420424580574, -0.009093753062188625, 0.005442525260150433, -0.013774462044239044, -0.01817377842962742, -0.00983497966080904, -0.009951653890311718, 0.010212455876171589, 0.005878339055925608, -0.013328352943062782, 0.014961796812713146, -0.008057408034801483, 0.01833849586546421, 0.012793023139238358, -0.002537671709433198, -0.008002502843737602, -0.008702550083398819, -0.020987695083022118, 0.004708162043243647, -0.01669132523238659, 0.022621139883995056, 0.007535804063081741, -0.0350298210978508, 0.056772470474243164, -0.01193512137979269, -0.023883970454335213, 0.022936847060918808, 0.013897999189794064, 0.028441140428185463, -0.005305260885506868, -0.033821895718574524, 0.015497127547860146, -0.006430827546864748, 0.0015931224916130304, 0.008929035626351833, -0.0005434803897514939, -0.019340524449944496, 0.01741882599890232, -0.0031296235974878073, -0.008929035626351833, -0.017130570486187935, -0.01198316365480423, 0.005559199955314398, 0.01195571105927229, 0.020452365279197693, 0.005473409779369831, -0.006846051663160324, 0.0009050857624970376, -0.013376396149396896, -0.019505241885781288, 0.017967883497476578, -0.00038798581226728857, -0.0157716553658247, -0.007741700392216444, 0.016265807673335075, -0.039257559925317764, -0.002673220122233033, 0.012614579871296883, -0.0006614418234676123, -0.000816721934825182, 0.022470148280262947, 0.009622219949960709, 0.035221993923187256, 0.02038373239338398, 0.016210900619626045, 0.04592859745025635, -0.014714721590280533, -0.03610048443078995, 0.015401042997837067, -0.004447360057383776, -0.01472844835370779, -0.005898928735405207, -0.00436500133946538, -0.0011907669249922037, -0.01972486451268196, -0.03129623457789421, 0.006166594102978706, 0.022566232830286026, -0.008215261623263359, 0.02422712929546833, 0.0045125605538487434, 0.0070347897708415985, 0.008798634633421898, -0.017405100166797638, 0.02201717719435692, -0.020726893097162247, -0.023142743855714798, -0.011173305101692677, -0.010548753663897514, -0.009354555048048496, -0.0002775310422293842, 0.014481372199952602, -0.004275779705494642, 0.0008484643185511231, 0.01531868427991867, -0.02212698757648468, -0.00666074501350522, 0.03472784161567688, -0.018626751378178596, 0.009423187002539635, 0.01042521558701992, -0.018475759774446487, -0.013122457079589367, 4.436957897269167e-05, -0.0321747288107872, 0.033327747136354446, 0.024089865386486053, 0.00693870522081852, 0.022525053471326828, 0.021385760977864265, 0.005943539552390575, 0.025984112173318863, 0.006725945509970188, -0.005720485467463732, 0.03519453853368759, 0.006564659997820854, 0.006544070318341255, 0.008064270950853825, 0.007124011870473623, -0.004564034286886454, -0.008805498480796814, 0.041151806712150574, -0.022154441103339195, -0.007226959802210331, -0.019326798617839813, 0.017171749845147133, -0.007501488085836172, 0.01715802401304245, -0.008640781044960022, -0.03750057891011238, 0.0007283581071533263, 0.020273922011256218, -0.02951180189847946, -0.012257692404091358, -0.023595714941620827, -0.0038948715664446354, 0.010315404273569584, -0.020013120025396347, -0.012491041794419289, 0.029923593625426292, -0.005696463864296675, -0.008455473929643631, 0.023993780836462975, 0.006245520897209644, 0.007679931819438934, 0.014920617453753948, -0.02970397099852562, -0.023321187123656273, -0.02227797918021679, 0.007336771115660667, -0.0009145226795226336, -0.028043074533343315, -0.0059263817965984344, -0.012154744006693363, -0.02259368635714054, 0.005003280006349087, -0.008743729442358017, 0.0004671272181440145, -0.025421328842639923, 0.009931064210832119, 0.007796606048941612, -0.005017006304115057, 0.005425367038697004, 0.008675097487866879, 0.013815641403198242, -0.008592738769948483, 0.032806143164634705, -0.008558422327041626, -0.028468593955039978, -0.006173457019031048, -0.007645615376532078, -0.013252858072519302, 0.018722835928201675, 0.002738420618698001, 0.01638934388756752, 0.01803651452064514, 0.03747312352061272, -0.0018427717732265592, 0.009793800301849842, 0.004663550760596991, 0.012635168619453907, 0.004962100647389889, 0.01890127919614315, -0.007480898406356573, 0.005291534587740898, 0.03137859329581261, 0.005428798962384462, -0.035825952887535095, 0.030966801568865776, 0.018160052597522736, 0.02437812089920044, 0.026697885245084763, -0.009944790974259377, 0.026299819350242615, -0.03739076480269432, 0.0025445350911468267, -0.02888038568198681, 0.022168166935443878, 0.02964906580746174, -0.00581313855946064, -0.019642505794763565, -0.009189837612211704, -0.0026629252824932337, -0.0025616930797696114, 0.014604910276830196, -0.006780851166695356, 0.00546997832134366, -0.008572149090468884, 0.005377324763685465, -0.0007159185479395092, -0.021275950595736504, 0.029731424525380135, -0.0026217461563646793, 0.008887856267392635, -0.0071789175271987915, 0.0050890701822936535, 0.017899250611662865, 0.011681183241307735, -0.009732031263411045, -0.008325072936713696, -0.009231016971170902, 0.0027761682868003845, 0.022552506998181343, -0.008489790372550488, -0.03634755685925484, 0.02392514981329441, -0.0237741582095623, 0.035359255969524384, 0.03187274560332298, 0.012937149964272976, 0.019711138680577278, 0.012353777885437012, -0.021907364949584007, -0.003356109606102109, 0.006235226057469845, 0.033108122646808624, 0.024405574426054955, -0.01223710272461176, 0.008036818355321884, -0.031268782913684845, 0.020164109766483307, 0.006890662480145693, -0.005020437762141228, 0.02679396979510784, -0.00955358799546957, 0.004704730119556189, 0.005631263367831707, -0.010466394945979118, 0.02023274265229702, 0.005984718911349773, 0.02771364152431488, 0.0017724238568916917, 0.02279958315193653, -0.0026800832711160183, 0.0027590102981776, -0.015524580143392086, -0.02069943957030773, -0.018626751378178596, -0.007439719513058662, 0.00466011930257082, 0.01541476882994175, -0.006056782323867083, 0.0033063513692468405, -0.011221347376704216, -0.007618162781000137, 0.018887553364038467, -0.013239131309092045, -0.001957730622962117, 0.005284671671688557, -0.016375618055462837, -0.022607412189245224, -0.0018307612044736743, 0.013287173584103584, 0.0013923736987635493, -0.002050383947789669, 0.003997819498181343, 0.024034960195422173, -0.02683514915406704, -0.011660593561828136, 0.02910000830888748, -0.004474812652915716, -0.0043924544006586075, 0.0025359559804201126, 0.018420854583382607, 0.010493847541511059, 0.018214957788586617, -0.008839813992381096, -0.044995203614234924, 0.0005923807621002197, -0.02366434782743454, 0.0005940966075286269, 0.02259368635714054, -0.010967409238219261, 0.051034826785326004, 0.0016866337973624468, -0.013657786883413792, -0.000622836290858686, 0.011804720386862755, 0.005940108094364405, 0.019422883167862892, 0.0027538628783077, 0.0010414920980110765, 0.009073163382709026, 0.0017861502710729837, 0.02124849706888199, 0.0157716553658247, -0.005013574846088886, 0.014206844381988049, -0.025393875315785408, 0.006509754341095686, -0.004299800843000412, -0.02402123436331749, -0.00015903344319667667, 0.010624248534440994, 0.004481676034629345, 0.014618637040257454, 0.03173547983169556, -0.022868214175105095, -0.015167693607509136, -0.022607412189245224, -0.014412740245461464, -0.0011281401384621859, 0.0050650485791265965, 0.016169721260666847, -0.0011564508313313127, 0.014007811434566975, 0.0023609441705048084, -0.0028774007223546505, -0.009080026298761368, -0.03697897493839264, -0.025942932814359665, 0.009155522100627422, -0.007041653152555227, -0.02433694154024124, -0.01894245855510235, 0.018709110096096992, 0.010953682474792004, -0.004890036769211292, -0.020603355020284653, 0.015703024342656136, 0.027425386011600494, 0.011715498752892017, 0.00522290263324976, 0.0213583093136549, -0.016416797414422035, 0.004756204318255186, 0.010747786611318588, -0.011516465805470943, 0.00901139434427023, 0.010404625907540321, -0.013259720988571644, 0.0015510853845626116, 0.009587903507053852, 0.008942762389779091, 0.008784908801317215, 0.013197951950132847, -0.0019388567889109254, 0.017199203372001648, -0.017281562089920044, 0.027521470561623573, 0.016787411645054817, 0.0032514454796910286, 0.004114494193345308, 0.03472784161567688, -0.011145852506160736, -0.01916208118200302, -0.007597573101520538, -0.002264859154820442, 0.006664176471531391, 0.01607363671064377, 0.006187183316797018, 0.0031587921548634768, -0.007981913164258003, -0.02617628127336502, -0.010054602287709713, 0.039724256843328476, -0.003956640604883432, -0.016732504591345787, -0.03190019726753235, -0.00840056873857975, -0.040136050432920456, 0.006314152851700783, -0.01586773991584778, 0.01014382392168045, -0.03489255905151367, -0.005988150369375944, -0.025778215378522873, 0.022758403792977333, -0.01336953230202198, 0.015812834724783897, -0.013204815797507763, -0.01700703427195549, 0.022085808217525482, 0.003448762930929661, -0.013259720988571644, 9.233161836164072e-05, -0.019848402589559555, -0.004141947254538536, 0.03634755685925484, -0.004564034286886454, -0.01777571253478527, 0.0018873827066272497, 0.02058962918817997, -0.012909697368741035, 0.0042311688885092735, 0.023801611736416817, 0.014591183513402939, -0.00048728787805885077, -0.004382159560918808, 0.0033338041976094246, 0.012978329323232174, -0.0026148830074816942, -0.002285448834300041, 0.030555009841918945, -0.03678680211305618, -0.0020795525051653385, -0.01449509896337986, 0.026615526527166367, 0.019065996631979942, 0.023595714941620827, 0.013767598196864128, 0.007192643824964762, 0.017116844654083252, 0.01833849586546421, -0.01756981760263443, 0.01946406252682209, -0.007213233504444361, 0.028907839208841324, 0.010356583632528782, -0.0036066167522221804, -0.007776016369462013, 0.004121357575058937, -0.020754346624016762, 0.007940733805298805, -0.033217936754226685, 0.02713713049888611, 0.008798634633421898, -0.008002502843737602, 0.001949151512235403, 0.016677599400281906, -0.025778215378522873, -0.00754266744479537, 0.01111153606325388, 0.005840591620653868, 0.018873827531933784, 0.006749966647475958, -0.01644425094127655, -0.03118642419576645, -0.014248023740947247, -0.013939178548753262, 0.01298519317060709, -0.014206844381988049, -0.026368452236056328, 0.003115897299721837, -0.032751236110925674, 0.020301373675465584, -0.006502890959382057, 0.034810200333595276, -0.02407613955438137, 0.005133680999279022, -0.0027092520613223314, 0.010349719785153866, 0.035825952887535095, -0.007172054145485163, 0.009313375689089298, -0.008860403671860695, -0.005075343418866396, -0.023444725200533867, -0.026340998709201813, -0.007961323484778404, -0.00962908286601305, 0.003551711095497012, -0.005833728238940239, 0.017405100166797638, 0.024199677631258965, -0.011427244171500206, 0.0005168854841031134, 0.0031725186854600906, 0.01571675017476082, -0.014399013482034206, 0.015812834724783897, -0.01833849586546421, -0.008784908801317215, 0.004752772860229015, 0.031021708622574806, 0.015565759502351284, 0.005559199955314398, -0.003289193147793412, 0.01813259907066822, -0.0049689640291035175, 0.009965380653738976, 0.00013458325702231377, -0.02238778956234455, 0.004238031804561615, -0.02715085819363594, 0.0035894587635993958, 0.011784130707383156, -0.026491990312933922, 0.00550429429858923, 0.016005005687475204, -0.0048660156317055225, -0.004334116820245981, -0.022730950266122818, 0.005095933098345995, -0.019958212971687317, 0.015044155530631542, -0.024707555770874023, 0.004313527140766382, 0.0122439656406641, -0.004711593501269817, -0.009237879887223244, -0.006777419708669186, 0.031076613813638687, 0.012456725351512432, -0.012319461442530155, 0.004814541433006525, -0.008126039989292622, 0.016787411645054817, 0.019038543105125427, -0.005706758704036474, 0.010198730044066906, -0.017144298180937767, -0.016252079978585243, -0.033629726618528366, -0.00022262537095230073, 0.005524883978068829, -0.0412890687584877, 0.01880519464612007, 0.0018993932753801346, -0.009615357033908367, 0.022470148280262947, -0.020397460088133812, 0.0017475447384640574, 0.03376699239015579, -0.012333188205957413, 0.012587126344442368, -0.001787866116501391, 0.01935425214469433, 0.0441441647708416, 0.01139292772859335, -0.025640951469540596, -0.05946284905076027, -0.011049767956137657, -0.013664650730788708, 0.03892812505364418, 0.04796011000871658, -0.0033114987891167402, -0.022607412189245224, 0.03187274560332298, 0.04249699413776398, -0.00464982446283102, -0.014838259667158127, 0.02391142211854458, 0.042332276701927185, 0.006739671807736158, -0.014700994826853275, 0.02094651572406292, -0.03678680211305618, 0.002659493824467063, -0.005178291816264391, -0.01306068804115057, -0.014687268994748592, -0.01741882599890232, -0.013355806469917297, 0.013156772591173649, -0.028468593955039978, 0.014193117618560791, 0.013952905312180519, -0.034590575844049454, -0.009670262224972248, -0.017377646639943123, 0.016581514850258827, 0.016403071582317352, -0.013328352943062782, 0.023376092314720154, 0.0175149105489254, -0.00435470649972558, 0.011688046157360077, 0.014316655695438385, -0.013493070378899574, 0.0051062279380857944, -0.004752772860229015, 0.04559916630387306, -0.02182500623166561, -0.005590084474533796, -0.005095933098345995, 0.012786159291863441, 0.01670505292713642, 0.00030412597698159516, 0.0075907097198069096, -0.0072612757794559, -0.0014850270235911012, -0.02094651572406292, 0.011660593561828136, -0.003296056529507041, -0.014714721590280533, -0.02141321450471878, -0.010136961005628109, -0.02735675312578678, -0.012209650129079819, -0.010315404273569584, 0.009134932421147823, -0.026052743196487427, -0.037061333656311035, -0.0029220115393400192, 0.011845899745821953, 0.008249578066170216, 0.005874907597899437, -0.002692094072699547, 0.01390486303716898, 0.03533180430531502, -0.04787775129079819, -0.0009865864412859082, -0.0044919708743691444, 0.007666205056011677, -0.012079249136149883, -0.0006507180514745414, 0.008242715150117874, -0.014124485664069653, 0.013197951950132847, -0.0023077542427927256, 0.01746000535786152, -0.002036657417193055, -0.004447360057383776, 0.010617385618388653, -0.0041282204911112785, 0.017281562089920044, 0.025009535253047943, 0.01777571253478527, 0.005150838755071163, -0.008853540755808353, 0.003990956582129002, -0.011722362600266933, -0.005178291816264391, -0.013143046759068966, -0.00814662966877222, -0.03214727342128754, 0.011338022537529469, 0.013424438424408436, 0.005590084474533796, 0.003254877170547843, -0.018764015287160873, -0.044940296560525894, 0.003551711095497012, 0.01633443869650364, -0.02263486571609974, -0.02529779076576233, -0.00952613539993763, -0.0127792963758111, -0.013712693005800247, 0.010933092795312405, -0.01021931879222393, 0.0031536449678242207, 0.022964298725128174, 0.012477315030992031, -0.007226959802210331, 0.01385682076215744, -0.015071608126163483, -0.01843458041548729, -0.027645008638501167, -0.03412387892603874, -0.039971332997083664, 0.00922415405511856, -0.022772129625082016, 0.037830010056495667, 0.014714721590280533, -0.025517413392663002, -0.03975171223282814, -0.007830922491848469, -0.024858545511960983, -0.005387619603425264, -0.01416566502302885, -0.0008669091621413827, 0.0048042465932667255, 0.004375296179205179, -0.007446582429111004, 0.018983637914061546, -0.015963826328516006, 0.017322741448879242, -0.006310721393674612, 0.010322267189621925, -0.006986747495830059, 0.004162536468356848, 0.029594160616397858, -0.013479343615472317, -0.01715802401304245, -0.005696463864296675, 0.006773987784981728, -0.011921395547688007, 0.012614579871296883, 0.006207772996276617, -0.019889581948518753, -0.0057033272460103035, 0.005061617121100426, -0.019903307780623436, -0.02910000830888748, -0.001981751760467887, 0.0038022182416170835, -0.01654033549129963, -0.004114494193345308, 0.009134932421147823, -0.0011504455469548702, -0.005758232902735472, 0.01976604387164116, 0.0220720823854208, -0.014069579541683197, 0.009697715751826763, -0.0030318228527903557, -0.017350194975733757, -0.018667930737137794, -0.029182367026805878, 0.014069579541683197, 0.006674471311271191, 0.0033183619379997253, 0.0178717989474535, -0.0018170347902923822, -0.001993762329220772, -0.0178717989474535, 0.009773210622370243, -0.004581192508339882, 0.0007146316929720342, -0.003949777223169804, -0.010720333084464073, 0.026546895503997803, -0.014989250339567661, 0.009663399308919907, -0.012813612818717957, -0.008627054281532764, 0.009814389981329441, 0.007130874786525965, -0.023856516927480698, 0.021632837131619453, 0.006423964165151119, -0.02786463126540184, -0.03341010585427284, 0.003062707372009754, -0.02090533636510372, -0.01910717599093914, -0.016581514850258827, 0.021687742322683334, -0.012744979932904243, 0.007144601084291935, 0.019738590344786644, -0.0202876478433609, 0.0003122760390397161, 0.012367503717541695, 0.0033132145181298256, -0.03862614557147026, 0.008929035626351833, 0.2995653748512268, -0.012415545992553234, 0.0023334913421422243, -0.004618939943611622, -0.010329131036996841, 0.012401820160448551, 0.01428920216858387, -0.00995851680636406, -0.005970992613583803, 0.0020246468484401703, 0.015359863638877869, -0.022662319242954254, 0.019958212971687317, 0.00038798581226728857, 0.0031793818343430758, -0.020919064059853554, -0.03681425750255585, -0.015236325562000275, -0.01746000535786152, 0.008277030661702156, 0.0157304760068655, 0.022305430844426155, -0.0007107711280696094, -0.014110758900642395, 0.02325255423784256, -0.02704104594886303, -0.0003727580769918859, 0.0028928429819643497, 0.014124485664069653, 0.024858545511960983, -0.001088676624931395, -0.0056827375665307045, 0.00724754948168993, -0.0024278603959828615, -0.024048686027526855, 0.007453445810824633, 0.005524883978068829, 0.01946406252682209, 0.035935766994953156, 0.022579960525035858, 0.004653256386518478, -0.01914835534989834, -0.001365778734907508, -0.025242885574698448, -0.019271893426775932, 0.007474035490304232, 0.01531868427991867, -0.016663873568177223, -0.0196150541305542, 0.032449256628751755, -0.02069943957030773, -0.019120901823043823, 0.012992056086659431, 0.00793386995792389, 0.007281865458935499, 0.008901583030819893, 0.02422712929546833, -0.00607050908729434, -0.004464517813175917, -0.013788187876343727, 0.009642809629440308, 0.031104065477848053, -0.013479343615472317, 0.04337548464536667, -0.031131519004702568, -0.013225405476987362, -0.008812361396849155, 0.007350497413426638, 0.014961796812713146, -0.0026646412443369627, 0.01813259907066822, -0.007027926854789257, -0.006170025561004877, -0.013499933294951916, -0.046175673604011536, -0.029676519334316254, 0.02299175225198269, 0.033327747136354446, 0.012909697368741035, 0.021591657772660255, -0.023005478084087372, -0.0033132145181298256, -0.0032205611933022738, 0.01869538240134716, -0.01746000535786152, -0.03222963213920593, 0.004883173853158951, -0.01869538240134716, -0.012717527337372303, -0.0008355957688763738, 0.008544696494936943, 0.023472176864743233, -0.011996890418231487, -0.0026612095534801483, 0.0021533321123570204, 0.016059910878539085, -0.007920144125819206, 0.03944972902536392, -0.01614226959645748, 0.018887553364038467, -0.03184529393911362, 0.040136050432920456, 0.004533149767667055, 0.023499630391597748, -0.034453313797712326, 0.010356583632528782, 0.00042101502185687423, 0.016869768500328064, 0.004467949736863375, -0.02222307212650776, -0.004244895186275244, -0.033602274954319, -0.008077997714281082, -0.009402597323060036, 0.018777741119265556, -0.005336145404726267, -0.011104673147201538, -0.009375144727528095, -0.006324447691440582, 0.004522855393588543, 0.021550478413701057, -0.025160526856780052, -0.001028623548336327, 0.006825461983680725, -0.003407583571970463, -0.03648482263088226, -0.016169721260666847, 0.004416475538164377, -0.002915148390457034, -0.04010859876871109, 0.03143350034952164, -0.01905227079987526, 0.01890127919614315, 0.0010946819093078375, -0.017542364075779915, 0.01618344895541668, -0.013781324960291386, 0.0014043842675164342, -0.011962574906647205, 0.0006258389330469072, 0.005511157214641571, -0.020397460088133812, 0.02295057289302349, 0.0013623471604660153, -0.00523662893101573, 0.0029717697761952877, 0.014714721590280533, 0.0010535026667639613, 0.02161911129951477, -0.0035379845649003983, -0.024817366153001785, -0.016252079978585243, -0.00957417767494917, 0.012992056086659431, 0.023376092314720154, 0.007494625169783831, -0.003435036400333047, -0.03969680517911911, -0.0011504455469548702, 0.009031984023749828, -0.026725338771939278, -0.002673220122233033, 0.0038365342188626528, -0.027466565370559692, -0.00011270677350694314, 0.005751369521021843, -0.1785532683134079, 0.01884637400507927, 0.02970397099852562, 0.0015519432490691543, 0.009663399308919907, 0.00405958853662014, 0.008002502843737602, 0.010438942350447178, -0.013568565249443054, 0.0092721963301301, 0.029896141961216927, -0.009059436619281769, -0.008558422327041626, -0.01726783625781536, 0.004835131112486124, -0.003956640604883432, -0.024611469358205795, 0.003822807688266039, 0.027178309857845306, 0.013081277720630169, 0.00692841038107872, -0.01607363671064377, -0.008036818355321884, -0.0087574552744627, 0.01997194066643715, 0.012889107689261436, -0.010047739371657372, 0.022648591548204422, 0.0011169874342158437, 0.011948848143219948, -0.0038948715664446354, -0.006897525861859322, 0.010130097158253193, -0.006345037370920181, 0.021193591877818108, -0.03604557737708092, -0.019738590344786644, 0.010514437220990658, -0.013685240410268307, -0.005442525260150433, 0.004663550760596991, 0.016759958118200302, 0.00218250066973269, 0.01531868427991867, 0.007508351467549801, 0.00464982446283102, 0.006835756823420525, 0.0030180965550243855, -0.003891439875587821, -0.021797554567456245, -0.0020452365279197693, -0.046010956168174744, 0.0031038864981383085, -0.007439719513058662, -0.011585097759962082, 0.037720199674367905, -0.006125414744019508, -0.01654033549129963, 0.0009582756320014596, 0.014783353544771671, -0.03206491470336914, -0.015483400784432888, -0.012662622146308422, 0.009670262224972248, -0.006578386295586824, -0.01781689189374447, -0.026093922555446625, 0.023142743855714798, 0.009279059246182442, 0.002673220122233033, 0.021962270140647888, -0.050321053713560104, 0.01428920216858387, -0.012944013811647892, 0.025215432047843933, -0.018681656569242477, -0.020273922011256218, 0.0026045881677418947, 0.005476841237396002, -0.001956014661118388, -0.04870133474469185, 0.016059910878539085, -0.026203734800219536, -0.015799108892679214, 0.017199203372001648, 0.024831091985106468, -0.006194046698510647, 0.006763692945241928, 0.0002878258528653532, -0.0031965398229658604, 0.025723310187458992, -0.03728095442056656, 0.001319452072493732, -0.02468010224401951, 0.035771049559116364, 0.019985666498541832, 0.0020194994285702705, 0.026491990312933922, -0.01670505292713642, 0.01531868427991867, -0.01916208118200302, -0.005964129231870174, -0.008393705822527409, 0.01946406252682209, 0.01242240983992815, -0.013438164256513119, 0.00814662966877222, 0.034755293279886246, 0.02893529273569584, -0.01042521558701992, 0.012593990191817284, -0.008572149090468884, -0.0069558629766106606, -0.0034539103507995605, -0.008592738769948483, -0.007679931819438934, -0.019642505794763565, -0.017597269266843796, 0.0026766518130898476, -0.01665014587342739, 0.011379201896488667, 0.0030764336697757244, 0.014714721590280533, 0.037006426602602005, -0.019738590344786644, 0.009059436619281769, -0.0009745757561177015, -0.002671504393219948, 0.011797857470810413, 0.004890036769211292, -0.0022614276967942715, 0.001875372021459043, 0.00048471419722773135, 0.016677599400281906, -0.016883496195077896, 0.02899019792675972, -0.022813308984041214, -0.026588074862957, -0.003006085753440857, 0.011694909073412418, 0.03648482263088226, 0.008160356432199478, -0.01654033549129963, -0.006770556326955557, -0.007872101850807667, 0.020603355020284653, -0.009635946713387966, 0.007048516534268856, -0.002807052806019783, -0.015469674952328205, -0.017350194975733757, 0.011736088432371616, -0.01730901561677456, 0.03903793543577194, 0.014426467008888721, -0.007975049316883087, 0.026080196723341942, -0.012360640801489353, 0.006115119904279709, 0.016252079978585243, -0.0021927955094724894, 0.00521260779350996, -0.029264725744724274, -0.03958699479699135, 0.0049861217848956585, -0.01586773991584778, -0.0006429969798773527, 0.01685604266822338, -0.013561702333390713, -0.026931235566735268, 0.0015347852604463696, -0.01884637400507927, -0.014151938259601593, 0.02945689670741558, 0.004443928133696318, -0.03330029174685478, -0.023732978850603104, -0.00896335206925869, -0.015497127547860146, -0.023842791095376015, 0.018297316506505013, -0.013383259065449238, 0.0044096121564507484, 0.00847606360912323, -0.025901753455400467, 0.0006485733320005238, -0.024831091985106468, -4.7399040340678766e-05, -0.023897696286439896, 0.03596321865916252, 0.006269542034715414, -0.00377819687128067, -0.006770556326955557, -0.024034960195422173, 0.015263778157532215, 0.002927158959209919, -0.02186618559062481, 0.02540760301053524, -0.014371560886502266, 0.018118873238563538, -0.03283359482884407, -8.518691174685955e-06, -0.029951047152280807, -0.0023557967506349087, 0.01165372971445322, -0.018722835928201675, 0.0014061001129448414, 0.0009445492178201675, -0.008455473929643631, -0.016938401386141777, 0.025997838005423546, 0.0482620894908905, -0.003347530495375395, -0.012127291411161423, 0.009045710787177086, -0.01508533488959074, -0.012998919002711773, 0.021550478413701057, 0.023417271673679352, -0.028358781710267067, -0.012957739643752575, -0.008572149090468884, 0.004447360057383776, -0.0058440230786800385, -0.001861645607277751, 0.018777741119265556, -0.020150383934378624, -0.017940429970622063, -0.1106349378824234, 0.02632727287709713, -0.015140241011977196, 0.018146326765418053, -0.0050684805028140545, -0.0076318890787661076, 0.034590575844049454, -0.0043306853622198105, 0.013616608455777168, 0.008579012006521225, -0.031021708622574806, -0.0007210659678094089, 0.013307763263583183, -0.019793497398495674, -0.035221993923187256, -0.02130340225994587, 0.020520996302366257, 0.014234296977519989, 0.022662319242954254, 0.0178717989474535, 0.01275184378027916, 0.008620191365480423, 0.008901583030819893, -0.004419906996190548, -0.03964189812541008, 0.007549530826508999, -0.015497127547860146, -0.00407331483438611, -0.023842791095376015, 0.0035585742443799973, 0.003248014021664858, -0.014948070980608463, -0.01582656241953373, 0.03022557497024536, -0.01339012198150158, -0.020315101370215416, 0.009587903507053852, 0.01807769387960434, 0.012793023139238358, 0.014179390855133533, -0.017240382730960846, -0.018873827531933784, 0.0007442292990162969, -0.01390486303716898, -0.008283894509077072, 0.012223376892507076, -0.024721281602978706, 0.01654033549129963, 0.03022557497024536, 0.004694435279816389, 0.020617082715034485, 0.006513185799121857, -0.004704730119556189, -0.0033012039493769407, -0.007453445810824633, -0.02698614075779915, 0.027068499475717545, 0.01472844835370779, -0.011365475133061409, -0.0035071000456809998, 0.009931064210832119, 0.02520170621573925, 0.013101867400109768, -0.011962574906647205, 0.012580263428390026, -0.00288769556209445, 0.0004705588216893375, 0.014440192840993404, 0.017707081511616707, -0.006513185799121857, -0.01741882599890232, 0.008592738769948483, -0.003623774740844965, 0.007844648323953152, 0.00333551992662251, 0.0007819769671186805, 0.019093450158834457, 0.005421935580670834, 0.003038686001673341, 0.022717224434018135, 0.023183923214673996, 0.003234287491068244, -0.039257559925317764, 0.0003163510700687766, 0.012648895382881165, 0.009080026298761368, -0.028962744399905205, -0.016883496195077896, -0.008222125470638275, 0.02657434716820717, -0.03236689791083336, 0.025874299928545952, -0.002511934842914343, 0.02002684585750103, 0.014048989862203598, -0.0035928902216255665, -0.0019680254627019167, -0.00813976675271988, 0.029264725744724274, 0.02929217927157879, -0.005970992613583803, 0.008524106815457344, 0.01106349378824234, -0.011090947315096855, -0.03192765265703201, 0.005439093802124262, -0.03143350034952164, -0.04639529809355736, 0.008675097487866879, 0.01544222142547369, 0.0005194591940380633, -0.008668233640491962, -0.023595714941620827, 0.028660763055086136, -0.02161911129951477, -0.0035654373932629824, -0.01167431939393282, -0.006911252159625292, -0.015099061653017998, -0.014700994826853275, 0.021124958992004395, 0.004577761050313711, -0.0002934022049885243, -0.010287951678037643, 0.01072719693183899, -0.004694435279816389, 0.002009204588830471, -0.012511631473898888, 0.005308692809194326, 0.017858071252703667, 0.0009702862589620054, -0.00027238362235948443, 0.0059057921171188354, -0.008675097487866879, -0.03179038688540459, 0.03305321931838989, -0.002733273198828101, 0.0017741397023200989, -0.02376043237745762, 0.043924540281295776, 0.004711593501269817, 0.007789743132889271, 0.0013134467881172895, -0.016554061323404312, -0.016979580745100975, -0.017693353816866875, -0.0011967722093686461, -0.020754346624016762, -0.037006426602602005, 0.011619414202868938, -0.009793800301849842, -0.015950098633766174, -0.00042637690785340965, -0.03206491470336914, -0.017844345420598984, -0.01508533488959074, 0.008482927456498146, -0.00495523726567626, -0.00697988411411643, 0.014193117618560791, -0.012312598526477814, 0.018818920478224754, 0.008599601686000824, -0.01388427335768938, -0.0036409327294677496, -7.769367948640138e-05, 0.0025496825110167265, 0.009924201294779778, 0.0058852024376392365, 0.03420623764395714, 0.021701468154788017, 0.0011298558674752712, -0.018681656569242477, 0.012504767626523972, -0.007474035490304232, -0.011475286446511745, 0.007625026162713766, 0.015373589470982552, 0.009615357033908367, -0.020370006561279297, 0.02355453558266163, -0.015606938861310482, -0.013897999189794064, -0.0027487154584378004, -0.0013177362270653248, -0.0030301071237772703, -0.013074414804577827, -0.004437065217643976], "427e9668-cbaf-457e-ab76-98b61061e9b9": [-0.00601912708953023, -0.00989121850579977, -0.001892159809358418, -0.013948981650173664, -0.018783187493681908, 0.017108770087361336, -0.03313726931810379, -0.02887020632624626, 0.0064917453564703465, -0.03389345854520798, 0.0043582129292190075, 0.005941482726484537, 0.006572765298187733, 5.480469553731382e-05, 0.005283193662762642, -0.009067513048648834, 0.0035243795718997717, -0.014016498811542988, -0.0017048005247488618, -0.027330821380019188, 0.008223552256822586, 0.0325971357524395, -0.011005247011780739, -0.00412527984008193, -0.02887020632624626, 0.02246960811316967, 0.026763679459691048, -0.005053636152297258, 0.007636155933141708, -0.017324823886156082, 0.017594890668988228, -0.011558884754776955, -0.00868941843509674, -0.0024559255689382553, -0.004037507809698582, 0.016096018254756927, 0.005148159805685282, 0.007804947905242443, -0.0038957223296165466, 0.00399024598300457, 0.029113266617059708, -0.005134656559675932, 0.0017993240617215633, 0.02402249537408352, 0.00692722899839282, 0.020525122061371803, 0.004959112964570522, -0.010836455039680004, -0.01655513234436512, 0.023333823308348656, -0.012909222394227982, 0.03443359583616257, -0.0471537709236145, -0.04204949364066124, 0.01051237341016531, -0.011909972876310349, -0.004797072149813175, 0.0027124895714223385, 0.007366088684648275, -0.0191342756152153, 0.0077779414132237434, 0.00015265138063114136, -0.020282061770558357, -0.01859414018690586, -0.0025943350046873093, -0.01446210965514183, -0.0024542375467717648, -0.005090770777314901, -0.029248300939798355, 0.002315828111022711, -0.002487995894625783, 0.018202543258666992, 0.014300068840384483, 0.008777190931141376, 0.028222043067216873, 0.006049510091543198, -0.00725130969658494, 0.001712396158836782, 0.012092268094420433, 0.005566764622926712, -0.003134469734504819, -0.0015174412401393056, 0.0034045372158288956, -0.014975237660109997, 0.0012271187733858824, 0.022172534838318825, 0.004007125273346901, 0.026777183637022972, 0.01389496773481369, -0.018013495951890945, -0.004756562411785126, -0.005023253615945578, 0.01768941432237625, 0.010539380833506584, 0.0003029818763025105, -0.005455361679196358, 0.005651160608977079, 0.025899464264512062, -0.008048009127378464, -0.0222130436450243, -0.01502925157546997, 0.011018750257790089, -0.03721528872847557, 0.002643284620717168, -0.03367740660905838, 0.0039024739526212215, 0.02009301446378231, -0.003554762341082096, -0.011518375016748905, -0.03802549093961716, -0.018013495951890945, 0.010714923962950706, -0.010802696458995342, -0.007021752651780844, -0.02097073383629322, 0.007447108626365662, 0.0354868583381176, -0.02399548888206482, -0.017014246433973312, 0.004682293627411127, 0.019917471334338188, 0.00827756617218256, 0.015461359173059464, -0.002162227174267173, 0.01446210965514183, -0.009837205521762371, 0.0011325952364131808, -0.004135407041758299, 0.024981234222650528, -0.03672916814684868, 0.03257012739777565, 0.025345826521515846, 0.019174786284565926, -0.010120776481926441, 0.00597861735150218, -4.94244450237602e-05, -0.011774938553571701, 0.009924977086484432, 0.007008249405771494, -0.023698415607213974, 0.049395330250263214, 0.017878461629152298, -0.006049510091543198, -0.020282061770558357, 0.004969240166246891, 0.012969987466931343, -0.001817891257815063, 0.019917471334338188, 0.015191291458904743, 0.005219052545726299, 0.027344325557351112, -0.00946586299687624, -0.0014651156961917877, 0.024117019027471542, -0.006525503471493721, 0.0023698415607213974, -0.02464365027844906, 0.03019353561103344, 0.0014659595908597112, -0.016730675473809242, 0.027047250419855118, 0.02182144671678543, -0.003818077966570854, -0.004972616210579872, -0.003161476459354162, 0.017905468121170998, -0.015744930133223534, 0.005077267065644264, -0.013368336483836174, 0.020336074754595757, 0.003407913027331233, 0.00033273149165324867, -0.024778684601187706, 0.00768341775983572, -0.0007367776706814766, -0.0012195231392979622, 0.006657161749899387, -0.0011739492183551192, -0.02490021474659443, 0.017243804410099983, -0.01944485306739807, -0.00980344694107771, -0.011187542229890823, 0.028195036575198174, -0.020835699513554573, -0.016906220465898514, 0.032840196043252945, 0.006174416281282902, 0.005293321330100298, 0.001892159809358418, 0.03373141959309578, 0.04015902429819107, 0.0111200250685215, 0.018580637872219086, -0.5971730351448059, -0.02846510522067547, 0.005539757665246725, -0.020336074754595757, -0.0046114008873701096, 0.01836458407342434, 0.002643284620717168, 0.022901715710759163, -0.01650111936032772, 0.00016847564256750047, 0.006268939469009638, 0.003109151031821966, -0.009378090500831604, -0.010255809873342514, -0.021713418886065483, -0.013051006942987442, 0.003743809415027499, -0.00800749845802784, 0.001303075230680406, 0.015204794704914093, -0.028005989268422127, 0.015461359173059464, -0.02753337286412716, 0.028789184987545013, 0.02580494061112404, 0.010478615760803223, -0.016879212111234665, 0.0011081203119829297, -0.015474862419068813, 0.03130081295967102, -0.012490617111325264, -0.004824079107493162, -0.001530100591480732, 0.0008570420322939754, 0.04863914102315903, -0.01637958735227585, -0.019228799268603325, 0.001489590504206717, 0.013631652109324932, 0.045884452760219574, 0.0010988367721438408, -0.03356937691569328, 0.03184094652533531, -0.027654903009533882, -0.004581018351018429, -0.01655513234436512, -0.006785443518310785, -0.02365790493786335, -0.01288896705955267, -0.016474111005663872, -0.013523625209927559, -0.016177037730813026, -0.0021301566157490015, -0.010066762566566467, 0.005863838363438845, 0.010134279727935791, 0.01299024187028408, 0.0006561793852597475, 0.0016685101436451077, -0.03297523036599159, -0.024724671617150307, 0.00771042425185442, -0.02549436315894127, -0.008608398959040642, -0.02337433397769928, 0.006525503471493721, -0.03381244093179703, -0.004793696571141481, -0.002945422660559416, -0.003942984156310558, -0.01450261939316988, 0.014381089247763157, 0.004267064854502678, -0.01133607979863882, 0.015461359173059464, 0.02611551806330681, 0.04096922650933266, -0.01502925157546997, -0.006147409323602915, 0.007082517724484205, 0.00831807591021061, -0.005610650405287743, -0.025899464264512062, -0.00142038578633219, 0.014111021533608437, -0.00825055968016386, -0.026642149314284325, 0.014840204268693924, 0.01740584522485733, 0.006653785705566406, 0.021456856280565262, 0.013948981650173664, 0.016177037730813026, -0.0532032772898674, -0.0013756558764725924, 0.03675617277622223, -0.029680408537387848, 0.014219049364328384, 0.023792939260601997, 0.0009249808499589562, -0.022091513499617577, 0.004395347088575363, 0.0044966223649680614, 0.005954986438155174, 0.019944477826356888, 0.0147996935993433, -0.018796691671013832, 0.021996989846229553, 0.017729924991726875, -0.036918215453624725, 0.01010052114725113, -0.0022854453418403864, -0.04845009371638298, -0.021092263981699944, 0.003767440328374505, -0.028222043067216873, 0.016123024746775627, 0.013226551003754139, 0.004712676163762808, 0.022618144750595093, 0.04002398997545242, -0.005121153313666582, 0.0327591747045517, 0.006555886473506689, -0.006029254756867886, 0.016001494601368904, 0.007858961820602417, 0.0012963234912604094, -0.018297066912055016, 0.011498119682073593, -0.011633153073489666, 0.0042096758261322975, 0.016366085037589073, -0.01573142595589161, -0.008203297853469849, -0.01799999177455902, 0.003058513393625617, -0.0035648897755891085, 0.0047903205268085, -0.02241559512913227, -0.009418601170182228, -0.012666161172091961, 0.034082505851984024, -0.016420098021626472, -0.008345082402229309, -0.017756931483745575, -0.01887771114706993, 0.006555886473506689, -0.007015001028776169, -0.0038011986762285233, -0.0029184159357100725, -0.010647407732903957, -0.00725130969658494, 0.0412122868001461, -0.008763687685132027, 0.00946586299687624, 0.008405848406255245, -0.03267815709114075, -0.002189233899116516, -0.018553631380200386, 0.013962484896183014, -0.005256186705082655, -0.0324350968003273, -0.003470366122201085, 0.004709300585091114, -0.020336074754595757, -0.0016912971623241901, 0.023279810324311256, 0.0032863826490938663, -0.028762178495526314, 0.0013258621329441667, 0.020336074754595757, -0.024468107149004936, -0.003075392683967948, -0.011639905162155628, 0.01624455489218235, 0.000663353072013706, 0.016690164804458618, -0.01709526591002941, -0.021456856280565262, -4.869257281825412e-06, 0.005988744553178549, -0.004456112161278725, -0.007352584972977638, 0.004577642306685448, 0.01511027105152607, 0.031030744314193726, 0.028843199834227562, -0.011633153073489666, -0.0040510110557079315, 0.004901723470538855, 0.00950637273490429, -0.002823892282322049, 0.022766683250665665, 0.014570136554539204, 0.010370587930083275, -0.0003848460619337857, -0.0026196539402008057, -0.03861963748931885, 0.03410951420664787, 0.018378086388111115, 0.03140883892774582, 0.006201422773301601, -0.019647404551506042, 0.03359638527035713, -0.031111765652894974, 0.0005207236972637475, -0.02332032099366188, 0.01689271628856659, -0.0007329797954298556, 0.0018280188087373972, -0.009600896388292313, -0.004175917245447636, 0.0019731801003217697, 0.02897823229432106, 0.01841859705746174, -0.00010338518040953204, 0.0008190638036467135, -0.00032492485479451716, 0.009175539948046207, 0.01048536691814661, -0.004081393592059612, 0.007008249405771494, -0.01355738379061222, 0.0023090762551873922, -0.0013883152278140187, 0.003936232533305883, 0.009810198098421097, -0.008480116724967957, -0.039942968636751175, -0.00987771525979042, -0.02606150507926941, -0.013395342975854874, 0.012045006267726421, -0.015515372157096863, -0.02179444022476673, 0.03308325633406639, -0.0006363463471643627, 0.026804190129041672, 0.017635401338338852, 0.028005989268422127, 0.01195723470300436, -0.0037775677628815174, -0.04196847602725029, -0.0028154526371508837, -0.0027006741147488356, 0.038673654198646545, 0.023536374792456627, 0.008824452757835388, 0.00799399521201849, -0.012051758356392384, 0.014853707514703274, -0.014408095739781857, 0.010532628744840622, -0.0010211924090981483, 0.011018750257790089, 0.008459861390292645, -0.0021014621015638113, 0.005401348229497671, 0.03308325633406639, 0.018162032589316368, 0.02128131128847599, -0.015947479754686356, 0.008763687685132027, -0.0033471479546278715, -0.01660914532840252, -0.01870216801762581, -0.024035999551415443, -0.01864815503358841, 0.010046507231891155, -0.007906223647296429, -0.003034882480278611, -0.0043379575945436954, 0.005796321667730808, -0.015272311866283417, -0.005799697712063789, 0.025588886812329292, 8.808838902041316e-05, 0.026385584846138954, 0.01606900990009308, -0.01446210965514183, -0.019701417535543442, 0.01975543051958084, 0.021497365087270737, -0.0018719047075137496, -0.00920929852873087, -0.000561655790079385, -0.0013562447857111692, 0.02507575787603855, 0.012780940160155296, 0.013537128455936909, 0.0024441101122647524, 0.010397595353424549, -0.013591142371296883, -0.005060388240963221, 0.02303675003349781, 0.03208400681614876, 0.01008701790124178, -0.0326511487364769, -0.008399096317589283, 0.004847710020840168, -0.0029758051969110966, 0.01110652182251215, -0.013462860137224197, 0.05687619745731354, -0.005752435885369778, 0.0023985360749065876, -0.0006696827476844192, -0.003001124132424593, 0.005522878374904394, -0.005900972988456488, -0.042292553931474686, 0.004854461643844843, 0.01327381283044815, 0.010579890571534634, -0.0012701607774943113, 0.016771186143159866, -0.016339078545570374, 0.0252377986907959, -0.021578386425971985, -0.026979733258485794, 0.0037944470532238483, -0.029653402045369148, 0.007312075234949589, -0.0073863435536623, 0.007352584972977638, 0.0018280188087373972, -0.0010000934125855565, -0.030301563441753387, -0.01198424119502306, -0.00024517058045603335, -0.0047869449481368065, 0.004294071812182665, -0.0004059450584463775, -0.009060761891305447, -0.01478619035333395, 0.03321829065680504, -0.0031378457788378, -0.007258061319589615, -0.0002907444431912154, -0.024994738399982452, -0.02572392113506794, 0.01768941432237625, 0.0010768937645480037, -0.010417849756777287, 0.00986421201378107, 0.024738173931837082, 0.02136233262717724, 0.0012245868565514684, -0.023441851139068604, -0.01839159056544304, 0.01867516152560711, 0.01230832189321518, -0.0040611387230455875, -0.0052055492997169495, 0.009641406126320362, 0.008169539272785187, 0.022969232872128487, -0.008183042518794537, 0.04029405862092972, 0.012909222394227982, 0.0051954216323792934, 0.0002808278950396925, 0.003959863446652889, 0.0011081203119829297, 0.01076893787831068, -0.0019360457081347704, -0.0016052131541073322, -0.0024609891697764397, -0.0021520997397601604, 0.006245308555662632, 0.024684160947799683, 0.005408099852502346, 0.011072763241827488, -0.0008684354834258556, 0.00495236087590456, -0.0021656029857695103, -0.009978991001844406, -0.021659405902028084, 0.008918976411223412, -0.010417849756777287, -0.01511027105152607, 0.006636906415224075, -0.006012375466525555, -0.016703668981790543, -0.01619054190814495, 0.02714177407324314, -0.019620396196842194, -0.014610646292567253, -0.023590387776494026, -0.029437346383929253, -0.0031074630096554756, -0.015717923641204834, 0.007467363961040974, 0.01768941432237625, -0.04196847602725029, -0.02332032099366188, -0.011768187396228313, 0.031651899218559265, 0.012078764848411083, 0.021672910079360008, -0.005867214407771826, -0.007784693036228418, -0.0020103142596781254, -0.018553631380200386, -0.02484620176255703, -0.014678163453936577, 0.0058874692767858505, -0.0016533188754692674, 0.011261810548603535, 0.03327230364084244, -0.0177974421530962, 0.018607644364237785, 0.01813502609729767, 0.005995496641844511, 0.0011114961234852672, 0.012666161172091961, 0.0088987210765481, -0.023549877107143402, -0.017162783071398735, -0.0036796682979911566, 0.0032728794030845165, -0.0016085889656096697, -0.01720329374074936, 0.003041634103283286, -0.02164590172469616, 0.0007595645729452372, 0.004364964552223682, 0.016933226957917213, -0.003561513964086771, 0.044102005660533905, 0.025993987917900085, 0.013753182254731655, 0.01133607979863882, -0.0070420075207948685, -0.03073367103934288, 0.029923468828201294, -0.01813502609729767, 0.018121523782610893, -0.004587769974023104, 0.0031800437718629837, -0.009101271629333496, -0.012699919752776623, -0.0221860371530056, 0.0022381835151463747, -0.01016128621995449, 0.02727680839598179, -0.0042096758261322975, -0.009027003310620785, 0.017054757103323936, -0.006441107485443354, -0.047099754214286804, -0.03367740660905838, 0.0054756165482103825, 0.01355738379061222, 0.019647404551506042, -0.015555882826447487, 0.005965113639831543, -0.04358888044953346, 0.0006367682944983244, -0.007406598422676325, 0.013935478404164314, -0.022294064983725548, -0.01317253801971674, 0.021983487531542778, -0.011295569129288197, 0.03200298920273781, -0.005722053349018097, -0.011909972876310349, -0.02900523878633976, -0.02626405470073223, 0.0013157346984371543, 0.0110390055924654, 0.02014702931046486, 0.01134958304464817, 0.0027935097459703684, -0.004533756524324417, -0.017837952822446823, -0.003235745010897517, -0.01797298528254032, -0.040510110557079315, -0.015866460278630257, 0.022888213396072388, 0.016406595706939697, 0.019363833591341972, 0.038187529891729355, 0.005678167100995779, -0.01666315831243992, 0.012720175087451935, 0.005529629997909069, -0.015528875403106213, 0.0022432473488152027, -0.01836458407342434, 0.001243154052644968, 0.006029254756867886, 0.033974479883909225, 0.02479218877851963, -0.031570881605148315, 0.005424979142844677, 0.029653402045369148, -0.0011579140555113554, 0.03321829065680504, -0.004537132568657398, -0.04807199910283089, 0.010107272304594517, -0.009411849081516266, 0.00919579528272152, -0.006144033279269934, -0.021713418886065483, -0.025008242577314377, 0.0026264055632054806, -0.020538626238703728, 0.01415153220295906, -0.017567884176969528, 0.005455361679196358, -0.016622649505734444, -0.00061904510948807, -0.011916724033653736, 0.009256560355424881, -0.007845458574593067, 0.0036965475883334875, -0.008493619970977306, 0.010411098599433899, 0.04010501131415367, -0.0011528502218425274, 0.015177788212895393, 0.023536374792456627, -0.005289945285767317, 0.021294815465807915, 0.001655006781220436, -0.023590387776494026, 0.012240804731845856, -0.011005247011780739, -0.032219041138887405, -0.007069014478474855, -0.034622643142938614, -0.02504875138401985, -0.04067214950919151, 0.010107272304594517, 0.029653402045369148, 0.0006971114780753851, 0.019458357244729996, -0.0178514551371336, 0.005573516245931387, 0.010363836772739887, -0.03435257449746132, 0.0014397968770936131, -0.0031175906769931316, 0.01737883687019348, 0.0325971357524395, 0.00556001253426075, -0.023792939260601997, -0.03143584728240967, -0.013138779439032078, 0.009256560355424881, 0.04002398997545242, 0.028681159019470215, -0.01802700012922287, -0.016960233449935913, 0.02629106119275093, 0.013645155355334282, -0.0012051757657900453, -0.039996981620788574, 0.021834949031472206, 0.03192196786403656, -0.010876964777708054, -0.022645151242613792, 0.02419804036617279, -0.030868705362081528, -0.010917474515736103, 0.004250186029821634, -0.029437346383929253, -0.02280719205737114, -0.019714919850230217, -0.030031494796276093, 0.0004209253820590675, -0.021429847925901413, 0.03924079239368439, 0.02592647075653076, -0.004273816477507353, -0.01376668643206358, -0.01045836042612791, -0.00885821133852005, 0.007143282797187567, 0.016852205619215965, 0.024211542680859566, -0.0035142521373927593, 0.004364964552223682, 0.02897823229432106, 0.02029556594789028, 0.0019309819908812642, -0.03067965805530548, -0.020079512149095535, 0.0472077839076519, -0.029410339891910553, -0.004202924203127623, 0.005502623505890369, 0.0294643547385931, 0.009634654968976974, 0.004800448194146156, -0.021011244505643845, -0.011572388000786304, -0.0051920460537076, -0.019741928204894066, 0.03292121738195419, -0.0010313199600204825, 0.017594890668988228, -0.006468114443123341, -0.0016938289627432823, -0.008115525357425213, -0.031651899218559265, -0.009432104416191578, 0.010269313119351864, -0.03300223872065544, -0.015245305374264717, -2.172539325329126e-06, -0.017837952822446823, 0.01805400662124157, 0.006528879515826702, 0.006339832209050655, -0.0020845828112214804, 0.015515372157096863, -0.028114017099142075, -0.0032273055985569954, 0.01097824051976204, -0.00833157915621996, -0.02770891599357128, 0.0001627789024496451, -0.021105768159031868, 0.009911473840475082, 0.015245305374264717, -0.005522878374904394, 0.019053256139159203, -0.0353788286447525, 0.005138032604008913, 0.00416578957810998, -0.012767436914145947, 0.021605392917990685, 0.02394147589802742, 0.02683119662106037, 0.013442604802548885, -0.01413802895694971, -0.023725422099232674, -0.006414100993424654, -0.001892159809358418, -0.0015250368742272258, 0.013334577903151512, -0.030409589409828186, 0.026156028732657433, -0.026277558878064156, -0.027020243927836418, 0.00868941843509674, -0.030463604256510735, -0.045317310839891434, 0.029680408537387848, -0.02430606633424759, -0.009121526964008808, 0.005759187508374453, -0.050367571413517, -0.01082295086234808, -0.0005097522516734898, 0.00030445880838669837, -0.01862114854156971, -0.008635405451059341, 0.004827454686164856, 0.032327067106962204, -0.008831203915178776, 0.013746431097388268, -0.013948981650173664, -0.03481169044971466, 0.01349661871790886, -0.05660612881183624, -0.01590697094798088, -0.02637208253145218, -0.00597861735150218, 0.04375091940164566, 0.006032630801200867, -0.02639908902347088, -0.037539370357990265, -0.014084015041589737, -0.022577635943889618, -0.028060004115104675, 0.01570441946387291, 0.015555882826447487, 0.007926478050649166, 0.035783931612968445, 0.007413350511342287, 0.04628955200314522, -0.019485363736748695, 0.020619645714759827, -0.025224296376109123, 0.005070515442639589, -0.01751387119293213, 0.007123027928173542, 0.013240054249763489, -0.02182144671678543, -0.027155278250575066, -0.014057008549571037, -0.0004975147894583642, -0.009749433025717735, 0.024697665125131607, 0.016393091529607773, -0.008493619970977306, -0.004844333976507187, -0.024859704077243805, 0.003418040694668889, -0.020552130416035652, -0.004533756524324417, -0.014084015041589737, -0.026979733258485794, 0.009175539948046207, 0.011477864347398281, 0.006701047532260418, -0.0029184159357100725, 0.021686412394046783, 0.03324529901146889, -0.021713418886065483, -0.001812827424146235, -0.01606900990009308, -0.015609895810484886, -0.00885821133852005, 0.0073863435536623, 0.026507114991545677, 0.020903216674923897, 0.012348832562565804, 0.04069915786385536, 0.020646654069423676, 0.025885960087180138, -0.005833455827087164, 0.009857459925115108, 0.0049186027608811855, -0.011491368524730206, -0.0016955169849097729, -0.0010169725865125656, 0.024346577003598213, -0.01290247030556202, 0.023360829800367355, -0.01794597879052162, 0.0017090203473344445, 0.02309076301753521, -0.006117026787251234, -0.029437346383929253, 0.012112523429095745, 0.023927971720695496, -0.020241552963852882, -0.017635401338338852, -0.016879212111234665, -0.031057750806212425, -0.007359336595982313, -0.005451985634863377, 0.013118524104356766, -0.02241559512913227, 0.026480108499526978, -0.011025501415133476, -0.00799399521201849, 0.000991653767414391, 0.018823698163032532, 0.030409589409828186, -0.026129022240638733, -0.006873215548694134, 0.25667205452919006, -0.006079892627894878, 0.020133525133132935, 0.010235554538667202, -0.009614399634301662, 0.015204794704914093, -0.00369317177683115, -0.00987771525979042, 0.011174038983881474, -0.005006374325603247, -0.0053540864028036594, -0.00024432659847661853, -0.0031682283151894808, -0.003343772143125534, 0.008513875305652618, -0.03481169044971466, -0.011882965452969074, -0.01619054190814495, 0.01508326455950737, -0.013388591818511486, 0.018202543258666992, 0.002915040124207735, -0.01924230344593525, -0.017648905515670776, 0.028600137680768967, -0.005367589648813009, -0.021983487531542778, 0.01068116631358862, 0.009810198098421097, 0.026169531047344208, 0.00013545568799600005, 0.006866463925689459, 0.025318820029497147, 0.010350333526730537, -0.017216797918081284, -0.002756375353783369, 0.03192196786403656, 0.022510118782520294, 0.039321813732385635, 0.016339078545570374, 0.01660914532840252, -0.012713422998785973, 0.010134279727935791, -0.012362335808575153, 0.015326324850320816, 0.007487618830054998, 0.008581391535699368, -0.02897823229432106, -0.0178244486451149, 0.02306375652551651, 0.001240622135810554, -0.04329180344939232, 0.017324823886156082, 0.02107876166701317, -0.008216801099479198, -0.01813502609729767, 0.02107876166701317, -0.014637653715908527, 0.022023996338248253, 0.008095270954072475, -0.016055507585406303, 0.03186795487999916, 0.0035480104852467775, 0.03483869507908821, -0.02897823229432106, 0.0037303059361875057, -0.01932332292199135, 0.013800444081425667, -0.013786940835416317, 0.006117026787251234, -0.00707576610147953, 0.020187538117170334, -0.006589644588530064, -0.012699919752776623, -0.019647404551506042, -0.026615142822265625, 0.039402835071086884, 0.007379591930657625, 0.0074808672070503235, 0.011795193888247013, -0.02668265998363495, -0.0063162012957036495, -0.006829329300671816, 0.0072107999585568905, -0.020255055278539658, -0.03419053182005882, -0.0012397782411426306, -0.012369086965918541, 0.00045827063149772584, -0.017675912007689476, -0.002121716970577836, 0.006680792663246393, -0.0024103515315800905, 0.0026939224917441607, -0.0019427974475547671, -0.008743432350456715, 0.018945228308439255, 0.03851161152124405, -0.036324065178632736, -0.0053270794451236725, 0.00198837136849761, 0.009411849081516266, -0.0016229363391175866, 0.026871707290410995, -0.0003732416080310941, -0.008324827998876572, -0.017621899023652077, 0.026142524555325508, -0.00464178342372179, -0.01748686470091343, -0.001252437592484057, -0.030274556949734688, -0.010019500739872456, -0.021578386425971985, 0.008338331244885921, 0.018783187493681908, -0.016204044222831726, -0.004523628856986761, -0.013530377298593521, 0.0004603805427905172, -0.009189043194055557, -0.024711167439818382, 0.0024728046264499426, -0.00694073224440217, -0.008122277446091175, -0.04218452796339989, -0.03735032305121422, 0.006198047194629908, -0.01170067023485899, -0.04218452796339989, 0.019714919850230217, -0.03078768402338028, 0.026979733258485794, 0.0021402842830866575, 0.014664660207927227, 0.02345535345375538, -0.03705324977636337, -0.011781690642237663, -0.007582142483443022, -0.0021048379130661488, 0.0022044251672923565, -0.012139529921114445, 0.03132781758904457, -0.017162783071398735, -0.0028829695656895638, -0.009708923287689686, -0.0020322571508586407, 0.0011300633195787668, 0.010991743765771389, -0.013057759031653404, -0.03435257449746132, -0.03151686489582062, 0.013665410690009594, 0.0021875458769500256, -0.0012600332265719771, -0.007838706485927105, 0.023387838155031204, -0.054121509194374084, 0.0030061877332627773, 0.004513501655310392, -0.027006739750504494, -0.004648535046726465, 0.0035243795718997717, -0.018486114218831062, -0.0053102001547813416, 0.0032374330330640078, -0.1710066795349121, 0.030571630224585533, 0.022901715710759163, -0.01230832189321518, 0.002866090275347233, 0.009155284613370895, -0.004324454348534346, -0.01202475093305111, -0.013840954750776291, -0.0029302313923835754, 0.02833007089793682, -0.03073367103934288, 0.009823702275753021, 0.017419347539544106, -0.005981992930173874, 0.013422350399196148, -0.020025497302412987, 0.010343581438064575, 0.04971940815448761, 0.02487320825457573, 0.04504724219441414, -0.016960233449935913, -0.006282443180680275, 0.012105771340429783, -0.00708926934748888, 0.02125430479645729, 0.0031074630096554756, 0.026507114991545677, 0.019080262631177902, -0.022820696234703064, 0.006022503133863211, -0.03370441123843193, 0.03915977478027344, 0.00014368430129252374, -0.025615893304347992, -0.007568639237433672, -0.015663908794522285, 0.004915226716548204, -0.02580494061112404, 0.0025639524683356285, 0.004186044912785292, 0.017567884176969528, -0.02136233262717724, 0.00444936053827405, -0.00209808605723083, 0.001961364643648267, 0.017365334555506706, -0.03184094652533531, -0.016460608690977097, -0.023927971720695496, 0.011504871770739555, -0.04315677285194397, 0.007649659179151058, 0.013773437589406967, 0.022847702726721764, 0.003001124132424593, -0.02758738584816456, 0.0044696154072880745, 0.001875280519016087, 0.005492495838552713, -0.009155284613370895, -0.025021744892001152, -0.012612148188054562, -0.0007220083498395979, 0.009243057109415531, -0.00987771525979042, -0.010323327034711838, 0.04072616621851921, -0.008027753792703152, 0.0023242675233632326, 0.026453102007508278, -0.04010501131415367, 0.03132781758904457, 0.012504121288657188, 0.01450261939316988, 0.0029808690305799246, -0.011437354609370232, -0.006849584635347128, 0.030949724838137627, -0.0037303059361875057, -0.042211536318063736, 0.01709526591002941, -0.0029994361102581024, -0.015947479754686356, 0.02071416936814785, -0.004402098711580038, -0.0147996935993433, -0.007244558073580265, -0.004175917245447636, -0.014664660207927227, 0.018432101234793663, -0.034703660756349564, -0.003183419583365321, -0.019903967157006264, 0.00766991451382637, 0.009324077516794205, -0.008959486149251461, 0.002013690071180463, -0.00927006360143423, 0.010748682543635368, 0.001609432976692915, -0.027317317202687263, -0.026129022240638733, -0.0011174038518220186, 0.012146282009780407, 0.0022432473488152027, -0.01045836042612791, 0.015771936625242233, 0.032948222011327744, 0.014043505303561687, -0.005759187508374453, 0.0007958548958413303, 0.0031479732133448124, -0.0002989730564877391, 0.006130530033260584, 0.0010110648581758142, -0.005171790719032288, -0.009432104416191578, 0.02464365027844906, -0.01168716698884964, -0.007865712977945805, -0.019066758453845978, -0.008237055502831936, 0.030598636716604233, -0.015717923641204834, 0.010573138482868671, -0.03829555958509445, -0.007757686078548431, 0.0177164226770401, 0.022294064983725548, 0.004979367833584547, 0.014273062348365784, -0.016744179651141167, 0.012207047082483768, -0.013503369875252247, 0.0353788286447525, -0.044615134596824646, -0.045263297855854034, -0.01723030023276806, 0.029113266617059708, 0.013773437589406967, 0.02125430479645729, -0.008844707161188126, 0.011315824463963509, -0.0027867581229656935, 0.03775542229413986, -0.010930978693068027, -0.013334577903151512, -0.004378467798233032, -0.01697373576462269, -0.025872457772493362, 0.006403973326086998, -0.012510872446000576, 0.03915977478027344, 0.019593389704823494, 0.008223552256822586, 0.042832691222429276, -0.01448911614716053, 0.01386796124279499, -0.010323327034711838, 0.020390089601278305, -0.02009301446378231, -0.01810801960527897, -0.025791436433792114, 0.007764437701553106, -0.022334573790431023, -0.01259189285337925, 0.02566990628838539, -0.009600896388292313, -0.016028501093387604, -0.011835703626275063, -0.005404723808169365, -0.006562638096511364, 0.02580494061112404, -0.004101648926734924, -0.005367589648813009, -0.03373141959309578, -0.01983645185828209, -0.009189043194055557, -0.028087010607123375, 0.01201124768704176, 0.02778993546962738, 0.005759187508374453, -0.010870212689042091, -0.031084759160876274, 0.0013925350503996015, -0.01836458407342434, 0.007507873699069023, -0.025224296376109123, 0.05215001478791237, 0.01740584522485733, 0.021632399410009384, -0.022334573790431023, 0.0021656029857695103, 0.010039756074547768, -0.009769688360393047, -0.026615142822265625, 0.03332631662487984, -0.01596098393201828, 0.050583623349666595, -0.036243047565221786, -0.00045067499740980566, -0.03921378776431084, 0.0011317512253299356, 0.03602699190378189, -0.030004488304257393, -0.012510872446000576, -0.014111021533608437, 0.006994745694100857, -0.008932479657232761, 0.0266016386449337, 0.03599998354911804, -0.0008317232131958008, -0.015555882826447487, 0.032327067106962204, -0.025966981425881386, -0.00013281831343192607, 0.024117019027471542, 0.017297817394137383, -0.020876210182905197, 0.002685482846572995, -0.016393091529607773, 0.0037269301246851683, -0.008412599563598633, -0.018297066912055016, 0.009938480332493782, -0.04564139246940613, -0.004807199817150831, -0.082532599568367, 0.03599998354911804, -0.004135407041758299, 0.02456263080239296, -0.0007004873477853835, -0.015947479754686356, 0.028681159019470215, 0.002780006267130375, -0.0009452358935959637, -0.0029437346383929253, -0.006349959876388311, 0.016339078545570374, -0.0018448979826644063, -0.013152282685041428, -0.038322564214468, -0.034541621804237366, 0.018351079896092415, 0.039321813732385635, 0.012774188071489334, 0.01256488636136055, -0.0007380435708910227, 0.020930223166942596, 0.031165778636932373, -0.00458439439535141, -0.010816199705004692, 0.010093769058585167, -0.0056275296956300735, 0.001655006781220436, -0.012733678333461285, -0.018445603549480438, -0.018810193985700607, -0.004780192859470844, -0.005691670812666416, 0.03545984998345375, 0.002000186825171113, -0.014921223744750023, -0.012490617111325264, 0.0031867953948676586, 0.021159781143069267, -0.013658658601343632, -0.01810801960527897, -0.022739674896001816, 0.006704423576593399, -0.004057762678712606, -0.004088145215064287, -0.008014250546693802, -0.0043379575945436954, 0.008594894781708717, 0.0295453742146492, 0.011045756749808788, 0.007501122076064348, 0.013800444081425667, 0.0007435293518938124, -0.010350333526730537, -0.012261060066521168, -0.05498572438955307, 0.014111021533608437, 0.000929200672544539, 0.0049253543838858604, 0.01473217736929655, 0.031759925186634064, 0.009425352327525616, 0.017297817394137383, -0.007028504274785519, -0.006670664995908737, -0.03494672104716301, -0.027438849210739136, 0.017324823886156082, 0.03138183429837227, 0.00086927943630144, -0.028087010607123375, -0.008594894781708717, -0.01621754840016365, -0.0028154526371508837, 0.016798192635178566, 0.006505248602479696, -0.012483865953981876, 0.005593771114945412, 0.004236682318150997, 0.020984238013625145, 0.03305625170469284, -0.002572392113506794, -0.030328569933772087, 0.024967731907963753, 0.019971484318375587, 0.011734428815543652, -0.031165778636932373, 0.009762936271727085, -0.022010494023561478, 0.019512370228767395, -0.034487608820199966, 0.021456856280565262, 0.0014085703296586871, 0.04780193045735359, 0.03178693354129791, 0.02068716287612915, 0.007872465066611767, -0.0009924976620823145, 0.01960689388215542, 0.02117328532040119, -0.009796694852411747, -0.003635782515630126, 0.000662087113596499, -0.014610646292567253, 0.0009275127667933702, -0.0011359710479155183, -0.020646654069423676, -0.029086260125041008, 0.02269916608929634, 0.03386645391583443, -0.001503937877714634, 0.006410724949091673, -0.022955728694796562, 0.012726926244795322, -0.027371332049369812, 0.00795348547399044, 0.004959112964570522, 0.00376068870536983, -0.023536374792456627, 0.017284313216805458, 0.006528879515826702, 0.011592643335461617, 0.014232552610337734, -0.006987994071096182, 0.019566383212804794, -0.022847702726721764, 0.001209395588375628, -0.009661661460995674, -8.52532139106188e-06, 0.0007815075805410743, -0.007791444659233093, 0.012342080473899841, -0.00412527984008193, -0.005539757665246725, -0.017554381862282753, 0.016406595706939697, 0.013989491388201714, -0.001898911432363093, -0.0005063763819634914, 0.07145983725786209, 0.010363836772739887, -0.007575390860438347, 0.01388146448880434, -0.013618148863315582, -0.010012748651206493, 0.01416503544896841, -0.002754687564447522, -0.008520626462996006, -0.05269015207886696, 0.009148533456027508, 0.007278316654264927, -0.03410951420664787, -0.015245305374264717, 0.008493619970977306, -0.024886710569262505, -0.004280568566173315, 0.03257012739777565, -0.0324891097843647, 0.02830306440591812, 0.02892421931028366, -0.009519875980913639, 0.02332032099366188, 0.017878461629152298, 0.009303822182118893, -0.012753933668136597, 0.003780943574383855, 0.001903975266031921, 0.002087958622723818, 0.014273062348365784, 0.017837952822446823, 0.004753186367452145, -0.004057762678712606, -0.026804190129041672, 0.0016018373426049948, 0.0031800437718629837, 0.01717628724873066, 0.013314323499798775, 0.015285815112292767, 0.0009545194916427135, 0.011896469630300999, 0.02623704820871353, -0.016771186143159866, -0.008534129709005356, -0.01290247030556202, 0.0060562617145478725, -0.004672165960073471, -0.02600749209523201, -0.03664814680814743], "308f55fd-5f56-42b0-b473-9a57716dced2": [-0.015865255147218704, 0.008567516691982746, 0.005005857907235622, -0.023595554754137993, -0.03633520007133484, 0.01592106930911541, -0.018725745379924774, -0.04239106923341751, -0.013416396453976631, -0.03619566559791565, -0.0077721611596643925, -0.0013020462356507778, 0.004520969931036234, -0.0049988809041678905, -0.004751204513013363, -0.001983156893402338, 0.0031692138873040676, -0.014665245078504086, 0.013953610323369503, -0.01826527714729309, 0.01355593279004097, 0.012041965499520302, -0.030781665816903114, -0.021544374525547028, -0.019339704886078835, 0.005005857907235622, 0.03468867763876915, -0.00832332856953144, -0.0019604822155088186, -0.016018744558095932, 0.022200195118784904, -0.013765236362814903, -0.009383803233504295, -0.0072070397436618805, -0.011483821086585522, 0.0024122304748743773, 0.008734960108995438, 0.0021819958928972483, 0.008100070990622044, 0.021237395703792572, 0.03591659292578697, -0.0018715279875323176, 0.006460521835833788, 0.013500118628144264, 0.009662874974310398, 0.02684674598276615, 0.00516283605247736, -0.0018348997691646218, -0.020051337778568268, 0.011051259934902191, -0.009418686851859093, 0.03708869591355324, -0.04325619339942932, -0.04180501773953438, 0.015125714242458344, -0.013590816408395767, -0.0028343270532786846, 0.011337308213114738, -0.003819800913333893, -0.02401416376233101, 0.019828081130981445, -0.002342462306842208, -0.03365610912442207, -0.015865255147218704, 0.01113498117774725, -0.00932798907160759, -0.009788458235561848, -0.0009113451815210283, -0.014135007746517658, -0.0061500538140535355, 7.140324305510148e-05, 0.012990811839699745, -0.006631453521549702, -0.0037639865186065435, 0.02808861806988716, -0.010555906221270561, 0.007346576079726219, 0.013388489373028278, 0.019130399450659752, 0.018125740811228752, -0.008658215403556824, -0.007214016746729612, 0.011407076381146908, -0.009802411310374737, 0.002021529246121645, 0.009111708030104637, -0.0043465495109558105, 0.03647473827004433, -0.006498894188553095, -0.012300107628107071, -0.007527973037213087, 0.01753968931734562, 0.01652107574045658, 0.0014258845476433635, 0.006777966395020485, 0.009753573685884476, -0.013960587792098522, 0.03580496460199356, -0.021544374525547028, -0.01082800142467022, -0.01480478048324585, 0.008288444951176643, -0.05246557667851448, -0.002400021068751812, -0.04255851358175278, -0.018949003890156746, 0.03979569673538208, -0.007611694745719433, -0.019744358956813812, -0.01418384537100792, -0.013053602539002895, 0.02038622461259365, 0.003333168802782893, -0.009090777486562729, -0.02674907073378563, 0.018711792305111885, 0.02871653065085411, -0.04149803891777992, -0.033153779804706573, -0.00839309673756361, 0.01692572981119156, 0.016939682886004448, 0.02151646837592125, -0.0016683285357430577, 0.011734986677765846, 0.0033436338417232037, 0.005288418382406235, -0.005358186550438404, 0.020930415019392967, -0.02947002463042736, 0.038093358278274536, 0.030056077986955643, 0.009558223187923431, 0.023679276928305626, -0.0007800940657034516, -0.009467524476349354, 0.002246531192213297, 0.0048244609497487545, -0.007632624823600054, -0.006293078418821096, 0.04724692553281784, 0.018837373703718185, -0.026218833401799202, -0.004339572973549366, -0.014400126412510872, 0.009439617395401001, 0.008553563617169857, 0.007660532370209694, 0.00865123886615038, -0.006708198226988316, 0.020344363525509834, -0.0030628175009042025, 0.002523859264329076, 0.02487928792834282, -0.00969775952398777, 0.010821024887263775, 0.0004779111477546394, 0.02811652608215809, 0.004677948076277971, -0.017344338819384575, 0.015390832908451557, 0.023595554754137993, 0.008923334069550037, 0.005822143983095884, 0.02535371109843254, 0.017246663570404053, -0.0298607274889946, -0.019618775695562363, -0.019869942218065262, 0.0031971209682524204, 0.007779137697070837, 0.01243964396417141, -0.03993523493409157, -0.005113998427987099, -0.0012872206280007958, 0.014832688495516777, 0.011700102128088474, 0.0008014605264179409, -0.010772187262773514, -0.0007709370111115277, -0.009802411310374737, -0.012990811839699745, 0.007214016746729612, 0.012014058418571949, -0.008553563617169857, -0.0035616590175777674, 0.016102466732263565, 0.011267540976405144, 0.011979174800217152, -0.0032982847187668085, 0.029023509472608566, 0.018376905471086502, 0.01890714280307293, 0.010834978893399239, -0.5791306495666504, -0.033516570925712585, 0.007234947290271521, -0.021307162940502167, 0.0035825895611196756, 0.024404864758253098, 0.013011741451919079, 0.02600952982902527, -0.027279308065772057, 0.006634941790252924, -0.0009828574256971478, 0.007388436701148748, -0.013562909327447414, -0.004283758345991373, -0.01692572981119156, -0.015083853155374527, 0.00987915601581335, -0.005912842694669962, 0.013332675211131573, 0.009488455019891262, -0.018823420628905296, 0.026386277750134468, -0.02137693203985691, 0.02612115815281868, 0.011469868011772633, 0.021474607288837433, -0.00462911045178771, 0.010311718098819256, -0.005131440237164497, 0.0321212112903595, -0.0037639865186065435, 0.015321064740419388, 0.005947726313024759, 0.008748914115130901, 0.04975857585668564, -0.023456020280718803, -0.028060710057616234, 0.01343732699751854, 0.017832715064287186, 0.02958165481686592, -0.010653581470251083, -0.044456202536821365, 0.05307953432202339, -0.013221045956015587, -0.00037631142186000943, 0.006017494481056929, -0.00815588515251875, -0.014225705526769161, 0.019688544794917107, -0.018725745379924774, -0.01727456972002983, -0.034995656460523605, -0.025283941999077797, 0.003054096596315503, 0.003826777683570981, 0.020483899861574173, 0.017846668139100075, 0.007227970287203789, 0.006914013996720314, -0.028270015493035316, -0.024781612679362297, 0.006223310250788927, -0.012307084165513515, -0.001751178177073598, -0.02796303480863571, 0.004241897724568844, -0.017874574288725853, 0.004405852407217026, -0.00983031839132309, -0.0023616484832018614, -0.005009346175938845, 0.0269723292440176, -0.009230313822627068, 0.023846721276640892, 0.02447463385760784, 0.028911881148815155, 0.0380096361041069, -0.0105070685967803, -0.004887252114713192, 0.0006649767747148871, -0.007046573329716921, -0.001939551904797554, -0.027153726667165756, -0.008504725992679596, 0.0003896109701599926, -0.008490771986544132, -0.02983281947672367, 0.016744332388043404, 0.01536292489618063, -0.009146591648459435, 0.020804833620786667, 0.01854434795677662, 0.00865123886615038, -0.03990732505917549, -0.0051802778616547585, 0.025311850011348724, -0.03853987157344818, 0.003423867281526327, 0.016688518226146698, -0.009774504229426384, -0.03259563446044922, 0.01717689447104931, 0.00368375307880342, 0.0030139798764139414, 0.01841876655817032, 0.009397756308317184, -0.004691901616752148, 0.005222138948738575, 0.0074163442477583885, -0.024921149015426636, -0.00015283563698176295, 0.0029180487617850304, -0.028995603322982788, -0.01642340049147606, 0.004374457057565451, -0.03845614939928055, 0.030642129480838776, 0.012732669711112976, -0.01430245116353035, 0.015697812661528587, 0.04255851358175278, -0.0003950615937355906, 0.025925807654857635, 0.0038895688485354185, -0.004063989035785198, 0.004032593686133623, 0.02808861806988716, 0.011616380885243416, -0.0028796764090657234, 0.02326066792011261, -0.02126530185341835, -0.018446672707796097, 0.016200141981244087, -0.015390832908451557, -0.013939657248556614, -0.01565595157444477, -0.013109416700899601, -0.0038860805798321962, 0.017455967143177986, -0.005975633859634399, -0.011469868011772633, -0.009502409026026726, 0.026330463588237762, -0.020176921039819717, -0.02773977816104889, -0.010493115521967411, -0.0103186946362257, 0.01677224040031433, 0.006034936755895615, -0.007807045243680477, 0.011037305928766727, 0.005724468734115362, -0.016702471300959587, 0.0529399998486042, -0.006750059314072132, 0.015879208222031593, -0.0002777640474960208, -0.027516519650816917, -0.012097780592739582, -0.010486138053238392, 7.156676292652264e-05, -0.011079167015850544, -0.019842034205794334, -0.02277229167521, 0.007374483160674572, -0.033879365772008896, 0.011037305928766727, 0.0022011820692569017, -0.004336084704846144, -0.02561882883310318, -0.01223731692880392, 0.0014023379189893603, -0.012328014709055424, -0.0061988914385437965, 0.00925822090357542, 0.015404785983264446, -0.00932798907160759, 0.010395440272986889, 0.002539557171985507, -0.02935839630663395, -0.01964668370783329, 0.00739541370421648, -0.00156978121958673, -3.5456341720419005e-05, -0.000323549349559471, 0.012293131090700626, 0.03471658378839493, 0.0331258699297905, 0.014058263041079044, -0.011295448057353497, 0.010974514298141003, 0.015948977321386337, -0.009718690067529678, 0.014239659532904625, 0.006788431666791439, 0.03281889110803604, 0.007165179122239351, -0.016214095056056976, -0.05522838979959488, 0.022590896114706993, 0.02153042145073414, 0.043479450047016144, 0.018739698454737663, -0.027767684310674667, 0.016939682886004448, -0.053916752338409424, 0.003648869227617979, -0.015865255147218704, 0.03011189214885235, -0.00895124115049839, -0.01680014654994011, -0.0018296671332791448, 0.0060070292092859745, 0.0017843178939074278, 0.023832766339182854, 0.019116446375846863, -0.010123344138264656, 0.0003839423297904432, 0.0038477082271128893, 0.010046599432826042, 0.022242054343223572, 0.005434931255877018, 0.02028854936361313, 0.01218150183558464, -0.008888449519872665, -0.007848906330764294, 0.015028038993477821, 0.004820972681045532, 0.012376852333545685, -0.03343285247683525, -0.007374483160674572, -0.02360950969159603, 0.004088407848030329, 0.014693152159452438, -0.03120027296245098, -0.029302582144737244, 0.037981726229190826, -0.017623409628868103, 0.00808611698448658, 0.024083930999040604, 0.0033349129371345043, 0.02274438552558422, -0.007890766486525536, -0.024558354169130325, 0.003638403955847025, -0.001513966708444059, 0.03731195628643036, 0.019995523616671562, 0.0007255877717398107, 0.00902100931853056, -0.02935839630663395, -0.005598886404186487, -0.020232735201716423, 0.01324895303696394, 0.002154088579118252, 0.013095463626086712, 0.005075626075267792, 0.010248927399516106, 0.019311796873807907, 0.018432719632983208, 0.028576994314789772, 0.03533054143190384, -0.028144432231783867, 0.005173301324248314, 0.015055946074426174, -0.007681462448090315, -0.018237369135022163, -0.02312113344669342, -0.008811704814434052, 0.004936089739203453, -0.011107074096798897, 0.003907010890543461, -0.005131440237164497, -0.005173301324248314, 0.0060628438368439674, -0.014058263041079044, 0.030921200290322304, -0.0007478262996301055, 0.02115367352962494, -0.004357014782726765, -0.011846615001559258, -0.014539661817252636, 0.0035267751663923264, 0.0296095609664917, 0.010709396563470364, -0.006683779414743185, 0.006886106915771961, 0.017079219222068787, 0.0015854790108278394, 0.003934917971491814, 0.019549008458852768, -0.010653581470251083, -0.009118684567511082, -0.0019203656120225787, 0.010193112306296825, 0.02077692560851574, 0.02211647294461727, -0.013241976499557495, -0.0208885557949543, -0.019549008458852768, -0.0035668916534632444, 0.006973316892981529, 0.013444303534924984, -0.018488533794879913, 0.0597214549779892, -0.013430350460112095, 0.021669957786798477, 0.013074533082544804, 0.006474475376307964, -7.84345538704656e-05, -0.0011049514869228005, -0.024042071774601936, -0.010974514298141003, 0.004793065134435892, 0.0019221098627895117, 0.028632808476686478, 0.015530368313193321, 0.011567543260753155, 0.02783745341002941, -0.015153621323406696, -0.014679198153316975, -0.004165152553468943, -0.018865281715989113, 0.011455914005637169, -0.03343285247683525, 0.020595530048012733, -0.004869810305535793, -0.004412829410284758, -0.019800173118710518, -0.007179132662713528, -0.01534897182136774, -0.011644287966191769, -0.019102493301033974, -0.010562882758677006, -0.007283784914761782, -0.022674616426229477, 0.027139771729707718, -0.025158360600471497, -0.0027959547005593777, -0.018223416060209274, -0.03309796378016472, -0.028632808476686478, 0.01218150183558464, 0.018949003890156746, -0.010221019387245178, 0.018949003890156746, 0.00870007649064064, 0.024586262181401253, -0.007814021781086922, -0.021042045205831528, -0.01939551904797554, 0.026804886758327484, 0.010430323891341686, -0.00851170253008604, -0.004573295824229717, 0.00349886785261333, 0.006725640501827002, 0.027404891327023506, -0.023679276928305626, 0.027139771729707718, 0.004643063992261887, 0.013032671995460987, 0.0031168877612799406, 0.005155859049409628, -0.004688413348048925, 0.010841955430805683, 0.0005481152911670506, -0.008107047528028488, -0.005790748167783022, -0.0069768051616847515, 0.012139640748500824, 0.03209330514073372, 0.0034308440517634153, 0.01473501231521368, 0.020330410450696945, -0.00248723104596138, -0.027544427663087845, -0.02958165481686592, 0.0020651344675570726, 0.007974488660693169, -0.018055971711874008, 0.011679171584546566, 0.021111812442541122, -0.021418793126940727, -0.01529315672814846, -0.009990785270929337, 0.03692125529050827, -0.02448858693242073, -0.020721111446619034, -0.04373061656951904, -0.023721138015389442, -0.013381512835621834, -0.015153621323406696, 0.008672169409692287, 0.02811652608215809, -0.03295842930674553, -0.04473527520895004, -0.010193112306296825, 0.033153779804706573, 0.03047468513250351, 0.03505146875977516, 0.011860569007694721, -0.0132977906614542, -0.003102934220805764, -0.007353552617132664, -0.02076297253370285, -0.001702340436168015, 0.000540266337338835, 0.006875641644001007, 0.008958217687904835, 0.015432693064212799, -0.031897954642772675, 0.0051419055089354515, 0.016367584466934204, 0.01892109587788582, -0.0004266752512194216, 0.01991180144250393, 0.03510728478431702, -0.003788405330851674, -0.011860569007694721, 0.010046599432826042, 0.01511176023632288, -0.01361872348934412, -0.01705131120979786, 0.022576941177248955, 0.0010229740291833878, 0.003962825518101454, -0.021949028596282005, 0.004915159195661545, -0.004643063992261887, 0.01614432781934738, 0.021223440766334534, 0.03058631345629692, 0.018083879724144936, -0.008518679067492485, -0.009997761808335781, 0.020916461944580078, -0.028451411053538322, 0.03273516893386841, 0.005930284503847361, 0.001107567804865539, -0.011532658711075783, -0.009502409026026726, -0.00590586569160223, 0.015809440985322, -0.025911854580044746, 0.03516309708356857, 0.009537292644381523, 0.010660558938980103, -0.008602401241660118, -0.018697837367653847, -0.03385145962238312, -0.02933049015700817, 0.015641996636986732, -0.006289590150117874, 0.01448384765535593, 0.00441631767898798, -0.0032529353629797697, -0.0422794409096241, 0.007848906330764294, -0.012467551045119762, 0.00497446209192276, -0.031618881970644, -0.01534897182136774, 0.021362977102398872, -0.027335122227668762, 0.016004791483283043, -0.013388489373028278, 0.003913987893611193, -0.026958376169204712, -0.01589316315948963, -0.010039622895419598, 0.00435003824532032, 0.02411183901131153, 0.026400230824947357, -0.001798271550796926, 0.0015104783233255148, -0.023916488513350487, 0.007126806769520044, -0.03658636659383774, -0.028423504903912544, -0.008888449519872665, 0.039488717913627625, 0.005044230259954929, 0.010821024887263775, 0.026386277750134468, -0.012048942968249321, -0.008002395741641521, 0.016381539404392242, 0.011023351922631264, -0.012544295750558376, 0.026944421231746674, -0.015948977321386337, -0.012195455841720104, -0.003732590936124325, 0.029079323634505272, 0.016255956143140793, -0.020204827189445496, -0.002300601452589035, 0.01939551904797554, -0.0026476976927369833, 0.029079323634505272, -0.012802437879145145, -0.037395674735307693, -0.012425689958035946, 0.004168641287833452, 0.009293104521930218, -0.00024506027693860233, -0.047805070877075195, -0.012146618217229843, -0.014414079487323761, -0.016102466732263565, 0.011546612717211246, -0.00876984465867281, 0.02323276177048683, -0.009300081059336662, -0.003397704102098942, -0.022953689098358154, 0.016367584466934204, -0.006600057706236839, 0.006634941790252924, -0.018976910039782524, 0.012572202831506729, 0.03664218261837959, -0.018990863114595413, -0.001171231153421104, 0.021907169371843338, -0.017804807052016258, 0.022953689098358154, -0.012934996746480465, -0.020818786695599556, 0.0008782053482718766, 0.006307031959295273, -0.03069794364273548, -0.021558327600359917, -0.027446752414107323, -0.021335070952773094, -0.03223283961415291, 0.03694916144013405, 0.027321169152855873, 0.0018017599359154701, 0.021907169371843338, -0.004158176016062498, -0.0038407312240451574, 0.0015078620053827763, -0.01211871113628149, 0.013576863333582878, -0.0036244504153728485, 0.022172287106513977, 0.021586235612630844, 0.005120974965393543, -0.007576810661703348, -0.04141431674361229, -0.020414132624864578, 0.0004883763613179326, 0.05810283496975899, 0.0303630568087101, -0.028744438663125038, -0.02412579208612442, 0.027404891327023506, 0.0149303637444973, 0.015628043562173843, -0.02871653065085411, 0.01614432781934738, 0.03831661492586136, -0.010353579185903072, -0.016228049993515015, 0.011162888258695602, -0.025702551007270813, -0.02538161724805832, -0.003284331178292632, -0.011972198262810707, -0.015335017815232277, -0.0016692007193341851, -0.027404891327023506, 0.0048244609497487545, -0.039098016917705536, 0.029274674132466316, 0.028744438663125038, -0.01753968931734562, -0.014916409738361835, 0.0004591610049828887, 0.004636086989194155, 0.037367768585681915, 0.0053721400909125805, 0.01479082740843296, -0.00994892418384552, -0.0127954613417387, 0.007730300072580576, 0.01864202320575714, -0.0004249310586601496, -0.028283968567848206, -0.02203275077044964, 0.05271673947572708, -0.02201879769563675, -0.009593106806278229, -0.014428033493459225, 0.03318168595433235, 0.02349787950515747, 0.0037430559750646353, -0.017818760126829147, -0.002251763828098774, -0.01232103817164898, -0.011748939752578735, 0.012774530798196793, -0.004482597578316927, 0.01914435438811779, -0.014581522904336452, -0.004461667034775019, -0.014155938290059566, -0.03569333627820015, -0.009607060812413692, -0.0006048018112778664, -0.030139798298478127, -0.03803754225373268, -0.02175367809832096, -0.02002343162894249, -0.002523859264329076, 0.002717465627938509, 0.0026878141798079014, -0.0050546955317258835, 0.020735064521431923, -0.04032593593001366, -0.009174498729407787, -0.009732643142342567, 0.002576185390353203, -0.02635836973786354, -0.0021314139012247324, -0.006146565545350313, 0.001205243170261383, 0.004465155303478241, -0.007074480410665274, 0.024028116837143898, -0.020344363525509834, 0.0042279441840946674, 0.018502486869692802, -0.022604849189519882, 0.03457704558968544, -0.002550022443756461, 0.015390832908451557, 0.01952110044658184, 0.007043085061013699, -0.0036104966420680285, 0.005647724028676748, -0.01262104045599699, -0.01854434795677662, 0.01317918486893177, -0.02549324743449688, 0.028172340244054794, -0.017748992890119553, -0.0096279913559556, 0.013841981999576092, -0.03694916144013405, -0.0546981543302536, 0.016130374744534492, -0.005047718528658152, -0.018962956964969635, -0.0030628175009042025, -0.035888686776161194, -0.018572255969047546, -0.0006523312767967582, 0.0018017599359154701, -0.002352927578613162, 0.004280270077288151, 0.029386304318904877, 0.025046730414032936, -0.030614221468567848, 0.001981412759050727, -0.0074861119501292706, -0.03580496460199356, 0.002117460360750556, -0.06334938853979111, -0.03192586079239845, -0.001077044289559126, -0.025395570322871208, 0.04663296788930893, 0.0022883920464664698, -0.030279334634542465, -0.037004973739385605, -0.011525682173669338, -0.011190795339643955, -0.010960561223328114, 0.009097754023969173, 0.0159350223839283, -0.000509306788444519, 0.022911828011274338, 0.0032424703240394592, 0.0468004085123539, -0.022451359778642654, 0.028032803907990456, -0.004887252114713192, 0.01206289604306221, -0.020846694707870483, 0.007346576079726219, 0.022674616426229477, 0.012153594754636288, -0.027432797476649284, -0.02162809669971466, -0.009404733777046204, 0.00248723104596138, 0.010144274681806564, 0.012432667426764965, -0.010207066312432289, -0.0025517665781080723, -0.010800094343721867, 0.011937313713133335, -0.029023509472608566, -4.1888084524543956e-05, -0.0026476976927369833, -0.036251481622457504, 0.00920938327908516, 0.012886159121990204, 0.01566990464925766, -0.0024087419733405113, 0.027949081733822823, 0.031172366812825203, -0.023553695529699326, 0.002675604773685336, -0.007004712708294392, -0.009683805517852306, -0.012362899258732796, -0.007604717742651701, 0.015460600145161152, 0.026274649426341057, 0.004820972681045532, 0.026637442409992218, 0.015223389491438866, 0.028186293318867683, -0.017623409628868103, -0.002215135609731078, -0.013500118628144264, 0.002480254275724292, -0.0010831489926204085, 0.00184885342605412, 0.014511754736304283, 0.001680537941865623, 0.0018959467997774482, -0.009641945362091064, 0.00544190825894475, 0.02475370466709137, 0.0020389712881296873, -0.035749148577451706, 0.002820373512804508, 0.010646604932844639, -0.014567569829523563, -0.023469973355531693, -0.02225600928068161, -0.026428138837218285, -0.012090803124010563, -0.006788431666791439, 0.003319215029478073, -0.00988613348454237, 0.011497775092720985, 0.004102361388504505, -0.008232629857957363, -0.0047372509725391865, 0.03457704558968544, 0.01162335742264986, -0.02000947669148445, 0.002202926203608513, 0.2609883248806, -0.019869942218065262, -0.0045942263677716255, 0.014197798445820808, -0.012355921790003777, -0.0042977118864655495, -0.014721059240400791, -0.012614063918590546, -0.007618671283125877, -0.004810507409274578, 0.007618671283125877, -0.014414079487323761, -0.005079114343971014, -0.004733762238174677, 0.008288444951176643, -0.027418844401836395, -0.024600215256214142, -0.03011189214885235, 0.009125661104917526, 0.01504199206829071, 0.011267540976405144, 0.004761669784784317, 0.0032006094697862864, -0.007604717742651701, 0.013214069418609142, -0.025646736845374107, -0.0009279150981456041, 0.011421030387282372, 0.012216386385262012, 0.021055998280644417, -0.00018652052676770836, 0.00011037523654522374, 0.011190795339643955, 0.0055151646956801414, -0.008344259113073349, -0.004461667034775019, 0.04314456507563591, 0.014072216115891933, 0.025172313675284386, 0.021795539185404778, 0.0031570044811815023, -0.004301200620830059, -0.007332622539252043, -0.005818655714392662, -0.004541900008916855, 0.01589316315948963, 0.007653555367141962, -0.018600162118673325, -0.03385145962238312, 0.013862912543118, -0.03385145962238312, -0.033628202974796295, 0.01529315672814846, 0.003959336783736944, -0.01255127228796482, -0.011107074096798897, 0.03033514879643917, -0.012153594754636288, 0.0035389845725148916, -0.0019587380811572075, -0.0013212325284257531, 0.029665376991033554, -0.012914066202938557, 0.021195534616708755, -0.03145143762230873, 0.0007966639823280275, -0.016465259715914726, -0.001967458985745907, 0.018362952396273613, -0.011365216225385666, 0.014441986568272114, 0.00460469163954258, 0.0005995691753923893, -0.01232103817164898, -0.015753626823425293, -0.023442065343260765, 0.038121264427900314, 0.024683937430381775, 0.0033837505616247654, 0.010618697851896286, -0.03348866477608681, -0.012383829802274704, 0.0014354776358231902, -0.0021907167974859476, -0.039991047233343124, -0.03480030596256256, 0.007057038601487875, -0.033377036452293396, 0.013374535366892815, -0.004653529264032841, -0.0012043709866702557, -0.017372244969010353, 0.0043465495109558105, 0.006174472626298666, 0.01385593507438898, 0.006973316892981529, 0.0011267540976405144, 0.03683753311634064, -0.0313677154481411, 0.005839585792273283, -0.017009451985359192, 0.020693205296993256, 0.022925782948732376, 0.013911750167608261, -0.002762814983725548, -0.005647724028676748, -0.01966063678264618, -0.003144795075058937, -0.014002447947859764, 6.121056503616273e-05, 0.009774504229426384, -0.04900508001446724, -0.005748887546360493, -0.012865228578448296, 0.005665165837854147, 0.011783824302256107, -0.002405253704637289, -0.022660663351416588, -0.0054593500681221485, -0.0069384328089654446, 0.006701221689581871, -0.026679303497076035, 0.012244293466210365, 0.007730300072580576, -0.015376878902316093, -0.041330594569444656, -0.0313677154481411, 0.016325725242495537, -0.01603269763290882, -0.04945159703493118, 0.026763025671243668, -0.027335122227668762, 0.03817707672715187, 0.004001197870820761, 0.0030174683779478073, 0.017260616645216942, -0.016632704064249992, -0.01652107574045658, -0.015446647070348263, 0.0028814205434173346, 0.008902403526008129, -0.007988441735506058, 0.042335253208875656, -0.0021575770806521177, 0.010527999140322208, 0.0014895478961989284, 0.005469815339893103, 0.006750059314072132, 0.024181606248021126, -0.018251322209835052, -0.026776978746056557, -0.021195534616708755, 0.018097832798957825, 0.00609075091779232, 0.012446620501577854, -0.03178632631897926, 0.02200484462082386, -0.05933075398206711, 0.016255956143140793, 0.007172155659645796, -0.04596319422125816, -0.006097727920860052, 0.010214042849838734, -0.013269883580505848, 0.0040674773044884205, 0.009788458235561848, -0.17782481014728546, 0.03714451193809509, 0.03234446793794632, -0.01355593279004097, 0.017442014068365097, -0.008483795449137688, 0.0014982689172029495, 0.0007347448263317347, -0.012934996746480465, -0.0067151752300560474, 0.02447463385760784, -0.01318616233766079, 0.0016761774895712733, -0.016242003068327904, -0.00767448591068387, 0.004559342283755541, -0.011986151337623596, -0.0027785126585513353, 0.044093407690525055, 0.021083906292915344, 0.022409498691558838, -0.023916488513350487, -0.012453597038984299, 0.008672169409692287, 0.027167679741978645, 0.023944396525621414, -0.0005734061705879867, 0.01639549247920513, 0.0196327306330204, -0.030307242646813393, 0.005511675961315632, -0.03320959210395813, 0.017818760126829147, 0.004353526514023542, -0.00864426139742136, -0.01082800142467022, -0.010911723598837852, 0.0055849323980510235, -0.014051285572350025, -0.011721032671630383, -0.0050372532568871975, 0.028200246393680573, -0.015209435485303402, -0.0005014578928239644, 0.004503527656197548, 0.0013901283964514732, -0.00462911045178771, -0.027446752414107323, -0.009823341853916645, -0.02137693203985691, 0.002400021068751812, -0.01741410605609417, 0.01952110044658184, 0.007060526870191097, 0.020804833620786667, 0.021195534616708755, 0.0037116603925824165, 0.0035825895611196756, -0.0016927473479881883, 0.00188897002954036, -0.012258246541023254, -0.02250717394053936, -0.014497801661491394, -0.0021314139012247324, -0.00029869447462260723, 0.003327936166897416, 0.0017607712652534246, 0.027432797476649284, -0.016730379313230515, -0.003493635216727853, 0.015851302072405815, -0.035135190933942795, 0.0321212112903595, 0.018083879724144936, 0.022451359778642654, 0.014414079487323761, -0.004165152553468943, -0.014093146659433842, 0.0042593395337462425, 0.014595476910471916, -0.041609667241573334, 0.02450254000723362, -0.024181606248021126, -0.021069951355457306, 0.027418844401836395, -0.0040849195793271065, 0.015697812661528587, -0.003788405330851674, -0.0010447766399011016, -0.01223731692880392, 0.011162888258695602, -0.031032830476760864, -0.002494207816198468, -0.010032646358013153, 0.01362570095807314, 0.019060632213950157, -0.012990811839699745, 0.006209356710314751, -0.023023458197712898, 0.009593106806278229, -0.005843074526637793, -0.02547929249703884, -0.023525787517428398, -0.016842007637023926, 0.010276834480464458, -0.01343732699751854, -0.020483899861574173, 0.013869889080524445, 0.04808414354920387, 0.006523313000798225, 0.017483873292803764, -0.002089553279802203, 0.007695416454225779, 0.010772187262773514, 0.0028849090449512005, 0.0026145577430725098, -0.015139667317271233, -0.001800015801563859, 0.022353684529662132, 0.0032389818225055933, -0.016590842977166176, -0.024404864758253098, -0.0016831542598083615, 0.02947002463042736, -0.018432719632983208, 0.0017128057079389691, -0.029553746804594994, -0.0031639812514185905, -0.002124437130987644, 0.009907063096761703, -0.023567648604512215, 0.00764657836407423, -0.02126530185341835, 0.01988389529287815, -0.012048942968249321, 0.04487481340765953, -0.036363109946250916, -0.03281889110803604, -0.0035215425305068493, 0.038623593747615814, -0.008316352032124996, 0.017232708632946014, -0.02450254000723362, 0.010918700136244297, -0.0021000183187425137, 0.03633520007133484, -0.01664665713906288, -0.022186240181326866, 0.0019482729258015752, -0.010793117806315422, -0.005239580757915974, 0.008176815696060658, -0.010046599432826042, 0.034242160618305206, 0.005567490588873625, 0.006394241936504841, 0.03429797291755676, -0.007995419204235077, 0.014679198153316975, -0.012188478372991085, -0.0005345977260731161, -0.01118381880223751, -0.022437406703829765, -0.02972119115293026, 0.003228516550734639, -0.008455888368189335, -0.013374535366892815, 0.0264699999243021, -0.008497748523950577, -0.013011741451919079, -0.0057767946273088455, -0.02725140191614628, -0.014260590076446533, 0.031395625323057175, -0.008309375494718552, -0.0026006042025983334, -0.01742805913090706, -0.016995497047901154, 0.009195429272949696, -0.018321091309189796, 0.013758259825408459, 0.02126530185341835, 0.007925651036202908, 0.029693283140659332, -0.02102809026837349, 0.00616051908582449, -0.02510254457592964, 0.006191914901137352, -0.017567595466971397, 0.04635389521718025, 0.016995497047901154, 0.027921175584197044, -0.01578153297305107, -0.015028038993477821, 0.020204827189445496, -0.0020599018316715956, -0.026163019239902496, 0.05556327849626541, -0.0023878116626292467, 0.029079323634505272, -0.019311796873807907, -0.0038337544538080692, -0.027670009061694145, -0.0017799574416130781, 0.02849327214062214, -0.023693230003118515, -0.01213266421109438, -0.004705855157226324, -0.009027985855937004, -0.020218782126903534, 0.027753731235861778, 0.029163045808672905, -0.011260563507676125, -0.008302398025989532, 0.041721295565366745, -0.018474580720067024, -0.0037709632888436317, 0.03242819011211395, 0.0007029131520539522, -0.030781665816903114, -0.006122146733105183, -0.009467524476349354, 0.008372166194021702, -0.020302504301071167, -0.004311665892601013, 0.012167548760771751, -0.031897954642772675, -0.017595503479242325, -0.08450306206941605, 0.03304215148091316, -0.019130399450659752, 0.00864426139742136, 0.008253560401499271, -0.012404759414494038, 0.028688622638583183, 0.002495952183380723, 0.011428006924688816, 0.0012322781840339303, 0.0005572723457589746, 0.018488533794879913, 0.018097832798957825, -0.01801411062479019, -0.02598162367939949, -0.04166547954082489, 0.023721138015389442, 0.03072584979236126, 0.025311850011348724, 0.02200484462082386, -0.0025657201185822487, 0.02077692560851574, 0.029804911464452744, -0.017846668139100075, -0.01640944555401802, 0.02709791250526905, -0.028549086302518845, 0.02783745341002941, -0.016744332388043404, -0.011553589254617691, -0.003221539780497551, 0.0019099004566669464, -0.006750059314072132, 0.028507227078080177, -0.00727680791169405, 0.006830292288213968, -0.0002472405321896076, 0.017748992890119553, 0.03072584979236126, 0.005525629967451096, 0.0013081509387120605, -0.028256060555577278, 0.004213990177959204, -0.0017503059934824705, -0.00284653645940125, 0.0028273502830415964, -0.011218703351914883, 0.01604665257036686, 0.023316483944654465, -0.011762893758714199, 0.0067849429324269295, 0.015125714242458344, -0.003638403955847025, -0.01966063678264618, -0.025897901505231857, -0.06145169958472252, 0.01653502881526947, 0.015948977321386337, -0.006097727920860052, 0.005843074526637793, 0.022242054343223572, 0.006627964787185192, 0.019367611035704613, -0.014197798445820808, 0.010681488551199436, -0.006579127162694931, -0.028772344812750816, 0.019549008458852768, 0.02398625575006008, -0.003144795075058937, -0.016116419807076454, -0.01854434795677662, -0.0045767840929329395, -0.013151277787983418, 0.005487257149070501, 0.0050163231790065765, 0.012900113128125668, 0.01590711623430252, 0.008923334069550037, 0.02712581865489483, 0.025074638426303864, -0.01361872348934412, -0.03173051029443741, 0.019995523616671562, 0.023539740592241287, -0.009774504229426384, -0.029414210468530655, 0.014030355028808117, -0.021335070952773094, 0.005469815339893103, -0.028549086302518845, 0.02612115815281868, -0.0022796711418777704, 0.01343732699751854, 0.01511176023632288, 0.012823368422687054, -0.000364320061635226, 0.010702419094741344, 0.02338625118136406, 0.021572282537817955, -0.012174525298178196, 0.004262827802449465, -0.0039000341203063726, -0.015376878902316093, -0.01617223396897316, 0.014274543151259422, -0.03466076776385307, -0.03597240895032883, 0.005044230259954929, 0.008379142731428146, -0.012760576792061329, 0.0050546955317258835, -0.030000261962413788, 0.019130399450659752, -0.028200246393680573, 0.01589316315948963, -0.0004879403277300298, 0.0074163442477583885, -0.035860780626535416, 0.01093265414237976, 0.009481478482484818, 0.007793091703206301, 0.0019203656120225787, -0.028800252825021744, 0.024823473766446114, -0.02662348933517933, 0.00543841952458024, -0.02074901945888996, 0.0026128136087208986, 0.002342462306842208, -0.004963996820151806, 0.007786114700138569, -0.011344285681843758, -0.0077721611596643925, -0.026790931820869446, 0.019562961533665657, 0.005581444129347801, 0.006826804019510746, 0.005912842694669962, 0.07255877554416656, 0.011176842264831066, -0.0007238435209728777, 0.022479265928268433, -0.026316508650779724, -0.014281520619988441, 0.006338427774608135, 0.012209408916532993, -0.004712832160294056, -0.056009791791439056, 0.011909406632184982, 0.0037709632888436317, -0.023051364347338676, -0.011832661926746368, 0.029888633638620377, -0.012034988962113857, -0.002480254275724292, 0.019102493301033974, -0.015390832908451557, 0.01343732699751854, 0.025060685351490974, -0.010848931968212128, 0.02935839630663395, 0.0066593606024980545, -0.008351235650479794, 0.00015937640273477882, 0.007001223973929882, -0.0014843153767287731, -0.002298857318237424, 0.01942342519760132, 0.016939682886004448, 0.004147710744291544, -0.012418713420629501, -0.03407471626996994, -0.010214042849838734, -0.003457006998360157, 0.00983031839132309, 0.029693283140659332, 0.023693230003118515, 0.011839638464152813, -0.006425637751817703, 0.01816760003566742, -0.015753626823425293, -0.011197772808372974, -0.007283784914761782, -0.005550048779696226, -0.0058326092548668385, -0.026888607069849968, -0.027153726667165756], "f50169a5-63d6-41e0-8f71-5b49f72769c9": [-0.025356777012348175, -0.016433652490377426, -0.005510518327355385, -0.04134287312626839, -0.007713327184319496, 0.010426628403365612, -0.0179301630705595, -0.02086724154651165, 0.0015174904838204384, -0.038965240120887756, -0.0032867304980754852, 0.0022867252118885517, 0.01626581884920597, -0.0065210130997002125, -0.01520287711173296, 0.00476226257160306, 0.009846205823123455, -0.006395138334482908, 0.03854565694928169, -0.01728680357336998, 0.02074136771261692, 0.004335687030106783, -0.00806997250765562, -0.014699378050863743, -0.008265777491033077, 0.0008671373943798244, 0.01682526245713234, -0.022979142144322395, -0.0075035360641777515, -0.021986128762364388, 0.03781837970018387, -0.021622490137815475, -0.0327274426817894, -0.0016853235429152846, -0.00668185343965888, -0.009559490717947483, 0.006639895029366016, -0.0034108569379895926, -0.008042000234127045, 0.019734369590878487, 0.019328773021697998, -0.01023082248866558, 0.018111983314156532, 0.008867179043591022, -0.014867210760712624, -0.0016958131454885006, 0.009216831997036934, 0.007846195250749588, -0.0268812607973814, 0.008272770792245865, -0.014000073075294495, 0.008111930452287197, -0.023468654602766037, -0.01846163533627987, 0.01291615143418312, -0.022265851497650146, 0.0017080509569495916, 0.0040839374996721745, 0.010839217342436314, -0.004933592397719622, 0.02416795864701271, -0.007181855849921703, -0.052000273019075394, 0.010042010806500912, 0.0022412703838199377, -0.0027674969751387835, -0.016587499529123306, -0.013580490835011005, -0.014825252816081047, -0.017216874286532402, 0.024363763630390167, 0.011629431508481503, -0.011951111257076263, -0.012958110310137272, 0.022433683276176453, -0.012769297696650028, 0.005804226268082857, 0.01731477677822113, 2.145717189705465e-05, 0.016223860904574394, 0.0029458196368068457, 0.0018042052397504449, 0.008153889328241348, 0.012328735552728176, 0.011566494591534138, 0.01182523649185896, -0.02605608105659485, 0.013181887567043304, -0.019860243424773216, -0.005741288885474205, -0.014657419174909592, 0.025720413774251938, 0.004171350505203009, 0.005933597683906555, -7.184259447967634e-05, 0.00767836207523942, -0.037119075655937195, 0.03071344830095768, -0.026783356443047523, -0.022056059911847115, 0.013056012801826, 0.0027045595925301313, -0.04075545817613602, -0.006555978208780289, -0.04621003195643425, -0.007461577653884888, 0.02370641753077507, -0.015188890509307384, 0.005597931332886219, -0.014132941141724586, -0.019930174574255943, 0.025230901315808296, 0.022028086706995964, -0.027272870764136314, -0.030881280079483986, 0.015692390501499176, 0.010622433386743069, -0.04086734727025032, -0.02441970817744732, -0.026321817189455032, 0.013755316846072674, 0.00376225751824677, 0.026307830587029457, 0.0029772883281111717, 0.014671405777335167, -0.0004276683321222663, -0.0275945495814085, -0.005220307037234306, 0.009391658008098602, -0.0014047276927158237, 0.02524488791823387, 0.00591261824592948, 0.011335724033415318, 0.010706350207328796, -0.0022132983431220055, 0.03043372556567192, -0.005814715754240751, 0.006007024552673101, -0.026461677625775337, -0.013804268091917038, 0.014685391448438168, 0.029622532427310944, -0.004405617713928223, -0.005576952360570431, -0.023762362077832222, 0.005066459998488426, 0.010769287124276161, 0.010657398961484432, 0.004300721921026707, -0.008139902725815773, 0.012629437260329723, -0.0064825513400137424, -0.0010786770144477487, 0.002695818431675434, -0.02114696428179741, 0.02352459914982319, 0.02148262970149517, 0.03518899530172348, 0.0008745675440877676, -0.022112004458904266, 0.009000047110021114, -9.54987553996034e-05, 0.015258821658790112, -0.010069983080029488, 0.025356777012348175, 0.04123098403215408, -0.025384748354554176, -0.00038330620736815035, 0.0027447696775197983, 0.01132873073220253, 0.011720341630280018, 0.004223798401653767, 0.0022115500178188086, -0.001174831297248602, 0.0032972199842333794, 0.030601559206843376, 0.0010935371974483132, -0.0012771046021953225, 0.010258794762194157, -0.004118902608752251, -0.023748375475406647, -0.022181933745741844, -0.006622412241995335, -0.0022045569494366646, 0.0016136448830366135, -0.00395106989890337, 0.017272816970944405, -0.0015437144320458174, 0.005045481026172638, -0.0033356817439198494, 0.013181887567043304, 0.029035117477178574, 0.01910499483346939, -0.01140565425157547, -0.6104647517204285, -0.008279764093458652, -0.003192324424162507, 0.0028461688198149204, 0.020139966160058975, 0.025874260812997818, 0.010265788063406944, 0.024965165182948112, -0.015706375241279602, 0.005587441846728325, -0.004905620124191046, -0.004220301751047373, 0.015664417296648026, 0.008356687612831593, -0.012076986022293568, -0.01904905028641224, 0.00368533399887383, 0.0004062521329615265, 0.017230859026312828, 0.0067937420681118965, -0.00042220501927658916, 0.0022535084281116724, -0.015007072128355503, 0.01474133599549532, 0.00645108288154006, -0.0007517521735280752, -0.009685365483164787, -0.0020734374411404133, 0.00015712494496256113, 0.023510612547397614, -0.007384654134511948, 0.03152463957667351, 0.012468596920371056, -0.01923087053000927, 0.05214013531804085, -0.011363696306943893, -0.02710503712296486, 0.03846174106001854, 0.016587499529123306, 0.012727339752018452, -0.015692390501499176, -0.03160855919122696, 0.027636509388685226, 0.0077203200198709965, 0.021706407889723778, -0.0033374300692230463, 0.01897912099957466, -0.0186714269220829, 0.01324482448399067, 0.006860175635665655, 0.0014283291529864073, -0.025440692901611328, -0.021230880171060562, 0.020419687032699585, -0.013811261393129826, 0.029902255162596703, 0.029930226504802704, -0.019314786419272423, 0.021958157420158386, -0.0215805321931839, -0.016965124756097794, 0.014853225089609623, -0.022293822839856148, -0.009776274673640728, -0.011678382754325867, -0.007017519325017929, -0.031496670097112656, 0.005611917469650507, -0.005797233432531357, 0.0007338325376622379, 0.0003387255419511348, 0.006314718630164862, 0.022741377353668213, 0.031468696892261505, 0.025049082934856415, 0.01020285114645958, 0.03879740461707115, -0.022014101967215538, -0.000969410699326545, 0.011111946776509285, -0.015035043470561504, -0.010426628403365612, -0.019930174574255943, -0.010951106436550617, 0.01048257201910019, -0.02281130850315094, -0.03636382892727852, -0.007279758341610432, 0.018042052164673805, -0.00043946909136138856, 0.013384685851633549, -0.005437091458588839, 0.0074266125448048115, 0.0041223992593586445, 0.0006910001393407583, 0.030209949240088463, -0.0061433888040483, -0.00016608479199931026, -0.018251843750476837, -0.02562251128256321, -0.020111992955207825, 0.020811298862099648, -0.0014764063525944948, -0.013174894265830517, 0.016811277717351913, -0.008111930452287197, -0.02432180568575859, -0.00407344801351428, 0.030629530549049377, -0.03348269313573837, 0.011755306273698807, 0.020601507276296616, -0.012468596920371056, -0.02179032377898693, 0.002101409714668989, -0.03566452115774155, 0.0327274426817894, 0.012195868417620659, 0.004318204242736101, 0.00021875114180147648, 0.03365052491426468, -0.007014022674411535, 0.030825337395071983, 0.015160918235778809, -0.006552482023835182, 0.009678372181952, 0.0033042130526155233, -0.00047115632332861423, -0.004297225270420313, 0.02053157612681389, -0.006118913181126118, -0.030797364190220833, 0.015790292993187904, -0.016713375225663185, 0.00047203045687638223, -0.011014043353497982, 0.007251786068081856, -0.016965124756097794, 0.024223903194069862, -0.009510539472103119, -0.04165056720376015, 0.00490911677479744, 0.008293749764561653, -0.02068542316555977, -0.02367844618856907, -0.020139966160058975, -0.002557705622166395, 0.01521686278283596, -0.0027167974039912224, -0.009580469690263271, 0.016503583639860153, 0.011454605497419834, -0.011755306273698807, 0.03183233365416527, 0.007167869713157415, 0.011461598798632622, 0.0029772883281111717, -0.015118960291147232, -0.014657419174909592, -0.005213314201682806, 0.013713358901441097, -0.019958145916461945, -0.003888132283464074, -0.0035297388676553965, -0.0040559652261435986, -0.022517601028084755, 0.027230912819504738, -0.016503583639860153, -0.0022500117775052786, -0.019706396386027336, -0.016937151551246643, 0.016181902959942818, 0.016181902959942818, 6.796364323236048e-05, 0.017398692667484283, 0.01593015342950821, 0.0068077282048761845, 0.0065454887226223946, 0.008090951479971409, -0.020391715690493584, 0.005010515917092562, 0.01205600704997778, -0.021566547453403473, 0.010538516566157341, 0.007118918467313051, 0.021678434684872627, 0.04500722885131836, 0.024237889796495438, -0.008230812847614288, -0.010111941024661064, -0.005590938497334719, 0.01777631789445877, -0.004496526904404163, -0.005038488190621138, 0.012342722155153751, 0.016797291114926338, 0.03362255543470383, 0.0037237957585603, -0.008832214400172234, 0.012881186790764332, 0.03390227630734444, 0.04643381014466286, 0.027678467333316803, -0.022741377353668213, -0.0029807849787175655, -0.046657588332891464, 0.009727323427796364, -0.015077002346515656, 0.013839233666658401, 0.00376575393602252, 0.0034702979028224945, -0.019888216629624367, -0.009580469690263271, 0.007440598681569099, 0.021902212873101234, 0.0179021917283535, -0.024923207238316536, 0.0030122536700218916, -0.007363675162196159, -0.004423100035637617, 0.0021730882581323385, -0.018685413524508476, 0.03756663203239441, -0.0024370758328586817, -0.01372035127133131, -0.0068322038277983665, 0.033007167279720306, 0.033230941742658615, 0.02219592034816742, -0.022209906950592995, -0.026461677625775337, 0.004503520205616951, -0.0020087517332285643, -0.005923108197748661, -0.0275665782392025, -0.028559589758515358, 0.020643465220928192, -0.012125937268137932, 0.0029021131340414286, 0.031440723687410355, -0.0033304370008409023, 0.025272859260439873, 0.0009204593952745199, -0.0034335844684392214, 0.0104476073756814, 0.006125906482338905, 0.04198623448610306, -0.0003118460299447179, -0.017216874286532402, 0.014923155307769775, -0.03549668937921524, -0.0032412756700068712, -0.01994416117668152, -0.005692337639629841, 0.004276246298104525, -0.011664397083222866, 0.022923197597265244, 0.027888258919119835, 0.013042026199400425, 0.019958145916461945, 0.021748365834355354, 0.03275541588664055, 0.006933602970093489, 0.03577641025185585, 0.01313293632119894, -0.00825878418982029, 0.006206326186656952, -0.01626581884920597, -0.01987423002719879, -0.008384658955037594, -0.014783293940126896, -0.0009169628610834479, 0.01048257201910019, -0.005440588109195232, -0.00941263698041439, -0.022028086706995964, 0.002638125792145729, -0.005597931332886219, 0.006993043702095747, -0.013405664823949337, -0.017384706065058708, -0.011937125585973263, 0.007657382637262344, 0.021007103845477104, 0.0014370704302564263, -0.007314723450690508, 0.0005821709055453539, 0.00494757853448391, -0.017916178330779076, 0.0163637213408947, 0.0100490041077137, -0.006055975798517466, -0.00591261824592948, 0.016937151551246643, 0.01654554158449173, 0.0015174904838204384, 0.005188838578760624, -0.016321763396263123, -0.04145476222038269, -0.023776348680257797, -0.005923108197748661, 0.007874167524278164, 0.006461572367697954, -0.013035033829510212, 0.0506855808198452, 0.0002733842993620783, 0.009671379812061787, -0.009706344455480576, -0.0065979366190731525, -0.003625893034040928, 0.004926599096506834, -0.0021678435150533915, -0.017146943137049675, -0.0039930278435349464, -0.008272770792245865, 0.04738486558198929, 0.03429388627409935, -0.0001883751101559028, 0.016307778656482697, -0.01172733400017023, 0.0028339310083538294, -0.015454626642167568, -0.03627990931272507, -0.022769350558519363, -0.011832229793071747, 0.01703505404293537, 0.0149091687053442, 0.006580454297363758, -0.0313568077981472, -0.00879724882543087, -0.025146985426545143, -0.012307756580412388, -0.007748292293399572, -0.010356697253882885, 0.015552529133856297, -0.015104974620044231, 0.017818275839090347, 0.008531513623893261, 0.01593015342950821, -0.011965097859501839, -0.026279857382178307, -0.02370641753077507, 0.016993096098303795, -0.013412658125162125, -0.0002175492118112743, 0.008790255524218082, 0.002484278753399849, 0.03672746568918228, -0.01474133599549532, -0.005209817551076412, -0.001951059210114181, 0.013958115130662918, 0.0046503739431500435, -0.011007050983607769, 0.0012561255134642124, -0.006639895029366016, -0.013405664823949337, 0.011356703005731106, -0.005982548929750919, 0.0074266125448048115, 0.003783236723393202, 0.01979031413793564, -0.011286772787570953, 0.04137084633111954, 0.004531492479145527, 0.01447560079395771, 0.010328725911676884, 0.001944066141732037, -0.005272754933685064, -0.026909232139587402, 0.022433683276176453, 0.01846163533627987, -0.009118928574025631, -0.012090972624719143, 0.038629572838544846, -0.01372035127133131, -0.05219607800245285, -0.015902182087302208, 0.009657393209636211, -0.0005161740118637681, -0.00326749961823225, 0.014979099854826927, 0.017496595159173012, -0.013839233666658401, -0.019552549347281456, -0.005164362955838442, 0.00480072433128953, -0.01923087053000927, -0.019678425043821335, -0.043133094906806946, -0.01667141541838646, -0.03163652867078781, -0.0034965218510478735, -0.00618185056373477, 0.009496552869677544, -0.009902149438858032, -0.03706313297152519, -0.03488130122423172, 0.024979151785373688, 0.021874239668250084, 0.034181997179985046, -0.014993085525929928, -0.0171329565346241, 0.03916104510426521, -0.008426617830991745, -0.009007040411233902, -0.00032299119629897177, -0.02682531625032425, 0.002937078243121505, 0.016811277717351913, -0.009300747886300087, -0.046657588332891464, -0.016167916357517242, 0.0231190025806427, 0.0171329565346241, 0.0008404764230363071, 0.01620987430214882, 0.01629379205405712, -0.010825231671333313, -0.00510841840878129, 0.006517516914755106, 0.034154023975133896, -0.006014017388224602, -0.010692363604903221, 0.024335792288184166, -0.012650416232645512, -0.005793736781924963, -0.0021905710455030203, 0.0013155663618817925, 0.0016459876205772161, 0.009265783242881298, 0.006248284596949816, 0.014615461230278015, 0.025440692901611328, 0.004314708057790995, -0.0126713952049613, -0.0065454887226223946, -0.0283637847751379, 0.017804289236664772, 0.004797228146344423, -0.008468575775623322, -0.0156504325568676, -0.02923092246055603, -0.02493719384074211, 0.008370673283934593, -0.023286836221814156, 0.034993190318346024, 0.019888216629624367, -0.013622448779642582, -0.024587541818618774, -0.015580501407384872, -0.014405669644474983, -0.008349694311618805, 0.026755385100841522, 0.007846195250749588, 0.013279790058732033, 0.011832229793071747, -0.024671457707881927, -0.025720413774251938, 0.00944760162383318, -0.00395806273445487, 0.008076965808868408, -0.014272802509367466, -0.032056111842393875, -0.0023671453818678856, -0.038349851965904236, 0.016489597037434578, -0.014979099854826927, 0.0036293896846473217, -0.02620992809534073, -0.017300790175795555, -0.020797312259674072, 0.008007034659385681, 0.029370782896876335, 0.014881197363138199, 0.0017718623857945204, -0.006325208116322756, -0.016181902959942818, 0.003790229558944702, -0.042210012674331665, -0.003169597126543522, -0.024070056155323982, 0.028279868885874748, 0.011699361726641655, 0.008909137919545174, 0.0403079055249691, -0.02330082096159458, 0.004744780249893665, 0.019216883927583694, 0.00664339167997241, -0.0072168209590017796, 0.004423100035637617, -0.03071344830095768, -0.015692390501499176, 0.010363690555095673, 0.03524494171142578, -0.0004895130405202508, 0.002701063174754381, -0.009321726858615875, 0.012167896144092083, 0.00760143855586648, 0.01535672415047884, -0.009377671405673027, -0.019748356193304062, -0.007594445254653692, -0.006000031251460314, 0.004769255872815847, 0.006339194253087044, -0.03779040649533272, -0.009426622651517391, 0.0006350557669065893, -0.023356765508651733, 0.017454637214541435, -0.018713384866714478, 0.013314754702150822, -0.016195889562368393, 0.013587484136223793, -0.007979062385857105, 0.018349746242165565, 0.0011057750089094043, -0.0037237957585603, 0.002617146586999297, 0.004195826128125191, 0.036475714296102524, 0.0016713374061509967, -0.007937104441225529, -0.00047552696196362376, -0.02352459914982319, 0.027216926217079163, 0.012587478384375572, -0.006192340049892664, 0.00012926204362884164, 0.0036748445127159357, -0.002629384398460388, -0.03225191682577133, -0.006510523613542318, 0.0004198011592961848, -0.027049092575907707, 0.031412750482559204, 0.009699351154267788, 0.010146906599402428, 0.013328741304576397, -0.005475553218275309, 0.0015314766205847263, 0.005125901196151972, 0.010916140861809254, 0.02805609069764614, 0.008265777491033077, 0.01425881590694189, 0.02654559351503849, 0.02086724154651165, 0.0014903924893587828, -0.06618216633796692, -0.0216644499450922, -0.007496542762964964, 0.0342659130692482, 0.0491471104323864, -0.0055419872514903545, 0.0019493108848109841, 0.01697910949587822, 0.025049082934856415, -0.01260845735669136, -0.024307819083333015, 0.025594539940357208, 0.013818254694342613, -0.0006075206911191344, -0.016657430678606033, -0.007017519325017929, -0.011986076831817627, -0.00656646816059947, -0.021035075187683105, 6.927483627805486e-05, -0.02623789943754673, -0.01179027184844017, -0.00791612546890974, -0.0048461793921887875, -0.02370641753077507, 0.019063036888837814, 0.007552487310022116, -0.032335832715034485, 0.0005493909702636302, 0.00034965219674631953, -0.014881197363138199, 0.01756652630865574, -0.021874239668250084, 0.03398619219660759, 0.0034213466569781303, -0.018433663994073868, -0.0017299042083323002, 0.020084021613001823, -0.008741304278373718, -0.010643412359058857, -0.0034807873889803886, 0.04710514098405838, -0.01966443844139576, -0.0059545766562223434, -0.01667141541838646, -0.0008378540514968336, 0.02843371592462063, 0.015314765274524689, 0.0006949336966499686, 0.000606646528467536, -0.018727371469140053, -0.000638115219771862, -0.0009353195782750845, -0.00043750228360295296, 0.009314734488725662, -0.024825304746627808, -0.00499303312972188, -0.031105058267712593, -0.018195899203419685, 0.0029056095518171787, 0.0012648667907342315, -0.027174968272447586, -0.026895245537161827, -0.024965165182948112, -0.0186714269220829, -0.002636377466842532, 0.011643418110907078, -0.01123782154172659, 0.012461603619158268, 0.029622532427310944, -0.04002818092703819, -0.0003474668483249843, -0.006409124471247196, -0.0009090956882573664, -0.012384680099785328, -0.006888147909194231, 0.012230833061039448, -0.020503604784607887, 0.0156784038990736, 0.004087434150278568, 0.0033251922577619553, -0.015384696424007416, -0.013755316846072674, 0.0016267567407339811, -0.0060979342088103294, 0.027664480730891228, 0.019552549347281456, 0.011377681978046894, -0.001256999559700489, 0.0029842813964933157, -0.008000042289495468, 0.009531518444418907, -0.005150376819074154, -0.021860254928469658, 0.0171049851924181, -0.029147006571292877, 0.014300773851573467, 0.005615414120256901, 0.027174968272447586, 0.018070025369524956, -0.038713488727808, -0.049622636288404465, 0.014965113252401352, 0.018097996711730957, -0.028140008449554443, -0.014195878989994526, -0.029734421521425247, -0.013328741304576397, -0.018237857148051262, 0.006325208116322756, 0.014118955470621586, -0.006090940907597542, 0.03927293419837952, 0.021958157420158386, -0.013342726975679398, 0.01700708270072937, -0.015412668697535992, -0.04453170299530029, -0.012776290997862816, -0.03994426503777504, -0.014447628520429134, 0.00526226544752717, -0.010552503168582916, 0.031468696892261505, 0.012587478384375572, -0.030629530549049377, -0.031468696892261505, 0.011300758458673954, -0.018070025369524956, -0.0015454626409336925, -0.016349736601114273, 0.03390227630734444, 0.021496616303920746, -0.009552497416734695, 0.008195847272872925, 0.028503645211458206, -0.010328725911676884, 0.012734332121908665, -0.0036049140617251396, 0.013671400025486946, -0.01139166858047247, -0.016167916357517242, 0.03767852112650871, 0.013930142857134342, -0.02524488791823387, -0.009783267974853516, 0.02327284961938858, 0.014237836934626102, -0.007048988249152899, 0.01941268891096115, -0.006632901728153229, -0.015104974620044231, -0.007769271731376648, -0.0074126264080405235, 0.004493030719459057, 0.003270996268838644, 0.010594461113214493, -0.04176245629787445, 0.0039650555700063705, 0.003594424342736602, 0.022112004458904266, -0.019063036888837814, 0.021958157420158386, 0.004216805100440979, 0.005608420819044113, -0.007167869713157415, -0.006576957646757364, -0.0037133062724024057, -0.021552560850977898, -0.012601464986801147, 0.005856674164533615, 0.022643474861979485, -0.00515387300401926, 0.020042063668370247, -0.0035979209933429956, -0.012937130406498909, -0.006321711465716362, 0.02237774059176445, -0.011846216395497322, 0.001591791515238583, 0.0065734609961509705, -0.0039196009747684, 0.015035043470561504, -0.002982533071190119, 0.009118928574025631, -0.015426654368638992, 0.00010210936306975782, 0.016042042523622513, 0.0027762383688241243, -0.011804257519543171, 0.013727344572544098, 0.00364687223918736, -0.028559589758515358, -0.018377719447016716, -0.0017771072452887893, -0.022335780784487724, -0.018321774899959564, -0.009650399908423424, 0.006241291295737028, -0.030545614659786224, 0.010804252699017525, 0.01409098319709301, -0.012090972624719143, -0.010021031834185123, 0.021258853375911713, -0.0021643470972776413, -0.00896508153527975, -0.018447648733854294, 0.293148398399353, -0.02055954746901989, -0.00399652449414134, 0.013608463108539581, -0.005419608671218157, -0.001556826289743185, -0.000817749067209661, -0.006608426105231047, -0.007118918467313051, 0.0003308583691250533, -0.0038916287012398243, -0.019888216629624367, 0.00830074306577444, -0.0028356791008263826, 0.01864345371723175, 0.003632886102423072, -0.02731482870876789, -0.003136380109935999, -0.01410496886819601, -0.00019187162979505956, -0.00030397885711863637, 0.015342737548053265, -0.001879380433820188, -0.006776259280741215, -0.002407355234026909, -0.014153920114040375, -0.008454590104520321, 0.021258853375911713, 0.01979031413793564, 0.029594561085104942, -0.014657419174909592, 0.009167879819869995, -0.000456733163446188, -0.015482598915696144, -0.00790213979780674, -0.00981823354959488, 0.020573534071445465, 0.0019458143506199121, 0.014132941141724586, 0.01731477677822113, -0.013916157186031342, 0.006660874001681805, -0.007188848685473204, -0.02040570229291916, -0.009153894148766994, 0.0013951122527942061, 0.018629468977451324, -0.029454700648784637, -0.008461582474410534, -0.0002928336907643825, -0.026279857382178307, -0.008007034659385681, 0.006293739192187786, 0.0016503583174198866, -0.0012771046021953225, 0.0052832444198429585, 0.017944149672985077, 0.011804257519543171, -0.01892317645251751, -0.03538480028510094, 0.004479044582694769, 0.0231469739228487, -0.017524568364024162, 0.01425881590694189, -0.02179032377898693, -0.007059477735310793, -0.008881165646016598, 0.011657403782010078, 0.03317499905824661, -0.021230880171060562, 0.007937104441225529, -0.008083958178758621, -0.014405669644474983, -0.02281130850315094, -0.01984625868499279, -0.0313568077981472, 0.018503593280911446, 0.04531492292881012, 0.02493719384074211, 0.0047937314957380295, -0.016685402020812035, 0.004891633987426758, 0.018042052164673805, 0.006405627820640802, -0.01815394125878811, -0.046937309205532074, 0.010244809091091156, -0.02695119008421898, -0.011965097859501839, 0.0201259795576334, -0.00395806273445487, -0.010314739309251308, 0.0007465074304491282, -0.005744785536080599, 0.026993148028850555, 0.011363696306943893, -0.022153962403535843, 0.026615524664521217, -0.033230941742658615, 0.009608441963791847, -0.020783325657248497, 0.028112035244703293, 0.029426727443933487, 0.017986107617616653, -0.03874146193265915, -0.014517558738589287, -0.014839238487184048, -0.0027937209233641624, 0.0013015802251175046, -0.01410496886819601, -0.004000021144747734, -0.041594624519348145, -0.0007106680423021317, -0.0022919699549674988, 0.00044034322490915656, 0.010097955353558064, 0.0021783330012112856, -0.026601538062095642, -0.008384658955037594, -0.00253497832454741, 0.016559528186917305, -0.04086734727025032, 0.008454590104520321, 0.010328725911676884, -0.009692358784377575, -0.02096514403820038, 0.0034493186976760626, -0.010468586347997189, 0.008517527021467686, -0.03169247508049011, 0.03365052491426468, -0.014517558738589287, 0.01851757988333702, 0.01756652630865574, 0.001898611313663423, 0.036811381578445435, 0.009678372181952, -0.017300790175795555, -0.005248279310762882, -0.01209796592593193, 0.006926609668880701, -0.011797264218330383, 0.03395821899175644, 0.0012246568221598864, 0.009202845394611359, -0.016153931617736816, 0.01386021263897419, -0.0028601549565792084, 0.01613994501531124, 0.0036888306494802237, -0.04562261700630188, -0.013755316846072674, 0.01424483023583889, -0.003138128435239196, 0.005090935621410608, 0.007804236840456724, -0.01744065061211586, -0.04257364943623543, -0.011517543345689774, 0.02633580192923546, -0.031440723687410355, -0.0003586120146792382, 0.008594450540840626, -0.037734463810920715, 0.007790250703692436, -0.00637415936216712, -0.1820429116487503, 0.012279784306883812, 0.03099316917359829, 0.004171350505203009, 0.02058752067387104, -0.01660148613154888, -0.011090966872870922, 0.00847556907683611, -0.009762289002537727, -0.008314728736877441, 0.015706375241279602, -0.01202104240655899, -0.014503572136163712, -0.024839291349053383, -0.016475610435009003, -0.009517532773315907, -0.005933597683906555, -1.3514876627596095e-05, 0.01672735996544361, 0.008986061438918114, 0.018601495772600174, -0.03127289190888405, 0.007157380226999521, -0.009496552869677544, 0.016433652490377426, 0.015972111374139786, -0.0003990405530203134, 0.02040570229291916, 0.006769266445189714, -0.013559511862695217, -0.012139923870563507, -0.013349720276892185, -0.004104916471987963, -0.003972048871219158, 0.015734348446130753, 0.0006166990497149527, -0.024965165182948112, 0.004209812264889479, -0.004517506342381239, 0.013832240365445614, -0.002583929570391774, 0.03793026879429817, 0.0013356712879613042, 0.02641971968114376, 0.011230828240513802, -0.009286762215197086, 0.004989536479115486, 0.0004062521329615265, 0.005576952360570431, 0.004370652139186859, 0.007832208648324013, -0.017496595159173012, 0.010902155190706253, 0.0023968657478690147, 0.008713332004845142, 0.04285337030887604, -0.008174868300557137, 0.010608446784317493, -0.012349715456366539, 0.009398650377988815, -0.020755354315042496, -0.004576947074383497, -0.0039126081392169, -0.001893366570584476, -0.004437086172401905, -0.024489639326930046, -0.007573466282337904, 0.00989515706896782, 0.005482546053826809, -0.013028040528297424, 0.0018304291879758239, -0.041538678109645844, 0.030293865129351616, -0.011503556743264198, 0.01245461031794548, 0.0006853182567283511, -0.017706386744976044, -0.0017395196482539177, 0.003972048871219158, 0.0013846226502209902, -0.01504903007298708, 0.02130081132054329, -0.030545614659786224, -0.005846184678375721, 0.017049040645360947, 0.017202887684106827, 0.006772762630134821, -0.0033234439324587584, -0.015748335048556328, -0.004272749647498131, 0.013188879936933517, -0.030349809676408768, 0.00918186642229557, -0.029930226504802704, -0.0002749140257947147, 0.017049040645360947, 0.005860170815140009, 0.013839233666658401, -0.0028688961174339056, -0.0007910880376584828, -0.016097987070679665, 0.008433610200881958, -0.0200980082154274, 0.006034996826201677, 0.011202855966985226, -0.01447560079395771, 0.005090935621410608, 0.02549663744866848, 0.03611207753419876, -0.02219592034816742, 0.012125937268137932, -0.008125917054712772, 0.011321737430989742, -0.009888163767755032, 0.00806997250765562, -0.0055175116285681725, -0.029650505632162094, -0.02951064519584179, 0.02920295111835003, -0.009748303331434727, -0.004297225270420313, 0.004618905484676361, 0.006216815672814846, 0.026139996945858, -0.007972070015966892, 0.007122415117919445, -0.01297908928245306, -0.017049040645360947, 0.014209864661097527, 0.010510544292628765, 0.010993064381182194, 0.01324482448399067, -0.0014807770494371653, 0.03281136229634285, -0.0028164484538137913, 0.037091102451086044, -0.012720346450805664, -0.02608405239880085, -0.011035023257136345, 0.0071014356799423695, 0.024237889796495438, 0.011972091160714626, -0.017888205125927925, 0.002515747444704175, 0.005381146911531687, 0.03068547509610653, -0.015916166827082634, -0.0034440739545971155, -0.000986893312074244, -0.0004847053496632725, 0.007692348212003708, 0.010853203944861889, -0.01695113815367222, 0.04134287312626839, 0.012643422931432724, 0.007489549927413464, 0.03879740461707115, -0.011056002229452133, 0.0026870770379900932, 0.009321726858615875, -0.0041223992593586445, 0.009951100684702396, -0.036475714296102524, -0.04223798215389252, 0.01316790096461773, -0.0021713401656597853, 0.01577630639076233, 0.020181924104690552, -0.0027954692486673594, -0.015454626642167568, -0.01629379205405712, -0.014713363721966743, 0.0003717239887919277, 0.04257364943623543, 0.0013723848387598991, 0.011699361726641655, -0.007930111140012741, -0.014559516683220863, -0.011720341630280018, -0.0055175116285681725, 0.024741388857364655, 0.0028409240767359734, -0.006153878290206194, 0.013384685851633549, -0.03689529746770859, 0.012049014680087566, -0.008440603502094746, -0.008265777491033077, -0.018937163054943085, 0.02731482870876789, 0.0029580574482679367, 0.009139908477663994, -0.012503562495112419, -0.02120290882885456, 0.03527291119098663, 0.007629410829395056, 7.689616722927894e-06, 0.03793026879429817, -0.003947573248296976, 0.02598614990711212, -0.03152463957667351, -0.021035075187683105, -0.018755342811346054, -0.007734306156635284, 0.013566505163908005, -0.021035075187683105, -0.016923164948821068, 0.0007001784979365766, 0.0005900380783714354, -0.019552549347281456, 0.02462949976325035, 0.03756663203239441, -0.003251765388995409, -0.003092673607170582, 0.012832235544919968, -0.01432175375521183, 0.0148951830342412, 0.026755385100841522, -0.00983221922069788, -0.01741267926990986, 0.014000073075294495, -0.01552455686032772, -0.0004112783935852349, 0.011916146613657475, 0.0171329565346241, 0.015230849385261536, -0.03225191682577133, -0.0021346264984458685, -0.10377676784992218, 0.016405681148171425, -0.016307778656482697, 0.006307725328952074, 0.032363805919885635, 0.015818264335393906, 0.025328803807497025, -0.008895151317119598, -0.010349704883992672, 0.019706396386027336, -0.02531481720507145, 0.008881165646016598, 0.017077011987566948, -0.032979194074869156, -0.020699409767985344, -0.024517610669136047, 0.028377771377563477, -0.0009545504581183195, 0.02330082096159458, 0.007118918467313051, 0.00879724882543087, -0.004776248708367348, 0.009356692433357239, -0.02395816706120968, -0.0283637847751379, 0.023818306624889374, -0.009608441963791847, 0.011832229793071747, -0.009769282303750515, -0.010426628403365612, 0.0022063052747398615, -0.02278333716094494, -0.02046164497733116, 0.027818327769637108, 0.0017736107110977173, -0.016251834109425545, 8.036536746658385e-05, 0.028811339288949966, 0.015118960291147232, 0.0223217960447073, -0.0010987819405272603, -0.02411201409995556, -0.0030174984131008387, -0.00249302014708519, -0.008307735435664654, 0.010566488839685917, -0.02426586113870144, 0.01830778829753399, 0.025174956768751144, -0.01731477677822113, 0.022741377353668213, 0.007559480145573616, -0.018811287358403206, -0.045790448784828186, -0.03127289190888405, -0.03899321332573891, 0.0006219437927938998, 0.01876932941377163, -0.009251796640455723, -0.010035017505288124, 0.03227989003062248, 0.014447628520429134, 0.024153972044587135, -0.024853277951478958, 0.014713363721966743, 0.0061363959684967995, -0.013916157186031342, -0.0005104921874590218, 0.03932887688279152, -0.004531492479145527, -0.00981823354959488, -0.023510612547397614, -0.004143378231674433, -0.0019300800049677491, 0.002029730938374996, 0.003734285244718194, 0.03454563394188881, 0.010160892270505428, -0.01386021263897419, 0.019146952778100967, 0.008153889328241348, 0.0001231431233463809, -0.024685444310307503, 0.006769266445189714, 0.008580464869737625, 0.0018444153247401118, -0.03152463957667351, -0.0019965139217674732, -0.015566514804959297, 0.01756652630865574, 0.0007504409877583385, 0.00622730515897274, 0.015300779603421688, 0.011398660950362682, 0.006514020264148712, 0.016965124756097794, -0.0022779840510338545, -0.0032412756700068712, 0.028279868885874748, 0.021804310381412506, -0.009021026082336903, 0.006269263569265604, -0.013419650495052338, 0.0004355355049483478, -0.013678393326699734, 0.03451766446232796, -0.01846163533627987, -0.043049175292253494, -0.021650463342666626, 0.00253148190677166, 0.005636393092572689, 0.01253153383731842, -0.013573497533798218, 0.046042200177907944, -0.03046169877052307, 0.025692442432045937, -0.019916187971830368, -0.018755342811346054, -0.026307830587029457, 0.015538543462753296, 0.022279836237430573, 0.01629379205405712, -0.0033863813150674105, -0.012734332121908665, 0.01395112182945013, -0.032391779124736786, 0.010727329179644585, -0.03127289190888405, -0.01669938862323761, 0.010895161889493465, -0.0012264050310477614, -0.008825221098959446, -0.012699367478489876, -0.009573476389050484, -0.02212599106132984, 0.020545562729239464, -0.013426643796265125, 0.010356697253882885, -0.0039126081392169, 0.0596366748213768, 0.019426675513386726, -0.006870665587484837, 0.011622438207268715, -0.00034615566255524755, 0.009741310030221939, 0.0015035043470561504, 0.013307762332260609, 0.0022447670344263315, -0.0388253778219223, 0.007783257402479649, 0.0017893450567498803, -0.02188822627067566, -0.0042902324348688126, -0.00020673185645136982, -0.013895178213715553, -0.008307735435664654, 0.011538522318005562, -0.016783304512500763, -0.013685386627912521, 0.008153889328241348, -0.007286751642823219, 0.009482567198574543, 0.017552539706230164, -0.010384669527411461, 0.003251765388995409, -0.007650389801710844, -0.010454600676894188, 0.0047028218396008015, -0.0008597073028795421, 0.025734400376677513, -0.0034335844684392214, -0.012944123707711697, -0.04654569923877716, 0.005755275022238493, 0.0017290300456807017, -0.001382874441333115, 0.00638115219771862, 0.023846279829740524, 0.003758760867640376, -0.01651756837964058, 0.02521691471338272, -0.02212599106132984, -0.016839249059557915, 0.021091019734740257, -0.025202929973602295, 0.012314749881625175, -0.003755264449864626, -0.005118907894939184], "f83a5752-4020-41c1-bc2c-9d74e407fdfc": [-0.014924501068890095, -0.009138701483607292, -0.007080619223415852, -0.026904990896582603, -0.017950288951396942, -0.013568347319960594, -0.019667629152536392, -0.02630528435111046, 0.0034721612464636564, -0.026073578745126724, -0.0018195623997598886, 0.002627121051773429, 0.008900181390345097, -0.006712617818266153, -0.007952919229865074, 0.005833503324538469, 0.0026015653274953365, 0.005526835564523935, 0.030966635793447495, -0.016873544082045555, 0.016505543142557144, 0.011005966924130917, -0.002056378172710538, -0.02101696841418743, -0.019435925409197807, 0.010856040753424168, 0.02386557124555111, -0.010965078137814999, 0.013568347319960594, -0.0042252009734511375, 0.019749408587813377, -0.00360164325684309, -0.011660192161798477, -0.0204854104667902, -0.007768918294459581, 0.008068771101534367, 0.005618835799396038, -0.014924501068890095, -0.020880671218037605, 0.015224353410303593, 0.027531955391168594, -0.003390383208170533, 0.009159145876765251, 0.010597077198326588, -0.032847531139850616, 0.01497901976108551, -0.010672040283679962, 0.02584187500178814, -0.01566050387918949, 0.015892207622528076, -0.010787892155349255, 0.02423357218503952, -0.031184710562229156, -0.010290409438312054, 0.020403632894158363, -0.004293349571526051, 0.020090149715542793, 0.0003728995507117361, 0.0220528244972229, -0.03472842648625374, 0.024410758167505264, 0.0019303035223856568, -0.03156634047627449, -0.001887710765004158, -0.004746536258608103, -0.008832032792270184, 0.0037345325108617544, 0.001159374718554318, -0.0007070397259667516, 0.02013103850185871, 0.006934100296348333, 0.01732332445681095, -0.0049066850915551186, -0.0005238908343017101, 0.026073578745126724, -0.020240075886249542, 0.0019558591302484274, -0.00720328651368618, 0.0014515609946101904, 0.013275309465825558, 0.007264620158821344, 0.002853714395314455, 0.021821118891239166, -0.009172774851322174, 0.016314728185534477, 0.0018706737319007516, -0.012362120673060417, 0.013561532832682133, 0.0005805392283946276, -0.0026390468701720238, -0.018808959051966667, -0.004061644896864891, 0.0123212318867445, -0.004678388126194477, 0.023729274049401283, 0.01876807026565075, -0.013956793583929539, 0.00215860060416162, -0.013915903866291046, -0.0216303039342165, 0.014910871163010597, -0.00733276829123497, -0.027272991836071014, -0.0007398361340165138, -0.05443694442510605, -0.015060797333717346, 0.023729274049401283, -0.005710836499929428, 0.008893366903066635, -0.011353524401783943, -0.02412453480064869, 0.036527544260025024, 0.001397042302414775, -0.021725710481405258, 0.008218697272241116, 0.006041355896741152, 0.04544135555624962, -0.016669100150465965, -0.013370716944336891, -0.01810021698474884, 0.014869981445372105, 0.01515620481222868, 0.02334764413535595, -0.014611017890274525, 0.015088057145476341, -0.00226934184320271, -0.0006572061683982611, -0.019272368401288986, -0.010215445421636105, -0.0263598021119833, 0.03140278533101082, 0.008334550075232983, 0.02101696841418743, -0.00023681570019107312, 0.011101375333964825, 0.010678854770958424, -0.019204219803214073, 0.007080619223415852, -0.0128187146037817, 1.859439908002969e-05, 0.03974414989352226, 0.0010869670659303665, 0.006099282298237085, -0.012021378614008427, 0.00756447296589613, -0.006569506134837866, 0.021875638514757156, 0.02044452168047428, 0.010965078137814999, -0.00014737092715222389, 0.0015111909015104175, -0.013404791243374348, 0.015428799204528332, 0.013459309935569763, 0.013166272081434727, 0.025392096489667892, -0.0011866340646520257, 0.030557744204998016, -0.003857199801132083, -0.028513291850686073, 0.009874704293906689, 0.0128187146037817, 0.0018400069093331695, -0.00847766175866127, 0.02892218343913555, 0.01680539734661579, -0.019408665597438812, -0.0013783015310764313, -0.010004186071455479, 0.022843345999717712, -0.011769229546189308, 0.000803725270088762, -0.018631773069500923, -0.006879581604152918, -0.006572913844138384, 0.008109659887850285, 0.0329565666615963, 0.004306979011744261, -0.014270275831222534, 0.01762317679822445, 0.0005592428497038782, -0.01991296373307705, 0.01328212395310402, 0.019994741305708885, -0.013738718815147877, -0.012075897306203842, 0.03500102087855339, -0.005148611962795258, 0.005639280658215284, 0.0010818559676408768, 0.020621707662940025, 0.042252011597156525, 0.010147297754883766, 0.0032694197725504637, -0.6023228764533997, -0.02261164039373398, 0.008995589800179005, 3.856640887534013e-06, 0.012600639835000038, 0.017118878662586212, -0.016096653416752815, 0.0062219491228461266, -0.02495594508945942, 0.01690080389380455, -0.006405950058251619, 0.002518083667382598, 0.012355306185781956, 0.007230545859783888, -0.014706425368785858, -0.04176134243607521, 0.030912116169929504, -0.004453498404473066, -0.0005775577155873179, 0.01987207494676113, -0.014910871163010597, -0.014392943121492863, -0.013527458533644676, 0.0018740810919553041, 0.020267335698008537, 0.008797959424555302, -0.007441805675625801, -0.0002958066761493683, 0.019313257187604904, 0.020471781492233276, -0.00419794162735343, 0.0018536365823820233, 0.010590261779725552, 0.0013535977341234684, 0.044650834053754807, -0.01737784408032894, -0.02521491050720215, 0.029194775968790054, 0.027477437630295753, 0.025501133874058723, -0.01950407400727272, -0.025855503976345062, 0.03527361527085304, -0.013213975355029106, 0.00650135800242424, -0.0042490530759096146, 0.004480757750570774, -0.014597387984395027, 0.023851942270994186, 0.0014030053280293941, 0.00800743792206049, -0.03459212929010391, 0.0012794863432645798, -0.0006691321614198387, 0.008593513630330563, -0.008859292604029179, 0.03685465827584267, -0.025446614250540733, 0.018263772130012512, -0.022557122632861137, -0.009268183261156082, -0.006559283938258886, -0.037045471370220184, 0.004167275037616491, -0.016083022579550743, 0.003393790451809764, -0.024110905826091766, 0.006763729266822338, -0.018345549702644348, -0.021712081506848335, -0.02547387406229973, -0.007721214089542627, -0.0031280117109417915, -0.008157364092767239, 0.012000934220850468, 0.038762811571359634, 0.009867888875305653, -0.011762415058910847, 0.02194378711283207, 0.00928181316703558, 0.004453498404473066, -0.013922719284892082, -0.02443801797926426, -0.008859292604029179, 0.017486881464719772, -0.00826640147715807, -0.029003961011767387, -0.001932007260620594, 0.012062267400324345, 0.01270967721939087, 0.02184837870299816, -0.0005886318394914269, 0.010631151497364044, -0.044023867696523666, -0.007114693522453308, 0.026182617992162704, -0.01352064311504364, 0.015715021640062332, 0.010528928600251675, 0.0031723082065582275, -0.02537846565246582, 0.04072548821568489, 0.011667006649076939, 0.02916751801967621, 0.01243026927113533, 0.0038606070447713137, -0.02646883949637413, 0.013527458533644676, 0.026755062863230705, -0.04535957798361778, -0.0023238605353981256, -0.003990089055150747, -0.004644313827157021, -0.008198252879083157, -0.000819484586827457, -0.03459212929010391, 0.02267978899180889, 0.015483317896723747, 0.02646883949637413, -0.00012681992666330189, 0.039280738681554794, 0.012852788902819157, 0.018086586147546768, 0.007285064551979303, 0.0007564473198726773, 0.0022778604179620743, 0.013765977695584297, -0.006545654498040676, -0.026019060984253883, 0.011217227205634117, -0.002202897099778056, -0.0011542636202648282, 0.018536366522312164, -0.01887710765004158, -0.015824059024453163, 0.01386138517409563, 0.004296756815165281, -0.00319275283254683, 0.028622329235076904, -0.009213664568960667, -0.01825014315545559, -0.01557872537523508, 0.015592355281114578, -0.03053048439323902, -0.023620236665010452, -0.02637343294918537, -0.009234108962118626, 0.02319771610200405, 0.0050157224759459496, -0.00419794162735343, 0.004218386020511389, 0.007864326238632202, -0.01928599923849106, 0.05637235939502716, -0.002824751427397132, 0.012082711793482304, -0.03775421530008316, -0.017664065584540367, -0.0007015026640146971, -0.010038260370492935, -0.0011133746011182666, -0.015115316025912762, -0.013656940311193466, -0.016192061826586723, -0.010433521121740341, -0.027695512399077415, -0.005312168039381504, -0.00037055695429444313, -0.0025640837848186493, -0.04653172940015793, -0.036745619028806686, 0.012205379083752632, -0.007455435581505299, -0.018072957172989845, 0.0010000778129324317, 0.008538994938135147, 0.008096030913293362, -0.0011891896137967706, 0.015115316025912762, -0.02261164039373398, -0.015292502008378506, 0.007148767821490765, -0.01268923282623291, 0.011442117393016815, 0.018072957172989845, 0.028267959132790565, 0.038762811571359634, 0.017227916046977043, -0.0059152813628315926, -0.006637654732912779, 0.028840404003858566, 0.014611017890274525, 0.006593358237296343, 0.007509954273700714, 0.028731366619467735, 0.025201279670000076, -0.002509565092623234, -0.010787892155349255, -0.008048326708376408, 0.013663754798471928, 0.04852166399359703, 0.03407420217990875, 0.007305508945137262, -0.02698676846921444, 0.01455649919807911, -0.05007544904947281, 0.03202975168824196, 0.0008301327470690012, 0.02661876752972603, 0.012130415998399258, 0.010433521121740341, -0.009506702423095703, -0.017609547823667526, -0.0004778906877618283, 0.030503226444125175, 0.012607455253601074, -0.014447461813688278, -0.0015972282271832228, 0.007673510350286961, 0.0049509815871715546, 0.024996835738420486, 0.02242082543671131, 0.01549694687128067, -0.007039729971438646, -0.02334764413535595, 0.019899334758520126, 0.03001255728304386, -0.01706436090171337, -0.006494543049484491, -0.02506498247385025, -0.01245071366429329, -0.017255175858736038, -0.011530710384249687, -0.007618991658091545, -0.012948197312653065, 0.01732332445681095, 0.04056192934513092, 0.00964299961924553, 0.005179278552532196, 0.016560062766075134, 0.008757069706916809, 0.031130190938711166, -0.002180748851969838, -0.020839782431721687, 0.02148037776350975, 0.02386557124555111, 0.05882570147514343, 0.005042981822043657, 0.001800821628421545, 0.023102309554815292, -0.014243016950786114, -0.018917996436357498, -0.027940845116972923, 0.011830562725663185, -0.0057176509872078896, 0.004429646302014589, 0.006082245148718357, 0.03974414989352226, 0.018849847838282585, 0.0209079310297966, 0.02704128623008728, 0.03977140784263611, -0.013609236106276512, 0.017759473994374275, 0.016887174919247627, -0.006375283468514681, -0.005291723646223545, -0.018004808574914932, -0.002460157498717308, -0.0030479372944682837, -0.026700545102357864, -0.0009915592381730676, 0.005656317807734013, -0.014270275831222534, 0.006327579263597727, -0.02397460862994194, 0.020839782431721687, 0.03126648813486099, 0.01835918053984642, 0.001390227465890348, 0.005874392576515675, -0.027627363801002502, 0.0035539392847567797, 0.0260599497705698, -0.005434835329651833, -0.025201279670000076, -0.01315264217555523, -0.012696048244833946, -0.004327423870563507, 0.034564871340990067, -0.0010673743672668934, -0.004582980182021856, -0.002020600251853466, 0.021725710481405258, -0.029358332976698875, 0.019095182418823242, -0.001265856670215726, -0.001141485758125782, -0.0178957711905241, -0.012259897775948048, 0.017486881464719772, -0.011707896366715431, 0.007768918294459581, -0.014842722564935684, 0.042933493852615356, 0.0027548992075026035, -0.0003426586918067187, 0.010467594489455223, -0.008927441202104092, -0.02179385907948017, -0.018481846898794174, -0.02438349835574627, -0.032166045159101486, -0.004395572002977133, 0.003117789514362812, 0.0315118208527565, 0.019981112331151962, 0.01032448373734951, 0.04113437607884407, -0.01955859176814556, -0.020294595509767532, -0.02037637308239937, -0.038244884461164474, -0.01965400017797947, -0.017773104831576347, 0.030094334855675697, 0.0025657874066382647, -0.01050166878849268, -0.013500198721885681, -0.016260208562016487, 0.0009353368659503758, -0.02777728997170925, -0.004371720366179943, -0.0018604514189064503, -0.011707896366715431, -0.013057234697043896, 0.004214978776872158, -0.0062662456184625626, 0.0007841325714252889, 7.996789645403624e-05, -0.009384035132825375, -0.03859925642609596, 0.028513291850686073, -0.019531331956386566, 0.000999226002022624, 0.015851318836212158, 0.009711147285997868, 0.038408439606428146, -0.02859507128596306, -0.013847756199538708, -0.027368398383259773, 0.02615535818040371, 0.018795330077409744, -0.037726957350969315, -0.014597387984395027, -0.0002751491847448051, -0.009343146346509457, 0.02886766381561756, -0.012655158527195454, -0.006675136275589466, 0.02334764413535595, 0.02428809180855751, -0.013459309935569763, 0.002553861355409026, -0.005482539068907499, 0.03036692924797535, 0.0036902360152453184, -0.003908311016857624, -0.007196471560746431, 0.006773951463401318, 0.014515610411763191, 0.0020035631023347378, 0.0033546052873134613, -0.01372508890926838, 0.01060389168560505, -0.010235890746116638, -0.03562798723578453, -0.009527146816253662, 0.016914434731006622, 0.016832655295729637, -0.024996835738420486, -0.004627276677638292, 0.02360660769045353, -0.011264931410551071, -0.007605361752212048, -0.010658410377800465, 0.019176961854100227, -0.028158919885754585, -0.0025300094857811928, -0.03412872180342674, -0.017650436609983444, -0.004395572002977133, -0.03426501899957657, -0.01084241084754467, 0.02022644691169262, -0.015251613222062588, -0.04094356298446655, -0.022339047864079475, 0.002611787524074316, 0.030803078785538673, 0.012253083288669586, -0.021398598328232765, -0.012382565066218376, 0.012880048714578152, -0.011278561316430569, -0.016832655295729637, -0.009247738867998123, -0.01011322345584631, 0.0148972412571311, 0.003475568722933531, 0.026959508657455444, -0.015333390794694424, 0.016110282391309738, 0.02443801797926426, 0.03685465827584267, 0.015442428179085255, 0.011067301034927368, 0.01175559964030981, -0.018400069326162338, 7.405815267702565e-05, 0.009690702892839909, 0.0029576406814157963, -0.02417905442416668, -0.025978172197937965, -0.012014564126729965, -0.017445990815758705, 0.010160926729440689, 0.0026543803978711367, -0.007080619223415852, -0.004637498874217272, 0.021821118891239166, 0.01349338423460722, 0.021453117951750755, 0.011442117393016815, 0.002642454346641898, -0.0130299748852849, 0.019803926348686218, -0.02011740952730179, 0.0041604600846767426, 0.01512894593179226, 0.005768762435764074, -0.02375653386116028, -0.01315264217555523, -0.012184934690594673, 0.01929962821304798, -0.006433209404349327, 0.021957416087388992, -0.00523720495402813, -0.009547591209411621, 0.0223526768386364, -0.03312012553215027, -0.030230632051825523, -0.006416172254830599, 0.01810021698474884, 0.00215860060416162, 0.010774263180792332, -0.002020600251853466, -0.021616673097014427, -0.032629456371068954, 0.014079459942877293, -0.016055764630436897, 0.027627363801002502, -0.019231479614973068, -0.021466746926307678, -0.006487728096544743, -0.017718585208058357, 0.0244925357401371, -0.005441650282591581, -0.017773104831576347, -0.029358332976698875, -0.01455649919807911, 0.010876485146582127, -0.01653280295431614, 0.01313219778239727, 0.012109971605241299, 0.010862855240702629, -0.01638287678360939, -0.006900025997310877, 0.012859604321420193, -0.04312431067228317, -0.02168482169508934, -0.021984675899147987, 0.03189345449209213, 0.012682418338954449, 0.012607455253601074, 0.02532394789159298, 0.004705647472292185, 0.0239200908690691, 0.008300475776195526, 0.01596035622060299, -0.01071292906999588, -0.01370464451611042, -0.037318065762519836, -0.00262030609883368, 0.01846821792423725, 0.0178957711905241, 0.011394413188099861, -0.0016474876319989562, 0.0011823747772723436, 0.03213878720998764, -0.013350272551178932, 0.03685465827584267, -0.007012470625340939, -0.03941703587770462, -0.008470846340060234, 0.005407575983554125, -0.0012709677685052156, -0.005550687666982412, -0.03301108628511429, -0.020580818876624107, -0.002247193595394492, -0.014038571156561375, 0.02308867871761322, 0.006538839545100927, -0.006460468750447035, -0.013786422088742256, -0.001068226294592023, -0.0006520950701087713, 0.00977248139679432, -0.02870410867035389, 0.0048828329890966415, -0.03230234235525131, -0.006256023421883583, 0.02308867871761322, -0.012941381894052029, 0.02242082543671131, 0.002576009603217244, -0.025255799293518066, 0.020471781492233276, -0.0003871681110467762, -0.03453760966658592, 0.0028520107734948397, -0.00038184403092600405, 0.0009779295651242137, -0.020362744107842445, -0.04950300231575966, -0.010494854301214218, -0.02407001703977585, 0.010106408037245274, 0.013207160867750645, 0.0030326039995998144, 0.011012782342731953, -0.013663754798471928, -0.01060389168560505, 0.007925659418106079, -0.014651906676590443, 0.033883385360240936, -0.001741191721521318, 0.028785886242985725, 0.02194378711283207, 0.015592355281114578, -0.0015870060306042433, -0.04942122474312782, -0.009738407097756863, 0.002487416844815016, 0.0309393759816885, 0.020880671218037605, 0.01347293984144926, 0.0007176878862082958, 0.007523583713918924, 0.015510576777160168, -0.017745845019817352, -0.016682729125022888, 0.01526524219661951, 0.01612391322851181, 0.0027037879917770624, -0.024737870320677757, 0.009499887935817242, -0.020812522619962692, -0.011115005239844322, -0.009690702892839909, 0.0035028280690312386, -0.04301527142524719, -0.018590884283185005, -0.030639523640275, -0.013091308996081352, -0.023906460031867027, 0.022011933848261833, 0.007482694927603006, -0.014202127233147621, 0.013588791713118553, -0.009506702423095703, -0.030176114290952682, 0.018536366522312164, 0.007325953338295221, 0.037726957350969315, -0.023061420768499374, 0.004593202378600836, 0.009745221585035324, 0.02475150115787983, -0.013820496387779713, -0.014529240317642689, -0.010869670659303665, 0.04249734431505203, -0.024206314235925674, 0.0007521880324929953, -0.008341364562511444, 0.010774263180792332, 0.019476814195513725, 0.01047440990805626, -0.01680539734661579, 0.008934255689382553, -0.015674132853746414, 0.004692017566412687, 0.01627383939921856, -0.008981959894299507, 0.009506702423095703, -0.023851942270994186, -0.0009353368659503758, -0.019163331016898155, -0.011394413188099861, 0.011230857111513615, 0.024097274988889694, -0.04933944344520569, -0.005138389766216278, -0.02323860675096512, -0.002420972101390362, 0.005567724816501141, 0.02657787874341011, -0.013043604791164398, 0.004821499809622765, 0.027341140434145927, -0.023156827315688133, 0.004119570832699537, 0.006545654498040676, -0.019981112331151962, -0.023061420768499374, -0.0063105421140789986, 0.004988463129848242, -0.007039729971438646, 0.02292512357234955, 0.00021690358698833734, 0.008654847741127014, -0.032111529260873795, 0.011660192161798477, 0.01515620481222868, -0.019585851579904556, 0.03587331995368004, -0.0013714866945520043, -0.011966859921813011, 0.017432361841201782, 0.010304038412868977, -0.006146986037492752, 0.00525083439424634, -0.006729654967784882, -0.0025197872892022133, 0.006671729031950235, -0.01841369830071926, 0.006317357067018747, -0.023906460031867027, -0.013077679090201855, 0.023115938529372215, -0.019463185220956802, -0.03088485635817051, 0.026441581547260284, -0.008061956614255905, -0.02173934131860733, 0.0050157224759459496, -0.05626332387328148, -0.014256645925343037, -0.01497901976108551, -0.018331920728087425, -0.013527458533644676, -0.015715021640062332, 0.012641528621315956, 0.031648118048906326, -0.012382565066218376, 0.03791777417063713, -0.02501046471297741, -0.04249734431505203, 0.03306560590863228, -0.04426920413970947, -0.009397665038704872, -0.0181956235319376, -0.008464031852781773, 0.03576428443193436, 0.0011431894963607192, -0.019940223544836044, -0.02886766381561756, -0.009827000088989735, -0.023129569366574287, -0.014120349660515785, 0.002363045932725072, 0.037617918103933334, 0.012437083758413792, 0.0034057165030390024, 0.004477350041270256, 0.026741433888673782, -0.006589950527995825, 0.01954496279358864, -0.01172834075987339, 0.003990089055150747, -0.005288316402584314, -0.004013941157609224, 0.010195001028478146, -0.009458998218178749, -0.011946415528655052, -0.016982583329081535, 0.007639436051249504, -0.003584606107324362, 0.020921560004353523, 0.020771633833646774, -0.01575591042637825, -0.022298157215118408, -0.013350272551178932, 0.01669635996222496, 0.009111441671848297, 0.007966548204421997, -0.004497794900089502, -0.02308867871761322, -0.018400069326162338, 0.008566254749894142, 0.01566050387918949, -0.01177604403346777, 0.02854055166244507, -0.0033086049370467663, 0.011196782812476158, 0.011557969264686108, -0.002340897684916854, -0.004075274802744389, -0.0031552710570394993, 0.01362286601215601, 0.024424389004707336, 0.015347020700573921, 0.007325953338295221, 0.019326888024806976, 0.0006814840598963201, 0.019899334758520126, -0.00956803560256958, -0.005669947247952223, -0.0008045770809985697, -0.000431890512118116, -0.0058709848672151566, -0.001550376182422042, 0.017405102029442787, -0.016505543142557144, 0.018222883343696594, -0.01243026927113533, -0.005267871543765068, 0.015251613222062588, -0.008491291664540768, -0.02704128623008728, 0.019926592707633972, 0.014542869292199612, -0.023674756288528442, -0.0029678631108254194, -0.0061129117384552956, -0.03208426758646965, 0.003717495361343026, -0.014515610411763191, 0.001814451301470399, -0.037318065762519836, 0.019667629152536392, -0.010637965984642506, 0.0014353757724165916, 0.02158941514790058, 0.006596765480935574, 0.004341053310781717, -0.0013007826637476683, -0.027586475014686584, 0.24707885086536407, -0.025773726403713226, -0.0006491135573014617, 0.01653280295431614, -0.007782547734677792, 0.0037072731647640467, 0.002898010890930891, 0.0011210412485525012, -0.0012598936446011066, 0.012164490297436714, -0.012314416468143463, -0.008518550544977188, -0.01208952721208334, 0.0026731211692094803, 0.003710680641233921, -0.024301720783114433, -0.03317464515566826, -0.03527361527085304, 0.0032881605438888073, -0.0013518939958885312, -0.0019814148545265198, -0.003175715683028102, -0.022638900205492973, -0.012832344509661198, 0.00757810240611434, 0.0015290798619389534, -0.010828781872987747, 0.01773221418261528, 0.009022848680615425, 0.009329516440629959, -0.03374708816409111, 0.0014421906089410186, 0.0007206693990156054, 0.00881840381771326, 0.0022199342492967844, -0.020771633833646774, 0.030394189059734344, -0.007053359877318144, 0.022584380581974983, 0.028431514278054237, -0.015088057145476341, 0.01845458708703518, 0.01575591042637825, -0.029521888121962547, 0.007871140725910664, 0.014447461813688278, -0.00894107110798359, -0.032629456371068954, -0.010079149156808853, -0.011966859921813011, -0.016560062766075134, -0.022393565624952316, 0.025651060044765472, 0.011142264120280743, 0.004790832754224539, 0.0007504842942580581, 0.016873544082045555, -0.016301099210977554, -0.0012292268220335245, -0.018086586147546768, -0.013145827688276768, 0.022856974974274635, -0.02599180117249489, -0.003666384145617485, -0.005714243743568659, 0.0003024085599463433, -0.016423765569925308, -0.0008620773442089558, -0.009936037473380566, -0.020730745047330856, -0.019667629152536392, 0.00499187083914876, -0.009738407097756863, -0.00041677008266560733, -0.011612487956881523, -0.04467809572815895, 0.04200667515397072, 0.02933107316493988, 0.01014048233628273, 0.022843345999717712, 0.004235423170030117, -0.014992648735642433, 0.01079470757395029, -0.001730117597617209, -0.009356776252388954, -0.0237701628357172, 0.034810204058885574, -0.013193530961871147, 0.0029099369421601295, 0.01856362633407116, 0.003645939752459526, -0.02366112545132637, 0.011564784683287144, 0.01061070617288351, 0.029549147933721542, -0.00024703796952962875, 0.019422294571995735, 0.022557122632861137, -0.02615535818040371, -0.013513828627765179, 0.005785799585282803, 0.014079459942877293, 0.011551154777407646, 0.006593358237296343, 0.021657563745975494, -0.008055141195654869, -0.012702862732112408, -0.011149078607559204, 0.02122141234576702, -0.032683975994586945, 0.002226749202236533, -0.03947155550122261, -0.0041809044778347015, -0.008995589800179005, 0.004347868263721466, -0.005499576218426228, -0.003935570362955332, 0.0007832807023078203, -0.012621084228157997, 0.001894525601528585, -0.003262604819610715, -0.01440657302737236, -0.0013995978515595198, 0.020499039441347122, -0.026536988094449043, -0.03437405452132225, -0.02100333757698536, 0.0014157830737531185, 0.009690702892839909, -0.026073578745126724, 0.011189968325197697, -0.03636398911476135, 0.03786325454711914, -0.01290049310773611, 0.0038163105491548777, 0.00033626978984102607, -0.013370716944336891, -0.006375283468514681, 0.024560684338212013, 0.001046078046783805, -0.02011740952730179, 0.006412765011191368, 0.005540465470403433, -0.020158298313617706, 0.006504765246063471, -0.023947348818182945, -0.0051043154671788216, -0.00029814927256666124, 0.0014038571389392018, -0.010542558506131172, -0.029058480635285378, -0.008648032322525978, 0.02600543200969696, -0.019313257187604904, 0.006681951228529215, 0.0009234108729287982, -0.01385457068681717, -0.04800373688340187, 0.01130582019686699, 0.017037101089954376, -0.014243016950786114, -0.014011312276124954, 0.0015444132732227445, -0.00922729354351759, -0.006681951228529215, -0.023524830117821693, -0.1735876202583313, 0.021439488977193832, 0.039607852697372437, -0.010808336548507214, 0.008934255689382553, -0.016887174919247627, -0.005830096080899239, -0.024110905826091766, -0.020785262808203697, -0.02131682075560093, 0.0239200908690691, -0.001770154805853963, -0.017336953431367874, -0.01034492813050747, -0.013650125823915005, -0.012123601511120796, -0.0038401626516133547, 0.01591946743428707, 0.0486852191388607, 0.03224782645702362, 0.04252460598945618, -0.024424389004707336, -0.022025564685463905, 0.035382650792598724, -0.001734376884996891, 0.026455210521817207, 0.00769395474344492, 0.013357087038457394, 0.036227691918611526, -0.02886766381561756, 0.003342679236084223, -0.02043089084327221, 0.013643310405313969, -0.006821655202656984, -0.017187027260661125, -0.0009200034546665847, -0.002049563219770789, -0.0031518638134002686, -0.031130190938711166, 0.007400916889309883, -0.010965078137814999, 0.013888644985854626, -0.021248672157526016, -0.0059152813628315926, 0.009159145876765251, 0.0018212661379948258, 0.005557502619922161, -0.014474720694124699, 0.01149663608521223, 0.003911718260496855, 0.006051578558981419, -0.018577255308628082, 0.027859067544341087, 0.009465813636779785, 0.04565943032503128, 0.02656424790620804, -0.021085117012262344, 0.0272048432379961, -0.0016125616384670138, -0.01130582019686699, -0.011973674409091473, -0.01575591042637825, 0.007012470625340939, 0.004582980182021856, -0.007073804270476103, -0.006494543049484491, -0.018372809514403343, 0.03614591434597969, -0.02657787874341011, -0.008913811296224594, 0.007523583713918924, -0.021098745986819267, 0.019054293632507324, 0.01200774870812893, 0.006712617818266153, 0.00638550566509366, -0.005145204719156027, -0.0012726715067401528, 0.008961515501141548, -0.006123133935034275, -0.01955859176814556, 0.03958059474825859, -0.013043604791164398, -0.024724241346120834, 0.02916751801967621, -0.003540309611707926, -0.004872610792517662, -0.005714243743568659, -0.015210723504424095, -0.01758228801190853, 0.0216303039342165, -0.030394189059734344, -0.009827000088989735, -0.01876807026565075, -0.011578413657844067, 0.012443898245692253, -0.014038571156561375, -0.02626439556479454, -0.018400069326162338, 0.0014507091837003827, -0.0020478595979511738, -0.006620617583394051, -0.02715032361447811, 0.02434260956943035, 0.00043338126852177083, -0.0018246734980493784, -0.009717962704598904, 0.03756340220570564, 0.046313654631376266, 0.019490443170070648, -0.00617424538359046, -0.0130299748852849, 0.023279495537281036, 0.012443898245692253, -0.0095203323289752, 0.006998841185122728, -0.021902896463871002, -0.015633244067430496, 0.03780873492360115, 0.010726558975875378, -0.012880048714578152, -0.011428487487137318, -0.007980178110301495, 0.0013587088324129581, -0.014624647796154022, -0.005973207764327526, -0.04514150321483612, -0.020471781492233276, 0.008457217365503311, 0.01326167955994606, -0.007850696332752705, 0.023156827315688133, -0.010856040753424168, 0.02990351989865303, 0.002538528060540557, 0.03361079469323158, -0.017282435670495033, -0.028049882501363754, -0.021657563745975494, 0.026714174076914787, 0.011653376743197441, 0.004143422935158014, -0.011394413188099861, 0.0038980888202786446, 0.012655158527195454, 0.026864100247621536, -0.014829092659056187, -0.00477038836106658, -0.0035505318082869053, 0.0014720055041834712, 0.0046204617246985435, -0.011299005709588528, -0.006685358472168446, 0.014365683309733868, 0.0056937993504107, 0.016341987997293472, 0.028949441388249397, -9.07225621631369e-05, -0.00803469680249691, -0.0010043371003121138, 0.023265864700078964, 0.006007282063364983, -0.022802455350756645, -0.014924501068890095, 0.026973137632012367, -0.024724241346120834, 0.014992648735642433, 0.006627432536333799, 0.006392320152372122, -0.013772792182862759, -0.01835918053984642, -0.027368398383259773, -0.011585229076445103, 0.007843880914151669, -0.005697206594049931, 0.011741969734430313, -0.031021153554320335, -0.01526524219661951, -0.006593358237296343, -0.015197094529867172, 0.011932785622775555, 0.023374902084469795, 0.00418771943077445, 0.012416639365255833, -0.03213878720998764, 0.042306531220674515, 0.010181372053921223, -0.003117789514362812, -0.030721301212906837, 0.022393565624952316, 0.02111237496137619, 0.020785262808203697, -0.018917996436357498, 0.010971893556416035, 0.03104841336607933, 0.005639280658215284, -0.01224626787006855, 0.036227691918611526, -0.004903277847915888, 0.06236942112445831, -0.020580818876624107, -0.025569280609488487, -0.02096244879066944, -0.012375750578939915, 0.02299327217042446, -0.03568250313401222, -0.002906529465690255, -0.009608925320208073, -0.003109270939603448, -0.02511950209736824, 0.029821742326021194, 0.02938559278845787, -0.000393131107557565, -0.014188498258590698, 0.027940845116972923, -0.008804773911833763, 0.022529862821102142, 0.029521888121962547, -0.009820184670388699, -0.030557744204998016, 0.010767447762191296, 0.009145515970885754, 0.0032915680203586817, 0.0041161635890603065, 0.006153800990432501, 0.02039000205695629, -0.038299404084682465, -0.0012581899063661695, -0.0882658138871193, 0.036473024636507034, -0.017173398286104202, 0.006382097955793142, 0.008784329518675804, -0.01172834075987339, 0.034346796572208405, 0.005530242808163166, -0.005244019906967878, -0.005152019206434488, -0.013636495918035507, 0.01362286601215601, -7.906279643066227e-05, -0.004766981117427349, -0.01845458708703518, -0.042933493852615356, 0.017650436609983444, 0.0286495890468359, 0.012845974415540695, -0.0030462336726486683, -0.0022795640397816896, -0.005782392341643572, 0.014474720694124699, -0.010856040753424168, -0.024942316114902496, 0.013445680029690266, -0.0058062439784407616, 0.032847531139850616, -0.023006901144981384, -0.011891896836459637, 0.00478401780128479, -0.016137542203068733, 0.0007006507948972285, 0.04721321538090706, -0.012839158996939659, 0.0012735233176499605, 0.00010344714974053204, 0.007366842590272427, 0.014679166488349438, -0.003017270704731345, -0.0204854104667902, -0.033992424607276917, 0.012805085629224777, -0.003059863345697522, 0.0031075673177838326, -0.005925503559410572, -0.0008130956557579339, 0.0015750799793750048, 0.011448931880295277, -0.012075897306203842, 0.004719276912510395, 0.011585229076445103, -0.011217227205634117, -0.031539082527160645, -0.007993808016180992, -0.053537387400865555, 0.01500627864152193, 0.010556187480688095, 0.01591946743428707, -0.002400527475401759, 0.03742710500955582, -0.0021262301597744226, 0.030448706820607185, -0.011476191692054272, -0.011067301034927368, -0.020062889903783798, -0.02984900213778019, -0.007571287918835878, 0.011823748238384724, -0.014788203872740269, -0.01726880483329296, -0.023879200220108032, -0.006521802395582199, 0.015524206683039665, 0.0044671278446912766, 0.007414546329528093, -0.006957951933145523, 0.02240719459950924, -0.01737784408032894, 0.02079889364540577, 0.025446614250540733, -0.005792614538222551, -0.04050741344690323, 0.01752777025103569, 0.023892831057310104, -0.013323012739419937, -0.02922203578054905, 0.017759473994374275, -0.01673724874854088, 0.006204912438988686, -0.006716025061905384, 0.006242393981665373, 0.001210486050695181, 0.010706114582717419, 0.007673510350286961, 0.018890738487243652, -0.011033226735889912, -0.00020455170306377113, 0.011762415058910847, 0.009588480927050114, -0.006685358472168446, 0.011830562725663185, -0.012164490297436714, -0.010379002429544926, -0.016137542203068733, 0.029521888121962547, -0.008327734656631947, -0.02663239650428295, -0.005697206594049931, 0.009118256159126759, -0.008648032322525978, 0.02522853948175907, -0.007598547264933586, 0.021643932908773422, -0.02610083855688572, -0.007537213619798422, -0.006388912908732891, -0.013139012269675732, -0.02225726842880249, 0.032520417124032974, -0.010263149626553059, 0.012491602450609207, 0.007366842590272427, -0.00977929588407278, 0.01965400017797947, -0.013813681900501251, 0.019776666536927223, -0.04045289382338524, 0.0002966585161630064, 0.01455649919807911, -0.010672040283679962, 0.008280031383037567, -0.02469698153436184, -0.011632932350039482, -0.023742904886603355, 0.006917063146829605, 0.0029014183674007654, 0.026455210521817207, 0.014788203872740269, 0.0956803634762764, -0.0034721612464636564, -0.018277402967214584, 0.006388912908732891, -0.019776666536927223, 0.019313257187604904, 0.022216379642486572, -0.003843570128083229, 0.010460780002176762, -0.02178023010492325, -0.003393790451809764, 0.0036834212951362133, -0.024683352559804916, -0.020608076825737953, 0.023851942270994186, -0.012716492637991905, -0.033665310591459274, 0.0272048432379961, -0.006930692587047815, 0.0204854104667902, 0.03598235920071602, -0.011040041223168373, 0.016859915107488632, 0.024519795551896095, 0.00464090658351779, -0.003976459614932537, -0.003053048625588417, -0.02068985626101494, -0.017813993617892265, 0.012702862732112408, 0.022693417966365814, -0.0027395659126341343, -0.01841369830071926, -0.04377853497862816, -0.010821966454386711, 0.005271279253065586, 0.005407575983554125, 0.02580098621547222, 0.04778566211462021, 0.008832032792270184, -0.005499576218426228, 0.023279495537281036, -0.03115745075047016, -0.01919059082865715, -0.01398405246436596, 0.0021534895058721304, 0.008409513160586357, -0.006624024827033281, -0.038190364837646484], "e70c7fff-b77c-46dd-9009-dc930ae0692d": [-0.028153184801340103, -0.023966940119862556, 0.004168916959315538, -0.026351159438490868, -0.014305311255156994, 0.009938864037394524, -0.017424201592803, -0.026240264996886253, 0.005492712836712599, -0.03864651918411255, 0.007831880822777748, 0.0017318505560979247, -0.008739824406802654, -0.000844266323838383, -0.019808420911431313, 0.0037149451673030853, 0.004484271630644798, -0.008996265940368176, 0.017424201592803, 0.0013272612122818828, -0.0011877774959430099, 0.0064110527746379375, -0.004778833128511906, -0.022719385102391243, -0.005825394298881292, 0.00359712028875947, 0.01648160256445408, -0.004986759275197983, 0.01581623964011669, -0.012738934718072414, 0.010112135671079159, 0.003453304758295417, -0.01668952964246273, 0.019309397786855698, -0.005132307764142752, 0.013050824403762817, -0.005645191762596369, -0.004466944374144077, -0.02442437782883644, 0.009620044380426407, 0.023551087826490402, -0.011789405718445778, 0.004220898263156414, 0.00847645103931427, -0.004262483678758144, 0.010403232648968697, 0.005426869262009859, 0.0014936019433662295, -0.022525319829583168, 0.008968543261289597, -0.022844139486551285, 0.04815566912293434, -0.04638136550784111, -0.028610622510313988, 0.015719208866357803, -0.015275632031261921, 0.005763016641139984, 0.007984359748661518, 0.0019302467117086053, -0.033323612064123154, 0.013203303329646587, 0.002443130826577544, -0.034183040261268616, -0.01058343518525362, -0.0029196280520409346, -0.012468631379306316, -0.000704349426086992, -0.013009238988161087, -0.014374619349837303, -0.0013073349837213755, 0.004051092080771923, 0.02777891792356968, 0.010597296990454197, 0.006026389542967081, 0.04455161839723587, -0.007540784310549498, -0.011214143596589565, 0.018616311252117157, 0.0066952183842659, 0.015067706815898418, 0.009398256428539753, 0.0028503192588686943, 0.022289671003818512, -0.0011202015448361635, 0.01894899271428585, -0.003191664582118392, -0.0030599781312048435, 0.009675491601228714, -0.0038085118867456913, -0.0017777675529941916, -0.00808832235634327, -0.0006610315176658332, 0.039062369614839554, 0.000515483261551708, -0.002552292076870799, 0.003111959667876363, -0.00347236474044621, 0.02342633344233036, -0.00949528906494379, -0.021610446274280548, 0.00022568638087250292, -0.01069432869553566, -0.01882423646748066, -0.0004418428288772702, -0.03775936737656593, -0.009925002232193947, 0.03265824913978577, -0.0267808735370636, 0.004401100799441338, -0.010673535987734795, -0.023634258657693863, 0.037094004452228546, -0.016190506517887115, -0.0030409181490540504, -0.0009555933647789061, -0.010015103965997696, 0.03141069412231445, -0.028139322996139526, -0.035624660551548004, 0.004307534079998732, 0.039533670991659164, 0.014014214277267456, 0.025283806025981903, 0.00011977405665675178, 0.03739896044135094, -0.009086367674171925, -0.002365158637985587, -0.012295359745621681, 0.0036491018254309893, -0.039921797811985016, 0.038230665028095245, 0.015150876715779305, 0.011110180988907814, 0.02307979017496109, -0.004324861336499453, 0.011117111891508102, -0.01634298637509346, -0.0026545224245637655, -0.008580414578318596, -0.016786562278866768, 0.05608458071947098, 0.009883417747914791, 0.011879507452249527, -0.01943415403366089, 0.011664650402963161, 0.006958591286092997, 0.010562642477452755, 0.019046025350689888, 0.02894330397248268, 0.0035295444540679455, 0.013813219033181667, -0.016190506517887115, 0.010091342963278294, 0.014166693203151226, -0.000562266621273011, 0.01492908876389265, -0.008317041210830212, 0.02838883362710476, -0.0006480361334979534, -0.05480930209159851, 0.00729127274826169, 0.025366974994540215, -0.017812330275774002, -0.016024166718125343, 0.0056036063469946384, 0.030523542314767838, -0.02055695280432701, 0.009245777502655983, -0.02360653504729271, 0.025020431727170944, 0.006761061493307352, 0.00882299430668354, -0.016051890328526497, -0.0018644033698365092, -0.01175475213676691, 0.008795270696282387, -0.002768881618976593, 0.004168916959315538, -0.0258244127035141, 0.014956812374293804, -0.006702149286866188, -0.014762748032808304, 0.010527987964451313, 0.024396654218435287, -0.012537939473986626, -0.030634434893727303, 0.0444130003452301, 0.011269590817391872, 0.005052602384239435, -0.002035942394286394, 0.011539895087480545, 0.03554148972034454, 0.010638882406055927, 0.014416204765439034, -0.5757610201835632, -0.03129979968070984, -0.007201171480119228, -0.010659674182534218, 0.018061840906739235, 0.01882423646748066, 0.006989779882133007, 0.022802554070949554, -0.03146614134311676, 0.012932999059557915, 0.00030604112544097006, 0.021360933780670166, 0.013071616180241108, -0.007589300163090229, -0.007623954676091671, -0.033406782895326614, 0.004927847068756819, 0.0061095599085092545, 0.008157631382346153, 0.025547178462147713, -0.02855517528951168, 0.007575438357889652, -0.016717253252863884, 0.029885901138186455, 0.007991290651261806, 0.010534918867051601, -0.0011773811420425773, 0.004037230275571346, 0.005333302542567253, 0.0191291943192482, -0.010722052305936813, -0.0022594628389924765, 0.015469696372747421, 0.013660740107297897, 0.03942277655005455, -0.02847200445830822, -0.02116687037050724, 0.02863834612071514, 0.03204833343625069, 0.026767011731863022, -0.007644746918231249, -0.012787451036274433, 0.04139114171266556, -0.023537226021289825, 0.028277941048145294, -0.040531713515520096, 0.0013532519806176424, -0.015843963250517845, -0.009439841844141483, -0.019018301740288734, -0.01458254549652338, -0.015622176229953766, -0.022275809198617935, 0.007769502699375153, -0.016675667837262154, 0.005842721555382013, 0.02969183772802353, -0.022885724902153015, 0.02095894329249859, -0.04158520698547363, -0.02434120699763298, 0.0030877015087753534, -0.03739896044135094, -0.015940995886921883, -0.014527099207043648, 0.019420292228460312, -0.014970674179494381, 0.0075615765526890755, -0.004986759275197983, -0.004841211251914501, -0.00808832235634327, -0.0087121007964015, 0.0011981737334281206, -6.302757537923753e-05, 0.007921981625258923, 0.03152158483862877, 0.01369539462029934, -0.02594916895031929, 0.026157094165682793, -0.006906609516590834, -0.007596231065690517, -0.0036109820939600468, -0.03129979968070984, -0.014527099207043648, 0.010957702063024044, 0.00647689588367939, -0.02960866689682007, 0.015414250083267689, 0.022636214271187782, -0.001737048733048141, 0.014055799692869186, -0.00544419651851058, 0.010077482089400291, -0.04261097311973572, 0.0009590588160790503, 0.013896389864385128, -0.0227748304605484, 0.0059813386760652065, 0.024673888459801674, -0.013910251669585705, -0.03376718610525131, 0.019267812371253967, -0.01069432869553566, 0.013279542326927185, 0.018186597153544426, 0.014097385108470917, -0.02708583138883114, 0.030357200652360916, 0.018754927441477776, -0.02764029987156391, -0.011117111891508102, -0.013251818716526031, -0.00019363111641723663, -0.01217060349881649, -0.001892126863822341, -0.02446596324443817, 0.011775543913245201, 0.003035719972103834, 0.01175475213676691, 0.015719208866357803, 0.02847200445830822, -0.0031847336795181036, 0.021402519196271896, -0.010223030112683773, 0.005593210458755493, 0.016315262764692307, 0.015317217446863651, 0.009072505868971348, -0.011352761648595333, 0.0032765676733106375, -0.004110004752874374, -0.014208278618752956, -0.005575883202254772, -0.02513132616877556, 0.0001698062551440671, 0.006362536456435919, -0.009481427259743214, -0.006525412201881409, 0.013639947399497032, -0.026087787002325058, -0.019766835495829582, -0.02224808558821678, 0.010895323939621449, -0.025963030755519867, -0.04011586308479309, -0.024368930608034134, -0.01717469096183777, 0.02472933568060398, -0.006965522188693285, -0.0008152433438226581, -0.002006486291065812, -0.01868562027812004, -0.017548957839608192, 0.04707445204257965, -0.01856086403131485, 0.023925354704260826, -0.018145011737942696, -0.026545222848653793, 0.0023045134730637074, 0.0026822458021342754, -0.006788785103708506, -0.0006081836181692779, -0.024188729003071785, -0.018657896667718887, -0.0017327169189229608, -0.026392744854092598, 0.0069031440652906895, 0.011893369257450104, -0.00017933620256371796, -0.03177109733223915, -0.025658072903752327, 0.008081391453742981, -0.01856086403131485, -0.024978848174214363, -0.01890740729868412, 0.006865024566650391, -0.004609026946127415, 0.01613505929708481, -0.003378798021003604, -0.007991290651261806, 0.012524077668786049, 0.01373698003590107, -0.009973518550395966, 0.001782965729944408, 0.001439021434634924, 0.018047979101538658, 0.025145187973976135, 0.0011496576480567455, -0.018061840906739235, -0.009315086528658867, -0.0014658785657957196, 0.004862003494054079, -0.003725341521203518, 0.0060749053955078125, 0.020182685926556587, 0.030939392745494843, 0.004116935655474663, 0.0016209566965699196, -0.020362889394164085, 0.01903216354548931, 0.05370036140084267, 0.029192814603447914, 0.008642791770398617, -0.05586279556155205, 0.00843486562371254, -0.04269414395093918, 0.01860244944691658, -0.02477092109620571, 0.025325391441583633, -0.011020079255104065, -0.006813042797148228, -0.008989335037767887, -0.007131862919777632, 0.0032627061009407043, 0.03495929762721062, 0.008074460551142693, 0.005333302542567253, -0.007762571796774864, 0.01630140095949173, 0.019489599391818047, 0.01127652171999216, 0.017673712223768234, -0.00037621616502292454, -0.0012449570931494236, -0.003165673930197954, 0.005478851031512022, 0.023578811436891556, -0.0018574725836515427, -0.006400656420737505, -0.022067882120609283, -0.01599644310772419, -0.03168792650103569, -0.004785764031112194, -0.0026787803508341312, -0.01400035247206688, 0.02356494963169098, 0.0417238250374794, 0.0002501610142644495, 0.01364687830209732, 0.004938243422657251, 0.0025626884307712317, 0.02381446212530136, -0.004179313313215971, -0.02769574709236622, 0.011089388281106949, 0.01707765832543373, 0.06853242218494415, 0.007686332333832979, 0.0025453611742705107, 0.003631774801760912, -0.010812154039740562, -0.01717469096183777, -0.02195698954164982, 0.03653953596949577, -0.01379935722798109, 0.02230353280901909, 0.014956812374293804, 0.02542242221534252, 0.01699448749423027, 0.022747108712792397, 0.026060063391923904, 0.015968719497323036, -0.01084680762141943, 0.01621823012828827, 0.022289671003818512, -0.01786777749657631, -0.01182406023144722, -0.02251145802438259, -0.010278476402163506, 0.007277410943061113, -0.005066464189440012, -0.002098320284858346, 0.0022334721870720387, 0.021568860858678818, -0.009023989550769329, -0.01212901808321476, 0.009883417747914791, 0.028749238699674606, 0.019267812371253967, 0.003957525361329317, -0.0074853370897471905, -0.022067882120609283, 0.02190154232084751, 0.022275809198617935, -0.007519991602748632, -0.001549048931337893, -0.015220185741782188, -0.012163672596216202, 0.010715121403336525, 0.023966940119862556, -0.006085301749408245, -0.010631951503455639, 0.006151145324110985, 0.0009114090935327113, -0.028319526463747025, 0.005288252141326666, -0.0003110226825810969, -0.012122088111937046, -0.005551625043153763, -0.0013099339557811618, 0.009460634551942348, -0.01899057812988758, 0.00410653930157423, -0.017410339787602425, 0.026767011731863022, -0.00032055264455266297, 0.00015746065764687955, -0.009682422503829002, 0.0005128842312842607, -0.010992356576025486, -0.015455835498869419, -0.020931219682097435, -0.016800424084067345, 0.004414962604641914, 0.007305134553462267, 0.017590541392564774, 0.006244712043553591, 0.00017056432261597365, 0.041890162974596024, 0.003098097862675786, -0.0405871607363224, -0.016758838668465614, -0.03166020289063454, -0.023454057052731514, -0.01752123422920704, 0.012808243744075298, 0.010749775916337967, 0.008885372430086136, -0.02185995690524578, -0.008781409822404385, -0.003517415374517441, -0.020889636129140854, 0.01423600222915411, -0.012482493184506893, 0.007547714747488499, 0.0027931397780776024, 0.028056152164936066, -0.006781854201108217, 0.01299537718296051, -0.004002576228231192, -0.006182333920150995, -0.026351159438490868, 0.041529759764671326, 0.005087256897240877, -0.00991114042699337, 0.01388945896178484, 0.028971027582883835, 0.028222493827342987, -0.01725785993039608, -0.006251642480492592, -0.030107690021395683, 0.02069557085633278, -0.005537763237953186, -0.014180555008351803, -0.02930370904505253, 0.00684769731014967, -0.003988714423030615, 0.017313307151198387, -0.012551801279187202, 0.010576504282653332, 0.013030031695961952, 0.006241246592253447, -0.0029612132348120213, 0.008816063404083252, 0.02564421109855175, 0.018796512857079506, 0.014568683691322803, -0.01473502442240715, -0.013140925206243992, -0.004796160385012627, 0.0004674003866966814, 0.0035624660085886717, -0.02138865739107132, -0.0020255460403859615, 0.0016556109767407179, -0.016453880816698074, -0.019240088760852814, -0.009030920453369617, 0.008233871310949326, 0.010916116647422314, -0.020459922030568123, -0.0038604934234172106, 0.01668952964246273, -0.01890740729868412, 0.005700638517737389, -0.020321303978562355, 0.02464616484940052, -0.022483734413981438, -0.016758838668465614, -0.015885548666119576, -0.046963561326265335, -0.019808420911431313, -0.024854091927409172, 0.003427314106374979, 0.01167158130556345, 0.00043577831820584834, -0.02916509099304676, -0.016925178468227386, 0.00046869993093423545, 0.012420115061104298, 0.010313130915164948, -0.012621110305190086, -0.020362889394164085, 0.0241194199770689, -0.0029005680698901415, -0.011373554356396198, -0.011706235818564892, -0.0012336944928392768, 0.001423426903784275, 0.02077874168753624, 0.037094004452228546, -0.014707301743328571, -0.004522391129285097, 0.018422245979309082, 0.013653809204697609, 0.023551087826490402, 0.0033112219534814358, 0.01443006657063961, -0.019836142659187317, -0.010722052305936813, 0.006192730274051428, 0.037620749324560165, -0.0036837561056017876, -0.023869909346103668, 0.003267904045060277, -0.010805223137140274, 0.003429046832025051, 0.00369415245950222, 0.002671849448233843, -0.0020272787660360336, 0.01825590617954731, 0.009703215211629868, 0.006133818067610264, 0.013937975279986858, -0.0058115324936807156, -0.020612400025129318, 0.011962677352130413, -0.02065398544073105, 0.00021009192278143018, 0.0019129194552078843, 0.012551801279187202, 0.002865913789719343, 0.00421743281185627, -0.0030305220279842615, -0.00036971847293898463, -0.024923400953412056, 0.04177927225828171, 0.012267636135220528, -0.00999431125819683, 0.010202237404882908, -0.03213150426745415, -0.036234576255083084, -0.02594916895031929, 0.006584324408322573, -0.006175403017550707, 0.03243646025657654, 0.0018280163640156388, -0.0036698945332318544, -0.021402519196271896, -0.007131862919777632, 0.004931312520056963, 0.020030207931995392, -0.021707477048039436, -0.025283806025981903, -0.010909185744822025, -0.0004925247631035745, 0.02637888304889202, -0.02065398544073105, -0.002534964820370078, -0.03132752329111099, -0.016453880816698074, 0.009779454208910465, 0.0011132706422358751, -0.0011687175137922168, 0.027099693194031715, 0.005312510300427675, -0.010008173063397408, -0.020071793347597122, -0.004841211251914501, -0.020792603492736816, -0.04493974521756172, -0.01768757402896881, 0.02385604754090309, 0.03077305294573307, -0.004297138191759586, 0.03404442220926285, 0.017022211104631424, -0.00290749897249043, 0.006882351823151112, -0.00441149715334177, -0.017368754372000694, -0.00042364929686300457, -0.03606823459267616, -0.0008958146790973842, 0.0066224439069628716, 0.015663761645555496, 0.0005172159872017801, -0.029275985434651375, 0.0029820059426128864, 0.05034582316875458, -0.0035797932650893927, 0.029664114117622375, -0.0034862265456467867, -0.054448895156383514, 0.009425980038940907, -0.012142879888415337, 0.016842009499669075, -0.0016980626387521625, -0.03842473030090332, -0.012745865620672703, -0.00591203011572361, -0.012503284960985184, 0.021139146760106087, 0.009502219967544079, -0.016162782907485962, -0.013903320766985416, -0.013764703646302223, 0.015275632031261921, 0.02703038416802883, -0.02342633344233036, 0.012905275449156761, -0.03160475566983223, 0.02869379334151745, 0.01612119749188423, -0.008725962601602077, 0.014804333448410034, 0.0027515545953065157, -0.023107513785362244, 0.00447734072804451, -0.0003411286452319473, -0.029747284948825836, 0.0022456010337918997, 0.002675314899533987, -0.012135948985815048, -0.013730049133300781, -0.03335133567452431, -0.0022767900954931974, -0.015247909352183342, 0.02764029987156391, 0.019046025350689888, 0.019309397786855698, 0.00882299430668354, -0.015220185741782188, -0.02346791885793209, 0.019808420911431313, -0.009827970527112484, 0.022580767050385475, -0.0023668913636356592, 0.031743373721838, 0.01717469096183777, 0.03182654455304146, -0.0032627061009407043, -0.03224239498376846, -0.04699128493666649, 0.012939929962158203, 0.03046809509396553, 0.03337905928492546, -0.0006779254763387144, -0.009959656745195389, -0.0044877370819449425, 0.01431917306035757, 0.006158075761049986, -0.049708183854818344, 0.02637888304889202, 0.01306468527764082, -0.00412040064111352, -0.027806641533970833, 0.005655588116496801, -0.0019111867295578122, -0.009585389867424965, -0.016287539154291153, -0.01113097369670868, -0.021568860858678818, -0.022622352465987206, -0.028056152164936066, 0.01128345262259245, -0.014208278618752956, 0.024063972756266594, 0.010659674182534218, 0.015525143593549728, -0.005326371639966965, -0.0024396653752774, -0.014790471643209457, 0.010555711574852467, 0.00622738478705287, 0.01799253188073635, -0.019059887155890465, -0.008989335037767887, 0.01894899271428585, 0.00968935340642929, -0.006279366090893745, -0.026004616171121597, -0.015331079252064228, 0.04563283175230026, -0.009925002232193947, -0.006681356579065323, -0.012829036451876163, 0.002361693186685443, 0.024535272270441055, 0.026018477976322174, -0.010035896673798561, 0.0010673536453396082, -0.019503461197018623, -0.006591255310922861, 0.01982228085398674, 0.007540784310549498, 0.003642170922830701, -0.020362889394164085, 0.002677047625184059, -0.014513237401843071, -0.017285583540797234, 0.002735960064455867, -0.0027775452472269535, -0.03811977431178093, -0.013570639304816723, -0.009266570210456848, -0.018893545493483543, 0.00622738478705287, 0.00828238669782877, -0.0018418780528008938, -0.002313177101314068, 0.034072145819664, -0.019004439935088158, 0.01473502442240715, 0.02199857495725155, -0.013425090350210667, -0.029137367382645607, -0.014887504279613495, -0.008233871310949326, -0.0014693440170958638, 0.02816704660654068, 0.00031253881752491, 0.0019319794373586774, -0.03268597275018692, 0.013979559764266014, 0.008705169893801212, 0.002692642156034708, 0.044191211462020874, 0.007325927261263132, 0.005506574641913176, 0.008136838674545288, -0.0017725693760439754, -0.018186597153544426, -0.0013315929099917412, -0.007928912527859211, 0.007284341845661402, 0.04943094775080681, -0.02069557085633278, 0.01899057812988758, -0.01943415403366089, -0.015982581302523613, 0.012433976866304874, -0.015192462131381035, -0.031881991773843765, 0.03324044123291969, 0.002249066485092044, 0.0012596852611750364, 0.01162999588996172, -0.04186243936419487, -0.0095645971596241, -0.009488358162343502, 0.0030253238510340452, -0.014457790181040764, -0.01864403486251831, 0.03060671128332615, 0.021984713152050972, -0.03742668405175209, 0.03734351694583893, -0.0061857993714511395, -0.029109643772244453, 0.041612930595874786, -0.020335165783762932, 0.0011548558250069618, -0.026586808264255524, -0.019420292228460312, 0.022844139486551285, -3.067450597882271e-05, -0.007513060700148344, -0.03451571986079216, -0.009876486845314503, -0.03304637596011162, -0.009883417747914791, -0.00541300792247057, 0.027723470702767372, 0.0229550339281559, -0.0002813499013427645, 0.0010240357369184494, 0.031493861228227615, -0.0055100396275520325, 0.01955890841782093, -0.0018418780528008938, -0.01431917306035757, -0.01808956451714039, -0.008164562284946442, 0.022456010803580284, -0.007416028529405594, -0.022677799686789513, -0.02291344851255417, -0.0023720895405858755, 0.00968935340642929, 0.019933175295591354, 0.02877696231007576, -0.01642615720629692, -0.011664650402963161, -0.0202935803681612, 0.0012475561816245317, 0.014152832329273224, 0.0011999064590781927, -0.0028433885890990496, -0.05062305927276611, 0.00321765523403883, 0.033018652349710464, 0.024590719491243362, -0.005028344690799713, 0.02637888304889202, 0.016051890328526497, 0.0012085700873285532, 0.011706235818564892, -0.015552867203950882, -0.009585389867424965, -0.011013149283826351, 0.006875420920550823, 0.01019530650228262, 0.02364812046289444, -0.01167158130556345, 0.02034902758896351, -0.005870445165783167, 0.015469696372747421, -0.006372932810336351, -0.003988714423030615, -0.03290776163339615, -0.008795270696282387, -0.0083239721134305, -0.014610269106924534, 0.028666069731116295, -0.007852673530578613, 0.01978069730103016, -0.006095698103308678, 0.0012934731785207987, 0.01128345262259245, -0.01113097369670868, -0.026656117290258408, 0.019156917929649353, 0.03324044123291969, -0.01925395056605339, 0.02303820475935936, -0.014138970524072647, -0.028416557237505913, 0.008885372430086136, -0.01677270047366619, -0.00447734072804451, -0.030800776556134224, 0.041668377816677094, -0.021485690027475357, 0.008746755309402943, 0.0031067614909261465, 0.0014936019433662295, 0.01299537718296051, -0.013127063401043415, -0.009904210455715656, 0.26304030418395996, -0.013868666253983974, 0.0014000353403389454, 0.023703567683696747, -0.014887504279613495, 0.006310555152595043, -0.005537763237953186, 0.006930867675691843, 0.007325927261263132, 0.01786777749657631, -0.005083791445940733, 0.005385284312069416, -0.011013149283826351, -0.003915940411388874, 0.02368970587849617, -0.03321271762251854, 0.0014009015867486596, -0.02159658446907997, 0.02739078924059868, 0.013237956911325455, 0.027099693194031715, 0.0016945971874520183, -0.016065752133727074, 0.0021624306682497263, 0.02556104026734829, 0.0139726297929883, -0.029497772455215454, 0.03182654455304146, 0.023010481148958206, 0.014291449449956417, -0.014166693203151226, 0.006830370053648949, 0.013591432012617588, 0.01255873218178749, 0.019350983202457428, -0.0027030385099351406, 0.030717605724930763, 0.008573483675718307, 0.027986843138933182, 0.02069557085633278, -0.0022456010337918997, -0.007741779088973999, 0.013910251669585705, -0.010375509038567543, 0.01318944152444601, -3.221770384698175e-05, -0.005253597628325224, -0.020889636129140854, -0.0034221159294247627, 0.014832057058811188, -0.033101823180913925, -0.023634258657693863, 0.023412471637129784, 0.004144658800214529, -0.00901705864816904, 0.005180823616683483, 0.00891309604048729, -0.02185995690524578, 0.014665716327726841, -0.011491378769278526, -0.015469696372747421, 0.032408736646175385, -0.004307534079998732, 0.0047337827272713184, -0.03321271762251854, -0.0017743021016940475, -0.00960618257522583, -0.00036863551940768957, -0.015525143593549728, -0.011352761648595333, -0.00247258716262877, -0.005118445958942175, -0.0025886790826916695, -0.001516127260401845, -0.015275632031261921, -0.040531713515520096, 0.03798115625977516, 0.01226070523262024, 0.011144835501909256, 0.026184817776083946, -0.004044161178171635, 0.00019828778749797493, 0.011297314427793026, -0.017812330275774002, -0.012205258011817932, -0.028804685920476913, 0.02195698954164982, -0.012697349302470684, 0.006345209199935198, -0.0101467901840806, -0.015746930614113808, -0.024549134075641632, -0.013397367671132088, -0.007991290651261806, 0.014693439938127995, 0.00269437488168478, 0.00984183233231306, 0.014998397789895535, -0.040614884346723557, -0.011061664670705795, 0.0055100396275520325, 0.031743373721838, 0.02112528495490551, 0.019226226955652237, 0.019752973690629005, 0.00023088452871888876, -0.009668560698628426, 0.010666605085134506, 0.005742223933339119, -0.008836856111884117, 0.003333747386932373, -0.03775936737656593, -0.003753064898774028, -0.005707569420337677, -0.0058877719566226006, 0.009793316014111042, 0.010326992720365524, -0.013639947399497032, -0.024174867197871208, -0.005731827579438686, 0.01829749159514904, -0.04003269225358963, -0.006653632968664169, 0.014138970524072647, -0.014187485910952091, -0.03928415849804878, -0.02069557085633278, 0.017493510618805885, -0.0038223734591156244, -0.03177109733223915, 0.0066952183842659, -0.04585462063550949, 0.037925709038972855, 0.021153008565306664, -0.012787451036274433, 0.01652318798005581, -0.007436821237206459, -0.02586599811911583, 0.017756883054971695, -0.014845918864011765, -0.0010197039227932692, 0.01955890841782093, 0.015802377834916115, -0.012475562281906605, -0.00018312652537133545, -0.025464007630944252, -0.019614355638623238, 0.011934954673051834, 0.0005224141641519964, -0.020501507446169853, -0.03490385040640831, -0.022372841835021973, 0.02916509099304676, -0.019448013976216316, 0.0005254464340396225, -0.008247732184827328, 0.010943840257823467, -0.04302682727575302, -0.0008663584594614804, 0.021970851346850395, -0.029442325234413147, -0.017673712223768234, 0.01890740729868412, -0.048626966774463654, -0.003974852617830038, -0.008053667843341827, -0.17643216252326965, 0.023495642468333244, 0.03936732932925224, -0.009204192087054253, 0.024479825049638748, 0.0008906165021471679, -0.00519468542188406, -0.013750841841101646, -0.0025609557051211596, -0.015441973693668842, 0.030967116355895996, -0.011221074499189854, -0.01699448749423027, -0.0066397711634635925, -0.008192285895347595, 0.002460458083078265, -0.01171316672116518, 0.019004439935088158, 0.049181438982486725, 0.01786777749657631, 0.0313829705119133, -0.007797226309776306, -0.00916953757405281, 0.02751554548740387, 0.0023668913636356592, 0.004037230275571346, -0.002458725357428193, 0.000673593720421195, 0.03282459080219269, -0.02747396007180214, 0.012142879888415337, -0.022095605731010437, 0.010361647233366966, -0.0025470938999205828, -0.015275632031261921, -0.0003705848357640207, -0.016440019011497498, -0.00410653930157423, -0.027058107778429985, -0.003170871874317527, -0.011047802865505219, 0.01591327227652073, -0.02790367417037487, -0.0002274190919706598, 0.01314785610884428, 0.012537939473986626, 0.017923224717378616, -0.041834719479084015, 0.0007138793589547276, -0.0013523856177926064, 0.010444818064570427, -0.009543804451823235, 0.01127652171999216, -0.007131862919777632, 0.03970000892877579, 0.006175403017550707, -0.029054198414087296, 0.025658072903752327, -0.007963567040860653, -0.018463831394910812, 0.004948639776557684, -0.027099693194031715, 0.018879683688282967, 0.004896658007055521, 0.0095645971596241, -0.022414425387978554, 0.00046566769015043974, 0.03285231441259384, -0.030578987672924995, -0.012184465304017067, 0.009876486845314503, -0.023273853585124016, 0.018200458958745003, -0.0018540071323513985, 0.010784430429339409, 0.011380485258996487, 0.014610269106924534, 0.004834280349314213, 0.028610622510313988, -0.015414250083267689, -0.013314196839928627, 0.029885901138186455, 0.006653632968664169, -0.017271721735596657, 0.03385035693645477, -0.006646702066063881, -0.005132307764142752, -0.014859780669212341, -0.013175579719245434, 0.0004444418882485479, 0.027889812365174294, -0.03285231441259384, -0.009093298576772213, -0.007720986846834421, 0.008829925209283829, 0.004702593665570021, -0.006736803334206343, -0.021624308079481125, -0.007499198894947767, -0.002893637167289853, -0.013293404132127762, -0.010950771160423756, -0.019448013976216316, 0.018962854519486427, 0.026794735342264175, 0.006962056737393141, -0.0011037406511604786, 0.031105734407901764, 0.03886830806732178, 0.0033735998440533876, -0.01438848115503788, -0.024271897971630096, 0.011442862451076508, 0.006958591286092997, 0.005135773215442896, 0.00548578193411231, -0.013806288130581379, -0.0079358434304595, 0.022289671003818512, 0.007305134553462267, 0.0006493356777355075, -0.011137904599308968, 0.010832945816218853, 0.017853915691375732, -0.02100052870810032, -0.015802377834916115, -0.0447734072804451, -0.04158520698547363, 0.003489691996946931, 0.015012259595096111, -0.011997331865131855, 0.014208278618752956, -0.015386526472866535, 0.027238309383392334, 0.0006294094491750002, 0.03726034611463547, -0.04177927225828171, -0.03728806972503662, -0.003801580984145403, 0.027446236461400986, 0.011318107135593891, 0.025020431727170944, -0.0058877719566226006, 0.005794205237179995, 0.013175579719245434, 0.028153184801340103, 0.013085477985441685, -0.018879683688282967, -0.00891309604048729, 0.004643681459128857, -0.003430779557675123, -0.009682422503829002, -0.02138865739107132, 0.00682343915104866, -0.0014225606573745608, 0.025810550898313522, 0.01782619208097458, -0.014707301743328571, 0.010410163551568985, -0.0227748304605484, 0.028180908411741257, -0.010763637721538544, -0.013009238988161087, -0.027182864025235176, 0.008178424090147018, -0.020141102373600006, -0.01768757402896881, 0.01186564564704895, -0.003711479716002941, -0.011727028526365757, -0.03590189665555954, -0.015566729009151459, -0.0051531000062823296, 0.022927310317754745, -0.02065398544073105, 0.01569148525595665, -0.007741779088973999, -0.01939256861805916, -0.018574725836515427, -0.019960898905992508, 0.013244887813925743, 0.01838066056370735, -0.0043006036430597305, -0.008753686212003231, -0.031577032059431076, 0.008732893504202366, -0.013182510621845722, 4.4075986807001755e-05, -0.010333923622965813, 0.0413079708814621, 0.029497772455215454, 0.02825021743774414, -0.0212500412017107, 0.001845343504101038, 0.023093651980161667, 0.0030617108568549156, -0.012628041207790375, 0.047185346484184265, -0.011893369257450104, 0.051537930965423584, -0.019933175295591354, -0.021319348365068436, -0.02325999177992344, -0.015871686860919, 0.03154930844902992, -0.023800600320100784, -0.0039817835204303265, -0.014374619349837303, 0.02260849066078663, -0.027612576261162758, 0.03312954679131508, 0.010250753723084927, 0.0007273079245351255, -0.003850097069516778, 0.03698311001062393, -0.031881991773843765, 0.0208619125187397, 0.0187410656362772, -0.000548404932487756, -0.03839700669050217, 0.00989034865051508, -0.0035087517462670803, 0.006955125834792852, 0.011595341376960278, -0.0007779899169690907, 0.010119066573679447, -0.04516153410077095, -0.006497688591480255, -0.07901189476251602, 0.017146967351436615, 0.004948639776557684, 0.014499375596642494, 0.01630140095949173, -0.005558555945754051, 0.031798820942640305, 0.010701259598135948, -0.014263725839555264, -0.0008693907293491066, -0.024798644706606865, 0.014970674179494381, -0.01458254549652338, -0.013792427256703377, -0.023190682753920555, -0.03595734015107155, 0.001097676227800548, 0.008497243747115135, 0.005080325994640589, 0.007166517432779074, 0.0027169000823050737, -0.0020705966744571924, 0.03335133567452431, -0.006975918542593718, -0.015857825055718422, 0.03972773253917694, -0.012309221550822258, 0.0066570984199643135, -0.024368930608034134, -0.007464544381946325, -0.0007545982371084392, -0.02059853821992874, -0.017160829156637192, 0.04945867136120796, -0.019545046612620354, -0.01717469096183777, -0.018616311252117157, -0.0025765500031411648, 0.023980801925063133, -0.0024500617291778326, -0.02825021743774414, -0.014970674179494381, -0.005104584153741598, -0.010132928378880024, 0.013369644060730934, 0.012226050719618797, -0.01127652171999216, 0.022067882120609283, 0.014159763231873512, -0.017701435834169388, 0.014859780669212341, 0.004917450714856386, 0.008136838674545288, -0.035707831382751465, -0.004913985263556242, -0.04360901936888695, 0.025976892560720444, 0.02804229035973549, 0.001768237678334117, 0.0002962946018669754, 0.04319316893815994, 0.014346896670758724, 0.03263052552938461, -0.01603802852332592, 0.006816508248448372, -0.005880841054022312, -0.021333210170269012, -0.002456992631778121, -0.008635860867798328, -0.00934281013906002, -0.026087787002325058, -0.020238133147358894, -0.02538083679974079, 0.008178424090147018, 0.011047802865505219, -0.0076378160156309605, 0.0013263948494568467, 0.011948815546929836, -0.004460013471543789, 0.014263725839555264, 0.02194312773644924, -0.015483558177947998, -0.017438063398003578, 0.024618443101644516, 0.0271690022200346, -0.007582369260489941, -0.042971380054950714, 0.00024193059653043747, -0.032575078308582306, 0.018311353400349617, -0.011248798109591007, 0.0044184280559420586, 0.016703391447663307, 0.0313829705119133, 0.009751730598509312, 0.028153184801340103, -0.004602096043527126, 0.004806556738913059, 0.012246843427419662, 0.003617912996560335, -0.015428111888468266, 0.006417983677238226, -0.021291624754667282, -0.01878265105187893, -0.008254663087427616, 0.024715473875403404, -0.014263725839555264, -0.045660555362701416, 0.010340854525566101, 0.028721515089273453, -0.014104316011071205, 0.026365021243691444, 0.007831880822777748, 0.01695290207862854, -0.017798468470573425, 0.007242756895720959, -0.017853915691375732, -0.02273324690759182, -0.024743197485804558, 0.031244352459907532, 0.002219610381871462, 0.006781854201108217, 0.024438239634037018, 0.005634795408695936, 0.03335133567452431, -0.020030207931995392, 0.02499270997941494, -0.033933527767658234, -0.0003705848357640207, 0.006625909358263016, -0.00482388399541378, -0.009058644063770771, -0.030107690021395683, -0.008483381941914558, -0.026406606659293175, 0.015344941057264805, 0.018879683688282967, 0.009966587647795677, 0.016647944226861, 0.09852921217679977, -0.00021604813809972256, -0.0245075486600399, 0.006861559115350246, -0.03238101303577423, 0.006989779882133007, 0.0037045488134026527, 0.005399146117269993, -0.005783809348940849, -0.05175971984863281, 0.014748886227607727, -0.0097586615011096, -0.019752973690629005, -0.021887680515646935, 0.01412510871887207, -0.020154964178800583, -0.017022211104631424, 0.02547786943614483, -0.026184817776083946, 0.005021413788199425, 0.046880390495061874, -0.01903216354548931, 0.008046737872064114, 0.035791002213954926, -0.012510215863585472, -0.0049417088739573956, -0.014873642474412918, -0.02194312773644924, -0.012080502696335316, -0.0009244044777005911, 0.01699448749423027, 0.014118177816271782, -0.0062620388343930244, -0.031577032059431076, -0.0005176491686142981, 0.001265749684534967, 0.004331792239099741, 0.011415138840675354, 0.05065078288316727, 0.012142879888415337, 0.015788516029715538, 0.027917535975575447, -0.010139859281480312, -0.010916116647422314, -0.007790295407176018, 0.0018990577664226294, 0.0018176200101152062, 0.0007927179685793817, -0.023093651980161667], "f1b73661-889e-4a8e-b150-42821788ceb9": [-0.025166695937514305, -0.022645847871899605, 0.012402292340993881, -0.020654238760471344, -0.012771367095410824, 0.014902248978614807, -0.0027262759394943714, -0.017632007598876953, -0.008544420823454857, -0.015180795453488827, 0.003906617872416973, 0.008015181869268417, 0.006531920284032822, 0.0034278654493391514, -0.01683814823627472, -0.012527638114988804, 0.013690571300685406, -0.014957958832383156, 0.017590224742889404, -0.0068209124729037285, 0.014567992649972439, 0.02845354750752449, -0.003083163872361183, -0.03696314990520477, -0.010529065504670143, 0.01674065738916397, 0.008335510268807411, -0.0024686201941221952, 0.022631920874118805, 0.001139430096372962, 0.014985812827944756, 0.016657093539834023, -0.014303374104201794, 0.006218555383384228, -0.01276440266519785, 0.017645934596657753, 0.002715830458328128, -0.013022058643400669, -0.017966262996196747, 0.005424697417765856, 0.003628070931881666, -0.015626471489667892, -0.004261764697730541, 0.01571003533899784, 0.003387824399396777, 0.012444074265658855, -0.0005383785464800894, -0.006458801683038473, -0.019553979858756065, 0.017938409000635147, -0.018941177055239677, 0.04392681643366814, -0.0509740486741066, -0.0356818325817585, 0.023620761930942535, -0.013565224595367908, -0.0024372837506234646, 0.010717084631323814, -0.018077680841088295, -0.04392681643366814, 0.036406055092811584, 0.006538884248584509, -0.01292456779628992, -0.007092495448887348, 0.0005649275262840092, -0.025069205090403557, 0.0030048226471990347, -0.020584601908922195, -0.009275605902075768, -0.0008291117264889181, 0.014637629501521587, 0.03267353028059006, 0.012158564291894436, -0.0029700042214244604, 0.048049308359622955, -0.00420257356017828, -0.014567992649972439, 0.026253027841448784, 0.012632093392312527, 0.0021952963434159756, 0.0027663169894367456, -0.01245800219476223, 0.01685207523405552, -0.006563256960362196, 0.018565138801932335, 0.013676643371582031, -0.002205741824582219, 0.027074741199612617, 0.013418988324701786, -0.009449697099626064, 0.007834126241505146, -0.0013936039758846164, 0.01926150545477867, 0.013955190777778625, -9.520639287075028e-05, -0.015069377608597279, -0.005045177415013313, 0.024136072024703026, -0.0011289846152067184, -0.011030449531972408, -0.008746366947889328, 0.02793823555111885, -0.02031998336315155, 0.007653071079403162, -0.03857871890068054, -0.004223464522510767, 0.01831444725394249, -0.006497101858258247, 0.00323636457324028, -0.005908672232180834, -0.007764489855617285, 0.029720934107899666, -0.013530406169593334, -0.012102854438126087, -0.0041433824226260185, -0.012026254087686539, 0.03239498287439346, -0.026768339797854424, -0.0305844284594059, -0.0016033845022320747, 0.028258563950657845, 0.024191781878471375, 0.01838408224284649, -0.010173918679356575, 0.03311920538544655, -0.01672673039138317, -0.006803503260016441, 0.0006959315505810082, -0.008753330446779728, -0.03518044948577881, 0.04440034553408623, 0.008822967298328876, 0.033759862184524536, 0.005619680043309927, -0.005640571005642414, 0.035932525992393494, -0.031837888062000275, 0.00661200238391757, -0.010640484280884266, -0.019957872107625008, 0.05375951528549194, 0.024790657684206963, 0.003589770756661892, -0.004954649601131678, -0.009108477272093296, 0.010271410457789898, 0.018063753843307495, 0.02243693731725216, 0.016657093539834023, -0.010306227952241898, 0.017562370747327805, -0.01884368434548378, 0.012701730243861675, 0.03866228461265564, 0.03192145377397537, 0.007102941162884235, -0.014707266353070736, 0.016044290736317635, 0.005522188730537891, -0.039386503398418427, 0.014721193350851536, 0.025069205090403557, -0.0006141084595583379, -0.002172664273530245, 0.0051148138009011745, 0.018690483644604683, -0.023996800184249878, -0.007047231774777174, -0.011545761488378048, 0.013593079522252083, 0.008641911670565605, 0.0036036979872733355, -0.011768599040806293, -0.009700389578938484, -0.020194636657834053, 0.012652984820306301, -0.003523615887388587, 0.0005335910245776176, -0.029358822852373123, 0.019693251699209213, -0.002125659491866827, 0.0015067636268213391, 0.02738114260137081, 0.024094291031360626, -0.021991262212395668, -0.0357932522892952, 0.028634602203965187, -0.007827162742614746, -0.0017844398971647024, -0.011900908313691616, 0.008906531147658825, 0.02696332149207592, 0.01140648778527975, 0.010334082879126072, -0.5691266655921936, -0.032840657979249954, -0.019066521897912025, -0.02291046641767025, 0.012548529542982578, 0.027325432747602463, 0.0023711288813501596, 0.02955380640923977, -0.02136453241109848, 0.016559602692723274, -0.015891090035438538, 0.021503806114196777, 0.012652984820306301, -0.01934506930410862, -0.006925367750227451, -0.03935864940285683, -0.00433836504817009, -0.007848053239285946, 0.009199005551636219, 0.027158305048942566, -0.02600233629345894, 0.015891090035438538, -0.011302032507956028, 0.02949809655547142, 0.0008256298606283963, 0.014776903204619884, -0.02031998336315155, -0.01142041478306055, 0.027896452695131302, 0.02186591736972332, -0.016684947535395622, -0.0028812175150960684, 0.012409255839884281, -0.0027471669018268585, 0.056210726499557495, -0.028300346806645393, -0.016573529690504074, 0.018481574952602386, 0.02543131448328495, 0.049135640263557434, -0.00267056655138731, -0.004049372859299183, 0.03827231749892235, -0.014171063899993896, 0.016030363738536835, -0.0279939454048872, 0.009582007303833961, -0.028314273804426193, 0.007001968100667, -0.015333996154367924, 0.003384342649951577, -0.018063753843307495, -0.0021639596670866013, -0.002886440372094512, -0.004188646096736193, -0.008795112371444702, 0.036907438188791275, -0.01838408224284649, 0.007792344316840172, -0.024219635874032974, -0.018690483644604683, 0.013600043021142483, -0.04225553572177887, -0.01779913529753685, 0.0036036979872733355, 0.030723702162504196, -0.02343970537185669, 0.00022457828163169324, 0.009108477272093296, 0.0023676471319049597, 0.0066398573108017445, -5.290755507303402e-05, 0.0004639543767552823, -0.0021308823488652706, -0.007089013699442148, 0.05350882187485695, 0.02793823555111885, -0.026085900142788887, 0.010431574657559395, 0.01020177360624075, 0.000961856625508517, -0.012263018637895584, -0.03704671189188957, -0.01473512127995491, 0.007075086701661348, -0.004025000147521496, -0.025709861889481544, 0.020514965057373047, 0.007611289154738188, -0.012005363591015339, 0.02236730046570301, -0.0032885922119021416, -0.0013822880573570728, -0.036823876202106476, 0.0009061472956091166, 0.009568079374730587, -0.02239515632390976, 0.0072770328260958195, 0.016587456688284874, -0.02593269944190979, -0.043982524424791336, 0.010229627601802349, -0.035319723188877106, -0.0038578719832003117, 0.0046273572370409966, 0.01527828723192215, -0.033815570175647736, 0.0356539785861969, 0.026253027841448784, -0.02186591736972332, -0.015333996154367924, -0.006197664421051741, 0.0054177334532141685, -0.016044290736317635, -0.005825107917189598, -0.029275259003043175, 0.007374524138867855, 0.0014815203612670302, 0.000722045311704278, -0.004801448900252581, 0.027868598699569702, 0.011399524286389351, 0.02743685059249401, -0.005041695665568113, 0.0012604239163920283, 0.019651470705866814, 0.033397749066352844, -0.0011707666562870145, -0.005981790833175182, 0.0007398896850645542, -0.007339705713093281, -0.007597361691296101, -0.007325778715312481, -0.03153148666024208, 0.0003954057756345719, 0.00011359483323758468, -0.0006985429208725691, -0.009637716226279736, 0.011538797989487648, -0.028857439756393433, -0.028328200802206993, -0.0177712794393301, 0.01891332119703293, -0.008377292193472385, -0.03476262837648392, -0.0033425604924559593, -0.0013091695727780461, 0.002562629757449031, -0.005619680043309927, -0.012151600793004036, -0.02079351246356964, -0.014087500050663948, -0.0071168686263263226, 0.031252942979335785, -0.0178966261446476, 0.006072318181395531, -0.006229001097381115, -0.019484343007206917, -0.004038927145302296, -0.0006532790721394122, 0.010542993433773518, 0.0067930580116808414, -0.026782266795635223, -0.006256855558604002, -0.013432915322482586, -0.02690761163830757, 0.011044377461075783, 0.0050625866279006, -0.008050000295042992, -0.020988494157791138, -0.02845354750752449, 0.002035131910815835, -0.021002423018217087, -0.02242301031947136, 0.000657631375361234, 0.013627897948026657, -0.015960726886987686, 0.016462109982967377, -0.01445657480508089, 0.004508974961936474, 0.0126808388158679, 0.01736738719046116, -0.011399524286389351, 0.006302119232714176, -0.005985272582620382, 0.008586202748119831, 0.028857439756393433, 0.011998400092124939, -0.00686965836212039, -0.002754130633547902, -0.03370415046811104, 0.013704498298466206, -0.01021570060402155, 0.017687715590000153, 0.019748961552977562, 0.01275047566741705, -0.0005492593045346439, 0.009588970802724361, -0.020041435956954956, 0.026754410937428474, 0.05754775181412697, 0.03713027760386467, -0.008370328694581985, -0.02083529345691204, 0.023021886125206947, -0.03765951469540596, 0.021698789671063423, -0.013655752874910831, 0.012513711117208004, -0.006824394688010216, -0.018147317692637444, -0.019540050998330116, -0.015417560935020447, 0.002291046781465411, 0.04019429162144661, 0.005247123539447784, 0.029665224254131317, -0.00196375441737473, 0.001486743101850152, 0.0027419442776590586, 0.0009705612319521606, 0.008084818720817566, -0.010619593784213066, -0.004167755134403706, -0.00407026382163167, -0.005988754332065582, 0.02331436052918434, -0.004648248199373484, -0.009073658846318722, -0.02587698958814144, -0.033258479088544846, -0.014623702503740788, -0.021517733111977577, 0.014038754627108574, -0.0019741998985409737, 0.0023711288813501596, 0.036907438188791275, 0.0008016922511160374, 0.0034487564116716385, -0.008732439018785954, 0.0004088978748768568, 0.010863321833312511, -0.008251946419477463, -0.019679324701428413, 0.013774135150015354, -0.00043414116953499615, 0.06467854976654053, 0.006775648798793554, 0.018732266500592232, -0.002952595241367817, -0.027269722893834114, 0.005170523189008236, -0.027798961848020554, 0.039915744215250015, 0.011455233208835125, 0.026810120791196823, 0.0005113943479955196, 0.02433105558156967, 0.01738131418824196, 0.0305565744638443, 0.026587283238768578, 0.016155708581209183, -0.021072058007121086, -0.005104368552565575, 0.02498563937842846, -0.011385597288608551, -0.0014789089327678084, -0.023662542924284935, -0.013356314972043037, 0.004832785576581955, -0.0062081096693873405, 0.005128741264343262, -0.008258909918367863, 0.00040432796231471, -0.004958131350576878, -0.01618356443941593, 0.016127854585647583, 0.008446929045021534, 0.023272577673196793, 0.007001968100667, -0.013314533047378063, -0.03100224956870079, 0.010870285332202911, 0.01988823525607586, -0.020222490653395653, -0.003389565274119377, 0.004508974961936474, -0.002083877567201853, -0.001114186830818653, 0.03512474149465561, -2.3760796466376632e-05, -0.0004535088664852083, -0.0016939121996983886, 0.006772167049348354, -0.016002507880330086, 0.027102595195174217, -0.006392647046595812, -0.0027436851523816586, -0.021197404712438583, -0.0030518274288624525, 0.026308737695217133, -0.004874567501246929, -0.000896572251804173, 0.006354346871376038, 0.03008304536342621, -0.01093992218375206, 0.010320155881345272, -0.016406401991844177, -0.004157309886068106, -0.006061872933059931, -0.024108218029141426, -0.02600233629345894, -0.014874394051730633, 0.02484636753797531, 0.008328546769917011, 0.014554065652191639, -0.0029612998478114605, -0.02082136645913124, 0.04272906482219696, -0.006674675736576319, -0.030862975865602493, -0.020166782662272453, -0.03108581341803074, -0.01928935945034027, -0.024721020832657814, 0.032227855175733566, 0.010584775358438492, 0.001709580421447754, -0.022715484723448753, -0.0035584343131631613, 0.012778330594301224, -0.02132275141775608, 0.02437283657491207, -0.012367473915219307, -0.007785380817949772, -0.026225173845887184, 0.04980415105819702, -0.011636288836598396, -0.0004965965636074543, 0.0027732807211577892, 0.0050660683773458, -0.02999948151409626, 0.014776903204619884, -0.007026340812444687, -0.021991262212395668, -0.0021274005994200706, 0.031336504966020584, 0.02647586539387703, -0.00660155713558197, -0.001118539134040475, -0.029303114861249924, 0.022200172767043114, 0.008655838668346405, -0.01499974075704813, -0.003453979268670082, 0.003457461018115282, -0.01142041478306055, 0.03629463538527489, -0.02182413451373577, 0.012527638114988804, 0.01784091629087925, 0.0012769625755026937, -0.005079995840787888, 0.010348010808229446, 0.017214186489582062, 0.011385597288608551, 0.01245800219476223, 0.00786198116838932, -0.00842603761702776, 0.0022614512126892805, -0.013384169898927212, -0.002318901475518942, -0.010703157633543015, -0.005274978466331959, 0.008913494646549225, -0.018216954544186592, -0.003387824399396777, -0.0063056014478206635, 0.0039658090099692345, 0.02190769836306572, -0.03782664239406586, 0.004749221261590719, 0.036851730197668076, -0.025598442181944847, 0.0018209990812465549, -0.011378632858395576, 0.010069463402032852, -0.010563883930444717, -0.005981790833175182, -0.02646193839609623, -0.034929756075143814, -0.015515051782131195, -0.022938322275877, 0.0007964695105329156, 0.008460856042802334, 0.006455319933593273, -0.02600233629345894, -0.014414791949093342, 0.0033425604924559593, 0.013843772001564503, -0.00039279437623918056, 0.00012523721670731902, -0.0038369810208678246, 0.03197716176509857, -0.006082763895392418, -0.02587698958814144, -0.02703295834362507, -0.0009374837973155081, 0.015208650380373001, 0.024122145026922226, 0.035291869193315506, -0.017437024042010307, -0.009157223626971245, 0.023035813122987747, 0.011796453036367893, 0.013272751122713089, 0.00560575257986784, 0.012116782367229462, -0.01935899630188942, -0.0203896202147007, -0.0036245891824364662, 0.03880155831575394, -0.014261591248214245, 0.0034243836998939514, -0.006232482846826315, -0.019136158749461174, 0.004132936708629131, -0.008238019421696663, -0.0028098400216549635, 0.014345156028866768, 0.015208650380373001, 0.01067530270665884, -0.011984472163021564, 0.005247123539447784, 0.006563256960362196, -0.02899671345949173, 0.025138840079307556, -0.015194723382592201, -0.00786894466727972, -0.00013143922842573375, 0.0019167495192959905, 0.007186505012214184, -0.021169550716876984, 0.0025487025268375874, -0.009547188878059387, -0.02648979239165783, 0.028230709955096245, 0.01274351216852665, -0.014136245474219322, 0.019164014607667923, -0.03317491337656975, -0.01628105528652668, -0.009470588527619839, -0.001465852023102343, 0.005651016253978014, 0.02651764638721943, 0.009059731848537922, -0.0008782926015555859, -0.02492993138730526, -0.012075000442564487, 0.003126686904579401, 0.034344810992479324, -0.0022214099299162626, -0.0101530272513628, 0.004282655660063028, 0.004540311638265848, 0.03144792467355728, -0.019024740904569626, 0.0011742485221475363, -0.01987430825829506, -0.009484515525400639, 0.004898940213024616, -0.00196723616681993, 0.022743338719010353, 0.024317128583788872, -0.005247123539447784, -0.01346773374825716, -0.017952335998415947, -0.013781098648905754, -0.015361851081252098, -0.03601609170436859, -0.007263105362653732, 0.018551211804151535, 0.02089100331068039, -0.008607093244791031, 0.03827231749892235, 0.016420328989624977, 0.021573442965745926, -0.0023972427006810904, 0.02194948121905327, -0.028662456199526787, 0.013300605118274689, -0.02435890957713127, 0.01192876324057579, -0.01825873740017414, 0.01247889269143343, 0.007687889505177736, -0.025709861889481544, 0.0228269025683403, 0.034289099276065826, -0.00223533739335835, 0.010835466906428337, 0.012451037764549255, -0.050584081560373306, -0.016963494941592216, -0.002583520719781518, 0.011434342712163925, -0.006911440286785364, -0.021615225821733475, -0.009540225379168987, -0.00660852063447237, 0.0018349264282733202, 0.008342473767697811, 0.002475583925843239, -0.010779757983982563, -0.005302832927554846, 0.0018088127253577113, -0.0022649329621344805, 0.02238122746348381, -0.005912153981626034, -0.002191814361140132, -0.0177155714482069, 0.022200172767043114, 0.011587543413043022, -0.014623702503740788, 0.017980189993977547, 0.029609516263008118, -0.02196340821683407, -0.0026548984460532665, 0.0008330287528224289, -0.03111366741359234, -0.01272958517074585, 0.0038578719832003117, -0.0006724291597492993, 0.008976167999207973, -0.018425865098834038, -0.02497171238064766, -0.021462025120854378, 0.009749135002493858, 0.011086159385740757, 0.014143208973109722, 0.003459201892837882, 0.003722080495208502, -0.012847967445850372, -0.007666998077183962, -0.005797253455966711, 0.02345363236963749, -0.00037255624192766845, 0.016517819836735725, 0.027269722893834114, 0.010598702356219292, 0.0037255622446537018, -0.03239498287439346, -0.02857889235019684, 0.007290960289537907, 0.023746106773614883, 0.02495778538286686, -0.016044290736317635, 0.00786894466727972, 0.003387824399396777, 0.02033391036093235, -0.017910553142428398, -0.04272906482219696, 0.03465121239423752, 0.01979074440896511, 0.0022231510374695063, -0.024748874828219414, 0.01555683370679617, -0.014066608622670174, -0.008244982920587063, 0.0008417333592660725, -0.014916176907718182, -0.0254730973392725, -0.019470416009426117, -0.02944238670170307, 0.03144792467355728, -0.01722811348736286, 0.031169377267360687, 0.021615225821733475, 0.0028603265527635813, -0.009185077622532845, -0.009094550274312496, -0.0026984212454408407, 0.004864121787250042, 0.004926795139908791, 0.010626557283103466, 8.008217992028221e-05, -0.015445414930582047, 0.03629463538527489, 0.0037917171139270067, -0.009700389578938484, -0.016949567943811417, -0.016462109982967377, 0.04409394413232803, -0.0254591703414917, -0.015320069156587124, -0.007527724839746952, 0.0017600670689716935, 0.014317301101982594, 0.01825873740017414, -0.013398096896708012, -0.0014736861921846867, -0.03267353028059006, -0.0011315960437059402, 0.021099913865327835, -0.0037534169387072325, 0.014679411426186562, -0.027367213740944862, -0.0007716614636592567, -0.02286868542432785, -0.041865572333335876, -0.004547275137156248, -0.023202940821647644, -0.01625320129096508, -0.006615484599024057, -0.01874619349837303, -0.022214099764823914, 0.037380967289209366, 0.0011524870060384274, -0.01731167733669281, -0.011232396587729454, 0.025055276229977608, -0.024693166837096214, 0.022019118070602417, 0.0008787278202362359, 0.002992636291310191, -0.03467906638979912, 0.0013944745296612382, -0.011260250583291054, -0.0013204854913055897, 0.03729740530252457, 0.0013300605351105332, 0.00547344284132123, -0.03247854858636856, 0.020514965057373047, 0.016016436740756035, -0.000589300412684679, 0.015445414930582047, 0.022130535915493965, 0.01247192919254303, 0.002172664273530245, -0.0033338558860123158, -0.01427551917731762, 0.0009479292784817517, -0.0140178631991148, -0.006904476787894964, 0.03782664239406586, 0.0005631866515614092, 0.029776643961668015, -0.026642993092536926, -0.03314705938100815, 0.020459255203604698, -0.019651470705866814, -0.029832353815436363, 0.03105795942246914, 0.006006163544952869, -0.002170923398807645, 0.007242214400321245, -0.02747863344848156, -0.010828503407537937, -0.022548357024788857, 0.0021813688799738884, -0.014776903204619884, -0.01828659139573574, 0.040472839027643204, 0.03693529590964317, -0.0254870243370533, 0.0355147048830986, -0.0029491132590919733, -0.03353702276945114, 0.037353113293647766, -0.02288261242210865, -0.020222490653395653, -0.027798961848020554, -0.01681029424071312, 0.009178114123642445, 0.012311764992773533, -0.017966262996196747, -0.03250640258193016, -0.011608433909714222, -0.036350347101688385, -0.004735294263809919, -0.018216954544186592, 0.0357653982937336, 0.011573615483939648, 0.015139013528823853, -0.002277119318023324, 0.04320259392261505, -0.0035514705814421177, 0.02178235352039337, -0.007534688804298639, -0.021517733111977577, -0.01192179974168539, -0.007297923788428307, 0.005689316429197788, -0.0033443013671785593, -0.0305287204682827, -0.002343274187296629, 0.0003536237636581063, 0.024776730686426163, 0.023021886125206947, 0.022548357024788857, -0.025598442181944847, -0.028314273804426193, -0.019595760852098465, -0.008258909918367863, -0.0029804499354213476, -0.0001104938201024197, 0.005797253455966711, -0.029860207810997963, 0.007924653589725494, 0.024010727182030678, 0.005786807741969824, -0.011030449531972408, 0.012806185521185398, 0.015389706008136272, 0.009094550274312496, 0.0047840396873652935, 0.0006737348739989102, -0.009832698851823807, -0.008836894296109676, 0.022492647171020508, 0.009616825729608536, 0.031754326075315475, -0.009923226200044155, 0.033314187079668045, 0.014108390547335148, 0.017548443749547005, -0.010891176760196686, 0.005811180919408798, -0.045542389154434204, 0.004763148725032806, 0.00041651437641121447, -0.02142024226486683, 0.03523615747690201, -0.00967253465205431, 0.010348010808229446, -0.0012586829252541065, 0.013843772001564503, 0.011364705860614777, -0.015417560935020447, -0.03935864940285683, 0.014971885830163956, 0.036851730197668076, -0.029693080112338066, 0.007632180117070675, -0.017520587891340256, -0.020737802609801292, 0.017938409000635147, -0.004025000147521496, -0.014080536551773548, -0.03403840959072113, 0.03270138427615166, -0.026099827140569687, 9.75185503193643e-06, -0.028147146105766296, -0.010285337455570698, 0.008746366947889328, -0.01583538018167019, -0.01584930717945099, 0.24578961730003357, -0.007973399944603443, -0.008015181869268417, 0.021712716668844223, -0.0035288387443870306, 0.015083304606378078, -0.003537543350830674, 0.00209954590536654, 0.00044567472650669515, 0.01637854613363743, 0.003962326794862747, -0.0023171603679656982, 0.0010576070053502917, 0.0012195123126730323, 0.01548719685524702, -0.03150363266468048, -0.016016436740756035, -0.020473184064030647, 0.006643339060246944, -0.004717885050922632, 0.0254730973392725, -0.01784091629087925, -0.017478806897997856, 0.0003027019265573472, 0.03523615747690201, 0.0006907088099978864, -0.02486029453575611, 0.03389913588762283, 0.01122543215751648, 0.017673788592219353, -0.009616825729608536, -0.008753330446779728, 0.024247491732239723, -0.004804930649697781, 0.004665657412260771, -0.00812660064548254, 0.02855103835463524, 0.018592992797493935, 0.035848960280418396, 0.024317128583788872, -0.013405060395598412, -0.018690483644604683, 0.016907785087823868, -0.011907871812582016, 0.013384169898927212, -0.0010872026905417442, -0.005689316429197788, 0.0066642300225794315, -0.012792257592082024, 0.009860553778707981, -0.03417768329381943, -0.036796022206544876, 0.015974653884768486, 0.012353546917438507, -0.004279173910617828, -0.002757612382993102, 0.01731167733669281, -0.01983252540230751, 0.014442646875977516, -0.0005009488668292761, -0.03612750768661499, 0.03935864940285683, 0.006845285650342703, -0.0020455773919820786, -0.028718166053295135, 0.005651016253978014, -0.009031876921653748, 0.0014728157548233867, -0.026615139096975327, -0.015139013528823853, -0.0011342073557898402, -0.0013300605351105332, -0.0035114295314997435, -0.018161246553063393, -0.026768339797854424, -0.04108564183115959, 0.04122491180896759, -0.00105238426476717, 0.02331436052918434, 0.03476262837648392, -0.0026340072508901358, -0.0023519787937402725, 0.004707439336925745, -0.018620848655700684, -0.015417560935020447, -0.039915744215250015, 0.014400864951312542, -0.020696021616458893, -0.0022196690551936626, -0.0034679064992815256, -0.024303201586008072, -0.010765830054879189, -0.0014049200108274817, -0.01420588232576847, -0.0034069744870066643, 0.014554065652191639, 0.009547188878059387, 0.035932525992393494, -0.02894100360572338, 0.013565224595367908, -0.012137672863900661, 0.03459550067782402, 0.004721366800367832, 0.011838234961032867, 0.023133303970098495, -0.010187845677137375, -0.01676851138472557, 0.008244982920587063, -0.0012386624002829194, -0.021211331710219383, -0.0031162414234131575, -0.045068856328725815, -0.006834839936345816, -0.016434255987405777, -0.007395415101200342, -0.0015929390210658312, 0.01827266439795494, -0.011796453036367893, -0.006800021510571241, -0.006591111421585083, 0.023787889629602432, -0.02590484358370304, -0.006086245644837618, 0.01991608925163746, -0.009254714474081993, -0.0406956747174263, -0.046099480241537094, 0.018175173550844193, -0.010027681477367878, -0.03665674850344658, 0.017924480140209198, -0.0407235287129879, 0.030890829861164093, 0.0018053308594971895, -0.010584775358438492, -0.0012090668315067887, -0.006894031073898077, 0.002052541123703122, 0.020528892055153847, 0.0037882353644818068, 0.007332742214202881, 0.0101321367546916, 0.014428719878196716, -0.005940008442848921, -0.024665310978889465, -0.015417560935020447, -0.01093992218375206, -0.0017557147657498717, 0.0029229996725916862, -0.022283736616373062, -0.03167076036334038, -0.035319723188877106, 0.012841003015637398, -0.00560575257986784, -0.000634564203210175, -0.011086159385740757, -0.005682352930307388, -0.05186539888381958, -0.002405947307124734, 0.006270783022046089, -0.027325432747602463, -0.027311505749821663, 0.014442646875977516, -0.02196340821683407, -0.007179541513323784, -0.0020751729607582092, -0.17704428732395172, 0.03353702276945114, 0.030667992308735847, -0.021239187568426132, 0.025292040780186653, -0.003868317464366555, 0.016601383686065674, -0.0011298550525680184, -0.0015659547643736005, -0.010348010808229446, 0.028105363249778748, -0.006497101858258247, -0.005187932401895523, -0.00968646164983511, -0.003539284225553274, 0.0024338020011782646, -0.035904671996831894, 0.03451193869113922, 0.04543096944689751, 0.013300605118274689, 0.04211626201868057, -0.019623616710305214, -0.006138473283499479, 0.026670847088098526, -0.001554638845846057, -0.00293344515375793, -0.011622361838817596, -0.013091695494949818, 0.02396894432604313, -0.01095384918153286, 0.019707180559635162, -0.01571003533899784, 0.0058773355558514595, -0.007639143615961075, -0.012590311467647552, 0.004178200848400593, -0.01066833920776844, -0.011100086383521557, -0.02997162565588951, -0.0021744053810834885, -0.0015816231025382876, 0.0031545415986329317, -0.027798961848020554, 0.007256141863763332, 0.010744939558207989, 0.005626643542200327, 0.015236505307257175, -0.04278477653861046, 0.0019724590238183737, -0.004251318983733654, 0.010334082879126072, -0.02603019028902054, 0.024275345727801323, -0.014317301101982594, 0.03272923827171326, 0.00812660064548254, -0.03362058848142624, 0.034289099276065826, 0.0017565852031111717, -0.015612543560564518, 0.0039031358901411295, -0.06038892641663551, 0.012666911818087101, 0.0014144950546324253, 0.007043750025331974, -0.018453719094395638, 0.00519837811589241, 0.02437283657491207, -0.0459044985473156, -0.0037116350140422583, 0.030389446765184402, -0.030250173062086105, -0.00210128678008914, -0.011852162890136242, 0.02891314961016178, 0.007555579766631126, 0.00546996109187603, -0.0018227400723844767, 0.015640398487448692, -0.01671280339360237, -0.02384359948337078, 0.031225087121129036, -0.010069463402032852, -0.0204314012080431, 0.031810034066438675, -0.01725596934556961, 0.0010401979088783264, -0.03350916877388954, -0.009442733600735664, 0.008565311320126057, 0.03250640258193016, -0.03852301090955734, -0.008328546769917011, -0.008655838668346405, 0.005020804703235626, 0.011260250583291054, -0.0003433958627283573, -0.019748961552977562, -0.009324351325631142, 0.00017920564278028905, -0.0008617538842372596, -0.026113754138350487, -0.016141781583428383, 0.015570761635899544, 0.012889749370515347, 0.008655838668346405, 0.007597361691296101, 0.025654152035713196, 0.04281263053417206, -0.0010236591333523393, -0.0074232700280845165, -0.017980189993977547, 0.02089100331068039, 0.01222123671323061, 0.0018175173318013549, 0.003213732736185193, -0.012813149020075798, -0.008634948171675205, 0.027757180854678154, -0.004279173910617828, -0.0021744053810834885, -0.0020438365172594786, 0.008272836916148663, 0.023746106773614883, -0.01623927429318428, -0.004307028371840715, -0.039999306201934814, -0.01981859840452671, -0.007099459413439035, 0.018955104053020477, -0.007106422912329435, 0.01828659139573574, -0.003473129356279969, 0.02083529345691204, -0.024233564734458923, 0.038328029215335846, -0.03264567628502846, -0.05810484290122986, -0.002014240948483348, 0.026058044284582138, 0.027771107852458954, 0.030194463208317757, -0.013077768497169018, 0.005219269078224897, 0.013042950071394444, 0.03905224800109863, -0.003478351980447769, -0.033314187079668045, 0.005804216954857111, -0.010452465154230595, 0.0008177957497537136, 0.007346669677644968, -0.02235337346792221, 0.0031179822981357574, 0.010006790980696678, 0.03211643546819687, 0.009832698851823807, -0.006834839936345816, 0.001463240711018443, -0.024665310978889465, 0.010118209756910801, -0.01979074440896511, -0.022019118070602417, -0.021587369963526726, 0.008384255692362785, -0.018035899847745895, -0.002190073486417532, 0.009707353077828884, 0.004491565749049187, -0.023537198081612587, -0.047659341245889664, -0.019498270004987717, 0.00027658819453790784, 0.033314187079668045, -0.004390592686831951, -0.0049337586387991905, -0.026545502245426178, 0.006712975911796093, -0.003694225801154971, -0.01784091629087925, 0.020723875612020493, 0.023216867819428444, -0.0019759407732635736, -0.007987326942384243, -0.03919152170419693, 0.017618078738451004, -0.014721193350851536, 4.9575328375794925e-06, -0.02487422153353691, 0.028773875907063484, 0.020487111061811447, 0.022757265716791153, -0.024052508175373077, -5.0296177505515516e-05, 0.019498270004987717, -0.002959558740258217, -0.001137689221650362, 0.0356261245906353, -0.003722080495208502, 0.043508995324373245, -0.017116695642471313, 0.012242128141224384, -0.02689368464052677, -0.01474904827773571, 0.03401055186986923, -0.0228129755705595, 0.0101530272513628, -0.0177016444504261, 0.015584688633680344, -0.012235164642333984, 0.02196340821683407, -0.009992863051593304, -0.004366219509392977, -0.010863321833312511, 0.022269809618592262, -0.02242301031947136, 0.0203896202147007, 0.014373010024428368, 0.014567992649972439, -0.02091885730624199, 0.011873053386807442, -0.014707266353070736, 0.01979074440896511, 0.0064831748604774475, -0.018662629649043083, 0.017060985788702965, -0.041002076119184494, -0.003299037693068385, -0.0864609032869339, 0.02139238826930523, 0.0075834342278540134, -0.0034713884815573692, 0.002512143226340413, -0.005790289957076311, 0.03189359977841377, -0.007078568451106548, -0.007520761340856552, -0.0204314012080431, -0.003572361543774605, 0.00939398817718029, -0.011573615483939648, -0.020487111061811447, -0.01373931672424078, -0.021657006815075874, -0.0029821908101439476, 0.005121777765452862, 0.03866228461265564, 0.019623616710305214, -0.0001299159339396283, 0.008300691843032837, 0.03309134766459465, 0.0007294442038983107, -0.03601609170436859, 0.03777093440294266, -0.01619749143719673, 0.0035514705814421177, -0.030222319066524506, 0.007444160990417004, 0.0016103482339531183, -0.025737715885043144, -0.007632180117070675, 0.05565363168716431, 0.012019290588796139, 0.0024599155876785517, -0.012722620740532875, 0.016963494941592216, 0.02392716333270073, -0.008453892543911934, -0.02444247342646122, -0.022645847871899605, -0.018216954544186592, -0.0039658090099692345, 0.006563256960362196, 0.0036211072001606226, -0.001419717795215547, 0.021587369963526726, 0.0023154194932430983, -0.005832071881741285, 0.006747794337570667, 0.005898226518183947, 0.008238019421696663, -0.02384359948337078, -0.014609775505959988, -0.06523563712835312, 0.01835622824728489, 0.01979074440896511, -0.003260737517848611, -0.026601210236549377, 0.03164290636777878, 0.02190769836306572, 0.04629446193575859, -0.007437197025865316, 0.007666998077183962, -0.007541652303189039, -0.028690312057733536, 0.006761721335351467, -0.005804216954857111, -0.004164273384958506, -0.0253616776317358, -0.01876012049615383, -0.03008304536342621, 0.01273654866963625, 0.02600233629345894, -0.0038160900585353374, -0.0015946798957884312, 0.005511743016541004, -0.004683066625148058, 0.013335423544049263, 0.027172232046723366, -0.011246323585510254, 0.00041890813736245036, 0.017687715590000153, 0.024177854880690575, -0.0204453282058239, -0.015946799889206886, 0.008788148872554302, -0.03771522641181946, 0.01938685029745102, -0.0025069203693419695, 0.016476038843393326, 0.016406401991844177, 0.030278027057647705, 0.01068226620554924, 0.0305287204682827, 0.006768685299903154, -0.013906444422900677, 0.021684860810637474, 0.004045891109853983, -0.018453719094395638, 0.008091782219707966, -0.007597361691296101, -0.012179454788565636, -0.017200259491801262, 0.020668165758252144, -0.009080623276531696, -0.052227508276700974, -0.008439965546131134, 0.02857889235019684, -0.011322923935949802, 0.026155536994338036, 0.00912240520119667, 0.014762976206839085, -0.01671280339360237, -0.0007781898602843285, -0.013774135150015354, 0.005657980218529701, -0.029609516263008118, 0.0457373708486557, 0.0021082505118101835, 0.0066328938119113445, 0.02947024255990982, -0.009491479024291039, 0.04782646894454956, -0.008467820473015308, 0.021253114566206932, -0.02339792437851429, -0.0026340072508901358, -0.0018488537753000855, 0.012854930944740772, 0.0022231510374695063, -0.012081963941454887, 0.004080709535628557, -0.03768736869096756, 0.012402292340993881, 0.013781098648905754, 0.0140108997002244, -0.01274351216852665, 0.06373149156570435, 1.9272494682809338e-05, -0.012068036012351513, 0.0178826991468668, -0.04359256103634834, 0.010487283580005169, 0.006643339060246944, -0.011274178512394428, -0.00047614079085178673, -0.048522837460041046, 0.005128741264343262, -0.006935812998563051, -0.021085986867547035, -0.01935899630188942, 0.027771107852458954, -0.014944030903279781, -0.011991435661911964, 0.027074741199612617, -0.0114621976390481, -0.00434184679761529, 0.05041695386171341, -0.02183806151151657, 0.02176842652261257, 0.024539966136217117, 0.0139969727024436, -0.016531746834516525, -0.0050904410891234875, -0.011448269709944725, -0.009185077622532845, 0.01825873740017414, 0.011503979563713074, 0.010041609406471252, -0.0013666198356077075, -0.019748961552977562, -0.012179454788565636, -0.00266360305249691, 0.004825821612030268, 0.022005191072821617, 0.043453287333250046, 0.011308996938169003, 0.012618166394531727, 0.017005275934934616, -0.024261418730020523, -0.01981859840452671, -0.014916176907718182, -0.0002144592144759372, -0.0019306768663227558, 0.0017156737158074975, -0.03142007067799568], "d930e5fa-ab0d-4a54-a85b-c8683ca6ce79": [-0.005033969879150391, -0.039655901491642, -0.021943289786577225, -0.006587003357708454, -0.017217248678207397, 0.02387119270861149, -0.026401566341519356, -0.03156941756606102, -0.00636275066062808, -0.018823834136128426, 0.0127790542319417, 0.0043746004812419415, -0.018248140811920166, 0.008026236668229103, -0.002711114240810275, -0.01474042795598507, 0.007055590860545635, -0.021073054522275925, 0.02711114101111889, -0.020510749891400337, -0.01038256287574768, 0.007812025025486946, -0.00821367185562849, -0.021876348182559013, -0.011406761594116688, -0.0028449962846934795, 0.013147230260074139, -0.009773398749530315, 0.021581808105111122, -0.006292462348937988, 0.004153694491833448, -4.7773974074516445e-05, -0.009920669719576836, -0.008534989319741726, -0.022130724042654037, 0.00612845690920949, -0.0011815102770924568, -0.004341129679232836, -0.023857804015278816, -0.004595506004989147, 0.01768583618104458, -0.006018003914505243, -0.012129725888371468, 0.03245304152369499, -0.03301534429192543, 0.017418071627616882, -0.004926864057779312, -0.0036248599644750357, -0.02156841941177845, 0.00529169337823987, -0.00983364600688219, 0.032640475779771805, -0.04244065284729004, -0.028168810531497, -0.0007802820764482021, -0.022010231390595436, -0.004327741451561451, 0.021314043551683426, 0.007845495827496052, -0.022291382774710655, 2.949591726064682e-05, 0.0018576153088361025, -0.03649628162384033, -0.004856576211750507, 0.03285468742251396, -0.012076172977685928, -0.013314582407474518, -0.014459275640547276, -0.036228518933057785, -0.0012802483979612589, 0.015329509973526001, 0.01637379080057144, 0.0020801944192498922, 0.014767204411327839, 0.017538566142320633, 0.01966729201376438, 0.0013639247044920921, 0.010375868529081345, 0.01061016321182251, 0.015945367515087128, 0.010616856627166271, 0.0006217153859324753, 0.015543721616268158, 0.017431460320949554, 0.010516445152461529, -0.00852829497307539, 0.006419650744646788, 0.02822236344218254, -0.008996882475912571, -0.0037487009540200233, -0.006014656741172075, 0.008454659953713417, 0.026990648359060287, 0.0001921418443089351, -0.0023295499850064516, 0.0033805251587182283, -0.012410878203809261, 0.01747162453830242, -0.023737311363220215, -0.04107505455613136, 0.01873011700809002, -0.00379555975086987, -0.030230596661567688, -0.00015793913917150348, -0.027606505900621414, -0.0014032525941729546, 0.025343896821141243, -0.014124570414423943, -0.0038056010380387306, -0.012738889083266258, -0.035157460719347, 0.03135520592331886, -0.006761050317436457, -0.012169890105724335, -0.025531331077218056, 0.016561225056648254, 0.03845096379518509, -0.012350630946457386, -0.02988250181078911, -0.0017906741704791784, 0.021139996126294136, 0.017592119053006172, 0.01897110417485237, 0.010810986161231995, 0.021434536203742027, -0.0061552333645522594, -0.025303732603788376, 0.003470895579084754, 0.01480736956000328, -0.04718007892370224, 0.0294273030012846, 0.013421688228845596, 0.013722923584282398, 0.011125609278678894, -0.006540144328027964, 0.013113759458065033, -0.016895931214094162, 0.0015948715154081583, -0.005017234943807125, -0.008468047715723515, 0.04474342614412308, 0.01474042795598507, -0.000875254743732512, -0.011252797208726406, 0.0021990148816257715, 0.03122132457792759, 0.004304312169551849, 0.011232715100049973, 0.004424806218594313, 0.000794088700786233, 0.015624050050973892, -0.012116337195038795, 0.0036382481921464205, -0.0010501383803784847, 0.005887468811124563, -0.0009714826010167599, -0.013722923584282398, 0.016842378303408623, 0.012049396522343159, -0.03604108467698097, 0.029159538447856903, 0.0296682920306921, -0.005351940169930458, -0.026334624737501144, 0.009760010987520218, 0.03571976721286774, 0.013153924606740475, -0.017150307074189186, -0.007350131869316101, 0.005398798733949661, -0.011467008851468563, -0.00021327013382688165, -0.03296179324388504, 0.0064932857640087605, -0.024875309318304062, 0.0033504015300422907, 0.001118752988986671, 0.0007396990549750626, -0.019827950745821, 0.00795260164886713, -0.03052513673901558, -0.030685795471072197, 0.00370184239000082, 0.020162656903266907, 0.008300695568323135, -0.01798037625849247, 0.04308328405022621, -0.003226560540497303, 0.004327741451561451, 0.0015036641852930188, 0.01844896376132965, 0.0418783463537693, 0.03071257285773754, 0.028998879715800285, -0.5985069274902344, -0.01641395501792431, -0.01139337383210659, 0.004896740894764662, 0.011051974259316921, 0.03012349084019661, 0.010884621180593967, 0.02399168722331524, -0.014579769223928452, 0.019975220784544945, -0.004076712299138308, -0.0012392469216138124, -0.0006058168946765363, 0.008648788556456566, -0.014901086688041687, -0.02219766564667225, 0.009304811246693134, 0.008869694545865059, -0.0021655443124473095, 0.02961473912000656, -0.0007581078680232167, 0.004692570306360722, -0.024607544764876366, 0.01231716014444828, 0.006262339185923338, 0.006255644839257002, -0.02768683433532715, -0.010737351141870022, -0.00023805924865882844, 0.023041123524308205, -0.008983494713902473, 0.009278034791350365, 0.015249180607497692, 0.011875349096953869, 0.040111102163791656, -0.02064463309943676, -0.03181040659546852, 0.014298616908490658, 0.01566421426832676, 0.03920070081949234, -0.006714191287755966, -0.02156841941177845, 0.0319175124168396, -0.02099272608757019, 0.009974222630262375, -0.02728518843650818, -0.011165773496031761, -0.02076512575149536, 0.010482974350452423, 0.005027275998145342, -0.012685336172580719, -0.012497901916503906, -0.023201782256364822, 0.009693070314824581, -0.007156002335250378, 0.024647708982229233, 0.02614719048142433, -0.01144692674279213, 0.019051434472203255, -0.021354207769036293, -0.03277435898780823, 0.004036547616124153, -0.031007112935185432, -0.020109103992581367, -0.02867756225168705, 0.015530332922935486, -0.027191471308469772, -0.0035947365686297417, -0.0001110803714254871, -0.01815442368388176, -0.0038524598348885775, -0.0008191915694624186, -0.015878425911068916, 0.00012018017878290266, 0.020738350227475166, 0.006074903998523951, 0.004816411528736353, -0.01745823584496975, 0.011259491555392742, 0.006473203655332327, -0.005716769024729729, -0.008863000199198723, -0.030605467036366463, -0.016721883788704872, 0.005358634050935507, -0.01803392916917801, -0.0388793870806694, 0.020283149555325508, 0.0012200013734400272, 0.017592119053006172, 0.01930581033229828, -0.003080963622778654, 0.013555570505559444, -0.010442810133099556, -0.0053954520262777805, 0.026843376457691193, -0.01567760296165943, 0.03218527510762215, 0.021206937730312347, -0.004940252285450697, -0.051785629242658615, 0.014312004670500755, -0.00795260164886713, -0.0014626628253608942, 0.030310925096273422, 0.016199743375182152, -0.008307388983666897, 0.01897110417485237, 0.05122332274913788, -0.029239868745207787, -0.0013329645153135061, -0.01148039661347866, -0.032238829880952835, -0.02508952096104622, 0.019921667873859406, -0.03170330077409744, 0.018542682752013206, 0.006640556268393993, 0.028356246650218964, -0.0010769148357212543, 0.033791862428188324, -0.0165880024433136, 0.02162197232246399, 0.007089061662554741, 0.008447965607047081, 0.02041703276336193, 0.030900007113814354, 0.002654214156791568, -0.022170888260006905, 0.0077316961251199245, -0.005827222019433975, -0.011948985047638416, 0.0002786422846838832, -0.016721883788704872, -0.004003077279776335, -0.017618894577026367, 0.02059108018875122, 0.004153694491833448, 0.009847034700214863, -0.011145691387355328, -0.024969026446342468, -0.02729857712984085, 0.01526256836950779, -0.0053921048529446125, -0.016815602779388428, -0.022411877289414406, -0.0022759970743209124, 0.007758472580462694, -0.007805331144481897, 0.016922706738114357, 0.008421189151704311, -0.004572076257318258, -0.009090599603950977, 0.01994844526052475, -0.02712452970445156, 0.007932519540190697, -0.022759970277547836, -0.022706417366862297, -0.01095825619995594, -0.0014065996510908008, 0.02259931154549122, -0.02221105434000492, -0.014231676235795021, -0.009619434364140034, -0.002220770576968789, -0.016721883788704872, -0.00506074633449316, 0.008206977508962154, -0.013542182743549347, -0.02526356838643551, -0.01205608993768692, 0.01585165038704872, -0.01026876363903284, 0.0019362710881978273, -0.016454119235277176, 0.004531912039965391, -0.007129226345568895, 0.0057669747620821, -0.012511289678514004, -0.008863000199198723, 0.001425845199264586, -0.002237505977973342, -0.0031730076298117638, 0.002871772740036249, 0.0014986436581239104, 0.0010928133269771934, 0.026977259665727615, 0.011045279912650585, -0.020965948700904846, -0.0065468386746943, -0.0033671369310468435, 0.028597233816981316, -0.012451042421162128, -0.0015153789427131414, 0.004893393721431494, 0.023924745619297028, -0.016387179493904114, 0.005703380797058344, -0.028142035007476807, 0.03416673094034195, 0.03861162066459656, 0.04040564224123955, 0.017846494913101196, -0.024500438943505287, 0.02092578448355198, -0.04905443266034126, 0.017766164615750313, -0.017418071627616882, 0.0229474063962698, -0.01413795817643404, -0.013843417167663574, -0.01101180911064148, -0.0019747621845453978, -0.004679182078689337, 0.03890616074204445, 0.012430960312485695, -0.002463432028889656, -0.010335704311728477, 0.013488629832863808, 0.004314353223890066, 0.008447965607047081, -0.0022659560199826956, 0.0013103717938065529, -0.0124644311144948, -0.023897970095276833, 0.004792982246726751, 0.01931919902563095, 0.0007275659590959549, 0.006526756100356579, -0.02977539785206318, -0.019212093204259872, -0.018167812377214432, -0.00021159660536795855, 0.0018375329673290253, 0.004043241962790489, 0.0036951482761651278, 0.04179801791906357, 0.002416573464870453, 0.020055551081895828, 0.02128726616501808, 0.0029721844475716352, 0.016106026247143745, 0.002933693351224065, -0.023349052295088768, 0.0031663135159760714, 0.010623550973832607, 0.036523059010505676, 0.010047857649624348, -0.0020885621197521687, 0.02238509990274906, -0.01989489234983921, -0.00983364600688219, -0.019171928986907005, 0.03566621243953705, -0.0005426412099041045, 0.02139437198638916, 0.00855507142841816, 0.007885660044848919, 0.015690991654992104, 0.038477737456560135, 0.007564343046396971, 0.017431460320949554, -0.003355422057211399, 0.01874350570142269, 0.01623990759253502, -0.02324194647371769, -0.005927633494138718, -0.008822835981845856, -0.017257412895560265, -0.01618635654449463, -0.027847493067383766, -0.008287306874990463, 0.014606545679271221, 0.015516945160925388, -0.013555570505559444, -0.01705658994615078, 0.0015764626441523433, 0.004341129679232836, 0.014593157917261124, -0.009994304738938808, -0.01411118172109127, -0.017150307074189186, 0.013669370673596859, 0.027017423883080482, -0.0004083406529389322, 0.001119589782319963, -0.011928902007639408, -0.02151486650109291, 0.010282151401042938, 0.014097793959081173, 0.004444888327270746, 0.005599622149020433, 0.006794520653784275, -0.0010936501203104854, 0.002351305680349469, 0.0071091437712311745, 0.009800175204873085, -0.018194587901234627, -0.020711572840809822, -0.007162696681916714, 0.016119414940476418, -0.004167082719504833, -0.010516445152461529, -0.0349164716899395, 0.03700503334403038, 0.00023429380962625146, 0.01136659737676382, -0.00391605356708169, 0.00015009447815828025, -0.014298616908490658, -0.01129965577274561, -0.017136918380856514, 0.003191416384652257, 0.016280073672533035, -0.008668871596455574, 0.013421688228845596, 0.023161618039011955, -0.012892854399979115, 0.017726000398397446, 0.0018710034200921655, -0.03322955593466759, -0.014365557581186295, -0.028891773894429207, -0.03936136141419411, 0.004535258747637272, 0.0037219247315078974, 0.014419110491871834, 0.0014367231633514166, -0.022117335349321365, 0.0013789864024147391, 0.00307929003611207, -0.023777475580573082, 0.010154963470995426, -8.053849887801334e-05, -0.008923247456550598, -0.007343437522649765, 0.03312245011329651, -0.0118485726416111, 0.005151116754859686, 0.000517538283020258, -0.0027027465403079987, -0.016668330878019333, 0.038424186408519745, 0.00017655712144915015, -0.0018274917965754867, 0.023844417184591293, 0.017337743192911148, 0.009947446174919605, -0.027713611721992493, -0.017592119053006172, -0.008889776654541492, 0.010998421348631382, 0.003191416384652257, -0.007611202076077461, -0.029507633298635483, -0.004665793851017952, -0.004679182078689337, 0.017712611705064774, 0.013515406288206577, 0.025544719770550728, 0.0065468386746943, 0.03140876069664955, -0.0062154801562428474, 0.00636275066062808, 0.0127790542319417, 0.008615318685770035, 0.0033788515720516443, -0.010288845747709274, -0.00427753571420908, 0.0048398408107459545, 0.016199743375182152, 0.017886659130454063, -0.004578770603984594, -0.006587003357708454, 0.011647749692201614, -0.006908320356160402, -0.01890416443347931, 0.0023964911233633757, -0.0071760849095880985, 0.01682898961007595, -0.000453944259788841, 0.0008237938163802028, 0.01590520329773426, -0.011761549860239029, -0.01815442368388176, -0.02585264854133129, 0.011748161166906357, -0.02266625314950943, -0.025825873017311096, -0.06490608304738998, -0.02787427045404911, -0.010777515359222889, -0.019961833953857422, 0.004367906134575605, -0.004960334859788418, -0.02926664426922798, -0.033684756606817245, -0.02729857712984085, 0.01682898961007595, 0.020550914108753204, 0.021354207769036293, -0.01063693966716528, -0.0042273299768567085, 0.02191651239991188, 0.0018726770067587495, -0.014954639598727226, 0.0042273299768567085, -0.0022626088466495275, 0.011339820921421051, 0.010777515359222889, 0.03609463572502136, -0.03314922749996185, 0.010054551996290684, 0.029159538447856903, 0.029159538447856903, 0.023523099720478058, 0.03395251929759979, 0.015972144901752472, -0.021421149373054504, -0.005281651858240366, -0.009980916976928711, 0.014552992768585682, -0.002968837274238467, -0.019506633281707764, 0.009920669719576836, -0.01775277778506279, 0.0023881234228610992, -0.001767244772054255, -0.004240718204528093, -0.008916553109884262, 0.011125609278678894, 0.017270801588892937, 0.0026006612461060286, 0.017940212041139603, 0.004090100526809692, -0.023737311363220215, 0.026803212240338326, -0.008160118944942951, 0.016628166660666466, 0.0185694582760334, 0.01832847110927105, 0.006479897536337376, -0.013662676326930523, 0.0015128686791285872, 0.006747662089765072, -0.010416033677756786, 0.04120893403887749, 0.005037317052483559, -0.0049000876024365425, 0.002962143160402775, -0.014646710827946663, -0.030230596661567688, -0.032694026827812195, 0.008220366202294827, -0.010362480767071247, 0.01769922487437725, 0.0025270262267440557, -0.028543680906295776, -0.038477737456560135, 0.01518223900347948, -0.001266023376956582, -0.0039528715424239635, -0.009358364157378674, -0.021929901093244553, 0.00641630357131362, 0.0016183009138330817, 0.015101909637451172, -0.006714191287755966, 0.0044984412379562855, -0.02857045643031597, -0.006975261494517326, 0.005619704723358154, -0.006764397025108337, 0.009706458076834679, 0.016869153827428818, 0.011661138385534286, -0.028597233816981316, -0.01747162453830242, 0.011600891128182411, -0.029748620465397835, -0.027204860001802444, -0.004274188540875912, 0.02423267439007759, 0.009525717236101627, 0.006854767445474863, 0.03122132457792759, 0.0245673805475235, -0.005713421851396561, 0.015771320089697838, 0.015972144901752472, -0.011687913909554482, -0.00933828204870224, -0.02508952096104622, -0.0032466428820043802, 0.007202861364930868, 0.02452721633017063, 0.02752617560327053, -0.026977259665727615, 0.005442310590296984, 0.04514507204294205, -0.01463332213461399, 0.04921508952975273, 0.007336743641644716, -0.056123409420251846, 0.005994574632495642, -0.005639786832034588, -0.0012292057508602738, -0.001620811177417636, -0.02665594220161438, -0.017217248678207397, -0.003999730106443167, -0.0294273030012846, 0.020832067355513573, 0.013341358862817287, 0.003405628027394414, -0.01792682334780693, -0.015516945160925388, 0.002463432028889656, 0.008775976486504078, -0.019332587718963623, 0.005335204768925905, -0.01838202401995659, 0.007376908324658871, 0.014901086688041687, -0.0017254066187888384, 0.011319738812744617, -0.0015463391318917274, -0.008066401816904545, 0.010877926833927631, 0.006138497963547707, -0.035184238106012344, -0.0060682096518576145, -0.008548377081751823, -0.003146231174468994, -0.015503556467592716, -0.015101909637451172, 0.006660638377070427, -0.02763328142464161, 0.01775277778506279, 0.023215170949697495, 0.0024082057643681765, 0.0029152845963835716, -0.00994075182825327, -0.027499400079250336, 0.014017464593052864, -0.010864539071917534, 0.020671408623456955, 0.016293460503220558, 0.024138957262039185, 0.02417912147939205, 0.01630684919655323, 0.013508711941540241, -0.05202661454677582, -0.02036347985267639, 0.009900587610900402, 0.048010148108005524, 0.01930581033229828, -0.013977299444377422, 0.006523409392684698, 0.006603738758713007, 0.021300654858350754, -0.0039528715424239635, -0.027338741347193718, 0.008360941894352436, 0.01528934482485056, -0.028704339638352394, -0.03459515422582626, 0.010677103884518147, -0.01170799694955349, -0.021488089114427567, -0.020658019930124283, -0.028463352471590042, -0.028088482096791267, -0.013528794050216675, -0.03435416892170906, 0.00513438181951642, -0.00907721184194088, 0.03360442817211151, 0.010877926833927631, 0.0013195762876421213, -0.010549915954470634, 0.0011438558576628566, -0.012404183857142925, 0.021086443215608597, 0.009880504570901394, 0.02325533516705036, -0.020912395790219307, -0.008347554132342339, 0.005807139445096254, 0.004736082162708044, -0.0038926242850720882, -0.037379905581474304, -0.024835145100951195, 0.044904083013534546, -0.002756299450993538, -0.00769153144210577, -0.0034943248610943556, 0.028891773894429207, 0.025772320106625557, 0.027365516871213913, -0.018341857939958572, -0.01474042795598507, -0.0014860922237858176, -0.00994075182825327, 0.02022959664463997, 0.014981416054069996, 0.00012561914627440274, -0.014030852355062962, -0.0001622275449335575, -0.009853728115558624, -0.016695108264684677, 0.004662447143346071, -0.012671948410570621, -0.04260130971670151, -0.010208516381680965, -0.02064463309943676, -0.003829030320048332, 0.015918591991066933, 0.012297078035771847, 0.000842620967887342, 0.013542182743549347, 0.024433497339487076, -0.017538566142320633, 0.007350131869316101, -0.003159619402140379, -0.01540983933955431, -0.007490708027034998, -0.0063460152596235275, -0.006479897536337376, 0.01523579191416502, 0.0206981860101223, -0.0024400027468800545, 0.026629164814949036, -0.027258411049842834, -0.018020542338490486, 0.0022090559359639883, -0.015918591991066933, 0.03676404803991318, 0.002630784874781966, 0.006466509308665991, 0.015931978821754456, -0.013200783170759678, -0.010563303716480732, -0.004792982246726751, 0.0033169309608638287, -0.012785748578608036, 0.040512748062610626, -0.009344976395368576, 0.022224441170692444, -0.009592657908797264, -0.015597273595631123, 0.016454119235277176, -0.03430061414837837, -0.05229438096284866, 0.011748161166906357, -0.010449504479765892, -0.015650827437639236, -0.01179501973092556, -0.05799775943160057, -0.026120413094758987, -0.0008141709840856493, -0.004317700397223234, -0.015142074786126614, -0.013374829664826393, 0.002742911223322153, 0.029909279197454453, -0.012792441993951797, 0.0047996761277318, 0.002090235473588109, -0.022411877289414406, 0.004377947188913822, -0.04260130971670151, -0.023000959306955338, -0.018435576930642128, -0.019038045778870583, 0.04254775866866112, 0.013267723843455315, -0.01590520329773426, -0.03036447800695896, -0.012276995927095413, -0.023108065128326416, -0.003308563493192196, 0.007457237225025892, 0.028249140828847885, 0.032640475779771805, 0.004548646975308657, 0.015142074786126614, 0.015998920425772667, -0.013763087801635265, 0.00272450246848166, -0.014419110491871834, -0.004331088624894619, -0.014432499185204506, 0.007965989410877228, 0.00550590455532074, 0.004086753353476524, -0.012189972214400768, -0.016641555353999138, -0.009438693523406982, 0.02458076924085617, 0.018355246633291245, 0.02203700691461563, -0.015543721616268158, -0.0018576153088361025, -0.02601330727338791, -0.007222943473607302, 0.009492246434092522, 0.00847474206238985, -0.020684797316789627, -0.029936054721474648, 0.016641555353999138, 0.02676304802298546, 0.013314582407474518, -0.020912395790219307, 0.0157177671790123, 0.016213132068514824, -0.012457736767828465, 0.012705419212579727, -0.0208186786621809, -0.010067939758300781, -0.006814602762460709, -0.01251798402518034, 0.02832946926355362, 0.024487050250172615, -0.019225481897592545, 0.012859383597970009, 0.006928402930498123, 0.025357285514473915, -0.008769283071160316, 0.004702611360698938, -0.02399168722331524, -0.009947446174919605, -0.015757933259010315, -0.011955678462982178, 0.022853687405586243, -0.012605007737874985, 0.015249180607497692, -0.027847493067383766, 0.004398029763251543, 0.021380985155701637, -0.0018542682519182563, -0.02435316890478134, 0.020604467019438744, 0.025223402306437492, -0.01330119464546442, -0.00022153317695483565, -0.013635899871587753, -0.029186315834522247, -0.010081328451633453, -0.021139996126294136, 0.0147136515006423, -0.022746581584215164, 0.03422028571367264, -0.009512328542768955, 0.002598987892270088, -0.00560966320335865, 0.010951562784612179, 0.017900047823786736, -0.022304771468043327, 0.004357865080237389, 0.2699064612388611, -0.008374330587685108, -0.017672447487711906, 0.018288305029273033, -0.0011095486115664244, 0.0008229570230469108, -0.008755894377827644, -0.012625089846551418, -0.009867116808891296, 0.011781631968915462, -0.0023596733808517456, 0.0009773399215191603, -0.016119414940476418, -0.0031395370606333017, -0.007149308454245329, -0.0032817870378494263, -0.009110682643949986, -0.0050540524534881115, 0.021180160343647003, 0.00010867467790376395, 0.02660238929092884, 0.0022107295226305723, -0.024313004687428474, -0.007363520096987486, 0.020162656903266907, -0.002870099153369665, -0.02567860297858715, 0.01601230911910534, 0.023228557780385017, 0.026682717725634575, -0.012263608165085316, 0.0062322155572474, 0.01283260714262724, 0.011279573664069176, 0.006412956397980452, -0.006332627031952143, 0.020965948700904846, 0.013448464684188366, 0.028195587918162346, 0.025009190663695335, -0.004136959556490183, -0.008729117922484875, 0.0140844052657485, 0.0014501113910228014, -0.010770821012556553, -0.01174146682024002, 0.0016417301958426833, -0.04112860560417175, 0.0035846952814608812, 0.0099139753729105, -0.04573415219783783, -0.03371153399348259, 0.03526456654071808, 0.01225691381841898, 0.004977070260792971, 0.002786422846838832, 0.016400566324591637, -0.00936505850404501, 0.016735272482037544, -0.009016964584589005, -0.008695648051798344, 0.026990648359060287, -0.010563303716480732, -0.008628706447780132, -0.040914393961429596, -0.0017371212597936392, -0.018355246633291245, 0.01787327043712139, -0.009137459099292755, -0.0045620352029800415, 0.005864039529114962, 0.0026023348327726126, -0.006710844114422798, -0.007122531998902559, -0.008970106020569801, -0.029855726286768913, 0.03780832886695862, 0.0029922667890787125, 0.03242626413702965, 0.008280612528324127, -0.010402644984424114, 0.023509711027145386, -0.004639017395675182, -0.007805331144481897, -0.015557109378278255, -0.032988570630550385, 0.012564842589199543, -0.015048356726765633, -0.0033621161710470915, 0.0031094136647880077, -0.0018693299498409033, -0.019453080371022224, 0.021822795271873474, 0.0039026655722409487, 0.010208516381680965, 0.01208286639302969, 0.014419110491871834, 0.05574854090809822, -0.017310965806245804, -0.016748661175370216, 0.0036248599644750357, -0.006439732853323221, 0.019961833953857422, 0.016052473336458206, -0.009217788465321064, -0.008996882475912571, -0.005432269535958767, 0.016561225056648254, -0.0014459275407716632, 0.004033200908452272, 0.0062824212945997715, -0.025745542719960213, -0.002158850198611617, -0.004471664782613516, -0.003424036782234907, 0.02682998962700367, -0.01747162453830242, -0.002543761394917965, -0.02174246683716774, -0.008039625361561775, 0.014459275640547276, -0.020550914108753204, -0.001800715341232717, 0.01196906715631485, -0.02001538686454296, -0.03614819049835205, -0.023844417184591293, 0.009304811246693134, -0.012906242161989212, -0.021541642025113106, 0.010710574686527252, -0.028891773894429207, 0.0025487819220870733, 0.01583826169371605, 0.014968027360737324, 0.020845456048846245, -0.011426843702793121, -0.023523099720478058, -0.0009045414626598358, -0.0028299347031861544, -0.007711613550782204, -0.0034508132375776768, 0.03810286894440651, -0.0021655443124473095, -0.005599622149020433, -0.01913176290690899, -0.006941791158169508, 0.011554032564163208, -0.011667831800878048, 0.0021421147976070642, -0.047795940190553665, -0.019051434472203255, 0.024768203496932983, -0.008367636241018772, 0.004337782505899668, -0.011982454918324947, -0.0016827316721901298, -0.06217488646507263, 0.0073836022056639194, 0.02961473912000656, -0.03612141311168671, -0.0074505433440208435, 0.0006016330444253981, -0.06067540496587753, -0.004813064355403185, -0.007343437522649765, -0.16944128274917603, 0.01518223900347948, 0.03376508504152298, -0.012451042421162128, 0.021233713254332542, -0.013033430092036724, -0.005549416411668062, 0.013830029405653477, -0.023442769423127174, 0.010623550973832607, 0.027552952989935875, -0.031649746000766754, 0.006376138888299465, -0.007919130846858025, -0.01740468293428421, 0.012303772382438183, -0.015034968964755535, 0.01637379080057144, 0.05165174603462219, 0.0066271680407226086, 0.031997840851545334, -0.030926784500479698, -0.004331088624894619, 0.013522100634872913, -0.014968027360737324, 0.020202821120619774, 0.0017956946976482868, 0.012377407401800156, 0.018770281225442886, -0.02832946926355362, -0.0035612659994512796, -0.012297078035771847, 0.010482974350452423, -0.0032349282409995794, -0.012986571528017521, -0.005084175616502762, 0.004618935286998749, -0.008662177249789238, -0.02226460725069046, -0.015490168705582619, -0.0011036911746487021, 0.027660058811306953, -0.02578570879995823, 0.0066238208673894405, -0.014994803816080093, 0.009472164325416088, 0.02184957265853882, -0.024620933458209038, 0.007597813848406076, 0.00550590455532074, 0.0014015791239216924, -0.022867076098918915, 0.016507672145962715, -0.01063693966716528, 0.02902565710246563, 0.0034123221412301064, -0.007283190730959177, 0.014512828551232815, 0.008126648142933846, -0.0022107295226305723, -0.021314043551683426, -0.024500438943505287, -0.001701140427030623, 0.021126607432961464, 0.0024567379150539637, 0.00636275066062808, 0.009565881453454494, 0.04803692549467087, -0.023228557780385017, -0.011313044466078281, 0.009960833936929703, -0.04329749569296837, 0.030739348381757736, 0.015088521875441074, 0.0015463391318917274, 0.011118914932012558, -0.0007430461118929088, 0.01947985775768757, 0.023201782256364822, -0.013923746533691883, -0.022063782438635826, 0.023723922669887543, 0.004515176638960838, -0.0063426680862903595, 0.005378716625273228, 0.003065902041271329, -0.009478858672082424, -0.005298387259244919, -0.027552952989935875, -0.021059667691588402, 0.019586963579058647, -0.0334169939160347, -0.016815602779388428, -0.01338152401149273, 0.009632823057472706, 0.017217248678207397, 0.00031399555155076087, -0.01182179618626833, -0.005137728527188301, 0.006543491501361132, -0.00366502464748919, -0.0003700587258208543, -0.01752517744898796, 0.002513637999072671, 0.016226520761847496, -0.008802752941846848, 0.0024215939920395613, 0.010891315527260303, 0.0458948127925396, -0.009847034700214863, -0.002498576184734702, -0.02024298533797264, 0.006225521210581064, 0.01174146682024002, 0.009184317663311958, -0.003213172312825918, -0.004896740894764662, -0.016467507928609848, 0.01717708446085453, 0.005509251728653908, 0.0004198461538180709, -0.027325352653861046, -0.0015982185723260045, 0.010449504479765892, -0.01630684919655323, 0.003936136141419411, -0.049804169684648514, -0.027954598888754845, 0.0036215130239725113, 0.006503326818346977, 0.0017438153736293316, 0.024098793044686317, -0.01081768050789833, 0.023897970095276833, 0.004086753353476524, 0.03081967867910862, -0.029186315834522247, -0.03914714977145195, -0.017096754163503647, 0.021314043551683426, 0.01780633069574833, 0.009813563898205757, -0.00029454080504365265, 0.013421688228845596, 0.01751178875565529, 0.035826873034238815, -0.017083365470170975, -0.02186295948922634, 0.003360442817211151, -0.02087223157286644, -0.0035077130887657404, -0.014954639598727226, -0.013696147128939629, 0.02353648655116558, 0.009753316640853882, 0.02768683433532715, 0.04471664875745773, -0.013522100634872913, -0.006814602762460709, -0.011788326315581799, 0.03446127474308014, -0.005090869963169098, -0.01092478632926941, -0.017083365470170975, 0.003922747913748026, -0.02782071754336357, -0.01205608993768692, -0.0009179296903312206, -0.0023278763983398676, -0.018435576930642128, -0.025370672345161438, -0.01058338675647974, 0.006473203655332327, 0.029534408822655678, -0.010536527261137962, -0.0013245968148112297, -0.017498401924967766, -0.02226460725069046, -0.02526356838643551, -0.021648747846484184, 0.02383102849125862, 0.01745823584496975, 0.021233713254332542, -0.004150347784161568, -0.03510390594601631, 0.01838202401995659, -0.0008455496281385422, 0.0015639112098142505, -0.026040084660053253, 0.021715689450502396, 0.020202821120619774, 0.02768683433532715, -0.023442769423127174, 0.006811256054788828, 0.02757972851395607, -0.005462393164634705, -0.013609123416244984, 0.023108065128326416, -0.011172467842698097, 0.05880105495452881, -0.03140876069664955, -0.013508711941540241, 9.926108759827912e-05, -0.01026876363903284, 0.03756733983755112, -0.018890775740146637, -0.006861461792141199, -0.005522639956325293, 0.019961833953857422, -0.012953100726008415, 0.024888698011636734, 0.005428922362625599, 0.0011112220818176866, 0.00936505850404501, 0.022425265982747078, -0.035639435052871704, 0.008247142657637596, 0.02822236344218254, -0.008012848906219006, -0.033791862428188324, 0.008769283071160316, 0.005308428313583136, 0.005927633494138718, 0.010188434273004532, -0.0015362980775535107, 0.01488769892603159, -0.02677643671631813, -0.01607925072312355, -0.08038286119699478, 0.02705758810043335, -0.02226460725069046, 0.013428382575511932, 0.023000959306955338, 0.0011254471028223634, 0.037379905581474304, 0.007637978531420231, -0.008508212864398956, 0.00246510561555624, -0.01148039661347866, 0.0255581084638834, 0.009184317663311958, -0.006476550363004208, -0.01327441819012165, -0.025772320106625557, 0.011339820921421051, 0.0381564199924469, 0.001135488273575902, 0.012812525033950806, -0.0068949321284890175, -0.0035545718856155872, 0.03970945626497269, -0.014378946274518967, -0.012678642757236958, 0.02832946926355362, 0.0001606586156412959, 0.009632823057472706, -0.006720885634422302, -0.0027010729536414146, -0.0060046156868338585, -0.013281112536787987, -0.005372022278606892, 0.04846534878015518, 0.0014517848612740636, 0.004940252285450697, -0.011467008851468563, 0.010978339239954948, 0.0165880024433136, 0.00743046123534441, -0.02353648655116558, -0.015610662288963795, 0.015824873000383377, -0.024152345955371857, 0.005994574632495642, 0.008441271260380745, -0.014392334036529064, 0.019359363242983818, 0.02104627899825573, -0.012638477608561516, 0.006262339185923338, 0.02151486650109291, 0.004428152926266193, -0.023429380729794502, -0.018716728314757347, -0.04428822547197342, 0.013435076922178268, 0.03213172405958176, -0.024326391518115997, -0.00988719891756773, 0.024540603160858154, 0.012625089846551418, 0.029400527477264404, 0.0021170119289308786, 0.005596274975687265, 0.009385140612721443, -0.012002537027001381, 0.006941791158169508, 0.02221105434000492, -0.0034073013812303543, -0.018716728314757347, -0.023335663601756096, -0.024098793044686317, 0.0004309332580305636, 0.01700303703546524, -0.01142015028744936, -0.012276995927095413, 0.0009689722792245448, -0.01020182203501463, 0.01860962249338627, 0.018596235662698746, 0.0064096092246472836, -0.03405962511897087, 0.01480736956000328, 0.04573415219783783, -0.003996382933109999, -0.02578570879995823, 0.01780633069574833, -0.04618935286998749, 0.013214170932769775, -0.030926784500479698, 0.0021320737432688475, 0.012718806974589825, 0.03381863981485367, 0.008983494713902473, 0.029748620465397835, 0.0019228828605264425, 0.02035009115934372, 0.0159587562084198, 0.008769283071160316, -0.02381763979792595, -0.0008811121224425733, -0.02498241513967514, -0.014298616908490658, -0.007611202076077461, 0.027954598888754845, -0.00884291809052229, -0.04554671794176102, 0.019171928986907005, 0.012444349005818367, -0.005559457466006279, 0.025169849395751953, -0.009672987274825573, 0.0229474063962698, -0.02191651239991188, 0.013803252950310707, -0.014914474450051785, -0.0031094136647880077, -0.033631205558776855, 0.04005754739046097, 0.020189432427287102, 0.0115339495241642, 0.003932788968086243, -0.019988609477877617, 0.028008151799440384, -0.03499680384993553, 0.01832847110927105, -0.03178362920880318, -0.0006380322738550603, 0.01583826169371605, 0.0036583305336534977, 0.002675970084965229, -0.012129725888371468, -0.008970106020569801, -0.015450003556907177, 0.006044780369848013, 0.013113759458065033, 0.012611701153218746, 0.0013095351168885827, 0.06372791528701782, -0.0015923611354082823, -0.015972144901752472, 0.011379985138773918, -0.026294460520148277, 0.0031228018924593925, 0.011875349096953869, -0.008468047715723515, -0.0060682096518576145, -0.035130683332681656, 0.02080528996884823, 0.0031228018924593925, -0.021555030718445778, -0.00246510561555624, 0.004829799756407738, -0.023683758452534676, -0.020684797316789627, 0.015168851241469383, -0.027767164632678032, 0.02747262269258499, 0.03534489497542381, -0.02381763979792595, 0.029132762923836708, 0.025986531749367714, -0.008367636241018772, -0.00011327687388984486, 0.0011095486115664244, -0.014981416054069996, -0.006131804082542658, -0.011353208683431149, 0.007637978531420231, -0.0007748430944047868, -0.011547338217496872, -0.03178362920880318, 0.005164504982531071, 0.01780633069574833, 0.012618395499885082, 0.022907240316271782, 0.026053471490740776, 0.002689358312636614, 0.005720116198062897, 0.02219766564667225, -0.01970745623111725, -0.02255914732813835, 0.0012735542841255665, 0.01101180911064148, 0.003504366148263216, 0.00013419597235042602, -0.007986072450876236], "00eddcdb-b8ed-41b9-838a-2d79d8fb57ab": [-0.03379546105861664, 0.016597772017121315, 0.0036780775990337133, -0.03336694836616516, -0.027796268463134766, 0.011419895105063915, -0.004531534388661385, -0.03262419253587723, -0.0031085112132132053, -0.03905189782381058, 0.009420163929462433, -0.0009802255081012845, 0.0007637367234565318, -0.010884253308176994, -0.008877379819750786, -0.00015198852634057403, 0.004806497599929571, -0.010141495615243912, 0.022097032517194748, -0.017654772847890854, 0.03570949286222458, -0.005706376861780882, -0.02502521127462387, -0.012698295526206493, -0.0036637939047068357, -0.007798952981829643, 0.029596026986837387, -0.016254959627985954, 0.004738649353384972, -0.01002008281648159, 0.015269378200173378, -0.018597502261400223, 0.005227869376540184, 0.0016828097868710756, -0.0014203450409695506, -0.012176936492323875, -0.010819976218044758, 0.0003760655818041414, -0.0029638877604156733, 0.016054987907409668, 0.032767027616500854, -0.0037173579912632704, 0.022711236029863358, -0.004185152240097523, 0.013126809149980545, 0.010748556815087795, 0.004210148938000202, -0.007377580739557743, -0.029653161764144897, -0.008798819035291672, -0.008098912425339222, 0.02843903936445713, -0.04736506938934326, -0.03476675972342491, 0.019968748092651367, -0.021639952436089516, 0.006281299516558647, 0.01502655353397131, -0.02099718153476715, -0.017140556126832962, 0.026682130992412567, 0.004717223811894655, -0.03408113867044449, -0.00990581326186657, 0.01931169256567955, -0.024039629846811295, -0.010584292933344841, -0.009470157325267792, -0.007477567531168461, -0.0006664283573627472, 0.010377177968621254, 0.014840864576399326, -0.006834796629846096, -0.010877110995352268, 0.03559521958231926, -0.014176667667925358, -0.0029585312586277723, 0.00878453440964222, 0.009034501388669014, 0.028781849890947342, -0.00569566385820508, 0.009134488180279732, 0.016940582543611526, -0.0032227816991508007, 0.02088291011750698, 0.017497651278972626, 0.003667364828288555, 0.020525814965367317, -0.013091099448502064, -0.011562732979655266, 0.0023746811784803867, 0.011991247534751892, 0.004388696514070034, 0.0026674990076571703, 0.008563135750591755, 0.005342139862477779, -0.009791542775928974, 0.041165903210639954, -0.036966465413570404, -0.023482561111450195, -0.000976654584519565, -0.006591971963644028, -0.038309141993522644, -0.008713115938007832, -0.050564639270305634, -0.018483232706785202, 0.03630940988659859, -0.025010928511619568, -0.012791140004992485, 0.015569338575005531, -0.01096995547413826, 0.040451712906360626, -0.0017158410046249628, -0.009805826470255852, -0.04036600887775421, 0.004456544294953346, 0.04327990487217903, -0.0386233851313591, -0.03393829986453056, -0.01718340627849102, 0.0223969928920269, 0.021797074005007744, 0.029481755569577217, 0.003038877621293068, 0.00376378046348691, -0.005938488524407148, -0.007941790856420994, -0.018668921664357185, 0.008413156494498253, -0.023082615807652473, 0.03279559686779976, 0.005506403744220734, -0.0019497382454574108, 0.021625667810440063, 0.0019140287768095732, 0.021254289895296097, 6.907554779900238e-05, 0.0038994764909148216, -0.004710081964731216, -0.010669996030628681, 0.030881568789482117, 0.019668787717819214, -0.014755161479115486, -0.011769847944378853, -0.007677540648728609, 0.0006865149480290711, -0.007302591111510992, 0.022082749754190445, 0.029853135347366333, -0.00872739963233471, 0.01946881413459778, -0.009305893443524837, 0.003685219446197152, 0.013041106052696705, -0.014376641251146793, 0.00825603399425745, 0.014783729799091816, 0.013926701620221138, 0.006827654782682657, -0.021182870492339134, 0.004313706420361996, 0.031481485813856125, 0.008920230902731419, -0.01599785126745701, 0.024168184027075768, 0.028339052572846413, -0.010898537002503872, -0.007548986468464136, -0.00990581326186657, 0.007284736260771751, -0.007038340903818607, -0.0016542421653866768, -0.02423960343003273, -0.004763646051287651, -0.02462526597082615, 0.03856625035405159, 0.01321251131594181, 0.006277728360146284, -0.002483595162630081, -0.004149443004280329, -0.01094853039830923, -0.03388116508722305, 0.0014310578117147088, 0.008213182911276817, 0.0039851791225373745, -0.006641965359449387, 0.023525413125753403, 0.0033834741916507483, 0.013033964671194553, 0.006834796629846096, 0.023639682680368423, 0.021968478336930275, 0.01634066365659237, 0.0011016378412023187, -0.5681523084640503, -0.01892603002488613, -0.013276788406074047, -0.00901307538151741, 0.015297945588827133, 0.013048248365521431, 0.01969735510647297, 0.022796940058469772, -0.011691287159919739, 0.012112659402191639, -0.00901307538151741, 0.022025614976882935, 0.0265964288264513, 0.009191622957587242, -0.02122572250664234, -0.024096764624118805, 0.004185152240097523, -0.002317545935511589, 0.011469888500869274, 0.004092307761311531, -0.0025621559470891953, 0.01729767769575119, -0.03128151595592499, 0.022368425503373146, 0.015397932380437851, 0.010520015843212605, -0.02026870660483837, 0.009113062173128128, 0.007613263558596373, 0.041223037987947464, -0.014619465917348862, 0.013919559307396412, 0.022882642224431038, 0.004910055082291365, 0.03593803197145462, -0.013919559307396412, -0.03213854134082794, 0.027696281671524048, 0.02121143788099289, 0.03185286745429039, -0.01751193404197693, -0.034509651362895966, 0.03950897976756096, -0.011427037417888641, 0.026296468451619148, -0.01292683556675911, 0.0201401524245739, -0.002910323441028595, 0.016883447766304016, -0.00887023750692606, -0.013712444342672825, -0.02832476794719696, -0.014126674272119999, 0.009977231733500957, -0.0044494024477899075, 0.009841536171734333, 0.02385394088923931, -0.007341871503740549, 0.012248355895280838, -0.034223977476358414, -0.019883044064044952, 0.0050493222661316395, -0.028067659586668015, -0.005856356583535671, -0.02122572250664234, -0.003454893361777067, -0.00792036484926939, 0.005717089399695396, -0.016354946419596672, -0.017669055610895157, -0.004974332172423601, -0.001720304717309773, 0.01124848984181881, 0.00934874452650547, 0.016812028363347054, 0.019883044064044952, 0.026939239352941513, -0.013119666837155819, -0.0037316419184207916, 0.0176404882222414, -0.014569472521543503, -0.0012542959302663803, -0.025310887023806572, -0.012391193769872189, 0.008241750299930573, 0.016097838059067726, -0.021354276686906815, -0.0031406497582793236, 0.029767431318759918, -0.011912685818970203, 0.0243395883589983, -0.0064348503947257996, 0.03385259583592415, -0.02496807649731636, 0.009191622957587242, 0.0254680085927248, -0.021197153255343437, -0.0027960531879216433, -0.005995623767375946, 0.006049187853932381, -0.042679984122514725, 0.027524875476956367, -0.0032317088916897774, -0.005684950854629278, 0.024896657094359398, -0.00215506786480546, -0.017983300611376762, 0.017026284709572792, 0.006531266029924154, -0.03125294670462608, 0.000361781771061942, 0.00962727889418602, -0.01668347418308258, -0.009313035756349564, -0.004045885521918535, -0.04210863262414932, 0.04008033126592636, 0.017154838889837265, -0.00781323667615652, 0.0181975569576025, 0.034795328974723816, -0.001345355063676834, 0.030081676319241524, 0.021011464297771454, -0.005017183721065521, 0.0009400523849762976, 0.033509787172079086, 0.013391058892011642, -0.010220056399703026, 0.025553712621331215, -0.013083957135677338, -0.016583487391471863, 0.016640622168779373, -0.01741194725036621, 0.001149845658801496, -0.009912954643368721, -0.006502698175609112, 0.0031620755326002836, 0.021468546241521835, -0.020397260785102844, -0.02861044369637966, -0.012462612241506577, 0.02021157182753086, -0.010284333489835262, -0.03256705775856972, -0.022768370807170868, 0.008827386423945427, 0.017983300611376762, 0.013562465086579323, -0.019668787717819214, 0.012791140004992485, 0.013319640420377254, -0.03828057646751404, 0.03745211288332939, 0.013276788406074047, 0.015440784394741058, 0.00013848587695974857, -0.012262639589607716, 0.011219922453165054, 0.0016828097868710756, -0.009748690761625767, -0.010091502219438553, -0.014448059722781181, -0.0226683858782053, 0.004006605129688978, -0.028639011085033417, 0.018597502261400223, -0.012648302130401134, -0.012562599033117294, -0.026610713452100754, -0.023039763793349266, 0.0110556585714221, -0.01254117302596569, -0.022297006100416183, 0.013812431134283543, 0.006177742034196854, -0.019911611452698708, 0.0002388072171015665, 0.027753416448831558, -0.01321251131594181, -0.003044234123080969, 0.014469485729932785, -0.017426231876015663, 0.0032138542737811804, 0.0018997449660673738, 0.021425694227218628, 0.026153631508350372, 0.012648302130401134, -0.010291475802659988, -0.012462612241506577, 0.005917062517255545, 0.0003495066484902054, -0.006856222171336412, -0.002997811883687973, 0.02278265543282032, 0.025010928511619568, 0.003379903268069029, -0.01818327233195305, -0.014576613903045654, 0.025539427995681763, 0.0414230115711689, 0.045251067727804184, 0.015812162309885025, -0.01969735510647297, -0.006020619999617338, -0.053935617208480835, 0.0268678218126297, -0.009598711505532265, 0.004881487227976322, -0.017483366653323174, -0.0005883138510398567, -0.010570009239017963, -0.012855417095124722, 0.01701200194656849, 0.02036869339644909, 0.01502655353397131, -0.008748825639486313, -0.001647100318223238, 0.006995489355176687, 0.009005934000015259, 0.022582681849598885, 0.004442260600626469, 0.012805423699319363, -0.0024800242390483618, -0.020625801756978035, -0.0021068600472062826, 0.03253848850727081, 0.030595891177654266, 0.001485514803789556, -0.013219653628766537, -0.02256839908659458, -0.020840059965848923, 0.01368387695401907, -0.0010971741285175085, -0.02171136997640133, -0.014283796772360802, 0.045708149671554565, -0.031538624316453934, 0.0012105517089366913, 0.01756906881928444, -0.023196885362267494, 0.012312632985413074, -0.0021979191806167364, -0.013176802545785904, 0.006616968661546707, 0.012669727206230164, 0.05185018107295036, 0.009041642770171165, -0.011705570854246616, 0.01449805311858654, -0.043736983090639114, -0.009741549380123615, -0.016869163140654564, 0.02115430310368538, -0.024782387539744377, -0.006977634504437447, 0.008841670118272305, 0.02803909219801426, 0.01958308555185795, 0.01225549727678299, 0.03365262597799301, 0.0408516563475132, -0.022097032517194748, 0.011962679214775562, 0.020911477506160736, -0.025682266801595688, -0.020568666979670525, -0.029853135347366333, -0.012783997692167759, -0.0016953081358224154, -0.01628352887928486, 0.002703208476305008, -0.0022979057393968105, 0.009884387254714966, -0.0005597462877631187, -0.0037709223106503487, 0.013176802545785904, 0.01396241132169962, 0.020754355937242508, -0.011327050626277924, -0.0093773128464818, -0.018540367484092712, 0.0007592730689793825, 0.041737254709005356, -0.005845643579959869, 0.0011864478001371026, 0.00915591325610876, -0.010427171364426613, -0.002624647691845894, 0.01812613755464554, 0.007591838017106056, -0.009170196950435638, -0.002506806282326579, 0.008741683326661587, 0.013898134231567383, 0.010891394689679146, 0.005727802403271198, -0.011848408728837967, -0.02188277617096901, -0.031052973121404648, -0.000494130072183907, -0.0029888844583183527, 0.009498724713921547, 0.003388830693438649, 0.06964778900146484, 0.004760075360536575, 0.02872471511363983, 0.011605584993958473, 0.004824352450668812, -0.00024193180433940142, 0.004560102242976427, -0.033338382840156555, -0.021868491545319557, -0.011705570854246616, -0.006067042704671621, 0.028196213766932487, 0.02652500942349434, 0.000374056922737509, 0.026325037702918053, -0.021839924156665802, -0.018211839720606804, -0.028110511600971222, -0.03905189782381058, 0.019440246745944023, -0.04750790819525719, 0.013283930718898773, -0.006974063813686371, -0.005831359885632992, -0.017983300611376762, -2.424339618301019e-05, -0.02122572250664234, -0.0065634045749902725, -0.0044886828400194645, -0.015012269839644432, 0.02525375224649906, -0.01396241132169962, 0.024196751415729523, 0.005095744505524635, -0.00011042044206988066, -0.021082883700728416, -0.03496673330664635, -0.033395517617464066, 0.03770922124385834, -0.001049859100021422, -0.006038474850356579, 0.003021023003384471, 0.015512202866375446, 0.03536668047308922, -0.01578359492123127, -0.005306430626660585, -0.011848408728837967, 0.02882470190525055, 0.014769445173442364, -0.01287684217095375, -0.008077487349510193, 0.005010041408240795, 0.0019247415475547314, 0.013548181392252445, -0.019840193912386894, 0.012534031644463539, 0.00990581326186657, 0.028853269293904305, -0.012548315338790417, 0.031652893871068954, -0.004131588153541088, 0.0089559406042099, 0.0009320177487097681, -0.02015443705022335, -0.007002631202340126, -0.011527024209499359, 0.009298751130700111, 0.006370573304593563, 0.005013612564653158, -0.0052528660744428635, 0.01785474643111229, -0.018840327858924866, -0.029624594375491142, -0.01892603002488613, 0.02161138318479061, 0.004699368961155415, -0.0056278156116604805, 0.009705839678645134, 0.015140824019908905, -0.017211975529789925, 0.006959779653698206, 0.0018211840651929379, 0.009941522032022476, -0.026167914271354675, -0.005220727529376745, -0.024553846567869186, -0.03633797913789749, -0.007341871503740549, -0.019897328689694405, 0.016269244253635406, 0.019797341898083687, 0.0013971338048577309, -0.051021721214056015, -0.0179118812084198, 0.023382574319839478, 0.03656651824712753, 0.04505109414458275, -0.0014560545096173882, -0.01891174726188183, 0.024225318804383278, -0.006591971963644028, -0.015097972936928272, -0.011027091182768345, -0.0030245939269661903, 0.0047493623569607735, 0.009670129977166653, 0.003706645220518112, -0.022654101252555847, -0.008434581570327282, 0.034109704196453094, 0.009420163929462433, -0.0022193449549376965, 0.017597638070583344, 0.028967538848519325, 0.00036356726195663214, -0.007391864899545908, 0.023196885362267494, 0.026167914271354675, -0.016597772017121315, -0.02652500942349434, 0.031710028648376465, 0.017869029194116592, -0.011905544437468052, -0.0036316553596407175, 0.0011935897637158632, 0.021297140046954155, 0.012769713997840881, 0.01958308555185795, 0.03376689553260803, 0.02228272333741188, -0.004188723396509886, -0.010420029982924461, 0.017154838889837265, -0.024368157610297203, 0.005745657254010439, 0.005367136560380459, -0.003569163614884019, -0.01774047501385212, -0.021639952436089516, -0.0060563297010958195, 0.025368021801114082, -0.019497381523251534, 0.04722223058342934, 0.009670129977166653, 0.008877379819750786, 0.00014763642684556544, -0.018654638901352882, -0.026624996215105057, -0.026353605091571808, 0.02916751243174076, -0.021197153255343437, 0.02458241395652294, -0.006324151065200567, -0.0005017183721065521, -0.020797207951545715, 0.017540501430630684, -0.001473909243941307, 0.023868223652243614, -0.015683608129620552, -0.02798195742070675, 0.022596966475248337, -0.017040569335222244, 0.03222424536943436, -0.007399006746709347, -0.0038173445500433445, -0.029881702736020088, -0.016254959627985954, -0.01846894808113575, 0.01595500111579895, 0.015455068089067936, 0.024211034178733826, -0.0017685125349089503, 0.0017095919465646148, -0.015640757977962494, 0.009177339263260365, -0.022596966475248337, -0.013776721432805061, 0.0006592865101993084, 0.029824567958712578, 0.0052528660744428635, 0.008084628731012344, 0.039594683796167374, -0.008470291271805763, -0.00809177104383707, 0.026225050911307335, 0.007556128315627575, -0.01119849644601345, 0.014983702450990677, -0.02311118319630623, -0.03139578551054001, -0.014290938153862953, 0.01818327233195305, -0.012698295526206493, -0.026153631508350372, 0.002451456617563963, 0.012284064665436745, 0.0027674855664372444, 0.02648215927183628, -0.010448597371578217, -0.03839484602212906, -0.015683608129620552, 0.01752621866762638, 0.0039101894944906235, 0.0029728151857852936, -0.04176582023501396, -0.020568666979670525, -0.007088333833962679, -0.026225050911307335, 0.01908315159380436, -0.016312096267938614, 0.012055524624884129, -0.013119666837155819, -0.0006784803117625415, -0.0025264464784413576, 0.016697758808732033, -0.01214836910367012, 0.006852651480585337, -0.02429673820734024, 0.005170734133571386, 0.03402400389313698, -0.01634066365659237, -0.008227466605603695, 0.014926567673683167, -0.025882238522171974, 0.017926163971424103, -0.015883581712841988, -0.02391107566654682, 0.00878453440964222, 0.016983434557914734, -0.02021157182753086, -0.030653027817606926, -0.018540367484092712, -0.02815336361527443, -0.014840864576399326, 0.04462258145213127, 0.021539965644478798, -0.006131319794803858, 0.007099046837538481, -0.010591435246169567, 0.002003302564844489, 0.0028799704741686583, -0.008691689930856228, 0.027753416448831558, -0.01074141450226307, 0.03370976075530052, 0.022539831697940826, 0.01343391090631485, -0.003538810648024082, -0.03908046707510948, -0.026110779494047165, -0.0012935763224959373, 0.03505243733525276, 0.0391947366297245, -0.026967808604240417, -0.00767039880156517, 0.02361111529171467, 0.03493816778063774, 0.015583622269332409, -0.028524741530418396, 0.022239871323108673, 0.02675355039536953, -0.009163055568933487, -0.016383513808250427, 0.0065598334185779095, 0.0009409451158717275, -0.015012269839644432, -0.02418246679008007, 0.009055927395820618, -0.015269378200173378, -0.009270183742046356, -0.007145469076931477, 0.009363028220832348, -0.02032584324479103, 0.040166035294532776, 0.015226527117192745, -0.012805423699319363, -0.003065659897401929, -0.0017863672692328691, -0.010041508823633194, 0.02569654956459999, -0.021282857283949852, 0.016883447766304016, -0.014683743007481098, -0.030795864760875702, -0.0016122835222631693, 0.004910055082291365, 0.007677540648728609, -0.023496845737099648, 0.0004901127540506423, 0.05367850884795189, -0.01111279334872961, -0.005199301987886429, -0.00839173048734665, -0.0051278830505907536, 0.039109036326408386, -0.008506000973284245, -0.015869297087192535, 0.003920902032405138, -0.02456812933087349, -0.004767217207700014, 0.005620673764497042, -0.0025389448273926973, 0.006045616697520018, -0.035395245999097824, 0.0014390924479812384, -0.029138945043087006, -0.03599516674876213, 0.006624110508710146, -0.0024425291921943426, -0.03990892693400383, -0.0358237624168396, -0.01708342134952545, -0.022068465128540993, -0.010977097786962986, -0.0037852060049772263, -0.0022639818489551544, -0.002753201872110367, 0.03222424536943436, -0.03722357377409935, -0.003445965936407447, -0.009284467436373234, -0.014290938153862953, -0.02193991094827652, -0.023154033347964287, -0.016054987907409668, -0.009327319450676441, 0.01998303085565567, 0.006306296214461327, -0.0019229560857638717, -0.017897596582770348, 0.009577285498380661, 0.00439226720482111, -0.01584072969853878, 0.046879421919584274, -0.003288844134658575, 0.01111279334872961, -0.0009311249596066773, 0.015326513908803463, -0.010284333489835262, 0.01879747584462166, -0.007548986468464136, -0.022482695057988167, 0.019283125177025795, -0.026282185688614845, 0.042794253677129745, -0.007784669287502766, 0.0006217915215529501, 0.007756101433187723, -0.028281917795538902, -0.04036600887775421, 0.01256974134594202, 0.006374143995344639, -0.026053644716739655, 0.00876310933381319, -0.02535373903810978, -0.022239871323108673, 0.007691824343055487, 0.005356423556804657, 0.004095878452062607, 0.003188857575878501, 0.019411679357290268, 0.019725922495126724, -0.0009030037326738238, 0.014726594090461731, -0.021911343559622765, -0.03199570253491402, 0.007884656079113483, -0.04622236639261246, -0.029096093028783798, -0.020225856453180313, -0.014783729799091816, 0.030881568789482117, 0.004892200231552124, -0.025153765454888344, -0.0425371453166008, -0.009470157325267792, -0.005642099771648645, -0.012112659402191639, 0.005235011223703623, 0.04170868545770645, 0.01363388355821371, 0.0035870184656232595, -0.005063605960458517, 0.04125160351395607, -0.004863632842898369, 0.03213854134082794, -0.01130562461912632, 0.01758335344493389, -0.013219653628766537, -0.027439173310995102, 0.041451577097177505, 0.014562330208718777, -0.028024809435009956, -0.03268132731318474, -0.0009954021079465747, 0.0022479125764220953, 0.016083555296063423, 0.019725922495126724, -0.01239833515137434, -0.02356826514005661, -0.01562647335231304, 0.006549120880663395, -0.029881702736020088, -0.0009480870212428272, -0.005327856168150902, -0.032652758061885834, 0.007391864899545908, 0.021397126838564873, 0.031224379315972328, -0.00968441367149353, 0.01701200194656849, 0.02519661746919155, -0.006516982335597277, -0.004610095173120499, -0.008084628731012344, 0.0020568666514009237, -0.023196885362267494, 0.01214836910367012, 0.019268840551376343, 0.024696683511137962, -0.005220727529376745, 0.03768065571784973, 0.00954157579690218, 0.01896888203918934, -0.0014248087536543608, 0.015483635477721691, -0.03259562328457832, -0.004460115451365709, -0.007377580739557743, -0.003713787067681551, 0.019268840551376343, -0.007463283836841583, 0.007584696169942617, -0.010362894274294376, -0.0023889648728072643, 0.020840059965848923, -0.008363163098692894, -0.04222290217876434, -0.002740703523159027, 0.012726862914860249, -0.030595891177654266, -0.0021693515591323376, -0.01290541049093008, -0.018511800095438957, 0.005738515406847, -0.0135767487809062, 0.0026889247819781303, -0.01502655353397131, 0.011798416264355183, 0.0017515505896881223, -0.006084897089749575, -0.006891931872814894, 0.01449805311858654, -0.0047493623569607735, -0.02092576213181019, -0.01946881413459778, 0.24590983986854553, -0.016812028363347054, -0.0029656733386218548, 0.0375092513859272, 0.003021023003384471, -0.0031174386385828257, -0.011048516258597374, -0.0038102027028799057, 0.004720794968307018, 0.007074050139635801, -0.014519479125738144, -0.0162263922393322, -0.0022818364668637514, -0.0007802523905411363, 0.0324813537299633, -0.017940448597073555, -0.02519661746919155, -0.01624067686498165, -0.006002765614539385, 0.014540905132889748, -0.0008864881237968802, 0.006991918198764324, 0.005227869376540184, -0.006052758544683456, 0.0067276679910719395, -0.02625361829996109, -0.002703208476305008, 0.017654772847890854, 0.014826580882072449, 0.03553808480501175, -0.018711773678660393, 0.00015712175809312612, -0.008320311084389687, -0.014533762820065022, -0.0054207006469368935, -0.015040838159620762, 0.04108019918203354, 0.0020479392260313034, 0.010505732148885727, 0.015983568504452705, -0.012119801715016365, -0.016497785225510597, -0.0162263922393322, -0.015455068089067936, -0.0017747617093846202, 0.003613800508901477, 0.016469217836856842, -0.009691555984318256, -0.03199570253491402, 0.005474265199154615, -0.040051765739917755, -0.018168989568948746, 0.029653161764144897, 0.006920499261468649, -0.005577822681516409, -0.01802615076303482, 0.003781635081395507, -0.0033013424836099148, 0.0005209122318774462, -0.02054009959101677, 0.008805960416793823, 0.035738058388233185, -0.013805289752781391, 0.017154838889837265, -0.022739803418517113, 0.01111279334872961, -0.022982629016041756, -0.00022396547137759626, 0.017097704112529755, -0.022854074835777283, 0.004967190325260162, -0.0020765068475157022, -0.00792036484926939, -0.014140958897769451, -0.021539965644478798, -0.02452527917921543, 0.030938703566789627, 0.030795864760875702, -0.008941656909883022, -0.0037709223106503487, -0.018268976360559464, 0.016326379030942917, 0.025039495900273323, -0.012012672610580921, -0.025739401578903198, -0.030310215428471565, 0.021968478336930275, -0.022625533863902092, 0.00249073700979352, 0.007263310719281435, -0.008498858660459518, -0.010477164760231972, -0.011491314508020878, -0.011891260743141174, 0.009213048964738846, 0.004249429330229759, -0.02059723436832428, 0.018154704943299294, -0.03699503466486931, -0.004767217207700014, -0.007784669287502766, 0.023696817457675934, 0.03282416611909866, 0.02771056443452835, -0.021468546241521835, -0.00716689508408308, -0.02256839908659458, -0.006724097300320864, -0.009370170533657074, -0.010762840509414673, 0.003438824089244008, -0.05884924158453941, -0.010655712336301804, 0.0008186401100829244, -0.019668787717819214, -0.001803329330869019, 0.011169929057359695, -0.028510456904768944, -0.018683206290006638, -0.00819889921694994, -0.0009695126791484654, -0.05047893524169922, -0.0033084843307733536, 0.0005293932044878602, 0.0028514028526842594, -0.03773779049515724, -0.008034635335206985, 0.001233762945048511, -0.001261437777429819, -0.0447939857840538, 0.037252143025398254, -0.012983971275389194, 0.042622849345207214, -0.002513948129490018, -0.010427171364426613, 0.024311020970344543, -0.003629869781434536, -0.024725250899791718, 0.0007856088341213763, 0.0017497651278972626, 0.00800606794655323, 0.015040838159620762, 0.0470222570002079, -0.016726326197385788, 0.017697622999548912, -0.0077418177388608456, -0.006513411179184914, 0.021911343559622765, 0.010270049795508385, -0.005742086097598076, -0.04633663594722748, -0.01349104568362236, 0.003938756883144379, -0.014040972106158733, 0.012898268178105354, -0.011319908313453197, 0.0077775269746780396, -0.04182295501232147, 0.007252597715705633, 0.012619733810424805, -0.0470222570002079, -0.009363028220832348, 0.00028902370831929147, -0.025625130161643028, -0.004927909933030605, 0.005595677066594362, -0.18271832168102264, 0.03011024370789528, 0.03128151595592499, -0.011298483237624168, 0.023925358429551125, -0.012376910075545311, -0.001837253337725997, -0.004385125357657671, -0.012434044852852821, -0.0011177071137353778, 0.022354140877723694, 0.012084092013537884, -0.01562647335231304, -0.028796134516596794, -0.02865329571068287, -0.003267418360337615, -0.015983568504452705, -0.012469754554331303, 0.04585098847746849, 0.019283125177025795, 0.012248355895280838, -0.01601213589310646, 0.0014792656293138862, 0.00876310933381319, 0.009941522032022476, 0.030595891177654266, 0.01186983473598957, 0.004085165914148092, 0.019940180703997612, -0.02032584324479103, -0.005767082795500755, -0.024311020970344543, 0.02339685894548893, -0.00847743358463049, -0.008420297876000404, 0.0015881796134635806, -0.010141495615243912, 0.005767082795500755, -0.008627412840723991, -0.0028799704741686583, -0.006259873975068331, 0.045308202505111694, -0.008941656909883022, 0.0008186401100829244, 0.013119666837155819, 0.006020619999617338, -0.001497120363637805, -0.026453591883182526, -0.009591569192707539, 0.012691153213381767, 0.020840059965848923, -0.013333924114704132, 0.022354140877723694, -0.015126540325582027, 0.02738203853368759, 0.020054450258612633, -0.0033816888462752104, 0.01519795972853899, -0.012248355895280838, -0.014698026701807976, -0.0036370116285979748, -0.01128419954329729, -2.8051479603163898e-05, 0.003992320969700813, 0.0008074808865785599, -0.019854476675391197, 0.0013382132165133953, 0.028024809435009956, -0.026882104575634003, -0.00196580751799047, 0.0058492147363722324, -0.022182736545801163, 0.02261124923825264, -0.006495556328445673, 0.009891528636217117, 0.017597638070583344, -0.008577419444918633, 0.0088202441111207, 0.015326513908803463, 0.007420432288199663, -0.022311290726065636, 0.03242421895265579, -0.024253886193037033, -0.02088291011750698, 0.029310351237654686, -0.006570546422153711, 0.023825371637940407, -0.007356155198067427, -0.01942596398293972, -0.01584072969853878, 0.01768334023654461, -0.027667714282870293, -0.010977097786962986, 0.0008195328409783542, 0.001189126051031053, 0.007927507162094116, -0.005031467415392399, 0.010877110995352268, -0.008613129146397114, -0.006713384296745062, -0.008356020785868168, -7.05262427800335e-05, -0.029138945043087006, -0.013326781801879406, 0.015369364991784096, -0.013948127627372742, -0.009363028220832348, 0.021682802587747574, 0.0503932349383831, -0.003283487632870674, -0.004210148938000202, -9.730836609378457e-05, 0.008577419444918633, 0.0007530238945037127, -0.0004700261924881488, -3.453777389950119e-05, -0.02339685894548893, -0.008013210259377956, 0.03313840925693512, 0.002390750451013446, 0.0008052490302361548, -0.016426365822553635, 0.0046172370202839375, 0.022968344390392303, -0.013498187996447086, -0.0032745604403316975, -0.02928178198635578, -0.016440650448203087, 0.005342139862477779, 0.010734273120760918, -0.0008547959732823074, 0.026510726660490036, -0.02226843871176243, 0.03648081794381142, -0.0010311115765944123, 0.03622370958328247, -0.05159307271242142, -0.0391661711037159, -0.01829754374921322, 0.03379546105861664, 0.019668787717819214, 0.028910404071211815, -0.03056732378900051, 0.0010293261148035526, 0.0024657403118908405, 0.037423547357320786, -0.00872739963233471, -0.023553980514407158, -0.011855551041662693, -0.004438689909875393, 0.004331561271101236, 0.0024496710393577814, 0.004924338776618242, 0.0212685726583004, 0.013555322773754597, 0.018840327858924866, 0.029881702736020088, -0.008577419444918633, 0.011784132570028305, -0.014269513078033924, 0.00354059599339962, -0.007448999676853418, -0.03939471021294594, -0.0335669219493866, 0.009084494784474373, -0.022639816626906395, 0.007181178778409958, 0.021282857283949852, 0.012955402955412865, -0.0007722177542746067, -0.028524741530418396, -0.018268976360559464, -0.029481755569577217, 0.03325267881155014, -0.01869748905301094, 0.01992589607834816, -0.005138595588505268, -0.012262639589607716, 0.0006378607940860093, -0.024539561942219734, 0.018626071512699127, 0.011362760327756405, 0.003115653060376644, 0.026225050911307335, -0.03465249016880989, 0.01534079760313034, -0.014519479125738144, 0.004852919839322567, -0.01914028823375702, 0.03259562328457832, 0.013712444342672825, 0.015426499769091606, -0.019611652940511703, -0.02243984490633011, 0.031195811927318573, -0.009213048964738846, -0.005381420254707336, 0.05299288406968117, -0.0008173009846359491, 0.0380520336329937, -0.031481485813856125, -0.01812613755464554, -0.000753470289055258, 0.0026853536255657673, 0.029367486014962196, -0.01898316480219364, -0.01324107963591814, -0.00491362577304244, -0.00809177104383707, -0.014169526286423206, 0.03950897976756096, 0.03773779049515724, 0.0001400481560267508, -0.011577016673982143, 0.027667714282870293, -0.027853403240442276, 0.0064312792383134365, 0.0223969928920269, -0.015926433727145195, -0.034395381808280945, 0.0017952946946024895, -0.01239833515137434, 0.005731373559683561, 0.0025657268706709146, 0.0018069002544507384, 0.004170868545770645, -0.025953657925128937, 0.004081594757735729, -0.0884452685713768, 0.022354140877723694, 0.0025782252196222544, 0.004267284180969, 0.0232397373765707, -0.0046243793331086636, 0.026182198897004128, -0.007934648543596268, -0.006106323096901178, 0.006349147763103247, -0.01824040897190571, 0.021140018478035927, 0.005563538521528244, -0.01662633940577507, -0.028896119445562363, -0.03905189782381058, 0.03139578551054001, 0.010084359906613827, 0.010998522862792015, 0.014240944758057594, 0.004988615866750479, 0.003585232887417078, 0.03256705775856972, -0.014826580882072449, -0.024939509108662605, 0.0369378961622715, -0.005431413650512695, 0.02301119640469551, -0.011041374877095222, -0.015526486560702324, 0.004163726698607206, -0.012869700789451599, -0.011891260743141174, 0.03625227510929108, -0.0029674586839973927, 0.004006605129688978, -0.0005276077426970005, 0.015226527117192745, 0.03996606171131134, 0.011062799952924252, -0.00839173048734665, -0.02742488868534565, -0.0030174520798027515, -0.006070613395422697, -0.003154933452606201, -0.0033031278289854527, -0.0106342863291502, 0.026039360091090202, 0.018654638901352882, -0.029067525640130043, 0.02428245358169079, 0.017197690904140472, 0.008963081985712051, -0.029453188180923462, -0.022682668641209602, -0.05742086097598076, 0.00502432556822896, 0.018597502261400223, -0.01802615076303482, 0.00431013572961092, 0.028753282502293587, 0.010555725544691086, 0.02462526597082615, -0.02451099455356598, 0.008884521201252937, -0.00794893316924572, -0.027110645547509193, -0.007341871503740549, 0.015469351783394814, 0.002299691317602992, -0.017611920833587646, -0.023368291556835175, -0.0042815678752958775, -0.008370304480195045, -0.0022818364668637514, 0.009327319450676441, 0.019568800926208496, 0.012234071269631386, -0.00982725154608488, 0.017540501430630684, 0.026582146063447, -0.02378252148628235, -0.00022987984993960708, 0.013876708224415779, 0.021739937365055084, -0.021282857283949852, -0.039823222905397415, 0.00943444762378931, -0.025053778663277626, -0.005170734133571386, -0.02541087381541729, 0.02165423519909382, 0.004317277576774359, 0.007691824343055487, 0.006256302818655968, 0.009070211090147495, -0.009762974455952644, 0.0038316284772008657, 0.02044011279940605, 0.011648436076939106, -0.017540501430630684, 0.005738515406847, -0.012462612241506577, -0.0021979191806167364, -0.007209746167063713, 0.014405208639800549, -0.026910671964287758, -0.019554518163204193, 0.0011516311205923557, 0.03436681255698204, -0.026853537186980247, 0.020125869661569595, -0.028396187350153923, 0.037480682134628296, -0.028424754738807678, 0.021754221990704536, -0.018740341067314148, -0.01164129376411438, -0.015012269839644432, 0.015555053949356079, 0.008213182911276817, 0.007270452566444874, 0.011712713167071342, -0.015926433727145195, 0.029853135347366333, -0.029567459598183632, 0.014433776028454304, -0.030881568789482117, -0.013648167252540588, 0.025339454412460327, -0.003260276513174176, 0.009463015012443066, -0.010869968682527542, -0.01139132771641016, -0.015212243422865868, 0.020225856453180313, -0.023468278348445892, 0.011855551041662693, 0.008377446793019772, 0.08233180642127991, 0.018954597413539886, -0.02065436914563179, 5.7051493058679625e-05, -0.0149694187566638, 0.003695932449772954, 0.003081729169934988, 0.010012941434979439, -7.621744589414448e-05, -0.034623920917510986, 0.00987724494189024, -0.0020693650003522635, -0.03605230152606964, -0.005917062517255545, 0.021697087213397026, -0.0022639818489551544, -0.007763243280351162, 0.030795864760875702, -0.0011248489608988166, -0.007184749469161034, 0.01634066365659237, -0.017769042402505875, 0.030367352068424225, 0.010220056399703026, -0.015140824019908905, -0.006034904159605503, 0.003874479793012142, 0.0013649952597916126, -0.0009971875697374344, -0.003547737840563059, 0.021811356768012047, 0.015383648686110973, -0.022425560280680656, -0.04213719815015793, -0.023311156779527664, -0.0013873137068003416, 0.0012471539666876197, 0.011998388916254044, 0.03659508749842644, -0.0048279231414198875, -0.01656920462846756, 0.013648167252540588, -0.01746908389031887, -0.00691335741430521, -0.003053161548450589, -0.015512202866375446, -0.01010578591376543, -0.007734675891697407, -0.025953657925128937], "7ad21d09-559c-4e47-92c4-2a2e60192654": [-0.014618677087128162, 0.022434046491980553, 0.014098589308559895, -0.023994309827685356, -0.03280768543481827, 0.008314372971653938, 0.021309534087777138, -0.029209241271018982, -0.002985232276841998, -0.03944231569766998, 0.02094406634569168, -0.004023650195449591, -0.019735215231776237, -0.02129547670483589, -0.01610865816473961, -0.0024809581227600574, 0.004877578001469374, -0.003984995186328888, 0.007934849709272385, -0.021871790289878845, 0.008539275266230106, -0.01960870623588562, -0.039470430463552475, -0.026116829365491867, 0.004789725411683321, -0.010647738352417946, 0.001021726056933403, -0.02256055548787117, 0.008553331717848778, 0.0013300888240337372, 0.024205155670642853, 0.0006338566890917718, 0.005028684623539448, -0.030980350449681282, -0.006996583193540573, -0.0024335177149623632, -0.013473078608512878, 0.010879669338464737, 0.027944164350628853, 0.002096163807436824, 0.03325749188661575, 1.641745984670706e-05, -0.0027164032217115164, -0.004122045356780291, 0.002437031827867031, 0.024598736315965652, 0.0018413910875096917, -0.010401750914752483, -0.013332515023648739, 0.020269358530640602, 0.0037038668524473906, 0.0023755349684506655, -0.046751655638217926, -0.025807587429881096, 0.0071898591704666615, -0.006856019143015146, 0.0031222824472934008, 0.02074727602303028, -0.037980448454618454, -0.007463959511369467, 0.023642899468541145, 0.01066882349550724, -0.01582752913236618, -0.006364044267684221, 0.017373735085129738, -0.019707102328538895, -0.028843775391578674, -0.009108560159802437, -0.01728939637541771, -0.011118629015982151, 0.031795624643564224, 0.018245233222842216, 0.0062937624752521515, 0.0014495683135464787, 0.033960312604904175, -0.017935993149876595, -0.014815467409789562, 0.008208949118852615, 0.022223200649023056, -0.0033893543295562267, 0.011209995485842228, -0.01615082658827305, 0.018765321001410484, -0.041522666811943054, 0.004849465098232031, 0.010739104822278023, -0.02055048756301403, 0.029630934819579124, -0.009164785966277122, -0.021674999967217445, 0.010823443531990051, 0.013676896691322327, 0.007365564350038767, 0.009171814657747746, -0.010057369247078896, -0.008490078151226044, -0.02752247080206871, 0.029855838045477867, -0.017697032541036606, -0.03921741247177124, -0.001491737668402493, 0.002542454982176423, -0.017106663435697556, -0.0011297848541289568, -0.03370729461312294, -0.032582782208919525, 0.0326671227812767, -0.006838448345661163, -0.021604718640446663, 0.00214009010232985, -0.0008978538680821657, 0.009888691827654839, 0.0031890503596514463, -0.0021119771990925074, -0.06280408799648285, 0.015658851712942123, 0.050574999302625656, -0.021042460575699806, -0.03381974622607231, -0.02795821987092495, 0.014857636764645576, 0.02649635262787342, 0.011659801006317139, -0.025484289973974228, 0.011273249052464962, 0.020761333405971527, 0.014674902893602848, -0.007217972073704004, 0.0064378404058516026, -0.024008365347981453, 0.04838220030069351, 0.004013108089566231, 0.0273678507655859, 0.00978326890617609, 0.005861527286469936, -0.0002124935417668894, -0.012875680811703205, 0.008609557524323463, -0.01768297702074051, -0.0032031068112701178, 0.026018435135483742, 0.009066390804946423, -0.005893154069781303, -0.01578536070883274, 0.004796753637492657, 0.0024792011827230453, 0.013184922747313976, 0.020297471433877945, 0.017542412504553795, 0.005460919346660376, 0.02511882409453392, -0.00278141419403255, 0.0032927165739238262, 0.008848516270518303, -0.004304778762161732, -0.009670817293226719, 0.024148929864168167, 0.008005131036043167, -0.008574416860938072, -0.016727140173316002, -0.0035510032903403044, 0.023572616279125214, 0.013023274019360542, -0.0049865152686834335, -0.008293287828564644, 0.024345720186829567, -0.009937888942658901, -0.0017456316854804754, -0.0016560220392420888, 0.010331468656659126, -0.018006274476647377, 0.017528356984257698, -0.029068676754832268, 0.012503186240792274, -0.030052626505494118, 0.02173122577369213, 0.028450194746255875, 0.0024844722356647253, -0.009811381809413433, -0.0027164032217115164, -0.013501191511750221, -0.008820404298603535, 0.0020750791300088167, 0.0027603295166045427, -0.0001287040940951556, -0.025456177070736885, 0.013093555346131325, 0.0007994589395821095, 0.005362524650990963, -0.014063448645174503, 0.02319309301674366, 0.03449445590376854, 0.022110749036073685, -0.0015831043710932136, -0.5860965251922607, -0.038092900067567825, -0.02437383309006691, 0.002326337620615959, 0.019707102328538895, 0.01787976734340191, 0.015588570386171341, 0.01646006852388382, -0.02168905735015869, 0.038177236914634705, -0.00781536940485239, 0.03095223754644394, 0.021590661257505417, 0.005924781318753958, -0.02212480641901493, -0.02606060355901718, 0.0019151873420923948, -0.008124611340463161, -0.004814323969185352, 0.01504036970436573, -0.027199173346161842, 0.008827432058751583, -0.01818900741636753, 0.0060442606918513775, -0.007478015497326851, 0.0021330618765205145, -0.003169722855091095, -0.009206955321133137, 0.005137621890753508, 0.026665030047297478, -0.019144844263792038, -0.010732077062129974, 0.014843580313026905, -0.018174951896071434, 0.042815856635570526, -0.009614591486752033, -0.03918930143117905, 0.015026313252747059, 0.01626327820122242, 0.042197372764348984, -0.02701644040644169, -0.01740184798836708, 0.015321498736739159, -0.00013068078260403126, -0.004076362121850252, -0.0032312197145074606, 0.012721060775220394, -0.0095513379201293, 0.024936089292168617, -0.016741197556257248, -0.024584678933024406, -0.0242192130535841, -0.0071898591704666615, -0.010057369247078896, 0.012910822406411171, 0.0027164032217115164, 0.017964106053113937, -0.011638715863227844, -0.004216926172375679, -0.018301459029316902, -0.011905788443982601, 0.029827725142240524, -0.01392288412898779, -0.011708998121321201, -0.011701970361173153, 0.004849465098232031, -0.004209897946566343, 0.001125392154790461, 0.00899610947817564, -0.016516294330358505, -0.007773200515657663, 0.00219982978887856, 0.012025267817080021, 0.014386746101081371, 0.03626556321978569, 0.008686867542564869, 0.01633356139063835, -0.01862475648522377, -0.014330520294606686, 0.020128794014453888, 0.005042741075158119, -0.008180837146937847, -0.00460699200630188, -0.013058414682745934, -0.0085603604093194, -0.015068482607603073, -0.020452091470360756, 0.003088898491114378, -0.007899708114564419, 0.0035949295852333307, 0.026271449401974678, 0.005966950673609972, 0.04228171333670616, -0.006673285737633705, -0.011997154913842678, 0.017191002145409584, -0.04385603219270706, -0.019201070070266724, -0.02606060355901718, -0.007885651662945747, -0.032498445361852646, 0.002756815403699875, 0.021787451580166817, -0.006371072493493557, 0.020845672115683556, -0.0018536904826760292, -0.01669902727007866, -0.011919844895601273, 0.018062500283122063, -0.011744139716029167, -0.004596449434757233, -0.0002179843286285177, -0.008989080786705017, -0.005735019687563181, 0.007217972073704004, -0.03634990379214287, 0.033482395112514496, 0.0188918299973011, -0.0006167254759930074, 0.011217023245990276, 0.026116829365491867, 0.0055206590332090855, 0.03516916558146477, 0.024640904739499092, -0.0051165372133255005, 0.02811284177005291, 0.04059494286775589, 0.010725049301981926, 0.006346473935991526, 0.006704912520945072, 0.009600535035133362, 0.003689810400828719, 0.012334508821368217, -0.021253308281302452, -0.007316366769373417, -0.021632831543684006, 0.016164883971214294, -0.0012439931742846966, 0.01488574966788292, -0.03941420465707779, -0.006655714940279722, 0.004146643914282322, -0.0071090348064899445, -0.02299630455672741, -0.018849659711122513, -0.015194990672171116, 0.02153443545103073, 0.012587524950504303, 0.005366038531064987, 0.011540321633219719, 0.0018993738340213895, 0.008173808455467224, -0.017064495012164116, 0.021562548354268074, -0.0021541465539485216, 0.007123091258108616, -0.009010165929794312, -0.023685067892074585, -0.0038092900067567825, -0.02035369724035263, -0.0035316755529493093, -0.0226448941975832, -0.022785456851124763, -0.024430058896541595, -0.010457976721227169, -0.028042558580636978, 0.009825438261032104, 0.00030528788920491934, -0.018849659711122513, -0.02229348197579384, -0.016980156302452087, 0.016235165297985077, -0.012383706867694855, -0.0033629985991865396, 0.0006659229402430356, 0.001625273609533906, -0.01344496663659811, 0.004793239291757345, 0.010310384444892406, -0.011947957798838615, -0.007618580013513565, 0.01650223694741726, 0.001283526886254549, 0.0019995258189737797, 0.001280891359783709, 0.03485992178320885, 0.01167385745793581, 0.021843677386641502, -0.02185773476958275, 0.006887645926326513, -0.018357684835791588, 0.011990126222372055, -0.0014363904483616352, 0.016207052394747734, -0.005000571720302105, 0.014492169953882694, -0.01637572981417179, 0.006820878013968468, -0.007520184852182865, 0.0202834140509367, 0.026074660941958427, 0.034944262355566025, -0.0014495683135464787, -0.009811381809413433, 0.0026918044313788414, -0.038880057632923126, 0.02227942645549774, -0.009874635376036167, 0.006919273175299168, -0.00722500029951334, -0.012074464932084084, -0.007962962612509727, -0.03196430206298828, 0.006321874912828207, 0.0059318095445632935, 0.013676896691322327, -0.007337451446801424, 0.00539415143430233, 0.0033401569817215204, -0.0058509851805865765, 0.021056517958641052, -0.004585907328873873, 0.02854859083890915, -0.02114085666835308, -0.0071090348064899445, 0.007323394995182753, 0.0018238205229863524, 0.04498054459691048, 0.0059950631111860275, -0.014435944147408009, -0.012854596599936485, -0.016881760209798813, 0.007260140962898731, -0.006251593120396137, 0.02004445530474186, -0.018301459029316902, 0.048607103526592255, -0.02485175058245659, 0.02260272391140461, 0.023361770436167717, -0.016446011140942574, -0.00036832212936133146, 0.01792193576693535, -0.02979961223900318, 0.007878623902797699, -0.013318458572030067, 0.04141021519899368, 0.021590661257505417, -0.010029256343841553, 0.004385603126138449, -0.024669017642736435, -0.008187864907085896, -0.0128967659547925, 0.006019662134349346, 0.008019187487661839, -0.016952043399214745, -0.005341439973562956, 0.015448005869984627, 0.0005275550065562129, 0.027789542451500893, 0.02472524344921112, 0.029040563851594925, 0.016558462753891945, 0.0001803175255190581, 0.004983000922948122, -0.02251838520169258, -0.01972115784883499, -0.011990126222372055, 0.01348713506013155, -0.01818900741636753, -0.014070477336645126, 0.014506226405501366, -0.0027603295166045427, 0.015194990672171116, -0.0064870379865169525, -0.011315418407320976, 0.0092561524361372, 0.0017614451935514808, 0.03753064200282097, 0.0034982915967702866, 0.002147118328139186, -0.019088618457317352, 0.011680885218083858, 0.0127983707934618, 0.010401750914752483, -0.0007845239597372711, 0.01124513614922762, -0.018287403509020805, -0.012945963069796562, 0.01489980611950159, 0.025807587429881096, -0.005858013406395912, 0.01700826920568943, 0.0020856214687228203, 0.02334771491587162, 0.0017623236635699868, 0.0171207208186388, -0.009101532399654388, -0.0551292821764946, -0.011962014250457287, 0.011926872655749321, -0.0030414580833166838, 0.017036382108926773, -0.0034086820669472218, 0.0705070048570633, 0.005875583738088608, 0.002772629028186202, -0.015026313252747059, 0.0030449721962213516, 0.005000571720302105, -0.006258621346205473, -0.018990224227309227, -0.01598215103149414, 0.000838553358335048, -0.0038690296933054924, 0.009579450823366642, 0.024205155670642853, -0.03075544722378254, 0.00978326890617609, -0.008904742076992989, -0.019833609461784363, -0.007038752548396587, -0.02835180051624775, 0.010816415771842003, -0.00015418136899825186, 0.016389787197113037, 0.001282648416236043, -0.003197835758328438, -0.02629956230521202, 0.0023983768187463284, -0.026510408148169518, 0.013276289217174053, -0.002182259224355221, 0.0012993403943255544, 0.031177140772342682, 0.011470039375126362, 0.02681965008378029, 0.010183876380324364, -0.007864567451179028, -0.017654864117503166, -0.00927020888775587, -0.017893822863698006, 0.04101663455367088, -0.0003134142607450485, -0.012271255254745483, 0.005872069858014584, -0.0030520001892000437, 0.03629367798566818, -0.010999148711562157, -0.02507665380835533, -0.013606615364551544, 0.023755351081490517, 0.008665783330798149, -0.022349707782268524, 0.002410676097497344, 0.0055593145079910755, 0.003981481306254864, 0.017514299601316452, -0.015518288128077984, 0.019046450033783913, 0.027297569438815117, 0.009572422131896019, 0.016488181427121162, 0.013339542783796787, -0.0010164548875764012, 0.00889771431684494, -0.0009874635143205523, -0.01459056418389082, 0.018104668706655502, -0.005415236111730337, 0.01100617740303278, 0.01783759705722332, 0.010563399642705917, -0.014492169953882694, 0.007998103275895119, -0.020466148853302002, -0.04295641928911209, -0.0014223339967429638, -0.0045929355546832085, 0.027508415281772614, -0.017935993149876595, 0.008005131036043167, 0.00534495385363698, -0.012200972996652126, -0.004698358476161957, -0.004701872821897268, 0.017275340855121613, -0.00011860104859806597, -0.030530545860528946, -0.02909678965806961, -0.04807295650243759, -0.036715369671583176, -0.014745185151696205, 0.011118629015982151, 0.016825534403324127, -0.031908076256513596, -0.026791537180542946, 0.01236262172460556, 0.0224481038749218, -0.00449805473908782, 0.03649046644568443, -0.007309338543564081, -0.006314846687018871, 0.015560457482933998, 0.0046245623379945755, -0.003925255499780178, -0.01423212606459856, 0.0021892874501645565, 0.026327675208449364, 0.01494197454303503, -0.020887840539216995, -0.006086430046707392, -0.014112645760178566, 0.009958974085748196, 0.01133650355041027, 0.0042801802046597, 0.02149226702749729, 0.014703015796840191, 0.007702918257564306, -0.016403842717409134, 0.015855642035603523, 0.024893920868635178, -0.019032392650842667, -0.025849757716059685, 0.04177568107843399, -0.0480448454618454, -0.014140758663415909, -0.0024546023923903704, 0.0025846243370324373, 0.003148638177663088, 0.013943969272077084, 0.01523716002702713, 0.025807587429881096, -0.0012255441397428513, 0.0040517630986869335, -0.004185299389064312, 0.01326926052570343, -0.015883754938840866, -0.00927020888775587, 0.0036827821750193834, -0.008932854980230331, -0.0006127720698714256, 0.005819357931613922, -0.002440545940771699, 0.004111502785235643, -0.020423978567123413, 0.04458696395158768, 0.004368032794445753, 0.010710992850363255, -0.0029782040510326624, 0.0015084296464920044, -0.03016507811844349, -0.0009040035656653345, 0.01586969941854477, -0.011877675540745258, 0.02247621677815914, -0.022419990971684456, -0.01779542863368988, -0.0022419991437345743, -0.012200972996652126, -0.016319504007697105, 0.02500637248158455, -0.023656954988837242, -0.02008662559092045, 0.005165734328329563, -0.027114834636449814, 0.010542315430939198, 0.018680982291698456, 0.023319602012634277, -0.02177339605987072, -0.004097446799278259, 0.009544309228658676, 0.006975498516112566, -0.0014469327870756388, 0.023811576887965202, 0.007123091258108616, -0.027859825640916824, 0.001386314514093101, -0.0003094608837272972, -0.020775388926267624, -0.02240593358874321, 0.004501568619161844, 0.0287453792989254, 0.02153443545103073, 0.01513876486569643, 0.006873589474707842, -0.009066390804946423, -0.012489129789173603, 0.022771401330828667, 0.014204013161361217, -0.003819832345470786, 0.013712038286030293, -0.01807655766606331, -0.0273678507655859, 0.006996583193540573, 0.01949625462293625, 0.0005134986131452024, -0.0238256324082613, -0.016783365979790688, 0.018807491287589073, -0.0023790490813553333, 0.01827334612607956, -0.018751265481114388, -0.04422149807214737, -0.0008187865023501217, 0.005587426945567131, 0.0006351745105348527, 0.0020785932429134846, -0.032104864716529846, -0.002227942692115903, 0.017612695693969727, -0.004954888019710779, 0.00846899300813675, -0.0058509851805865765, 0.012615637853741646, -0.02050831727683544, 0.0222513135522604, -0.027297569438815117, 0.001728939707390964, -0.0061637405306100845, -0.0019819552544504404, -0.023249318823218346, 0.0032698747236281633, -0.007154718041419983, -0.019538424909114838, -0.01203229557722807, -0.0015637767501175404, -0.00913667306303978, 0.024669017642736435, -0.010106566362082958, -0.03137392923235893, -0.019932003691792488, 0.0005969586200080812, 0.00372143741697073, -0.02374129369854927, -0.0031820221338421106, -0.01533555518835783, -0.015883754938840866, 0.03162694722414017, 0.015954038128256798, 0.011132685467600822, 0.0014293622225522995, -0.020100681111216545, -0.031514495611190796, 0.0011649258667603135, -0.03047432005405426, 0.006701398640871048, -0.008553331717848778, 0.028956227004528046, 0.03047432005405426, 0.018568530678749084, -0.012271255254745483, -0.054004766047000885, -0.0061250850558280945, 0.000917181430850178, 0.025428064167499542, 0.06375992298126221, -0.03410087525844574, -0.0060442606918513775, 0.026918046176433563, 0.026791537180542946, -0.008019187487661839, -0.018526362255215645, 0.019510312005877495, 0.051952529698610306, 0.0018800462130457163, -0.01991794817149639, 0.015265272930264473, -0.021913958713412285, 0.02220914512872696, -0.01626327820122242, -0.006610031705349684, -0.007260140962898731, -0.013810433447360992, -0.0006351745105348527, 0.05102480575442314, 0.00017504635616205633, 0.019482199102640152, 0.013473078608512878, -0.025456177070736885, -0.012095550075173378, -0.016881760209798813, -0.005267643369734287, 0.026088716462254524, -0.020620768889784813, 0.031908076256513596, -0.020691050216555595, -0.011448954232037067, -0.0009505654452368617, 0.007151203695684671, -0.0015549914678558707, -0.017739202827215195, -0.005615539848804474, 0.054904378950595856, -0.005137621890753508, -0.031036576256155968, 0.004469941835850477, 0.004118531011044979, 0.026412013918161392, 0.004684302024543285, -0.006283219903707504, 0.024162987247109413, -0.029518483206629753, 0.001648115343414247, 0.008082441985607147, -0.015223103575408459, -0.0112240519374609, -0.025793531909585, 0.0014952517813071609, -0.02748030237853527, -0.01897616684436798, -0.02527344413101673, -0.0034649076405912638, -0.03814912587404251, -0.023207150399684906, -0.022546498104929924, -0.010317412205040455, 0.010535286739468575, 0.0073515078984200954, -0.002595166675746441, 0.019510312005877495, 0.03913307562470436, -0.03128959238529205, 0.010233074426651001, -0.02960282191634178, -0.0022736259270459414, -0.02771926112473011, -0.017191002145409584, 3.980822293669917e-05, -0.029996400699019432, 0.028323687613010406, -0.013887743465602398, 0.0035826300736516714, -0.004164214711636305, 0.006866561248898506, 0.012186916545033455, -0.01123810838907957, 0.02334771491587162, -0.014815467409789562, 0.007681833580136299, 0.012889737263321877, -0.00036019578692503273, -0.020958123728632927, 0.01700826920568943, 0.007639664690941572, -0.021984241902828217, 0.00602317601442337, -0.03303258866071701, 0.04975972697138786, 0.008300316520035267, 0.0093545475974679, -0.01696609891951084, -0.04911313205957413, -0.04059494286775589, 0.014295379631221294, 0.013184922747313976, -0.01665685884654522, 0.000499002926517278, -0.02149226702749729, -0.023881858214735985, 0.004930289462208748, -0.0019204583950340748, -0.006831420585513115, -0.006522179115563631, 0.014731128700077534, 0.023811576887965202, -0.010949951596558094, 0.034635018557310104, -0.0028675098437815905, -0.016277335584163666, 0.0027954706456512213, -0.03145826980471611, -0.031598832458257675, -0.034072764217853546, -0.02168905735015869, 0.03694027289748192, 0.024472227320075035, -0.006550292018800974, -0.04548657685518265, 0.00456833653151989, -0.02409270405769348, 0.0054398346692323685, 0.001888831495307386, 0.05532607063651085, 0.02662285976111889, 0.009860578924417496, -0.008370598778128624, 0.03272334858775139, -0.019425973296165466, 0.023333657532930374, -0.01468895934522152, 0.005907210521399975, 0.006089944392442703, -0.013058414682745934, 0.03173939883708954, 0.01795004867017269, -0.004483998287469149, -0.009769212454557419, 0.019946061074733734, 0.005910724867135286, 0.015701021999120712, 0.015771303325891495, 0.0034666648134589195, -0.03862704336643219, -0.003296230686828494, -0.008911770768463612, -0.030614884570240974, -0.017429960891604424, -0.014871693216264248, -0.017668919637799263, 0.00042081408901140094, 0.012756201438605785, 0.0021172482520341873, -0.007038752548396587, 0.021239250898361206, 0.02389591559767723, -0.008953940123319626, -0.007850510999560356, -0.0004484876699279994, -0.017528356984257698, -0.01873720809817314, -0.009727043099701405, 0.02909678965806961, 0.01489980611950159, 0.014084533788263798, 0.012369650416076183, 0.00706686545163393, 0.01311464048922062, -0.01248210109770298, 0.019552480429410934, -0.030305642634630203, 0.0007665141602046788, 0.008960967883467674, -0.010317412205040455, 0.0094529427587986, -0.0026847762055695057, 0.0060934582725167274, -0.013416853733360767, -0.016516294330358505, 0.019932003691792488, -0.019397860392928123, -0.048016730695962906, 0.016291391104459763, 0.023052530363202095, -0.014421887695789337, -0.015588570386171341, 0.011498152278363705, -0.012615637853741646, 0.013571473769843578, -0.021787451580166817, 0.00020030399900861084, -0.014379718340933323, 0.01901833713054657, 0.005952894221991301, -0.0006316603976301849, 0.0010779517469927669, 0.0037425218615680933, -0.020972179248929024, -0.05619756877422333, -0.004902176558971405, 0.2626863718032837, -0.026369845494627953, -0.021562548354268074, 0.0342414416372776, -0.007182830944657326, 0.006476495880633593, 0.0049056909047067165, 0.0015022798907011747, -0.020733220502734184, 0.02146415412425995, 0.0013318458804860711, -0.0060829161666333675, 0.0003740325628314167, -0.006216451991349459, 0.015405836515128613, -0.01945408619940281, -0.04365924373269081, -0.009101532399654388, -0.010739104822278023, -0.014731128700077534, 0.010211989283561707, 0.019552480429410934, 0.02406459115445614, -0.010197932831943035, 0.004441828932613134, -0.017345622181892395, 0.01133650355041027, -0.007653721142560244, 0.031120914965867996, 0.02343205362558365, -0.011940929107367992, -0.008476021699607372, -0.012397763319313526, 0.003616014262661338, -0.024472227320075035, -0.0043434337712824345, 0.026833707466721535, 0.009895719587802887, 0.02417704276740551, 0.00015758565859869123, -0.009832466021180153, -0.009410773403942585, -0.005531201604753733, -0.03449445590376854, -0.005063825286924839, 0.0005807058769278228, 0.00038677119300700724, 0.011343531310558319, -0.01913078874349594, 0.00858144462108612, -0.03643424063920975, -0.022701120004057884, 0.052936479449272156, 0.00023324873473029584, 0.0048354086466133595, -0.008764178492128849, 0.026313619688153267, -0.013789348304271698, -0.016642801463603973, -0.015082539059221745, 0.00014528627798426896, 0.047117121517658234, -0.02811284177005291, 0.013142753392457962, -0.019032392650842667, 0.011308390647172928, -0.011118629015982151, -0.011364615522325039, 0.01740184798836708, -0.009495112113654613, 0.008771206252276897, -0.004810810089111328, -0.025034485384821892, -0.007843482308089733, -0.04337811470031738, -0.012432903982698917, 0.021197082474827766, 0.03677159547805786, -0.0006711940513923764, 0.0012466288171708584, -0.009150729514658451, -0.003616014262661338, -0.0024124332703649998, 0.008588473312556744, -0.019861722365021706, -0.037699319422245026, 0.011800364591181278, -0.01960870623588562, -0.006342959590256214, 0.00944591499865055, -0.01705043762922287, 0.03331371769309044, 0.0028639957308769226, -0.011385700665414333, -0.007822398096323013, -0.008286260068416595, -0.01744401827454567, 0.02979961223900318, 0.007042266894131899, 0.005165734328329563, -0.022574611008167267, 0.02949037030339241, 0.02102840505540371, 0.03840214014053345, -0.0206769946962595, -0.01488574966788292, -0.01735967956483364, 0.007492071948945522, -0.011111600324511528, -0.012489129789173603, 0.0063253892585635185, -0.05501683056354523, -0.0012975833378732204, -0.0026408499106764793, -0.001179860788397491, 0.011568433605134487, -0.006553805898874998, -0.015743190422654152, -0.0018642328213900328, 0.012489129789173603, 0.020494261756539345, -0.03879572078585625, -0.008040272630751133, -0.011568433605134487, 0.0006250714650377631, -0.03359484672546387, -0.010949951596558094, -0.008665783330798149, -0.0011983098229393363, -0.02622928097844124, 0.04593638330698013, -0.017893822863698006, 0.03840214014053345, -0.005088424310088158, -0.0036195283755660057, -0.001416184357367456, 0.0018730179872363806, 0.008026216179132462, 0.00460699200630188, -0.005492546129971743, 0.010233074426651001, 0.0063745868392288685, 0.0013450237456709146, 0.008848516270518303, 0.0038338887970894575, 0.00933346338570118, 0.0037882053293287754, 0.011308390647172928, -0.006532721221446991, -0.00803324393928051, -0.02863292768597603, -0.021351702511310577, -0.005945865996181965, 0.0024177043233066797, 0.03393219783902168, 0.006265649572014809, -0.019201070070266724, -0.0401732511818409, 0.004923261236399412, 0.013325486332178116, -0.03536595404148102, 0.0077450876124203205, 0.01606648787856102, -0.0171207208186388, -0.008644698187708855, 0.008440880104899406, -0.1803719848394394, 0.02389591559767723, 0.02078944630920887, -0.00846899300813675, 0.020297471433877945, 0.002489743521437049, 0.005264129489660263, 0.0032698747236281633, -0.011111600324511528, 0.009312378242611885, 0.026004377752542496, 0.019187014549970627, -0.02791605144739151, -0.02527344413101673, -0.007158231921494007, -0.007752115838229656, -0.03202052414417267, 0.0023210663348436356, 0.055494748055934906, 0.015799416229128838, 0.04264717921614647, -0.02279951423406601, -0.011547349393367767, 0.025259386748075485, -0.0014574751257896423, 0.019538424909114838, -0.0062937624752521515, 0.007843482308089733, 0.02035369724035263, 0.0005341439973562956, -0.012721060775220394, -0.007653721142560244, 0.017022324725985527, 0.011076459661126137, -0.02445817179977894, -0.018751265481114388, -0.006989554967731237, -0.0022384850308299065, -0.005847470834851265, 0.00889771431684494, 0.010830472223460674, 0.01145598292350769, -0.010528258979320526, 0.0095513379201293, 0.020311526954174042, 0.028928114101290703, -0.0005846592248417437, -0.022982247173786163, -0.004944345913827419, -0.00966378953307867, 0.00844790879637003, -0.04689221829175949, 0.011308390647172928, -0.027255399152636528, 0.01489980611950159, 0.018287403509020805, 0.010640710592269897, -0.0004427772364579141, 0.008967996574938297, 0.003064299700781703, -0.007203915622085333, -0.016544407233595848, 0.012039324268698692, 0.011048346757888794, 0.007934849709272385, 0.005678793881088495, -0.022391878068447113, 0.020719163119792938, -0.009410773403942585, 0.0012220300268381834, -0.00075772893615067, -0.02019907534122467, 0.018174951896071434, -0.00811055488884449, 0.040623053908348083, -0.0011728325625881553, -0.002960633486509323, 0.015012256801128387, 0.017345622181892395, -0.004909204784780741, -0.033173151314258575, 0.04247850179672241, -0.010605568997561932, -0.028253404423594475, 0.018990224227309227, 0.011807393282651901, 0.03421332687139511, 0.006715455092489719, -0.02721323072910309, -0.02330554462969303, 0.04166322946548462, -0.03469124436378479, -0.017458073794841766, -0.0007471865974366665, 0.02358667366206646, 0.013002188876271248, -0.005893154069781303, -0.0017948291497305036, -0.011863619089126587, 0.0009681359515525401, -0.011723054572939873, -0.00968487374484539, -0.01393694058060646, 0.017654864117503166, 0.012355593964457512, 0.0005429292214103043, -0.021956128999590874, 0.03232976794242859, 0.047229573130607605, -0.0033383998088538647, 0.004831894766539335, 0.0019854693673551083, 0.0019151873420923948, -0.0023421510122716427, -0.0023966196458786726, 0.003066056640818715, -0.042225487530231476, -0.0169239304959774, -0.0030748420394957066, -0.014323492534458637, -0.0062551070004701614, -0.025582686066627502, 0.003935797605663538, 0.02807067148387432, 0.009171814657747746, -0.009319406934082508, -0.0382053516805172, -0.017851654440164566, 0.009340491145849228, 0.02197018451988697, -0.015925925225019455, 0.028056615963578224, -0.0010305113391950727, 0.03241410478949547, -0.014998200349509716, 0.012320452369749546, -0.020564543083310127, -0.027199173346161842, -0.02039586566388607, 0.03831780329346657, 0.02968716062605381, 0.023600729182362556, -0.02247621677815914, 0.009242096915841103, 0.006996583193540573, 0.04022947698831558, -0.010823443531990051, -0.021984241902828217, -0.01854041777551174, -0.004852978978306055, -0.017219115048646927, -0.0028762950096279383, -0.004227468278259039, 0.019510312005877495, 0.02590598352253437, 0.020255301147699356, 0.05228988453745842, 0.008967996574938297, -0.006560834124684334, -0.012503186240792274, -0.020915953442454338, -0.027648979797959328, -0.043406225740909576, -0.04107286036014557, 0.01980549655854702, -0.03393219783902168, 0.010127650573849678, -0.0027076180558651686, 0.016164883971214294, 0.0084619652479887, -0.007316366769373417, 0.0021260336507111788, -0.022377820685505867, 0.03508482500910759, 0.0029430631548166275, -0.029321692883968353, -0.00634998781606555, 0.006037232466042042, 0.020016342401504517, -0.03918930143117905, 0.025146936997771263, 0.016291391104459763, 0.030980350449681282, 0.015560457482933998, -0.03643424063920975, 0.015925925225019455, -0.013768264092504978, 0.011624659411609173, -0.015757247805595398, 0.02485175058245659, 0.015968093648552895, 0.002013582270592451, -0.01336765568703413, -0.002705860882997513, 0.005084909964352846, -0.012067437171936035, -0.0019204583950340748, 0.017528356984257698, -0.013459023088216782, 0.015166877768933773, -0.02055048756301403, -0.017893822863698006, -0.015532344579696655, -0.016586575657129288, 0.014175900258123875, -0.016544407233595848, 0.0018396340310573578, 0.0032909594010561705, -0.01877937838435173, -7.945171819301322e-05, 0.020887840539216995, 0.02767709270119667, -0.0013986137928441167, -0.01324817631393671, 0.003616014262661338, -0.01381746120750904, -0.007428818382322788, 0.022869795560836792, -0.0014891020255163312, -0.033369943499565125, -0.025723248720169067, 0.0016850134124979377, 0.013318458572030067, -0.023080643266439438, 0.004115017130970955, 0.0011473553022369742, -0.021084630861878395, -0.02622928097844124, -0.09288482367992401, 0.015855642035603523, -0.014267266727983952, 0.00015308320871554315, -0.009635676629841328, 0.011301361955702305, 0.022616781294345856, -0.015504231676459312, -0.0016981912776827812, -0.015771303325891495, -0.02516099251806736, 0.022138861939311028, 0.006462439429014921, -0.01724722795188427, -0.0382053516805172, -0.004638618789613247, 0.02780359983444214, 0.01358553022146225, 0.006975498516112566, 0.017148833721876144, 0.011933901347219944, 0.016080545261502266, 0.024008365347981453, 0.004701872821897268, -0.015996206551790237, 0.02173122577369213, -0.009607563726603985, 0.024753356352448463, -0.013796376995742321, -0.01348713506013155, 0.004821352194994688, 0.004789725411683321, 0.004178271163254976, 0.014773298054933548, 0.0037108950782567263, 0.002380806254222989, 0.02247621677815914, -0.0009777997620403767, 0.0377836599946022, -0.0004289404605515301, -0.01124513614922762, -0.025610798969864845, 0.0034895064309239388, 0.01078830286860466, -0.009305350482463837, 0.030811673030257225, -0.017514299601316452, 0.017275340855121613, 0.01906050555408001, 0.0027796572539955378, 0.008932854980230331, 0.0253999512642622, 0.006297276355326176, -0.005074367858469486, -0.011638715863227844, -0.04618939757347107, 0.023867802694439888, 0.025287499651312828, -0.0034157102927565575, -0.012763230130076408, 0.021998297423124313, 0.01696609891951084, 0.017219115048646927, -0.02327743172645569, 0.0007050173589959741, 0.0021506324410438538, -0.03522539138793945, 0.013972082175314426, 0.014126702211797237, 0.0018255775794386864, -0.014562451280653477, -0.0018677468178793788, -0.016825534403324127, 0.03359484672546387, 0.001783408340997994, 0.010233074426651001, 0.0010182119440287352, 0.001413548830896616, -0.027944164350628853, 0.014646789990365505, 0.01759863831102848, -0.01811872608959675, -0.01578536070883274, 0.021436041221022606, 0.013121668249368668, 0.0005921266856603324, -0.028042558580636978, 0.02441600151360035, -0.00739367725327611, 0.0009892205707728863, -0.014077505096793175, 0.017851654440164566, 0.004758098162710667, 0.006515150889754295, 0.025371838361024857, 0.013325486332178116, -0.009811381809413433, -0.011821449734270573, 0.03646235540509224, 0.022110749036073685, 0.006265649572014809, 0.0038866002578288317, -0.0050673396326601505, -0.021253308281302452, -0.004255581181496382, 0.00014287033991422504, -0.029153015464544296, -0.03921741247177124, 0.022883852943778038, 0.03232976794242859, 0.007372592575848103, 0.005053283181041479, -0.0255967415869236, 0.03157072141766548, -0.013072471134364605, -0.011491123586893082, 0.0033665127120912075, -0.016825534403324127, -0.02890000119805336, -0.0009417801629751921, 0.00424152472987771, -0.005580398719757795, 0.00927020888775587, -0.02059265598654747, 0.01358553022146225, -0.014646789990365505, 0.022827627137303352, -0.034044649451971054, 0.006420270074158907, 0.01210960652679205, -0.002076836070045829, -0.011448954232037067, -0.0014240910531952977, -0.02748030237853527, -0.02684776298701763, 0.02326337620615959, -0.008525218814611435, 0.0036300704814493656, -0.031120914965867996, 0.05476381257176399, 0.013198979198932648, -0.009790296666324139, 0.005903696641325951, -0.00460699200630188, -0.005250073038041592, -0.007984046824276447, -0.007625608239322901, 0.000524480186868459, -0.019594650715589523, -0.0008174686809070408, -0.015518288128077984, -0.024148929864168167, -0.02201235480606556, -0.016839591786265373, -0.009614591486752033, 0.009396716952323914, 0.03086789883673191, -0.0022613266482949257, -0.002568810945376754, 0.03325749188661575, -0.007144175935536623, 0.031036576256155968, 0.005021656397730112, -0.0034086820669472218, 0.007267169188708067, 0.024359777569770813, -0.00927020888775587, 0.013796376995742321, -0.0027550584636628628, 0.007604523561894894, 0.022982247173786163, -0.006954413838684559, -0.01459056418389082, -0.007548297755420208, 0.0010858584428206086, -0.01336765568703413, 0.015757247805595398, 0.018610700964927673, 0.007653721142560244, -0.0003979724133387208, 0.018835604190826416, -0.037390079349279404, 0.005376580636948347, -0.007969990372657776, 0.0019784411415457726, -0.029743386432528496, 0.0014618677087128162, -0.03873949497938156], "8fe56bf8-c709-451f-9cb5-3d45acff76a6": [-0.03909938782453537, 0.010797053575515747, 0.021523119881749153, -0.005412723869085312, -0.03185876086354256, 0.004426010884344578, -0.01509173959493637, -0.024532949551939964, -0.0034783408045768738, -0.03699818626046181, 0.0051536234095692635, 0.01264980249106884, -0.03435748815536499, -0.012699493207037449, -0.009796143509447575, -0.005387878976762295, 0.006679833866655827, -0.005764107685536146, 0.027571173384785652, -0.01950710266828537, 0.025427380576729774, -0.00929923728108406, -0.021338555961847305, -0.024135425686836243, -0.012316165491938591, -0.008639062754809856, 0.0045537869445979595, -0.01861267164349556, 0.010250457562506199, -0.01828613504767418, 0.025441577658057213, 0.00656980462372303, -0.00962577573955059, -0.020472519099712372, -0.008255735039710999, -0.00848289206624031, -0.01600036770105362, 0.009732255712151527, 0.004493448417633772, 0.0037906814832240343, 0.025398986414074898, 0.007737533655017614, -0.0005208638031035662, 0.00040817263652570546, -0.005391428247094154, 0.019208958372473717, -0.001552830683067441, -0.005235257558524609, -0.0019787498749792576, 0.013941757380962372, 0.0029885335825383663, 0.0026034314651042223, -0.04824245721101761, -0.03804878890514374, 0.0191663671284914, 0.0010763334576040506, 0.01179796364158392, 0.007311614230275154, -0.021253371611237526, -0.00939152017235756, 0.0016477751778438687, -0.0059699686244130135, -0.027230439707636833, 0.010435022413730621, 0.00954768992960453, -0.005387878976762295, -0.026052061468362808, 0.00013731459330301732, -0.0209836233407259, 0.007524573709815741, 0.02170768566429615, 0.02449035830795765, 0.00018922351591754705, 0.008049874566495419, 0.025640340521931648, -0.013317075558006763, -0.0036629056558012962, 0.019123775884509087, 0.021807067096233368, 0.011166183277964592, 0.019308339804410934, -0.011556609533727169, 0.007652349770069122, -0.032199498265981674, 0.007552968338131905, 0.0069566816091537476, -0.003780033439397812, 0.038077183067798615, -0.026506375521421432, -0.015801604837179184, 0.009483802132308483, 0.015120133757591248, 0.012195488438010216, 0.016042958945035934, -0.004330179188400507, -0.008837824687361717, -0.024674924090504646, 0.032852571457624435, -0.025356393307447433, -0.04869677126407623, 0.006221970543265343, 0.011819260194897652, -0.011939937248826027, 0.0005102158174850047, -0.0345846451818943, -0.00561148626729846, 0.02112559601664543, -0.012486533261835575, -0.017334913834929466, 0.0018491995288059115, -0.015489264391362667, -0.005096834152936935, 0.022488538175821304, -0.029104484245181084, -0.026165639981627464, 0.03623153269290924, 0.04727704077959061, -0.017746636644005775, -0.01665344275534153, -0.013686206191778183, 0.014133420772850513, 0.021097201853990555, 0.01592938043177128, 0.0028323631267994642, 0.0032014932949095964, 0.02382308430969715, -0.007070260122418404, 4.181551048532128e-05, -0.009029489010572433, -0.009277941659092903, 0.0509115494787693, 0.00117305270396173, 0.01020076684653759, 0.005639880895614624, -0.002933518961071968, 0.0158441960811615, -0.0034588193520903587, 0.005320441443473101, 0.01268529612571001, -0.00044322223402559757, 0.02236076258122921, 0.015304699540138245, -0.005235257558524609, -0.028380420058965683, -0.009107573889195919, 0.004489899147301912, 0.013153807260096073, 0.019634878262877464, 0.019464511424303055, -0.010356936603784561, 0.008610667660832405, 0.0006575128645636141, 0.014403169974684715, -0.0024490358773618937, -0.0010621361434459686, -0.002977885538712144, 0.02904769405722618, 0.026903901249170303, -0.013004735112190247, -0.019634878262877464, 0.011613398790359497, 0.023226797580718994, 0.013047327287495136, 0.002268020063638687, -0.0032032679300755262, 0.032199498265981674, -0.013742995448410511, -0.014388972893357277, 0.0008256622822955251, -0.012301968410611153, -0.008326721377670765, 0.02202002704143524, -0.024532949551939964, 0.030581003054976463, -0.021040411666035652, 0.008915910497307777, 0.02284347079694271, -0.002647798042744398, 0.0113081568852067, 0.0011313480790704489, 0.0034233261831104755, -0.0018616222077980638, 0.005583091638982296, 0.0034801154397428036, 0.0027436299715191126, -0.01538988295942545, 0.018584277480840683, 0.0020781310740858316, 0.008078268729150295, 0.003614989807829261, 0.01689479872584343, 0.035947587341070175, -0.00036136587732471526, 0.008624865673482418, -0.5896994471549988, -0.033676017075777054, -0.009405717253684998, 0.005295596085488796, 0.010222062468528748, 0.010860941372811794, 0.004539589397609234, 0.04841282218694687, -0.02691809833049774, 0.034896984696388245, -0.015716420486569405, 0.00937732309103012, -0.004159811418503523, 0.004113670438528061, -0.011684385128319263, -0.015318896621465683, 0.0027862219139933586, -0.001143770758062601, -0.006740172393620014, 0.0026708687655627728, -0.02292865328490734, 0.013388062827289104, -0.0242490042001009, 0.010058793239295483, 0.0034392981324344873, 0.001216531964018941, -0.002282217377796769, -0.012514928355813026, 0.0056469799019396305, 0.030013112351298332, -0.02268729917705059, -0.0006947807851247489, 0.02275828644633293, 0.007290318142622709, 0.05289917439222336, -0.015318896621465683, -0.03344886004924774, 0.02057190053164959, 0.013253187760710716, 0.04074627533555031, -0.016213327646255493, -0.021040411666035652, 0.028621776029467583, -0.023865677416324615, -0.0025750368367880583, 0.016213327646255493, 0.005462414585053921, -0.012962142936885357, 0.025526762008666992, -0.01746268942952156, -0.015617039985954762, -0.03271060064435005, -0.011379143223166466, 0.005849291570484638, 0.011705681681632996, 0.012230982072651386, 0.0077730268239974976, -0.02840881608426571, -0.0029743362683802843, -0.032682206481695175, -0.034329093992710114, 0.005586640909314156, -0.008986896835267544, -0.00881652906537056, -0.016610851511359215, -0.004539589397609234, -0.017107756808400154, -0.009611578658223152, 0.02619403600692749, 0.0023709505330771208, -0.0035227073822170496, 0.005930925719439983, 0.005409174598753452, 0.0159009862691164, 0.0318019725382328, 0.010797053575515747, 0.04537459835410118, -0.017746636644005775, -0.005029396619647741, 0.03109210729598999, 0.012209685519337654, -0.026747729629278183, -0.010591192170977592, -0.017647255212068558, 0.010541502386331558, -0.004944212734699249, -0.020685479044914246, 0.007765928283333778, 0.011279761791229248, -0.011251367628574371, 0.015205318108201027, 0.01967746950685978, 0.028934115543961525, 0.0008403032552450895, 0.005987714976072311, 0.036771029233932495, -0.03466982766985893, -0.02275828644633293, 0.014488354325294495, -0.0008207819191738963, -0.04554496705532074, 0.0038297241553664207, 0.01591518335044384, 0.0013833503471687436, 0.0219490397721529, 0.0027879965491592884, -0.03887223079800606, -0.006225519813597202, 0.020742269232869148, -0.01655406318604946, 0.010513107292354107, -0.00728321960195899, -0.015546053647994995, -0.008795233443379402, 0.021608304232358932, -0.031376052647829056, 0.029033496975898743, 0.005519203841686249, 0.003794230753555894, 0.010470515117049217, 0.02268729917705059, 0.009817439131438732, 0.025271210819482803, 0.005008100997656584, -0.005047143436968327, 0.03191554918885231, 0.048015300184488297, 0.018470698967576027, 0.0017808749107643962, 0.0003442847519181669, -0.013856573961675167, -0.008227340877056122, 0.020841650664806366, -0.012436842545866966, -0.004000091925263405, -0.029558798298239708, 0.015957774594426155, 0.0025910090189427137, 0.01318220142275095, -0.025498367846012115, -0.024632330983877182, -0.002848335076123476, 0.016128143295645714, 0.003992993384599686, -0.021523119881749153, -0.01942191831767559, -0.013721698895096779, 0.013622318394482136, 0.013047327287495136, 0.005192665848881006, 0.025327999144792557, 0.012223883531987667, -0.022985443472862244, 0.03384638577699661, 0.006580452900379896, -0.00028305884916335344, -0.008759739808738232, -0.00848999060690403, 0.003992993384599686, -0.00227511883713305, -0.016838008537888527, -0.019862035289406776, -0.014112125150859356, -0.011684385128319263, -0.015815801918506622, -0.024192214012145996, 0.00632490124553442, -0.005377230700105429, -0.03679942339658737, -0.02872115559875965, -0.03452785685658455, -0.0005807586712762713, 0.009554789401590824, -0.006367492955178022, 0.0030559708829969168, 0.0025892341509461403, -0.02244594506919384, -0.015318896621465683, 0.0032689303625375032, -0.019407721236348152, 0.0037161456421017647, 0.013153807260096073, -0.010435022413730621, -0.01761886104941368, 0.015815801918506622, 0.033590834587812424, 0.0341019369661808, 0.024135425686836243, -0.0031109852716326714, -0.006200674921274185, -0.014779399149119854, 0.019052788615226746, -0.009050784632563591, 0.015276304446160793, 0.009462506510317326, 0.020770663395524025, 0.005536950659006834, -0.004372771363705397, -0.021097201853990555, 0.03035384602844715, 0.03208591789007187, 0.0396672822535038, -0.0013256737729534507, -0.0038013295270502567, 0.004560885485261679, -0.04216600954532623, 0.011116492561995983, -0.014949766919016838, 0.011293959803879261, -0.011528215371072292, -0.00016249263717327267, -0.0025164729449898005, -0.014878779649734497, 0.0008349792333319783, 0.00507908733561635, 0.020174376666545868, -0.007432291284203529, 0.0015980845782905817, 0.0017214237013831735, 0.005686022341251373, 0.019081182777881622, -0.01452384702861309, 0.02203422412276268, -0.01795959658920765, -0.003811977570876479, -0.00962577573955059, 0.013700403273105621, 0.039610493928194046, -0.0033115223050117493, -0.009618677198886871, 0.0028447858057916164, -0.03353404253721237, -0.0009964735945686698, -0.02710266225039959, 0.002892701653763652, -0.02669094130396843, 0.026080457493662834, -0.02481689676642418, 0.03779323771595955, 0.025257013738155365, -0.021409541368484497, -0.014388972893357277, 0.0018580728210508823, -0.01347324624657631, 0.023723702877759933, 0.00287672970443964, 0.043301790952682495, 0.02014598250389099, -0.011045506224036217, -0.000986712984740734, -0.03197234123945236, 0.013324175029993057, -0.0034960873890668154, 0.02040153369307518, -0.008348017930984497, -0.01122297253459692, 0.008099565282464027, 0.03140444681048393, 0.018172556534409523, 0.020586097612977028, 0.016795417293906212, 0.02791190892457962, 0.002390471985563636, 0.002447261242195964, 0.0029707869980484247, -0.01591518335044384, -0.03299454599618912, -0.02131016179919243, 0.009860031306743622, -0.01321769505739212, -0.008170551620423794, 0.007645250763744116, -0.0040604304522275925, 0.005565345287322998, -0.001180151361040771, -0.011130690574645996, 0.01739170402288437, 0.006221970543265343, 0.039383336901664734, -0.0010550374863669276, 0.010250457562506199, -0.01901019737124443, 0.02464652806520462, 0.03310812637209892, 0.0017897483194246888, 0.009327632375061512, 0.021594107151031494, -0.010882236994802952, -0.017320716753602028, 0.03305133432149887, 0.005987714976072311, 0.015375685878098011, 0.011386241763830185, 0.002289316151291132, 0.004954861011356115, -0.001417956198565662, 0.0008172325906343758, -0.029814349487423897, -0.03449946269392967, -0.014864582568407059, 0.006669186055660248, -0.01122297253459692, 0.0024774305056780577, -0.0010488262632861733, 0.05289917439222336, 0.004028486553579569, -0.007173190359026194, -0.011755372397601604, 0.011719878762960434, 0.0064917197450995445, -0.030950134620070457, -0.013608120381832123, -0.01632690615952015, -0.008937206119298935, 0.004894522484391928, 0.018825631588697433, 0.011528215371072292, -0.020188573747873306, 0.024958869442343712, 0.021977433934807777, -0.02349654585123062, -0.012493631802499294, -0.0017400577198714018, 9.278163634007797e-05, -0.007148345001041889, 0.017987990751862526, -0.008653259836137295, -0.01041372586041689, -0.01574481651186943, 0.0013647163286805153, -0.021324358880519867, 0.0019716513343155384, -0.0037871322128921747, -0.0159009862691164, 0.016468878835439682, 0.00227334420196712, 0.011932838708162308, -0.005810248665511608, -0.008149255067110062, -0.02162250131368637, -0.011293959803879261, -0.01869785599410534, 0.03830434009432793, 0.002827039221301675, -0.013352569192647934, 0.011038407683372498, -0.013572627678513527, 0.03549327328801155, -0.014154717326164246, -0.005036495625972748, -0.0056647262535989285, 0.008979798294603825, 0.005164271220564842, -0.012734985910356045, -0.011095196940004826, 0.01615653745830059, -0.00675082067027688, 0.019137972965836525, -0.018996000289916992, 0.032369863241910934, 0.016696035861968994, 0.03222789242863655, -0.0053701321594417095, 0.011443031020462513, -0.00227511883713305, 0.002301738830283284, -0.005114580504596233, -0.0023567532189190388, 0.01682381145656109, -0.016596654430031776, 0.0008318735635839403, 0.042393166571855545, -0.001968102063983679, -0.0247317124158144, 0.021324358880519867, -0.02913287840783596, -0.024859488010406494, -0.022374959662556648, 0.001481844112277031, 0.006626593880355358, -0.026733532547950745, 0.0025785863399505615, 0.020500915125012398, -0.0068892440758645535, -0.010988716967403889, -0.016113946214318275, 0.013324175029993057, -0.0073542059399187565, -0.03589079901576042, -0.043869685381650925, -0.037253737449645996, -0.027642160654067993, -0.016270115971565247, 0.00294771627523005, 0.0074109951965510845, -0.024277398362755775, -0.025853300467133522, 5.579098797170445e-05, 0.014821990393102169, -0.0031943945214152336, 0.03449946269392967, -0.023624321445822716, 0.005380779970437288, 0.010349838063120842, -0.003471242031082511, -0.018499093130230904, -0.0060267578810453415, -0.01366490963846445, 0.028366222977638245, 0.00376583612523973, 0.003105661366134882, -0.009483802132308483, -0.030495820567011833, 0.0005057791131548584, 0.009029489010572433, -0.00150935142301023, -0.0002159543801099062, 0.020174376666545868, -0.0038758653681725264, -0.0203163493424654, 0.005884784739464521, 0.015716420486569405, -0.0036078912671655416, -0.015404080040752888, 0.05894722789525986, -0.05076957866549492, -0.03225628659129143, -0.007985986769199371, 0.0182009506970644, -1.8744884073385037e-05, 0.02014598250389099, 0.018655264750123024, 0.012791775166988373, 0.025186026468873024, 2.2640826500719413e-05, -0.020046601071953773, 0.008866219781339169, -0.0035031859297305346, 0.007680744398385286, -0.008397708646953106, -0.006143885664641857, -0.008497089147567749, -0.00617937883362174, -0.0013913363218307495, 0.025257013738155365, -0.021736079826951027, 0.03347725421190262, 0.0051536234095692635, -0.011556609533727169, 0.006992174778133631, -0.0016646344447508454, -0.030552608892321587, -0.015702223405241966, 0.009533492848277092, -0.005114580504596233, 0.01318220142275095, -0.01754787378013134, -0.01981944404542446, -0.015702223405241966, 0.013295779936015606, 0.002383373212069273, 0.005874136462807655, -0.02816746197640896, -0.03239826112985611, 0.002582135610282421, -0.005135876592248678, -0.010860941372811794, 0.003526256652548909, 0.02512923628091812, -0.021338555961847305, -0.00756716588512063, 0.011130690574645996, 0.011400438845157623, 0.017746636644005775, 0.01020076684653759, -0.012089008465409279, -0.03353404253721237, -0.004770295694470406, -0.002445486607030034, -0.004078177269548178, -0.015602842904627323, 0.007517475169152021, 0.03997962176799774, 0.02555515617132187, 0.009285040199756622, 0.016468878835439682, -0.0028323631267994642, -0.008944304659962654, 0.016781220212578773, 0.0015341966645792127, -0.006977977231144905, -0.0030541960150003433, -0.012813071720302105, -0.017349110916256905, -0.013558430597186089, 0.028011290356516838, -0.010513107292354107, -0.030495820567011833, 0.0033310437574982643, 0.019450314342975616, -2.282106470374856e-05, 0.018839828670024872, -0.005522753112018108, -0.03608955815434456, 0.01264270395040512, -0.003334593027830124, -0.010903533548116684, 0.01408373098820448, -0.02921806275844574, -0.012479434721171856, -0.005416273605078459, -0.011741174384951591, 0.0002533332444727421, 0.009923919104039669, 0.00713769719004631, -0.02440517395734787, 0.014119223691523075, 0.005888334009796381, 0.0060267578810453415, 0.006221970543265343, -0.007361304946243763, -0.02202002704143524, 0.018584277480840683, 0.015432475134730339, -0.010364036075770855, 0.0064633251167833805, -0.006694031413644552, -0.010747362859547138, 0.01456643920391798, -0.011038407683372498, -0.01794539950788021, -0.022658905014395714, -0.006892793346196413, -0.0072974166832864285, -0.025753919035196304, -0.007851111702620983, -0.029729165136814117, -0.0076878429390490055, 0.027031676843762398, 0.03126247599720955, -0.00494066346436739, 0.010676376521587372, -0.012983439490199089, -0.03004150651395321, -0.004926466383039951, 0.003769385628402233, 0.0048767756670713425, -0.0054269214160740376, 0.01506334450095892, 0.037338923662900925, 0.018073175102472305, -0.02691809833049774, -0.046396806836128235, -0.023212600499391556, -0.008120860904455185, 0.03418711945414543, 0.04551657289266586, -0.037906814366579056, -0.0028998004272580147, 0.026875505223870277, 0.017192941159009933, -0.004067528992891312, -0.018144160509109497, 0.024788502603769302, 0.042563531547784805, 0.006938934791833162, -0.021608304232358932, 0.01203931774944067, -0.017732439562678337, -0.007489080540835857, -0.012472336180508137, -0.009434112347662449, -0.013317075558006763, 0.00728321960195899, 0.003315071575343609, 0.029189666733145714, 0.010143977589905262, 0.026222430169582367, -1.473802694818005e-05, -0.0017187617486342788, -0.02253112941980362, -0.004926466383039951, -0.007780125364661217, 0.019478708505630493, -0.0043053338304162025, 0.03288096934556961, -0.026179837062954903, -0.00848999060690403, -0.0101581746712327, 0.01016527321189642, 0.01097451988607645, 0.00133099767845124, -0.00770913902670145, 0.054148536175489426, -0.026577362790703773, -0.009561887942254543, -0.006576903630048037, 0.0021792869083583355, 0.038219157606363297, 0.015460869297385216, -0.010896435007452965, 0.016270115971565247, -0.03731052950024605, -0.001446350826881826, 0.020699676126241684, -0.01313960924744606, -0.009952313266694546, -0.0033239449840039015, 0.00021706354164052755, -0.021849658340215683, -0.041257381439208984, -0.036288321018218994, 0.010101385414600372, -0.029587192460894585, -0.01713615283370018, -0.04026356711983681, -0.009718057699501514, 0.0129408473148942, 0.020302152261137962, -0.007017020136117935, 0.010264654643833637, 0.037168554961681366, -0.02987113781273365, 0.02041573077440262, -0.0313192643225193, 0.0030595201533287764, -0.020600294694304466, -0.0020976525265723467, -0.0010195443173870444, -0.02555515617132187, 0.01780342496931553, -0.014680017717182636, -0.0008820078219287097, -0.00819894578307867, 0.009228250943124294, 0.008170551620423794, -0.003414452774450183, 0.028664367273449898, 0.010995815508067608, 0.0021278217900544405, 0.014538044109940529, 0.0036327363923192024, -0.020060798153281212, 0.010534402914345264, 0.012458139099180698, -0.026378599926829338, 0.009469605050981045, -0.01538988295942545, 0.04009320214390755, 0.0064526768401265144, 0.004557336214929819, -0.013977251015603542, -0.043386977165937424, -0.051876965910196304, 0.0034215515479445457, 0.009036587551236153, -0.007801421452313662, -0.014218605123460293, -0.03347725421190262, -0.025271210819482803, -0.003900710726156831, -0.0030009562615305185, 0.005412723869085312, -0.009803242050111294, 0.013302878476679325, 0.017817622050642967, -0.011734075844287872, 0.0016832684632390738, 0.012628506869077682, -0.03512414172291756, -0.0027596019208431244, -0.033761199563741684, -0.04670914635062218, -0.011088098399341106, -0.017093559727072716, 0.037821631878614426, 0.013622318394482136, -0.01723553240299225, -0.027897711843252182, 0.0031251825857907534, -0.014126322232186794, -0.004028486553579569, 0.006346197333186865, 0.03288096934556961, 0.03583400696516037, 0.0030009562615305185, -0.022829273715615273, 0.03958209604024887, -0.01754787378013134, 0.014495452865958214, -0.021920645609498024, 0.0072512757033109665, 0.006704679224640131, -0.012202586978673935, -0.0008017043001018465, 0.008468694984912872, 0.005902531091123819, -0.0031659998930990696, 0.006598199252039194, 0.01318220142275095, 0.0022076815366744995, 0.018314529210329056, 0.0016513245645910501, -0.017888609319925308, 0.0012830818304792047, 0.0017373956507071853, -0.013913363218307495, -0.012209685519337654, -0.016511470079421997, -0.015233712270855904, 0.00450764549896121, 0.016852205619215965, 0.017846018075942993, -0.003512059338390827, 0.017746636644005775, 0.015602842904627323, -0.02351074479520321, 4.098363933735527e-05, -0.03117729164659977, -0.0018740447703748941, -0.029005102813243866, -0.006143885664641857, 0.017888609319925308, 0.00959028210490942, -0.028848931193351746, 0.030893344432115555, 0.010307246819138527, 0.012550421059131622, -0.030467424541711807, 0.012486533261835575, -0.039553701877593994, -0.0060551525093615055, 0.006175829563289881, -0.0029991816263645887, 0.0015324220294132829, -0.010101385414600372, 0.000761774368584156, 0.0011916866060346365, 0.001602521282620728, 0.01427539438009262, -0.0165682602673769, -0.059117596596479416, 0.02040153369307518, 0.01925155147910118, -0.01722133532166481, -0.013530035503208637, 0.002983209677040577, -0.016908995807170868, 0.015602842904627323, -0.022559523582458496, -0.0013691530330106616, -0.010662179440259933, 0.014140520244836807, 0.012089008465409279, -8.307644020533189e-05, -0.0224317479878664, 0.007872408255934715, 0.0065378607250750065, -0.04327339679002762, -0.005771206226199865, 0.2616848051548004, -0.02096942625939846, -0.015120133757591248, 0.0448634959757328, 0.00023048443836160004, 0.006669186055660248, -0.005231708288192749, -0.018484896048903465, -0.009476703591644764, 0.006552058272063732, 0.009718057699501514, -0.004369222093373537, -0.015318896621465683, 0.0007440277258865535, 0.017107756808400154, -6.9218813223415054e-06, -0.024206411093473434, -0.0026708687655627728, -0.013395161367952824, -0.007347107399255037, 0.02162250131368637, 0.016284313052892685, 0.014410268515348434, -0.006601748522371054, -0.004376320634037256, -0.012884058058261871, 0.010711870156228542, -0.012046417221426964, 0.033817991614341736, 0.015290501527488232, -0.01778922788798809, 0.006069349590688944, 0.0018474248936399817, 0.022105209529399872, -0.019634878262877464, -0.0077162375673651695, 0.0373673178255558, 0.008759739808738232, 0.006456226110458374, 0.0020639337599277496, 0.007623955141752958, -0.007006371859461069, -0.012429744005203247, -0.016142340376973152, -0.03648708388209343, 0.014140520244836807, 0.0041456143371760845, -0.005827995482832193, -0.0034641434904187918, 0.014907174743711948, -0.034896984696388245, -0.009228250943124294, 0.042819082736968994, 0.006172280292958021, 0.0031801972072571516, -0.006662087514996529, 0.01403404027223587, -0.01754787378013134, -0.005625683814287186, -0.007311614230275154, -0.015475067310035229, 0.04937824234366417, -0.038219157606363297, 0.020955227315425873, -0.037906814366579056, 0.008695852011442184, -0.0071660918183624744, 0.006761468481272459, 0.009370223619043827, -0.007176739629358053, 0.006133237387984991, -0.020742269232869148, -0.023723702877759933, -0.020912636071443558, -0.051053524017333984, -0.0046851118095219135, 0.024958869442343712, 0.02162250131368637, 0.02228977531194687, 0.011961232870817184, -2.5885132345138118e-05, -0.015503461472690105, 0.0021118498407304287, -0.00066549883922562, -0.019876232370734215, -0.03012668900191784, 0.005267201457172632, -0.02504405379295349, -0.0134235555306077, 0.010456318035721779, -0.00032875643228180707, -0.006367492955178022, 0.0021012017969042063, -0.009199855849146843, 0.01093192771077156, 0.008923009037971497, -0.01534729078412056, 0.02497306652367115, -0.0046567171812057495, -0.01101001352071762, -0.01158500462770462, 0.02627921849489212, 0.01974845677614212, 0.031631603837013245, -0.017987990751862526, -0.005253004375845194, -0.03231307491660118, 0.010520205833017826, -0.009966511279344559, 0.002748953877016902, 0.0007622180273756385, -0.05457445606589317, 0.002475655870512128, -0.0047170561738312244, -0.00532399071380496, 0.017519479617476463, -0.008163453079760075, -0.015318896621465683, -0.022218788042664528, -0.002360302722081542, 0.02775573916733265, -0.032369863241910934, 0.0072690220549702644, -0.003192619886249304, -0.011286860331892967, -0.0289625097066164, -0.02000400796532631, -0.007751730736345053, -0.0016504371305927634, -0.037736449390649796, 0.037679657340049744, -0.028011290356516838, 0.03336367756128311, -0.02798289619386196, -0.013395161367952824, 0.010626685805618763, -0.007588461507111788, -0.005306244362145662, -0.012593013234436512, -0.015943577513098717, 0.010875138454139233, 0.0112158739939332, 0.018626868724822998, -0.005980616435408592, 0.0014827314298599958, 0.011918640695512295, 0.004841282498091459, 0.010548600926995277, 0.003418002277612686, -0.00561148626729846, -0.03989443928003311, -0.01998981088399887, -0.0002451254113111645, 0.0001973204198293388, 0.030325451865792274, -0.013487443327903748, 0.0007635490037500858, -0.02368111163377762, 0.020912636071443558, 0.004053331911563873, -0.0484980084002018, 0.0035191578790545464, 0.016128143295645714, -0.01680961437523365, -0.008802331984043121, 0.012273573316633701, -0.18320207297801971, 0.026648350059986115, 0.0068147084675729275, -0.027287228032946587, 0.024618133902549744, 0.010498910211026669, 0.013906264677643776, 0.02351074479520321, -0.01399144809693098, 0.016511470079421997, 0.010747362859547138, 0.01713615283370018, -0.017831820994615555, -0.010903533548116684, -0.008475793525576591, -0.001237827935256064, -0.004951311741024256, 0.0032511837780475616, 0.022971246391534805, 0.022559523582458496, 0.03671424090862274, -0.01617073453962803, -0.013856573961675167, 0.039042599499225616, 0.015702223405241966, 0.017689846456050873, -0.0004991241730749607, 0.025115039199590683, 0.027727345004677773, -0.008340919390320778, -0.019322536885738373, -0.01795959658920765, 0.00016925855015870184, 0.005735713057219982, -0.010349838063120842, -0.019109578803181648, -0.0028021938633173704, 0.02416381984949112, -0.0012404898880049586, 0.007368403486907482, -0.009732255712151527, 0.016468878835439682, -0.020515112206339836, 0.013380964286625385, 0.017278125509619713, 0.032199498265981674, 0.005827995482832193, -0.01343065407127142, -0.003313296940177679, -0.001996496692299843, 0.02138114720582962, -0.0383327342569828, 0.012621407397091389, -0.005320441443473101, 0.01682381145656109, 0.01919476129114628, 0.0074109951965510845, 0.01020076684653759, -0.0019166367128491402, -0.0020639337599277496, 0.0013851249823346734, -0.023326179012656212, -0.0021704137325286865, 0.013856573961675167, 0.01598617061972618, -0.004159811418503523, -0.029161272570490837, 0.018740447238087654, -0.00828413013368845, -0.009568986482918262, 0.0065946499817073345, -0.028522394597530365, 0.024007650092244148, 0.016781220212578773, 0.01682381145656109, 0.007971788756549358, 0.0051536234095692635, 0.01203221920877695, 0.00014341500354930758, -0.002017792547121644, -0.03395996242761612, 0.04855479672551155, -0.006576903630048037, -0.03339207172393799, 0.004383419174700975, -0.010371134616434574, 0.020614493638277054, 0.00848289206624031, -0.007446488831192255, -0.046311620622873306, 0.03239826112985611, -0.01102421060204506, -0.014154717326164246, -0.00575345940887928, 0.0034162274096161127, 0.020216967910528183, -0.004078177269548178, -0.006339098326861858, -0.021736079826951027, 0.0016300285933539271, -0.007900802418589592, 0.0025359943974763155, -0.022871864959597588, 0.02219039388000965, 0.0030151535756886005, -0.018797237426042557, -0.029416823759675026, 0.028224250301718712, 0.039212968200445175, 0.005984165705740452, -0.008986896835267544, -0.01600036770105362, 0.0016504371305927634, 0.016440484672784805, -0.01682381145656109, 0.021523119881749153, -0.03753768652677536, -0.008610667660832405, 0.005515654571354389, -0.0045253923162817955, 0.0011207000352442265, -0.027145255357027054, -0.0009618676849640906, 0.03671424090862274, 0.014474156312644482, -0.034726619720458984, -0.04105861857533455, -0.00938442163169384, 0.01427539438009262, 0.029729165136814117, 0.0028430111706256866, 0.03384638577699661, -0.014396071434020996, 0.025768116116523743, -0.009867129847407341, 0.016880599781870842, -0.02186385542154312, -0.029360035434365273, -0.010605390183627605, 0.030495820567011833, 0.0177182424813509, 0.024007650092244148, -0.01343065407127142, 0.01408373098820448, 0.02612304873764515, 0.03750929236412048, 0.00479869032278657, -0.023879874497652054, -0.008610667660832405, -0.024277398362755775, -0.0016974657773971558, 0.00704186549410224, -0.0008775711758062243, 0.017746636644005775, 0.03824755176901817, 0.024603936821222305, 0.07269022613763809, 0.0015510560479015112, -0.008724246174097061, 0.004127867519855499, 0.0048377332277596, -0.01370750181376934, -0.024263201281428337, -0.029033496975898743, 0.0037587375845760107, -0.04114380106329918, 0.007368403486907482, 0.011343649588525295, 0.0022431749384850264, -0.0005798713536933064, -0.027159452438354492, 0.007985986769199371, -0.005402076058089733, 0.022374959662556648, -0.014949766919016838, -0.028848931193351746, -0.02464652806520462, 0.002239625435322523, 0.00561148626729846, -0.031631603837013245, 0.03804878890514374, 0.021168187260627747, 0.036203138530254364, 0.010356936603784561, -0.042080823332071304, 0.009256645105779171, -0.014410268515348434, 0.008582273498177528, -0.014445762149989605, 0.007034766487777233, 0.017902806401252747, 0.006779215298593044, -0.028053883463144302, -0.0034641434904187918, 0.009334730915725231, -0.011783766560256481, -0.013153807260096073, 0.02995632216334343, -0.007208683528006077, 0.019634878262877464, -0.03696979209780693, -0.008702950552105904, -0.00988132692873478, -0.021608304232358932, -0.002827039221301675, -0.011677286587655544, -0.0071660918183624744, -0.004252093844115734, -0.0002673087001312524, -0.0012333912309259176, 0.015617039985954762, 0.03512414172291756, -0.009292138740420341, -0.014488354325294495, -0.0056363316252827644, -0.024362582713365555, -0.019634878262877464, 0.015560250729322433, -0.008071170188486576, -0.0313192643225193, -0.002147343009710312, 0.0030080548021942377, 0.015531856566667557, -0.010825447738170624, 0.002024891320616007, 0.0015856620157137513, -0.02466072514653206, -0.021494725719094276, -0.08932946622371674, 0.015333093702793121, -0.012947945855557919, 0.007361304946243763, 0.0018279035575687885, -0.006562706083059311, 0.014396071434020996, 0.0036078912671655416, 0.004670914728194475, 0.008348017930984497, -0.026265021413564682, 0.018811434507369995, 0.013416456989943981, -0.011336551047861576, -0.03654387220740318, -0.022701498121023178, 0.019720062613487244, -0.0038013295270502567, 0.017689846456050873, 0.01233036257326603, -0.020018205046653748, -0.0024508105125278234, 0.019208958372473717, -0.0029423923697322607, -0.005526302382349968, 0.019563892856240273, -0.0077162375673651695, 0.027400806546211243, -0.01101001352071762, -0.03171679005026817, 0.016866402700543404, 0.004702858626842499, 0.006591100711375475, 0.026747729629278183, -0.013579726219177246, 0.003918457310646772, 0.01919476129114628, 0.004763197153806686, 0.03151802718639374, 0.007048964034765959, -0.018896618857979774, -0.02725883387029171, -0.004028486553579569, -0.006204224191606045, -0.0076594483107328415, 0.026960689574480057, -0.013721698895096779, 0.014431565068662167, 0.009987806901335716, 0.005849291570484638, 0.018541686236858368, 0.024873685091733932, 0.016667641699314117, -0.028423013165593147, -0.015617039985954762, -0.060991641134023666, 0.010591192170977592, 0.02765635773539543, -0.01875464618206024, 0.004674463998526335, 0.013104116544127464, 0.014935568906366825, 0.022744089365005493, -0.02251693233847618, 0.015191121026873589, 0.005103932693600655, -0.012962142936885357, 0.015787407755851746, 0.0053417375311255455, -0.0042024035938084126, -0.01371460035443306, -0.0040320358239114285, -0.010591192170977592, 0.01350164134055376, -0.0030133789405226707, 0.02691809833049774, -0.0010062343208119273, -0.007865308783948421, -0.04120058938860893, 0.012798873707652092, 0.003150027943775058, -0.012876959517598152, -0.0030861401464790106, 0.011570806615054607, 0.013331273570656776, -0.011819260194897652, -0.036685846745967865, 0.022644707933068275, -0.009796143509447575, -0.012294869869947433, -0.030751371756196022, 0.012500730343163013, 0.0068714977242052555, 0.020699676126241684, 0.0341019369661808, 0.004294686019420624, -0.011485623195767403, -0.012813071720302105, 0.023567533120512962, 0.008646161295473576, -0.024845290929079056, 0.013203497044742107, -0.005863488651812077, -0.027684751898050308, -0.005707318428903818, 0.008056973107159138, -0.02431998960673809, -0.03997962176799774, 0.034414276480674744, 0.02228977531194687, -0.0006371042691171169, 0.005515654571354389, -0.015191121026873589, 0.026733532547950745, 0.0036913002841174603, -0.0023496546782553196, -0.0036185390781611204, -0.018470698967576027, -0.0359191931784153, 0.002855433849617839, 0.025753919035196304, 0.006697580683976412, 0.0226163137704134, -0.015971973538398743, 0.02464652806520462, -0.013196398504078388, 0.01456643920391798, -0.031943947076797485, 0.004465053789317608, -0.0017560296691954136, -0.017476888373494148, 0.007418094202876091, -0.009554789401590824, -0.015702223405241966, -0.009462506510317326, 0.013721698895096779, 0.00983163621276617, 0.008390610106289387, -0.007318712770938873, 0.07314454019069672, 0.01974845677614212, 0.004383419174700975, 0.014751004055142403, -0.01122297253459692, -0.0036309617571532726, -0.007173190359026194, -0.003141154535114765, 0.008894613943994045, -0.029005102813243866, 0.0004787155194208026, -0.012465237639844418, -0.015645435079932213, -0.004901621025055647, 0.0024650078266859055, -0.007552968338131905, 0.004152712877839804, 0.03980925306677818, -0.016852205619215965, -0.018342923372983932, 0.03566364198923111, 0.0021153991110622883, 0.027926107868552208, 0.005725064780563116, -0.009476703591644764, 0.012443941086530685, 0.02538478933274746, 0.00030746046104468405, 0.004315982107073069, -0.0041740089654922485, 0.01682381145656109, 0.011144887655973434, -0.01326738577336073, -0.018839828670024872, -0.01345904916524887, 0.013366766273975372, -0.0219490397721529, 0.015432475134730339, 0.006534311454743147, 0.011173281818628311, 0.0007413657149299979, 0.020912636071443558, -0.04449436813592911, -0.015546053647994995, -0.009412815794348717, 0.0050648897886276245, -0.025966878980398178, -0.016057156026363373, -0.03387477993965149], "283ffde8-e3e6-462e-ac07-8d9c0aceda45": [-0.05096985027194023, -0.005159311927855015, -0.0007721654837951064, -0.0037327103782445192, -0.016302041709423065, 0.03138523921370506, 0.0029380377382040024, -0.019349152222275734, 0.015900377184152603, -0.024736996740102768, -0.00956377200782299, 0.015249403193593025, -0.0029207246843725443, -0.010540232062339783, -0.003339702496305108, -0.008933573961257935, 0.0027458621188998222, -0.013448838144540787, 0.030942022800445557, -0.017285427078604698, 0.05531890690326691, 0.01682836003601551, -0.00917595811188221, -0.025027858093380928, -0.01137126237154007, 0.00468839518725872, 0.013594267889857292, -0.0009158644825220108, -0.003670383244752884, -0.011025000363588333, 0.04110829159617424, -0.010644110850989819, 0.019252197816967964, -0.019390704110264778, -0.001923488569445908, -0.0209419596940279, -0.006281202659010887, 0.008801993913948536, 0.010858793742954731, 0.0027493247762322426, 0.0009937735740095377, 0.004816512111574411, -0.006281202659010887, -0.0024047933984547853, -0.004359445534646511, 0.017063818871974945, 0.006163473706692457, -0.03490326553583145, -0.007423869334161282, 0.02332424558699131, -0.01977851800620556, 0.04673159494996071, -0.051080651581287384, -0.012527779676020145, 0.012292320840060711, -0.0002037538797594607, 0.023005684837698936, 0.003093855921179056, -0.022119252011179924, -0.017257725819945335, 0.035512689501047134, 0.00558867771178484, -0.0273270420730114, -0.0013296481920406222, 0.03861520066857338, -0.013698146678507328, -0.006880237255245447, -0.00898205116391182, -0.007659327704459429, 0.01195298321545124, 0.005668317899107933, 0.017423931509256363, 0.022202355787158012, 0.012991771101951599, 0.04595596715807915, -0.0031509893015027046, 0.0060942210257053375, 0.009536070749163628, -0.012029161676764488, 0.01891978643834591, 0.008635788224637508, -0.0002460628456901759, 0.006592839024960995, 0.020678799599409103, 0.03573429584503174, 0.013026397675275803, -0.01477848645299673, 0.028725942596793175, -0.019709264859557152, -0.01352501567453146, 0.016038881614804268, -0.0007262857398018241, -0.0018819370307028294, -0.003715397324413061, -0.004629530478268862, 0.02763175219297409, -0.01567876897752285, 0.026219001039862633, -0.017991803586483, -0.019238347187638283, 0.004165538586676121, -0.0019511894788593054, -0.026315955445170403, 0.0036946216132491827, -0.03252097964286804, -0.03506947308778763, 0.017617838457226753, -0.012714761309325695, 0.005585215054452419, 0.0004321789601817727, -0.03529107943177223, 0.03997255116701126, -0.020401790738105774, -0.01951535791158676, -0.027188535779714584, -0.019349152222275734, 0.05811670795083046, -0.007444645278155804, -0.03096972405910492, -0.02980628050863743, 0.01815800927579403, 0.012797864153981209, 0.028130371123552322, -0.010394802317023277, 0.012444676831364632, -0.01155824400484562, -0.0029415003955364227, -0.024210678413510323, 0.003152720630168915, -0.03412763774394989, 0.03614981099963188, -0.0005700347246602178, 0.017631689086556435, 0.00885047111660242, -0.014833888038992882, 0.02235471084713936, -0.006707105785608292, -0.006319291889667511, -0.017368530854582787, -0.011308935470879078, 0.03171765059232712, 0.014148288406431675, -0.012513929046690464, -0.008961275219917297, 0.006443946156650782, 0.00042763425153680146, 0.011502842418849468, 0.01222999393939972, 0.02073420211672783, -0.008372629061341286, 0.020498743280768394, -0.007368467282503843, 0.02457079105079174, 0.020332537591457367, 0.0020429491996765137, 0.020124780014157295, 0.022327009588479996, 0.01843501813709736, 0.017423931509256363, -0.003066154895350337, 0.020706500858068466, 0.03534648194909096, -0.018864383921027184, -0.01429371815174818, 0.0034054922871291637, 0.026786871254444122, 0.003118094289675355, -0.00578258465975523, 0.001057832152582705, 0.0010379219893366098, -0.03144064173102379, -0.004113599192351103, -0.021731438115239143, 0.008047142066061497, -0.013843577355146408, 0.02686997503042221, 0.01495854277163744, -0.016011180356144905, -0.008739667013287544, 0.024404585361480713, -0.004570665769279003, -0.017617838457226753, 0.0003629264538176358, 0.01495854277163744, 0.0028151145670562983, -0.035595789551734924, 0.008421105332672596, -0.004245178773999214, 0.005096985027194023, 0.006353917997330427, 0.029473869130015373, 0.028338128700852394, 0.000987713923677802, 0.00040534359868615866, -0.575737714767456, -0.029778581112623215, -0.0017546855378895998, -0.003933542873710394, 0.019085992127656937, -0.0033674032893031836, -0.0015737633220851421, 0.02437688410282135, -0.022590169683098793, 0.03540188446640968, -0.0017598795238882303, 0.024266080930829048, 0.009515294805169106, -0.009792305529117584, -0.013289556838572025, -0.03257638216018677, 0.029889384284615517, -0.021828392520546913, 0.019861619919538498, 0.030554208904504776, -0.015401758253574371, 0.016108134761452675, -0.00921750906854868, 0.005543663632124662, 0.02475084736943245, -0.009660725481808186, -0.02821347303688526, 0.01443222351372242, 0.017091520130634308, 0.02235471084713936, -0.01835191622376442, 0.011426664888858795, 0.011675973422825336, -0.00975075364112854, 0.05651004984974861, -0.013767399825155735, -0.027036180719733238, 0.01587267592549324, 0.01605273224413395, 0.03745175898075104, -0.01175907626748085, -0.029418466612696648, 0.0274378452450037, -0.021828392520546913, -0.003957781009376049, -0.03631601855158806, -0.0009305806597694755, -0.011198131367564201, 0.006132309790700674, -0.0062846653163433075, -0.01930760033428669, 0.0033068074844777584, 0.012846341356635094, -0.0032098540104925632, 0.010110867209732533, 0.015110897831618786, 0.014833888038992882, -0.021842243149876595, 0.0030990499071776867, -0.02742399461567402, -0.021537531167268753, 0.011239682324230671, -0.026537561789155006, -0.01099729910492897, -0.018019502982497215, 0.018878234550356865, -0.012465451844036579, 0.012790938839316368, -0.007901711389422417, -0.048504460602998734, -0.011835254728794098, 0.01729927770793438, 0.0005821539089083672, 0.0023216905537992716, 0.019376853480935097, 0.02047104202210903, 0.016232788562774658, -0.011627497151494026, 0.00020689188386313617, 0.014833888038992882, 0.012070712633430958, -0.004044346511363983, -0.012894817627966404, -0.023061087355017662, 0.01903058961033821, -0.008795068599283695, -0.028615137562155724, 0.000607257941737771, 0.014224465936422348, -0.007368467282503843, 0.028698241338133812, -0.010900345630943775, 0.025775784626603127, -0.023102637380361557, 0.027978014200925827, 0.023587405681610107, -0.040581971406936646, -0.0017442976823076606, 0.022991834208369255, -0.01855967380106449, -0.05504189804196358, 0.029501570388674736, 0.01204301230609417, 0.006385081447660923, 0.022770226001739502, 0.005758346524089575, -0.041163694113492966, 0.013171827420592308, 0.009882333688437939, -0.020013976842164993, 0.01825496181845665, -0.00487191416323185, -0.005124685820192099, -0.014556878246366978, 0.009972361847758293, -0.03440464660525322, 0.031191332265734673, -0.005934940185397863, 0.02408602461218834, 0.0007678372203372419, 0.01352501567453146, -0.014418372884392738, 0.019390704110264778, 0.006478572729974985, 0.003846977138891816, 0.010574858635663986, 0.030249496921896935, -0.01843501813709736, -0.011080401949584484, 0.0023632419761270285, -0.022160803899168968, -0.01682836003601551, 0.012527779676020145, -0.016274340450763702, 0.0053670695051550865, -0.02696692757308483, 0.011419739574193954, 0.01267320942133665, 0.01280478946864605, 0.00975767895579338, -0.02810266986489296, -0.0007042114739306271, 0.01770094223320484, -0.01314412709325552, -0.005339368712157011, 0.0027752944733947515, 0.009286762215197086, 0.005263190716505051, -0.018379617482423782, 0.00792941264808178, -0.004885764792561531, 0.00990310963243246, -0.013074873946607113, 0.04443241283297539, 0.0034643569961190224, 0.0005146327312104404, -0.02034638822078705, 0.010297848843038082, 0.01032554917037487, 0.0010812048567458987, 0.015997329726815224, -0.006180786527693272, -0.010055464692413807, -0.0025727308820933104, -0.021315922960639, -0.020194033160805702, -0.0005116029060445726, 0.0008098215912468731, -0.013054098933935165, -0.027756405994296074, -0.03648222237825394, 0.0004081570077687502, -0.004958479665219784, -0.012416975572705269, 0.006087295711040497, 0.01729927770793438, -0.02505555935204029, 0.01462613046169281, 0.020041676238179207, 0.0015097047435119748, -0.01757628843188286, -0.0030090217478573322, -0.012375423684716225, 0.0005583483725786209, -0.0010941897053271532, 0.014930841512978077, 0.025983542203903198, 0.01195298321545124, -0.0470363050699234, -0.007901711389422417, -0.006173861678689718, 0.019349152222275734, 0.019570760428905487, 0.002103545004501939, 0.037701066583395004, 0.03498636931180954, 0.003860827535390854, 0.006063057575374842, 0.0015053765382617712, 0.020664948970079422, 0.018684327602386475, 0.028421230614185333, -0.0014361239736899734, -0.026786871254444122, 0.005644079763442278, -0.03670383244752884, 0.027036180719733238, -0.005214713979512453, -0.003221973078325391, -0.011073476634919643, -0.001267320942133665, -0.04227173328399658, 0.003085199510678649, 0.010235521011054516, 0.027202386409044266, -0.00532551808282733, -0.006849073339253664, 0.002209155121818185, 0.007970964536070824, 0.012562405318021774, 0.012008385732769966, 0.006392006762325764, 0.0106579614803195, -0.0024186440277844667, -0.0055540516041219234, -0.0009357745875604451, 0.01930760033428669, -0.009729977697134018, -0.0027839508838951588, -0.008199497126042843, -0.0030990499071776867, -0.01333803404122591, -0.009425266645848751, -0.0045637404546141624, -0.006887162569910288, -0.030831217765808105, 0.01777019537985325, 0.005792972631752491, 0.003912766929715872, -0.009044378064572811, -0.012797864153981209, -0.0005124685703776777, 0.0055540516041219234, -0.03432154655456543, 0.017285427078604698, 0.0075277481228113174, 0.037313252687454224, 0.013074873946607113, -0.00033154641278088093, 0.01700841635465622, -0.025401821359992027, -0.0024705834221094847, -0.018656626343727112, 0.005110835190862417, -0.011662122793495655, -0.0070845321752130985, -0.002254169201478362, 0.006170399021357298, 0.03038800321519375, 0.031135929748415947, 0.030138693749904633, 0.044210802763700485, 0.0005687362281605601, 0.0043732961639761925, 0.017894849181175232, -0.04216092824935913, -0.017285427078604698, -0.04024956002831459, -0.004844213370233774, 0.0002469284809194505, -0.021551381796598434, -0.021676035597920418, -0.006111534312367439, -0.002754518762230873, -0.010706438682973385, -0.007548523601144552, 0.0238921158015728, 0.012056862004101276, 0.008746592327952385, -0.017326978966593742, 0.004622605163604021, 0.0023476602509617805, 0.01777019537985325, 0.028919849544763565, -0.003223704406991601, -0.02638520672917366, -0.010311699472367764, -0.019667712971568108, -0.012347723357379436, 0.030471105128526688, -0.01085186842828989, 0.009993137791752815, -0.0016308967024087906, 0.008711965754628181, -0.010637185536324978, 0.03470936045050621, 0.008199497126042843, 0.0012257695198059082, -0.0038019628264009953, -0.0065478249453008175, 0.03238247334957123, 0.005221639294177294, -0.00037028451333753765, -0.01671755686402321, 0.036648429930210114, 0.01977851800620556, 0.011392038315534592, 0.012943294830620289, -0.0011669048108160496, -0.012036086991429329, -0.01410673651844263, -0.03011099249124527, -0.03166224807500839, -0.02198074758052826, 0.0012906936462968588, 0.01768709160387516, -0.0006111534312367439, -0.023559704422950745, 0.03509717434644699, -0.006090758368372917, -0.02590044029057026, -0.021551381796598434, -0.03958473727107048, 0.0035249528009444475, -0.02792261354625225, 0.02457079105079174, 0.0017191936494782567, -0.029778581112623215, -0.037701066583395004, -0.00033068074844777584, -0.0005367069970816374, -0.01710537075996399, 0.01635744422674179, -0.018808981403708458, 0.0077285803854465485, 0.003995869774371386, 0.026523713022470474, 0.009113630279898643, 0.005266653373837471, -0.0012110533425584435, -0.027105433866381645, -0.008157946169376373, 0.010699513368308544, -0.011218907311558723, -0.011731375940144062, 0.011149654164910316, 0.004265954717993736, 0.02648216113448143, -0.0041620759293437, -0.015083197504281998, -0.035789698362350464, 0.027881061658263206, -0.009764604270458221, -0.012908668257296085, -0.012188442051410675, -0.011052700690925121, 0.005841449368745089, 0.022507065907120705, -0.031302135437726974, 0.01080339215695858, 0.0187397301197052, 0.03606670722365379, -0.013822801411151886, 0.012223068624734879, 0.014875439926981926, 0.00047221555723808706, -0.00029821862699463964, -0.007583150174468756, 0.0036842336412519217, -0.004428698215633631, -0.003398566972464323, -0.006343530025333166, 0.0021883794106543064, -0.01596962846815586, 0.0093698650598526, -0.01242390088737011, -0.0472579151391983, -0.003826201194897294, 0.015623366460204124, 0.018961338326334953, -0.015235552564263344, -0.021080464124679565, 0.02936306595802307, 0.0019027127418667078, -0.006381618790328503, 0.00128376844804734, 0.005924552213400602, 0.002314765239134431, -5.437404252006672e-05, -0.020013976842164993, -0.0487537682056427, -0.006533974315971136, -0.03631601855158806, -0.001545196631923318, 0.017271576449275017, -0.024972455576062202, -0.029473869130015373, -0.006128847133368254, 0.007534673437476158, 0.031302135437726974, 0.025360269472002983, -0.02189764380455017, -0.0066863298416137695, 0.019764667376875877, -0.009820005856454372, -0.003128482261672616, -0.027313191443681717, 0.014930841512978077, 0.003808888141065836, -0.006596301682293415, 0.030249496921896935, -0.004362908191978931, 0.01893363706767559, 0.032160867005586624, 0.006551287602633238, 0.019626161083579063, 0.018338065594434738, 0.009459893219172955, -0.022050000727176666, -0.008545760065317154, 0.012326947413384914, 0.0038296638522297144, -0.02016633190214634, -0.009390641003847122, 0.02617744915187359, -0.016191236674785614, -0.007964039221405983, 0.01750703528523445, 0.007811683230102062, -0.001994472462683916, 0.020415641367435455, 0.023296544328331947, 0.02667606808245182, 0.011392038315534592, -0.0028255025390535593, -0.012763237580657005, 0.013448838144540787, -0.03290879353880882, -0.008732741698622704, 0.008081767708063126, -0.011766001582145691, 0.0032046600244939327, -0.037230148911476135, 0.006066520232707262, 0.0313575379550457, -0.033407412469387054, 0.023213442414999008, 0.016980715095996857, -0.011052700690925121, 0.015831124037504196, -0.010429427959024906, -0.026731470599770546, -0.011343561112880707, 0.025664981454610825, 0.004989643581211567, 0.007077606860548258, 0.012451602146029472, -0.0026142823044210672, -0.0332966074347496, 0.006256964523345232, -0.003583817509934306, 0.021537531167268753, -0.01912754401564598, -0.02513866126537323, 0.005055433604866266, -0.026911526918411255, 0.016315892338752747, -0.021842243149876595, 0.032077763229608536, -0.02236856147646904, -0.011669048108160496, -0.0013850502436980605, -0.013635819777846336, 0.014307568781077862, -0.0034695507492870092, 0.019653862342238426, -0.03385062888264656, -0.01266628410667181, 0.008711965754628181, -0.030471105128526688, -0.022894879803061485, 0.011288159526884556, 0.029224559664726257, 0.027687154710292816, 0.027839509770274162, 0.020304836332798004, 0.0020481429528445005, -0.0058206734247505665, 0.018421167507767677, -0.010006988421082497, -0.0076039256528019905, -0.004823437426239252, -0.03437694534659386, -0.007174560334533453, -0.024238379672169685, 0.020914258435368538, 0.004082435742020607, -0.018504271283745766, -0.0191136933863163, 0.015554114244878292, 0.0015434654196724296, 0.018850533291697502, -0.01175907626748085, -0.04410000145435333, 0.010914196260273457, 0.007721655070781708, 0.00870504043996334, -0.00423132861033082, -0.016856061294674873, -0.011398963630199432, -0.00275971251539886, -0.01501394435763359, 0.014723083935678005, -0.0018161471234634519, -0.020886557176709175, -0.008434955962002277, -0.019044440239667892, -0.006173861678689718, 0.01645439676940441, 0.002429031766951084, -0.0007275841780938208, -0.021662184968590736, 0.014612279832363129, 0.013171827420592308, -0.014335270039737225, -0.002813383238390088, 0.013012547045946121, 0.017562437802553177, 0.006911400705575943, -0.00792941264808178, -0.01606658287346363, -0.0018767430447041988, 0.0008223736076615751, -0.022922581061720848, -0.01958461105823517, -0.03105282597243786, 0.0028185772243887186, -0.04385069012641907, 0.022313158959150314, 0.02218850515782833, -0.0051766252145171165, 0.009979287162423134, -0.019279899075627327, -0.01423831656575203, -0.002105276333168149, -0.02531871758401394, 0.015263253822922707, 0.003947393037378788, 0.03648222237825394, 0.040665075182914734, 0.0192244965583086, -0.0064093200489878654, -0.04828285053372383, -0.017146922647953033, 0.0028445469215512276, 0.035041771829128265, 0.030997425317764282, 0.01247237715870142, -0.010117791593074799, 0.002925918670371175, 0.018116457387804985, -0.025941990315914154, -0.02361510694026947, 0.0220638494938612, 0.03706394508481026, 0.002461926778778434, -0.023061087355017662, 0.008033291436731815, -0.0008305973024107516, -0.0005098716355860233, -0.014459924772381783, -0.010588709264993668, -0.0031406013295054436, -0.022479364648461342, -0.03371212258934975, 0.0019061753991991282, 0.03049880638718605, 0.023739760741591454, 0.024792399257421494, 0.00918288342654705, -0.0054917242377996445, -0.009972361847758293, -0.014833888038992882, 0.013511165045201778, 0.00864963885396719, 0.020817305892705917, -0.027188535779714584, -0.008545760065317154, 0.006277740001678467, -0.008109468966722488, 0.006270815152674913, -0.0029415003955364227, -0.004671081900596619, 0.04742411896586418, -0.012964069843292236, 0.0025484925135970116, -0.01281171478331089, -0.013393435627222061, 0.034930966794490814, 0.002384017687290907, -0.01262473315000534, 0.011059626005589962, -0.04792273789644241, 0.008725816383957863, 0.0012361573753878474, 0.015180150978267193, 0.004660693928599358, -0.006506273522973061, 0.019667712971568108, -0.01534635666757822, -0.004359445534646511, 0.022922581061720848, 0.02141287736594677, -0.017077669501304626, -0.038088880479335785, -0.0012041280278936028, -0.012832490727305412, -0.005422471556812525, 0.007590075489133596, -0.005533275660127401, 0.0053774574771523476, 0.040581971406936646, -0.03662072867155075, 0.017950251698493958, -0.0220638494938612, -0.009432191960513592, -0.0169114638119936, -0.012693985365331173, 0.009882333688437939, -0.010249371640384197, 0.030831217765808105, 0.003905841615051031, -0.000882969528902322, -0.03462625667452812, 0.002411718713119626, 0.020415641367435455, -0.005221639294177294, 0.04581746086478233, 0.016177386045455933, 0.026800721883773804, -0.0016819704324007034, 0.0027216237504035234, -0.034764762967824936, -0.005547126289457083, 0.0012465452309697866, -0.008642713539302349, 0.00434905756264925, -0.023753611370921135, 0.016288191080093384, -0.02332424558699131, -0.018296513706445694, 0.015512562356889248, -0.0323270708322525, -0.044681720435619354, 0.039418529719114304, 0.01099729910492897, 0.004594904370605946, 0.00668979249894619, -0.031496044248342514, 0.003988944925367832, 0.0034799387212842703, 0.002370167290791869, 0.002716429764404893, -0.011585945263504982, 0.01047097984701395, 0.032659485936164856, 0.0035699671134352684, 0.0296400748193264, -0.01577572152018547, -0.03193925693631172, 0.021842243149876595, -0.050221920013427734, -0.013434987515211105, -0.013310332782566547, -0.01080339215695858, 0.02819962240755558, 0.0032531367614865303, -0.019833918660879135, -0.03565119206905365, -0.002848009578883648, -0.02716083452105522, -0.011883731000125408, -0.007299214601516724, 0.03205006197094917, 0.01423831656575203, -0.004667619243264198, -0.006769433151930571, 0.03662072867155075, -0.0019806218333542347, 0.014653831720352173, -0.001617911853827536, -0.00023567496100440621, -0.005928014870733023, -0.02619129978120327, 0.010741064324975014, 0.023088786751031876, -0.027742557227611542, -0.01079646684229374, -0.0049757929518818855, 0.0016464784275740385, 0.008732741698622704, 0.001556450268253684, -0.010339399799704552, -0.034764762967824936, -0.022230057045817375, 0.0028324278537184, -0.013843577355146408, -0.007970964536070824, -0.03144064173102379, -0.014529176987707615, -0.0050381203182041645, 0.015471011400222778, -0.0029051429592072964, -0.020152481272816658, 0.015706470236182213, 0.012936369515955448, -0.002541567198932171, 0.005055433604866266, 0.005183550529181957, 0.002551955170929432, -0.020720351487398148, -0.0009288493311032653, 0.02074805274605751, 0.00826182495802641, 0.03268718719482422, 0.02714698389172554, -0.004044346511363983, 0.010429427959024906, -0.007555448915809393, 0.02350430190563202, -0.03756256401538849, -0.03880910947918892, 0.001502779545262456, 0.011412814259529114, 0.023061087355017662, -0.014473775401711464, 0.01552641298621893, -0.001091592712327838, 0.02228545770049095, 0.02886444702744484, -0.009729977697134018, -0.03745175898075104, 0.011502842418849468, 0.02188379317522049, -0.0244876891374588, -0.02371205948293209, -0.0061565483920276165, -0.027756405994296074, 0.001703611807897687, -0.028836745768785477, 0.02380901388823986, -0.024321481585502625, 0.021288221701979637, -0.018490420654416084, -0.004265954717993736, -0.0165375005453825, 0.023864416405558586, 0.00798481423407793, -0.017049968242645264, -0.03595590591430664, 0.24310402572155, -0.021385176107287407, 0.0037015466950833797, 0.006298515945672989, 0.0025121348444372416, 0.02054029516875744, 7.704341987846419e-05, 0.009723052382469177, 0.007943263277411461, -0.01797795295715332, -0.00253464188426733, -0.01171752531081438, -0.0064958855509757996, -0.004207090009003878, 0.0016802391037344933, -0.006984116043895483, -0.03202236071228981, -0.014889290556311607, -0.002804726827889681, -0.015235552564263344, 0.023074937984347343, 0.0015962703619152308, -0.012070712633430958, -0.018407316878437996, 0.029418466612696648, -0.0036807709839195013, -0.00036768754944205284, 0.01817185990512371, -0.011398963630199432, 0.015110897831618786, -0.02850433439016342, 0.026551412418484688, -0.0061461604200303555, -0.0005042448756285012, 0.005034657660871744, -0.014376821927726269, 0.025941990315914154, -0.005723719950765371, 0.028033416718244553, 0.02238241210579872, 0.0008106871973723173, -0.014279868453741074, 0.015554114244878292, -0.020027825608849525, 0.0005090059712529182, 0.016662154346704483, 0.009044378064572811, 0.004304043482989073, -0.015083197504281998, -0.006301978603005409, -0.030665012076497078, -0.03396143019199371, 0.026703769341111183, 0.021080464124679565, -0.019335301592946053, -0.024778548628091812, 0.005637154448777437, -0.004044346511363983, 0.024806249886751175, 0.010685662738978863, -0.03105282597243786, 0.03556809201836586, -0.013434987515211105, 0.007382317911833525, -0.035983607172966, 0.0030696175526827574, -0.016689855605363846, -0.012943294830620289, 0.013081799261271954, 0.0003334941284265369, -0.018227260559797287, -0.01587267592549324, -0.02466774545609951, -0.013642745092511177, -0.018587375059723854, -0.03745175898075104, 0.04260414466261864, 0.015567964874207973, 0.011821404099464417, 0.014847738668322563, -0.007250737864524126, 0.01875358074903488, -0.002551955170929432, -0.014736934565007687, 0.005810285918414593, -0.00993773527443409, 0.012375423684716225, -0.027479397132992744, -0.02419682778418064, 0.024349182844161987, -0.002195304725319147, 0.0018473108066245914, 0.005917627364397049, 0.007271513808518648, -0.01319952867925167, -0.0216898862272501, 0.010159343481063843, 0.02018018253147602, -0.02657911367714405, -0.011274308897554874, -0.02627440355718136, 0.02524946630001068, -0.009854632429778576, 0.04595596715807915, -0.008760442957282066, -0.019736966118216515, -0.008933573961257935, 0.02026328444480896, 0.00036249362165108323, -0.03238247334957123, 0.009134406223893166, -0.05332443490624428, -0.013691221363842487, -0.011163504794239998, -0.008448806591331959, 0.002491359133273363, -0.005051970947533846, -0.01009009126573801, -0.02955697290599346, -0.012382348999381065, 0.00559214036911726, -0.030443403869867325, -0.028268875554203987, 0.021315922960639, -0.012936369515955448, -0.027742557227611542, -0.019141394644975662, -0.010166268795728683, 0.007278439123183489, -0.025775784626603127, 0.032271672040224075, -0.03833819180727005, 0.011475141160190105, -0.010775690898299217, -0.0018369228346273303, 0.013303407467901707, -0.004030496347695589, -0.02752094902098179, 0.012839416041970253, 0.0007228230824694037, -0.013469613157212734, 0.021191269159317017, 0.03152374178171158, 0.00487191416323185, -0.0007751953089609742, -0.006724419072270393, -0.008476507849991322, 0.02761790156364441, -0.0015694350004196167, -0.012361573055386543, -0.0495016947388649, -0.010858793742954731, 0.024833951145410538, 0.00022615274065174162, -0.0015685694525018334, 0.0030713488813489676, -0.015623366460204124, -0.042022425681352615, 0.00898205116391182, 0.0072645884938538074, -0.05191168189048767, -0.0070845321752130985, -0.004664156585931778, -0.015471011400222778, 0.004473712295293808, -0.0007717327098362148, -0.17562437057495117, 0.019002890214323997, 0.03337971121072769, -0.018712028861045837, 0.0166483037173748, -0.00989618431776762, 0.007908636704087257, -0.010394802317023277, -0.0135319409891963, -0.024986306205391884, 0.028047267347574234, 0.009356014430522919, -0.01893363706767559, -0.010339399799704552, -0.008524984121322632, 0.009446042589843273, -0.026814572513103485, 0.012970995157957077, 0.02772870659828186, 0.003677308326587081, 0.0350140705704689, -0.040969785302877426, -0.0295292716473341, 0.03772876784205437, 0.003372597275301814, 0.016011180356144905, -0.0033951043151319027, 0.005536738317459822, -0.006561675574630499, -0.02264557220041752, -0.006173861678689718, -0.019099842756986618, -0.00044538022484630346, -0.0024134500417858362, -0.003199466038495302, -0.004265954717993736, 0.008116394281387329, 0.016482098028063774, -0.04252104088664055, -0.005599065683782101, -0.01152361836284399, 0.03299189731478691, -0.019459955394268036, 0.0032098540104925632, -0.006291590631008148, 0.0014179451391100883, 0.004639918450266123, -0.010242446325719357, -0.009113630279898643, 0.0053012799471616745, 0.023767462000250816, -0.016011180356144905, 0.00415515061467886, -0.014681532979011536, 0.050055716186761856, 0.002754518762230873, -0.023919817060232162, 0.0029743954073637724, -0.010207820683717728, -0.002158947056159377, 0.004276342689990997, -0.017257725819945335, 0.014169064350426197, 0.005270116031169891, -0.0022836015559732914, -0.019764667376875877, 0.00325140543282032, 0.05994497612118721, -0.019432254135608673, 0.006208487786352634, 0.019099842756986618, 0.01855967380106449, 0.004726483952254057, -0.004740334581583738, 0.02034638822078705, 0.013635819777846336, -0.0010543694952502847, 0.01700841635465622, 0.023199591785669327, -0.013171827420592308, -0.03833819180727005, 0.05916934460401535, -0.03268718719482422, -0.008753517642617226, 0.04878146946430206, -0.012416975572705269, 0.008005590178072453, -0.009459893219172955, -0.030249496921896935, -0.009542996063828468, 0.03069271333515644, -0.027105433866381645, -0.004279805347323418, -0.008892023004591465, 0.002936306409537792, 0.021149717271327972, 0.005837986711412668, -0.015083197504281998, -0.009993137791752815, -0.021066613495349884, -0.016482098028063774, -0.009813080541789532, -0.013892053626477718, 0.008711965754628181, 0.0104155782610178, 0.012790938839316368, -0.0012119190068915486, 0.021011212840676308, 0.03631601855158806, -0.0023995996452867985, -0.005671780556440353, -0.01117735542356968, 0.0365099236369133, 0.012936369515955448, 0.015941929072141647, 0.01501394435763359, -0.022340860217809677, 0.010443278588354588, 0.020097078755497932, 0.013227229937911034, -0.009494519792497158, -0.027202386409044266, 0.007139934226870537, 0.008407254703342915, -0.015249403193593025, -0.006973728071898222, -0.033601317554712296, -0.027936464175581932, 0.005180087871849537, 0.0031232882756739855, -0.011856029741466045, -0.00747927138581872, -0.019833918660879135, 0.03592820465564728, -0.006838685367256403, 0.019446104764938354, -0.030997425317764282, -0.022770226001739502, -0.028448931872844696, 0.017257725819945335, 0.013407286256551743, 0.01405826024711132, -0.011883731000125408, 0.0007933740853331983, 0.009335238486528397, 0.039418529719114304, 0.0010820705210790038, -0.021080464124679565, -0.017451632767915726, -0.014473775401711464, 0.0004315297119319439, 0.014182914048433304, 0.0009937735740095377, 0.018670476973056793, 0.019570760428905487, 0.027091583237051964, 0.046426884829998016, -0.012403124943375587, 0.009660725481808186, -0.018961338326334953, 0.00668979249894619, 0.017645539715886116, -0.029473869130015373, -0.015734171494841576, 0.02055414579808712, -0.0399448499083519, 0.012167666107416153, -0.0031215569470077753, -0.011724450625479221, 0.010387877002358437, -0.024723146110773087, -0.020138630643486977, -0.008088693022727966, 0.02209155075252056, -0.016800658777356148, 0.008815844543278217, -0.02484780177474022, -0.007825533859431744, -0.0034453123807907104, -0.02925226092338562, 0.01997242495417595, 0.02504170872271061, -0.005415546242147684, -0.01152361836284399, -0.040388066321611404, 0.006565138231962919, -0.014612279832363129, -0.0038642901927232742, -0.02439073473215103, 0.05155156925320625, 0.02074805274605751, 0.020872706547379494, -0.02235471084713936, -0.007977889850735664, 0.036842335015535355, -0.002314765239134431, -0.004362908191978931, 0.04700860381126404, 0.008670414797961712, 0.04349057748913765, -0.03692543879151344, -0.012534704990684986, -0.011835254728794098, 0.006703643128275871, 0.03373982384800911, -0.02036023885011673, -0.009965436533093452, -0.010311699472367764, 0.015581815503537655, -0.011004224419593811, 0.042105525732040405, 0.004407922271639109, -0.0061669363640248775, 0.01552641298621893, 0.032160867005586624, -0.01977851800620556, 0.026897676289081573, -0.00305922981351614, -0.010214745998382568, -0.034930966794490814, 0.0021122016478329897, 0.004040883854031563, 0.017839446663856506, 0.021482128649950027, -0.005571364425122738, -0.0017745955847203732, -0.045457348227500916, -0.018047204241156578, -0.0813855528831482, 0.013975157402455807, -0.0022333934903144836, 0.004030496347695589, 0.006405857391655445, -0.015928078442811966, 0.015221701934933662, -0.006194637157022953, 0.015844974666833878, -0.00676250783726573, -0.016759108752012253, 0.020900407806038857, 0.005304742604494095, -0.00668979249894619, -0.005415546242147684, -0.020055526867508888, 0.02761790156364441, 0.001913100597448647, 0.024972455576062202, 0.009099779650568962, 0.007541598752140999, 0.02160678431391716, 0.03434924781322479, -0.024792399257421494, -0.011419739574193954, 0.029196858406066895, 0.007056830916553736, 0.0389753133058548, -0.010436353273689747, -0.002732011489570141, -0.004896152764558792, 7.331027882173657e-05, -0.004989643581211567, 0.027978014200925827, 0.0072645884938538074, 0.0034383872989565134, -0.009792305529117584, -0.01853197254240513, 0.03038800321519375, -0.010706438682973385, -0.0032392863649874926, -0.027271639555692673, -0.010747989639639854, 0.00676597049459815, -0.004515263717621565, 0.019653862342238426, -0.020609548315405846, 0.02754865027964115, 0.0023788237012922764, -0.004529114346951246, 0.0003051438834518194, 0.009522220119833946, -0.01595577970147133, -0.02065109834074974, 0.005193938501179218, -0.05484798923134804, 0.030637310817837715, -0.005741033237427473, -0.013656595721840858, 0.026343654841184616, 0.036759234964847565, 0.007430794648826122, 0.02591429091989994, -0.007423869334161282, -0.007243812549859285, 0.00898205116391182, -0.023171890527009964, -0.0006734806811437011, -0.010166268795728683, -0.0006496751448139548, -0.024930903688073158, 0.0011322785867378116, -0.01585882529616356, 0.002865322632715106, -0.01477848645299673, 0.019058290868997574, -0.013621969148516655, -0.0011997998226433992, -0.03626061603426933, 0.02180069126188755, 0.03185615688562393, -0.010547157377004623, -0.018310364335775375, 0.009051303379237652, 0.027894912287592888, -0.0037084720097482204, -0.02897525019943714, -0.0053670695051550865, -0.022410113364458084, -0.0007440316840074956, -0.001468153204768896, 0.018504271283745766, 0.017797894775867462, 0.011966833844780922, 0.017160773277282715, 0.02257631905376911, -0.0017339098267257214, -0.03529107943177223, 0.01941840350627899, 0.021565232425928116, -0.0007808220689184964, 0.0046468437649309635, 0.0020031288731843233, -0.04213322699069977, 0.004958479665219784, -0.0038677528500556946, -0.02006937749683857, -0.014501475729048252, 0.008213347755372524, 0.019750816747546196, 9.960459283320233e-05, -0.003992407117038965, -0.019958574324846268, 0.032659485936164856, -0.020013976842164993, 0.01132278610020876, 0.0028168458957225084, -0.018615074455738068, -0.02332424558699131, 0.028947550803422928, 0.0208311565220356, 0.011198131367564201, 0.03271488845348358, -0.012416975572705269, 0.030914321541786194, -0.011544393375515938, 0.01893363706767559, -0.03116363100707531, 0.01261088252067566, -0.0048996154218912125, -0.009286762215197086, 0.03199465945363045, -0.011246607638895512, -0.016094284132122993, -0.016800658777356148, 0.003871215507388115, 0.005214713979512453, -0.016412844881415367, -0.0273270420730114, 0.074515700340271, 0.011669048108160496, -0.005605990998446941, -0.00260389456525445, -0.01929374970495701, -0.013268780894577503, 0.010443278588354588, 0.015263253822922707, -0.0010180119425058365, -0.008968200534582138, 0.021814541891217232, 0.0028878296725451946, -0.03432154655456543, -0.009189808741211891, 0.005990342237055302, 0.007160709705203772, -0.025457223877310753, 0.04346287623047829, -0.01750703528523445, 0.008386479690670967, 0.0445709154009819, 0.006849073339253664, 0.016606751829385757, 0.007783982437103987, 0.002577924868091941, -0.003292956855148077, 0.003199466038495302, -0.015914227813482285, -0.019653862342238426, 0.010000063106417656, 0.009826931171119213, -0.0011513229692354798, 0.0023286156356334686, -0.03049880638718605, -0.029861683025956154, 0.011052700690925121, -0.011613646522164345, 0.0045637404546141624, 0.025775784626603127, -0.0009565502987243235, 0.004137837793678045, 0.01824111118912697, -0.022257758304476738, -0.01614968664944172, -0.008199497126042843, 0.010699513368308544, -0.007770131807774305, 0.0055540516041219234, -0.031135929748415947], "17dc908d-97bd-4f70-a113-da91d42944fc": [-0.04573190212249756, -0.013649644330143929, 0.0043913815170526505, -0.011908475309610367, -0.023047760128974915, 0.008565991185605526, -0.0078737186267972, 0.0007429685792885721, -0.0011380530195310712, -0.033424846827983856, -0.004901844542473555, -0.008929608389735222, -0.0039123850874602795, -0.0043284473940730095, -0.008628924377262592, -0.01890811324119568, 0.004132653586566448, -0.02322956919670105, 0.030068375170230865, -0.020418524742126465, 0.03208225965499878, 0.01717393845319748, -0.015313893556594849, -0.024320421740412712, -0.02040454000234604, -0.013279033824801445, 0.01620895229279995, -0.01797109842300415, 0.0157474372535944, -0.006625531706959009, 0.012754585593938828, 0.006024164147675037, -0.004506760276854038, -0.009307211264967918, -0.01804102584719658, -0.036193933337926865, -0.007719880901277065, 0.009265255182981491, -0.008859681896865368, 0.01541179046034813, 0.020124834030866623, -0.018362687900662422, -0.0017437910428270698, 0.008978556841611862, -0.02383093535900116, 0.01597120240330696, -0.013635658659040928, 0.011139284819364548, -0.010824615135788918, 0.015593599528074265, -0.01770537905395031, 0.02911737561225891, -0.02925722859799862, -0.01060085091739893, 0.013083240017294884, 0.017159951850771904, -0.006520641967654228, 0.011125299148261547, 0.012894438579678535, -0.05719983950257301, 0.005090645980089903, 0.007747851312160492, -0.02443230338394642, 0.021327568218111992, 0.03362064063549042, -0.00748912338167429, -0.0053563667461276054, -0.0033826923463493586, -0.03015228733420372, 0.008929608389735222, -0.0035907234996557236, 0.01720190793275833, 0.0017726356163620949, 0.016558585688471794, 0.042011816054582596, 0.008230343461036682, -0.01262871827930212, 0.016726408153772354, 0.031271111220121384, 0.024767950177192688, 0.0048773703165352345, -0.0024788929149508476, 0.013209107331931591, 0.014216048642992973, 0.01927173137664795, 0.0015182781498879194, 0.010544909164309502, 0.04880866780877113, -0.0038529476150870323, -0.017397701740264893, 0.003447374328970909, 0.0014308701502159238, -0.017817260697484016, -0.003260320983827114, -0.009530975483357906, 0.019915055483579636, -0.028543978929519653, 0.017397701740264893, -0.005608101841062307, -0.005803895648568869, 0.004699057899415493, 0.010831608437001705, -0.02612452395260334, 0.001494677970185876, -0.030040405690670013, -0.01104838028550148, 0.011076350696384907, -0.008929608389735222, -0.014586659148335457, -0.029341140761971474, -0.029397081583738327, 0.034963227808475494, -0.0060836016200482845, -0.030711699277162552, -0.008090491406619549, -0.003286543535068631, 0.02749508246779442, -0.01020227000117302, -0.028236303478479385, -0.00198765960521996, 0.0029876078478991985, -0.0012324537383392453, 0.02004092186689377, 0.0071534765884280205, -0.0012752837501466274, 0.012593754567205906, -0.018880143761634827, -0.024376362562179565, 0.013866416178643703, -0.03082358092069626, 0.03700508177280426, 0.0026274865958839655, 0.0017464131815358996, 0.010607843287289143, -0.006982156541198492, 0.00902051292359829, -0.006908733863383532, -0.013390916399657726, -0.02120170183479786, -0.0008959327242337167, 0.03471149131655693, 0.015929246321320534, -0.010712733492255211, -0.014418834820389748, -0.009978504851460457, -0.0059717195108532906, 0.01394333504140377, 0.02735522948205471, 0.008482079021632671, 0.005894800182431936, 0.01381047535687685, -0.022236613556742668, 0.005303921643644571, 0.004373899661004543, -0.013964313082396984, 0.014376879669725895, 0.016922201961278915, -0.004296980798244476, 0.006835311185568571, -0.015481716953217983, 0.01078265905380249, 0.015397805720567703, 0.0061535281129181385, 0.012789548374712467, 0.006849296391010284, 0.021914951503276825, -0.01813892275094986, -0.011810578405857086, 0.00013646585284732282, 0.012782556004822254, -0.019285716116428375, 0.007003134582191706, -0.03238993510603905, 0.00672342861071229, -0.028502022847533226, 0.010845593176782131, 0.009489020332694054, -0.007782814558595419, -0.005268958397209644, 0.007059075869619846, 0.0013434620341286063, -0.018096966668963432, 0.006268906872719526, 0.016824305057525635, -0.005478737875819206, -0.012978349812328815, 0.039382580667734146, 0.0008229469531215727, 0.01454470306634903, -0.0036012125201523304, -0.0038809182588011026, 0.02173314243555069, 0.023411378264427185, 0.013901379890739918, -0.5911862254142761, -0.013404901139438152, -0.013125196099281311, 0.002945651998743415, 0.01720190793275833, -0.003964830189943314, 0.011845541186630726, 0.0166424959897995, -0.020110849291086197, 0.02395680360496044, 0.010845593176782131, 0.01262871827930212, -0.01674039289355278, -0.012642703019082546, -0.016880245879292488, -0.03294934704899788, 0.007852740585803986, -0.01454470306634903, 0.019019996747374535, 0.010363101027905941, -0.009286233223974705, 0.030571846291422844, -0.02289392240345478, 0.016292864456772804, 0.015593599528074265, 0.009698799811303616, -0.010370093397796154, 0.0034298927057534456, -0.0009641110082156956, 0.03806796297430992, -0.017817260697484016, 0.015313893556594849, 0.003643168369308114, 0.02176111377775669, 0.05851445719599724, -0.01236299704760313, -0.01876826025545597, 0.011810578405857086, 0.008985549211502075, 0.0376763753592968, -0.0025103597436100245, -0.02892158180475235, 0.03837563842535019, -0.006349322386085987, 0.015565629117190838, -0.0103141525760293, -0.006447219289839268, -0.0447249598801136, -0.013265049085021019, 0.0038879108615219593, -0.015789393335580826, -0.006810836959630251, -0.006859785411506891, 0.008761784993112087, -0.007978608831763268, 0.016362790018320084, 0.037956081330776215, -0.03862737491726875, 0.03244587406516075, -0.024935774505138397, -0.012887446209788322, 0.0019334665266796947, -0.02945302240550518, -0.014488761313259602, -0.016726408153772354, 0.013936342671513557, -0.01857246644794941, 0.012167203240096569, 0.005761940032243729, -0.023341450840234756, -0.021872995421290398, -0.001113578793592751, 0.006964675150811672, -0.005045193713158369, 0.027117479592561722, 0.016950173303484917, 0.027998553588986397, -0.003996296785771847, 0.025872789323329926, 0.039410550147295, 0.020684245973825455, -0.005237491335719824, -0.01302729919552803, -0.005268958397209644, 0.025271421298384666, -0.006737413816154003, -0.039550404995679855, 0.0024649074766784906, 0.007943645119667053, -0.00480045098811388, 0.02219465747475624, 0.010656791739165783, 0.04273904860019684, -0.021886980161070824, 0.011104321107268333, 0.04394178465008736, -0.045647989958524704, -0.005926267243921757, -0.0013609436573460698, -0.011656739749014378, -0.03524293377995491, 0.034655552357435226, -0.0038914072792977095, 0.015048173256218433, 0.0166424959897995, 0.0039368593133986, -0.018642393872141838, 0.03227805346250534, 0.028613906353712082, -0.020488452166318893, 0.01929970271885395, -0.02219465747475624, 0.00024889447377063334, -0.016418732702732086, 0.0016083085210993886, -0.0359421968460083, 0.030907493084669113, 0.0036501609720289707, 0.015467732213437557, -0.0021257642656564713, 0.023872891440987587, -0.01811095140874386, -0.005317906849086285, 0.017159951850771904, 0.0020348599646240473, 2.914512879215181e-05, 0.027830729261040688, -0.02805449441075325, -0.029900552704930305, 0.009943542070686817, -0.00549272308126092, -0.01833471655845642, 0.025816846638917923, -0.012509843334555626, -0.014908320270478725, -0.011558842845261097, 0.007149979937821627, -0.008062520064413548, 0.0420677550137043, 0.0008557250257581472, -0.026040611788630486, 0.005454263649880886, 0.02296384796500206, -0.00758702028542757, -0.03034808114171028, -0.028641875833272934, -0.009447064250707626, -0.0016511384164914489, 0.0034421298187226057, 0.009027505293488503, 0.0005795155302621424, 0.007957630790770054, -0.022837979719042778, 0.046906664967536926, -0.0214674212038517, -0.0007569539011456072, -0.01743965782225132, -0.0012735355412587523, 0.005894800182431936, -0.00754506466910243, -0.013369938358664513, -0.0157474372535944, -0.011223196052014828, -0.0017560281557962298, -0.006324848160147667, -0.010964468121528625, 0.014062209986150265, 0.013195122592151165, -0.01850254088640213, -0.04718637093901634, -0.036725375801324844, 0.01004843134433031, -0.022222626954317093, -0.003734072670340538, 0.0066744801588356495, 0.020544392988085747, -0.005422796588391066, 0.008656894788146019, 0.026683935895562172, -0.0050836531445384026, 0.011286130174994469, -0.017831245437264442, -0.016698436811566353, -0.002711398294195533, 0.012551798485219479, -0.001936962828040123, 0.017299804836511612, 0.023453332483768463, -0.016097070649266243, 0.008796747773885727, 0.0006140416953712702, 0.013209107331931591, -0.0007840503822080791, 0.011957423761487007, 0.030991405248641968, 0.020250702276825905, 0.0034631076268851757, -0.0011738904286175966, -0.00867088045924902, 0.028837669640779495, 0.021257642656564713, 0.024110641330480576, -0.007251373492181301, -0.031103286892175674, -0.0017534059006720781, -0.01344685722142458, 0.0214674212038517, -0.01594323106110096, 0.013726563192903996, -0.03736869990825653, -0.0157474372535944, -0.018810216337442398, -0.0072583663277328014, 0.010789652355015278, 0.02006889320909977, 0.034291934221982956, -0.020921995863318443, 0.00981767475605011, 0.0022079278714954853, 0.028264272958040237, 0.03837563842535019, -0.019481509923934937, 0.007398218847811222, -0.010775666683912277, 0.002344284439459443, -0.02183103933930397, 0.01936962828040123, 0.00020049225713592023, -0.005975215695798397, -0.004024267662316561, -0.013139180839061737, -0.0035435231402516365, -0.015467732213437557, -0.01929970271885395, -0.0001622512354515493, 0.0024876336101442575, 0.051997311413288116, -0.015733452513813972, 0.02788667008280754, 0.0006070490344427526, -0.010523932054638863, 0.024544186890125275, 0.011572828516364098, -0.028376156464219093, 0.02399875968694687, 0.024837877601385117, 0.04452916607260704, 0.014223041012883186, -0.004692065063863993, 0.010537916794419289, -0.030935464426875114, -0.008705844171345234, -0.007628976367413998, 0.01316015888005495, -0.004559204913675785, 0.010474982671439648, 0.002863488392904401, -0.0009780962718650699, 0.031998347491025925, 0.023453332483768463, 0.026907701045274734, 0.027033567428588867, -0.009412100538611412, -0.008307263255119324, -0.0010471487184986472, -0.035159021615982056, 0.01021625567227602, -0.01697814278304577, -0.00792266707867384, -0.002891459036618471, -0.02320159785449505, -0.00910442415624857, -0.002101290039718151, 0.005006734281778336, 0.012635710649192333, -0.010223248042166233, 0.029313169419765472, 0.024907803162932396, 0.014446806162595749, -0.011628769338130951, -0.02605459839105606, -0.03790013864636421, 0.02595669962465763, 0.031466905027627945, 0.012544806115329266, -0.009754740633070469, -0.0010445264633744955, -0.004975267220288515, -0.032557759433984756, 0.02636227384209633, -0.005275951232761145, 0.007852740585803986, -0.012936394661664963, 0.0061535281129181385, -0.020054908469319344, 0.025313377380371094, 0.025914745405316353, 0.0005821377271786332, -0.01153087243437767, -0.017285820096731186, 0.02122967131435871, -0.008062520064413548, -0.011887497268617153, -0.030459964647889137, 0.02199886366724968, 0.007510101422667503, 0.001704457332380116, -0.011439967900514603, 0.009635865688323975, -0.003001593053340912, -0.00668147299438715, -0.030292140319943428, 0.0020261190365999937, -0.02566300891339779, 0.007503108587116003, 0.044808872044086456, 0.005594116635620594, -0.008244329132139683, 0.03529887646436691, 0.017062054947018623, -0.03353672847151756, -0.006184995174407959, -0.02315964177250862, -0.007412204518914223, -0.002809295430779457, 0.007398218847811222, -0.00018727178394328803, -0.021355539560317993, -0.025984670966863632, -0.001819835975766182, 0.011118306778371334, -0.03485134616494179, 0.018152907490730286, -0.005817881319671869, -0.002641471801325679, -0.012055320665240288, 0.008510049432516098, -0.0018303249962627888, 0.00029478370561264455, -0.01674039289355278, -0.009188336320221424, -0.012698644772171974, 0.03278152272105217, 0.00986662320792675, 0.009509998373687267, 0.013537761755287647, -0.0004615146026480943, 0.03395628556609154, -0.0027411170303821564, -0.011740651912987232, 0.0012298315996304154, 0.014656584709882736, 0.0012962616747245193, -0.009838652797043324, -0.016558585688471794, -0.034599609673023224, -0.013866416178643703, 0.04413757845759392, -0.010523932054638863, 0.011551850475370884, -0.004789962433278561, 0.03370455279946327, -0.007167461793869734, 0.009251270443201065, 0.004601160995662212, 0.0135937025770545, -0.0028372658416628838, -0.015915261581540108, -0.025467215105891228, -0.011090336367487907, 0.03258572891354561, 0.01039806380867958, -0.010705740191042423, 0.006559101399034262, 0.014174092561006546, -0.0019054958829656243, -0.056556519120931625, 0.013775511644780636, 0.024320421740412712, 0.01570548117160797, -0.014034239575266838, 0.0022761060390621424, 0.03543872758746147, -0.0157474372535944, -0.018656378611922264, -0.009496012702584267, 0.029508965089917183, -0.02129959873855114, -0.0034858337603509426, -0.02805449441075325, -0.03398425877094269, -0.0420677550137043, -0.030208228155970573, 0.009139387868344784, 0.031327053904533386, -0.015285923145711422, -0.044613078236579895, -0.008356211706995964, 0.0024054700043052435, 0.02185901068150997, 0.011719673871994019, -0.004688568878918886, -0.019313687458634377, 0.024446288123726845, -0.005160572472959757, -0.023257538676261902, -0.015467732213437557, -0.019159849733114243, 0.0005310040432959795, -0.006555605214089155, 0.008880659937858582, -0.02096395194530487, 0.013055269606411457, 0.01542577613145113, 0.01236299704760313, 0.008663888089358807, 0.020348599180579185, 0.0052165137603878975, -0.02602662704885006, -0.01114627718925476, 0.010139335878193378, -0.0012359501561149955, -0.006174506153911352, -0.010356107726693153, 0.016390761360526085, -0.026739876717329025, -0.02342536300420761, -0.004167616833001375, -0.01570548117160797, -0.01736973226070404, 0.000492107414174825, 0.020348599180579185, 0.01532787922769785, 0.006024164147675037, 0.015202011913061142, -0.007733866106718779, 0.018656378611922264, -0.0012779060052707791, 0.004496271256357431, 0.026767848059535027, -0.000911666196770966, 0.01943955384194851, 0.008461100980639458, -0.0009684814140200615, 0.01929970271885395, -0.027914641425013542, 0.030795611441135406, 0.004947296809405088, -0.022712113335728645, -0.009656843729317188, -0.0043983738869428635, -0.019677305594086647, -0.020726202055811882, 0.025942714884877205, -0.014810423366725445, 0.02156531810760498, 0.009845645166933537, -0.0005340633215382695, -0.04282296076416969, 0.00024255739117506891, -0.017887188121676445, 0.0008828215068206191, -0.03177458047866821, -0.011964417062699795, -0.00274636154063046, -0.029844611883163452, 0.03468352183699608, -0.004153631627559662, 0.0028809700161218643, -0.02822231687605381, -0.012006372213363647, -0.00514309061691165, 0.007461152970790863, 0.020446496084332466, 0.014768467284739017, 0.0007351018721237779, -0.025830833241343498, -8.292840357171372e-05, 0.00513260206207633, -0.03348078578710556, -0.003176409285515547, -0.007307314779609442, 0.018194863572716713, 0.022418422624468803, 0.018124938011169434, 0.01917383447289467, -0.0006747902953065932, -0.018544496968388557, 0.01541179046034813, -0.00023272399266716093, -0.012321041896939278, -0.009726770222187042, -0.011516887694597244, -0.004052238073199987, 0.006279395893216133, 0.03258572891354561, 0.009377137757837772, -0.016180982813239098, -0.0037550507113337517, 0.0010244225850328803, -0.006139542907476425, 0.02535533346235752, -0.03317311033606529, -0.036753345280885696, 0.005202528554946184, 0.006817829329520464, -0.007062572054564953, -0.013572725467383862, -0.0481933131814003, -0.004157127812504768, -0.0023844921961426735, -0.010139335878193378, 0.019579406827688217, 0.02745312638580799, -0.01717393845319748, -0.014188078232109547, -0.0006341455737128854, -0.00022015908325556666, 0.02009686268866062, -0.008202373050153255, 0.019425569102168083, -0.018726304173469543, 0.011153269559144974, 0.02183103933930397, -0.020558377727866173, 0.0324179045855999, -0.0039368593133986, -0.003120467998087406, -0.0033250029664486647, -0.009789703413844109, -0.03904693201184273, -0.006164017133414745, 0.012978349812328815, -0.016530614346265793, -0.023816950619220734, -0.013139180839061737, 0.008873667567968369, -0.02945302240550518, 0.024600127711892128, 0.030264170840382576, -0.0030033413786441088, 0.007957630790770054, -0.004352922085672617, -0.0049123335629701614, 0.013957320712506771, -0.016292864456772804, 0.034431785345077515, 0.0011730162659659982, 0.022376466542482376, 0.04908837378025055, 0.015733452513813972, -0.013950328342616558, -0.035662490874528885, -0.012551798485219479, 0.022586245089769363, 0.05378742888569832, 0.02515953965485096, 0.01507614366710186, -0.009593909606337547, 0.0009754740749485791, 0.022306539118289948, -0.019551437348127365, -0.035159021615982056, 0.021285613998770714, 0.01999896578490734, 0.0030190746765583754, -0.018614422529935837, 0.010160313919186592, -0.019313687458634377, -0.010370093397796154, -7.98691253294237e-05, 0.0008321248460561037, -0.0236351415514946, 0.0038949036970734596, -0.024040715768933296, -0.026711905375123024, 0.01654459908604622, 0.006583575624972582, 0.009342174977064133, 0.009614887647330761, -0.0205723624676466, -0.012558791786432266, -0.0057444581761956215, 0.02525743655860424, 0.0021502384915947914, 0.03790013864636421, -0.012069306336343288, -0.04346628487110138, 0.018278775736689568, -0.0010235485387966037, 0.017020098865032196, -0.03381643444299698, -0.004352922085672617, 0.03750855103135109, -0.023900862783193588, -0.006803844124078751, 0.002529589459300041, 0.008020564913749695, 0.005080156959593296, -0.017915157601237297, -0.008314255625009537, -0.002505115233361721, -0.03996996209025383, -0.004289987962692976, 0.020306643098592758, -0.0011476679937914014, -0.0014745740918442607, -0.004971771035343409, 0.013607688248157501, 0.0015934491530060768, -0.014936290681362152, -0.0008238210575655103, 0.026963641867041588, -0.016712423413991928, -0.03907490521669388, -0.018978040665388107, -0.01953745260834694, 0.011286130174994469, -0.015957217663526535, -0.009230292402207851, 0.0052514770068228245, 0.05359163507819176, -0.023970788344740868, 0.014034239575266838, -0.02106184884905815, 0.0022673653438687325, -0.003216617042198777, 0.00157684157602489, -0.01987309940159321, -0.019887084141373634, 0.02506164088845253, -0.008426138199865818, -0.0004999741795472801, -0.026082567870616913, -0.001358321402221918, 0.026264376938343048, 0.004636124242097139, 0.0429348424077034, 0.004041749052703381, 0.0227680541574955, 0.0142580047249794, 0.012929401360452175, -0.02619444951415062, 0.013279033824801445, 0.0019264738075435162, 0.005391329526901245, 0.01750958524644375, -0.01374754123389721, 0.020474465563893318, -0.021005908027291298, -0.00980368908494711, -0.010223248042166233, -0.034991197288036346, -0.04729825630784035, 0.004237543325871229, -0.0219009667634964, -0.01700611412525177, -0.015607585199177265, -0.03152284771203995, -0.016390761360526085, -0.01191546767950058, 0.007754844147711992, 0.014278982765972614, -0.016418732702732086, 0.01552367303520441, 0.024418318644165993, 0.003664146177470684, 0.0037165910471230745, -0.01623692363500595, -0.030543876811861992, 0.019285716116428375, -0.03613799065351486, -0.006786362733691931, -0.007859733887016773, -0.004394877701997757, 0.04668290168046951, 0.0012438168050721288, -0.0306837297976017, -0.026166480034589767, 0.022208642214536667, -0.03169066831469536, -0.006503160577267408, -0.006212965585291386, 0.04592769593000412, 0.025718949735164642, -0.005195535719394684, -0.008055527694523335, 0.03314514085650444, -0.011027402244508266, 0.01311121042817831, -0.0009134143474511802, 0.009824667125940323, -0.00040710309986025095, -0.03085155226290226, 0.009258262813091278, 0.02708950825035572, -0.03694913908839226, -0.005611598026007414, -0.008950586430728436, 0.0017551539931446314, 0.027103494852781296, 0.02829224430024624, -0.0033477290999144316, -0.03202631697058678, -0.014530717395246029, 0.010342122986912727, 0.0013469583354890347, 0.02492178976535797, -0.023705068975687027, -0.010677769780158997, 0.01063581369817257, 0.012048328295350075, 0.008824719116091728, -0.008642910048365593, 0.04002590477466583, 0.005447270814329386, -0.01657257042825222, -0.007307314779609442, -0.028809700161218643, -0.02026468701660633, -0.021719157695770264, 0.0032778026070445776, 0.030739670619368553, -0.011950431391596794, 0.001317239599302411, 0.012873460538685322, -0.01620895229279995, 0.007635969202965498, -0.004985756240785122, 0.011460945941507816, -0.015565629117190838, -0.016726408153772354, -0.0014343664515763521, -0.011349063366651535, 0.0005799525533802807, 0.006831814534962177, 0.010586865246295929, -0.0002467092708684504, -0.007803792599588633, 0.025467215105891228, 0.012174195609986782, -0.03776028752326965, 0.01746762916445732, 0.005905289202928543, -0.025215480476617813, -0.021243657916784286, -0.021593289449810982, -0.009929556399583817, 0.01331399753689766, -0.02067026123404503, 0.028641875833272934, -0.03121517039835453, 0.020320627838373184, -0.010775666683912277, 0.008880659937858582, -0.010419041849672794, 0.00908344704657793, -0.008356211706995964, 0.013432872481644154, -0.014418834820389748, 0.2418895959854126, -0.023019788786768913, 0.005265462212264538, 0.00638078898191452, -0.004003289621323347, 0.04486481472849846, 0.010992438532412052, 0.0011494160862639546, -0.004202580079436302, -0.013369938358664513, -0.009006527252495289, -0.011460945941507816, -0.029313169419765472, -0.004066223278641701, -0.011488916352391243, -0.018992025405168533, -0.04013778641819954, -0.02139749564230442, -0.028236303478479385, -0.011992387473583221, 0.024376362562179565, -0.0021624756045639515, -0.0033040251582860947, -0.020110849291086197, 0.01472651120275259, -0.02096395194530487, -0.004405366722494364, 0.025537142530083656, -0.004789962433278561, -0.002966629806905985, -0.020880039781332016, 0.004209572449326515, 0.0007805540808476508, 0.011377034708857536, 0.017523569986224174, -0.013439864851534367, 0.029397081583738327, 0.008251321502029896, 0.022180672734975815, -0.0011109565384685993, -0.006461204495280981, -0.007412204518914223, 0.012432923540472984, 0.0018495547119528055, -0.0006625531823374331, 0.021886980161070824, -0.0002447426086291671, -0.027509067207574844, -0.014866364188492298, -0.007244380656629801, -0.04371802136301994, -0.021383510902523994, 0.023145657032728195, 0.0412006676197052, -0.010677769780158997, 0.00908344704657793, 0.012600746937096119, -0.014530717395246029, -0.008356211706995964, 0.01039806380867958, -0.02569098025560379, 0.03208225965499878, 0.001311121042817831, 0.008803741075098515, -0.025649024173617363, 0.014174092561006546, -0.03171864151954651, 0.012481871992349625, 0.011754637584090233, 0.007880711928009987, -0.014034239575266838, -0.020222730934619904, -0.0060066827572882175, -0.03308919817209244, -0.024082671850919724, -0.0324738472700119, 0.03711696341633797, 0.006272403057664633, 0.015229982323944569, 0.029732728376984596, -0.020194759592413902, -0.006429737433791161, -0.007580027915537357, -0.015733452513813972, -0.006286388263106346, -0.037788257002830505, 0.005863333120942116, -0.01472651120275259, -0.014852379448711872, 0.022642185911536217, 0.012153218500316143, 0.0019509481498971581, -0.00517455767840147, -0.01197840180248022, 0.008593961596488953, 0.009230292402207851, 0.00354876765049994, 0.03085155226290226, -0.02472599409520626, 0.0025348339695483446, -0.02156531810760498, 0.032557759433984756, 0.009642858058214188, 0.03015228733420372, 0.0011677718721330166, -0.005247980356216431, -0.011957423761487007, 0.018124938011169434, -0.007384233642369509, -0.018530510365962982, 0.01777530461549759, -0.06047239899635315, -0.017859216779470444, -0.028627891093492508, -0.03143893554806709, -0.008524035103619099, -0.0008683991618454456, -0.00668147299438715, -0.004531234502792358, -0.02163524553179741, 0.00640526320785284, -0.033760491758584976, -0.0004252402577549219, 0.011761629953980446, -0.009698799811303616, -0.003807495580986142, -0.03862737491726875, -0.008160416968166828, -0.0024194554425776005, -0.017159951850771904, 0.02998446486890316, -0.007307314779609442, 0.028641875833272934, -0.011663733050227165, 0.004793458618223667, 0.010132343508303165, -0.02299181930720806, -0.02096395194530487, -0.010558894835412502, -0.009391123428940773, -0.01650264300405979, -0.0028827181085944176, 0.010090387426316738, 0.004548715893179178, 0.0002532648795749992, -0.024712009355425835, -0.0018582955235615373, 0.02013881877064705, -0.0010672524804249406, 0.004132653586566448, -0.04492075368762016, -0.01813892275094986, 0.012635710649192333, -0.016866261139512062, -0.007010127417743206, -0.0023372918367385864, -0.006926215253770351, -0.014614629559218884, 0.006891252007335424, 0.011586814187467098, -0.0402776375412941, 0.0006407011533156037, 0.010230240412056446, -0.022879935801029205, -0.012936394661664963, -0.008111468516290188, -0.17945925891399384, 0.02009686268866062, 0.04019372537732124, -0.01676836423575878, 0.011621776968240738, -0.008524035103619099, 0.007412204518914223, 0.0065625980496406555, -0.013272041454911232, 0.005653554107993841, 0.004849399905651808, 0.015369835309684277, -0.01570548117160797, -0.028781728819012642, -0.017117995768785477, 0.022404436022043228, -0.016055114567279816, 0.030571846291422844, 0.020124834030866623, 0.014684556052088737, 0.03454367071390152, -0.036753345280885696, -0.014922305941581726, 0.02006889320909977, -0.006024164147675037, 0.017411688342690468, -0.002262120833620429, -0.004223558120429516, 0.015579614788293839, -0.03434787690639496, -0.017229879274964333, 0.0008452360634692013, 0.012866468168795109, -0.004020771011710167, -0.011342070996761322, -0.002190446248278022, 0.0002303202636539936, -0.010111365467309952, -0.018096966668963432, 0.01604112982749939, -0.005520693492144346, 0.023509275168180466, -0.022418422624468803, 0.005370351951569319, -0.002704405691474676, -0.004192091058939695, 0.007768829353153706, -0.011460945941507816, 0.009740754961967468, -0.0016030640108510852, 0.037088993936777115, -0.017453642562031746, 0.015579614788293839, 0.0019072440918534994, 0.03666943311691284, -0.00598920090124011, -0.02665596455335617, 0.0047305249609053135, -0.021621260792016983, 0.0016135529149323702, -0.007216410245746374, -0.012209159322082996, -0.003216617042198777, 0.010768674314022064, 0.003571493783965707, -0.015285923145711422, -0.020460480824112892, 0.038487520068883896, 0.0031589276622980833, -0.006691962014883757, -0.0035417750477790833, 0.0016423976048827171, 0.025215480476617813, -0.0067793698981404305, 0.018810216337442398, 0.01710401102900505, -0.004272506572306156, 0.0014702037442475557, -0.002978866919875145, 0.009705792181193829, -0.03977416828274727, 0.04257122799754143, -0.014558687806129456, -0.020908011123538017, 0.035326845943927765, -0.02395680360496044, -0.01186651922762394, -0.019019996747374535, -0.016586555168032646, -0.0103141525760293, 0.03630581498146057, -0.018684349954128265, -0.024068685248494148, -0.008803741075098515, 0.014558687806129456, 0.016348805278539658, 0.009635865688323975, -0.022348495200276375, -0.022054804489016533, 0.0007412204286083579, -0.01830674707889557, -0.005954237654805183, -0.022879935801029205, -0.0073003219440579414, 0.0022900914773344994, 0.010915519669651985, 0.0066744801588356495, 0.024082671850919724, 0.04520045965909958, -0.006104579661041498, -0.006828318350017071, 0.0010121854720637202, 0.04226354882121086, 0.023173628374934196, 0.019383613020181656, 0.01384543813765049, -0.004692065063863993, -0.0072234030812978745, 0.01611105538904667, 0.0037865175399929285, -0.018055010586977005, -0.014614629559218884, -0.008202373050153255, 0.015537658706307411, -0.014502746984362602, -0.013139180839061737, -0.02925722859799862, -0.02356521598994732, 0.006992645561695099, 0.011537864804267883, -0.012705637142062187, 0.019117893651127815, -0.005824873689562082, 0.026809802278876305, 0.009614887647330761, 0.043382372707128525, -0.021173730492591858, -0.02825028821825981, -0.011523880064487457, 0.02535533346235752, 0.002449174178764224, 0.020852068439126015, 0.0005467374576255679, -0.001103089889511466, 0.027565008029341698, 0.04648710787296295, 0.01109732873737812, -0.024040715768933296, -0.014572673477232456, -0.028502022847533226, 0.0028512512799352407, 0.006643013097345829, 0.0018145915819332004, 0.004034756682813168, 0.0061185648664832115, 0.032333992421627045, 0.028012538328766823, -0.002041852567344904, 0.025047656148672104, -0.004153631627559662, 0.0018740290543064475, -0.02552315592765808, -0.01213224045932293, -0.004671087488532066, 0.025299392640590668, -0.044109608978033066, 0.005066171754151583, -0.0014981742715463042, -0.003571493783965707, -0.013293019495904446, -0.008754792623221874, -0.02998446486890316, -0.006181498523801565, 0.027774788439273834, -0.012908423319458961, 0.012929401360452175, -0.021984877064824104, -0.012139232829213142, -0.0023932328913360834, -0.03840360790491104, 0.022586245089769363, 0.005440278444439173, 0.00480045098811388, 0.009684814140200615, -0.03571843355894089, 0.025984670966863632, -0.009475034661591053, 0.01346084289252758, -0.03283746540546417, 0.021607274189591408, 0.02373303845524788, 0.03191443532705307, -0.037228845059871674, -0.02339739166200161, 0.025970686227083206, 0.0004337625578045845, -0.01552367303520441, 0.05115819349884987, -0.000727672188077122, 0.045312345027923584, 4.124568295083009e-05, -0.010516938753426075, -0.019984981045126915, -0.011279137805104256, 0.017551541328430176, 0.00473402114585042, -0.025243449956178665, 0.0023844921961426735, 0.01780327595770359, -0.029397081583738327, 0.0314948745071888, -0.001344336080364883, 0.005587123800069094, 0.019187819212675095, 0.0276209507137537, -0.03823578730225563, 0.013586710207164288, 0.011845541186630726, 0.005027712322771549, -0.00753807183355093, 0.0042864917777478695, 0.013551747426390648, 0.00012597687600646168, 0.026166480034589767, 0.008614939637482166, 0.0028932071290910244, -0.029676787555217743, -0.010789652355015278, -0.07826168835163116, 0.016180982813239098, -0.017299804836511612, 0.0055626495741307735, 0.007957630790770054, 0.00833523366600275, 0.011775615625083447, -0.0049542891792953014, 0.00862193200737238, -0.010062417015433311, -0.012635710649192333, 0.015299908816814423, 0.022754069417715073, -0.024110641330480576, -0.029760699719190598, -0.01640474610030651, 0.026376258581876755, 0.007384233642369509, 0.014698540791869164, 0.018124938011169434, 0.0012376982485875487, -0.006775873713195324, 0.02253030426800251, -0.01316015888005495, -0.005384337157011032, 0.03736869990825653, -0.013474827632308006, 0.02894955314695835, 0.0027883173897862434, -0.009684814140200615, 0.012873460538685322, -0.023005804046988487, -0.015481716953217983, 0.01034911535680294, 0.005824873689562082, -0.007705895230174065, 0.014446806162595749, -0.0008124579908326268, 0.03437584638595581, -0.02120170183479786, -0.014460790902376175, -0.0127126295119524, 0.007775821723043919, -0.002529589459300041, -0.00234253634698689, 0.0007355388952419162, -0.02349528856575489, 0.024712009355425835, 0.00035269156796857715, -0.0026956647634506226, 0.03230602294206619, 0.003608205122873187, 0.0026729388628154993, -0.019481509923934937, -0.009139387868344784, -0.04816534370183945, 0.017747335135936737, 0.004115171730518341, -0.023886878043413162, 0.020180774852633476, 0.04097690433263779, -0.0033110177610069513, 0.031103286892175674, -0.029341140761971474, -0.012803534045815468, 0.011055372655391693, -0.011139284819364548, 0.007419196888804436, 0.01099943183362484, -0.0031169718131422997, -0.03652958199381828, 0.0034928263630717993, -0.013209107331931591, -0.006464700680226088, 0.012782556004822254, -0.010090387426316738, -0.0022953359875828028, -0.004303973168134689, -0.03378846496343613, 0.013293019495904446, 0.013649644330143929, -0.013020305894315243, -0.018446598201990128, 0.0026991611812263727, 0.016390761360526085, 0.003646664787083864, -0.01917383447289467, 0.016894232481718063, -0.005457759834825993, -0.0135937025770545, -0.013733555562794209, 0.00017874949844554067, -0.0010069409618154168, 0.00674790283665061, 0.023886878043413162, 0.024767950177192688, -0.006636020727455616, 0.007621983531862497, 0.005576634779572487, 0.034963227808475494, -0.0065975612960755825, 0.0017175686080008745, 0.003400173969566822, -0.003583730896934867, 0.008440122939646244, 0.01746762916445732, 0.0035977161023765802, -0.027411170303821564, -0.0024893819354474545, 0.006024164147675037, 0.02639024518430233, 0.010391071438789368, 0.007181446999311447, 0.014432820491492748, -0.02708950825035572, 0.00838418211787939, -0.00795063842087984, -0.021872995421290398, -0.021341554820537567, 0.031830523163080215, 0.011251166462898254, 0.027732832357287407, 0.025774892419576645, -0.02928519994020462, 0.028893612325191498, -0.02339739166200161, 0.018180878832936287, -0.045144520699977875, 0.006069616414606571, 0.0010716229444369674, 0.005859836935997009, 0.03683725744485855, -0.026306333020329475, -0.026809802278876305, -0.005747954826802015, 0.007237388286739588, -0.008531027473509312, -0.003459611441940069, -0.013425879180431366, 0.075464628636837, 0.006919222883880138, -0.004136149771511555, -0.012754585593938828, 0.005282943602651358, -0.0018810216570273042, 0.008440122939646244, 0.004971771035343409, 0.0044683003798127174, -0.013642651960253716, 0.014404850080609322, 0.006419248878955841, -0.04254325479269028, -0.020194759592413902, 0.00042436618241481483, -0.001700086984783411, -0.009384130127727985, 0.014572673477232456, -0.028278259560465813, 0.019425569102168083, 0.03202631697058678, 0.006726925261318684, 0.010495960712432861, 0.0026956647634506226, -0.006863281596451998, 0.010433027520775795, 0.02356521598994732, -0.018628407269716263, 0.0002285720984218642, -0.00396832637488842, 0.009579924866557121, -0.017929144203662872, 0.004681576043367386, -0.03135502338409424, 0.0013181136455386877, 0.02129959873855114, -0.008174402639269829, 0.0025890269316732883, 0.025984670966863632, 0.026669951155781746, 0.003838962409645319, 0.015397805720567703, -0.01674039289355278, -0.019915055483579636, 0.002840762259438634, 0.0027690876740962267, 0.002389736706390977, 0.0063003734685480595, -0.0018722808454185724], "b47de4d3-efca-437f-b86f-a511a8a488c2": [-0.016373760998249054, -0.0037190828006714582, -0.011699541471898556, -0.032215725630521774, 0.0049296217039227486, 0.02076808549463749, -0.016835585236549377, -0.011650560423731804, 0.004499285481870174, -0.01823505200445652, 0.002867157571017742, -0.006566997617483139, 0.01081787794828415, -0.015254187397658825, -0.018263040110468864, -0.00011501867265906185, 0.011426646262407303, -0.025176405906677246, 0.03445487096905708, -0.02520439587533474, 0.009145515039563179, 0.020180311053991318, 0.015450112521648407, -0.018696876242756844, -0.024308737367391586, -0.0005156160332262516, 0.00849476270377636, -0.024812545627355576, -0.0039080106653273106, -0.010705920867621899, 0.02331511676311493, -0.012959062121808529, -0.006175146903842688, -0.0065739951096475124, 0.006248618941754103, -0.014736385084688663, -0.007494144607335329, -0.0025470294058322906, -0.017199445515871048, 0.015352150425314903, 0.03798152878880501, -0.0058847577311098576, 0.01997039094567299, -0.0033604695927351713, -0.012686165980994701, 0.003101568203419447, -0.013910699635744095, -0.01111176609992981, -0.02723362296819687, -0.0078510083258152, -0.005877760238945484, 0.02201361209154129, -0.022321494296193123, -0.019494570791721344, 0.01983044296503067, 0.005923242773860693, -0.0076970672234892845, 0.0036176214925944805, 0.005846272222697735, -0.020362241193652153, -0.00604919483885169, 0.017829205840826035, -0.02449066750705242, -0.021103957667946815, 0.0005667840014211833, -0.006119168363511562, -0.0030298454221338034, 0.011503616347908974, -0.001416085404343903, -0.016905557364225388, 0.00039097602711990476, 0.0015709013678133488, -0.029136897996068, -0.011685547418892384, 0.03873723745346069, -0.005380949471145868, -0.008956586942076683, 0.00835481658577919, 0.02978065237402916, 0.0047616856172680855, -0.01801113784313202, -0.011286699213087559, -0.010069163516163826, 0.005975722800940275, 0.0007701440481469035, 0.004887637682259083, -0.014148608781397343, 0.010831872932612896, 0.0005479786777868867, -0.006923861801624298, -0.0025242881383746862, 0.02078208141028881, -0.009194496087729931, 0.01722743548452854, 0.011265707202255726, 0.020600151270627975, -0.019634518772363663, 0.034538839012384415, -0.0212858896702528, -0.008606720715761185, -0.023944875225424767, 0.015254187397658825, -0.0252743698656559, 0.006633472163230181, -0.062080346047878265, 0.0018350507598370314, 0.039772845804691315, -0.017325397580862045, -0.0011869227746501565, 0.007941973395645618, -0.019662506878376007, 0.016471723094582558, -0.0028041815385222435, -0.06325589865446091, -0.0007439040346071124, 0.010999809019267559, 0.023944875225424767, -0.04861747473478317, -0.004817664157599211, 0.002926634857431054, 0.016583681106567383, 0.01423957385122776, 0.04145220294594765, 0.01430954784154892, 0.011489622294902802, -0.01521220337599516, -0.017395371571183205, -0.018724864348769188, 0.015016278252005577, -0.046098433434963226, 0.02810129150748253, 0.020936021581292152, 0.026058070361614227, 0.023636993020772934, -0.016429739072918892, 0.020306263118982315, -0.006276608444750309, -0.004275370854884386, -0.03227170184254646, 0.004775680135935545, 0.03159995749592781, 0.02702370285987854, 0.012014421634376049, -0.013196971267461777, 0.014946305193006992, -0.0030438401736319065, 0.00962133426219225, -0.0014440747909247875, -0.00852974969893694, -0.015282176434993744, -0.0024438188411295414, -0.026897750794887543, -0.006353578995913267, -0.010398037731647491, 0.021817686036229134, 0.00729821901768446, 0.023511040955781937, 0.027331585064530373, -0.012049408629536629, -0.009614336304366589, 0.011496619321405888, 0.02565222606062889, 0.021677739918231964, -0.012735147029161453, 0.00850176066160202, 0.024714581668376923, -0.01550609152764082, 0.005867264233529568, -0.0011519360123202205, 0.008270848542451859, 0.00897058192640543, 0.009194496087729931, -0.006105173844844103, -0.003817045595496893, -0.010859861969947815, 0.023441066965460777, -0.002120192162692547, 0.007620096206665039, 0.02107596956193447, -0.0010006186785176396, -0.020824065431952477, -0.025400321930646896, 0.0231051966547966, 0.010244096629321575, -0.011475627310574055, -0.014736385084688663, 0.028647083789110184, 0.007459157612174749, 0.0073402030393481255, -0.0023493547923862934, 0.020530177280306816, 0.044139180332422256, 0.01122372318059206, -0.0026834774762392044, -0.6144219040870667, -0.0076970672234892845, -0.0049541122280061245, -0.010803882963955402, 0.017339393496513367, 0.02992059849202633, 0.023007232695817947, 0.01518421433866024, -0.01216836366802454, 0.016079872846603394, -0.009656320326030254, 0.008781653828918934, 0.004653227049857378, -0.017619285732507706, 0.011300694197416306, -0.016653655096888542, -0.00499609624966979, -0.014323541894555092, 0.006598485633730888, 0.012056405656039715, 0.0018123093759641051, 0.017675265669822693, -0.005006592255085707, 0.0008904107380658388, 0.022475436329841614, 0.0233291108161211, 0.0017143466975539923, -0.02309120073914528, 0.032075777649879456, 0.022685356438159943, -0.00861371774226427, 0.0005204267217777669, -0.006601984146982431, 0.011468630284070969, 0.061128705739974976, -0.006434048525989056, -0.01648571901023388, 0.002651989459991455, 0.009572352282702923, 0.027723435312509537, -0.015744000673294067, -0.015310166403651237, 0.0368899442255497, -0.004208896309137344, 0.029108908027410507, -0.005080064292997122, 0.011272704228758812, -0.012539221905171871, -0.006077184341847897, 0.034902699291706085, 0.01613585092127323, -0.009782272391021252, 0.008214869536459446, 0.007892992347478867, -0.012154368683695793, 0.014960299246013165, 0.04010871797800064, -0.021817686036229134, 0.024868523702025414, -0.009362432174384594, -0.018626902252435684, 0.009474390186369419, -0.0300605446100235, -0.008697685785591602, 0.0007255360251292586, -0.013602816499769688, -0.005080064292997122, -0.001493056071922183, 0.0013093760935589671, -0.010419029742479324, 0.005657344125211239, -0.008130901493132114, 0.00426487484946847, -0.014638422057032585, 0.0022006614599376917, 0.017815211787819862, 0.007858005352318287, -0.013784747570753098, -0.003911509644240141, 0.0074101765640079975, 0.007354197558015585, -0.0019312640652060509, -0.014246571809053421, -0.010831872932612896, 0.019718486815690994, -0.012504234910011292, -0.05651046708226204, -0.00955136027187109, 0.020754091441631317, -0.014253568835556507, 0.006622976157814264, -0.004240384325385094, 0.0039080106653273106, -0.028227243572473526, -0.015785984694957733, 0.03313937410712242, -0.006406059022992849, 0.008158891461789608, 0.013085014186799526, -0.02215355820953846, -0.02882901392877102, 0.033307310193777084, -0.01263718493282795, 0.012077397666871548, 0.03655407205224037, -0.022867286577820778, -0.02106197364628315, 0.022489430382847786, 0.03196382150053978, -0.019340630620718002, -0.011419648304581642, -0.0058147842064499855, -0.0027604480274021626, -0.014316544868052006, 0.00606668833643198, -0.03302741423249245, 0.01230830978602171, -0.0034846721682697535, 0.016667649149894714, 0.007081301882863045, 0.029080918058753014, -0.011279702186584473, 0.03168392553925514, 0.020810069516301155, 0.006329088471829891, 0.002527786884456873, 0.01278412900865078, -0.007858005352318287, -0.01081787794828415, 0.012287317775189877, -0.02288128063082695, -0.01362380851060152, 0.01158058736473322, -0.01707349345088005, 0.011314688250422478, -0.007865003310143948, -0.001543786725960672, -0.01721344143152237, 0.02563823014497757, 0.011895467527210712, -0.01532416045665741, 0.0067664217203855515, 0.004534272011369467, 0.0003100693575106561, -0.008046933449804783, -0.012406272813677788, -0.04425113648176193, 0.020152321085333824, -0.013022038154304028, 0.009824256412684917, 0.0033832108601927757, -0.010447018779814243, -0.00650402158498764, 0.024294743314385414, -0.017619285732507706, 1.7848667994257994e-05, -4.988333603250794e-05, -0.026757804676890373, -0.0030018561519682407, 0.0036246187519282103, 0.020180311053991318, 0.0016251307679340243, -0.03260757401585579, -0.01230830978602171, -0.012175360694527626, 0.006255616433918476, 0.0052410028874874115, 0.008949589915573597, -0.010153131559491158, -0.018654892221093178, -0.01202141959220171, 0.009943211451172829, 0.002471808111295104, -0.01122372318059206, 0.030116524547338486, -0.0007911360589787364, -0.007858005352318287, 0.0028759040869772434, 0.023567019030451775, -0.009460395202040672, 0.005094058811664581, 0.010551978833973408, -0.0010802133474498987, -0.005699328146874905, 0.025764182209968567, 0.009187499061226845, 0.01707349345088005, 0.009761280380189419, -0.013504854403436184, -0.005958229769021273, 0.005751808173954487, 0.03355921059846878, -0.011195734143257141, 0.010454016737639904, 0.026701824739575386, 0.03358720242977142, -0.021229909732937813, 0.013672790490090847, -0.003092821454629302, 0.024308737367391586, 0.05631454288959503, 0.019774464890360832, 0.0035266561899334192, -0.036861952394247055, 0.011699541471898556, -0.043187543749809265, 0.006490027066320181, -0.016821589320898056, 0.030200492590665817, 0.013099008239805698, -0.012084395624697208, -0.002214656211435795, -0.003680597525089979, -0.016807595267891884, 0.019802454859018326, -0.010440021753311157, -0.01395268365740776, 0.0024945493787527084, 0.010258091613650322, 0.014610433019697666, 0.03420296683907509, 0.009572352282702923, 0.016443734988570213, -0.04380330815911293, -0.016667649149894714, 0.00439432542771101, 0.007613099180161953, 0.014155605807900429, -0.012413269840180874, -0.021341867744922638, -0.024504663422703743, -0.014141611754894257, 0.0024175788275897503, 0.0029878614004701376, -0.006035200320184231, -0.005342464428395033, 0.03554645553231239, -0.010943830013275146, 0.017395371571183205, 0.015939926728606224, -0.008984576910734177, 0.01263718493282795, 0.00426487484946847, -0.005842773709446192, 0.02289527654647827, 0.01700352132320404, 0.035910315811634064, 0.018850816413760185, 0.0007959466893225908, 0.010691925883293152, -0.033811114728450775, 0.0025645229034125805, -0.028269227594137192, 0.012903083115816116, -0.01815108396112919, -0.0002374720061197877, 0.017745237797498703, 0.022405462339520454, 0.03313937410712242, 0.019480576738715172, 0.002548778895288706, 0.0450628288090229, -0.002977365395054221, 0.003960490692406893, 0.01584196276962757, -0.026100054383277893, 0.01693354733288288, -0.015086251311004162, -0.011902464553713799, -0.0024018348194658756, -0.027289601042866707, -0.011055787093937397, 0.0026012586895376444, -0.02679978869855404, 0.014400512911379337, -0.01953655481338501, 0.008389802649617195, 0.01749333366751671, 0.015198208391666412, -0.012763136997818947, -0.018333014100790024, -0.013609814457595348, 0.0055313920602202415, 0.02346905693411827, 0.014988289214670658, 6.587333336938173e-05, -0.027471531182527542, -0.013273942284286022, -0.010565973818302155, 0.01882282830774784, -0.0048631466925144196, 0.011489622294902802, -0.0020362241193652153, 0.0254982840269804, -0.006413056515157223, 0.011965440586209297, -0.0007622720440849662, -0.018486956134438515, -0.036861952394247055, -0.027471531182527542, 0.004152917768806219, 0.006633472163230181, -0.0014711894327774644, -0.021299883723258972, 0.04425113648176193, 0.0015945173799991608, -0.0005151787190698087, -0.022769324481487274, 0.012322304770350456, -0.003222272265702486, -0.008578730747103691, -0.032579585909843445, -0.016149846836924553, -0.015142230316996574, 0.0018962774192914367, 0.0016741120489314198, 0.003967488184571266, 0.014120619744062424, 0.02244744636118412, -0.0028898988384753466, -0.023077206686139107, -0.019494570791721344, -0.011461632326245308, -0.002305621514096856, -0.022839296609163284, 0.001555157359689474, 0.015058262273669243, -0.006444544531404972, -0.03358720242977142, -0.014400512911379337, -0.024672599509358406, -0.027471531182527542, 0.026715820655226707, -0.013609814457595348, 0.005660843104124069, -0.027149654924869537, 0.009145515039563179, -0.013483862392604351, 0.020180311053991318, 0.0015026774490252137, 0.008326827548444271, -0.025960108265280724, 0.021663745865225792, -0.01910272054374218, 0.010838869959115982, 0.026771798729896545, 0.0067699202336370945, 0.012833110056817532, -0.01377075258642435, 0.007235242985188961, 0.00015066134801600128, 0.017129473388195038, 0.014456490986049175, -0.013896704651415348, -0.005671339109539986, 0.0005160533473826945, 0.00984524842351675, 0.03473476320505142, 0.012210347689688206, 0.05376751348376274, -0.016737621277570724, 0.034035030752420425, -0.010691925883293152, 0.024574635550379753, -0.011391659267246723, 0.013938688673079014, 0.009320448152720928, -0.007641088217496872, -0.0062941014766693115, 0.00499609624966979, 0.00394299766048789, 0.02180369198322296, -0.006311594974249601, -0.004646229557693005, 0.014960299246013165, -0.005209514871239662, -0.02447667345404625, -0.002433322835713625, 0.008557738736271858, 0.02215355820953846, -0.019732480868697166, 0.021411841735243797, 0.01917269453406334, -0.008298837579786777, -0.015869952738285065, 0.00242457608692348, 0.0005182400345802307, -0.023776939138770103, -0.014372522942721844, -0.019578538835048676, -0.010398037731647491, -0.011678549461066723, -0.015422123484313488, 0.018109099939465523, 0.025694210082292557, -0.004880640190094709, -0.03355921059846878, 0.0006813653744757175, 0.027947351336479187, 0.027135660871863365, 0.03311138227581978, 0.010384042747318745, -0.02534434199333191, 0.024518657475709915, -0.02404283918440342, -0.006857386790215969, 0.009999189525842667, -0.030676310881972313, -0.0026799787301570177, -0.0029108908493071795, 0.01470839511603117, -0.025610242038965225, -0.013812736608088017, 0.01773124374449253, 0.02316117472946644, 0.00955136027187109, 0.004698709584772587, -0.00235285353846848, -0.019424598664045334, 0.00039731734432280064, 0.02092202752828598, 0.029304834082722664, -0.0008794773602858186, -0.002090453403070569, 0.022111574187874794, -0.01459643803536892, 0.003047338919714093, -0.004796672146767378, -0.0052410028874874115, 0.008914602920413017, 0.005650347098708153, 0.014085632748901844, 0.004026965703815222, 0.01093683298677206, 0.009915221482515335, -0.014120619744062424, 0.0017222187016159296, -0.018333014100790024, 0.02614203840494156, 0.0024683093652129173, -0.011293696239590645, -0.0078510083258152, 0.0097332913428545, -0.004236885346472263, 0.022433452308177948, -0.02331511676311493, 0.037897560745477676, -0.002419328084215522, -0.006259114947170019, -0.012238336727023125, -0.023567019030451775, -0.051024556159973145, -0.007571115158498287, 0.012889089062809944, -0.008963584899902344, 0.023301120847463608, -0.0028898988384753466, -0.011993429623544216, -0.053067777305841446, -0.007035818882286549, -0.007018325850367546, 0.028996950015425682, -0.011034795083105564, -0.02034824714064598, -0.0009918720461428165, -0.010677930898964405, 0.018277036026120186, -0.014820353128015995, -0.02230750024318695, -0.029388802126049995, -0.015464107505977154, -0.007969963364303112, -0.01598191075026989, 0.013483862392604351, 0.013371904380619526, -0.004467797465622425, -0.013826731592416763, -0.026897750794887543, -0.008711680769920349, -0.025834156200289726, -0.03154398128390312, 0.002400085562840104, 0.04626636952161789, 0.01257420890033245, 0.020894037559628487, 0.01368678454309702, -0.002459562849253416, -0.005608363077044487, 0.010489002801477909, 0.0013338667340576649, 0.010090155526995659, 0.0033237335737794638, -0.019074732437729836, -0.009929216466844082, 0.009334443137049675, 0.010405034758150578, 0.019466582685709, -0.018612908199429512, 0.008711680769920349, 0.008949589915573597, -0.016513707116246223, 0.00235985079780221, -0.0058847577311098576, -0.025834156200289726, 0.003743573557585478, 0.010845866985619068, -0.004138922784477472, -0.01612185686826706, -0.010447018779814243, -0.014078635722398758, 0.01663965918123722, -0.012441258877515793, 0.012406272813677788, -0.0015306667191907763, 0.011314688250422478, -0.008963584899902344, -0.01529617141932249, -0.0006354453507810831, 0.011153750121593475, -0.007077802903950214, 0.011013803072273731, -0.02825523354113102, 0.02388889715075493, 0.03269154205918312, 6.368666799971834e-05, 0.000676992058288306, 0.0220835842192173, -0.01714346744120121, 0.00729821901768446, 0.01292407512664795, -0.01148262433707714, -0.009950208477675915, -0.009789269417524338, 0.00152017071377486, -0.03952094167470932, -0.02114594168961048, 4.0890667150961235e-05, -0.000771893362980336, 0.020138327032327652, 0.027709441259503365, 0.007872000336647034, 0.009726293385028839, -0.014078635722398758, -0.0027307095006108284, 0.0006170773413032293, -0.023944875225424767, 0.0321037657558918, 0.0007329707150347531, 0.008081920444965363, 0.016219818964600563, 0.008914602920413017, -0.002258389489725232, -0.042011991143226624, -0.019662506878376007, -0.0046637230552732944, 0.03521058335900307, 0.04923323914408684, -0.017423361539840698, -0.03448285907506943, -0.011447638273239136, 0.007774037774652243, -0.0160518828779459, -0.011979435570538044, 0.0097332913428545, 0.025386326014995575, -0.008305835537612438, -0.017605291679501534, 0.013203968293964863, -0.025834156200289726, 0.016219818964600563, -0.012147371657192707, -0.007501141633838415, -0.005569877568632364, -0.004677717573940754, -0.027989335358142853, -0.01722743548452854, -0.029696684330701828, 0.030928215011954308, 0.007669077720493078, 0.0025732694193720818, 0.001088085351511836, 0.015058262273669243, -0.03610624000430107, 0.025988098233938217, -0.005436928477138281, 0.022335488349199295, 0.0032310187816619873, -0.02012433111667633, 0.009222486056387424, 0.016975531354546547, 0.014344533905386925, -0.014624427072703838, 0.0008405547123402357, 0.04234786331653595, 0.006276608444750309, 0.001096832100301981, -0.012742144986987114, 0.024070827290415764, 0.02657587267458439, 0.011104768142104149, -0.011433643288910389, -0.01875285431742668, -0.008592725731432438, -0.01198643259704113, 0.025974102318286896, -0.015156224370002747, 0.031068161129951477, -0.008403797633945942, 0.016107862815260887, -0.020684117451310158, -0.022055596113204956, -0.00579029368236661, 0.0191167164593935, -0.023567019030451775, -0.022867286577820778, -0.019718486815690994, -0.023804929107427597, 0.016765611246228218, 0.02622600644826889, -0.014197589829564095, 0.013238955289125443, 0.0251484178006649, -0.040948398411273956, 0.006087680347263813, -0.002779690781608224, -0.00943940319120884, -0.00922948308289051, 0.0004397386801429093, -0.03551846742630005, -0.016303787007927895, 0.01380573958158493, -0.003782058833166957, -0.0012691414449363947, -0.042319875210523605, -0.00834781862795353, 0.034762755036354065, -0.0018770347815006971, 0.02296524867415428, -0.004418816417455673, 0.006689451169222593, 0.009789269417524338, 0.012504234910011292, -0.01071991492062807, 0.01383372861891985, -0.0007780160522088408, -0.017605291679501534, 0.016471723094582558, -0.014904321171343327, 0.004660224076360464, -0.023511040955781937, -0.016401750966906548, 0.018850816413760185, -0.014526464976370335, -0.024966485798358917, 0.022867286577820778, 0.0008099413826130331, -0.015869952738285065, -0.012826113030314445, -0.04234786331653595, -0.003589632222428918, -0.016667649149894714, 0.009313451126217842, 0.02258739247918129, -0.008914602920413017, 0.00579029368236661, 0.03238366171717644, -0.008438784629106522, 0.011167744174599648, -0.005227008368819952, -0.005401941481977701, -0.0006844266899861395, -0.055474862456321716, -0.0033867096062749624, -0.005769301671534777, 0.0004920000210404396, 0.02506444975733757, -0.0030998187139630318, -0.033755138516426086, -0.04439108446240425, -0.009642326273024082, -0.032943446189165115, -0.008137899450957775, 0.008564736694097519, 0.0251484178006649, 0.013966677710413933, 0.004625237546861172, 0.009355435147881508, 0.027009708806872368, -0.013714773580431938, -0.009663318283855915, -0.026911744847893715, -0.013567830435931683, -0.011202731169760227, -0.009180502034723759, 0.007774037774652243, -0.004488789476454258, -0.010405034758150578, -0.0072492375038564205, -0.0035266561899334192, -0.0022671360056847334, 0.008186880499124527, 0.03674999624490738, 0.010391040705144405, -0.01955055072903633, -0.01766126975417137, -0.006916864309459925, -0.002839168068021536, -0.0026327467057853937, -0.007077802903950214, -0.033951062709093094, -0.01521220337599516, 0.014288555830717087, 0.007116288412362337, -0.01698952540755272, 0.01808110997080803, 0.025106433779001236, -0.026533888652920723, -0.012497237883508205, -0.022923264652490616, -0.00744516309350729, 0.005881258752197027, -0.0008348693954758346, -0.0061016748659312725, -0.008480768650770187, -0.007927979342639446, 0.03974485397338867, -0.003379712114110589, 0.013469867408275604, -0.005779797676950693, 0.020446209236979485, -0.023427072912454605, -0.010768896900117397, 0.002261888002976775, -0.001419584034010768, -0.015338155440986156, -0.006273109465837479, 0.011363670229911804, -0.01794116385281086, -0.009299456141889095, 0.0258481502532959, -0.0025645229034125805, -0.03411899879574776, -0.0097332913428545, 0.023413078859448433, -0.014750379137694836, -0.01816507801413536, 0.00755712017416954, -0.014610433019697666, 0.000354896008502692, -0.025372331961989403, 0.03252360597252846, -0.028381185606122017, 0.017983147874474525, 0.010125141590833664, -0.0077250562608242035, 0.008928597904741764, 0.005989717785269022, -0.007683072239160538, -0.00016432801203336567, 0.0066754561848938465, 0.25526273250579834, -0.004915626719594002, -0.0010889600962400436, 0.027863383293151855, 0.0013994667679071426, 0.021467819809913635, -0.010558976791799068, -0.012742144986987114, -0.02810129150748253, 0.013567830435931683, -0.010761898942291737, -0.01851494424045086, 0.0004600746906362474, -0.005709824152290821, 0.008774656802415848, 0.0020957014057785273, -0.01735338754951954, -0.0239028912037611, 0.0019994881004095078, -0.0007530880393460393, 0.021551787853240967, -0.003047338919714093, -0.021985622122883797, -0.009782272391021252, 0.007767040282487869, -0.004145920276641846, -0.030200492590665817, 0.027149654924869537, 0.02171972393989563, 0.020530177280306816, -0.015282176434993744, 0.0252743698656559, 0.013574827462434769, 0.004184405319392681, -0.008473770692944527, -0.01198643259704113, 0.04019268602132797, 0.0009192746947519481, 0.024210775271058083, 0.017157461494207382, -0.01245525386184454, 0.0006039573927409947, -0.00023616000544279814, -0.0018402987625449896, 0.01532416045665741, 0.0019470080733299255, -0.0004452053690329194, -0.031124141067266464, 0.002973866881802678, -0.0010294826934114099, -0.021341867744922638, -0.004775680135935545, 0.03952094167470932, 0.010265088640153408, 0.009061546996235847, 0.00032450133585371077, 0.014736385084688663, 0.00530397891998291, 0.014232576824724674, -0.0012087894137948751, 0.0009052800596691668, 0.032075777649879456, -0.038541313260793686, -0.005895253736525774, -0.030788268893957138, -0.006476032547652721, -0.025176405906677246, 0.017087489366531372, 0.007837013341486454, -0.012504234910011292, 0.0022338987328112125, 0.007920981384813786, 0.006175146903842688, -0.0008418667130172253, -0.0069343578070402145, -0.03305540606379509, 0.02723362296819687, 0.01046101376414299, 0.017997141927480698, 0.022475436329841614, -0.01216836366802454, 0.02374895103275776, 0.015660032629966736, 0.007270229514688253, -0.0160518828779459, -0.029892610386013985, -0.013959680683910847, -0.029164886102080345, -0.004803669638931751, 0.007899989373981953, 0.005076565779745579, -0.031571969389915466, 0.0030263469088822603, -0.030340438708662987, 0.010733909904956818, 0.006832896266132593, -0.008704682812094688, 0.03238366171717644, -0.03291545808315277, 0.010803882963955402, -0.02011033706367016, 0.044922880828380585, 0.012728150002658367, 0.011776512488722801, -0.014064640738070011, -0.002720213495194912, -0.002459562849253416, 0.006944853812456131, -0.003582634963095188, -0.009208491072058678, 0.0034899201709777117, -0.04240384325385094, 0.002711466746404767, -0.018794838339090347, 0.008452778682112694, 0.003453184152022004, -0.01409262977540493, -0.023860907182097435, -0.001534165465272963, 0.0002086080057779327, -0.0013889707624912262, -0.008200875483453274, -0.002690474735572934, 0.010335061699151993, -0.018850816413760185, -0.019816448912024498, -0.01016712561249733, -0.017171457409858704, -0.0044118189252913, -0.01648571901023388, 0.011363670229911804, -0.020292267203330994, 0.03666602820158005, -0.008536746725440025, 0.007256234996020794, 0.020978005602955818, -0.0015971413813531399, -0.014540459029376507, -0.0013513601152226329, 0.006874880287796259, 0.03501465916633606, 0.005797291174530983, 0.008599722757935524, 0.000863296038005501, 0.014330539852380753, -0.014512469992041588, 0.016107862815260887, -0.0003078826703131199, 0.008165888488292694, -0.005783296190202236, -0.04598647728562355, 0.0005217386642470956, 0.033951062709093094, -0.00593723775818944, 0.00988023541867733, 0.004712704103440046, -0.026114048436284065, -0.05040879175066948, -0.008739669807255268, -0.020460203289985657, -0.056986287236213684, -0.01700352132320404, 0.0218596700578928, -0.018990764394402504, -0.005034581758081913, -0.02780740335583687, -0.1808111071586609, -0.0015805227449163795, 0.02076808549463749, -0.025092437863349915, 0.027499521151185036, -0.01771724969148636, 0.020516183227300644, 0.005492907017469406, 0.0017930667381733656, -0.03252360597252846, 0.019508566707372665, -0.02192964404821396, -0.0051710293628275394, -0.01122372318059206, -0.017535317689180374, -0.011055787093937397, -0.006913365796208382, -0.0005274240393191576, 0.04872943088412285, 0.014211584813892841, 0.0192426685243845, -0.022685356438159943, 0.00014530400221701711, 0.013595819473266602, 0.010090155526995659, 0.017101483419537544, 0.008298837579786777, 0.00849476270377636, 0.005765803158283234, -0.03814946487545967, 0.01332992035895586, 0.01550609152764082, -0.003358720103278756, -0.01684957928955555, -0.0276674572378397, -0.006311594974249601, 0.0027447042521089315, -0.011097771115601063, -0.0004775680135935545, -0.004695211071521044, -0.010796885937452316, 0.04315955564379692, -0.02535833790898323, -0.008186880499124527, 0.017199445515871048, 0.00608068285509944, 0.02157977782189846, -0.02178969793021679, 0.0020817068871110678, 0.00227063475176692, 0.024280747398734093, -0.03333529829978943, -0.005730816163122654, 0.005940736271440983, 0.025470294058322906, 0.02187366597354412, -0.0430196076631546, 0.007899989373981953, -0.03000456653535366, 0.00019045868248213083, -0.006937856320291758, -0.0300605446100235, 0.0033657175954431295, 0.0078510083258152, 0.003799552097916603, -0.0091105280444026, -0.01257420890033245, 0.036218199878931046, -0.004275370854884386, -0.006059690844267607, 0.02085205353796482, -0.02882901392877102, 0.00577629916369915, -0.006469035055488348, 0.01231530774384737, 0.011923456564545631, -0.001398592023178935, 0.02520439587533474, 0.0019120214274153113, -0.01998438499867916, -0.009215488098561764, 0.0432715117931366, -0.0010233600623905659, 0.0100201815366745, -0.01042602676898241, 0.011279702186584473, -0.0039010136388242245, -0.011006806045770645, -0.01808110997080803, -0.01511424034833908, 0.03543449938297272, -0.026743808761239052, -0.002658986719325185, -0.00287940283305943, 0.003169792238622904, 0.011363670229911804, -0.002037973375990987, -0.01529617141932249, -0.004803669638931751, -0.0074101765640079975, -0.008459776639938354, -0.006584491115063429, -0.0018647894030436873, 0.006650965660810471, 0.04066850244998932, -0.005541888065636158, 0.004579755011945963, 0.015254187397658825, 0.021691733971238136, -0.014155605807900429, -0.03154398128390312, 0.0029966081492602825, 0.008571733720600605, 0.011846485547721386, -0.0030648321844637394, 0.01575799472630024, -0.009208491072058678, -0.01107677910476923, -0.009950208477675915, -0.003589632222428918, -0.012462250888347626, 0.0008423040271736681, 0.01815108396112919, 0.01974647492170334, 0.0021604266948997974, 0.007906987331807613, -0.04990498349070549, -0.014442496933043003, 0.012322304770350456, 0.02164974994957447, -0.003374464111402631, 0.02244744636118412, -0.009278464131057262, 0.04713403806090355, -0.0043558403849601746, 0.035266563296318054, -0.0047371950931847095, -0.0231051966547966, -0.0041914028115570545, 0.0018945280462503433, -0.010440021753311157, 0.008984576910734177, -0.02076808549463749, 0.0019592533353716135, -0.00517452834174037, 0.0368899442255497, -0.013113003224134445, -0.0180951040238142, 0.005930240266025066, -0.02484053373336792, 0.009236480109393597, 0.0051430403254926205, -0.01409262977540493, 0.01722743548452854, 0.015380139462649822, 0.0005724693764932454, 0.045958489179611206, -0.020474199205636978, 0.019074732437729836, -0.002223402727395296, 0.019522560760378838, -0.012938070110976696, -0.03022848069667816, -0.005737813655287027, 0.016527703031897545, 0.0035966294817626476, -0.003166293492540717, 0.009341440163552761, 0.013029035180807114, -0.009509376250207424, -0.025988098233938217, -0.00715477392077446, -0.013700779527425766, 0.025876140221953392, -0.005300480406731367, -0.006119168363511562, -0.041732098907232285, -0.003963989671319723, -0.016961537301540375, -0.01075490191578865, 0.018710870295763016, 0.018053120002150536, -0.0016924800584092736, 0.013497856445610523, -0.03924104571342468, 0.0025435308925807476, -0.014078635722398758, -0.017395371571183205, 0.00045045334263704717, 0.024378711357712746, -0.008200875483453274, 0.012119381688535213, -0.017031509429216385, 0.006150656379759312, 0.007042816374450922, 0.007140778936445713, -0.012903083115816116, 0.026967724785208702, -0.010419029742479324, 0.03837337717413902, -0.020446209236979485, -0.013469867408275604, -0.0074381656013429165, -0.02374895103275776, 0.006336085498332977, -0.0191167164593935, -0.014288555830717087, -0.013938688673079014, -0.0010574720799922943, -2.402600148343481e-05, 0.015086251311004162, 0.01151761133223772, -0.010845866985619068, 0.004037461709231138, 0.008368810638785362, -0.02316117472946644, 0.022027606144547462, 0.007172266952693462, -0.02083805948495865, -0.01722743548452854, -0.005807787179946899, -0.01896277442574501, -0.005087061785161495, 0.006636971142143011, -0.01231530774384737, 0.02164974994957447, -0.022321494296193123, -0.005951232276856899, -0.08950988948345184, 0.0220835842192173, -0.00697634182870388, -0.005744811147451401, 0.01550609152764082, 0.014183595776557922, 0.02011033706367016, 0.016513707116246223, -0.010132139548659325, -0.006745429709553719, -0.03971686586737633, 0.030900225043296814, -0.0036176214925944805, -0.018333014100790024, -0.022279510274529457, -0.017927169799804688, 0.02171972393989563, 0.02463061548769474, 0.02667383663356304, 0.009495382197201252, 0.003715584287419915, -0.01166455540806055, 0.018039125949144363, -0.010537984780967236, -0.0414242148399353, 0.0176472757011652, -0.019732480868697166, 0.01750732958316803, -0.015646038576960564, -0.01679360121488571, -0.01459643803536892, -0.024028843268752098, 0.005664341617375612, 0.027723435312509537, -0.00590225076302886, -0.019158700481057167, -0.001591018750332296, -0.0019994881004095078, 0.040948398411273956, 0.0127491420134902, -0.016289792954921722, -0.03753369674086571, 0.012483242899179459, -0.013854720629751682, -0.010160128585994244, 0.015883946791291237, 0.011447638273239136, 0.016751617193222046, 0.029892610386013985, -0.003953493665903807, 0.02012433111667633, -0.0016784854233264923, -0.014106624759733677, -0.0300605446100235, -0.01887880638241768, -0.04408320039510727, -0.02804531343281269, -0.013406891375780106, 0.012518229894340038, 0.021243905648589134, 0.04338346794247627, 0.0012761387042701244, 0.03630216792225838, 0.015198208391666412, 0.00794897135347128, 0.011573590338230133, -0.012595200911164284, 0.020656129345297813, 0.03742174059152603, -0.019522560760378838, -0.029248854145407677, -0.032579585909843445, -0.010489002801477909, -0.015226198360323906, 0.025232385843992233, -0.02127189375460148, -0.003533653449267149, 0.01521220337599516, -0.009488384239375591, 0.018430976197123528, 0.014988289214670658, 0.01591193675994873, -0.033951062709093094, 0.02127189375460148, 0.02811528742313385, -0.0037260802928358316, -0.028451159596443176, 0.0034671789035201073, -0.030900225043296814, 0.013616811484098434, -0.008431786671280861, -0.0009315200732089579, 0.008102912455797195, 0.021397845819592476, -0.016303787007927895, 0.0176472757011652, 0.004698709584772587, -0.01020211260765791, 0.021817686036229134, 0.008438784629106522, 0.026827776804566383, 0.004026965703815222, -0.0127491420134902, -0.003981482703238726, -0.02601608633995056, 0.020432215183973312, -0.019942400977015495, -0.033951062709093094, 0.0019295148085802794, 0.00788599532097578, -0.027345580980181694, 0.025092437863349915, -0.00242457608692348, 0.02041821926832199, -0.018766848370432854, 0.001336490735411644, -0.005590869579464197, -0.030900225043296814, -0.024098817259073257, 0.024028843268752098, 0.0072492375038564205, 0.01649971306324005, 0.03842935711145401, 0.01875285431742668, -0.002611754694953561, -0.02381892316043377, -0.0030840749386698008, -0.02041821926832199, -0.0065774936228990555, -0.002146432176232338, -0.0014939307002350688, -0.005800789687782526, -0.031124141067266464, -0.005674837622791529, -0.008991573937237263, 0.0028968960978090763, -0.007368192542344332, 0.0017755734734237194, -0.008046933449804783, 0.07064507901668549, -0.003873024135828018, -0.004079445730894804, 0.0005637226859107614, -0.035854339599609375, 0.011748523451387882, 0.01866888627409935, 0.01489032618701458, 0.01880883239209652, -0.04385928809642792, 0.0352945514023304, 0.0065809921361505985, -0.007522133644670248, -0.016219818964600563, 0.024784555658698082, -0.002459562849253416, -0.028605099767446518, 0.0341469869017601, -0.017339393496513367, 0.03495867922902107, 0.01880883239209652, -0.009691307321190834, 0.02463061548769474, 0.025484289973974228, -0.01224533375352621, -0.0013706027530133724, -0.0026292481925338507, -0.010377045720815659, -0.007417173590511084, -0.008130901493132114, 0.009565355256199837, -0.005398442968726158, 0.006706944201141596, -0.040080726146698, -0.01976047083735466, 0.012854102067649364, 0.0033709655981510878, 0.02143982984125614, 0.025302357971668243, -0.010971819050610065, -0.017171457409858704, 0.022993238642811775, -0.025120427832007408, -0.005685333628207445, -0.010908843018114567, -0.013581824488937855, -0.008249856531620026, 0.006203136406838894, -0.013924693688750267], "470d7749-2dac-40b7-809a-2f8e5dda995f": [-0.01721174083650112, -0.02673991583287716, -0.0010861357441172004, -0.027253078296780586, 0.002236416796222329, 0.014313067309558392, -0.005613579414784908, -0.013792970217764378, -0.0041087656281888485, -0.01486783754080534, -0.0061683496460318565, 0.02016589231789112, -0.0021462666336447, -0.00028518648468889296, -0.01232283003628254, -0.01361266989260912, 0.007489395793527365, -0.0029004071839153767, 0.02404928207397461, 0.0016018985770642757, 0.019167305901646614, -0.004875042010098696, -0.009396417997777462, -0.042356692254543304, -0.018238065764307976, 0.007045579608529806, 0.019389213994145393, -0.018973136320710182, -0.011039923876523972, 0.002694102004170418, 0.02270396426320076, 0.0021427993196994066, -0.016171546652913094, -0.008592001162469387, -0.0066745770163834095, 0.00502066919580102, 0.02973567508161068, 0.010027469135820866, 0.009354810230433941, 0.009438025765120983, 0.027891064062714577, 0.012336699292063713, 0.015699991956353188, -0.0003471646923571825, -0.020429406315088272, 0.005107351578772068, -0.02045714482665062, 0.0055650370195508, -0.018862182274460793, 0.008092707954347134, -0.008273008279502392, 0.02973567508161068, -0.028515180572867393, 0.0009214383899234235, 0.011185551062226295, 0.018113242462277412, -0.00856426265090704, 0.02281491830945015, 0.010824950411915779, 0.00019178574439138174, 0.015963507816195488, -0.007704369258135557, -0.02715599350631237, 0.0015576903242617846, 0.025158822536468506, 0.007614219095557928, -0.0018394094659015536, -0.009250790812075138, 0.007482461165636778, 0.016240892931818962, 0.0037516325246542692, 0.020096546038985252, -0.013571062125265598, -0.01212172582745552, 0.03694768622517586, -0.0048403688706457615, -0.0012135595316067338, 0.0176971647888422, 0.003963138442486525, 0.019084090366959572, -0.023771896958351135, 0.003897259710356593, 7.517026006098604e-06, -0.011906752362847328, 0.017572341486811638, 0.009854103438556194, -0.02420184388756752, 0.012087052688002586, 0.011677909642457962, -0.00215146760456264, -0.007378441747277975, 0.031816061586141586, 0.008931797929108143, 0.004254392813891172, -0.01567225344479084, 0.0050310711376369, -0.03775210306048393, 0.007919342257082462, -0.03747471794486046, -0.03567171469330788, 3.380630005267449e-05, 0.01137278601527214, -0.006580959539860487, -0.004115700256079435, -0.050289906561374664, -0.01464592944830656, 0.0359768383204937, -0.00579734705388546, -0.010769473388791084, 0.0042058504186570644, -0.010124553926289082, 0.0413026288151741, 0.0016981164226308465, -0.03636517748236656, -0.007940146140754223, 0.013869251124560833, 0.03425705060362816, -0.02671217732131481, -0.010263245552778244, 0.0053708674386143684, 0.023882851004600525, 0.0017787314718589187, 0.01787746511399746, 0.014770752750337124, 0.017197871580719948, 0.020665183663368225, -0.003983942326158285, -0.018751228228211403, 0.0010818016016855836, -0.051676832139492035, 0.023633204400539398, -0.002382043981924653, 0.009673803113400936, 0.024853698909282684, -0.03877842798829079, -0.008924863301217556, -0.0011962229618802667, -0.02210758626461029, -0.017461387440562248, -0.005974180065095425, 0.014056486077606678, 0.016643101349473, 0.012842927128076553, -0.026837000623345375, 0.002560610417276621, 0.02413249760866165, 0.00029775549774058163, 0.0065358844585716724, -0.0011866878485307097, 0.013702820055186749, 0.006792465690523386, -0.016546016559004784, -0.030623307451605797, -0.005280717276036739, 0.009861038066446781, 0.019181175157427788, 0.021760854870080948, 0.003758567152544856, -0.011060727760195732, -0.011719517409801483, 0.011268766596913338, 0.022301755845546722, 0.012842927128076553, -0.03242630884051323, -0.005034538451582193, 0.03442348167300224, 0.030540091916918755, 0.010200833901762962, -0.004396552685648203, -0.005651719868183136, 0.013536388985812664, -0.011670975014567375, 0.0004862906353082508, -0.0025051336269825697, -0.001400794368237257, 0.008494916372001171, -0.004559516441076994, 0.00568639300763607, 0.0069346255622804165, 0.01631023921072483, 0.011851275339722633, -0.013931662775576115, 0.01809937320649624, 0.03872295096516609, -0.012059314176440239, -0.02759980969130993, 0.022246278822422028, 0.0051108188927173615, 0.022995218634605408, -0.012905338779091835, 0.0026351576671004295, 0.047377362847328186, 0.012093987315893173, -0.0021375983487814665, -0.5902753472328186, -0.019763683900237083, -0.005374334752559662, -0.03273143246769905, 0.035588499158620834, 0.012142529711127281, 0.01075560413300991, 0.00107573380228132, -0.01660149358212948, 0.03475634381175041, 0.006268901750445366, 0.005925637669861317, -0.003949269186705351, -0.00882777851074934, 0.0047432840801775455, -0.03642065450549126, 0.026309968903660774, -0.020998045802116394, 0.014951053075492382, 0.012891469523310661, -0.012204941362142563, 0.015283915214240551, -0.012787450104951859, -0.009250790812075138, 0.0023837776388972998, 0.02483982965350151, -0.014729144982993603, -0.011164747178554535, 0.02446535974740982, 0.03384097293019295, -0.005540765821933746, 0.002175738802179694, -0.00039657391607761383, 0.0027322424575686455, 0.05550474300980568, -0.007246683817356825, -0.0017414578469470143, 0.030345922335982323, 0.019444691017270088, 0.02920864336192608, -0.007863865233957767, -0.01893152855336666, 0.04354944825172424, 0.0032141990959644318, 0.02016589231789112, 0.0013721890281885862, 0.013446238823235035, -0.002347370842471719, 0.0065116132609546185, 0.018834443762898445, 0.0035817341413348913, -0.0015958307776600122, 0.007995623163878918, -0.013432369567453861, 0.013300611637532711, 0.012863731011748314, 0.025033999234437943, -0.04252312332391739, 0.030290445312857628, -0.03392418846487999, -0.024881437420845032, 0.004784891847521067, -0.010353395715355873, 0.00030122281168587506, -0.02228788658976555, 0.004504039417952299, 0.0019468961982056499, -0.00029407147667370737, -0.006716184783726931, -0.03722507134079933, -0.001233496586792171, -0.017003701999783516, -0.016102200374007225, -0.006622567307204008, 0.009916515089571476, 0.03924998268485069, 0.01325900387018919, -0.01161549799144268, 0.01578320749104023, 0.0219966322183609, 0.0020041067618876696, 0.014576583169400692, -0.004992930684238672, -0.002484329743310809, 0.016018984839320183, 9.318403317593038e-05, -0.03356358781456947, -0.00027066710754297674, 0.024673398584127426, 0.01772490330040455, 0.013709754683077335, 0.016767924651503563, 0.005825085565447807, -0.04219026118516922, 0.009770887903869152, 0.00966686848551035, -0.025033999234437943, 0.0040602232329547405, 0.016989832744002342, -0.0316496305167675, -0.036004576832056046, 0.02334195002913475, 0.0003337288508191705, -0.0060296570882201195, 0.023508381098508835, -0.016476670280098915, -0.010630780830979347, 0.021719247102737427, 0.03464538976550102, -0.0033008817117661238, -0.02382737398147583, -0.013363023288547993, -0.010055207647383213, -0.0024444556329399347, 0.036531608551740646, -0.02413249760866165, 0.0042058504186570644, 0.015311653725802898, 0.005835487507283688, -0.0031257825903594494, 0.017336564138531685, 0.0011918888194486499, 0.02839035727083683, 0.004070625174790621, 0.010804146528244019, -0.015048137865960598, 0.024021543562412262, -0.01124102808535099, -0.025616507977247238, 0.01809937320649624, -0.015117484144866467, -0.005128155462443829, 0.009077425114810467, -0.02244044840335846, 0.01161549799144268, -0.019014744088053703, 0.0179606806486845, -0.006480407901108265, 0.0225236639380455, 0.006913821678608656, -0.010110684670507908, -0.015908030793070793, 0.006279303692281246, 0.0011788863921537995, -0.013543323613703251, -0.02768302522599697, -0.004420823883265257, 0.011650171130895615, -0.01829354278743267, -0.010915100574493408, 0.011358916759490967, -0.013453173451125622, -0.018307412043213844, 0.02248205617070198, -0.020900961011648178, -0.0041573080234229565, -0.007586480583995581, -0.03250952437520027, -0.00544368103146553, -0.004122634883970022, 0.014014878310263157, -0.008536524139344692, -0.027821717783808708, -0.006736988667398691, -0.02984662912786007, -0.015602908097207546, -0.010630780830979347, 0.005700262263417244, -0.0073090954683721066, -0.02700343169271946, -0.019916245713829994, -0.009327071718871593, 0.004673937801271677, 0.01389698963612318, 0.018043896183371544, 0.010478219017386436, -0.01626863144338131, -0.005991516634821892, 0.010145356878638268, -0.012267353013157845, -0.012149464339017868, -0.0018896855181083083, -0.0009431091020815074, -0.002413249807432294, 0.014063420705497265, 0.01851545087993145, 0.02779397927224636, 0.01963886059820652, -0.010838819667696953, 0.003420504042878747, 0.010533696040511131, 0.029236381873488426, 0.00226242165081203, 0.023855112493038177, 0.01997172273695469, 0.011067662388086319, 0.023133911192417145, 0.01198996789753437, -0.012184137478470802, 0.02550555393099785, 0.035921361297369, 0.010797211900353432, 0.0052009690552949905, -0.02823779545724392, 0.013404631055891514, -0.015880292281508446, 0.0072189453057944775, -0.020290713757276535, 0.014729144982993603, -0.0031743249855935574, -0.0074547226540744305, 0.004878509324043989, -0.013286742381751537, 0.0003727361327037215, 0.03156641498208046, 0.010526761412620544, -0.01893152855336666, 0.008279942907392979, 0.008862451650202274, 0.02239884063601494, 0.01336995791643858, 0.015533561818301678, 0.006594828795641661, -0.027364032343029976, 0.00453524524345994, -0.005988049320876598, 0.017572341486811638, 0.007135729771107435, -0.0034187703859061003, -0.026171276345849037, 0.001315845176577568, 0.003248872235417366, -0.005356998182833195, -0.00033849640749394894, 0.02843196503818035, -0.025352992117404938, 0.038057226687669754, -0.0038209788035601377, 0.01150454394519329, 0.010415807366371155, 0.007981753908097744, 0.02300908789038658, -0.01937534473836422, -0.010776408016681671, 0.03153867647051811, 0.014507236890494823, 0.04440934211015701, 0.01619928516447544, -0.017225610092282295, 0.030734261497855186, -0.036115530878305435, 0.005062276963144541, -0.035061467438936234, 0.008085773326456547, -0.003420504042878747, 0.007281356956809759, 0.017378171905875206, 0.01619928516447544, 0.0262960996478796, 0.006830606143921614, 0.01058223843574524, 0.025491684675216675, 0.006976233329623938, 0.008002557791769505, -0.0024045815225690603, -0.03753019496798515, 0.01776651106774807, -0.04371587932109833, 0.016809532418847084, -0.012087052688002586, -0.018765097483992577, -0.022454317659139633, -0.008897124789655209, -0.020207500085234642, 0.02931959740817547, -0.027322424575686455, 0.014174374751746655, 0.01952790655195713, 0.02274557203054428, -0.025380730628967285, -0.017225610092282295, -0.0295137669891119, 0.046434253454208374, 0.005152426660060883, -7.378875307040289e-05, -0.01705917902290821, -0.002219080226495862, -0.02349451184272766, -0.024479229003190994, 0.003692688187584281, -0.014798491261899471, 0.0009110364480875432, 0.010159226134419441, 0.030179491266608238, -0.036975424736738205, 0.001590629806742072, 0.01135198213160038, -0.00880697462707758, -0.019957853481173515, -0.03370228037238121, 0.021178346127271652, 0.026268361136317253, -0.021760854870080948, -0.012621019035577774, 0.04624008387327194, 0.002031845273450017, -0.01225348375737667, -0.007766780909150839, -0.005211370997130871, -0.014021812938153744, -0.0007190339965745807, -0.03262047842144966, -0.003987409640103579, -0.0054367464035749435, -0.008751497603952885, 0.003020029515028, 0.01271810382604599, -0.002286692848429084, 0.013252069242298603, -0.002347370842471719, -0.01683727093040943, -0.009992795996367931, -0.010242441669106483, -0.013064834289252758, 0.003564397571608424, 0.005304988473653793, -0.0057696085423231125, -0.008411700837314129, -0.04393778741359711, -0.008869386278092861, -0.009750084020197392, -0.01814098097383976, 0.000366668333299458, -0.03306429460644722, -0.013300611637532711, -0.01051289215683937, 0.004823032300919294, -0.012634888291358948, 0.019292129203677177, 0.015200699679553509, -0.003293947083875537, -0.017156263813376427, 0.021927285939455032, -0.0022589543368667364, 0.021788593381643295, -0.0006319177919067442, -0.002425385406240821, 0.013543323613703251, -0.0071218605153262615, -0.007343768607825041, -0.004999865312129259, 0.027461117133498192, 0.008377027697861195, -0.01941695250570774, -0.010922035202383995, -0.015686122700572014, -0.012822123244404793, 0.0547558031976223, 0.008897124789655209, 0.02918090485036373, 0.0032956807408481836, 0.053729478269815445, -0.016809532418847084, 0.014070355333387852, 0.007745977025479078, 0.01567225344479084, -0.00026416589389555156, -0.008501850999891758, -0.010991381481289864, -0.011768059805035591, 0.013820708729326725, 9.583869541529566e-05, -0.005974180065095425, -0.04033178463578224, 0.007246683817356825, -0.006372921168804169, -0.056614283472299576, -0.0023248333018273115, 0.002806789707392454, 0.01185820996761322, -0.025047868490219116, -0.015048137865960598, 0.016712447628378868, -0.00907049048691988, 0.017267217859625816, -0.014035682193934917, -0.019084090366959572, -0.025824546813964844, -6.945461063878611e-05, -0.030179491266608238, -0.007399245630949736, -0.005890964530408382, -0.028820304200053215, -0.005114286206662655, 0.017142394557595253, -0.04268955439329147, -0.0439932644367218, -0.007378441747277975, 0.01723947934806347, 0.026351576671004295, 0.016393454745411873, 0.006327846087515354, -0.01296081580221653, 0.031843800097703934, -0.020318452268838882, -0.011518413200974464, -0.017156263813376427, -0.01723947934806347, 0.001551622524857521, -0.010193899273872375, 0.02532525360584259, -0.0039458018727600574, -0.01941695250570774, 0.03475634381175041, 0.007822257466614246, 0.007662761490792036, 0.008557328023016453, 0.02479822188615799, -0.013057899661362171, 0.017253348603844643, -0.004784891847521067, 0.0214696004986763, 0.013196592219173908, 0.0008065836736932397, 0.011851275339722633, -0.03872295096516609, -0.02334195002913475, -0.018085503950715065, -0.038917120546102524, -0.006906887050718069, 0.026323838159441948, -0.007621153723448515, 0.0300407987087965, 0.009271594695746899, 0.02472887560725212, -0.0010419274913147092, 0.012135595083236694, 0.010963642969727516, 0.024007674306631088, -0.0003753366181626916, -0.017530733719468117, 0.012198006734251976, -0.018127111718058586, 0.013647343032062054, 0.01855705864727497, -0.013536388985812664, 0.027502724900841713, 0.006213424727320671, 0.004916649777442217, -0.003080707509070635, -0.0085850665345788, -0.04230121523141861, -0.02109513059258461, 0.005256446078419685, -0.006088601425290108, 0.0300407987087965, 0.025727462023496628, -0.02704503946006298, -0.010519826784729958, 0.010408872738480568, -0.008481047116219997, 0.01858479715883732, -0.017156263813376427, -0.02625449188053608, -0.01150454394519329, -0.002418450778350234, -0.009944253601133823, -0.02633770741522312, -0.023217126727104187, -0.020845483988523483, -0.03059556894004345, 0.0004238789842929691, -0.010055207647383213, 0.006178751587867737, 0.026545746251940727, -0.013314480893313885, -0.0284597035497427, -0.03636517748236656, -0.00670578284189105, -0.019472429528832436, -0.015422607772052288, 0.028307141736149788, 0.0343402661383152, 0.015172961167991161, 0.017683295533061028, 0.0047918264754116535, -0.004396552685648203, 0.0009725812706165016, 0.025574900209903717, -0.001818605582229793, -0.009909580461680889, 0.014521106146275997, 0.005419409833848476, -0.016962094232439995, 0.004854238126426935, -0.0005777410115115345, 0.013418500311672688, -0.012995488941669464, -0.0042717293836176395, 0.032259877771139145, -0.006147545762360096, 0.011192485690116882, -0.008009492419660091, -0.03811270371079445, -0.006438800133764744, 0.004479768220335245, 0.02378576621413231, -0.000509694975335151, -0.025616507977247238, -0.015228438191115856, 0.026462530717253685, -0.00035626639146357775, 0.024659529328346252, 0.030540091916918755, 0.0007909807609394193, -0.027169862762093544, -0.020484883338212967, 0.008349289186298847, 0.018057765439152718, -0.02263461798429489, 0.010173095390200615, -0.035033728927373886, 0.0010289250640198588, 2.149463034584187e-05, -0.013161919079720974, 0.020776137709617615, 0.003748165210708976, 0.0031361845321953297, -1.7133401343016885e-05, 0.01686500944197178, -0.010117619298398495, -0.01148374006152153, -0.0072189453057944775, 0.015034268610179424, -0.0268231313675642, -0.014562713913619518, 0.0004923584056086838, -0.03594909980893135, 0.016476670280098915, 0.01416050549596548, 0.009028882719576359, -0.0019000874599441886, -0.01497879158705473, -0.01146293617784977, 0.003165656700730324, -0.008411700837314129, 0.05980421230196953, 0.016102200374007225, 0.022565271705389023, 0.04055368900299072, -0.005849356763064861, 0.009125967510044575, -0.038584258407354355, -0.005738402716815472, -0.0007766780909150839, 0.04285598546266556, 0.05159361660480499, -0.027585940435528755, -0.008869386278092861, 0.00504147307947278, -0.002976688090711832, -0.02323099598288536, -0.02490917593240738, 0.009729280136525631, 0.019624991342425346, -0.009784757159650326, -0.01723947934806347, -0.00031444194610230625, -0.022246278822422028, 0.010859623551368713, -0.028958996757864952, -0.0020093077328056097, -0.0041330368258059025, -0.00918144453316927, -0.018903790041804314, 0.0023265669587999582, 0.008363158442080021, 0.015325522981584072, 0.009812495671212673, 0.005523429252207279, -0.007759846281260252, -0.0037689690943807364, -0.043299801647663116, 0.026129668578505516, 0.015422607772052288, 0.024825960397720337, -0.011400524526834488, -0.01225348375737667, 0.03350811079144478, 0.002597017213702202, 0.009562849067151546, -0.02413249760866165, -0.015186830423772335, 0.052231598645448685, -0.010270180180668831, -0.01930599845945835, -0.010831885039806366, 0.0019000874599441886, 0.01873735897243023, 0.00871682446449995, 0.0025987508706748486, 0.0065774922259151936, -0.010027469135820866, 5.94319099036511e-05, 0.014451759867370129, -0.03134450688958168, 0.02931959740817547, -0.010013599880039692, 0.007281356956809759, -0.014673667959868908, -0.005128155462443829, 0.012274287641048431, 0.028140710666775703, -0.04194061458110809, -0.017974549904465675, -0.020748399198055267, -0.025033999234437943, -0.0049131824634969234, 0.011490674689412117, -0.007281356956809759, -0.0008668281952850521, 0.03744697943329811, -0.032370831817388535, 0.01840449683368206, -0.004944388289004564, 0.009320137090981007, -0.012995488941669464, 0.000298622326226905, -0.019514037296175957, -0.01855705864727497, 0.027031170204281807, -0.01721174083650112, 0.011338112875819206, -0.028626134619116783, 0.0032610076013952494, 0.022981349378824234, -0.009410287253558636, 0.018002288416028023, 0.009285463951528072, 0.0020041067618876696, 0.01858479715883732, 0.020484883338212967, -0.018376758322119713, 0.005447148345410824, 0.007475526537746191, 0.004930519033223391, -0.013210461474955082, -0.010304853320121765, 0.01058223843574524, -0.02153894677758217, -0.0014320001937448978, 0.006223826669156551, -0.038057226687669754, -0.015117484144866467, -0.007551807444542646, 0.0034534435253590345, -0.022426579147577286, 0.029596982523798943, -0.03511694446206093, 0.001782198785804212, -0.030456876382231712, -0.005384736694395542, 0.0002122645528288558, -0.03250952437520027, 0.000624116335529834, 0.04177418351173401, -0.009327071718871593, -0.0017587944166734815, -0.0031500537879765034, -0.03392418846487999, -0.017447518184781075, -0.021011915057897568, -0.01225348375737667, -0.01352251973003149, -0.014132766984403133, 0.05303601548075676, 0.005058809649199247, -0.029430551454424858, -0.023688681423664093, 0.0008689952665008605, -0.03384097293019295, -0.016934355720877647, 0.003091109450906515, 0.029541505500674248, 0.02973567508161068, 0.002304029418155551, 0.012128660455346107, 0.032481785863637924, -0.015921900048851967, 0.0019937048200517893, -0.0064041269943118095, 0.006671109702438116, -0.02349451184272766, -0.01948629878461361, -0.019139567390084267, -0.004268262069672346, -0.04507506638765335, -0.01475688349455595, 0.011310374364256859, -0.01761394925415516, -0.013460108079016209, 0.037946272641420364, 0.02592163160443306, -0.010769473388791084, -0.009112098254263401, -0.017419779673218727, -0.01464592944830656, -0.007759846281260252, -0.006324378773570061, -0.028043625876307487, -0.01212172582745552, 0.0246872678399086, 0.0017960680415853858, -0.007177337538450956, 0.017669426277279854, 0.01047128438949585, -0.007884669117629528, -0.007863865233957767, -0.03700316324830055, -0.02237110212445259, 0.006230761297047138, -0.00730216084048152, 0.02113673835992813, 0.007711303886026144, -0.012371372431516647, 0.014063420705497265, 0.0014293997082859278, 0.006854877341538668, -0.018529320135712624, 0.005755739286541939, -0.030734261497855186, 0.0033632933627814054, 0.019833030179142952, -0.009438025765120983, -0.012114791199564934, 0.0013747895136475563, 0.026545746251940727, -0.011282635852694511, -0.004101831000298262, 0.01948629878461361, -0.00918144453316927, -0.03253726288676262, 0.010852688923478127, 0.011740321293473244, -0.018390627577900887, 0.0029021408408880234, 0.0013583197724074125, -0.029264120385050774, 0.010422741994261742, -0.03317524865269661, 0.026309968903660774, -0.04926358163356781, 0.0161160696297884, 0.007212010677903891, -0.002740910742431879, -0.011809667572379112, 0.0029558842070400715, 0.01247539184987545, -0.02475661411881447, -0.006275836378335953, 0.23588822782039642, -0.01930599845945835, 0.013425434939563274, 0.019514037296175957, -0.013813774101436138, 0.01660149358212948, 0.005651719868183136, 0.002747845370322466, -0.02510334551334381, 0.01705917902290821, 0.0020162423606961966, -0.01631023921072483, -0.013723623938858509, -0.011032989248633385, 0.030179491266608238, 0.029652459546923637, -0.006196088157594204, -0.037946272641420364, -0.005634383298456669, -0.0009171042474918067, -0.00264555960893631, 0.014424021355807781, -0.015381000004708767, -0.024285059422254562, 0.009937318973243237, -0.004015148151665926, -0.016518278047442436, 0.0053223250433802605, 0.011934490874409676, -0.0061440784484148026, -0.027031170204281807, 0.022038239985704422, 0.016767924651503563, 0.007898538373410702, -0.014923314563930035, -0.0016391720855608582, 0.025616507977247238, 0.03070652298629284, 0.019472429528832436, 0.0006843608571216464, -0.015256176702678204, 0.0001721737498883158, 0.01732269488275051, -0.012884534895420074, 0.005350063554942608, 0.01323819998651743, 0.0004823899071197957, -0.018751228228211403, 0.0037689690943807364, -0.005783477798104286, -0.03489503636956215, -0.02266235649585724, 0.019777553156018257, 0.01783585734665394, -0.008897124789655209, -0.002843196503818035, 0.014479498378932476, 0.0008425569976679981, 0.009271594695746899, 0.025602638721466064, -0.013196592219173908, 0.03528337553143501, -0.011206354945898056, 0.005405540578067303, -0.025838416069746017, -0.0028535984456539154, -0.03894485905766487, 0.017184002324938774, -0.001959031680598855, 0.004105298314243555, 0.00403941934928298, 0.0008971671923063695, -0.033424895256757736, -0.02001333050429821, -0.026767654344439507, -0.03101164661347866, 0.05947135016322136, 0.008314616046845913, 0.024812091141939163, 0.031732846051454544, 0.018016157671809196, 0.003391031874343753, 0.0074061802588403225, 0.025671985000371933, -0.023133911192417145, -0.040304046124219894, 0.007960950024425983, -0.013120311312377453, -0.0030703055672347546, 0.019500168040394783, -0.0022884265054017305, -0.023619335144758224, 0.017225610092282295, -0.008155119605362415, 0.012308960780501366, 0.00655322102829814, 0.0029905573464930058, 0.013515585102140903, -0.01464592944830656, -0.007014373783022165, -0.030651045963168144, 0.012523934245109558, 0.008508785627782345, 0.02378576621413231, -0.004868107382208109, -0.0044173565693199635, 0.012357503175735474, -0.0015568234957754612, 0.01221187599003315, -0.009992795996367931, 0.0071218605153262615, -0.05356304720044136, 0.018154850229620934, -0.0015672254376113415, 0.009909580461680889, 0.006123274564743042, -0.01979142241179943, -0.03078973852097988, 0.00452484330162406, 0.018321281298995018, 0.0030286977998912334, -0.01915343664586544, -0.00016144674737006426, -0.0005014601047150791, -0.0321766622364521, -0.021344777196645737, -0.008092707954347134, -0.010540630668401718, -0.01387618575245142, -0.01721174083650112, 0.009611391462385654, -0.04895845800638199, 0.02087322250008583, 0.011338112875819206, -0.006074732169508934, -0.004573385696858168, -0.0035383927170187235, -0.02281491830945015, -0.014257590286433697, 0.007752911653369665, 0.003987409640103579, 0.027821717783808708, -0.004178111907094717, -0.0018654143204912543, -0.00015017799159977585, -0.013716689310967922, 0.0028535984456539154, 0.006081666797399521, 0.014354675076901913, -0.00047285479377023876, -0.018654143437743187, -0.006421463564038277, 0.015062007121741772, 0.000444249453721568, -0.0007654093205928802, -0.013314480893313885, -0.019389213994145393, -0.044825419783592224, -0.0030824411660432816, 0.01646280102431774, -0.03081747703254223, -0.012662626802921295, 0.027558201923966408, -0.02038779854774475, -0.003758567152544856, -0.025838416069746017, -0.1759730577468872, 0.00944496039301157, 0.03475634381175041, -0.018432235345244408, 0.031399983912706375, -0.019319867715239525, 0.019735945388674736, -0.008626674301922321, -0.013002423569560051, -0.011178616434335709, 0.014659798704087734, 0.0034343732986599207, 0.0080580348148942, -0.017253348603844643, -0.011795798316597939, -0.013397696428000927, 0.006733521353453398, 0.007205076050013304, 0.05073372274637222, -0.0009465764160268009, 0.014368544332683086, -0.04033178463578224, 0.006234228610992432, 0.043632663786411285, 0.010928969830274582, 0.013779100961983204, -0.0023387025576084852, -0.014285328797996044, 0.010533696040511131, -0.02857065759599209, 0.012815188616514206, 0.007316030096262693, -0.0013964602258056402, -0.003831380745396018, -0.005343128927052021, -0.001983302878215909, 0.017794249579310417, -0.010963642969727516, -0.016143808141350746, -0.004389618057757616, -0.009805561043322086, 0.04912488907575607, 0.005752271972596645, -0.019666599109768867, -0.014174374751746655, 0.0017241212772205472, 0.00183074118103832, -0.020914830267429352, -0.013945532031357288, 0.0033026153687387705, 0.004479768220335245, -0.025380730628967285, 0.006164882332086563, 0.005700262263417244, 0.036226484924554825, 0.011102335527539253, -0.008550393395125866, -0.012024641036987305, -0.01352251973003149, -0.011913686990737915, -0.018834443762898445, -0.02191341668367386, 0.02404928207397461, 0.008203662000596523, -0.01622702367603779, -0.028626134619116783, -0.008481047116219997, 0.03827913478016853, -0.016518278047442436, -0.00403941934928298, 0.005280717276036739, -0.025186561048030853, 0.016254762187600136, 0.006976233329623938, 0.0014025280252099037, 0.02995758317410946, -0.013494781218469143, 0.02274557203054428, 0.006754325237125158, -0.005242576822638512, -0.0010792011162266135, 0.03467312827706337, 0.0034707800950855017, -0.00918144453316927, 0.02667056955397129, -0.013023226521909237, 0.015810946002602577, -0.019070221111178398, -0.04216252267360687, -0.03406288102269173, 0.043438494205474854, -0.0032835451420396566, -0.005960310809314251, -0.007447788026183844, 0.011365851387381554, 0.011469870805740356, -0.006116339936852455, -0.006348649971187115, -0.00809964258223772, -0.01694822497665882, -0.012399110943078995, 0.012017706409096718, -0.010783342644572258, 0.02079000696539879, 0.027669155970215797, 0.03253726288676262, -0.018376758322119713, 0.012003837153315544, 0.00352972443215549, 0.01904248259961605, -0.012302026152610779, 0.002056116471067071, 0.01427145954221487, 0.02079000696539879, 0.007260553073137999, 0.031039385125041008, -0.009243856184184551, -0.01922278292477131, 0.019403083249926567, 0.008141250349581242, -0.011580824851989746, -0.012745842337608337, 0.013175788335502148, 0.024298928678035736, 0.005988049320876598, -0.01502039935439825, -0.07267487794160843, -0.012946946546435356, 0.008071904070675373, 0.029596982523798943, -0.01095670834183693, 0.04912488907575607, -0.010297918692231178, 0.048237256705760956, -0.03156641498208046, 0.04751605540513992, -0.008661347441375256, -0.02854291908442974, -0.013293677009642124, -0.005117753520607948, -0.032037969678640366, 0.0074061802588403225, 0.0007896805182099342, -0.00518016517162323, 0.0008260872564278543, 0.022842656821012497, -0.01649053953588009, 0.005530363880097866, 0.022509794682264328, 0.003855651943013072, 0.017142394557595253, 0.008994209580123425, -0.014881706796586514, 0.005211370997130871, 0.013834577985107899, 0.010568369179964066, 0.03489503636956215, -0.013328350149095058, -0.015658384189009666, -0.01809937320649624, 0.03841782733798027, -0.0014111963100731373, -0.021760854870080948, -0.02360546588897705, 0.031732846051454544, 0.0015724264085292816, -0.004504039417952299, 0.00706985080614686, 0.004230121616274118, -0.008820843882858753, -0.007655826862901449, -0.022828787565231323, -0.012198006734251976, 0.01836288906633854, 0.009604456834495068, -0.017600079998373985, -0.029763413593173027, -0.015450346283614635, -0.014507236890494823, -0.004233588930219412, 0.01398713979870081, 0.01877896673977375, 0.012135595083236694, 0.013591866008937359, -0.02621288411319256, 0.010103750042617321, 0.0023439035285264254, -0.010235507041215897, -0.022620748728513718, 0.02450696751475334, 0.012045444920659065, 0.022676225751638412, -0.032592739909887314, -0.02045714482665062, 0.02266235649585724, -0.016213154420256615, 0.003949269186705351, 0.02360546588897705, 0.0002509467594791204, 0.03786305710673332, -0.029486028477549553, -0.0204155370593071, -0.012579411268234253, -0.031621892005205154, 0.048459164798259735, 0.0008902325644157827, -0.013002423569560051, 0.001891419175080955, -0.021303169429302216, -0.011150877922773361, 0.01567225344479084, 0.023439034819602966, -0.026379315182566643, -0.004365346860140562, 0.02060970664024353, -0.028307141736149788, 0.03594909980893135, -0.0009717144421301782, -0.027918802574276924, -0.0060296570882201195, -0.006237695924937725, -0.0037065574433654547, -0.006483875215053558, 0.002886537928134203, 0.011282635852694511, 0.038057226687669754, -0.0397215373814106, -0.03406288102269173, -0.0826607346534729, 0.024077020585536957, -0.0020907896105200052, -0.018459973856806755, 0.0289867352694273, 0.01363347377628088, 0.030290445312857628, -0.0010280582355335355, -0.013376892544329166, -0.0158525537699461, -0.02142799273133278, 0.00668497895821929, 0.015589038841426373, -0.00516976322978735, -0.01604672335088253, -0.007156533654779196, 0.02356385812163353, 0.0011147410841658711, 0.02221854031085968, 0.009743149392306805, 0.0225236639380455, -0.006823671516031027, 0.012315895408391953, -0.017794249579310417, -0.013564127497375011, 0.012073183432221413, -0.0029905573464930058, 0.016018984839320183, -0.009354810230433941, -0.026795392856001854, 0.005405540578067303, 0.0017050510505214334, 0.0010029202094301581, 0.02259301021695137, 0.0027131722308695316, 0.011192485690116882, 0.012329764664173126, 0.005218305625021458, 0.008578131906688213, 0.019611122086644173, -0.030345922335982323, -0.02689247764647007, 0.03520015999674797, -0.006320911459624767, -0.01095670834183693, 0.005752271972596645, 0.007954015396535397, 0.0038521846290677786, 0.012392176315188408, 0.02131703868508339, 0.0077806501649320126, 0.0003742530825547874, -0.023660942912101746, -0.020706791430711746, -0.010637715458869934, -0.04413195699453354, -0.0018324748380109668, -0.018987005576491356, -0.004289065953344107, -0.006532417144626379, 0.028515180572867393, 0.010908165946602821, 0.014257590286433697, 0.0055650370195508, -0.012953881174325943, -0.011677909642457962, -0.029069950804114342, 0.012385241687297821, 0.009132902137935162, -0.008855517022311687, -0.02065131440758705, -0.03303655609488487, 0.013598800636827946, 0.0005083947326056659, 0.011698713526129723, 0.000719900825060904, -0.01210092194378376, 0.013383827172219753, -0.01821032725274563, 0.035477545112371445, 0.019985591992735863, 0.0001904855016618967, -0.048154041171073914, 0.015103614889085293, 0.024881437420845032, -0.033424895256757736, 0.0005148959462530911, 0.014729144982993603, -0.019084090366959572, -0.006560155656188726, 0.0015533561818301678, -0.0009205715614371002, 0.005103884264826775, 0.007017841096967459, 0.005596242845058441, 0.048043087124824524, 0.01232283003628254, -0.024257320910692215, 0.03422931209206581, 0.013085638172924519, 0.02019363082945347, -0.021982762962579727, -0.009077425114810467, -0.012184137478470802, -0.01567225344479084, 0.006275836378335953, 0.0015056806150823832, -0.029763413593173027, -0.009354810230433941, 0.022163063287734985, -0.01776651106774807, 0.031510937958955765, -0.00882777851074934, 0.02016589231789112, -0.019236652180552483, 0.006383323110640049, -0.02382737398147583, -0.010006665252149105, -0.03145546093583107, 0.011102335527539253, 0.007475526537746191, 0.007461657281965017, 0.03672577813267708, -3.4348067856626585e-05, 0.012073183432221413, -0.009306267835199833, 0.017489125952124596, -0.037835318595170975, -0.011712582781910896, -0.01049208827316761, -0.024715006351470947, 0.015533561818301678, -0.024229582399129868, -0.006667642388492823, -0.009361744858324528, -0.02499239146709442, 0.0023560391273349524, -0.0024201844353228807, -0.01791907288134098, 0.07095509022474289, -0.004379216115921736, 0.0054610176011919975, -0.00920224841684103, -0.02116447687149048, 0.012572476640343666, 0.027072777971625328, 0.009639129973948002, 0.011317308992147446, -0.03239857032895088, 0.011296505108475685, 0.011539217084646225, -0.009320137090981007, -0.0246872678399086, 0.022537533193826675, 0.004989463370293379, -0.037391502410173416, 0.022606879472732544, -0.022412709891796112, 0.01761394925415516, 0.039444152265787125, -0.0008793972083367407, -0.006788998376578093, 0.010526761412620544, -0.005904833786189556, -0.008404766209423542, 0.024548575282096863, -0.012114791199564934, 0.009569783695042133, -0.012711169198155403, 0.004639264661818743, -0.015186830423772335, -0.010693192481994629, -0.051981955766677856, -0.01750299520790577, 0.011442132294178009, 0.004299467895179987, 0.01844610460102558, 0.036115530878305435, 0.0024392546620219946, 0.009160640649497509, 0.020041069015860558, -0.027100516483187675, -0.03594909980893135, -0.02169150859117508, 0.004400019999593496, 0.010741734877228737, -0.01904248259961605, -0.02502012997865677], "c1bdce91-2f0b-48af-b4be-c8498c881ace": [-0.010751663707196712, -0.015461982227861881, -0.0040758391842246056, -0.006099965889006853, -0.014372332952916622, 0.0006797375972382724, -0.018703343346714973, -0.016041290014982224, 0.010275804437696934, -0.02446882799267769, -0.000518100569024682, 0.016758527606725693, 0.0014620607253164053, 0.0012879237765446305, -0.00862753763794899, -0.006082724314182997, -0.00026788644026964903, -0.01062752678990364, 0.013786129653453827, 0.0006370653863996267, 0.011599934659898281, 0.02583433873951435, 0.006558584049344063, -0.04452388733625412, -0.022427460178732872, 0.02652398869395256, 0.012972340919077396, -0.004468940664082766, 0.0005991345969960093, -0.004458595532923937, 0.028220530599355698, -0.000498273060657084, -0.014813710004091263, -0.021903324872255325, 0.00452066445723176, 0.012813720852136612, 0.007696508429944515, -0.0016706802416592836, 0.0009655118337832391, 0.005034454632550478, 0.002079298719763756, 0.0017603349406272173, -0.007972368970513344, 0.007641336414963007, -0.0015267155831679702, 0.004820662550628185, 0.005989621393382549, -0.011248213239014149, -0.02926880121231079, 0.029434317722916603, -0.013599923811852932, 0.046592842787504196, -0.04198596999049187, -0.007627543527632952, 0.02468951605260372, -0.005058592185378075, 0.0008784433593973517, 0.0033327399287372828, -0.024220554158091545, -0.005306866951286793, 0.041158389300107956, 0.01696542277932167, -0.012751652859151363, 0.008806847035884857, -0.01075856015086174, 0.0072206491604447365, -0.01059994101524353, 0.002134470734745264, 0.014496470801532269, 0.02122746780514717, 0.01616542600095272, 0.012158552184700966, -0.020841263234615326, 0.00781374890357256, 0.03001362457871437, -0.002022402361035347, -4.038231782033108e-05, -0.013896473683416843, -0.006644790526479483, 0.014882675372064114, -0.003768944414332509, 0.0008758571348153055, 0.013903370127081871, 0.006244792602956295, 0.011406832374632359, 0.009227534756064415, -0.010765456594526768, 0.015351638197898865, -0.008462021127343178, 0.004844800569117069, 0.0030379139352589846, 0.007206856273114681, 0.02125505357980728, -0.007999954745173454, -0.017324041575193405, -0.016868870705366135, -0.03368256986141205, 0.009682704694569111, -0.007186166476458311, -0.011420625261962414, 0.008406849578022957, 0.006827548146247864, -0.01462060771882534, 0.00845512468367815, -0.0428687259554863, -0.019061962142586708, 0.012041311711072922, -0.017103351652622223, 0.008737881667912006, -0.008944777771830559, -0.025944681838154793, 0.03059293143451214, -0.016206806525588036, -0.02526882477104664, -0.013482683338224888, -0.010075805708765984, 0.03928253799676895, -0.01928265020251274, -0.008275815285742283, -0.012751652859151363, 0.016441287472844124, 0.027420535683631897, 0.008034437894821167, -0.0036379105877131224, 0.016041290014982224, 0.009482705034315586, -0.023255042731761932, -0.014758538454771042, -0.011268902570009232, -0.04171011224389076, 0.04457905888557434, 0.002462055068463087, 0.03078603371977806, 0.023710211738944054, 0.009165465831756592, 0.01757231540977955, -0.0001550637825857848, -0.00517928134649992, -0.013241305015981197, -0.012324068695306778, 0.039641156792640686, 0.013593027368187904, 0.00623099971562624, -0.013006824068725109, -0.004399975296109915, 0.00011282264313194901, 0.013393028639256954, 0.011758554726839066, -0.00014633538376074284, 0.0028086048550903797, 0.008744779042899609, -0.019006790593266487, 0.011627521365880966, 0.019848164170980453, 0.007151684258133173, 0.015241294167935848, 0.012786135077476501, 0.022786078974604607, -0.015613705851137638, -0.03616531565785408, 0.005231005139648914, 0.010455113835632801, -0.010241322219371796, -0.01765507273375988, 0.0008599089924246073, 0.02635847218334675, -0.00195343722589314, 0.0165102519094944, -0.01235855184495449, -0.001108614495024085, 0.006755134556442499, 0.006206861697137356, -0.02921362966299057, -0.005720657762140036, 0.0030672242864966393, -0.0025827442295849323, 0.004924110136926174, 0.0032706712372601032, 0.004168942105025053, 0.016703354194760323, 0.002072402276098728, -0.020537815988063812, 0.009668910875916481, 0.01226200070232153, -0.004931007046252489, -0.033323951065540314, 0.021379191428422928, -0.004151700995862484, 0.012275793589651585, 0.0010060288477689028, 0.029627420008182526, 0.024882618337869644, 0.011213730089366436, 0.02412400208413601, -0.5804105401039124, -0.03707565367221832, -0.013255097903311253, -0.011724072508513927, 0.020786089822649956, 0.0014129230985417962, -0.0029655005782842636, 0.028855010867118835, -0.01648266613483429, 0.026620540767908096, -0.017861969769001007, 0.008717192336916924, 0.011793036945164204, -0.006834444589912891, -0.008041334338486195, -0.0338204987347126, 0.02615157701075077, -0.02801363542675972, 0.021765395998954773, 0.01797231286764145, -0.028206737712025642, 0.019820578396320343, -0.011234419420361519, 0.020372299477458, 0.014413712546229362, 0.01776541769504547, -0.011434419080615044, -0.011013731360435486, 0.003741358406841755, 0.0386204719543457, -0.011586141772568226, -0.0022982629016041756, 0.004793076775968075, 0.0010474079754203558, 0.05633071810007095, -0.026703298091888428, 0.0022430908866226673, 0.006730996537953615, 0.019296443089842796, 0.04317217320203781, -0.01582060009241104, -0.004317217040807009, 0.036358416080474854, -0.009158569388091564, 0.017144732177257538, -0.023020559921860695, 0.019337821751832962, 0.00274308817461133, 0.0022396426647901535, -0.025282617658376694, -0.0009206844842992723, -0.016689561307430267, 0.01214475929737091, -0.02103436551988125, 0.020537815988063812, 0.01095855887979269, 0.02521365135908127, -0.02598606050014496, 0.023282628506422043, -0.025655029341578484, -0.008903398178517818, 0.0024827446322888136, -0.02239987440407276, -0.006865478586405516, -0.026248129084706306, 0.023558488115668297, -0.010399941354990005, -0.01095855887979269, 0.0012129242531955242, -0.01931023597717285, 0.00904132891446352, 0.014165437780320644, -0.01174476183950901, 0.020675746724009514, 0.021379191428422928, 0.050372131168842316, 0.02689640037715435, -0.020192990079522133, -0.007441337686032057, 0.009882703423500061, 0.02162746526300907, 0.002256884006783366, -0.0423445887863636, -0.021324018016457558, 0.03172396123409271, -0.0011232695542275906, -0.03376532718539238, -0.002886190777644515, 0.007544785272330046, -0.007593060843646526, 0.017834382131695747, 0.0014448194997385144, 0.017986105754971504, -0.044882506132125854, 0.014979226514697075, 0.0015948186628520489, -0.02340676449239254, 0.0009982702322304249, 0.016151633113622665, -0.034841183573007584, -0.03235843777656555, 0.023999866098165512, -0.001365509582683444, -0.009234431199729443, 0.013048202730715275, 0.002520675538107753, -0.03227568045258522, 0.0030258451588451862, 0.039613571017980576, -0.031006723642349243, -0.0015267155831679702, -0.027199847623705864, -0.0006314619677141309, 0.004355147946625948, -0.008786157704889774, -0.028634322807192802, 0.0004767214704770595, -0.022827457636594772, -0.020372299477458, -0.014372332952916622, 0.024910205975174904, -0.004713766742497683, 0.006962029729038477, 0.006924099288880825, 0.021020572632551193, 0.009193051606416702, 0.027627430856227875, -0.01568267121911049, -0.023310214281082153, 0.012434412725269794, -0.028634322807192802, -0.018703343346714973, 0.01728266105055809, -0.02317228354513645, -0.0003661617520265281, -0.013558545149862766, -0.00919994805008173, 0.0043275621719658375, 0.029379146173596382, -0.014524056576192379, -0.034951526671648026, -0.015310258604586124, 0.014813710004091263, -0.017489558085799217, -0.015806807205080986, -0.004724111407995224, -0.006713755428791046, 3.679936344269663e-05, -0.020620573312044144, -0.0157102569937706, -9.145961485046428e-06, 0.008537882938981056, -0.016013704240322113, 0.03139292821288109, 0.013296477496623993, -0.00708961533382535, 0.005882725585252047, -0.005393073428422213, 0.009779255837202072, -0.010675801895558834, -0.0010586148127913475, -0.010234425775706768, -0.004641353152692318, -0.014358540065586567, -0.01204820815473795, -0.03313085064291954, -0.0027534328401088715, 0.014206817373633385, -0.0012508550425991416, -0.03230326622724533, -0.016496459022164345, -0.009820634499192238, 0.014455091208219528, -0.007689611986279488, 0.011386143043637276, -0.005610313266515732, -0.011724072508513927, 0.0054723829962313175, 0.012282690033316612, -0.0019551615696400404, -0.009158569388091564, -0.013268890790641308, -0.012406826950609684, 0.004534457344561815, 0.008882708847522736, 0.01400681771337986, 0.036496348679065704, 0.026399852707982063, -0.02529641054570675, -0.014096472412347794, -0.008724088780581951, -0.004365492612123489, 0.001053442363627255, 0.01242061983793974, 0.025972267612814903, 0.03456532210111618, 0.011696485802531242, 0.011641314253211021, -0.023448145017027855, 0.018579205498099327, 0.03757220506668091, 0.017517143860459328, -0.02426193282008171, -0.047365251928567886, 0.02026195451617241, -0.03155844286084175, 0.020992984995245934, -0.020620573312044144, 0.012882686220109463, -0.021792981773614883, -0.0037654961924999952, -0.04612388089299202, -0.012296482920646667, -0.01954471878707409, 0.02106195129454136, 0.0002827570424415171, -0.024620551615953445, -0.003613772802054882, 0.00904132891446352, 0.03326877951622009, 0.0141792306676507, 0.027117090299725533, 0.008924087509512901, -0.03613772988319397, -0.0016430942341685295, -0.02143436297774315, 0.006920651067048311, -0.008234436623752117, -0.015351638197898865, -0.02106195129454136, -0.010724077932536602, -0.014565435238182545, -0.015089570544660091, 0.005031006410717964, 0.017930934205651283, -0.013358545489609241, 0.03133775666356087, 0.01174476183950901, -0.007006857078522444, 0.006358584854751825, -0.0033327399287372828, 0.014413712546229362, -0.005682726856321096, -0.03839978575706482, 0.018413690850138664, -0.008551675826311111, 0.05070316419005394, 0.023903314024209976, 0.0020379195921123028, 0.018551619723439217, -0.02391710691154003, -0.004658594727516174, -0.017268868163228035, 0.01688266359269619, -0.01496543362736702, -0.009627532213926315, 0.007606853730976582, 0.014524056576192379, 0.02569640800356865, 0.017958519980311394, 0.001073269871994853, 0.02692398615181446, -0.01363440603017807, -0.006848237477242947, 0.01968264766037464, -0.02002747356891632, -0.0007288752240128815, -0.033434294164180756, 0.013896473683416843, -0.01415164489299059, -0.02308952622115612, -0.0211722943931818, 0.024110209196805954, -0.015641292557120323, 0.015696464106440544, 0.01757231540977955, 0.025999853387475014, 0.003258602460846305, 0.028606737032532692, -0.01464819349348545, 0.011517176404595375, -0.015558533370494843, 0.0035654972307384014, 0.011806830763816833, -0.003544807666912675, -0.03365498408675194, -0.00585858803242445, -0.008682710118591785, -0.02655157446861267, 0.01725507527589798, -0.0038344613276422024, 0.015379223972558975, -0.021103329956531525, 0.010220631957054138, -0.016841284930706024, 0.023627454414963722, 0.007441337686032057, -0.005803415551781654, -0.01948954537510872, -0.01679990626871586, 0.010199942626059055, 0.022730907425284386, -0.00529307359829545, -0.004420665092766285, 0.05975138768553734, 0.0048827314749360085, 0.008903398178517818, 0.009503395296633244, -0.011482694186270237, -0.009758565574884415, -0.026717090979218483, -0.029461903497576714, -0.030455002561211586, -0.014510263688862324, -0.0017353350995108485, 0.020675746724009514, -0.00015861980500631034, -0.013737853616476059, 0.03467566892504692, 0.009179258719086647, -0.03224809467792511, -0.027075709775090218, -0.02085505612194538, -0.011730968952178955, 0.01246199943125248, 0.0061103105545043945, 0.0058068642392754555, -0.008930984884500504, -0.02575157955288887, -0.012537861242890358, -0.0029361904598772526, -0.009448222815990448, 0.014703365974128246, -0.02085505612194538, -0.0057585882022976875, -0.0036482554860413074, -0.01599990949034691, -0.0010327527998015285, 0.027048124000430107, -0.0008051678887568414, -0.007599957287311554, -0.022855045273900032, 0.011758554726839066, -0.009351671673357487, -0.00036400658427737653, 0.01802748441696167, -0.0029672246892005205, 0.030455002561211586, -0.024537794291973114, 0.009165465831756592, -0.028606737032532692, 0.014717158861458302, -0.005120661109685898, -0.02686881460249424, -0.006424102000892162, 0.005106867756694555, -0.015558533370494843, 0.046399738639593124, -0.028248118236660957, 0.011468901298940182, 0.0053896247409284115, 0.029737764969468117, 0.019986094906926155, 0.02337917871773243, 0.030289486050605774, 0.010206839069724083, -0.00029180871206335723, -0.006037897430360317, 0.015503361821174622, -0.024248139932751656, -0.007234442047774792, -0.007144787348806858, -0.01759990118443966, -0.0136481998488307, -9.933942237694282e-06, -0.015489568002521992, -0.04228941723704338, 0.006872375495731831, 0.01422061026096344, 0.01693783700466156, -0.014510263688862324, -0.007241338957101107, 0.027061916887760162, -0.009868910536170006, 0.005982724949717522, -0.02079988270998001, 0.008675813674926758, 0.007689611986279488, -0.012227517552673817, -0.03078603371977806, -0.02724122628569603, -0.012999926693737507, -0.018179208040237427, -0.013958542607724667, 0.020441263914108276, -0.010420631617307663, -0.011337867937982082, -0.010130977258086205, 0.02775156870484352, 0.03602738305926323, 0.012193035334348679, -0.0035758421290665865, 0.005968932062387466, 0.01340682152658701, -0.007820646278560162, -0.024027451872825623, -0.019779199734330177, 0.0004075408214703202, 0.016868870705366135, 0.014579229056835175, 0.02921362966299057, 0.0011465452844277024, -0.006089621223509312, 0.03525497391819954, 0.03437222167849541, 0.015420603565871716, 0.021006779745221138, 0.0031223963014781475, -0.03158602863550186, -0.0016784388571977615, -0.015489568002521992, 0.01948954537510872, -0.015282672829926014, -0.004151700995862484, 0.01648266613483429, -0.03853771463036537, -0.015075777657330036, -0.006755134556442499, -0.03006879612803459, 0.004741352517157793, 0.04391699656844139, 0.0020810228306800127, 0.033351536840200424, 0.007165477145463228, 0.02026195451617241, -0.01613784022629261, 0.010455113835632801, -0.01808265782892704, 0.011144764721393585, 0.006837892811745405, 0.012972340919077396, 0.010041323490440845, -0.03759979084134102, 0.00392756424844265, 0.017117144539952278, -0.03288257494568825, 0.034317050129175186, 0.005672382190823555, -0.0051447986625134945, 0.0014318885514512658, -0.03230326622724533, -0.01576542854309082, -0.025655029341578484, 0.0207722969353199, -0.004779283422976732, 0.012034415267407894, 0.0010172356851398945, -0.018979204818606377, -0.01831713877618313, 0.012399930506944656, -0.0006025828188285232, 0.02446882799267769, -0.031089480966329575, -0.020937813445925713, 0.0003312481567263603, 0.002701709046959877, 0.014303368516266346, -0.0207722969353199, 0.02626192197203636, -0.023227456957101822, -0.018703343346714973, 0.005489624571055174, -0.005444797221571207, 0.00487238634377718, 0.0163723211735487, 0.0056585888378322124, -0.026220543310046196, -0.008351677097380161, -0.019820578396320343, -0.029544662684202194, -0.02346193790435791, 0.007275821175426245, 0.020441263914108276, 0.019613683223724365, 0.02188953198492527, 0.012172346003353596, -0.007096511777490377, 0.008951674215495586, 0.005979276727885008, 0.0059068636037409306, -0.019696440547704697, 0.016703354194760323, -0.027475707232952118, 0.009317189455032349, -0.015489568002521992, 0.02271711453795433, 0.003924116026610136, -0.011979242786765099, 0.0049827308394014835, 0.037379100918769836, 0.005675830412656069, 0.023792970925569534, -0.006341343745589256, -0.04628939554095268, -0.010303390212357044, -0.012593032792210579, 0.011537866666913033, 0.004541353788226843, -0.028772251680493355, -0.02157229371368885, 0.0370204821228981, -0.012855100445449352, 0.004820662550628185, 0.012351654469966888, -0.007199959829449654, -0.007186166476458311, -0.013144753873348236, 0.010855111293494701, 0.026827435940504074, -0.0049172136932611465, 0.006075827870517969, -0.03748944401741028, 0.012882686220109463, 0.008413746021687984, -0.012255103327333927, 0.014289574697613716, 0.015503361821174622, 0.007620647083967924, -0.007082718890160322, -0.015130950137972832, -0.020303335040807724, -0.011586141772568226, 0.003958598710596561, -0.019130926579236984, -0.006827548146247864, -0.01402061153203249, -0.007337890099734068, -0.02028954215347767, 0.010048219934105873, 0.011427522636950016, -0.00036206693039275706, -0.003318946808576584, -0.017048180103302002, -0.017517143860459328, 0.0008913743076846004, 0.0067482381127774715, 0.03230326622724533, 0.020192990079522133, 0.021820567548274994, 0.04466181993484497, 0.009020638652145863, 0.006758582778275013, -0.04921351745724678, -0.04308941215276718, -0.01340682152658701, 0.026592954993247986, 0.036579106003046036, -0.002984466031193733, -0.024882618337869644, -0.00401377072557807, 0.0015801636036485434, -0.008041334338486195, -0.02793087810277939, 0.03980667516589165, 0.023599868640303612, 0.015889566391706467, -0.015544740483164787, 0.006037897430360317, -0.023930899798870087, 0.02097919210791588, 0.0013586130226030946, 0.0018706792034208775, -0.006775823887437582, -0.019613683223724365, -0.01831713877618313, 0.015586119145154953, -0.006562032271176577, 0.018730929121375084, 0.01685507781803608, -0.00022133496531751007, -0.0022948146797716618, -0.0005189626244828105, -0.000259050284512341, 0.011848209425807, 0.002399986609816551, 0.02609640546143055, -0.021696429699659348, -0.004120666533708572, 0.011841312982141972, 5.608804713119753e-05, -0.016924042254686356, -0.014034404419362545, 0.004820662550628185, 0.044303201138973236, -0.02609640546143055, -0.011965449899435043, -0.025048134848475456, 0.013213719241321087, 0.02039988525211811, 0.004617215599864721, -0.006879271939396858, 0.01645508036017418, -0.04391699656844139, -0.0012724066618829966, 0.01848265528678894, 0.0035792903508991003, 0.014703365974128246, 0.0030551552772521973, 0.005903415381908417, -0.014330954290926456, -0.02317228354513645, 0.011979242786765099, 0.013006824068725109, -0.031944647431373596, -0.02535158209502697, -0.027020538225769997, -0.00254653743468225, 0.011958553455770016, 0.024358484894037247, -0.0283584613353014, 0.011179247871041298, 0.047999732196331024, -0.02569640800356865, 0.01908954791724682, -0.002132746623829007, -0.0012206828687340021, -0.016924042254686356, -0.009537877514958382, -0.0001598051458131522, -0.03544807806611061, 0.025199858471751213, 0.001143959118053317, 0.009599946439266205, -0.01645508036017418, 0.010310286656022072, 0.03073086217045784, 0.0037517030723392963, 0.025392960757017136, -0.011310281231999397, 0.018579205498099327, 0.027820533141493797, 0.01533784531056881, -0.0017603349406272173, 0.0034948079846799374, 0.0005767209222540259, -0.020179197192192078, 0.006899961270391941, 0.00904132891446352, 0.024110209196805954, -5.522598439711146e-05, -0.0006288758013397455, -0.0006262895767576993, -0.023186076432466507, -0.019613683223724365, 0.01648266613483429, -0.01127579901367426, -0.005396521650254726, 0.01154476311057806, -0.04609629511833191, -0.0023430902510881424, -0.03368256986141205, 0.005337900947779417, 0.006751686334609985, -0.008737881667912006, 0.0027223986107856035, 0.02812398038804531, -0.00899994932115078, 0.030399829149246216, 0.008737881667912006, -0.008772364817559719, 0.01191717479377985, -0.013151650317013264, -0.01722748950123787, -0.014165437780320644, -0.02524123713374138, 0.015834394842386246, 0.019779199734330177, -0.02575157955288887, -0.020758504047989845, -0.007896507158875465, -0.032799817621707916, -0.0077930595725774765, -0.009862014092504978, 0.04670318588614464, 0.011227522976696491, 0.0003112051635980606, -0.008737881667912006, 0.06846857815980911, -0.012655101716518402, 0.001806886401027441, -0.005565485917031765, 0.0064378948882222176, -0.007717198226600885, 0.0041379076428711414, 0.007737887557595968, 0.008337884210050106, 0.007255131844431162, -0.016496459022164345, 0.004055149853229523, 0.024937791749835014, -0.008289609104394913, 0.018951617181301117, -0.003112051635980606, -0.010986145585775375, -0.005468934774398804, -0.01502060517668724, 0.0246343445032835, 0.01048959605395794, -0.032772231847047806, -0.03359981253743172, -0.00033814465859904885, 0.021448155865073204, 0.001145683228969574, -0.015530947595834732, 0.005534451920539141, 0.01529646571725607, -0.006572376936674118, 0.015972323715686798, 0.0039344606921076775, -0.0066654798574745655, -0.008365469984710217, 0.004682732280343771, 0.023475730791687965, -0.0034482565242797136, 0.020634368062019348, 0.02406883053481579, 0.001402578316628933, 0.007282717619091272, -0.015186121687293053, 0.01719990372657776, -0.05150315910577774, -0.00944132637232542, -0.007537888828665018, -7.548448775196448e-05, 0.007241338957101107, -0.0250343419611454, 0.028137773275375366, 0.002206884091719985, 0.006675824522972107, 0.00033404986606910825, -0.0002030160976573825, -0.044192854315042496, 0.021420570090413094, 0.003879288677126169, -0.027544673532247543, 0.00805512722581625, 0.008413746021687984, -0.019351616501808167, 0.019613683223724365, -0.047392837703228, -0.00263274391181767, -0.04513078182935715, 0.023586073890328407, -0.014661986380815506, 0.012475792318582535, -0.005789622664451599, 0.011627521365880966, 0.0075309923849999905, -0.02191711775958538, -0.02042747102677822, 0.25820544362068176, -0.02257918380200863, 0.00487238634377718, 0.0166481826454401, 0.014855089597404003, 0.012924065813422203, -0.0025517097674310207, 0.006506860256195068, -0.0017551626078784466, 0.007662026211619377, -0.0015353362541645765, -0.028937768191099167, 0.0006305999122560024, -0.011606831103563309, -0.014799917116761208, 0.01543439645320177, -0.011186144314706326, -0.023130904883146286, 0.017696453258395195, -0.013144753873348236, 0.043365273624658585, 0.0016129219438880682, -0.00937236100435257, -0.003484463319182396, -0.01038614846765995, -0.004924110136926174, -0.014799917116761208, 0.032772231847047806, 0.009234431199729443, 0.006082724314182997, -0.018620586022734642, 0.015461982227861881, -0.00230343546718359, 0.0050620404072105885, 0.0024965377524495125, -0.007524095941334963, 0.043337687849998474, 0.002731019165366888, 0.04377906396985054, 0.011413728818297386, -0.011117178946733475, -0.018786102533340454, -0.012682687491178513, 0.0055379001423716545, -0.010413735173642635, 0.027503294870257378, -0.011841312982141972, -0.005910311825573444, -0.00487238634377718, -0.004393078852444887, -0.04971006512641907, -0.03376532718539238, 0.02162746526300907, 0.019296443089842796, -0.017668865621089935, -0.012703376822173595, 0.018634378910064697, -0.01576542854309082, 0.0125171709805727, -0.013682682067155838, -0.023475730791687965, 0.015282672829926014, -0.02188953198492527, 0.021186087280511856, -0.022730907425284386, -0.01619301363825798, -0.026427438482642174, 0.00039956672117114067, 0.006834444589912891, -0.007675819098949432, -0.01464819349348545, -0.011220626533031464, -0.00782754272222519, -0.014937846921384335, -0.03310326114296913, -0.0276963971555233, 0.03773771971464157, 0.013482683338224888, 0.028179151937365532, 0.023641247302293777, -0.005655140615999699, -0.00037715304642915726, -0.007655129302293062, -0.009889599867165089, -0.022165393456816673, -0.026330886408686638, 0.009406844154000282, -0.022965388372540474, -0.006575825158506632, 0.004410319961607456, 0.001791369286365807, -0.012186138890683651, 0.006286171730607748, 0.006206861697137356, 0.005196522455662489, 0.019365409389138222, 0.015641292557120323, 0.042013559490442276, -0.03693772479891777, -0.009310293011367321, -0.017641279846429825, 0.011013731360435486, 0.005458590108901262, 0.023186076432466507, 0.016675768420100212, -0.007330993190407753, -0.02604123391211033, 0.021682636812329292, 0.009482705034315586, -0.028717080131173134, 0.014510263688862324, -0.05238591507077217, -0.011937864124774933, -0.022192979231476784, 0.009517188183963299, 0.002644812688231468, 0.0010344769107177854, -0.015475775115191936, -0.03795840963721275, -0.0021844704169780016, 0.003641358809545636, -0.035034287720918655, -0.0012146483641117811, 0.0157102569937706, -0.02617916278541088, -0.016496459022164345, -0.023213662207126617, -0.0042206658981740475, 0.011496487073600292, -0.03006879612803459, 0.01073097437620163, -0.0508686788380146, 0.02426193282008171, -0.0070585813373327255, -0.004810317885130644, 0.0031482581980526447, -0.024965377524495125, -0.019958509132266045, -0.0033379122614860535, -0.018524033948779106, 0.008151678368449211, 0.012944755144417286, 0.010606837458908558, 0.011317177675664425, -0.0009275809861719608, 0.0020551609341055155, 6.438541458919644e-05, 0.02111712284386158, 0.003432739293202758, -0.0017594728851690888, -0.042703207582235336, -0.015061984769999981, 0.015751635655760765, -0.0038585991133004427, 0.004651698283851147, -0.03078603371977806, -0.017324041575193405, -0.041158389300107956, 0.0324963703751564, 0.01608266867697239, -0.01455164235085249, 0.013544751331210136, -0.005593072157353163, -0.019751613959670067, 0.009462015703320503, -0.0009784428402781487, -0.17544730007648468, 0.019530925899744034, 0.051861777901649475, -0.02852397784590721, 0.035696350038051605, 0.0034672219771891832, 0.00307239661924541, -0.008206850849092007, -0.009599946439266205, -0.009386153891682625, 0.026758471503853798, 0.0015189569676294923, -0.009448222815990448, -0.008848226629197598, -0.001757748774252832, -0.009448222815990448, -0.007675819098949432, 0.012041311711072922, 0.03691013902425766, 0.02274470031261444, 0.0439445823431015, -0.03172396123409271, -0.01757231540977955, 0.028579149395227432, 0.010289597325026989, -0.0032379128970205784, -0.0034482565242797136, -0.00708961533382535, 0.011937864124774933, -0.025144686922430992, -0.007875817827880383, 0.005844794679433107, -0.006896513048559427, -0.024275725707411766, -0.004265493247658014, 0.011068903841078281, -0.007744784001260996, -0.004868938121944666, -0.03144809976220131, 0.007268924731761217, 0.0032189474441111088, 0.038041166961193085, 0.0022706768941134214, -0.015586119145154953, 1.0135988304682542e-05, -0.0002454727655276656, -0.003931012470275164, -0.029627420008182526, -0.001181027851998806, -0.003186189103871584, 0.008462021127343178, -0.0026068820152431726, 0.0040585980750620365, 0.0025344686582684517, 0.04518595337867737, 0.01816541515290737, -0.0017672315007075667, 0.015103363431990147, 0.007730991113930941, -0.004717214964330196, 0.008151678368449211, -0.04816524684429169, -0.005444797221571207, 0.013993024826049805, -0.022565390914678574, -0.002944811014458537, -0.002248263219371438, 0.05682726949453354, -0.03001362457871437, 0.0014836123446002603, 0.01303440984338522, 0.010675801895558834, 0.027048124000430107, -0.012565447017550468, 0.03373774141073227, 0.018068864941596985, 0.01762748695909977, 0.010606837458908558, 0.01011718437075615, -0.03073086217045784, -0.022124014794826508, 0.05307556316256523, -0.019779199734330177, -0.0029344663489609957, 0.03768254816532135, -0.009999943897128105, -0.007468923460692167, -0.02071712538599968, -0.013489579781889915, -0.010848214849829674, 0.031917061656713486, -0.005562037695199251, -0.016841284930706024, -0.013882680796086788, 0.008248229511082172, 0.018386103212833405, 0.001330164959654212, -0.032772231847047806, -0.010351666249334812, 0.00751030258834362, -0.013765440322458744, -0.008772364817559719, -0.017461970448493958, 0.016234392300248146, 0.03373774141073227, 0.015034398064017296, 0.012062001042068005, 0.016013704240322113, 0.014165437780320644, -0.00693789217621088, -0.013413717970252037, -0.017861969769001007, 0.03326877951622009, 0.015986116603016853, -0.0030655001755803823, 0.023903314024209976, -0.011110282503068447, -0.012530963867902756, 0.02532399632036686, 0.03837219998240471, -0.020620573312044144, -0.004196528345346451, -0.006534446030855179, 0.010862007737159729, 0.008110299706459045, 0.0007905128295533359, -0.043503206223249435, -0.022799871861934662, -0.00631720619276166, -0.006875823717564344, -0.0037482548505067825, 0.01562749780714512, -0.023613661527633667, 0.014524056576192379, -0.02303435280919075, 0.048882484436035156, -0.014386125840246677, -0.019558511674404144, -0.012551654130220413, 0.009917185641825199, 0.0028689494356513023, -0.009013742208480835, -0.02122746780514717, -0.006434446666389704, 0.008951674215495586, 0.029599834233522415, 0.004913765471428633, -0.012786135077476501, -0.007655129302293062, 0.0060585867613554, -0.011062007397413254, 0.02031712792813778, -0.010717181488871574, 0.0012672343291342258, 0.010786146856844425, 0.010986145585775375, 0.04306182637810707, -0.0013560268562287092, -0.0036310141440480947, -0.017461970448493958, 0.03688255324959755, -0.011510279960930347, -0.015089570544660091, -0.03459290787577629, 0.01733783446252346, -0.006782720796763897, 0.0022844700142741203, 0.007724094670265913, 0.012020622380077839, 0.0030465347226709127, -0.021613672375679016, -0.007944783195853233, -0.003944805357605219, 0.00492066191509366, 0.004393078852444887, 0.0027499846182763577, -0.02775156870484352, 0.005110315978527069, -0.022303324192762375, -0.01696542277932167, 0.022358495742082596, 0.021613672375679016, -0.008006852120161057, -0.013951646164059639, -0.0292963869869709, 0.01693783700466156, -0.006548239383846521, 0.005675830412656069, -0.021241260692477226, 0.022386081516742706, 0.021420570090413094, 0.015227501280605793, -0.034868769347667694, -0.010344769805669785, 0.016606803983449936, -0.0036068763583898544, -0.005420659203082323, 0.04662042856216431, 0.0012672343291342258, 0.03922736644744873, -0.04328251630067825, 0.0040585980750620365, -0.014468884095549583, -0.015351638197898865, 0.01848265528678894, -0.009517188183963299, -0.012910272926092148, -0.010393044911324978, -0.0062965163961052895, -0.020868849009275436, 0.02157229371368885, 0.006044793874025345, -0.007337890099734068, -0.004155149217694998, 0.02446882799267769, -0.03611014410853386, 0.026937780901789665, 0.004772386979311705, 0.009130983613431454, -0.02663433365523815, 0.024744689464569092, -0.0049413517117500305, -0.0014551642816513777, 0.018234381452202797, -0.0051034195348620415, 0.01765507273375988, -0.039585985243320465, -0.035668764263391495, -0.06957202404737473, 0.025048134848475456, -0.017048180103302002, 0.013599923811852932, 0.011530970223248005, 0.0032379128970205784, 0.03671703487634659, 0.0013017168967053294, 0.00015926634659990668, -0.014634400606155396, -0.001279303221963346, 0.004037908278405666, -0.008413746021687984, -0.0036034281365573406, -0.005475831218063831, -0.02157229371368885, 0.014413712546229362, -0.0006280137458816171, 0.02609640546143055, 0.02297918125987053, 0.00866891723126173, -0.002917225006967783, 0.03599979728460312, -0.009434429928660393, -0.010834421962499619, 0.030951550230383873, -0.01773783192038536, 0.018606793135404587, -0.01097235269844532, -0.024620551615953445, -0.006089621223509312, -0.0013784405309706926, -0.0004025839443784207, 0.04044115170836449, -0.00023124870494939387, 0.017779210582375526, 0.0003536618023645133, -0.006417205557227135, 0.016206806525588036, 0.01853782683610916, 0.0054310038685798645, -0.03826185315847397, 0.012744756415486336, -0.007841335609555244, -0.008158574812114239, 0.027117090299725533, -0.015834394842386246, 0.016813699156045914, -0.013986128382384777, 0.004168942105025053, 0.0011051662731915712, -0.0038585991133004427, -0.022482631728053093, -0.028165359050035477, 0.009489602409303188, -0.044082511216402054, 0.007030995097011328, -0.010220631957054138, 0.0025223996490240097, -0.00019213254563510418, 0.028910182416439056, 0.010137874633073807, 0.03828943893313408, 0.0020568850450217724, -0.020151611417531967, -0.022868838161230087, -0.04071701318025589, -0.007696508429944515, 0.004217217676341534, 0.008282712660729885, -0.01776541769504547, -0.024455035105347633, -0.004844800569117069, 0.008275815285742283, -0.017586108297109604, -0.010296493768692017, -0.026689505204558372, -0.003724117064848542, -0.03762737661600113, 0.04099287465214729, 0.03313085064291954, -0.0018224036321043968, -0.018179208040237427, 0.022758493199944496, 0.03746185824275017, -0.02457917295396328, -0.01739300601184368, 0.017503350973129272, -0.022220565006136894, -0.003768944414332509, -0.0052034188993275166, 0.021986084058880806, 0.034979116171598434, 0.01959989033639431, 0.01656542532145977, 0.04173769801855087, -0.018620586022734642, -0.017641279846429825, 0.02801363542675972, -0.0010206839069724083, -0.0016155082266777754, 0.001293096225708723, 0.014744744636118412, -0.041792869567871094, -0.015489568002521992, 0.013903370127081871, 0.005575831048190594, -0.031917061656713486, -0.014606814831495285, -0.0024292967282235622, -0.00792409386485815, 0.005893070250749588, -0.013227512128651142, 0.012296482920646667, -0.02663433365523815, 0.006830996368080378, -0.0005237039877101779, -0.015158535912632942, -0.027130883187055588, 0.0330205038189888, 0.008937881328165531, 0.008655124343931675, 0.02612399123609066, -0.005879277363419533, 0.005493072792887688, 0.013593027368187904, 0.02071712538599968, -0.019765406847000122, 0.014234403148293495, -0.018675757572054863, 0.006589618045836687, 0.031144652515649796, -0.027944670990109444, 0.0024499862920492887, -0.018386103212833405, -0.0163723211735487, 0.010786146856844425, 0.001110338605940342, -0.02154470607638359, 0.05942035838961601, 0.013006824068725109, -0.019958509132266045, 0.003617221023887396, -0.023820556700229645, 0.005324108060449362, 0.011310281231999397, -0.004924110136926174, 0.00406204629689455, -0.04399975389242172, 0.003101706737652421, 0.011337867937982082, -0.009303396567702293, -0.04171011224389076, 0.021696429699659348, -0.005744795314967632, -0.03131017088890076, 0.0199723020195961, -0.0024275726173073053, 0.0011094765504822135, 0.04452388733625412, -0.016013704240322113, 0.012896479107439518, 0.029544662684202194, -0.00026853298186324537, -0.000490514503326267, 0.002648260910063982, -0.012213724665343761, -0.02074471116065979, 0.01422061026096344, 0.008634434081614017, -0.0014465436106547713, 0.0003101275651715696, -0.038068752735853195, -0.0012465447653084993, 0.03139292821288109, -8.992406219476834e-05, 0.025930888950824738, 0.03611014410853386, 0.037185996770858765, -0.004393078852444887, 0.0250343419611454, -0.02180677466094494, -0.02340676449239254, -0.03304808959364891, -0.0009870633948594332, 0.0014120610430836678, -0.0006193930748850107, -0.031917061656713486], "9df26552-c77b-48f9-8468-7ee0482ee31c": [-0.01690518483519554, -0.001410202938131988, 0.018823405727744102, 0.007007026579231024, -0.02003781870007515, 0.012537436559796333, -0.024453867226839066, -0.0155665697529912, -0.008694094605743885, -0.03276155889034271, -0.023777659982442856, 0.011709427461028099, -0.008321491070091724, -0.0005804688553325832, -0.00919090025126934, 0.0017232937971130013, 0.003770891111344099, -0.01523536629974842, 0.03171274811029434, -0.00974290631711483, 0.0011790504213422537, 0.011419625021517277, -0.009625605307519436, -0.04465728625655174, -0.01738818921148777, 0.01596677489578724, -0.003743290901184082, -0.005064655095338821, 0.011661127209663391, 0.014545358717441559, 0.0218870397657156, -0.006099666468799114, -0.009763606823980808, -0.016422178596258163, 0.005899564363062382, -0.0004250015190336853, -0.0062342179007828236, 0.020520824939012527, 0.021100429818034172, 0.028704313561320305, 0.007176078390330076, -0.00411589490249753, -0.0014541909331455827, 0.0016646431758999825, -0.0010608865413814783, 0.012689238414168358, -0.0030049828346818686, -0.009880907833576202, -0.018533602356910706, 0.019444411620497704, 0.002197674009948969, 0.030111929401755333, -0.030691536143422127, -0.0057684630155563354, 0.012965241447091103, 0.0035638888366520405, 0.006996676325798035, 0.0026668792124837637, -0.011881929822266102, -0.0022580495569854975, 0.025544079020619392, -0.0009565229411236942, -0.023970860987901688, 0.016974184662103653, 0.014145154505968094, 0.012654738500714302, -0.00282903085462749, 0.009943008422851562, 0.006289418786764145, 0.018216198310256004, 0.00823178980499506, 0.02972552552819252, -0.02010682038962841, -0.004329797346144915, 0.03935803100466728, -0.012461536563932896, -0.0054441592656075954, 0.001150587573647499, -0.0034069123212248087, 0.01836800016462803, -0.004526449367403984, -0.019085608422756195, 0.01054331474006176, 0.001453328412026167, 0.015994375571608543, 0.005954765249043703, -0.012875540181994438, 0.025392277166247368, -0.01273753959685564, -0.00131791434250772, 0.008397391997277737, 0.02163863554596901, 0.017429590225219727, 0.005106055643409491, -0.020576024428009987, 0.006837974768131971, -0.01824379898607731, 0.022176843136548996, 0.0009004598250612617, -0.00974290631711483, 0.014848962426185608, 0.016449779272079468, -0.017222588881850243, -0.010812418535351753, -0.04705851525068283, 0.007817785255610943, -0.0022269992623478174, -0.030001528561115265, -0.0037570910062640905, -0.006072066258639097, -0.01301354169845581, 0.03317556157708168, -0.013303345069289207, -0.03157474473118782, -0.011364424601197243, -0.00832839123904705, 0.0481073260307312, -0.01122642308473587, -0.021238431334495544, -0.013137743808329105, 0.01800919696688652, 0.01541476882994175, 0.02572348155081272, -0.010405313223600388, 0.03132634237408638, 0.0012885890901088715, -0.006558521650731564, -0.02046562358736992, 0.007465881761163473, -0.043939679861068726, 0.040048036724328995, -0.008038587868213654, 0.019030407071113586, 0.02417786419391632, -0.009577305056154728, 0.004999104421585798, -0.0008685470093041658, 0.012447736226022243, -0.005037054885178804, -0.008197289891541004, 0.03281676024198532, 0.017553791403770447, -0.006451570428907871, -0.010129310190677643, 0.010122410953044891, -0.00015773141058161855, 0.011240222491323948, 0.016008174046874046, -0.006317018996924162, -0.0050405049696564674, -0.011088421568274498, -0.023708658292889595, -0.0010246612364426255, 0.016132377088069916, 0.006813824642449617, 0.010301812551915646, 0.0076314834877848625, 0.007928187027573586, -0.009184000082314014, -0.03165754675865173, -0.017746994271874428, 0.009121899493038654, 0.004654100630432367, -0.01584257371723652, -0.025268075987696648, 0.018644003197550774, 0.021818038076162338, 0.00672067329287529, -0.015373367816209793, 0.0013817400904372334, -0.0024943773169070482, 0.005623561330139637, -0.01378635037690401, -0.0065757716074585915, -0.01863020285964012, -0.008687194436788559, 0.006662022788077593, -0.0030826085712760687, 0.017677992582321167, 0.006285968702286482, -0.014793762005865574, -0.00749348197132349, 0.009121899493038654, 0.026730891317129135, 0.016698181629180908, -0.03262355551123619, 0.0302223302423954, 0.01489036250859499, -0.0022649497259408236, -0.01954101398587227, 0.02103142999112606, 0.025916682556271553, 0.00859749410301447, 0.003531113499775529, -0.5714366436004639, -0.03957883268594742, -0.0022804748732596636, 0.00786608550697565, 0.010777917690575123, -0.004529899451881647, 0.007548682391643524, 0.024122662842273712, -0.021059030666947365, 0.02139023318886757, -0.016077175736427307, 0.0185060016810894, 0.007272679358720779, -0.005268207751214504, 0.0101707112044096, -0.029891125857830048, 0.01306874305009842, -0.016118576750159264, 0.02387426048517227, 0.01137822400778532, -0.03438997641205788, 0.035549189895391464, -0.017898796126246452, 0.0007292517111636698, 0.03532838448882103, 0.01818859949707985, -0.001952721388079226, 0.004629950504750013, 0.011371323838829994, 0.02441246621310711, 0.006479170639067888, 0.0006990638794377446, -0.026565290987491608, 0.024398665875196457, 0.06585431843996048, -0.02837310917675495, 0.010860718786716461, 0.01106772106140852, -0.001650843070819974, 0.046396106481552124, -0.007872985675930977, 0.002126948209479451, 0.02085202746093273, -0.0206588264554739, 0.010336312465369701, -0.015097364783287048, 0.028014305979013443, 0.007134677842259407, -0.012282134033739567, -0.021128030493855476, -0.015207766555249691, -0.010984919965267181, -0.014255555346608162, 0.009073599241673946, -0.006693073082715273, 0.01991361752152443, 0.021321233361959457, -0.05045334994792938, 0.02441246621310711, -0.023198053240776062, -0.008438792079687119, -0.0014973164070397615, -0.009970609098672867, -0.0031136590987443924, -0.015828773379325867, 0.0057477629743516445, -0.015939174219965935, 0.00955660454928875, -0.009280601516366005, -0.013296444900333881, -0.01257883757352829, -0.004895603284239769, -0.034141574054956436, 0.000140481221023947, 0.027103496715426445, 0.036101195961236954, 0.03157474473118782, -0.031160740181803703, 0.0002898031671065837, 0.018782004714012146, 0.009860207326710224, -0.004747251980006695, -0.0194306131452322, -0.00012614199658855796, 0.008480193093419075, -0.0015499293804168701, -0.021238431334495544, 0.013358545489609241, 0.005202656611800194, 0.009059798903763294, 0.000782727322075516, 0.013579348102211952, 0.01980321668088436, -0.03552158921957016, 0.010529515333473682, 0.018340399488806725, -0.03403117135167122, 0.006644772365689278, 0.03703960403800011, -0.04984614625573158, -0.049984145909547806, 0.02220444194972515, 0.03201634809374809, -0.03612879291176796, 0.012654738500714302, 0.0018319700611755252, -0.01227523386478424, 0.0011497250525280833, 0.03317556157708168, -0.03657039999961853, -0.0120268315076828, -0.0400756374001503, -0.023418854922056198, -0.006458470597863197, 0.007265779189765453, -0.03218195214867592, 0.013924351893365383, 0.004005493596196175, 0.009943008422851562, 0.003594939364120364, 0.013006642460823059, 0.018409401178359985, 0.012661638669669628, -0.005344108212739229, -0.005009454675018787, 0.01609097607433796, 0.03157474473118782, -0.011909530498087406, -0.017802193760871887, 0.024633269757032394, -0.03447277471423149, -0.009142599999904633, 0.01733298972249031, -0.030111929401755333, -0.002585803158581257, -0.028842315077781677, 0.003413812257349491, -0.006586121860891581, 0.018823405727744102, -0.020175820216536522, -0.03767441213130951, -0.00839049182832241, 0.02546127885580063, 0.0019061458297073841, -0.01366214919835329, 0.006030665710568428, -0.01916840858757496, 0.005230257287621498, -0.00627216836437583, 0.011626627296209335, -0.002866981318220496, 0.013468947261571884, -0.0225080456584692, 0.013924351893365383, -0.004433298483490944, -0.0024857521057128906, 0.009591104462742805, -0.00048300527851097286, 0.006817274261265993, -0.009770506992936134, -0.015511369332671165, -0.001700868597254157, -0.01023281179368496, -0.015745971351861954, -0.01501456368714571, -0.01998261734843254, 0.008224889636039734, 0.012061331421136856, -0.012095832265913486, -0.03960643336176872, -0.028952715918421745, 0.00888039730489254, 0.030498333275318146, -0.010219011455774307, 0.02206644043326378, 0.005119855981320143, -0.022480444982647896, -0.002456426853314042, 0.0014852412277832627, 0.006506770849227905, 0.004460898693650961, -0.0151111651211977, -0.011419625021517277, 0.0008241277537308633, 0.013620749115943909, 0.001952721388079226, 0.034803979098796844, 0.018519802019000053, -0.013399946503341198, 0.0025357776321470737, -0.0016146176494657993, 0.02208024077117443, -0.008576793596148491, 0.016049575060606003, 0.013006642460823059, 0.027655502781271935, 0.0019095959141850471, 0.017484791576862335, 0.003770891111344099, 0.013544848188757896, 0.008832096122205257, 0.036901604384183884, 0.002092447830364108, -0.03720520809292793, 0.009218500927090645, -0.022273443639278412, 0.022370044142007828, -0.004516099113970995, 0.012730639427900314, -0.01646357960999012, 0.01088141929358244, -0.015511369332671165, -0.000670169829390943, -0.005554560571908951, 0.019761815667152405, -0.0029135567601770163, -0.026841294020414352, -0.008590593934059143, 0.024274464696645737, 0.025074873119592667, 0.017346790060400963, 0.0065274713560938835, 0.030056728050112724, -0.01431075669825077, -0.008162789046764374, -0.021417833864688873, 0.007762584835290909, -0.004567849915474653, 0.002123498125001788, -0.02732429839670658, -0.006893175188452005, 0.005934064742177725, 0.0046472009271383286, -0.0012566762743517756, 0.008431891910731792, -0.018713004887104034, 0.05785023048520088, 0.014669559895992279, 0.0060927667655050755, 0.015649370849132538, -0.026013284921646118, 0.021362632513046265, -0.02811090648174286, -0.008004087023437023, 0.026661891490221024, -0.005037054885178804, 0.03552158921957016, 0.010695116594433784, -3.137378007522784e-05, 0.023515457287430763, -0.008590593934059143, -0.014503958635032177, -0.01880960538983345, 0.021417833864688873, -0.009446202777326107, 0.002359825884923339, -0.011481725610792637, 0.029366720467805862, 0.010708916932344437, 0.019955018535256386, 0.015055964700877666, 0.02214924246072769, -0.018906205892562866, -0.00749348197132349, 0.033644769340753555, -0.03229235112667084, -0.014200354926288128, -0.04490569233894348, 0.0007887648534961045, -0.030001528561115265, -0.038392018526792526, -0.02508867345750332, 0.0033534367103129625, -0.0057753631845116615, 0.005978915374726057, -0.00444019865244627, 0.012385635636746883, 0.01720878854393959, 0.03750880807638168, -0.04082084447145462, -0.02423306554555893, -0.018091997131705284, 0.033948369324207306, 0.012123432010412216, -0.0014162404695525765, -0.00035362885682843626, -0.001887170597910881, -0.007362380623817444, -0.027517501264810562, 0.0249644722789526, 0.007990287616848946, 0.010984919965267181, -0.022549446672201157, 0.028455911204218864, -0.025557879358530045, -0.004033094272017479, -0.004764501936733723, 0.000937547767534852, -0.0076797837391495705, -0.007514182012528181, 0.0053924089297652245, 0.004705851431936026, -0.003294785972684622, -0.02392946183681488, 0.04093124717473984, 0.0027427799068391323, 0.012006131000816822, -0.012834140099585056, -0.019706616178154945, 0.004747251980006695, 0.0033534367103129625, -0.021500634029507637, -0.020493224263191223, -0.016546381637454033, 0.0014481532853096724, 0.008493992500007153, -0.008797596208751202, -0.02423306554555893, 0.021873239427804947, 0.025392277166247368, -0.034307174384593964, -0.013751850463449955, -0.010177611373364925, -0.013103242963552475, 0.009170199744403362, 0.027227697893977165, -0.004678251221776009, 0.003560438985005021, -0.011143621988594532, -0.009811907075345516, -0.022784048691391945, 0.0077142841182649136, 0.019458211958408356, -0.01651878096163273, 0.023101452738046646, 0.007348580285906792, -0.004585099872201681, 0.002359825884923339, 0.02917351946234703, -0.004550599493086338, 0.0005438121734187007, -0.01838180050253868, 0.03483157977461815, 0.007776385173201561, -0.0029446070548146963, 0.01831280067563057, -0.007162278052419424, 0.021790437400341034, -0.02115563116967678, -0.0011255748104304075, -0.022232042625546455, 0.024798870086669922, -0.0101707112044096, -0.024150263518095016, -0.03237515315413475, -0.006089316681027412, 0.014517758972942829, 0.039192426949739456, -0.016325578093528748, 0.013282645493745804, 0.024867871776223183, 0.024936871603131294, 0.01446255762130022, 0.012944540940225124, 0.01378635037690401, 0.005126756150275469, 0.006375669501721859, -0.002708279527723789, 0.005288907792419195, -0.004816252738237381, 0.0104812141507864, 0.00884589646011591, -0.0069552757777273655, -0.024757470935583115, 0.022466644644737244, -0.008901096880435944, -0.0610518679022789, -0.010667516849935055, 0.008487092331051826, 0.011895730160176754, -0.00034004435292445123, -0.006699973251670599, 0.035355985164642334, -0.014186554588377476, 0.0009159850305877626, -0.011833629570901394, 0.01486276276409626, -0.008645794354379177, -0.014476357959210873, -0.022176843136548996, -0.018450802192091942, -0.027034495025873184, -0.023211853578686714, 0.004999104421585798, 0.029007917270064354, -0.014600559137761593, -0.034445177763700485, -0.016491180285811424, 0.0034379626158624887, 0.004371197894215584, 0.01421415526419878, -0.004443648736923933, -0.004364297725260258, 0.019403012469410896, -0.0057719131000339985, -0.023032451048493385, -0.014517758972942829, -0.009977509267628193, 0.018575003370642662, -0.009301302023231983, 0.009280601516366005, -0.004937003832310438, -0.020548423752188683, 0.005765012931078672, 0.03626679629087448, 4.188561433693394e-05, -0.018423201516270638, 0.016049575060606003, -0.01337924599647522, -0.004895603284239769, 0.0036604900378733873, 0.01610477641224861, -0.00028764689341187477, -0.008038587868213654, 0.017415789887309074, -0.04962534084916115, -0.006944925989955664, 0.004933553747832775, -0.022232042625546455, -0.007776385173201561, 0.003496613120660186, 0.014200354926288128, 0.03342396393418312, 0.016118576750159264, 0.01295144110918045, -0.02003781870007515, 0.008473292924463749, -0.009825707413256168, -0.017250187695026398, 0.01905800774693489, -0.0009789481991901994, 0.0008236964931711555, -0.027917705476284027, 0.018823405727744102, 0.03996523469686508, -0.024867871776223183, 0.04531969502568245, -0.004592000041157007, -0.015649370849132538, -0.006662022788077593, -0.021114230155944824, -0.06381189823150635, 0.004978404380381107, 0.017236387357115746, -0.004705851431936026, -0.0029670323710888624, 0.009404802694916725, -0.028166107833385468, -0.029118318110704422, -0.0013498272746801376, -0.002515077358111739, 0.02348785661160946, -0.034307174384593964, -0.017167387530207634, 0.005934064742177725, -0.0065274713560938835, 0.004395348019897938, -0.013172243721783161, 0.024219265207648277, -0.029559923335909843, -0.027020694687962532, 0.016615381464362144, -0.0019320211140438914, 0.0061997175216674805, 0.018050597980618477, 0.011109121143817902, -0.0369844026863575, -0.0011988880578428507, -0.021252231672406197, -0.034693580120801926, -0.02504727430641651, 0.023336054757237434, 0.02670329250395298, 0.023280853405594826, 0.03047073259949684, 0.026689492166042328, 0.0042883967980742455, -0.0006934575503692031, 0.018851006403565407, -0.006141067016869783, -0.007113977801054716, -0.0013575898483395576, -0.0015404418809339404, -0.0038502421230077744, 0.0034672878682613373, 0.012144132517278194, -0.010115510784089565, -0.010405313223600388, 0.0025357776321470737, 0.04509889334440231, 0.009798106737434864, 0.01690518483519554, -0.026413489133119583, -0.022052640095353127, 0.0033586116041988134, -0.008183489553630352, 0.00986710749566555, 0.016629181802272797, -0.045595698058605194, -0.02071402594447136, 0.006655122619122267, -0.009218500927090645, -0.00023460255761165172, 0.017098387703299522, -0.00794888660311699, -0.03706720471382141, 0.002903206739574671, 0.006668922957032919, 0.004567849915474653, -0.006693073082715273, 0.00013207175652496517, -0.027696901932358742, 0.01640838012099266, 0.019071808084845543, -0.010667516849935055, 0.04416048154234886, 0.021914638578891754, -0.013862251304090023, -0.018216198310256004, 0.007838485762476921, -0.019140809774398804, -0.019292611628770828, -3.544374703778885e-05, -0.034693580120801926, -0.010736517608165741, -0.014600559137761593, -0.019651414826512337, -0.00804548803716898, 0.017236387357115746, 0.02058982476592064, 0.008949398063123226, -0.005309607833623886, -0.02410886250436306, -0.024315865710377693, 0.011357524432241917, 0.004171095788478851, 0.03312036022543907, 0.013061842881143093, 0.03593559190630913, 0.04200765863060951, 0.017484791576862335, -0.002088997745886445, -0.043994881212711334, -0.024509068578481674, -0.004460898693650961, 0.041897255927324295, 0.030249930918216705, -0.029339119791984558, 0.0011618002317845821, -4.6925903006922454e-05, -0.004098644945770502, -0.010046510025858879, -0.009722205810248852, 0.02540607750415802, 0.011819829232990742, -0.00878379587084055, -0.033699966967105865, 0.007396881002932787, -0.027144895866513252, 0.007590082939714193, 0.004567849915474653, -0.010281112045049667, -0.008901096880435944, -0.031188340857625008, -0.023570656776428223, 0.0023615506943315268, 0.011012520641088486, 0.03102273866534233, 0.025751080363988876, -0.0016577431233599782, 0.009487603791058064, -0.002580628264695406, -0.02572348155081272, 0.04242166504263878, 0.011364424601197243, 0.0345279760658741, -0.023515457287430763, -0.011750828474760056, -0.0025168024003505707, -0.01598057523369789, 0.0007590082823298872, -0.00792128685861826, -0.01640838012099266, 0.04142805188894272, -0.02786250412464142, -0.012295934371650219, 0.0028652562759816647, -0.006779324263334274, 0.02423306554555893, 0.009501404128968716, -0.013358545489609241, 0.010895218700170517, -0.035493988543748856, 0.002201124094426632, 0.022245842963457108, 0.000468773883767426, 0.003149884520098567, 0.010101710446178913, -0.0011065995786339045, -0.0076314834877848625, -0.01421415526419878, 0.009653205052018166, 0.009308201260864735, -0.04650650918483734, -0.04002043604850769, -0.019030407071113586, 0.00018921300943475217, 0.03706720471382141, 0.016435978934168816, -0.01758139207959175, 0.010998720303177834, 0.04013083875179291, -0.025944283232092857, 0.006489520892500877, -0.020010218024253845, 0.008004087023437023, -0.011178121902048588, -0.013910551555454731, -0.008176589384675026, -0.01664298214018345, 0.013296444900333881, -0.014158954843878746, 0.009266801178455353, -0.049238938838243484, -0.009653205052018166, 0.029201118275523186, -0.010791718028485775, 0.03726040571928024, -0.0032654607202857733, 0.03198875114321709, 0.018782004714012146, -0.00649297097697854, -0.007383080665022135, 0.002428826643154025, 0.011136721819639206, -0.027048295363783836, 0.0011669752420857549, 0.002035522134974599, 0.019651414826512337, -0.0018267949344590306, -0.01254433672875166, 0.004781752359122038, -0.03447277471423149, -0.0007935086614452302, 0.011178121902048588, 0.0016560180811211467, -0.008542293682694435, -0.0015766671858727932, -0.0345279760658741, -0.005199206992983818, -0.021804237738251686, 0.012164833024144173, 0.0014981788117438555, -0.015152565203607082, 0.002704829443246126, 0.02268744818866253, -0.019651414826512337, 0.013910551555454731, -0.0018267949344590306, -0.03676360100507736, 0.008459492586553097, -0.034003570675849915, -0.0017345064552500844, 0.0010953869204968214, -0.0014360782224684954, 0.04352567717432976, 0.022466644644737244, -0.004188345745205879, -0.023543057963252068, 0.0050681051798164845, -0.03212675079703331, -0.018174799159169197, -0.013020441867411137, 0.051336560398340225, 0.007997187785804272, -0.007845385931432247, -0.0011488625314086676, 0.045181695371866226, -0.030056728050112724, -0.01782979443669319, -0.029449522495269775, -0.015166365541517735, -0.009501404128968716, -0.009687705896794796, 0.01295144110918045, 0.011626627296209335, -0.017553791403770447, -0.019761815667152405, -0.00912879966199398, 0.033755168318748474, -0.001689655939117074, 0.008487092331051826, 0.002073472598567605, -0.03047073259949684, 0.007734984625130892, -0.0025202524848282337, 0.008894196711480618, 0.005282007623463869, -0.029946327209472656, -0.01676718331873417, 0.0030239580664783716, 0.014586759731173515, 0.01609097607433796, -0.02060362510383129, 0.012247634120285511, 0.017622793093323708, -0.023349855095148087, 0.0072795795276761055, -0.01282723993062973, -0.008590593934059143, 0.007148478180170059, 0.01313084363937378, 0.011164321564137936, 0.004609250463545322, 0.0007482269429601729, 0.028649112209677696, 0.0017621067818254232, 0.01892000623047352, -0.021721437573432922, 0.020438022911548615, -0.04280806705355644, -0.004333247430622578, -0.0008336153696291149, -0.0010375988204032183, 0.002601328305900097, -0.00980500690639019, 0.010177611373364925, -0.01103322021663189, -0.02041042223572731, 0.0014895537169650197, -0.026689492166042328, -0.06430870294570923, 0.00565806170925498, 0.018533602356910706, -0.0203414224088192, -0.0004985304549336433, -0.013075643219053745, -0.0050232550129294395, -0.0030550083611160517, -0.04507129266858101, 0.003370686899870634, -0.016987985000014305, 0.0007719459244981408, -0.011916429735720158, 0.02083822712302208, -0.0018043697346001863, 0.01825759932398796, -0.004388447850942612, -0.03436237573623657, -0.023046251386404037, 0.24376586079597473, -0.007093277294188738, -0.020313821732997894, 0.020396621897816658, 0.015290566720068455, 0.026565290987491608, 0.006734473630785942, 0.023294653743505478, 0.012137232348322868, -0.0036363396793603897, 0.026096085086464882, -0.007962686941027641, -0.007452081423252821, -0.011178121902048588, 0.00044591736514121294, 0.015180165879428387, -0.011695628054440022, -0.023694857954978943, 0.01100562047213316, 0.0050681051798164845, 0.015607970766723156, -0.00036052893847227097, -0.020024018362164497, -0.007907486520707607, 0.01702938601374626, -0.007362380623817444, -0.019996417686343193, 0.009894708171486855, 0.017677992582321167, 0.00236500077880919, -0.016794783994555473, 0.015428568236529827, -0.01898900792002678, 0.010246612131595612, -0.017250187695026398, -0.0100258095189929, 0.035107582807540894, 0.0007879023323766887, 0.036791201680898666, -0.00723127881065011, 0.00851469300687313, -0.015704572200775146, -0.020865827798843384, 0.002406401326879859, 0.0024426267482340336, 0.01811959780752659, 0.009832607582211494, -0.002848006086423993, -0.006227318197488785, -0.012171733193099499, -0.0302223302423954, -0.03538358584046364, 0.02158343605697155, 0.016477379947900772, -0.02837310917675495, -0.010860718786716461, 0.021749038249254227, -0.024716069921851158, 0.013337845914065838, 0.01954101398587227, -0.010446714237332344, 0.03127114102244377, -0.023722458630800247, 0.013896752148866653, -0.033699966967105865, -0.0081696892157197, -0.04200765863060951, -0.0037570910062640905, -0.0015413042856380343, -0.008383591659367085, 0.010046510025858879, -0.003619089489802718, -0.027793504297733307, -0.021818038076162338, -0.016325578093528748, -0.035355985164642334, 0.041345249861478806, 0.027834903448820114, 0.0028031556867063046, 0.015621771104633808, -0.008176589384675026, -0.004164195619523525, -0.005654611624777317, 0.0014231405220925808, -0.02165243588387966, -0.051391761749982834, 0.023901861160993576, -0.013655249029397964, -0.01501456368714571, -0.00572016229853034, 0.004426398314535618, -0.0012152757262811065, 0.003425887320190668, 0.01032941322773695, 0.010315612889826298, 0.009943008422851562, 0.020672624930739403, 0.02058982476592064, -0.05255097523331642, -0.0014352157013490796, -0.030001528561115265, 0.013448246754705906, 0.0016215177020058036, 0.043636076152324677, 0.007562482729554176, -0.03198875114321709, -0.014572959393262863, 0.013910551555454731, 0.004333247430622578, -0.01106772106140852, -0.008535393513739109, -0.06502631306648254, -0.01770559325814247, -0.010198310948908329, 0.006572321988642216, -0.00016635650536045432, 0.004384997766464949, -0.017236387357115746, -0.009453102946281433, -0.013855351135134697, 0.016808584332466125, -0.030719134956598282, 0.017967795953154564, 0.021293632686138153, -0.03712240606546402, -0.038392018526792526, -0.03502478078007698, -0.0011143621522933245, 0.01589777320623398, -0.034748777747154236, 0.024398665875196457, -0.027669303119182587, 0.0007973899482749403, 0.01100562047213316, 0.012799640186131, 0.013268845155835152, -0.030443131923675537, -0.010343212634325027, -0.011881929822266102, -0.005168156232684851, 0.008901096880435944, 0.02213544212281704, 0.008611294440925121, 0.014959363266825676, 0.015511369332671165, 0.01464196015149355, 0.004336697515100241, 0.015359567478299141, -0.00798338744789362, 0.008956298232078552, -0.04327727109193802, 0.0014895537169650197, 0.01726398803293705, -0.020520824939012527, 0.014586759731173515, -0.007562482729554176, -0.0200516190379858, -0.02558548003435135, -0.002294274978339672, -0.0053924089297652245, -0.0388612262904644, 0.017112186178565025, -0.0050853556022048, -0.02306005172431469, -0.010384613648056984, -0.01978941634297371, -0.17498591542243958, 0.008093788288533688, 0.03626679629087448, -0.031547144055366516, 0.04970814287662506, 0.005492459982633591, 0.020879628136754036, -0.006110016722232103, -0.010005109012126923, -0.019403012469410896, 0.02361205779016018, 0.00792128685861826, -0.005578711163252592, -0.02114183083176613, -0.008769995532929897, 0.0039399429224431515, -0.001933746156282723, 0.002266674768179655, 0.03312036022543907, 0.022411445155739784, 0.052633773535490036, -0.02263224683701992, -0.0035707890056073666, 0.03077433630824089, 0.0056270114146173, -0.0009289226727560163, -0.005699462257325649, 0.01264093816280365, 0.0076314834877848625, -0.020203420892357826, 0.0034948880784213543, -0.010060309432446957, -0.0212798323482275, -0.00665857270359993, 0.005606311373412609, -0.0072795795276761055, -0.0013265394372865558, -0.013834651559591293, 0.007700484246015549, 0.013634548522531986, 0.0016284177545458078, 0.0388336256146431, -0.009273701347410679, -0.014586759731173515, 0.014876562170684338, 0.013303345069289207, 0.0014524658909067512, -0.030636334791779518, 0.0178849957883358, -0.0008594906539656222, 0.01578737236559391, 0.0006373944343067706, 0.008321491070091724, 0.0034862631000578403, 0.045181695371866226, 0.007176078390330076, -0.02256324701011181, 0.003092958824709058, -0.00257372809574008, 0.009673905558884144, -0.008079987950623035, -0.019499612972140312, -0.0004502299125306308, 0.026427289471030235, -0.01335164625197649, -0.03278915956616402, -0.01640838012099266, 0.037343207746744156, -0.02355685643851757, -0.013151543214917183, 0.023584457114338875, 0.0034465875942260027, 0.027738302946090698, -0.011923329904675484, 0.01782979443669319, 0.0369844026863575, 0.013738050125539303, 0.00810758862644434, -0.02225964330136776, -0.03552158921957016, -0.009639405645430088, 0.05130895972251892, -0.0057995133101940155, -0.028897516429424286, 0.01622897759079933, 0.004816252738237381, 0.009708406403660774, -0.006396370008587837, -0.021680036559700966, -0.009625605307519436, 0.03323076292872429, -0.028566312044858932, -0.005137105938047171, -0.026813693344593048, 0.018147198483347893, 0.026689492166042328, 0.010074109770357609, -0.007272679358720779, 0.00018328324949834496, 0.006744823884218931, -0.0019699714612215757, -0.011516225524246693, -0.02238384447991848, 0.010957319289445877, 0.044243283569812775, 0.008397391997277737, -0.005758112762123346, 0.022728849202394485, 0.0005058617680333555, -0.00514745619148016, -0.0062342179007828236, -0.0005567498155869544, 0.02281164936721325, 0.026372088119387627, -0.0020976229570806026, 0.03461077809333801, -0.017953995615243912, -0.016629181802272797, 0.030001528561115265, 0.00465755071491003, -0.02626168727874756, -0.009501404128968716, -0.015304367057979107, 0.019775616005063057, 0.005175056401640177, -0.0073071797378361225, -0.04636850580573082, -0.001391227706335485, 0.0017276064027100801, 0.006989776156842709, 0.019596213474869728, 0.015580370090901852, -0.014876562170684338, 0.02873191423714161, -0.01393125206232071, 0.048797331750392914, -0.026482488960027695, -0.012992842122912407, -0.01208893209695816, 0.02058982476592064, 0.010805518366396427, -0.00961870513856411, -0.0065274713560938835, 0.002444351790472865, -0.004422948230057955, 0.03665320202708244, 0.004008943680673838, -0.008473292924463749, 0.0018595702713355422, 0.014945562928915024, 0.012289034202694893, 0.02362585812807083, -0.0052406070753932, 0.02268744818866253, -0.008155888877809048, 0.003836442017927766, 0.049790944904088974, -0.01923741027712822, 0.010012009181082249, -0.028400709852576256, 0.010612315498292446, -0.023418854922056198, -0.014365957118570805, -0.0057443128898739815, 0.004733451642096043, -0.006417070049792528, 0.011688727885484695, 0.0053924089297652245, 0.00613761693239212, 0.007500382140278816, -0.03488678112626076, -0.014296956360340118, 0.007396881002932787, -0.004371197894215584, 0.013061842881143093, 0.01273753959685564, -0.034251973032951355, -0.02677229233086109, -0.0007003576611168683, -0.019582413136959076, 0.01992741785943508, -0.00018101916066370904, -0.003550088731572032, -0.01856120303273201, -0.011578326113522053, 0.015552770346403122, -0.012523637153208256, 0.005464859772473574, -0.006448120344430208, 0.011150522157549858, 0.035604387521743774, 0.006865574978291988, -0.01941681280732155, -0.012834140099585056, 0.007062226999551058, -0.00823178980499506, 0.003360336646437645, 0.029035517945885658, -0.006996676325798035, 0.027269097045063972, -0.039744433015584946, -0.009749806486070156, -0.00992920808494091, -0.00527165737003088, 0.008859696798026562, 0.00282903085462749, -0.01998261734843254, 0.0020441473461687565, 0.00498185446485877, -0.014227955602109432, 0.019955018535256386, 0.0027997056022286415, -0.016918985173106194, 0.010922819375991821, 0.023018650710582733, -0.017222588881850243, 0.016946585848927498, 0.02892511524260044, 0.018588803708553314, -0.025695880874991417, 9.067130304174498e-05, -0.010536415502429008, 2.348990528844297e-05, 0.011847428977489471, 0.011647326871752739, -0.016270378604531288, -0.056580618023872375, -0.025544079020619392, -0.06695833057165146, 0.018947606906294823, -0.02811090648174286, 0.00043535162694752216, 0.029697924852371216, 0.010115510784089565, 0.02978072501718998, 0.0132550448179245, 0.005706362426280975, 0.006306668743491173, -0.00916330050677061, 0.021597236394882202, -0.004174545407295227, -0.007072577252984047, -0.029697924852371216, -0.02508867345750332, 0.01193023007363081, 0.00029497823561541736, 0.015939174219965935, 0.0292839203029871, -0.00029195944080129266, 0.00595131516456604, 0.01664298214018345, -0.024743670597672462, -0.02268744818866253, 0.028538711369037628, -0.01824379898607731, 0.028897516429424286, -0.020631225779652596, -0.039689235389232635, -0.026303086429834366, -0.0027772802859544754, 0.014835162088274956, 0.0311331395059824, 0.00613761693239212, 0.003161959582939744, -0.003750191070139408, -0.015883972868323326, 0.03596319258213043, -0.006030665710568428, -0.01708458736538887, -0.018906205892562866, -0.0026858544442802668, -0.005354458466172218, -0.012992842122912407, 0.02225964330136776, 0.013103242963552475, 0.008549193851649761, -0.006289418786764145, 0.011847428977489471, 0.02441246621310711, -0.013358545489609241, -0.02078302763402462, -0.019320210441946983, -0.011633527465164661, -0.05945105105638504, -0.0007447768584825099, -0.02071402594447136, -0.006413619965314865, 0.002689304295927286, 0.053627386689186096, 0.011488625779747963, 0.04692051187157631, -0.011944030411541462, -0.006568871904164553, 0.02139023318886757, -0.02700689435005188, 0.021914638578891754, 0.0072795795276761055, 0.0007503831875510514, -0.04057244211435318, -0.010322513058781624, 0.0012411510106176138, 0.009832607582211494, -0.0032930609304457903, -0.003784691449254751, -0.01874060556292534, -0.001875095535069704, -0.029311520978808403, 0.026896493509411812, 0.037646811455488205, -0.00018490046204533428, 0.0014033028855919838, 0.017539991065859795, 0.025488877668976784, -0.008459492586553097, -0.021680036559700966, 0.0065792216919362545, 0.0015602795174345374, 0.00037842601886950433, 0.002123498125001788, 0.009563504718244076, 0.016118576750159264, 0.0280557069927454, 0.025557879358530045, 0.042559664696455, -0.0027841804549098015, -0.0009832606883719563, 0.04170405492186546, 0.006586121860891581, -0.005664961878210306, 0.0025978784542530775, -0.004799002315849066, -0.006337719038128853, -0.003743290901184082, 0.0033120361622422934, -0.006941475905478001, -0.011212622746825218, 0.02152823470532894, 0.01598057523369789, 0.012758239172399044, -0.0002615559787955135, -0.020451823249459267, 0.021749038249254227, -0.04429848492145538, -0.00649297097697854, -0.018851006403565407, -0.01658778078854084, -0.02583388239145279, 0.034251973032951355, -0.002839381108060479, 0.010350112803280354, 0.017650391906499863, -0.001437803148292005, -0.0046403007581830025, -0.013310245238244534, 0.024081263691186905, -0.023294653743505478, 0.014158954843878746, -0.025571679696440697, -0.001890620682388544, 5.692562262993306e-05, -0.035190384835004807, 0.005275107454508543, -0.0053924089297652245, -0.014324556104838848, 0.019085608422756195, 0.007176078390330076, -0.0006477445713244379, 0.06557831913232803, 0.027420898899435997, 0.004371197894215584, 0.0021579985041171312, -0.011944030411541462, 0.017802193760871887, 0.012040631845593452, -0.0019406462088227272, 0.020893428474664688, -0.061659075319767, 0.013048042543232441, -0.0151111651211977, -0.013827751390635967, -0.03601839393377304, 0.003622539574280381, 0.023819060996174812, -0.020921029150485992, 0.02565447986125946, -0.03461077809333801, 0.017746994271874428, 0.03811601549386978, -0.0320715494453907, 0.02615128643810749, 0.03008432872593403, -0.014324556104838848, 0.009535904042422771, 0.0024391766637563705, -0.0033534367103129625, 0.001933746156282723, -0.03284435719251633, 0.001890620682388544, -0.0004881803470198065, -0.012979041785001755, -0.030719134956598282, -0.01041911356151104, 0.002930806949734688, 0.01155762653797865, 0.004495399072766304, 0.016877584159374237, 0.03726040571928024, 0.008756195195019245, 0.01541476882994175, -0.037646811455488205, -0.01905800774693489, -0.012433935888111591, 0.007824685424566269, -0.012199332937598228, -0.004443648736923933, -0.03306516259908676], "9e8f0265-a120-4449-ab49-84c01e1501fb": [-0.028229806572198868, -0.00027642271015793085, 0.011093794368207455, -0.013602017425000668, -1.0648532224877272e-05, 0.012871330603957176, -0.006000063382089138, -0.017072780057787895, -0.03172867372632027, -0.027822308242321014, -0.004703796934336424, 0.01057388260960579, -0.0014683996560052037, -0.004640564322471619, -0.005870085675269365, -0.003344297641888261, 0.00846613198518753, -0.007043399848043919, 0.023016637191176414, -0.011775299906730652, 0.0023009611759334803, 0.007728418800979853, -0.010784657672047615, -0.019194582477211952, -0.009913453832268715, 0.016032956540584564, 0.018323378637433052, -0.02470283769071102, 0.006038705352693796, -0.01570976711809635, 0.03782709687948227, -0.009653497487306595, -0.019602080807089806, -0.0022535366006195545, 0.0022974482271820307, 0.0030597513541579247, 0.012168747372925282, 0.008044581860303879, 0.019096219912171364, 0.0020726213697344065, 0.028342220932245255, 0.008964966051280499, 0.004046881105750799, 0.001988311531022191, -0.013967360369861126, 0.01057388260960579, -0.01327180303633213, 0.004240091890096664, -0.01937725394964218, 0.019096219912171364, 0.0015843259170651436, 0.01763484627008438, -0.01780346781015396, -0.005171014927327633, 0.004893494304269552, 0.0017669976223260164, -0.01816881075501442, 0.0049391621723771095, 0.0005041036638431251, -0.0036323568783700466, 0.005005907732993364, 0.018899496644735336, -0.011957972310483456, 0.0017432854510843754, 0.007363075390458107, -0.002104237675666809, 0.00759492814540863, 0.008873630315065384, -0.01748027838766575, 0.008353718556463718, -0.0113607756793499, 0.015358475968241692, -0.022145433351397514, -0.001905757817439735, 0.028974546119570732, -0.0037096410524100065, -0.0014490785542875528, 0.012470858171582222, 0.0015052852686494589, 0.012562193907797337, -0.009091431275010109, 0.0044789700768888, -0.003226615022867918, -0.033948834985494614, 0.006790469866245985, 0.01419921312481165, -0.006769392639398575, 0.00956216175109148, -0.0027295369654893875, -0.01570976711809635, -0.007271739654242992, 0.02557404153048992, 0.01590649224817753, -0.004443841055035591, -0.02280586212873459, 0.0025205183774232864, -0.022145433351397514, 0.011023535393178463, -0.012316289357841015, -0.023269567638635635, -0.010292848572134972, 0.010152332484722137, -0.03082936629652977, -0.0022833964321762323, -0.04482483118772507, 0.004334940575063229, 0.023901892825961113, -0.008304537273943424, -0.012983744032680988, 0.0076019540429115295, -0.0069169350899755955, 0.03999105468392372, 0.0106933219358325, -0.03709641098976135, -0.02366301417350769, -0.006281096953898668, 0.04212690889835358, -0.03248746320605278, -0.010187461040914059, 0.013721456751227379, 0.022398363798856735, 0.0055855391547083855, 0.01597674936056137, 0.007826780900359154, 0.013468526303768158, 0.011571550741791725, -0.02147095277905464, -0.003372400999069214, -0.014473221264779568, -0.04207070171833038, 0.015569251030683517, 0.00926005095243454, 0.0187870841473341, 0.018927600234746933, -0.019405357539653778, -0.022833965718746185, -0.015400631353259087, -0.013819818384945393, -0.019447512924671173, -0.008058633655309677, 0.020234405994415283, 0.02114776521921158, 0.0027664226945489645, -0.020388973876833916, 0.006442691199481487, -0.00014512741472572088, 0.00521668279543519, 0.003937980625778437, 0.00023931752366479486, 0.0005155206890776753, -0.007018809672445059, -0.017775364220142365, -0.02331172116100788, -0.01240059919655323, 0.00045360549120232463, 0.01061603706330061, 0.023550599813461304, 0.017929932102560997, -0.01693226397037506, -0.0063021741807460785, 0.012576245702803135, 0.012344392947852612, 0.016032956540584564, -0.011192156001925468, -0.0037377444095909595, 0.025040077045559883, 0.0030913676600903273, 0.0017107909079641104, 0.0032160761766135693, -0.016735540702939034, -0.00262239295989275, 0.009231947362422943, -0.009042249992489815, -0.006049244198948145, -0.0016370196826756, 0.00342860771343112, 0.018407689407467842, 0.008754190988838673, -0.010096125304698944, 0.008929836563766003, 0.00020726214279420674, -0.007566824555397034, 0.019011911004781723, 0.008529364131391048, 0.005051575601100922, 0.00010099638166138902, 0.035691242665052414, 0.012913485057651997, 0.018112603574991226, -0.017058728262782097, 0.020192250609397888, 0.023353876546025276, 0.000416719849454239, 0.0031001497991383076, -0.5953412055969238, -0.02428128756582737, 0.011578576639294624, -0.016229679808020592, 0.016187524423003197, 0.011873661540448666, 0.009794014506042004, 0.007784625515341759, 0.006758853793144226, 0.03338677063584328, -0.010826812125742435, -0.004833774641156197, -0.008234279230237007, -0.019054066389799118, 0.0002566625480540097, -0.03029540181159973, 0.01340529415756464, -0.02959281951189041, 0.023114997893571854, 0.013573913834989071, -0.027400758117437363, 0.015934593975543976, -0.006829111836850643, -0.00847315788269043, 0.020852679386734962, 0.0006169561529532075, 0.0013507168041542172, -0.01450132392346859, -3.1039922760101035e-05, 0.008887682110071182, 0.011831507086753845, 0.00509021757170558, -0.008402898907661438, -0.0021165329962968826, 0.06059080362319946, -0.012779994867742062, 0.010145306587219238, 0.005286941304802895, 0.02950850874185562, 0.0331900455057621, -0.016187524423003197, -0.02525085210800171, 0.024168873205780983, -0.006530513986945152, 0.03630951792001724, 0.00598249863833189, 0.015274166129529476, 0.0020392488222569227, -0.0036428957246243954, 0.016904160380363464, 0.021766038611531258, -0.006203812547028065, -0.0032828215043991804, -0.003639382775872946, -0.000438236485933885, -0.012140643782913685, 0.01599080115556717, -0.05738702416419983, 0.0235787034034729, -0.023803530260920525, -0.010847889818251133, -0.006990706082433462, -0.024084564298391342, -0.013693353161215782, -0.02558809332549572, 0.009274102747440338, -0.008367770351469517, -0.006446204148232937, -0.011894739232957363, -0.021260177716612816, -0.011817455291748047, -0.0029754412826150656, -0.00034228991717100143, -0.0043665566481649876, 0.009021172299981117, 0.016229679808020592, 0.029311785474419594, -0.018365534022450447, -0.018210966140031815, 0.020936990156769753, 0.016229679808020592, -0.00299300579354167, -0.012386547401547432, -0.010018841363489628, 0.023086894303560257, -0.00012844105367548764, -0.027990927919745445, 0.011979049071669579, 0.009449748322367668, 0.0035216999240219593, 0.007117171306163073, 0.013496629893779755, 0.003523456398397684, -0.041958287358284, 0.009548109956085682, 0.01902596279978752, -0.03313383832573891, 0.0036253309808671474, 0.009154663421213627, -0.039513297379016876, -0.023817582055926323, 0.019180530682206154, 0.022595087066292763, 0.0005453804624266922, 0.03746175393462181, -0.013215596787631512, -0.015316321514546871, 0.006959090009331703, 0.029817646369338036, -0.017002521082758904, -0.011852584779262543, -0.015962697565555573, -0.008494234643876553, -0.016201576218008995, 0.02376137487590313, -0.025082232430577278, 0.0034110432025045156, 0.011641809716820717, 0.0018232043366879225, 0.005409893114119768, 0.021203970536589622, 0.006888831499963999, 0.022749654948711395, 0.0006740411045029759, 0.004995368886739016, -0.001895219087600708, -0.0019268353935331106, -0.014529427513480186, -0.007320920471101999, -0.0014815730974078178, -0.037602271884679794, -0.02314310148358345, 0.02009388990700245, -0.018407689407467842, 0.00995560921728611, -0.028623253107070923, 0.013503655791282654, -0.002964902436360717, 0.01073547638952732, -0.00475649069994688, -0.006941525265574455, -0.0048829554580152035, 0.012632451951503754, -0.004675693344324827, -0.014487273059785366, -0.009772936813533306, -0.00595790846273303, -0.0007486905669793487, -0.005940343718975782, 0.012576245702803135, 0.011683964170515537, -0.0007407865487039089, -0.017662949860095978, 0.04134001582860947, -0.002237728564068675, 0.0025855074636638165, 0.0037447703070938587, -0.0410589836537838, -0.01736786589026451, -0.02218758873641491, 0.007169865071773529, 0.007644108962267637, -0.02883402816951275, -0.0042787338607013226, -0.005121834110468626, -0.009302206337451935, 0.010292848572134972, 0.008142943494021893, -0.030688848346471786, -0.033920735120773315, -0.019068118184804916, 0.0011232554679736495, 0.004138216841965914, 0.003474275581538677, 0.002427426166832447, -0.0018917061388492584, -0.020936990156769753, -0.002437964780256152, 0.0014771819114685059, -0.01415003277361393, -0.002306230366230011, -0.005968447308987379, 0.012948614545166492, -0.01341232005506754, 0.007665186654776335, 0.008803371340036392, 0.04814102500677109, 0.008374796248972416, -0.014128955081105232, -0.00026237103156745434, -0.00852233823388815, 0.022033018991351128, -0.02428128756582737, 0.030716951936483383, 0.0161594208329916, 0.03633762151002884, 0.00774949649348855, 0.010672244243323803, -0.015105546452105045, 0.0375460647046566, 0.03274039179086685, 0.011079742573201656, -0.013433397747576237, -0.03066074661910534, 0.019236737862229347, -0.03791140764951706, 0.011571550741791725, -0.017789416015148163, 0.008543415926396847, -0.002474850509315729, -0.012210901826620102, -0.005768211092799902, -0.0068818056024611, -0.018449842929840088, 0.023171205073595047, 0.02260913886129856, -0.01563951000571251, 0.01597674936056137, 0.016356144100427628, 0.02776610106229782, 0.033836424350738525, 0.018997859209775925, 0.010447417385876179, -0.026937052607536316, 0.006407561711966991, -0.0004755612462759018, 0.0015535878483206034, 0.02592533268034458, -0.0005269376561045647, -0.029536612331867218, -0.008606648072600365, -0.02776610106229782, 0.0008922811248339713, 0.0024520165752619505, 0.011206207796931267, -0.013489603996276855, 0.04350397363305092, -0.009906427934765816, 0.027976876124739647, 0.0031071756966412067, -0.0033109248615801334, 0.012189824134111404, -0.002265831921249628, -0.01686200499534607, 0.02279181033372879, 0.007573850452899933, 0.05615047737956047, 0.03164436295628548, 0.00022120404173620045, 0.025208696722984314, -0.027372654527425766, -0.004496534820646048, -0.027822308242321014, 0.014712098985910416, -0.0014780601486563683, -0.0013603774132207036, 0.00282614235766232, 0.023873789235949516, 0.021105609834194183, 0.02384568564593792, 0.01196499727666378, 0.025349214673042297, -0.01340529415756464, -0.01736786589026451, 0.01204930804669857, -0.0340893529355526, 0.010461469180881977, -0.02933988906443119, -0.0013770636869594455, -0.0016458019381389022, -0.008964966051280499, -0.016988469287753105, -0.006260019261389971, -0.023269567638635635, 0.021892502903938293, -0.006365406792610884, 0.009527033194899559, 0.035410210490226746, 0.034454695880413055, 0.0013313958188518882, -0.0283984262496233, -0.013742534443736076, 0.039176058024168015, 0.021372592076659203, 0.002058569807559252, -0.0187730323523283, -0.003344297641888261, -0.015035287477076054, -0.019869063049554825, 0.017508381977677345, -0.005627694074064493, 0.010236642323434353, -0.014290548861026764, 0.01833743043243885, -0.013700379058718681, 0.01284322701394558, 0.020487336441874504, 0.0016247244784608483, -0.035494521260261536, -0.02962092123925686, 0.025110336020588875, -0.0012672850862145424, -0.012449780479073524, -0.022848017513751984, 0.06120907887816429, 0.001613307511433959, -0.011093794368207455, -0.020417077466845512, -0.014571582898497581, -0.018913548439741135, 0.00015687373524997383, -0.029986266046762466, 0.0015272409655153751, -0.0060211410745978355, 0.00670264707878232, 0.008058633655309677, 0.014908823184669018, -0.0007412256090901792, 0.009913453832268715, 0.011901765130460262, -0.019770700484514236, -0.010039919055998325, -0.010068021714687347, 0.004738925956189632, 0.0122249536216259, 0.023424135521054268, -0.009660523384809494, 0.0022798834834247828, -0.021723883226513863, -0.0055539230816066265, -0.03302142769098282, -0.011023535393178463, 0.028805924579501152, -0.026093952357769012, -0.005202631000429392, -0.01763484627008438, 0.010890045203268528, 0.00149035535287112, 0.03417366370558739, 0.005933317821472883, 0.00401526503264904, -0.02111966162919998, 0.020136043429374695, 0.0008189489599317312, 0.020065786316990852, 0.009555135853588581, -0.0024239132180809975, 0.0073279463686048985, -0.01252706442028284, 0.003512917784973979, -0.00838182121515274, 0.018562257289886475, 0.021189918741583824, -0.03057643584907055, -0.005079679191112518, -0.002228946192190051, 0.005880624055862427, 0.03692778944969177, -0.004622999578714371, 0.040918465703725815, -0.001395506551489234, 0.056909266859292984, -0.015653561800718307, 0.018997859209775925, 0.01296969223767519, 0.007032861467450857, 0.00642161350697279, -0.005445022601634264, 0.0024801199324429035, 0.004464918281883001, 0.00018322061805520207, -0.0022271897178143263, 0.0027471017092466354, -0.038023822009563446, 0.018913548439741135, 0.008845526725053787, -0.04575223848223686, 0.015021235682070255, 0.008564493618905544, 0.025911280885338783, -0.015358475968241692, 0.0137565853074193, 0.021386643871665, -0.014164084568619728, -0.006056270096451044, -0.004306836985051632, 0.004103087820112705, -0.022848017513751984, -0.011339697986841202, -0.02600964345037937, 0.008241305127739906, -0.014824512414634228, -0.03310573473572731, 0.011431034654378891, 0.032880909740924835, -0.026670070365071297, -0.04136811941862106, 0.0049567269161343575, 0.006808034610003233, 0.012541116215288639, 0.016651229932904243, -0.006003576330840588, -0.014431065879762173, 0.04395362734794617, -0.012014178559184074, -0.020585697144269943, -0.017255451530218124, -0.025011973455548286, 0.014255420304834843, -0.010110177099704742, 0.0008927201852202415, -0.017072780057787895, -0.005778749473392963, 0.021695779636502266, -0.00025446698418818414, 0.01388305053114891, -0.01044039148837328, 0.01974259689450264, -0.0009449748904444277, 0.0047635165974497795, -0.0013120747171342373, 0.028019031509757042, 0.0035866890102624893, -0.023648962378501892, 0.015780026093125343, -0.03029540181159973, -0.018477946519851685, -0.025293007493019104, -0.03945709019899368, -0.019335098564624786, 0.0058349561877548695, -0.014220290817320347, 0.021189918741583824, -0.019616132602095604, 0.025602145120501518, -0.01266055554151535, 0.02043112926185131, 0.0011012996546924114, 0.022637242451310158, 0.016201576218008995, -0.0029280169401317835, 0.002343116095289588, 0.013068053871393204, -0.005023472476750612, 0.004847826436161995, -0.017494330182671547, 0.03417366370558739, 0.011993100866675377, -0.0054239449091255665, -0.00025293006910942495, -0.005518793594092131, -0.043813109397888184, -0.002952607348561287, 0.0045597669668495655, 0.010995432734489441, 0.021625520661473274, 0.009534059092402458, -0.02044518105685711, -0.025995591655373573, 0.0022500238846987486, -0.009667549282312393, 0.030857469886541367, -0.011100820265710354, -0.020487336441874504, 0.009681601077318192, -0.005034010857343674, 0.0002419522061245516, -0.0003361423150636256, 0.023381980136036873, -0.02917126938700676, -0.012196850031614304, 0.004847826436161995, -0.004412224516272545, 0.010770605877041817, 0.011726119555532932, 0.011986074969172478, -0.022131381556391716, -0.009885350242257118, -0.0073138945735991, -0.027822308242321014, -0.02463257871568203, -0.006386484485119581, 0.029845748096704483, 0.026403089985251427, 0.03127902001142502, -0.009632420726120472, -0.002817359985783696, 0.005399354733526707, 0.028019031509757042, 0.006646440364420414, 0.009779962711036205, 0.008009452372789383, 0.01043336559087038, -0.0024449906777590513, 0.031138502061367035, 0.013665249571204185, 0.024744993075728416, -0.03456711024045944, 0.00462651252746582, 0.02061380073428154, -0.008487208746373653, -0.0080726845189929, -0.018927600234746933, -0.05348065868020058, 0.005135885905474424, 0.004233065992593765, -0.004250630270689726, 0.00881742313504219, -0.027667740359902382, 0.011079742573201656, 0.014367833733558655, 0.0010696834651753306, 0.022061122581362724, 0.01634209230542183, 0.008142943494021893, -0.007113658357411623, -0.012295211665332317, 0.00999776367098093, -0.004816210363060236, -0.027709895744919777, -0.000360732723493129, -0.03661865368485451, 0.009969660080969334, 0.02331172116100788, 0.013363138772547245, 0.02280586212873459, -0.00035634159576147795, -0.012772968970239162, 0.009014146402478218, 0.005153450183570385, -0.0218362957239151, -0.013243699446320534, 0.004949701018631458, -0.004500047769397497, -0.013391242362558842, 0.0006604285445064306, -0.016103215515613556, -0.008135917596518993, 0.0027383193373680115, 0.024759044870734215, 0.00951298139989376, -0.0035199434496462345, -0.031054193153977394, -0.01860441267490387, 0.013721456751227379, -0.0187870841473341, 0.03614089637994766, 0.004226040095090866, 0.03313383832573891, 0.04221121966838837, -0.006498897913843393, -0.014529427513480186, -0.051119979470968246, 0.0015887169865891337, 0.0031721647828817368, 0.043363455682992935, 0.048871710896492004, -0.016791746020317078, -0.02260913886129856, 0.004573818761855364, -0.006484846118837595, -0.03858588635921478, -0.019784752279520035, 0.008908758871257305, 0.02200491726398468, 0.01091814786195755, -0.023873789235949516, -0.00268738204613328, -0.03226263448596001, 0.02349439449608326, -0.025869125500321388, -0.021372592076659203, -0.01235141884535551, -0.009934531524777412, -0.01870277337729931, -0.007552773226052523, 0.01445916946977377, 0.022496724501252174, 0.018491998314857483, -0.0002601754677016288, -0.003237153636291623, 0.0029736848082393408, -0.017677001655101776, 0.029986266046762466, 0.02558809332549572, 0.04291380196809769, -0.008318589068949223, -0.015260114334523678, 0.010714398697018623, -0.0006924839108251035, -0.00015171413542702794, -0.017845621332526207, -0.01606106013059616, 0.054548587650060654, -0.0012005396420136094, -0.013742534443736076, -0.003330246079713106, 0.00746846292167902, 0.019180530682206154, -0.0001305268524447456, 0.005058601498603821, 0.00729281734675169, -0.005445022601634264, -0.008023504167795181, 0.025278955698013306, -0.0032424230594187975, 0.023424135521054268, -0.002754127373918891, 0.004584357608109713, -0.009660523384809494, -0.02506818063557148, 0.0033829398453235626, 0.013201544992625713, -0.05041739344596863, -0.01327180303633213, -0.012983744032680988, -0.031138502061367035, 0.005494203418493271, 0.0076019540429115295, -0.01677769422531128, 0.0170306246727705, 0.03203780949115753, -0.0275131706148386, 0.01860441267490387, -0.001619455055333674, 0.006172196473926306, -0.011761248111724854, -0.004717848263680935, -0.03057643584907055, -0.01808449998497963, 0.02724619023501873, -0.02043112926185131, 0.0034215818159282207, -0.0375741682946682, -0.008993069641292095, 0.030070574954152107, -0.004099574871361256, 0.03347108140587807, -0.0034145559184253216, 0.0019285918679088354, 0.008149969391524792, 0.007039886899292469, -0.01676364243030548, 0.0037869252264499664, 0.005402867216616869, -0.006555104628205299, 0.0008892072946764529, -0.021330436691641808, 0.037939511239528656, -0.021386643871665, 0.0005291332490742207, 0.005993037484586239, -0.03616899996995926, -0.024393700063228607, -0.0003071607497986406, 0.008705009706318378, -0.012569219805300236, 0.004658129066228867, -0.024646630510687828, 0.003983648493885994, -0.023958098143339157, -0.013946283608675003, 0.016791746020317078, -0.013637146912515163, 0.005019959527999163, 0.02322741225361824, -0.028370322659611702, -0.0020129019394516945, -0.009196818806231022, -0.025194644927978516, -0.009969660080969334, -0.026670070365071297, -0.028946442529559135, -0.0012031743535771966, -0.01582218147814274, 0.035410210490226746, 0.01955992542207241, -0.015105546452105045, -0.024126719683408737, 0.0072225588373839855, -0.03911985084414482, -0.017438123002648354, -0.01013125479221344, 0.0314195342361927, 0.025812920182943344, 0.00995560921728611, 0.010763579979538918, 0.034454695880413055, -0.021527159959077835, 0.006073834840208292, -0.010637114755809307, -0.016440454870462418, -0.02873566746711731, -0.015007184818387032, -0.006639414466917515, -0.004011752083897591, -0.025798868387937546, -0.009463800117373466, 0.010644140653312206, -0.0017265990609303117, -0.006221377290785313, 0.025981539860367775, -0.0017345030792057514, -0.009534059092402458, -0.007067990489304066, -0.026571709662675858, 0.006488359067589045, -0.01537252776324749, -0.014515375718474388, -0.010974355041980743, 0.00013788201613351703, 0.017227347940206528, -0.02079647220671177, -0.0026241494342684746, 0.025911280885338783, 0.014213264919817448, -0.013826844282448292, 0.0019953371956944466, -0.04409414157271385, -0.020543543621897697, -0.0098291439935565, -0.0010011815465986729, 0.01624373160302639, -0.00869798380881548, -0.01209146250039339, 0.024211028590798378, -0.007819755002856255, 0.007616005372256041, -0.014599685557186604, 0.002113020047545433, -0.0074403597973287106, -0.0024994409177452326, 0.022075174376368523, -0.004215501248836517, -0.016623126342892647, -0.0030140834860503674, 0.01771915704011917, -0.010468495078384876, -0.0018021267605945468, 0.011255388148128986, -0.013770637102425098, -0.051485322415828705, 0.010861941613256931, 0.02297448180615902, -0.021962761878967285, 0.0024818764068186283, -0.0016229680040851235, -0.019953371956944466, 0.00834669265896082, -0.027316447347402573, 0.014782357960939407, -0.04847826436161995, 0.026951104402542114, -0.0029824671801179647, -0.0018706286791712046, -0.0122249536216259, 0.007953246124088764, -0.0018723851535469294, -0.01895570382475853, -0.01902596279978752, 0.2837313413619995, -0.03125091642141342, -0.014796409755945206, 0.009611343033611774, 0.000242830443312414, 0.02244051918387413, 0.012688659131526947, -0.0006516462308354676, -0.02392999455332756, -0.002854245714843273, 0.02111966162919998, -0.015049339272081852, -0.02349439449608326, -0.011957972310483456, 0.01815475896000862, 0.0005928048631176353, -0.004085523076355457, -0.03282470256090164, -0.011775299906730652, -0.009035224094986916, 0.01313831191509962, 0.016749592497944832, -0.0071487873792648315, -0.010285822674632072, 0.01489477138966322, 0.008859578520059586, -0.024927664548158646, 0.0015395361697301269, 0.025110336020588875, -0.0030790723394602537, -0.022201640531420708, 0.006147605832666159, 0.025897229090332985, 0.0035673680249601603, -0.0205294918268919, -0.009498929604887962, 0.034061249345541, 0.022328104823827744, 0.010932199656963348, -0.004998881835490465, -0.015021235682070255, -0.016566919162869453, 0.006776418071240187, -0.01192284282296896, -0.004022290930151939, 0.01563951000571251, -0.004053907003253698, -0.024604475125670433, -0.017677001655101776, 0.0039169033989310265, -0.00791109073907137, -0.017677001655101776, 0.027288345620036125, 0.012520038522779942, 0.00029047438874840736, -0.006340816617012024, 0.007700315676629543, -0.007475488819181919, 0.005111295264214277, 0.025278955698013306, -0.012857278808951378, 0.02950850874185562, -0.012182798236608505, 0.021203970536589622, -0.03091367520391941, -0.001819691387936473, -0.037602271884679794, 0.027878515422344208, 0.00639351038262248, -0.015203908085823059, -0.008676907047629356, 0.0049567269161343575, -0.019068118184804916, -0.011142974719405174, -0.036646757274866104, -0.03605658560991287, 0.05263755843043327, 0.024955768138170242, 0.01816881075501442, 0.026838691905140877, 0.009147637523710728, 0.018042344599962234, -0.0028718102257698774, 0.010159358382225037, -0.011142974719405174, -0.046145688742399216, 0.006010602228343487, -0.023171205073595047, -0.0012277647620067, -0.005476638674736023, -0.0069309864193201065, -0.014121929183602333, -0.004724874161183834, -0.01677769422531128, 0.012119566090404987, 0.021625520661473274, 0.01030690036714077, 0.025433523580431938, -0.0067553408443927765, -0.015344424173235893, -0.021625520661473274, 0.02463257871568203, 0.003867722349241376, 0.03344297781586647, 0.0004852217680308968, -0.002655765740200877, 0.0030509689822793007, 0.001076709246262908, 0.004865391179919243, -0.017325710505247116, 0.007714367471635342, -0.03999105468392372, -0.0004061811196152121, -0.00729281734675169, -0.002035735873505473, 0.00816402118653059, -0.019335098564624786, -0.02674032934010029, -0.008536390028893948, 0.01445916946977377, 0.0037026151549071074, -0.01414300687611103, -0.00820617564022541, 0.022075174376368523, -0.03195349872112274, -0.0323469452559948, -0.02103535085916519, 0.0003060629533138126, -0.010426339693367481, -0.03417366370558739, 0.01763484627008438, -0.027302395552396774, 0.010777631774544716, 0.015133649110794067, 0.001167166861705482, -0.01773320883512497, -0.006621849723160267, -0.014740202575922012, -0.002798039000481367, -0.00373423146083951, 0.018463894724845886, 0.02088078297674656, -0.008929836563766003, 0.016960367560386658, -0.007043399848043919, -0.009309232234954834, 0.008114839904010296, 0.0031352790538221598, 0.007127710152417421, 0.011030561290681362, -0.028946442529559135, -0.005448535550385714, 0.017311658710241318, -0.012477884069085121, 0.010166384279727936, -0.0002746662648860365, -0.01922268606722355, -0.043728798627853394, -0.005019959527999163, -0.0003029891522601247, -0.04010346904397011, 0.007953246124088764, 0.027737997472286224, -0.0080797104164958, -0.02557404153048992, -0.030323505401611328, -0.1808731108903885, 0.011023535393178463, 0.020543543621897697, -0.03136333078145981, 0.04226742684841156, -0.008402898907661438, 0.01240059919655323, -0.01122728455811739, -0.020894834771752357, -0.03004247136414051, 0.007833806797862053, -0.02007983811199665, 0.019068118184804916, -0.02437964826822281, -0.020922938361763954, -0.01537252776324749, -0.023901892825961113, 0.006635901518166065, 0.06075942516326904, 0.0010740745346993208, 0.020234405994415283, -0.03903554007411003, -0.006098425015807152, 0.026332831010222435, 0.007412256207317114, 0.02411266788840294, 0.007524669636040926, 0.003909877501428127, 0.011262414045631886, -0.039344679564237595, -0.004563279915601015, -0.019714493304491043, 0.00803053006529808, 0.004875929560512304, -0.0004415298462845385, 0.0006011480581946671, 0.0089579401537776, -0.005132372956722975, -0.019869063049554825, 0.014065722934901714, -0.010335003957152367, 0.037770889699459076, 0.010342029854655266, 4.223734504193999e-05, 0.0010819786693900824, -0.0008250965620391071, 0.009449748322367668, -0.03338677063584328, 0.00493213627487421, 0.0005541627760976553, 0.00821320153772831, -0.012267109006643295, 0.011339697986841202, 0.00010582664253888652, 0.0314757414162159, 0.00951298139989376, -0.02950850874185562, -0.00014205361367203295, -0.008838500827550888, 0.00550122931599617, -0.012168747372925282, -0.017705105245113373, 0.02525085210800171, 0.0275272224098444, 0.006024654023349285, -0.021864399313926697, -0.018744928762316704, 0.03600038215517998, -0.001182096777483821, -0.0008518825634382665, 0.008740139193832874, -0.019321046769618988, 0.0017801710637286305, -0.008845526725053787, 0.022862069308757782, 0.015119598247110844, -0.006927473936229944, 0.008220227435231209, 0.00018398906104266644, 0.006656979210674763, 0.011269439943134785, 0.022384312003850937, -0.002894644159823656, -0.013313958421349525, 0.010784657672047615, 0.006558617576956749, 0.016370195895433426, -0.019180530682206154, -0.016018904745578766, -0.023438187316060066, 0.03237504884600639, -0.020388973876833916, -0.010552804917097092, -0.009857246652245522, -0.005019959527999163, 0.01450132392346859, 0.0046335384249687195, -0.013419345952570438, -0.01773320883512497, -0.02088078297674656, -0.011171078309416771, -0.0020234405528753996, -0.019770700484514236, 0.0196442361921072, 0.04221121966838837, 0.00253281369805336, -0.024871457368135452, 0.007229584734886885, 0.020894834771752357, -0.005631207022815943, 0.009541084058582783, 0.0007886500097811222, 0.011283491738140583, 0.03684348240494728, -0.0072225588373839855, 0.015442785806953907, 0.0042225271463394165, -0.03361159563064575, 0.020150095224380493, -0.004482483025640249, -0.014866667799651623, -0.006664005108177662, 0.013061027973890305, 0.03661865368485451, 0.004482483025640249, -0.011016509495675564, -0.06008494272828102, 0.007868935354053974, -9.896547999233007e-05, 0.029536612331867218, -0.00803053006529808, 0.03906364366412163, -0.016988469287753105, 0.03779899328947067, -0.02540541999042034, 0.043110527098178864, -0.026164211332798004, -0.028496788814663887, -0.021288281306624413, 0.01999552734196186, -0.023269567638635635, -0.013335035182535648, -0.011950946412980556, -0.00373423146083951, 0.0018583334749564528, 0.03973812609910965, 0.013250725343823433, -0.010630088858306408, 0.019096219912171364, -0.011719093658030033, -0.007531695533543825, -0.006404048763215542, -0.005107782315462828, 0.0037482832558453083, 0.012435728684067726, 0.00890173390507698, 0.032094016671180725, -0.015470889396965504, 0.005884137004613876, -0.017100883647799492, 0.023072844371199608, -0.0035269693471491337, -0.013904128223657608, -0.025869125500321388, 0.021372592076659203, 0.008374796248972416, 0.011754222214221954, 0.006927473936229944, 0.006804521661251783, -0.0071663521230220795, -0.013306932523846626, -0.018758980557322502, -0.015948645770549774, 0.03347108140587807, 0.0007833806448616087, -0.011150000616908073, -0.04072174057364464, -0.01174719724804163, -0.01946156471967697, -0.021639572456479073, 0.03268418461084366, 0.032094016671180725, 0.009112508967518806, 0.00791109073907137, -0.032712288200855255, 0.003769360715523362, -0.0062881228514015675, -0.013826844282448292, -0.00713824899867177, 0.012569219805300236, 0.021878451108932495, 0.004370069596916437, -0.04052501916885376, -0.011367801576852798, 0.005754159297794104, -0.010517675429582596, -0.011114872060716152, 0.019588029012084007, -0.0014877206413075328, 0.03642193228006363, -0.033161941915750504, -0.009534059092402458, -0.017438123002648354, -0.02166767604649067, 0.038557786494493484, 0.005343148019164801, -0.008290485478937626, -0.008065658621490002, -0.004521124996244907, -0.012997795827686787, 0.0019303482258692384, 0.0253211110830307, -0.024829301983118057, -0.0031387920025736094, 0.0023870274890214205, -0.02690894901752472, 0.024646630510687828, 0.013672275468707085, 0.0007653769571334124, -0.008248331025242805, -0.004419250413775444, -0.009772936813533306, -0.01712898723781109, -0.01060901116579771, 0.011402931064367294, 0.034033145755529404, -0.03116660565137863, -0.011424008756875992, -0.07835211604833603, 0.020304664969444275, -0.01118513010442257, -0.012632451951503754, 0.022243794053792953, 0.01764889806509018, 0.02130233310163021, 0.00774949649348855, -0.01597674936056137, 0.0013278828701004386, -0.03729313611984253, 0.014529427513480186, 0.0071663521230220795, -0.0131031833589077, -0.0384172685444355, -0.002123558660969138, 0.0227215513586998, 0.01419921312481165, 0.011213233694434166, 0.02394404634833336, 0.010363107547163963, 0.0024133743718266487, 0.015920542180538177, 0.009597291238605976, -0.015681665390729904, -0.0036709990818053484, -0.022637242451310158, 0.019349150359630585, 0.0013489604461938143, -0.006632388569414616, 0.009751859121024609, -0.021189918741583824, 0.0098221180960536, -6.745899736415595e-05, -0.017929932102560997, 0.002877079648897052, 0.022131381556391716, -0.005487177520990372, 0.025307059288024902, 0.038557786494493484, -0.022201640531420708, -0.0122249536216259, 0.021246125921607018, -0.007334972266107798, -0.015161752700805664, 0.006066808942705393, -0.01148724090307951, 0.008093762211501598, 0.006488359067589045, -0.0008914028876461089, 0.023986201733350754, 0.006154631730169058, -0.018576309084892273, -0.03074505552649498, -0.0044403281062841415, -0.04535879194736481, -0.01087599340826273, -0.018323378637433052, 0.004686232190579176, 0.008135917596518993, 0.03729313611984253, 0.008332640863955021, 0.013391242362558842, -0.012302237562835217, -0.014185161329805851, -0.0002375610638409853, -0.018758980557322502, 0.031054193153977394, 0.016637178137898445, 0.014079773798584938, -0.018997859209775925, -0.02123207412660122, -0.01060901116579771, 0.009421645663678646, 0.02654360607266426, 0.01240059919655323, -0.007967296987771988, 0.0161734726279974, -0.014002489857375622, 0.018407689407467842, 0.02671222575008869, 0.019714493304491043, -0.022061122581362724, 0.003330246079713106, 0.02891833893954754, -0.02741480991244316, 0.00027993562980555, 0.00537476409226656, -0.02201896905899048, 0.010046944953501225, -0.005114808212965727, -0.002026953501626849, 0.00017762189963832498, 0.014515375718474388, 0.001742407213896513, 0.037770889699459076, 0.0017467982834205031, -0.007064477540552616, 0.034117456525564194, 0.014262446202337742, 0.016398299485445023, -0.016918212175369263, 0.0020726213697344065, -0.00014205361367203295, -0.011712067760527134, 0.008360744453966618, -0.012491934932768345, -0.024927664548158646, 0.004401685670018196, 0.006133554503321648, 0.0010696834651753306, 0.010405262000858784, -0.013236673548817635, 0.024955768138170242, -0.012829175218939781, 0.0045457156375050545, -0.00939354207366705, -0.01739596761763096, -0.0401877798140049, 0.01667933352291584, 0.015217959880828857, 0.019363202154636383, 0.03718072175979614, -0.004261169116944075, 0.01074952818453312, 0.0031001497991383076, 0.0270635187625885, -0.04316673427820206, 0.015920542180538177, -0.0051745278760790825, -0.008557467721402645, 0.01729760691523552, -0.018407689407467842, -0.0039871614426374435, 0.004236578941345215, -0.009070353582501411, 0.018534153699874878, 0.010995432734489441, -0.030407816171646118, 0.07408040761947632, 0.008199149742722511, 0.014381885528564453, 0.00035436556208878756, -0.02304474078118801, -0.005863059777766466, 0.011669912375509739, 0.008107814006507397, 0.015021235682070255, -0.028946442529559135, 0.015667613595724106, 0.006035192403942347, -0.006024654023349285, -0.03729313611984253, 0.007370101287961006, -0.0057295686565339565, -0.0292555782943964, 0.041873980313539505, -0.011150000616908073, 0.01783156953752041, 0.025180594995617867, -0.002964902436360717, 0.008023504167795181, 0.013665249571204185, -0.0029631461948156357, -0.008044581860303879, 0.017410019412636757, -0.007637083064764738, 0.0003534873540047556, -0.012744865380227566, 0.012808097526431084, 0.01196499727666378, -0.0205294918268919, -0.036899685859680176, -0.022201640531420708, -0.007257687859237194, 0.0013199788518249989, 0.03712451457977295, 0.015765974298119545, 0.002840193919837475, 0.018829239532351494, 0.028974546119570732, -0.03473573178052902, -0.026178263127803802, -0.023901892825961113, -0.0011337941978126764, -0.016356144100427628, -0.008185097947716713, -0.016524765640497208], "508c0633-27f9-41ce-8943-38a30ca38670": [-0.024167289957404137, -0.019198957830667496, -0.009331106208264828, -0.033773649483919144, -0.008553514257073402, -0.006317076273262501, -0.006120957899838686, -0.025199491530656815, -0.004954569507390261, -0.010913816280663013, -0.023080037906765938, -0.00504746800288558, -0.014492115937173367, 0.024291153997182846, -0.013459914363920689, -0.02378193475306034, 0.0027852251660078764, 0.00032815421582199633, 0.0163638424128294, 0.011161544360220432, 0.021125733852386475, 0.011739577166736126, 0.005209179595112801, -0.016226215288043022, -0.0037090459372848272, 0.012186865322291851, 0.03038802742958069, -0.026341795921325684, 0.0020678446162492037, 0.0007418951718136668, 0.037131745368242264, 0.009331106208264828, 0.014065472409129143, -0.017891502007842064, -0.007452498655766249, -0.0020506412256509066, 0.030580705031752586, -0.011140900664031506, 0.0008683399646542966, 0.02204783447086811, 0.019818278029561043, -0.019075093790888786, 0.011794628575444221, 0.02365807071328163, -0.012262559495866299, 0.002940055448561907, -0.009812800213694572, -0.005112840794026852, -0.004486638121306896, 0.03850801661610603, 0.007562600076198578, 0.029507214203476906, -0.04225146770477295, -0.03049812838435173, 0.02989257127046585, 0.01736851967871189, 0.0018115144921466708, 0.016611570492386818, -0.008567276410758495, -0.040654998272657394, 0.03548022359609604, -0.013769574463367462, -0.008890699595212936, -0.00777592184022069, 0.021070683375000954, -0.001611955463886261, -0.014326963573694229, 0.02881908044219017, 0.00823697168380022, 0.01767129823565483, 0.018497060984373093, 0.017657535150647163, -0.021070683375000954, -0.010432121343910694, 0.027594201266765594, -0.016873061656951904, -0.027649251744151115, 0.006619855761528015, -0.0009023165912367404, 0.0019405398052185774, -0.009062733501195908, -0.009654529392719269, 0.025323355570435524, -0.013432389125227928, -0.0009719902300275862, 0.003354656510055065, -0.014794895425438881, 0.030525654554367065, 0.010349545627832413, -0.02067156508564949, -0.009055851958692074, 0.015152725391089916, 0.010686731897294521, 0.0035920629743486643, 0.013748930767178535, 0.002960699377581477, -0.018978754058480263, 0.03212212771177292, -0.01027385052293539, -0.0314064659178257, 0.013219066895544529, 0.037296898663043976, -0.028089657425880432, -0.003998062573373318, -0.04247167333960533, -0.022969935089349747, 0.026286745443940163, -0.020451363176107407, 0.0033598176669329405, -0.003588622435927391, -0.026685861870646477, 0.046297699213027954, -0.009847206994891167, -0.04618759825825691, -0.02715379372239113, 0.01570323295891285, 0.04836210608482361, -0.014244387857615948, 0.003450995311141014, -0.015372928231954575, 0.013852151110768318, 0.023713121190667152, -0.003977418411523104, -0.023272715508937836, -0.00382602890022099, 0.00505090830847621, -0.0073768035508692265, -0.006595770828425884, 0.0032393939327448606, -0.03570042550563812, 0.015909673646092415, -0.006499432027339935, 0.0029228520579636097, 0.0033047667238861322, -0.003801944199949503, -0.010377070866525173, 0.0036092663649469614, 0.005831941496580839, -0.01886865310370922, -0.007466261275112629, 0.018909940496087074, 0.007844734936952591, 0.005247026681900024, -0.019928380846977234, 0.002535776235163212, 0.013019507750868797, 0.0004902959335595369, 0.025309592485427856, 0.012510288506746292, 0.01786397583782673, 0.014313201420009136, 0.009551309049129486, -0.0139347268268466, -0.010955103673040867, 0.020272446796298027, 0.00587322935461998, 0.015235302038490772, 0.020988106727600098, -0.0003133163263555616, -0.023864511400461197, 0.033470869064331055, 0.01666662096977234, 0.030883483588695526, 0.0018734466284513474, 0.024593932554125786, 0.027828166261315346, -0.00794107373803854, -0.01570323295891285, -0.0007973760366439819, 0.010838121175765991, -0.0027146912179887295, 0.024373730644583702, -0.02024492248892784, -0.0028385554905980825, -0.020341260358691216, 0.01129917148500681, 0.0037400119472295046, 0.007046499289572239, -0.012001068331301212, 0.008498462848365307, 0.006482228636741638, -0.02397461235523224, 0.011395510286092758, 0.013638828881084919, -0.013260355219244957, -0.011505612172186375, 0.026520710438489914, -0.02330023981630802, 0.009778393432497978, -0.020602751523256302, 0.020148582756519318, 0.048747461289167404, 0.0035370122641324997, -0.0014803496887907386, -0.5958696007728577, -0.012792423367500305, 0.020038481801748276, -0.000864469213411212, 0.006988007575273514, -0.001752162934280932, 0.00803053192794323, 0.018662212416529655, -0.010762426070868969, 0.014519642107188702, 0.0030346738640218973, 0.0001699907734291628, 0.006327398121356964, -0.012902525253593922, -0.022515766322612762, -0.029149385169148445, 0.024731559678912163, -0.02199278399348259, -0.004342129919677973, 0.002012793906033039, -0.027525387704372406, 0.026892302557826042, -0.011684526689350605, -0.001141443382948637, 0.02007976919412613, 0.018263094127178192, -0.02397461235523224, 0.015689469873905182, 0.022020310163497925, 0.039526455104351044, -0.006437500007450581, 0.009296699427068233, 0.008484700694680214, -0.01809794269502163, 0.03971913456916809, -0.00013461634807754308, -0.014932522550225258, 0.016226215288043022, 0.019143907353281975, 0.034792087972164154, 0.006396211683750153, -0.01922648213803768, 0.05031640827655792, 0.011319815181195736, 0.016226215288043022, 0.007548837456852198, 0.007390566635876894, -0.021345937624573708, 0.016996925696730614, 0.011078968644142151, -0.003407987067475915, -0.010211918503046036, 0.006795329973101616, -0.017217129468917847, 0.0043111639097332954, -0.0028609198052436113, 0.027181319892406464, -0.032149653881788254, -7.053380249999464e-05, -0.028791554272174835, 0.0011001552920788527, 0.013700761832296848, -0.013342930935323238, -0.007232295349240303, 0.004170096013695002, -0.00708778714761138, -0.010356427170336246, 0.01461598090827465, -0.014161811210215092, -0.026809727773070335, -0.012647915631532669, -0.013280998915433884, -0.00035718490835279226, -0.002140098949894309, 0.009544427506625652, 0.04965579882264137, 0.028956707566976547, -0.012737372890114784, 0.013645710423588753, 0.010624798946082592, 0.00038040944491513073, 0.001322078751400113, -0.03704917058348656, -0.014148049056529999, 0.0161711648106575, 0.00042707359534688294, -0.02018987201154232, 0.0013401423348113894, 0.005154128652065992, 0.008931987918913364, 0.015524318441748619, 0.020878005772829056, 0.016515232622623444, -0.03878327086567879, 0.0236718337982893, 0.018662212416529655, -0.02163495495915413, -0.0036505544558167458, 0.0122832041233778, -0.0038225881289690733, -0.03845296427607536, 0.02708498015999794, 0.01383838802576065, -0.005838822573423386, 0.010205036960542202, -0.003093165345489979, -0.04439844936132431, 0.01695563830435276, 0.009207242168486118, -0.0027645810041576624, -0.0006438359851017594, -0.015042624436318874, -0.02281854674220085, 0.019336584955453873, 0.00791354849934578, -0.034792087972164154, 0.0028764030430465937, 0.011918492615222931, -0.019914617761969566, 0.03228727728128433, 0.029094334691762924, 0.01929529570043087, 0.018194280564785004, 0.016336318105459213, 0.002737055765464902, 0.026465659961104393, 0.03146151825785637, 0.0069983298890292645, -0.045802243053913116, -0.0011225197231397033, -0.010363307781517506, -0.005133484490215778, 0.004039350431412458, -0.03203954920172691, 4.601900582201779e-05, 0.007184125948697329, 0.019997194409370422, -0.0009100580937229097, 0.0256536602973938, -0.004548570141196251, -0.009234767407178879, -0.009916020557284355, 0.0027353353798389435, -0.0021005310118198395, -0.01995590515434742, -0.019556786864995956, 0.002773182699456811, 0.011361103504896164, -0.020809192210435867, -0.0007672701613046229, 0.004548570141196251, -0.016088588163256645, -0.01309520285576582, 0.04236157238483429, 0.013700761832296848, -0.011189069598913193, 0.00020149443298578262, -0.007555718533694744, 0.00035073363687843084, 0.007734633982181549, -0.015772046521306038, -0.021786343306303024, -0.036278460174798965, 0.006176008842885494, -0.009186597540974617, -0.02660328708589077, -0.004861671477556229, -0.00028514579753391445, -0.014547167345881462, -0.03638856112957001, -0.016735434532165527, 0.0021332174073904753, 0.007363040931522846, -0.01489123422652483, 0.019185194745659828, -0.0006636198959313333, -0.00504746800288558, -0.004586417693644762, 0.009420563466846943, -0.015386691316962242, -0.01851082220673561, 0.009337987750768661, -0.0161711648106575, -0.014877472072839737, 0.028956707566976547, 0.000891134433913976, 0.023148849606513977, 0.010081172920763493, -0.004555451683700085, -0.011615713126957417, -0.005463789217174053, 0.026823488995432854, 0.012372661381959915, -0.003695283317938447, 0.026878541335463524, 0.03421405702829361, 0.0009005962638184428, 0.0009350029868073761, -0.018593398854136467, 0.01958431303501129, 0.01375581230968237, 0.01756119728088379, 0.010803714394569397, -0.008436530828475952, 0.016088588163256645, -0.026919828727841377, 0.01045964751392603, -0.017051978036761284, 0.020272446796298027, -0.005157569423317909, 0.007947955280542374, -0.01743733324110508, -0.01564818248152733, -0.023754408583045006, 0.011932255700230598, -0.010941341519355774, -0.028984231874346733, 0.003574859583750367, -0.02576376311480999, 0.017396043986082077, 0.010555986315011978, 0.01599225029349327, -0.007225414272397757, -0.027552912011742592, 0.00014257289876695722, -0.00533304363489151, 0.023823222145438194, 0.010452765971422195, -0.005140366032719612, -0.021290887147188187, -0.0034458343870937824, -0.006781567353755236, -0.013721405528485775, -0.0007061982178129256, 0.017285943031311035, -0.03173677250742912, 0.03605825826525688, -0.013570016250014305, 0.02792450599372387, -0.004483197350054979, -0.0011603670427575707, 0.03135141730308533, 0.0025495390873402357, -0.012716729193925858, 0.013831507414579391, 0.023231426253914833, 0.04726108908653259, 0.014602217823266983, -0.001458845566958189, 0.028984231874346733, -0.03399385139346123, -0.014382014982402325, -0.03303046524524689, 0.005092196632176638, 0.0008902742411009967, -0.01341862604022026, -0.0024618017487227917, 0.02127712406218052, 0.0402696430683136, 0.020533937960863113, 3.2760317481006496e-07, 0.037186797708272934, -0.027071218937635422, -0.011072087101638317, 0.014533404260873795, -0.023878272622823715, 0.0053812130354344845, -0.04899518936872482, 0.0029951061587780714, -0.01684553734958172, -0.00777592184022069, -0.02126336097717285, 0.004324926529079676, -0.020754141733050346, 0.02140098810195923, -0.006203534081578255, 0.030773382633924484, 0.010824358090758324, 0.02702992968261242, 0.006317076273262501, -0.021318411454558372, -0.03748957812786102, 0.024346204474568367, 0.0055566877126693726, -0.01162259466946125, -0.015166488476097584, -0.009922902099788189, -0.0017366799293085933, -0.031241314485669136, 0.010342664085328579, -0.0029624197632074356, 0.011657001450657845, 0.011003273539245129, 0.015194013714790344, -0.021717529743909836, 0.0016627054428681731, -0.0026579201221466064, 0.0027714623138308525, 0.006795329973101616, 0.005807856563478708, 0.031186264008283615, 0.00602117832750082, 0.0013805702328681946, -0.011271646246314049, 0.05405985936522484, 0.003124131355434656, 0.01489123422652483, -0.009984834119677544, -0.012758016586303711, -0.016391368582844734, 0.002005912596359849, -0.01774011179804802, -0.021111972630023956, -0.034599412232637405, -0.005604857113212347, 0.003898283001035452, 0.00889758113771677, 0.003377020824700594, 0.030277926474809647, -0.009214123710989952, -0.03660876303911209, -0.008402124047279358, -0.015331640839576721, -0.01341862604022026, 0.005370891187340021, 0.018799839541316032, -0.000978011405095458, -0.013384219259023666, -0.04536183923482895, -0.0037468932569026947, -0.002737055765464902, -0.01899251714348793, 0.010975748300552368, -0.012806186452507973, 0.002379225566983223, -0.0060727884992957115, 0.010968866758048534, -0.003884520148858428, 0.01924024522304535, 0.007597006857395172, -0.024676509201526642, -0.006200093310326338, 0.011168425902724266, -0.029589790850877762, 0.006117517128586769, 0.013205304741859436, 0.015152725391089916, 0.008815005421638489, 0.011092730797827244, -0.009372394531965256, -0.00750754913315177, 0.038865845650434494, 0.011911611072719097, -0.036691341549158096, 0.005161010194569826, 0.007851616479456425, -0.008078700862824917, 0.054252538830041885, -0.010941341519355774, 0.020588990300893784, 0.016914350911974907, 0.06468465924263, -0.019033804535865784, 0.021249597892165184, 0.016019774600863457, 0.015221538953483105, 0.01351496484130621, -0.017712587490677834, 0.0018596840091049671, -0.01588214747607708, 0.01863468624651432, 0.007074024528264999, 0.00395333394408226, -0.03638856112957001, 0.015290352515876293, -0.0009229606366716325, -0.05163762718439102, 0.0006012576632201672, 0.02612159214913845, -0.007686464115977287, -0.014588454738259315, -0.011519374325871468, 0.025722473859786987, 0.014698556624352932, 0.005432823207229376, 0.005869788583368063, 0.007218532729893923, -0.012682322412729263, 0.010886291041970253, -0.019020043313503265, -0.02685101516544819, 0.008429650217294693, -0.025378406047821045, 0.04123302921652794, 0.034131478518247604, -0.031846873462200165, -0.021676242351531982, -0.014017303474247456, 0.030167823657393456, 0.032094601541757584, 0.02528206817805767, -0.006086551118642092, -0.01970817707479, 0.01291628833860159, -0.01162259466946125, -0.04285702854394913, -0.0043834177777171135, -0.02199278399348259, 0.01297133881598711, 0.005921398755162954, 0.03462693840265274, 0.011209714226424694, -0.011340459808707237, 0.04115045443177223, -0.002683725208044052, 0.01870349980890751, 0.008064938709139824, 0.008656734600663185, -0.019543025642633438, -0.01540045440196991, -0.015785809606313705, 0.014946285635232925, -0.0040565538220107555, -0.018565872684121132, 0.005350247025489807, -0.019873330369591713, -0.018978754058480263, -0.004675874952226877, 0.0023706238716840744, -0.020396312698721886, 0.028075894340872765, 0.012379542924463749, 0.019914617761969566, 0.020217396318912506, 0.031021110713481903, 0.0014080955879762769, 0.0068400586023926735, -0.008285141550004482, 0.007844734936952591, 0.011973543092608452, -0.004070316441357136, 0.009854088537395, -0.00014192778326105326, -0.0005702915950678289, 0.030635755509138107, -0.014987573027610779, 0.024015899747610092, -0.005019942298531532, -0.019281534478068352, 9.848927584243938e-05, -0.016377605497837067, -0.03146151825785637, -0.015964724123477936, -0.0010055367602035403, 0.008966394700109959, 0.0028832843527197838, -0.005353687796741724, -0.038920897990465164, -0.023052511736750603, 0.022515766322612762, -0.008023650385439396, 0.027277657762169838, -0.0245664082467556, -0.026685861870646477, -0.018414484336972237, -0.012799304910004139, 0.013625066727399826, -0.03314056620001793, 0.011113375425338745, -0.030167823657393456, -0.02312132529914379, -0.013370457105338573, -0.0008128590998239815, 0.01911638118326664, 0.024662746116518974, 0.013762693852186203, -0.022694680839776993, -0.015331640839576721, 0.012668559327721596, -0.01684553734958172, -0.019322821870446205, 0.0025581405498087406, 0.02156614139676094, 0.01647394336760044, 0.014808658510446548, 0.01845577172935009, -0.015138963237404823, 0.006107195280492306, 0.014313201420009136, 0.0019250568002462387, -0.025213254615664482, -0.007528193295001984, -0.025557322427630424, -0.014684793539345264, -0.005226382985711098, 0.03168172016739845, 0.0006812533247284591, -0.023506680503487587, -0.001244663610123098, 0.012647915631532669, 0.01629502885043621, 0.02222675085067749, -0.0013031550915911794, -0.02665833756327629, -0.008698021993041039, 0.004648349713534117, -0.003561096964403987, -0.014684793539345264, -0.037654727697372437, -0.011223476380109787, 0.01629502885043621, 0.0037193680182099342, 0.015125200152397156, 0.008931987918913364, -0.017120791599154472, -0.013232829980552197, 0.001792590832337737, 0.008794360794126987, 0.027401523664593697, 0.017478620633482933, 0.010521579533815384, -0.040352217853069305, 0.00997795257717371, 0.009042089805006981, 0.0012197187170386314, 0.011574424803256989, 0.024951763451099396, -0.00970269925892353, 0.013177779503166676, 0.0021899885032325983, -0.003177461912855506, -0.012613508850336075, -0.0007453358848579228, 0.00294349598698318, -0.035507749766111374, -0.03804008662700653, -0.020506413653492928, -0.01875855214893818, 0.025983965024352074, 0.013652591966092587, -0.012489644810557365, 0.01054222323000431, -0.014849945902824402, -0.00017138854309450835, 0.02061651460826397, -0.010466528125107288, 0.0371592715382576, 0.006182889919728041, 0.022502003237605095, 0.046352751553058624, 0.016804248094558716, 0.019735703244805336, -0.04128808155655861, -0.026974879205226898, -0.0018235568422824144, 0.03853554278612137, 0.010968866758048534, -0.04104035347700119, -0.02690606564283371, 0.010266968980431557, 0.004342129919677973, -0.016391368582844734, -0.022268038243055344, 0.003390783676877618, 0.03074585646390915, -0.005683992523699999, -0.004483197350054979, 0.0092898178845644, -0.019611839205026627, 0.0020764463115483522, 0.008312666788697243, -0.002109132707118988, -0.0161711648106575, -0.014505879022181034, -0.012441474944353104, -0.0005651306128129363, 0.007858498021960258, 0.015483030118048191, 0.029947621747851372, -0.02462145872414112, -0.0009393038344569504, -0.00902144517749548, -0.039278727024793625, 0.013521846383810043, -0.010156868025660515, 0.010225681588053703, -0.013693880289793015, -0.001885488978587091, 0.026988642290234566, 0.01797407865524292, -0.014946285635232925, -0.011257883161306381, -0.006268906872719526, 0.049160342663526535, -0.013941608369350433, -0.0163638424128294, 0.001488091191276908, -0.0040359096601605415, 0.018166756257414818, -0.005336484406143427, 0.0004675014934036881, -0.010521579533815384, -0.023520443588495255, -0.0009126386139541864, 0.01965312659740448, -0.011856560595333576, 0.002886724891141057, -0.003887960920110345, 0.00750754913315177, -0.02715379372239113, -0.011333578266203403, 0.0013031550915911794, -0.019666889682412148, -0.03608578070998192, -0.027057455852627754, -0.01774011179804802, -0.0034527156967669725, 0.0028488775715231895, 0.004235468804836273, -0.013748930767178535, -0.012475881725549698, 0.05205050855875015, -0.014450828544795513, 0.021290887147188187, -0.015359166078269482, 0.019997194409370422, -0.035975679755210876, -0.008952632546424866, -0.01135422196239233, -0.018084179610013962, 0.03732442483305931, -0.017093265429139137, -1.9716671886271797e-05, -0.029754944145679474, 0.00011526255548233166, 0.04591234400868416, -0.018359433859586716, 0.02001095563173294, -0.008567276410758495, 0.001611955463886261, 0.02983751893043518, -0.005267670843750238, -0.03922367841005325, -0.0031688602175563574, 0.004469434730708599, -0.0069536007940769196, -0.03044307790696621, -0.008656734600663185, -0.002823072485625744, -0.011127137579023838, -0.010322020389139652, 0.004469434730708599, -0.034186530858278275, -0.01600601337850094, -0.0026149118784815073, -0.00829890463501215, -0.025020577013492584, 0.019666889682412148, -0.027222607284784317, -0.02397461235523224, -0.014684793539345264, -0.019804516807198524, -0.009227885864675045, -0.014382014982402325, -0.004596739541739225, 0.020864242687821388, -0.0029624197632074356, 0.0199008546769619, -0.025626135990023613, -0.022268038243055344, -0.011952899396419525, -0.03534259647130966, -0.012124933302402496, -0.022680919617414474, -0.02499305084347725, 0.03911357372999191, -0.007005210965871811, -0.021731292828917503, -0.010253206826746464, -0.014031065627932549, -0.03757215291261673, -0.0007737214327789843, 0.019267771393060684, 0.039086051285266876, 0.015028861351311207, 0.0023224544711411, 0.0022312765941023827, 0.027112506330013275, -0.01375581230968237, 0.03157161921262741, -0.012503406964242458, -0.010900053195655346, -0.013748930767178535, -0.0026407167315483093, -0.001978387124836445, -0.008168159052729607, -0.023933324962854385, -0.01863468624651432, -0.0031189704313874245, -0.007067142985761166, -0.006014297250658274, 0.02815847098827362, 0.014671031385660172, -0.02647942304611206, -0.002783504780381918, 0.005917958449572325, -0.007679583039134741, 0.010762426070868969, -0.004300841595977545, -0.020946819335222244, -0.011037680320441723, 0.013728287070989609, 0.013976015150547028, -0.003344334429129958, 0.009221004322171211, -0.0038432320579886436, 0.002790386090055108, 0.01599225029349327, -0.021414751186966896, 0.010528460144996643, -0.006867583841085434, 0.017120791599154472, 0.017877738922834396, 0.0025547000113874674, 0.01683177426457405, 0.02846124954521656, 0.019130144268274307, 0.010631680488586426, -0.016322555020451546, 0.01129917148500681, -0.025681186467409134, -0.010432121343910694, 0.00027503882301971316, 0.0031224112026393414, -0.010528460144996643, -0.0027284540701657534, 0.03151656687259674, -0.019928380846977234, -0.0036367918364703655, 0.013535609468817711, -0.006124398671090603, -0.04745376855134964, 0.0011070367181673646, 0.0028712418861687183, -0.02936958707869053, -0.017698824405670166, -0.0012403627624735236, -0.012778661213815212, 0.02043760009109974, -0.04266434907913208, 0.026328032836318016, -0.03044307790696621, 0.008188802748918533, 0.02252952940762043, 0.0021555819548666477, 0.01629502885043621, -0.0016996926860883832, 0.009792156517505646, -0.013769574463367462, -0.0013668074971064925, 0.23341527581214905, -0.025915151461958885, 0.008250734768807888, 0.012104288674890995, -0.0023912680335342884, 0.011705170385539532, -0.01947421208024025, -0.0012386423768475652, -0.008856293745338917, 0.007824091240763664, -0.0037193680182099342, -0.023176375776529312, -0.018497060984373093, -0.006771245039999485, 0.005577331408858299, -0.007851616479456425, -0.034489311277866364, -0.029699891805648804, -0.0030914449598640203, 0.0016661460977047682, 0.014450828544795513, -0.015923436731100082, -0.000293747492833063, 0.0035266901832073927, 0.01886865310370922, 0.003994621802121401, -0.03487466648221016, 0.020451363176107407, 0.0176850613206625, 0.018263094127178192, -0.022433189675211906, -0.013191541656851768, -0.0007560880039818585, -0.00931734312325716, -0.022185461595654488, -0.006719635333865881, 0.02583257667720318, 0.010886291041970253, 0.024965526536107063, 0.0037090459372848272, -0.025956440716981888, 0.01087940949946642, 0.007555718533694744, -0.03757215291261673, -0.024167289957404137, 0.0161711648106575, -0.017409807071089745, 0.01312272809445858, -0.008808123879134655, -0.0008584479801356792, -0.01683177426457405, -0.01555184368044138, 0.028681453317403793, 0.008863174356520176, -0.0024445983581244946, -0.018056653439998627, -0.007307990454137325, 0.0021280564833432436, 0.0331956185400486, 0.0021538615692406893, -0.0038673169910907745, 0.03839791566133499, -0.03198450058698654, 0.020878005772829056, -0.023080037906765938, -0.007466261275112629, -0.004166655242443085, 0.017506146803498268, -0.00518509466201067, -0.01299886405467987, -0.01177398394793272, 0.014698556624352932, -0.01988709159195423, -0.015180250629782677, -0.009159072302281857, -0.03875574469566345, 0.05664724484086037, 0.013556253165006638, 0.02978246845304966, 0.01363194826990366, -0.001377989654429257, 0.005814738105982542, -0.0056117381900548935, 0.007892904803156853, -0.015593132004141808, -0.037599679082632065, 0.00790666788816452, -0.02636932022869587, 0.016446419060230255, 0.007603888399899006, 0.008202564902603626, -0.010328901931643486, 0.012785541824996471, -0.0041528926230967045, 0.0025013694539666176, 0.033580973744392395, 0.004390299320220947, 0.021290887147188187, -0.03055317886173725, 0.015194013714790344, -0.024373730644583702, 0.010115579701960087, 0.020712854340672493, 0.005814738105982542, -0.002903928281739354, -0.027841929346323013, 0.0020179548300802708, 0.013191541656851768, -0.004462553188204765, -0.01582709699869156, -0.004679315723478794, -0.06072100251913071, 0.010239443741738796, -0.011044561862945557, -0.003060478949919343, 0.017753874883055687, -0.008918225765228271, -0.017230892553925514, -0.015565606765449047, -0.003901723539456725, 0.008360836654901505, -0.017217129468917847, -0.014960047788918018, -0.013019507750868797, -0.004527925979346037, -0.0057080769911408424, -0.007920430041849613, -0.016460182145237923, 0.007899786345660686, -0.012572220526635647, 0.015097674913704395, -0.0331956185400486, 0.0223506148904562, -0.0014304599026218057, 0.004084079526364803, -0.007562600076198578, -0.004362774081528187, -0.005260789766907692, 0.00869114138185978, 0.020575227215886116, -0.018620925024151802, 0.021882683038711548, -0.007246057968586683, -0.00800300668925047, -0.004376536700874567, -0.03008524887263775, 0.0026716829743236303, -0.009048971347510815, 0.010576630011200905, -0.0018837687093764544, -0.036581240594387054, -0.01087940949946642, 0.0011500450782477856, -0.018180517479777336, 0.02720884419977665, 0.01114778220653534, -0.02199278399348259, -0.057913415133953094, 0.01423062477260828, 0.012654796242713928, -0.039939336478710175, -0.00588699197396636, 0.03201202675700188, -0.020176108926534653, -0.002857479266822338, 0.0014872311148792505, -0.17506146430969238, 0.02319013886153698, 0.04109540209174156, -0.01791902631521225, 0.029507214203476906, -0.0172584168612957, 0.01257910206913948, -0.0003279391676187515, -0.026974879205226898, -0.006158805452287197, 0.030332976952195168, 0.014904997311532497, -0.0111753074452281, -0.029259486123919487, -0.0010442443890497088, 0.003160258522257209, -0.006437500007450581, 0.0008666196372359991, 0.043297432363033295, 0.025447219610214233, 0.053894706070423126, -0.014450828544795513, -0.010714257135987282, 0.027539148926734924, 0.013115846551954746, 0.00955819059163332, -0.006740279030054808, 0.005088755860924721, 0.009468733333051205, -0.03146151825785637, 0.018786076456308365, 0.010831239633262157, 0.01147120539098978, 0.011140900664031506, 0.021841393783688545, -0.008195684291422367, 0.007094668690115213, -0.014932522550225258, -0.015125200152397156, -0.010452765971422195, -0.00955819059163332, 0.030635755509138107, 0.00012332663754932582, 0.003251436399295926, 0.0034389530774205923, -0.0011285408399999142, 0.010494053363800049, -0.0045416890643537045, -0.007142838090658188, -0.007197888568043709, 0.021111972630023956, -0.019845804199576378, -0.00557389110326767, 0.0016033537685871124, 0.0349847674369812, 0.018607161939144135, -0.01611611433327198, 0.0005384653923101723, -0.006657702848315239, -0.005463789217174053, -0.015744522213935852, -0.009929783642292023, -0.01069361250847578, 0.03649866208434105, 0.0007208210881799459, -0.01958431303501129, -0.02199278399348259, 0.03914109990000725, -0.024525118991732597, -0.012324492447078228, 0.02390579879283905, 0.004937366116791964, 0.02396084927022457, -0.003949893172830343, 0.009234767407178879, 0.030360501259565353, 0.013769574463367462, 0.021345937624573708, 0.025130677968263626, 0.004300841595977545, -0.0031464959029108286, 0.05579395964741707, 0.006712753791362047, -0.026988642290234566, 0.030966060236096382, -0.007005210965871811, -0.013879676349461079, -0.010721138678491116, -0.02715379372239113, -0.029287012293934822, 0.021786343306303024, -0.0384804904460907, -0.005487874150276184, -0.006083110347390175, -0.001361646456643939, 0.014505879022181034, -0.017478620633482933, -0.014382014982402325, -0.0161711648106575, -0.001913014450110495, 0.007266702130436897, 0.014698556624352932, -0.025433458387851715, 0.015125200152397156, 0.013996659778058529, 0.003358097281306982, -0.012400186620652676, 0.01940539851784706, 0.028653927147388458, 0.011588187888264656, -0.01177398394793272, 0.0065544829703867435, 0.01779516227543354, 0.015799572691321373, 0.005966127850115299, 0.023561730980873108, 0.002243319060653448, -0.01629502885043621, 0.021111972630023956, 0.007053380366414785, -0.01381086278706789, 0.0022983697708696127, 0.011939136311411858, 0.02642437070608139, -0.007886023260653019, -0.014395777136087418, -0.051252271980047226, -0.02157990261912346, -0.015207776799798012, 0.004768773447722197, -0.0011509052710607648, 0.0234378669410944, 0.0043111639097332954, 0.04505905881524086, -0.013067677617073059, 0.023919561877846718, -0.010012359358370304, -0.05015125498175621, -0.016735434532165527, 0.010776189155876637, -0.017987839877605438, 0.013976015150547028, -0.021910207346081734, 0.0024445983581244946, 0.008498462848365307, 0.014643506146967411, -0.010975748300552368, -0.01417557429522276, -0.00519541697576642, 0.00437309592962265, -0.00037395820254459977, 0.006702431943267584, -0.029644841328263283, 0.039333779364824295, 0.003291004104539752, 0.0038122660480439663, 0.04426082223653793, -0.016639096662402153, 0.004338689148426056, 0.010170630179345608, 0.015785809606313705, 0.005900755058974028, -0.006447821855545044, -0.023272715508937836, 0.02349291741847992, -0.0012592864222824574, 0.01270296610891819, -0.01935034617781639, -0.006179449614137411, -0.010294495150446892, -0.01677672378718853, -0.010356427170336246, -0.02006600797176361, 0.0016764680622145534, 0.008849412202835083, 0.003905164310708642, -0.04236157238483429, -0.013349812477827072, -0.011753340251743793, -0.012179983779788017, 0.01588214747607708, 0.014808658510446548, 0.009482495486736298, 0.01407923549413681, -0.04368278756737709, 0.015276589430868626, -0.015372928231954575, 0.02222675085067749, -0.012785541824996471, 0.01917143166065216, 0.018538348376750946, 0.006647381000220776, -0.01606106385588646, -0.012524050660431385, 0.03581053018569946, -0.012021712958812714, -0.0028144707903265953, 0.03091100975871086, -0.02126336097717285, 0.024938000366091728, -0.021951496601104736, -0.022254275158047676, -0.025928914546966553, 0.0038122660480439663, 0.017272179946303368, 0.00286952150054276, -0.009282936342060566, -0.00902144517749548, -0.005429382435977459, -0.006031500641256571, 0.010163749568164349, 0.02624545618891716, 0.007060261908918619, 0.019997194409370422, 0.0058835516683757305, -0.026754675433039665, 0.022378139197826385, 0.03129636496305466, 0.020533937960863113, -0.019336584955453873, 0.00794107373803854, 0.01906133070588112, -0.011361103504896164, 0.008677378296852112, -0.01051469799131155, 0.024965526536107063, -0.04104035347700119, 0.0019715058151632547, -0.09006306529045105, 0.01972194015979767, -0.018194280564785004, -0.0012601466150954366, 0.016859300434589386, -0.009124665521085262, 0.037847407162189484, -0.002833394566550851, -0.00450728228315711, -0.03206707537174225, -0.0043834177777171135, 0.028626402840018272, 0.011512492783367634, -0.02517196722328663, -0.03074585646390915, -0.006991448346525431, 0.029672367498278618, 0.0035232496447861195, 0.01731346920132637, 0.008305785246193409, 0.00014160521095618606, 0.0015526039060205221, 0.043407537043094635, -0.0025443779304623604, -0.022089123725891113, 0.020231159403920174, -0.020602751523256302, 0.0219239704310894, -0.011691408231854439, -0.029259486123919487, -0.01647394336760044, -0.0051713320426642895, 0.021607428789138794, 0.02444254420697689, 0.009737106040120125, 0.031021110713481903, 0.009984834119677544, -0.0019508617697283626, 0.031846873462200165, 0.01888241618871689, -0.00435933331027627, -0.03355344757437706, 0.018070416525006294, -0.012888762168586254, -0.020878005772829056, -0.007769040297716856, -0.004283638205379248, -0.004803180228918791, 0.01174645870923996, 0.002580505097284913, 0.014657268300652504, 0.0008833928732201457, -0.009812800213694572, -0.031378939747810364, 0.02252952940762043, -0.03503981605172157, 0.003081123111769557, -0.0022398782894015312, -0.014134285971522331, -0.004417824558913708, 0.0019938701298087835, 0.0016196969663724303, 0.006654262542724609, -0.004022147040814161, -0.0019164551049470901, -0.0011156382970511913, -0.0174923837184906, -0.007954836823046207, -0.001648942707106471, -0.027938267216086388, -0.012599745765328407, -0.018854890018701553, -0.005529162008315325, 0.004514163359999657, 0.0012893923558294773, -0.0022106326650828123, -0.010012359358370304, 0.003960215020924807, -0.03936130180954933, 0.0371592715382576, 0.01652899570763111, 0.007424972951412201, -0.029809994623064995, 0.015166488476097584, 0.03085595928132534, -0.029342062771320343, -0.019185194745659828, 0.004042791202664375, 0.005068111699074507, 0.0034028259105980396, -0.01066608726978302, 0.011767103336751461, 0.01888241618871689, 0.005123162642121315, 0.01270296610891819, 0.03845296427607536, 0.012049238197505474, -0.025185728445649147, 0.024401254951953888, 0.016749197617173195, -0.002176225883886218, 0.0036505544558167458, 0.007177244871854782, -0.013604422099888325, -0.033470869064331055, 0.0016558240167796612, -0.0017168959602713585, -0.04296712949872017, -0.00884253066033125, 0.00791354849934578, -0.002897046972066164, 0.003507766406983137, -0.0068607027642428875, 0.013088321313261986, -0.016377605497837067, 0.0007754417601972818, -0.00823697168380022, -0.012744254432618618, -0.04104035347700119, 0.03325066715478897, 0.003461317392066121, 0.006403093226253986, 0.02361678145825863, -0.003390783676877618, 0.024731559678912163, 0.007080905605107546, 0.020864242687821388, -0.02186891995370388, -0.007149719167500734, 0.002052361611276865, -0.011429917067289352, -0.012544695287942886, -0.020533937960863113, -0.016584046185016632, -0.005852585192769766, 0.0037331306375563145, -0.012118051759898663, -0.005570450332015753, -0.016804248094558716, 0.07597006857395172, 0.0011251001851633191, 0.008739310316741467, -0.012248797342181206, -0.006485669407993555, 0.011154662817716599, 0.023148849606513977, 0.013198423199355602, 0.003567978274077177, -0.006454703398048878, 0.016308791935443878, -0.012235034257173538, -0.02881908044219017, -0.03671886771917343, 0.0056323823519051075, 0.017533671110868454, -0.03982923552393913, 0.01870349980890751, -0.003320249728858471, 0.010266968980431557, 0.018854890018701553, -0.011801510117948055, 0.00043868584907613695, 0.01988709159195423, -0.014822420664131641, -0.011505612172186375, -0.008952632546424866, -2.2969183191889897e-05, 0.0039636557921767235, -0.015235302038490772, -0.0022398782894015312, 0.005780331324785948, -0.009695817716419697, -0.015125200152397156, -0.007197888568043709, 0.0030054282397031784, -0.013377337716519833, -0.0009152191341854632, 0.036526188254356384, 0.024827899411320686, -0.007129075471311808, 0.009048971347510815, -0.049710847437381744, -0.03481961414217949, -0.02583257667720318, -0.012413949705660343, 0.02204783447086811, -0.01779516227543354, -0.029342062771320343], "de287235-bc55-42f3-98c4-6a2d542b2740": [-0.0076809655874967575, -0.005208464805036783, 0.008674019016325474, -0.023900840431451797, -0.00831597950309515, -0.01629418507218361, -0.009977824054658413, -0.007971450686454773, 0.0020908168517053127, -0.018253270536661148, -0.011173541657626629, 0.01645631715655327, -0.0029301836621016264, 0.012794854119420052, -0.002798452042043209, -0.012666500173509121, 0.0020232622046023607, -0.013801418244838715, 0.016159076243638992, 0.020131289958953857, 0.029697030782699585, 0.016280675306916237, 0.0005885700229555368, -0.01923956908285618, -0.013240714557468891, 0.030615774914622307, 0.02040150947868824, -0.019861072301864624, 0.015226821415126324, 0.004985534120351076, 0.025589708238840103, 0.0034824430476874113, -0.01195717602968216, -0.041991978883743286, -0.012875919230282307, 0.014064881019294262, 0.021279720589518547, -0.024873627349734306, 0.0061407191678881645, 0.017064308747649193, 0.02213090844452381, 0.001352782128378749, -0.002683609025552869, 0.027224529534578323, -0.013227203860878944, 0.020617684349417686, -0.006407559849321842, 0.013470400124788284, -0.011281629092991352, 0.025454597547650337, -0.002982538426294923, 0.029886184260249138, -0.03939788043498993, -0.02384679764509201, 0.020860880613327026, 0.006914219819009304, -0.004691671580076218, 0.015956411138176918, 0.014281055890023708, -0.04431585967540741, 0.041019193828105927, -0.003786439076066017, -0.023036140948534012, -0.009282010607421398, 0.009896758943796158, 0.001354471081867814, -0.007329681422561407, 0.017266971990466118, 0.01397030521184206, 0.024022439494729042, 0.0146188298240304, 0.04020853713154793, -0.0021229053381830454, -0.011072210036218166, 0.034263726323843, -0.021239187568426132, -0.014159457758069038, -0.005941432900726795, 0.004262699279934168, 0.0012497613206505775, 0.004688293673098087, 0.0034300880506634712, 0.020455552265048027, -0.011619402095675468, 0.0060664089396595955, 0.004191766958683729, -0.015564595349133015, 0.02598152495920658, 0.020442042499780655, -0.012673255056142807, 0.0036749737337231636, -0.006559558212757111, 0.012180105783045292, 0.004911224357783794, 0.019604364410042763, 0.011261362582445145, -0.00909961387515068, 0.018564021214842796, -0.0040634130127727985, -0.048044878989458084, 0.004668027628213167, 0.03712804242968559, -0.021576959639787674, 0.0010648304596543312, -0.045910149812698364, -0.02317124977707863, 0.006117074750363827, -0.007228349335491657, 0.002070550573989749, -0.014470209367573261, -0.0188477523624897, 0.03291263431310654, -0.02046906389296055, -0.02057715132832527, -0.005715124774724245, 0.015415974892675877, 0.03712804242968559, -0.009835959412157536, -0.002453923225402832, -0.02252272516489029, 0.005505705252289772, 0.012632722035050392, 0.006826398894190788, -0.04045173525810242, 0.005313174333423376, -0.0001393315033055842, -0.013051561079919338, -0.019320635125041008, -0.011592380702495575, -0.03137238696217537, 0.0292376596480608, 0.00675546657294035, 0.029561921954154968, -0.0038269718643277884, 0.009369832463562489, 0.004607228096574545, 0.00017838654457591474, -0.0010859412141144276, -0.018726153299212456, -0.00914014596492052, 0.02826487272977829, 0.009113124571740627, 0.002957205520942807, -0.010964122600853443, 0.0027562303002923727, -0.0017699322197586298, 0.017996562644839287, 0.022238995879888535, 0.0021195276640355587, 0.013483910821378231, 0.016780579462647438, 0.004654516465961933, -0.004306609742343426, 0.006036009173840284, 0.027751456946134567, 0.019766494631767273, 0.006252184510231018, 0.02071226015686989, 0.0075458562932908535, -0.020766304805874825, 0.02317124977707863, 0.021117588505148888, 0.0015208243858069181, -0.00018292537424713373, 0.016983242705464363, 0.02105003409087658, -0.007167549803853035, -0.017226438969373703, -0.004357276018708944, 0.025603218004107475, -0.026643559336662292, 0.01605098880827427, -0.00999133475124836, -0.015699705109000206, -0.01842891238629818, 0.022955074906349182, 0.02268485724925995, 0.0019928626716136932, -0.03188580274581909, 0.004779492504894733, 0.018334336578845978, -0.0018746419809758663, 0.010139955207705498, 0.023630622774362564, -0.011896376498043537, -0.0043336316011846066, 0.02490065060555935, -0.005130776669830084, 0.011085720732808113, 0.007944428361952305, 0.018550511449575424, 0.02515735663473606, 0.0019894849974662066, -0.0017530436161905527, -0.5918869376182556, -0.02834593690931797, 0.00720808282494545, 0.0064852479845285416, 0.012369259260594845, 0.000865544134285301, -0.006340005435049534, 0.0032071578316390514, -0.020617684349417686, 0.015429485589265823, -0.005205086898058653, 0.009599518030881882, 0.0019607741851359606, -0.00261267670430243, -0.01621311902999878, -0.04055982083082199, 0.02867019921541214, -0.012436813674867153, -0.008410556241869926, 0.0068601761013269424, -0.027467727661132812, 0.008147092536091805, -0.025792371481657028, 0.011362695135176182, 0.01679408922791481, 0.01784794218838215, -0.02907552756369114, 0.00995080266147852, 0.028940418735146523, 0.024360211566090584, -0.022387616336345673, 0.0015309576410800219, 0.0171318631619215, -0.0011965619632974267, 0.0429377444088459, -0.012727298773825169, -0.022184953093528748, 0.030913015827536583, 0.02260379120707512, 0.025751838460564613, -0.01265974435955286, -0.025360021740198135, 0.03450692445039749, -9.885147301247343e-05, 0.004705182276666164, 0.0014617140404880047, -0.0019506409298628569, -0.004259321838617325, 0.026603028178215027, -8.027394505916163e-05, -0.003316933987662196, -0.030102359130978584, 0.005897522438317537, -0.002638009609654546, 0.022333571687340736, -0.01298400666564703, 0.03634440898895264, -0.027332616969943047, 0.0027663635555654764, -0.022914541885256767, -0.004955134820193052, -6.159085751278326e-05, -0.0032797791063785553, -0.011720734648406506, 0.0006873687379993498, 0.018334336578845978, -0.03039960004389286, 0.020590662956237793, 0.0031227143481373787, -0.018239758908748627, -0.018455933779478073, -0.00222254847176373, -0.0006443026359193027, -0.011369450017809868, 0.004073546268045902, 0.0612855926156044, 0.016199609264731407, -0.014591807499527931, 0.020550129935145378, 0.016834622249007225, -0.003587152808904648, -0.018469445407390594, -0.024319680407643318, -0.01883424073457718, -0.00227490346878767, -0.017091330140829086, -0.013463645242154598, 0.006177874282002449, 0.002089128131046891, 0.014591807499527931, 0.02637334167957306, 0.01596992276608944, 0.0007659010007046163, -0.03031853400170803, 0.009133391082286835, 0.015996944159269333, -0.0292376596480608, -0.0051409099251031876, 0.003962080925703049, -0.0076066553592681885, -0.05317903310060501, 0.033480092883110046, 0.012193617410957813, 0.007262126542627811, 0.002176949055865407, 0.013206937350332737, -0.035074383020401, 0.006056275684386492, 0.026603028178215027, -0.027913587167859077, 0.0057353912852704525, -0.011241096071898937, -0.014699894934892654, 0.01949627697467804, -0.0034993316512554884, -0.028075719252228737, 0.018496466800570488, 0.028697222471237183, 0.0067959995940327644, 0.009856225922703743, 0.019226057454943657, 0.030183425173163414, 0.02991320565342903, 0.005205086898058653, 0.008788862265646458, 0.03623632341623306, 0.011855843476951122, 0.010829012840986252, -0.039695121347904205, -0.008288957178592682, 0.012524634599685669, 0.012234149500727654, 0.012342237867414951, -0.02063119411468506, -0.007154039107263088, 0.014348611235618591, 0.00720808282494545, 0.011862599290907383, 0.02975107543170452, -0.01265974435955286, -0.006272450555115938, -0.015794280916452408, 0.0019827294163405895, -0.018131671473383904, -0.028129762038588524, -0.016604937613010406, -0.006015743128955364, 0.008849660865962505, -0.005086866207420826, -0.008045760914683342, -0.006991907954216003, -0.008457844145596027, -0.008349756710231304, 0.05253050848841667, -0.011923398822546005, -0.0006658356869593263, -0.012301704846322536, -0.008167359046638012, 0.0023221916053444147, -0.0010378086008131504, -0.012970495969057083, -0.005194953642785549, -0.0302374679595232, 0.014078392647206783, -0.032318152487277985, -0.03566886484622955, -0.0014963358407840133, -0.005495571997016668, -0.007653943728655577, -0.043451160192489624, -0.020090756937861443, -0.0126529885455966, 0.008160603232681751, -0.018807219341397285, 0.0020046846475452185, 0.012835386209189892, -0.004786247853189707, -0.0004321387386880815, 0.0151187339797616, -0.021522916853427887, -0.02449532225728035, 0.019955648109316826, -0.022738900035619736, 0.010092667303979397, 0.021414829418063164, 0.02195526659488678, 0.03096705861389637, 0.009808937087655067, -0.0011509626638144255, 0.0030365821439772844, 0.004617361351847649, 0.020023202523589134, 0.009694094769656658, 0.007870118133723736, 0.015699705109000206, 0.0316426046192646, -0.005799568258225918, 0.000597858801484108, -0.009153657592833042, 0.011214074678719044, 0.009754893369972706, 0.025522151961922646, 0.0010859412141144276, -0.012882675044238567, 0.018618065863847733, -0.032642412930727005, 0.007843096740543842, 0.004394431132823229, 0.029507877305150032, 0.004610606003552675, 0.01183557789772749, -0.029345747083425522, -0.025535663589835167, -0.02457638829946518, 0.02473851852118969, -0.00489771319553256, -0.00047161601833067834, -0.023400936275720596, -0.016267163679003716, -0.0011129630729556084, 0.009234722703695297, 0.026103122159838676, 0.008978014811873436, -0.008329490199685097, -0.003897904185578227, -0.005806323606520891, 0.021928245201706886, -0.010369640775024891, -0.010531771928071976, -0.030913015827536583, -0.007316170260310173, -0.0146188298240304, -0.009444142691791058, -0.008782106451690197, 0.017969541251659393, -0.0018915305845439434, 0.05220624431967735, -0.008883439004421234, 0.024860117584466934, -0.0045261625200510025, 0.0075323451310396194, 0.031750693917274475, -0.00522535340860486, -0.024779051542282104, 0.01564566045999527, 0.015186288394033909, 0.04612632468342781, 0.00831597950309515, -0.002239437075331807, 0.020198844373226166, -0.011545092798769474, -0.01605098880827427, -0.01941521093249321, 0.015713214874267578, 0.008025494404137135, -0.0133082689717412, -0.010153465904295444, 0.035263534635305405, 0.010146711021661758, 0.013416356407105923, 0.014956602826714516, 0.023292848840355873, -0.01729399524629116, 0.0008883438422344625, 0.030777905136346817, -0.007957939989864826, -0.005384106654673815, -0.027724435552954674, 0.0032122244592756033, -0.0013409601524472237, -0.03877637907862663, -0.00909961387515068, -0.003593908157199621, -0.02483309432864189, 0.010964122600853443, -0.018388379365205765, 0.035020340234041214, 0.02671111561357975, 0.01819922775030136, -0.004151234403252602, 0.001359537593089044, -0.04996342957019806, 0.007930917665362358, 0.029642987996339798, -0.0027224530931562185, -0.02033395506441593, -0.012044996954500675, 0.0024691231083124876, -0.023819774389266968, 0.03450692445039749, -0.0014650918310508132, 0.008849660865962505, -0.008214646950364113, 0.028535090386867523, -0.04080301895737648, 0.01580779254436493, -0.013875728473067284, -0.0007443679496645927, -0.0009094547131098807, 0.015861835330724716, 0.027305595576763153, -0.00818762555718422, -0.0011551848147064447, 0.009849470108747482, 0.03188580274581909, -0.005863744765520096, 0.0021972155664116144, 0.010484484024345875, -0.02122567594051361, -0.022076865658164024, -0.00868752971291542, -0.01621311902999878, -0.018374869599938393, -0.0015486907213926315, -0.0008807439589872956, 0.013848706148564816, 0.016577914357185364, 0.002774807857349515, 0.042478375136852264, -0.004786247853189707, -0.024373723194003105, -0.011774778366088867, -0.054530125111341476, -0.021739091724157333, -0.012484102509915829, 0.028156785294413567, -0.004043146967887878, -0.02679217979311943, -0.025211401283740997, -0.016334718093276024, 0.009592762216925621, -0.008755085058510303, -0.002013128949329257, -0.009045570157468319, -0.025684284046292305, -0.006978396791964769, 0.011511314660310745, -0.00876183994114399, 0.016415784135460854, 0.016105031594634056, -0.01802358403801918, -0.01212606206536293, 0.01364604290574789, -0.02939978986978531, -0.0034723097924143076, 0.018077628687024117, 0.0004243277362547815, 0.021482383832335472, -0.007045951671898365, -0.013362312689423561, -0.025778859853744507, 0.04645058885216713, 0.010187244042754173, -0.03572290763258934, 0.0008790550637058914, 0.0077417646534740925, -0.009126635268330574, 0.04585610702633858, -0.010815502144396305, 0.007707987446337938, 0.021739091724157333, 0.027346128597855568, -0.018874773755669594, -0.008471354842185974, 0.014659362845122814, 0.026981333270668983, 0.014348611235618591, -0.012254416011273861, -0.005282775033265352, -0.01212606206536293, 0.036182280629873276, 0.003092314815148711, 0.011896376498043537, -0.0071067507378757, 0.004012747202068567, -0.007525589782744646, -0.0550435408949852, -0.014308078214526176, 0.012301704846322536, 0.0030940037686377764, -0.032885611057281494, -0.009741382673382759, 0.026346320286393166, -0.0010690526105463505, -0.019442232325673103, -0.014024348929524422, 0.021739091724157333, -0.020212356001138687, -0.0036141746677458286, -0.013011028990149498, -0.01923956908285618, 0.0007730787037871778, -0.03439883515238762, 0.01118029747158289, 0.04226220026612282, -0.02465745247900486, -0.026170676574110985, -0.011139764450490475, 0.017550701275467873, 0.011166785843670368, 0.006022498477250338, -0.007721498142927885, -0.014686384238302708, -0.010518261231482029, 0.0011729178950190544, -0.017510170117020607, -0.007451279554516077, -0.013713597320020199, 0.025278955698013306, 0.010302086360752583, 0.0306427963078022, -0.012301704846322536, 0.00409381277859211, 0.02669760398566723, 0.013700086623430252, 0.023076673969626427, 0.02071226015686989, 0.015024157240986824, -0.022238995879888535, -0.00655618030577898, -0.008545665070414543, 0.006596713326871395, -0.02046906389296055, -0.01850997842848301, -0.015388952568173409, -0.03358817845582962, 0.006177874282002449, 0.008923971094191074, -0.0018526867497712374, -0.01343662291765213, 0.02161749266088009, 0.014510742388665676, 0.0018695753533393145, 0.015253843739628792, 0.02334689162671566, -0.015010646544396877, 0.014456698670983315, -0.011092476546764374, -0.001793576404452324, 0.011214074678719044, -0.0029740941245108843, -0.0037357730325311422, -0.007505323272198439, -0.021198654547333717, 0.020617684349417686, -0.008674019016325474, 0.025927480310201645, 0.012139573693275452, -0.021739091724157333, 0.0155240623280406, -0.02384679764509201, -0.032885611057281494, -0.013098849914968014, 0.006620357278734446, 0.013125871308147907, -0.003813460934907198, -0.012524634599685669, -0.0324532613158226, -0.02056363970041275, 0.017266971990466118, -0.016280675306916237, 0.03137238696217537, -0.014443187974393368, -0.01356497686356306, -0.01606450043618679, -0.015875346958637238, 0.018496466800570488, -0.013916261494159698, -0.006833154242485762, -0.02613014541566372, -0.031831759959459305, 0.02580588310956955, 0.001477758283726871, 0.023319870233535767, 0.011768022552132607, 0.012342237867414951, -0.022171441465616226, -0.010754702612757683, 0.01900988258421421, -0.01999618113040924, -0.018564021214842796, -0.0017868209397420287, 0.00876859575510025, 0.0071067507378757, 0.022968586534261703, 0.02169855870306492, 0.008707796223461628, 0.025333000347018242, -0.005765790585428476, 0.013166404329240322, -0.021428339183330536, -0.011470782570540905, -0.024806072935461998, -0.01638876274228096, -0.0014194924151524901, 0.009802182205021381, 0.007775541860610247, -0.028048697859048843, 0.0008646997157484293, 0.03910063952207565, -0.0028693843632936478, 0.03880339860916138, -0.002616054378449917, -0.0284270029515028, -0.0046612718142569065, -0.003136225277557969, 0.005688102915883064, 0.004232299979776144, -0.026022057980298996, -0.02186068892478943, -0.006414315663278103, 0.0038843932561576366, -0.006492003332823515, 0.006073164287954569, -0.013301514089107513, -0.00953871849924326, 0.012943473644554615, 0.007032440509647131, 0.01778038777410984, -0.014889048412442207, 0.003536486765369773, -0.035182468593120575, 0.0175371915102005, -0.007539100479334593, -0.011572114191949368, 0.03323689475655556, 0.022468682378530502, 0.0003540286561474204, 0.020347464829683304, 0.0069311088882386684, -0.02359008975327015, -0.01011968869715929, 0.0057218801230192184, 0.009531963616609573, -0.011808555573225021, -0.025927480310201645, -0.027305595576763153, -0.028886375948786736, 0.0135109331458807, 0.014578296802937984, -0.010788479819893837, 0.0064717368222773075, 0.006731822621077299, -0.0017479769885540009, 0.005948188249021769, -0.005164554342627525, 0.04020853713154793, 0.003056848654523492, 0.02875126525759697, 0.029561921954154968, 0.005576637573540211, 0.001706599723547697, -0.029615964740514755, -0.021185142919421196, -0.008653752505779266, 0.01761825755238533, -0.0018509977962821722, -0.013747374527156353, -0.004049902316182852, 0.021036522462964058, 0.01875317469239235, -0.025508642196655273, -0.03504735976457596, 0.01728048361837864, 0.010693904012441635, 0.007647188380360603, -0.028454024344682693, 0.02106354385614395, -0.017564212903380394, -0.007674210239201784, 0.00600223196670413, -0.004374164622277021, -0.021766113117337227, -0.027156975120306015, -0.026197699829936028, 0.01368657499551773, 0.004978778772056103, 0.022657833993434906, -0.0029352502897381783, -0.014132436364889145, 0.015132244676351547, -0.03431776911020279, -0.024400744587183, -0.005309796892106533, 0.00048681581392884254, 0.025373533368110657, -0.038641270250082016, -0.0013485599774867296, 0.029778096824884415, 0.010389907285571098, -0.019644897431135178, -0.015186288394033909, -0.01769932173192501, 0.04015449434518814, -0.032723478972911835, -0.024765539914369583, -0.009653561748564243, 0.013585243374109268, 0.021279720589518547, 0.0030433377251029015, 0.0027832521591335535, 0.004593717399984598, -0.015078200958669186, 0.0019337523262947798, 0.01792900823056698, -0.007687720935791731, 0.015537573024630547, -0.00588063383474946, 0.00355337536893785, -0.029886184260249138, -0.015875346958637238, 0.007579633500427008, -0.014645851217210293, -0.04115430265665054, -0.007897140458226204, -0.02834593690931797, -0.012592189945280552, 0.007282393053174019, 0.004836914129555225, -0.018145183101296425, -0.01614556461572647, 0.05096324160695076, -0.03096705861389637, 0.01085603516548872, -0.013490666635334492, 0.0142135014757514, -0.03677675873041153, 0.0023829909041523933, 0.01629418507218361, -0.0026700980961322784, 0.03915468603372574, -0.0011686957441270351, -0.0027849411126226187, -0.028318915516138077, 0.01719941757619381, 0.03596610575914383, -0.003078803885728121, 0.03266943618655205, 0.00228503649123013, 0.007316170260310173, 0.03323689475655556, 0.0063366275280714035, -0.02465745247900486, 0.013490666635334492, -0.009761649183928967, -0.011031677015125751, -0.007032440509647131, -0.02129323035478592, -0.003256134921684861, -0.02531948871910572, -0.02088790200650692, 0.023130716755986214, -0.02186068892478943, -0.023860307410359383, 0.007295903749763966, -0.0171318631619215, 0.001610334380529821, 0.022144420072436333, -0.028210828080773354, -0.018496466800570488, -0.02408999390900135, -0.028399981558322906, -0.01245708018541336, -0.021401317790150642, -0.008214646950364113, 0.018955839797854424, -0.006231917999684811, 0.01778038777410984, -0.01990160532295704, -0.023090185597538948, 0.015375441871583462, -0.020874392241239548, -0.01760474592447281, -0.02473851852118969, -0.033885419368743896, 0.04963916912674904, 0.003232490736991167, -0.025508642196655273, -0.030102359130978584, -0.014794471673667431, -0.032804545015096664, 0.012267927639186382, -0.003580397227779031, 0.033885419368743896, 0.011565358377993107, 0.005823212210088968, -0.007957939989864826, 0.018982861191034317, -0.003847238142043352, 0.026170676574110985, -0.013801418244838715, -0.010261553339660168, -0.006633867975324392, 0.004114079289138317, 0.004262699279934168, -0.009910269640386105, -0.021333763375878334, -0.013605509884655476, 0.005367218051105738, 0.0039891027845442295, 0.01605098880827427, 0.030183425173163414, -0.005181442946195602, -0.02014480158686638, -0.0006493692053481936, 0.015956411138176918, 0.001986107090488076, 0.020874392241239548, -0.0026650314684957266, -0.020347464829683304, -0.003050093073397875, -0.0016669114120304585, 0.021725580096244812, 4.4174419599585235e-05, 0.025495130568742752, -0.011112742125988007, 0.017753366380929947, 0.02221197448670864, -0.0076809655874967575, -0.0028592513408511877, -0.0057353912852704525, 0.021090567111968994, 0.028318915516138077, 0.019199036061763763, 0.00743776885792613, 0.032966677099466324, 0.002019884530454874, 0.025765350088477135, -0.017388571053743362, -0.0015461574075743556, -0.009613028727471828, 0.004424830432981253, -0.0023610356729477644, 0.00028858508449047804, 0.014199990779161453, -0.01792900823056698, 0.006704800762236118, -0.013416356407105923, 0.00851864367723465, 0.018739664927124977, -0.013591999188065529, -0.0473693311214447, 0.024387234821915627, -0.006846665404736996, -0.03283156827092171, 0.0029656498227268457, -0.01646982692182064, -0.018888285383582115, 0.02277943305671215, -0.018226249143481255, 0.026103122159838676, -0.02669760398566723, 0.009167168289422989, -0.006701422855257988, -0.009775159880518913, 0.02415754832327366, -0.006059653591364622, 0.0034503545612096786, -0.013720352202653885, -0.014591807499527931, 0.2362792044878006, -0.014564786106348038, 0.003941814880818129, 0.00921445619314909, -0.01687515527009964, 0.004472118802368641, 0.005941432900726795, 0.00046317168744280934, -0.0028626290149986744, 0.011470782570540905, -0.011565358377993107, -0.015537573024630547, -0.024319680407643318, 0.00016730335482861847, -0.009586007334291935, -0.003164936089888215, -0.03177771344780922, -0.02399541810154915, -0.013213692232966423, -0.0010470972629263997, 0.02006373554468155, -0.012754321098327637, -0.003333822824060917, -0.00035423977533355355, 0.0075458562932908535, -0.01085603516548872, -0.012558412738144398, 0.013369068503379822, 0.008525398559868336, 0.019388189539313316, -0.025927480310201645, -0.014591807499527931, 0.0005974365631118417, -0.011241096071898937, -0.02204984240233898, -0.007593144197016954, 0.035263534635305405, 0.023063162341713905, 0.0302374679595232, 0.01745612546801567, -0.03221006318926811, 0.014199990779161453, 0.027967631816864014, -0.0271164420992136, -0.0162266306579113, 0.0038607490714639425, -0.034533943980932236, 0.0040634130127727985, -0.0033642223570495844, 0.006458226125687361, -0.010504750534892082, -0.03153451904654503, 0.019482765346765518, 0.0065460470505058765, 0.016037477180361748, -0.012869163416326046, 0.006346760783344507, -0.013862217776477337, 0.02229304052889347, -0.019955648109316826, -0.013997326605021954, 0.027589324861764908, -0.010491239838302135, 0.009457653388381004, -0.009957557544112206, -0.0009542096522636712, -0.016496850177645683, -0.00587725592777133, -0.036587607115507126, -0.01769932173192501, -0.016848133876919746, -0.0075323451310396194, -0.009254989214241505, -0.025616729632019997, -0.022063354030251503, -0.030048314481973648, 0.02703537791967392, 0.004563317634165287, 0.008011983707547188, 0.02236059494316578, 0.012038241140544415, -0.01323395874351263, -0.007836340926587582, 0.02342795766890049, -0.004053279757499695, -0.019631385803222656, 0.024130526930093765, -0.016915688291192055, 0.006887197960168123, 0.007491812575608492, -0.0026667204219847918, -0.011518070474267006, 0.01973947323858738, 0.011335672810673714, 0.0037053734995424747, 0.02712995372712612, 0.01875317469239235, 0.0376955047249794, -0.02146887220442295, 0.010538527742028236, 0.0003631063154898584, 0.017726344987750053, -0.0026819203048944473, 0.004836914129555225, 0.011639668606221676, -0.023536045104265213, -0.012227394618093967, -0.009471164084970951, 0.00277649681083858, -0.034209683537483215, -0.0009381654090248048, -0.05815105512738228, 0.0059920987114310265, -0.008180869743227959, -0.012605700641870499, 0.00961978454142809, -0.01695622131228447, -0.0029420056380331516, 0.005488816648721695, 0.0003246846026740968, 0.0030940037686377764, -0.014051370322704315, -0.001181362196803093, -0.008302468806505203, -0.014726917259395123, -0.008788862265646458, -0.013929772190749645, 0.0031007591169327497, 0.01656440459191799, -0.026035567745566368, 0.028129762038588524, -0.03918170556426048, 0.021266208961606026, -0.0018746419809758663, 0.005640814546495676, -0.014794471673667431, -0.014645851217210293, 0.0043910532258450985, 0.025859925895929337, 0.005590148735791445, -0.02606258913874626, -0.009883247315883636, -0.008255179971456528, -0.011538336984813213, -0.021495895460247993, -0.033885419368743896, -0.004353898111730814, -0.011497803963720798, 0.0047963811084628105, -0.0005353707238100469, -0.02391435205936432, -0.03129132091999054, 0.003046715399250388, -0.016483338549733162, 0.023076673969626427, 0.00766069907695055, -0.008586198091506958, -0.05555695667862892, 0.003914793021976948, 0.02014480158686638, -0.014443187974393368, -0.010558794252574444, 0.0068162656389176846, -0.009613028727471828, -0.019361166283488274, 0.00022483037901110947, -0.17045393586158752, 0.027467727661132812, 0.042397309094667435, -0.03250730410218239, 0.0157267265021801, -0.013004273176193237, 0.0023779242765158415, 0.00045134962419979274, -0.024846605956554413, -0.007079728879034519, 0.0368848480284214, 0.007194572128355503, -0.010079155676066875, -0.009896758943796158, -0.006698044948279858, 0.000545926159247756, -0.010356130078434944, -0.0016382005997002125, 0.04569397494196892, 0.03310178592801094, 0.057070180773735046, -0.015848323702812195, -0.01729399524629116, 0.062528595328331, 0.0056610810570418835, 0.022009309381246567, -0.005617170594632626, -0.0004395275318529457, 0.014753938652575016, -0.017469637095928192, 0.007255371194332838, -0.007018929813057184, 0.0015461574075743556, 0.015510551631450653, 0.00010127921996172518, -0.0068736872635781765, 0.012403036467730999, -0.018293803557753563, -0.02522491291165352, 0.010004846379160881, -0.003935059066861868, 0.00399585859850049, -0.011281629092991352, -0.013997326605021954, 0.0069513749331235886, 0.0011990952771157026, 0.010248042643070221, -0.009032058529555798, 0.014564786106348038, -0.013929772190749645, -0.008329490199685097, -0.02007724717259407, 0.01729399524629116, 0.00819438137114048, 0.04777466133236885, 0.013294758275151253, -0.017469637095928192, 0.027305595576763153, 0.013943282887339592, -0.017321016639471054, -0.017915496602654457, -0.02991320565342903, -0.009309032931923866, 0.025251934304833412, -0.01338933501392603, 0.005059844348579645, -0.002043528715148568, 0.03556077554821968, -0.01942872256040573, -0.012619211338460445, 0.027575815096497536, -0.016740046441555023, 0.02082034759223461, 0.013132627122104168, 0.009606273844838142, 0.014699894934892654, 0.006056275684386492, 0.01728048361837864, 0.01085603516548872, 0.00040976126911118627, -0.014267545193433762, 0.05507056415081024, -0.005350329447537661, -0.0324532613158226, 0.04358626902103424, -0.012173350900411606, -0.010937100276350975, -0.012396281585097313, -0.022549746558070183, -0.023225294426083565, 0.015483529306948185, -0.04331605136394501, -0.01228819414973259, -0.013740618713200092, -0.004012747202068567, 0.00999809056520462, -0.022022821009159088, -0.02472500689327717, -0.022738900035619736, 0.004803136922419071, -0.0008330334676429629, 0.014713406562805176, -0.016672492027282715, 0.02033395506441593, 0.0010901633650064468, 0.00421541091054678, -0.004387675318866968, 0.020550129935145378, 0.03680378198623657, 0.014713406562805176, -0.004370786715298891, -0.019050415605306625, 0.03483118489384651, -9.557929297443479e-05, -0.007181060966104269, 0.013321779668331146, -0.028643177822232246, -0.025427576154470444, 0.027143465355038643, 0.0149160698056221, -0.006147474516183138, 0.008011983707547188, 0.01645631715655327, 0.024144036695361137, -0.011146520264446735, -0.015605127438902855, -0.04728826507925987, -0.0316426046192646, -0.01802358403801918, 0.0045261625200510025, -0.009376587346196175, 0.02130674198269844, -0.003281467827036977, 0.039451923221349716, -0.010693904012441635, 0.01175451185554266, 0.016726534813642502, -0.04480225592851639, -0.024508832022547722, 0.024846605956554413, -0.010302086360752583, 0.016010455787181854, -0.02442776784300804, 0.014753938652575016, 0.0010428751120343804, 0.01786145381629467, -0.014389144256711006, -0.010092667303979397, -0.00799171719700098, 0.00327809015288949, 0.007045951671898365, -0.007079728879034519, -0.020604172721505165, 0.010376396588981152, 0.00798496138304472, 0.009558985009789467, 0.028562111780047417, -0.007883629761636257, -0.007316170260310173, 0.004806514363735914, 0.014308078214526176, 0.007998472079634666, -0.015388952568173409, -0.007856607437133789, 0.03196686878800392, -0.014821493998169899, 0.008288957178592682, -0.0020908168517053127, -0.002769741229712963, -0.019185524433851242, -0.019861072301864624, -0.015929389744997025, -0.006039387080818415, 0.016767067834734917, 0.021320251747965813, 0.0066642677411437035, -0.029967250302433968, -0.013423112221062183, -0.0015689571155235171, -0.025927480310201645, 0.01883424073457718, 0.006991907954216003, 0.012950229458510876, 0.0012641167268157005, -0.04269455000758171, 0.030129380524158478, 0.003762794891372323, 0.01819922775030136, -0.031588561832904816, 0.00588063383474946, 0.02907552756369114, 0.013929772190749645, -0.024630431085824966, 0.011565358377993107, 0.03148047253489494, -0.0012497613206505775, -0.0036243079230189323, 0.03088599257171154, -0.004664649721235037, 0.05007151886820793, -0.029345747083425522, -0.0157267265021801, -0.027562303468585014, -0.010720925405621529, 0.02294156514108181, -0.013916261494159698, 0.0076674544252455235, -0.004603850655257702, 0.0016365117626264691, -0.026927290484309196, 0.019036903977394104, 0.018401890993118286, 0.0035162202548235655, 0.01331502478569746, 0.0253059770911932, -0.020698750391602516, 0.014159457758069038, 0.010099422186613083, 0.01653738133609295, -0.01499713584780693, 0.015713214874267578, 0.022509215399622917, 0.004688293673098087, 0.0027173864655196667, 0.007160794455558062, 0.01950978673994541, -0.04823403060436249, -0.01925307884812355, -0.09090156108140945, 0.027724435552954674, -0.028778288513422012, 0.002719075186178088, 0.0027106308843940496, -0.032642412930727005, 0.03237219527363777, -0.010126444511115551, 0.0008731440757401288, -0.029642987996339798, -0.0024741897359490395, 0.01629418507218361, 0.01802358403801918, -0.013943282887339592, -0.037073999643325806, -0.025940991938114166, 0.016902176663279533, 0.004087057430297136, 0.02794061042368412, 0.0046612718142569065, -0.004708560183644295, 0.011207318864762783, 0.03812785446643829, -0.011369450017809868, -0.030588753521442413, 0.028291894122958183, -0.005809701047837734, 0.021725580096244812, -0.02046906389296055, -0.01057230494916439, -0.0029031618032604456, 0.002342458115890622, 0.008701041340827942, 0.043640315532684326, 0.006806132383644581, 0.0153213981539011, 0.020995989441871643, -0.010369640775024891, 0.023130716755986214, -0.004941623657941818, -0.01967191882431507, -0.03566886484622955, 0.006383915897458792, 0.003171691671013832, -0.013551466166973114, -0.013875728473067284, -0.010984388180077076, -0.011477537453174591, 0.01212606206536293, 0.007924161851406097, -0.010166977532207966, 0.002114461036399007, 0.011497803963720798, -0.016942709684371948, 0.008464599959552288, -0.028859352692961693, 0.02975107543170452, 0.03323689475655556, -0.005458416882902384, -0.003300045384094119, 0.015834813937544823, -0.006687911693006754, 0.021739091724157333, -0.005708369426429272, -0.011450516059994698, -0.018699131906032562, -0.02915659360587597, -0.010808746330440044, -0.011457270942628384, -0.013011028990149498, -0.018861262127757072, -0.012024730443954468, -0.017956029623746872, 0.010687148198485374, 0.0008731440757401288, 0.01819922775030136, -0.011011410504579544, -0.017631767317652702, -0.0332639180123806, 0.027062399312853813, 0.021239187568426132, -0.0144161656498909, -0.03972214460372925, 0.025697795674204826, 0.04450501501560211, -0.016686001792550087, -0.027562303468585014, 0.0003571952984202653, 0.008241669274866581, -0.004168123006820679, -0.00987649243324995, 0.013862217776477337, 0.019144991412758827, 0.011747756041586399, 0.033561158925294876, 0.022738900035619736, 0.0126529885455966, -0.022333571687340736, 0.0060664089396595955, 0.00856593158096075, -0.010173732414841652, 0.007552611641585827, -0.016929199919104576, 0.004941623657941818, -0.02850806899368763, 0.008903704583644867, 0.00011874843767145649, -0.031156212091445923, -0.011822066269814968, 0.008903704583644867, 0.01077496912330389, -0.00135700439568609, -0.009079347364604473, 0.0060089873149991035, -0.015105223283171654, -0.009808937087655067, -0.00818762555718422, 0.0025079669430851936, -0.026967821642756462, 0.03712804242968559, -0.007944428361952305, 0.006174496375024319, 0.026913778856396675, -0.0043167429976165295, 0.033453069627285004, 0.009707605466246605, 0.02975107543170452, -0.02761634811758995, 0.0029470722656697035, 0.013477155938744545, -0.021914733573794365, -0.020509596914052963, -0.018739664927124977, -0.013591999188065529, -0.019280102103948593, 0.011903132311999798, 0.0058705005794763565, 0.01646982692182064, -0.0179425198584795, 0.08193030208349228, -0.013740618713200092, -0.00991702452301979, 0.0015698015922680497, -0.004816647619009018, 0.017753366380929947, 0.024373723194003105, 0.004985534120351076, -0.0023086806759238243, 0.004306609742343426, -0.007052707020193338, -0.013335291296243668, -0.023981906473636627, -0.030021293088793755, 0.016902176663279533, -0.013659553602337837, -0.03399350866675377, 0.032074954360723495, -0.004972023423761129, 0.010558794252574444, 0.038452114909887314, -0.004228922072798014, 0.019766494631767273, 0.024968205019831657, 0.0025924101937562227, -0.012477346695959568, 0.003306800965219736, -0.020604172721505165, 0.0009415431413799524, 0.005455039441585541, 0.011355939321219921, 0.004161367192864418, -0.028616156429052353, -0.0206582173705101, -0.011396472342312336, 0.009282010607421398, 1.1201936104043853e-05, 0.009781915694475174, 0.04220815375447273, 0.021995799615979195, -0.006421071011573076, 0.020090756937861443, -0.044613100588321686, -0.040424712002277374, -0.019144991412758827, 0.0032172908540815115, 0.007552611641585827, -0.024387234821915627, -0.0499904528260231], "23f1ecfa-8922-44a1-ac79-56b894736a62": [-0.03074975684285164, -0.022315695881843567, -0.025288356468081474, -0.011413635686039925, -0.0048841508105397224, 0.02361537143588066, -0.007625220809131861, -0.019896088168025017, 0.004528122954070568, -0.0009108094964176416, 0.0070134056732058525, 0.002436890732496977, 0.0004532443708740175, -0.0092359883710742, -0.025011830031871796, 0.011766206473112106, -0.0017766833771020174, -0.0036570641677826643, 0.010584055446088314, -0.004600711166858673, 0.004358750302344561, 0.014434688724577427, -0.024693824350833893, -0.04883459582924843, -0.002989943837746978, 0.00024109662626869977, 0.030694453045725822, -0.014019898138940334, -0.010756884701550007, -0.01906650885939598, 0.019661040976643562, 0.01079145073890686, -0.03528479486703873, -0.01369497925043106, 0.0070859938859939575, -0.0063082631677389145, 0.0023504761047661304, -0.01339771319180727, -0.00428270548582077, 0.011814598925411701, 0.005807058420032263, -0.017739180475473404, 0.01180077251046896, -0.008606890216469765, 0.0024472603108733892, 0.00768743921071291, 0.02418225072324276, -0.022481612861156464, -0.01643950678408146, 0.02458321489393711, -0.01320414524525404, 0.044852614402770996, -0.04134072735905647, -0.017753006890416145, 0.04631820321083069, 0.0031178374774754047, 0.00837184302508831, 0.007148212753236294, -0.020048178732395172, -0.03279605507850647, 0.05486287549138069, 0.023587718605995178, -0.036031413823366165, -0.0032768400851637125, 0.012250128202140331, -0.03124750591814518, 0.017849791795015335, -0.008572324179112911, -0.026435943320393562, 0.0075906552374362946, 0.01490478403866291, 0.0367780365049839, 0.011558812111616135, -0.0025181202217936516, 0.009000941179692745, -0.004711322020739317, -0.00391630781814456, 0.0021932015661150217, 0.022799618542194366, -0.009885826148092747, 0.007321041543036699, -0.0039232210256159306, 0.007901747711002827, 0.009837433695793152, -0.008523932658135891, -0.0006053340039215982, -0.02371215634047985, 0.017974229529500008, 0.003022781340405345, 0.0032820249907672405, -0.02997548319399357, 0.0011104270815849304, 0.00447281775996089, -0.005941865034401417, 0.006470722146332264, -0.015305747278034687, -0.003746935399249196, 0.029533039778470993, -0.04197673872113228, -0.033819202333688736, -0.00167557829990983, 0.005658425390720367, -0.011904469691216946, 0.010190005414187908, -0.03782884031534195, -0.017932750284671783, 0.019204773008823395, 0.00046923107584007084, -0.006252957507967949, -0.01195286214351654, -0.03520183637738228, 0.010196918621659279, -0.02456938847899437, 0.011185500770807266, -0.0043449243530631065, 0.014171987771987915, 0.04266805574297905, 0.0004240794514771551, -0.008682935498654842, -0.02727934904396534, 0.029726609587669373, 0.03805005922913551, 0.022882575169205666, 0.006201108917593956, 0.03191116824746132, -0.020960716530680656, 0.0155269680544734, -0.001139808096922934, -0.0077150920405983925, -0.036805689334869385, 0.02467999793589115, 0.00526783149689436, 0.006356655154377222, 0.010860581882297993, -0.011752380058169365, 0.03481469675898552, -0.007244996726512909, -0.009954957291483879, -0.02448642998933792, -0.010279876179993153, 0.033127885311841965, 0.02187325432896614, 0.014738867990672588, -0.02950538881123066, -0.015886453911662102, 0.0009548809030093253, 0.018444323912262917, 0.012215562164783478, 0.01789127103984356, -0.030445577576756477, 0.021900907158851624, -0.005368072539567947, -0.010438879020512104, 0.02477678284049034, 0.010722318664193153, -0.0075422627851367, 0.0034583108499646187, 0.04449312761425972, -0.027320828288793564, -0.029533039778470993, 0.004783910233527422, 0.016881948336958885, 0.02292405441403389, -0.017269086092710495, 0.02322823368012905, 0.01993756741285324, -0.03741404786705971, 0.0011899285018444061, 0.004631820600479841, -0.01634272187948227, 0.008530845865607262, 0.004109876696020365, -0.037386395037174225, 0.01364658772945404, 0.003874829038977623, 0.02244013361632824, -0.00870367418974638, 0.007791136857122183, 0.005782862659543753, 0.03492530807852745, -0.007908660918474197, -0.015056872740387917, 0.024541735649108887, 0.03918381780385971, -0.019218597561120987, -0.04103654623031616, 0.00981669407337904, 0.01885911449790001, 0.02136167883872986, -0.02400250919163227, 0.010805277153849602, 0.02747291699051857, 0.011593377217650414, 0.006225305143743753, -0.5526107549667358, -0.026643337681889534, -0.013238711282610893, -0.020283225923776627, 0.004303445108234882, 0.017448827624320984, 0.000257947453064844, 0.0379117950797081, -0.03481469675898552, 0.047728490084409714, -0.020836278796195984, 0.00768743921071291, -0.013052055612206459, -0.007127473130822182, -0.01277552917599678, -0.02729317545890808, -0.01837519183754921, 0.009934217669069767, 0.023643024265766144, 0.019951393827795982, -0.021154284477233887, 0.019094161689281464, -0.012948357500135899, 0.006916621699929237, 0.018319886177778244, -0.0044901007786393166, 0.01837519183754921, -0.00263391574844718, 0.021403158083558083, 0.047369007021188736, -0.015457836911082268, -0.011724728159606457, 0.013328582048416138, 0.0014612702652812004, 0.048309195786714554, -0.013335495255887508, -0.03287901356816292, 0.025398967787623405, 0.018803808838129044, 0.028316322714090347, -0.022758139297366142, -0.03849250078201294, 0.024527909234166145, -0.0145176462829113, 0.017822138965129852, -0.03199412673711777, 0.009491775184869766, -0.04994070157408714, 0.00388174201361835, -0.021347852423787117, -0.011413635686039925, 0.006173456087708473, 0.015430184081196785, 0.0004899705527350307, -0.012339998967945576, -0.03702691197395325, 0.031689949333667755, -0.027652660384774208, -0.001310044783167541, -0.024915046989917755, -0.02650507353246212, 0.017683876678347588, 0.01711699552834034, 7.49646351323463e-05, -0.007196604739874601, -0.002091232454404235, -0.005554728209972382, 0.023062318563461304, 0.005160677712410688, -0.013618934899568558, 0.0033753528259694576, 0.049194082617759705, -0.0005374985630623996, 0.009851260110735893, -0.006228761747479439, 0.027307001873850822, 0.05079793557524681, -0.03146872669458389, -0.0109297139570117, 0.01122006680816412, 0.019135640934109688, -0.010003349743783474, -0.016467159613966942, -0.01325944997370243, 0.0150845255702734, -0.005409551784396172, -0.022702833637595177, 0.006287523545324802, 0.023822765797376633, -0.013840156607329845, 0.04471435025334358, 0.0012227660045027733, 0.01465590950101614, -0.03995809331536293, -0.003774587996304035, 0.013052055612206459, -0.019591908901929855, 0.011759293265640736, 0.02429286204278469, -0.010286789387464523, -0.02931181900203228, 0.030722104012966156, -0.034787047654390335, 0.005838167853653431, -0.004068397451192141, -0.005219439510256052, -0.0266986433416605, 0.01339771319180727, 0.0106877526268363, -0.019591908901929855, -0.018596414476633072, -0.010915887542068958, 0.00797779206186533, 0.004420969169586897, -0.03224300220608711, -0.03462113067507744, 0.030805062502622604, 0.015720536932349205, -0.006156173534691334, 0.005648055579513311, 0.0010732688242569566, 0.008938722312450409, 0.0140752037987113, 0.008572324179112911, 0.0079847052693367, 0.005934952292591333, 0.005952234845608473, -0.012429870665073395, -0.004925630055367947, -0.007521523628383875, -0.0017317477613687515, -0.0028240277897566557, -0.013010576367378235, -0.02506713569164276, 0.006277153734117746, 0.01050109788775444, -0.0075906552374362946, -0.01021074503660202, -0.005167590919882059, -0.033017273992300034, -0.02797066606581211, -0.011040324345231056, 0.026159416884183884, -0.02989252470433712, -0.011289197951555252, -0.007950139231979847, 0.020075831562280655, 0.028274845331907272, -0.016494810581207275, 0.02716873772442341, 0.01005865540355444, -0.0022727029863744974, -0.026574205607175827, 0.005015501286834478, 0.007168951909989119, 0.011883730068802834, -0.0266986433416605, -0.027113432064652443, 0.008095316588878632, -0.02050444670021534, -0.00747313117608428, 0.014033724553883076, -0.02729317545890808, -0.021596727892756462, -0.041257768869400024, -0.02961599826812744, -0.013653500936925411, -0.01577584259212017, -0.00645689619705081, -0.03287901356816292, -0.03094332665205002, 0.01436555664986372, -0.0025457730516791344, -0.011641769669950008, 0.010418139398097992, 0.008579237386584282, -0.008862677030265331, -0.006246044300496578, -0.01112328190356493, -0.014462340623140335, 0.005378442350775003, 0.022716660052537918, -0.014006071723997593, -0.007894834503531456, 0.01625976338982582, 0.00440368615090847, 0.006996123120188713, 0.03019670397043228, -0.019218597561120987, 0.020725669339299202, -0.04034522920846939, 0.018402844667434692, 0.009630038402974606, 0.015126004815101624, 0.019038856029510498, 0.01562375295907259, 0.02571697346866131, 0.0204076636582613, -0.002046296838670969, 0.0290352925658226, 0.051406294107437134, 0.0038955684285610914, 0.012734049931168556, -0.03251952677965164, -0.0011328948894515634, -0.016508636996150017, -0.007970878854393959, -0.033072579652071, 0.022080648690462112, 0.011019584722816944, -0.024320514872670174, -0.026463596150279045, -0.010805277153849602, 0.0016565670957788825, 0.03392981365323067, 0.022882575169205666, -0.02474913001060486, 0.02050444670021534, 0.007922487333416939, 0.009000941179692745, 0.013390800915658474, 0.014697388745844364, 0.00895254872739315, -0.011434374377131462, -0.009312032721936703, -0.007784223649650812, 0.019716346636414528, -0.019661040976643562, 0.0005871869507245719, -0.004579971544444561, -0.031192200258374214, -0.007493870798498392, -0.038077712059020996, -0.0035118877422064543, 0.009353511966764927, -0.007735831663012505, 0.004659472964704037, -0.006360111758112907, 0.01519513688981533, -0.012803181074559689, 0.022951707243919373, 0.03395746648311615, -0.007321041543036699, -0.018140144646167755, 0.01064627431333065, 0.01663307473063469, 0.050742629915475845, 0.0015062057645991445, 0.018803808838129044, -0.014835651963949203, -0.02378128655254841, -0.008205926977097988, -0.03094332665205002, 0.009733736515045166, -0.011966688558459282, 0.031302809715270996, 0.012326173484325409, 0.0290352925658226, 0.03708221763372421, 0.011745466850697994, 0.023076144978404045, 0.04786675423383713, 0.0028655068017542362, -0.007279562763869762, 0.02545427344739437, 0.010943540371954441, 0.00048651397810317576, -0.010667013935744762, -0.015347226522862911, -0.008717500604689121, 0.013971506617963314, -0.0012581959599629045, -0.004313814919441938, 0.0010127786081284285, 0.0044175125658512115, -0.00740399956703186, -0.0179050974547863, 0.009602386504411697, 0.0227443128824234, 0.0007228578324429691, -0.02313145063817501, -0.012886139564216137, 0.017435001209378242, 0.018554935231804848, -0.015402531251311302, -0.04399538040161133, 0.013425366021692753, -0.008758979849517345, -0.009733736515045166, 0.037497006356716156, 0.013618934899568558, 0.0016090391436591744, 0.014711215160787106, 0.012644178234040737, -0.02369832992553711, 0.005592750385403633, -0.01180077251046896, -0.028786418959498405, 0.004213573876768351, -0.020863931626081467, 0.013197232037782669, -0.0019996329210698605, -0.0067334226332604885, -0.004815019201487303, 0.04266805574297905, 0.005347332917153835, 0.02961599826812744, -0.00703760189935565, 0.000733659602701664, -0.007735831663012505, -0.02485974133014679, -0.018126318231225014, -0.017780659720301628, -0.0070030358619987965, 0.002582067158073187, -0.004510839935392141, -0.009104638360440731, -0.022771965712308884, 0.03431694954633713, -0.008530845865607262, -0.02591054141521454, -0.018997376784682274, -0.041838474571704865, 0.011710901744663715, -0.007162038702517748, 0.04429956153035164, 0.004783910233527422, 0.001806064392440021, -0.038741376250982285, 0.017462654039263725, 0.023048492148518562, -0.0464564673602581, 0.0022554199676960707, -0.0020324704237282276, -0.0015010209754109383, -0.027224043384194374, 0.03896259889006615, -0.03464878350496292, 0.001845814986154437, 0.009581646881997585, -0.003000313648954034, -0.03263013809919357, 0.029726609587669373, 0.007466217968612909, -0.026560379192233086, -0.0033891790080815554, 0.0021016020327806473, 0.021734990179538727, -0.0006347149610519409, -0.006802554242312908, -0.01097119227051735, 0.034676436334848404, 0.00040550032281316817, -0.030030788853764534, -0.004980935249477625, 0.0021880166605114937, 0.003874829038977623, 0.04084298014640808, 0.01224321499466896, 0.003358069807291031, 0.007500784005969763, 0.026740122586488724, 0.016951080411672592, 0.0023055404890328646, -0.014012984931468964, 0.02515009418129921, 0.015817321836948395, -0.00667811743915081, 0.003468680428341031, -0.0262147206813097, 0.0046249073930084705, 0.011427461169660091, -0.009477948769927025, 0.005720643792301416, -0.027403784915804863, -0.011600290425121784, -0.021983863785862923, -0.013598195277154446, -0.009609298780560493, 0.024043988436460495, -0.036031413823366165, 0.012588873505592346, 0.019218597561120987, 0.018167797476053238, 0.0075906552374362946, -0.02495652623474598, 0.016328895464539528, -0.0014163346495479345, 0.01324562355875969, -0.027901533991098404, -0.02273048646748066, 0.011150934733450413, -0.035174183547496796, 0.010079394094645977, 0.007625220809131861, 0.010169265791773796, -0.01325253676623106, -0.000936733849812299, -0.011268459260463715, 0.02534366212785244, 0.006252957507967949, -0.0015995334833860397, -0.006888968870043755, 0.04413364455103874, -0.007825702428817749, -0.025786105543375015, -0.030639147385954857, 0.003116109175607562, -0.004980935249477625, 0.03066680021584034, 0.04017931595444679, 0.004002722445875406, 0.0204906202852726, 0.015540794469416142, 0.023919550701975822, 0.018900593742728233, 0.012001254595816135, 0.011240806430578232, 0.004859955050051212, 0.0005288571119308472, -0.01624593697488308, 0.02892468124628067, -0.008987114764750004, -0.006180369295179844, 0.016619248315691948, -0.02640829049050808, 0.02369832992553711, -0.005236722528934479, -0.008669109083712101, 0.00020923126430716366, 0.030611494556069374, 0.03713752329349518, 0.01305896881967783, -0.008330363780260086, -0.014932435937225819, -0.009063159115612507, -0.00403728848323226, -0.038271281868219376, -0.03260248526930809, -0.007390173152089119, 0.0023435628972947598, 0.01750413328409195, -0.0029761174228042364, 0.02021409384906292, -0.018527282401919365, -0.01943982020020485, 0.03558897227048874, 0.013052055612206459, 0.006429243367165327, 0.0338745079934597, -0.004168638493865728, -0.045516278594732285, -0.015015394426882267, -0.0036570641677826643, -0.002421336015686393, 0.006716139614582062, -0.00016818434232845902, -0.022039169445633888, -0.027707964181900024, -0.014310250990092754, -0.004721691831946373, 0.012339998967945576, -0.01053566299378872, 0.003933590836822987, 0.013985333032906055, -0.03074975684285164, 0.005309310741722584, -0.004707865417003632, 0.008427147753536701, -0.024444950744509697, -0.01974399946630001, -0.0031143808737397194, 0.0053991819731891155, 0.012353825382888317, 0.02661568485200405, 0.008876503445208073, -0.011780032888054848, -0.006840576883405447, -0.008779719471931458, -0.01858258806169033, -0.010860581882297993, -0.0004379057791084051, 0.031192200258374214, 0.001978893531486392, 0.01693725399672985, 0.0027739075012505054, 0.016992559656500816, 0.03000313602387905, 0.00938116479665041, -0.002397140022367239, -0.02738995850086212, 0.029754262417554855, -0.05159986391663551, 0.029754262417554855, 0.016964906826615334, -0.014766519889235497, -0.007334867957979441, -0.024030162021517754, -0.0003169254050590098, 0.03135811537504196, -0.0184719767421484, -0.0008395174518227577, -0.0020929607562720776, -0.04847511276602745, -0.002587252063676715, -0.0005133025115355849, 0.0001328623911831528, -0.0171031691133976, -0.03702691197395325, -0.030445577576756477, 0.01693725399672985, 0.0025561426300555468, 0.018720850348472595, 0.005032783839851618, -0.0019201315008103848, -0.0010654915822669864, -0.014559125527739525, -0.013197232037782669, 0.02997548319399357, 0.00022402974718715996, -0.0031091959681361914, -0.02474913001060486, -0.015015394426882267, 0.02138933166861534, -0.03702691197395325, 0.0066608344204723835, 0.0031800558790564537, -0.03365328535437584, 0.0009937674039974809, 0.011890643276274204, -0.021693510934710503, 0.004631820600479841, -0.007632134016603231, -0.012927618809044361, -0.015720536932349205, -0.026726296171545982, -0.006543310824781656, -0.008890329860150814, -0.006446526385843754, 0.01475269440561533, -0.008572324179112911, 0.013197232037782669, -0.01034900825470686, -0.0017352043651044369, -0.0030521622393280268, -0.0072173443622887135, 0.02787388116121292, -0.003957787062972784, 0.015499316155910492, 0.017490306869149208, 0.012740963138639927, -0.00016721217252779752, -0.03567193076014519, -0.022481612861156464, 0.00612160749733448, 0.02900763973593712, 0.011261546052992344, -0.012602699920535088, -0.007991618476808071, 0.013224884867668152, -0.002580338856205344, -0.024915046989917755, -0.016798989847302437, 0.02351858653128147, 0.034870002418756485, 0.001079317880794406, -0.0012979466700926423, 0.018900593742728233, -0.01537487842142582, 0.0012910335790365934, -0.022896401584148407, -0.0062495009042322636, -0.02900763973593712, -0.01789127103984356, -0.03876902908086777, 0.028371628373861313, 0.0011259816819801927, 0.036695078015327454, 0.010881321504712105, 0.00841332133859396, -0.002212212886661291, -0.014393209479749203, -0.020559752359986305, 0.03058384172618389, 0.021610554307699203, 0.009609298780560493, -0.005530531983822584, 0.009042419493198395, 0.010238396935164928, 0.004645647015422583, -0.0023003555834293365, -0.011033411137759686, -0.027804749086499214, 0.04894520714879036, -0.011303024366497993, 0.007466217968612909, 0.0008805643883533776, 0.012547394260764122, 0.019564256072044373, 0.009194509126245975, -0.021638207137584686, 0.01054948940873146, -0.014780346304178238, 0.021831775084137917, 0.03249187394976616, -0.006069758906960487, -0.0024126945063471794, -0.0036224983632564545, 0.006263327319175005, -0.01519513688981533, -0.04217030480504036, -0.0025198485236614943, 0.010701579041779041, -0.008185187354683876, -0.03086036816239357, -0.00442788191139698, -0.009726823307573795, 0.011254632845520973, 0.013321668840944767, -0.026283852756023407, -0.027528222650289536, 0.021209590137004852, -0.025509579107165337, 0.006802554242312908, -0.0007539670332334936, 0.00909081194549799, -0.02573079988360405, -0.022606048732995987, -0.007480044383555651, -0.0007340916781686246, 0.03298962116241455, -0.01364658772945404, 0.018651718273758888, -0.015457836911082268, 0.008620716631412506, -0.005139938089996576, 0.006429243367165327, 0.00626678392291069, -0.00406148424372077, -0.008994027972221375, 0.021638207137584686, -0.007293389178812504, -0.028219539672136307, 0.00924290157854557, -0.008095316588878632, -0.014448515139520168, 0.004942913074046373, 0.007203517947345972, 0.011904469691216946, -0.008185187354683876, -0.025592535734176636, 0.001319550327025354, -0.004808105994015932, -0.03605906665325165, 0.0477561429142952, -0.01069466583430767, -0.037303436547517776, -0.009014766663312912, -0.02958834543824196, 0.007825702428817749, -0.014102856628596783, 0.009623125195503235, 0.006373938173055649, 0.0030262379441410303, 0.026062631979584694, 0.006871685851365328, 0.00793631374835968, 0.029062945395708084, 0.001806064392440021, -0.03475939482450485, 0.012070385739207268, -0.02873111329972744, -0.02989252470433712, -0.03722048178315163, -0.018637891858816147, 0.01798805594444275, 0.02437581866979599, -0.044935572892427444, -0.0005245364154689014, -0.00541300792247057, -0.04429956153035164, -0.006771445274353027, 0.010141612961888313, 0.0184719767421484, 0.008572324179112911, 0.002314181998372078, 0.010231483727693558, 0.03074975684285164, -0.019688693806529045, 0.012125691398978233, 0.0016686652088537812, -0.019481299445033073, -0.007915574125945568, -0.007583742029964924, 0.008924895897507668, -0.011040324345231056, -0.03849250078201294, 0.022205086424946785, 0.008848851546645164, -0.003943960648030043, 0.01127537153661251, 0.030030788853764534, -0.008772806264460087, -0.012540481053292751, -0.009588560089468956, 0.002542316447943449, 0.00210333033464849, 0.005271288100630045, 0.02118193730711937, -0.06122298911213875, 0.009954957291483879, 0.03451051935553551, 0.0329066663980484, -0.002063579624518752, 0.008869590237736702, 0.02961599826812744, 0.0241960771381855, -0.0036155851557850838, -0.015416357666254044, -0.00023677590070292354, 0.0008386533008888364, 0.013674240559339523, 0.016563942655920982, 0.03310023248195648, -0.0007893970469012856, 0.003981982823461294, 0.019868435338139534, 0.019495125859975815, 0.006225305143743753, -0.003663977375254035, -0.033515024930238724, -0.03379154950380325, 0.011897556483745575, 0.003518800949677825, 0.02505330927670002, 0.0026183612644672394, 0.027445264160633087, -0.002582067158073187, 0.041451338678598404, 0.0017637212295085192, -0.008779719471931458, -0.034787047654390335, 0.018831461668014526, 0.042114999145269394, -0.03340441361069679, 0.008109142072498798, -0.006595159415155649, -0.01292070560157299, 0.014137422665953636, -0.010812190361320972, 0.012844660319387913, -0.032934319227933884, 0.0025457730516791344, -0.0033805377315729856, 0.003964700270444155, -0.0266986433416605, 0.012429870665073395, 0.013805590569972992, -0.011144021525979042, 0.009858173318207264, 0.22498203814029694, -0.019909914582967758, 0.0030314228497445583, 0.007963965646922588, -0.01276861596852541, 0.026449769735336304, -0.025191573426127434, -0.004662929568439722, -0.016812816262245178, 0.012499001808464527, 0.0070030358619987965, 0.0006766259903088212, 0.009028593078255653, 0.0015986693324521184, -0.005689534824341536, -0.034482866525650024, -0.03086036816239357, -0.008620716631412506, 0.025523405522108078, 0.0379117950797081, 0.040483493357896805, -0.007901747711002827, -0.03702691197395325, -0.009339685551822186, 0.016218284144997597, 0.0032301764003932476, -0.021223416551947594, 0.0031575881876051426, 0.022592222318053246, 0.001221901853568852, -0.03224300220608711, -0.008682935498654842, 0.0044901007786393166, -0.01926007680594921, 0.008745153434574604, -0.015347226522862911, 0.009906565770506859, -0.005046610254794359, 0.019661040976643562, 0.007044515106827021, 0.006194195710122585, 0.01595558412373066, 0.01625976338982582, -0.03326614946126938, 0.00880737230181694, 0.016080021858215332, -0.001149313640780747, -0.014476167038083076, -0.0011233893455937505, 0.006978840101510286, -0.025274530053138733, -0.02864815481007099, 0.041644904762506485, -0.0034272014163434505, -0.013612021692097187, -0.012416044250130653, 0.036418553441762924, 0.011966688558459282, 0.038077712059020996, 0.02729317545890808, -0.01760091818869114, 0.02950538881123066, -0.004607624374330044, -0.01247826311737299, -0.03365328535437584, -0.007279562763869762, -0.0010663557332009077, 0.002226039068773389, 1.8174063370679505e-05, -0.02119576372206211, 0.001800879486836493, 0.005323137156665325, 0.013052055612206459, -0.005392268765717745, -0.019702520221471786, -0.05018957704305649, 0.032160043716430664, 0.010922800749540329, 0.013771024532616138, 0.018319886177778244, 0.005851994268596172, 0.004766627214848995, 0.011724728159606457, -0.018928244709968567, -0.018596414476633072, -0.018029533326625824, -0.004974022042006254, -0.011544985696673393, 0.020670363679528236, 0.017628571018576622, -0.008233579806983471, -0.03658447042107582, -0.0014941077679395676, 0.013217971660196781, 0.012692570686340332, 0.023366497829556465, 0.02506713569164276, -0.0038782854098826647, -0.018029533326625824, -0.006736879236996174, -0.02961599826812744, 0.02400250919163227, 0.014199640601873398, -0.026919864118099213, 0.014171987771987915, 0.0011856077471747994, 0.004721691831946373, 0.016881948336958885, 0.02931181900203228, 0.0031645011622458696, 0.002732428489252925, -0.041368380188941956, -0.00808149017393589, -0.0015260811196640134, 0.004082223866134882, -0.0037607618141919374, -0.016771338880062103, -0.01877615600824356, -0.02651889994740486, -0.017462654039263725, 0.037690576165914536, -0.01963338814675808, 0.003057347144931555, 0.021831775084137917, -0.009623125195503235, -0.009477948769927025, -0.04811562970280647, -0.0010974649339914322, 0.0036570641677826643, -0.038077712059020996, 0.012734049931168556, -0.025606362149119377, 0.034593477845191956, -0.0013160937232896686, -0.01624593697488308, -0.009505601599812508, -0.000539658940397203, -0.012720223516225815, -0.01480799913406372, -0.0009799411054700613, -0.015540794469416142, 0.004998218268156052, 0.014780346304178238, 0.003836806630715728, -0.014835651963949203, -0.01625976338982582, -0.009132291190326214, -0.006754162255674601, 0.021251069381833076, -0.019605735316872597, -0.05157221108675003, -0.02234334871172905, 0.03608671948313713, 0.02165203168988228, -0.0023020838852971792, 0.0028464957140386105, -0.03821597620844841, -0.06111237779259682, 0.015347226522862911, -0.0040442016907036304, -0.016577769070863724, -0.00684748962521553, -0.006242587696760893, -0.038851987570524216, -0.0013489313423633575, -0.0035274424590170383, -0.1731056571006775, 0.005392268765717745, 0.04723074287176132, -0.050549060106277466, 0.03279605507850647, -0.031496379524469376, 0.010611708275973797, 0.006342828739434481, 0.0035499101504683495, -0.0053991819731891155, 0.012257041409611702, 0.005983344279229641, -0.011482766829431057, -0.0026183612644672394, -0.0020601232536137104, -0.0034652238246053457, -0.03744170069694519, -0.009975696913897991, 0.03379154950380325, 0.005637685768306255, 0.052208222448825836, -0.031496379524469376, -0.004445164930075407, 0.012927618809044361, -0.01093662716448307, 0.0058139716275036335, -0.001946055912412703, -0.01180768571794033, 0.024140771478414536, -0.03218769654631615, 0.009553994052112103, -0.012934532016515732, 0.024928873404860497, 0.007922487333416939, 0.005160677712410688, 0.013418452814221382, -0.005001674871891737, 0.003072901861742139, -0.011206240393221378, 0.007376347202807665, -0.0009151301928795874, 0.010238396935164928, -0.013535977341234684, 0.009996436536312103, -0.014489993453025818, 0.004075310658663511, -0.005917669273912907, -0.03406807780265808, 0.017753006890416145, -0.018900593742728233, -0.008434060961008072, -0.009885826148092747, 0.009865086525678635, -0.010584055446088314, 0.03218769654631615, 0.02631150558590889, 0.0016824915073812008, 0.04380181431770325, 0.010307529009878635, -0.022301869466900826, -0.0023331930860877037, -0.021887080743908882, 0.013072795234620571, -0.00836492981761694, -0.008247405290603638, -0.004165181890130043, -0.0014111497439444065, 0.004165181890130043, -0.026242373511195183, 0.004963652230799198, 0.011233893223106861, -0.051793430000543594, -0.012443697080016136, -0.007639047224074602, 0.04402303323149681, 0.01587262749671936, -0.008434060961008072, -0.008579237386584282, 0.02379511296749115, -0.03086036816239357, -0.010217657312750816, 0.03863076493144035, -0.010362834669649601, 0.005012044683098793, 0.015222788788378239, -0.005416464526206255, -0.004683669190853834, -0.002877604914829135, -0.01039739977568388, 0.005637685768306255, 0.03647385910153389, -0.04100889340043068, 0.02340797707438469, -0.011247719638049603, -0.004863411653786898, 0.030334968119859695, -0.0017300195759162307, -0.02380893938243389, 0.0037331089843064547, -0.005551271606236696, 0.014890957623720169, -0.029090598225593567, -0.012167170643806458, 0.035063572227954865, 0.004465904552489519, 0.023753635585308075, -0.012153344228863716, 0.011441287584602833, 0.027071954682469368, -0.0004303445166442543, -0.00739708635956049, -0.006619355641305447, 0.012512828223407269, 0.01837519183754921, -0.014102856628596783, 0.008171360939741135, -0.00981669407337904, 0.004801193252205849, 0.031966473907232285, 0.0007833479903638363, 0.017462654039263725, 0.014711215160787106, -0.013307842426002026, 0.01906650885939598, -0.015513141639530659, -0.02138933166861534, -0.05873424932360649, -0.01895589753985405, 0.0082266665995121, 0.030307315289974213, -0.023573892191052437, 0.013757198117673397, -0.020933063700795174, 0.020739493891596794, -0.010459618642926216, 0.03240891546010971, -0.03735874220728874, -0.06199726462364197, 0.003933590836822987, 0.007535349577665329, 0.015983236953616142, 0.02429286204278469, -0.028316322714090347, -0.013722632080316544, -0.017766833305358887, 0.026657164096832275, 0.0018095208797603846, -0.03605906665325165, 0.00856541097164154, -0.00476317061111331, -0.008606890216469765, 0.027500569820404053, -0.037386395037174225, 0.012512828223407269, -0.02584141120314598, 0.017006386071443558, 0.04883459582924843, -0.00033442434505559504, -0.0003162772918585688, -0.018527282401919365, -0.000811432721093297, -0.009249814786016941, -0.01953660324215889, -0.007141299545764923, -0.0045523191802203655, -0.0031195657793432474, -0.002787733683362603, 0.020960716530680656, 0.010190005414187908, -0.006304806564003229, -0.016895774751901627, -0.03675038367509842, -0.004106420092284679, 0.005257462151348591, -0.006360111758112907, 0.01311427354812622, -0.006778358016163111, 0.011994341388344765, -0.013459932059049606, -0.011247719638049603, 0.027901533991098404, -0.006875142455101013, -0.0155269680544734, 0.00031670936732552946, -0.02195621095597744, 0.013487584888935089, -0.02853754535317421, 0.0008222345495596528, 0.0027307001873850822, 0.04076002165675163, 0.008523932658135891, -0.0028637784998863935, 0.0022087562829256058, -0.020532099530100822, 0.004635277204215527, 0.010632447898387909, -0.009740649722516537, 0.03260248526930809, -0.002582067158073187, 0.02282727137207985, -0.023919550701975822, 0.001717921462841332, -0.014780346304178238, 0.005651512183248997, 0.013812503777444363, -0.01867937110364437, -0.0026511987671256065, -0.012257041409611702, 0.0063082631677389145, -0.03113689459860325, 0.04272335767745972, 0.007500784005969763, 0.003503246232867241, -0.002030742121860385, 0.006477635353803635, -0.014476167038083076, 0.0046974956057965755, 0.004348380956798792, -0.009982610121369362, -0.019605735316872597, -0.0057413834147155285, -0.011745466850697994, -0.0030210530385375023, 0.006996123120188713, -0.012692570686340332, 0.01325944997370243, -0.041064199060201645, -0.007645960431545973, -0.06608985364437103, 0.03589315339922905, 0.007224257569760084, -0.00476317061111331, 0.010860581882297993, -0.005848537664860487, 0.034095730632543564, 0.005381898954510689, 0.013515237718820572, 0.0033425153233110905, -0.019909914582967758, -0.012187909334897995, -0.009927304461598396, -0.013798677362501621, -0.011475853621959686, -0.032740749418735504, 0.008613803423941135, 0.021541422232985497, 0.023186754435300827, -0.009132291190326214, 0.00020004970428999513, -0.007970878854393959, 0.03846484795212746, 0.007244996726512909, -0.03135811537504196, 0.02571697346866131, -0.001304859877564013, 0.011289197951555252, -0.016301242634654045, 0.00826814491301775, -0.0037953276187181473, -0.03066680021584034, 0.005374985747039318, 0.06111237779259682, 0.010577142238616943, -0.009229075163602829, 0.006239131558686495, 0.03899025171995163, 0.018319886177778244, 0.013674240559339523, -0.03655681759119034, -0.016785165295004845, 0.03282370790839195, -0.010570229031145573, 0.01953660324215889, 0.01519513688981533, -0.0031593162566423416, 0.004483187571167946, -0.010881321504712105, 0.008330363780260086, 0.012360738590359688, 0.0001986454735742882, -0.007480044383555651, -0.022854922339320183, -0.01339771319180727, -0.04399538040161133, 0.02051827311515808, -0.0006338508101180196, -0.0053265937604010105, -0.022218912839889526, 0.04916642978787422, 0.024113118648529053, 0.028316322714090347, -0.004438251722604036, 0.012989836744964123, 0.008351103402674198, -0.04385711997747421, -0.003065988654270768, -0.011116369627416134, -0.015499316155910492, -0.02205299586057663, -0.01097810547798872, 0.00048046495066955686, -0.00042105495231226087, 0.02166585810482502, -0.003961243666708469, -0.01769770309329033, 0.0057310136035084724, -0.018167797476053238, 0.009747562929987907, 0.0015485489275306463, -0.016605421900749207, -0.013418452814221382, 0.009726823307573795, 0.0063082631677389145, -0.006194195710122585, -0.006360111758112907, 0.023463280871510506, -0.020684190094470978, 0.020200267434120178, -0.009934217669069767, 0.020144961774349213, -6.130032852524891e-05, 0.014420862309634686, 0.026947516947984695, 0.0193568617105484, 0.0031956105958670378, -0.015637578442692757, 0.01334932167083025, 0.02980956807732582, -0.0036501511931419373, 0.024735303595662117, -0.01252665463835001, 0.0006619355408474803, -0.009484861977398396, 0.036114372313022614, -0.017490306869149208, -0.054226864129304886, -0.012734049931168556, 0.0010464803781360388, -0.01585880108177662, 0.023629197850823402, -0.013542890548706055, 0.018831461668014526, -0.023366497829556465, -0.006208022125065327, -0.005914212670177221, -0.018458150327205658, -0.013045142404735088, 0.017835965380072594, 0.02503948286175728, 0.02651889994740486, 0.04546097293496132, 0.005727556999772787, 0.0061630867421627045, -0.009471035562455654, 0.02447260357439518, -0.0208086259663105, 0.008053837344050407, 0.012720223516225815, 0.011427461169660091, 0.019896088168025017, -0.008205926977097988, -0.01127537153661251, -0.036031413823366165, -0.0005284250364638865, 0.012194822542369366, -0.0023452911991626024, 0.015886453911662102, 0.07244996726512909, 0.008005444891750813, 0.00195815390907228, 0.012637265026569366, -0.04402303323149681, 0.010037915781140327, 0.006287523545324802, -0.005036240443587303, 0.01296218391507864, -0.03445521369576454, 0.0061665428802371025, -0.0007582877879031003, -0.01465590950101614, -0.0031645011622458696, 0.008309624157845974, -0.01335623487830162, -0.026394464075565338, 0.017725354060530663, 0.0113721564412117, -0.006152716930955648, 0.05071497708559036, -0.014448515139520168, 0.0008014950435608625, 0.021223416551947594, 0.008938722312450409, -0.020919237285852432, 0.016024716198444366, -0.021126631647348404, 0.0082266665995121, -0.010100133717060089, -0.00490834703668952, 0.03495296090841293, -0.03666742518544197, -0.007030688691884279, -0.015015394426882267, -0.032077085226774216, -0.004455534741282463, 0.006062845699489117, 0.04651177302002907, 0.0018579130992293358, 0.013902374543249607, 0.0227443128824234, -0.007307215128093958, 0.006201108917593956, -0.03686099499464035, -0.010342095047235489, 0.016577769070863724, -0.009353511966764927, -0.04606933146715164], "15225548-ae59-44c6-b10d-3788fc066586": [-0.007206370588392019, -0.005778363905847073, -0.017778506502509117, -0.02770821563899517, -0.023350875824689865, 0.026116110384464264, -0.005537453107535839, -0.03932778909802437, -0.008498210459947586, 0.003969788551330566, 0.004696012008935213, 0.0008602081215940416, -0.0021245526149868965, 0.025389887392520905, -0.018281277269124985, -0.015725528821349144, 0.0003048479848075658, 0.013637636788189411, 0.01622829958796501, -0.007639311254024506, 0.023029660806059837, 0.008344586007297039, -0.004001211374998093, -0.026814401149749756, -0.015013271942734718, 0.004329408518970013, 0.041506458073854446, -0.009126672521233559, 0.015390349552035332, -0.013861090876162052, 0.00461919978260994, 0.0009575324947945774, -0.04611518606543541, -0.02365812286734581, -0.0043189343996346, -0.012038549408316612, -0.007492670323699713, -0.022121882066130638, -0.006064663641154766, -0.003222616156563163, 0.00018373801140114665, -0.028448404744267464, -0.000683452992234379, 0.015543974004685879, -0.0014157864497974515, 0.014063594862818718, 0.015907084569334984, -0.03181416913866997, -0.005404777824878693, 0.020934784784913063, -0.008260791189968586, 0.031842101365327835, -0.05091943219304085, -0.024817287921905518, 0.016689172014594078, -0.029551705345511436, -0.004448118153959513, 0.007084169425070286, -0.014594296924769878, -0.041869569569826126, 0.033629730343818665, -0.0036415914073586464, -0.025892656296491623, -0.010069366544485092, 0.012373729608952999, -0.02585075981914997, 0.006619805470108986, -0.010502307675778866, -0.03633910045027733, -0.0008410050650127232, 0.006864207796752453, 0.027945633977651596, 0.023392772302031517, -0.007618362549692392, 0.029439978301525116, 0.02402123436331749, -0.021968256682157516, 0.006811835803091526, 0.020459948107600212, 0.005062615033239126, 0.005830735899507999, -0.005942462477833033, 0.014650160446763039, 0.008770544081926346, 0.010474375449120998, 0.010928265750408173, 0.003910433501005173, 0.037819478660821915, 0.012918396852910519, -0.004050091840326786, -0.005872633308172226, 0.0015318774385377765, 0.012855550274252892, 0.018015926703810692, 0.0016724086599424481, -0.01815558411180973, -0.005265119485557079, 0.017890233546495438, -0.027470795437693596, -0.027289239689707756, 0.00014140407438389957, 0.02519436553120613, -0.02485918439924717, -0.007422841154038906, -0.030501382425427437, 0.0001396583393216133, 0.019635962322354317, -0.012932362966239452, -0.0029764685314148664, -0.028197020292282104, -0.006427775137126446, 0.014042646624147892, -0.011682420037686825, 0.014126441441476345, -0.01578139327466488, -0.007297148462384939, 0.0467296801507473, -0.002740795025601983, -0.023015694692730904, -0.011277411133050919, 0.025766965001821518, 0.027023889124393463, 0.027470795437693596, 0.009922725148499012, 0.03298730030655861, -0.0029764685314148664, -0.0033587832003831863, 0.02358829416334629, -0.015739494934678078, -0.02449607290327549, 0.04564034566283226, -0.014252133667469025, 0.018574560061097145, 0.0182254146784544, -0.003795215394347906, 0.04242820292711258, -0.009140638634562492, 0.009329177439212799, -0.004758858121931553, -0.013875056058168411, 0.04692520201206207, 0.025320056825876236, 0.0004652368661481887, 0.014594296924769878, -0.011905874125659466, 0.0200828704982996, 0.014084544032812119, 0.016270197927951813, 0.021046511828899384, -0.010160144418478012, 0.02336484007537365, -0.006857224740087986, 0.0012220104690641165, 0.023169320076704025, -0.003833621507510543, -0.0005638705333694816, -0.007087660953402519, 0.025822827592492104, -0.0018906248733401299, -0.03754016384482384, 0.016759000718593597, 0.02938411571085453, 0.013525910675525665, -0.02628370001912117, -0.0020355202723294497, 0.024663662537932396, -0.006717566400766373, 0.015278622508049011, 0.006333505734801292, 0.0015659191412851214, 0.006075137760490179, 0.007820867002010345, -0.0018399986438453197, 0.0013686517486348748, -0.01779247261583805, 0.029831022024154663, -0.0031632615718990564, 0.0013957105111330748, -0.012331831268966198, 0.03527769818902016, -0.01571156270802021, 0.006661702878773212, 0.015069135464727879, 0.027470795437693596, -0.009552630595862865, -0.0374842993915081, 0.007478704210370779, 0.008777527138590813, 0.010655931197106838, -0.013267542235553265, 0.013072021305561066, 0.014971374534070492, 0.027694249525666237, 0.025026775896549225, -0.5586333870887756, -0.026381460949778557, -0.023965371772646904, -0.019733723253011703, 0.02052977681159973, 0.031004151329398155, 0.020864956080913544, 0.03223314508795738, -0.023057593032717705, 0.031087948009371758, -0.02358829416334629, 0.02044598199427128, -0.008679766207933426, -0.037931207567453384, -0.001852218760177493, -0.018728183582425117, -0.02508263848721981, -0.012443558312952518, 0.011745266616344452, 0.029328251257538795, -0.02566920407116413, 0.02089288830757141, -0.018393004313111305, 0.024733493104577065, 0.019314749166369438, -0.013302457518875599, -0.0038126728031784296, -0.019747689366340637, 0.005198781844228506, 0.03379731997847557, -0.020627537742257118, 0.018909739330410957, 0.0015502076130360365, 0.0112075824290514, 0.04935525730252266, -0.03069690428674221, -0.027512693777680397, 0.031227605417370796, 0.0009025420295074582, 0.06921467185020447, -0.019999075680971146, -0.019929245114326477, 0.03226107731461525, -0.019635962322354317, 0.0009147621458396316, -0.01643778756260872, 0.011179650202393532, -0.024272620677947998, -0.00045301674981601536, -0.014482569880783558, 0.000685635197442025, -0.01953820139169693, 0.011549744755029678, -0.011137752793729305, -0.012820635922253132, -0.013400218449532986, 0.01808575540781021, -0.011905874125659466, -0.007010848727077246, -0.014706023968756199, -0.013588757254183292, -0.010250922292470932, -0.020585639402270317, -0.011424052529036999, 0.002908384893089533, 0.02238723263144493, -0.02988688461482525, 0.0017911182949319482, -0.011263445019721985, 0.009035894647240639, 0.010229974053800106, 0.015278622508049011, -0.017764540389180183, 0.030082406476140022, 0.007541550323367119, 0.03080863133072853, 0.05348914489150047, -0.03047345019876957, 0.013979800045490265, 0.0005752178258262575, 0.0017492207698523998, -0.023239148780703545, -0.018323173746466637, -0.009175552986562252, 0.02223360911011696, -0.0015859950799494982, -0.03354593366384506, 0.015138964168727398, 0.017555054277181625, -0.016395889222621918, 0.029076866805553436, 0.002964248415082693, 0.007304131519049406, -0.031478989869356155, -0.0007345156045630574, 0.011738283559679985, -0.013414183631539345, 0.002941553946584463, -0.0032295992132276297, -0.03133933246135712, -0.044969987124204636, 0.005219730548560619, -0.017694711685180664, -0.016940556466579437, -0.013386252336204052, -0.0042630708776414394, -0.016898659989237785, 0.03619944304227829, 0.01720590703189373, 0.007332062814384699, -0.016172436997294426, -0.03647875785827637, 0.003728877753019333, -0.009245382621884346, -0.013281508348882198, -0.03896467760205269, 0.007506635971367359, 0.010984128341078758, -0.0050835637375712395, 0.0001657351676840335, 0.03357386589050293, -0.00845631305128336, 0.02460779994726181, 0.016130538657307625, -0.006920070853084326, 0.011368189007043839, -0.0010107773123309016, -0.017471259459853172, -0.018658354878425598, -0.004339883103966713, -0.013553841970860958, -0.0010919537162408233, -0.011060941033065319, -0.02646525576710701, 0.010907316580414772, -0.009671340696513653, -0.015194827690720558, -0.029551705345511436, -0.00511149549856782, -0.0346352681517601, -0.03860156610608101, -0.01953820139169693, 0.013044089078903198, 0.011500864289700985, -0.02737303450703621, -0.014706023968756199, 0.010271871462464333, 0.000933965144213289, -0.00593198835849762, 0.004552862141281366, 0.0037812497466802597, -0.015278622508049011, -0.017694711685180664, 0.004818212706595659, -0.0013808718649670482, 0.007422841154038906, -0.018602490425109863, -0.029607567936182022, 0.02347656711935997, -0.016870727762579918, 0.017331600189208984, 0.00527559407055378, -0.02249895967543125, 0.0022746853064745665, -0.008882270194590092, -0.0326521210372448, -0.012967277318239212, 0.00872864667326212, -0.02446814253926277, -0.02694009430706501, -0.012296916916966438, 0.01596294902265072, -0.020459948107600212, -0.012450541369616985, 0.016032777726650238, 0.018169550225138664, -0.0017579493578523397, -0.012792704626917839, -0.016828831285238266, -0.006057680584490299, 0.008344586007297039, 0.010984128341078758, -0.02157721482217312, -0.013002191670238972, -0.0017343820072710514, -0.007276199758052826, 0.00854709092527628, 0.019370611757040024, -0.027317171916365623, -0.006693126168102026, -0.052734989672899246, 0.010076349601149559, -0.007339045871049166, 0.015530007891356945, 0.023713987320661545, -0.007241284940391779, 0.021884461864829063, 0.01756902039051056, -0.010683863423764706, 0.03871329128742218, 0.02974722720682621, 0.008114149793982506, 0.011773197911679745, -0.01724780537188053, 0.01720590703189373, -0.029551705345511436, 0.00045999966096132994, -0.028881344944238663, 0.010160144418478012, 0.011486899107694626, -0.032065555453300476, -0.028169088065624237, -0.023322943598031998, 0.0060332403518259525, 0.03538942337036133, 0.017080215737223625, 0.00473790941759944, 0.016172436997294426, 0.00012525607598945498, -0.012262002564966679, 0.02085098996758461, 0.008917185477912426, -0.0057225008495152, -0.00923839956521988, -0.005443183705210686, -0.017415395006537437, -0.004636656958609819, -0.002590662334114313, -0.013065038248896599, -0.02318328432738781, -0.024454176425933838, -0.03717705234885216, -0.013309440575540066, -0.002650017151609063, 0.011780180968344212, -0.012925379909574986, 0.027093717828392982, -0.003563033416867256, 0.012701926752924919, -0.00211407826282084, 0.010760675184428692, 0.003222616156563163, -0.018909739330410957, -0.02938411571085453, 0.006721057929098606, 0.021088410168886185, 0.04357340186834335, -0.014971374534070492, 0.019091295078396797, -0.0006817072862759233, -0.03742843493819237, 0.013490996323525906, -0.009133655577898026, 0.03916019946336746, -0.011012060567736626, 0.012534336186945438, 0.00024243815278168768, 0.028965139761567116, 0.02682836726307869, 0.03036172315478325, 0.034607335925102234, 0.020990649238228798, 0.007122575305402279, 0.002836810192093253, 0.03441181406378746, 0.007035288959741592, 0.010376614518463612, -0.016284162178635597, -0.01942647621035576, -0.01815558411180973, 0.013079003430902958, -0.014314980246126652, -0.015460178256034851, 0.010823521763086319, 0.013225644826889038, -0.0006961095496080816, 0.006818818394094706, -0.00403612619265914, 0.03480285778641701, -0.004968345630913973, -0.009936691261827946, -0.04105955362319946, 0.012534336186945438, 0.041283007711172104, -0.014608263038098812, -0.015069135464727879, 0.005945954006165266, -0.003892976325005293, 0.013435132801532745, 0.020683400332927704, 0.015404315665364265, -0.011850010603666306, 0.02522229589521885, 0.005160375963896513, 0.0026430340949445963, 0.009971605613827705, 0.0040535833686590195, -0.007234302349388599, -0.028224950656294823, -0.0036031852941960096, 0.01069782953709364, -0.013553841970860958, -0.007771987002342939, 0.013421166688203812, 0.049746301025152206, -0.013260560110211372, 0.02157721482217312, -0.018546627834439278, 0.01600484549999237, -0.0016191639006137848, -0.0007729216595180333, -0.04203716292977333, 0.0003262331592850387, -0.003152786986902356, -0.0012508149957284331, -0.0056596542708575726, -0.005973885767161846, -0.030529314652085304, 0.016158470883965492, -0.022373266518115997, -0.027317171916365623, -0.020362187176942825, -0.030780699104070663, 0.013986783102154732, -0.0228900033980608, 0.01994321122765541, -0.016996420919895172, 0.003109143814072013, -0.018393004313111305, -0.0006345725851133466, -0.013840141706168652, -0.024007270112633705, 0.02270844578742981, -0.006829292979091406, 0.014440672472119331, -0.01698245480656624, 0.031618647277355194, -0.010816538706421852, 0.012401660904288292, 0.008372517302632332, -0.006682651583105326, -0.03117174282670021, 0.031255535781383514, 0.017848337069153786, -0.035920124500989914, 0.0011582913575693965, 0.03575253486633301, 0.013539876788854599, 0.006773429457098246, -0.0008392593590542674, -0.01566966623067856, 0.026381460949778557, -0.008707697503268719, -0.016270197927951813, -0.015627767890691757, -0.018825944513082504, -0.018965603783726692, 0.009706255048513412, -0.01600484549999237, 0.021018581464886665, 0.009042877703905106, 0.02286207117140293, 0.003049788996577263, 0.00872864667326212, -0.006972442846745253, 0.015697598457336426, 0.005345423240214586, 0.004420186392962933, -0.0012639079941436648, -0.00391741655766964, 0.00011707297380780801, -0.008812441490590572, 0.004071040544658899, 0.009336160495877266, -0.007262233644723892, -0.018937671557068825, -0.02220567688345909, -0.0102788545191288, -0.012394677847623825, 0.023853644728660583, -0.038406044244766235, -0.019663894549012184, 0.02245706133544445, -0.0013162798713892698, 0.036143578588962555, -0.027470795437693596, -0.0007502271910198033, -0.006099577993154526, 0.005195290315896273, -0.040919896215200424, -0.02610214427113533, -0.015851221978664398, -0.015376383438706398, -0.004479541443288326, 0.025236262008547783, -0.003861553268507123, -0.021158238872885704, -0.030138270929455757, 0.012024583294987679, 0.02336484007537365, 0.009000980295240879, -0.0027285749092698097, -0.021046511828899384, 0.044383421540260315, -0.00539430370554328, -0.008358552120625973, -0.03932778909802437, -0.0015022000297904015, 0.018099721521139145, 0.014426707290112972, 0.04661795496940613, 0.00025051215197890997, 0.021116342395544052, 0.014217219315469265, 0.012024583294987679, 0.014384808950126171, 0.013854107819497585, -0.008861321955919266, -0.0042525967583060265, -0.0038371130358427763, -0.021465487778186798, 0.02526419423520565, -0.021311862394213676, 0.010181093588471413, 0.012785721570253372, -0.039355721324682236, 0.016493650153279305, 0.013882039114832878, 0.0026866772677749395, 0.010474375449120998, 0.03117174282670021, 0.010767658241093159, -0.00197267415933311, -0.002676202915608883, -0.0063963523134589195, -0.028741687536239624, 0.0038266386836767197, -0.01600484549999237, -0.02347656711935997, 0.0004717833362519741, -0.018616456538438797, 0.021088410168886185, -0.020292356610298157, 0.016172436997294426, -0.011200599372386932, -0.015851221978664398, 0.01928681693971157, 0.008735629729926586, 0.009042877703905106, 0.032316941767930984, -0.024929014965891838, -0.012820635922253132, -0.007541550323367119, -0.0034181380178779364, -0.01903543248772621, 0.02136772684752941, -0.015041203238070011, -0.016563478857278824, -0.02103254571557045, -0.018183516338467598, 0.008079235441982746, 0.03418836370110512, 0.008630885742604733, -0.01837903819978237, 0.006151949986815453, -0.0007078932248987257, 0.005450166761875153, -0.018239378929138184, 0.016242265701293945, -0.021088410168886185, -0.02927238866686821, -0.008903219364583492, -0.005900565069168806, 0.01688469387590885, 0.019021466374397278, 0.016312094405293465, -0.011752249673008919, -0.021018581464886665, -0.001722161890938878, -0.022219642996788025, -0.012499421834945679, -0.010376614518463612, 0.021772734820842743, 0.019342681393027306, -0.006040223408490419, 0.027875805273652077, 0.009412972256541252, -0.003086449345573783, 0.0012455778196454048, 0.020878922194242477, -0.031478989869356155, 0.032903507351875305, -0.027722181752324104, 0.02216377854347229, 0.011319308541715145, 0.0032837167382240295, -0.004367814864963293, -0.03932778909802437, -0.011668454855680466, 0.03667427971959114, -0.002367208944633603, 0.020795127376914024, 0.03809879720211029, -0.07072298228740692, -0.0038301299791783094, -0.0056037912145257, 0.009776083752512932, 0.008595971390604973, -0.032540395855903625, -0.017485223710536957, 0.00962246023118496, 0.010418512858450413, 0.024118995293974876, 0.009643408469855785, 0.012122344225645065, -0.01596294902265072, -0.008379500359296799, -0.01772264391183853, 0.034942518919706345, 0.017443327233195305, -0.0035962022375315428, -0.0025644763372838497, 0.0012036802945658565, 0.010167127475142479, -0.019971143454313278, 0.0177505761384964, 0.020473912358283997, -0.021605145186185837, -0.012066480703651905, -0.0023410229478031397, -0.021521350368857384, 0.0010963180102407932, -0.005593316629528999, -0.016493650153279305, 0.0038580617401748896, -0.019817518070340157, -0.040305398404598236, 0.011263445019721985, 0.007394909393042326, 0.022512925788760185, 0.016102606430649757, 0.0014803784433752298, 0.0009837184334173799, -0.010313768871128559, -0.009762118570506573, -0.009922725148499012, -0.007422841154038906, -0.017010387033224106, 0.020278392359614372, 0.029803089797496796, -0.00029873792664147913, -0.008791492320597172, -0.020809093490242958, -0.009901776909828186, 0.020501844584941864, 0.02041804976761341, 0.033154889941215515, 0.0048286872915923595, -0.0059494455344974995, 0.010160144418478012, 0.008107166737318039, -0.015180861577391624, -0.027694249525666237, 0.03181416913866997, 0.00399073725566268, 0.0007663751603104174, -0.014775852672755718, 0.01566966623067856, -0.015138964168727398, -0.008735629729926586, -0.011926822364330292, -0.031004151329398155, -0.0346352681517601, -0.009783066809177399, -0.026563016697764397, 0.0336017981171608, -0.023322943598031998, 0.030976220965385437, 0.008372517302632332, 0.007918627932667732, 0.003645082702860236, -0.020362187176942825, -0.012136310338973999, 0.014971374534070492, 0.03586426377296448, 0.01983148418366909, -0.004179276060312986, -0.008093200623989105, 0.04041712358593941, 0.004563336260616779, 0.012848567217588425, -0.0029171137139201164, -0.014803783968091011, 0.04536103084683418, -0.03404870256781578, -0.00947581883519888, -0.00023676453565713018, 0.003442578250542283, 0.0219403263181448, 0.002239770721644163, -0.004085006657987833, 0.010851453058421612, -0.009042877703905106, -0.009231416508555412, 0.014342911541461945, 0.005952937062829733, -0.006469672545790672, -0.02300172857940197, -0.0001400947803631425, -0.009252365678548813, -0.03932778909802437, -0.0084004495292902, -0.012541319243609905, -0.02100461535155773, -0.014175321906805038, -0.016242265701293945, -0.0224151648581028, 0.038406044244766235, -0.017485223710536957, -0.0011233767727389932, -0.038657430559396744, 0.035193901509046555, -0.011165684089064598, 0.008156047202646732, -0.013211679644882679, 0.0068537332117557526, -0.015069135464727879, -0.02270844578742981, 0.002571459161117673, -0.007220336236059666, 0.015236725099384785, -0.008616919629275799, -0.005642197094857693, -0.033294547349214554, 0.014985340647399426, 0.005135935731232166, 0.005313999950885773, 0.008623902685940266, 0.004057074896991253, 0.010139196179807186, 0.022038087248802185, -0.02501280978322029, -0.02383967861533165, -0.009936691261827946, -0.011829061433672905, 0.008421397767961025, 0.016870727762579918, -0.007038780488073826, 0.033992841839790344, -0.0025732049252837896, -0.031981758773326874, 0.018309209495782852, 0.004479541443288326, -0.03717705234885216, 0.012199155986309052, 0.004800755530595779, -0.014901544898748398, 0.0010177601361647248, -0.02879755012691021, -0.0345514751970768, -0.0025138501077890396, 0.002016317332163453, -0.0055863335728645325, -0.010034452192485332, 0.018546627834439278, 0.04052885249257088, -0.02136772684752941, 0.024635732173919678, -0.02347656711935997, -0.05161772295832634, -0.0040431092493236065, -0.011787164025008678, -0.030445517972111702, -0.022722411900758743, -0.005966902710497379, 0.013176764361560345, 0.025403853505849838, -0.057148195803165436, -0.017359532415866852, 0.0010264888405799866, -0.03513804078102112, 0.0014489552704617381, -0.011787164025008678, 0.004448118153959513, 0.02417485974729061, 0.023029660806059837, -0.00036922175786457956, 0.025892656296491623, -0.011458966881036758, 0.023462601006031036, -0.02406313270330429, -0.005656162742525339, -0.0050207176245749, -0.005691077560186386, 0.007206370588392019, 0.004112938418984413, -0.03809879720211029, -0.0034408324863761663, 0.02256878837943077, -0.013972816988825798, 0.026549050584435463, 0.013721432536840439, 0.020110800862312317, -0.02198222279548645, -0.021046511828899384, -0.015725528821349144, -0.011982685886323452, -0.006165915634483099, 0.004758858121931553, -0.03418836370110512, 0.007422841154038906, 0.02515246719121933, 0.045919664204120636, -0.021535316482186317, -0.0013607959263026714, 0.041618186980485916, -0.00878451019525528, -0.003952330909669399, -0.006930545438081026, -0.0163260605186224, -0.01186397671699524, 0.02836460992693901, 0.015194827690720558, 0.03346214070916176, -0.011808113195002079, 0.01976165547966957, 0.024510039016604424, 0.019887348636984825, -0.0023602258879691362, -0.005090546794235706, -0.031590718775987625, -0.007737072184681892, 0.006490621715784073, -0.007325080223381519, 0.015013271942734718, -0.0002852085162885487, 0.022806206718087196, -0.013916953466832638, 0.015138964168727398, 0.013120901770889759, -0.02092082053422928, -0.04899214580655098, -0.0005437946529127657, 0.05304224044084549, -0.039243996143341064, -0.003816164331510663, -0.017150044441223145, 0.007311114110052586, 0.0011146481847390532, -0.017080215737223625, 0.015585871413350105, -0.018434900790452957, 0.0036730144638568163, -0.01571156270802021, 0.019775621592998505, -0.04600345715880394, 0.0022066019009798765, 0.021242033690214157, 0.0004525803087744862, -0.013323405757546425, 0.24713940918445587, -0.016088640317320824, -0.0019185565179213881, 0.029328251257538795, -0.013421166688203812, 0.018141617998480797, -0.014552399516105652, -0.007185421884059906, -0.0014864885015413165, 0.019971143454313278, 0.010998094454407692, 0.013777295127511024, 0.00878451019525528, 0.005240679252892733, 0.006818818394094706, -0.02592058852314949, -0.015851221978664398, -0.008826407603919506, 0.0071924044750630856, -0.0007484814268536866, 0.029663432389497757, 0.0007284055463969707, -0.013700483366847038, -0.014370843768119812, 0.021926360204815865, -0.014929477125406265, -0.015069135464727879, -0.011151718907058239, 0.02071133255958557, 0.014280065894126892, -0.0012420864077284932, 0.0010465646628290415, 0.006986408494412899, -0.000703965313732624, 0.0032383278012275696, 0.001965691102668643, 0.047260385006666183, 0.014566365629434586, 0.04200923070311546, 0.008239842019975185, 0.0004970963927917182, -0.022903967648744583, 0.0025819335132837296, -0.0033727490808814764, -0.0036415914073586464, 0.0029345708899199963, -0.003145804163068533, 0.01738746464252472, -0.0022677022498100996, 0.031087948009371758, -0.04368513077497482, -0.03552908077836037, 0.011829061433672905, 0.0008030354510992765, -0.008330619893968105, -0.008086218498647213, 0.03203762322664261, -0.005160375963896513, 0.01939854398369789, 0.015334486030042171, -0.024398311972618103, 0.03365766257047653, 0.0018731675809249282, 0.01643778756260872, -0.031032083556056023, 0.0016759000718593597, -0.009831947274506092, -0.01885387673974037, -0.006448723841458559, -0.008959082886576653, 0.009350125677883625, 0.010579119436442852, 0.0014096763916313648, 0.00234626024030149, -0.026912162080407143, -0.04466273635625839, 0.029412047937512398, 0.0012351034674793482, 0.016786932945251465, 0.02325311489403248, 0.0001444591034669429, 0.033378344029188156, 0.012520370073616505, -0.009552630595862865, -0.014412741176784039, -0.02985895425081253, 0.0034024263732135296, -0.013916953466832638, 0.002466715406626463, -0.00221882201731205, -0.012289933860301971, -0.01731763407588005, -0.005118478089570999, -0.00022999983048066497, -0.011521813459694386, 0.02902100421488285, -0.028993071988224983, 0.019189056009054184, -0.01877008192241192, 0.009161586873233318, -0.01939854398369789, 0.007220336236059666, 0.006982916966080666, 0.012841585092246532, 0.011214564554393291, -0.010334717109799385, 0.0028874361887574196, 0.0030113831162452698, -0.010160144418478012, -0.0033675117883831263, -0.012373729608952999, -0.016395889222621918, 0.0023375314194709063, -0.0034897129517048597, -0.022429129108786583, 0.02223360911011696, 0.0009278551442548633, -0.03622737526893616, 0.006881664972752333, -0.00203202897682786, 0.03605978563427925, -0.023350875824689865, -0.004982311278581619, 0.008903219364583492, 0.023937439545989037, -0.023211216554045677, -0.051561858505010605, -0.003107398049905896, 0.005778363905847073, -0.04097575694322586, 0.01779247261583805, -0.007681208662688732, 0.047260385006666183, 0.00016769912326708436, -0.003281970974057913, -0.005984359886497259, -0.004022160079330206, 0.0007934339810162783, -0.022945865988731384, -0.0063230316154658794, 0.008295705541968346, -0.0067804125137627125, 0.026995956897735596, 0.0007502271910198033, -0.023937439545989037, 0.006117035634815693, -0.012331831268966198, 0.011787164025008678, 0.011088872328400612, -0.0014096763916313648, -0.03605978563427925, -0.031087948009371758, 0.016200367361307144, -0.0011242496548220515, 0.0006153695867396891, -0.010844470001757145, 0.006948002614080906, -0.057036466896533966, 0.007255251053720713, 0.015502075664699078, -0.029188593849539757, -0.026814401149749756, 0.008260791189968586, -0.029104799032211304, -0.026632845401763916, -0.008344586007297039, -0.17708678543567657, 0.010802572593092918, 0.020459948107600212, -0.029942749068140984, 0.02198222279548645, -0.024747459217905998, 0.021228067576885223, -0.004566827788949013, 0.009552630595862865, -0.004311951342970133, 0.012122344225645065, -0.020571673288941383, -0.011912856251001358, -0.002508613048121333, -0.01863042265176773, 0.005052140448242426, -0.031590718775987625, 0.021060477942228317, 0.039132267236709595, 0.005303525365889072, 0.03544528782367706, -0.021535316482186317, 0.0060681551694869995, 0.022806206718087196, 0.009461852721869946, -0.008295705541968346, -0.0019098278135061264, -0.02569713443517685, 0.02635352872312069, -0.015264657326042652, 0.019705792888998985, -0.022582754492759705, 0.029942749068140984, 0.0038301299791783094, -0.012715891934931278, -0.007723106537014246, -0.004825195763260126, 0.007778969593346119, 0.0015877408441156149, 0.004004702903330326, -0.01903543248772621, 0.0182254146784544, 0.004287511110305786, 0.0002921914274338633, -0.002417835174128413, 0.007723106537014246, -0.0003788232570514083, -0.013106935657560825, 0.012031566351652145, -0.020571673288941383, 0.012268985621631145, -0.026814401149749756, 0.014210236258804798, -0.014985340647399426, 0.030249997973442078, -0.014468604698777199, 0.009266330860555172, 0.02376984991133213, 0.007667243015021086, -0.014706023968756199, -0.011884924955666065, -0.058712366968393326, 0.013826175592839718, 0.0020198088604956865, 0.006103069521486759, -0.017736610025167465, 0.011905874125659466, 0.004402729216963053, -0.044020310044288635, 0.0025784422177821398, 0.02533402293920517, -0.027331138029694557, -0.002011080039665103, -0.025403853505849838, 0.022792242467403412, 0.02184256538748741, -0.01987338252365589, 0.006281134206801653, 0.027149582281708717, -0.03608771413564682, -0.04550068825483322, 0.03575253486633301, 0.022121882066130638, -0.004727434832602739, 0.018057823181152344, 0.002234533429145813, -0.006612822413444519, -0.04036126285791397, -0.024733493104577065, 0.0008964319713413715, 0.03343420848250389, -0.036255307495594025, 0.012960294261574745, -0.017261771485209465, -0.0005298288306221366, 0.0033587832003831863, 0.015948982909321785, -0.016284162178635597, 0.01636795699596405, -0.0004353412368800491, 0.006975934375077486, -0.03251246362924576, -0.02614404261112213, 0.008630885742604733, -0.0004296676197554916, 0.017233839258551598, -0.0042910026386380196, 0.015879154205322266, 0.012722874991595745, 0.005303525365889072, -0.024007270112633705, 0.006085612345486879, 0.017694711685180664, 0.0336017981171608, 0.007604396902024746, 0.009503750130534172, -0.007234302349388599, -0.009922725148499012, 0.01793213188648224, -0.004531913436949253, -0.0004359958984423429, -0.013679535128176212, -0.00038100540405139327, 0.03695359826087952, -0.005851684603840113, 0.0011059194803237915, -0.029188593849539757, -0.008980031125247478, 0.007967508397996426, 0.0177505761384964, -0.007883713580667973, 0.02336484007537365, 0.005282576661556959, 0.012227088212966919, -0.006483638659119606, 0.04262372478842735, -0.02843443863093853, -0.040333330631256104, 0.0007436806918121874, 0.007590430788695812, 0.011919839307665825, 0.03762395679950714, -0.018434900790452957, 0.004842652939260006, -0.009482801891863346, 0.021409623324871063, 0.010502307675778866, -0.030305860564112663, -0.0055863335728645325, 0.007499652914702892, -0.003182464512065053, 0.04315442964434624, -0.03564080968499184, 0.03321075439453125, 0.013875056058168411, 0.024230722337961197, 0.016633309423923492, 0.0012080447049811482, 0.020096834748983383, -0.028574097901582718, -0.011039991863071918, -0.004849635995924473, -0.007485687267035246, -0.018574560061097145, 0.014314980246126652, -0.005666637327522039, -0.011843027547001839, 0.016242265701293945, 0.007129558362066746, -0.015879154205322266, -0.02351846545934677, -0.037819478660821915, -0.004175784531980753, 0.015502075664699078, -0.02041804976761341, -0.018965603783726692, -0.029551705345511436, 0.008931150659918785, 0.01713607832789421, -0.019454406574368477, 0.019621998071670532, 0.006679160054773092, -0.0026604915037751198, -0.002990434179082513, -0.026227837428450584, 0.024300551041960716, -0.0010622763074934483, -0.004996277391910553, 0.015851221978664398, 0.028127189725637436, -0.0032906997948884964, -0.003091686638072133, -0.012003635056316853, -0.018462833017110825, 0.007394909393042326, -0.023141387850046158, 0.002489409875124693, 0.022359300404787064, 0.0044166953302919865, 0.018169550225138664, -0.023308977484703064, 0.014594296924769878, -0.009978588670492172, -0.006131001282483339, 0.04298683628439903, -0.029244456440210342, -0.0036206424701958895, -0.008602953515946865, -0.0005533961812034249, -0.010607050731778145, 0.031115878373384476, 0.005121969617903233, 0.008805458433926105, -0.008232858963310719, 0.017778506502509117, -0.013616688549518585, -0.0018644388765096664, 0.019971143454313278, 0.022401198744773865, -0.01819748245179653, -0.005764398258179426, -0.019440440461039543, 0.003980262670665979, -0.009880827739834785, -0.0016776458360254765, 0.0033954435493797064, -0.008372517302632332, 0.004332900047302246, -0.07440996170043945, 0.01903543248772621, 0.020990649238228798, 0.006354454439133406, 0.014482569880783558, -0.009657374583184719, 0.03692566603422165, -0.014077560976147652, 0.007744055241346359, -0.015613802708685398, -0.01946837268769741, -0.011996651999652386, -0.023029660806059837, -0.017918165773153305, 0.0007205497822724283, -0.031953830271959305, 0.02041804976761341, -0.00033365251147188246, 0.00028826354537159204, 0.006654720287770033, 0.0014358623884618282, 0.012771755456924438, 0.027917703613638878, 0.024747459217905998, -0.003690471639856696, 0.027987532317638397, -0.004654114134609699, -0.013511944562196732, -0.012813652865588665, 0.011200599372386932, 0.0033256143797188997, -0.025780929252505302, 0.005327965598553419, 0.08005215972661972, 0.024049166589975357, -0.011270428076386452, -0.010614033788442612, 0.0022066019009798765, 0.028043394908308983, -0.0022362791933119297, -0.04659002274274826, -0.0177505761384964, -0.005128952674567699, 0.010998094454407692, 0.026297666132450104, 0.005554910749197006, -0.011137752793729305, 0.027805976569652557, 0.009601511061191559, 0.02879755012691021, 0.011354222893714905, 0.009357108734548092, 0.0034129007253795862, -0.0035525590647011995, -0.021633077412843704, -0.08021975308656693, 0.028350643813610077, 0.0007174947531893849, -0.012792704626917839, -0.01695452257990837, 0.011410086415708065, 0.0337693877518177, 0.005952937062829733, -0.013972816988825798, 0.010893350467085838, 0.008826407603919506, -0.04756763204932213, -0.0007013467256911099, 0.01779247261583805, -0.012394677847623825, -0.019370611757040024, -0.011926822364330292, -0.01647968403995037, 0.008330619893968105, 0.01877008192241192, -0.005963411182165146, 0.0037184034008532763, -0.004469066858291626, -0.005418743938207626, 0.017946097999811172, 0.020473912358283997, -0.03943951800465584, -0.024929014965891838, 0.016521582379937172, 0.04393651336431503, -0.02614404261112213, 0.00038515153573825955, 0.002567967865616083, -0.011340257711708546, 0.010634982958436012, -0.016745034605264664, 0.01618640124797821, 0.0017946097068488598, 0.04064057767391205, 0.011996651999652386, 0.03927192464470863, 0.016717104241251945, -0.021046511828899384, 0.018420934677124023, 0.01953820139169693, -0.0035298645962029696, 0.00224151648581028, 0.013442115858197212, -0.012974260374903679, 0.0006162424688227475, 0.0046645887196063995, -0.030557245016098022, -0.05639404058456421, 0.004608725197613239, 0.0032261076848953962, -0.004242122173309326, 0.0033081569708883762, 0.004224664997309446, 0.01808575540781021, -0.006382386200129986, -0.019482338801026344, 0.003341325791552663, 0.004877567756921053, -0.02902100421488285, 0.03639496490359306, 0.01786230131983757, 0.023322943598031998, 0.024510039016604424, -0.0068258014507591724, 0.026046281680464745, -0.01935664564371109, 0.009273313917219639, 0.0014341166242957115, 0.009978588670492172, -0.0057504321448504925, 0.019594065845012665, 0.021269965916872025, -0.009000980295240879, -0.00807225238531828, -0.027023889124393463, 0.014803783968091011, 0.0318700335919857, -0.009259347803890705, -0.014140407554805279, 0.06826499849557877, 0.02293189987540245, -0.012129327282309532, 0.015460178256034851, -0.02515246719121933, 0.010146178305149078, 0.02252689003944397, -0.015013271942734718, -0.013072021305561066, -0.03240073472261429, -0.002604628214612603, 0.007213353645056486, 0.0008327128598466516, -0.02587869018316269, 0.007771987002342939, -0.005572367925196886, 0.0013538131024688482, 0.02606024779379368, -0.025655237957835197, -0.00022607194841839373, 0.0382663868367672, -0.010634982958436012, 0.0015528262592852116, 0.011354222893714905, 0.004158327355980873, -0.014175321906805038, 0.019915279000997543, 0.012639080174267292, 0.019077328965067863, 0.015124998986721039, 0.016088640317320824, 0.009182536043226719, -0.03245659917593002, -0.01742936111986637, -0.007590430788695812, -0.020096834748983383, -0.007080677896738052, 0.006591873709112406, 0.04589173197746277, -0.002457986818626523, 0.020515810698270798, 0.012366746552288532, -0.020152699202299118, -0.012499421834945679, -0.011843027547001839, 0.013826175592839718, -0.017345566302537918, 0.010662914253771305, -0.02573903277516365], "5b34d215-2611-416b-b34a-7470223a687e": [-0.04456789419054985, -0.012681921944022179, -0.007225907873362303, -0.026088524609804153, -0.02385873533785343, 0.028792142868041992, -0.012082666158676147, -0.02169862762093544, 0.0002456251240801066, -0.013044262304902077, 0.012591336853802204, 0.0282346960157156, 0.01521830540150404, 0.008459259755909443, -0.0323040597140789, 0.000735133362468332, 0.006637104321271181, 0.0014458784135058522, 0.025308098644018173, -0.0032941638492047787, 0.031133420765399933, 0.023677565157413483, -0.010605431161820889, -0.04537619277834892, -0.004888114053755999, 0.0012159314937889576, 0.03394852951169014, -0.014605114236474037, -0.000393914757296443, -0.013162720017135143, 0.02268809638917446, 0.011692453175783157, -0.030548101291060448, -0.006692849099636078, 0.026632035151124, -0.027077993378043175, 0.004114656243473291, -0.018618732690811157, 0.0006401931750588119, 0.007037769537419081, -0.012577400542795658, -0.014124316163361073, 0.005821838043630123, 0.004132076632231474, 0.005936811678111553, 0.0023325677029788494, 0.03183022886514664, 0.001884868019260466, -0.01310697477310896, 0.02321767248213291, -0.008257185108959675, 0.05482492223381996, -0.03865895792841911, -0.023022565990686417, 0.03573235869407654, -0.006459418218582869, -0.0037523158825933933, 0.01874415948987007, -0.019580328837037086, -0.029600441455841064, 0.050588324666023254, 0.02954469621181488, -0.02482033148407936, -0.011901495978236198, 0.011824846267700195, -0.03171873837709427, 0.013678357936441898, -0.004058911930769682, -0.04336938634514809, 0.0010774406837299466, 0.00834777019917965, 0.028708525002002716, 0.0052469708025455475, 0.0007455854793079197, 0.022897139191627502, 0.0032192571088671684, -0.015413411892950535, 0.008389579132199287, 0.027621503919363022, 0.0008109113550744951, 0.01372713502496481, 0.012716761790215969, 0.0128700602799654, 0.014019794762134552, -0.0051459334790706635, 0.00453622592613101, -0.014995327219367027, -1.224859352078056e-05, 0.017768627032637596, -0.005410721059888601, 6.113409472163767e-05, -0.005961199756711721, 0.016138093546032906, 0.004902050364762545, 0.0008048142772167921, -0.02865278162062168, -0.012061761692166328, 0.022283947095274925, -0.038714699447155, -0.033363208174705505, -0.009943462908267975, 0.017949797213077545, -0.025475332513451576, 0.009455696679651737, -0.032471295446157455, -0.01740628480911255, 0.012368357740342617, -0.014242773875594139, -0.0042505343444645405, -0.010041016153991222, -0.03308448567986488, 0.007198035717010498, -0.03068746253848076, 0.011371920816600323, -0.02233969233930111, 0.004801013041287661, 0.03617831692099571, 0.008417450822889805, -0.019914798438549042, 0.010263994336128235, 0.04019193723797798, 0.043620236217975616, 0.019510649144649506, 0.0022001739125698805, 0.03447810187935829, 0.005320135969668627, 0.022534798830747604, -0.003787156194448471, -0.0017411512089893222, -0.027426397427916527, 0.04518108814954758, -0.0035502412356436253, 0.012500750832259655, 0.0026792301796376705, -0.006340960972011089, 0.031551506370306015, -0.014410007745027542, 0.0032558394595980644, -0.01637500897049904, 0.0036512785591185093, 0.035174913704395294, 0.028569163754582405, 0.028457675129175186, -0.018981073051691055, -0.0018360913963988423, 0.013093038462102413, 0.00912819616496563, 0.006034364923834801, 0.02528022602200508, -0.012960645370185375, 0.014521497301757336, 0.000744279008358717, 0.005278327036648989, 0.03963448852300644, 0.001966743031516671, -0.018479371443390846, -0.006361864972859621, 0.03224831447005272, -0.03166299685835838, -0.04807981103658676, -0.0012612240388989449, 0.014925646595656872, 0.014396071434020996, -0.023621821776032448, 0.00964383501559496, 0.012458942830562592, -0.022074904292821884, 0.0001683228911133483, 0.010486973449587822, -0.024653097614645958, 0.016347136348485947, 0.0005779158673249185, -0.028597036376595497, 0.013350858353078365, -0.009615962393581867, 0.032081082463264465, 0.005619763396680355, 0.007407078519463539, 0.005118061322718859, 0.01938522234559059, -0.017880115658044815, -0.0062643117271363735, 0.024945758283138275, 0.025043310597538948, -0.01761532761156559, -0.04420555382966995, 0.004807981196790934, 0.0018204131629317999, 0.030241506174206734, -0.034645337611436844, 0.0068984078243374825, 0.021991288289427757, 0.005912423133850098, 0.02176830917596817, -0.5480819940567017, -0.022116713225841522, -0.012897931970655918, -0.015817562118172646, 0.011950272135436535, 0.02126660756766796, 0.00396832637488842, 0.04702066257596016, -0.020723095163702965, 0.041529808193445206, -0.01761532761156559, -0.0022158522624522448, -0.011518251150846481, -0.017057880759239197, -0.008856440894305706, -0.01857692375779152, -0.041641298681497574, -0.005961199756711721, 0.015120753087103367, 0.014702667482197285, -0.026478737592697144, 0.020583733916282654, -0.028248632326722145, 0.011155909858644009, 0.01782437041401863, -0.01683490164577961, 0.008710110560059547, -0.002191463951021433, 0.01045910082757473, 0.04465151205658913, -0.01654224283993244, 0.008591653779149055, 0.011141973547637463, -0.008180536329746246, 0.05691535025835037, -0.016040541231632233, -0.033892784267663956, 0.039829596877098083, 0.015636391937732697, 0.04780108854174614, -0.022451182827353477, -0.014124316163361073, 0.017949797213077545, -0.013448411598801613, 0.0032314511481672525, -0.01821458339691162, 0.008779792115092278, -0.03132852539420128, 0.006379285361617804, -0.03960661590099335, 0.011218623258173466, 0.014702667482197285, 0.018730223178863525, -0.006313088349997997, -0.025057246908545494, -0.043090660125017166, 0.02500150166451931, -0.01967788301408291, -0.016165966168045998, -0.03592746704816818, -0.03818512707948685, 0.010542718693614006, -0.001715020858682692, -0.015970859676599503, -0.011615804396569729, 0.012681921944022179, -0.008933089673519135, 0.011406761594116688, 0.010877186432480812, -0.009225749410688877, 0.004832369741052389, 0.03185810148715973, 0.00015503997565247118, 0.021405968815088272, 0.016890646889805794, 0.028025653213262558, 0.049668535590171814, -0.05173109099268913, 0.008298994041979313, 0.0116297397762537, 0.014619050547480583, -0.004097236320376396, -0.025419587269425392, -0.01740628480911255, 0.01903681829571724, 0.010145537555217743, -0.013573836535215378, 0.0030816372018307447, 0.03249916434288025, -0.024137459695339203, 0.01807522214949131, -0.011950272135436535, 0.020123841241002083, -0.04484662041068077, 0.0006336605874821544, 0.006490774918347597, -0.022576607763767242, -0.007811227347701788, 0.02408171445131302, -0.012368357740342617, -0.04108384996652603, 0.025029374286532402, -0.028708525002002716, 0.00453622592613101, 0.005884550977498293, -0.0034892703406512737, -0.03152363374829292, 0.005839258432388306, 0.01917617954313755, 0.006574391853064299, -0.01818671077489853, -0.021531393751502037, 0.006483806762844324, 0.011553090997040272, -0.03183022886514664, -0.03578810393810272, 0.0166955403983593, 0.010354580357670784, -0.012967613525688648, 0.014033731073141098, -0.005473433528095484, -0.007657929323613644, 0.0351470410823822, 0.03261065483093262, -0.0011889301240444183, 0.00487417820841074, 0.0044177682138979435, -0.00017931940965354443, -0.019273733720183372, 0.0053619444370269775, -0.02652054652571678, 0.0053271036595106125, -0.0023569560144096613, -0.02266022376716137, 0.027175545692443848, 0.012835219502449036, 0.0036094700917601585, -0.008654366247355938, -0.0026234854012727737, -0.047355130314826965, -0.03144001588225365, -0.021921606734395027, 0.024862140417099, -0.01658405177295208, -0.012298677116632462, -0.009588089771568775, 0.028346184641122818, 0.00900277029722929, -0.01807522214949131, 0.02979554794728756, 0.012138410471379757, -0.0010765696642920375, -0.009615962393581867, 0.002343019936233759, 0.02376118302345276, 0.0054351091384887695, -0.028847888112068176, -0.02493182197213173, 0.016249582171440125, -0.01956639252603054, -0.003285453887656331, -0.002412700792774558, -0.0227299053221941, -0.01903681829571724, -0.023775119334459305, -0.02305043675005436, -0.006703301332890987, -0.01850724406540394, -0.01676522195339203, -0.019789371639490128, -0.02681320533156395, 0.015706071630120277, -0.0059019713662564754, -0.024262884631752968, 0.014166124165058136, 0.008821600116789341, -0.0035432730801403522, -0.009086388163268566, -0.00839654728770256, -0.0168627742677927, 0.015246178023517132, 0.004208725411444902, -0.020764904096722603, -0.007588248699903488, 0.013929209671914577, -0.010180377401411533, 0.00330287404358387, 0.015385540202260017, -0.02351033128798008, -0.004982183687388897, -0.06182088330388069, 0.0019423547200858593, 0.006128434091806412, 0.027858419343829155, 0.015622454695403576, -0.004449124448001385, 0.010187345556914806, 0.02727309986948967, -0.012347453273832798, 0.029711930081248283, 0.04487449303269386, -0.004557129926979542, 0.007232876028865576, -0.022562671452760696, 0.02660416252911091, -0.012626176699995995, -0.014842028729617596, -0.02951682358980179, -0.004463060759007931, 1.491606508352561e-05, -0.017712881788611412, -0.041111722588539124, -0.008501068688929081, -0.0013291629729792476, 0.023733310401439667, 0.017977669835090637, -0.005288779269903898, 0.030380867421627045, -0.004173885099589825, -0.0003910839732270688, 0.01516256108880043, 0.004205241799354553, 0.01704394444823265, -0.016430754214525223, -0.011964208446443081, -0.0016192096518352628, -0.0043167308904230595, -0.016820967197418213, 0.0013404861092567444, 0.010730857029557228, -0.04147406294941902, -0.026269694790244102, -0.022172458469867706, -0.015594583004713058, 0.01264011301100254, -0.02204703353345394, 0.01800554059445858, -0.0054281409829854965, 0.023273415863513947, -0.021851927042007446, 0.028401929885149002, 0.020583733916282654, 0.001148863579146564, -0.01594298705458641, 0.0008074272773228586, 0.01977543532848358, 0.05621853843331337, 0.007908781059086323, 0.00469649164006114, 0.009379047900438309, -0.02084852196276188, -0.0033307464327663183, -0.02468097023665905, 0.018562989309430122, -0.010744793340563774, 0.014437880367040634, 0.017643200233578682, 0.033363208174705505, 0.02369150146842003, 0.028541291132569313, 0.023816928267478943, 0.025614693760871887, 0.012180219404399395, 0.004003167152404785, 0.05167534574866295, 0.0028168498538434505, 0.0050658006221055984, -0.00026761816116049886, -0.0348125696182251, -0.025795863941311836, 0.021043628454208374, 0.0059890723787248135, -0.017392350360751152, 0.003536305157467723, 0.013922241516411304, 0.011810910888016224, -0.0008370416471734643, -0.002475413493812084, 0.041780661791563034, 0.028847888112068176, -0.027468206360936165, -0.02596309967339039, 0.024625224992632866, 0.02727309986948967, -0.023245543241500854, -0.03269427269697189, 0.019942669197916985, -0.015399476513266563, -0.0163332000374794, 0.022130649536848068, 0.024053841829299927, 0.0004855886800214648, 0.014869901351630688, 0.004762688651680946, -0.009344207122921944, 0.008912185207009315, -0.005017023999243975, -0.00369308702647686, -0.014019794762134552, -0.005462981760501862, 0.014591177925467491, -0.00822234433144331, -0.00639322167262435, 0.0013213237980380654, 0.04414980858564377, -0.007588248699903488, 0.011295272037386894, -0.01566426269710064, 0.005755641497671604, -0.027705121785402298, -0.015859369188547134, -0.033223848789930344, -0.028931504115462303, -0.007546440232545137, 0.006225987337529659, 0.005205162335187197, -0.004313246812671423, -0.023343097418546677, 0.022925011813640594, -0.0163332000374794, -0.03369767591357231, 0.014159156009554863, -0.03261065483093262, 0.024625224992632866, -0.01141372974961996, 0.02454160898923874, -0.013789847493171692, -0.009135164320468903, -0.04821917414665222, 0.008368674665689468, 0.0015521417371928692, -0.03935576602816582, 0.0006101432954892516, -0.0070935143157839775, -0.0067311739549040794, -0.0111837824806571, 0.03707023337483406, -0.020360754802823067, -0.0012481588637456298, 0.0051668379455804825, -0.017810434103012085, -0.031021930277347565, 0.030269376933574677, 0.019231924787163734, -0.0372932106256485, -0.008201440796256065, 0.024653097614645958, 0.014619050547480583, 0.0026740040630102158, 0.007567344233393669, -0.0009842425351962447, 0.026896823197603226, -0.01120468694716692, -0.006058753002434969, 0.011929367668926716, -0.0003279356751590967, 0.006546519231051207, 0.03796214610338211, -6.184179073898122e-05, 0.0012516429414972663, 0.01471660379320383, 0.03704236075282097, 0.0045327418483793736, 0.009539313614368439, -0.006424577906727791, 0.026269694790244102, 0.011908464133739471, -0.0003510174574330449, 0.009469632990658283, -0.017935860902071, -0.013357826508581638, -0.005445561371743679, -0.009504472836852074, 0.00280117173679173, -0.010891122743487358, -0.022102776914834976, -0.008995802141726017, -0.016932455822825432, -0.01821458339691162, 0.0275239497423172, -0.04495810717344284, -0.0028360120486468077, 0.019594265148043633, 0.0005243486957624555, 0.027175545692443848, -0.020444372668862343, 0.010145537555217743, 0.001470266724936664, 0.020946074277162552, -0.026980439200997353, -0.018841711804270744, 0.00560234347358346, -0.0319695919752121, -0.00760915270075202, 0.0009197877370752394, 0.008731015026569366, -0.0004278841952327639, -0.005755641497671604, 0.0012594820000231266, 0.02116905339062214, 0.012201123870909214, -0.006529099307954311, 0.006616200320422649, 0.027900228276848793, -0.0015294954646378756, -0.00013740200665779412, -0.039411511272192, 0.009845909662544727, 0.021851927042007446, 0.012208091095089912, 0.03640129417181015, 0.0062921843491494656, 0.0253917146474123, 0.011706389486789703, 0.006522131152451038, 0.008626493625342846, 0.02851341851055622, 0.006058753002434969, 0.015775753185153008, -0.00939298328012228, -0.029321717098355293, 0.031941719353199005, -0.016946392133831978, 0.005511758383363485, 0.019162243232131004, -0.02268809638917446, 0.016319263726472855, -0.008800695650279522, -0.002167075639590621, 0.00873798318207264, 0.02300862967967987, 0.014549368992447853, 0.004104204475879669, -0.0038603211287409067, -0.0053549762815237045, -0.02447192743420601, 0.000882769760210067, -0.04637959972023964, -0.021921606734395027, -0.006842663045972586, 0.005675508175045252, 0.015204370021820068, -0.015190433710813522, 0.011706389486789703, -0.01928767003118992, -0.024012034758925438, 0.026144269853830338, 0.025182673707604408, -0.003430041717365384, 0.034645337611436844, -0.01807522214949131, -0.03366980329155922, -0.017935860902071, -0.006260827649384737, -0.01019431371241808, 0.007504631765186787, -0.012012984603643417, -0.019914798438549042, -0.04392683133482933, -0.0020817164331674576, -0.005278327036648989, 0.01871628686785698, -0.0081666000187397, -0.018493307754397392, 0.015901178121566772, -0.009204844944179058, 0.025767993181943893, -0.007797291502356529, 0.01977543532848358, -0.024276820942759514, -0.009845909662544727, -0.00273845880292356, -0.005630215629935265, 0.033892784267663956, 0.01782437041401863, 0.012779475189745426, -0.019022881984710693, -0.007184099406003952, -0.021392032504081726, -0.012751602567732334, -0.018340010195970535, -0.0163332000374794, 0.02887576073408127, 0.007637025322765112, 0.009183941408991814, 0.013490219600498676, 0.012047825381159782, 0.023802991956472397, 0.002599097089841962, 0.0166955403983593, -0.03369767591357231, 0.02259054407477379, -0.03358618915081024, 0.022897139191627502, 0.0052609071135520935, -0.005414205137640238, 0.013093038462102413, -0.024374375119805336, -0.007072610314935446, 0.036875125020742416, -0.013434475287795067, 0.005445561371743679, 0.014688731171190739, -0.04565491899847984, 0.015622454695403576, -0.012730698101222515, 0.011636707931756973, -0.010786601342260838, -0.02454160898923874, -0.025419587269425392, 0.03826874494552612, 0.010577558539807796, 0.027705121785402298, 0.001142766559496522, -0.00232211546972394, 0.00014687424118164927, -0.007076093927025795, -0.022646289318799973, 0.03018576093018055, 0.009511440992355347, -0.0034492039121687412, -0.01045910082757473, -0.025168737396597862, 0.020932137966156006, -0.031802356243133545, 0.004351571202278137, 0.012556496076285839, -0.018423626199364662, -0.01201995275914669, 0.015148624777793884, -0.013922241516411304, 0.003661730559542775, -0.01024309080094099, -0.007177131250500679, -0.014883837662637234, -0.01775469072163105, -0.01857692375779152, -0.013134847395122051, -0.004658167250454426, 0.015092880465090275, 0.007302557118237019, 0.01626351848244667, -0.01019431371241808, 0.005752157419919968, -0.012674953788518906, 0.0013744555180892348, 0.02521054446697235, -0.004773140884935856, 0.013100006617605686, 0.022674160078167915, 0.01598479598760605, -0.02344064973294735, -0.02603277936577797, -0.021573202684521675, 0.008319897577166557, 0.025154801085591316, 0.018061285838484764, -0.00344049371778965, -0.004013618919998407, 0.003447461873292923, -0.0015530127566307783, -0.026395119726657867, -0.013002453371882439, 0.014577241614460945, 0.025433523580431938, 0.005400268826633692, 0.0008623009780421853, 0.0028307861648499966, -0.011922399513423443, 0.00978319626301527, -0.014312454499304295, -0.0021061047445982695, -0.027607567608356476, -0.02383086271584034, -0.03096618689596653, 0.03046448342502117, -0.011357984505593777, 0.03548150882124901, 0.03433874249458313, 0.009539313614368439, -0.0007094385218806565, -0.014939581975340843, -0.01566426269710064, 0.007574312388896942, 0.02282745949923992, 0.024123523384332657, 0.004602422472089529, 0.01201995275914669, 0.02684107795357704, -0.0015521417371928692, 0.011936335824429989, -0.009386015124619007, -0.010319739580154419, 0.04791257902979851, -0.015148624777793884, -0.007846067659556866, -0.011211655102670193, -0.0035188847687095404, 0.020374691113829613, 0.0026600679848343134, -0.029210228472948074, -0.0028725946322083473, -0.013845592737197876, 0.018228519707918167, 0.028820015490055084, -0.0077485148794949055, -0.001507720211520791, -0.016235647723078728, -0.003227967070415616, -0.02443011850118637, -0.033864911645650864, -0.0009554991847835481, -0.0005321877542883158, -0.0008879958186298609, -0.021280543878674507, -0.0026269694790244102, -0.023036502301692963, 0.024235012009739876, 0.004062395542860031, -0.02126660756766796, -0.025266289710998535, 0.016026604920625687, -0.01619383879005909, 0.0004132947651669383, -0.005184257868677378, 0.006232955493032932, -0.021545330062508583, -0.021712563931941986, -0.003574629547074437, -0.01081447396427393, 0.03288937732577324, -0.008710110560059547, 0.014869901351630688, -0.01814490370452404, 0.005651120096445084, -0.007797291502356529, 0.018228519707918167, -0.006640588399022818, 0.0013309050118550658, -0.01626351848244667, 0.019552456215023994, -0.014423944056034088, -0.03447810187935829, 0.006637104321271181, -0.008368674665689468, -0.005800934042781591, 0.010800537653267384, 0.00029048218857496977, 0.03589959442615509, 0.004940374754369259, -0.01149037852883339, -0.008647398091852665, -0.007602185010910034, -0.032861508429050446, 0.0257401205599308, -0.0005173805984668434, -0.02436043880879879, -0.001186317065730691, -0.03199746459722519, -0.0021879798732697964, -0.0035641773138195276, 0.011615804396569729, 0.0008714466239325702, 0.008960962295532227, 0.013225432485342026, 0.027050120756030083, -0.007839099504053593, 0.03294512256979942, -0.007372237741947174, -0.0316072516143322, 0.01704394444823265, -0.021155117079615593, -0.019914798438549042, -0.02261841669678688, -0.007685801945626736, 0.012173251248896122, 0.04537619277834892, -0.039188530296087265, -0.01495351828634739, -0.007546440232545137, -0.04077725484967232, -0.01605447567999363, 0.0026530998293310404, 0.024945758283138275, 0.010988675989210606, 0.009873781353235245, 0.010605431161820889, 0.04629598185420036, 0.018103094771504402, 0.023607885465025902, -0.010047984309494495, -0.025433523580431938, -0.012131442315876484, -0.011762133799493313, 0.026144269853830338, -0.013782879337668419, -0.02720341831445694, 0.012424102053046227, 0.016361072659492493, -0.02041650004684925, 0.0034056534059345722, 0.027119802311062813, -0.0012255125911906362, -0.016249582171440125, 0.001375326537527144, -0.008626493625342846, 0.0031826745253056288, -0.0042435661889612675, 0.012096602469682693, -0.041641298681497574, 0.001042600255459547, 0.0253917146474123, 0.0193573497235775, -0.0089679304510355, -0.006124950014054775, 0.024973630905151367, -0.0033307464327663183, -0.00025520625058561563, -0.015232241712510586, -0.011037452146410942, -0.007574312388896942, 0.018061285838484764, 0.008549844846129417, 0.03670789301395416, -0.010556654073297977, 0.0035519832745194435, 0.014842028729617596, 0.021294480189681053, 0.009831973351538181, -0.0008540263515897095, -0.023496394976973534, -0.012333516962826252, 0.003992714919149876, -0.01683490164577961, 0.007414046674966812, -0.0013317759148776531, 0.03821299970149994, -0.005752157419919968, 0.025419587269425392, 0.014187028631567955, -0.012208091095089912, -0.058754924684762955, 0.008703142404556274, 0.059925563633441925, -0.03559299558401108, 0.011128038167953491, -0.005640667863190174, -0.0043306672014296055, -0.002750653075054288, -0.007455855142325163, 0.008835536427795887, -0.050727687776088715, 0.027175545692443848, -0.014883837662637234, 0.010222186334431171, -0.028792142868041992, 0.0033655869774520397, 0.012340485118329525, -0.0003510174574330449, 0.003022408578544855, 0.23100608587265015, -0.026297567412257195, 0.012863092124462128, 0.02254873514175415, -0.021740436553955078, 0.03601108118891716, -0.023092245683073997, -0.01079356949776411, 0.007964525371789932, 0.001991131342947483, 0.006870535667985678, -0.007560376543551683, 0.019942669197916985, 0.006863567512482405, 0.012242931872606277, -0.04005257412791252, -0.027217354625463486, 0.003334230510517955, 0.009657771326601505, 0.03422725200653076, 0.03397640213370323, -0.006400189362466335, -0.02066735178232193, -0.016249582171440125, 0.02116905339062214, -0.00935814343392849, -0.02197735197842121, 0.00962293054908514, 0.020862458273768425, 0.015483093447983265, -0.01754564791917801, -0.010737825185060501, 0.013671389780938625, -0.004902050364762545, -0.012730698101222515, -0.024374375119805336, 0.028569163754582405, 0.013615645468235016, 0.032192569226026535, 0.010807505808770657, 0.005431625060737133, -0.00933723896741867, 0.004595454316586256, -0.019468840211629868, -0.005525694228708744, 0.0019266764866188169, 0.004501385148614645, -0.004807981196790934, -0.017698945477604866, 0.020054159685969353, -0.043453000485897064, -0.0244998000562191, 0.039327893406152725, 0.0044038319028913975, -0.020291075110435486, -0.019789371639490128, 0.03205320984125137, 0.015385540202260017, 0.040498532354831696, 0.023677565157413483, -0.02578192763030529, 0.03294512256979942, 0.0005030088941566646, 0.010187345556914806, -0.03188597410917282, 0.011399793438613415, -3.0049883207539096e-05, -0.0022559186909347773, 0.005961199756711721, -0.021015755832195282, -0.0053689125925302505, 0.011936335824429989, 0.0009241427760571241, -4.17268747696653e-05, -0.03378129377961159, -0.04381534084677696, 0.022506926208734512, 0.00699596107006073, 0.014967454597353935, 0.023956289514899254, 0.007414046674966812, 0.014187028631567955, 0.020012350752949715, -0.02436043880879879, -0.01626351848244667, -0.04002470150589943, -0.002475413493812084, -0.011058356612920761, 0.013671389780938625, 0.0001747466012602672, -0.008856440894305706, -0.02275777794420719, -0.006048301234841347, -0.0038672892842441797, -0.002818591892719269, 0.02532203495502472, 0.003912582062184811, 0.0054420772939920425, -0.021350223571062088, -0.004950826987624168, -0.035425763577222824, -0.0019197084475308657, 0.008751919493079185, -0.00907245185226202, 0.008870377205312252, 0.0007921846117824316, -0.019594265148043633, 0.004853273741900921, 0.004013618919998407, -0.014061602763831615, -0.005567502696067095, -0.030743207782506943, 0.0044108000583946705, 0.0015016230754554272, -0.013977985829114914, -0.004630295094102621, 0.003370812861248851, -0.02293894812464714, -0.014396071434020996, -0.00951840914785862, 0.03110554814338684, -0.02596309967339039, 0.003717475337907672, 0.01715543493628502, 0.007462823297828436, -0.006473354529589415, -0.03824087232351303, -0.00475920457392931, 0.000246713898377493, -0.04796832427382469, 0.011114101856946945, -0.015789689496159554, 0.04058215022087097, -0.01063330378383398, -0.011148941703140736, -0.028847888112068176, -0.0032000946812331676, -0.01510681677609682, -0.02259054407477379, -0.006842663045972586, 7.996970816748217e-05, -0.01266101747751236, 0.036066826432943344, 0.018939265981316566, -0.015497029758989811, -5.3431085689226165e-05, -0.0068914396688342094, 0.004849789664149284, 0.015148624777793884, -0.008152663707733154, -0.056971095502376556, -0.026548417285084724, 0.023552140220999718, 0.030520228669047356, -0.00442125229164958, -0.0009459180291742086, -0.008278089575469494, -0.0642736479640007, 0.00435853935778141, 0.018089158460497856, -0.014730540104210377, -0.008055110462009907, -0.021419905126094818, -0.030380867421627045, -0.0029231132939457893, -0.0009302398539148271, -0.17514987289905548, -0.0026983923744410276, 0.04498597979545593, -0.036234062165021896, 0.03406001627445221, -0.025015437975525856, 0.00974835641682148, -0.01120468694716692, -0.0081666000187397, -0.007184099406003952, 0.03612257167696953, -0.005417689215391874, -0.007062158081680536, 0.0008178793941624463, -0.012967613525688648, -0.0025590306613594294, -0.04033129662275314, -0.013343890197575092, 0.04133470356464386, 0.015845434740185738, 0.04186427593231201, -0.017127562314271927, 0.015329794958233833, 0.013552933000028133, -0.013559901155531406, -0.0013831655960530043, 0.00482191750779748, -0.021796181797981262, 0.020012350752949715, -0.017169371247291565, 0.010828410275280476, -0.036066826432943344, 0.03495193272829056, -0.004915986675769091, -0.002336051780730486, 0.010263994336128235, -0.0068809874355793, 0.003923033829778433, -0.0062503754161298275, 0.017587456852197647, -0.004159948788583279, 0.02247905358672142, -0.00962293054908514, 0.007128354627639055, -0.0069994451478123665, 0.015998732298612595, -0.02151745744049549, -0.021141180768609047, 0.020555861294269562, -0.02805352583527565, -0.01619383879005909, -0.0355093814432621, 0.003835932817310095, -0.014019794762134552, 0.020764904096722603, 0.000844445254188031, 0.00014480559912044555, 0.041390448808670044, 0.00795755721628666, -0.007602185010910034, -0.007853035815060139, -0.03330746293067932, -0.005156385712325573, -0.016068411991000175, -0.005226066801697016, -0.010626335628330708, 0.0012141894549131393, 0.0071144187822937965, -0.034004274755716324, -0.007400110363960266, 0.011114101856946945, -0.03793427348136902, 0.004240082111209631, -0.023106181994080544, 0.032192569226026535, 0.021712563931941986, 0.004616358783096075, -0.011406761594116688, 0.02151745744049549, -0.02252086251974106, -0.029461080208420753, 0.05028172954916954, -0.013538996689021587, 0.0002702311903703958, 0.014660858549177647, 0.00910729169845581, 0.004717396106570959, -0.015371603891253471, -0.017350541427731514, 0.008835536427795887, 0.032192569226026535, -0.03470108285546303, 0.026896823197603226, -0.0030990575905889273, -0.0037139912601560354, 0.023956289514899254, 0.014340327121317387, -0.017671072855591774, -0.016820967197418213, -0.01415218785405159, 0.0010809247614815831, -0.03838023170828819, -0.012528623454272747, 0.02259054407477379, 0.008584685623645782, 0.021461714059114456, -0.00136922940146178, 0.019580328837037086, 0.018981073051691055, -0.004240082111209631, 0.003787156194448471, -0.011971176601946354, 0.008912185207009315, 0.011121070012450218, -0.008089951239526272, 0.015148624777793884, -0.01224990002810955, 0.010521814227104187, 0.02667384408414364, -0.004585002548992634, 0.013239368796348572, 0.0039021295960992575, -0.009058515541255474, 0.02901512198150158, -0.012897931970655918, -0.022632353007793427, -0.04713215306401253, -0.008340802043676376, 0.010654207319021225, 0.02155926637351513, -0.031244909390807152, 0.015998732298612595, -0.00783213134855032, 0.015274050645530224, -0.017141498625278473, 0.02567043900489807, -0.026004906743764877, -0.03235980495810509, -0.018479371443390846, 0.004278406500816345, 0.02002628706395626, 0.012681921944022179, -0.028151078149676323, -0.0045118373818695545, -0.006982024759054184, 0.030798953026533127, 0.0014423943357542157, -0.048776622861623764, -0.005309683736413717, -0.006651040632277727, -0.0046999757178127766, 0.021085437387228012, -0.030408740043640137, 0.023092245683073997, 0.0036268902476876974, 0.019190115854144096, 0.047745343297719955, -0.004943858832120895, 0.002919629216194153, -0.010507877916097641, -0.01102351676672697, -0.008382610976696014, -0.026186076924204826, -0.01825639232993126, -0.00910729169845581, 0.0034631402231752872, 0.007755482569336891, 0.028569163754582405, 0.022702032700181007, -0.013357826508581638, -0.029851293191313744, -0.03718172013759613, -0.019231924787163734, 0.015747880563139915, -0.004724364262074232, 0.0010155988857150078, -0.013448411598801613, 0.0017481192480772734, -0.0051494175568223, -0.02887576073408127, 0.016430754214525223, 0.009845909662544727, -0.015817562118172646, -0.011009580455720425, -0.01896713674068451, 0.04108384996652603, -0.002005067653954029, -0.001136669423431158, 0.0022123681847006083, 0.02993490919470787, 0.003923033829778433, -0.008521972224116325, -0.011587931774556637, -0.022005224600434303, 0.015329794958233833, -0.006518647074699402, -0.0006388866459019482, 0.024332566186785698, 0.016807030886411667, 0.018869584426283836, -0.042059384286403656, 0.007678833790123463, -0.021001819521188736, 0.0072886208072304726, 0.020123841241002083, -0.008515004068613052, 0.0011819620849564672, -0.014340327121317387, 0.002952727722004056, -0.0127864433452487, 0.039327893406152725, -0.002837754087522626, -0.012333516962826252, -0.00889824889600277, -0.0036025019362568855, -0.011141973547637463, 0.0017942828126251698, 0.009274526499211788, 0.01583149842917919, -0.01576181687414646, -0.021782245486974716, -0.024736715480685234, 0.011553090997040272, 0.01185968704521656, -0.005076252855360508, 0.010027079842984676, -0.02837405726313591, 0.006407157517969608, -0.07631450891494751, 0.026645971462130547, 0.02773299254477024, -0.0028046558145433664, 0.008751919493079185, -0.01264011301100254, 0.041278958320617676, -0.004720880184322596, 0.010751760564744473, -0.008940057829022408, -0.01892532967031002, -0.0102988351136446, -0.01386649627238512, -0.015622454695403576, -0.016779158264398575, -0.0344502292573452, 0.005685960408300161, 0.0006362735875882208, 0.015204370021820068, 0.014263677410781384, 0.020681288093328476, 0.003630374325439334, 0.0369308702647686, 0.02748214267194271, -0.019705755636096, 0.022632353007793427, 0.0035519832745194435, 0.005804418120533228, -0.014270645566284657, 0.011978144757449627, 0.002217594301328063, -0.02904299460351467, 0.014298518188297749, 0.04381534084677696, 0.006295668426901102, -0.01867447793483734, -0.002343019936233759, 0.024388311430811882, 0.014451815746724606, 0.006894923746585846, -0.02890363149344921, -0.02291107550263405, 0.018799902871251106, -0.01807522214949131, 0.008375642821192741, 0.0013448410900309682, -0.0007773773977532983, 0.014995327219367027, -0.002856916282325983, 0.011371920816600323, 0.028485547751188278, 0.01266101747751236, -0.00016538322961423546, -0.018089158460497856, -0.012828251346945763, -0.057974498718976974, 0.021893734112381935, -0.004065879620611668, -0.008257185108959675, -0.04222661629319191, 0.033251721411943436, 0.02940533496439457, 0.02087639458477497, -0.013984953984618187, 0.0053340718150138855, 0.007184099406003952, -0.03779491409659386, -0.0053410399705171585, -0.0017437642673030496, -0.017740754410624504, -0.02376118302345276, -0.009246653877198696, -0.015775753185153008, -0.0015538837760686874, 0.01956639252603054, 0.0025834189727902412, 0.01091899536550045, 0.010549686849117279, -0.027746928855776787, 0.023733310401439667, 0.011894527822732925, -0.02670171670615673, -0.015246178023517132, -0.0016165965935215354, 0.02635331079363823, -0.01800554059445858, -0.007344365585595369, 0.026409056037664413, -0.03294512256979942, 0.013720166869461536, -0.02169862762093544, 0.02293894812464714, 0.01230564434081316, 0.029349589720368385, 0.006309604272246361, 0.03344682604074478, 0.009386015124619007, -0.023621821776032448, 0.012856123968958855, 0.019190115854144096, 0.0011776069877669215, 0.015510965138673782, -0.005010055843740702, -0.014758411794900894, -0.007894844748079777, 0.028178950771689415, -0.0223675649613142, -0.05568896606564522, -0.014437880367040634, 0.004929922986775637, -0.0068252431228756905, 0.014312454499304295, -0.0137619748711586, 0.017838306725025177, -0.016388945281505585, -0.012890963815152645, 0.007797291502356529, 0.003278485732153058, -0.013469315133988857, 0.026534482836723328, 0.02358001284301281, 0.033223848789930344, 0.030380867421627045, -0.011957240290939808, 0.013079102151095867, -0.006497742608189583, 0.022186394780874252, -0.009016706608235836, 0.016625860705971718, 0.016026604920625687, 0.014173092320561409, 0.021224798634648323, -0.01857692375779152, -0.007225907873362303, -0.029377462342381477, 0.00285343243740499, 0.020179584622383118, 0.00800633430480957, 0.0013596483040601015, 0.07157620787620544, 0.010145537555217743, -0.0013204527786001563, 0.0008461872930638492, -0.04247746989130974, 0.013427507132291794, 0.010222186334431171, -0.02162894792854786, -0.0024597353767603636, -0.013427507132291794, 0.0017925408901646733, 0.0007521180668845773, -0.016026604920625687, -0.0035467571578919888, -0.011330111883580685, -0.017740754410624504, -0.014995327219367027, 0.017448093742132187, 0.005846226587891579, -0.0037976084277033806, 0.043090660125017166, -0.015887241810560226, 0.023802991956472397, 0.00946266483515501, 0.002750653075054288, -0.02240937389433384, 0.012438038364052773, 0.0015530127566307783, 0.018521180376410484, 0.005417689215391874, 0.008417450822889805, 0.032331932336091995, -0.03654065728187561, -0.02066735178232193, -0.007539472077041864, -0.019231924787163734, -0.005557050928473473, -0.003818512661382556, 0.03773916885256767, 0.0029440175276249647, 0.016820967197418213, 0.022492989897727966, -0.003133897902444005, -0.004640747327357531, -0.03316810354590416, -0.026325440034270287, -0.003992714919149876, -0.015051071532070637, -0.03564874082803726], "bcc8ce86-e983-490e-a23f-d7af513392d3": [-0.03237086534500122, -0.010593236424028873, -0.006322646979242563, -0.03207188844680786, -0.022694939747452736, 0.006563865579664707, -0.021811602637171745, -0.019718775525689125, -0.0038119342643767595, -0.0054936702363193035, -0.02891905978322029, 0.01026028674095869, -0.01333837304264307, 0.01312093622982502, -0.0022474105935543776, -0.009872977621853352, -0.0038221266586333513, 0.01573696918785572, 0.007746176794171333, 0.012828756123781204, 0.015003121457993984, -0.00892848800867796, -0.003173214616253972, 0.004481231328099966, -0.019297493621706963, 0.0036998186260461807, 0.029326753690838814, -0.02531776763498783, -0.0005469887983053923, 0.003154528560116887, 0.0375078022480011, 0.0030271243304014206, 0.003246259642764926, -0.02548084408044815, 0.0038527038414031267, -0.011673624627292156, 0.01962364837527275, -0.008867333643138409, 0.01587286777794361, 0.01830543950200081, 0.013943118043243885, -0.016430048272013664, 0.0033396894577890635, 0.016076713800430298, -0.00975746475160122, 0.009200283326208591, -0.0027825082652270794, -0.020058520138263702, -0.002694174647331238, 0.02307545393705368, 0.005565016530454159, 0.030821630731225014, -0.04033447802066803, -0.037562161684036255, 0.01371209230273962, 0.009084770455956459, -0.0004798892477992922, 0.011605675332248211, -0.013406321406364441, -0.033512406051158905, 0.02908213809132576, -0.021852372214198112, -0.009315797127783298, -0.013881964609026909, 0.02368699386715889, -0.004668090958148241, -0.009832208976149559, 0.022898785769939423, 0.002114910166710615, 0.010722339153289795, 0.01587286777794361, 0.021526217460632324, -0.013365552760660648, 0.007732586935162544, 0.03449087217450142, -0.009947721846401691, -0.015315686352550983, 0.008887718431651592, 4.023850124212913e-05, 0.013080166652798653, 0.006910405121743679, -0.011666829697787762, 0.016144663095474243, -0.013385937549173832, 0.010912596248090267, 0.029000598937273026, -0.0010939775966107845, 0.03128368407487869, 0.030495474115014076, -0.04196525365114212, 0.0033583752810955048, 0.012543370947241783, 0.0074132271111011505, 0.014513889327645302, 0.006081428378820419, 0.017476461827754974, -0.016443638131022453, 0.04598782956600189, -0.01618543267250061, -0.042481664568185806, 0.011639649979770184, 0.03340368717908859, -0.03718164935708046, -0.00018643484509084374, -0.02580699883401394, -0.014581837691366673, 0.016457227990031242, -0.02022159844636917, -0.0015849085757508874, 0.0027213541325181723, -0.03030521795153618, 0.043867822736501694, -0.006692968774586916, -0.04076934978365898, -0.03446369245648384, 0.029054958373308182, 0.051478102803230286, -0.009084770455956459, -0.00322077888995409, -0.015940817072987556, 0.020126469433307648, 0.009696310386061668, -0.005717901512980461, -0.03372984379529953, -0.0060576461255550385, 0.005048604682087898, -0.013549014925956726, -0.012896704487502575, 0.020887497812509537, -0.01033503096550703, 0.009492464363574982, -0.011592085473239422, 0.005350977182388306, -0.002077538287267089, -0.0019314480014145374, -0.0023442376405000687, 0.00967592652887106, 0.008799385279417038, -0.009594387374818325, -0.016565946862101555, 0.013216065242886543, 0.0036862287670373917, 0.006343031767755747, -0.027220336720347404, 0.003991999197751284, 0.02440725266933441, -0.0034263243433088064, 0.029951883479952812, 0.015016711317002773, 0.021947501227259636, 0.019542109221220016, 0.02666315622627735, -0.01693287119269371, -0.013881964609026909, 0.00907118059694767, -0.0024852317292243242, 0.00404975563287735, 0.003146034898236394, 0.015682609751820564, -0.03446369245648384, 0.032452404499053955, 0.015669019892811775, 0.029163675382733345, 0.0058707864955067635, 0.024978023022413254, 0.03734472766518593, -0.016674665734171867, -0.0244208425283432, 0.004963668528944254, 0.009594387374818325, -0.011911445297300816, 0.0323980450630188, 0.007284124381840229, 0.00565335014835, -0.022219296544790268, 0.016987230628728867, -0.004172063432633877, 0.005065592005848885, -0.021702885627746582, 0.007453996688127518, -0.0013904047664254904, -0.022137757390737534, 0.01591363735496998, -0.012298754416406155, -0.005619375500828028, -0.005711106583476067, 0.020208008587360382, -0.017870565876364708, 0.020058520138263702, -0.012951063923537731, 0.02594289742410183, 0.038160111755132675, 0.015111839398741722, 0.0019314480014145374, -0.6044735908508301, -0.015492353588342667, 0.01357619371265173, 0.01229195948690176, 0.0058843763545155525, 0.0041380892507731915, 0.008289768360555172, 0.022898785769939423, 0.0007151623722165823, 0.013780040666460991, 0.003020329400897026, -0.0019076658645644784, -0.006628416944295168, -0.0065298909321427345, -0.017924925312399864, -0.02397237904369831, 0.023945199325680733, -0.006217326037585735, 0.00010935529280686751, 0.002947284374386072, -0.021390320733189583, 0.03288727626204491, -0.02622828260064125, 0.01176195777952671, 0.016688253730535507, 0.006553673185408115, -0.03481702506542206, 0.021648526191711426, 4.374211857793853e-05, 0.04231858626008034, -0.008228613995015621, 0.01312093622982502, 0.0434873066842556, -0.024216994643211365, 0.041476018726825714, -0.016701843589544296, -0.024053918197751045, 0.017870565876364708, 0.004770013969391584, 0.026051616296172142, 0.005266041029244661, -0.025385716930031776, 0.029598549008369446, 0.0025480843614786863, -0.0003136267187073827, 0.019990572705864906, -0.015927227213978767, -0.010613621212542057, 0.007066687569022179, -0.006737135350704193, -0.019297493621706963, -0.021050576120615005, -0.014445940032601357, 0.004637513775378466, 0.02081954851746559, 0.0008574304520152509, 0.013664527796208858, -0.019134415313601494, -0.0027468351181596518, -0.03256112337112427, -0.0074811759404838085, 0.005897966213524342, 0.005031617358326912, -0.022966735064983368, 0.004185653291642666, -0.007698612753301859, -0.010498108342289925, 0.008785795420408249, -0.0015330974711105227, -0.033267792314291, -0.0236734040081501, -0.00446424400433898, 0.007746176794171333, 0.0107155442237854, 0.002870841883122921, 0.03329497203230858, 0.05272836238145828, -0.005796042736619711, 0.005520849488675594, 0.004025973379611969, 0.0006004985771141946, -0.01356260385364294, -0.03644780069589615, -0.006557070650160313, 0.015546713024377823, -0.006343031767755747, -0.0035197539255023003, 0.01214926689863205, 0.003591100452467799, 0.009438104927539825, 0.022436732426285744, 0.02606520615518093, 0.026608796790242195, -0.009519643150269985, 0.01604953408241272, 0.018944159150123596, -0.013820810243487358, -0.021974680945277214, 0.01379363052546978, 0.007420022040605545, -0.045471418648958206, 0.02144467830657959, 0.02250468172132969, -0.02262699045240879, 0.009241052903234959, -0.000937695091124624, -0.03421907499432564, 0.022667760029435158, 0.01041656918823719, 0.004654501099139452, -0.001560277072712779, -0.014799274504184723, -0.032153427600860596, 0.02698931097984314, 0.0012536575086414814, -0.031120605766773224, 0.010375799611210823, 0.015845688059926033, -0.023021094501018524, 0.022708529606461525, 0.020642882212996483, 0.0163213312625885, 0.032615482807159424, 0.008976052515208721, -0.00120014778804034, 0.0377524197101593, 0.03250676393508911, 0.011503752321004868, -0.027628030627965927, 0.006662391591817141, -0.016375688835978508, -0.003422926878556609, -0.006410980597138405, -0.027084439992904663, 0.013603373430669308, 0.00021340207604225725, 0.02011287957429886, 0.007895664311945438, 0.014255682937800884, -0.002981258789077401, -0.01460901740938425, -0.014051836915314198, -0.007644253317266703, 0.021077753975987434, -0.014160554856061935, -0.0157641489058733, -0.002261000219732523, -0.003414433216676116, -0.027818286791443825, 0.005663542542606592, 0.002274590078741312, -0.0035333437845110893, -0.0037677676882594824, 0.032778557389974594, 0.028592905029654503, -0.01093298103660345, 0.009716695174574852, 0.009492464363574982, 0.01168041955679655, 0.019297493621706963, -0.015274916775524616, -0.022545451298356056, -0.023646224290132523, 0.02277647703886032, -0.010545671917498112, -0.024964433163404465, 0.004766616504639387, 0.007107457146048546, -0.014432350173592567, -0.019827494397759438, 0.0011271026451140642, -0.0031137592159211636, 0.003266644198447466, 0.0013819111045449972, 0.00839848630130291, -0.004759821575134993, -0.01110285334289074, 0.0027094632387161255, 0.012638499028980732, -0.02291237562894821, -0.01754441112279892, 0.010620416142046452, -0.00039707651012577116, -0.01876749098300934, 0.03685549274086952, -0.004199243150651455, 0.022409552708268166, 0.0031188554130494595, -0.003266644198447466, -0.004997643176466227, -0.010797083377838135, 0.03188163414597511, -0.005320400465279818, -0.004939886275678873, 0.028538545593619347, 0.03753498196601868, 0.010498108342289925, 0.0011406925041228533, -0.018794670701026917, 0.009438104927539825, 0.005507260095328093, 0.0247334074229002, 0.01679697260260582, -0.0126792686060071, 0.028130853548645973, -0.011999779380857944, 0.007922844029963017, -0.011727983132004738, 0.030658552423119545, 0.010844647884368896, 0.026785464957356453, -0.017721077427268028, -0.011639649979770184, -0.011816317215561867, 0.026771875098347664, -0.007019123528152704, -0.020167239010334015, -0.0018142361659556627, -0.016131073236465454, -0.006237710826098919, 0.0032088877633213997, 0.012489011511206627, 0.005337387789040804, -0.01890338957309723, -0.0015594277065247297, -0.022966735064983368, 0.028973419219255447, 0.014242093078792095, 0.0020894291810691357, -0.03180009499192238, 0.010314646176993847, 0.0021437883842736483, -0.01676979288458824, 0.0013666226295754313, 0.030685732141137123, -0.03894831985235214, 0.039356015622615814, -0.007589894346892834, 0.022993914783000946, -0.013780040666460991, -0.009913747198879719, 0.023863660171628, 0.0009334482601843774, -0.013080166652798653, 0.008432460948824883, 0.0053068106062710285, 0.025412896648049355, 0.01755800098180771, -0.005354374647140503, 0.022273655980825424, -0.029136497527360916, -0.020479803904891014, -0.012359908781945705, -0.010525288060307503, 0.006213928572833538, -0.00922746304422617, 0.0015084659680724144, 0.020901087671518326, 0.025127509608864784, 0.008860538713634014, 0.014242093078792095, 0.03174573555588722, -0.024923663586378098, -0.0003960148023907095, 0.008527589030563831, -0.03196317330002785, 0.0025090137496590614, -0.04381346330046654, 0.012482216581702232, -0.0017836590996012092, -0.005565016530454159, -0.017041588202118874, 0.0018193323630839586, -0.02201545052230358, -0.0005792645388282835, -0.008344126865267754, 0.015832098200917244, 0.002731546526774764, 0.026771875098347664, -0.0010718941921368241, -0.021702885627746582, -0.03030521795153618, 0.032588303089141846, 0.03432779386639595, -0.01326362881809473, -0.024203404784202576, -0.0050893742591142654, 0.0012468626955524087, -0.019678007811307907, 0.019419800490140915, 0.0018006463069468737, 0.021322371438145638, 0.013365552760660648, 0.02306186407804489, -0.004372512921690941, -0.004926296882331371, 0.009988491423428059, 0.007603484205901623, 0.004770013969391584, 0.01980031467974186, 0.03489856421947479, 0.0009996985318139195, 0.006424570456147194, -0.011503752321004868, 0.037833958864212036, 0.009410925209522247, 0.011116443201899529, 0.007508355658501387, -0.003120554145425558, -0.012196831405162811, 0.012489011511206627, -0.023007504642009735, -0.02041185460984707, -0.02458391897380352, -0.010328236036002636, 0.00907118059694767, 0.0165115874260664, 0.005514055024832487, 0.02742418460547924, -0.009805029258131981, -0.026187513023614883, -0.011986189521849155, -0.016402868553996086, -0.005656747613102198, 0.01250939629971981, 0.0025616742204874754, -0.02427135407924652, -0.020466214045882225, -0.05025501921772957, -0.009349770843982697, -0.024706227704882622, -0.012706448324024677, 0.00531700300052762, -0.011959009803831577, 0.007243354804813862, 0.0006191845168359578, 0.03609446436166763, -0.006115402560681105, 0.0079432288184762, 0.009485669434070587, -0.03584985062479973, -0.012713243253529072, 0.02337442897260189, -0.015084659680724144, 0.00952643807977438, 0.0045967441983520985, 0.00975746475160122, 0.01980031467974186, 0.012325934134423733, -0.014894403517246246, -0.00404975563287735, 0.04511808231472969, 0.004844757728278637, -0.025834178552031517, 0.0035809080582112074, 0.004552577622234821, -0.012794781476259232, 0.031854454427957535, -0.007372457534074783, 0.027057260274887085, 0.025113919749855995, 0.04427551478147507, -0.01931108348071575, 0.010966955684125423, 0.0122104212641716, 0.009981696493923664, 0.00981861911714077, -0.026133153587579727, -0.00033210034598596394, -0.01785697601735592, 0.011986189521849155, 0.0039036653470247984, -0.0027485338505357504, -0.03310471400618553, 0.011666829697787762, -0.010640800930559635, -0.054196059703826904, -0.0007126142736524343, 0.013861579820513725, -0.01124554593116045, -0.015125429257750511, -0.013141321018338203, 0.023863660171628, 0.011782342568039894, -0.005429118871688843, -0.004810783546417952, 0.010987340472638607, -0.010538876987993717, -0.004589949734508991, -0.019080055877566338, -0.03220778703689575, 0.012455036863684654, -0.02158057689666748, 0.04000832512974739, 0.020588522776961327, -0.030495474115014076, -0.010192337445914745, -0.020031342282891273, 0.032751377671957016, 0.0009555316646583378, 0.046477060765028, -0.006516301538795233, -0.022545451298356056, 0.0047836038284003735, -0.00033762119710445404, -0.03489856421947479, -0.010402979329228401, -0.016742613166570663, 0.010314646176993847, 0.0035673181992024183, 0.02728828601539135, 0.013943118043243885, 0.0032632469665259123, 0.019161595031619072, -0.008364511653780937, 0.002515808679163456, 0.015179788693785667, 0.008738230913877487, -0.005198092199862003, -0.003907063044607639, -0.0079432288184762, -0.012570549733936787, -0.019229544326663017, -0.008812975138425827, 0.014772094786167145, -0.018835440278053284, -0.030767271295189857, 0.009193488396704197, 0.012400677427649498, -0.02444802038371563, -0.00434873066842556, 0.015709789469838142, 0.027179567143321037, 0.028239570558071136, 0.025100331753492355, -0.014445940032601357, -0.009329386986792088, -0.01874031126499176, -0.008276178501546383, 0.0011016218923032284, -0.00674053281545639, 0.010253491811454296, -0.01072913408279419, -0.0013190583558753133, 0.024189814925193787, -0.020058520138263702, 0.011483367532491684, 0.005201489664614201, -0.023238530382514, 0.008527589030563831, -0.011150417849421501, -0.03989960625767708, -0.0050893742591142654, -0.008289768360555172, 0.006811879109591246, -0.00640418566763401, -0.010966955684125423, -0.03182727470993996, -0.021662116050720215, 0.028973419219255447, 0.0020265765488147736, 0.01931108348071575, -0.019419800490140915, -0.015614661388099194, -0.014364401809871197, 0.005704311653971672, 0.013440296053886414, -0.027532901614904404, 0.003198695369064808, -0.028864700347185135, -0.027655210345983505, -0.0056295678950846195, 0.003280234057456255, 0.026160333305597305, 0.014445940032601357, 0.01507107075303793, -0.012760806828737259, -0.012244394980370998, 0.023931609466671944, 0.0012757409131154418, -0.012951063923537731, -0.0017157102702185512, 0.019895443692803383, 0.0034467088989913464, 0.023483145982027054, 0.012373498640954494, -0.005813030060380697, -0.007766561582684517, 0.016837742179632187, 0.006230915896594524, -0.032615482807159424, -0.01335196290165186, -0.012923884205520153, -0.02997906319797039, -0.013589783571660519, 0.029598549008369446, -0.0007623019628226757, -0.014500299468636513, -0.004280781839042902, 0.01108926348388195, 0.02576623111963272, 0.025575973093509674, -0.00020405909162946045, -0.021648526191711426, 0.006054248660802841, -0.004824373405426741, 0.00043529775575734675, 0.004029370844364166, -0.03777959942817688, -0.010498108342289925, 0.021254422143101692, -0.011619265191257, 0.0030373167246580124, 0.0005627020145766437, -0.0008400185033679008, -0.011123238131403923, -0.000761877279728651, 0.020330317318439484, 0.0231162216514349, 0.02008569985628128, -0.003025425598025322, -0.033811382949352264, 0.013148115947842598, 0.018386976793408394, -0.008588743396103382, 0.010980545543134212, 0.034246254712343216, 0.002610937226563692, 0.006465339567512274, 0.011367854662239552, 0.0036284723319113255, -0.008643102832138538, -0.00824220385402441, -0.007637458387762308, -0.04476474970579147, -0.03565959259867668, -0.04033447802066803, -0.02951700985431671, 0.04517244175076485, 0.013827605172991753, -0.012264779768884182, 0.02084672823548317, -0.006866238079965115, 0.007229764945805073, 0.01872672140598297, -0.001977313542738557, 0.014595427550375462, -0.0007967010606080294, 0.026173923164606094, 0.04465603083372116, 0.013542219996452332, 0.0054427082650363445, -0.03443651273846626, -0.022667760029435158, -0.012502601370215416, 0.03655651956796646, 0.008547973819077015, -0.053761184215545654, -0.017367742955684662, 0.018645184114575386, 0.01402465719729662, -0.000681612582411617, -0.030468296259641647, 0.014214914292097092, 0.029924703761935234, -0.015084659680724144, -0.008901308290660381, 0.008031561970710754, -0.01963723823428154, 0.006893417797982693, -0.002269493881613016, -0.018223900347948074, -0.00711425207555294, -0.02533135749399662, -0.006557070650160313, 0.012794781476259232, 0.006951174233108759, 0.021933911368250847, 0.014282862655818462, -0.016715433448553085, -0.001812537433579564, -0.01041656918823719, -0.030930347740650177, -0.0082557937130332, 0.0010634006466716528, -0.008337332867085934, -0.019732365384697914, -0.004956873599439859, 0.03851344808936119, 0.015465173870325089, -0.010294261388480663, -0.015546713024377823, -0.005405336618423462, 0.047129370272159576, -0.0061765569262206554, -0.03362112492322922, -0.0004905062378384173, 0.016294151544570923, 0.03117496334016323, -0.018183130770921707, -0.009764259681105614, -0.001899172319099307, -0.02832110971212387, -0.008140280842781067, 0.006241108290851116, -0.0061052106320858, 0.008901308290660381, -0.010600031353533268, -0.0002675488649401814, -0.04017139971256256, -0.008792590349912643, -0.011415418237447739, -0.02054775319993496, -0.029571369290351868, -0.036366261541843414, -0.01537004578858614, -0.01153772696852684, 0.004946681205183268, -0.0014592030784115195, 0.0018346208380535245, -0.012414267286658287, 0.0341375358402729, -0.03639344125986099, 0.018101591616868973, -0.01618543267250061, 0.01590004749596119, -0.0353877954185009, -0.012400677427649498, 0.0010438652243465185, -0.00041831054841168225, 0.02970726788043976, -0.030522653833031654, -0.0024206803645938635, -0.023197760805487633, -0.012489011511206627, 0.02802213467657566, -0.012985038571059704, 0.014133375138044357, -0.005001040641218424, 0.0022966733667999506, 0.038758061826229095, -0.007664638105779886, -0.046857573091983795, 0.005863991566002369, -0.005126745905727148, -0.027356235310435295, -0.02741059474647045, -0.00990015733987093, 0.00772579200565815, -0.0007342729950323701, -0.014772094786167145, 0.0007049700361676514, -0.044737569987773895, -0.027763929218053818, -0.008269383572041988, -0.011299905367195606, -0.01019913237541914, 0.0007720696157775819, -0.01901210844516754, -0.025820588693022728, -0.003135842736810446, -0.024366483092308044, -0.01618543267250061, -0.011408623307943344, 0.009465284645557404, 0.009872977621853352, 0.023428786545991898, 0.004549180157482624, -0.021036986261606216, -0.018509285524487495, -0.020615702494978905, -0.028266750276088715, -0.010457338765263557, -0.014350811950862408, -0.011157212778925896, 0.03960062935948372, -0.008452845737338066, -0.017204666510224342, -0.010267081670463085, -0.000369047571439296, -0.03851344808936119, -0.00877220556139946, 0.021539807319641113, 0.03639344125986099, 0.017612360417842865, -0.0029370919801294804, 0.007352073211222887, 0.03242522478103638, -0.01355580985546112, 0.026187513023614883, -0.020574932917952538, -0.01168041955679655, -0.011170802637934685, -0.01888979971408844, 0.013528630137443542, 0.002471641870215535, -0.03644780069589615, -0.033675484359264374, 0.008364511653780937, -0.004433666821569204, -0.006390595808625221, 0.01485363394021988, 0.003016931936144829, -0.016266971826553345, -0.016538767144083977, 0.009580797515809536, -0.013202475383877754, -0.0005232066614553332, 0.00577226048335433, -0.010144773870706558, -0.008507205173373222, 0.004110909532755613, 0.01755800098180771, -0.004457449074834585, 0.008119896054267883, 0.011925035156309605, -0.006013479549437761, 0.01648440770804882, -0.021961091086268425, -0.002571866614744067, -0.008017972111701965, 0.010579646565020084, 0.005955722648650408, 0.017123127356171608, 0.003212285228073597, 0.03405599668622017, 0.015560302883386612, 0.018699541687965393, -0.024950843304395676, 0.008996437303721905, -0.02189314179122448, -0.017435692250728607, -0.008106306195259094, 0.0077869463711977005, 0.006621622014790773, -0.015084659680724144, 0.015206968411803246, -0.02670392580330372, 0.006298864725977182, 0.010525288060307503, -0.01980031467974186, -0.06234992668032646, 0.005585401318967342, 0.009458489716053009, -0.023795710876584053, -0.022001860663294792, -0.008751820772886276, -0.0180064644664526, 0.0018787876470014453, -0.031093426048755646, 0.028076494112610817, -0.018916979432106018, -0.00656046811491251, 0.015098249539732933, -0.008976052515208721, 0.008751820772886276, 0.0126792686060071, 0.011592085473239422, -0.024230584502220154, -0.005048604682087898, 0.22374220192432404, -0.02516827918589115, -0.0079432288184762, 0.008806180208921432, -0.006951174233108759, 0.02864726446568966, -0.023904429748654366, 0.0034993693698197603, -0.006553673185408115, 0.0029319957830011845, 3.150600241497159e-05, -0.010661185719072819, -0.00505879707634449, 0.005677132401615381, 0.0031715158838778734, 0.0006098415469750762, -0.02440725266933441, -0.025902127847075462, -0.013759655877947807, -0.007066687569022179, 0.00833053793758154, -0.01920236460864544, 0.009519643150269985, -7.3788278314168565e-06, 0.018060822039842606, -0.005751876160502434, -0.02788623608648777, 0.007025918457657099, 0.013216065242886543, 0.015098249539732933, -0.011204776354134083, -0.01535645592957735, -0.011340674944221973, -0.008717846125364304, -0.02086031809449196, 0.0010277273831889033, 0.02247750200331211, 0.010171953588724136, 0.011449392884969711, -0.0014626005431637168, -0.020642882212996483, 0.022273655980825424, -0.006577455438673496, -0.026187513023614883, -0.019881853833794594, 0.032180607318878174, -0.005582003854215145, 0.032778557389974594, -0.011259135790169239, 0.005490272771567106, -0.02446161024272442, -0.030685732141137123, 0.021485447883605957, 0.0015696199843659997, -0.004586552269756794, -0.02440725266933441, -0.002576962811872363, 0.005619375500828028, 0.03128368407487869, 0.0020554547663778067, -0.013447090983390808, 0.0356324128806591, -0.021499037742614746, 0.03584985062479973, -0.019610058516263962, 0.005948927719146013, -0.02728828601539135, 0.04346013069152832, -0.002131897257640958, -0.0017445884877815843, -0.00633963430300355, 0.006295467261224985, -0.020765189081430435, -0.025902127847075462, -0.011374648660421371, -0.021104933694005013, 0.046477060765028, 0.013297603465616703, 0.020031342282891273, -0.005340785253793001, 0.00430796155706048, 0.010667980648577213, -0.003988601732999086, 0.025902127847075462, -0.018373386934399605, -0.036937031894922256, 0.00038284968468360603, -0.04215550795197487, 0.021471858024597168, -0.003140938701108098, 0.005167515482753515, 0.0037303955759853125, 0.018251080065965652, -0.0014507094165310264, -0.0017768642865121365, 0.032153427600860596, 0.0014642991591244936, 0.020738009363412857, -0.02788623608648777, -0.006546878255903721, -0.023564685136079788, 0.02864726446568966, 0.015601071529090405, 0.02264058031141758, -0.033811382949352264, -0.020873907953500748, -0.011972599662840366, 0.0029268998187035322, -0.018971338868141174, -0.007222970016300678, -0.011626060120761395, -0.04756424203515053, -3.1983767257770523e-05, -0.011592085473239422, -0.0033210034016519785, 0.029870344325900078, -0.0023459363728761673, -0.024094685912132263, -0.007623868528753519, -0.016715433448553085, 0.01931108348071575, -0.02291237562894821, -0.011361059732735157, -0.008996437303721905, -0.0029880537185817957, -0.013141321018338203, 0.00028623483376577497, -0.006920597516000271, 0.011816317215561867, -0.032778557389974594, 0.024339303374290466, -0.02607879601418972, 0.002981258789077401, 0.0012460133293643594, 0.002114910166710615, -0.0037439854349941015, -0.005656747613102198, -0.0012884814059361815, 0.0018295246409252286, 0.028864700347185135, -0.014473119750618935, 0.011653239838778973, -0.0014226804487407207, -0.004025973379611969, -0.0031001693569123745, -0.031718555837869644, 0.009417720139026642, -0.01063400600105524, -0.000399836921133101, 0.006815276574343443, -0.025399306789040565, -0.02446161024272442, -0.0005486875306814909, -0.013569398783147335, 0.01857723481953144, 0.011632855050265789, -0.005918351002037525, -0.049249377101659775, -0.004511808045208454, 0.014242093078792095, -0.03856780752539635, 0.0031392399687319994, 0.024665458127856255, -0.017612360417842865, -0.0034687924198806286, 0.009281822480261326, -0.17210102081298828, 0.03074009157717228, 0.04242730513215065, -0.0107155442237854, 0.040416017174720764, -0.005408734083175659, 0.017924925312399864, 0.011571700684726238, -0.01845492608845234, 0.0009895061375573277, 0.03188163414597511, 0.02086031809449196, -0.0048651425167918205, -0.008731435984373093, -0.009275027550756931, 0.002403693040832877, -0.005116553511470556, -0.0026822835206985474, 0.032153427600860596, 0.0172590259462595, 0.03908421844244003, -0.010851442813873291, -0.00795681867748499, 0.02804931439459324, 0.007888869382441044, 0.004080332815647125, -0.002439366187900305, 0.0004246807366143912, 0.007902459241449833, -0.03133803978562355, -0.006502711679786444, -0.004477833863347769, 0.010267081670463085, 0.024787764996290207, 0.021390320733189583, -0.002770617138594389, 0.01535645592957735, -0.012556959874927998, -0.01005643978714943, -0.01664748601615429, -0.01409260556101799, 0.031990353018045425, 0.005102963652461767, -0.0017029697773978114, 0.0090032322332263, 0.007759766653180122, -0.002668693894520402, -0.00033549778163433075, -0.007916049100458622, -0.013623758219182491, 0.016103893518447876, -0.041312944144010544, 0.007121046539396048, -0.004753027111291885, 0.017204666510224342, 0.0009275027550756931, -0.018808260560035706, -0.014744915068149567, 0.004076935350894928, 0.0012630005367100239, -0.014174144715070724, 0.004263794515281916, -0.013569398783147335, 0.02834828943014145, 0.016375688835978508, -0.0070395078510046005, -0.011911445297300816, 0.032452404499053955, -0.01385478489100933, -0.013521835207939148, 0.016987230628728867, 0.0038051395677030087, 0.01947415992617607, -0.0017768642865121365, -0.0014897800283506513, 0.0298431646078825, 0.02262699045240879, 0.022137757390737534, 0.021852372214198112, 0.003866293467581272, -0.015179788693785667, 0.04756424203515053, -0.010627211071550846, -0.023768531158566475, 0.01903928630053997, 0.004532192833721638, -0.008215024136006832, -0.0006484874757006764, -0.01796569488942623, -0.033267792314291, 0.030468296259641647, -0.044737569987773895, 0.0049025146290659904, -0.01288990955799818, 0.010369004681706429, 0.015084659680724144, -0.018849030137062073, 0.0031952979043126106, -0.009546822868287563, -0.009723490104079247, 0.013943118043243885, 0.01860441453754902, -0.014907993376255035, 0.006349826697260141, -0.009030411019921303, -0.0031001693569123745, -0.024624688550829887, 0.004134691786020994, 0.017585180699825287, 0.013970297761261463, -0.011721188202500343, 0.0027485338505357504, 0.020710831508040428, 0.008466435596346855, 0.018400566652417183, 0.02145826816558838, -0.012536576017737389, -0.013508245348930359, 0.024352893233299255, 0.013005423359572887, 0.011225161142647266, 0.002915008692070842, 0.015166198834776878, 0.04006268456578255, -0.006332839373499155, -0.026934951543807983, -0.04935809597373009, -0.027519311755895615, -0.012257984839379787, 0.0007011478883214295, -0.0035978953819721937, 0.009363360702991486, 0.005045207217335701, 0.029625728726387024, -0.004243410192430019, -0.0014124881708994508, -0.018998518586158752, -0.043568845838308334, -0.028891880065202713, 0.0003565194783732295, 0.007922844029963017, 0.020955447107553482, -0.02293955534696579, 0.014296452514827251, 0.00974387489259243, 0.015492353588342667, -0.010640800930559635, -0.02156698703765869, 0.0035978953819721937, -0.0014592030784115195, 0.02156698703765869, -0.009689515456557274, -0.027030080556869507, 0.042644742876291275, 0.020887497812509537, 0.0018329221056774259, 0.04808065667748451, -0.027233926579356194, 0.01250939629971981, 0.010899006389081478, 0.000990355503745377, 0.0019212557235732675, -0.007087072357535362, -0.020439034327864647, 0.020316727459430695, -0.0010939775966107845, 0.005544631741940975, 0.0005796892219223082, -0.009105155244469643, -0.0061935437843203545, -0.004124499391764402, -0.008051946759223938, -0.015465173870325089, 0.011598880402743816, 0.0018533067777752876, 0.0037100110203027725, -0.02938111312687397, -0.0226134005934, 0.0019161595264449716, -0.025521613657474518, 0.02503238245844841, 0.013956707902252674, 0.009906952269375324, 0.010885416530072689, -0.03372984379529953, 0.004505013581365347, -0.0014252285473048687, 0.01887620985507965, -0.01842774637043476, 0.016239792108535767, 0.007460791151970625, 0.022871606051921844, -0.017952105030417442, -0.008452845737338066, 0.04500936344265938, -0.017354153096675873, -0.004443859215825796, 0.02625546231865883, -0.015247737057507038, 0.011517342180013657, -0.029272394254803658, -0.015940817072987556, -0.016430048272013664, 0.01751723140478134, 0.02968008816242218, 0.010151568800210953, -0.005116553511470556, -0.00296257296577096, -0.0006735436618328094, 0.004008986055850983, 0.010776698589324951, 0.03595856949687004, 0.0012273273896425962, 0.02011287957429886, 0.007617074064910412, -0.0398724265396595, -0.013385937549173832, 0.02471981756389141, 0.029652908444404602, -0.021104933694005013, 0.011530932039022446, 0.022545451298356056, 0.009669131599366665, 0.0013334975810721517, -0.009295412339270115, -0.004420077428221703, -0.038431908935308456, 0.007175405975431204, -0.09675925970077515, 0.0032003941014409065, -0.02440725266933441, 0.017272615805268288, 0.026595206931233406, -0.02546725422143936, 0.031093426048755646, -0.006475531961768866, 0.0008833359461277723, -0.01799287460744381, -0.00215398077853024, 0.023632634431123734, 0.020153649151325226, -0.02264058031141758, -0.04688475281000137, -0.009968106634914875, 0.02875598333775997, -0.016973640769720078, 0.01755800098180771, 0.013983887620270252, -0.017136717215180397, 0.011028110049664974, 0.04813501611351967, -0.011687214486300945, -0.024244174361228943, 0.01681056246161461, -0.004029370844364166, 0.0113067002967, -0.010484518483281136, -0.030549833551049232, -0.007780151441693306, -0.0013598277000710368, 0.009784644469618797, 0.027043670415878296, 0.01432363223284483, 0.021961091086268425, -0.00404975563287735, -0.002943886909633875, 0.03237086534500122, 0.019270313903689384, -0.010090414434671402, -0.03674677386879921, 0.02175724320113659, -0.0166338961571455, -0.04044319689273834, -0.014744915068149567, -0.013875169679522514, 0.007623868528753519, 0.019610058516263962, 0.013875169679522514, 0.017748257145285606, -0.0005164117901585996, 0.01814236119389534, -0.0224910918623209, 0.008310153149068356, -0.0377524197101593, 0.023170581087470055, 0.0030967718921601772, -0.02881034091114998, 0.011884265579283237, -0.002986354986205697, 0.0013436898589134216, -0.02023518830537796, 0.0004144884005654603, 0.015981586650013924, -0.0107155442237854, -0.00802476704120636, -0.007589894346892834, -0.002213435946032405, -0.016688253730535507, -0.0036726391408592463, -0.011585290543735027, -0.010321441106498241, -0.017204666510224342, 0.0047156549990177155, 0.026119563728570938, 0.001381061738356948, -0.015804918482899666, -0.0371272899210453, 0.04541705921292305, 0.012645293958485126, 0.0017853578319773078, -0.032642662525177, 0.00996131170541048, 0.02954418957233429, -0.024475200101733208, -0.018400566652417183, 0.002318756887689233, -0.0007096415502019227, -0.015492353588342667, -0.024067508056759834, 0.024502379819750786, 0.01814236119389534, 0.019256724044680595, 0.012726832181215286, 0.028293929994106293, 0.025154689326882362, -0.028674444183707237, 0.016742613166570663, 0.023945199325680733, -0.015655431896448135, 0.004382705315947533, 0.009641951881349087, -0.01093298103660345, -0.031256504356861115, -0.015193378552794456, 0.002371417358517647, -0.04104114696383476, 0.004260397050529718, 0.008969257585704327, -0.00974387489259243, -0.005517452023923397, -0.00786848459392786, 0.019215954467654228, -0.004223025403916836, 0.004681680351495743, 0.01223080512136221, 0.001846511848270893, -0.04019857943058014, 0.02471981756389141, 0.0038017421029508114, 0.008391691371798515, 0.014445940032601357, -0.02399955876171589, 0.017340565100312233, 0.0016995723126456141, 0.019732365384697914, -0.01859082467854023, -0.010579646565020084, 0.016525177285075188, -0.019406210631132126, -0.012787986546754837, -0.011734778061509132, -0.030957527458667755, -0.0047971936874091625, 0.014975941739976406, -0.0020078904926776886, 0.009811824187636375, -0.0292180348187685, 0.07240636646747589, 0.024842124432325363, 0.012828756123781204, 0.0035027668345719576, -0.0004709709610324353, 0.0007338483119383454, 0.02370058372616768, 0.012801576405763626, -0.0065672630444169044, -0.0027383414562791586, 0.026921361684799194, -0.010776698589324951, -0.0246110986918211, -0.011639649979770184, -0.001875390182249248, 0.017286205664277077, -0.02698931097984314, 0.01784338615834713, -0.021485447883605957, 0.0012281767558306456, 0.018359798938035965, -0.0032343685161322355, 0.010627211071550846, 0.009309002198278904, -0.011225161142647266, -0.0009895061375573277, -0.014676966704428196, -0.008269383572041988, 0.015098249539732933, -0.021172882989048958, 0.0037779598496854305, -0.007589894346892834, -0.023564685136079788, -0.008513999171555042, -0.010783493518829346, 0.007107457146048546, -0.022681349888443947, -0.0019875059369951487, 0.0236734040081501, 0.014242093078792095, -0.010708749294281006, 0.020180828869342804, -0.04677603766322136, -0.03864934667944908, -0.007780151441693306, -0.007087072357535362, 0.016729023307561874, -0.027994954958558083, -0.016430048272013664], "81393b81-5c50-483e-ac72-3ddb2466f498": [-0.021657904610037804, 0.000240263034356758, -0.0004454290319699794, -0.03904523327946663, -0.009636519476771355, 0.007293250411748886, -0.009768241085112095, -0.0429830364882946, -0.0002259642496937886, -0.025304529815912247, -0.0068634203635156155, 0.0014038813533261418, -0.012319493107497692, 0.01935623213648796, -0.018704554066061974, -0.01631968840956688, -0.0011153058148920536, 0.011993653140962124, 0.02389024943113327, -0.019106652587652206, 0.016971366479992867, -0.0035911633167415857, 0.0030521422158926725, 0.006076553370803595, -0.0038719396106898785, -0.0031492006964981556, 0.008256902918219566, -0.019175980240106583, 0.0033762480597943068, 0.006846088450402021, 0.0509972907602787, 0.012361088767647743, 0.009983156807720661, -0.02544318325817585, -0.015515489503741264, 0.002468058140948415, 0.010898279026150703, 0.003729818155989051, 0.012409618124365807, 0.022378910332918167, -0.0007582692778669298, -0.00801425613462925, 0.008395557291805744, 0.024819236248731613, 0.00895017758011818, 0.004499353468418121, 0.005951764062047005, 0.0025391187518835068, -0.007542829494923353, 0.0321124866604805, -0.007119931746274233, 0.012132308445870876, -0.025637300685048103, -0.022711681202054024, 0.004707335494458675, -0.023169243708252907, -0.0036188943777233362, 0.010669498704373837, 0.011127060279250145, -0.0348578542470932, 0.027911242097616196, -0.00031522338395006955, -0.017359599471092224, 0.016305822879076004, 0.010419920086860657, -0.006204809062182903, -0.020520932972431183, -0.006298401392996311, -0.012860246933996677, -0.007272452116012573, 0.02222638949751854, 0.03330491855740547, -0.0034386429470032454, 0.00895017758011818, 0.027717124670743942, 0.0018371781334280968, -0.03532928228378296, 0.012257098220288754, -0.01083588507026434, 0.004447357729077339, 0.007674551568925381, -0.005320883821696043, 0.00493611628189683, -0.009324545972049236, -0.00010707845649449155, 0.021366728469729424, -0.001768717309460044, 0.038823388516902924, 0.01156382355839014, -0.015654144808650017, -0.0002103655569953844, 0.0040868548676371574, -0.01243041642010212, 0.008430221118032932, 0.012527475133538246, -0.012284829281270504, -0.00454094959422946, 0.02499948814511299, -0.01419826690107584, -0.033083073794841766, 0.0021751495078206062, 0.03624440357089043, -0.03690994903445244, -0.009664250537753105, -0.041485562920570374, -0.02578982152044773, 0.007348712533712387, -0.01626422628760338, 0.011231050826609135, -0.018413377925753593, -0.022642353549599648, 0.02602553553879261, 0.005785378161817789, 0.021033955737948418, -0.007840937934815884, -0.0006833089282736182, 0.02544318325817585, -0.028646113350987434, -0.03153013810515404, -0.015612548217177391, 0.005806175991892815, 0.027772586792707443, 0.031003247946500778, -0.006894617807120085, 0.004516684915870428, 0.01014954224228859, -0.04500739648938179, -0.0017869157018139958, 0.010780422948300838, -0.022087734192609787, 0.050193093717098236, -0.03602255880832672, 0.01956421323120594, 0.010412987321615219, -0.011459832079708576, 0.0014099475229158998, 0.003528768662363291, 0.03546793758869171, -0.02602553553879261, -0.01813606731593609, 0.04650487005710602, 0.032445259392261505, 0.0066485051065683365, -0.016943635419011116, -0.014780618250370026, 0.027356622740626335, 0.009567191824316978, 0.011529159732162952, 0.010815086774528027, 0.01193125918507576, 0.008263835683465004, 0.005400610622018576, 0.008201440796256065, 0.007972659543156624, 0.0012305626878514886, -0.004010594449937344, 0.023751594126224518, 0.009144294075667858, 0.0006022824672982097, -0.028202418237924576, 0.007383376359939575, 0.01471129059791565, 0.016125570982694626, 0.005681386683136225, 0.007258587051182985, 0.04043178632855415, -0.017595313489437103, -0.02903434820473194, 0.004222043324261904, 0.004211644176393747, 0.010496179573237896, 0.025581838563084602, 0.007064470089972019, 0.0003711186582222581, -0.012021384201943874, 0.023529745638370514, -0.0006269803852774203, -0.00950479693710804, 0.003865006845444441, 0.0008171976078301668, -0.03435869887471199, 0.024347810074687004, -0.010184206068515778, -0.013678311370313168, -0.002802563365548849, -0.016278091818094254, 0.006651971489191055, -0.003322519361972809, 0.011348907835781574, -0.027509143576025963, 0.0025512510910630226, 0.02842426486313343, 0.021685635671019554, -0.017276408150792122, -0.5568382740020752, -0.019370097666978836, 0.0069674113765358925, 0.012541340664029121, 0.008922446519136429, 0.0025807153433561325, -0.0014723422937095165, 0.026483096182346344, -0.013380203396081924, 0.025429317727684975, -0.0027176369912922382, 0.012444281950592995, -0.0030660077463835478, -0.0022098133340477943, -0.006249872036278248, -0.02070118486881256, -0.011938191950321198, -0.016042377799749374, 0.005352081265300512, -0.01060017105191946, -0.03577297925949097, 0.018357915803790092, -0.02430621348321438, 0.019425559788942337, -0.005480336956679821, 0.011681679636240005, -0.006582643836736679, -0.014628097414970398, -0.010385256260633469, 0.042677994817495346, -0.021269669756293297, 0.018967997282743454, 0.013061296194791794, -0.010364457964897156, 0.06233926862478256, -0.025013353675603867, -0.04656033217906952, 0.03155786916613579, -0.002036494668573141, 0.05465778335928917, -0.02090916782617569, -0.01959194429218769, 0.013061296194791794, 0.01587599143385887, -0.009643452242016792, -0.00015999481547623873, -0.0014099475229158998, -0.018080605193972588, 0.012492811307311058, -0.0009775174548849463, 0.01501633133739233, -0.0016985231777653098, 0.008984841406345367, 0.006371194962412119, 0.0030140120070427656, 0.009165092371404171, 0.025054950267076492, -0.013165287673473358, 0.00624293927103281, -0.004998511169105768, -0.02731502614915371, 0.012991969473659992, -0.022794874384999275, 0.0004887587274424732, -0.00858274195343256, 0.025692762807011604, 0.0039274017326533794, -0.02842426486313343, -0.008527279831469059, -0.0213805940002203, -0.015668010339140892, 0.008603540249168873, 0.008388624526560307, 0.02151924930512905, 0.018926400691270828, 0.0072863176465034485, 0.0748736783862114, -0.02676040679216385, 0.0022150129079818726, -0.007730013690888882, -0.012021384201943874, -0.00508863665163517, -0.01842724345624447, -0.017234811559319496, 0.005785378161817789, -0.019370097666978836, -0.022240255028009415, -0.01220856886357069, 0.0034542414359748363, -0.004939582664519548, 0.04009901359677315, -0.0038372757844626904, 0.032999880611896515, -0.007012474350631237, -0.005019309464842081, 0.027481412515044212, -0.038379691541194916, -0.018843207508325577, -0.0068252901546657085, -0.0186906885355711, -0.047919150441884995, 0.009761308319866657, -0.003067740937694907, -0.003175198333337903, 0.04761411249637604, -0.01409427635371685, -0.05232837796211243, 0.008340095169842243, 0.02992173843085766, 0.004398828372359276, 0.0014758086763322353, -0.0017019895603880286, -0.017539851367473602, 0.0028753571677953005, 0.018108336254954338, -0.03821330517530441, 0.0267881378531456, 0.0073695108294487, -0.014780618250370026, 0.010336726903915405, 0.014004150405526161, -0.013692176900804043, 0.03968304768204689, 0.02655242383480072, -0.015959184616804123, 0.020839840173721313, 0.01302663329988718, 0.004076455719769001, -0.00527235446497798, 0.0113905044272542, -0.017761699855327606, -0.02994946949183941, -0.0019429025705903769, -0.02204613760113716, -0.010364457964897156, 0.003398779546841979, -0.0012374954530969262, -0.004156182054430246, 0.004915317986160517, -0.03552339971065521, -0.0320015624165535, -0.01422599796205759, -0.007074869237840176, 0.010010887868702412, -0.011799536645412445, -0.008645135909318924, 0.010163407772779465, 0.0006677102646790445, -0.01223629992455244, 0.015099524520337582, -0.0036743562668561935, -0.010926010087132454, 0.027758721262216568, 0.01938396319746971, 0.03053181990981102, -0.01378923561424017, 0.004676138516515493, 0.0008574942476116121, -0.0015252045122906566, -0.0005325216916389763, -0.01020500436425209, -0.018122201785445213, -0.025928476825356483, 0.00038693397073075175, 0.002755767200142145, -0.025956207886338234, 0.004932649899274111, -0.002476724097505212, -0.017096156254410744, -0.022475967183709145, 0.005209960043430328, 0.02597007341682911, 0.0031284024007618427, 0.006866886746138334, 0.011459832079708576, 0.002873623976483941, -0.004097254015505314, 0.004111119545996189, 0.014586500823497772, -0.020049506798386574, 0.004131917841732502, 0.012499744072556496, 0.002785231452435255, -0.011016136035323143, 0.0280776284635067, 0.003521835897117853, 0.032472990453243256, 0.019633540883660316, -0.004277505446225405, -0.005473404191434383, -0.031890638172626495, 0.006135481875389814, 0.0040868548676371574, -0.012499744072556496, 0.02512427791953087, 0.025775955989956856, 0.02816082164645195, -0.0031405347399413586, -0.023668400943279266, 0.006745563354343176, 0.03793599456548691, 0.036688100546598434, 0.005792310927063227, -0.020687319338321686, 0.01655540056526661, -0.03535701334476471, 0.018357915803790092, -0.019189845770597458, -0.011480630375444889, 0.02486083284020424, -0.007154595572501421, -0.04378723353147507, 0.0013752838131040335, -0.0030694741290062666, 0.014877676963806152, 0.003948200028389692, -0.025512510910630226, 0.013546588830649853, -0.022323448210954666, 0.010898279026150703, 0.0061632124707102776, 0.0037714147474616766, 0.020396143198013306, -0.02006337232887745, 0.015113390050828457, -0.0017990480409935117, 0.01443398091942072, 0.01772010326385498, -0.01054470892995596, -0.021477652713656425, -0.026413768529891968, -8.42220561025897e-06, -0.014239863492548466, 0.0042636399157345295, -0.018579764291644096, -0.01324848085641861, 0.021158745512366295, -0.01355352159589529, 0.009213621728122234, 0.02956123650074005, 0.012451214715838432, 0.027384353801608086, -0.010163407772779465, 0.001247028005309403, 0.016985232010483742, 0.00676289526745677, 0.020077237859368324, 0.010246600955724716, -0.0036986209452152252, -0.008263835683465004, -0.0402376689016819, 1.710167998680845e-05, -0.01305436436086893, 0.037353646010160446, 0.009407738223671913, -0.015778934583067894, 0.0006165812374092638, 0.016680190339684486, -0.004773196764290333, 0.035051971673965454, 0.024139827117323875, 0.04864015802741051, -0.012867179699242115, -0.0027401684783399105, -0.002729769330471754, -0.028354937210679054, 0.01985538937151432, -0.027717124670743942, -0.031807444989681244, -0.035689786076545715, 0.02038227766752243, 0.01136277336627245, 0.03283349424600601, -0.01422599796205759, -0.01392095722258091, -0.021602442488074303, 0.023585207760334015, -0.0028926890809088945, 0.0348023921251297, 0.003452508244663477, -0.02997720055282116, -0.012832515873014927, 0.013095960021018982, 0.03588390350341797, -0.006884218659251928, -0.011751007288694382, 0.012693860568106174, -0.019661271944642067, -0.011064665392041206, 0.006950079463422298, 0.003996728919446468, 0.0019030392868444324, 0.017789430916309357, -0.0014515439979732037, -0.00018642592476680875, -0.014641962945461273, 0.019023459404706955, 0.0066970344632864, -0.04872335121035576, -0.0037367509212344885, 0.017761699855327606, 0.007203124929219484, -0.013622849248349667, 0.0061632124707102776, 0.030448628589510918, 0.00140908092726022, -0.004943049047142267, -0.009893030859529972, 0.00360849522985518, 0.00022130629804451019, -0.022087734192609787, -0.026136457920074463, 0.0008475283975712955, -0.006152813788503408, -0.030254511162638664, 0.03111417219042778, -0.011910460889339447, -0.017123887315392494, 0.03419231250882149, 0.005019309464842081, -0.021394459530711174, -0.02254529483616352, -0.010960673913359642, -0.01695750094950199, -0.04217883571982384, 0.0030521422158926725, -0.003513169940561056, 0.008152911439538002, -0.042095642536878586, -0.003781813895329833, -0.023196972906589508, -0.014184401370584965, 0.009095764718949795, 0.0038164774887263775, 0.012229367159307003, -0.01302663329988718, 0.03330491855740547, -0.030365435406565666, 0.008360893465578556, -0.025221336632966995, -0.016278091818094254, -0.00023289698583539575, 0.028146956115961075, -0.02032681554555893, -0.036188941448926926, 0.02483310177922249, 0.013622849248349667, 0.023446552455425262, 0.009969291277229786, -0.01681884564459324, -0.01526590995490551, 0.022531429305672646, 0.022919664159417152, -0.01830245368182659, -0.015473892912268639, -0.004128451459109783, -0.01498860027641058, 0.024666715413331985, -0.01690203882753849, 0.024403272196650505, 0.02164403907954693, 0.02565116621553898, -0.012111510150134563, 0.025831418111920357, -0.00169765658210963, 0.018912535160779953, 0.010218869894742966, -0.0015668009873479605, 0.019578078761696815, -0.012291762046515942, -0.003457707818597555, 0.015224314294755459, 0.008645135909318924, -0.01719321496784687, 0.017068425193428993, 0.00033060539863072336, -0.03427550569176674, 0.01178567111492157, -0.009823703207075596, 0.01734573394060135, -0.044813282787799835, -0.005092103034257889, 0.015751203522086143, -0.013941755518317223, -0.007230855990201235, -0.006662370637059212, 0.017040694132447243, 0.007279384881258011, -0.006409325171262026, -0.045340169221162796, -0.02707931213080883, -0.02570662833750248, 0.0003555199655238539, 0.02309991605579853, -0.001415147096849978, -0.023557476699352264, -0.017623044550418854, 0.003930868115276098, 0.032445259392261505, 0.008922446519136429, 0.01974446512758732, -0.006475186441093683, 0.0009367875172756612, 0.03161333128809929, -0.022559160366654396, -0.017817161977291107, -0.010454583913087845, -0.021616308018565178, 0.018039008602499962, -0.005761113483458757, 0.02178269252181053, 0.006000292953103781, 0.0200911033898592, 0.013837764039635658, 0.019453290849924088, 0.012610668316483498, 0.027772586792707443, 0.01288104522973299, 0.016721786931157112, -0.020534798502922058, -0.013262346386909485, 0.018662957474589348, -0.0113905044272542, -0.003764481982216239, 0.0587897002696991, -0.03685448691248894, -0.006232540123164654, -0.004253240767866373, -0.0015347370645031333, 0.019702868536114693, -0.0008826254634186625, 0.002419529017060995, 0.006253338418900967, 0.025082681328058243, 0.011043867096304893, -0.013317808508872986, -0.0011153058148920536, -0.015030196867883205, -0.0030816062353551388, 0.00023203040473163128, -0.006028024014085531, 0.001712388708256185, -0.0028372269589453936, 0.0024039302952587605, 0.023723863065242767, -0.03599482774734497, 0.03710406646132469, 0.0010069815907627344, -0.03915615752339363, 0.023723863065242767, -0.0056501892395317554, -0.024250751361250877, -0.0009757842635735869, 0.017151618376374245, 0.011189455166459084, 0.013511925004422665, -0.0034889052622020245, -0.02956123650074005, -0.024320079013705254, -0.003917002584785223, 0.006204809062182903, 0.029838545247912407, -0.024403272196650505, -0.031946100294589996, -0.012354156002402306, -0.0050297086127102375, 0.032417528331279755, -0.012187770567834377, 0.016194898635149002, -0.027938973158597946, 0.014641962945461273, -0.025027219206094742, -0.022961260750889778, 0.026677213609218597, 0.004873721394687891, 0.010683364234864712, -0.01084974966943264, -0.010870547965168953, -0.016749517992138863, -0.02950577437877655, -0.024292347952723503, -0.008665934205055237, 0.02491629496216774, 0.014947003684937954, 0.003840742167085409, 0.03740910813212395, -0.018870938569307327, -0.012305627577006817, 0.006125082727521658, 0.004128451459109783, -0.015113390050828457, -0.002081557409837842, -0.036632638424634933, -0.0023294033017009497, 0.01821926049888134, 0.012804784812033176, 0.001158635481260717, -0.020839840173721313, 0.009040302596986294, 0.023238569498062134, 0.00548380333930254, -0.012166972272098064, -0.00023354693257715553, -0.012652264907956123, 0.01552935503423214, -0.020895302295684814, -0.011196387931704521, 0.006138948258012533, -0.0323343351483345, -0.00454094959422946, -0.011376638896763325, -0.0028840231243520975, 0.008783791214227676, 0.00011915660434169695, 0.003865006845444441, -0.011626217514276505, 0.018635226413607597, 0.0077161481603980064, 0.030226780101656914, 0.019758330658078194, -0.005005443934351206, -0.015473892912268639, 0.013560454361140728, 0.013837764039635658, -0.00026539425016380847, -0.009241352789103985, 0.02307218499481678, -0.007515098433941603, 0.012693860568106174, 0.02336335927248001, -0.005618991795927286, -0.0015823997091501951, -0.015002465806901455, -0.00563632370904088, -0.02842426486313343, -0.021602442488074303, -0.03128055855631828, 0.00447508879005909, 0.027883511036634445, 0.01953648217022419, 0.0005554864183068275, 0.01175794005393982, -0.008173709735274315, -0.011439033783972263, -0.014849945902824402, -0.00028662578552030027, 0.0031266692094504833, -0.00880458950996399, 0.010891346260905266, 0.03965531662106514, 0.00258764810860157, -0.013775370083749294, -0.06167372316122055, -0.015141121111810207, 0.007223923224955797, 0.01760917901992798, 0.051246870309114456, -0.014378518797457218, -0.0173180028796196, 0.03538474440574646, 0.010766557417809963, -0.0043676309287548065, -0.023349493741989136, 0.02228185161948204, 0.03535701334476471, -0.011196387931704521, -0.006662370637059212, 0.011133993044495583, -0.020340681076049805, 0.012056048028171062, -0.0031457343138754368, -0.020992359146475792, -0.01582052931189537, 0.0013700842391699553, -0.004454290494322777, 0.015085658989846706, -0.03155786916613579, 0.016278091818094254, 0.027675528079271317, -0.009248285554349422, -0.006468253675848246, -0.017525985836982727, 0.0025460515171289444, 0.001565067796036601, -0.011577689088881016, 0.00934534426778555, -0.0009757842635735869, 0.004804394207894802, 0.01564027927815914, -0.0021890150383114815, 0.008943244814872742, -0.013401001691818237, -0.01062790211290121, 0.04506285861134529, -0.015196583233773708, -0.010010887868702412, -0.011175589635968208, 0.011237983591854572, 0.02246210165321827, 0.0042636399157345295, 0.0021924814209342003, 0.0016404613852500916, -0.012673063203692436, -0.0107180280610919, 0.009040302596986294, -0.010551641695201397, -0.004537483211606741, -0.013470328412950039, -0.009317613206803799, -0.02512427791953087, -0.013082094490528107, -0.006374661345034838, -0.0107734901830554, -0.012777053751051426, -0.010634834878146648, -0.010308995842933655, -0.015681875869631767, 0.0147390216588974, 0.031835176050662994, -0.013179153203964233, 0.008201440796256065, 0.03499650955200195, -0.061285488307476044, 0.01248587854206562, 0.009026437066495419, -0.003195996629074216, -0.014309191145002842, -0.008506481535732746, 0.006187477149069309, -0.016735652461647987, 0.027481412515044212, -0.017331868410110474, 0.011806469410657883, -0.026621751487255096, -0.01690203882753849, 0.013511925004422665, -0.009123495779931545, 0.030337704345583916, 0.005067838355898857, 0.005920566618442535, 0.008451019413769245, -0.014531038701534271, -0.008367826230823994, -0.01880161091685295, -0.0200356412678957, -0.018385646864771843, 0.01930077001452446, -0.015002465806901455, 0.032362066209316254, -0.01903732493519783, -0.0016707922331988811, 0.01824699155986309, -0.04547882452607155, -0.032972149550914764, 0.015376834198832512, 0.01290877629071474, -0.016236495226621628, -0.012548273429274559, -0.03638305887579918, -0.016042377799749374, -0.016014646738767624, -0.00025629502488300204, -0.00788253452628851, -0.0028874895069748163, 0.0026725742500275373, 0.011875797063112259, -0.014018015936017036, 0.021047821268439293, -0.0240704994648695, -0.005605126731097698, -0.014947003684937954, -0.03336038067936897, 0.0025044551584869623, 0.002237544395029545, -0.00655144639313221, 0.025983938947319984, 0.018676823005080223, 0.0021682167425751686, -0.05243930220603943, -0.009248285554349422, -0.03979397192597389, -0.0010520444484427571, -0.009359209798276424, 0.0346914678812027, 0.024500330910086632, -0.016735652461647987, 0.002199414186179638, 0.021269669756293297, -0.004114585928618908, 0.015168852172791958, -0.03629986569285393, -0.02011883445084095, -0.004010594449937344, -0.017733968794345856, 0.016985232010483742, 0.0031647994183003902, -0.01692976988852024, -0.012472013011574745, 0.01695750094950199, 0.023377224802970886, 0.003989796154201031, 0.0032965214923024178, 0.022101599723100662, -0.0024247285909950733, 0.013179153203964233, -0.013539656065404415, -0.0041527156718075275, -0.0075012329034507275, 0.009026437066495419, -0.01819152943789959, 0.010822019539773464, 0.002859758445993066, 0.014392384327948093, -0.021921347826719284, 0.021713364869356155, 0.01708229072391987, -0.011716343462467194, -0.00023094716016203165, -0.02193521335721016, -0.005105968564748764, -0.012139241211116314, 0.00868673250079155, 0.012929574586451054, 0.007979592308402061, -0.004430025815963745, 0.029783084988594055, 0.010031686164438725, 0.0020676921121776104, -0.0029377518221735954, 0.02304445393383503, -0.024791505187749863, 0.0039031370542943478, 0.01716548390686512, -0.03690994903445244, -0.0005238557350821793, 0.01243041642010212, 0.00041249848436564207, -0.03635532781481743, 0.011397437192499638, -0.0006802758434787393, -0.008957110345363617, -0.04514605179429054, 0.0050782375037670135, 0.010267399251461029, -0.019411694258451462, -0.01634741947054863, -0.008125180378556252, -0.020160431042313576, -0.013213817030191422, -0.02839653380215168, 0.004138850141316652, -0.033027611672878265, 0.024930160492658615, 0.015279775485396385, 0.0014420115621760488, -0.021685635671019554, 0.003260124707594514, 3.6586494388757274e-05, -0.004010594449937344, -0.025873014703392982, 0.29128631949424744, -0.013692176900804043, 0.001753985183313489, 0.02655242383480072, -0.0016733920201659203, 0.005944831296801567, -0.012305627577006817, 0.00868673250079155, 0.027231832966208458, 0.004447357729077339, -0.01798354834318161, -0.03521835803985596, -0.010059417225420475, 0.0006967411609366536, 0.00645438814535737, 0.0022566092666238546, -0.02114487998187542, -0.004499353468418121, -0.008929379284381866, 0.02072891592979431, 0.022794874384999275, -0.02886796183884144, 0.006766361650079489, 0.01141823548823595, 0.04894519969820976, 0.002293006284162402, -0.023904114961624146, 0.017595313489437103, 0.03763095289468765, 0.02257302589714527, -0.004748932085931301, 0.005601660348474979, -0.0054352739825844765, -9.959054295904934e-06, -0.010676431469619274, 0.0035426339600235224, 0.02032681554555893, 0.019869254902005196, 0.013685244135558605, 0.024278482422232628, -0.012201636098325253, 0.007612157147377729, 0.0008769925916567445, -0.03824103623628616, -0.0037090200930833817, 0.0030382766854017973, 0.0019827657379209995, 0.008672866970300674, -0.00024567925720475614, 2.4494805984431878e-05, -0.028063762933015823, -0.00554273184388876, 0.025554107502102852, 0.009400805458426476, -0.010614036582410336, -0.019869254902005196, 0.005466471426188946, -0.00211622123606503, 0.003840742167085409, -0.012555206194519997, 0.002476724097505212, 0.05307711660861969, -0.016513805836439133, 0.04026539996266365, -0.012790919281542301, 0.008513414300978184, 0.004908385220915079, 0.014683559536933899, 0.005255022551864386, -0.01903732493519783, -0.0016872574342414737, 0.004166581202298403, -0.0036119616124778986, -0.015834394842386246, -0.027190236374735832, -0.024278482422232628, 0.01777556538581848, 0.015543220564723015, 0.04059816896915436, -0.000557219609618187, -0.002308605005964637, -0.005639790091663599, -0.007619089912623167, 0.013075161725282669, -0.05091409757733345, -0.044203199446201324, -0.005137166008353233, -0.029367119073867798, 0.005618991795927286, 0.0033831808250397444, -0.0026951057370752096, 0.025401586666703224, -0.014392384327948093, 0.0015927987406030297, 0.01380310021340847, 0.03629986569285393, -0.012270963750779629, 0.018704554066061974, -0.019702868536114693, 0.020812109112739563, -0.011383571662008762, 0.04284438118338585, 0.01740119606256485, 0.003823410253971815, -0.025041084736585617, -0.017068425193428993, -0.01446171198040247, 0.016860442236065865, -0.00910963024944067, 0.013602050952613354, -0.007054070942103863, -0.050636790692806244, 0.002287806710228324, -0.003147467505186796, -0.0004250640922691673, 0.02111714892089367, -0.014087343588471413, -0.025221336632966995, -0.007119931746274233, -0.004430025815963745, 0.024819236248731613, -0.027564605697989464, 8.839253132464364e-05, 0.006052288692444563, 0.0007574026822112501, -0.019078921526670456, -0.0021855486556887627, -0.00978210661560297, 0.0028753571677953005, -0.04722587764263153, 0.027966704219579697, -0.0161394365131855, 0.01498860027641058, -0.014475577510893345, -0.0016621262766420841, 0.015487758442759514, 0.0017505188006907701, 0.02523520216345787, -0.020715050399303436, -0.010198071599006653, 0.029755353927612305, 0.0022635420318692923, 0.023418821394443512, -0.0063781277276575565, 0.022822605445981026, -0.005327816586941481, 0.006021091248840094, 0.008693665266036987, 0.02889569289982319, 0.005216892808675766, -0.047863688319921494, -0.03266710788011551, 0.01769237220287323, -0.010281264781951904, 0.03868473321199417, 0.009768241085112095, -0.02834107168018818, -0.04972166568040848, 0.0017409862484782934, 0.020049506798386574, -0.00389620428904891, -0.012804784812033176, 0.02847972698509693, -0.031807444989681244, -0.00855501089245081, -0.017151618376374245, -0.1763691008090973, 0.010496179573237896, 0.022087734192609787, -0.007279384881258011, 0.00721699045971036, 8.2163889601361e-05, -0.005383278708904982, 0.030975516885519028, -0.016541536897420883, 0.00026344440993852913, 0.027620065957307816, 0.020243622362613678, -0.010107946582138538, -0.018635226413607597, -0.004253240767866373, -0.025318395346403122, -0.04176287353038788, 0.02731502614915371, 0.02251756377518177, 0.015141121111810207, 0.051718298345804214, -0.015959184616804123, 0.00021199042384978384, 0.022919664159417152, 0.0280776284635067, -0.012534407898783684, -0.017415061593055725, 0.019106652587652206, 0.023793190717697144, -0.03435869887471199, 0.0014662761241197586, -0.006343464367091656, 0.0016794580733403563, 0.011494495905935764, 0.01285331416875124, -0.014239863492548466, -0.024902429431676865, 0.011369706131517887, -0.004176980350166559, -0.008638204075396061, 0.0033658489119261503, 0.037686415016651154, 0.031918369233608246, 0.015099524520337582, 0.02763393148779869, 0.027509143576025963, -0.006683168932795525, -0.008000390604138374, 0.0013848163653165102, -0.03061501309275627, 0.011057732626795769, -0.0430384986102581, -0.0015408031176775694, -0.012957305647432804, 0.03452508524060249, 0.017997413873672485, -0.012832515873014927, -0.012929574586451054, -0.01634741947054863, 0.011522226966917515, -0.02576209045946598, -0.006107750814408064, -0.004859856329858303, 0.012506676837801933, 0.005535799078643322, 0.002844159724190831, -0.02085370570421219, 0.020867571234703064, -0.016915904358029366, -0.006211741827428341, 0.015446161851286888, -0.025110412389039993, 0.012693860568106174, -0.042095642536878586, 0.045811597257852554, 0.0039932625368237495, 0.0016413279809057713, -0.02140832506120205, 0.033499035984277725, -0.02298899181187153, -0.006371194962412119, 0.02312764711678028, -0.011556890793144703, -0.010371390730142593, 0.00818757526576519, 0.003989796154201031, 0.012569071725010872, -0.0087144635617733, -0.022683950141072273, -0.005428341217339039, 0.04228975996375084, -0.04054270684719086, 0.014794483780860901, -0.012555206194519997, 0.019467156380414963, 0.006260271184146404, 0.0018770414171740413, -0.006905016489326954, -0.0015009398339316249, -0.0017903820844367146, -0.025013353675603867, 0.0009922494646161795, -0.025276798754930496, 0.01276318822056055, 0.0029169535264372826, -0.023668400943279266, 0.014378518797457218, 0.03202929347753525, 0.020465470850467682, -0.012811717577278614, -0.008395557291805744, -0.008776858448982239, 0.019980179145932198, -0.001002648612484336, 0.0064335898496210575, 0.002027828712016344, -0.019175980240106583, -0.02512427791953087, -0.0063295988366007805, -0.007223923224955797, 0.004197778645902872, -0.00563632370904088, 0.0075566950254142284, 0.031308289617300034, -0.004464689642190933, -0.00880458950996399, -0.03372088447213173, -0.01763691008090973, 0.018940266221761703, 0.0023207373451441526, 0.0038164774887263775, 0.018940266221761703, 0.00992769468575716, -0.0048147933557629585, 0.0038511413149535656, 0.020215893164277077, -0.0294780433177948, -0.03585617244243622, -0.031003247946500778, 0.01634741947054863, 0.04700402915477753, 0.019994044676423073, -0.021810423582792282, -0.0008098316029645503, 0.0018406445160508156, 0.03685448691248894, 0.001223629922606051, -0.043731771409511566, 0.00703327264636755, -0.002793897408992052, -0.020285218954086304, -0.017262542620301247, -0.019439425319433212, 0.03654944524168968, 0.02705158106982708, 0.017858758568763733, 0.051108215004205704, -0.0076606860384345055, 0.023585207760334015, -0.006145881023257971, -0.01740119606256485, -0.004326034337282181, -0.03338811174035072, -0.0201465655118227, -0.0057403151877224445, -0.0012010985519737005, 0.0011057732626795769, -0.006846088450402021, -0.00010529110295465216, -0.020895302295684814, -0.018039008602499962, 0.01193125918507576, 0.001974100014194846, 0.040459513664245605, 0.00023094716016203165, -0.016860442236065865, -0.009976224042475224, -0.007986525073647499, -0.0070610037073493, -0.033499035984277725, 0.011522226966917515, 0.012624533846974373, -0.002826827811077237, -0.009213621728122234, -0.035662055015563965, 0.006322666071355343, -0.01552935503423214, 0.007210057694464922, -0.015737337991595268, 0.008513414300978184, -0.005865104496479034, -0.007348712533712387, -0.005480336956679821, -0.011473697610199451, 0.0320015624165535, 0.010239668190479279, 0.015654144808650017, 0.028257880359888077, -0.01790035516023636, 0.02792510762810707, -0.036632638424634933, -0.00590670108795166, -0.025803687050938606, -0.002809495897963643, 0.0023034054320305586, -0.006960478611290455, -0.015806665644049644, -0.005553130991756916, 0.005976028740406036, -0.008263835683465004, 0.01640288159251213, 0.03799145668745041, -0.004842524416744709, 0.008970975875854492, -0.029339388012886047, -0.02114487998187542, 0.0087144635617733, 0.04456370323896408, 0.05188468471169472, 0.004707335494458675, -0.016888173297047615, -0.021131014451384544, 0.003260124707594514, 0.015168852172791958, 7.100649963831529e-05, 0.01422599796205759, -0.009061100892722607, 0.001703722751699388, -0.08502321690320969, 0.00523422472178936, 0.00017461858806200325, 0.004665739368647337, 0.0037783475127071142, 0.004499353468418121, -0.0029914805199950933, -0.022878067567944527, -0.00164479436352849, -0.02845199592411518, -0.0214360561221838, 0.01626422628760338, 0.0065757110714912415, -0.014267594553530216, -0.027148639783263206, -0.004426559433341026, 0.03119736537337303, -0.020867571234703064, 0.01900959387421608, 0.01859362982213497, -0.00019238375534769148, 0.017054559662938118, 0.03366542235016823, -0.0044404249638319016, -0.014572635293006897, 0.04076455533504486, -0.030254511162638664, 0.015349103137850761, -0.025221336632966995, -0.02322470396757126, -0.007508165668696165, -0.0028614916373044252, 0.0003555199655238539, 0.0213805940002203, -0.0004675271629821509, -0.015723472461104393, -0.0012721591629087925, 0.005670987535268068, 0.02649696171283722, -0.01087748073041439, -0.008762992918491364, -0.013761504553258419, -0.01209071185439825, 0.0006005492759868503, -0.023723863065242767, 0.014614231884479523, -0.012250165455043316, 0.017650775611400604, 0.0038164774887263775, 0.0014038813533261418, 0.01991085149347782, 0.01074575912207365, 0.0046934699639678, -0.01310289278626442, -0.019203711301088333, -0.05951070785522461, 0.015903722494840622, 0.011175589635968208, -0.02483310177922249, -0.030420897528529167, 0.022143196314573288, 0.02248983271420002, 0.02365453541278839, -0.021574711427092552, 0.015889856964349747, 0.007119931746274233, -0.027148639783263206, 0.015446161851286888, 0.01856589876115322, -0.005154497921466827, -0.011133993044495583, -0.006222140975296497, -0.01422599796205759, -0.0004978579236194491, -0.012056048028171062, 0.024985622614622116, 0.004897986073046923, -0.011882729828357697, -0.014149738475680351, 0.02897888608276844, -0.013844696804881096, 0.009816770441830158, -0.02433394454419613, 0.0027661663480103016, 0.029755353927612305, -0.020077237859368324, -0.017276408150792122, -0.010094081051647663, 0.00036505248863250017, 0.015709606930613518, -0.02135286293923855, 0.015335237607359886, 0.03108644112944603, 0.019370097666978836, 0.007026339881122112, 0.016278091818094254, 0.008728329092264175, -0.019259173423051834, 0.024902429431676865, 0.011820334941148758, -0.017539851367473602, 0.023876383900642395, -0.012582937255501747, -0.02945031225681305, -0.013934822753071785, 0.028327206149697304, -0.014101209118962288, -0.06494598090648651, 0.014156671240925789, -0.005223825573921204, -0.021075552329421043, 0.011383571662008762, -0.007570560555905104, 0.03446962311863899, -0.023196972906589508, 0.01007328275591135, -0.018399512395262718, -0.009733578190207481, -0.038324229419231415, 0.025512510910630226, 0.030199049040675163, 0.015668010339140892, 0.0017219212604686618, -0.019051190465688705, 0.013685244135558605, -0.01169554516673088, 0.02810535952448845, -0.02731502614915371, 0.009795972146093845, 0.02187975123524666, -0.0031197364442050457, -0.024569658562541008, -0.0019585012923926115, -0.016513805836439133, -0.0035980960819870234, 0.01046844944357872, -0.00840942282229662, -0.00420471141114831, -0.03846288472414017, 0.04631075635552406, 0.007528963964432478, 0.018330184742808342, -0.0018111803801730275, 0.007438838481903076, 0.010648700408637524, 0.01178567111492157, -0.00040513245039619505, -0.006100818049162626, -0.018344050273299217, 0.025096546858549118, -0.02945031225681305, -0.012624533846974373, -0.020493201911449432, -0.005691785831004381, -0.0033970463555306196, -0.01443398091942072, 0.02834107168018818, -0.02939485013484955, -0.01801127940416336, 0.028757037594914436, -0.0011222385801374912, 0.01681884564459324, 0.00557046290487051, -0.00548380333930254, -0.019051190465688705, -0.006544513627886772, 0.014281460084021091, -0.00831929687410593, -0.014655828475952148, 0.009567191824316978, 0.0200356412678957, -0.008596607483923435, -0.011203320696949959, 0.005851238965988159, -0.015238179825246334, -0.007210057694464922, 0.007210057694464922, 0.008090516552329063, 0.014309191145002842, 0.005573929287493229, 0.028313342481851578, -0.0376032218337059, -0.011251849122345448, 0.01661086268723011, -0.020077237859368324, -0.009823703207075596, 0.001447211136110127, -0.009671183302998543], "a8490578-d792-4b2d-a91a-e3755211dad5": [-0.012599218636751175, 0.008184168487787247, 0.0036182827316224575, -0.02585146762430668, -0.007073307875543833, 0.022004269063472748, -0.014508621767163277, -0.03316256403923035, -0.014735762029886246, -0.033503275364637375, -0.010760797187685966, 0.024474427103996277, -0.031459007412195206, 0.006629673298448324, -0.009518621489405632, -0.013472291640937328, 0.0038436490576714277, 0.014040143229067326, 0.020825976505875587, -0.010221337899565697, 0.0036129590589553118, 0.030294910073280334, 0.00215961248613894, -0.0005132850492373109, -0.023338722065091133, 0.010952447541058064, 0.017504042014479637, -0.017021367326378822, -0.0015935349510982633, -0.017418863251805305, 0.041538383811712265, -0.015388792380690575, 0.007052013650536537, -0.023878181353211403, -0.006051173899322748, -0.02059883624315262, -0.002416920615360141, -0.008972063660621643, 0.006672262214124203, 0.02120927721261978, 0.011662262491881847, -0.01824224926531315, 0.004855135455727577, -0.005256181117147207, -0.008340328000485897, 0.008439701981842518, -0.004887077491730452, 0.001859715674072504, -0.0032367571257054806, 0.01812867820262909, 0.008837198838591576, 0.02958509512245655, -0.04727368801832199, -0.04988580942153931, 0.014749959111213684, 0.0015181171474978328, 0.019704468548297882, 0.0056501287035644054, -0.021635165438055992, -0.023111581802368164, 0.028988851234316826, 0.009348265826702118, -0.02464478276669979, 0.0054513802751898766, 0.014054340310394764, -0.02305479533970356, -0.015814680606126785, 0.006750341970473528, 0.005199396051466465, -0.005635932087898254, 0.005007745698094368, 0.02874751389026642, 0.0023654589895159006, -0.012002973817288876, 0.01318836584687233, 0.008659744635224342, -0.0162973552942276, 0.00037354021333158016, 0.017007170245051384, -0.0001970846060430631, 0.007445960771292448, -0.011988777667284012, 0.02863394282758236, -0.005142610520124435, 0.0031870699021965265, 0.03367362916469574, -0.005657226778566837, 0.049488313496112823, 0.008716530166566372, -0.020982135087251663, 0.004933215212076902, -0.009043045341968536, 0.005877269431948662, 0.006430925335735083, 0.019491523504257202, -0.000156270238221623, 0.004784154240041971, 0.02349488064646721, -0.03634253516793251, -0.041964270174503326, 0.0006215319153852761, 0.018398407846689224, -0.039522506296634674, -0.012244311161339283, -0.041226062923669815, -0.01651030033826828, 0.021152490749955177, -0.010704012587666512, -0.0073323906399309635, -0.008333229459822178, -0.007644709199666977, 0.030096162110567093, 0.003169324714690447, 9.201949069392867e-07, -0.011953286826610565, 0.012705691158771515, 0.03591664507985115, -0.03140222281217575, -0.03151579201221466, -0.013926573097705841, 0.019349560141563416, 0.03529201075434685, 0.023835591971874237, -0.001106424373574555, 0.022330785170197487, 0.002782475436106324, -0.01863974519073963, -0.011378336697816849, 0.023750415071845055, -0.009312774986028671, 0.04903402924537659, 0.004159516654908657, 0.011300257407128811, 0.0035632720682770014, -0.00019797187997028232, 0.006193137262016535, -0.006938443053513765, 0.03248114138841629, -0.0033840436954051256, -0.0030326852574944496, 0.043696220964193344, 0.010732404887676239, -0.01173324417322874, -0.012400470674037933, -0.022699888795614243, 0.020116161555051804, 0.004982902202755213, 0.010178749449551105, -0.006704204250127077, 0.0009085633791983128, 0.011406728997826576, 0.0011161842849105597, -0.005373300518840551, 0.0037584712263196707, 0.00715848570689559, -0.012372078374028206, 0.0034763196017593145, 0.01024263259023428, 0.0014276157598942518, -0.02262890711426735, 0.002473705681040883, 0.01896626129746437, 0.02122347243130207, -0.003020263509824872, 0.015161651186645031, 0.04267408698797226, -0.016268962994217873, -0.03418469801545143, 0.01983223482966423, 0.006090214010328054, -0.02262890711426735, 0.029443131759762764, 0.013039303943514824, 0.009830939583480358, 0.007793770171701908, 0.014018849469721317, -0.0012572600971907377, -0.007971224375069141, -0.011399631388485432, 0.02531200833618641, -0.03730788454413414, -0.003080597845837474, -0.00863844994455576, -0.01628316007554531, 0.011378336697816849, -0.024091126397252083, 0.015573344193398952, 0.009021750651299953, 0.013500683940947056, -0.011172490194439888, 0.02531200833618641, 0.0162973552942276, 0.03824483975768089, 0.009639289230108261, -0.5678521394729614, -0.039948396384716034, -0.011328649707138538, 0.003982062917202711, 0.01173324417322874, -0.0008934797951951623, -0.003989160992205143, 0.012691495008766651, -0.014487327076494694, 0.017404668033123016, 0.0037620202638208866, 0.0025109711568802595, -0.0031285102013498545, -0.01845519430935383, -0.018937868997454643, -0.017404668033123016, -0.013862689957022667, 0.0010860171169042587, -0.0025429127272218466, 0.0011711949482560158, -0.05147579312324524, 0.024729959666728973, -0.03151579201221466, 0.02294122613966465, -0.006193137262016535, 0.009972902946174145, -0.01446603238582611, -0.001162322354502976, -0.017092349007725716, 0.0651894211769104, -0.04085696116089821, 0.007673101499676704, 0.03850037232041359, -0.006097312085330486, 0.05803448706865311, -0.03148740157485008, -0.04474674537777901, 0.011371239088475704, 0.013642647303640842, 0.03568950667977333, -0.024502819404006004, 0.0010354428086429834, 0.030152946710586548, 0.007928634993731976, -0.002587276278063655, 0.00027882427093572915, -0.008780413307249546, -0.010150356218218803, 0.0047025252133607864, -0.0042943814769387245, 0.016169589012861252, -0.00799251813441515, 0.0007750294171273708, -0.000754178618080914, 0.026206376031041145, -0.00890108197927475, 0.021294454112648964, -0.014458934776484966, 0.00856746919453144, -0.011357042007148266, -0.02840680256485939, 0.005398144014179707, -0.040601424872875214, 0.003634253516793251, -0.0057353065349161625, 0.023764610290527344, -0.007921537384390831, -0.012783770449459553, -0.021691950038075447, -0.018696531653404236, -0.012343685142695904, 0.035235222429037094, 0.01961928978562355, 0.025922449305653572, 0.009603799320757389, 0.01758921891450882, 0.0570407435297966, -0.011165392585098743, 0.006867461372166872, -0.003197717247530818, -0.00819836463779211, -0.012521139346063137, -0.036626461893320084, 0.00889398343861103, 0.026618067175149918, -0.006590633653104305, -0.020201338455080986, -0.0008442364051006734, 0.002498549409210682, 0.005955349188297987, 0.036087002605199814, 0.008780413307249546, 0.03605860844254494, -0.0041382224299013615, -0.00032762406044639647, 0.04131124168634415, -0.03796091303229332, 0.007151387631893158, 0.021195080131292343, -0.0028623295947909355, -0.05658646300435066, 0.031146688386797905, 0.007233016192913055, 0.007091053295880556, 0.01467897742986679, -0.010576245374977589, -0.04960188269615173, 0.0075098443776369095, 0.019775450229644775, -0.022117840126156807, 0.017063956707715988, 0.0028321624267846346, -0.020442675799131393, -0.005777895450592041, -0.017745379358530045, -0.04355425760149956, 0.036285750567913055, 0.014018849469721317, -0.009192106314003468, -0.002826838754117489, 0.022245606407523155, -0.006682909559458494, 0.041765522211790085, 0.014508621767163277, -0.011704851873219013, 0.010306515730917454, 0.022983813658356667, 0.017205920070409775, -0.015459774062037468, 0.008993358351290226, -0.024800941348075867, -0.013394211418926716, -0.01426728442311287, -0.02528361603617668, 0.01856876350939274, -0.016694853082299232, -0.017986716702580452, 0.002731013810262084, 0.014146615751087666, -0.04116927832365036, -0.023622648790478706, -0.01619798131287098, 0.014437640085816383, -0.0011463514529168606, -0.019448934122920036, 0.006782283540815115, -0.002997194416821003, 0.00016725019668228924, 0.0003458130522631109, 0.015374596230685711, -0.009468934498727322, -0.011122803203761578, 0.015573344193398952, 0.02637673169374466, 0.035008084028959274, -0.004546366166323423, -0.0015065826009958982, -0.00830483715981245, 0.019576702266931534, -0.003868492553010583, -0.006477063056081533, -0.011449318379163742, -0.012045563198626041, -0.00037620202056132257, -0.00442569749429822, -0.017291096970438957, -0.012102347798645496, 0.006022781599313021, -0.017873145639896393, -0.018526175990700722, -0.015204240567982197, 0.012194624170660973, -0.007850555703043938, -0.009185007773339748, -0.00017124290752690285, 0.012634709477424622, -0.006285413168370724, 0.002244790317490697, 0.00017434834444429725, -0.014991295523941517, 0.008028008975088596, -0.027512434870004654, 0.006540946662425995, -0.015090670436620712, 0.02840680256485939, 0.0034709961619228125, 0.02938634715974331, 0.014387953095138073, -0.003085921285673976, 0.0037904127966612577, -0.0319700725376606, 0.028577158227562904, -0.01682261936366558, 0.007971224375069141, 0.01597084105014801, 0.018824297934770584, 0.008177070878446102, 0.006441572681069374, -0.011420926079154015, 0.013969162479043007, 0.033929165452718735, 0.02927277609705925, 0.002674228511750698, -0.020456872880458832, 0.02359425462782383, -0.04187909513711929, 0.002817966043949127, -0.015814680606126785, -0.005266828462481499, 0.008446800522506237, 0.001920050010085106, -0.03231078386306763, 0.012024268507957458, 0.008943670429289341, 0.008070598356425762, 0.006196686066687107, -0.016268962994217873, 0.0051887487061321735, 8.054737918428145e-06, -0.001774537842720747, 0.00921340100467205, 0.01652449741959572, 0.010767895728349686, -0.027398863807320595, -0.01377751212567091, -0.015289418399333954, 0.0034745451994240284, 0.011875207535922527, 0.008773314766585827, -0.03483772650361061, -0.022799262776970863, -0.007374979555606842, -0.01682261936366558, 0.0007311095832847059, 7.85232987254858e-05, -0.0024293423630297184, 0.005302319303154945, -0.00804930366575718, 0.017532434314489365, 0.007538236677646637, 0.0069100502878427505, 0.013692334294319153, -0.012244311161339283, -0.02390657365322113, 0.01727689988911152, -0.011761637404561043, 0.029783843085169792, 0.005213592201471329, -0.006303158588707447, -0.006498357746750116, -0.030607229098677635, -0.006040527019649744, -0.012648905627429485, 0.020754994824528694, -0.004752212204039097, -0.017518237233161926, 0.0012865399476140738, 0.007907340303063393, 0.009142419323325157, 0.032452747225761414, 0.03463897854089737, 0.03086276166141033, -0.02132284641265869, -0.012748279608786106, 0.017078151926398277, -0.008091893047094345, 0.010696914047002792, -0.016112804412841797, -0.040573034435510635, -0.004791252315044403, 0.005887916777282953, -0.003075274173170328, 0.020613031461834908, -0.017745379358530045, 0.013174168765544891, -0.019889021292328835, 0.02778216451406479, -0.0029617038089782, 0.03744984790682793, 0.0027877988759428263, -0.023097384721040726, -0.019874824211001396, 0.00437246123328805, 0.03086276166141033, -0.015019688755273819, -0.014430541545152664, 0.021635165438055992, -0.009064339101314545, 0.0022323685698211193, 0.01147771067917347, -0.006001486908644438, 0.005501067265868187, 0.03526361659169197, -0.0012412891956046224, 0.0075808255933225155, 0.015828877687454224, 0.00953991524875164, 0.022671496495604515, -0.029783843085169792, 0.012932832352817059, 0.012961224652826786, 0.0006352845812216401, -0.01517584826797247, -0.010739503428339958, 0.04537138342857361, 0.011115705594420433, 0.0015340879326686263, -0.0021028274204581976, 0.012464353814721107, -0.016240570694208145, -0.013088990934193134, -0.04403693228960037, -0.004922567866742611, -0.002127670915797353, -0.026547087356448174, 0.01446603238582611, 0.006721949204802513, -0.0013220306718721986, 0.038216449320316315, -0.008162873797118664, -0.0244460329413414, -0.031146688386797905, -0.019165009260177612, 0.019690271466970444, -0.03793252259492874, 0.02231658808887005, -0.032424356788396835, -0.012932832352817059, -0.038443587720394135, -0.0020797583274543285, -0.012237213551998138, -0.02935795485973358, 0.0084609966725111, -0.021195080131292343, 0.007275605108588934, -0.016240570694208145, 0.05187328904867172, -0.027526631951332092, 0.007130092941224575, -0.007346586789935827, -0.03483772650361061, -0.02820805460214615, 0.016382534056901932, -0.005025491118431091, -0.03256632015109062, 0.006225078832358122, 0.024091126397252083, 0.03358845412731171, -0.011243471875786781, -0.021635165438055992, -0.004003357607871294, 0.016439318656921387, 0.013976260088384151, -0.008468094281852245, -0.013380015268921852, 0.008780413307249546, -0.015914056450128555, 0.02465897798538208, -0.029244383797049522, 0.029102420434355736, 0.022799262776970863, 0.031913287937641144, -0.01361425407230854, 0.020542049780488014, -0.018313230946660042, 0.017560826614499092, 0.006608379073441029, -0.008340328000485897, 0.014721565879881382, 0.010377497412264347, -0.01496290322393179, 0.003925277851521969, 0.014068536460399628, -0.00815577618777752, 0.01169065572321415, -0.004063691943883896, -0.021067313849925995, -0.0019626389257609844, -0.005348457023501396, 0.026092804968357086, -0.03770538046956062, -0.009405050426721573, 0.004290832672268152, 0.013060598634183407, -0.006640320643782616, 0.00841130968183279, 0.0006902952445670962, -0.010682717896997929, -0.0017088799504563212, -0.04528620466589928, -0.024275677278637886, -0.012073955498635769, -0.010029688477516174, -0.0034177599009126425, 0.010576245374977589, -0.03086276166141033, -0.024304071441292763, 0.0015633678995072842, 0.027611808851361275, 0.02465897798538208, 0.03043687343597412, 0.005955349188297987, -0.0048196446150541306, 0.0288326907902956, -0.013301935978233814, -0.019235990941524506, -0.023849789053201675, -0.006452219560742378, 0.020286517217755318, -0.024957099929451942, 0.02637673169374466, -0.005586245097219944, 0.017873145639896393, 0.009255989454686642, 0.010753699578344822, 0.011136999353766441, 0.013898180797696114, 0.007545335218310356, -0.0028889477252960205, -0.004890626296401024, 0.007524040527641773, 0.009958706796169281, -0.0262631606310606, -0.005185199435800314, 0.042276591062545776, -0.029130812734365463, -0.01467897742986679, 0.006335100159049034, -0.007864751853048801, 0.020130356773734093, 0.004003357607871294, 0.0017674397677183151, 0.02295542135834694, 0.014494425617158413, -0.001369055942632258, -0.01856876350939274, 0.011711949482560158, -0.016978777945041656, 0.0035277812276035547, -0.005941152572631836, -0.019165009260177612, -0.0009866430191323161, -0.01651030033826828, -0.009511522948741913, 0.03395755589008331, -0.033929165452718735, 0.03035169653594494, 0.006558692082762718, -0.013124481774866581, 0.023210955783724785, -0.017844753339886665, -0.03708074241876602, -0.010640129446983337, 0.015161651186645031, -0.006388336420059204, 0.0030149398371577263, -0.024488622322678566, -0.01778796687722206, -0.02938634715974331, 0.004986451473087072, -0.005029040388762951, 0.02893206477165222, -0.0010079374769702554, -0.027952520176768303, 0.002413371577858925, 0.002993645379319787, 0.029017243534326553, -0.005352006293833256, 0.01663806661963463, -0.023963360115885735, -0.015786288306117058, -0.02379300445318222, -0.020740797743201256, 0.010533656924962997, 0.01114409789443016, 0.009610896930098534, -0.018937868997454643, 0.0024825783912092447, 0.00031897317967377603, -0.02264310233294964, -0.027100741863250732, -0.011825520545244217, 0.01517584826797247, 0.008610057644546032, 0.032339178025722504, 0.020087769255042076, -0.014338266104459763, -0.010072276927530766, -0.008716530166566372, 0.00047823795466683805, -0.012599218636751175, -0.003928826656192541, -0.008063499815762043, 0.0007470804266631603, 0.004006906412541866, 0.006345747504383326, 0.001130380667746067, -0.02680261991918087, 0.011342845857143402, -0.0012554855784401298, -0.0008726289961487055, 0.009930313564836979, 0.019590897485613823, -0.030635621398687363, 0.0012554855784401298, 0.0003835219831671566, -0.020442675799131393, 0.002060238504782319, -0.038330018520355225, -0.009901921264827251, -0.010916956700384617, -0.011420926079154015, 0.011655164882540703, 0.0033911417704075575, 0.02907402813434601, -0.014231793582439423, 0.01800091192126274, -0.004982902202755213, 0.02992580644786358, 0.0058133858256042, -0.026319945231080055, -0.001276780036278069, -0.006100861355662346, 0.02485772594809532, -0.012364979833364487, 0.016694853082299232, 0.02754082717001438, 0.003607635386288166, 0.020442675799131393, 0.0034461524337530136, -0.021720344200730324, -0.0066687134094536304, 0.0008083020220510662, -0.025127455592155457, -0.02424728497862816, -0.03796091303229332, -0.0640537217259407, -0.011335748247802258, 0.02164936251938343, 0.021848110482096672, -0.01442344393581152, 0.01212364248931408, -0.010838877409696579, -0.012010072357952595, -0.014238892123103142, -0.004063691943883896, -0.00851778220385313, -0.010263927280902863, 0.03364523872733116, 0.03966446965932846, -0.02143641747534275, -0.015289418399333954, -0.04170873761177063, -0.013521978631615639, -0.009298578836023808, 0.03546236455440521, 0.020428480580449104, -0.005128414370119572, -0.02403433993458748, 0.0288326907902956, 0.023523274809122086, -0.0030681758653372526, -0.030152946710586548, 0.02582307532429695, 0.014650584198534489, -0.01854037120938301, -0.012152035720646381, 0.00958960223942995, -0.03594503924250603, 0.006672262214124203, 0.007445960771292448, -0.020243927836418152, -0.00958960223942995, -0.0023672336246818304, -0.00048444882850162685, 0.017234312370419502, -0.021180883049964905, 0.018824297934770584, 0.037904128432273865, 0.008588762953877449, -0.005160355940461159, -0.031459007412195206, -0.0011862785322591662, 0.005195846781134605, -0.00017656652198638767, 0.008879787288606167, -0.0034514761064201593, 0.008837198838591576, 0.017418863251805305, 0.002299800980836153, -0.0014551210915669799, -0.007438862696290016, -0.019463131204247475, 0.04522942006587982, -0.017021367326378822, -0.013805904425680637, -0.011172490194439888, 0.019165009260177612, 0.027838949114084244, 0.008595861494541168, -0.014636388048529625, 0.005046785809099674, -0.014096928760409355, -0.026447711512446404, 0.010952447541058064, -0.014707369729876518, 0.027583416551351547, -0.003139157546684146, -0.008801707997918129, -0.034667372703552246, -0.02508486807346344, -0.021038921549916267, 0.010732404887676239, -0.01356456708163023, -0.016794227063655853, -0.012258507311344147, -0.026021823287010193, 0.0377337746322155, 0.013969162479043007, -0.008432604372501373, 0.014849333092570305, 0.015090670436620712, -0.041538383811712265, 0.01716333068907261, -0.00645931763574481, -0.011832618154585361, -0.01886688731610775, -0.009901921264827251, 0.0011108607286587358, 0.005195846781134605, 0.008610057644546032, -0.0259508416056633, -0.008922376669943333, -0.03529201075434685, -0.011491906829178333, 0.023736217990517616, -0.02798091247677803, 0.022032661363482475, 0.001950217061676085, 0.01898045651614666, 0.002789573511108756, -0.02989741414785385, -0.006051173899322748, -0.004546366166323423, -0.02874751389026642, -0.017745379358530045, -0.0006938442820683122, -0.026447711512446404, 0.023565862327814102, -0.030152946710586548, -0.012599218636751175, 0.011804225854575634, -0.043582651764154434, -0.028889477252960205, 0.019704468548297882, 0.0022731830831617117, -0.029414739459753036, 0.0009653486195020378, -0.04017553851008415, 0.0004391981346998364, 0.003460348816588521, 0.005699815694242716, 0.01597084105014801, 0.0051355124451220036, -0.003426632611081004, 0.011513201519846916, 0.007531138602644205, 0.007353684864938259, -0.03935215249657631, -0.016652263700962067, -0.011271864175796509, -0.025666914880275726, -0.006015683524310589, -0.0003298422379884869, -0.001950217061676085, 0.026674853637814522, 0.012769574299454689, -0.010200043208897114, -0.04633673280477524, -0.006704204250127077, -0.03108990378677845, -0.0244460329413414, -0.008588762953877449, 0.042077843099832535, 0.020513657480478287, 0.0009001343278214335, 0.001774537842720747, 0.03131704404950142, -0.001424953923560679, -0.002101052785292268, -0.03815966099500656, 0.002791348146274686, -0.010796288028359413, -0.02326774038374424, 0.02518424205482006, -0.005249083042144775, -0.0024825783912092447, -0.026107000187039375, 0.010370398871600628, 0.002260761335492134, 0.022146232426166534, 0.009220498614013195, 0.028023501858115196, 0.006498357746750116, -0.02478674426674843, 0.005887916777282953, -0.00900045596063137, -0.011825520545244217, -0.008716530166566372, -0.01291863527148962, 0.004237596411257982, -0.0038436490576714277, 0.019264383241534233, -0.011562888510525227, 0.011541593819856644, 0.03679681569337845, -0.0048018996603786945, -0.0022554376628249884, -0.0010256828973069787, 0.006374139804393053, -0.014607995748519897, 0.018384212628006935, 0.022770870476961136, 0.017191722989082336, 0.01619798131287098, 0.023239348083734512, 0.03330452740192413, 0.01724850758910179, -0.012166231870651245, 0.02907402813434601, -0.023438096046447754, -0.0056501287035644054, 0.010654325596988201, -0.016879403963685036, -0.012996715493500233, 0.004922567866742611, 0.01120088342577219, -0.016368336975574493, 0.010569147765636444, 0.0029191148933023214, -0.025212634354829788, -0.060646604746580124, -0.012421765364706516, 0.021095706149935722, -0.025482363998889923, -0.025453971698880196, -0.0030131652019917965, -0.019903216511011124, -0.012286900542676449, -0.006828421726822853, 0.03160097077488899, -0.037989307194948196, 0.0029847726691514254, -0.012549531646072865, -0.0011011007009074092, -0.042304981499910355, 0.018611352890729904, 0.01521843671798706, -0.021180883049964905, -0.030692405998706818, 0.24917350709438324, -0.0040317499078810215, -0.008184168487787247, 0.016907796263694763, -0.001742596155963838, -0.009639289230108261, -0.012741181999444962, -0.0027877988759428263, 0.009142419323325157, -0.001364619587548077, -0.0019732860382646322, -0.016879403963685036, -0.010072276927530766, 0.003641351591795683, 0.006374139804393053, -0.00856746919453144, -0.016964582726359367, -0.01346519310027361, -0.016339944675564766, -7.231241761473939e-05, 0.028804298490285873, -0.019321167841553688, 0.010824681259691715, -0.006679360754787922, 0.03642771393060684, 0.003467446891590953, -0.002390302484855056, 0.002871202304959297, 0.0203716941177845, 0.009248890914022923, -0.0029741255566477776, -0.009135320782661438, 0.015388792380690575, -0.0014568956103175879, -0.025553345680236816, -0.007052013650536537, 0.02112409844994545, 0.01984643191099167, 0.018994653597474098, 0.0218765027821064, 0.004940313287079334, 0.01142802368849516, -0.006146999076008797, -0.008972063660621643, -0.00591985834762454, 0.01564432494342327, -0.003375170985236764, 0.012790868990123272, -0.005185199435800314, 0.0015296516939997673, -0.020343301817774773, -0.017532434314489365, 0.03100472502410412, 0.013103188015520573, -0.02927277609705925, -0.02863394282758236, 0.024304071441292763, 0.00745305884629488, 0.005256181117147207, 0.007516942452639341, -0.014607995748519897, 0.044775139540433884, -0.004766408819705248, 0.041027314960956573, -0.03395755589008331, 0.005643030628561974, 0.005958897992968559, 0.02519843727350235, 0.0024772549513727427, -0.0074033718556165695, -0.008184168487787247, 0.012790868990123272, -0.0033219349570572376, -0.0020460421219468117, -0.03901144117116928, -0.013152875006198883, 0.03963607922196388, 0.011172490194439888, 0.026731638237833977, -0.004549914970993996, -0.011804225854575634, -0.006601280998438597, -0.03143061324954033, 0.004429246298968792, -0.030635621398687363, -0.02424728497862816, -0.0012412891956046224, -0.02359425462782383, -0.0038578452076762915, -0.006938443053513765, 0.009731565602123737, 0.01854037120938301, -0.008269346319139004, 0.01132155116647482, 0.00557204894721508, 0.01832742616534233, 0.002241241279989481, 0.03077758476138115, -0.005674972198903561, 0.0005873720510862768, -0.007538236677646637, 0.03537718579173088, 0.02508486807346344, 0.0023086736910045147, 0.0019608642905950546, -0.010334908962249756, -0.0109382513910532, 0.007744083181023598, -0.0038436490576714277, -0.006047625094652176, -0.015147455036640167, -0.04943152517080307, -0.008375818841159344, -0.009114026091992855, -0.010945349931716919, 0.018937868997454643, -0.0007803530315868556, -0.029215991497039795, -0.002349488204345107, -0.017021367326378822, 0.009341167286038399, -0.024928707629442215, 0.005447831470519304, 0.007822162471711636, -0.0033521021250635386, -0.024176303297281265, 0.0023441645316779613, -0.019108224660158157, 0.0038507471326738596, -0.05760859698057175, 0.03182811290025711, -0.01961928978562355, 0.023324524983763695, -0.017305294051766396, 0.004276636056602001, 0.023523274809122086, 0.008574566803872585, 0.022657299414277077, -0.020201338455080986, -0.005589794367551804, 0.01704975962638855, -0.01132155116647482, 0.03353166580200195, -0.00616829376667738, -0.0033804946579039097, 0.004276636056602001, 0.02252953313291073, 0.008617156185209751, 0.01824224926531315, 0.00809899065643549, -0.033815592527389526, -0.043383900076150894, 0.02573789656162262, -0.015828877687454224, 0.021578380838036537, 0.007303997874259949, -0.01888108253479004, -0.03140222281217575, 0.020840173587203026, 0.014820939861238003, 0.00021871179342269897, -0.004571209661662579, 0.031231867149472237, 0.006988130044192076, -0.013145776465535164, -0.015246829017996788, -0.18171267211437225, 0.018611352890729904, 0.012506943196058273, -0.026078607887029648, 0.010867269709706306, -0.004862233530730009, -0.003861394478008151, 0.028335820883512497, -0.01013616006821394, 0.00552236195653677, 0.021919092163443565, 0.005646579433232546, -0.011534496210515499, 0.005671422928571701, -0.003545526647940278, -0.029982591047883034, -0.037989307194948196, 0.030493658035993576, 0.032339178025722504, -0.00024178078456316143, 0.03248114138841629, -0.005128414370119572, -0.0036555479746311903, 0.023111581802368164, 0.025226829573512077, -0.00721172196790576, -0.0002621879684738815, 0.048097074031829834, 0.017433060333132744, -0.029613487422466278, 0.006161195691674948, -0.02230239100754261, 0.021691950038075447, 0.013600057922303677, -0.011541593819856644, -0.0007692621438764036, -0.011122803203761578, 0.022969618439674377, -0.011378336697816849, -0.00889398343861103, 0.006310256663709879, 0.03631414473056793, 0.011782931163907051, -0.005259730387479067, 0.01078209187835455, 0.0059659965336322784, 0.01382719911634922, 0.0012581472983583808, 0.002564207185059786, -0.031231867149472237, 0.012726985849440098, -0.0639401450753212, 0.01023553404957056, -0.002853456884622574, 0.03830162435770035, 0.006778734736144543, -0.01088856440037489, -0.006303158588707447, -0.006945541128516197, -0.013018010184168816, 0.005760150030255318, -0.033702023327350616, 0.00953991524875164, -0.011058920063078403, -0.008233855478465557, 0.02485772594809532, -0.011300257407128811, 0.03194168210029602, -0.027285294607281685, -0.00043831084622070193, 0.00970317330211401, -0.005124865565448999, 0.015473970212042332, -0.03654128313064575, 0.020442675799131393, 0.004493129905313253, 0.0016751637449488044, -0.004734467249363661, 0.039948396384716034, -0.009468934498727322, -0.031686149537563324, 0.029244383797049522, -0.006771636661142111, -0.024176303297281265, 0.012166231870651245, 0.01802930422127247, 0.02443183772265911, 0.002645835978910327, -0.01714913360774517, -0.006498357746750116, 0.04363943636417389, -0.03713752701878548, 0.03131704404950142, -0.011591281741857529, 0.022685691714286804, -0.002125896280631423, -0.01436665840446949, -0.0008043092675507069, -0.007502746302634478, -2.8808513889089227e-05, -0.0005443394766189158, -0.015303614549338818, -0.01726270467042923, 0.0037549221888184547, -0.005809837020933628, -0.0026635813992470503, 0.0017958323005586863, 0.007431764621287584, 0.034780941903591156, 0.015133258886635303, -0.013323230668902397, -0.005139061715453863, 0.020286517217755318, 0.010150356218218803, 0.013976260088384151, 0.028548765927553177, -0.020882761105895042, -0.01736207865178585, 0.016751637682318687, -0.015289418399333954, -0.0010647227754816413, -0.015899859368801117, -0.005043236538767815, 0.02498549222946167, -0.008013812825083733, -0.006640320643782616, -0.046791013330221176, -0.00933406874537468, 0.009873528964817524, -0.008617156185209751, 0.015019688755273819, 0.032452747225761414, -0.0012900889851152897, -0.0037549221888184547, -0.013798806816339493, 0.023338722065091133, -0.060646604746580124, -0.04460478201508522, -0.025808878242969513, 0.0035650464706122875, 0.04264569282531738, 0.008106089197099209, -0.040147144347429276, -4.200663897790946e-05, -0.0076660034246742725, 0.03551914915442467, -0.017191722989082336, -0.05511004850268364, 0.006125704851001501, -0.009944510646164417, -0.01683681458234787, 0.0013264670269563794, -0.017532434314489365, 0.04105570912361145, 0.030096162110567093, 0.01737627387046814, 0.06433764845132828, -0.012081054039299488, 0.024701567366719246, -0.02721431292593479, -0.015033884905278683, -0.03256632015109062, -0.01457960344851017, -0.0074175684712827206, 0.007531138602644205, -0.0008903743582777679, 0.00696683581918478, 0.0122230164706707, -0.01588566228747368, 0.0016334621468558908, -0.009972902946174145, -0.009816743433475494, 0.008730726316571236, 0.04173713177442551, -0.006750341970473528, 0.012883145362138748, -0.02220301702618599, 0.0011969257611781359, 0.015190044417977333, -0.023338722065091133, 0.004517973400652409, 0.017305294051766396, 0.0021880052518099546, -0.013628451153635979, -0.01983223482966423, 0.015374596230685711, -0.036512892693281174, -0.0025180692318826914, 0.0015935349510982633, 0.019860627129673958, -0.0015332007315009832, 0.01854037120938301, -0.021947484463453293, -0.0004591616743709892, 0.021833913400769234, 0.0012120093451812863, -0.00012466128100641072, 0.028037698939442635, -0.02294122613966465, 0.0019165008561685681, -0.03401434049010277, -0.003252727910876274, -0.017532434314489365, 0.018398407846689224, 0.004723819904029369, -0.02487192302942276, 0.0035916646011173725, -0.013798806816339493, 0.0001889882842078805, -0.007644709199666977, 0.04020392894744873, 0.02583727054297924, 0.005930505692958832, 0.00397141557186842, 0.005579147022217512, -0.023196758702397346, -0.002935085678473115, 0.03708074241876602, 0.034042734652757645, -0.006377689074724913, -0.02197587676346302, -0.019477328285574913, -0.00017933922936208546, 0.011406728997826576, 0.0011658713920041919, -0.0006942879408597946, -0.0013513106387108564, 0.017972519621253014, -0.07666003704071045, 0.0014444738626480103, -0.008283542469143867, 0.013344524428248405, 0.011087312363088131, -0.009937412105500698, -0.006161195691674948, -0.007736985106021166, 0.014409247785806656, -0.011797127313911915, -0.011853912845253944, 0.022387569770216942, -0.017560826614499092, -0.010320711880922318, -0.03390077129006386, -0.033702023327350616, 0.03205525130033493, 0.002553560072556138, 0.01597084105014801, 0.00033006403828039765, -0.0030734995380043983, 0.02788153849542141, 0.04321354627609253, -0.0025180692318826914, -0.0009635740425437689, 0.023878181353211403, -0.01993160881102085, 0.02402014471590519, -0.01662387140095234, -0.02079758420586586, -0.0012395146768540144, -0.011619674041867256, 0.01323805283755064, 0.028875280171632767, 0.015402988530695438, -0.016751637682318687, 0.013003813102841377, 0.0037655693013221025, 0.03645610436797142, -0.011449318379163742, -0.004056593403220177, -0.03310577943921089, -0.005085825454443693, -0.006881657987833023, -0.025865664705634117, -0.007538236677646637, -0.0004879979242105037, 0.01019294559955597, 0.0029581545386463404, 0.020769191905856133, 0.013791708275675774, 0.005770796909928322, 0.019747057929635048, -0.007978321984410286, -0.015360400080680847, -0.04653548076748848, 0.023551667109131813, -0.0033006404992192984, -0.0236936304718256, 0.004919019062072039, 0.027398863807320595, 0.010916956700384617, 0.008524879813194275, -0.010377497412264347, 0.011520300060510635, -0.0019395698327571154, -0.028335820883512497, 0.009681878611445427, 0.010810485109686852, -0.012741181999444962, 0.0035561739932745695, -0.016240570694208145, 0.0005407904391176999, 0.008666843175888062, 0.019221793860197067, 0.014018849469721317, -0.011456416919827461, -0.015431380830705166, -0.01362135261297226, 0.02829323150217533, 0.007815064862370491, -0.0063138059340417385, -0.009951608255505562, 0.02282765507698059, 0.036711640655994415, -0.006356394849717617, -0.009738664142787457, 0.014182106591761112, -0.011371239088475704, 0.0022625357378274202, -0.029017243534326553, 0.028364213183522224, 0.01286894828081131, 0.007715690415352583, 0.02305479533970356, 0.010824681259691715, 0.004049495328217745, -0.010668521746993065, 0.020002590492367744, 0.03568950667977333, -0.01588566228747368, 0.024928707629442215, -0.012897341512143612, -0.029031438753008842, -0.012400470674037933, 0.013969162479043007, -0.015544951893389225, -0.031884897500276566, 0.014593799598515034, -0.004457639064639807, -0.017518237233161926, 0.008837198838591576, -0.017944127321243286, 0.023991752415895462, -0.03605860844254494, -0.006328002084046602, -0.0048196446150541306, -0.00958960223942995, -0.03358845412731171, 0.02904563583433628, 0.027143331244587898, 0.019576702266931534, -0.008297738619148731, -0.003463897854089737, 0.009951608255505562, 0.000152832071762532, 0.02292702905833721, -0.0021578380838036537, 0.007630513049662113, 0.01641092635691166, -0.005834680516272783, 0.018739119172096252, 0.01093115285038948, -0.029528310522437096, 0.003836550749838352, 0.008425505831837654, -0.0026831012219190598, 0.00755953136831522, -0.0178021639585495, 0.06002197042107582, 0.022870244458317757, -0.0012395146768540144, -0.006264118477702141, 0.006686458829790354, -0.006452219560742378, 0.003943023271858692, -0.002670679474249482, -0.017120741307735443, -0.03881269320845604, 0.02313997410237789, -0.029670273885130882, -0.03344649076461792, -0.012301096692681313, 0.025908252224326134, 0.006537397392094135, -0.025354597717523575, 0.04735886678099632, -0.03023812547326088, -0.0063528455793857574, 0.023523274809122086, 0.0035047123674303293, 0.02853456884622574, -0.019761253148317337, 0.0020105515141040087, -0.0029776745941489935, 0.0008433491457253695, 0.0009067888604477048, -0.0036289298441261053, -0.00021372090850491077, 0.010469773784279823, 0.021720344200730324, -0.012897341512143612, -0.02145061455667019, -0.018384212628006935, -0.03160097077488899, 0.004326323512941599, -0.01104472391307354, 0.03290703147649765, 0.00600858498364687, -0.009142419323325157, 0.02668904885649681, -0.024488622322678566, -0.021933287382125854, -0.0021986523643136024, 0.00308237224817276, -0.00402465183287859, -0.013202561996877193, -0.01212364248931408], "bc35b2fc-146f-4cc2-9a2f-0d1acc85fa16": [-0.034157250076532364, -0.005396320018917322, -0.015415973961353302, -0.04597081243991852, -0.03841596469283104, 0.019149644300341606, -0.003600585274398327, -0.03471146523952484, 0.003695385530591011, -0.007795494981110096, 0.005651551764458418, 0.02718578651547432, 0.004656149074435234, 0.01341787725687027, -0.0028859374579042196, 0.0028895835857838392, 0.014526310376822948, 0.0004735453403554857, 0.028775513172149658, -0.013169937767088413, 0.032932136207818985, -0.00315757654607296, -0.0002413303591310978, -0.007259509060531855, 0.0020017430651932955, -0.012003166601061821, 0.018989212810993195, -0.039495229721069336, -0.013811662793159485, -0.011208303272724152, 0.03981609269976616, -0.00991026870906353, -0.025887751951813698, -0.038357626646757126, 0.011762519367039204, -0.0239334087818861, 0.017691180109977722, 0.0017127847531810403, 0.013468923047184944, 0.00886017456650734, 0.0006494726403616369, -0.010945779271423817, 0.01971844583749771, -0.006234937347471714, -0.008721619844436646, 0.008619527332484722, 0.002698160009458661, 0.007139185909181833, 0.006027106195688248, 0.009253960102796555, -0.007372539956122637, 0.022664545103907585, -0.0195580143481493, -0.012746983207762241, 0.010646793991327286, -0.002007212257012725, -0.007004277780652046, 0.02701077051460743, -0.0042878868989646435, -0.015620158985257149, 0.023904239758849144, -0.003148461226373911, -0.03876599669456482, 0.010413439944386482, 0.005053580738604069, -0.0207685399800539, -0.0160576980561018, 0.0015441497089341283, -0.03033607080578804, 0.016874438151717186, 0.015065942890942097, 0.03138616308569908, 0.00016510278510395437, 0.0014949265168979764, 0.03850347548723221, -0.0024538671132177114, -0.0091226976364851, 0.015576405450701714, 0.015547236427664757, -0.002473921049386263, 0.02006847783923149, -0.001956166001036763, -0.02402091771364212, -0.002497621113434434, -0.005316104739904404, 0.011580211110413074, -0.012958460487425327, 0.02797335758805275, 0.02192072756588459, -0.014227325096726418, 0.0021712896414101124, 0.022912483662366867, -0.0023554207291454077, 0.009195621125400066, -0.000102662255812902, -0.008976851589977741, -0.02097272500395775, 0.02111857198178768, -0.02078312449157238, -0.02779834158718586, -0.02289789915084839, 0.015999360010027885, -0.02464805729687214, 0.0031302303541451693, -0.024502210319042206, 0.012309444136917591, 0.02015598490834236, -0.008714327588677406, 0.001731927040964365, -0.02795877307653427, -0.01814330369234085, 0.036257438361644745, -0.009428976103663445, -0.019747614860534668, -0.02543562836945057, 0.02673366107046604, 0.02842548117041588, -0.020447678864002228, -0.010675963014364243, -0.02515851892530918, 0.010325931943953037, 0.02349586971104145, 0.03369053825736046, -0.00011713296407833695, 0.024589719250798225, 0.003713616169989109, -0.012418828904628754, -0.016028529033064842, -0.002627059817314148, -0.0035386004019528627, 0.03955356776714325, -0.017224470153450966, 0.02103106491267681, 0.03138616308569908, -0.019528845325112343, 0.012221936136484146, -0.021512357518076897, -8.255139255197719e-05, -0.018974628299474716, -0.018274566158652306, 0.034682296216487885, 0.015343050472438335, 0.004386333283036947, -0.010274885222315788, -0.008940390311181545, 0.00806531123816967, 0.011594795621931553, 0.008495558053255081, -0.00018868889310397208, -0.003839408978819847, 0.015095111913979053, -0.005013473331928253, 0.010617624968290329, 0.0051155658438801765, -0.016334807500243187, 0.007795494981110096, 0.0047691804356873035, 0.016174376010894775, -0.004338933154940605, -0.03007354587316513, -0.001957989064976573, -0.003905039746314287, 0.025479381904006004, -0.024327194318175316, 0.017559917643666267, 0.04439567029476166, -0.01831831969320774, 0.003850347362458706, 0.001497661112807691, -0.0160576980561018, 0.004499364178627729, -0.0043170559220016, 0.02421051822602749, 0.005899490788578987, -0.020724786445498466, 0.04060366377234459, 0.005618736147880554, -0.0072996169328689575, -0.003487554145976901, -0.0198934618383646, -0.009494606405496597, 0.02218325063586235, 0.006763631012290716, -0.019310075789690018, -0.016334807500243187, -0.0026781063061207533, -0.010814517736434937, 0.016728593036532402, 0.016597330570220947, -0.020491432398557663, 0.007062616292387247, 0.01667025312781334, 0.025391874834895134, -0.0008281345944851637, -0.5507163405418396, -0.016072282567620277, 0.013658523559570312, 0.0016097805928438902, 0.01675776205956936, 0.005564043764024973, 0.0017419540090486407, 0.014168987050652504, -0.037220023572444916, 0.04465819522738457, -0.020535185933113098, 0.010231131687760353, -0.008765374310314655, -0.0043170559220016, -0.009625868871808052, -0.01761825568974018, -0.02839631214737892, -0.010362393222749233, 0.011069748550653458, -0.007186586037278175, -0.03103613294661045, 0.012258397415280342, -0.014453386887907982, 0.01702028512954712, 0.02262079156935215, 0.004725426435470581, 0.000672261172439903, -0.017734933644533157, 0.0004420971672516316, 0.03847430273890495, -0.008947682566940784, 0.03220290690660477, 0.015226373448967934, -0.025902336463332176, 0.0690728947520256, -0.019149644300341606, -0.014715910889208317, 0.052388060837984085, -0.004692610818892717, 0.02657323144376278, -0.020535185933113098, -0.027142031118273735, 0.0329904779791832, 0.03252376616001129, -0.0014666687930002809, 0.010099869221448898, 0.0051337964832782745, -0.035994913429021835, 0.010967656038701534, 0.012265689671039581, 0.022824976593255997, -0.011609381064772606, 0.0008263115305453539, 0.013381415978074074, -0.005731767043471336, 0.014292956329882145, 0.027652494609355927, -0.031240317970514297, 0.0021931666415184736, -0.017122378572821617, -0.024050086736679077, -0.003494846634566784, 0.012987630441784859, 0.010799932293593884, -0.019091306254267693, 0.002207751153036952, -0.0075986022129654884, -0.008925804868340492, 0.006716230884194374, -0.012557382695376873, -0.010194669477641582, 0.023218762129545212, 0.01486905012279749, 0.036782484501600266, 0.03024856187403202, 0.03121114894747734, 0.06895621865987778, -0.02342294715344906, 0.0018659235211089253, 0.009713375940918922, 0.01091661024838686, -0.014745079912245274, -0.029242221266031265, -0.014234617352485657, 0.010945779271423817, -0.004586872179061174, -0.02832338772714138, -0.009830053895711899, 0.03360303118824959, 0.007635063957422972, 0.03926187381148338, -0.0091226976364851, 0.02832338772714138, -0.0016927308170124888, -0.015590989962220192, 0.01451172586530447, -0.025581475347280502, -0.026894092559814453, -0.01884336583316326, -0.025041842833161354, -0.03290296718478203, -0.003864932106807828, -0.009706083685159683, -0.02849840372800827, 0.016684839501976967, -0.025377290323376656, -0.04885857552289963, 0.0007862037164159119, 0.04567912220954895, 0.021235249936580658, -0.018537089228630066, 0.004791057202965021, 0.00010306105832569301, -0.0010829102247953415, 0.012659475207328796, -0.032057058066129684, 0.02225617505609989, 0.020447678864002228, -0.020462263375520706, 0.015357635915279388, 0.000886017456650734, -0.0052213044837117195, 0.04672921448945999, 0.036082420498132706, -0.0021475895773619413, 0.023743808269500732, 0.00039332977030426264, -0.001708226976916194, 0.0001754715631250292, 0.0014438802609220147, -0.018362073227763176, -0.004550410434603691, 0.008240326307713985, -0.022679129615426064, 0.004853041842579842, -0.002535905921831727, 0.0019288198091089725, -0.014431510120630264, 0.006369845476001501, -0.02246036008000374, -0.018099550157785416, -0.024327194318175316, 0.001497661112807691, -0.00018059897411148995, -0.00789758749306202, -0.024502210319042206, 0.02111857198178768, 0.017559917643666267, -0.017501579597592354, -0.02062269300222397, 0.016072282567620277, 0.02078312449157238, 0.006574030499905348, 0.016947362571954727, 0.022139497101306915, 0.00018151052063331008, 0.002955214586108923, -0.027594156563282013, -0.012666767463088036, -0.018624596297740936, -0.009567529894411564, -0.002415582537651062, -0.01586809754371643, 9.753483755048364e-05, -0.02445845678448677, -0.046962570399045944, 0.0052213044837117195, -0.030044376850128174, 0.0015833459328860044, -0.02410842478275299, 0.008721619844436646, 0.025931505486369133, -0.010114453732967377, -0.0005984263843856752, 0.011784396134316921, 0.0008996905526146293, -0.016174376010894775, 0.0003978874592576176, 0.016786931082606316, -0.018114134669303894, -0.010996825061738491, 0.013928339816629887, -0.000696872768457979, 0.006213060580193996, 0.016772346571087837, -0.005385381635278463, 0.03159034997224808, 0.033807218074798584, 0.001772034913301468, 0.013082430697977543, -0.04109954088926315, -0.002745560137555003, 0.020885217934846878, 0.005790105555206537, 0.03016105480492115, -0.002163997385650873, 0.04171209782361984, 0.011551042087376118, -0.041682928800582886, 0.025187689810991287, 0.02402091771364212, 0.02568356692790985, 0.008480973541736603, -0.03972858563065529, 0.013089722953736782, -0.014774249866604805, -0.012849075719714165, -0.016363976523280144, -0.01406689453870058, 0.018362073227763176, -0.025012673810124397, -0.02209574356675148, -0.025887751951813698, 0.01560557447373867, 0.007288678549230099, 0.017647424712777138, -0.013264738023281097, -0.004462902434170246, -0.02734621800482273, -0.006271399091929197, 0.026500307023525238, -0.011397902853786945, 0.018099550157785416, -0.01008528470993042, -0.0008677866426296532, -0.016976531594991684, 0.025129349902272224, -0.010807224549353123, -0.015445142984390259, -0.006351614836603403, -0.014606526121497154, -0.008612235076725483, 0.004678026307374239, -0.002021797001361847, 0.03409890830516815, -0.023612547665834427, 0.017122378572821617, -0.026616984978318214, 0.006231291219592094, 0.011762519367039204, -0.012717814184725285, 0.02351045422255993, -0.009283129125833511, -0.016859853640198708, 0.024079255759716034, 0.008925804868340492, 0.018960043787956238, 0.001619807560928166, -0.0027510293293744326, 0.0032924844417721033, -0.048012666404247284, 0.020112231373786926, -0.01831831969320774, 0.026427384465932846, 0.0011366910766810179, -0.012506336905062199, -0.005961475428193808, 0.02235826663672924, 0.009560237638652325, 0.018522504717111588, 0.04363727197051048, 0.03229041397571564, 0.0037409625947475433, -0.0001302363525610417, 0.0347406342625618, -0.007288678549230099, 0.015634743496775627, 0.0024119364097714424, 0.003148461226373911, -0.02122066356241703, 0.01547431293874979, 0.005148380994796753, 0.00503899622708559, -0.023627132177352905, 0.02244577556848526, -0.021337341517210007, 0.0035203697625547647, 0.003372700186446309, 0.022664545103907585, 0.0011458065127953887, -0.01640773005783558, -0.03821178153157234, 0.012790737673640251, 0.03229041397571564, -0.007766325492411852, -0.026864923536777496, 0.009057067334651947, 0.017749518156051636, -0.020826879888772964, 0.007496509701013565, 0.02797335758805275, 0.0006257725763134658, 0.015372220426797867, 0.0028859374579042196, -0.00693135429173708, -0.0173703171312809, 0.010048823431134224, -0.020826879888772964, -0.0319112129509449, -0.005582274403423071, 0.014847172424197197, -0.004524887539446354, -0.01675776205956936, 0.022664545103907585, 0.045387428253889084, -0.00312476116232574, 0.006234937347471714, -0.005742705427110195, -0.004725426435470581, -0.018522504717111588, 0.00028508430114015937, 0.005079104099422693, -0.02139567956328392, -0.04244132712483406, -0.019076721742749214, 0.012119843624532223, -0.002142120385542512, -0.006654246244579554, 0.014351294375956059, -0.012221936136484146, 0.0004767357313539833, -0.007977803237736225, -0.022868730127811432, 0.0028458295855671167, -0.050200361758470535, 0.01982053741812706, 0.019499676302075386, 0.009253960102796555, -0.028906773775815964, 0.009531068615615368, -0.014781542122364044, -0.03771590441465378, -0.0011986758327111602, -0.007576725445687771, 0.013789786025881767, -0.008349712006747723, 0.005629674531519413, -0.016714008525013924, 0.016714008525013924, -0.01279802992939949, -0.02359796315431595, 0.003952439874410629, 0.01936841383576393, -0.02727329358458519, 0.00029761798214167356, -0.0010756178526207805, 0.0033380615059286356, -0.0006221264484338462, 0.0022916130255907774, -0.02237285114824772, -0.0010008715325966477, 0.05690930038690567, 0.016451483592391014, -0.009436268359422684, 0.0005227685323916376, -0.012375074438750744, -0.010457193478941917, 0.01735573261976242, -0.02358337678015232, 0.010537409223616123, 0.009057067334651947, 0.022022821009159088, 0.001070148660801351, 0.017734933644533157, -0.020126815885305405, 0.013315784744918346, 0.0056916591711342335, -0.0042878868989646435, 0.0013253799406811595, -0.035907406359910965, 0.009268544614315033, 0.0028239525854587555, 0.015853513032197952, 0.003004437778145075, -0.005162965971976519, -0.015197204425930977, -0.03759922459721565, -0.02578566037118435, -0.020228907465934753, 0.018551673740148544, -0.044162318110466, -0.004915026947855949, -0.008831004612147808, 0.005476535763591528, 0.009552945382893085, -0.005337981507182121, 0.024604303762316704, -0.011113503016531467, 0.00545465899631381, -0.038007594645023346, -0.00880912784487009, -0.01613062247633934, -0.014387756586074829, -0.0152992969378829, 0.020491432398557663, -0.013607477769255638, -0.01894545927643776, 0.014365879818797112, 0.017297394573688507, 0.007919464260339737, 0.015751421451568604, -0.01007799245417118, 0.006486522499471903, 0.03176536411046982, -0.02956308424472809, -0.014453386887907982, 0.004499364178627729, -0.024152178317308426, 0.001762919477187097, 0.006668830756098032, 0.011303103528916836, -0.010194669477641582, 0.006129198707640171, 0.026719076558947563, 0.003817531978711486, 0.00015199939662124962, 0.027287878096103668, 0.010996825061738491, -0.009786299429833889, 0.0015013073571026325, -0.013447046279907227, 0.027331631630659103, -0.019397582858800888, 0.01578059047460556, 0.02790043316781521, -0.030744440853595734, -0.005556751508265734, -0.011682303622364998, -0.005917721427977085, 0.01039156224578619, 0.037132516503334045, 0.013658523559570312, 0.024531379342079163, 0.017414070665836334, 0.03331133723258972, -0.0014940149849280715, -0.0017984695732593536, -0.020914386957883835, 0.004513948690146208, 0.0011850027367472649, -0.028017111122608185, 0.003004437778145075, -0.007613186724483967, -0.016072282567620277, -0.010712425224483013, -0.04270385205745697, 0.048450205475091934, 0.022854145616292953, -0.030481915920972824, 0.017924534156918526, -0.019310075789690018, -0.02666073851287365, -0.01184273511171341, 0.014548187144100666, -0.005323396995663643, 0.014570064842700958, -0.0021694665774703026, -0.03894101455807686, -0.01842041127383709, -0.00264346762560308, -0.032757122069597244, 0.021687373518943787, 0.0045649949461221695, -0.045445766299963, 0.007554848212748766, -0.023641716688871384, 0.0075986022129654884, 0.0020655510015785694, 0.031707026064395905, -0.02228534407913685, -0.013439754024147987, -0.0059323059394955635, -0.003850347362458706, 0.027419140562415123, 0.010289469733834267, -0.011543749831616879, -0.025581475347280502, -0.005093688610941172, 0.00288411439396441, -0.03421558812260628, -0.01614520698785782, -0.004550410434603691, 0.030627762898802757, 0.016714008525013924, 0.011631257832050323, 0.007365247700363398, -0.01257925946265459, -0.004940549843013287, 0.011397902853786945, 0.015561820939183235, 0.0025997136253863573, 0.026806585490703583, -0.018872536718845367, 0.013388708233833313, 0.020710201933979988, 0.01100411731749773, 0.01105516403913498, 0.003576885210350156, -0.01971844583749771, 0.03605325147509575, -0.010325931943953037, -0.02631070651113987, 0.03444894030690193, -0.04273302108049393, 0.005301519762724638, -0.001987158553674817, -0.001988981617614627, -0.017603671178221703, -0.02533353492617607, -0.003022668417543173, 0.02006847783923149, -0.01026030071079731, 0.017034869641065598, 0.02412300929427147, 0.0061437832191586494, -0.0173703171312809, -0.0010938487248495221, 0.00552028976380825, 0.024589719250798225, 0.023612547665834427, -0.007285032421350479, -0.0039597321301698685, -0.015678497031331062, 0.017253639176487923, -0.0071647088043391705, -0.007773618213832378, 0.020287247374653816, -0.009305005893111229, 0.017486995086073875, 0.0025523134972900152, -0.002514028921723366, -0.0040472401306033134, -0.013016799464821815, 0.007376186084002256, -0.04118704795837402, -0.001345433876849711, -0.019485091790556908, 0.0013481684727594256, 0.040107786655426025, 0.018785027787089348, -0.00552393589168787, 0.013643939048051834, -0.01903296634554863, -0.0008828270365484059, -0.0046160416677594185, -0.015590989962220192, 0.03794925659894943, 0.008284080773591995, 0.006092736963182688, 0.016261883080005646, 0.013789786025881767, -0.015197204425930977, -0.054750774055719376, -0.00552393589168787, -0.0016963769448921084, 0.022693714126944542, 0.06043878570199013, 0.007707986980676651, -0.019003797322511673, 0.04034113883972168, 0.0018303734250366688, -0.009086236357688904, -0.03237792104482651, 0.013600185513496399, 0.02795877307653427, 0.010041531175374985, -0.015590989962220192, 0.030656931921839714, -0.019339244812726974, 0.021512357518076897, -0.020753955468535423, -0.011463534086942673, -0.023466700688004494, -0.02158528007566929, -0.010712425224483013, 0.03252376616001129, -0.014256494119763374, 0.019572598859667778, 0.008590358309447765, -0.005720828659832478, 0.012134428136050701, -0.021876974031329155, -0.010551993735134602, 0.004987949971109629, 0.00315575348213315, 0.030540255829691887, 0.021862389519810677, -0.011324980296194553, 0.029081789776682854, 0.003817531978711486, 0.001410153228789568, -0.024531379342079163, -0.007456401828676462, 0.054050710052251816, -0.01039156224578619, -0.0044410256668925285, -0.006595907732844353, -0.0003046824422199279, 0.01947050727903843, 0.00466708792373538, 0.012739690952003002, 0.010821809992194176, -0.025668982416391373, -0.0059140753000974655, 0.016684839501976967, -0.012433413416147232, -0.0032924844417721033, -0.020301831886172295, -0.013651231303811073, -0.01310430746525526, -0.030394408851861954, -6.283932452788576e-05, -0.006643307860940695, -0.013191815465688705, -0.023043746128678322, -0.012076089158654213, -0.016247298568487167, 0.00960399117320776, 0.008109064772725105, -0.02069561742246151, -0.00668341526761651, 0.05603422224521637, -0.03771590441465378, 0.007080846931785345, -0.008320542052388191, 0.0088528823107481, -0.004211317282170057, -0.026544060558080673, 0.0020892510656267405, -0.02648572251200676, 0.041974619030952454, -0.010282177478075027, 0.0006854785024188459, -0.011120795272290707, 0.015488897450268269, 0.005491120275110006, -0.004160271026194096, -0.004229548387229443, 0.03164868801832199, 0.01074159424751997, 0.026412799954414368, 0.003502138890326023, -0.011806273832917213, 0.01276156771928072, -0.014059601351618767, -0.010238423943519592, 0.01354913879185915, -0.020097646862268448, 0.033982232213020325, 0.012360489927232265, -0.0208706334233284, 0.0046816724352538586, -0.01980595290660858, -0.01451901812106371, -0.015809759497642517, 0.011441657319664955, -0.024356363341212273, -0.0026872216258198023, 0.0024192286655306816, -0.012739690952003002, -0.007088139653205872, -0.002207751153036952, -0.0030007916502654552, 0.023481285199522972, 0.012163597159087658, 0.02892136014997959, -0.026587815955281258, 0.009414390660822392, -0.028440065681934357, -0.02989852987229824, -0.0016927308170124888, -0.00576822878792882, -0.018128719180822372, -0.011806273832917213, -0.009764422662556171, 0.013767908327281475, 0.014322125352919102, -0.040370307862758636, -0.03252376616001129, 0.0019160582451149821, -0.0265586469322443, 0.007270447444170713, -0.031707026064395905, 0.016859853640198708, 0.023131253197789192, -0.013133476488292217, -0.0062786913476884365, 0.01170418132096529, -0.008364296518266201, -0.01894545927643776, 0.0010838217567652464, -0.011689595878124237, 0.0007146478164941072, -0.009326882660388947, 0.024079255759716034, 0.00091792136663571, -0.04451235011219978, 0.0006558534223586321, 0.03121114894747734, -0.005698951426893473, -0.011689595878124237, 0.011740642599761486, -0.002413759473711252, 0.00692406203597784, 0.0028640604577958584, -0.0270982775837183, -0.01823081076145172, -0.0009078943985514343, 0.02683575451374054, -0.02314583770930767, -0.003622462274506688, 0.014387756586074829, 0.016188960522413254, -0.018741274252533913, 0.030890285968780518, 0.02526061236858368, -0.0004662529972847551, -0.0033891077619045973, -0.009633161127567291, -0.011412488296627998, -0.015401389449834824, -0.013957508839666843, 0.006089090835303068, 0.01973303034901619, -0.0173703171312809, 0.004772826563566923, 0.00288411439396441, -0.008663281798362732, -0.018114134669303894, 0.022124912589788437, -0.01831831969320774, 0.012469874694943428, 0.01894545927643776, -0.022081159055233, 0.01293658372014761, -0.006654246244579554, 0.0061948299407958984, -0.009582114405930042, 0.018887121230363846, 0.0038758704904466867, -0.01903296634554863, -0.0382409505546093, -0.002293436089530587, 0.02587316744029522, -0.036694977432489395, -0.004626980051398277, -0.012469874694943428, 7.258141704369336e-05, -0.0072121089324355125, -0.023087499663233757, 0.0018622773932293057, -0.026223199442029, 0.008889343589544296, -0.0025541367940604687, -0.006223998963832855, -0.015270127914845943, 0.00929771363735199, 0.010522824712097645, -0.018653765320777893, -0.01328661572188139, 0.3108280301094055, -0.02954849973320961, -0.004036301746964455, 0.020535185933113098, -0.011346857063472271, -0.0016125153051689267, -0.006322445347905159, -0.019849708303809166, 0.0075402637012302876, 0.0019470506813377142, -0.004327994771301746, -0.028702588751912117, 0.012878244742751122, -0.002439282601699233, -0.0015186265809461474, -0.0036133467219769955, -0.03789091855287552, 0.003493023570626974, -0.01842041127383709, -0.002007212257012725, -0.004266009666025639, -0.013199107721447945, 0.007441817317157984, 0.006092736963182688, 0.015547236427664757, -0.009188328869640827, -0.008225741796195507, -0.03255293518304825, 0.04716675356030464, 0.021629035472869873, -0.00655579986050725, -0.01406689453870058, 0.004783764947205782, 0.008342419750988483, -0.0009525598725304008, 0.0007378921145573258, 0.027214955538511276, 0.011252056807279587, 0.02935889922082424, -0.010479070246219635, -0.01595560647547245, -0.007656940724700689, -0.012294859625399113, -0.0321153961122036, -0.01153645757585764, 0.004101932514458895, 0.005811982788145542, 0.003631577594205737, -0.006526630371809006, 0.008036141283810139, -0.047487616539001465, -0.008444512262940407, 0.02725870907306671, 0.00044232505024410784, -0.004834811203181744, -0.009560237638652325, 0.028556743636727333, 0.00995402317494154, -0.005994290579110384, 0.003728200914338231, -0.01451172586530447, 0.02603359892964363, -0.017486995086073875, 0.032757122069597244, -0.022941652685403824, -0.011587503366172314, -0.003206799738109112, 0.015065942890942097, 0.016378561034798622, -0.03167785704135895, 0.014234617352485657, -0.00942168291658163, -0.01249904464930296, -0.004087348002940416, -0.032932136207818985, -0.010194669477641582, 0.016436899080872536, 0.019689276814460754, 0.0037026777863502502, 0.022591620683670044, 0.005571336019784212, 0.008276788517832756, 0.008772666566073895, 0.025479381904006004, -0.04430816322565079, -0.03348635509610176, 0.0034510926343500614, -0.021731127053499222, 0.015182619914412498, 0.020535185933113098, -0.02358337678015232, 0.00784654077142477, -0.003350823186337948, 0.006716230884194374, 0.0031047072261571884, 0.02543562836945057, -0.0026234136894345284, -0.008787251077592373, -0.0011649488005787134, -0.0016699422849342227, -0.034682296216487885, 0.05495495721697807, 0.022679129615426064, 0.009129989892244339, -0.029519330710172653, -0.002320782281458378, -0.011106210760772228, -0.009020605124533176, -0.0028476526495069265, -0.0064719379879534245, 0.007018862292170525, -0.052038028836250305, 0.007419940084218979, 0.006807385012507439, -0.022591620683670044, 0.00717200106009841, -0.022839561104774475, -0.0217457115650177, 0.0021366511937230825, -0.00854660477489233, 0.04830435663461685, -0.03436143323779106, 0.00929771363735199, 0.014905511401593685, -0.016961947083473206, -0.00851014256477356, -0.012513629160821438, -0.022416606545448303, 0.01630563847720623, -0.0463208444416523, 0.020841464400291443, -0.01403772458434105, 0.035732392221689224, 0.010311346501111984, -0.0073178475722670555, 0.0024812135379761457, 0.018012041226029396, 0.008933098055422306, -0.03202788904309273, -0.0028549451380968094, 0.04095369577407837, -0.015722252428531647, 0.006522984243929386, -0.008050726726651192, -0.0013408762170001864, -0.008006972260773182, 0.0008709770045243204, 0.0020819585770368576, 0.016422314569354057, -0.0010345985647290945, -0.028542159125208855, -0.025114765390753746, 0.010515532456338406, 0.008152819238603115, 0.03719085454940796, -0.014555479399859905, -0.004539472050964832, -0.06201392784714699, -0.007759033236652613, 0.0018704812973737717, -0.007941341027617455, -0.02227075956761837, 0.016116037964820862, -0.035557374358177185, -0.008225741796195507, 0.005717182531952858, -0.1887837052345276, 0.013811662793159485, 0.04865438863635063, -0.037745073437690735, 0.021206079050898552, -0.007018862292170525, 0.007875710725784302, -0.0009425329626537859, 0.0047582415863871574, -0.011543749831616879, 0.02903803624212742, -0.014854464679956436, -0.02760874107480049, -0.027506647631525993, -0.009246667847037315, -0.010005068965256214, -0.019324660301208496, 0.004276948515325785, 0.029796438291668892, 0.019047550857067108, 0.03141533583402634, -0.030365239828824997, 0.01954342983663082, 0.015255543403327465, 0.027915017679333687, 0.016422314569354057, -0.018624596297740936, -0.011084333062171936, 0.02059352397918701, 0.0020400278735905886, -0.003117468673735857, -0.010274885222315788, 0.0035149003379046917, 0.001675411593168974, 0.02043309435248375, -0.012994922697544098, -0.020126815885305405, 0.005232242867350578, -0.004408210050314665, -4.6118257159832865e-05, -0.02192072756588459, 0.011317688040435314, 0.02594608999788761, 0.003028137842193246, -0.004357163794338703, 0.0021949897054582834, -0.015197204425930977, -0.006187537219375372, 0.006296922452747822, -0.023466700688004494, 0.001998096937313676, -0.026077352464199066, 0.011368733830749989, -0.007569432724267244, 0.028265049681067467, 0.015328465960919857, -0.010617624968290329, 0.015182619914412498, -0.0003894557012245059, -0.002964329905807972, -0.03409890830516815, -0.002103835577145219, 0.013935632072389126, -0.008291373029351234, -0.004295179154723883, -0.011456241831183434, -0.02001013793051243, -0.0037409625947475433, -0.030569424852728844, 0.007427232339978218, 0.0034583848901093006, -0.03447810932993889, 0.003287015249952674, -0.03094862587749958, 0.02260620705783367, 0.011317688040435314, 0.013709570281207561, -0.0182453952729702, 0.02103106491267681, -0.025129349902272224, -0.031619518995285034, 0.03199872002005577, -0.022679129615426064, 0.0024338134098798037, -0.0005915898364037275, 0.016261883080005646, 0.01586809754371643, -0.016261883080005646, -0.016116037964820862, 0.008838297799229622, 0.02790043316781521, -0.029431821778416634, 0.022781221196055412, -0.007773618213832378, 0.01798287220299244, 0.012484459206461906, -0.005312458612024784, -0.0020837816409766674, -0.0026963369455188513, 0.004477487411350012, -0.030452746897935867, -0.0008263115305453539, -0.00850285030901432, 0.028162958100438118, 0.0035896466579288244, -0.0007151035824790597, -0.006964169908314943, 0.02402091771364212, -0.009151867590844631, -0.007456401828676462, 0.007117308676242828, 0.0021366511937230825, -0.0018631889251992106, -0.01693277806043625, -0.007554848212748766, 0.0024192286655306816, -0.029227636754512787, -0.01232402864843607, 0.0036060544662177563, 0.025479381904006004, 0.02534811943769455, -0.011244764551520348, 0.015343050472438335, 0.026777416467666626, -0.0019999200012534857, -0.011572918854653835, -0.0336613692343235, -0.0006572207785211504, 0.010836394503712654, 0.020724786445498466, 0.013177230954170227, 0.04372477903962135, 0.005363504868000746, -0.003802947234362364, -0.00318856886588037, 0.01833290420472622, -0.025027258321642876, -0.018391242250800133, -0.012958460487425327, 0.0019051197450608015, 0.03917436674237251, -0.00041429518023505807, -0.014300248585641384, 0.0024702749215066433, -0.004127455875277519, 0.030190223827958107, 0.01184273511171341, -0.026456553488969803, 0.008831004612147808, -0.004940549843013287, -0.0009999600006267428, -0.010668670758605003, -0.031619518995285034, 0.03908685967326164, 0.016553577035665512, 0.00031767188920639455, 0.04640835523605347, -0.006584968883544207, 0.018566258251667023, -0.008495558053255081, -0.03144450485706329, 0.008648697286844254, -0.03077360987663269, -0.013396000489592552, -0.005122858099639416, -0.00806531123816967, -0.012725106440484524, 0.017136963084340096, -0.0050863963551819324, -0.012309444136917591, 0.017486995086073875, -0.03576156124472618, -0.016947362571954727, 0.020447678864002228, 0.017064038664102554, -0.0297235157340765, -0.032582107931375504, 0.006577676627784967, -0.009516483172774315, -0.01761825568974018, 0.025654397904872894, 0.024312609806656837, -0.0031284072902053595, 0.0021603512577712536, -0.04422065615653992, 0.028658835217356682, -0.008459096774458885, -0.005166612099856138, 0.0029460990335792303, 0.02351045422255993, 0.011427072808146477, -0.00528693525120616, -0.008145526982843876, -0.03596574440598488, 0.020112231373786926, -0.003310715314000845, 0.0207685399800539, 0.023291684687137604, 0.0022350975777953863, 0.002860414329916239, -0.03894101455807686, -0.011281225830316544, -0.005403612274676561, -0.01842041127383709, 0.014548187144100666, -0.015941021963953972, -0.007445463445037603, -0.005640612915158272, -0.01569308154284954, -0.00011770267883548513, 0.012841783463954926, 0.03132782503962517, -0.007934048771858215, 0.014132524840533733, -0.003886809106916189, -0.020753955468535423, -0.0008905751165002584, 0.007430878933519125, 0.03654913231730461, -0.0014055955689400434, -0.01831831969320774, -0.00373731623403728, -0.0008969558984972537, 0.010282177478075027, 0.025100180879235268, 0.014329417608678341, -0.021541526541113853, -0.033457186073064804, -0.09684207290410995, 0.03611158952116966, 0.006767277140170336, -0.0016225422732532024, 0.017997456714510918, 0.00043434908729977906, 0.015095111913979053, 0.014584649354219437, 0.017691180109977722, 0.0044118561781942844, -0.022518698126077652, -0.006121906451880932, 0.006417245604097843, -0.029679760336875916, -0.021701958030462265, -0.0046342723071575165, 0.01982053741812706, -0.0008149172645062208, 0.014052309095859528, 0.02015598490834236, -0.0004056355683133006, 0.01257925946265459, 0.01798287220299244, 0.016261883080005646, -0.01675776205956936, 0.019076721742749214, 0.0009151867125183344, 0.006457353476434946, -0.019237151369452477, 0.0069350008852779865, 0.004645210690796375, -0.01464298740029335, -0.015153450891375542, 0.022824976593255997, -0.00449571805074811, -0.03129865601658821, -0.003172161290422082, 0.0024192286655306816, 0.022241590544581413, 0.011062456294894218, -0.022489529103040695, -0.015080527402460575, 0.007810079492628574, 0.0003370421181898564, -0.008911220356822014, -0.0018868889892473817, -0.0027090986259281635, 0.013162645511329174, -0.006307860836386681, 0.025041842833161354, 0.011631257832050323, -0.0009238463826477528, -0.013753323815762997, 0.002102012513205409, -0.0284108966588974, -0.023904239758849144, -0.01025300845503807, 0.013323077000677586, -0.00425142515450716, -0.02683575451374054, 0.02463347278535366, 0.04136206582188606, 0.008641405031085014, -0.004142040386795998, 0.007383478805422783, 0.004258717410266399, -0.028600497171282768, -0.006100029684603214, 0.033457186073064804, -0.017909949645400047, -0.01614520698785782, 0.0054145511239767075, 0.004845749586820602, -0.0032724307384341955, -0.004517595283687115, 0.026325291022658348, 0.01372415479272604, -0.0022296281531453133, 0.0026872216258198023, 0.019791368395090103, -0.004101932514458895, -0.02149777300655842, -0.04299554601311684, 0.009961315430700779, 0.0336613692343235, -0.012571967206895351, -0.0008331480785273015, -0.009545653127133846, -0.00880912784487009, -0.00023358226462733, 0.0035951160825788975, 0.02165820449590683, 0.011580211110413074, -0.0013636647490784526, 0.015561820939183235, 0.028352558612823486, 0.0036589237861335278, -0.019149644300341606, 0.022329097613692284, 0.026952432468533516, 0.01214172039180994, 0.0017337502213194966, 0.009093528613448143, 0.003050014842301607, -0.009239375591278076, 0.022168666124343872, -0.024400118738412857, -0.07403168082237244, 0.0015487074851989746, -0.012309444136917591, -0.015941021963953972, -0.0009844638407230377, -0.010989532805979252, 0.03164868801832199, -0.010522824712097645, 0.008670574054121971, -0.0067308153957128525, -0.020185153931379318, -0.023262515664100647, 0.021279003471136093, 0.020637279376387596, 0.03132782503962517, 0.02778375707566738, -0.018624596297740936, 0.0053088124841451645, -0.005491120275110006, 0.024225102737545967, -0.02683575451374054, 0.02288331463932991, 0.014227325096726418, -0.010172792710363865, -0.00442644115537405, -0.015270127914845943, -0.01788078062236309, -0.012520921416580677, 0.0270982775837183, 0.00041224423330277205, 0.0016225422732532024, -0.014052309095859528, 0.05938868969678879, 0.0011029640445485711, 0.006402661092579365, -0.018187057226896286, -0.00631515309214592, 0.013250153511762619, 0.02298540621995926, 0.004524887539446354, -0.020812293514609337, -0.022912483662366867, 0.00346567714586854, -0.013016799464821815, 0.006089090835303068, -0.03199872002005577, -0.015590989962220192, -0.014489849098026752, -0.035557374358177185, 0.0029934991616755724, -0.014664865098893642, -0.017603671178221703, 0.020637279376387596, -0.012819906696677208, 0.0001441373460693285, 0.013272030279040337, 0.0019288198091089725, -0.002019973937422037, 0.030715271830558777, -0.0015076880808919668, 0.01658274605870247, 0.0008103595464490354, -4.3696974898921326e-05, 0.018537089228630066, -0.009531068615615368, -0.03164868801832199, -0.0054619512520730495, -0.01788078062236309, -0.010223839432001114, 0.011959412135183811, 0.017136963084340096, 0.012200059369206429, -0.010099869221448898, 0.02386048622429371, -0.009181036613881588, -0.017224470153450966, -0.0037591932341456413, -0.003766485722735524, 0.017924534156918526, 0.0014931034529581666, -0.017749518156051636], "1846fdb4-bbab-4f8c-a1ce-295a684ef720": [-0.04273904487490654, -0.014308289624750614, -0.019682832062244415, -0.00982712209224701, -0.007172012235969305, 0.0055746580474078655, -0.03387676924467087, -0.03644968941807747, -0.023313507437705994, -0.02181263640522957, -0.006750339176505804, 0.01231427676975727, -0.007997490465641022, 0.0007048726547509432, 0.001661677029915154, -0.01713849976658821, 0.006071374751627445, 0.025114549323916435, 0.024342674762010574, -0.0111921988427639, 0.02755882404744625, -0.0012560848845168948, 0.004549064207822084, -0.020897820591926575, -0.00589984655380249, 0.009948620572686195, 0.028630873188376427, -0.01626656763255596, 0.0017572680953890085, 0.003289405722171068, 0.029445631429553032, 0.002378163393586874, -1.4203262253431603e-05, -0.03602086752653122, -0.006871838588267565, -0.035706400871276855, 0.007582964841276407, -0.00676463358104229, 0.009133863262832165, 0.024342674762010574, 0.0023585092276334763, -0.015794865787029266, 0.009526948444545269, -0.0034126914106309414, -0.007247055880725384, -0.007847403176128864, -0.006153564900159836, -0.007157718297094107, -0.012178484350442886, -0.0013087940169498324, -0.007050513289868832, 0.029845863580703735, -0.027501648291945457, -0.036907095462083817, 0.015251693315804005, -0.01084914244711399, 0.005646128207445145, 0.01670968160033226, 0.002849865471944213, -0.023456446826457977, 0.04634113237261772, 0.008419163525104523, -0.01361503079533577, -0.016924090683460236, 0.02094070427119732, -0.02248445525765419, -0.0004301599401514977, 0.0035663519520312548, 0.015022989362478256, -0.0006718178046867251, -0.005742612760514021, 0.010577556677162647, -0.02162681519985199, -0.01876801624894142, 0.02920263260602951, -0.00691472040489316, -0.010191618464887142, 0.005924860946834087, 0.025543369352817535, 0.004659842699766159, 0.016681093722581863, -0.0018260579090565443, 0.012950359843671322, 0.0043775360099971294, 0.0193826574832201, 0.02204134128987789, -0.005706877913326025, 0.032275840640068054, 0.013950939290225506, -0.019597068428993225, -0.00018526357598602772, 0.013757971115410328, 0.002035107696428895, 0.019854359328746796, 0.026744065806269646, 0.004180993884801865, -0.017810318619012833, 0.02387097291648388, -0.05351671949028969, -0.04774194583296776, 0.011742517352104187, 0.007618699688464403, -0.03307630494236946, -0.008633573539555073, -0.03719297796487808, -0.006507341284304857, 0.017281441017985344, -0.003017819719389081, -0.004499034956097603, -0.013858028687536716, -0.014115320518612862, 0.04937146231532097, -0.010606144554913044, -0.014622757211327553, -0.005077941808849573, 0.014143908396363258, 0.04882828891277313, -0.018382078036665916, -0.029874451458454132, -0.008755072019994259, 0.020883526653051376, 0.015551866963505745, 0.027944760397076607, 0.006007051561027765, 0.02542901784181595, 0.006596678867936134, -0.017352910712361336, -0.01159243006259203, 0.023928148671984673, -0.006375121884047985, 0.038279321044683456, -0.016681093722581863, 0.013722235336899757, 0.00959841813892126, -0.0193969514220953, 0.020368942990899086, -0.012392894364893436, 0.0232563316822052, -0.011735370382666588, -0.008519221097230911, 0.025700604543089867, 0.008762218989431858, 0.002517529996111989, -0.004552637692540884, -0.030303271487355232, 0.02171257883310318, -0.007547229528427124, 0.014379759319126606, 0.000398891803342849, -0.004477594047784805, -1.4307954188552685e-05, -0.005413850769400597, -0.015637630596756935, -0.004334654193371534, -0.0006959388847462833, 0.0018903808668255806, -0.002160180127248168, 0.010170177556574345, 0.016166508197784424, -0.01748155616223812, -0.007904579862952232, 0.019882947206497192, 0.016938384622335434, -0.023756621405482292, 0.029159750789403915, 0.04676995426416397, -0.015165929682552814, -0.02437126263976097, 0.02085493877530098, -0.010305970907211304, 0.00012082893226761371, 0.022770334035158157, -0.001288246363401413, 0.011964074335992336, -0.02309909649193287, 0.022298632189631462, -0.015165929682552814, -0.005714024882763624, 0.004063068423420191, 0.013464943505823612, -0.021483875811100006, -0.010355999693274498, 0.011663900688290596, 0.006471606437116861, -0.009634152986109257, -0.03024609386920929, 0.022284338250756264, 0.0003953183186240494, 0.013650765642523766, -0.008948041126132011, 0.010048679076135159, 0.012335718609392643, 0.02911686897277832, 0.02169828489422798, -0.5584949851036072, -0.0027069253847002983, -0.005424571223556995, -0.002101217396557331, 0.022270044311881065, -0.010999229736626148, 0.006296505220234394, 0.00917674507945776, -0.015251693315804005, 0.01946842111647129, -0.008033225312829018, -0.0030803559347987175, 0.0006954921991564333, -0.011177904903888702, -0.03127526119351387, -0.0211122315376997, -0.010005797259509563, 0.005781921092420816, 0.010234501212835312, 0.001587526872754097, -0.024599965661764145, 0.0288595762103796, -0.022555924952030182, 0.024314086884260178, 0.0025818529538810253, -0.02585783787071705, -0.016095038503408432, -0.006432298105210066, -0.0008969482150860131, 0.04331080615520477, -0.02861657924950123, 0.007454318460077047, 0.011235080659389496, -0.0015017628902569413, 0.058119386434555054, -0.03930848836898804, -0.03753603249788284, -0.0040452005341649055, 0.008619279600679874, 0.03384818136692047, -0.016166508197784424, -0.009434036910533905, 0.04265328124165535, 0.025114549323916435, 0.004481167532503605, 0.0013865175424143672, 0.010727643966674805, -0.019511304795742035, 0.007883138954639435, 0.0010023664217442274, 0.012800272554159164, 0.001264125225134194, -0.006225035060197115, 0.014794285409152508, -0.009283950552344322, -0.0038951137103140354, 0.049400050193071365, -0.011092140339314938, 0.016009274870157242, -0.011992662213742733, -0.024271205067634583, -0.0045204758644104, -0.029931627213954926, -0.007511494681239128, 0.00034193918691016734, -0.01680973917245865, 0.011842574924230576, -2.8350688808131963e-05, -0.012628745287656784, -0.025114549323916435, -0.007747345604002476, 0.016852620989084244, 0.015265987254679203, 0.012192778289318085, 0.0014838954666629434, 0.011570989154279232, 0.057147394865751266, -0.017281441017985344, 0.019782889634370804, 0.019882947206497192, -0.003475227626040578, -0.02574348635971546, -0.032961953431367874, 0.011042111553251743, 0.031732670962810516, 0.0028319978155195713, -0.04116670787334442, -0.007018351927399635, 0.0033787433058023453, -0.009326832368969917, 0.04022330418229103, -0.004581225570291281, 0.029588570818305016, -0.008369134739041328, 0.0016670372569933534, 0.03404829651117325, -0.01929689384996891, 0.00857639778405428, 0.007818815298378468, 0.0005574658280238509, -0.052687667310237885, 0.03496311232447624, -0.00959841813892126, -0.003234016476199031, 0.0456550233066082, -0.007164865266531706, -0.03842226043343544, 0.010062973015010357, 0.021583933383226395, -0.011213639751076698, 0.006471606437116861, 0.008940894156694412, -0.01296465378254652, 0.008826542645692825, 0.0025121697690337896, -0.04239599034190178, 0.03996601328253746, 0.0048242234624922276, 0.005678289569914341, 0.01171392947435379, 0.028973929584026337, -0.0048242234624922276, 0.021841224282979965, 0.03670698031783104, -0.009155304171144962, 0.012485804967582226, 0.024928728118538857, 0.011177904903888702, -0.016581034287810326, 0.00749720074236393, -0.022555924952030182, -0.012428629212081432, 0.010656173340976238, -0.015723394230008125, 0.019611362367868423, -0.011685341596603394, -0.009719916619360447, 0.0022888260427862406, 0.017938964068889618, -0.039422839879989624, -0.020697705447673798, -0.0111993458122015, 0.0061392709612846375, 0.010413175448775291, -0.01435117144137621, -0.02075488120317459, -0.002442486584186554, 0.015251693315804005, -0.021483875811100006, -0.0002892300544772297, -0.006364401429891586, -0.0016268353210762143, 0.00047259521670639515, 0.0036467555910348892, 0.025714898481965065, -0.0020476148929446936, 0.005678289569914341, 0.0010899171466007829, 0.021312346681952477, -0.016223685815930367, -0.011699635535478592, -0.018367784097790718, 0.00017845160618890077, 0.017424380406737328, 0.006410857196897268, -0.011556695215404034, 0.00207798951305449, -0.025057373568415642, -0.0039844512939453125, -0.010506086982786655, -0.011678194627165794, 0.017452968284487724, 0.003530616872012615, -0.010141589678823948, 0.015223105438053608, 0.004599092993885279, -0.0025961468927562237, -0.010999229736626148, 0.0005596992559731007, -0.012650186195969582, -0.006289358250796795, 0.005374542437493801, 0.028373580425977707, -0.016395213082432747, 0.013229092583060265, 0.0045026084408164024, 0.04960016533732414, 0.014601316303014755, -0.013229092583060265, 0.005549643654376268, -0.011921192519366741, 0.01713849976658821, -0.024056794121861458, -0.0103345587849617, 0.022270044311881065, 0.02671547792851925, 0.009491212666034698, 0.007597258780151606, 0.004627680871635675, 0.011256521567702293, 0.023227741941809654, 0.02695847488939762, 0.007804521359503269, -0.03178984671831131, 0.012936065904796124, -0.0482565276324749, 0.00458479905501008, -0.020097358152270317, 0.00648590037599206, -0.005188720300793648, -0.010377440601587296, -0.04102376848459244, -0.009727063588798046, 0.02542901784181595, 0.01825343258678913, -0.004541917238384485, -0.033819593489170074, 0.004291772376745939, -0.004427565261721611, -0.00809754803776741, 0.00685039721429348, -0.007718757726252079, 0.01275024376809597, -0.022898981347680092, -0.011570989154279232, -0.011049258522689342, 0.011113581247627735, 0.002798049710690975, -0.007164865266531706, -0.025915013626217842, -0.013257680460810661, -0.0033358612563461065, -0.018839485943317413, -0.006232182029634714, -0.002044041408225894, -0.020140239968895912, 0.015394633635878563, -0.007683022413402796, 0.014165349304676056, 0.017781730741262436, 0.0010666893795132637, 0.02334209531545639, -0.0288595762103796, -0.02387097291648388, 0.033390775322914124, 0.019153954461216927, 0.02181263640522957, 0.0045311967842280865, -0.009834269061684608, 0.003980877809226513, -0.026415303349494934, 0.020997880026698112, -0.04556925967335701, 0.01347923744469881, -0.011563842184841633, -0.004488314501941204, -0.0007513281307183206, 0.0006606506067328155, 0.008483486250042915, 0.02351362258195877, 0.03041762299835682, 0.0456264354288578, -0.019368363544344902, -0.013457796536386013, 0.007833109237253666, -0.03207572549581528, 0.007683022413402796, -0.01655244641005993, -0.01655244641005993, -0.010799113661050797, 0.011385167017579079, -0.015108752995729446, 0.03539193421602249, -0.01869654655456543, 0.006671722512692213, -0.022541631013154984, 0.010270236060023308, 0.008976629003882408, 0.028059113770723343, -0.013364885933697224, -0.03024609386920929, -0.02119799517095089, 0.025100255385041237, 0.029259808361530304, -0.020912116393446922, -0.025286078453063965, 0.005796215031296015, -0.024428438395261765, -0.008369134739041328, 0.01861078292131424, -0.018110493198037148, -0.0013623964041471481, 0.03319065645337105, 0.014422641135752201, -0.0062929317355155945, -0.017009854316711426, -0.011385167017579079, 0.015123046934604645, -0.016938384622335434, -0.0014267194783315063, 0.00982712209224701, 0.017610201612114906, -0.012049837969243526, -0.0072148940525949, 0.04534055292606354, 0.019411245360970497, 0.011528107337653637, 0.008790806867182255, 0.009548389352858067, -0.01193548645824194, -0.003117877757176757, -0.036135219037532806, -0.011478078551590443, -0.029588570818305016, -0.01646668277680874, 0.02215569280087948, 0.0028802400920540094, 0.0022119958885014057, 0.05074368417263031, 0.0004230129416100681, -0.031332436949014664, -0.013086153194308281, -0.026000777259469032, 0.0031518260948359966, -0.033476538956165314, 0.02377091534435749, -0.02309909649193287, -0.014894342981278896, -0.03919413685798645, -0.004792062100023031, -0.008204753510653973, -0.030360447242856026, 0.019868653267621994, -0.036478277295827866, 0.015323163010179996, -0.03336218744516373, 0.036220986396074295, -0.013329151086509228, -0.0015482184244319797, -0.009662740863859653, -0.02644389122724533, -0.02798764407634735, 0.022298632189631462, -0.018825192004442215, -0.016395213082432747, 0.01619509607553482, 0.033991120755672455, 0.030188918113708496, 0.004559784661978483, -0.014637051150202751, -0.0029124016873538494, 0.016495270654559135, 0.019325481727719307, -0.005546070169657469, -0.024585671722888947, 0.012621598318219185, -0.024943022057414055, 0.027801821008324623, -0.01861078292131424, 0.012428629212081432, -0.007640140596777201, 0.02964574657380581, -0.014015262946486473, 0.02594360150396824, -0.017981845885515213, 0.03247595950961113, 0.011013523675501347, -0.008647867478430271, 0.025128843262791634, 0.009634152986109257, -0.004870678763836622, 0.011349432170391083, 0.007947461679577827, -0.005503188353031874, 0.017438674345612526, -0.0012936065904796124, -0.03785049915313721, 0.01550898514688015, -0.0020726292859762907, 0.02938845567405224, -0.04408268257975578, -0.007261349819600582, 0.004188140854239464, 0.010877730324864388, -0.01465134508907795, -0.0017108125612139702, -0.009462624788284302, -0.012707361951470375, -0.0025550518184900284, -0.0327332504093647, -0.006407283712178469, -0.01645238883793354, -0.013565002009272575, 0.01629515551030636, 0.01064187940210104, 0.0035216831602156162, -0.013386326842010021, 0.0006794114597141743, 0.014794285409152508, 0.03167549520730972, 0.05131544545292854, 0.008604985661804676, -0.020797763019800186, 0.03807920590043068, -0.0062929317355155945, -0.013958086259663105, -0.01585204154253006, -0.001920755603350699, -0.008504927158355713, -0.018482135608792305, 0.02212710492312908, 0.009877150878310204, 0.01888236775994301, 0.018467841669917107, 0.012171337381005287, 0.0025068095419555902, 0.019139660522341728, -0.001852859160862863, 0.003780761733651161, 0.001336488639935851, 0.015637630596756935, 0.006893279496580362, -0.017281441017985344, 0.007968902587890625, 0.0396515429019928, -0.018282020464539528, -0.00857639778405428, 0.016995560377836227, -0.00874077808111906, -0.00033300541690550745, -0.008883718401193619, 0.008890865370631218, 0.022012753412127495, 0.02532896026968956, -0.0005708664539270103, -0.007611552719026804, -0.008998069912195206, -0.021784048527479172, 0.0056032463908195496, 0.009126716293394566, -0.016952678561210632, -0.004917134530842304, -0.014572728425264359, -0.007236335426568985, 0.0353347584605217, -0.03413406014442444, 0.03464864566922188, -0.003348368452861905, -0.010799113661050797, 0.019768595695495605, -0.009019510820508003, -0.02781611494719982, -0.012214219197630882, 0.020297473296523094, 0.0020904969424009323, 0.009855709969997406, -0.01085628941655159, -0.018825192004442215, -0.03336218744516373, 0.00018213677685707808, -0.004259610548615456, 0.023470740765333176, -0.010477499105036259, -0.01201410312205553, -0.0010336345294490457, 0.006693163421005011, 0.03170408308506012, -0.011220786720514297, 0.01636662520468235, -0.03324783220887184, -0.008040372282266617, -0.012192778289318085, -0.004874252714216709, 0.00654665008187294, 0.016352331265807152, -0.0070254988968372345, -0.028187759220600128, 0.002245943993330002, 0.006693163421005011, -0.017710261046886444, -0.03464864566922188, 0.0015580455074086785, 0.03722156584262848, 0.01929689384996891, 0.03699285909533501, 0.026172306388616562, -0.01004153210669756, -0.004356095101684332, 0.00024389129248447716, -0.009927179664373398, 0.005117250606417656, 0.0019171821186318994, -0.007683022413402796, 0.003977304324507713, -0.001945770112797618, 0.0044061243534088135, 0.005485320929437876, -0.0014499471290037036, 0.006786074489355087, 0.003780761733651161, -0.0005583591992035508, 0.007675875443965197, 0.005939155351370573, -0.0017170661594718695, 0.008412016555666924, 0.004777768161147833, -0.01403670385479927, -0.007768786512315273, -0.04013754054903984, -0.024328380823135376, 0.0107705257833004, -0.023742327466607094, 0.02713000401854515, 0.009655593894422054, 0.01903960295021534, -0.0029356293380260468, -0.003614594228565693, -0.001104211201891303, 0.028416462242603302, 0.024056794121861458, -0.011613870970904827, -0.015137340873479843, 0.008583544753491879, 0.030789267271757126, -0.02488584630191326, 0.00908383447676897, 0.01297180075198412, -0.0027230060659348965, 0.007118409965187311, 0.006939734797924757, -0.012221366167068481, 0.0018019367707893252, -0.0037450268864631653, -0.014143908396363258, -0.0301603302359581, -0.02584354393184185, -0.025543369352817535, 0.005278057884424925, 0.050972387194633484, 0.023399271070957184, -0.01843925379216671, 0.006871838588267565, 0.003357302164658904, -0.0038522318936884403, 0.0013838374288752675, -0.0028051966801285744, 0.018467841669917107, 0.001746547524817288, 0.027029946446418762, 0.05348813161253929, -0.009712769649922848, -0.0028820268344134092, -0.05488894134759903, -0.013364885933697224, -0.011470931582152843, 0.03556346148252487, 0.030560562387108803, -0.01568051241338253, -0.00016136580961756408, 0.02764458768069744, 0.022441573441028595, -0.007482906803488731, -0.02568631060421467, -0.004899267107248306, 0.012714508920907974, -0.009069540537893772, -0.026744065806269646, -0.01214989647269249, -0.009312538430094719, -0.004398976918309927, -0.018324902281165123, -0.01413676142692566, 0.0024121117312461138, -0.022884687408804893, -0.018153375014662743, 0.0016509564593434334, -0.021641109138727188, 0.029845863580703735, 0.011921192519366741, 0.01843925379216671, -0.007114836480468512, -0.017938964068889618, -0.019053896889090538, 0.021569639444351196, -0.0019707847386598587, 0.010598997585475445, 0.004170273430645466, -0.009562683291733265, 0.02015453390777111, -0.010720496997237206, 0.01653815247118473, -0.018453547731041908, -0.013157622888684273, 0.039937425404787064, -0.010970641858875751, -0.003891540225595236, -0.007425730582326651, 0.025200314819812775, 0.025057373568415642, 0.0008357520564459264, -0.013722235336899757, -0.0007124663679860532, -0.010784819722175598, -0.014179643243551254, 0.017981845885515213, -0.015809159725904465, 0.01903960295021534, -0.002633668715134263, 0.0033537286799401045, -0.040108952671289444, -0.029359865933656693, 0.0019189688609912992, 0.024185439571738243, -0.02877381257712841, -0.02620089426636696, 0.0015142702031880617, -0.012378600426018238, 0.034162648022174835, 0.003988024778664112, -0.007818815298378468, -0.004963589832186699, 0.01816766895353794, -0.04488314688205719, 0.019611362367868423, 0.003207215340808034, -0.00685039721429348, -0.011678194627165794, -0.020268885418772697, -0.010927760042250156, -0.00779737439006567, 0.0017492277547717094, -0.02721576765179634, -0.019754301756620407, -0.02860228531062603, -0.023999618366360664, 0.01885377988219261, -0.02488584630191326, 0.009341126307845116, -0.00037030380917713046, 0.011528107337653637, 0.00575333321467042, -0.02394244261085987, -0.015323163010179996, -0.00474203284829855, 0.008554955944418907, -0.015794865787029266, 0.008540662005543709, -0.015651924535632133, 0.02608654275536537, -0.03462005779147148, -0.029845863580703735, 0.014708521775901318, -0.03945142775774002, -0.030017390847206116, 0.010649026371538639, 0.00290882820263505, -0.023556504398584366, 0.009098128415644169, -0.031075146049261093, -0.008211900480091572, 0.0009121355833485723, -0.009627006016671658, 0.006721751298755407, 0.005181573331356049, 0.009841416031122208, 0.030960794538259506, 0.007754492573440075, 0.017467262223362923, -0.037964850664138794, -0.012857449240982533, -0.01662391610443592, -0.01106355246156454, -0.017281441017985344, -0.02522890269756317, -0.0014017049688845873, 0.019697126001119614, 0.007447171490639448, -0.024314086884260178, -0.02560054510831833, -0.014837167225778103, -0.033219244331121445, -0.03161831945180893, 0.006378695368766785, 0.03667839244008064, 0.036735568195581436, -0.02524319663643837, 0.005253043491393328, 0.050886623561382294, -0.00684682372957468, 0.007597258780151606, -0.028316404670476913, -0.0011774678714573383, -0.017452968284487724, -0.02471431903541088, 0.013536414131522179, -0.004402550403028727, -0.026472479104995728, -0.01931118778884411, -0.002790902741253376, -0.005985610652714968, 0.02654395066201687, 0.006428724620491266, 0.023313507437705994, -0.011449490673840046, -0.002467500977218151, 0.0043596685864031315, -0.007961755618453026, -0.004595519509166479, -0.026057953014969826, -0.029845863580703735, -0.0007942101219668984, 0.008619279600679874, 0.036392513662576675, -0.0185393113642931, 0.012278541922569275, 0.0228418055921793, -0.01370079442858696, -0.010892024263739586, -0.010749084874987602, -0.0018233777955174446, -0.018653664737939835, 0.020268885418772697, 0.003133958438411355, 0.023485034704208374, 0.003748600371181965, 0.023885266855359077, 0.025057373568415642, 0.005610393360257149, -0.007272070273756981, 0.04248175397515297, -0.027373000979423523, -0.03033185936510563, 0.00926250871270895, -0.023913854733109474, 0.008276223205029964, 0.008397722616791725, -0.00473845936357975, -0.019354069605469704, 0.0033537286799401045, 0.014494111761450768, -0.027501648291945457, -0.059920430183410645, -0.011785399168729782, 0.03367665410041809, -0.03487734869122505, -0.021741166710853577, -0.007690169382840395, -0.015008695423603058, -0.012114161625504494, -0.014179643243551254, 0.032018549740314484, -0.028630873188376427, 0.025457605719566345, 0.015008695423603058, 0.011306550353765488, -0.035792164504528046, 0.01629515551030636, 0.027773233130574226, 0.007883138954639435, -0.0017804958624765277, 0.27970489859580994, -0.007833109237253666, -0.013600736856460571, 0.024428438395261765, -0.002885600319132209, 0.023299213498830795, -0.007675875443965197, -0.00532093970105052, -0.0032375899609178305, -0.0019296894315630198, 0.0005677396547980607, -0.02274174615740776, -0.007604405749589205, -0.0012507246574386954, 0.002499662572517991, 0.003167906776070595, -0.031646907329559326, -0.006493047345429659, -0.003930848557502031, 0.002451420295983553, 0.018024727702140808, -0.01646668277680874, 0.0016902650240808725, -0.010834848508238792, 0.03118949756026268, -0.01538033876568079, -0.006317946128547192, 0.013221945613622665, 0.011678194627165794, 0.006929014343768358, -0.021240876987576485, 0.012707361951470375, 0.005717598367482424, -0.0036449688486754894, -0.023885266855359077, 0.0015249906573444605, 0.030703501775860786, 0.0034895215649157763, 0.00749720074236393, 0.020740587264299393, -0.009369714185595512, 0.007029072381556034, -0.021069349721074104, -0.009748505428433418, -0.024671437218785286, 0.0318470224738121, -0.006903999950736761, 0.012028397060930729, -0.01042032241821289, -0.010720496997237206, -0.046655602753162384, -0.024828670546412468, 0.027601705864071846, 0.00801893137395382, -0.015537573024630547, -0.017938964068889618, 0.006475179921835661, 0.0193826574832201, 0.011256521567702293, 0.017295734956860542, -0.01748155616223812, 0.044511500746011734, -0.011899751611053944, 0.04262469336390495, -0.038193557411432266, 0.001046141842380166, -0.005220881663262844, 0.0439397431910038, 0.02455708384513855, -0.005946302320808172, 0.0023585092276334763, -0.004731312394142151, 0.00464912224560976, -0.012121308594942093, -0.02368514984846115, -0.019096778705716133, 0.03150396794080734, 0.004345374647527933, 0.019768595695495605, -6.203370867297053e-05, 0.0016304089222103357, 0.0013579295482486486, -0.005714024882763624, -0.011235080659389496, -0.024428438395261765, -0.04494032263755798, 0.004913561046123505, -0.02101217396557331, 0.010062973015010357, 0.014336877502501011, -0.008805100806057453, 0.011885457672178745, -8.983999578049406e-05, 0.006675295997411013, 0.012628745287656784, 0.012928918935358524, -1.3240092812338844e-05, -0.001230177003890276, -0.01792467013001442, 0.004788488615304232, -0.024156851693987846, 0.035191815346479416, 0.005213734693825245, 0.0063107991591095924, -0.0215410515666008, -0.012507245875895023, -0.007990343496203423, -0.002799836453050375, -0.00407378887757659, -0.010920612141489983, -0.000814757717307657, -0.03696427121758461, -0.0028820268344134092, -0.014751403592526913, -0.006796794943511486, 0.021941283717751503, 0.012378600426018238, -0.02568631060421467, -0.01595209911465645, -0.0014776417519897223, 0.01612362638115883, -0.010827701538801193, 0.009512653574347496, -0.004231022670865059, 0.001305220415815711, -0.013050418347120285, 0.021226583048701286, -0.034677233546972275, 0.018067609518766403, -0.04202434793114662, 0.019625656306743622, -0.01903960295021534, 0.010348852723836899, -0.023999618366360664, -0.008562102913856506, 0.024242617189884186, 0.009112422354519367, -0.0035842193756252527, -0.025043079629540443, 0.009977208450436592, 0.01974000781774521, 0.00284450501203537, 0.013329151086509228, -0.009984356351196766, -0.0014329730765894055, -0.028402168303728104, 0.005660422146320343, -0.000672711175866425, 0.003548484295606613, -0.0024442733265459538, -0.04731312394142151, -0.020869232714176178, 0.03859378769993782, -0.0038700993172824383, 0.0039022606797516346, 0.0010381013853475451, -0.01257156953215599, -0.032790426164865494, 0.0094840656965971, -0.004620533902198076, -0.010713350027799606, -0.012264247983694077, 0.007611552719026804, -0.023384977132081985, -0.01919683627784252, -0.012221366167068481, -0.18296314775943756, 0.0030821426771581173, 0.011835427954792976, -0.023899560794234276, 0.027029946446418762, -0.02990303933620453, 0.01024879515171051, 0.022684570401906967, -0.015994980931282043, -0.00207798951305449, 0.02808770164847374, 0.021240876987576485, -0.007997490465641022, -0.005774774122983217, -0.012214219197630882, -0.016938384622335434, -0.04016612842679024, 0.014243966899812222, 0.027959056198596954, 0.018667958676815033, 0.027959056198596954, -0.020954998210072517, 0.0005105636664666235, 0.012414335273206234, 0.024943022057414055, 0.0017099191900342703, -0.004516902379691601, 0.010713350027799606, 0.03233301639556885, -0.012221366167068481, 0.0025961468927562237, -0.007050513289868832, 0.005578231532126665, -0.0005302178906276822, -0.0011685341596603394, -0.002676550764590502, 0.00568901002407074, 0.0029981655534356833, -0.012707361951470375, -0.007018351927399635, -0.01499440148472786, 0.04376821592450142, 0.007725904695689678, 0.010012944228947163, 0.012986094690859318, -0.0018546459032222629, -0.009984356351196766, -0.007611552719026804, 0.001047035213559866, -0.013372032903134823, 0.013129035010933876, -0.05022909864783287, -0.007114836480468512, -0.011999809183180332, 0.03747885674238205, 0.013472090475261211, -0.005781921092420816, -0.01171392947435379, -0.0010675827506929636, -0.006929014343768358, -0.0066502816043794155, -0.0025479046162217855, 0.0067932214587926865, -0.0032215092796832323, -0.006936161313205957, -0.008926600217819214, -0.011177904903888702, 0.03233301639556885, -0.026729771867394447, -0.012221366167068481, -0.0019421966280788183, -0.0008518327958881855, 0.017524437978863716, -0.02981727384030819, 0.005610393360257149, 0.02471431903541088, -0.0017876428319141269, 0.015265987254679203, 0.034162648022174835, -0.010091560892760754, -0.030960794538259506, 0.03213290125131607, -0.028044819831848145, -0.013879469595849514, -0.002524676965549588, 0.0024246189277619123, 0.014072438701987267, -0.0021458861883729696, 0.0058140829205513, -0.0017224265029653907, 0.007046939805150032, -0.04413985833525658, 0.024842964485287666, -0.00792602077126503, 0.019168248400092125, 0.0019832919351756573, -0.0005833737086504698, 0.015223105438053608, -0.0009210693533532321, -0.0193826574832201, 0.0029534967616200447, 0.0007392675615847111, -0.004827796947211027, 0.011056405492126942, -0.005949875805526972, -0.00290882820263505, 0.007747345604002476, 0.00480635603889823, 0.00728279072791338, 0.0021262317895889282, -0.040537770837545395, -0.009862856939435005, 0.017796024680137634, 0.004306066315621138, 0.02059764787554741, 0.0062929317355155945, -0.03041762299835682, -0.013622177764773369, 0.010170177556574345, 0.010577556677162647, 0.0430821031332016, -0.014544140547513962, 0.0011837214697152376, 0.03244737163186073, -0.017595907673239708, -0.003074995707720518, -0.05377401039004326, -0.017438674345612526, -0.0014419067883864045, -0.0004721485311165452, 0.019968712702393532, 0.01446552388370037, -0.01447267085313797, -0.008283370174467564, 0.0043775360099971294, 0.02249874919652939, -0.037164390087127686, -0.04962875321507454, -0.03719297796487808, 0.009155304171144962, 0.03802202641963959, 0.02488584630191326, -0.035106051713228226, 0.022713158279657364, -0.0010291676735505462, 0.03816496953368187, -0.010391734540462494, -0.029102575033903122, 0.006825382821261883, -0.021126525476574898, -0.015366044826805592, -0.012986094690859318, -0.014894342981278896, 0.03567781299352646, 0.0148657551035285, 0.00926250871270895, 0.060606542974710464, -0.018582195043563843, 0.03996601328253746, -0.00938400812447071, -0.014908636920154095, -0.025028785690665245, -0.024356968700885773, 0.0009201759821735322, 0.0005936474772170186, -0.013793705962598324, 0.007668728474527597, 0.009784240275621414, -0.004516902379691601, 0.01412246748805046, -0.010355999693274498, -0.02575778029859066, 0.004445432685315609, 0.0439111553132534, -0.011842574924230576, 0.010448910295963287, -0.03913696110248566, -0.0058712586760520935, 0.014293995685875416, -0.003716438775882125, 0.005403130315244198, 0.015894923359155655, 0.0011506666196510196, -0.00407378887757659, -0.041566938161849976, 0.011027817614376545, -0.04110953211784363, -0.007339966483414173, -0.0033948239870369434, 0.006074948236346245, 0.005446012131869793, 0.014851461164653301, -0.007200600113719702, -0.016838327050209045, 0.02534325420856476, 0.017553025856614113, -0.008590691722929478, 0.018224844709038734, -0.00684682372957468, -0.0013445289805531502, -0.044740207493305206, 0.0014856822090223432, -0.018153375014662743, 0.015037283301353455, 0.02292756922543049, 0.0027712483424693346, -0.01465134508907795, 0.003698571352288127, 0.00917674507945776, -0.01202125009149313, 0.04253892973065376, 0.010055826045572758, 0.007454318460077047, -0.0008504927391186357, 0.0017358270706608891, -0.04368244856595993, 0.012107014656066895, 0.03756462037563324, 0.008705043233931065, -0.017024148255586624, -0.013900910504162312, -0.005127971060574055, 7.169332093326375e-05, 0.035534873604774475, 0.007847403176128864, 0.0058533912524580956, -0.012986094690859318, 0.0026962049305438995, -0.08479198068380356, 0.019511304795742035, -0.00801178440451622, -0.010448910295963287, 0.024485614150762558, -0.001745654153637588, -0.01508016511797905, -0.008126136846840382, 0.010920612141489983, -0.004663416184484959, -0.022184280678629875, 0.0228132177144289, -0.0006593105499632657, -0.015308869071304798, -0.019368363544344902, -0.021569639444351196, 0.03076067753136158, 0.0012364306021481752, 0.017367204651236534, 0.012764537706971169, 0.009870003908872604, 0.006646708119660616, 0.05391694977879524, 0.0033036996610462666, 0.0027122856117784977, 0.027515942230820656, -0.0034269853495061398, 0.022169986739754677, -0.0189681313931942, -0.028487933799624443, 0.009069540537893772, -0.014894342981278896, 0.0103417057543993, 0.03496311232447624, 0.016752563416957855, -0.0031107307877391577, -0.003630674909800291, 0.01662391610443592, 0.03419123589992523, -0.005885552614927292, -0.006450165528804064, -0.038050614297389984, -0.0021262317895889282, -0.00813328381627798, -0.020826350897550583, -0.0019922256469726562, 0.002460354007780552, 0.016423800960183144, 0.001718853018246591, 0.012056984938681126, 0.014243966899812222, 0.013007535599172115, 0.009677034802734852, -0.034248411655426025, -0.033562302589416504, -0.04033765569329262, 0.004606239963322878, -0.007597258780151606, -0.02292756922543049, -0.0185393113642931, 0.04022330418229103, 0.02205563522875309, 0.01583774760365486, -0.011956927366554737, 0.022541631013154984, 0.008562102913856506, -0.018625076860189438, 0.008705043233931065, 0.027944760397076607, -0.00013713301450479776, 0.0034627204295247793, -0.031160909682512283, -0.0035699254367500544, 0.0025711324997246265, -0.0007870631525292993, 0.018324902281165123, -0.012457217089831829, -0.0012685920810326934, -0.011520960368216038, 0.029331278055906296, -0.005306645762175322, -0.0044847410172224045, -0.026258070021867752, -0.005331660155206919, 0.027773233130574226, -0.009112422354519367, -0.018282020464539528, 0.01974000781774521, -0.03041762299835682, -0.004670563153922558, -0.027187179774045944, 0.014965813606977463, -0.004499034956097603, 0.0016482763458043337, 0.012171337381005287, 0.00969847571104765, 0.0015732329338788986, -0.017810318619012833, 0.01731002889573574, 0.03836508467793465, -0.013622177764773369, 0.014093879610300064, -0.0038200702983886003, -0.00866216141730547, -0.0067753540351986885, 0.025371842086315155, -0.009734210558235645, -0.05451729893684387, 0.0058712586760520935, -0.002769461600109935, -0.012428629212081432, 0.0058891260996460915, -0.005864111706614494, 0.02186981402337551, -0.03939425200223923, 0.020140239968895912, -0.01042746938765049, -0.0010023664217442274, -0.03913696110248566, 0.03722156584262848, 0.03181843459606171, 0.013450649566948414, -0.007172012235969305, 0.0018903808668255806, 0.012400041334331036, -0.0008129709749482572, 0.03007456660270691, -0.00969132874161005, 0.004499034956097603, 0.04799923673272133, 0.0008031438919715583, 0.026601126417517662, 0.006689589936286211, -0.027458764612674713, 0.010012944228947163, 0.014329730533063412, -0.0029945920687168837, 0.014529846608638763, -0.003330501029267907, 0.06964034587144852, 0.01297180075198412, -0.013550708070397377, -0.0007173799094744027, -0.00654665008187294, 0.004917134530842304, 0.01722426526248455, 0.00627149036154151, -0.008940894156694412, -0.021555345505475998, 0.03753603249788284, -0.02145528793334961, -0.008283370174467564, -0.014315436594188213, 0.01989724114537239, 0.009841416031122208, -0.027172885835170746, 0.0327618382871151, -0.018467841669917107, 0.007983196526765823, 0.02560054510831833, -0.01912536658346653, 0.03353371471166611, -0.01809619925916195, 0.0016902650240808725, -0.0014928291784599423, -0.00857639778405428, -0.01679544523358345, -0.004602666478604078, -0.020454708486795425, 0.0022584511898458004, 0.0039201281033456326, -0.01878231018781662, -0.02895963564515114, -0.03167549520730972, -0.00559967290610075, 0.007143424358218908, 0.00982712209224701, 0.0210979375988245, 0.0028873870614916086, -0.00896233506500721, 0.013586442917585373, -0.01912536658346653, 0.00422030221670866, 0.005088662263005972, -0.014837167225778103, 0.007425730582326651, -0.006500194314867258, -0.009248214773833752], "0cba1902-9045-405e-9a1d-64b1526ebb87": [-0.007426174823194742, -0.024237917736172676, 0.01112880278378725, -0.007684173062443733, -0.0071089062839746475, 0.015828559175133705, -0.023066464811563492, -0.054137859493494034, -0.011595988646149635, 0.0007086244295351207, 0.004563785158097744, 0.009971295483410358, -0.0019663674756884575, 0.010808047838509083, -0.025423316285014153, -0.00796309020370245, 0.0012978373561054468, 0.014433973468840122, 0.039550479501485825, 0.011100910604000092, -0.000957906770054251, 0.03380478173494339, 0.016567690297961235, -0.010187456384301186, -0.025855638086795807, 0.037598058581352234, 0.026734229177236557, -0.012342092581093311, 0.011017235927283764, -0.0012777901720255613, 0.04323219135403633, 0.01645612344145775, -0.012523389421403408, -0.012523389421403408, -0.004082652740180492, 0.0014250933891162276, -0.0010755750117823482, -0.01727893017232418, 0.018575895577669144, 0.023038573563098907, 0.009636594913899899, 0.0013815124984830618, -0.0014311947161331773, 0.02480969950556755, 0.0027734844479709864, 0.0042918408289551735, -0.016149314120411873, -0.004926377907395363, -0.010082862339913845, 0.02755703404545784, -0.006104803644120693, 0.02171371690928936, -0.05924204736948013, -0.03996885567903519, 0.012927819043397903, -0.010640697553753853, 0.02465629391372204, 0.01580066792666912, -0.009406487457454205, -0.032577548176050186, 0.04270224645733833, -0.000373051967471838, -0.02829616516828537, 0.0009160691988654435, 0.022745709866285324, -0.030095182359218597, 0.010689507238566875, -0.008758004754781723, -0.0017275443533435464, 0.015033645555377007, -0.006484828423708677, 0.038685835897922516, 0.023470895364880562, 0.00011461760004749522, 0.02917475625872612, -0.0012969657545909286, -0.02183922939002514, 0.0004425634106155485, 0.016163261607289314, 0.011010262183845043, -0.0010468116961419582, -0.008988112211227417, 0.028784271329641342, -0.0016761189326643944, 0.01105907279998064, -0.0006062094471417367, 0.005574860610067844, 0.04284170642495155, 0.014740781858563423, -0.0071960678324103355, 0.018366707488894463, -0.002585215261206031, 0.009559892117977142, 0.011568097397685051, 0.021420853212475777, -0.01620509847998619, -0.001985542941838503, -0.006777691654860973, -0.003540507284924388, -0.03455786034464836, -0.0009082246688194573, 0.036928657442331314, -0.014810511842370033, -0.004406894091516733, -0.03489256277680397, -0.006791637744754553, 0.01963578164577484, -0.013604193925857544, -0.017292875796556473, -0.0170697420835495, -0.026218231767416, 0.02609271928668022, -0.014420026913285255, 0.012997549027204514, 0.0018164493376389146, -0.0005199193838052452, 0.0415307953953743, -0.0016229503089562058, -0.060803983360528946, -0.0007291074143722653, 0.02151847444474697, 0.026845796033740044, 0.021881066262722015, -0.007133311592042446, 0.04303694888949394, 0.007216986734420061, -0.013290411792695522, -0.011651773005723953, -0.005051890388131142, -0.02923053875565529, 0.07737167179584503, -0.010661615990102291, 0.02600904367864132, 0.0037688708398491144, 0.00803282018750906, 0.02702709101140499, -0.015103374607861042, 0.01969156600534916, -0.016177207231521606, -0.009964322671294212, 0.05438888445496559, 0.0030890097841620445, -0.0027665116358548403, 0.00903692189604044, -0.006725394632667303, 0.02245284803211689, 0.017990170046687126, 0.0020204077009111643, 0.009413461200892925, -0.0025329182390123606, -0.013632086105644703, 0.005508617963641882, 0.009427406825125217, 0.012091067619621754, 0.007335526403039694, 0.008102549239993095, 0.008060711435973644, 0.00593048008158803, 0.018296979367733, -0.01835276186466217, -0.004274408333003521, 0.024363430216908455, 0.015019699931144714, -0.004406894091516733, 0.013074250891804695, 0.02856113761663437, -0.009099679067730904, -0.0036433578934520483, -0.011414692737162113, -0.002442270051687956, -0.026511095464229584, 0.0325496569275856, 0.008520925417542458, 0.0028972539585083723, -0.00220867688767612, -0.002165095880627632, 0.004591676872223616, -0.022689927369356155, 0.010912641882896423, 0.027459412813186646, -0.03388845920562744, 0.030095182359218597, 0.01808779127895832, 0.020681722089648247, -0.003427196992561221, -0.00344462925568223, -0.0030001047998666763, 0.02789173647761345, 0.003943194169551134, -0.012913873419165611, -0.002973956288769841, 0.003667763201519847, 0.03232652321457863, 0.023707974702119827, -0.5292735695838928, -0.042785923928022385, -0.016232989728450775, 0.01361116673797369, 0.01673504151403904, -0.002348135458305478, 0.010766210034489632, 0.02836589515209198, -0.01679082401096821, 0.019663672894239426, -0.011916743591427803, 0.016037747263908386, -0.0028519299812614918, -0.014203866012394428, -0.01149139553308487, -0.027863843366503716, -0.001715341699309647, -0.01573093980550766, 0.009532000869512558, 0.034585751593112946, -0.0478622168302536, 0.02757098153233528, -0.021964741870760918, 0.03709600865840912, 0.001715341699309647, 0.0003460318548604846, -0.02036096714437008, -0.0025468640960752964, 0.008758004754781723, 0.04429207742214203, -0.005058863665908575, 0.029118971899151802, 0.009176380932331085, 0.027794115245342255, 0.06102711707353592, -0.025506991893053055, -0.026636607944965363, 0.014810511842370033, -0.0003174864104948938, 0.05070717632770538, -0.04108452796936035, -0.009127570316195488, 0.043315865099430084, -0.0182133037596941, -0.0008493905188515782, -0.011916743591427803, -0.010299023240804672, -0.007621416822075844, 0.003463804954662919, -0.01930108107626438, 0.0020622452720999718, -0.017557848244905472, 0.010340861044824123, -0.014238731004297733, 0.014113218523561954, 0.0012978373561054468, 0.02338721975684166, -0.0241960808634758, -0.0003811144270002842, -0.01435029786080122, -0.031155068427324295, -0.00537613220512867, -0.024921266362071037, 0.010996316559612751, -0.005268051754683256, 0.029118971899151802, -0.004863621201366186, 0.0010110754519701004, -0.015047591179609299, 0.002471904968842864, 0.0033504946622997522, 0.01990075409412384, 0.003533534239977598, 0.02143479883670807, 0.0035387638490647078, 0.02628795988857746, 0.060190364718437195, -0.047415949404239655, 0.02150452882051468, 0.008283845148980618, -0.011735447682440281, -0.022689927369356155, -0.03528304398059845, 3.418371852603741e-05, 0.005044917576014996, -0.005515590775758028, -0.03784908354282379, 0.021630041301250458, -0.003193603828549385, -0.005620184820145369, 0.036538172513246536, 0.0030088210478425026, 0.008988112211227417, -0.03550617769360542, -0.002886794740334153, 0.013408951461315155, -0.02009599469602108, 0.0012115472927689552, 0.0358966626226902, -0.005745697766542435, -0.05268748849630356, 0.02317803166806698, -0.0074470932595431805, 0.014420026913285255, 0.0028571595903486013, 0.004846189171075821, -0.02123955637216568, 0.02238311804831028, 0.03517147898674011, -0.010096807964146137, -0.01571699231863022, -0.020890910178422928, -0.01435029786080122, -0.004766000434756279, 5.431261888588779e-05, -0.041307661682367325, 0.029621023684740067, 0.019747348502278328, -0.00995037704706192, 0.0029286323115229607, 0.01612142287194729, -0.018868759274482727, 0.025576721876859665, 0.004595163278281689, 0.0025364046450704336, 0.024154242128133774, 0.01102420873939991, -0.0029460645746439695, -0.0022365686018019915, -0.012014364823698997, -0.028379840776324272, -0.010940533131361008, 0.002271433128044009, -0.02285727672278881, -0.024014784023165703, -0.007161203306168318, -0.03427894413471222, 0.004731135442852974, -0.0025154859758913517, -0.02729206345975399, -0.036677632480859756, -0.015884343534708023, 0.019259244203567505, -0.0013013237621635199, -0.001210675691254437, -0.011916743591427803, -0.007168176118284464, -0.004675352014601231, 0.0034916966687887907, 0.01038967166095972, -0.004082652740180492, -0.029342105612158775, -0.013813382014632225, 0.016009856015443802, 0.002684579463675618, -0.010501238517463207, -0.02197868749499321, -0.011205504648387432, 0.03037410043179989, -0.0077399564906954765, -0.000957906770054251, 0.010536103509366512, -0.020849071443080902, -0.007440120447427034, 0.013137007132172585, -0.049173131585121155, 0.007872442714869976, 0.012111986055970192, -0.016149314120411873, -0.028756380081176758, 0.005180889740586281, 0.009287947788834572, -0.00779573991894722, -0.004727649036794901, 0.001290864427573979, 0.003116901498287916, -0.016888445243239403, -0.005198322236537933, -0.005170430522412062, -0.008360547944903374, 0.002194731030613184, 0.008548816666007042, -0.0059897503815591335, -0.009727242402732372, 0.0025329182390123606, -0.022229712456464767, 0.006767232436686754, 0.02520018257200718, -0.02169976942241192, -0.0034550887066870928, -0.01659558340907097, 0.01146350335329771, -0.019175568595528603, 0.0036886821035295725, 0.024447105824947357, 0.03204760327935219, -0.00638720765709877, 0.0004567271680571139, -0.018324870616197586, 0.02769649401307106, 0.04295327141880989, 0.04443153366446495, 0.014106245711445808, -0.025911422446370125, 0.01956605166196823, -0.029676806181669235, 0.003800248960033059, -0.01780887320637703, 0.0006894488469697535, 0.008897463791072369, -0.011853987351059914, -0.024767860770225525, 0.0021232583094388247, 0.003204063046723604, 0.014461864717304707, -0.012446686625480652, -0.008778924122452736, -0.0008995084790512919, -0.00672190822660923, 0.002895510755479336, 0.03168501332402229, 0.017223145812749863, 0.01239787694066763, -0.00826292671263218, 0.028616920113563538, -0.03221495449542999, 0.00886957161128521, -0.003911816049367189, -0.02836589515209198, -0.020207561552524567, -0.02528385818004608, -0.026776066049933434, -0.0033853594213724136, -0.02264808863401413, -0.012495497241616249, 0.003101212438195944, 0.029927833005785942, -0.0059897503815591335, 0.015312562696635723, 0.0018007601611316204, 0.0008437249925918877, 0.007802713196724653, -0.012690739706158638, -0.044124726206064224, 0.013890083879232407, 0.026441365480422974, 0.041921280324459076, -0.00965054053813219, 0.0021023396402597427, 0.007182121742516756, -0.008221088908612728, 0.0007077527698129416, -0.015633318573236465, 0.0432879738509655, -0.005832859314978123, -0.003810708411037922, -0.00847211480140686, 0.03793276101350784, -0.005818913225084543, 0.037402816116809845, 0.043315865099430084, 0.02062593773007393, -0.030820367857813835, -0.0026671472005546093, 0.026441365480422974, 0.009448325261473656, -0.006345369853079319, -0.0222576055675745, -0.0027107279747724533, -0.02681790292263031, -0.011331017129123211, -0.008290817961096764, 0.0270131453871727, 0.015842506662011147, 0.005062350071966648, -0.01085685845464468, 0.03427894413471222, 0.011219450272619724, 0.03717968240380287, 0.007426174823194742, -0.02683185040950775, -0.035924553871154785, 0.03204760327935219, 0.039745721966028214, -0.014726836234331131, -0.010096807964146137, 0.007886388339102268, -0.011365882121026516, -0.018980326130986214, 0.022369172424077988, 0.012788360938429832, -0.006767232436686754, 0.027710439637303352, 0.0019803133327513933, -0.0039187888614833355, 0.003911816049367189, -0.0040059504099190235, 0.005044917576014996, -0.02292700670659542, 0.027543088421225548, 0.025088615715503693, 0.00967843271791935, -0.008569736033678055, 0.01395284105092287, 0.044794127345085144, -0.006066452711820602, 0.005801481194794178, 0.0006375876255333424, 0.0050414311699569225, 0.012230525724589825, 0.0012333376798778772, -0.03271700441837311, -0.009050868451595306, -0.02950945682823658, -0.007328553590923548, 0.02884005382657051, -0.013764571398496628, -0.0006733239279128611, 0.03070880100131035, -0.0033104002941399813, -0.025451209396123886, -0.03031831607222557, -0.023470895364880562, 0.004134949762374163, -0.017181308940052986, 0.04666287451982498, -0.027738330885767937, -0.019914699718356133, -0.028463516384363174, 0.007726010866463184, -0.024837590754032135, -0.014308460056781769, 0.00847211480140686, -0.006519693415611982, 0.01840854622423649, -0.03266122192144394, 0.048559512943029404, -0.03151766210794449, 0.022466793656349182, -0.0028066060040146112, 0.002348135458305478, -0.012725604698061943, 0.0443478599190712, -0.007244878448545933, -0.04052669182419777, 0.012342092581093311, 0.030067291110754013, 0.015382291749119759, -0.01801806129515171, -0.01983102411031723, -0.00492289150133729, 0.02662266232073307, 0.010333888232707977, -0.006683557294309139, -0.028254328295588493, -0.0015645520761609077, -0.033916350454092026, 0.01822724938392639, -0.02432159334421158, 0.01626088097691536, 0.003041942371055484, 0.03252176195383072, -0.006484828423708677, -0.0029565240256488323, 0.009099679067730904, 0.043315865099430084, -0.002069218084216118, 0.004630028270184994, 0.00700779864564538, 0.011017235927283764, -0.011114856228232384, 0.008346602320671082, 0.024893373250961304, 0.0003445065231062472, 0.002925145672634244, -0.02743152156472206, -0.010926587507128716, -0.013067278079688549, -0.023219870403409004, 0.02567434310913086, -0.054416775703430176, -0.021992633119225502, 0.007851523347198963, 0.016023801639676094, 0.01304635964334011, -0.012983602471649647, 0.009197299368679523, -0.023415112867951393, 0.00907875970005989, -0.03358164802193642, -0.007440120447427034, -0.028282219544053078, -0.0230525191873312, -0.002055272227153182, 0.032772790640592575, -0.004253489896655083, -0.016776878386735916, -0.0029931319877505302, 0.01186096016317606, 0.02366613782942295, -0.003810708411037922, 0.001758922589942813, -0.0028571595903486013, 0.010494265705347061, 0.0021302313543856144, -0.037012334913015366, -0.021086152642965317, 0.007154230028390884, 0.037012334913015366, -0.0037584113888442516, 0.022062363103032112, 0.00041706860065460205, 0.02702709101140499, 0.01207014825195074, 0.01018048357218504, 0.03723546862602234, 0.005421455949544907, -0.019817078486084938, 0.026036934927105904, -0.020319130271673203, -0.019077947363257408, 0.010842911899089813, -0.006641719490289688, -0.0009526771027594805, 0.014336352236568928, -0.02379165031015873, 0.021281395107507706, -0.0022261091507971287, -0.0071054198779165745, 0.02405662275850773, 0.023554570972919464, 0.025451209396123886, 0.006470882799476385, -0.01475472841411829, -0.006066452711820602, -0.03837902843952179, 0.03224284574389458, 0.015173104591667652, 0.01175636611878872, 0.017055796459317207, -0.00886957161128521, 0.011351936496794224, -0.0042081656865775585, 0.00689274538308382, 0.023443004116415977, -0.02856113761663437, 0.01660952903330326, -0.0017597941914573312, -0.01962183602154255, 0.05193440988659859, -0.0336095429956913, -0.03157344460487366, -0.010794101282954216, 0.03341430053114891, -0.019105838611721992, -0.006021128501743078, -0.013074250891804695, 0.0109544787555933, -0.043455325067043304, -0.013562356121838093, -0.018185412511229515, 0.022662034258246422, -0.01863167993724346, -0.034111592918634415, 0.0012734320480376482, 0.000767894322052598, 0.017794927582144737, -0.025451209396123886, 0.011874906718730927, -0.0318523608148098, -0.008353575132787228, 0.005261078476905823, -0.029258430004119873, 0.006463909521698952, 0.00910665187984705, 0.00779573991894722, -0.015744885429739952, -0.016693204641342163, 0.006568503566086292, -0.013178844936192036, -0.04122398421168327, -0.00015351349429693073, 0.01761363074183464, -0.000807988690212369, -0.004075679928064346, 0.04233965650200844, -0.005198322236537933, -0.014036515727639198, -0.005735238082706928, 0.0008219346054829657, -0.02486548200249672, 0.017125526443123817, -0.025911422446370125, 0.009699351154267788, 0.0037235466297715902, 0.02808697707951069, 0.011665718629956245, -0.01640034094452858, 0.008004928007721901, 0.03980150818824768, 0.0010982371168211102, 0.02702709101140499, 0.025562776252627373, -0.049368370324373245, 0.00457424484193325, 0.0014564716257154942, -0.011888852342963219, 0.01787860319018364, -0.038685835897922516, -0.020932747051119804, -0.01367392297834158, -0.007230932358652353, 0.014712890610098839, 0.009657513350248337, 0.01112880278378725, 0.00015318664372898638, 0.013876138255000114, 0.010480320081114769, 0.018994271755218506, 0.004877567291259766, -0.0067742052488029, -0.002717701019719243, 0.011379827745258808, 0.01693028397858143, -0.022759655490517616, 0.031015610322356224, 0.01835276186466217, 0.005675968248397112, -0.007600497920066118, 0.0021929878275841475, -0.02137901447713375, -0.016818717122077942, -0.005278510972857475, -0.024112405255436897, -0.012781388126313686, -0.046021364629268646, -0.03224284574389458, -0.0013370601227506995, -0.007021744269877672, 0.04281381517648697, -0.0053273215889930725, -0.004560298752039671, 0.0026270528323948383, -0.009497135877609253, -0.023568516597151756, -0.023303546011447906, 0.008862598799169064, 0.003113415092229843, 0.03347008302807808, 0.039020538330078125, -0.0016281800344586372, -0.012439713813364506, -0.02210419997572899, -0.004877567291259766, 0.014113218523561954, 0.03285646438598633, 0.01492207869887352, 0.0065301526337862015, -0.005250619258731604, 0.001203702762722969, 0.020737504586577415, -0.0008742315694689751, -0.02183922939002514, 0.023164086043834686, 0.013269493356347084, -0.012697712518274784, -0.0233174916356802, 0.007956117391586304, -0.02486548200249672, 0.00293909152969718, 0.013081223703920841, -0.009789999574422836, -0.02521412819623947, -0.0055818334221839905, -0.02526991255581379, 0.029760481789708138, -0.022034471854567528, 0.026594769209623337, 0.027598872780799866, -0.011212477460503578, -0.02157425694167614, -0.02192290499806404, -0.004127976950258017, 0.019105838611721992, 0.016107477247714996, 0.002158123068511486, -0.004051274619996548, -0.00040203321259468794, 0.024028729647397995, -0.005065836478024721, -0.005975804291665554, -0.011275233700871468, -0.018310924991965294, 0.04342743381857872, -0.034920454025268555, -0.011721502058207989, -0.0025608099531382322, -0.00321975233964622, 0.02016572467982769, -0.002398689277470112, -0.017571793869137764, 0.007767848204821348, -0.021825283765792847, -0.009162435308098793, 0.023749813437461853, -0.016497962176799774, 0.017711251974105835, -0.0054075103253126144, 0.007816659286618233, -0.011909770779311657, -0.04086139425635338, -0.0290352962911129, -0.0006964217755012214, -0.015103374607861042, 0.0020796775352209806, -0.01854800432920456, -0.024279756471514702, 0.038211677223443985, 0.004253489896655083, -0.005707346368581057, 0.005947912577539682, 0.04088928550481796, -0.024349484592676163, 0.009525028057396412, -0.013150953687727451, 0.0003277279029134661, -0.029955724254250526, -0.021936850622296333, -0.0016543285455554724, -0.005651562940329313, 0.01633061096072197, -0.008269899524748325, 0.006296559236943722, -0.044933587312698364, 0.012056202627718449, 0.005728265270590782, -0.022466793656349182, -0.004354597069323063, -0.027250226587057114, 0.01146350335329771, 0.015354400500655174, -0.03648239001631737, 0.009699351154267788, -0.002219136105850339, -0.004243030212819576, 0.001247283536940813, 0.01713947206735611, -0.03213128075003624, 0.019398702308535576, -0.012286309152841568, -0.024210026487708092, 0.01741838827729225, -0.022871222347021103, -0.006551071535795927, -0.0018234222661703825, 0.010396644473075867, -0.0037863031029701233, -1.8916807675850578e-05, -0.024586565792560577, -0.010208374820649624, -0.004790405742824078, -0.010354806669056416, -0.008737086318433285, -0.028519298881292343, 0.0015863424632698298, 0.010159565135836601, -0.029007405042648315, 0.024823645129799843, -0.03528304398059845, -0.028421679511666298, 0.04144711792469025, -0.02185317501425743, -0.014852349646389484, -0.041168201714754105, -0.017390497028827667, 0.02500494010746479, 0.02473996952176094, -0.010075889527797699, -0.0427580289542675, -0.029732590541243553, -0.03578509762883186, -0.023749813437461853, -0.007872442714869976, 0.028421679511666298, 0.014392135664820671, 0.011003289371728897, 0.003796762553974986, 0.03084825910627842, -0.020249400287866592, 0.028379840776324272, -0.01875719241797924, -0.025255966931581497, -0.016497962176799774, -0.0037235466297715902, 0.023568516597151756, 0.0008729241671971977, -0.011519286781549454, -0.019133729860186577, -0.0003017972921952605, 0.007136797998100519, 0.013527492061257362, 0.011142748408019543, -0.003005334408953786, 0.01264192909002304, -0.03037410043179989, -0.003041942371055484, 0.012195661664009094, 0.0032894816249608994, 0.0019733402878046036, -0.021295340731739998, 0.006310505326837301, -0.002837984124198556, 0.034669429063797, 0.006272153928875923, 0.0005796251352876425, 0.024781806394457817, -0.014977862127125263, -0.013018467463552952, -0.014106245711445808, 0.0006445605540648103, -0.010459400713443756, 0.03160133585333824, 0.025395425036549568, 0.02333143725991249, 0.0031360769644379616, 0.02667844481766224, 0.03564563766121864, 0.024781806394457817, -0.014099271968007088, -0.0005421456298790872, -0.025646449998021126, 0.0019524215022101998, 0.009894593618810177, -0.022968843579292297, -0.006882285699248314, -0.0018792056944221258, 0.028184598311781883, -0.011289180256426334, 0.004340651445090771, -0.0014756470918655396, -0.018743246793746948, -0.0461050383746624, 0.0014678025618195534, 0.0273617934435606, -0.033972132951021194, 0.0016429974930360913, -0.0031587390694767237, 0.01179820392280817, 0.013813382014632225, -0.008242008276283741, 0.014810511842370033, -0.00564807653427124, 0.0070775276981294155, -0.012690739706158638, 0.006104803644120693, -0.02989993989467621, 0.01038967166095972, 0.013924948871135712, -0.01808779127895832, -0.030290424823760986, 0.2347368448972702, 0.01807384379208088, 0.004051274619996548, 0.004699757322669029, -0.003188373986631632, 0.014936024323105812, 0.007753902580589056, 0.019454484805464745, 0.020012320950627327, -0.004190733190625906, 0.01680477149784565, -0.015814613550901413, -0.019189514219760895, 0.00588166993111372, -0.015577534213662148, -0.022146038711071014, -0.021127989515662193, -0.04387370124459267, -0.00820017047226429, -0.004853161983191967, 0.02984415739774704, -0.015647264197468758, 0.017962276935577393, 0.0013527491828426719, 0.04660709202289581, 0.008255953900516033, -0.007516822777688503, 0.0020273805130273104, 0.017655469477176666, 0.0179483313113451, -0.018394598737359047, 0.002252257661893964, 0.015159158036112785, -0.018115682527422905, -0.012634956277906895, -0.003796762553974986, 0.02964891493320465, 0.013945868238806725, 0.037681736052036285, 0.025046778842806816, -0.0020064618438482285, -0.012746523134410381, -0.009162435308098793, -0.00497518852353096, -0.011979500763118267, -0.0004111852031201124, -0.020960640162229538, -0.004501028917729855, 0.005770102608948946, 0.010989343747496605, -0.033442191779613495, -0.024210026487708092, 0.032968033105134964, -0.002531175035983324, -0.017362605780363083, -0.020584100857377052, 0.016846608370542526, -0.03913210332393646, 0.006899718195199966, -0.00225923047401011, -0.014963916502892971, 0.025967204943299294, 0.002841470530256629, 0.02984415739774704, -0.0351993702352047, -0.0002808785066008568, -0.0018042466836050153, 0.016302719712257385, -0.025158345699310303, -0.01808779127895832, -0.012662847526371479, 0.026511095464229584, -0.00542494235560298, -0.011874906718730927, -0.030262533575296402, -0.038267459720373154, 0.024251863360404968, 0.013757598586380482, 0.01868746243417263, 0.00024339897208847106, -0.0018216789467260242, 0.012627983465790749, 0.0033923322334885597, -0.008674330078065395, -0.04033144935965538, -0.03193603828549385, 0.0115262595936656, -0.016553744673728943, 0.009294920600950718, 0.022369172424077988, 0.01112880278378725, -0.00208490714430809, -0.015326508320868015, -0.028268273919820786, -0.010438482277095318, 0.017711251974105835, -0.003803735366091132, 0.016484016552567482, -0.014908133074641228, 0.01801806129515171, -0.009260056540369987, 0.007537741679698229, 0.01085685845464468, 0.005749184172600508, 0.023415112867951393, 0.00138238409999758, -0.021895011886954308, -0.003932734951376915, 0.001371924765408039, -0.03079247660934925, -0.006983393337577581, -0.030959825962781906, -0.0037584113888442516, -0.005491185467690229, -0.011707556433975697, 0.007335526403039694, -0.00712285190820694, -0.02447499707341194, -0.013653004541993141, -0.004385975655168295, 0.014378190040588379, -0.022745709866285324, -0.008109522052109241, 0.016623474657535553, -0.003200576640665531, -0.03729125112295151, -0.030485667288303375, -0.0063628023490309715, 0.005030971951782703, -0.03784908354282379, -0.004316246137022972, -0.01700001209974289, 0.03890896961092949, -0.0190918929874897, -0.0051251063123345375, 0.00581542681902647, -0.0006101317121647298, 0.014238731004297733, -0.01888270489871502, -0.01612142287194729, 0.009657513350248337, -0.004180273972451687, 0.019440539181232452, -0.015549642965197563, -0.012007392011582851, -0.014573431573808193, 0.006962474435567856, 0.013297384604811668, 0.019315026700496674, -0.019328972324728966, -0.026594769209623337, -0.04242333024740219, -0.000310731353238225, -0.028073031455278397, 0.028756380081176758, -0.021532420068979263, 0.023610353469848633, -0.034139484167099, 0.019733402878046036, 0.024614457041025162, -0.026929471641778946, -0.0062477486208081245, 0.02734784595668316, -0.01889665052294731, -0.012627983465790749, 0.00237079756334424, -0.1747138351202011, 0.004849675577133894, 0.026845796033740044, -0.02062593773007393, 0.0173347145318985, -0.01587039791047573, 0.007300661876797676, -0.00041009567212313414, -0.018338816240429878, -0.0012202634243294597, 0.015605426393449306, 0.0036433578934520483, -0.02808697707951069, -0.027264172211289406, -0.0190918929874897, 0.005201808642596006, -0.040164098143577576, 0.031155068427324295, 0.04814113676548004, 0.012516416609287262, 0.02769649401307106, -0.003591060871258378, -0.002761281793937087, 0.029091080650687218, 0.02050042524933815, -0.019384756684303284, -0.007433147635310888, -0.007091473788022995, 0.03681709244847298, -0.01754390262067318, 0.029760481789708138, -0.004361570347100496, 0.007663254160434008, -0.0020639884751290083, 0.0006314862985163927, -0.004134949762374163, -0.022885169833898544, 0.016232989728450775, -0.0027264172676950693, -0.005452834535390139, -0.0019471917767077684, 0.030262533575296402, -0.0032929680310189724, -0.009057841263711452, -0.03776540979743004, 0.024279756471514702, -0.004595163278281689, -0.014503702521324158, 0.019119784235954285, -0.021797390654683113, -0.0024405268486589193, -0.024907320737838745, 0.01815751940011978, -0.007087987381964922, 0.03980150818824768, -0.001433809520676732, -0.009016003459692001, 0.015368346124887466, 0.004643973894417286, -0.01179820392280817, 0.013011494651436806, -0.03427894413471222, 0.016442177817225456, -0.010075889527797699, -0.02467023953795433, 0.0032615899108350277, -0.012558254413306713, 0.009253083728253841, -0.06125025078654289, -0.011282207444310188, 0.01815751940011978, -0.02850535325706005, 0.018645625561475754, -0.0325496569275856, 0.008660383522510529, 0.017306821420788765, 0.022424954921007156, 0.002757795387879014, 0.019914699718356133, -0.02473996952176094, -0.028463516384363174, 0.03305170685052872, -0.007781794294714928, -0.015703046694397926, 0.03140609338879585, 0.0008171406807377934, 0.016651365906000137, -0.01659558340907097, -0.023038573563098907, -0.023610353469848633, 0.017125526443123817, -0.02467023953795433, 0.01294176559895277, -0.02984415739774704, -0.0003305606369394809, 0.012446686625480652, -0.012579172849655151, -0.02043069712817669, 0.008186224848031998, 0.0020674748811870813, -0.002125001512467861, -0.027445467188954353, -0.010773182846605778, 0.010668588802218437, 0.016288774088025093, 0.004365056753158569, -0.000683783320710063, 0.02284333109855652, 0.028045140206813812, 0.018785083666443825, -0.022564414888620377, -0.012132905423641205, 0.011261288076639175, 0.026803957298398018, 0.0046648927964270115, 0.030011506751179695, -0.013862192630767822, -0.006666124798357487, 0.021741608157753944, 0.019817078486084938, 0.004762514028698206, -0.009392541833221912, -0.0034516023006290197, 0.03174079582095146, -0.026385581120848656, 0.005051890388131142, -0.04225597903132439, 0.01239787694066763, -0.011812150478363037, -0.004340651445090771, -0.0019036110024899244, 0.027278117835521698, -0.008388439193367958, 0.017934385687112808, -0.010689507238566875, 0.03542250394821167, -0.034055810421705246, -0.03051355853676796, -0.009162435308098793, 0.009559892117977142, 0.013520519249141216, 0.024572618305683136, -0.03798854351043701, 0.0014024312840774655, 0.0025294318329542875, 0.03486466780304909, -0.0017162133008241653, -0.05201808735728264, -0.008604600094258785, -0.010382698848843575, -0.003033226355910301, 0.0009099678718484938, -0.030904043465852737, 0.013834300450980663, 0.009762107394635677, 0.020681722089648247, 0.04175392910838127, -0.01216079667210579, 0.0211140438914299, -0.028923729434609413, -0.02359640784561634, 0.0013911003479734063, -0.02365219220519066, -0.013011494651436806, 0.00954594649374485, 0.005728265270590782, 0.014148082584142685, 0.014643161557614803, -0.007893361151218414, -0.0026863228995352983, -0.0399409644305706, -0.024990994483232498, -0.005219241138547659, 0.011261288076639175, 0.0013998164795339108, -0.010912641882896423, -0.01740444265305996, 0.010717399418354034, 0.014008624479174614, -0.03929945454001427, -0.006021128501743078, -0.015270724892616272, -0.011442584916949272, -0.019942590966820717, -0.021546365693211555, 0.03154555335640907, -0.00023533651256002486, -0.010773182846605778, 0.014071380719542503, 0.016093531623482704, 0.012167769484221935, 0.00389786995947361, -0.025730125606060028, -0.014531594701111317, 0.014294514432549477, 0.017153417691588402, 0.00012485909974202514, 0.02414029650390148, 0.0015453764935955405, 0.03439050912857056, -0.039885181933641434, -0.001247283536940813, -0.0301788579672575, -0.0043755159713327885, 0.026971308514475822, -0.017627576366066933, -0.01720920018851757, -0.014726836234331131, 0.008158332668244839, 0.003650330938398838, 0.038155894726514816, 0.017767036333680153, 0.002414378337562084, 0.012091067619621754, 0.009671458974480629, -0.0063349106349051, -0.0065371254459023476, 0.039215780794620514, 0.0353667214512825, -0.023624300956726074, -0.022773602977395058, -0.00790033396333456, 0.00480435136705637, -0.000347339257132262, 0.0012969657545909286, 0.004943809937685728, -0.021420853212475777, -0.021002477034926414, -0.07843156158924103, 0.013241601176559925, 0.00638372078537941, 0.010821993462741375, 0.024084514006972313, -0.006952015217393637, 0.004563785158097744, 0.004281381610780954, 0.018743246793746948, -0.023359328508377075, -0.01061977818608284, 0.006324450951069593, -0.010996316559612751, 0.012892954982817173, -0.011414692737162113, -0.03946680575609207, 0.03433472663164139, -0.010731345042586327, 0.027054984122514725, 0.0358966626226902, 0.01773914322257042, 0.017990170046687126, 0.01645612344145775, 0.012844144366681576, 7.877236203057691e-05, 0.030569342896342278, -0.04242333024740219, 0.004072193522006273, -0.022146038711071014, -0.009727242402732372, 0.00015808948955964297, -0.03285646438598633, -0.00927400216460228, 0.05645287409424782, 0.019008217379450798, 0.0017676387215033174, 0.0021058260463178158, 0.0027856871020048857, 0.03299592435359955, -0.030904043465852737, -0.02775227651000023, -0.017041850835084915, -0.021992633119225502, -0.009992213919758797, -0.011728474870324135, -0.003936221357434988, -0.0020866505801677704, 0.016386395320296288, -0.0010651156771928072, 0.009908539243042469, -0.009455298073589802, -0.005104187410324812, 0.006198938470333815, 0.0018007601611316204, -0.01667925715446472, -0.07251851260662079, 0.026120610535144806, 0.005623671226203442, -0.0038281406741589308, -0.0010625007562339306, 0.016776878386735916, 0.03450207784771919, 0.01747417263686657, -0.011602962389588356, -0.003017537062987685, 0.005714319180697203, -0.04072193428874016, 0.006498774513602257, 0.011707556433975697, -0.012913873419165611, -0.012174742296338081, -0.010319942608475685, -0.035255152732133865, 0.003327832790091634, 0.035534072667360306, 0.005083268973976374, -0.01854800432920456, -0.02062593773007393, -0.010027078911662102, 0.019036108627915382, 0.024823645129799843, -0.016302719712257385, -0.035868771374225616, 0.017055796459317207, 0.049507830291986465, -0.013102143071591854, -0.011623880825936794, 0.0013117832131683826, -0.0008785896934568882, 0.012795333750545979, -0.016288774088025093, 0.003960626665502787, 0.002797889756038785, 0.015981964766979218, -0.0013684382429346442, 0.012335119768977165, 0.0028484435752034187, -0.009511081501841545, 0.012851117178797722, 0.02358246222138405, -0.015521750785410404, 0.026803957298398018, 0.007244878448545933, -0.02057015523314476, -0.01005497109144926, 0.01451764814555645, -0.009671458974480629, -0.037681736052036285, 0.0050414311699569225, -0.0282403826713562, -0.023303546011447906, 0.018729301169514656, -0.0036084933672100306, 0.011456530541181564, 0.006843934766948223, -0.023847434669733047, 0.020918801426887512, -0.021797390654683113, -0.037542276084423065, 0.039550479501485825, 0.014461864717304707, 0.00678815133869648, 0.025520937517285347, -0.013346195220947266, 0.04872686043381691, -0.0026671472005546093, 0.013904030434787273, -0.016832662746310234, 0.023415112867951393, -0.013820354826748371, -0.0007330296793952584, 0.007063582073897123, -0.015954073518514633, -0.015814613550901413, 0.008060711435973644, 0.010292050428688526, 0.018296979367733, 0.019579999148845673, -0.018659571185708046, 0.08010506629943848, 0.002245284616947174, 0.019719457253813744, -0.01220263447612524, -0.019817078486084938, 0.028059085831046104, 0.036259256303310394, -0.005546968895941973, -0.018464328721165657, -0.04914523661136627, 0.011435611173510551, -0.019928645342588425, -0.002454472705721855, -0.029760481789708138, 0.007837577722966671, -0.019510269165039062, -0.013513545505702496, 0.015452021732926369, -0.041921280324459076, -0.006969447247684002, 0.02762676402926445, -0.002287122420966625, 0.03394424170255661, 0.0034620617516338825, 0.01882692240178585, 0.00514253880828619, 0.012823224999010563, 0.008981138467788696, -0.0179483313113451, -0.004933350719511509, 0.0024352972395718098, 0.0067044757306575775, 0.0025799856521189213, -0.028672704473137856, 0.006219856906682253, -0.02245284803211689, -0.007223959546536207, -0.00587818305939436, 0.04864318668842316, 0.030206749215722084, 0.003214522497728467, 0.01808779127895832, -0.02176949940621853, -0.026706336066126823, -0.011595988646149635, 0.009218218736350536, -0.026929471641778946, -0.014155055396258831, -0.04021988436579704], "ed1fe994-028b-48dc-bc10-80d78f76d4af": [-0.019041838124394417, -0.01630725897848606, -0.008475765585899353, -0.015004396438598633, -0.013479617424309254, 0.017438314855098724, -0.0013162849936634302, -0.030151965096592903, -0.0025055052246898413, -0.0081607885658741, 0.012019266374409199, 0.002392757451161742, -0.013057260774075985, 0.014646466821432114, -0.004381054546684027, -0.008203739300370216, -0.0014147155452519655, 0.0034414902329444885, 0.008117836900055408, -0.011095808818936348, 0.024668486788868904, 0.033301740884780884, 0.0041376627050340176, -0.020473556593060493, -0.015935013070702553, 0.003464755602180958, 0.0195715744048357, -0.014932810328900814, 0.013515410013496876, -0.020573776215314865, 0.021046243607997894, 0.02086012065410614, -0.003013764740899205, -0.033301740884780884, 0.009506601840257645, -0.0025770908687263727, 0.005236505530774593, -0.015075982548296452, -0.0009538815938867629, 0.007001097314059734, -0.002770372899249196, -0.017466949298977852, -0.0023140129633247852, 0.009198782965540886, 0.005644544959068298, 0.013651423156261444, 0.022649766877293587, -0.008848012425005436, -0.007860127836465836, 0.039687201380729675, -0.0021869479678571224, 0.05131274461746216, -0.05114093795418739, -0.034819360822439194, 0.032013196498155594, 0.012863978743553162, 0.007061945274472237, 0.009284686297178268, -0.02587112970650196, -0.04217838868498802, 0.05254402011632919, 0.01421695202589035, -0.025327077135443687, 0.015219153836369514, 0.01622135564684868, -0.029922889545559883, 0.01572025567293167, 0.00025390609516762197, -0.01154679898172617, 0.019972454756498337, 0.02120373211801052, 0.03278632462024689, 0.014889858663082123, -0.0008617147686891258, 0.01735241338610649, 0.010623341426253319, -0.006578740663826466, -0.0038226849865168333, 0.01875549554824829, 0.010279729962348938, 0.0059273093938827515, -0.005275878123939037, 0.01610681787133217, 0.02169051580131054, 0.0060203708708286285, -0.014188317582011223, -0.005959522910416126, 0.04375327751040459, 0.005272298585623503, -0.009685566648840904, 0.0003462966124061495, 0.010036337189376354, 0.011761557310819626, 0.004620867315679789, 0.011990631930530071, -0.025012100115418434, -0.025928398594260216, 0.029894255101680756, -0.021633246913552284, -0.018383249640464783, 0.005805613473057747, 0.02599998377263546, -0.010394266806542873, -0.01607818342745304, -0.03871363401412964, -0.03622244670987129, 0.0204019695520401, -0.017194923013448715, -0.004270096775144339, -0.01749558374285698, -0.01773897558450699, 0.01666518859565258, -0.033387646079063416, 0.008805060759186745, 8.758082549320534e-05, 0.005293774418532848, 0.02995152398943901, -0.014947127550840378, -0.03536341339349747, -0.02120373211801052, 0.033616721630096436, 0.04976649209856987, 0.03204183280467987, -0.011045698076486588, 0.04137662798166275, 0.0054620010778307915, 0.011747240088880062, 0.020215846598148346, -0.018497785553336143, -0.015892060473561287, 0.054834768176078796, -0.0014800376957282424, 0.016693823039531708, 0.022205933928489685, 0.0060024745762348175, 0.03564975783228874, -0.019542939960956573, -0.010329839773476124, -0.017066068947315216, -0.011711446568369865, 0.034103505313396454, 0.03275768831372261, -0.0001040791321429424, 0.003459386760368943, -0.004563598427921534, 0.01247741561383009, 0.020573776215314865, 0.015405276790261269, 0.005866461433470249, -0.019414085894823074, 0.015090299770236015, -0.02226320281624794, 0.028033023700118065, 0.0189988873898983, 0.017452633008360863, -0.006041846703737974, 0.0008478450472466648, 0.02236342243850231, 0.002088517416268587, -0.03733918443322182, 0.016479065641760826, 0.01516188494861126, 0.017452633008360863, -0.022664083167910576, 0.017051752656698227, 0.0157488901168108, -0.01002917904406786, -0.006174280308187008, 0.0111244423314929, -0.00879790261387825, -0.006560843903571367, 0.025241173803806305, -0.01275660004466772, 0.013393714092671871, -0.0003107273660134524, 0.029665181413292885, -0.005619490053504705, -0.009578187949955463, -0.027073772624135017, 0.022406375035643578, -0.004441902507096529, 0.02249227650463581, 0.034676190465688705, 0.04043169319629669, 0.004699611570686102, -0.033530816435813904, 0.007004676386713982, -0.00425220001488924, 0.0009494074620306492, -0.011153076775372028, 0.01610681787133217, 0.02703082002699375, 0.028476854786276817, 0.018569372594356537, -0.5337441563606262, -0.029178395867347717, -0.01403798721730709, -0.020602410659193993, 0.0028204829432070255, 0.007208696100860834, -0.00798182375729084, 0.023709237575531006, -0.021046243607997894, 0.020731264725327492, -0.007824334315955639, 0.015233471058309078, -0.0075523084960877895, -0.021418489515781403, -0.019986772909760475, -0.013379397802054882, -0.02239205688238144, -0.016751091927289963, 0.013136005029082298, 0.021074878051877022, -0.0424647331237793, 0.010852416045963764, -0.025484565645456314, 0.034561652690172195, 0.017781928181648254, -0.010372791439294815, -0.004345261957496405, -0.006041846703737974, 0.008826537057757378, 0.044698212295770645, -0.026501085609197617, 0.02448236383497715, -0.006571582052856684, -0.0015820475528016686, 0.05105503648519516, -0.011969155631959438, -0.03587883338332176, 0.029292933642864227, 0.015820475295186043, 0.04375327751040459, -0.01622135564684868, -0.006482099648565054, 0.0410616509616375, -0.018955936655402184, -0.017409680411219597, -0.01889866776764393, 0.012563318945467472, -0.041577067226171494, 0.0029726028442382812, -0.0163215771317482, 0.002403495367616415, -0.016006598249077797, 0.01154679898172617, 0.0003586004313547164, -0.0006465098122134805, -0.020831486210227013, 0.029522009193897247, -0.01971474662423134, -0.008883805014193058, 3.006046790687833e-05, -0.0029296514112502337, 0.01619272120296955, -0.010279729962348938, -0.00603826716542244, -0.009248892776668072, 0.008482924662530422, -0.0007431507110595703, 0.011095808818936348, -0.018497785553336143, -0.011868936009705067, 0.0130071509629488, 0.04326649382710457, 0.004384634084999561, 0.03470482677221298, 0.0049358452670276165, 0.0363369844853878, 0.042264293879270554, -0.025713641196489334, 0.018927302211523056, 0.008833695203065872, 0.025842495262622833, -0.01043006032705307, -0.04111891984939575, 0.002407074673101306, 0.017509901896119118, 0.0048606800846755505, -0.027245579287409782, 0.011095808818936348, 0.004209248814731836, 0.003436121391132474, 0.03287222608923912, -0.008117836900055408, 0.012384354136884212, -0.012599111534655094, 0.02087443694472313, 0.018240077421069145, -0.03169821947813034, 0.006754125934094191, 0.020702630281448364, -0.01207653433084488, -0.04515635967254639, 0.027603507041931152, -0.0018630219856277108, -5.008214066037908e-05, 0.003457596991211176, 0.014009352773427963, -0.031984563916921616, 0.008626095950603485, 0.036193810403347015, -0.018712544813752174, -0.010344156995415688, -0.010401425883173943, 0.005666020791977644, -0.007423453964293003, 0.0024947673082351685, -0.0554647259414196, 0.02286452427506447, 0.022778620943427086, -0.0181684922426939, 0.005218609236180782, 0.03937222436070442, -0.01269933208823204, 0.025484565645456314, 0.003484441665932536, 0.007466405164450407, -0.0011981683783233166, 0.015476862899959087, -0.01653633452951908, 0.0010174140334129333, 0.011775873601436615, -0.011811667121946812, -0.01403798721730709, 0.01773897558450699, -0.025713641196489334, 0.005916571244597435, 0.00480699073523283, -0.01609250158071518, -0.013801753520965576, 0.007502198219299316, -0.030237868428230286, -0.011990631930530071, -0.023007696494460106, 0.015877744182944298, -0.003638351336121559, -0.016951531171798706, -0.005172078497707844, 0.013551203534007072, 0.013085895217955112, -0.00033041348797269166, -0.0016169456066563725, -0.009542395360767841, -0.005705392919480801, -0.008425655774772167, 0.011911886744201183, 0.013272018171846867, 0.0038012091536074877, -0.0005905833677388728, -0.015791840851306915, 0.015104616992175579, -0.03278632462024689, 0.007731272839009762, 0.014274220913648605, -0.01772465929389, -0.01236287783831358, -0.004581495188176632, -0.03625107929110527, -0.017696024850010872, -0.009291844442486763, -0.02438214421272278, -0.032585885375738144, -0.009341955184936523, 0.020659679546952248, -0.023251088336110115, -0.012577636167407036, -0.006900876760482788, 0.00967124942690134, 0.003783312626183033, -0.008669047616422176, -0.004012387711554766, 0.0030513473320752382, 0.012720807455480099, 0.014310013502836227, -0.02737443335354328, 0.0039372225292027, 0.0025914080906659365, -0.0012706490233540535, 0.010122240521013737, 0.036193810403347015, -0.013128846883773804, 0.02459690161049366, -0.035162974148988724, 0.01619272120296955, 0.01095979567617178, 0.025599103420972824, 0.017309460788965225, -0.0007605997961945832, 0.018812764436006546, 0.01677972637116909, -0.024868927896022797, 0.028161877766251564, 0.05245811864733696, 0.014818273484706879, 0.018827080726623535, -0.014861224219202995, 0.02622905932366848, -0.031870026141405106, -0.003171253716573119, -0.022105714306235313, 0.013622789643704891, 0.0012330664321780205, -0.028018705546855927, -0.034561652690172195, -0.015620035119354725, -0.011990631930530071, 0.01806827075779438, 0.022878840565681458, 0.007197958417236805, -0.006915193982422352, -0.001999035244807601, 0.0004670977359637618, 0.008490082807838917, -0.011647019535303116, -0.005422628950327635, -0.005204292014241219, -0.006374720949679613, -0.012312768027186394, -0.012090851552784443, -0.022220250219106674, -0.01322190836071968, -0.018011001870036125, -0.01808258891105652, -0.009635456837713718, -0.0258854478597641, -0.002033038530498743, -0.005902254022657871, -0.0019399768207222223, -0.0006800656556151807, 0.0061957561410963535, 0.018397565931081772, -0.002433919347822666, 0.01960020884871483, 0.018011001870036125, -0.03530614823102951, -0.024897562339901924, 0.0045457021333277225, 0.006224390584975481, 0.054004374891519547, -0.0095638707280159, 0.012742282822728157, 0.007566625252366066, -0.027689410373568535, -0.014410234056413174, -0.02050219103693962, 0.032242272049188614, -0.029207030311226845, 0.01126045547425747, 0.012377195060253143, 0.025727957487106323, 0.02761782519519329, 0.03622244670987129, 0.020258799195289612, 0.02585681341588497, -0.01095979567617178, -0.017051752656698227, 0.03227090463042259, 0.006088377442210913, 0.007559467107057571, -0.015992281958460808, -0.02425329014658928, -0.008167946711182594, 0.013093054294586182, 0.012105168774724007, 0.004617287777364254, 0.006489258259534836, 0.027188310399651527, -0.0004885735106654465, 0.014274220913648605, -0.004438323434442282, 0.02252091094851494, -0.008790743537247181, -0.01276375912129879, -0.018096905201673508, 0.0010245726443827152, 0.0371101088821888, -0.0014567722100764513, -0.03796914219856262, 0.013680057600140572, 0.00035054702311754227, 0.014195475727319717, 0.022878840565681458, 0.007638211362063885, 0.0069939387030899525, 0.012928406707942486, 0.010172350332140923, -0.016407478600740433, 0.027531921863555908, -0.007559467107057571, -0.02355174720287323, 0.008089202456176281, -0.0008227899670600891, 0.01609250158071518, 0.0045278058387339115, -0.013887656852602959, -0.005121968220919371, 0.05423344671726227, -0.0025591945741325617, 0.018583688884973526, -0.015677303075790405, -0.011009905487298965, 0.0020008247811347246, -0.027574872598052025, -0.024167386814951897, -0.015662986785173416, -0.00603826716542244, 4.379041274660267e-05, 0.016951531171798706, -0.02203412726521492, -0.034933898597955704, 0.019843600690364838, -0.008819377981126308, -0.02508368529379368, -0.022707035765051842, -0.041433896869421005, 0.022349106147885323, -0.025613421574234962, 0.059502165764570236, -0.017066068947315216, -0.01748126745223999, -0.04381054639816284, 0.017552852630615234, 5.064839569968171e-06, -0.040517598390579224, 0.02960791252553463, -0.005057541187852621, -0.004975217394530773, -0.046559445559978485, 0.027760997414588928, -0.035506587475538254, 0.010981271043419838, -0.004799832124263048, -0.007151427678763866, -0.02565637230873108, 0.018383249640464783, -0.0009091404499486089, -0.03075328655540943, -0.00939206499606371, 0.03536341339349747, 0.014932810328900814, -0.007895920425653458, -0.02449668198823929, -0.01994382031261921, 0.008175104856491089, 0.006134908180683851, -0.014961444772779942, -0.008869487792253494, 0.009599664248526096, -0.0078100175596773624, 0.022177299484610558, -0.022005492821335793, -0.004051759839057922, 0.010895367711782455, 0.036680594086647034, -0.009843056090176105, -0.01264922134578228, 0.0022370582446455956, 0.03544931858778, 0.014947127550840378, -0.013601313345134258, 0.03124007023870945, 0.0017404311802238226, 0.006632430013269186, -0.013386555947363377, 0.006571582052856684, 0.0028455378487706184, -0.011160235852003098, -0.014403074979782104, -0.022993378341197968, -0.005354622378945351, -0.02236342243850231, 0.02472575567662716, -0.0391431488096714, -0.008790743537247181, 0.007380502298474312, 0.007251647766679525, 0.0045457021333277225, -0.019414085894823074, 0.023165185004472733, -0.006356824189424515, 0.011346358805894852, -0.028247781097888947, -0.03241407871246338, -0.01958589069545269, -0.012327085249125957, -0.02449668198823929, -0.002246006391942501, -0.005626648664474487, -0.012885455042123795, -0.004384634084999561, 0.005866461433470249, 0.019772015511989594, 0.007251647766679525, 0.00664674723520875, -7.812925468897447e-05, 0.029278617352247238, 0.007416295353323221, -0.006389038171619177, -0.02484029345214367, 0.0017135865055024624, 0.015405276790261269, 0.003113984828814864, 0.04515635967254639, -0.015104616992175579, 0.030581479892134666, 0.013493934646248817, 0.025928398594260216, 0.008404180407524109, 0.03155504912137985, -0.011911886744201183, -0.019041838124394417, 0.007802858948707581, -0.016164086759090424, 0.03367399051785469, -0.03138324245810509, 0.011811667121946812, 0.011532481759786606, -0.04300878569483757, 0.02902090735733509, 0.016350209712982178, -0.032013196498155594, 0.0034933900460600853, 0.02820482850074768, 0.02622905932366848, 1.4030549209564924e-05, -0.00522218830883503, 0.0026218320708721876, -0.03373125568032265, 0.01172576379030943, -0.029207030311226845, 0.0014218741562217474, -0.0010657345410436392, -0.0184262003749609, 0.0025645634159445763, -0.011389310471713543, 0.020845802500844002, -0.00846144836395979, -0.03384579345583916, 0.013672899454832077, 0.01340087316930294, -0.005898674950003624, 0.044240061193704605, -0.013773120008409023, -0.010523121803998947, -0.02227751910686493, 0.009449333883821964, -0.010573231615126133, 0.005397574044764042, -0.012312768027186394, -0.008175104856491089, -0.037482354789972305, -0.013472459279000759, -0.003915746696293354, 0.014761004596948624, 0.0025180326774716377, -0.009878848679363728, -0.01463214959949255, -0.021876638755202293, 0.005193554330617189, -0.02761782519519329, 0.026515401899814606, -0.02236342243850231, -0.016822677105665207, 0.0014352964935824275, -0.0037117269821465015, 0.02121804840862751, -0.006725491490215063, -0.0001850047119660303, -0.036079272627830505, -0.0060024745762348175, 0.009234575554728508, -0.03931495547294617, -0.01656496897339821, -0.011854618787765503, 0.005333146546036005, 0.009270369075238705, 0.0060024745762348175, 0.002739948919042945, 0.016350209712982178, 0.001931028557009995, -0.006746967323124409, 0.013608472421765327, -0.02539866417646408, 0.022878840565681458, -0.025957033038139343, 0.017051752656698227, 0.006857925560325384, 0.007681163027882576, -0.00035815301816910505, -0.04100438207387924, 0.002398126292973757, 0.03768279775977135, -0.019557256251573563, 5.043867076892639e-06, 0.023723553866147995, -0.0680924728512764, -0.028161877766251564, -0.010902526788413525, -0.01421695202589035, -0.020359018817543983, -0.03393169865012169, -0.008074885234236717, 0.010515962727367878, 0.003851319197565317, 0.017767610028386116, 0.015705937519669533, 0.011754398234188557, -0.004445482045412064, 0.0006415882962755859, -0.002732790308073163, 0.036766499280929565, 0.004184193443506956, -0.012463098391890526, -0.004087552428245544, -0.020931705832481384, 0.01633589342236519, -0.032356809824705124, 0.01898457109928131, 0.0008254744461737573, -0.006016791798174381, -0.014138207770884037, 0.0002035722864093259, -0.017109021544456482, -0.00011106993770226836, -0.005723289679735899, -0.02260681428015232, 0.008447131142020226, -0.02274998649954796, -0.020845802500844002, -0.009635456837713718, -0.012992833741009235, 0.00803909171372652, -0.01692289672791958, 0.009134355932474136, -0.013042943552136421, -0.0038047884590923786, -0.004424006212502718, -0.025699323043227196, -0.0016786884516477585, -0.0016160508384928107, 0.006636009085923433, 0.025570468977093697, -0.0006912509561516345, 0.00949944369494915, -0.03367399051785469, -0.019900869578123093, 0.0032249430660158396, 0.025226857513189316, 0.03931495547294617, -0.008540193550288677, -0.016364527866244316, 0.03066738322377205, 0.017667390406131744, -0.01692289672791958, -0.03610790893435478, 0.021490074694156647, 0.021046243607997894, 0.005232926458120346, -0.005451263394206762, 0.0035524482373148203, -0.03138324245810509, -0.011160235852003098, -0.00434168241918087, -0.00623512826859951, -0.020373335108160973, -0.003054926637560129, -0.04441186785697937, 0.03862772881984711, -0.03811231255531311, 0.023265404626727104, 0.021876638755202293, -0.0007619420066475868, 0.013501093722879887, -0.019958138465881348, -0.010759354569017887, 0.020788533613085747, 0.02506936900317669, 0.014689418487250805, -0.013171798549592495, 0.007967506535351276, 0.027002187445759773, 0.010573231615126133, 0.0014111362397670746, -0.005558642093092203, -0.01229845080524683, 0.04000217840075493, -0.0444977693259716, 0.013837547041475773, -0.0013762381859123707, 0.0026719423476606607, 0.022993378341197968, 0.017667390406131744, -0.007831493392586708, 0.004892893601208925, -0.03295813128352165, -0.0012661749497056007, 0.020459238439798355, -0.01165417768061161, 0.009256051853299141, -0.011188870295882225, -0.0012509629596024752, -0.014775321818888187, -0.03928631916642189, 0.01025109551846981, -0.015935013070702553, -0.009270369075238705, -0.014889858663082123, 0.001471089432016015, -0.008661889471113682, 0.026887649670243263, 0.0061205909587442875, -0.018970252946019173, -0.014975761994719505, 0.04091847687959671, -0.012205389328300953, 0.01945703662931919, -0.004427585285156965, 0.003634772030636668, -0.018354615196585655, -0.004552860744297504, -0.008103519678115845, -0.010945478454232216, 0.028061658143997192, -0.006922352593392134, 0.010079288855195045, -0.004205669276416302, 0.028648661449551582, 0.02317950129508972, 0.004599391482770443, 0.016708139330148697, 0.0012867558980360627, 0.02213434875011444, 0.011382151395082474, -0.004824887029826641, -0.019643159583210945, -0.00611701188609004, -0.0044705369509756565, -0.011289089918136597, -0.008389863185584545, -0.0008335278835147619, 0.028935004025697708, -0.008346911519765854, -0.022664083167910576, 0.020917387679219246, -0.010000544600188732, -0.013780278153717518, 0.03974447026848793, -0.0008532139472663403, -0.020330384373664856, 0.0014433498727157712, -0.014789639040827751, -0.012398671358823776, -0.0061205909587442875, 0.00434168241918087, 0.004098290577530861, -0.004023125395178795, -0.006711174268275499, 0.031669583171606064, -0.020845802500844002, 0.028405269607901573, -0.010272570885717869, -0.035048436373472214, 0.009807262569665909, -0.008203739300370216, -0.0466739796102047, -0.018483469262719154, -0.018011001870036125, 0.007394819520413876, 0.031154166907072067, -0.056953709572553635, -0.02216298319399357, -0.014560564421117306, -0.060189392417669296, -0.0002487608580850065, 0.0016536334296688437, 0.02564205601811409, 0.012162437662482262, -0.004595812410116196, -0.007523674052208662, 0.027417384088039398, -0.01556276623159647, 0.019256597384810448, 0.014059462584555149, 0.003765416331589222, 0.004517067689448595, -0.011575433425605297, -0.002836589701473713, -0.00039595930138602853, -0.02436782605946064, -0.003158726030960679, 0.002208423800766468, -0.002698787022382021, 0.016278624534606934, -0.0009127196972258389, -0.015262105502188206, -0.029636546969413757, -0.023265404626727104, 0.0024983466137200594, -0.0007216749363578856, 0.009957592934370041, 0.009764311835169792, -0.033387646079063416, -0.001742220832966268, 0.0046280259266495705, 0.018855715170502663, 0.0022621131502091885, 0.005236505530774593, 0.04515635967254639, 0.01322906743735075, -0.013780278153717518, 0.004685294348746538, 0.01025109551846981, -0.009334796108305454, 0.0170231182128191, 0.02995152398943901, 0.01773897558450699, -0.0005131811485625803, 0.012856820598244667, 0.027088088914752007, 0.010107923299074173, -0.007430612109601498, -0.007480722386389971, -0.051341380923986435, -0.01236287783831358, -0.010465852916240692, -0.004939424339681864, 0.02402421459555626, -0.002376650460064411, 0.005025327205657959, -0.014381599612534046, 0.018512103706598282, 0.010873892344534397, -0.0016464748186990619, -0.036795131862163544, 0.01866959221661091, 0.04326649382710457, -0.04286561161279678, 0.0039443811401724815, -0.005530007649213076, -0.034819360822439194, -0.004456219729036093, -0.014975761994719505, 0.01375164370983839, -0.030810553580522537, 0.007602418307214975, -0.024296240881085396, 0.006696857046335936, -0.04174887388944626, 0.0030370301101356745, 0.02259249798953533, -0.0091486731544137, -0.015534131787717342, 0.25266945362091064, -0.011110125109553337, 0.0019507147371768951, -0.0023712816182523966, -0.0064856791868805885, 0.015376643277704716, -0.020258799195289612, -0.0035202347207814455, 0.0071120550855994225, 0.003607927355915308, 0.00623512826859951, -0.004567177966237068, 0.004212827887386084, -0.00592015078291297, -0.002437498653307557, -0.030123330652713776, -0.01960020884871483, -0.019743381068110466, 0.004502750467509031, -0.0027685831300914288, 0.039944909512996674, -0.011088649742305279, -0.0007145163835957646, 0.0007843126077204943, 0.007802858948707581, -0.005351043306291103, 0.006084798369556665, -0.0014111362397670746, 0.006421251688152552, 0.008998342789709568, -0.017066068947315216, -0.018383249640464783, 0.013823229819536209, -0.006829291116446257, 0.00978578720241785, -0.02585681341588497, 0.028963638469576836, 0.013901974074542522, 0.028877737000584602, -0.0021923170424997807, -0.01968611218035221, -0.007008255925029516, 0.016264308243989944, -0.008303959853947163, -0.011682812124490738, -0.0042020902037620544, -0.005980998743325472, 0.008583144284784794, 0.01264922134578228, 0.019442720338702202, -0.032356809824705124, -0.0337885245680809, 0.03459028899669647, 0.01531937438994646, -0.014066621661186218, -0.00539041543379426, 0.03928631916642189, 0.0033323217649012804, 0.02051650732755661, 0.02506936900317669, -0.038398656994104385, 0.024911878630518913, 0.002469712169840932, 0.012341402471065521, -0.02552751824259758, -0.012971358373761177, 0.017653074115514755, -0.01692289672791958, 0.012398671358823776, -0.006832870189100504, 0.009055611677467823, 0.0001650948979659006, -0.003210625844076276, -0.0008854276384226978, -0.04830613732337952, -0.03344491496682167, 0.019786331802606583, 0.01037994958460331, 0.02693060040473938, 0.02902090735733509, -0.008447131142020226, 0.017452633008360863, -0.0042772553861141205, -0.011403627693653107, -0.008933915756642818, -0.03396033123135567, 0.006396196782588959, -0.021962542086839676, -0.025370029732584953, 0.00623512826859951, -0.01159690972417593, -0.008124995045363903, -0.002881330903619528, 0.013608472421765327, -0.009556712582707405, 0.014438868500292301, 0.0009628297993913293, 0.003908588085323572, -0.008053408935666084, 0.01113160140812397, -0.0277323629707098, 0.008003299124538898, 0.005225767847150564, -0.011188870295882225, 0.015777524560689926, -0.009907483123242855, -0.02203412726521492, 2.782341107376851e-05, 0.011611226946115494, -0.011847459711134434, 0.008031933568418026, -0.03837002068758011, 0.012226864695549011, 0.0047175083309412, -0.006675381679087877, -0.0006509839440695941, -0.004960900172591209, -0.02134690433740616, -0.01531937438994646, 0.0035273933317512274, 0.017452633008360863, -0.031297337263822556, 0.003024502657353878, 0.03416077420115471, 0.007226592395454645, -0.014123890548944473, -0.04277971014380455, -0.004670977592468262, 0.009048452600836754, -0.04163433611392975, 0.012985674664378166, -0.022936109453439713, 0.04091847687959671, -0.013536886312067509, -0.01073072012513876, -0.0071693239733576775, 0.0004471879219636321, -0.0038191056810319424, -0.015534131787717342, -0.019328182563185692, -0.008976866491138935, 0.008146471343934536, 0.033158570528030396, -0.009048452600836754, -0.020588094368577003, 0.010644817724823952, -0.01269933208823204, -0.0029260721057653427, 0.010802306234836578, -0.021647565066814423, -0.0410616509616375, -0.028462538495659828, 0.02411011792719364, -0.006482099648565054, -0.0009699884103611112, -0.010637658648192883, -0.013830387964844704, -0.04968058690428734, 0.012634904123842716, 0.0198292825371027, -0.031211435794830322, -0.01282818615436554, 0.01294272392988205, -0.017423998564481735, 0.00038768217200413346, -0.003488020971417427, -0.1823434978723526, 0.01119602844119072, 0.05116957426071167, -0.04856384918093681, 0.01491849310696125, -0.019757697358727455, -7.2480681410525e-05, 0.018011001870036125, -0.021017609164118767, -0.008411338552832603, 0.024181703105568886, -0.0064463065937161446, -0.03218500316143036, 0.008354069665074348, -0.011711446568369865, 0.007223013322800398, -0.03699557110667229, 0.012792393565177917, 0.01158975064754486, 0.006897297687828541, 0.03373125568032265, -0.03908587992191315, -0.007090579718351364, 0.017567170783877373, -0.003420014400035143, 0.016980165615677834, -0.006575161125510931, 0.004921528045088053, 0.015018713660538197, -0.023952629417181015, 0.02170483209192753, -0.025126637890934944, 0.017194923013448715, -0.00019797965069301426, -0.006023949943482876, 0.0049787964671850204, -0.013100212439894676, 0.009077087044715881, -0.005619490053504705, 0.021017609164118767, -0.0101365577429533, 0.0014469291782006621, 0.004406109917908907, 0.003930063918232918, -0.01474668737500906, 0.039114512503147125, -0.011818825267255306, -0.023050647228956223, 0.015405276790261269, -0.024396460503339767, 0.001954294042661786, -0.014582039788365364, 0.022807255387306213, -0.0039050087798386812, 0.04444050043821335, 0.029350202530622482, 0.00318915001116693, 0.018283028155565262, 0.019270913675427437, -0.0095638707280159, 0.010122240521013737, -0.05300217121839523, 0.014159683138132095, -0.005469159688800573, -0.014789639040827751, 0.009542395360767841, 0.010408584028482437, 0.035191610455513, -0.05091186240315437, 0.0041627176105976105, 0.002788269193843007, -0.025957033038139343, 0.003851319197565317, -0.030008792877197266, 0.032013196498155594, 0.004058918450027704, 0.0008836379856802523, -0.011353517882525921, 0.015133250504732132, -0.033530816435813904, -0.04415415972471237, 0.05618058517575264, -0.022649766877293587, -0.00646778242662549, 0.03937222436070442, -0.005859302822500467, -0.004241462331265211, -0.024196021258831024, -0.01609250158071518, 0.01796805113554001, 0.02411011792719364, -0.0410616509616375, 0.016135452315211296, -0.0072444891557097435, 0.0003534551942721009, 0.003683092538267374, 0.0008818483329378068, -0.015892060473561287, -0.002088517416268587, 0.007716955617070198, 0.012427305802702904, -0.026730161160230637, -0.021046243607997894, 0.01544822845607996, -0.020430603995919228, 0.027216944843530655, -0.01474668737500906, 0.01692289672791958, 0.0410616509616375, -0.00012784787395503372, -0.007559467107057571, 0.010344156995415688, 0.015691621229052544, 0.03556385636329651, 0.008282484486699104, 0.017109021544456482, -0.009399223141372204, 0.003079981543123722, 0.023609016090631485, -0.006768443156033754, -0.005426208022981882, -0.022077079862356186, -0.019270913675427437, 0.016937214881181717, 0.0018343876581639051, -0.005451263394206762, -0.04759028181433678, -0.018469151109457016, 0.016278624534606934, 0.007616735529154539, -0.012284133583307266, 0.03287222608923912, -0.006875821854919195, 0.0171519722789526, -0.027818266302347183, 0.042607903480529785, -0.03868499770760536, -0.05724005401134491, 0.0003107273660134524, -0.01305010262876749, 0.012749441899359226, 0.0072623854503035545, -0.017810562625527382, -0.007695479784160852, -0.002514453371986747, 0.027431702241301537, -0.007702638395130634, -0.05781273916363716, -0.006202914752066135, -0.006832870189100504, -0.016235673800110817, 0.024038532748818398, -0.019857916980981827, 0.015620035119354725, 0.005748344585299492, 0.013171798549592495, 0.02890636958181858, 0.0004145268758293241, 0.02670152671635151, -0.021389855071902275, -0.01934249885380268, -0.01586342602968216, -0.012606269679963589, -0.02353743091225624, 0.006127749569714069, -0.009993386454880238, 0.012463098391890526, 0.005143444053828716, 0.004391792695969343, 0.007960347458720207, -0.006238707806915045, -0.03436121344566345, -0.00892675668001175, 0.005469159688800573, 0.01819712668657303, 0.005236505530774593, -0.022005492821335793, -0.00603826716542244, 0.021604612469673157, -0.015577083453536034, 0.02086012065410614, 0.019414085894823074, 0.0027972175739705563, 0.0009869900532066822, -0.015691621229052544, 0.024682804942131042, -0.027589190751314163, -0.0039372225292027, -0.008146471343934536, 0.02309359796345234, 0.019256597384810448, 0.005476318299770355, -0.019528623670339584, -0.021175097674131393, 0.024439413100481033, 0.0077527486719191074, -0.007366185076534748, 0.04071803763508797, -0.008919598534703255, 0.01622135564684868, -0.04129072278738022, 0.004166297148913145, -0.012004949152469635, -0.005351043306291103, 0.04326649382710457, -0.032700419425964355, -0.006124170497059822, -0.02484029345214367, 0.0081607885658741, -0.02751760557293892, 0.04037442430853844, -0.004642343148589134, -0.006890139076858759, -0.03556385636329651, 0.006242286879569292, -0.006202914752066135, -0.0022137926425784826, 0.018011001870036125, 0.018268711864948273, -0.03791187331080437, -0.009227417409420013, -0.021146463230252266, 0.013171798549592495, 0.016937214881181717, -0.007480722386389971, 0.028018705546855927, -0.013987877406179905, -0.003090719459578395, -0.06425546854734421, 0.030466942116618156, 0.009012660011649132, 0.009635456837713718, 0.0005592645611613989, 0.009936117567121983, 0.024181703105568886, -0.010573231615126133, 0.019399767741560936, -0.0157488901168108, 0.00035927153658121824, -0.02179073542356491, -0.008447131142020226, -0.01491849310696125, -0.004466957878321409, -0.03547795116901398, 0.02355174720287323, -0.010014861822128296, 0.028634345158934593, 0.020330384373664856, -0.0025180326774716377, 0.020817168056964874, 0.022535229101777077, -0.004241462331265211, -0.005297353491187096, 0.032013196498155594, -0.0031533571891486645, 0.009893165901303291, -0.00815362948924303, 0.00874779187142849, -0.008261008188128471, -0.025670690461993217, 0.006478520575910807, 0.06958145648241043, 0.00961398147046566, -0.016722457483410835, 0.013737326487898827, 0.02191959135234356, 0.03172685205936432, -0.01736672967672348, -0.022792937234044075, -0.022091396152973175, 0.0026039357762783766, 0.004606550093740225, 0.016736773774027824, 0.011217504739761353, -0.018354615196585655, 0.010336997918784618, 0.00116595474537462, 0.020831486210227013, -0.020029723644256592, 0.009707042947411537, 0.012083693407475948, -0.01666518859565258, -0.008303959853947163, -0.0430946871638298, 0.02831936627626419, 0.0053438846953213215, -0.0028956481255590916, -0.027546240016818047, 0.007394819520413876, 0.021303951740264893, 0.03112553246319294, -0.008146471343934536, 0.0013735536485910416, 0.001618735259398818, -0.036193810403347015, -0.005215030163526535, 0.003976594656705856, -0.0365946926176548, -0.011181711219251156, 0.005383256822824478, -0.005261560901999474, 0.005504952743649483, 0.011711446568369865, 0.0001795239222701639, -0.024095799773931503, 0.010981271043419838, -0.028705930337309837, 0.007359026465564966, 0.011790190823376179, -0.03252861648797989, -0.015262105502188206, 0.03902861103415489, 0.03862772881984711, -0.004957320634275675, -0.0016321575967594981, 0.0027453177608549595, -0.02353743091225624, 0.000420119526097551, -0.02309359796345234, 0.02668720856308937, 0.014474661089479923, -0.0017404311802238226, 0.033387646079063416, 0.039343588054180145, -0.003998070489615202, -0.023637650534510612, 0.012670697644352913, 0.0081607885658741, 0.006675381679087877, 0.021017609164118767, -0.0018558634910732508, -0.017982367426156998, -0.0013207591837272048, 0.017567170783877373, -0.02146144025027752, -0.031784120947122574, -0.01948567107319832, -0.018912984058260918, -0.013214750215411186, 0.00961398147046566, -0.005079017020761967, 0.006256604101508856, -0.011410785838961601, -0.008819377981126308, -0.005472739227116108, -0.004756880458444357, -0.02924998290836811, 0.025942716747522354, 0.02368060313165188, 0.022334787994623184, 0.02657267078757286, -0.0185550544410944, 0.035162974148988724, 0.00361508596688509, 0.009871690534055233, -0.00408039428293705, 0.022692717611789703, -0.0029296514112502337, 0.011732922866940498, 0.01527642272412777, -0.0043703168630599976, -0.03138324245810509, -0.028476854786276817, 0.009241734631359577, 0.019857916980981827, 0.00765968719497323, -0.0258854478597641, 0.09472241252660751, -0.007287440821528435, -0.013250542804598808, 0.010322680696845055, -0.014052304439246655, 0.006840028800070286, 0.005730448290705681, 0.007155006751418114, -0.027102407068014145, -0.04151979833841324, -0.0016795832198113203, -0.018340297043323517, 5.567478365264833e-05, -0.015061665326356888, 0.011639861389994621, -0.012921247631311417, -0.02515527233481407, 0.021361220628023148, 0.0034182248637080193, -0.013028626330196857, 0.045986756682395935, -0.00034137506736442447, 0.003017344046384096, 0.00737334368750453, 0.0018093326361849904, -0.012921247631311417, 0.01207653433084488, -0.008468607440590858, -0.01183314248919487, 0.02552751824259758, -0.004159138537943363, 0.028033023700118065, -0.025942716747522354, -0.017452633008360863, 0.0004724666941910982, -0.022062761709094048, -0.01131056621670723, 0.024453729391098022, 0.04515635967254639, 0.0422070249915123, 0.0012357509694993496, 0.025685006752610207, -0.015892060473561287, -0.013365080580115318, -0.012906930409371853, -0.0002030130272032693, 0.007394819520413876, -0.00938490591943264, -0.03324447199702263], "4896d728-623a-4b34-ae7d-26404e9a13d6": [-0.01870374195277691, 0.003551666857674718, 0.005380428396165371, -0.028851361945271492, -0.011841323226690292, -0.0011005421401932836, -0.017608674243092537, -0.02185753546655178, -0.0032505234703421593, -0.015024317428469658, 0.003956841770559549, 0.007534060161560774, -0.012074937112629414, -0.00407364871352911, 0.007384400814771652, 0.010242525488138199, -0.008366310968995094, 0.015330935828387737, 0.017769284546375275, -0.0011242686305195093, 0.017477266490459442, 0.03580138459801674, -0.012067636474967003, 0.00021330990421120077, -0.0023744700010865927, 0.018557732924818993, 0.018908154219388962, -0.022791991010308266, -0.0049789040349423885, 0.005241720005869865, 0.0298004187643528, 0.0016635890351608396, -0.003858285490423441, -0.026821836829185486, -0.01252756454050541, -0.01352772582322359, 0.003239572746679187, -0.03241397812962532, 0.01790069229900837, 0.008205700665712357, 0.005811154842376709, -0.005026356782764196, 0.0018159858882427216, -0.01127918902784586, -0.019550593569874763, 0.009322669357061386, 0.008899243548512459, 0.027624886482954025, -0.016265392303466797, 0.009402974508702755, -0.0005311074201017618, 0.019652800634503365, -0.035509366542100906, -0.022149551659822464, 0.00659960275515914, -0.003967792261391878, 0.024573300033807755, 0.0034074829891324043, -0.007563261780887842, -0.02944999746978283, 0.040240056812763214, 0.010359332896769047, -0.024325085803866386, 0.0006123248604126275, 0.012804982252418995, -0.013396318070590496, -0.01899576000869274, 0.00805969163775444, -0.011804820969700813, 0.00908905453979969, 0.006508347578346729, 0.03767029941082001, 0.006884320173412561, -0.018338719382882118, 0.018382523208856583, -0.013009394519031048, -0.0037414785474538803, -0.010103817097842693, 0.031099898740649223, -0.0012136991135776043, 0.00949788000434637, -0.003619195893406868, 0.01968200132250786, 0.0038181331474334, 0.013578829355537891, 0.013235707767307758, -0.03758269548416138, 0.02641301229596138, 0.02525954134762287, -0.0026007837150245905, 0.0015942348400130868, 0.008563422597944736, 0.004559128545224667, 0.007643566466867924, 0.015345537103712559, -0.015184926800429821, -0.028763756155967712, 0.007577862590551376, -0.027522681280970573, -0.03323162719607353, -0.029508402571082115, 0.04073648899793625, -0.01388544775545597, -0.00984100066125393, -0.03749508783221245, -0.03188834711909294, 0.020353643223643303, 0.0036903752479702234, -0.01021332386881113, 0.002485801698639989, -0.008672929368913174, 0.030574265867471695, -0.009943206794559956, -0.003283375408500433, -0.01222094614058733, -0.0210252832621336, 0.026924043893814087, -0.020923078060150146, -0.020441247150301933, -0.010023511946201324, 0.020178431645035744, 0.03714466840028763, 0.042839016765356064, -0.009074454195797443, 0.030778679996728897, 0.010498041287064552, 0.005197917576879263, -0.004504375159740448, -0.032939612865448, -0.002149981213733554, 0.0654119923710823, 0.013593429699540138, 0.025989586487412453, 0.0028836759738624096, -0.006829566787928343, 0.020835472270846367, -0.00459198048338294, 0.013732138089835644, -0.02058725617825985, 0.009987009689211845, 0.04304342716932297, 0.011023673228919506, -0.005478984676301479, 0.008899243548512459, -0.012812281958758831, 0.00461023161187768, 0.007380750495940447, 0.013943850994110107, -0.01015491969883442, -0.007223790977150202, 0.002911052666604519, -0.012761179357767105, 0.0022740887943655252, 0.019725805148482323, -0.005048258230090141, -0.01665961742401123, -0.0013222931884229183, 0.029698213562369347, -0.013739438727498055, -0.021594718098640442, 0.011782919056713581, 0.00022973590239416808, 0.030603468418121338, -0.011016372591257095, 0.000520613044500351, 0.02963981032371521, -0.01917096972465515, -0.035304956138134, 0.025463955476880074, -0.006997477263212204, -0.012688174843788147, 0.021200494840741158, 0.0016690643969923258, 0.001860701129771769, -0.006146975327283144, 0.017959097400307655, -0.009256965480744839, -0.013279510661959648, 0.001309517421759665, -0.005070159677416086, -0.026267003268003464, 0.02613559551537037, 0.012950990349054337, 0.017243653535842896, -0.01744806580245495, 0.008337109349668026, -0.0037104515358805656, 0.007406302262097597, 0.010279027745127678, 0.0025369049981236458, 0.01924397423863411, 0.002498577581718564, 0.01258596871048212, -0.012118740007281303, -0.5176892280578613, -0.019901014864444733, -0.019039561972022057, -0.0023616941180080175, 0.03235557675361633, 0.018119705840945244, -0.015111922286450863, 0.0025569810532033443, -0.03241397812962532, 0.010439637117087841, -0.022631382569670677, 0.011812121607363224, 0.006413441617041826, -0.03851715102791786, 0.002206559758633375, -0.015184926800429821, -0.033698856830596924, -0.020397445186972618, -0.015126523561775684, 0.019316978752613068, -0.05425691232085228, 0.015914971008896828, -0.005168715491890907, 0.0059133609756827354, 0.014673896133899689, 0.006300284527242184, 0.00948327872902155, -0.012804982252418995, -0.0030260346829891205, 0.048942189663648605, -0.03848794847726822, 0.001983896130695939, -0.01639680191874504, 0.0031008643563836813, 0.0546073354780674, -0.021171292290091515, -0.028340330347418785, 0.03626861423254013, 0.016951635479927063, 0.03948080912232399, -0.036297816783189774, -0.007804176304489374, 0.03936400264501572, -0.0005187879432924092, 0.014352676458656788, -0.010943368077278137, 0.02255837805569172, -0.02266058325767517, 0.020485050976276398, -0.019565194845199585, 0.020806269720196724, -0.015214129351079464, 0.011023673228919506, 0.002235761610791087, 0.020120028406381607, -0.0032852005679160357, 0.02470470778644085, -0.019039561972022057, 0.007362499367445707, -0.018338719382882118, -0.0035553171765059233, 0.00332535314373672, -0.022967202588915825, 0.010016211308538914, -0.027960706502199173, 0.010957969352602959, -0.022003542631864548, -0.00819840095937252, -0.025230340659618378, 0.014221268706023693, -0.021185893565416336, 0.04170014709234238, 0.007417252752929926, 0.02705545164644718, 0.0126224709674716, 0.03419528901576996, 0.05130753293633461, -0.011520103551447392, 0.0034512856509536505, -0.004292662255465984, 0.02114209160208702, -0.0152725325897336, -0.02962520904839039, 0.0018926406046375632, 0.010957969352602959, -0.01392925065010786, -0.012104138731956482, -0.007121584843844175, 0.003182994434610009, 0.011023673228919506, 0.03142111748456955, -0.0022430620156228542, 0.008169198408722878, -0.02131730131804943, -0.011060175485908985, 0.0128925871104002, -0.03153792396187782, -0.009548982605338097, -0.004894949030131102, -0.010373933240771294, -0.04304342716932297, 0.009351870976388454, 0.0018433625809848309, -0.004712437745183706, 0.004654034040868282, 0.007862580008804798, -0.03258918970823288, -0.010337430983781815, 0.02604798972606659, -0.004639433231204748, -0.014002255164086819, -0.014513285830616951, 0.01711224392056465, -0.005643244367092848, -0.010359332896769047, -0.04251779615879059, 0.028968168422579765, 0.01880594901740551, 0.005511836614459753, -0.011972730979323387, 0.005778302904218435, 0.02819432131946087, 0.03051586262881756, -0.004778141621500254, 0.02845713682472706, 0.009651189669966698, -0.0015276182675734162, -0.006110473070293665, 0.009643889032304287, 0.014170165173709393, -0.025449354201555252, -0.007804176304489374, 0.008030490018427372, -0.030691074207425117, 0.013841644860804081, 0.00846851710230112, -0.006690858397632837, -0.011826721951365471, 0.02688024193048477, -0.02463170327246189, 0.013754040002822876, -0.014469483867287636, 0.015009716153144836, -0.030369853600859642, -0.015155725181102753, -0.015725160017609596, 0.002582532586529851, -0.01257866807281971, 0.001575071131810546, -0.003982393071055412, 0.009235063567757607, -0.008943046443164349, 0.0016754523385316133, 0.0003723227418959141, -0.0036429225001484156, 0.006347737740725279, -0.008614526130259037, -0.036122605204582214, 0.035217348486185074, -0.02525954134762287, -0.0008030490134842694, 0.0038181331474334, 0.014768801629543304, -0.0105637451633811, -0.01388544775545597, -0.04380267485976219, 0.0016152235912159085, -0.01463739387691021, -0.014498685486614704, -0.021711526438593864, -0.0029785819351673126, 0.020280638709664345, -0.02121509611606598, -0.02212035097181797, -0.0016316496767103672, 0.014513285830616951, 0.010899565182626247, 0.012702775187790394, -0.00810349453240633, -0.002901927102357149, 0.001722905202768743, 0.01979880966246128, -0.006712759844958782, 0.005446132738143206, 0.024222878739237785, 0.00660690339282155, -0.003336303634569049, 0.006530248560011387, 0.010133018717169762, 0.003960491623729467, -0.04797852784395218, 0.016995437443256378, -0.00012901256559416652, 0.02032444067299366, 0.005548338871449232, -0.007906382903456688, 0.012921788729727268, 0.013958452269434929, -0.01629459485411644, 0.009118257090449333, 0.042225778102874756, 0.0011324816150590777, 0.003953191451728344, -0.02749347873032093, 0.027172258123755455, -0.02553695999085903, -0.009870202280580997, 0.0036885503213852644, -0.00097369693685323, 0.006796714849770069, -0.02705545164644718, -0.021112889051437378, -0.019375383853912354, 0.014250470325350761, 0.018105104565620422, 0.029070375487208366, -0.01944838836789131, -0.0035607924219220877, -0.0032578238751739264, 0.022704387083649635, 0.029172580689191818, -0.013053197413682938, 0.01995941810309887, -0.03320242837071419, -0.008651028387248516, -0.014221268706023693, 0.01284878421574831, 0.013009394519031048, -0.0197112038731575, -0.020003221929073334, -0.009432176128029823, -0.025390950962901115, -0.023755650967359543, 0.0016416877042502165, 0.009388373233377934, 0.002162757096812129, 0.031917549669742584, -0.0170100387185812, 0.00917666032910347, 0.002505877986550331, 0.022324763238430023, 0.022850394248962402, -0.009673090651631355, -0.005982715170830488, 0.04289741814136505, 0.01217714324593544, 0.040794890373945236, 0.014922111295163631, 0.003814482828602195, 0.020368244498968124, -0.008680230006575584, 0.008475817739963531, -0.015053519047796726, 0.028603145852684975, -0.02346363291144371, -0.017331257462501526, 0.004573729354888201, 0.02893896773457527, 0.0070157283917069435, 0.026807237416505814, 0.04789092391729355, 0.016163187101483345, -0.016893232241272926, -0.0031245907302945852, 0.02874915488064289, 0.0010813785484060645, 0.0054935854859650135, -0.0023178914561867714, -0.01285608485341072, -0.00290922774001956, 0.018484728410840034, 0.012710075825452805, -0.0032048956491053104, -0.011753717437386513, 0.02013462968170643, -0.021638521924614906, 0.04351065680384636, 0.02819432131946087, 0.028442537412047386, -0.0012912662932649255, -0.005413280334323645, -0.0257851742208004, 0.007891781628131866, 0.0340200774371624, -0.021915938705205917, -0.00890654418617487, 0.008928445167839527, 0.004066348075866699, -0.020660260692238808, -0.006212679203599691, 0.000774303509388119, 0.004730688873678446, 0.019112566486001015, 0.02042664773762226, -0.020631060004234314, 0.006793064530938864, 0.006672607269138098, -0.009074454195797443, -0.013491223566234112, 0.007329647429287434, 0.010797359049320221, -0.0038984380662441254, -0.020923078060150146, 0.016060980036854744, 0.049029793590307236, -0.007461055647581816, -0.014126362279057503, -0.013228408060967922, -0.01154930517077446, -0.0025971336290240288, -0.025566160678863525, -0.02688024193048477, 0.003268774598836899, 0.010534543544054031, -0.014578989706933498, 0.012191744521260262, -0.002998657990247011, -0.012710075825452805, 0.02131730131804943, -0.03016544133424759, -0.015111922286450863, -0.02542015165090561, -0.040327660739421844, 0.0011881475802510977, -0.05002265423536301, 0.0526508130133152, -0.016718020662665367, -0.003438510000705719, -0.033348437398672104, 0.014856407418847084, -0.0037232274189591408, -0.007796876132488251, 0.007150786463171244, -0.017754683271050453, -0.016426002606749535, -0.025755971670150757, 0.01683482713997364, -0.023887058719992638, 0.013418219052255154, 0.00662515452131629, 0.0037049762904644012, -0.03136271610856056, 0.01160040870308876, -0.020616458728909492, -0.013235707767307758, 0.010804659686982632, 0.01585656777024269, 0.059308819472789764, -0.03372805938124657, -0.02650061808526516, -0.014586290344595909, 0.007490257266908884, 0.019141769036650658, -0.0029877074994146824, 0.0028982770163565874, 0.01016222033649683, -0.002880025887861848, 0.03329003229737282, -0.02058725617825985, 0.006449943874031305, 0.024646304547786713, 0.0005096623790450394, 0.0028088465332984924, 0.013075098395347595, -0.006347737740725279, 0.023697247728705406, 0.009775296784937382, 0.006136024836450815, 0.04316023364663124, -0.004259810317307711, 0.012593269348144531, 0.016864029690623283, 0.01249106228351593, 0.017754683271050453, 0.015155725181102753, -0.0169078316539526, -0.02077706903219223, -0.010067314840853214, 0.00014304311480373144, 0.031187504529953003, -0.051511943340301514, -0.010819260962307453, 0.0048474958166480064, 0.0011990981874987483, 0.016075581312179565, -0.011410596780478954, 0.026369210332632065, -0.03428289294242859, 0.004402168560773134, -0.035129744559526443, 0.006566750817000866, -0.0017101294361054897, -0.019097965210676193, -0.0372614748775959, 0.012345054186880589, -0.017389662563800812, -0.02292339876294136, 0.0013003918575122952, 0.022003542631864548, 0.015024317428469658, 0.023230018094182014, 0.006125073879957199, -0.007311396300792694, 0.02669042907655239, -0.012447260320186615, -0.02505512908101082, -0.020806269720196724, -0.014155563898384571, 0.009074454195797443, -0.0015422191936522722, 0.012710075825452805, -0.01800289936363697, 0.01665961742401123, -0.0020112728234380484, -0.001819636090658605, 0.007249342743307352, 0.01709764450788498, -0.003989693708717823, -0.006763862911611795, -0.008432014845311642, -0.015914971008896828, 0.02962520904839039, -0.0047270385548472404, 0.007428203709423542, 0.013381716795265675, -0.03124590776860714, 0.011074775829911232, 0.010300928726792336, -0.03740748390555382, -0.007026678882539272, 0.03734907880425453, -0.009512480348348618, 0.009366472251713276, 0.004143002908676863, 0.014016855508089066, -0.028092116117477417, 0.010673251934349537, -0.004818294197320938, -0.015068120323121548, 0.009724194183945656, -0.017506469041109085, -0.006278383545577526, -0.0026591874193400145, -0.00976069550961256, 0.011030973866581917, -0.03463331609964371, -0.0006374201620928943, 0.013710237108170986, -0.027070052921772003, 0.03072027489542961, -0.00592796178534627, -0.024120673537254333, -0.005146814044564962, 0.035334158688783646, -0.003498738631606102, -0.006511997431516647, -0.012607869692146778, -0.005179666448384523, -0.02517193742096424, -0.008979548700153828, -0.038984380662441254, 0.02577057294547558, 0.0009974234271794558, -0.0017183424206450582, 0.010395835153758526, -0.014965914189815521, -0.006636105012148619, 0.014484084211289883, 0.01454248744994402, -0.025493156164884567, -0.02049965225160122, 0.010373933240771294, -0.010191421955823898, 0.025741372257471085, 0.014841806143522263, 0.0031428418587893248, -0.04975983873009682, -0.01356422808021307, 0.007012078072875738, -0.028223523870110512, -0.008256804198026657, -0.01604638062417507, 0.0087751355022192, 0.01357152871787548, 0.02543475292623043, 0.010235224850475788, 0.0064462935552001, -0.014294273220002651, -0.021185893565416336, 0.011666112579405308, -0.020996082574129105, -0.017754683271050453, -0.027960706502199173, 0.000768371915910393, 0.023317623883485794, 0.009738794527947903, -4.753844768856652e-05, -0.02344903163611889, -0.0036283214576542377, 0.04850416257977486, -0.0305450651794672, 0.0013104300014674664, 0.033173225820064545, -0.0578487329185009, -0.008037790656089783, 0.00030730312573723495, 0.002222985727712512, 0.008161898702383041, -0.01899576000869274, -0.008176499046385288, -0.0029658060520887375, 0.00711793452501297, 0.022003542631864548, 0.013410918414592743, 0.008380911312997341, -0.006712759844958782, 0.012155242264270782, -0.0002557437401264906, 0.009081754833459854, 0.002529604360461235, -0.0068952711299061775, -0.003319877665489912, -0.013177304528653622, -0.01082656066864729, -0.015914971008896828, 0.017608674243092537, -0.0018524881452322006, -0.008118095807731152, -0.001763970241881907, -0.01531633548438549, -0.04228418320417404, -0.0012821407290175557, 0.006793064530938864, -0.0043693166226148605, -0.011841323226690292, -0.02327382192015648, -0.046606045216321945, -0.00783337838947773, 0.01397305354475975, 0.04324784129858017, -0.007862580008804798, 0.007048580329865217, -0.0005607655039057136, -0.02866154909133911, -0.01620698906481266, -0.014484084211289883, 0.014067959040403366, 0.003274249844253063, 0.015914971008896828, 0.028880562633275986, -0.005515486933290958, -0.026544420048594475, -0.050373077392578125, -0.0016635890351608396, -0.011286488734185696, 0.012702775187790394, 0.026033390313386917, 0.02336142584681511, -0.007187288720160723, 0.026836438104510307, 0.01825111359357834, -0.026383811607956886, -0.04059047996997833, 0.01320650614798069, -0.01252756454050541, 0.03311482071876526, -0.009921305812895298, 0.02229556068778038, -0.04310183227062225, -0.005628643557429314, 0.01584196649491787, -0.006084921304136515, -0.008030490018427372, -0.009819099679589272, -0.011958129703998566, 0.026252401992678642, -0.025566160678863525, 0.025390950962901115, 0.023127812892198563, -0.026734232902526855, -0.023069407790899277, -0.034779325127601624, -0.01575436256825924, -0.010797359049320221, 0.006789414677768946, 0.048562563955783844, 0.0047635408118367195, -0.010680552572011948, 0.029245585203170776, 0.014038757421076298, 0.019477589055895805, 0.005033657420426607, -0.011892425827682018, 0.04967223107814789, -0.03796231746673584, 0.008373611606657505, -0.02928938902914524, 0.010498041287064552, 0.023171614855527878, 0.02042664773762226, -0.0024657256435602903, 0.00339288217946887, -0.0016754523385316133, 0.004989854525774717, 0.02445649355649948, -0.024850716814398766, 0.029844222590327263, -0.02049965225160122, -0.00036798810469917953, -0.019755005836486816, -0.03355284780263901, 0.000271257187705487, 0.017652478069067, -0.014929411932826042, -0.011417897418141365, -0.014082559384405613, -0.03007783554494381, 0.033085621893405914, 0.003887487342581153, -0.032530784606933594, -0.00984830129891634, 0.04596360772848129, -0.030369853600859642, 0.0067164101637899876, -0.018382523208856583, -0.01222824677824974, -0.03492533415555954, 0.0013159053632989526, 0.010936067439615726, -0.016893232241272926, 0.017214450985193253, -0.009475979022681713, -0.007891781628131866, -0.005504535976797342, 0.015389339998364449, 0.04599280655384064, -0.010644050315022469, 0.0038765366189181805, 0.009527081623673439, -0.005511836614459753, 0.00984100066125393, 0.0013898223405703902, -0.016411401331424713, 0.012096839025616646, -0.011366793885827065, 0.013126200996339321, -0.0052198185585439205, -0.008950346149504185, 0.028062913566827774, -0.031187504529953003, -0.025361748412251472, 0.036765046417713165, -0.0038546354044228792, -0.017404261976480484, 0.01249106228351593, -0.03279360383749008, -0.014060658402740955, 0.0025898332241922617, -0.036765046417713165, -0.013082399033010006, -0.01871834322810173, -0.022412369027733803, 0.009052552282810211, -0.003737828228622675, -0.016586612910032272, 0.03296881169080734, -0.013308712281286716, 0.0211274903267622, -0.035071343183517456, -0.027332868427038193, 0.009767996147274971, 0.0046065812930464745, -0.01419206615537405, -0.023084009066224098, -0.023624243214726448, 0.029961029067635536, 0.0348961316049099, -0.037290677428245544, -0.04622642323374748, 0.004989854525774717, -0.03349444642663002, -0.014002255164086819, -0.01807590387761593, 0.022339364513754845, -0.0008865479030646384, 0.013425519689917564, 0.022061947733163834, 0.03691105544567108, -0.01024982612580061, 0.009030651301145554, -0.00993590708822012, -0.01772548258304596, -0.008322508074343204, -0.008950346149504185, 0.020645661279559135, -0.018046701326966286, -0.010111117735505104, -0.01486370712518692, 0.031099898740649223, -0.0017995599191635847, -0.012921788729727268, 0.0149002093821764, -0.004752590321004391, -0.02058725617825985, -0.005186966620385647, -0.004263460170477629, 0.01790069229900837, -0.011797520332038403, -0.018017500638961792, -0.008475817739963531, 0.002179183065891266, -0.020193032920360565, 0.016090182587504387, -0.02704085037112236, 0.0025478554889559746, -0.001285791047848761, -0.002783294999971986, -0.002336142584681511, -0.008066992275416851, -0.007972086779773235, -0.007066831458359957, -0.013914649374783039, 0.02060185745358467, 0.006475495174527168, -0.006081271450966597, 0.020879274234175682, 0.013549627736210823, 0.004267110489308834, 0.009680391289293766, -0.015097321942448616, -0.0030552365351468325, 0.02587278001010418, 0.02248537354171276, 0.002263138070702553, -0.007033979520201683, 0.004292662255465984, 0.004438670817762613, -0.013082399033010006, -0.0066215042024850845, 0.011381395161151886, -0.018032100051641464, -0.06184937804937363, 0.01585656777024269, 0.0074501046910882, -0.014155563898384571, -0.015637554228305817, 0.008432014845311642, -0.02004702389240265, 0.010308229364454746, -0.0042488593608140945, -0.004321863874793053, -0.047598905861377716, 0.01852853037416935, -0.02121509611606598, 0.00040289334720000625, -0.01962359808385372, -0.001575071131810546, 0.001432712422683835, -0.010315530002117157, -0.036648236215114594, 0.29739096760749817, -0.026296205818653107, 0.00011886038555530831, 0.03212196007370949, -0.02060185745358467, 0.008373611606657505, 0.01592957228422165, -0.020163830369710922, 0.0006853293161839247, -0.014177465811371803, 0.020616458728909492, -0.021273499354720116, 0.00402984581887722, 0.005581190809607506, -0.007738472428172827, -0.016893232241272926, -0.03448730707168579, -0.025376349687576294, -0.005628643557429314, -0.0010229749605059624, 0.01630919612944126, 0.008570723235607147, -0.01163691096007824, -0.01464469451457262, 0.008702130988240242, -0.0009782597189769149, -0.023317623883485794, 0.0020167480688542128, 0.028077514842152596, 0.008680230006575584, -0.01772548258304596, -0.009461377747356892, 0.008950346149504185, 0.002191958948969841, -0.040970101952552795, -0.007344248238950968, 0.035421762615442276, 0.033903270959854126, 0.023945461958646774, 0.015155725181102753, -0.0016389500815421343, -0.006723710335791111, -0.0020112728234380484, 0.010541843250393867, -0.019462987780570984, 0.005446132738143206, -0.003482312662526965, -0.0030552365351468325, -0.005402329843491316, 0.023127812892198563, -0.01388544775545597, -0.015549949370324612, 0.0379331149160862, 0.01807590387761593, 0.01464469451457262, -0.005424231290817261, 0.03816673159599304, -0.008344409056007862, 0.004310913383960724, 0.024485694244503975, -0.023478234186768532, 0.03311482071876526, -0.013389017432928085, 0.019725805148482323, -0.020528852939605713, 0.015403940342366695, -7.095120963640511e-05, 0.000932631955947727, -0.007665467914193869, -0.011417897418141365, -0.009563583880662918, -0.01361533161252737, 0.02390165999531746, 0.011739117093384266, -0.0578487329185009, -0.027697890996932983, 0.007570562418550253, 0.0019327930640429258, 0.00015581888146698475, 0.01863073743879795, -0.017302056774497032, -0.010899565182626247, -0.02175532840192318, 0.005405980162322521, -0.013170003890991211, -0.0027321919333189726, 0.008789736777544022, 0.010176821611821651, 0.0034494607243686914, 0.012315851636230946, -0.0008295131265185773, -0.013754040002822876, -0.02739127166569233, 0.01959439553320408, 0.0014217618154361844, 0.01719984970986843, 0.017886092886328697, 0.014776102267205715, -0.002148156054317951, -0.012520264834165573, -0.039714425802230835, 0.0257851742208004, 0.014389178715646267, 0.002664662664756179, -0.0012429008493199944, -0.022675184532999992, -0.030837083235383034, 0.005205217748880386, -0.002582532586529851, -0.03366965427994728, 0.003847334999591112, -0.06961704790592194, 0.012447260320186615, 0.0069208224304020405, -0.006771163549274206, -0.023974664509296417, -0.004445971455425024, -0.011841323226690292, 0.025142734870314598, 0.00984830129891634, -0.0007907295366749167, -0.00981179904192686, 0.02049965225160122, 0.02103988453745842, -0.018499329686164856, -0.007242042105644941, -0.036122605204582214, -0.006081271450966597, 0.01016952097415924, -0.04792012646794319, 0.011578506790101528, -0.004617531783878803, 0.03466251492500305, -0.012089538387954235, -0.008833539672195911, 0.010541843250393867, -0.019901014864444733, 0.028953567147254944, -0.013053197413682938, -0.01807590387761593, 0.01610478386282921, -0.013600730337202549, 0.02158011682331562, -0.00980449840426445, -0.028851361945271492, 0.0007738472195342183, 0.018032100051641464, 0.0009408449404872954, 0.02220795676112175, 0.007482957094907761, -0.051628753542900085, -0.05060669034719467, 0.0013177304062992334, 0.010089215822517872, -0.0018424500012770295, 0.0031300662085413933, -0.02014923095703125, -0.03028224967420101, 0.01230855192989111, -0.0023105910513550043, -0.011826721951365471, -0.015243330970406532, 0.030486661940813065, 0.005409630481153727, -0.027887701988220215, -0.022675184532999992, -0.18735863268375397, 0.005876858718693256, 0.029333190992474556, -0.04181695356965065, 0.007796876132488251, 0.0033217028249055147, -0.007519458886235952, -0.006179827265441418, -0.025755971670150757, -0.0015568200033158064, 0.03644382581114769, 0.016718020662665367, -0.028311127796769142, 0.0007373450207524002, -0.01898115873336792, -0.034954532980918884, -0.022587578743696213, 0.03238477557897568, 0.039977241307497025, 0.015287132933735847, 0.04091169685125351, -0.0024675505701452494, -0.002210209844633937, 0.037290677428245544, 0.0015860218554735184, -0.003662998555228114, 0.004646733868867159, 0.01962359808385372, 0.016090182587504387, -0.02006162516772747, 0.0032906758133322, -0.015287132933735847, 0.008797037415206432, 0.007519458886235952, -0.006887970492243767, 0.005285522900521755, -0.009731493890285492, -0.012191744521260262, -0.008242202922701836, 0.02374104969203472, 0.0028909766115248203, 0.025989586487412453, 0.002179183065891266, 0.0007177250809036195, 0.01979880966246128, 0.024558698758482933, 0.018762145191431046, -0.01592957228422165, 0.001872564316727221, -0.03279360383749008, -0.009395673871040344, -0.03740748390555382, 0.018689140677452087, -0.00017851870507001877, 0.0402984619140625, 0.01557915098965168, 0.01934618130326271, 0.04082409292459488, -0.0036538729909807444, -0.013184605166316032, 0.009724194183945656, -0.040794890373945236, 0.014148264192044735, -0.019565194845199585, -0.01119888387620449, 0.015287132933735847, -0.011111278086900711, 0.005070159677416086, -0.010279027745127678, 0.01499511580914259, 0.005453432910144329, -0.030311450362205505, 0.003109989920631051, -0.04000644385814667, 0.03965602070093155, -0.005230769515037537, -0.003641097340732813, -0.003945890814065933, 0.022324763238430023, -0.03366965427994728, -0.03197595104575157, 0.04689806327223778, -0.012016533873975277, -0.007767674047499895, 0.03930560126900673, 0.023580439388751984, 0.0028544743545353413, -0.0015604703221470118, -0.0055556390434503555, 0.018411723896861076, 0.03583058714866638, -0.05346846580505371, 0.012950990349054337, -0.012279349379241467, 0.0067419614642858505, 0.010366632603108883, -0.02264598198235035, -0.009665790013968945, 0.006176176946610212, -0.0037177519407123327, -0.00474528968334198, -0.018572334200143814, -0.018557732924818993, 0.016776423901319504, -0.021288100630044937, 0.01360803097486496, 0.0006561275804415345, 0.023390628397464752, 0.030428258702158928, 0.013184605166316032, -0.010848462581634521, -0.008884642273187637, 0.0063112354837358, 0.012746578082442284, 0.009957808069884777, 0.04064888134598732, -0.03349444642663002, -0.015126523561775684, 0.0411745123565197, 0.0027467927429825068, -0.004719738382846117, -0.01557915098965168, 0.00580020435154438, 0.03180074319243431, 0.01737506128847599, 0.02651521936058998, -0.024412689730525017, -0.008556121960282326, 0.004504375159740448, 0.03851715102791786, 0.007658167742192745, 0.05013946071267128, 0.0011242686305195093, 0.023624243214726448, -0.03337763622403145, 0.04336464777588844, -0.018922755494713783, -0.018017500638961792, -0.00178587157279253, 0.0033308283891528845, 0.018732944503426552, 0.012279349379241467, -0.028165118768811226, -0.00993590708822012, 0.0009344570571556687, 0.03673584386706352, -0.005179666448384523, -0.02309861034154892, -0.012753878720104694, -0.026705030351877213, 0.0005990928038954735, 0.011476300656795502, -0.026705030351877213, 0.010096516460180283, 0.006840517744421959, 0.015914971008896828, 0.019039561972022057, 0.00014623705646954477, 0.0016225241124629974, -0.008745933882892132, -0.019565194845199585, -0.009643889032304287, -0.009994310326874256, 0.005446132738143206, 0.022675184532999992, -0.013637232594192028, 0.004975253716111183, 0.00918396096676588, -0.017404261976480484, 0.0084539158269763, -0.0018853400833904743, -0.05165795236825943, -0.0033016265369951725, 0.013082399033010006, 0.026617424562573433, -0.015053519047796726, -0.0283841323107481, -0.008592624217271805, 0.034866929054260254, -0.021434107795357704, 0.010906865820288658, 0.01899576000869274, 0.014170165173709393, 0.012958290986716747, -0.025463955476880074, 0.03822513297200203, -0.016878630965948105, 0.0022412368562072515, 0.000781603972427547, 0.007767674047499895, 0.010184122249484062, 0.017316658049821854, -0.014944012276828289, -0.02185753546655178, 0.012987492606043816, 0.01943378709256649, -0.005124913062900305, 0.028325729072093964, -0.011001771315932274, 0.016980836167931557, -0.01622159034013748, -0.008964947424829006, -0.021988943219184875, 6.770022446289659e-05, 0.009249664843082428, -0.027449676766991615, 0.00762896565720439, -0.011629610322415829, -0.025201138108968735, -0.002186483470723033, 0.024106072261929512, 0.0016316496767103672, 0.0026445863768458366, -0.014184766449034214, -0.0030917387921363115, -0.01727285422384739, 0.0011653336696326733, -0.0108338613063097, 0.03410768136382103, -0.008395512588322163, -0.024222878739237785, -0.016820227727293968, 0.00881893839687109, -0.003327178070321679, 0.024237480014562607, 0.03439969941973686, -0.04207976907491684, -0.006059370003640652, -0.08071372658014297, 0.032472383230924606, -0.009914005175232887, 0.008731333538889885, -0.012031134217977524, -0.004004294518381357, 0.0016608514124527574, 0.0033837566152215004, 0.005778302904218435, -0.012753878720104694, -0.017856890335679054, -0.01978420838713646, 0.0063440874218940735, -0.026267003268003464, -0.004931451287120581, -0.011030973866581917, 0.0031738688703626394, 0.007395351305603981, 0.031742338091135025, 0.019112566486001015, 0.025916581973433495, 0.028807558119297028, 0.024500295519828796, 0.0012000107672065496, -0.013907348737120628, -0.011074775829911232, -0.0065813516266644, 0.01460089161992073, -0.02677803486585617, 0.0053986795246601105, -0.0013962102821096778, -0.03717387095093727, -0.01119888387620449, 0.03194675222039223, -0.010863062925636768, -0.05361447483301163, 0.019492190331220627, -0.0020404746755957603, 0.009454077109694481, -0.052621614187955856, -0.013170003890991211, -0.012250147759914398, -0.00038281711749732494, 0.011176981963217258, -0.004876697901636362, -0.0013067797990515828, -0.004686885979026556, 0.0034731870982795954, -0.007979387417435646, 0.022952601313591003, 0.015024317428469658, -0.004460572265088558, 0.00492415064945817, -0.01826571486890316, -0.009979709051549435, -0.04091169685125351, -0.0016389500815421343, -0.00040768427425064147, 0.012374255806207657, -0.0047051371075212955, 0.028982769697904587, 0.006125073879957199, 0.027800098061561584, -0.015725160017609596, -0.015885770320892334, 0.013469322584569454, -0.04129132255911827, -0.004599280655384064, 0.020032422617077827, -0.025201138108968735, -0.02505512908101082, -0.006117773707956076, 0.010680552572011948, 0.0400940477848053, 0.014615491963922977, 0.01293639000505209, -0.0031428418587893248, 0.006632455158978701, -0.025653766468167305, 0.02650061808526516, 0.023069407790899277, -0.02550775744020939, -0.026821836829185486, 0.017594074830412865, 0.03600579872727394, -0.017886092886328697, 0.0015641205245628953, 0.02219335548579693, -0.0013779591536149383, 0.0017648827051743865, -0.021828332915902138, 0.01562295388430357, 0.0023215417750179768, 0.012921788729727268, 0.02667582780122757, 0.028223523870110512, -0.007716570980846882, -0.02139030583202839, 0.02740587294101715, 0.0034713619388639927, 0.015725160017609596, 0.013002093881368637, -0.013418219052255154, -0.0062491814605891705, -0.014535187743604183, 0.00949788000434637, -0.00981179904192686, -0.02095227874815464, 0.012761179357767105, -0.03475012257695198, 0.019667400047183037, -0.002588008064776659, -0.00805969163775444, 0.018951958045363426, -0.025215739384293556, 0.009987009689211845, -0.008599924854934216, 0.008373611606657505, -0.030574265867471695, 0.0340200774371624, 0.01861613616347313, 0.021536314859986305, 0.01190702710300684, -0.0035498416982591152, 0.04061967879533768, -0.017959097400307655, 0.008855440653860569, -0.012651672586798668, 0.03355284780263901, 0.018046701326966286, -0.0014199366560205817, 0.007026678882539272, -0.020543454214930534, -0.019462987780570984, 0.007855279371142387, 0.02759568579494953, 0.028150519356131554, 0.029026571661233902, -0.016893232241272926, 0.08158978074789047, -0.006603253073990345, -0.013535026460886002, 0.002684738952666521, -0.008724032901227474, 0.010753556154668331, 0.011388695798814297, 0.00957818515598774, -0.03688185289502144, -0.032530784606933594, 0.023230018094182014, -0.020923078060150146, 0.004223308060318232, -0.052241988480091095, 0.008322508074343204, -0.022339364513754845, -0.02517193742096424, 0.032005153596401215, 0.0008158248383551836, -0.013783241622149944, 0.021565517410635948, -0.012126040644943714, 0.009607386775314808, -0.006150625646114349, 0.012688174843788147, -0.01388544775545597, 0.014856407418847084, -0.018221912905573845, 0.020893875509500504, 0.013096999377012253, 0.007621665485203266, 0.03393247351050377, -0.018046701326966286, -0.02114209160208702, -0.024106072261929512, -0.01629459485411644, -0.00017555290833115578, 0.011023673228919506, 0.040152452886104584, 0.007402651943266392, -0.005478984676301479, 0.02041204646229744, -0.025288743898272514, -0.013308712281286716, 0.014929411932826042, -0.008789736777544022, -0.014732299372553825, 0.012950990349054337, -0.04091169685125351], "0dba0ca0-6cb8-4433-8b21-00c2cecb4ad1": [-0.012451817281544209, -0.011469702236354351, -0.016176840290427208, -0.04933024197816849, -0.016709988936781883, 0.022013410925865173, -0.021606534719467163, -0.019726485013961792, -0.029603758826851845, -0.00417048204690218, 0.01851988583803177, 0.018337493762373924, -0.01602250710129738, -0.004075778182595968, 0.008656644262373447, 0.006587186828255653, -0.0001176126825157553, 0.012023895978927612, 0.02105935662984848, 0.011441642418503761, 0.019712455570697784, 0.024202125146985054, 0.010866403579711914, -0.010627889074385166, -0.010003544390201569, 0.012479878030717373, 0.008369024842977524, -0.02045605704188347, -0.00027424690779298544, -0.013686477206647396, 0.023444492369890213, 0.006632785312831402, -0.01205897144973278, -0.04585075005888939, 0.004075778182595968, -0.018688248470425606, 0.00803229957818985, -0.02049814723432064, 0.010213998146355152, 0.028593583032488823, 0.004675569944083691, -0.01338482741266489, -0.002572790952399373, 0.0069274199195206165, -0.001263596466742456, 0.027120409533381462, 0.0005226255743764341, 0.016555655747652054, -0.010515647940337658, 0.012984965927898884, -0.009779061190783978, 0.041389141231775284, -0.03723619505763054, -0.028369098901748657, 0.03532808646559715, 0.019291548058390617, 0.015012332238256931, 0.007232577074319124, -0.020385906100273132, -0.031119022518396378, 0.049246061593294144, -0.0007677159155718982, -0.033279675990343094, -0.009912348352372646, 0.00035207075416110456, -0.022251924499869347, -0.00770258903503418, 0.009309048764407635, -0.004514222498983145, 0.01902497373521328, 0.016443414613604546, 0.028635673224925995, 0.018393615260720253, 0.0008751347777433693, 0.04540178179740906, 0.005773434415459633, -0.011687170714139938, -0.007541241589933634, 0.021494293585419655, -0.014338881708681583, 0.004731690511107445, -0.009224867448210716, 0.00448616174980998, -4.1460389184067026e-05, -7.086355617502704e-05, 0.007464075461030006, 0.0033041161950677633, 0.04559820517897606, 0.024188093841075897, -0.026082172989845276, 0.03412148728966713, -0.005727835930883884, 0.005275361705571413, -0.01647147536277771, 0.004370412789285183, -0.0067625646479427814, -0.016289081424474716, 0.00925292819738388, -0.04629971832036972, -0.01962827332317829, -0.011995835229754448, 0.009926378726959229, -0.015152634121477604, -0.007246606983244419, -0.04380233958363533, -0.012564059346914291, 0.03269040584564209, -0.004412503447383642, 0.015685781836509705, -0.004086300730705261, -0.03050169162452221, 0.03953715041279793, -0.017355378717184067, -0.02968793921172619, -0.0065836794674396515, 0.020680539309978485, 0.023626886308193207, 0.005682237911969423, -0.018590038642287254, -0.028270887210965157, 0.00884605199098587, 0.04397070035338402, 0.016345202922821045, -0.022630739957094193, 0.03675916790962219, 0.01297795120626688, 0.01497024204581976, -0.006636292673647404, -0.015264876186847687, -0.0009978992165997624, 0.04009836167097092, 0.00530342198908329, 0.027835950255393982, 0.016443414613604546, -3.732257027877495e-05, 0.0053314827382564545, -0.019361699000000954, 0.009302034042775631, -0.014675606973469257, 0.013328705914318562, 0.034598514437675476, 0.0026639874558895826, 0.006545096170157194, -0.0011110177729278803, -0.032971009612083435, 0.0036583791952580214, 0.03364446014165878, 0.007141380570828915, -0.0038337567821145058, -0.002086994703859091, 0.019249457865953445, -0.010038620792329311, -0.0019344162428751588, 0.010094741359353065, 0.015882205218076706, -0.02611023373901844, 0.008074389770627022, 0.04674868285655975, 0.01193269994109869, -0.035524509847164154, 0.008326933719217777, 0.0010584044503048062, 0.018239282071590424, 0.0031953819561749697, 0.015531450510025024, 0.003530353307723999, -0.004728183150291443, -0.02605411410331726, 0.013447962701320648, 0.011995835229754448, -0.03044557198882103, 0.03075423650443554, 0.003598750801756978, 0.010494602844119072, -0.02727474272251129, 0.02314985916018486, 0.020021120086312294, 0.013988126069307327, -0.013630355708301067, 0.012044941075146198, 0.012991980649530888, 0.015896236523985863, 0.023753156885504723, 0.01048057246953249, -0.02300955541431904, -0.009772046469151974, 0.0047667664475739, -0.009196807630360126, 0.01697656325995922, -0.0010768191423267126, 0.012872723862528801, 0.01114700734615326, 0.016246991232037544, 0.021185627207159996, -0.5549231767654419, -0.029603758826851845, 0.01450724434107542, -0.0017502695554867387, 0.02779386006295681, 0.004317799117416143, 0.007232577074319124, 0.0033549757208675146, -0.02789207175374031, 0.03872339800000191, -0.017509711906313896, 0.00961069855839014, 0.013272585347294807, -0.028228797018527985, -0.03824637085199356, -0.039088185876607895, -0.011168052442371845, -0.0050158025696873665, -0.0048193796537816525, 0.01019996777176857, -0.05814122036099434, -0.010403405874967575, -0.0008725041407160461, 0.010712070390582085, 0.009035459719598293, -0.001055773813277483, 0.002216774271801114, 0.009772046469151974, 0.012935860082507133, 0.02951957657933235, -0.02366897650063038, 0.01600847765803337, 0.010045635513961315, -0.016752079129219055, 0.037208136171102524, -0.04237125441431999, -0.03566481173038483, 0.038470856845378876, 0.03692753240466118, 0.024103913456201553, -0.025534994900226593, -0.01902497373521328, 0.036085717380046844, 0.0025570071302354336, 0.007618407718837261, 0.005012295208871365, 0.006825700867921114, -0.01600847765803337, 0.003882862627506256, -0.01438097283244133, 0.025787539780139923, -0.003907415550202131, 0.021480262279510498, -0.005766419228166342, 0.019459910690784454, -0.027751769870519638, 0.03493523970246315, -0.0086145531386137, -0.008761870674788952, -0.03569287061691284, -0.0095335328951478, 0.016232961788773537, -0.00892321765422821, -0.01346199307590723, 0.005626116879284382, 0.0020799797493964434, -0.00938621535897255, 0.015952356159687042, -0.0074921357445418835, -0.019922908395528793, 0.0026815251912921667, 0.036787230521440506, 0.028579551726579666, 0.029042549431324005, -0.008053344674408436, 0.06818685680627823, 0.03569287061691284, -0.024847514927387238, 0.002046657958999276, 0.020792782306671143, 0.007583332248032093, -0.011357461102306843, -0.031848594546318054, -0.015994448214769363, 7.579605880891904e-05, -0.0005708544631488621, -0.03120320290327072, 0.01336378138512373, 0.029295094311237335, 0.00867067463696003, 0.03294295072555542, 0.006183817982673645, 0.011995835229754448, -0.02688189595937729, 0.006639800034463406, 0.023121798411011696, -0.024875575676560402, 0.007765725255012512, -0.02488960511982441, -0.007534226402640343, -0.03788158670067787, 0.025997992604970932, -0.005475292447954416, -0.007183471228927374, -0.006727489177137613, -0.005131551995873451, -0.03849891573190689, 0.0010049142874777317, 0.03569287061691284, -0.0218731090426445, -0.02463706210255623, 0.005219240672886372, -0.005022817756980658, 0.016794169321656227, -0.044952817261219025, -0.04324112832546234, 0.025464843958616257, 0.02549290470778942, -0.002215020591393113, -0.009926378726959229, 0.0035794591531157494, -0.0018923255847766995, 0.027920132502913475, 0.00867067463696003, 0.004868485499173403, 0.015545480884611607, -0.0038968927692621946, -0.0013416395522654057, 0.00042989462963305414, -0.017116865143179893, -0.01979663595557213, -0.0041354065760970116, -0.0018239282071590424, -0.030922599136829376, 0.020484117791056633, -0.0010206983424723148, -0.004093315917998552, 0.007158918306231499, 0.013490053825080395, -0.02299552597105503, -0.007169440854340792, -0.026292627677321434, 0.014633516781032085, -0.024538850411772728, -0.006253969389945269, -0.006446884945034981, 0.011567913927137852, -0.00045510518248192966, 0.0034707249142229557, -0.022097591310739517, -0.0008799576899036765, 0.0005848846631124616, -0.015026362612843513, 0.031343504786491394, 0.0008988108020275831, -0.0070957825519144535, -0.015349057503044605, -0.020792782306671143, 0.004507207311689854, -0.020582327619194984, -0.01052967831492424, 0.011743292212486267, -0.012451817281544209, 0.020063210278749466, -0.021438172087073326, -0.045205358415842056, -0.01478784903883934, -0.002546484349295497, -0.00862156879156828, -0.028846126049757004, -0.010971629992127419, -0.0025166701525449753, -0.00958263874053955, -0.020834872499108315, -0.014872030355036259, 0.008123495616018772, -0.013658416457474232, -0.006650323048233986, -0.0049947574734687805, -0.01450724434107542, -0.017144925892353058, 0.019235428422689438, -0.02423018589615822, 0.015573540702462196, 0.03142768517136574, 0.0034514334984123707, 0.008270813152194023, -0.014254700392484665, 0.010129816830158234, 0.023191949352622032, -0.026545170694589615, 0.002560514723882079, 0.012486893683671951, 0.025366632267832756, 0.0394810326397419, 0.004331829492002726, -0.001241674181073904, 0.013062132522463799, -0.02324806898832321, 0.013917975127696991, 0.016766108572483063, -0.0009645774262025952, -0.00994040910154581, -0.015938326716423035, 0.03142768517136574, -0.019754545763134956, -0.007590347435325384, -0.017299257218837738, 0.008235737681388855, 0.010396391153335571, -0.006843238603323698, -0.03356027975678444, -0.02380927838385105, -0.008102450519800186, 0.03611377999186516, 0.025071997195482254, -0.0025394693948328495, 0.004121376201510429, 0.00576291186735034, -0.021802958101034164, 0.024440638720989227, 0.01840764470398426, 0.013553190045058727, -0.006923912093043327, -0.007674528751522303, -0.001051389379426837, 0.014731727540493011, -0.013840809464454651, -0.005471784621477127, -0.014226640574634075, -0.0029779134783893824, -0.03288682922720909, -0.000762893061619252, -0.0071273501962423325, 0.03984581679105759, -0.004780796356499195, 0.005598056595772505, 0.005973365157842636, -0.0015240323264151812, -0.017411500215530396, -0.009708910249173641, 0.03900400549173355, -0.013342736288905144, -0.04644002020359039, 0.0035812128335237503, -0.0036759169306606054, 0.048825155943632126, 0.007414969615638256, 0.007169440854340792, 0.008635598234832287, -0.024258244782686234, -0.0022816641721874475, -0.01433186698704958, 0.02299552597105503, 0.0017213323153555393, -0.009751001372933388, 0.007709604222327471, 0.030838416889309883, 0.014872030355036259, 0.01668192818760872, 0.020834872499108315, 0.0188706424087286, -0.010038620792329311, -0.011378506198525429, 0.030417511239647865, 0.009715924970805645, 0.004037194885313511, 0.0022483423817902803, -0.0011908146552741528, 0.007541241589933634, -0.0086145531386137, 0.006113667041063309, -0.008902172558009624, -0.02427227608859539, 0.02895836904644966, -0.009631743654608727, 0.03311131149530411, -0.0060715763829648495, 0.037965767085552216, 0.004254663363099098, -0.012767497450113297, -0.03319549560546875, -0.004261678550392389, 0.050003692507743835, -0.01310422271490097, -0.0420064702630043, -0.013917975127696991, -0.0004130145243834704, -0.01170120108872652, 0.0080814054235816, 0.006520543247461319, 0.007555271964520216, 0.02800431288778782, 0.027036229148507118, -0.0035250920336693525, 0.009547562338411808, -0.002376368036493659, -0.006495990324765444, -0.011750306934118271, 0.02324806898832321, 0.010228028520941734, 0.01124521903693676, -0.005685745272785425, 0.013658416457474232, 0.04874097555875778, 0.011750306934118271, -0.008305888622999191, 0.010943569242954254, -0.0074710906483232975, -0.03782546520233154, 0.003495277836918831, -0.009421290829777718, -0.03454239293932915, -0.00015246900147758424, 0.001683626091107726, -0.00434936722740531, -0.002820073626935482, 0.0024430116172879934, 0.034093428403139114, -0.012690331786870956, -0.02227998524904251, 0.003070863662287593, -0.04094017297029495, 0.019866786897182465, -0.03313937410712242, 0.04458802938461304, -0.01631714217364788, -0.021999379619956017, -0.024033762514591217, 0.004426533356308937, 0.005092968698590994, -0.016597747802734375, 0.013076161965727806, -0.01656968705356121, 0.0006063684704713523, -0.023430462926626205, 0.010221012867987156, -0.015994448214769363, 0.027246681973338127, 0.00567171536386013, -0.029098670929670334, -0.021227719262242317, 0.01988081820309162, -0.0018607575912028551, -0.023220010101795197, -0.007183471228927374, 0.030613934621214867, 0.025633206591010094, -0.011231188662350178, -0.019810667261481285, -0.0022904330398887396, 0.035973478108644485, 0.01809898018836975, -0.010059665888547897, -0.01699059270322323, -0.001957215368747711, -0.00938621535897255, 0.03196083381772041, -0.030164966359734535, -0.014212610200047493, 0.017621953040361404, 0.03493523970246315, 0.007737664971500635, 0.004633479285985231, 0.007653483655303717, 0.04542984440922737, 0.017046714201569557, -0.014177534729242325, -0.0009856227552518249, 0.01708880439400673, -0.0037390529178082943, -0.011638064868748188, 0.02171877585351467, -0.00018283126701135188, 0.0008882881375029683, -0.009400245733559132, -0.014289775863289833, -0.024973787367343903, -0.014226640574634075, 0.01160298939794302, -0.04223095253109932, -0.013265570625662804, 0.0244827289134264, 0.010831327177584171, 0.009624728932976723, -0.007457060273736715, 0.020371874794363976, -0.01627505198121071, -0.004500192124396563, -0.015896236523985863, -0.023163888603448868, -0.0169344712048769, -0.03137156367301941, -0.021185627207159996, 0.01637326367199421, -0.005580518860369921, 0.00562260951846838, 0.006980033125728369, 0.004724675789475441, 0.01947394199669361, 0.008004238829016685, -0.008958294056355953, -0.010003544390201569, 0.027106380090117455, -0.008333949372172356, -0.03319549560546875, -0.027653558179736137, -0.013917975127696991, 0.005994410254061222, 0.00013668500469066203, 0.0243845172226429, 0.009196807630360126, 0.019291548058390617, 0.0169344712048769, 0.009589653462171555, 0.0001394252758473158, 0.017215076833963394, 0.011806427501142025, -0.010347285307943821, -0.0009654543246142566, 0.0060505312867462635, 0.015994448214769363, -0.022883284837007523, -0.007295712828636169, 0.023191949352622032, -0.031904712319374084, 0.014928150922060013, -0.0017906064167618752, -0.006794132757931948, 0.006383748725056648, 0.026278596371412277, 0.003412850433960557, 0.017257167026400566, 0.0015617385506629944, 0.02982824109494686, -0.014521274715662003, 0.010824312455952168, -0.015152634121477604, 0.004359889775514603, 0.00707473699003458, -0.01699059270322323, 0.005896198563277721, -0.00984219741076231, 0.013581249862909317, 0.0074430303648114204, -0.030529752373695374, 0.024566909298300743, 0.014731727540493011, -0.0188706424087286, 0.034402091056108475, -0.020526207983493805, -0.01662580668926239, -0.012830633670091629, 0.008481265977025032, -0.01927751861512661, -0.016401324421167374, -0.02963181771337986, -0.020315755158662796, -0.015840115025639534, 0.00670644361525774, -0.02382330782711506, 0.02380927838385105, 0.0072816829197108746, -0.0017037944635376334, 0.011988820508122444, -0.022911343723535538, 0.00720451632514596, -0.015124574303627014, -0.013889915309846401, -0.02646099030971527, -0.02794819325208664, -0.002918285084888339, -0.007786770351231098, 0.04225901514291763, 0.015769964084029198, -0.00050508783897385, -0.0317363515496254, -0.011364475823938847, 0.02300955541431904, -0.03148380666971207, -0.015166664496064186, -0.02101726457476616, -0.00335322180762887, -0.006464422680437565, 0.03703977167606354, 0.012269425205886364, 0.007870951667428017, 0.019109155982732773, -0.010066680610179901, 0.02504393830895424, -0.02411794289946556, 0.0005796233308501542, -0.03703977167606354, 0.0031883667688816786, -0.009070535190403461, -0.008888142183423042, 0.006783610209822655, 0.0017222091555595398, -0.02504393830895424, 0.02845328114926815, -0.008123495616018772, 0.004893038421869278, 0.019039005041122437, -0.08597717434167862, 0.003998612053692341, -0.005584026221185923, 0.018337493762373924, -0.00011147445911774412, -0.025128118693828583, -0.015826085582375526, 0.029463455080986023, 0.008193646557629108, 0.004342352040112019, 0.010263103991746902, -0.004163466859608889, 0.001888817991130054, 0.0063872565515339375, -0.005078938789665699, 0.02723265066742897, 0.0038442795630544424, 0.015769964084029198, -0.012073001824319363, -0.007400939706712961, 0.0003071302198804915, -0.02988436259329319, 0.019305579364299774, 0.015980416908860207, -0.00016178593796212226, -0.008102450519800186, -0.020175451412796974, -0.02014739252626896, 0.0036759169306606054, -0.0005783080123364925, 0.0066117397509515285, -0.001569630578160286, -0.03238173946738243, -0.0340653657913208, -0.027625497430562973, 0.011988820508122444, 0.01678013987839222, -0.013609310612082481, -0.0006133835413493216, -0.014072307385504246, -0.01010175608098507, -0.003200643230229616, -0.019109155982732773, 0.041781987994909286, -0.003070863662287593, 0.007232577074319124, 0.0160645991563797, -0.015741903334856033, -0.011259249411523342, -0.024861544370651245, -0.018744369968771935, -0.017172986641526222, 0.010347285307943821, 0.03443015366792679, -0.004601911175996065, 0.0019010944524779916, 0.013714537024497986, 0.0033216539304703474, -0.024749303236603737, -0.024510789662599564, 0.017607921734452248, 0.013623340986669064, 7.097316847648472e-05, -0.026040082797408104, 0.015629662200808525, -0.02773773856461048, 0.00012945068010594696, 0.009905333630740643, -0.013391842134296894, -0.01264824066311121, -0.005643654614686966, -0.023079706355929375, 0.03479493781924248, -0.021396081894636154, 0.024721242487430573, 0.008663658984005451, -0.004149436950683594, 0.0046615395694971085, -0.03698365390300751, -6.993186252657324e-05, 0.0044545941054821014, 0.005819032434374094, 0.019572153687477112, 0.002890224801376462, -0.006011947989463806, 0.032718464732170105, 0.004654524382203817, -0.010859387926757336, -0.002094009891152382, -0.005054385866969824, 0.04629971832036972, -0.032101135700941086, -0.01374259777367115, -0.023949580267071724, 0.02982824109494686, 0.029856301844120026, 0.014886060729622841, -0.0032427338883280754, 0.01724313758313656, -0.028481340035796165, -0.008425145410001278, 0.007758710067719221, -0.011743292212486267, 0.039958059787750244, 0.0005607702187262475, -0.0031252307817339897, -0.02407585270702839, -0.019726485013961792, -0.0031076930463314056, 0.0008733810391277075, -0.037657104432582855, 0.005440216511487961, -0.0026797715108841658, -0.013244524598121643, 0.010059665888547897, 0.00707473699003458, -0.030277209356427193, -0.011785382404923439, 0.033840883523225784, -0.03095065988600254, 0.026601292192935944, 0.006815177854150534, 0.016695957630872726, -0.047253772616386414, -0.012528983876109123, 0.012872723862528801, -0.0014486198779195547, 0.0191652774810791, -0.012227334082126617, -0.0034005739726126194, -0.01210807729512453, 0.025675296783447266, 0.02018948271870613, -0.0006309213349595666, 0.0007756079430691898, 0.007520196493715048, 0.00907755084335804, 0.0060505312867462635, -0.016541626304388046, -0.026839805766940117, -0.0006800270639359951, -0.01989484764635563, -0.0067520420998334885, -0.029603758826851845, -0.020161421969532967, 0.013588265515863895, -0.029659878462553024, -0.03263428434729576, 0.015110543929040432, -0.022406257688999176, -0.02086293324828148, 0.02907061018049717, -0.004149436950683594, -0.00938621535897255, 0.018379583954811096, -0.017257167026400566, -0.012402712367475033, 0.0035426297690719366, -0.014093353413045406, 0.0055664884857833385, -0.007246606983244419, -0.010613859631121159, 0.012662271037697792, 0.0037460678722709417, 0.020947113633155823, -0.020413966849446297, -0.04484057426452637, 0.011967775411903858, -0.008768885396420956, -0.044896695762872696, -0.020217543467879295, -0.004209065344184637, 0.04234319552779198, 1.4701585314469412e-05, -0.04063151031732559, -0.02131189964711666, -0.016176840290427208, -0.045570146292448044, -0.004868485499173403, -0.020722631365060806, 0.021325930953025818, 0.0015003563603386283, 0.006881821434944868, -0.010768191888928413, 0.034093428403139114, -0.019319608807563782, 0.011806427501142025, -0.02229401469230652, -0.000312610762193799, -0.010613859631121159, -0.016036538407206535, 0.026292627677321434, -0.00907755084335804, -0.030613934621214867, -0.0064153168350458145, -0.0008444436825811863, 0.005275361705571413, -0.006162772886455059, 0.009133671410381794, -0.007036153692752123, 0.003665394149720669, -0.0029217926785349846, 0.0046790773048996925, -0.012486893683671951, 0.003077878849580884, -0.0064538996666669846, -0.02632068656384945, -0.007906027138233185, -0.0018397122621536255, 0.012718391604721546, -0.014121413230895996, 0.012802572920918465, 0.016499536111950874, 0.0058821686543524265, 0.003344452939927578, 0.010943569242954254, 0.014675606973469257, -0.009729955345392227, 0.007386909332126379, 0.03221337869763374, 0.03844279423356056, -0.00016912988212425262, 0.02636277861893177, 0.003823234234005213, 0.017299257218837738, -0.018323464319109917, -0.013258554972708225, -0.00810946524143219, -0.006766072008758783, 0.004798334091901779, -0.001550339045934379, 0.02524035982787609, -0.005292899440973997, 0.0017625460168346763, 0.002511408878490329, 0.005952319595962763, -0.0032269498333334923, -0.0169344712048769, -0.05154701694846153, 0.013062132522463799, 0.036955591291189194, -0.037460681051015854, 0.006355688441544771, -0.019908878952264786, -0.039032064378261566, 0.0005778695922344923, -0.006232923828065395, 0.029238972812891006, -0.03563675284385681, -0.009323079138994217, -0.01602250710129738, 4.425547012942843e-05, -0.018632128834724426, 0.0014512506313621998, -0.0030480646528303623, -0.001816913136281073, -0.022406257688999176, 0.22728951275348663, 0.004433548543602228, -0.021943259984254837, 0.005489322356879711, -0.015138604678213596, 0.006657338235527277, -0.009231883101165295, 0.0038056964986026287, 0.0018484811298549175, 0.010950584895908833, 0.02188713848590851, -0.013483039103448391, 0.018477795645594597, 0.010691025294363499, -0.018547946587204933, -0.003591735614463687, -0.027036229148507118, -0.02800431288778782, -0.015068452805280685, -0.00015773033373989165, 0.027499224990606308, -0.004963189363479614, -0.009035459719598293, -0.014549335464835167, 0.00912665668874979, -0.0032181809656322002, -0.007092274725437164, 0.0026745102368295193, 0.02632068656384945, 0.0007238715188577771, -0.012592120096087456, -0.00984219741076231, 0.004970204550772905, -0.002844626549631357, -0.017369408160448074, -0.016190869733691216, 0.02820073626935482, 0.006106651853770018, 0.01958618313074112, 0.010087725706398487, -0.009168746881186962, -0.0020905022975057364, 0.00657666428014636, -0.00317433662712574, -0.028060434386134148, 0.016695957630872726, -0.02994048409163952, 0.025619177147746086, -0.011329400353133678, 0.014717698097229004, -0.04065956920385361, -0.02814461477100849, 0.03142768517136574, -0.0010303440503776073, -0.018702279776334763, -0.003616288537159562, 0.03330773487687111, 0.0012741191312670708, 0.01581205427646637, 0.005324467550963163, -0.038891762495040894, 0.02320597879588604, 0.021746836602687836, 0.022532528266310692, -0.021353989839553833, -0.0169344712048769, 0.00018984638154506683, -0.014184549450874329, 0.0022500960621982813, -0.020890993997454643, 0.006566141732037067, 0.012381666339933872, -0.008874112740159035, -0.022869253531098366, -0.029295094311237335, -0.04037896543741226, 0.01414947398006916, 0.016499536111950874, -0.005180657841265202, 0.031792473047971725, -0.0005384095711633563, -0.029659878462553024, -0.006853761151432991, 0.007520196493715048, -0.020778751000761986, -0.010494602844119072, 0.01002459041774273, -0.026755623519420624, 0.01435992680490017, 0.02279910258948803, -0.009631743654608727, -0.008944263681769371, 0.0006817808607593179, 0.009779061190783978, -0.0021062863525003195, 0.014310821890830994, 0.017678072676062584, 0.011511793360114098, 0.005285884253680706, -0.004500192124396563, -0.021339960396289825, 0.008018269203603268, -0.006296060048043728, -0.024258244782686234, 0.0024061822332441807, -0.013770658522844315, -0.021634595468640327, -0.015643691644072533, -0.0018063904717564583, -0.027962222695350647, 0.010305194184184074, -0.05679431930184364, -0.0013328706845641136, -0.008088420145213604, -5.603866156889126e-05, 0.010487587191164494, 0.008228722028434277, -0.023879429325461388, 0.015320996753871441, -0.009323079138994217, 0.029042549431324005, -0.010389375500380993, -0.0095335328951478, 0.030585873872041702, -0.009751001372933388, -0.0007234330987557769, -0.009947423823177814, -0.0037109924014657736, 0.01585414446890354, -0.04517729952931404, 0.02881806530058384, -0.027499224990606308, 0.05494232848286629, -0.004949158988893032, -0.017734194174408913, -0.013840809464454651, 0.005840077996253967, 0.009870258159935474, -0.003995104227215052, -0.007309743203222752, 0.008951278403401375, 0.0031971356365829706, 0.020077241584658623, -0.000983868958428502, -0.029351213946938515, 0.011308355256915092, -0.011224173940718174, 0.002450026571750641, 0.01048057246953249, -0.01478784903883934, -0.017888527363538742, -0.03835861384868622, 0.004608926363289356, 0.008354994468390942, -0.0046790773048996925, -0.0026376808527857065, -0.004321306943893433, -0.05179956182837486, 0.0027692141011357307, 0.008039314299821854, -0.020947113633155823, -0.019403791055083275, 0.01540517807006836, 0.0038968927692621946, 0.008663658984005451, -0.021802958101034164, -0.17700521647930145, 0.01198180578649044, 0.0474221333861351, -0.04023866355419159, 0.02554902620613575, -0.008312903344631195, 0.014121413230895996, 0.011462687514722347, -0.0190670657902956, -0.013770658522844315, 0.02227998524904251, 0.01866018958389759, -0.0356086902320385, -0.0191652774810791, -0.008151556365191936, -0.0022290507331490517, -0.015924297273159027, 0.008039314299821854, 0.030305268242955208, 0.020834872499108315, 0.04562626779079437, -0.03168023005127907, -0.006313597783446312, 0.03457045555114746, 0.026839805766940117, 0.029351213946938515, -0.012963920831680298, 0.002642942126840353, 0.02575947903096676, -0.03325161337852478, 0.010641919448971748, 0.006352180615067482, 0.012458832934498787, 0.0022571112494915724, -0.020989205688238144, 0.015110543929040432, 0.003465463640168309, 0.02270089089870453, -0.031596049666404724, 0.00553492084145546, -0.025689328089356422, 0.006692413706332445, 0.003349714446812868, -0.00081112195039168, 0.01259913481771946, 0.02769564837217331, 0.018828552216291428, -0.010235043242573738, 0.018884671851992607, -0.03414954990148544, -0.004514222498983145, -0.028902247548103333, 0.03872339800000191, 0.012886754237115383, 0.02371106669306755, 0.022308045998215675, -0.003921445459127426, 0.049891453236341476, 0.013419902883470058, -0.045822687447071075, -0.007288697641342878, -0.039649393409490585, 0.0030112352687865496, -0.008817991241812706, -0.017327317968010902, 0.030361389741301537, -0.0016406584763899446, 0.0003305870050098747, -0.016738049685955048, -0.0016538118943572044, 0.010115786455571651, -0.01091550849378109, 0.0030726175755262375, -0.0036934546660631895, 0.017271196469664574, 0.014633516781032085, 0.01295690517872572, 0.009379199706017971, 0.04231513664126396, 0.00770258903503418, -0.04498087614774704, 0.06044217571616173, -0.020175451412796974, -0.018267342820763588, 0.036085717380046844, 0.008200662210583687, 0.0162610225379467, 0.007071229629218578, -0.023598825559020042, 0.005776941776275635, 0.026096204295754433, -0.023135827854275703, 0.022504467517137527, -0.0066012172028422356, 0.0007278175326064229, 0.004742213524878025, -0.0301930271089077, -0.03400924801826477, -0.014829939231276512, -0.006390763912349939, 0.034289851784706116, -0.016485504806041718, -0.017579862847924232, 0.043577853590250015, 0.002216774271801114, 0.010522662661969662, -0.02406182326376438, 0.0019940445199608803, 0.033167432993650436, 0.01045952644199133, 0.005012295208871365, 0.0003071302198804915, 0.02907061018049717, 0.012676301412284374, -0.023935550823807716, 0.03249398246407509, -0.03611377999186516, -0.0003433018864598125, 0.012044941075146198, 0.013623340986669064, 0.0009935147827491164, -0.0014328359393402934, 0.028327008709311485, 0.02034381404519081, -0.012199274264276028, -0.010466542094945908, -0.0642583966255188, -0.012002850882709026, -0.01821122132241726, 0.006376733537763357, -0.014451123774051666, 0.02268686145544052, -0.005047370679676533, 0.011308355256915092, -0.03482300043106079, 0.03218531981110573, -0.01753777079284191, -0.04430742561817169, 0.0017765762750059366, 0.011771352030336857, 0.018632128834724426, 0.0160645991563797, -0.024146003648638725, -0.007464075461030006, 0.0023447999265044928, 0.026236506178975105, -0.007323773577809334, -0.010059665888547897, -0.00602948572486639, -0.012002850882709026, 0.00846723560243845, 0.00288145593367517, -0.0456823855638504, 0.012620179913938046, 0.01392499078065157, 0.018042858690023422, 0.04481251537799835, 0.01419857982546091, 0.03375670313835144, -0.006264491938054562, -0.038274433463811874, 0.0008212061366066337, -0.03075423650443554, -0.01948797143995762, 0.016092659905552864, -0.01641535386443138, 0.018940793350338936, 0.02142414078116417, -0.014717698097229004, -0.019824696704745293, 0.007681543938815594, -0.029435396194458008, -0.01881452091038227, 0.008509326726198196, 0.014366942457854748, -0.00403017969802022, -0.028986427932977676, -0.0023903981782495975, 0.01381976343691349, -0.016303112730383873, 0.02061038836836815, 0.012949890457093716, -0.01302705705165863, -0.0014302053023129702, -0.03468269854784012, 0.04197841137647629, -0.006275014486163855, -0.005285884253680706, -0.007870951667428017, 0.003477740101516247, 0.012199274264276028, 0.0038863702211529016, -0.027218621224164963, -0.013946035876870155, 0.03106290102005005, 0.008298873901367188, -0.005587534047663212, 0.010684010572731495, -0.004387950524687767, 0.005868138279765844, -0.012143152765929699, -0.012262409552931786, -0.020694570615887642, -0.0060505312867462635, 0.021494293585419655, -0.030670054256916046, 0.003847787156701088, -0.014037231914699078, -0.016541626304388046, -0.023472553119063377, 0.01728522777557373, 0.007064214441925287, 0.0032059045042842627, -0.009568608365952969, 0.009098595939576626, -0.025843659415841103, -0.0014600194990634918, 0.004423025995492935, 0.025941871106624603, 0.002095763571560383, 0.006148742511868477, 0.00143809721339494, -0.00856544729322195, 0.0051841652020812035, 0.002564022084698081, 0.023276129737496376, -0.048572611063718796, -0.021592503413558006, -0.08019672334194183, 0.034345973283052444, 0.009372184984385967, -0.001414421247318387, 0.025661267340183258, -0.00892321765422821, 0.014317836612462997, -0.0038442795630544424, 0.017144925892353058, -0.022827163338661194, -0.02937927469611168, 0.002618389204144478, -0.018267342820763588, -0.011048795655369759, -0.023949580267071724, -0.026657411828637123, 0.035159725695848465, -0.0076675135642290115, 0.0416136234998703, 0.008025283925235271, 0.029603758826851845, -0.00022097592591308057, 0.0190670657902956, 0.003053325926885009, -0.021199658513069153, 0.013230495154857635, -0.01565772294998169, 0.028228797018527985, -0.0160645991563797, 0.003279563272371888, 0.0035777054727077484, -0.028467310592532158, 0.006282029673457146, 0.06156459450721741, 0.01647147536277771, -0.020105300471186638, 0.02549290470778942, -0.003556660143658519, 0.04310082644224167, -0.001510879024863243, -0.025478873401880264, -0.02258864976465702, 0.004110853653401136, 0.0069589875638484955, -0.007562287151813507, -0.001827435800805688, 0.011967775411903858, 0.00693443464115262, 0.0019361699232831597, 0.006839730776846409, -0.003405835246667266, 0.003361990675330162, 0.005594549234956503, -0.0031375072430819273, 0.005685745272785425, -0.03984581679105759, 0.01850585639476776, 0.0009058258729055524, -0.004759751260280609, -0.036955591291189194, 0.019010944291949272, 0.009982499293982983, 0.019642304629087448, -0.0010531431762501597, -3.674711115309037e-05, 0.0014845723053440452, -0.03782546520233154, -0.01205897144973278, 0.011301339603960514, -0.01338482741266489, -0.012578089721500874, 0.014717698097229004, 0.004181004595011473, 0.013048102147877216, 0.016190869733691216, 0.0171308945864439, -0.015391148626804352, -0.0015748918522149324, -0.015685781836509705, 0.02550693415105343, 0.013097207993268967, -0.00012462778249755502, -0.014647547155618668, 0.03962133452296257, 0.04624359682202339, -0.030782297253608704, -0.016457444056868553, 0.039088185876607895, -0.019572153687477112, -0.014563365839421749, -0.007414969615638256, 0.019235428422689438, 0.0046895998530089855, -0.0019361699232831597, 0.04054732620716095, 0.014759788289666176, -0.0011978298425674438, -0.03431791067123413, 0.025282451882958412, 0.016906412318348885, 0.004114361014217138, -0.0027727216947823763, 0.01024907361716032, -0.005436709150671959, -0.026741594076156616, 0.025114089250564575, -0.02305164746940136, -0.03364446014165878, -0.018842581659555435, -0.0016994100296869874, 0.0016169825103133917, -0.01015086192637682, -0.02606814354658127, 0.010277134366333485, 0.0005975995445623994, -0.020582327619194984, 0.0037460678722709417, 0.007877967320382595, -0.028790006414055824, 0.03339191526174545, 0.016541626304388046, 0.02554902620613575, 0.014205594547092915, -0.003682931885123253, 0.015629662200808525, 0.02396361157298088, 0.019445881247520447, -0.012360621243715286, 0.01666789874434471, 0.0028954860754311085, -0.0035426297690719366, -0.009316064417362213, 0.0021676686592400074, -0.020273663103580475, -0.00846723560243845, 0.0052122254855930805, 0.00480534927919507, 0.018576007336378098, -0.003679424524307251, 0.08165586739778519, 0.012970935553312302, 0.01083834283053875, -0.010992675088346004, -0.017046714201569557, 0.01830943301320076, 0.03204501420259476, -0.019445881247520447, -0.02692398615181446, -0.017369408160448074, -0.0025938362814486027, -0.013735582120716572, 0.0018309433944523335, -0.02320597879588604, 0.013307660818099976, -0.02560514584183693, -0.03162410855293274, 0.03698365390300751, 0.007060706615447998, -0.009414276108145714, 0.03263428434729576, -0.013560204766690731, 0.031147081404924393, 0.029351213946938515, 0.02759743668138981, -0.008018269203603268, 0.0027183545753359795, -0.009280988946557045, 0.00215539219789207, 0.007737664971500635, 0.0006243446841835976, 0.020792782306671143, -0.01491412054747343, -0.022097591310739517, -0.022097591310739517, -0.018856611102819443, -0.01800076849758625, 0.014254700392484665, 0.04037896543741226, 0.016499536111950874, -0.024959756061434746, 0.0014266977086663246, -0.020638449117541313, -0.03487911820411682, -0.01183448825031519, 0.0012521968455985188, 0.01124521903693676, -0.025773508474230766, -0.030305268242955208], "6027cd04-5df8-4ec9-9a74-85729013e53f": [-0.02975698746740818, -0.00044018440530635417, 0.0010663500288501382, -0.04686030372977257, -0.01532345823943615, 0.015003640204668045, -0.025821834802627563, -0.03495750576257706, -0.017603900283575058, 0.005124041810631752, 0.014065043069422245, 0.01480896770954132, -0.020746460184454918, 0.003514522686600685, 0.004755556117743254, 0.0010168129811063409, -0.004341877996921539, 0.01274405512958765, 0.018243536353111267, 0.017923718318343163, 0.03512436896562576, 0.02448694221675396, 0.032093048095703125, -0.010407992638647556, -0.020774271339178085, 0.01957842893898487, 0.007508772425353527, -0.029812607914209366, 0.0037161470390856266, 0.005489051807671785, 0.02070474438369274, -0.021747630089521408, -0.0031460365280508995, -0.0397130623459816, 0.006573652382940054, -0.005666342098265886, -0.005346524063497782, -0.03153684362769127, 0.018452113494277, 0.030424432829022408, 0.008704613894224167, -0.023583106696605682, -0.003132131416350603, 0.012389474548399448, -0.012577193789184093, 0.025710593909025192, -0.008822808042168617, 0.028185706585645676, -0.016171671450138092, 0.017367511987686157, -0.011722028255462646, 0.03167589381337166, -0.03442911058664322, -0.038850944489240646, 0.028533335775136948, 0.02309642732143402, 0.01079733669757843, -0.0018267870182171464, -0.014656011015176773, -0.031592465937137604, 0.04216036573052406, -0.0007600024691782892, -0.03437349200248718, -0.005551625043153763, 0.014975829049944878, -0.024667708203196526, -0.005318713840097189, 0.01644977368414402, -0.0014948019525036216, 0.0028540287166833878, 0.006813515909016132, 0.04321715608239174, 0.0004671255883295089, -0.0038725798949599266, 0.020815985277295113, -0.0009716212516650558, -0.014795063063502312, -0.02249850705265999, 0.01644977368414402, -0.01998167857527733, 0.003959486726671457, -0.00740448385477066, 0.019620144739747047, -0.007828590460121632, 0.0036709553096443415, 0.005489051807671785, 0.0068760886788368225, 0.03960182145237923, 0.021942302584648132, -0.019689669832587242, 0.019300326704978943, 0.0017094623763114214, -0.00032981240656226873, -0.0058332039043307304, 0.016644446179270744, 0.0019119560020044446, -0.01707550510764122, 0.0122365178540349, -0.028588956221938133, -0.024945810437202454, -0.0026993341743946075, 0.020371021702885628, -0.011979273520410061, 0.005318713840097189, -0.041882265359163284, -0.013168161734938622, 0.027977129444479942, 0.0025498538743704557, 0.008746329694986343, -0.01633853279054165, -0.003956010565161705, 0.04844548925757408, -0.008315269835293293, -0.02234555035829544, -0.00967102125287056, 0.020371021702885628, 0.030480053275823593, -0.001816358184441924, -0.026086032390594482, -0.023930735886096954, -0.0006465887418016791, 0.03173151612281799, 0.027156727388501167, -0.004939798731356859, 0.02135828696191311, 0.01368265226483345, 0.014516959898173809, -0.023694349452853203, -0.0174370389431715, -0.004567836411297321, 0.0653541311621666, 0.012382522225379944, 0.0376829132437706, 0.00809278804808855, -0.013592268340289593, 0.006135640665888786, -0.019634049385786057, 0.010783431120216846, -0.014085900969803333, -0.0009151316480711102, 0.03579181432723999, 0.005885348189622164, -0.004154158756136894, -0.013140351511538029, -0.026823004707694054, 0.018897077068686485, 0.028533335775136948, -0.005002371966838837, -0.006771800573915243, 0.00021596411534119397, 0.009003574028611183, -0.007494867313653231, 0.00476946122944355, 0.00917738862335682, 0.001320987707003951, -0.04043613001704216, 0.00700471131131053, 0.03654269129037857, 0.0008312662830576301, -0.029701367020606995, 0.013070826418697834, 0.012570241466164589, 0.02698986604809761, -0.017033789306879044, 0.014197141863405704, 0.01835477724671364, -0.03086939826607704, -0.00960149522870779, 0.005575958639383316, 0.00427582859992981, -0.03406757861375809, 0.03604210913181305, 0.0032242529559880495, 0.0026889052242040634, -0.030952828004956245, 0.021497337147593498, 0.0074531519785523415, 0.01330721378326416, -0.015726706013083458, 0.02146952785551548, 0.0029305070638656616, 0.012702340260148048, 0.023791683837771416, 0.006163450889289379, -0.018994413316249847, 0.011200585402548313, 0.00866985134780407, 0.0039003901183605194, 0.01693645305931568, 0.0007739076390862465, 0.021274855360388756, -0.0057949647307395935, 0.01733970269560814, 0.01186107937246561, -0.5486409664154053, -0.02612774632871151, -0.0014504792634397745, -0.0020492691546678543, 0.029979469254612923, 0.007230669725686312, 0.0014287525555118918, -0.012771865352988243, -0.015184406191110611, 0.025946980342268944, -0.022067448124289513, 0.007265432737767696, -0.003876056056469679, -0.02648928016424179, -0.027657311409711838, -0.03348356485366821, -0.009823977015912533, -0.00669184559956193, 0.007835542783141136, 0.021761534735560417, -0.04594256356358528, -0.005266569554805756, -0.0014496102230623364, 0.0014617772540077567, 0.022804420441389084, -0.00401510763913393, -0.005826251115649939, 0.003130393335595727, 0.0297847967594862, 0.019564524292945862, -0.020120728760957718, 0.015003640204668045, 0.01130487397313118, -0.012347758747637272, 0.04229941964149475, -0.03626459091901779, -0.029979469254612923, 0.03298297896981239, 0.04035269841551781, 0.028588956221938133, -0.035346850752830505, -0.016116051003336906, 0.0464431494474411, 0.003622287418693304, 0.006632748991250992, 0.01149954553693533, 0.006723132450133562, -0.012194802984595299, 0.02082989178597927, -0.016269007697701454, 0.027420924976468086, -0.020482262596488, 0.009219104424118996, -0.009274724870920181, 0.010115984827280045, -0.01363398414105177, 0.02774074301123619, -0.02108018286526203, -0.011589929461479187, -0.031703706830739975, -0.002447303617373109, 0.004310591612011194, -0.01633853279054165, 0.003512784605845809, 0.01469772681593895, 0.004074204247444868, -0.014308382757008076, 0.004108967259526253, -0.016866927966475487, -0.022289929911494255, -0.0022839182056486607, 0.02575230784714222, 0.03506874665617943, 0.020190255716443062, -0.0003256843192502856, 0.045636650174856186, 0.0401858389377594, -0.02547420561313629, -0.007108999881893396, 0.004550455138087273, 0.0052561406046152115, -0.017492659389972687, -0.03356699272990227, -0.014106758870184422, -0.0034693309571594, 0.0024733757600188255, -0.04360650107264519, -0.015114881098270416, 0.018535543233156204, 0.02349967695772648, 0.0326770655810833, -0.006302502006292343, 0.011763743124902248, -0.007467057090252638, 0.0032173004001379013, 0.010852957144379616, -0.014544770121574402, -0.016018714755773544, -0.014377908781170845, 0.0018545972416177392, -0.02914516068994999, 0.040742043405771255, -0.0034206630662083626, 0.010693048126995564, 0.0014026804128661752, 0.007369721308350563, -0.027407020330429077, 0.002881839172914624, 0.029534505680203438, -0.019008317962288857, -0.018368681892752647, 0.022554127499461174, 0.0032590157352387905, 0.016672255471348763, -0.03381728753447533, -0.04177102446556091, 0.024139313027262688, 0.026044316589832306, 0.0015591131523251534, -0.000984657322987914, 0.014864588156342506, 0.004025536123663187, 0.003695289371535182, 7.267605542438105e-05, 0.004056822974234819, 0.009712736122310162, -0.007077713496983051, -0.00549600413069129, -0.0009472872479818761, -0.02260974794626236, -0.010255036875605583, -0.009698831476271152, 0.005242235492914915, -0.024904094636440277, 0.019439376890659332, -0.008697661571204662, -0.018368681892752647, 0.013870371505618095, 0.014767252840101719, -0.019258610904216766, -0.012417284771800041, -0.016255101189017296, 0.01718674600124359, -0.029923848807811737, 0.013328070752322674, -0.001097636530175805, 0.006712703499943018, 0.004967608954757452, -0.0007613060879521072, -0.010025601834058762, 0.00038369480171240866, 0.015198311768472195, -0.0022404647897928953, 0.02374996989965439, 0.004856368061155081, -0.003775243880227208, 0.0036257638130337, -0.0025394251570105553, 0.01807667501270771, -0.0028974823653697968, -0.013585316017270088, 0.005774106830358505, -0.010498376563191414, -0.003823912004008889, -0.03164808452129364, -0.04480234161019325, -0.02486238069832325, -0.0178263820707798, -0.019787006080150604, -0.03187056630849838, -0.0037821964360773563, 0.012848343700170517, -0.004637362435460091, -0.019119558855891228, -0.014530865475535393, -0.0009368584142066538, -0.021274855360388756, -0.0071020470932126045, -0.004957180470228195, -0.018618974834680557, -0.015087070874869823, 0.03479064628481865, -0.007905068807303905, 0.018493829295039177, 0.044134896248579025, 0.01846601814031601, 0.010011696256697178, 0.005968778859823942, 0.0031582035589963198, 0.013703510165214539, -0.015893569216132164, 0.01756218448281288, 0.004039441701024771, 0.03657050430774689, 0.022192593663930893, 0.0029583172872662544, 0.009573685005307198, 0.012472905218601227, -0.0007730385405011475, 0.018549449741840363, 0.017631709575653076, -0.008628135547041893, -0.008614230901002884, -0.006139116827398539, 0.03175932541489601, -0.020871605724096298, -0.0019727908074855804, -0.030730346217751503, 0.008496036753058434, 0.011527356691658497, -0.007147239055484533, -0.032565824687480927, -0.039518389850854874, -0.0018233107402920723, 0.049029503017663956, 0.0029357215389609337, -0.025529826059937477, 0.0017494397470727563, 0.0006535412976518273, -0.02409759722650051, 0.03754386305809021, 0.004181968979537487, 0.015587655827403069, -0.01030370406806469, 0.0008438678341917694, 0.0025011859834194183, 0.017284082248806953, -0.011228395625948906, -0.0020092919003218412, -0.013675699010491371, -0.005534243304282427, -0.027546070516109467, -0.007369721308350563, -0.01918908581137657, 0.0297847967594862, -0.0044218325056135654, 0.004609552212059498, -0.01073476392775774, 0.003316374495625496, -9.863954619504511e-05, 0.003622287418693304, 0.023152047768235207, -0.016269007697701454, -0.05283951014280319, 0.0019936487078666687, 0.0025498538743704557, 0.020273685455322266, 0.010338467545807362, -0.001582578057423234, 0.017270175740122795, -0.019022224470973015, -0.014642106369137764, -0.012146134860813618, 0.015309552662074566, -0.003359828144311905, -0.026962054893374443, 0.0043140677735209465, 0.049418848007917404, 0.002186582423746586, 0.01143697276711464, 0.03192618861794472, 0.020301496610045433, -0.0182157251983881, -0.011158870533108711, 0.028978299349546432, 0.0014078948879614472, -0.0020857700146734715, -0.003389376448467374, -0.012097466737031937, 0.013453217223286629, 0.00064007070614025, -0.0010680881096050143, -0.008426511660218239, -0.017979338765144348, 0.025529826059937477, -0.02108018286526203, 0.03568057343363762, 0.00815536081790924, 0.024959715083241463, -0.0009168697870336473, -0.01487849373370409, -0.011638597585260868, 0.006024399306625128, 0.04886263981461525, -0.010081222280859947, -0.03412320092320442, -0.008071930147707462, 0.008064977824687958, -0.03214867040514946, 0.00618430832400918, 0.007418388966470957, 0.01275100838392973, 0.02836647443473339, 0.023179858922958374, -0.0006587557145394385, 0.025057051330804825, -0.01785419136285782, -0.005287427455186844, -0.035346850752830505, 0.029339833185076714, 0.021650293841958046, -0.00012851385690737516, -0.018146200105547905, 0.018688499927520752, 0.0489460714161396, -0.0021709389984607697, -0.014280572533607483, 0.006820468232035637, -0.009073100052773952, -0.022693179547786713, 0.002153557725250721, -0.020565694198012352, -0.0293954536318779, -0.014920208603143692, -0.004845939110964537, -0.01017160527408123, -0.009921313263475895, 0.003778720274567604, 0.05448031425476074, -0.0006491959793493152, -0.013620078563690186, -0.012980442494153976, -0.02914516068994999, 0.01097810361534357, -0.025571541860699654, 0.056315794587135315, -0.007932879030704498, -0.0310362596064806, -0.017993243411183357, 0.0020857700146734715, -0.02986822836101055, -0.02108018286526203, -0.0027427878230810165, -0.023541392758488655, 0.009212151169776917, -0.023138143122196198, 0.014822873286902905, -0.023416245356202126, 0.034874077886343, 0.018994413316249847, -0.014781157486140728, -0.008544704876840115, 0.024653803557157516, -0.019689669832587242, -0.028672385960817337, 0.0036118587013334036, 0.015532034449279308, 0.032704874873161316, -0.006928232964128256, -0.020245876163244247, -0.014669916592538357, 0.05414659157395363, 0.008920143358409405, -0.012737102806568146, -0.016630539670586586, -0.009594542905688286, -0.006531936582177877, 0.03390071541070938, -0.035485900938510895, -0.00489808339625597, 0.018646784126758575, 0.023805590346455574, 0.013481027446687222, 0.018674595281481743, -0.007432294078171253, 0.035235609859228134, 0.011937557719647884, -0.020871605724096298, 0.006305978167802095, 0.021427812054753304, 0.001430490636266768, -0.002381254220381379, 0.02689252980053425, -0.007731254678219557, 0.0025828785728663206, -0.013856465928256512, -0.014795063063502312, -0.016908643767237663, -0.00892709568142891, 0.022637559100985527, -0.0439402237534523, -0.014558675698935986, 0.005781059619039297, 0.00649717403575778, -0.004644314758479595, 0.015156595967710018, 0.02309642732143402, -0.02598869614303112, -0.008315269835293293, -0.02422274462878704, -0.015532034449279308, -0.019550617784261703, -0.009705783799290657, -0.015142691321671009, 0.04939103499054909, -0.009907407686114311, -0.010380182415246964, -0.009698831476271152, 0.005454288795590401, 0.026975959539413452, -0.0013852990232408047, 0.004407927393913269, -0.018938792869448662, 0.01312644686549902, -0.006886517629027367, -0.05158804729580879, -0.02223430946469307, -0.0082874596118927, 0.027281872928142548, 0.004720793105661869, 0.008558610454201698, -0.004241066053509712, 0.022748799994587898, 0.022637559100985527, 0.0026610950008034706, 0.007696491666138172, 0.01425276231020689, 0.014162379316985607, -0.0014869802398607135, -0.004512215964496136, 0.007821638137102127, 0.021177519112825394, -0.02639194391667843, -0.0035631905775517225, 0.008496036753058434, -0.030841587111353874, 0.012424237094819546, -0.008204028941690922, 0.0019328136695548892, 0.011360494419932365, 0.022442886605858803, 0.004289733711630106, 0.02323547936975956, -0.01619948074221611, 0.016519298776984215, -0.009219104424118996, 0.012757960706949234, -0.013022158294916153, -0.0034432588145136833, 0.010776478797197342, -0.027059391140937805, 0.0014504792634397745, -0.015893569216132164, 0.014767252840101719, 0.02824132703244686, -0.03615335002541542, 0.02986822836101055, 0.007543535437434912, -0.040881093591451645, 0.036626122891902924, -0.016727875918149948, -0.03139779344201088, -0.000603569729719311, 0.004268876276910305, -0.020315401256084442, -0.023388436064124107, -0.030480053275823593, -0.013195971958339214, -0.011409162543714046, 0.00744619918987155, -0.02071864902973175, 0.035346850752830505, 0.01292482204735279, -0.013049968518316746, -0.0009264295804314315, -0.02084379643201828, 0.003140822285786271, -0.00454697897657752, -0.004359259735792875, -0.02836647443473339, -0.01785419136285782, -0.00420977920293808, -0.015031450428068638, 0.03515217825770378, 0.01646367833018303, 0.013606173917651176, -0.01959233358502388, -0.013105588965117931, 0.024445226415991783, -0.03632020950317383, -0.00980312004685402, -0.00014828522398602217, 0.005551625043153763, -0.004070728085935116, 0.038239117711782455, 0.010310657322406769, 0.0016816521529108286, 0.020899416878819466, -0.007168096490204334, 0.023763874545693398, -0.007786875125020742, 0.009038337506353855, -0.028157897293567657, 0.00596530269831419, -0.009434633888304234, -0.009100910276174545, -0.01432228833436966, -0.008051072247326374, -0.008308317512273788, 0.027712931856513023, -0.0001964100229088217, 0.00897576380521059, 0.032565824687480927, -0.0647423043847084, 0.01066523790359497, 0.004870273172855377, -0.0019449807005003095, 0.007877258583903313, -0.03173151612281799, -0.010588759556412697, 0.011311826296150684, 0.013049968518316746, -0.016394153237342834, 0.004863320849835873, -0.006712703499943018, -0.0038656273391097784, 0.008920143358409405, 0.00021791952895000577, 0.01733970269560814, -0.00016436303849332035, -0.0038551983889192343, -0.021831059828400612, -0.005464717745780945, 0.011457830667495728, -0.023026902228593826, 0.031091880053281784, 0.015615466050803661, 0.0020666506607085466, -0.0008164920727722347, -0.025933075696229935, -0.027226252481341362, -0.010324561968445778, 0.0017902860417962074, 0.008628135547041893, -0.0168113075196743, -0.03426225110888481, -0.03175932541489601, -0.007675634231418371, 0.02295737713575363, 0.027810268104076385, -0.006681417115032673, 0.00671617966145277, -0.010206368751823902, -0.01117277517914772, -0.005826251115649939, -0.02059350349009037, 0.050809361040592194, 0.008934048935770988, 0.016922548413276672, 0.019536713138222694, -0.003879532450810075, -0.034345682710409164, -0.03651488199830055, -0.008683755993843079, -0.013856465928256512, 0.011457830667495728, 0.041131388396024704, 0.012605004012584686, -0.012146134860813618, 0.017256271094083786, 0.0024629468098282814, -0.011958415620028973, -0.028783626854419708, 0.01796543411910534, 0.008197076618671417, 0.014350098557770252, -0.018007148057222366, 0.026530995965003967, -0.036459263414144516, 0.014419624581933022, 0.009761404246091843, -0.008329175412654877, -0.015476414002478123, -0.006368551403284073, -0.011965367943048477, 0.02586354874074459, -0.0254881102591753, 0.03351137414574623, -0.0047346982173621655, -0.017367511987686157, 0.008753282018005848, -0.03490188717842102, -0.023165954276919365, 0.0036640027537941933, -0.0008091049967333674, 0.03217647969722748, 0.0001549118896946311, -0.016672255471348763, 0.037349190562963486, 0.013001300394535065, 0.003504093736410141, 0.0010307180928066373, -0.0013036063173785806, 0.0476946085691452, -0.009497206658124924, -0.01505926065146923, -0.020760364830493927, 0.017409227788448334, 0.026683952659368515, 0.0015417317626997828, -0.007724301889538765, 0.015893569216132164, -0.021177519112825394, -0.005954873748123646, -0.010032554157078266, -0.006674464326351881, 0.030591296032071114, -0.003479759907349944, 0.006636225152760744, -0.0323711521923542, -0.02096894197165966, 0.0008612492238171399, 0.014238857664167881, -0.035374660044908524, -0.005231806542724371, 0.0005423002294264734, -0.015392983332276344, 0.04093671590089798, 0.018174011260271072, -0.017297986894845963, -0.0035944771952927113, 0.04254971072077751, -0.0314256027340889, 0.02085770107805729, 0.0045782653614878654, 0.004845939110964537, -0.04029707983136177, -0.005770630668848753, 0.011937557719647884, -3.631086656241678e-05, 0.020621314644813538, -0.011694218032062054, -0.00041020146454684436, -0.010776478797197342, 0.023263288661837578, 0.03365042433142662, -0.006139116827398539, 0.022818325087428093, 0.016505394130945206, 0.005165757145732641, 0.005600292701274157, -0.014739442616701126, -0.012869201600551605, 0.007766017224639654, -0.014176283963024616, 0.00980312004685402, -0.025418585166335106, -0.017242366448044777, 0.028449904173612595, -0.03289954736828804, -0.025933075696229935, 0.014516959898173809, -0.01432228833436966, -0.017659520730376244, 0.029812607914209366, -0.012507667765021324, -0.008384795859456062, 0.011221443302929401, -0.008572515100240707, -0.011430020444095135, 0.00866985134780407, -0.019258610904216766, 0.007348863407969475, -0.013209877535700798, -0.005176186095923185, 0.019661860540509224, -0.0028557670302689075, 0.021066278219223022, -0.028533335775136948, -0.04093671590089798, 0.005471670068800449, -0.0168113075196743, -0.04630409553647041, -0.015601560473442078, -0.008947953581809998, 0.020899416878819466, 0.010741716250777245, -0.03203742951154709, -0.022901756688952446, -0.010964198037981987, -0.03506874665617943, -0.004779889713972807, -0.015240026637911797, 0.029729176312685013, 0.009698831476271152, -0.009643210098147392, -0.003737004706636071, 0.024389605969190598, -0.024834569543600082, 0.008920143358409405, -0.020927226170897484, 0.006844802293926477, -0.01487849373370409, -0.021427812054753304, 0.0261138416826725, -0.013390644453465939, -0.025404680520296097, -0.01873021572828293, 0.009080052375793457, -0.015559845604002476, -0.010574854910373688, 0.00809278804808855, -0.012459000572562218, -0.004053346812725067, -0.02159467339515686, -0.01757608912885189, -0.015851853415369987, 0.010380182415246964, 0.0031234407797455788, -0.01882755197584629, -0.014975829049944878, -0.013849513605237007, 0.017534373328089714, -0.024403510615229607, 0.009587589651346207, 0.011582977138459682, 0.005353476852178574, -0.003695289371535182, 0.005715010222047567, 0.02171981893479824, -0.014948018826544285, 0.010846004821360111, 0.030480053275823593, 0.031230932101607323, 0.0052735223434865475, 0.023082522675395012, 0.009344249963760376, 0.008106693625450134, -0.01695035770535469, 0.00023095558572094887, -0.009219104424118996, 0.0034867124632000923, 0.004022059962153435, -0.0007143762777559459, 0.012542431242763996, -0.005979207810014486, 0.008565562777221203, -0.010776478797197342, 0.014475245028734207, -0.013974660076200962, -0.023318909108638763, -0.05584301799535751, -0.0009299058583565056, 0.02626679837703705, -0.03629240021109581, -0.005892300512641668, -0.002909649396315217, -0.021149709820747375, 0.004595646634697914, -0.008259649388492107, 0.020009487867355347, -0.03832254931330681, -0.007529630325734615, -0.014308382757008076, 0.013828655704855919, -0.024292269721627235, -0.018243536353111267, 0.0045574079267680645, -0.013043016195297241, -0.018883172422647476, 0.24028071761131287, -0.007543535437434912, -0.01656101457774639, 0.02961793541908264, -0.007397531531751156, 0.006584080867469311, 0.001739879953674972, 0.001057659275829792, 0.0014061566907912493, 0.006987330038100481, 0.0012575455475598574, -0.01393989659845829, -0.00816231407225132, 0.010769526474177837, -0.007884210906922817, -0.02336062490940094, -0.04252190142869949, -0.021622484549880028, -0.009031384252011776, 0.0010376706486567855, 0.01898050867021084, -0.01843820884823799, 0.00809278804808855, -0.011805458925664425, 0.010720858350396156, -0.009990839287638664, -0.00467560114338994, 0.005051040090620518, 0.03356699272990227, 0.0024038499686867, -0.01683911681175232, -0.007578297983855009, 0.005311761051416397, -0.005958349909633398, -0.029840417206287384, -0.017603900283575058, 0.027128916233778, 0.007550487760454416, 0.021274855360388756, 0.01757608912885189, -0.014989734627306461, -0.0025880930479615927, -0.011541261337697506, -0.009810072369873524, -0.011506498791277409, 0.01856335438787937, -0.03632020950317383, 0.00855165719985962, -0.02159467339515686, 0.01619948074221611, -0.04635971784591675, -0.025668878108263016, 0.03086939826607704, -0.010206368751823902, -0.01633853279054165, -0.01707550510764122, 0.02135828696191311, -0.0005144899478182197, -0.0035736195277422667, 0.0064033144153654575, -0.028839249163866043, 0.026795193552970886, 0.008558610454201698, 0.023791683837771416, -0.022373361513018608, -0.008920143358409405, -0.014405719004571438, 0.012903964146971703, -0.007828590460121632, -0.01668616011738777, -0.02348577231168747, 0.00671965628862381, -0.0013653103960677981, -0.008565562777221203, -0.03467940539121628, -0.04371774196624756, 0.01781247742474079, 0.0290061105042696, -0.016046524047851562, 0.015003640204668045, 0.000601831590756774, -0.01355055347084999, -0.001241902238689363, 0.022748799994587898, -0.01526783686131239, -0.011402210220694542, 0.016547109931707382, -0.012271281331777573, 0.01693645305931568, 0.025265628471970558, -0.008037167601287365, -0.016630539670586586, -0.004790318664163351, 0.008370891213417053, -0.00618430832400918, 0.01959233358502388, 0.005760201718658209, 0.009330345317721367, 0.010401040315628052, -0.00019119559146929532, -0.029451074078679085, 0.024556467309594154, -0.0023934212513267994, -0.004265400115400553, 0.0075713456608355045, -0.01092943549156189, -0.019508903846144676, -0.0071889543905854225, 0.00886452291160822, -0.026572711765766144, 0.007487914524972439, -0.05089279264211655, 0.006132164038717747, -0.003667479148134589, 0.004845939110964537, -0.010700000450015068, 0.0018719786312431097, -0.020023392513394356, 0.009114815853536129, -0.015740612521767616, 0.018521638587117195, -0.016004810109734535, -0.0015982213662937284, 0.030424432829022408, -0.010081222280859947, -0.009476348757743835, -0.011756790801882744, 0.0002726709935814142, 0.021427812054753304, -0.04635971784591675, 0.008085835725069046, -0.03746043145656586, 0.060348283499479294, -0.0211079940199852, -0.012716244906187057, -0.005103184375911951, 0.00046234572073444724, 0.007147239055484533, -0.023555297404527664, -0.0013852990232408047, -0.0010385396890342236, -0.018674595281481743, 0.012841391377151012, 0.0030261047650128603, -0.0257244985550642, -7.995452324394137e-05, -0.01412066351622343, 0.01030370406806469, 0.003879532450810075, -0.012632814235985279, -0.025766214355826378, -0.043884605169296265, 0.013362834230065346, -0.0002683256461750716, 0.01619948074221611, -0.017033789306879044, 0.0027949318755418062, -0.04341182857751846, 0.02322157472372055, 0.006956043187528849, -0.020009487867355347, -0.031981807202100754, 0.020941132679581642, 0.005057992413640022, -0.007272385060787201, -0.015893569216132164, -0.1749822050333023, 0.015476414002478123, 0.04357869178056717, -0.040630802512168884, 0.01832696609199047, -0.02085770107805729, 0.01212527696043253, 0.014155426993966103, -0.013098636642098427, -0.012535478919744492, 0.015017544850707054, 0.017895907163619995, -0.037488240748643875, -0.013988564722239971, 0.006858707405626774, -0.016352437436580658, -0.030452243983745575, 0.014183237217366695, 0.047805849462747574, 0.02224821411073208, 0.032843928784132004, -0.002520305570214987, -0.01381475105881691, 0.04254971072077751, 0.016519298776984215, 0.017659520730376244, -0.014516959898173809, -0.013223782181739807, 0.02287394553422928, -0.011165822856128216, -0.0008951430208981037, 0.005228330381214619, 0.0028522906359285116, 0.014795063063502312, -0.016366342082619667, 0.0006461542216129601, 0.0019536714535206556, 0.02461208775639534, -0.03351137414574623, 0.0032572776544839144, -0.013376738876104355, 0.016408057883381844, 0.0040185838006436825, 0.0016547109698876739, 0.004710364155471325, -0.005565530154854059, 0.00658755749464035, -0.009990839287638664, 0.025807928293943405, -0.033094219863414764, -0.012076608836650848, -0.042382847517728806, 0.03014633059501648, 0.0025446396321058273, 0.045775700360536575, 0.019800910726189613, -0.003938629291951656, 0.0447189100086689, 0.01772904582321644, -0.03837817162275314, -0.008280507288873196, -0.030813777819275856, 0.017228461802005768, -0.010255036875605583, -0.012778818607330322, 0.024055881425738335, -0.029339833185076714, 0.003424139227718115, -0.03139779344201088, -0.0033789474982768297, 0.012514621019363403, -0.021191423758864403, 0.01832696609199047, -0.02397245168685913, 0.0064241718500852585, 0.017979338765144348, -0.007946784608066082, 0.0005483837448991835, 0.026572711765766144, 0.0007552225724793971, -0.043244969099760056, 0.045024823397397995, -0.008572515100240707, -0.017742950469255447, 0.05322885513305664, 0.014051138423383236, 0.021650293841958046, 0.011068486608564854, 0.003994249738752842, 0.007067284546792507, 0.023944640532135963, -0.03426225110888481, 0.028700197115540504, -0.00445659551769495, 0.0071889543905854225, 0.009066147729754448, -0.018034959211945534, -0.02536296471953392, -0.010310657322406769, -0.005621150601655245, 0.01959233358502388, -0.020635219290852547, -0.023263288661837578, 0.03164808452129364, -0.017033789306879044, 0.01918908581137657, -0.015851853415369987, 0.013724367134273052, 0.04196569323539734, 0.02071864902973175, -0.011228395625948906, 0.0007626097067259252, 0.023944640532135963, 0.01432228833436966, -0.004484405741095543, 0.02109408937394619, -0.029033919796347618, -0.008801950141787529, 0.00960149522870779, 0.011332684196531773, 0.009990839287638664, -0.0003710932796820998, 0.015462509356439114, 0.02398635633289814, 0.0016486274544149637, -0.00841955840587616, -0.03957401216030121, -0.008899285458028316, -0.007939831353724003, 0.009344249963760376, -0.00035783994826488197, 0.0306469164788723, -0.013738272711634636, 0.020941132679581642, -0.032343342900276184, 0.02397245168685913, -0.022554127499461174, -0.023444056510925293, -0.005645484663546085, -0.004140253644436598, 0.025585446506738663, 0.025905264541506767, -0.025766214355826378, -0.003650097642093897, 0.012945679947733879, 0.031064068898558617, -0.013724367134273052, -0.006844802293926477, -0.007842496037483215, -0.020037299022078514, 0.00467907777056098, -0.0028540287166833878, -0.037877585738897324, 0.0053048087283968925, 0.023777779191732407, 0.005110136698931456, 0.03390071541070938, 0.0053743342868983746, 0.016116051003336906, -0.001623424468562007, -0.03403976932168007, 0.00483551062643528, -0.03164808452129364, -0.018771931529045105, 0.02914516068994999, -0.01149954553693533, 0.01658882573246956, 0.015504224225878716, -0.007108999881893396, -0.010755620896816254, 0.0053430479019880295, -0.053701627999544144, -0.024528656154870987, 0.016922548413276672, 0.009782262146472931, -0.0049224174581468105, -0.03790539503097534, 0.0021014134399592876, 0.02623898908495903, -0.02299909107387066, 0.01543469913303852, 0.013195971958339214, -0.0030087234918028116, 0.007842496037483215, -0.022915661334991455, 0.04697154462337494, -0.0022039636969566345, 0.0012975228019058704, -0.001770297414623201, -0.005694152321666479, 0.010387135669589043, 0.0026228558272123337, -0.03212086111307144, -0.022053543478250504, 0.03626459091901779, 0.03187056630849838, 0.0050301821902394295, 0.01945328339934349, -0.006549318321049213, 0.010102080181241035, -0.01856335438787937, -0.013070826418697834, -0.024139313027262688, -0.0012992609990760684, 0.00536738196387887, -0.01859116367995739, 0.0025498538743704557, 0.0026645713951438665, -0.025418585166335106, -0.0021761534735560417, 0.021692009642720222, 0.0031842757016420364, 0.016644446179270744, -0.0060591623187065125, 0.008141456171870232, -0.018660690635442734, -0.003851722227409482, 0.011916699819266796, 0.015782326459884644, -0.022651463747024536, 0.005502956919372082, 0.0029982945416122675, -0.010004743933677673, -0.005767154507339001, 0.005023229867219925, 0.025919169187545776, -0.0326770655810833, -0.015976998955011368, -0.08493255823850632, 0.0376829132437706, 0.019536713138222694, 0.018521638587117195, 0.021427812054753304, -0.015017544850707054, -0.002803622744977474, 0.00716114416718483, 0.004512215964496136, -0.021566862240433693, -0.022943470627069473, 0.003942105453461409, 0.0049224174581468105, -0.01870240457355976, -0.020523978397250175, -0.03751605376601219, 0.02398635633289814, 0.004731222055852413, 0.05459155514836311, 0.018660690635442734, 0.031953997910022736, 0.009372060187160969, 0.03904561698436737, 0.017395323142409325, -0.004682553932070732, -0.003232943592593074, -0.016894737258553505, 0.02249850705265999, -0.02334672026336193, 0.007105523720383644, 0.008169266395270824, -0.03148122504353523, -0.0025846168864518404, 0.04249408841133118, 0.017979338765144348, -0.015851853415369987, 0.01596309430897236, 0.003879532450810075, 0.03353918343782425, -0.008426511660218239, -0.027073295786976814, -0.021942302584648132, 0.009566732682287693, -0.0071889543905854225, -0.0073280055075883865, -0.014419624581933022, 0.007946784608066082, 0.001844168407842517, -0.008961859159171581, 0.003253801492974162, 0.013585316017270088, 0.002900958526879549, 0.00885061826556921, -0.007039474323391914, -0.010595711879432201, -0.04357869178056717, 0.013953802175819874, 0.003580572083592415, -0.010282847099006176, -0.017353607341647148, 0.02537686936557293, 0.02060740813612938, 0.012493763118982315, -0.007953736931085587, -0.001703378977254033, 0.010679143480956554, -0.03726575896143913, -0.010317609645426273, 0.011659454554319382, -0.007042950484901667, -0.005749772768467665, 0.005402144510298967, 0.007487914524972439, 0.027407020330429077, 0.011520403437316418, 0.004759032279253006, -0.013828655704855919, -0.006660559214651585, -0.027309684082865715, 0.027434829622507095, 0.02636413462460041, -0.004974561743438244, -0.037988826632499695, 0.030674725770950317, 0.05064249783754349, -0.04182664304971695, -0.02134438045322895, 0.022387266159057617, -0.011443925090134144, -0.013029110617935658, -0.00948330108076334, 0.013654842041432858, -0.010706953704357147, 0.00293745961971581, 0.03200962021946907, 0.01248681079596281, 0.008141456171870232, -0.015615466050803661, 0.021539052948355675, 0.027184536680579185, 0.011708122678101063, 0.009476348757743835, 0.004418356344103813, 0.006344217341393232, -0.030424432829022408, 0.016018714755773544, -0.017659520730376244, -0.04374555125832558, -0.020398830994963646, -0.03053567372262478, -0.010519234463572502, 0.016296816989779472, -0.014016374945640564, 0.0076408712193369865, -0.0013696557143703103, -0.014336192980408669, 0.006156498100608587, 0.013919039629399776, -0.017367511987686157, 0.03765510395169258, 0.0018719786312431097, 0.025196103379130363, 0.017520468682050705, -0.017979338765144348, 0.014002470299601555, 0.02462599240243435, 0.01895269751548767, -0.013140351511538029, 0.010102080181241035, 0.009900455363094807, -0.01072781067341566, -0.00816231407225132, -0.005419526249170303, -0.014280572533607483, -0.0011350065469741821, 0.006796134170144796, 0.0001005949525278993, 0.030368812382221222, -0.006618843879550695, 0.08660117536783218, 0.0073280055075883865, 0.007425341755151749, -0.014656011015176773, -0.01061656977981329, 0.021928396075963974, 0.017172841355204582, -0.002909649396315217, -0.03167589381337166, -0.018021054565906525, 0.002567235380411148, -0.01386341918259859, -0.0036118587013334036, -0.027434829622507095, 0.011715075932443142, -0.018549449741840363, -0.037877585738897324, 0.01487849373370409, 0.03262144327163696, 0.0038378171157091856, 0.030674725770950317, -0.013731320388615131, 0.022804420441389084, 0.005582911428064108, 0.016004810109734535, -0.0017520468682050705, 0.008572515100240707, -0.020663028582930565, -0.004609552212059498, 0.006417219527065754, 0.005721962545067072, 0.02184496633708477, -0.007821638137102127, -0.030674725770950317, -0.029951658099889755, -0.02986822836101055, -0.009309487417340279, 0.010373230092227459, 0.052060823887586594, 0.022832229733467102, -0.02473723329603672, 0.006132164038717747, -0.02322157472372055, -0.026781288906931877, 0.0005918372771702707, 0.024153217673301697, -0.005019753240048885, -0.01873021572828293, -0.02739311382174492], "f45620fd-aa92-4c7d-b48b-1b70fc3622ea": [-0.017670458182692528, -0.015482686460018158, 0.011759269051253796, -0.005465921480208635, -0.03449946641921997, 0.023770973086357117, -0.00033307410194538534, 0.02471059188246727, 0.01748814433813095, -0.03609821945428848, 0.0026382976211607456, 0.005588633008301258, 0.0008716899901628494, 0.0032588671892881393, -0.02027895301580429, -0.006082985084503889, 0.011408664286136627, -0.03472385182976723, 0.017137538641691208, -0.038650620728731155, -0.002725948579609394, 0.015258300118148327, -0.023714875802397728, 0.0002612002135720104, -0.010181549936532974, -0.013021444901823997, 0.007026110775768757, -0.024374011904001236, 0.013911979272961617, -0.02577642910182476, 0.0164784025400877, 0.004242312163114548, -0.023167934268712997, -0.005273088812828064, -0.004582398571074009, -0.034948237240314484, -0.016800958663225174, 0.00464550731703639, -0.003029221436008811, 0.001810871297493577, 0.01422752346843481, -0.01974603533744812, 0.007110255770385265, 0.004067010246217251, -0.007545005064457655, 0.001178030506707728, -0.01209584902971983, -0.008596817962825298, -0.0048523638397455215, 0.012607731856405735, -0.0025050679687410593, 0.028132490813732147, -0.019339334219694138, -0.01973201148211956, 0.025538017973303795, 0.010602274909615517, -0.002443712204694748, 0.021176500245928764, -0.02350451424717903, -0.02694043517112732, 0.004424626473337412, 0.009389183484017849, -0.03245193511247635, 0.020741751417517662, 0.0037935387808829546, 0.013070529326796532, -0.026673976331949234, -0.007243485189974308, -0.013519302941858768, 0.016057677567005157, 0.00792365800589323, 0.03197511285543442, 0.019984446465969086, 0.01872227154672146, 0.023742925375699997, -0.012930287048220634, 0.004140636883676052, -0.002280681161209941, -0.001360344816930592, 0.019100923091173172, 0.013792773708701134, -0.01424855925142765, -0.00314492080360651, -0.011710184626281261, 2.5322944566141814e-05, 0.004322951193898916, -0.013294915668666363, 0.03604212403297424, -0.009157785214483738, -0.030937325209379196, 0.001956372056156397, -0.005823537707328796, -0.012348284013569355, -0.0003571781562641263, 0.0032623731531202793, 0.0063073718920350075, -0.0021702407393604517, 0.0397164560854435, -0.008716023527085781, -0.01701132208108902, -0.0006534387939609587, 0.01810520701110363, -0.021260645240545273, 0.0110089760273695, -0.00239988649263978, 0.005697320215404034, 0.0037199119105935097, -0.02026492916047573, -0.0076221381314098835, -0.04013718292117119, -0.019311286509037018, 0.0027592559345066547, 0.004077528137713671, -0.0005522018182091415, -0.018568005412817, -0.007615125738084316, 0.005472933407872915, 0.003572657937183976, -0.015118058770895004, -0.009908078238368034, 0.018834464251995087, 0.015454638749361038, 0.0031712159980088472, -0.013897955417633057, 0.0017468860605731606, 0.006272311322391033, -0.031554389744997025, -0.01810520701110363, 0.011962619610130787, -0.003339506220072508, 0.034892141819000244, 0.009943138808012009, 0.01917104423046112, 0.013329976238310337, -0.016899127513170242, 0.026631904765963554, -0.013883931562304497, -0.009515400975942612, -0.001690789358690381, -0.005837562028318644, 0.011086109094321728, 0.02022285759449005, -0.007036628667265177, -0.012986384332180023, -0.0021299212239682674, 0.0021106379572302103, 0.01403819676488638, 0.023266103118658066, -0.006756145041435957, 0.007033122703433037, 0.03637870401144028, -0.011745245195925236, 0.017656434327363968, -0.0071593401953577995, -0.004575386177748442, -0.005311655346304178, -0.004421120509505272, -0.006759651470929384, -0.002704912330955267, -0.015665000304579735, -0.012783033773303032, 0.0137436892837286, 0.01654852367937565, 0.016702789813280106, 0.007068183273077011, 0.03183487057685852, -0.00451227743178606, 0.006181154400110245, 0.008091947995126247, 0.005855092313140631, -0.016296088695526123, 0.022312458604574203, -0.029394665732979774, 0.014907695353031158, -0.010490081273019314, 0.014963792636990547, -0.00793768186122179, -0.003800550941377878, -0.018974706530570984, -0.02255086973309517, -0.015791218727827072, -0.0009536437573842704, 0.014430874027311802, 0.02134479023516178, -0.013624483719468117, 0.004841845482587814, 0.027655668556690216, 0.010258682072162628, 0.0038285991176962852, -0.017263757064938545, 0.016829008236527443, 0.014935743995010853, 0.013245831243693829, 0.0024542303290218115, -0.6193074584007263, -0.0092840027064085, -0.010840686038136482, 0.019507624208927155, 0.006686024367809296, 0.008968458510935307, 0.009185832925140858, 0.01344918180257082, -0.01231322344392538, 0.01804910972714424, -0.0006762280827388167, 0.02856723964214325, -0.015314396470785141, -0.010707455687224865, -0.015833290293812752, -0.015524758957326412, -0.007411775179207325, -0.04131521284580231, 0.004182709380984306, -0.006840290501713753, -0.015721097588539124, 0.02083992026746273, -0.02135881595313549, 0.008737059310078621, 0.022887449711561203, 0.010405936278402805, -0.00022789281501900405, -0.0019107935950160027, -0.018539955839514732, 0.023350248113274574, -0.005984815768897533, 0.014430874027311802, 0.0072995820082724094, 0.02148503251373768, 0.05918201059103012, -0.011275434866547585, -0.020110663026571274, 0.03668723627924919, -0.016800958663225174, 0.03615431860089302, -0.017095467075705528, -0.028665408492088318, 0.02037712372839451, -0.0023174944799393415, -0.0028416479472070932, 0.004147649277001619, 0.00521699246019125, -0.04109082743525505, 0.006188166327774525, 0.021555153653025627, -0.005476439371705055, -0.02079784870147705, -0.016141822561621666, -0.00959954597055912, -0.014711357653141022, -0.015005865134298801, 0.029310520738363266, -0.03738844394683838, 0.008358406834304333, 0.005820031743496656, -7.510602154070511e-05, 0.01750216819345951, -0.01803508587181568, -0.012292187660932541, -0.023448416963219643, -0.0007244361913762987, -0.016730837523937225, 0.004417614545673132, 0.02197587862610817, -0.0018284015823155642, -0.010027283802628517, 0.0140311848372221, -0.00028311298228800297, -0.006675506476312876, 0.016772910952568054, 0.026463614776730537, 0.04395175725221634, 0.015005865134298801, 0.002089601708576083, 0.04437248408794403, 0.013568387366831303, -0.020587485283613205, -0.01181536540389061, -0.00010923515947069973, 0.01870824582874775, -0.030292212963104248, -0.036462850868701935, 0.00014900683891028166, 0.008176092989742756, -0.011724208481609821, 0.0034622177481651306, 0.003856647526845336, 0.01855398155748844, -0.01101598795503378, -0.0017609101487323642, 0.0290019903331995, -0.03968840837478638, -0.01347021758556366, 0.011597990989685059, -0.015665000304579735, -0.009045591577887535, 0.003455205587670207, 0.00037470838287845254, 0.01692717708647251, 0.019970422610640526, 0.01180835347622633, -0.012754985131323338, 0.021681372076272964, 0.03621041402220726, -0.014486970379948616, 0.024906931445002556, 0.009452292695641518, -0.008758096024394035, -0.008737059310078621, -0.011128181591629982, -0.037584781646728516, 0.029927585273981094, -0.007678234484046698, -0.0061776479706168175, 0.005655247718095779, 0.029759295284748077, 0.027823958545923233, 0.018848488107323647, 0.005613175220787525, -0.007439823821187019, 0.017740579321980476, -0.0011087862076237798, -0.018427763134241104, -0.002585706766694784, 0.00021266343537718058, 0.010875745676457882, -0.0024139108136296272, 0.03548115864396095, -0.011590979062020779, 0.005879634525626898, 0.005115317180752754, 0.012818094342947006, -0.01343515794724226, 0.021527105942368507, -0.02521546371281147, -0.027305064722895622, 0.003951310645788908, 0.012502550147473812, -0.020531389862298965, -0.02637946978211403, -0.0407261997461319, -0.01588938757777214, -0.0008865906856954098, 0.00673510879278183, -0.021667346358299255, 0.006973519921302795, -0.006910411175340414, -0.01800703816115856, 0.029759295284748077, 0.008645902387797832, -0.002633038442581892, 0.019900301471352577, -0.0014962039422243834, -0.031049517914652824, -0.029170280322432518, -0.020166760310530663, -0.002065059496089816, -0.01968993805348873, 0.004273866768926382, -0.011892498470842838, -0.04064205288887024, 0.010819649323821068, 0.010391912423074245, -0.011710184626281261, -0.020110663026571274, -0.005893658846616745, -0.0019686431623995304, -0.015244276262819767, 0.007776403799653053, 0.019900301471352577, 0.0019195586210116744, -0.006542276591062546, -0.00672459090128541, 0.033237289637327194, -0.013764725998044014, 0.009157785214483738, -0.019605793058872223, -0.031582437455654144, 0.0007077824557200074, 0.011555918492376804, -0.004761206451803446, 0.013351012952625751, 0.005630705505609512, -0.020615534856915474, 0.019717987626791, -0.010994951240718365, 0.024906931445002556, -0.0002047748421318829, 0.008926386013627052, 0.024051455780863762, 0.004252830520272255, 0.022719159722328186, -0.0004531560989562422, -0.0071628461591899395, 0.02353256195783615, 0.009255954064428806, -0.0069665079936385155, -0.014115329831838608, -0.01372265350073576, 0.013933015987277031, 0.005146871320903301, -0.015047937631607056, -0.013098577037453651, 0.01800703816115856, -0.0074959201738238335, -0.011051048524677753, -0.013407109305262566, -0.012951323762536049, -0.015342445112764835, -0.0011552412761375308, 0.026673976331949234, -0.007587077561765909, 0.01928323693573475, -0.021597227081656456, -0.007608113810420036, 0.015707073733210564, -0.038173798471689224, 0.019493600353598595, -0.010539165697991848, 0.017305828630924225, -0.01095287874341011, 0.020727727562189102, 0.011745245195925236, -0.0015365234576165676, 0.019030801951885223, -0.03909939527511597, -0.0020580473355948925, -0.005392294377088547, -0.004063504282385111, -0.0241776742041111, -0.0019125465769320726, 0.037023816257715225, -0.03242388740181923, 0.02311183698475361, 0.015538783743977547, 0.0022175724152475595, 0.03298485279083252, -0.008884313516318798, -0.003635766915977001, -8.973279182100669e-05, 0.009480340406298637, 0.044709064066410065, -0.0027873043436557055, -0.0033745665568858385, 0.008666939102113247, -0.005150377284735441, 0.01208883710205555, 0.0035936941858381033, 0.004382553976029158, 0.011044035665690899, -0.004908460658043623, 0.01182237733155489, 0.008463588543236256, 0.01866617426276207, 0.02141491137444973, 0.013245831243693829, -2.933572068286594e-05, 0.0006595744052901864, 0.0008537215180695057, 0.0025541523937135935, -0.005834056064486504, 0.01209584902971983, -0.006356456317007542, -0.027164822444319725, 0.003853141563013196, 0.0012393862707540393, 0.00615310575813055, 0.015258300118148327, -0.015047937631607056, 0.017824724316596985, -0.009220893494784832, 0.01985822804272175, 0.02751542627811432, 0.009620582684874535, -0.008302310481667519, -0.020867969840765, -0.031049517914652824, 0.01973201148211956, 0.030516600236296654, -0.002822364680469036, -0.005360740236938, 0.02034907415509224, 0.011359579861164093, -0.01968993805348873, 0.008127008564770222, 0.013393085449934006, 0.000589891744311899, -0.0065072160214185715, -0.009515400975942612, -0.006409047171473503, 0.0224527008831501, 0.027599571272730827, -0.0006179400952532887, -0.022256363183259964, 0.009234918281435966, -0.01656254753470421, -0.004186215810477734, -0.007138303946703672, -0.017880819737911224, 0.013084553182125092, -0.0017679223092272878, 0.030825132504105568, -0.009627594612538815, -0.0034254041966050863, 0.008596817962825298, -0.0029047566931694746, 0.0008033221238292754, -0.009802896529436111, -0.018988730385899544, -0.00795871764421463, 0.02529960870742798, -0.0023630731739103794, -0.005406318698078394, 0.021232597529888153, 0.001970396377146244, -0.02023688144981861, -0.014683309011161327, -0.020517364144325256, -0.007720306981354952, 0.017403999343514442, 0.018876535817980766, 0.007096231449395418, -0.005174919962882996, -0.017810698598623276, 0.010889770463109016, -0.01539854146540165, -0.037079911679029465, -0.010027283802628517, 0.019142996519804, 0.001574213383719325, -0.003614730667322874, 0.025005100294947624, -0.019535671919584274, -0.0035533749032765627, 0.004883917979896069, 0.0140311848372221, -0.019591769203543663, 0.01539854146540165, 0.00853370875120163, -0.0071347979828715324, -0.015440613962709904, 0.01918506808578968, 0.02956295572221279, -0.008295298554003239, -0.008274261839687824, 0.013827834278345108, 0.0407261997461319, 0.020166760310530663, -0.005525524262338877, 0.0073276301845908165, -0.014711357653141022, -0.013540338724851608, 0.012194017879664898, -0.011948594823479652, 0.0007686999742873013, -0.000265363632934168, 0.026000816375017166, 0.01066538318991661, 0.020082615315914154, 0.01863812655210495, 0.03890305384993553, 0.00959954597055912, -0.017796674743294716, -0.0159034114331007, 4.8454614443471655e-05, 0.02249477244913578, 0.020124688744544983, -0.003364048432558775, 0.0014217005809769034, 0.01404520869255066, 0.011633051559329033, -0.024458156898617744, 0.0030274682212620974, 0.016814982518553734, -0.00016335969849023968, -0.01925518922507763, -0.016113774850964546, 0.003406120929867029, -0.018988730385899544, -0.01696924865245819, -0.027080677449703217, 0.02859528921544552, -0.021751491352915764, -0.016576571390032768, -0.023813044652342796, -0.017866795882582664, -0.050122395157814026, -0.021442960947752, -0.006854314357042313, 0.01869422197341919, -0.030881227925419807, -0.022130144760012627, -0.008680962957441807, 0.017179612070322037, 0.01094586681574583, 0.003506043227389455, 0.0024349470622837543, -0.0032816564198583364, 0.027823958545923233, -0.02026492916047573, -0.02527155913412571, -0.011380616575479507, -0.022817328572273254, -0.013119613751769066, 0.01692717708647251, 0.0005789353745058179, -0.0025962248910218477, 0.02200392633676529, 0.008954434655606747, 0.005213486030697823, -0.02079784870147705, 0.034807998687028885, 0.00478224316611886, -0.00056359643349424, 0.019311286509037018, 0.005658753681927919, 0.01559488009661436, -0.007418787572532892, -0.016239991411566734, -0.012909251265227795, -0.025383753702044487, -0.03276046738028526, 0.0034674766939133406, 0.008631878532469273, -0.007811464369297028, 0.016043653711676598, 0.009704727679491043, -0.0074889082461595535, -0.0049926056526601315, 0.039772555232048035, -0.04327859729528427, 0.00687885656952858, -0.004473711363971233, 0.005763934925198555, 0.023883165791630745, 0.013035468757152557, 0.033153142780065536, 0.005907682701945305, -0.009683690965175629, -0.004947027191519737, -0.003954816609621048, 0.0328165628015995, 0.004880412016063929, -0.017698505893349648, -0.0040319496765732765, 0.0012840883573517203, -0.0319470651447773, -0.0024331940803676844, 0.006959495600312948, -0.010574226267635822, 0.030404407531023026, -0.006054936442524195, -0.013498266227543354, -0.037556733936071396, -0.0012726937420666218, -0.026169106364250183, 0.0005758675979450345, -0.008933397941291332, -0.006815747823566198, -0.022130144760012627, -0.049617525190114975, 0.029506860300898552, -0.014893671497702599, 0.016674742102622986, -0.013568387366831303, -0.007502932567149401, 0.020629558712244034, 0.02036309987306595, 0.022312458604574203, 0.008933397941291332, -0.010237646289169788, -0.012327248230576515, 0.014935743995010853, -0.011317507363855839, -0.03362996503710747, 0.009936126880347729, -0.012137921527028084, 0.010356851853430271, -0.0010956384940072894, 0.0319470651447773, 0.008449563756585121, 0.009739788249135017, -0.010041307657957077, 0.012544622644782066, 0.010342827066779137, 0.0002655827847775072, -0.0040319496765732765, -0.004585904534906149, 0.00779744004830718, 0.00389872002415359, 0.018497884273529053, 0.011471773497760296, 0.012811081483960152, -0.01974603533744812, 0.012067800387740135, -0.0072995820082724094, -0.008148044347763062, -0.012776021845638752, -0.03407873958349228, 0.012747973203659058, 0.003199264407157898, -0.00464901328086853, -0.020124688744544983, -0.05435769259929657, -0.013989112339913845, 0.00225438573397696, 0.013911979272961617, 0.00465602520853281, 0.00029209721833467484, 0.00450526550412178, -0.032003164291381836, 0.01401014905422926, -0.027277017012238503, 0.01210286095738411, 0.007250497583299875, 0.012418405152857304, 0.012544622644782066, 0.014164414256811142, 0.032003164291381836, -0.010763552971184254, 0.028973940759897232, -0.002191276988014579, -0.006258287001401186, -0.006384504493325949, -0.004322951193898916, -0.018315570428967476, -0.010980927385389805, -0.008435539901256561, -0.01537049375474453, -0.02364475466310978, -0.030909277498722076, -0.003511302173137665, -0.0301519725471735, 0.015580856241285801, 0.00958552211523056, -0.004722640383988619, 0.018750319257378578, -0.006619409658014774, 0.004768218845129013, -0.005090774968266487, -0.02145698480308056, 0.04179203510284424, 0.002657580655068159, 0.005497475620359182, 0.02420572191476822, 0.005413330625742674, -0.021134428679943085, -0.04992605373263359, 0.0022894463036209345, 0.005872622597962618, 0.02420572191476822, 0.0301519725471735, 0.011044035665690899, -0.003215041710063815, 0.01703936979174614, 0.006345938425511122, -0.020180784165859222, -0.03688357397913933, 0.01315467432141304, 0.006324902176856995, 0.005462415516376495, -0.004887424409389496, 0.023195981979370117, -0.0014541314449161291, -0.0048628817312419415, -0.0001664274896029383, -0.001433971687220037, -0.018301544710993767, -0.02350451424717903, -0.010980927385389805, -0.011990668252110481, -0.006268805358558893, -0.006920929532498121, 0.016604620963335037, -0.019717987626791, 0.003968840930610895, -0.002356061013415456, -0.0061706360429525375, 0.02250879816710949, -0.007453847676515579, 0.05146871507167816, -0.004347493406385183, -0.02903003804385662, 0.02032102644443512, 0.01231322344392538, -0.0006766663282178342, -0.006061948835849762, -0.0330970473587513, 0.034892141819000244, -0.03273241966962814, -0.015160131268203259, -0.005935731343924999, -0.0019125465769320726, 0.016758887097239494, -0.020671630278229713, 0.004747182596474886, -0.0006477414863184094, -0.050178490579128265, 0.01480952650308609, 0.02803432196378708, 0.0021264152601361275, 0.012825106270611286, -0.01093184296041727, 0.0002918780955951661, -0.007755367550998926, -0.01123336236923933, 0.001882745185866952, 0.009760824032127857, -0.00780445197597146, -0.05309551954269409, -0.02851114422082901, -0.022144168615341187, 0.0021334271878004074, -0.012474501505494118, -0.004536820109933615, 0.004708616062998772, 0.041399359703063965, -0.025481922551989555, 0.0098589938133955, -0.025706307962536812, 0.0058445739559829235, -0.011633051559329033, 0.01124738622456789, -0.02198990248143673, -0.03685552626848221, 0.0247526653110981, -0.0015093516558408737, 0.0020177278202027082, -0.020867969840765, 0.02140088751912117, 0.007187388371676207, 0.0003140099870506674, 0.010812637396156788, 0.02689836360514164, 0.00015799107495695353, 2.4446433599223383e-05, 0.002447218168526888, -0.0213027186691761, 0.02642154134809971, -0.002324506640434265, -0.0015663248486816883, 0.014669285155832767, -0.014444897882640362, 0.005823537707328796, -0.00225087977014482, -0.002848660107702017, -0.02142893522977829, -0.020559437572956085, -0.027150798588991165, 0.00907364021986723, -0.017838748171925545, -0.021008210256695747, -0.01918506808578968, -0.005655247718095779, -0.001455884426832199, -0.015412566252052784, 0.011576954275369644, -0.004578892607241869, 0.005700826179236174, 0.026225203648209572, 0.019395431503653526, 0.017726553604006767, 0.00901754293590784, -0.005423848982900381, -0.005865610204637051, 0.024359988048672676, -0.02032102644443512, -0.020938090980052948, -0.019072875380516052, -0.013666556216776371, 0.018890561535954475, -0.012425417080521584, -0.033742159605026245, -0.050150442868471146, 0.021008210256695747, -0.03797746077179909, 0.007699270732700825, -0.01451501902192831, 0.009985211305320263, 0.03834208846092224, 0.010027283802628517, -0.005266076885163784, 0.010889770463109016, -0.0016145328991115093, 0.0032045235857367516, 0.010104416869580746, 0.012018715962767601, 0.018820440396666527, -0.02694043517112732, 0.02637946978211403, 0.018932633101940155, -0.036518946290016174, -0.01967591419816017, 0.01758631318807602, 0.0006955113494768739, 0.030825132504105568, 0.039239633828401566, -0.006892880890518427, -0.015622928738594055, -0.013855882920324802, -0.009550461545586586, 0.00463849538937211, 0.02301366813480854, -0.01970396377146244, -0.007432811427861452, 0.010118440724909306, 0.011128181591629982, 0.01928323693573475, -0.02353256195783615, 0.036546994000673294, 0.003635766915977001, -0.011436712928116322, 0.006815747823566198, -0.033770207315683365, -0.01974603533744812, -0.002450724132359028, -0.004372036084532738, 0.02311183698475361, -0.022088071331381798, 0.0077904281206429005, 0.008302310481667519, 0.003239583922550082, 0.0019370889058336616, -0.005336197558790445, -0.010419960133731365, -0.020194808021187782, -0.0018389197066426277, 0.008470600470900536, -0.011093121021986008, -0.004091552458703518, -0.0005066232406534255, 0.011906522326171398, -0.014346729032695293, 0.017993014305830002, 0.007099737413227558, 8.748673280933872e-05, -0.03177877515554428, 0.02793615311384201, 0.004726146347820759, -0.025509970262646675, 0.0019213117193430662, -0.011282446794211864, -0.011780304834246635, 0.00793768186122179, -0.004217769950628281, 0.01507598627358675, -0.032031212002038956, 0.0035901882220059633, -0.010272706858813763, -0.009052603505551815, -0.010861721821129322, -0.008779131807386875, -0.0055185118690133095, -0.003839117242023349, -0.004950533155351877, 0.299331933259964, -0.014318680390715599, 0.016885103657841682, -0.0025716826785355806, -0.007573053240776062, 0.0036252487916499376, 0.013393085449934006, -0.0016829007072374225, 0.004764712881296873, 0.007706283126026392, -0.03881891071796417, -0.022298434749245644, -0.003074799897149205, -0.00672108493745327, 0.001178030506707728, -0.03548115864396095, -0.03219950199127197, -0.010777576826512814, -0.03553725406527519, -0.0014953274512663484, 0.024275843054056168, -0.0011359580093994737, 0.0011867956491187215, -0.018511908128857613, 0.013918991200625896, -0.018301544710993767, -0.008190116845071316, -0.007972742430865765, 0.0006104897474870086, -0.0018266484839841723, -0.01649242639541626, -0.0009816921083256602, 0.009129736572504044, -0.00907364021986723, 0.0043615177273750305, -0.009999235160648823, 0.0027697740588337183, -0.0012367567978799343, 0.01153488177806139, 0.005108304787427187, 0.009971186518669128, 0.004666543565690517, 0.02478071302175522, 0.02577642910182476, -0.004017925355583429, 0.012790045700967312, 0.004315939266234636, -0.02626727521419525, -0.01422752346843481, 0.016268040984869003, -0.04294201731681824, 0.00017059090896509588, 0.027683718129992485, 0.02525753527879715, 0.004287890624254942, 0.01694120094180107, 0.02243867702782154, -0.0036532969679683447, -0.02092406526207924, -0.029927585273981094, 0.017235709354281425, 0.010903794318437576, 0.0005614051478914917, 0.028412973508238792, -0.01638023369014263, 0.00029275461565703154, -0.04664439707994461, 0.0003871986409649253, -0.006359962280839682, -0.012635779567062855, -0.016085727140307426, -0.02311183698475361, -0.014949767850339413, -0.033686064183712006, -0.024892907589673996, -0.01507598627358675, 0.037528686225414276, 0.015468662604689598, 0.01598755642771721, 0.040810342878103256, -0.023813044652342796, 0.021513082087039948, -0.002959100529551506, -0.0056482357904314995, -0.028188588097691536, -0.013610459864139557, 0.016155846416950226, -0.0004676185199059546, -0.016576571390032768, 0.009248942136764526, 0.020447244867682457, 0.0008335617603734136, -0.00047594535863026977, -0.012355295941233635, -0.0018687209812924266, 0.02750140242278576, -0.012684863992035389, 0.02803432196378708, -0.010644347406923771, 0.008309322409331799, -0.014087281189858913, 0.04047376289963722, 0.02694043517112732, 0.019886277616024017, -0.021639298647642136, -0.006612397730350494, -0.0006731603061780334, 0.008940409868955612, -0.004109082743525505, -0.02905808575451374, -0.0038215871900320053, -0.04263348504900932, -0.01974603533744812, -0.007257509510964155, -0.03441531956195831, -0.012965347617864609, -0.005388788413256407, 0.001433095196262002, 0.0068718446418643, -0.04100668057799339, 0.008267249912023544, -0.03685552626848221, 0.009746800176799297, 0.016632668673992157, 0.013890943489968777, 0.0064686499536037445, -0.00987301766872406, -0.012712912634015083, 0.00225438573397696, -0.035929929465055466, 0.05604059621691704, -0.006549288518726826, 0.03851037845015526, 0.013638508506119251, 0.0006267052376642823, 0.017389973625540733, -0.001979161286726594, -0.012187005952000618, -0.011703172698616982, -0.01595950871706009, -0.016758887097239494, -0.013568387366831303, 0.011576954275369644, -0.0028609312139451504, 0.011597990989685059, 0.00959253404289484, 0.008190116845071316, 0.008989495225250721, 0.01539854146540165, -0.0030011730268597603, -0.02961905300617218, -0.008084936067461967, 0.004021431785076857, -0.018834464251995087, 0.01983018033206463, -0.013533326797187328, -0.03475189954042435, -0.02312586084008217, 0.005991827696561813, 0.034359224140644073, -0.033798255026340485, 0.002319247694686055, 0.023238053545355797, -0.03463970869779587, 0.0026190143544226885, -0.013203758746385574, -0.1832117885351181, 0.010490081273019314, 0.029787342995405197, -0.015650976449251175, 0.01708144322037697, 0.0123062115162611, -0.00657733716070652, -0.010223622433841228, -0.010504105128347874, 0.019451526924967766, 0.02312586084008217, -0.017684482038021088, -0.0176283847540617, -0.029955632984638214, -0.005238028708845377, 0.01421349961310625, 0.005132847465574741, 0.0010667135939002037, 0.023434393107891083, 0.008470600470900536, 0.035845786333084106, -0.01656254753470421, -0.010875745676457882, 0.008484624326229095, 0.01181536540389061, 0.018399715423583984, -0.033237289637327194, 0.016296088695526123, -0.008638890460133553, -0.0003760231484193355, -0.015328421257436275, -0.0014874387998133898, 0.03766892850399017, 0.006317889783531427, -0.003912744112312794, -0.007846524938941002, -0.01917104423046112, -0.014143378473818302, 0.0032132884953171015, 0.013940027914941311, 0.02023688144981861, 0.012474501505494118, -0.027277017012238503, 0.008435539901256561, -0.002966112457215786, 0.03222754970192909, 7.402407845802372e-06, -0.0018757331417873502, 0.02967515029013157, 0.007727319374680519, 0.012243103235960007, -0.027234943583607674, 0.023700851947069168, 0.011661099269986153, 0.0030993421096354723, -0.0018406726885586977, -0.017403999343514442, 0.01289522647857666, -0.026744097471237183, 0.01152085792273283, -0.0021527104545384645, -0.014543067663908005, 0.01124037429690361, -0.004515783861279488, -0.007664210628718138, -0.017221683636307716, -0.012754985131323338, 0.0004939138307236135, -0.0008256731671281159, 0.0044947476126253605, 0.0035796700976788998, -0.02301366813480854, 9.258144928026013e-06, -0.01757228933274746, 0.012243103235960007, 0.002287693088874221, 0.024836810305714607, 0.0068262661807239056, -8.39259082567878e-05, 0.017446070909500122, -0.018974706530570984, 0.01804910972714424, -0.012130909599363804, -0.020657606422901154, -0.004294903017580509, 0.003309704829007387, 0.0043299635872244835, -0.02520143799483776, -0.0024331940803676844, -0.015005865134298801, 0.04347493499517441, -0.020699679851531982, -0.01539854146540165, 0.007685246877372265, 0.012032740749418736, 0.01560890395194292, 0.0011929312022402883, -0.007092725485563278, -0.00908766407519579, 0.02033505029976368, -0.016127798706293106, -0.003265879349783063, -0.0029924078844487667, 0.0021649817936122417, -0.004442156758159399, -0.00780445197597146, 0.022298434749245644, 0.031077567487955093, 0.04535417631268501, -0.013428145088255405, -0.0015487945638597012, 0.019044825807213783, 0.03901524841785431, 0.02082589641213417, 0.022270387038588524, 0.013042480684816837, -0.0014926978619769216, -0.008295298554003239, 0.021246621385216713, 0.0010412948904559016, -0.008912362158298492, 0.007509944494813681, 0.010370875708758831, 0.015300372615456581, -0.025650212541222572, -0.01595950871706009, -0.03009587526321411, -0.019591769203543663, 0.018301544710993767, 0.02421974577009678, -0.026084961369633675, 0.03766892850399017, 0.008912362158298492, 0.011619026772677898, -0.001153488177806139, 0.03618236631155014, -0.030853180214762688, -0.012439440935850143, -0.011696159839630127, -0.0036112244706600904, -0.0028539192862808704, 0.011724208481609821, 0.0037514662835747004, -0.022088071331381798, 0.0027662680950015783, 0.03197511285543442, -0.00451227743178606, -0.03618236631155014, -0.01803508587181568, -0.04069814831018448, -0.00019184629491064698, 0.01640828140079975, -0.019100923091173172, 0.015426590107381344, 0.009192844852805138, 0.023799020797014236, 0.026673976331949234, 0.004116094671189785, -0.00015525198250543326, 0.0033920968417078257, -0.025902647525072098, -0.023799020797014236, -0.026113009080290794, -0.012509562075138092, 0.024247795343399048, -0.034836046397686005, 0.014767454005777836, 0.030376357957720757, -0.002299964427947998, -0.014059233479201794, -0.0019633842166513205, -0.02750140242278576, -0.016730837523937225, 0.005111811216920614, 0.009347110986709595, 0.0056762839667499065, -0.016071701422333717, -0.009255954064428806, 0.004726146347820759, -0.007769391871988773, 0.029871487990021706, -0.019647866487503052, 0.008295298554003239, -0.003528832457959652, -0.032592177391052246, 0.018371665850281715, -0.010027283802628517, 0.014311668463051319, -0.012726936489343643, 0.028777603060007095, 0.019535671919584274, -0.0015233757440000772, -0.02626727521419525, -0.026519710198044777, 0.021653322502970695, -0.003940792754292488, -0.028777603060007095, 0.014444897882640362, -0.01593146100640297, 0.014669285155832767, -0.007762379478663206, -0.00451227743178606, -0.039155490696430206, -0.033770207315683365, 0.013708628714084625, -0.020573461428284645, -0.014641236513853073, -0.025916671380400658, 0.01702534593641758, -0.015693049877882004, 0.02696848474442959, 0.00643008342012763, -0.02190575748682022, 0.011633051559329033, 0.019381407648324966, -0.027781886979937553, -0.0049926056526601315, -0.0005903300479985774, 0.0338263064622879, 0.013540338724851608, 0.014683309011161327, 0.0230276919901371, 0.0048523638397455215, 0.0176283847540617, 0.010532153770327568, 0.020531389862298965, -0.0029924078844487667, -0.008442551828920841, -0.06512825936079025, 0.02023688144981861, -0.021022235974669456, 0.013322964310646057, 0.00043672151514329016, -0.001406799885444343, 0.019030801951885223, 0.005315161310136318, 0.003053763648495078, -0.002794316504150629, -0.006128563545644283, 0.017418023198843002, 0.0066614821553230286, -0.026084961369633675, -0.03301290422677994, -0.024878881871700287, 0.011191289871931076, 0.0003140099870506674, 0.012453465722501278, 0.025986792519688606, 0.007362690754234791, -0.0045333136804401875, -0.0025488934479653835, 0.014585140161216259, -0.005662259645760059, 0.008666939102113247, -0.0020194808021187782, 0.010476057417690754, 0.005003123544156551, -0.004182709380984306, 0.008582794107496738, -0.04400785267353058, -0.005770947318524122, 0.012783033773303032, 0.008772119879722595, -0.04434443637728691, 0.02141491137444973, 0.02304171584546566, 0.033209241926670074, 0.0013954051537439227, -0.014935743995010853, -0.025566067546606064, 0.013820822350680828, 0.017768627032637596, -0.0013252843637019396, 0.0035375976003706455, -0.023728899657726288, 0.03853842616081238, 0.0040039015002548695, -0.021064307540655136, 0.03463970869779587, 0.014781477861106396, 0.01639425754547119, -0.00479626702144742, -0.018315570428967476, -0.03393849730491638, 0.012467489577829838, 0.001975655322894454, -0.0037304300349205732, 0.006205696612596512, 0.0296471007168293, -0.0032378309406340122, 0.023813044652342796, -0.02304171584546566, -0.006654470227658749, -0.010679407976567745, 0.017165588214993477, -0.001970396377146244, 0.008891325443983078, -0.007867560721933842, -0.027277017012238503, 0.011422689072787762, -0.011640063486993313, -0.005259064957499504, 0.004414108581840992, 0.0025962248910218477, -0.002957347547635436, -0.02145698480308056, -0.024233771488070488, -0.0027697740588337183, 0.010770564898848534, -0.009943138808012009, -0.023167934268712997, 0.015552807599306107, 0.018568005412817, -0.0034885129425674677, -0.007523968815803528, 0.012495538219809532, 0.009683690965175629, -0.002708418294787407, -0.01401014905422926, 0.010335815139114857, -0.0014751676935702562, 0.015805242583155632, 0.00908766407519579, 0.04238105192780495, -0.002424428937956691, -0.01509001012891531, 0.011675124056637287, 0.014599164016544819, 0.01866617426276207, -0.0002555029059294611, -0.01507598627358675, -0.02797822467982769, -0.007467871997505426, 0.0069945561699569225, -0.015328421257436275, -0.04428833723068237, -0.018862511962652206, 0.009669667109847069, 0.01343515794724226, 0.0008835229091346264, 0.015216227620840073, 0.017754603177309036, -0.02148503251373768, -0.003989877179265022, -0.003036233363673091, -0.028833698481321335, -0.012418405152857304, 0.018343618139624596, 0.014613187871873379, 0.02354658581316471, 0.018455810844898224, -0.0015777194639667869, 0.028118466958403587, -0.008344382978975773, 0.0030923301819711924, -0.03887500613927841, 0.026772145181894302, 0.016282064840197563, 0.007664210628718138, 0.018385689705610275, -0.020657606422901154, -0.023995360359549522, -0.025355704128742218, 0.019493600353598595, -0.03800550848245621, 0.027697741985321045, -0.015230251476168633, 0.055619869381189346, -0.004999617580324411, -0.004964557010680437, -0.010595262981951237, -0.0010000988841056824, -6.535483407787979e-05, -0.014108317904174328, -0.008330359123647213, -0.011626039631664753, -0.029871487990021706, 0.014332704246044159, -0.010637335479259491, -0.020391147583723068, -0.0048593757674098015, -0.009410220198333263, -0.015819266438484192, -0.00478925509378314, 0.008063899353146553, 0.0005443132249638438, -0.012215054593980312, 0.012551634572446346, 0.01806313544511795, -0.0050241597928106785, 0.0073206182569265366, -0.021695395931601524, -0.001481303246691823, 0.027052629739046097, -0.013638508506119251, 0.009676679037511349, -0.0017889585578814149, -0.0013471971033141017, -0.0008059516549110413, 0.002987148705869913, -0.013252843171358109, 0.023953286930918694, 0.005125835072249174, -0.019549697637557983, 0.005858598276972771, 0.0008918497478589416, 0.030067825689911842, 0.0012569164391607046, 0.0328165628015995, -0.015061961486935616, -0.003201017389073968, 0.010307767428457737, 0.012937299907207489, 0.006689530331641436, -0.023939263075590134, 0.01265681628137827], "085fcc40-c5a0-4dea-8039-113b0bd8d4e3": [-0.03342635557055473, 0.010164781473577023, 0.0027771249879151583, -0.032129641622304916, -0.008608726784586906, 0.015776662155985832, -0.01151912473142147, -0.0159639660269022, -0.01068346668034792, -0.02401798777282238, -0.0005799184436909854, -0.004574511665850878, -0.008054022677242756, 0.0068977875635027885, -0.003061681054532528, -0.013896430842578411, 0.0006105352658778429, -0.007787476293742657, 0.020963510498404503, -0.01697251945734024, 0.010056721977889538, 0.020300747826695442, 0.008032410405576229, -0.01950831152498722, -0.021136406809091568, -0.0005420976667664945, 0.02334081567823887, -0.030775299295783043, 0.011475901119410992, -0.02844121679663658, 0.01349300891160965, -0.00997027475386858, -0.02554522641003132, -0.014062121510505676, 0.0018388096941635013, -0.011598369106650352, -0.010762710124254227, -0.027605557814240456, 0.019306601956486702, 0.021900026127696037, 0.008046818897128105, -0.02568930573761463, 0.0017433572793379426, -0.016122452914714813, -0.0040162052027881145, 0.016381794586777687, -0.008947312831878662, 0.03161095827817917, -0.018355678766965866, 0.003515530377626419, -0.01222511287778616, 0.04261860251426697, -0.03336872160434723, -0.03406030312180519, 0.02610713616013527, 0.01806752011179924, 0.021568642929196358, 0.001966679934412241, -0.01051777508109808, -0.03469425067305565, 0.041033729910850525, 0.00015781164984218776, -0.014941004104912281, 0.0032381780911237, 0.01785140298306942, -0.017937850207090378, -0.014580806717276573, -0.0012994135031476617, 4.640360566554591e-05, 0.012736593373119831, 4.828901728615165e-05, 0.03593333065509796, -0.008911292999982834, -0.012419619597494602, 0.015776662155985832, -0.010164781473577023, -0.01831245608627796, -0.010820341296494007, 0.021986473351716995, 0.008889681659638882, 0.006951817311346531, -0.01883113943040371, 0.022202592343091965, 0.004617735743522644, 0.010323268361389637, 0.033772144466638565, -0.011749651283025742, 0.054577168077230453, 0.023067066445946693, -0.015056267380714417, 0.012138665653765202, -0.00870237872004509, -0.02083384059369564, -0.004895087797194719, 0.008824845775961876, -0.0032345762010663748, -0.01300313975661993, 0.024378186091780663, -0.025473186746239662, -0.028945494443178177, -0.015041859820485115, 0.027619965374469757, -0.027346216142177582, 0.0024007181636989117, -0.03625030443072319, -0.018975218757987022, 0.02489687129855156, -0.005438986700028181, -0.015690214931964874, -0.01808192953467369, -0.004891485907137394, 0.0275335181504488, -0.015675807371735573, -0.019205745309591293, -0.017231861129403114, 0.0026438517961651087, 0.025516411289572716, -0.013154422864317894, -0.02017107605934143, -0.016497058793902397, -0.002018908504396677, 0.04068794101476669, 0.02577575296163559, -0.007038264535367489, 0.004477258305996656, 0.016381794586777687, -0.008407016284763813, -0.007052672561258078, 0.0026438517961651087, -0.0019792867824435234, 0.04993782192468643, 0.012491659261286259, 0.03610622510313988, -0.00274110515601933, -0.016252124682068825, 0.005565055646002293, -0.013370541855692863, -0.0032453821040689945, 0.00019506961689330637, -0.0082629369571805, 0.040832020342350006, 0.007157130166888237, 0.0012264734832569957, -0.003239979036152363, -0.025977464392781258, -0.001718143466860056, 0.034780699759721756, 0.018153969198465347, -0.0013084184611216187, -0.01926337741315365, 0.027576742693781853, -0.014508767053484917, 0.017822585999965668, 0.011627184227108955, 0.00902655627578497, -0.018009889870882034, -0.00991984736174345, 0.040486231446266174, -0.0017073374474421144, -0.05892835929989815, -0.012830245308578014, 0.028397994115948677, 0.034089118242263794, -0.0001710939541226253, 0.004751008935272694, 0.019782062619924545, -0.02708687260746956, -0.025473186746239662, 0.02104995772242546, 0.014573602005839348, -0.033973854035139084, 0.035299383103847504, 0.0018514166586101055, -0.002238629152998328, -0.02194324880838394, 0.02689957059919834, -0.014141364954411983, 0.001098603243008256, -0.0023412855807691813, -0.004181896336376667, -0.003962175454944372, 0.001180548220872879, 0.01195136271417141, 0.00091625313507393, -0.008198102004826069, 0.012153073213994503, 0.01574784703552723, -0.003605579724535346, 0.0017793771112337708, -0.0032255712430924177, 0.01805311255156994, 0.0013804580084979534, 0.01548850443214178, 0.009098595939576626, -0.5458869338035583, -0.014912188053131104, -0.015560544095933437, -0.0054101706482470036, 0.011115703731775284, 0.010906788520514965, -0.0018217002507299185, 0.005752358585596085, -0.01763528399169445, 0.015589360147714615, 0.0002640699967741966, 0.03236017003655434, -0.009898235090076923, -0.03083292953670025, -0.020315155386924744, -0.017880218103528023, -0.02357134222984314, -0.010128761641681194, -0.012253928929567337, 0.0039549716748297215, -0.03218727558851242, 0.013572252355515957, -0.019983772188425064, 0.0043908110819756985, 0.02081943117082119, -0.0038937381468713284, -0.0038469124119728804, 0.0037964845541864634, 0.01404050923883915, 0.03348398581147194, -0.03169740363955498, 0.008190897293388844, 0.00044506939593702555, 0.017001334577798843, 0.045874789357185364, -0.021842394024133682, -0.03881491348147392, 0.03723004460334778, 0.01096442062407732, 0.032100826501846313, -0.02567489817738533, -0.006249431520700455, 0.03797925263643265, -0.002013505669310689, 0.00942277442663908, -0.006317869294434786, 0.0013804580084979534, -0.02600627951323986, 0.0007361542084254324, -0.0015416465466842055, 0.01665554568171501, -0.02215936779975891, -0.004095448646694422, -0.016122452914714813, 0.016266532242298126, -0.020776208490133286, 0.03492477536201477, -0.017764953896403313, 0.008241325616836548, -0.008464648388326168, 0.0001805491338018328, 0.012606922537088394, -0.02138134092092514, -0.014941004104912281, -0.004088244866579771, 0.008543891832232475, -0.0014182787854224443, 0.002031515585258603, -0.020790616050362587, -0.016021598130464554, -0.008796029724180698, 0.01885995641350746, 0.03463662043213844, 0.028253914788365364, 0.00825573317706585, 0.03567398712038994, 0.03616385906934738, -0.01849975809454918, 0.00514722615480423, 0.013377745635807514, 0.018427718430757523, -0.019580351188778877, -0.0269860178232193, 0.00300404941663146, 0.017937850207090378, -0.005961273331195116, -0.03250424936413765, 0.0020909481681883335, 0.022836539894342422, -0.006818544119596481, 0.02445022575557232, 0.006919399369508028, 0.019349824637174606, -0.015301201492547989, -0.0014164778403937817, 0.02400358021259308, -0.029031941667199135, -0.006404316518455744, -0.0036884252913296223, 0.008414220064878464, -0.0440882071852684, 0.01995495706796646, -0.01831245608627796, 0.020675353705883026, 0.004073836840689182, 0.023499302566051483, -0.032994117587804794, 0.006343082990497351, 0.01728949323296547, -0.021280484274029732, 0.007953166961669922, 0.021539827808737755, 0.006912195589393377, -0.003092298051342368, -0.040716756135225296, -0.0441170260310173, 0.040601495653390884, 0.017476797103881836, -0.005478608421981335, 0.005251683760434389, 0.029795560985803604, 0.013982878066599369, 0.022533973678946495, 0.016036005690693855, 0.011771263554692268, -0.0004961724625900388, -0.00408104108646512, -0.003571361070498824, -0.011043664067983627, -0.017923442646861076, 0.0034200779628008604, -0.0027050853241235018, 0.013565048575401306, -0.03293648362159729, 0.038296230137348175, 0.013572252355515957, -0.03887254372239113, 0.005089594516903162, 0.020358378067612648, -0.0352705679833889, -0.01416297722607851, -0.02996845543384552, 0.015416464768350124, -0.027029242366552353, -0.02081943117082119, -0.01629534736275673, 0.005248081870377064, 0.005276897456496954, -0.0003156232996843755, -0.009912642650306225, -0.0023304796777665615, -0.003965777810662985, -0.022850947454571724, 0.02214496023952961, -0.00853668712079525, 0.009177839383482933, 0.005849611945450306, -0.011360637843608856, 0.013284094631671906, 6.455419497797266e-05, -0.012628533877432346, 0.00948040559887886, -0.007027458865195513, -0.0012327769072726369, -0.023513711988925934, -0.04241689294576645, -0.01818278431892395, -0.015070674940943718, -0.023614566773176193, -0.021222854033112526, -0.033570434898138046, 0.022404301911592484, -0.015358833596110344, -0.008327772840857506, -0.003936961758881807, 0.015243570320308208, -0.021900026127696037, -0.010604223236441612, 0.002807741751894355, -0.015416464768350124, 0.007095896173268557, 0.008313365280628204, -0.023499302566051483, -0.0004669063782785088, 0.03694188594818115, 0.004877077881246805, 0.010157577693462372, 0.01420620083808899, 0.005190450232475996, 0.006915797479450703, -0.033570434898138046, 0.022533973678946495, 0.010539387352764606, 0.042474523186683655, 0.007196751888841391, 0.006541191600263119, 0.022216999903321266, 0.008572706952691078, -0.0009329122840426862, 0.027634374797344208, 0.024104434996843338, 0.019868509843945503, -0.006371899042278528, 0.007535337470471859, 0.028369177132844925, -0.0220441035926342, 0.0029230050276964903, -0.023499302566051483, 0.009415569715201855, -0.0067429025657474995, -0.016352979466319084, -0.02290857955813408, -0.021338116377592087, -0.0017775760497897863, 0.01773613877594471, 0.028887862339615822, -0.022000880911946297, -0.0022314253728836775, -0.016612321138381958, 0.02060331404209137, 0.019364232197403908, -0.004787028767168522, 0.013233666308224201, -0.03437727689743042, 0.0020026997663080692, -0.008860865607857704, 0.008832049556076527, 0.008767213672399521, -0.00498513737693429, -0.013781167566776276, -0.016713177785277367, -0.013507416471838951, -0.03270595893263817, -0.018931996077299118, -0.004520482383668423, 0.008342180401086807, 0.008961721323430538, 0.00037438058643601835, -0.0030202583875507116, 0.005673115141689777, 0.020300747826695442, 0.021237261593341827, -0.00028478135936893523, -0.03187030181288719, 0.0055542499758303165, 0.005485812202095985, 0.052156638354063034, -0.005122012458741665, 0.004999545402824879, -0.005435384344309568, -0.024061212316155434, -0.009674912318587303, 0.000536244479008019, 0.013291298411786556, 0.010834749788045883, -0.00537054892629385, 0.0023016638588160276, 0.0352417528629303, 0.022548381239175797, 0.015502912923693657, 0.03547227755188942, 0.042676232755184174, -0.020430417731404305, -0.005114808678627014, 0.024046804755926132, 0.009487609378993511, -5.5211567087098956e-05, 0.001300313975661993, -0.03731648996472359, 0.021683907136321068, 0.00865915510803461, -0.00476181460544467, -0.01222511287778616, -0.0253579244017601, 0.013320114463567734, -0.015690214931964874, 0.025963056832551956, 0.013125606812536716, 0.040601495653390884, -0.0016758202109485865, -0.020963510498404503, -0.025401147082448006, -0.012578106485307217, 0.04714268445968628, 0.0015038257697597146, -0.03238898515701294, 0.0028833833057433367, 0.004286353476345539, -0.038728464394807816, 0.007193149533122778, -0.0008491663029417396, 0.001478611957281828, 0.018989626318216324, 0.010316064581274986, -0.018586205318570137, 0.029565034434199333, -0.011540737003087997, 0.013125606812536716, -0.031005825847387314, 0.008111653849482536, -0.0037064352072775364, -0.0079819830134511, -0.013471397571265697, -0.005003147292882204, 0.04829531908035278, 0.0018514166586101055, 0.011065276339650154, -0.008594319224357605, -0.008118857629597187, -0.019767655059695244, -0.03181266784667969, -0.008082838729023933, -0.01818278431892395, 0.002083744155243039, -0.02302384190261364, 0.004300761502236128, -0.006440336350351572, 0.01217468548566103, 0.047747816890478134, -0.011980178765952587, -0.01861502230167389, -0.02345607988536358, -0.04823768883943558, 0.002778925932943821, -0.021410156041383743, 0.0319855622947216, -0.009984682314097881, -0.027375031262636185, -0.019364232197403908, 0.003619987750425935, -0.0013624480925500393, -0.03469425067305565, 0.01354343630373478, -0.012160276994109154, 0.009271491318941116, -0.012981528416275978, 0.020214300602674484, -0.01366590429097414, 0.011447085998952389, -0.0028473634738475084, -0.011612776666879654, -0.029334507882595062, 0.017260678112506866, -0.001767670619301498, -0.03601977974176407, -0.009948662482202053, 0.0003239528741687536, 0.05849612131714821, 0.005882029887288809, -0.02996845543384552, -0.019522719085216522, 0.028686150908470154, 0.013658699579536915, -0.006137770134955645, 0.004149478394538164, -0.011879323050379753, -0.012592514976859093, 0.02774963714182377, -0.03359925001859665, 0.01728949323296547, 0.02334081567823887, 0.017548836767673492, -0.013248074799776077, 0.02919042855501175, 0.0013309308560565114, 0.030890561640262604, 0.018557390198111534, -0.003000447526574135, 0.004145876504480839, 0.010510571300983429, 0.03184148296713829, 0.015070674940943718, 0.011692020110785961, 0.006022506859153509, -0.00583880627527833, -0.010366491973400116, -0.012304356321692467, 0.01641061156988144, 0.016367387026548386, 0.026913978159427643, -0.03149569407105446, -0.0165114663541317, 0.01223231665790081, -0.000895541743375361, -0.008046818897128105, 0.009602872654795647, 0.027058057487010956, -0.013874818570911884, -0.0006159382173791528, -0.013204851187765598, -0.030890561640262604, -0.035184118896722794, -0.007722640410065651, 0.0037892807740718126, 0.03063121996819973, -0.0037820767611265182, -0.020560089498758316, 0.008133266121149063, 0.0032796007581055164, 0.027792861685156822, 0.02466634474694729, 0.002768120029941201, -0.015416464768350124, 0.00658801756799221, -0.005633493419736624, -0.022836539894342422, -0.03316701203584671, -0.015618176199495792, -0.003731649136170745, -0.001551551977172494, 0.01422060839831829, -0.014285444281995296, 0.023729830980300903, 0.024291738867759705, 0.024162067100405693, 0.025170620530843735, 0.03593333065509796, 0.019882917404174805, -0.007715436629951, -0.003202158259227872, 0.01344258151948452, 0.027461478486657143, -0.020761800929903984, 0.0029031941667199135, 0.013341725803911686, -0.012297152541577816, -0.010056721977889538, 0.012045013718307018, 0.004232324194163084, 0.02456548810005188, 0.00583880627527833, -0.0026834735181182623, 0.013464192859828472, 0.009113003499805927, 0.01929219253361225, -0.007157130166888237, 0.015819886699318886, -0.036538463085889816, -0.0024097231216728687, -0.013017548248171806, -0.0275479257106781, 0.01587751880288124, -0.01118774339556694, -0.0005182345630601048, 0.030429508537054062, -0.02004140429198742, 0.01685725711286068, 0.00649796798825264, -0.025516411289572716, 0.022015288472175598, -0.008738398551940918, -0.023528119549155235, 0.0028221495449543, 0.006425928324460983, -0.017981072887778282, -0.004934709519147873, -0.023614566773176193, -0.0025141804944723845, -0.024752791970968246, 0.0006632141885347664, -0.011800079606473446, 0.0253435168415308, 0.005572259891778231, -0.00031764942104928195, -0.010063925758004189, -0.02370101399719715, 0.030054902657866478, -0.021900026127696037, -0.006393510848283768, -0.025401147082448006, -0.017145413905382156, 0.011000440455973148, -0.009437181986868382, 0.02357134222984314, 0.010863564908504486, 0.0007595670758746564, -0.0019396650604903698, 8.695399446878582e-05, 0.017030151560902596, -0.03434846177697182, 0.0030778900254517794, 0.00853668712079525, 0.010438531637191772, -0.006533987820148468, 0.034319646656513214, 0.021410156041383743, 0.001241781865246594, 0.01937864162027836, -0.009826195426285267, -0.002474558772519231, 0.004556501749902964, -0.016785217449069023, -0.019522719085216522, 0.016713177785277367, -0.011893730610609055, 0.0037244451232254505, -0.001990092685446143, -0.003007651539519429, -0.0008230519597418606, 0.001546149025671184, -0.0035011223517358303, 0.003243581159040332, 0.005384956952184439, -0.035212934017181396, 0.0001579242234583944, -0.006602425593882799, -0.007013050839304924, -0.0209491029381752, -0.0418693907558918, -0.002854567486792803, 0.009718135930597782, 0.023744238540530205, -0.0047762226313352585, -0.00348311266861856, 0.0054930164478719234, -0.02205851301550865, 0.00898333266377449, -0.005345335230231285, 0.010280044749379158, 0.004430432803928852, -0.006361092906445265, 0.005536240059882402, 0.0028743783477693796, 0.02335522510111332, -0.011439881287515163, 0.018096337094902992, 0.018571797758340836, -0.014076529070734978, -0.0006343983695842326, -0.0074200741946697235, -0.017433572560548782, 0.004336781334131956, 0.0056406971998512745, -0.015402057208120823, -0.021179629489779472, -0.034751880913972855, -0.04212873429059982, -0.009213859215378761, 3.731423930730671e-05, 0.017808178439736366, -0.0019540730863809586, 0.011216559447348118, 0.0037532609421759844, -0.011252578347921371, 0.0001456549798604101, -0.01150471717119217, 0.039823468774557114, -0.01123096700757742, 0.022087328135967255, 0.020761800929903984, -0.01576225459575653, -0.03215845674276352, -0.03143806383013725, -0.019565943628549576, 0.005309315398335457, 0.01939304918050766, 0.024824831634759903, 0.016669953241944313, -0.03270595893263817, 0.03126516938209534, 0.015560544095933437, -0.008363792672753334, -0.03702833130955696, 0.021438973024487495, 0.013910838402807713, 0.019220152869820595, -0.0035173313226550817, 0.009538037702441216, -0.03492477536201477, -0.0019000433385372162, 0.015603767707943916, 0.0011049066670238972, -0.014681661501526833, -0.01695811189711094, -0.01675640046596527, 0.019652390852570534, -0.022750092670321465, 0.025300292298197746, 0.010986032895743847, -0.00827014073729515, 0.003684823401272297, -0.04342544451355934, -0.014235016889870167, 0.01730390079319477, 0.008565503172576427, 0.026640228927135468, -0.01421340461820364, -0.015690214931964874, 0.03483833000063896, -0.004952719435095787, -0.010265637189149857, 0.006908593699336052, -0.0220441035926342, 0.043022021651268005, -0.023744238540530205, -0.017664099112153053, -0.012023402377963066, 0.01874469220638275, 0.01051777508109808, -0.007405666634440422, -0.003434485988691449, 0.015041859820485115, -0.021121997386217117, 0.006328674964606762, 0.010604223236441612, -0.015935150906443596, 0.020545681938529015, -0.020574497058987617, 0.006818544119596481, -0.03218727558851242, -0.030141349881887436, -0.004887884017080069, 0.00876000989228487, -0.010121557861566544, -0.022519566118717194, -0.020560089498758316, -0.024435818195343018, 0.022130552679300308, 0.006508774124085903, -0.021900026127696037, 0.006094546522945166, 0.047776635736227036, -0.03374332934617996, 0.02744707092642784, -0.0027194933500140905, -0.00035501993261277676, -0.037518199533224106, -0.013572252355515957, 0.009487609378993511, -0.02106436714529991, 0.021727129817008972, -0.0057775722816586494, 0.0025844192132353783, -0.02666904404759407, 0.027677597478032112, 0.04812242463231087, -0.02126607671380043, 0.029348915442824364, 0.016713177785277367, 0.012470046989619732, 0.00611255643889308, -0.012534882873296738, -0.011050867848098278, 0.007319218944758177, -0.029507402330636978, 0.010359288193285465, -0.01775054633617401, -0.015906333923339844, 0.022173775359988213, -0.01327688992023468, -0.016381794586777687, 0.018816731870174408, -0.015805479139089584, -0.009955867193639278, 0.025285884737968445, -0.018643837422132492, -0.04019807279109955, 0.01020080130547285, -0.006926603615283966, -0.015272386372089386, -0.009314714930951595, 0.01587751880288124, -0.01041692029684782, -0.019767655059695244, 0.005986487027257681, 0.025963056832551956, -0.003036467358469963, -0.0013921643840149045, -0.03979464992880821, -0.034867145121097565, -4.63473261334002e-05, -0.02169831469655037, -0.019234562292695045, -0.019133705645799637, -0.01547409687191248, 0.0214677881449461, 0.024190884083509445, -0.06080138683319092, -0.03558754175901413, 0.003526336280629039, -0.031553324311971664, 0.006739300675690174, -0.006177391856908798, 0.022562788799405098, 0.022389894351363182, -0.0028761792927980423, -0.010827545076608658, 0.03561635687947273, -0.01773613877594471, 0.02579016052186489, 0.008082838729023933, 0.005042769014835358, 0.012109849601984024, -0.03561635687947273, 0.009545241482555866, -0.022202592343091965, -0.012563698925077915, -0.021900026127696037, -0.004196304362267256, 0.011007644236087799, 0.022634828463196754, 0.004646551329642534, 0.020675353705883026, -0.008399812504649162, -0.016525873914361, 0.009574057534337044, 0.020142260938882828, 0.004156682640314102, -0.018226006999611855, -0.0062638395465910435, 0.005446190480142832, -0.004228721838444471, 0.02885904721915722, -0.016439426690340042, 0.005233673844486475, 0.013846002519130707, 0.005330927204340696, -0.006944613065570593, 0.0017964864382520318, 0.015920741483569145, -0.01883113943040371, 0.005406568758189678, 0.038728464394807816, 0.006209809798747301, 0.015099490992724895, 0.023081474006175995, -0.0018712275195866823, 0.0016749197384342551, 0.011706427671015263, -0.002768120029941201, -0.02106436714529991, 0.005521832033991814, -0.011425473727285862, -0.017491204664111137, 0.0056911250576376915, -0.014868964441120625, 0.01620890013873577, -0.01828363910317421, 0.01831245608627796, 0.0063358792103827, -0.0028293535578995943, -0.04869874194264412, 0.019882917404174805, -0.0037964845541864634, -0.023614566773176193, -0.025818977504968643, -0.018485350534319878, -0.0011679413728415966, 0.02466634474694729, -9.888554632198066e-05, 0.022317854687571526, -0.040601495653390884, -0.001910849241539836, -0.01916252262890339, 0.012736593373119831, -0.023614566773176193, -0.00803961418569088, -0.012837449088692665, 0.016554690897464752, -0.0037712708581238985, 0.2678718864917755, -0.01574784703552723, -0.002971631707623601, 0.006868971977382898, -0.016381794586777687, -0.0159639660269022, 0.001066185417585075, -0.006570007652044296, 0.0075209299102425575, 0.004426830913871527, -0.00047816254664212465, -0.009840603917837143, -0.0012525877682492137, 0.00876000989228487, 0.0017892825417220592, -0.026135951280593872, -0.046335842460393906, -0.009710932150483131, -0.019421864300966263, -0.021511010825634003, 0.01641061156988144, -0.02005581185221672, 0.013759555295109749, -0.0068977875635027885, 0.005132818594574928, -0.025761345401406288, 0.01002070214599371, -0.0017559642437845469, 0.005154430400580168, 0.01618008501827717, -0.013464192859828472, -0.01684284768998623, 0.005626289173960686, -0.023052658885717392, -0.018485350534319878, -0.01607922837138176, 0.012059422209858894, 0.016007188707590103, 0.03429082781076431, 0.022850947454571724, -0.008637542836368084, -0.008594319224357605, -0.008126062341034412, 0.009955867193639278, -0.005954069551080465, 0.0170589666813612, -0.0220441035926342, 0.012808633036911488, 0.0009734345367178321, 0.010647446848452091, -0.02138134092092514, -0.02423410676419735, 0.026395292952656746, 0.006879777647554874, -0.025977464392781258, -0.0019774858374148607, 0.013874818570911884, 0.008515075780451298, -0.008853661827743053, -0.00514722615480423, -0.025026541203260422, 0.029118388891220093, 0.00658801756799221, 0.018542982637882233, -0.031783852726221085, -0.01862942986190319, -0.009293102659285069, 0.004430432803928852, -0.01632416434586048, -0.017707323655486107, 0.008126062341034412, 0.012686165980994701, -0.0021990074310451746, -0.02854207158088684, -0.04769018664956093, -0.04244570806622505, 0.019018443301320076, 0.005345335230231285, 0.013420969247817993, 0.016280939802527428, -0.012045013718307018, 0.00600809883326292, -0.002656458644196391, 0.007456094026565552, -0.01728949323296547, -0.0024205290246754885, 0.0029410149436444044, -0.012556495144963264, -0.012585310265421867, 0.006155780050903559, -0.0014515970833599567, 0.017030151560902596, 0.0017235464183613658, 0.020675353705883026, -0.008198102004826069, 0.015589360147714615, -0.0022944598458707333, 0.025372331961989403, -0.004823048133403063, 0.020430417731404305, -0.022216999903321266, 0.015286793932318687, 0.019119298085570335, 0.009566852822899818, 0.015243570320308208, -0.009782971814274788, -0.02776404470205307, -0.00012922094902023673, 0.010323268361389637, -0.028686150908470154, 0.004416024778038263, -0.06149296462535858, -0.001809093402698636, -0.009581261314451694, -0.011771263554692268, -0.016252124682068825, -0.009984682314097881, -0.02368660643696785, -0.0009743350092321634, -0.011158927343785763, 0.01471768133342266, -0.023196738213300705, 0.01447995100170374, 0.02080502361059189, -0.0031139098573476076, -0.007052672561258078, -0.008687970228493214, -0.021972065791487694, 0.021525420248508453, -0.04584597423672676, 0.02455108053982258, 0.007023856975138187, 0.0496208481490612, -0.013795575127005577, 0.00735884066671133, 0.013615475967526436, -0.007308413274586201, 0.011007644236087799, 0.001283204648643732, -0.007448890246450901, -0.006332276854664087, -0.01173524372279644, 0.03841149061918259, -0.0069914390332996845, -0.010805933736264706, -0.015330017544329166, 0.002042321488261223, 0.006343082990497351, 0.006670862901955843, 0.00250697648152709, -0.03230253607034683, -0.03725885972380638, -0.00021893272059969604, -0.0048194462433457375, 0.00451688002794981, -0.001417378312908113, -0.005752358585596085, -0.021741537377238274, 0.01123096700757742, 0.012138665653765202, -0.031005825847387314, -0.019681207835674286, 0.02666904404759407, -0.00865915510803461, -0.001393965445458889, -0.011828895658254623, -0.18465179204940796, 0.015805479139089584, 0.031783852726221085, -0.04230162873864174, 0.002492568688467145, -0.01123817078769207, -0.00267086667008698, 0.014854556880891323, -0.016223307698965073, 0.004408820997923613, 0.0159927811473608, 0.031466878950595856, -0.02632325328886509, 0.0029824376106262207, -0.005114808678627014, -0.016280939802527428, -0.016713177785277367, 0.014458338730037212, 0.028369177132844925, 0.024868054315447807, 0.0441170260310173, -0.01708778366446495, -0.02070416882634163, 0.045673079788684845, 0.0005754159647040069, -0.002904995111748576, -0.01304636336863041, 0.0429932065308094, 0.010424124076962471, -0.015229162760078907, 0.00870237872004509, -0.008968925103545189, 0.020300747826695442, 0.016554690897464752, -0.027922531589865685, -0.007023856975138187, 0.0011040061945095658, 0.02524266019463539, -0.02424851432442665, 0.019911734387278557, -0.016727585345506668, 0.017664099112153053, -0.0017190439393743873, 0.014515970833599567, 0.029680296778678894, 0.013428173027932644, 0.01002070214599371, 0.012145869433879852, 0.03434846177697182, -0.009581261314451694, 0.00803961418569088, -0.04550018534064293, 0.015416464768350124, 0.004938311409205198, 0.03671135753393173, 0.01904725842177868, -0.0005547045730054379, 0.048439398407936096, -0.009091392159461975, -0.03175503760576248, -0.010510571300983429, -0.03820978105068207, 0.01476810872554779, -0.01476810872554779, -0.013183238916099072, 0.0010454740840941668, -0.02378746122121811, 0.0065555996261537075, -0.03074648231267929, 0.00205132644623518, 0.009415569715201855, 0.002676269505172968, 0.027936941012740135, -0.015560544095933437, 0.023067066445946693, 0.020012589171528816, -0.004603327717632055, -0.005176042206585407, 0.022663645446300507, -0.003378655295819044, -0.02499772608280182, 0.04011162370443344, -0.017116598784923553, -0.03953531011939049, 0.03163977339863777, 0.017361532896757126, -0.00019990977307315916, -0.020459234714508057, -0.011439881287515163, 0.0046825711615383625, 0.03172622248530388, -0.04532729089260101, 0.0021809975150972605, -0.007225567474961281, 0.008896885439753532, 0.005269693676382303, 0.0010535785695537925, -0.018931996077299118, -0.011058071628212929, 0.00638630660250783, -0.0036866243463009596, -0.0024151261895895004, -0.014458338730037212, 0.022303447127342224, -0.014998636208474636, 0.00435479125007987, 0.0077514564618468285, 0.024507857859134674, 0.05088874325156212, 5.090607737656683e-05, -0.027591150254011154, -0.0039549716748297215, 0.03953531011939049, 0.004372801166027784, 0.0009221063228324056, 0.03380095958709717, -0.023715421557426453, -0.009934254921972752, 0.016280939802527428, -0.006371899042278528, -0.0034434907138347626, -0.0076145813800394535, 0.0028185476548969746, 0.01849975809454918, -0.002483563730493188, 0.005215663928538561, -0.030026087537407875, -0.031553324311971664, 0.0033102177549153566, -0.003670415375381708, 0.00087077816715464, 0.02466634474694729, 0.007257985416799784, 0.032561879605054855, -0.029464179649949074, 0.04014044255018234, -0.030487140640616417, -0.02522825263440609, -0.009502017870545387, 0.01020080130547285, 0.04241689294576645, 0.031582143157720566, -0.018888771533966064, 0.010272840969264507, 0.005809990223497152, 0.02943536266684532, -0.02179916948080063, -0.002280052052810788, -0.0270004253834486, -0.030660035088658333, 0.0027861299458891153, 0.011619980446994305, -0.04086083546280861, 0.017793770879507065, 0.020675353705883026, 0.016929296776652336, 0.034204382449388504, 0.005194052122533321, 0.014314260333776474, -0.010323268361389637, -0.021655090153217316, -0.018226006999611855, -0.014681661501526833, -0.014796924777328968, 0.019537128508090973, -0.03921833634376526, 0.012426823377609253, 0.018355678766965866, 0.014782517217099667, 0.004372801166027784, 0.0009680315270088613, -0.02908957377076149, -0.0159783735871315, 0.0214966032654047, 0.002524986397475004, 0.008723990060389042, -0.03933359682559967, 0.004949117545038462, 0.02865733578801155, -0.017894625663757324, 0.01861502230167389, -0.0036884252913296223, 0.007679416798055172, 0.0024943696334958076, -0.01566139981150627, 0.041062548756599426, -0.019335417076945305, 0.011843303218483925, -0.014746497385203838, 0.006696076598018408, 0.012736593373119831, 0.01173524372279644, -0.04348307475447655, -0.03149569407105446, 0.013514621183276176, 0.017981072887778282, -0.022202592343091965, 0.032763589173555374, 0.00034016178688034415, 0.005471404176205397, -0.012758205644786358, 0.00355335115455091, -0.018442125990986824, 0.0126717584207654, -0.0112885981798172, -0.020531274378299713, -0.002784328768029809, -0.010560998693108559, -0.017577651888132095, -0.04002517834305763, 0.028124243021011353, -0.007027458865195513, 0.0006920300074853003, -0.005262489430606365, 0.01773613877594471, -0.025300292298197746, -0.0005889234016649425, 0.015027451328933239, 0.018542982637882233, -0.028714967891573906, -0.003294008783996105, 0.025588450953364372, -0.012570902705192566, 0.025530818849802017, 0.0011643393663689494, 0.028887862339615822, -0.021842394024133682, 0.014811333268880844, -0.07255823910236359, 0.0258910171687603, 0.001046374556608498, 0.0264385174959898, -0.0035929728765040636, -0.018341271206736565, -0.0052552856504917145, 0.0067861261777579784, 0.0005078788963146508, -0.025934239849448204, -0.02378746122121811, 0.0058892336674034595, 0.00920665543526411, -0.016497058793902397, -0.039391230791807175, -0.02953621745109558, -0.0014678059378638864, 0.0010571804596111178, 0.026280030608177185, 0.008896885439753532, 0.022317854687571526, 0.0101935975253582, 0.03152450919151306, 0.012131460942327976, -0.01884554885327816, 0.02731739915907383, -0.004902292042970657, 0.028887862339615822, -0.004941913764923811, 0.0034813114907592535, -0.00501395296305418, -0.05100400745868683, 0.0033552423119544983, 0.05864020064473152, 0.010769913904368877, -0.022966211661696434, 0.0159783735871315, -0.015085083432495594, 0.0408032052218914, -0.017030151560902596, -0.025646083056926727, -0.031553324311971664, 0.008392608724534512, 0.002004500711336732, -0.011591164395213127, 0.007308413274586201, 0.0022980619687587023, 0.00512561434879899, -0.012592514976859093, -0.0019234562059864402, 0.042705047875642776, 0.007113906089216471, 0.019782062619924545, -0.023427264764904976, 0.008363792672753334, -0.036423198878765106, 0.017981072887778282, 0.018931996077299118, -0.00893290527164936, -0.005629891529679298, 0.043454259634017944, 0.011843303218483925, 0.010208005085587502, -0.025098580867052078, -0.007182343862950802, 0.02390272542834282, -0.022433118894696236, -0.015704622492194176, 0.006739300675690174, -0.012837449088692665, -0.013471397571265697, 0.0018856354290619493, 0.014285444281995296, 0.005997293163090944, 0.015214754268527031, -0.008183693513274193, -0.003582166973501444, -0.011137315072119236, -0.0418693907558918, 0.019104890525341034, 0.00798918679356575, -0.026957202702760696, -0.01619449257850647, 0.013954062014818192, 0.0506870336830616, -0.040169257670640945, -0.010604223236441612, 0.022663645446300507, -0.0013840600149706006, -0.0049130977131426334, -0.017116598784923553, 0.0220441035926342, 0.0008478155359625816, 0.006584415677934885, 0.03944886103272438, 0.019479496404528618, -0.00710670230910182, -0.006483559962362051, 0.03844030573964119, 0.01620890013873577, 0.027360623702406883, 0.013161626644432545, 0.0019792867824435234, -0.01178567111492157, -0.02787930890917778, 0.0021341717801988125, -0.013031955808401108, -0.05561453849077225, -0.022620420902967453, -0.0014479950768873096, 0.020430417731404305, -0.0011301205959171057, -0.028945494443178177, 0.020430417731404305, -0.021640682592988014, -0.022894171997904778, -0.012462843209505081, -0.010258432477712631, -0.018153969198465347, 0.0429932065308094, 0.024536672979593277, 0.024479040876030922, -0.00017435823974665254, -0.008471852168440819, 0.019782062619924545, 0.009048168547451496, 0.02965148165822029, -0.014299851842224598, 0.019969364628195763, 0.0023917132057249546, 0.006685270927846432, -0.003342635463923216, -0.006879777647554874, -0.027274176478385925, -0.014249424450099468, 0.028397994115948677, -0.004289955832064152, 0.015618176199495792, -0.015574952587485313, 0.0782061442732811, -0.011036460287868977, -0.008493463508784771, -0.014955411665141582, -0.01195136271417141, -0.0009122008923441172, 0.005954069551080465, 0.00847905594855547, -0.03429082781076431, -0.030688852071762085, 0.01841331087052822, -0.014292648062109947, -0.02665463648736477, -0.032331354916095734, 0.0034110730048269033, -0.01731831021606922, -0.03800807148218155, 0.03990991413593292, -0.0135002126917243, 0.006332276854664087, 0.03457898646593094, -0.00997747853398323, 0.014465543441474438, -0.0101935975253582, -0.009581261314451694, -0.004192702006548643, 0.022836539894342422, -0.024205291643738747, 0.010712281800806522, 0.019321009516716003, 0.0019378641154617071, 0.010597018525004387, -0.002445742953568697, -0.02567489817738533, -0.020963510498404503, -0.016237715259194374, -0.013918042182922363, 0.0041098566725850105, 0.047430843114852905, 0.03247543051838875, -0.007175140082836151, 0.026942795142531395, -0.023830685764551163, -0.033455170691013336, -0.004574511665850878, 0.006267441436648369, 0.0016055816086009145, 0.00016749197675380856, -0.009040964767336845], "ed78f2a3-18af-4f13-9705-e9b9eca959ae": [0.007999111898243427, -0.0063816942274570465, 0.004260102286934853, -0.018745804205536842, -0.014969573356211185, 0.013494271785020828, -0.0028355566319078207, 0.013453667052090168, 0.01720282807946205, -0.019923336803913116, -0.010462459176778793, 0.00939997099339962, -0.008993925526738167, 0.0017815281171351671, -0.03489290922880173, 0.0041450560092926025, 0.018380362540483475, -0.012221992947161198, 0.033268723636865616, -0.03421616554260254, 0.0005883441190235317, 0.014590596780180931, -0.010198528878390789, -0.005979031324386597, -0.009975203312933445, 0.005342892371118069, 0.02203477919101715, -0.027963053435087204, -0.001677478663623333, -0.01886761747300625, 0.04972713440656662, 0.01181594654917717, -0.02448459155857563, -0.00787053070962429, -0.005322590004652739, -0.011680598370730877, 0.002153737237676978, -0.008310413919389248, 0.0036645676009356976, -0.005454555153846741, 0.004568020813167095, -0.02770589105784893, 0.005342892371118069, 0.0023652196396142244, -0.004290555603802204, -0.006540728732943535, -0.004060463048517704, -0.01672910712659359, -0.011261017061769962, 0.022684453055262566, 0.012350574135780334, 0.012533294968307018, -0.03069709986448288, -0.02593282237648964, 0.01055043563246727, 0.0024210510309785604, -0.015673385933041573, 0.021222686395049095, -0.007058437913656235, -0.027340449392795563, 0.02510719560086727, 0.0035258352290838957, -0.04404248669743538, 0.014847759157419205, -0.015091386623680592, 0.018055524677038193, -0.040252722799777985, 0.010983551852405071, -0.007200554013252258, 0.002823713468387723, 0.0326731912791729, 0.03345821425318718, 0.003283899277448654, 0.01039478462189436, 0.022197196260094643, -0.010611343197524548, 0.004676299635320902, -0.02103319764137268, -0.005650810897350311, 0.012946109287440777, -0.008682622574269772, 0.0012062957976013422, 0.024606404826045036, -0.014049201272428036, -0.007105810102075338, 0.008188599720597267, -0.004862404428422451, 0.028748076409101486, 0.014292828738689423, -0.004706752952188253, -0.01620124652981758, 0.0005587366176769137, 0.00033689153497107327, -0.005572985392063856, -0.009081901982426643, 0.010178226977586746, 0.006090694107115269, 0.027746496722102165, -0.005380113143473864, -0.009880459867417812, -0.0011995283421128988, 0.02532375231385231, -0.0380871407687664, -0.0045206486247479916, -0.01819087378680706, 0.007620135322213173, 0.00882473960518837, -0.00901422742754221, 0.008046483621001244, -0.021317429840564728, -0.019679710268974304, 0.012716015800833702, -0.0012832754291594028, 0.0026359171606600285, -0.03605690971016884, -0.011152737773954868, 0.018461570143699646, -0.00763367023319006, -0.014956038445234299, -0.00778932124376297, 0.014725944958627224, 0.025310218334197998, -0.0038878931663930416, -0.002842324087396264, 0.03470342233777046, 0.02378077805042267, -0.04236416146159172, 0.003579974640160799, -0.01534854993224144, -0.01415748056024313, 0.030426401644945145, 0.0032585214357823133, 0.027881843969225883, 0.016147106885910034, -0.003681486239656806, 0.018705198541283607, -0.010523365810513496, 0.02119561657309532, -0.012445318512618542, -0.018204407766461372, 0.009839855134487152, 0.006185438483953476, -0.013670224696397781, -0.017852501943707466, -0.020072221755981445, 0.017893105745315552, 0.00634785695001483, 0.018691664561629295, -0.022738592699170113, 0.020234640687704086, 0.03908872231841087, -0.007992343977093697, 0.014834224246442318, -0.0018441268475726247, -0.013859713450074196, 0.010042877867817879, -0.0232393816113472, -0.00393188139423728, -0.0009262930834665895, -0.008344250731170177, -0.001542129903100431, 0.025418497622013092, 0.027489332482218742, -0.007890832610428333, 0.012039272114634514, 0.03069709986448288, -0.017906641587615013, 0.02332059107720852, 0.006307252217084169, -0.009217250160872936, -0.007565995678305626, 0.013981526717543602, -0.018515709787607193, 0.007660740055143833, 0.00791113544255495, 0.027746496722102165, -0.01689152605831623, 0.0037762303836643696, -0.026027565822005272, -0.013372457586228848, -0.018921757116913795, -0.01549743302166462, 0.031969375908374786, 0.015443293377757072, -0.01689152605831623, 0.00767427496612072, 0.010997086763381958, 0.014062736183404922, -0.0023093882482498884, -0.016214782372117043, 0.020830174908041954, 0.009542088024318218, 0.0017104699509218335, -0.011964830569922924, -0.628884494304657, -0.030426401644945145, -0.00901422742754221, 0.013440132141113281, 0.01050983089953661, 0.00464584631845355, 0.002640992635861039, 0.008763832040131092, -0.009311994537711143, -0.008729995228350163, -0.013264178298413754, 0.0259463582187891, -0.004507113713771105, -0.0002569511707406491, 0.005867369007319212, 0.003691637422889471, 0.0032348353415727615, -0.031888168305158615, 0.014022131450474262, 0.015077851712703705, -0.027990123257040977, 0.011220412328839302, -0.01963910460472107, -0.00537334568798542, 0.014780084602534771, 0.02317170798778534, 0.01277692336589098, -0.018380362540483475, -0.014171015471220016, 0.011118900962173939, -0.015930548310279846, 0.021317429840564728, 0.00041958116344176233, 0.002529330085963011, 0.05711717531085014, 0.005799694452434778, 0.0009491331875324249, 0.045477185398340225, -0.00813446007668972, 0.04474630206823349, -0.005938427057117224, -0.01324387639760971, 0.023929661139845848, -0.004706752952188253, 0.002300929045304656, 0.002199417445808649, 0.014225155115127563, -0.03437858447432518, 0.019381942227482796, 0.012194923125207424, -0.007119345013052225, -0.01756826974451542, -0.0002971328212879598, 0.003058881964534521, 0.010036110877990723, 0.007518623489886522, 0.02003161609172821, -0.027529938146471977, 0.0035833583679050207, 0.009427040815353394, 0.0004614546778611839, 0.009298459626734257, -0.016932129859924316, 0.0060094851069152355, -0.0053022876381874084, -0.009853390045464039, -0.012106946669518948, -0.002629149705171585, 0.018407432362437248, 0.003172236494719982, -0.013027317821979523, 0.008763832040131092, -0.010300040245056152, 0.0064222984947264194, 0.0058402991853654385, 0.02417328953742981, 0.030832447111606598, -0.014983108267188072, -0.032050587236881256, 0.009278157725930214, -0.000642906641587615, -0.009704506024718285, -0.0001500467915320769, 0.008039716631174088, 0.003329579485580325, -0.031184354797005653, -0.034351516515016556, 0.004175509326159954, 0.018475105985999107, -0.003084259806200862, 0.0011140895076096058, 0.02103319764137268, -0.0001788084045983851, -0.012472388334572315, -0.0071870191022753716, 0.01695919968187809, -0.013413062319159508, 0.010618110187351704, -0.0011487726587802172, -0.01557864248752594, -0.006050089839845896, 0.006601635832339525, 0.014888363890349865, 0.011213644407689571, 0.005975647829473019, 0.003175620222464204, -0.027056217193603516, -0.012059574946761131, 0.029045844450592995, -0.014671805314719677, 0.001886423327960074, 0.0018136734142899513, -0.016363665461540222, -0.015375618822872639, 0.011362528428435326, -0.035732071846723557, 0.015565107576549053, -0.011951295658946037, 0.017635943368077278, -0.000782062066718936, 0.023225847631692886, 0.006283566355705261, 0.019205989316105843, -0.002404132392257452, -0.012702480889856815, 0.024890637025237083, -0.01764947921037674, -0.011924225836992264, -0.00535304332152009, 0.0028930797707289457, 0.014441712759435177, 0.027462264522910118, 0.02801719307899475, -0.01909771002829075, 0.025120729580521584, 0.0010692551732063293, 0.0066997637040913105, -0.001247746404260397, 0.026501286774873734, -0.01957143098115921, -0.023577753454446793, -0.006858798675239086, 0.0030774923507124186, -0.015795201063156128, -0.0072952983900904655, -0.025418497622013092, -0.011538482271134853, 0.004601858090609312, -0.021276826038956642, 0.0086284838616848, -0.02562152035534382, -0.0054139504209160805, -0.018245013430714607, 0.03161747008562088, 0.028423240408301353, 0.0006242961389943957, 0.00936613418161869, -0.011484342627227306, -0.01620124652981758, -0.016593758016824722, 0.001317112590186298, -0.016702037304639816, -0.026663705706596375, -0.007031368091702461, -0.024051474407315254, -0.03353942185640335, -0.01320327166467905, -0.01304762065410614, -0.021439243108034134, -0.01932780258357525, 0.010800831019878387, 0.0078231580555439, 0.016471944749355316, 0.016404269263148308, 0.0027137426659464836, 0.023916125297546387, 0.0029844401869922876, -0.009562389925122261, 0.010306808166205883, -0.01009025052189827, -0.002317847451195121, -0.0078096236102283, -0.021073801442980766, -0.005305671598762274, -0.0035292189568281174, 0.01704040914773941, 0.016174176707863808, 0.014414642937481403, -0.02909998409450054, 0.02539142780005932, -0.034947048872709274, 0.028071332722902298, -0.010692551732063293, 0.0016089583514258265, 0.04214760288596153, 0.005498543381690979, 0.007647205144166946, 0.004375148564577103, 0.008087088353931904, 0.02432217262685299, 0.009921064600348473, -0.009846622124314308, 0.005721868947148323, 0.0013128829887136817, 0.0312926322221756, -0.008411925286054611, -0.0179472453892231, -0.013311550952494144, 0.015524502843618393, -0.0040333932265639305, -0.006936624180525541, -0.020857244729995728, -0.015903478488326073, -0.02815254218876362, 0.004713520407676697, -0.004358230158686638, -0.005857217591255903, 0.007268228568136692, -0.014617666602134705, -0.008696157485246658, -0.010327110067009926, -0.017514130100607872, 0.011281318962574005, -0.015321480110287666, 0.010638413019478321, 0.014279293827712536, 0.0005908819148316979, 0.0009059907752089202, -0.015064316801726818, -0.016688501462340355, -0.025770403444767, -0.009460878558456898, -0.006919705308973789, 0.009115738794207573, -0.006561031099408865, -0.012912271544337273, 0.015199665911495686, -0.03513653948903084, 0.011788876727223396, 0.025662124156951904, 0.0012392870848998427, 0.016160642728209496, -0.01863752491772175, -0.0015209816629067063, 0.01553803775459528, 0.0063816942274570465, 0.0312926322221756, 0.004398834891617298, -0.0034023295156657696, 0.014969573356211185, -0.008499901741743088, -0.0006983150378800929, -0.006188821978867054, 0.009602994658052921, -0.0022231033071875572, -0.0207083597779274, 0.004848869517445564, 0.013385992497205734, 0.00517708994448185, 0.029912076890468597, 0.026920868083834648, 0.0009296768112108111, 0.010489528998732567, 0.005078962072730064, 0.0156192472204566, 0.001056566252373159, 0.012025737203657627, -0.03521774709224701, -0.011030923575162888, 0.0077622514218091965, 0.00648320559412241, 0.003385410876944661, 0.019233059138059616, -0.02417328953742981, 0.009684204123914242, -0.002155428985133767, -0.0019591732416301966, 0.003772846655920148, 0.011958062648773193, 0.009224018082022667, -0.024511661380529404, -0.02516133524477482, 0.004804880823940039, 0.014888363890349865, 0.006824961397796869, -0.007261461112648249, 0.019084176048636436, 0.010002273134887218, -0.008337483741343021, 0.005833531729876995, 0.01658022403717041, 0.0009668976999819279, 0.021168546751141548, -0.002674829913303256, -0.011423435062170029, 0.014374038204550743, 0.03397253900766373, 0.004097683820873499, -0.020857244729995728, -0.007755483966320753, 0.0072411587461829185, 0.0007008527754805982, 0.0003887047350872308, -0.011254249140620232, 0.01658022403717041, 0.009745110757648945, 0.015050781890749931, -0.005254915449768305, -0.01612003706395626, -0.02793598361313343, -0.0010041185887530446, -0.003236527321860194, -0.0014643043978139758, 0.0023990566842257977, -0.01070608664304018, 0.01028650626540184, -0.001207987661473453, -0.005434252787381411, 0.015362083911895752, 0.009413505904376507, -0.004571404308080673, -0.02156105823814869, -0.0321047268807888, -0.0040739974938333035, 0.02257617376744747, 0.01070608664304018, -0.004381916020065546, 0.012228760868310928, -0.03278147056698799, -0.004202579148113728, -0.040009092539548874, -0.022129522636532784, 0.002201109193265438, 0.010821133852005005, 0.020139895379543304, -0.02119561657309532, 0.02287393994629383, -0.006605019327253103, 0.017365245148539543, 0.01695919968187809, 0.007092275191098452, -0.008168297819793224, 0.01411687582731247, -0.016512548550963402, 0.00040879554580897093, -0.03930528089404106, 0.02915412373840809, 0.030588820576667786, -0.011958062648773193, -0.013284481130540371, 0.00395218376070261, 0.04320332407951355, 0.01888115145266056, -0.011755039915442467, 0.017987851053476334, -0.007180251646786928, -0.0031874633859843016, 0.024647008627653122, -0.010218831710517406, -0.004774427507072687, 0.01996394246816635, 0.01932780258357525, 0.01216785330325365, 0.0243357066065073, 0.020288778468966484, 0.0386556051671505, 0.0023905974812805653, -0.013792038895189762, -0.012215225957334042, -0.02486356720328331, 0.007843460887670517, 0.013927387073636055, -0.0058978223241865635, -0.001112397643737495, 0.014874828979372978, 0.006760670803487301, -0.03491998091340065, 0.00024806891451589763, 0.017757756635546684, 0.013683759607374668, -0.023821381852030754, 0.009893994778394699, -0.012763388454914093, -0.010936180129647255, 0.004963915795087814, -0.010922645218670368, -0.004889473784714937, -0.006391845177859068, -0.01689152605831623, -0.036787793040275574, 0.004371765069663525, -0.0177171528339386, 0.00026773675926961005, 0.009230785071849823, 0.01580873504281044, -0.03651709482073784, -0.016823850572109222, -0.009914296679198742, 0.0076133678667247295, 0.010002273134887218, 0.03995495289564133, -0.004324392881244421, 0.0019236442167311907, 0.037491608411073685, -0.032050587236881256, -0.027435194700956345, -0.014563526958227158, -0.03708555921912193, -0.01671557128429413, -0.015686921775341034, -0.021236220374703407, -0.005792926996946335, 0.0036882536951452494, 0.027963053435087204, 0.018921757116913795, -0.013507806695997715, 0.012364109046757221, 0.009460878558456898, -0.00525829941034317, -0.00577600859105587, -0.00022353693202603608, 0.027963053435087204, -0.003429399337619543, -0.02755700796842575, -0.01917891949415207, -0.0432574637234211, -0.007139646913856268, -0.01051659882068634, 0.004855636972934008, 0.0022789346985518932, 0.011139202862977982, 0.008323948830366135, 0.0074983215890824795, 0.0032466785050928593, 0.013507806695997715, -0.017554733902215958, 0.02101966179907322, -0.012546829879283905, 0.007938205264508724, 0.012120481580495834, -0.0021977254655212164, 0.0029725972563028336, -0.0012528219958767295, 0.008046483621001244, 0.012079876847565174, -0.015917014330625534, 0.02203477919101715, 0.023279987275600433, -0.01209341175854206, -0.0019219523528590798, 0.009305227547883987, -0.008452530018985271, -0.002441353164613247, 0.014996643178164959, -0.008242739364504814, 0.02855858765542507, -0.006242961622774601, -0.015524502843618393, -0.03746453672647476, -0.009359367191791534, -0.018894687294960022, 0.00810062326490879, 0.006574566010385752, -0.008087088353931904, -0.02448459155857563, -0.0071870191022753716, -0.001817057142034173, -0.026988543570041656, 0.027502868324518204, -0.03007449395954609, -0.0019118012860417366, 0.01086173765361309, -0.002923533320426941, 0.012303202413022518, -9.648886043578386e-05, -0.0013289556372910738, -0.01689152605831623, 0.0035732071846723557, -0.0174870602786541, -0.023076964542269707, 0.006188821978867054, -0.022968685254454613, 0.0061583686619997025, 0.004679683595895767, 0.021655801683664322, 0.021912964060902596, -0.0009846622124314308, -0.008770599961280823, 0.0049469973891973495, 0.023388266563415527, -0.004084148909896612, 0.008466064929962158, -0.012364109046757221, 0.023063428699970245, 0.02103319764137268, 0.011883621104061604, -0.0032568294554948807, -0.0007490707794204354, -0.011159505695104599, 0.017690083011984825, -0.021060267463326454, 0.013074690476059914, 0.005048508755862713, -0.05884964019060135, 0.016783246770501137, 0.0011293162824586034, -0.003398945787921548, -0.021818220615386963, -0.026217054575681686, 0.0010201912373304367, 0.0046153925359249115, -0.00577600859105587, 0.008344250731170177, -0.00774871651083231, 0.015862874686717987, -0.022291941568255424, 0.03708555921912193, -0.009988738223910332, -0.0013027318054810166, 0.0022873941343277693, 0.004009706899523735, -0.003185771405696869, 0.0004830258840229362, 0.010936180129647255, 0.015673385933041573, 0.01430636364966631, -0.022819800302386284, -0.004202579148113728, 0.002855858765542507, 0.00893978588283062, -0.012729550711810589, -0.039711326360702515, -0.02501245029270649, -0.021601662039756775, -0.03007449395954609, -0.013737899251282215, -0.021087337285280228, -0.04128137230873108, 0.006977228447794914, 0.005566217936575413, -0.010097017511725426, 0.011788876727223396, -0.003124864539131522, -0.0052786017768085, -0.007565995678305626, -0.03416202589869499, 0.03968425840139389, 0.002832172904163599, 0.004270253237336874, 0.003014893736690283, -0.0020742197521030903, -0.009183413349092007, -0.05370638892054558, -0.008872111327946186, -0.010117320343852043, 0.011376063339412212, 0.0179472453892231, 0.008317180909216404, 0.012837829999625683, 0.02747579850256443, 0.011085063219070435, -0.03310630843043327, -0.03391839936375618, 0.04515234753489494, 0.0012443626765161753, 0.024674078449606895, 0.00020820446661673486, 0.015104921534657478, -0.004771044012159109, 0.016864456236362457, -0.001015115762129426, -0.012100179679691792, -0.02525607869029045, -0.010232366621494293, -0.003793149022385478, -0.007302065845578909, -0.014834224246442318, 0.02233254536986351, 0.010327110067009926, -0.03015570342540741, 0.018678128719329834, 0.006780972704291344, -0.00031574329477734864, 0.016512548550963402, 0.010110552422702312, 0.04480044171214104, -0.011159505695104599, 0.017175758257508278, 0.03570500388741493, 0.006401996593922377, 0.006791124120354652, -0.010868505574762821, -0.0322130061686039, 0.03806007280945778, -0.03981960564851761, -0.014455247670412064, -0.018827011808753014, 0.006151601206511259, 0.02087077870965004, 0.007437414489686489, 0.004963915795087814, 0.004903008695691824, -0.05021439120173454, -0.004923311062157154, 0.028369100764393806, -0.010773761197924614, -0.0029962831176817417, 0.003759311744943261, -0.010408319532871246, -0.012594202533364296, 0.01545682828873396, 0.015118456445634365, -0.003942032810300589, -0.014252224937081337, -0.03069709986448288, -0.009602994658052921, -0.03207765519618988, -0.0005722714704461396, 0.009562389925122261, -0.02671784535050392, 0.00510264839977026, 0.04239123314619064, -0.03965718671679497, 0.016309525817632675, -0.0321047268807888, -0.01277692336589098, 0.003860823344439268, 0.0036848699674010277, -0.01312206219881773, -0.028964634984731674, 0.03232128545641899, 0.007511856034398079, -0.013338620774447918, -0.029749657958745956, 0.0156192472204566, -0.0020183883607387543, -0.008540506474673748, 0.021303895860910416, 0.03984667360782623, -0.015903478488326073, 0.008811204694211483, 0.010388017632067204, -0.018542779609560966, -0.011788876727223396, 0.012391178868710995, -0.006175287067890167, 0.0045747882686555386, -0.02648775279521942, 0.018678128719329834, 0.009311994537711143, 0.013521341606974602, -0.014374038204550743, -0.027435194700956345, -0.03559672459959984, -5.2685561968246475e-05, -0.009393204003572464, -0.022535568103194237, -0.027611147612333298, -0.005407182965427637, 0.0017426152480766177, -0.013264178298413754, -0.015389153733849525, 0.002424434758722782, 0.003975869622081518, 0.0268667284399271, 0.01626892015337944, 0.0019608652219176292, 0.018921757116913795, -0.007173484191298485, -0.005803077947348356, -0.0012054499238729477, -0.007579530589282513, -0.02501245029270649, -0.017906641587615013, 0.0025902369525283575, 0.011436969973146915, -0.009623296558856964, -0.043852999806404114, -0.04469216242432594, 0.010306808166205883, -0.04474630206823349, -0.0034953816793859005, -0.017378780990839005, 0.00921048317104578, 0.02694793790578842, 0.01766301319003105, -0.004121369682252407, -0.005559450481086969, -0.006557647604495287, -0.009650366380810738, -0.001805214094929397, -0.00652381032705307, 0.012120481580495834, -0.02700207754969597, 0.0047236718237400055, 0.0033701842185109854, -0.021885894238948822, -0.033268723636865616, 0.020369987934827805, 0.00924431998282671, 0.028260821476578712, 0.0322130061686039, -0.01656668819487095, -0.006229426711797714, -0.013291248120367527, -0.013555178418755531, -0.014928968623280525, 0.029506029561161995, -0.0045544859021902084, -0.0202481746673584, -0.0202481746673584, -0.005498543381690979, -0.017771292477846146, -0.03608398139476776, 0.0386556051671505, -0.005241380538791418, -0.0008958395919762552, 0.032185934484004974, -0.007518623489886522, 0.01289196964353323, -0.010388017632067204, 0.0023060045205056667, 0.034811701625585556, -0.011497877538204193, 0.013000248931348324, 0.013501038774847984, 0.010191761888563633, 0.00525829941034317, -0.01530794519931078, -0.0021283591631799936, -0.005667729303240776, -0.0016580222873017192, 0.01454999204725027, 0.0021385103464126587, 0.019544361159205437, 0.0024988765362650156, 0.011403133161365986, -0.006561031099408865, 0.017595339566469193, 0.01894882693886757, 0.012215225957334042, -0.031509190797805786, 0.022007709369063377, 0.01032034307718277, -0.01819087378680706, 0.0061617521569132805, -0.007044903002679348, -0.026338869705796242, -0.00794497225433588, -0.01574106141924858, 0.0031316319946199656, -0.01635012961924076, -0.003074108622968197, 0.005549299065023661, -0.03337700292468071, -0.022806266322731972, -0.014279293827712536, -0.004304090514779091, -0.009589459747076035, 0.0036476491950452328, 0.29668447375297546, -0.024457521736621857, -0.005928275641053915, -0.011748271994292736, -0.008195367641746998, 0.016228316351771355, 0.009745110757648945, 0.01335892267525196, -0.004101067315787077, 0.007917902432382107, -0.023658962920308113, 0.01201220229268074, -0.0019118012860417366, -0.007119345013052225, 0.011491109617054462, -0.04480044171214104, -0.02723217010498047, 0.007193786557763815, -0.02287393994629383, -0.009332297369837761, 0.027286309748888016, -0.009623296558856964, 0.0014228539075702429, -0.005444403737783432, 0.004493578802794218, -0.004209346603602171, -0.013697294518351555, -0.018745804205536842, 0.010036110877990723, -0.010266203433275223, -0.010624878108501434, -0.0007304603350348771, 0.004412369802594185, -0.026880264282226562, -0.006249729078263044, -0.010293273255228996, 0.009515018202364445, 0.018623989075422287, 0.007660740055143833, 0.0046120090410113335, 0.0007685271557420492, 0.009853390045464039, 0.015510967932641506, 0.008087088353931904, 0.006956926546990871, 0.026568962261080742, -0.008709692396223545, -0.013534876517951488, -0.028964634984731674, 0.018705198541283607, -0.03299802914261818, -0.009467645548284054, 0.017514130100607872, 0.02785477414727211, 0.003363416763022542, -0.0020166966132819653, 0.029668448492884636, 0.005048508755862713, -0.003475079545751214, -0.004639078862965107, 0.01181594654917717, 0.03194230794906616, -0.01850217580795288, 0.02510719560086727, -0.01758180372416973, 0.001303577795624733, -0.025811009109020233, -0.004192427732050419, -0.011152737773954868, -0.015037246979773045, -0.012255830690264702, -0.02625766023993492, 0.00032293368712998927, -0.016363665461540222, -0.008283344097435474, -0.020221104845404625, 0.038114212453365326, 0.029641378670930862, 0.026826124638319016, 0.023496543988585472, 0.0031925388611853123, 0.012790458276867867, 0.0018238245975226164, 0.0103541798889637, -0.026027565822005272, -0.020437663421034813, 0.023916125297546387, 0.020857244729995728, 0.0185833852738142, -0.002844015834853053, 0.014401108026504517, -0.006053473334759474, 0.010002273134887218, -0.0022061849012970924, -0.002121591940522194, 0.022386685013771057, 0.02133096382021904, 0.011213644407689571, -0.019598500803112984, 0.01666143164038658, -0.0023076962679624557, 0.01825854741036892, 0.04122723266482353, 0.02363189309835434, -0.018069060519337654, -0.003028428414836526, -0.02218366228044033, 0.013257411308586597, 0.011572319082915783, -0.028666866943240166, 0.005001136567443609, -0.046072717756032944, -0.008351018652319908, -0.00767427496612072, -0.01293257437646389, -0.006520426366478205, -0.014969573356211185, -0.010611343197524548, 0.0051567875780165195, -0.022386685013771057, 0.01155201718211174, -0.022007709369063377, 0.001597961294464767, 0.011118900962173939, -0.0057861595414578915, -0.010658714920282364, -0.009420273825526237, -0.0051567875780165195, -0.004655997268855572, -0.04645169526338577, 0.032348353415727615, -0.005437636282294989, 0.010381249710917473, 0.023063428699970245, -0.0038912768941372633, 0.029993286356329918, 0.010645180009305477, 0.005007904022932053, 0.010685784742236137, -0.0006293717306107283, -0.007572763133794069, -0.013460434041917324, 0.012418248690664768, -0.007430647034198046, -0.007992343977093697, -0.019909802824258804, 0.00776901887729764, -0.01957143098115921, 0.02210245281457901, -0.0009339064708910882, -0.01697273552417755, 0.0017341560451313853, -0.011565551161766052, -0.030967796221375465, 0.014225155115127563, -0.006043322384357452, -0.016918595880270004, -0.03860146552324295, -0.008594646118581295, 0.032429564744234085, -0.03838490694761276, 0.011247482150793076, 0.04517941549420357, -0.015362083911895752, 0.0036273468285799026, -0.015849340707063675, -0.17530371248722076, 0.005034973844885826, 0.03554258495569229, -0.004618776496499777, 0.03283561021089554, 0.01963910460472107, -0.01177534181624651, 0.008168297819793224, -0.009555622935295105, 0.013365690596401691, 0.035271886736154556, -0.020776035264134407, -0.012560364790260792, -0.012174621224403381, 0.0018085978226736188, -0.007802856154739857, -0.009447343647480011, 0.008878878317773342, 0.025080125778913498, 0.012194923125207424, 0.042553652077913284, -0.012438551522791386, 0.008378088474273682, 0.008337483741343021, 0.019544361159205437, 0.017013339325785637, -0.01549743302166462, 0.014536457136273384, -0.01450938731431961, -0.004398834891617298, -0.009007460437715054, 0.0022315627429634333, 0.03662537410855293, -0.005227846093475819, -0.0045003462582826614, -0.008919483050704002, -0.006977228447794914, -0.024768823757767677, -0.005671113263815641, 0.013270946219563484, 0.016837386414408684, 0.02732691541314125, -0.01618771255016327, 0.00652381032705307, -0.011328691616654396, 0.03039933182299137, 0.0077622514218091965, 0.0009178337641060352, 0.011288086883723736, -0.00035952014150097966, 0.0003009395150002092, -0.015551572665572166, 0.0025462484918534756, 0.022928079590201378, 0.005982415284961462, 0.021155010908842087, -0.0073900423012673855, 0.0063241710886359215, -0.014035666361451149, 0.009731575846672058, -0.00512295076623559, -0.015010177157819271, 0.02418682351708412, 0.014590596780180931, -0.0006471362430602312, -0.018475105985999107, -0.007329135201871395, 0.013331852853298187, -0.0029438354540616274, 0.006892635487020016, 0.011051226407289505, -0.012560364790260792, 0.00010785604536067694, -0.021601662039756775, 0.0001299559517065063, -0.009108971804380417, -0.0011200109729543328, 0.013528108596801758, -0.0020640685688704252, -0.009115738794207573, -0.013575480319559574, 0.021073801442980766, -0.027286309748888016, -0.01658022403717041, 0.007572763133794069, 0.015835804864764214, 0.014360503293573856, -0.022901009768247604, -0.023388266563415527, 0.0055256132036447525, 0.035028260201215744, -0.037870582193136215, -0.015240270644426346, -0.0013382608303800225, -0.00661855423822999, 0.01687799021601677, 0.0018458187114447355, 0.0035156840458512306, -0.017866035923361778, -0.0022518651094287634, 0.013406294398009777, -0.02793598361313343, -0.005708334036171436, -0.0027492716908454895, 0.01588994450867176, -0.008114158175885677, 0.017135152593255043, 0.03952183946967125, 0.05340862274169922, -0.010733156464993954, 0.006723449565470219, 0.00898039061576128, 0.034730490297079086, 0.03483876958489418, 0.024132683873176575, 0.014279293827712536, 0.009846622124314308, -0.014969573356211185, 0.030182773247361183, -0.007972042076289654, -0.028802216053009033, 0.0011140895076096058, 0.0020860626827925444, 0.03107607550919056, -0.0031688527669757605, -0.0016580222873017192, -0.03397253900766373, -0.019124779850244522, 0.005014671478420496, 0.03340407460927963, -0.01781189627945423, 0.03616518899798393, 0.011727970093488693, 0.024741753935813904, 0.006094078067690134, 0.023916125297546387, -0.02993914671242237, -0.02915412373840809, -0.010611343197524548, -0.026460682973265648, 0.0003908195358235389, -0.020166965201497078, -0.004855636972934008, -0.02371310256421566, -0.0037863815668970346, 0.02487710304558277, 0.0086284838616848, -0.033728912472724915, 0.021547522395849228, -0.0241056140512228, -0.007647205144166946, 0.017554733902215958, -0.025215474888682365, 0.04366350919008255, 0.010530133731663227, 0.02424096316099167, 0.028829285874962807, -0.004750741645693779, -0.01995040662586689, -0.024498125538229942, -0.013846178539097309, -0.03270025923848152, -0.02065422013401985, -0.034486863762140274, 0.029830867424607277, -0.020437663421034813, 0.014753014780580997, 0.024376312270760536, 0.0001567084837006405, -0.0130882253870368, -0.002042074454948306, -0.023699568584561348, -0.015862874686717987, 0.023686032742261887, -0.0003872243396472186, -0.01327771320939064, -0.040090303868055344, -0.006517042871564627, 0.01024590153247118, 0.010069947689771652, 0.0322130061686039, -0.00904806423932314, 0.018542779609560966, 0.009474413469433784, -0.034649282693862915, 0.0021486615296453238, -0.0034818467684090137, -0.005995950195938349, 0.021926499903202057, 0.023821381852030754, 0.034351516515016556, -0.007092275191098452, -0.027529938146471977, -0.017473524436354637, 0.019138315692543983, -0.004642462357878685, -0.014577061869204044, 0.006936624180525541, -0.016255386173725128, 0.005698182620108128, -0.009751878678798676, -0.016945665702223778, -0.0156192472204566, -0.009609761647880077, 0.023767242208123207, -0.026135845109820366, -0.004845485556870699, -0.020965522155165672, 0.009778947569429874, -0.008317180909216404, 0.027178030461072922, 0.013995061628520489, -0.01957143098115921, -0.005055276211351156, -0.0030436553061008453, -0.012492690235376358, -0.007065205369144678, 0.006889251992106438, 0.03662537410855293, -0.005556066520512104, 0.010002273134887218, 0.0037187072448432446, 0.010983551852405071, -0.0005938427057117224, 0.005613589659333229, 0.00665915897116065, -0.004879322834312916, -0.026893798261880875, -0.07422526180744171, 0.004415753297507763, 0.006469670683145523, 0.028639797121286392, 0.005701566580682993, 0.004084148909896612, 0.033187516033649445, -0.00508234603330493, 0.009589459747076035, -0.019530825316905975, -0.026311799883842468, -0.00948118045926094, 0.011910690926015377, -0.023117568343877792, -0.015917014330625534, -0.00778932124376297, -0.004432671703398228, 0.00026498749502934515, -0.009115738794207573, -0.00571510149165988, 0.015565107576549053, 0.016620827838778496, -0.007220856379717588, 0.01269571390002966, -0.012431783601641655, 0.00767427496612072, 0.0022840104065835476, 0.011159505695104599, -0.016160642728209496, -0.005292136687785387, 0.0035359864123165607, -0.03131970390677452, -0.007200554013252258, 0.01848863996565342, -0.0010379558661952615, -0.046532902866601944, -0.0035393701400607824, 0.03619225695729256, 0.02026170864701271, 0.02509365975856781, -0.028342030942440033, -0.02202124334871769, 0.018380362540483475, 0.010997086763381958, 0.009447343647480011, -0.005813229363411665, -0.011944527737796307, 0.023848451673984528, 0.015605712309479713, -0.004787962418049574, 0.017378780990839005, 0.01641780510544777, 0.0050992644391953945, -0.024768823757767677, -0.028369100764393806, -0.027881843969225883, 0.009765412658452988, 0.0013027318054810166, 0.010408319532871246, -0.006219275761395693, 0.022779196500778198, 0.013291248120367527, 0.0007384966593235731, -0.014455247670412064, -0.033728912472724915, -0.018204407766461372, -0.001478685182519257, -0.005806461907923222, 0.028206681832671165, -0.004503730218857527, -0.010956482030451298, 0.01733817718923092, -0.017162222415208817, 0.003512300318107009, 0.010679016821086407, 0.018082594498991966, 0.011727970093488693, -0.01557864248752594, -0.021006127819418907, 0.011714435182511806, -0.0017882954562082887, 0.0031468586530536413, -0.0312926322221756, 0.025459101423621178, 0.011903923936188221, -0.0045003462582826614, -0.015402688644826412, 0.0002901538973674178, -0.0034598526544868946, 0.02639300748705864, -0.004178892821073532, -0.0026782136410474777, 0.004263485781848431, 0.023618359118700027, 0.004632311407476664, 0.033025097101926804, 0.0034277073573321104, -0.030101563781499863, 0.014279293827712536, 0.008520204573869705, 0.009670669212937355, 0.013169434852898121, -0.009900761768221855, -0.038411978632211685, -0.021737011149525642, 0.01526734046638012, -0.03789765387773514, -0.044773370027542114, -0.025432031601667404, 0.003263596910983324, -0.0013441824121400714, 0.009345832280814648, -0.013027317821979523, 0.004990985617041588, 0.003420939901843667, 0.020762499421834946, 0.0033481898717582226, 0.00772841414436698, -0.02479589357972145, 0.008317180909216404, 0.02003161609172821, 0.014333433471620083, -0.00032906667911447585, -0.005928275641053915, 0.02478235773742199, 0.021506918594241142, -0.0007727568154223263, -0.032050587236881256, 0.023848451673984528, -0.0020386907272040844, 0.0022857021540403366, 0.015321480110287666, -0.005941810552030802, -0.003498765407130122, -0.015037246979773045, 0.010367714799940586, 0.0011546941241249442, 0.02525607869029045, -0.02961430884897709, 0.04182276874780655, -0.003613811917603016, 0.013967991806566715, -0.010570738464593887, 0.013724364340305328, 0.013609318062663078, -0.015510967932641506, -0.013027317821979523, -0.0019168768776580691, -0.028910495340824127, 0.015443293377757072, -0.009853390045464039, -0.015592177398502827, -0.016688501462340355, -0.0037762303836643696, -0.023442406207323074, -0.02302282489836216, 0.011010621674358845, 0.004280404653400183, -0.005874135997146368, 0.00866908859461546, 0.014712410047650337, 0.003870974527671933, 0.00916987843811512, -0.021520452573895454, -0.01446878258138895, 0.024890637025237083, 0.003552905051037669, -0.0031637772917747498, 0.002451504347845912, -0.0071870191022753716, 0.013758201152086258, -0.029993286356329918, -0.016390735283493996, 0.0118227144703269, 0.002199417445808649, -0.01926012896001339, -0.01193099282681942, -0.004425904713571072, 0.03500118851661682, -0.011721203103661537, 0.03759988397359848, -0.021087337285280228, -0.017175758257508278, 0.01666143164038658, -0.0008463527192361653, 0.0128852017223835, -0.011985132470726967, -0.01277692336589098], "45aadffd-70a5-4839-92f9-6a8f5f60e930": [-0.005083593539893627, -0.008782358840107918, 0.005839597433805466, -0.034366365522146225, -0.01294391043484211, 0.024064933881163597, -0.00996935460716486, -0.031455397605895996, 0.0067439754493534565, 0.0036811011377722025, 0.0004237063985783607, 0.0054192026145756245, -0.015204855240881443, 0.00949596893042326, -0.02088548056781292, -0.0020171869546175003, 0.013975466601550579, 0.014908106997609138, 0.005136584397405386, -0.014251019805669785, 0.000822683738078922, 0.05081474035978317, -0.017013611271977425, -0.0075105768628418446, -0.01856801100075245, 0.03264239430427551, 0.017267968505620956, -0.03230325132608414, 0.0017822606023401022, 0.0038153447676450014, 0.023810578510165215, -0.022821415215730667, -0.014371132478117943, -0.03490334004163742, -0.016942957416176796, -0.021365931257605553, -0.009050846099853516, -0.012194972485303879, -0.0035468575078994036, 0.009227481670677662, -0.009319333359599113, -0.03719254583120346, -0.004468899220228195, 0.0035892503801733255, -0.0014475347707048059, 0.011714521795511246, 0.003691699355840683, 0.009291071444749832, -0.009580754674971104, 0.013374903239309788, -0.006019766442477703, 0.013325445353984833, -0.008068747818470001, -0.04827117919921875, 0.018214737996459007, -0.0008778825867921114, -0.015967924147844315, 0.007927438244223595, -0.03168149292469025, -0.0003245692641939968, 0.035581622272729874, -0.0007515876204706728, -0.009001387283205986, 0.005482791922986507, 0.015120070427656174, -0.03168149292469025, -0.008393758907914162, 0.014074383303523064, -0.011262333020567894, 0.015501604415476322, -0.0065496754832565784, 0.0418274849653244, 0.001100444351322949, 0.006344777066260576, 0.025435632094740868, 0.00020710610260721296, -0.04677329957485199, -0.020631123334169388, 0.006902948021888733, -0.027216127142310143, 0.006980667822062969, 0.007093715015798807, -0.013685783371329308, -0.007771998643875122, 0.006998331751674414, 0.02414971962571144, -0.03953827545046806, 0.029392285272479057, -0.013205332681536674, -0.004221608396619558, 0.0005833415198139846, 0.025025835260748863, 0.005673558916896582, 0.0014651983510702848, -0.005723017267882824, -0.00522137014195323, -0.005980906076729298, 0.037277333438396454, 0.0016886433586478233, -0.03871868550777435, -0.0009723830153234303, 0.03210541978478432, -0.011820503510534763, -0.002375758718699217, -0.05180390551686287, -0.008167664520442486, 0.030183617025613785, 0.0075317732989788055, -0.00545099750161171, -0.032048895955085754, -0.00317062227986753, 0.028869442641735077, -0.006910013500601053, 0.009764456190168858, -0.03984915837645531, -0.012103121727705002, 0.005408604629337788, -0.016745124012231827, -0.04838422313332558, -0.00985630787909031, -0.007242089603096247, 0.037333857268095016, 0.03693819046020508, -0.010096533223986626, 0.011453099548816681, 0.015275510028004646, -0.01709839701652527, -0.0016144560649991035, -0.0015711801825091243, -0.01670273207128048, 0.06302384287118912, 0.022496404126286507, 0.017041873186826706, 0.004320524632930756, -0.0012408702168613672, 0.021973559632897377, -0.00026230496587231755, 0.020306112244725227, -0.022185523062944412, -0.003988448530435562, 0.02098439633846283, 0.018129954114556313, 0.022708367556333542, -0.012265627272427082, -0.01568530686199665, 0.017536455765366554, 0.019811531528830528, 0.02424863539636135, -0.02013654261827469, -0.005673558916896582, 0.01617988757789135, -0.010379151441156864, -0.028035718947649002, 0.006630927789956331, -0.00441237585619092, -0.002808517776429653, 0.002027785172685981, -0.00410856120288372, -0.015445081517100334, -0.03108799457550049, 0.00804048590362072, 0.019062593579292297, 0.040612224489450455, -0.003481502179056406, 0.016420112922787666, 0.03173801675438881, -0.012654227204620838, -0.012173776514828205, 0.026198701933026314, 0.009997616522014141, -0.011947681196033955, 0.030579281970858574, 0.007560035213828087, 0.013184135779738426, -0.0014016092754900455, 0.02405080385506153, 0.01326892152428627, -0.010675899684429169, -0.0019324014429003, 0.0040449718944728374, -0.03346198797225952, 0.014399394392967224, 0.0012426365865394473, -0.002585955895483494, 0.026778068393468857, -0.004702059086412191, 0.016957087442278862, 0.0020012897439301014, 0.015572259202599525, -0.009792718105018139, 0.019104985520243645, 0.011276463977992535, 0.01869518868625164, -0.003882466582581401, -0.5607143640518188, -0.03801213949918747, -0.01797451265156269, -0.008005158975720406, 0.0178473349660635, 0.008280711248517036, 0.004581946413964033, 0.012640096247196198, -0.04318404942750931, 0.01461135782301426, -0.0001321460586041212, 0.02987273596227169, 0.0039001302793622017, -0.007333940826356411, 0.018228869885206223, -0.027413958683609962, -0.02494104951620102, 0.008337235078215599, 0.0010130093432962894, 0.024884527549147606, -0.05081474035978317, 0.0075529697351157665, -0.02621283195912838, -0.002865041373297572, 0.029109667986631393, 0.016886433586478233, -0.00773667125031352, -0.014950498938560486, -0.012293889187276363, 0.028615085408091545, -0.029335763305425644, 0.021761596202850342, -0.011954747140407562, -0.011608540080487728, 0.04428626224398613, -0.007298613432794809, -0.031172780320048332, 0.020433291792869568, 0.005129518918693066, 0.05058864504098892, -0.023217080160975456, -0.02138006128370762, 0.015261379070580006, -0.0016259374096989632, 0.017296230420470238, 0.0031582575757056475, -0.008422020822763443, -0.013205332681536674, -0.00030138573492877185, -0.012053663842380047, 0.01100091077387333, -0.0076660169288516045, 0.019825661554932594, 0.014823321253061295, 0.0128449946641922, 0.012675423175096512, 0.013890680857002735, -0.007090182509273291, -0.004023775923997164, -0.006864088121801615, -0.029561856761574745, 0.004642002750188112, -0.0031458931043744087, -0.010576983913779259, -0.004790377337485552, 0.007333940826356411, -0.03572293370962143, -0.021676810458302498, -0.024531254544854164, 0.022934461012482643, -0.018129954114556313, 0.010110664181411266, -0.0023051041644066572, 0.025774773210287094, -0.006892349570989609, 0.001837017829529941, 0.027272649109363556, -0.030155355110764503, -0.0008487376035191119, -0.004500693641602993, 0.004642002750188112, -0.009941092692315578, -0.027738969773054123, -0.004631404764950275, 0.035412050783634186, -0.011622671037912369, -0.03535552695393562, -0.025944344699382782, 0.00475504994392395, -0.006436627823859453, 0.020518075674772263, 0.017338622361421585, -0.00036872836062684655, 0.0008293075952678919, -0.003903663018718362, 0.029081406071782112, -0.01682990975677967, -0.016716862097382545, -0.02399428002536297, -0.02359861508011818, -0.0503908134996891, -0.017013611271977425, -0.007793195080012083, 0.013862419873476028, 0.023852970451116562, 0.0021779260132461786, -0.045444995164871216, 0.0035503902472555637, 0.010054140351712704, -0.00537681020796299, 0.014682011678814888, -0.004401777405291796, -0.01899193786084652, -0.001292977947741747, 0.003598082112148404, -0.02984447591006756, 0.0618368461728096, 0.020574599504470825, 0.007821456529200077, 2.5750265194801614e-05, 0.012067794799804688, -0.007998093031346798, 0.021987691521644592, 0.005496922880411148, 0.0032324448693543673, 0.00831603817641735, -0.009326398372650146, -0.011297659948468208, -0.0022485805675387383, 0.006461357232183218, -0.000898637343198061, 0.015515735372900963, 0.019472388550639153, -0.023655137047171593, 0.011057434603571892, -0.020673517137765884, -0.017267968505620956, -0.015586390160024166, 0.016886433586478233, -0.03490334004163742, -0.008591591380536556, -0.0025347312912344933, -0.007033658679574728, 0.0003479735751170665, -0.020023494958877563, -0.016095103695988655, -0.02372579276561737, -0.008400823920965195, -0.015543997287750244, 0.04609501734375954, -0.010598179884254932, -0.01804516837000847, -0.01712665893137455, 0.001641834736801684, 0.021464847028255463, 0.004158019088208675, -0.017140788957476616, -0.026523711159825325, 0.012244430370628834, 0.004037906415760517, 0.011848765425384045, -0.0059632426127791405, -0.007955700159072876, -0.008895405568182468, 0.0067934333346784115, -0.033320676535367966, -0.028784656897187233, 0.029392285272479057, -0.0015367361484095454, -0.015430950559675694, -0.0032218466512858868, 0.009679671376943588, -0.001992457779124379, -0.015374426729977131, -0.025209536775946617, 0.003631643019616604, 0.008160598576068878, -0.013360772281885147, -0.0028173495084047318, -0.0029039012733846903, 0.026368271559476852, -0.0017866764683276415, -0.009785653091967106, -0.0192886870354414, 0.024983443319797516, -0.005723017267882824, 0.014208626933395863, 0.02444646880030632, -0.003829475725069642, 0.01882236823439598, -0.030381448566913605, 0.0028067512903362513, 0.0024075531400740147, 0.018963675945997238, 0.02369753085076809, 0.006857022643089294, -0.01653316058218479, 0.012767273932695389, 0.0007242089486680925, 0.03385765105485916, 0.0252377986907959, -0.01060524582862854, -0.0015385025180876255, -0.01375643815845251, 0.04239271953701973, -0.012922714464366436, 0.004398244898766279, -0.01924629509449005, 0.00514011736959219, 0.03179454058408737, -0.023188818246126175, -0.021139835938811302, -0.006489619147032499, -0.0023157023824751377, 0.030833639204502106, 0.011022107675671577, -0.027103079482913017, 0.02121049165725708, -0.004871630109846592, 0.018002774566411972, 0.013219463638961315, -0.001587077509611845, 0.013933073729276657, -0.020108280703425407, -0.004140355624258518, -0.015869008377194405, 0.0029268639627844095, -0.004945817403495312, -0.016646208241581917, -0.03942523151636124, -0.05140823870897293, -0.026297617703676224, -0.016391851007938385, -0.00683935871347785, -0.009580754674971104, -0.02905314415693283, 0.014434721320867538, -0.021592024713754654, 0.018454963341355324, 0.01357980165630579, 0.013212397694587708, 0.026156308129429817, 0.0061999354511499405, -0.031031470745801926, 0.021055050194263458, 0.00424987031146884, 0.019034331664443016, 0.012837928719818592, -0.01269662007689476, 0.014349935576319695, -0.026749806478619576, 0.01650489866733551, -0.03900130093097687, 0.023287734016776085, -0.00965847447514534, -0.0007436389569193125, 0.02006588689982891, 0.02745635248720646, 0.02758353017270565, 0.024389944970607758, 0.021295275539159775, 0.01777668111026287, -0.009015518240630627, -0.0031441268511116505, 0.0016294701490551233, -0.00882475171238184, 0.005708886310458183, -0.009531296789646149, -0.04055570065975189, -0.01191235426813364, 0.016617946326732635, 0.00014263384218793362, 0.00846441276371479, -0.00047117742360569537, 0.01745167002081871, 0.0002523691509850323, 0.011806372553110123, 0.0273574348539114, 0.022143131121993065, 0.010527525097131729, -0.026679152622818947, -0.03566640987992287, 0.022892069071531296, 0.03973611071705818, -0.015515735372900963, -0.02509649097919464, -0.0059491116553545, -0.014470048248767853, -0.02905314415693283, 0.0076872133649885654, -0.009898699820041656, 0.018638666719198227, 0.02833246812224388, 0.0069665368646383286, -0.009178023785352707, -0.0030452103819698095, 0.02643892727792263, 0.002511768601834774, -0.03094668500125408, 0.008944864384829998, -0.003674035659059882, -0.013706979341804981, -0.030183617025613785, 0.006871153600513935, 0.05287785455584526, 0.012753142975270748, -0.0005157780833542347, 0.005496922880411148, -0.016985349357128143, -0.028586823493242264, -0.014081448316574097, -0.029364023357629776, 0.025322584435343742, -0.0034090811386704445, -0.015317902900278568, 0.012823797762393951, 0.0004773596883751452, -0.00773667125031352, 0.013155873864889145, -0.0030840702820569277, -0.0319075882434845, -0.03089016303420067, -0.02451712265610695, 0.010697096586227417, -0.05239740386605263, -4.05711580242496e-05, -0.02359861508011818, -0.006736909970641136, -0.01810169219970703, 0.0010924957459792495, -0.027498744428157806, -0.022538796067237854, 0.013876550830900669, -0.027399828657507896, 0.0332641527056694, -0.01715492084622383, 0.022892069071531296, -0.026594366878271103, 0.018878892064094543, 0.013078154064714909, -0.01578422263264656, -0.008570394478738308, 0.026481319218873978, -0.0024888059124350548, -0.008754096925258636, 0.003191818483173847, -0.0043381885625422, 0.016716862097382545, -0.020419159904122353, -0.010944386944174767, 0.012300954200327396, 0.012011270970106125, 0.0175788477063179, -0.013784699141979218, 0.00708311703056097, -0.0014033756451681256, 0.00012640537170227617, 0.01492223795503378, -0.018836498260498047, 0.032048895955085754, 0.001912971492856741, 0.007189098745584488, 0.012124317698180676, 0.02314642444252968, 0.025605203583836555, 0.01964196003973484, 0.012830863706767559, -0.021153967827558517, 0.02414971962571144, -0.008591591380536556, -0.01254824548959732, 0.011834634467959404, -0.012286823242902756, -0.008224187418818474, 0.0015120069729164243, 0.0053273518569767475, -0.03685340657830238, 0.012477590702474117, -0.012315085157752037, 0.033546771854162216, -0.04533194750547409, -0.0014016092754900455, 0.01817234605550766, 0.013706979341804981, 0.028586823493242264, -0.006150477100163698, 0.012378674000501633, 0.005723017267882824, -0.003744690213352442, -0.002759059425443411, -0.018737582489848137, -0.024912789463996887, 0.0013256557285785675, -0.0031070332042872906, 0.027993327006697655, -0.0499386228621006, -0.019726745784282684, 0.01148842740803957, 0.013480884954333305, 0.02232683263719082, 0.012703685089945793, -0.026481319218873978, -0.01075362041592598, 0.028784656897187233, -0.0007904475787654519, -0.014335804618895054, 0.0011366547551006079, -0.026820460334420204, 0.009008453227579594, -0.042534030973911285, 0.027767231687903404, -0.013834157958626747, 0.016321197152137756, 0.00024486210895702243, 0.026622628793120384, -0.007090182509273291, 0.017889728769659996, -0.009630212560296059, 0.006853489670902491, -0.021917035803198814, 0.0048045082949101925, 0.028247682377696037, -0.018949545919895172, -0.002204421442002058, 0.023881232365965843, -0.01372817624360323, 0.0036846338771283627, -0.015812484547495842, -0.005553446244448423, 0.02095613442361355, 0.015416819602251053, 0.0030081167351454496, -0.0024252168368548155, 0.010788947343826294, 0.013304248452186584, -0.0214083231985569, 0.01565704494714737, -0.027018293738365173, -0.010124795138835907, -0.0178473349660635, -0.02138006128370762, 0.0076448204927146435, -0.0011260566534474492, -0.027004161849617958, 0.027074817568063736, -0.03529900684952736, 0.010138925164937973, 0.009693802334368229, -0.01983979344367981, 0.04716896638274193, -0.02242574840784073, -0.025732381269335747, -0.005260230042040348, 0.0016665637958794832, -0.012018335983157158, 0.014696142636239529, -0.025831297039985657, 0.014893976040184498, -0.03298153728246689, -0.014752666465938091, 0.009736194275319576, 0.02905314415693283, 0.0011128089390695095, -0.011198743246495724, -0.003594549372792244, -0.00692767696455121, 0.030183617025613785, 0.004140355624258518, 0.0025965541135519743, -0.03572293370962143, 0.002955125877633691, -0.006433095317333937, 0.01233628112822771, 0.015007022768259048, 0.01536029577255249, 0.006899415049701929, -0.004161552060395479, 0.02402254194021225, 0.008075812831521034, -0.02556280978024006, -0.030833639204502106, -0.006662722676992416, 0.018935415893793106, 0.01918977126479149, 0.028671609237790108, 0.01839844137430191, -0.010089467279613018, -0.022171393036842346, -0.008633984252810478, -0.002322767861187458, -0.027117209509015083, 0.009474772959947586, -0.014950498938560486, 0.00580073706805706, -0.011248202063143253, 0.010838405229151249, 0.004271066747605801, -0.027343304827809334, 0.0061363461427390575, 0.01719731278717518, -0.017140788957476616, -0.011827568523585796, 0.0001801690668798983, -0.03951001539826393, 0.008414954878389835, 0.007468183990567923, -0.015388557687401772, -0.00424987031146884, -0.016095103695988655, -0.0018705787369981408, 0.01909085549414158, 0.011446034535765648, 0.016024447977542877, 0.02755526825785637, 0.028473777696490288, 0.005606437101960182, 0.03495986387133598, -0.033914174884557724, 0.001371581107378006, 0.02304750867187977, -0.024757348001003265, -0.0006358908140100539, -0.013184135779738426, 0.007298613432794809, 0.01732449233531952, 0.020927872508764267, 0.001681577879935503, -0.014809190295636654, 0.0024640769697725773, 0.0007197930826805532, 0.010796012356877327, -0.008153533563017845, -0.01431460864841938, -0.033094584941864014, -0.05121040716767311, -0.02631174772977829, -0.0447101891040802, -0.010859602130949497, -0.00030889277695678174, 0.005546380765736103, -0.03453593701124191, 0.012018335983157158, -0.0014378197956830263, -0.0235279593616724, 0.0038330084644258022, -0.018016906455159187, 0.018087560310959816, -0.046264588832855225, 0.018652796745300293, 0.01463961973786354, -0.00852800253778696, 0.002702535828575492, -0.03699471428990364, -0.019161509349942207, 0.004666732158511877, 0.019966971129179, 0.04420147463679314, 0.012859124690294266, 0.0043523190543055534, 0.035185959190130234, -0.009884568862617016, -0.014498310163617134, -0.02944880910217762, 0.004850433673709631, -0.003688166616484523, 0.02865747921168804, -0.01967022195458412, 0.0351576954126358, -0.02922271564602852, -0.004377048462629318, -0.003463838482275605, -0.026820460334420204, 0.02078656293451786, -0.020376767963171005, -0.01869518868625164, 0.004377048462629318, -0.027569398283958435, 0.025647595524787903, 0.023061640560626984, -0.005599371623247862, -0.006362440530210733, -0.03202063590288162, -0.02183225005865097, -0.011968878097832203, 0.006129280664026737, 0.02362687513232231, 0.014795059338212013, 0.009552492760121822, 0.025774773210287094, 0.0024022541474550962, 0.0027131340466439724, -0.01248465571552515, -0.011446034535765648, 0.049203816801309586, -0.03552509844303131, 0.005889055319130421, -0.017395146191120148, 0.03114451840519905, 0.030579281970858574, 0.0007816157885827124, 0.006761638913303614, 0.03221846744418144, -0.008097009733319283, 0.005507520865648985, 0.021323537454009056, -0.02193116769194603, -0.01692882552742958, -0.010011747479438782, -0.009481837972998619, 0.0010924957459792495, -0.04533194750547409, -0.0013124080142006278, 0.010894929058849812, -0.022793153300881386, 0.00015952468675095588, -0.00949596893042326, -0.015869008377194405, 0.03657078742980957, 0.004504226613789797, -0.030127093195915222, 0.011523754335939884, 0.021055050194263458, -0.04109267517924309, 0.016363589093089104, -0.008252449333667755, -0.007651885971426964, -0.02653784304857254, -0.0021178696770220995, 0.003363155759871006, -0.00016703172877896577, 0.02372579276561737, 0.0018794105853885412, -0.008867143653333187, -0.020023494958877563, 0.001393660670146346, 0.01269662007689476, 0.01158734317868948, -0.0006999214529059827, -0.0020578133407980204, 0.00773667125031352, 0.008683442138135433, -0.0017169051570817828, -0.005217837169766426, -0.025930214673280716, -0.012032466940581799, 0.0034143803641200066, 0.016321197152137756, -0.031653232872486115, 0.019698483869433403, -0.009170958772301674, -0.02509649097919464, 0.010357954539358616, -0.011728652752935886, -0.015374426729977131, 0.0136787174269557, 0.01536029577255249, -0.005715951789170504, 0.002902135020121932, -0.010478067211806774, -0.01261889934539795, -0.006941807921975851, -0.005313220899552107, 0.015303771942853928, -0.011396576650440693, 0.01957130618393421, 0.03996220603585243, -0.0019959905184805393, 0.01601031795144081, -0.03891651704907417, -0.016123363748192787, -0.02210073731839657, -0.019528912380337715, -0.009326398372650146, -0.017861466854810715, 0.0070795840583741665, 0.007210295181721449, 0.007998093031346798, -0.03611859679222107, -0.05163433402776718, -0.0043841139413416386, -0.014420590363442898, -0.028049848973751068, 0.0029851540457457304, 0.012103121727705002, 0.03965132310986519, -0.01328305248171091, 0.011410707607865334, 0.0351576954126358, -0.011643867008388042, -0.0028526769019663334, -0.0055216518230736256, 0.0003735858481377363, 0.0024375813081860542, -0.013586866669356823, 0.02153550274670124, -0.005249632056802511, -0.006613264326006174, -0.02039089798927307, 0.02457364648580551, -0.0008182678138837218, 0.033744607120752335, -0.00011669037485262379, 0.01680164784193039, 0.014279280789196491, -0.017041873186826706, 0.00014583537995349616, 0.0027555269189178944, 0.002418151358142495, -0.014568964950740337, -0.021040920168161392, 0.0024075531400740147, -0.0012806134764105082, 0.020715909078717232, -0.02058873139321804, 0.005783073604106903, 0.019783269613981247, -0.010025878436863422, -0.007906242273747921, -0.025280192494392395, 0.0003378169785719365, -0.016561422497034073, 0.029533594846725464, 0.03724906966090202, 0.0044971611350774765, -0.006726311519742012, 0.018751712515950203, 0.01090199500322342, 0.0048257047310471535, -0.002086075022816658, 0.004083832260221243, -0.0027572931721806526, 0.006941807921975851, 0.005638231988996267, 0.0011260566534474492, 0.010732423514127731, -0.0017133724177256227, 0.010089467279613018, -0.015021153725683689, -0.0007237673853524029, 0.01650489866733551, -0.012498786672949791, -0.03871868550777435, 0.004776246380060911, 0.03340546414256096, -0.03261413425207138, -0.00821712240576744, -0.013403165154159069, -0.014095579273998737, 0.009418249130249023, -0.023542091250419617, -0.00024773244513198733, -0.04389059543609619, -0.0017354519804939628, -0.0036775683984160423, 0.01889302209019661, -0.02715960331261158, -0.00047117742360569537, 0.0013380201999098063, 0.011481361463665962, -0.0036634376738220453, 0.256165087223053, 0.0030787712894380093, 0.008831816725432873, 0.027837885543704033, -0.015798354521393776, 0.02552041783928871, 0.01279553584754467, -0.007743736729025841, 0.018765844404697418, 0.011686259880661964, 0.0025064696092158556, 0.007439922541379929, 0.004906957503408194, 0.0037234940100461245, 0.01954304426908493, -0.02598673664033413, -0.05304742231965065, -0.019981103017926216, -0.02088548056781292, 0.0034938666503876448, 0.004536021035164595, -0.03337720036506653, -0.023019246757030487, -0.005299089942127466, 0.008782358840107918, -0.0127107510343194, -0.012590638361871243, 0.000314191885991022, 0.013325445353984833, 0.004581946413964033, -0.023556221276521683, 0.009206285700201988, -0.0178473349660635, -0.008641049265861511, -0.014010794460773468, -0.02153550274670124, 0.03216194361448288, 0.016024447977542877, 0.007920373231172562, 0.013926008716225624, -0.004112093709409237, 0.0011693325359374285, -0.021761596202850342, -0.017494061961770058, -0.021422455087304115, 0.00506593007594347, -0.013509146869182587, 0.007538838777691126, -0.009870437905192375, -0.002550628734752536, -0.016024447977542877, -0.026806330308318138, 0.03317936882376671, 0.004864564631134272, -0.013332510367035866, 0.00410856120288372, 0.01934521086513996, -0.0024216840974986553, 0.015642913058400154, 0.009149761870503426, -0.024955181404948235, 0.05202999711036682, -0.0014784460654482245, 0.0306923296302557, -0.013212397694587708, -0.002939228666946292, 0.00033671301207505167, 0.002225617878139019, -0.004196879453957081, -0.023852970451116562, 0.006164608057588339, -0.004023775923997164, 0.02598673664033413, 0.003942523151636124, -0.023118162527680397, -0.029929259791970253, 0.011997140012681484, 0.01837017945945263, 0.008436151780188084, 0.012230299413204193, -0.003991981036961079, -0.0069170789793133736, -0.004348786547780037, 0.008252449333667755, -0.011940616182982922, -0.009743260219693184, -0.007588297128677368, 0.007835587486624718, 0.002278608735650778, 0.007920373231172562, 0.013198266737163067, 0.0136787174269557, -0.012576507404446602, 0.008252449333667755, -0.0003554806171450764, 0.027950933203101158, 0.005334417335689068, 0.01934521086513996, -0.006888817064464092, 0.011608540080487728, -0.03676861897110939, 0.025944344699382782, 0.026778068393468857, 0.002939228666946292, -0.009912830777466297, 0.005489857401698828, -0.018483225256204605, -0.0038965975400060415, 0.00851387158036232, -0.010562852956354618, -0.01578422263264656, -0.033490248024463654, 0.007114911451935768, 0.009022584185004234, -0.01503528468310833, -0.0011119256960228086, 0.0016895264852792025, -0.040442656725645065, 0.0169005636125803, -0.011615605093538761, 0.008160598576068878, -0.03428157791495323, 0.012816732749342918, 0.005157780833542347, -0.026749806478619576, -0.018511487171053886, -0.009587820619344711, -0.023287734016776085, 0.004119159188121557, -0.05313220992684364, 0.03527074307203293, 0.0067722368985414505, 0.037277333438396454, -0.030635805800557137, 0.0104568712413311, 0.016971219331026077, -0.0010898461332544684, 0.0014775629388168454, -0.011022107675671577, -0.0004033932345919311, 0.029307501390576363, -0.012414001859724522, 0.01722557470202446, -0.006252926308661699, -0.008506805635988712, 0.002342197811231017, -0.00802635494619608, 0.003825942985713482, 0.009241612628102303, 0.005422735586762428, -0.009785653091967106, -0.04411669075489044, 0.016660338267683983, -0.0030646403320133686, 0.024262767285108566, -0.01463961973786354, -0.01610923372209072, -0.023245342075824738, 0.023641007021069527, 0.021450717002153397, -0.023061640560626984, 0.015487473458051682, 0.02621283195912838, 0.0005153365200385451, -0.02751287631690502, -0.021846381947398186, -0.18053646385669708, 0.01598205603659153, 0.0015340865356847644, -0.02268010564148426, 0.017960382625460625, -0.02643892727792263, -0.017889728769659996, 0.041488341987133026, -0.0027290312573313713, -0.0008734666625969112, 0.015388557687401772, 0.021761596202850342, -0.022114869207143784, 0.007390464190393686, -0.009135630913078785, -0.010315561667084694, -0.014992891810834408, 0.002550628734752536, 0.04391885921359062, 0.01565704494714737, 0.07037191838026047, -0.021196359768509865, 0.006323580630123615, 0.017607109621167183, 0.011523754335939884, -0.007249155081808567, -0.012456394731998444, 0.021422455087304115, 0.0004698526463471353, -0.0178473349660635, 0.006874686107039452, -0.015713568776845932, -0.011983009055256844, 0.0046102083288133144, -0.010796012356877327, -0.012597703374922276, -0.008902471512556076, 0.012159645557403564, 0.00522137014195323, 0.01794625073671341, -0.009601951576769352, 0.008930733427405357, -0.0032730712555348873, 0.02922271564602852, -0.0022874404676258564, 0.03951001539826393, 0.017804943025112152, 0.02703242376446724, 0.014936367981135845, -0.006235262379050255, 0.027216127142310143, -0.037333857268095016, 0.00972206424921751, 0.00939705315977335, 0.023513829335570335, 0.02337251976132393, 0.0043841139413416386, 0.008471478708088398, 0.0007891228306107223, -0.000578483974095434, -0.004638470243662596, -0.039990466088056564, 0.0007869148976169527, 0.026099784299731255, -0.008210056461393833, 0.014583095908164978, -0.014752666465938091, 0.004603142850100994, -0.0032077159266918898, 0.030805377289652824, 0.007199697196483612, -0.007348071318119764, -0.005885522812604904, -0.035412050783634186, 0.032501086592674255, -0.007040724158287048, -0.015614652074873447, -0.01747993193566799, 0.023019246757030487, -0.016448374837636948, -0.020178934559226036, 0.05104083567857742, 0.003889532061293721, -0.01055578701198101, 0.014809190295636654, 0.01941586658358574, 0.01680164784193039, -0.02287793718278408, -0.04267533868551254, 0.005532249808311462, 0.04931686446070671, -0.03755994886159897, 0.024898657575249672, -0.04244924336671829, 0.011354183778166771, -0.003421445842832327, -0.0075317732989788055, -0.005115388426929712, -0.001663031056523323, -0.031653232872486115, 0.014441786333918571, -0.012689554132521152, -0.029985783621668816, 0.0009953457629308105, 0.021874643862247467, 0.02414971962571144, -0.011693324893712997, 0.0052566975355148315, 0.03284022584557533, 0.015713568776845932, -0.016222281381487846, -0.005443932022899389, 0.03255761042237282, -0.00313706137239933, -0.0037411574739962816, 0.0017743119969964027, -0.012088990770280361, -0.01767776347696781, -0.007411660626530647, 0.01814408414065838, -0.002471142215654254, -0.016250543296337128, -0.000791330763604492, 0.03973611071705818, 0.0244747307151556, 0.0065779369324445724, -0.027018293738365173, -0.0003804305160883814, 0.007037191651761532, 0.00923454761505127, 0.006828760728240013, 0.001854681526310742, 0.020009363070130348, 0.03577945753931999, 0.0012647161493077874, 0.05290611460804939, 0.0038436066824942827, -0.021125705912709236, -0.031229304149746895, 0.023414911702275276, 0.0394817516207695, 0.026071522384881973, -0.035383790731430054, -0.006574404425919056, -0.0338011272251606, 0.042534030973911285, -0.020306112244725227, -0.012032466940581799, -0.012343347072601318, -0.028996620327234268, 0.0021408323664218187, -0.003691699355840683, -0.02725851908326149, 0.03945349156856537, 0.009432380087673664, 0.021563762798905373, 0.027965065091848373, -0.005157780833542347, 0.01143896859139204, -0.02732917293906212, -0.042279671877622604, -0.016222281381487846, -0.017790811136364937, -0.015840746462345123, 0.01430047769099474, -0.02885531075298786, 0.013636324554681778, 0.013459688983857632, -0.011128089390695095, -0.00025722666759975255, -0.01044274028390646, -0.019896317273378372, -0.009199220687150955, 0.02451712265610695, 0.008372562006115913, -0.0017910924507305026, -0.013650455512106419, 0.015586390160024166, 0.02892596647143364, -0.010951452888548374, 0.014024924486875534, -0.014879845082759857, 0.023937756195664406, 0.008683442138135433, -0.028049848973751068, 0.013862419873476028, -0.013064023107290268, 0.007503511384129524, 0.004415908362716436, 0.029985783621668816, 0.006305917166173458, -0.015247248113155365, -0.013502080924808979, -0.02029198221862316, 0.021125705912709236, -0.019656091928482056, -0.016589684411883354, 0.02457364648580551, -0.0283042062073946, 0.005857260897755623, -0.002570058684796095, 0.011205809190869331, -0.012675423175096512, 0.01605270989239216, 0.018129954114556313, -0.0390295647084713, -0.007432857062667608, -0.018610404804348946, -0.011834634467959404, -0.025958476588129997, 0.045444995164871216, 0.027852017432451248, -0.01070416159927845, -0.009418249130249023, 0.00804048590362072, -0.02180399000644684, -0.0031105659436434507, 0.0037058303132653236, 0.028473777696490288, -0.02765418402850628, -0.00852800253778696, -0.0005166612681932747, 0.002918032230809331, 0.013629259541630745, 0.027753101661801338, 0.001335370703600347, -0.02444646880030632, -0.006327113602310419, -0.07240676879882812, 0.02349969744682312, -0.014109710231423378, -0.004578413907438517, 0.03620338439941406, 0.00024773244513198733, -0.016264673322439194, -0.004878695588558912, -0.013918942771852016, -0.01413797214627266, -0.02526606060564518, -0.010103598237037659, -0.00907204207032919, -0.022468142211437225, -0.003928392194211483, 0.016872303560376167, 0.0013653988717123866, 0.003573352936655283, 0.01650489866733551, 0.0030204812064766884, -0.007192631717771292, 0.008422020822763443, 0.03453593701124191, 0.005705353803932667, -0.020221328362822533, 0.03826649487018585, -0.0076024276204407215, 0.017621241509914398, -0.007913308218121529, -0.000502530368976295, -0.002649544971063733, -0.027795493602752686, 0.0007321576122194529, 0.03052275814116001, -0.010916125029325485, -0.04968426749110222, 0.00955955870449543, 0.028544431552290916, 0.024658432230353355, -0.005931448191404343, -0.024587778374552727, -0.006263524293899536, 0.01102917268872261, -0.0008231253013946116, -0.017861466854810715, 0.004560749977827072, 0.007581231649965048, 0.019966971129179, -0.005581708159297705, 0.005896120797842741, 0.028318336233496666, 0.015572259202599525, 0.010944386944174767, -0.008287777192890644, -0.017183182761073112, -0.05728669464588165, 0.016420112922787666, -0.005270828027278185, 0.005044733639806509, -0.016787517815828323, 0.020447421818971634, 0.010697096586227417, 0.010937321931123734, 0.002186757745221257, -0.012364543043076992, 0.009460642002522945, -0.012258561328053474, -0.005730082746595144, 0.02389536239206791, -0.017790811136364937, -0.002845611423254013, 0.008436151780188084, 0.015233117155730724, 0.0013706979807466269, -6.502425094367936e-05, 0.003363155759871006, -0.015572259202599525, -0.007404595147818327, 0.002398721408098936, 0.01787559688091278, -0.006238795351237059, -0.026198701933026314, -0.04682982340455055, 0.02641066536307335, 0.051266930997371674, 0.011523754335939884, -0.010499264113605022, -0.0008001626119948924, -0.009898699820041656, -0.007750802207738161, -0.015628783032298088, 0.009481837972998619, 0.0020436823833733797, 0.013466753996908665, 0.011248202063143253, 0.017804943025112152, -0.007284482475370169, 0.006998331751674414, 0.013127611950039864, 0.038549114018678665, 0.009142696857452393, -0.015996186062693596, 0.0007158187218010426, -0.011184612289071083, -0.03504464775323868, 0.019726745784282684, -0.0271313413977623, -0.025209536775946617, -0.008252449333667755, -0.01911911740899086, 0.0031423603650182486, -0.012852059677243233, -0.03442288935184479, 0.03238803893327713, -0.021196359768509865, -0.01842670328915119, -0.010273168794810772, 0.011714521795511246, -0.0128449946641922, 0.037333857268095016, 0.02170507237315178, 0.03911434859037399, -0.004726788494735956, 0.003534493036568165, 0.015247248113155365, 0.0022715432569384575, 0.021139835938811302, -0.03210541978478432, 0.024488860741257668, 0.022439880296587944, 0.009107368998229504, 0.01909085549414158, -0.020800694823265076, -0.014893976040184498, -0.000676517141982913, 0.027272649109363556, 0.02964664250612259, 0.006542610004544258, 0.001701007946394384, 0.07167195528745651, -0.013537408784031868, -0.008429085835814476, 0.011566147208213806, 0.006210533436387777, -0.0017292697448283434, 0.030974946916103363, 0.00010857614688575268, -0.017833204939961433, -0.026594366878271103, -0.0034320440609008074, -0.016914695501327515, -0.005737148225307465, -0.04530368745326996, -0.004694993607699871, 0.0006173439905978739, -0.0136787174269557, 0.030127093195915222, -0.020475683733820915, -0.004832770209759474, 0.04589718580245972, 0.00859865639358759, 0.032472822815179825, 0.013572735711932182, -0.004560749977827072, -0.018652796745300293, 0.025675857439637184, -0.005503988359123468, 0.01974087581038475, -0.007125509902834892, 0.024729086086153984, 0.018638666719198227, -0.019924579188227654, -0.012286823242902756, -0.01070416159927845, -0.04685808718204498, -0.02656610496342182, -0.007609493099153042, 0.02768244594335556, 0.0028950695414096117, 0.01461135782301426, 0.01702774316072464, -0.03442288935184479, -0.028219420462846756, 0.005737148225307465, -0.009481837972998619, -0.01598205603659153, 0.017889728769659996, -0.020574599504470825], "0ecd9cf8-ce03-4f27-8346-be248bb2b66a": [-0.02687807008624077, 0.010767115280032158, 0.005347450729459524, -0.030763186514377594, -0.03437389060854912, 0.015511578880250454, -0.019122280180454254, -0.028047937899827957, 0.0022350249346345663, -0.005221075844019651, 0.016984745860099792, 0.005083869211375713, 0.030618758872151375, 0.01997440680861473, -0.002198917791247368, -0.0026358128525316715, 0.0026592824142426252, 0.009618911892175674, 0.037233565002679825, -0.010109967552125454, 0.022559670731425285, 0.03971773013472557, 0.02081209048628807, -0.0037551308050751686, -0.004823898896574974, 0.02975218929350376, 0.025506002828478813, -0.010333830490708351, -0.013684563338756561, 0.011489255353808403, 0.02128870226442814, 0.009943874552845955, -0.0008841708186082542, -0.03772462159395218, 0.01052880845963955, -0.005253572482615709, -0.016941417008638382, -0.03477828577160835, -0.008152966387569904, 0.01877565309405327, 0.012269167229533195, -0.025578217580914497, 0.008384051732718945, 0.007452490273863077, -0.008116859942674637, 0.020797647535800934, -0.0075535899959504604, -0.0005294192815199494, -0.021505344659090042, 0.010774336755275726, -0.006679799873381853, 0.025029391050338745, -0.04589925333857536, -0.043559517711400986, 0.009431155398488045, 0.010109967552125454, 0.026488114148378372, -0.015020523220300674, -0.008622357621788979, -0.02388840913772583, 0.013699005357921124, 0.011893654242157936, -0.022328585386276245, 0.007596918381750584, 0.01517939381301403, -0.030214359983801842, 0.013872319832444191, -0.0015210084384307265, 0.026155930012464523, 0.01364845596253872, 0.020407691597938538, 0.025867072865366936, 0.005293290130794048, -0.0038742839824408293, 0.029116705060005188, -0.000811956764664501, -0.002231414197012782, -0.030676528811454773, 0.01068767998367548, -0.015915976837277412, 0.00787133164703846, -0.0069758775644004345, -0.0030167419463396072, 0.011467591859400272, 0.03041655942797661, 0.0014560158597305417, 0.002942722523584962, 0.027210254222154617, 0.017172502353787422, -0.005372725427150726, -0.0066292500123381615, -0.0004050756979268044, 0.00528606865555048, -0.0017295265570282936, -0.0049899909645318985, 0.00017342655337415636, 0.005094701424241066, 0.0027910731732845306, -0.025823745876550674, -0.026387015357613564, -0.0010299528948962688, 0.039140015840530396, -0.02072543278336525, -0.004802234470844269, -0.053987227380275726, -0.025997059419751167, 0.024841634556651115, -0.02710915543138981, -0.019338922575116158, -0.016695888713002205, -0.005549649707973003, 0.03521157056093216, -0.008095195516943932, -0.0299832746386528, 0.006264569237828255, -0.027556883171200752, 0.011120963841676712, -0.011612019501626492, -0.037089135497808456, 0.0018920081201940775, 0.0278890673071146, 0.038302332162857056, 0.013554577715694904, -0.0005998279666528106, 0.023151826113462448, -0.014601681381464005, 0.0091784056276083, -0.010680458508431911, -0.013309049420058727, -0.022198598831892014, 0.08839000016450882, -0.0009049323271028697, 0.023411795496940613, -0.0031467273365706205, -0.009539476595818996, 0.005022487137466669, -0.004426721483469009, 0.005982934031635523, 0.002381258411332965, 0.0067086853086948395, 0.03316069394350052, 0.03151421248912811, -0.011272613890469074, 0.01432004664093256, 0.007517483085393906, 0.028654536232352257, 0.01548269297927618, 0.007640246767550707, 0.0009839164558798075, -0.00710225198417902, 0.0033362891990691423, -0.01923782378435135, 0.020046621561050415, 0.022732984274625778, 0.010514366440474987, 0.00929394830018282, 0.013504027388989925, 0.022155271843075752, 0.007524704094976187, -0.021490901708602905, 0.02202528528869152, 0.0046036457642912865, -0.006950602401047945, -0.021909743547439575, 0.0191800519824028, 0.019396694377064705, -0.015901533886790276, -0.0031214524060487747, -0.006932549178600311, -0.01382899098098278, -0.029954388737678528, 0.0258526299148798, -0.009705568663775921, -0.004578371066600084, -0.0060334838926792145, 0.012882987037301064, -0.0008245942299254239, -0.00762580381706357, -0.022617440670728683, 0.030445445328950882, -0.0067267389968037605, 0.0070336489006876945, 0.010182181373238564, 0.02920336276292801, 0.0010759893339127302, -0.011438705958425999, -0.01649368926882744, -0.003094372106716037, 7.571191963506863e-05, 0.009763339534401894, 0.03552931547164917, -1.5197390439425362e-06, 0.024047279730439186, -0.015150507912039757, -0.5153194665908813, -0.024466121569275856, 0.002754966029897332, -0.003152143443003297, 0.02164977230131626, 0.029954388737678528, 0.011489255353808403, 0.017851313576102257, -0.020653219893574715, 0.004921387881040573, -0.025968173518776894, 0.009734454564750195, 0.003729855874553323, -0.015381593257188797, -0.0010940429056063294, -0.02254522778093815, -0.0004405057115945965, -0.013142957352101803, 0.02179420180618763, 0.0383601039648056, -0.02770131081342697, 0.00873067881911993, -0.01737470179796219, 0.014153954572975636, 0.009142299182713032, -0.009257841855287552, 0.008347944356501102, -0.004849173594266176, 0.019208937883377075, 0.03157198429107666, -0.021678658202290535, 0.015266050584614277, -0.005130808334797621, 0.0009884298779070377, 0.05205189064145088, -0.007784674875438213, -0.038533419370651245, 0.01548269297927618, 0.01961333677172661, 0.03151421248912811, -0.03636699542403221, -0.012586909346282482, 0.04844118654727936, -0.01099097914993763, 0.022227484732866287, -0.020451020449399948, 0.001323322532698512, -0.016175948083400726, 0.030301015824079514, -0.02696472778916359, 0.0017809791024774313, -0.018096841871738434, -0.0029120317194610834, -0.03041655942797661, 0.011019864119589329, 0.0031178416684269905, 0.011799775995314121, -0.02705138362944126, 0.00984999630600214, -0.018429026007652283, 0.0007347780046984553, -0.0030654864385724068, -0.028943391516804695, -0.009120634756982327, -0.02147645875811577, 0.0018107673386111856, -0.01936780847609043, 0.010601023212075233, -0.0033398999366909266, -0.009055642411112785, -0.006661746185272932, 0.037811279296875, 0.022458570078015327, 0.03287183493375778, 0.012493031099438667, 0.0062609585002064705, 0.024798305705189705, -0.02290629781782627, -0.006123751867562532, 0.009127856232225895, 0.0031503380741924047, -0.013540134765207767, -0.017475800588726997, -0.0019642221741378307, 0.02566487342119217, 0.006000987719744444, -0.024047279730439186, 0.010514366440474987, -0.007188908755779266, 0.0005217465222813189, 0.034200575202703476, -0.012558023445308208, 0.002487774007022381, -0.011973089538514614, 0.017966855317354202, 0.004690302535891533, -0.02332513965666294, -0.01984442211687565, 0.028798963874578476, -0.012030861340463161, -0.039891041815280914, 0.030907614156603813, -0.006185133475810289, 0.0037767949979752302, 0.005650749430060387, 0.022343028336763382, -0.03833121806383133, 0.01588709093630314, 0.014681116677820683, -0.03353620693087578, -0.016320375725626945, -0.00026516098296269774, -0.003303792793303728, 0.01611817628145218, -0.01057213731110096, -0.0419996939599514, 0.03281406685709953, 0.00646315747871995, 0.0023884798865765333, -0.009972760453820229, 0.02654588595032692, -0.0005316759343259037, 0.0390244722366333, -0.013800105080008507, 0.007907439023256302, -0.009561140090227127, -0.011467591859400272, 0.010752672329545021, -0.00028298882534727454, -0.006253737024962902, -0.004040376283228397, -0.004730020649731159, 0.024783862754702568, -0.03552931547164917, -0.0018504851032048464, -0.0047011347487568855, -0.02887117862701416, 0.01135927066206932, 0.0018134753918275237, -0.029506660997867584, -0.0291022639721632, -0.005668803118169308, 0.033420663326978683, -0.03197638317942619, 0.006791731808334589, 0.014933866448700428, -0.007560811471194029, 0.0004118457727599889, 0.004502546042203903, -0.011099299415946007, 0.01630593277513981, -0.007972431369125843, -0.010218288749456406, 0.04194192215800285, -0.0005348353297449648, 0.008701792918145657, -0.003289350075647235, -0.007965209893882275, 0.04069983959197998, -0.02128870226442814, 0.006986709777265787, 0.0030925667379051447, -0.0009739870438352227, -0.027513554319739342, -0.0182990413159132, -0.03729133680462837, -0.005231908056885004, -0.02771575376391411, -0.017721328884363174, -0.044166114181280136, -0.007058923598378897, 0.0023108497262001038, -0.009048420935869217, -0.010550472885370255, 0.013309049420058727, 0.0018667333060875535, -0.002848844276741147, -0.010427708737552166, -0.005726574454456568, -0.018920082598924637, -0.0129263149574399, 0.003126868512481451, -0.024899404495954514, -0.0019876917358487844, 0.018616782501339912, -0.00611291965469718, -0.012810773216187954, 0.004105369094759226, -0.02049434743821621, -0.00028885621577501297, -0.029275577515363693, 0.0149916373193264, 0.00774134648963809, 0.009604468941688538, 0.0011617435375228524, -0.008564586751163006, -0.007340558338910341, 0.010622686706483364, -0.01662367396056652, 0.009315612725913525, 0.0384756475687027, 0.003099788213148713, 0.016984745860099792, -0.012558023445308208, 0.01969999261200428, -0.04312623292207718, 0.007340558338910341, -0.022227484732866287, 0.011120963841676712, 0.01606040447950363, -0.019411137327551842, -0.03931333124637604, -0.015352707356214523, -0.005430496763437986, 0.003480717306956649, 0.009618911892175674, -0.021274259313941002, -0.00896176416426897, 0.003932055085897446, 0.014190061017870903, 0.018053513020277023, 0.020754318684339523, 0.04150863736867905, 0.008456265553832054, 0.0024354190099984407, -0.024047279730439186, -0.01311407145112753, -0.010976536199450493, -0.005852948874235153, -0.014789437875151634, -0.023585109040141106, -0.0330740362405777, -0.03217858076095581, -0.0025347131304442883, 0.0025004115886986256, 0.010348273441195488, 0.011857547797262669, -0.01741802878677845, 0.016739217564463615, -0.0004021420027129352, 0.013626791536808014, 0.006185133475810289, 0.0005587562336586416, -0.01806795597076416, 0.010723786428570747, 0.020479904487729073, 0.055027108639478683, -0.005314954090863466, 0.0019786651246249676, 0.019988849759101868, -0.0031503380741924047, 0.002323487075045705, 0.01564156450331211, 0.04335731640458107, -0.012218617834150791, 0.00132151716388762, 0.01517939381301403, 0.044223885983228683, 0.009734454564750195, 0.02267521247267723, 0.04251963272690773, 0.04159529507160187, -0.0033760068472474813, -0.00691449549049139, 0.02528936043381691, 0.010297724045813084, -0.005730185192078352, -0.002489579375833273, -0.025202704593539238, -0.024798305705189705, -0.019223380833864212, -0.002025604248046875, 0.011106520891189575, -0.007950766943395138, 0.008723457343876362, -0.006705074571073055, 0.0444260835647583, 0.01211029663681984, 0.0348360575735569, 0.000908543064724654, 0.009561140090227127, -0.030705414712429047, 0.02156311646103859, 0.05603810399770737, -0.02589595876634121, -0.007257512304931879, 0.012276388704776764, 0.003357953391969204, -0.013309049420058727, 0.023556223139166832, -0.008853442966938019, 0.021996401250362396, 0.019541122019290924, 0.030849842354655266, -0.012767444364726543, 0.0384756475687027, -0.01203808281570673, -0.021953072398900986, -0.01773577183485031, 0.002464304445311427, 0.0251882616430521, 0.0085429223254323, -0.0048925019800662994, 0.011337606236338615, 0.05144529044628143, -0.0049683270044624805, -0.0028109319973737, -0.0037767949979752302, 0.009127856232225895, 0.00369013799354434, -0.01909339614212513, -0.0456392802298069, -0.014255054295063019, -0.010709344409406185, 0.00033105630427598953, -0.010788779705762863, -0.007596918381750584, -0.012334160506725311, 0.03394060581922531, -0.030618758872151375, -0.013626791536808014, -0.023642880842089653, -0.022285256534814835, 0.006531761027872562, -0.03376729041337967, 0.051156435161828995, -0.016421476379036903, -0.03035878762602806, -0.00929394830018282, 0.01643591746687889, -0.015814878046512604, -0.01974332146346569, 0.009720011614263058, -0.012131961062550545, -0.0019100616918876767, -0.026762528344988823, 0.033045150339603424, -0.01236304547637701, 0.0182990413159132, 0.011048750020563602, -0.014356154017150402, -0.02673364244401455, -0.00463253166526556, 0.012644680216908455, -0.04049764201045036, -0.004040376283228397, 0.01611817628145218, 0.03628034144639969, -0.012016418389976025, -0.017706885933876038, -0.015078294090926647, 0.016378147527575493, 0.004076483193784952, -0.017678000032901764, -0.033882834017276764, 0.0038598410319536924, -0.001817086129449308, 0.028856735676527023, -0.028134595602750778, 0.030069932341575623, 0.016638116911053658, -0.008261287584900856, 0.0029409173876047134, 0.00884622149169445, -0.009488926269114017, 0.029838846996426582, -0.010601023212075233, -0.009005092084407806, 0.03035878762602806, 0.006492043379694223, 9.071890235645697e-05, 0.002744134049862623, -0.0011852130992338061, -0.013518470339477062, 0.027730196714401245, -0.03827344626188278, -0.009012313559651375, -0.011135406792163849, -0.011055971495807171, 0.039891041815280914, -0.03212080895900726, -0.02696472778916359, 0.011684233322739601, -0.0068061742931604385, 0.03298737853765488, 0.005022487137466669, 0.015771549195051193, -0.016508132219314575, -0.0037009702064096928, -0.034345004707574844, -0.034027259796857834, -0.006961434613913298, -0.012695230543613434, -0.05121420696377754, 0.021808642894029617, 0.017591342329978943, -0.02151978760957718, -0.004473660606890917, -0.005795177537947893, 0.031023157760500908, 0.01045659463852644, 0.01064435113221407, 0.009192848578095436, -0.002352372743189335, -0.018010184168815613, -0.017114730551838875, -0.020826533436775208, 0.011821440421044827, 0.02164977230131626, 0.005964880809187889, 0.019107839092612267, -0.019165609031915665, 0.009416712448000908, -0.008441822603344917, 0.01112818531692028, 0.030069932341575623, -0.003524045692756772, 0.004076483193784952, -0.00261414865963161, 0.0015336459036916494, 0.020089948549866676, 0.01909339614212513, -0.021028732880949974, 0.0008561878348700702, 0.00926506333053112, -0.04055541008710861, 0.006452325731515884, 0.024047279730439186, -0.005813231226056814, 0.005712131503969431, 0.020335476845502853, -0.0015634342562407255, 0.006762845907360315, -0.004697524011135101, 0.01764911413192749, -0.024942733347415924, 0.021823085844516754, 0.004043987020850182, 0.008629579097032547, 0.011799775995314121, -0.01695585995912552, -0.005488268099725246, -0.02104317396879196, -0.0018974242266267538, 0.03668474033474922, -0.04046875610947609, 0.007582475431263447, 0.0058746132999658585, -0.01788019947707653, 0.04797901585698128, -0.022054171189665794, -0.04722798988223076, 0.008968985639512539, 0.03610702604055405, -0.009243398904800415, -0.016233719885349274, -0.02151978760957718, 0.009192848578095436, -0.02505827695131302, 0.0010633518686518073, -0.022646326571702957, 0.01506385114043951, -0.012947979383170605, -0.005109144374728203, 0.022978510707616806, -0.015453807078301907, 0.014789437875151634, -0.01548269297927618, 0.008766786195337772, -0.030098816379904747, 0.01806795597076416, -0.010918764397501945, -0.022790754213929176, 0.02929002046585083, 0.011785333044826984, -0.00017038002260960639, -0.011936983093619347, -0.04032432660460472, -0.011843104846775532, -0.02612704411149025, -0.006452325731515884, -0.00575184915214777, 0.008131301961839199, 0.012558023445308208, 0.009322834201157093, 0.012095853686332703, 0.020335476845502853, 0.010023310780525208, -0.017172502353787422, 0.01946890912950039, -0.023960622027516365, 0.02658921480178833, -0.02933334745466709, -0.0010786973871290684, -0.008008538745343685, 0.005957659333944321, 0.014139511622488499, -0.03463385999202728, 0.013395707122981548, 0.03408503159880638, -0.014861651696264744, 0.014233389869332314, 0.03613591194152832, -0.06198854371905327, 0.01517939381301403, -0.005105533637106419, -0.0012592325219884515, 0.0022693267092108727, -0.031543098390102386, -0.02878452092409134, 0.006773678120225668, 0.026906955987215042, 0.0007045383681543171, -0.0010796000715345144, 0.0011906292056664824, 0.00137658033054322, 0.018544567748904228, -0.0020165774039924145, 0.022516341879963875, -0.006286233197897673, -0.0066870213486254215, -0.009467261843383312, -0.015800435096025467, 0.018457911908626556, -0.009243398904800415, 0.03691582381725311, 0.00847792997956276, 0.004040376283228397, -0.011164292693138123, 0.01320072915405035, -0.009387826547026634, -0.015959305688738823, -0.0013413759879767895, -0.022039728239178658, -0.013366821222007275, -0.015121622942388058, -0.03939998522400856, -0.018992295488715172, 0.0074019404128193855, 0.036771394312381744, -0.005307733081281185, 0.015309379436075687, -0.008932878263294697, -0.02263188362121582, -0.023122940212488174, -0.018746767193078995, 0.013735112734138966, -0.03706025332212448, 0.01923782378435135, 0.03729133680462837, 0.0011825051624327898, -0.03529822826385498, -0.026762528344988823, -0.012810773216187954, -0.012760222889482975, 0.01746135763823986, 0.03925555944442749, 0.01881898194551468, -0.01750468648970127, 0.009676682762801647, 0.02920336276292801, -0.02016216330230236, -0.023859523236751556, 0.023411795496940613, 0.015872647985816002, 0.02715248428285122, -0.004946662578731775, 0.02128870226442814, -0.007452490273863077, -0.0011030696332454681, 0.01731692999601364, 0.004556706640869379, -0.014197282493114471, -0.012442480772733688, -0.009929432533681393, 0.02807682380080223, -0.0421152338385582, 0.04098869487643242, 0.013670120388269424, -0.0019317258847877383, -0.041421979665756226, -0.011944204568862915, -0.016204833984375, 0.009553919546306133, 0.005917941685765982, 0.018645668402314186, 0.0025690149050205946, -0.020783204585313797, 0.01494830846786499, -1.9337005142006092e-05, 0.02043657749891281, -0.0011689650127664208, -0.00693977065384388, 0.04168195277452469, -0.026387015357613564, -0.002576236380264163, -0.01741802878677845, 0.003989826422184706, 0.028770077973604202, 0.006235683336853981, -0.013489585369825363, 0.02830790914595127, -0.046968020498752594, 0.01974332146346569, 0.006015430670231581, -0.001664533861912787, 0.015381593257188797, 0.00020772824063897133, -0.0027874624356627464, -0.013352378271520138, -0.029535546898841858, 0.03142755478620529, 0.025780417025089264, -0.024466121569275856, -0.007022816687822342, -0.0005966686294414103, -0.02602594532072544, 0.034720517694950104, 0.0230940543115139, -0.016147062182426453, 0.006192354951053858, 0.028986720368266106, -0.008911213837563992, 0.034576088190078735, 0.0030113260727375746, -0.011460370384156704, -0.03073430061340332, -0.001971443649381399, 0.01061546616256237, -0.004080093931406736, 0.0348360575735569, -0.010138852521777153, 0.003094372106716037, -0.026979170739650726, 0.028538992628455162, 0.011077635921537876, 0.0022223873529583216, 0.02147645875811577, 0.0008796573965810239, -0.01900673843920231, -0.0007875845185481012, 0.0006291649187915027, -0.01913672313094139, 0.010471037589013577, -0.011640905402600765, -0.001500246929936111, -0.008044645190238953, -0.005600199569016695, 0.007351390551775694, -0.02989661693572998, 0.004228132776916027, 0.033651746809482574, 0.005917941685765982, -0.007813560776412487, 0.024754976853728294, -0.0011238311417400837, -0.0063981651328504086, 0.005726574454456568, -0.03841787576675415, 0.012355824001133442, -0.025404904037714005, 0.001116609782911837, 0.013922869227826595, -0.0008837194764055312, 0.004152308218181133, 0.013843433931469917, -0.016363704577088356, 0.008116859942674637, -0.026531442999839783, -0.05421831086277962, 0.0237006526440382, -0.012189731933176517, -0.04257740452885628, -0.029867732897400856, -0.01871788315474987, 0.014486138708889484, 0.04433942958712578, -0.05338062718510628, -0.043703943490982056, -0.020696546882390976, -0.031456440687179565, -0.024856077507138252, 0.008470708504319191, 0.011027085594832897, 0.02179420180618763, 0.01564156450331211, -0.0055857570841908455, 0.02784573845565319, -0.001527327229268849, -0.001596833229996264, 0.009344498626887798, -0.022920740768313408, -0.01494830846786499, -0.008225180208683014, 0.006979488302022219, 0.012558023445308208, -0.013215171173214912, -0.011157071217894554, 0.003964551258832216, -0.01308518648147583, 0.01338848564773798, 0.019671108573675156, -0.010102746076881886, -0.01578599214553833, -0.03394060581922531, -0.023527339100837708, -0.026906955987215042, 0.0004833828133996576, -0.034951601177453995, -0.014630567282438278, 0.009330055676400661, -0.005134419072419405, 0.012456923723220825, -0.020696546882390976, 0.019165609031915665, 0.012269167229533195, -0.008391273207962513, -0.008116859942674637, -0.00553159648552537, 0.004430332221090794, -0.006376500707119703, 0.00899064913392067, 0.02328181080520153, -0.0001713955425657332, 0.011539805680513382, 0.022227484732866287, 0.013337935321033001, 0.026069272309541702, -0.011626462452113628, 0.01408896129578352, -0.035933710634708405, -0.010608244687318802, 0.008875107392668724, 0.002410144079476595, 0.00880289264023304, -0.028668979182839394, 0.012984086759388447, 0.0011545221786946058, 0.010333830490708351, 0.0034048925153911114, -0.01811128482222557, -0.06453047692775726, 0.012630238197743893, 0.023267367854714394, -0.030301015824079514, -0.01234138198196888, 0.004672249313443899, -0.003607091959565878, 0.012391931377351284, 0.006156248040497303, 0.013800105080008507, -0.040959808975458145, 0.005582146346569061, -0.0237584225833416, -0.0029102263506501913, -0.023310696706175804, 0.008268509060144424, 0.018515683710575104, -0.008701792918145657, -0.03850453346967697, 0.24125270545482635, 0.003932055085897446, 0.011828661896288395, 0.0053763361647725105, -0.0030366010032594204, -0.0026917788200080395, 0.009272283874452114, -0.012326939031481743, 0.014457253739237785, 0.0018351395847275853, 0.019165609031915665, -0.004220911301672459, -0.0057626813650131226, 0.000605695357080549, 0.0155982356518507, -0.024321692064404488, -0.052687373012304306, -0.039515528827905655, -0.007091419771313667, 0.012615795247256756, 0.012088632211089134, 0.007253901567310095, -0.017432471737265587, -0.013402927666902542, 0.028770077973604202, -0.014645010232925415, -0.018559010699391365, 0.02058100514113903, 0.009943874552845955, 0.00977778248488903, -0.028726749122142792, -0.011973089538514614, 0.012810773216187954, -0.012724116444587708, -0.005816841963678598, -0.020638776943087578, 0.030301015824079514, -0.002493190113455057, 0.02589595876634121, 0.026704756543040276, -0.003424751339480281, -0.01487609464675188, 0.008701792918145657, -0.017475800588726997, -0.0009676683112047613, -0.007459711749106646, -0.02175087295472622, -0.02043657749891281, -0.007430825848132372, 0.011640905402600765, -0.02868342213332653, -0.040266554802656174, 0.03766684979200363, 0.02393173612654209, -0.006102087441831827, 0.0006761040422134101, 0.028625650331377983, -0.0064378827810287476, 0.014904980547726154, 0.03893781825900078, -0.018284598365426064, 0.022328585386276245, 0.007647468242794275, 0.009171185083687305, -0.02332513965666294, -0.0027730197180062532, -0.008694571442902088, -0.014385038986802101, -0.014175618067383766, -0.012449702247977257, -0.003733466612175107, -0.009481704793870449, 0.009546698071062565, 0.015944862738251686, -0.024711648002266884, -0.031456440687179565, 0.020609891042113304, -0.003181029111146927, -0.008470708504319191, -0.0022693267092108727, -0.004538653418421745, 0.012370266951620579, 0.023642880842089653, -0.019801093265414238, 0.01222583930939436, -0.006452325731515884, 0.02541934698820114, 0.007546368520706892, -0.019541122019290924, -0.012514695525169373, 0.011965868063271046, -0.02193862944841385, -0.012767444364726543, 0.012673566117882729, -0.003809291170910001, 0.019454466179013252, 0.028611207380890846, 0.029217805713415146, -0.010369937866926193, -0.0021393413189798594, -0.017807984724640846, 0.005813231226056814, 0.01031216699630022, -0.013720669783651829, -0.001031758263707161, -0.0128974299877882, -0.037233565002679825, 0.004813066683709621, 0.009813889861106873, -0.025621546432375908, -0.006094865966588259, -0.048643384128808975, 0.007669132202863693, 0.0006652719457633793, -0.01788019947707653, -0.0009229858405888081, 0.018197940662503242, -0.028481222689151764, -0.01012441050261259, -0.0012014613021165133, 0.008051866665482521, -0.022184157744050026, 0.0025979005731642246, 0.020797647535800934, -0.006473989691585302, -0.023686209693551064, -0.020696546882390976, -0.006376500707119703, 0.015872647985816002, -0.03775350749492645, 0.007311672903597355, -0.02281964011490345, 0.04228854924440384, -0.014933866448700428, -0.023498453199863434, 0.000991137814708054, 0.00041884148959070444, -0.0077124605886638165, 0.003361564129590988, -0.01936780847609043, -0.0008295589359477162, -0.00723223714157939, 0.02062433399260044, -0.009539476595818996, -0.00421368982642889, 0.00669424282386899, -0.009683904238045216, 0.01541047915816307, 0.019411137327551842, -0.02487052045762539, -0.05453605204820633, -0.025303803384304047, 0.009330055676400661, 0.005600199569016695, 0.010514366440474987, -0.020422134548425674, -0.014334489591419697, -0.03630922734737396, 0.031052041798830032, 0.032063040882349014, -0.010579358786344528, -0.021202046424150467, -0.006517318077385426, -0.022010842338204384, -0.018183497712016106, -0.018270155414938927, -0.18325038254261017, 0.007719682063907385, 0.043559517711400986, -0.036771394312381744, 0.0006309702876023948, -0.011561470106244087, 0.010897100903093815, -0.0031178416684269905, -0.00964057631790638, -0.01236304547637701, 0.020508790388703346, 0.01564156450331211, -0.04615922272205353, 0.02602594532072544, -0.013785663060843945, -0.009741676039993763, -0.05150306224822998, 0.015670448541641235, 0.030474329367280006, 0.022848526015877724, 0.024379463866353035, 0.007409161888062954, 0.009770561009645462, 0.05606698989868164, 3.44145082635805e-05, 0.007084198761731386, 0.0012610378907993436, -0.019570007920265198, 0.016450360417366028, -0.021259816363453865, 0.00896176416426897, 0.00573740666732192, 0.03246743977069855, -0.016089290380477905, -0.007539147045463324, 0.005210244096815586, -0.022732984274625778, 0.004914166405797005, -0.013937312178313732, 0.005816841963678598, -0.0059143309481441975, 0.024292808026075363, 0.021346474066376686, 0.010846550576388836, -0.007885774597525597, 0.011554248631000519, -0.007669132202863693, -0.01529493648558855, 0.01788019947707653, -0.01863122545182705, -0.00225849449634552, -0.030069932341575623, 0.034113917499780655, -0.009279505349695683, 0.04093092307448387, 0.026834741234779358, 0.022848526015877724, 0.03870673105120659, 0.016089290380477905, -0.017432471737265587, 0.022501898929476738, -0.04615922272205353, 0.029001163318753242, -0.01548269297927618, -0.01685475930571556, 0.006214019376784563, -0.018732326105237007, 0.030474329367280006, -0.024986062198877335, 0.005249961744993925, 0.013670120388269424, -0.0032568536698818207, 0.009813889861106873, -0.022097500041127205, 0.040728725492954254, 0.009272283874452114, -0.00045607687206938863, -0.00703003816306591, 0.024884961545467377, -0.0348360575735569, -0.04953883960843086, 0.06216185539960861, -0.017259158194065094, -0.018544567748904228, 0.02076876163482666, 0.008181852288544178, 0.01764911413192749, -0.0006282622343860567, -0.02514493279159069, 0.006167080253362656, 0.05439162254333496, -0.04275071993470192, 0.025072719901800156, 0.0072755659930408, -0.007351390551775694, 0.00710225198417902, -0.004336453974246979, -0.03041655942797661, -0.0014524051221087575, -0.004509767517447472, -0.0053763361647725105, -0.018847867846488953, -0.008644022047519684, 0.03027212992310524, -0.008196295239031315, 0.02770131081342697, 0.005903498735278845, 0.026257028803229332, 0.06169968470931053, 0.0170858446508646, -0.02510160394012928, -0.023397352546453476, 0.020927632227540016, 0.023339582607150078, -0.007188908755779266, 0.03110981360077858, -0.03339177742600441, -0.00045111216604709625, 0.03142755478620529, 0.02752799727022648, 0.002233219565823674, -0.0017791737336665392, -0.004917777143418789, 0.014774994924664497, -0.008463487029075623, 0.007936323992908001, -0.038908932358026505, 0.005235518794506788, 0.03004104644060135, 0.025318246334791183, -0.0066689676605165005, 0.01913672313094139, -0.007109473459422588, 0.0038598410319536924, -0.04182637855410576, 0.03330511972308159, -0.02076876163482666, -0.02053767628967762, 0.005560481920838356, -0.003067291807383299, 0.04526376724243164, 0.010478259064257145, -0.020133277401328087, -0.01320072915405035, 0.0057229637168347836, 0.03128312900662422, -0.013814548030495644, 0.0009324639686383307, -0.011857547797262669, -0.025910401716828346, 0.008550143800675869, 0.012182510457932949, -0.009445598348975182, -0.002767603611573577, 0.011828661896288395, 0.008261287584900856, 0.0036522257141768932, -0.013554577715694904, 0.006362058222293854, -0.028611207380890846, -0.02342623844742775, 0.011597576551139355, -0.024711648002266884, -0.028466779738664627, 0.0305898729711771, -0.009192848578095436, 0.01217528898268938, 0.012608573772013187, -0.004358117934316397, 0.009416712448000908, -0.03619368374347687, -0.03431611880660057, -0.024783862754702568, -0.0020472684409469366, -0.01034105196595192, -0.017331372946500778, -0.030243245884776115, 0.0018559010932222009, 0.02468276396393776, -0.013771220110356808, 0.005686856806278229, 0.00952503364533186, 0.0048925019800662994, 0.006650914438068867, -0.026618098840117455, 0.010781558230519295, -0.011496476829051971, 0.006019041407853365, -0.00421368982642889, 0.008449044078588486, -0.0021411466877907515, -0.016508132219314575, -0.03339177742600441, -0.019959963858127594, 0.01704251579940319, 0.022473013028502464, -0.003583622397854924, 0.037146907299757004, 0.011489255353808403, 0.028423450887203217, -0.03524045646190643, -0.00805908814072609, 0.0035457098856568336, 0.018833424896001816, 0.03027212992310524, -0.04055541008710861, 0.0009451014338992536, -0.03110981360077858, -0.00791466049849987, -0.00952503364533186, 0.0330740362405777, 0.0024859686382114887, 0.008571808226406574, -0.010182181373238564, 0.006863945629447699, -0.0012186121894046664, -0.002218776848167181, 0.006445104256272316, 0.018429026007652283, -0.03272740915417671, -0.03339177742600441, -0.027441339567303658, 0.022371914237737656, -0.023354023694992065, -0.005379946902394295, 0.03264075145125389, -0.02095651812851429, -0.020032178610563278, -0.08665686100721359, 0.008001317270100117, 0.017475800588726997, 0.005325786303728819, 0.003594454377889633, -0.027643539011478424, 0.031080927699804306, 0.014861651696264744, 0.021115388721227646, -0.024812748655676842, -0.0139445336535573, 0.00509831216186285, -0.002105039544403553, -0.0039031694177538157, -0.013930090703070164, -0.031918611377477646, 0.02524603344500065, 0.009676682762801647, 0.017779098823666573, 0.030301015824079514, 0.04610145092010498, 0.00033805202110670507, 0.03446054458618164, 0.003975383471697569, -0.030532101169228554, 0.018977852538228035, -0.020927632227540016, 0.030705414712429047, -0.004228132776916027, 0.015078294090926647, -0.010052195750176907, -0.025737088173627853, -0.016710331663489342, 0.034662745893001556, -0.004491713829338551, -0.04329954460263252, -0.008304616436362267, 0.018746767193078995, 0.008976207114756107, -0.011583133600652218, -0.023715095594525337, -0.030069932341575623, -0.009358941577374935, 0.016089290380477905, 0.007907439023256302, -0.006986709777265787, 0.008167409338057041, 0.0038742839824408293, -0.014009525999426842, -0.012991308234632015, -0.009929432533681393, 0.00791466049849987, 0.010406045243144035, -0.025390461087226868, -0.0026484504342079163, -0.06522373110055923, 0.019584450870752335, -0.011539805680513382, 0.002464304445311427, 0.00498276948928833, 0.01676810346543789, 0.018573453649878502, 0.030069932341575623, -0.01364123448729515, -0.006990320049226284, -0.009163963608443737, -0.05444939434528351, -0.0037804057355970144, -0.01536715030670166, -0.013561799190938473, -0.03368063271045685, -0.000715821806807071, -0.0063223401084542274, 0.02123093232512474, 0.024422792717814445, 0.016204833984375, -0.013453477993607521, -0.013099629431962967, -0.010904321447014809, 0.014457253739237785, 0.03177418187260628, -0.026906955987215042, -0.022689655423164368, 0.03703136742115021, 0.0456392802298069, -0.008196295239031315, -3.0155008062138222e-05, 0.005246351007372141, -0.017071401700377464, 0.03162975609302521, -0.017764657735824585, 0.013395707122981548, 0.004683081526309252, 0.010492702014744282, -0.013951755128800869, 0.008644022047519684, -0.02030659094452858, -0.006221240386366844, 0.018082398921251297, 0.010189402848482132, 0.022097500041127205, 0.017446914687752724, 0.008304616436362267, -0.022834083065390587, -0.01783687062561512, 0.024697205051779747, -0.030532101169228554, -0.020739875733852386, -0.015034966170787811, -0.01932447962462902, -0.004076483193784952, 0.020942075178027153, -0.005481046624481678, 0.027094712480902672, -0.0028885621577501297, -0.0311964713037014, 0.020378805696964264, -0.006553425453603268, -0.022602997720241547, 0.01727360114455223, 0.016883645206689835, 0.036771394312381744, 0.004163139965385199, -0.007318894378840923, 0.033507321029901505, -0.005235518794506788, 0.009575583040714264, -0.007661910727620125, 0.023021839559078217, -1.1974556400673464e-05, -0.00798687431961298, 0.02692139893770218, -0.010239952243864536, -0.012789108790457249, -0.00031164876418188214, -0.010066638700664043, 0.006618417799472809, 0.033882834017276764, -0.0056074210442602634, 0.0793776884675026, -0.003070902545005083, -0.0020725433714687824, -0.002505827695131302, -0.033045150339603424, 0.004809455946087837, 0.015872647985816002, -0.0013124904362484813, -0.028726749122142792, -0.021360917016863823, 0.02016216330230236, 0.0052788471803069115, 0.0034608584828674793, -0.022241927683353424, 0.013301828876137733, -0.01853012666106224, -0.037609077990055084, 0.039428871124982834, -0.0007189811440184712, -0.015468250028789043, 0.022935183718800545, -0.01928115263581276, 0.027961280196905136, -0.010225510224699974, 0.011929761618375778, -0.004939441103488207, 0.0025401292368769646, -0.010752672329545021, -0.016926974058151245, 0.008745121769607067, 0.004112590104341507, 0.024509448558092117, -0.01364123448729515, -0.028986720368266106, -0.0402376689016819, -0.015713777393102646, -0.006221240386366844, 0.006076812278479338, 0.052976228296756744, 0.021158717572689056, -0.023151826113462448, 0.011843104846775532, -0.01634926162660122, -0.006730349734425545, -0.01593041978776455, 0.003329067723825574, -0.028206808492541313, -0.0026646985206753016, -0.03922667354345322], "76a79005-725c-4eeb-a2cb-d05bb8a0cb88": [-0.02557522989809513, -0.024160798639059067, 0.0012231945293024182, -0.008782465010881424, -0.018979361280798912, 0.02317935600876808, -0.008068032562732697, -0.016338126733899117, -0.005185045767575502, -0.03573604300618172, 0.019744308665394783, 0.007728857453912497, 0.016208229586482048, 0.005148963537067175, -0.002284018089994788, -0.0006088910740800202, 0.00819071289151907, -0.0006598575273528695, 0.021764924749732018, -0.030944297090172768, 0.00028279609978199005, 0.021880388259887695, 0.004827830009162426, -0.05155458301305771, -0.018690701574087143, 0.009641226381063461, -0.006296385079622269, -0.019008226692676544, 0.004629376344382763, 0.012614419683814049, 0.025358734652400017, -0.008941227570176125, 0.0019394309492781758, -0.019946370273828506, 0.00895566027611494, -0.02164946123957634, 0.007671125698834658, 0.009417515248060226, 0.006325250957161188, 0.009597927331924438, 0.012960811145603657, -0.017925754189491272, -0.005964426323771477, -0.0055639115162193775, -0.004531953949481249, 0.011856688186526299, -0.020249461755156517, -0.005405148956924677, -0.017940185964107513, 0.013545346446335316, 0.004207212012261152, 0.006484013516455889, -0.042028822004795074, -0.014548437669873238, 0.03377315774559975, 0.010499988682568073, -0.0007604373386129737, 0.010969060473144054, -0.0010869833640754223, -0.014613386243581772, 0.004145871847867966, -0.005625251680612564, -0.021317502483725548, 0.008436073549091816, 0.006538137327879667, 0.006855662912130356, -0.030453575775027275, -0.005351025145500898, -0.0243484266102314, 0.007144322153180838, 0.0273793525993824, 0.029876256361603737, 0.004120613913983107, 0.023958737030625343, 0.03253192454576492, -0.01488039642572403, -0.009742257185280323, -0.009965968318283558, 0.006332467310130596, -0.002675512572750449, 0.016338126733899117, -0.003297934541478753, 0.005311334505677223, -0.018098950386047363, 0.008060815744102001, -0.0006318936357274652, 0.007306693121790886, 0.022212347015738487, 0.008046383038163185, -0.014108232222497463, -0.000549806107301265, 0.010694833472371101, 0.01164740975946188, 0.03319584205746651, -0.006245869677513838, -0.01985977217555046, -0.02931337058544159, 0.04029686376452446, 0.01330720167607069, -0.02134636789560318, -0.023280387744307518, 0.02496904507279396, -0.013437098823487759, 0.0016895600128918886, -0.043991703540086746, -0.011705142445862293, 0.017781423404812813, 0.005722674075514078, 0.009136072359979153, -0.019744308665394783, -0.018156681209802628, 0.012571120634675026, -0.00639741588383913, 0.003521645674481988, -0.03997933864593506, 0.0221113171428442, 0.03166594356298447, -0.011820605956017971, -0.025156673043966293, -0.012419573962688446, 0.016641220077872276, 0.018286578357219696, 0.029371101409196854, 0.006960301660001278, 0.029241206124424934, 0.0027855639345943928, -0.015847405418753624, -0.008594836108386517, 0.016338126733899117, -0.016496889293193817, 0.045463867485523224, -0.010088648647069931, 0.03007831797003746, 0.011899987235665321, -0.0012980656465515494, -0.0023832449223846197, -0.013776273466646671, 0.012289677746593952, -0.01609276607632637, -0.02421853132545948, 0.02016286551952362, 0.005834529642015696, 0.01591956987977028, -0.00813298113644123, 0.0022226779256016016, -0.01158246211707592, 0.03054017387330532, 0.025618528947234154, 0.004503088071942329, -0.005906694568693638, 0.014894829131662846, -0.0008939423132687807, 0.029818523675203323, -0.018257712945342064, 0.0003608243423514068, 0.0027458732947707176, 0.007887620478868484, 0.02016286551952362, -0.018690701574087143, -0.041595831513404846, 0.020364927127957344, 0.012585553340613842, 0.019498948007822037, -0.0018311835592612624, -0.0026286053471267223, 0.03764119744300842, -0.0038463876117020845, 0.016496889293193817, 0.019296886399388313, -0.015703076496720314, -0.017536062747240067, -0.007793806027621031, -0.014851530082523823, 0.012787614949047565, -0.03152161464095116, 0.005098448134958744, 0.0006165585946291685, -0.007440198212862015, -0.005675767082720995, -0.027177290990948677, -0.009143289178609848, 0.006032983306795359, 0.01671338453888893, -0.006754632107913494, -0.01609276607632637, -0.018546372652053833, 0.0020332452841103077, 0.0064046322368085384, -0.01482266467064619, 0.00455360347405076, 0.021173173561692238, 0.039026763290166855, 0.0156453438103199, 0.01879173144698143, -0.5533024668693542, -0.00763504346832633, -0.01029792707413435, -0.0029100484680384398, 0.009410299360752106, 0.00840720720589161, -0.00924431998282671, 0.03232986107468605, -0.02719172276556492, 0.025907188653945923, -0.009099990129470825, 0.025199972093105316, -0.0030002545099705458, -0.0077216411009430885, -0.010889679193496704, -0.033599965274333954, 0.006184529513120651, -0.023280387744307518, -0.004546386655420065, 0.01622266322374344, -0.04973603039979935, 0.013668026775121689, 0.007671125698834658, 0.006740198936313391, -0.0024355642963200808, 0.032243262976408005, -0.008219578303396702, 0.007923702709376812, 0.003788655623793602, 0.020696884021162987, -0.01413709856569767, 0.017694827169179916, 0.00025866596843115985, -0.012686584144830704, 0.07580198347568512, -0.004643809515982866, -0.03882469981908798, 0.008089682087302208, -0.011524729430675507, 0.04615665227174759, -0.017030909657478333, -0.01832987740635872, 0.029082443565130234, 0.007209270726889372, -0.001362111885100603, 0.0046907165087759495, 0.0064118485897779465, -0.024160798639059067, -0.0027548938523977995, 0.014165963977575302, 0.005845354404300451, -0.022919563576579094, 0.0024860796984285116, 0.0020837606862187386, 0.018575238063931465, 0.028750484809279442, 0.007180404849350452, -0.022226780652999878, 0.0020404616370797157, -0.02255873940885067, -0.031810276210308075, 0.0077216411009430885, -0.0112144211307168, 0.008602052927017212, -0.028014402836561203, -0.003570356871932745, -0.023410284891724586, -0.01746389828622341, 0.008226795122027397, -0.01789688877761364, -0.005271643865853548, 0.016136065125465393, 0.005740715656429529, 0.006097931414842606, 0.04410716891288757, -0.01519792154431343, 0.032993778586387634, -0.011979368515312672, -0.0205958541482687, 0.0153278186917305, 0.008710299618542194, -0.02540203370153904, -0.018243279308080673, 0.0012511584209278226, 0.006018550135195255, -0.01593400351703167, -0.038709238171577454, 0.0012430398492142558, 0.020841214805841446, 0.006195354275405407, 0.02317935600876808, 0.006725765764713287, 0.021707193925976753, 0.017406167462468147, 0.004972159396857023, 0.010839163325726986, -0.030107183381915092, -0.012304110452532768, 0.005199478939175606, -0.04491541534662247, -0.034668002277612686, 0.010774214752018452, 0.004492263309657574, 0.0025600488297641277, 0.03547624871134758, -0.0055711278691887856, -0.048061802983284, 0.004225253127515316, 0.07256899029016495, -0.019152557477355003, 0.005509787704795599, 0.0010671380441635847, -0.006487621925771236, 0.006220611743628979, -0.011625760234892368, -0.03411955013871193, 0.03536078706383705, -0.013761840760707855, 0.01482266467064619, 0.003306955099105835, 0.011409265920519829, -2.88589012598095e-06, 0.04912984371185303, 0.010997925885021687, 0.002677316777408123, 0.0275381151586771, 0.011604111641645432, 0.0024896881077438593, 0.005805663764476776, 0.009778340347111225, 0.0036749960854649544, -0.03732367232441902, 0.014772148802876472, -0.01922472193837166, 0.007440198212862015, -0.01174122467637062, 0.0012917511630803347, 0.022905129939317703, 0.03487006574869156, -0.024608220905065536, -0.013393799774348736, -0.024752549827098846, 0.0020404616370797157, -0.010023700073361397, 0.0006553472485393286, -0.005942777264863253, 0.00039262199425138533, 0.005148963537067175, -0.011611327528953552, -0.004712366033345461, 0.01329998578876257, 0.00963401049375534, -0.008515454828739166, 0.02421853132545948, 0.010232978500425816, -0.009035041555762291, -0.011842255480587482, -0.022933995351195335, -0.032127801328897476, -0.0257051270455122, -0.0008722928469069302, -0.022602036595344543, -0.026672136038541794, 0.004694324918091297, -0.0052247364073991776, -0.027032960206270218, -0.03665975481271744, -0.010232978500425816, -0.01671338453888893, -0.018171114847064018, 0.0027837599627673626, -8.583672752138227e-06, -0.016872147098183632, 0.011806173250079155, 0.019498948007822037, 0.010362875647842884, -0.0013422665651887655, 0.0007342775352299213, 0.01788245514035225, -0.006866487208753824, 0.008147413842380047, 0.001676931162364781, 0.004939685575664043, -0.001358503708615899, 0.0066932919435203075, -0.014129881747066975, 0.01698761060833931, 0.020220596343278885, -0.010954627767205238, 0.017622660845518112, -0.027465948835015297, 0.03487006574869156, 0.009035041555762291, 0.0034999961499124765, 0.02873605117201805, -0.0036804084666073322, 0.02512780763208866, 0.0033755118492990732, -0.025921622291207314, 0.022616470232605934, 0.039026763290166855, -0.003606439335271716, -0.024002036079764366, -0.03778552636504173, 0.01361751090735197, -0.028158731758594513, 0.002635821932926774, -0.0066752503626048565, 0.021129874512553215, -0.006390199065208435, -0.00895566027611494, -0.0121742133051157, -0.009316484443843365, 0.005354633554816246, 0.024002036079764366, 0.0272205900400877, -0.00687731197103858, 0.0029677802231162786, 0.0033105635084211826, 0.0010905916569754481, 0.012080399319529533, -0.012881428934633732, 0.020725751295685768, -0.015818540006875992, -0.023193789646029472, 0.007205662317574024, -0.010348442010581493, 0.01421647984534502, -0.012231945991516113, -0.015313385985791683, -0.013480397872626781, -0.0035018003545701504, -0.028678320348262787, 0.006422673352062702, 0.021606162190437317, -0.029428834095597267, 0.029674194753170013, -0.0011086327722296119, 0.02287626452744007, 0.01563091017305851, -0.0024518014397472143, 0.005805663764476776, 0.00848658848553896, -0.033166974782943726, 0.03357109799981117, 0.011106173507869244, 0.03411955013871193, 0.005470097064971924, -0.014894829131662846, 0.006379374768584967, -0.02811543270945549, 0.004528345540165901, -0.02362677827477455, 0.004088140092790127, 0.011466997675597668, -0.00012234201130922884, 0.009215453639626503, 0.00901339203119278, 0.012051532976329327, 0.039344288408756256, 0.019008226692676544, 0.04185562580823898, 0.00035563751589506865, -0.011856688186526299, 6.494838453363627e-05, -0.015096890740096569, 0.0023201005533337593, -0.018445340916514397, -0.015313385985791683, -0.014129881747066975, 0.002459018025547266, 0.01255668792873621, 0.01113503985106945, -0.007801022380590439, 0.0170020442456007, -0.006372157949954271, 0.015731941908597946, 1.5490077203139663e-05, 0.009431948885321617, -0.01727627031505108, 0.00789483729749918, -0.03712160885334015, 0.005112881306558847, 0.01308349147439003, -0.017261836677789688, -0.037814393639564514, 0.00977112352848053, -0.01525565329939127, -0.01195771899074316, 0.006859270855784416, -0.006808755453675985, 0.02089894562959671, -0.0004956824705004692, 0.011676276102662086, -0.015183488838374615, 0.024449458345770836, 0.02133193612098694, -0.004535561893135309, -0.057818494737148285, -0.007598960772156715, 0.023670077323913574, 0.01776699163019657, -0.010925761424005032, -0.01254225429147482, 0.021764924749732018, 0.006808755453675985, -0.0058273132890462875, -0.006065457593649626, -0.023366985842585564, -0.014187613502144814, -0.003353862324729562, -0.026527807116508484, 0.011531946249306202, -0.02659997157752514, -0.0009201021166518331, 0.007952569052577019, 0.004340717103332281, -0.01361751090735197, 0.02284739725291729, 0.007317517884075642, -0.00034594035241752863, -0.01577524095773697, -0.014995859935879707, -0.009901020675897598, -0.0469360314309597, 0.026686569675803185, 0.01714637316763401, -0.005722674075514078, -0.0472535565495491, 0.004918036051094532, -0.009431948885321617, -0.018907196819782257, 0.002597935264930129, -0.009352567605674267, 0.005859787575900555, 0.004867520648986101, 0.005206695292145014, -0.012239161878824234, -0.010803081095218658, 0.007772156503051519, -0.007010817062109709, -0.018257712945342064, 0.03440821170806885, -0.015371117740869522, -0.004268552176654339, -0.0017094053328037262, -0.0011546378955245018, 0.015385550446808338, -0.020538121461868286, -0.0011266740038990974, -0.008869062177836895, 0.024694819003343582, 0.007526795845478773, -0.031492751091718674, 0.0020530906040221453, -0.013386583887040615, -0.01729070208966732, 0.025041209533810616, -0.003523449879139662, 0.03472573682665825, -0.0008889809832908213, 0.02631131187081337, 0.0016615961212664843, -0.0005525122978724539, -0.002765718614682555, 0.01203710027039051, 0.005553086753934622, -0.012657718732953072, 0.014757716096937656, -0.03238759562373161, 0.02527213841676712, -0.0003064751799684018, 0.0005245484062470496, -0.020797915756702423, 0.015876270830631256, -0.01577524095773697, -0.05672158673405647, 0.0038536041975021362, 0.004665459040552378, 0.043356653302907944, -0.02584945596754551, -0.0018374980427324772, 0.01837317645549774, -0.015428849495947361, -0.020682452246546745, -0.01987420581281185, 0.024261830374598503, -0.013032975606620312, -0.005986075848340988, -0.0340040884912014, -0.01727627031505108, -0.024406159296631813, -0.009496896527707577, 0.0014288644306361675, 0.006206179037690163, -0.022760801017284393, -0.003211336676031351, -0.020653586834669113, 0.02916903980076313, 0.004008758347481489, 0.014526788145303726, -0.017795857042074203, -0.007036074995994568, 0.006422673352062702, -0.014259777963161469, -0.01279483176767826, -0.013213387690484524, -0.02736491896212101, 0.006790714338421822, -0.01443297415971756, 0.007169580087065697, -0.0029335019644349813, -0.004853087477385998, 0.008926794864237309, 0.0009462618618272245, 0.007411332335323095, 0.02709069289267063, -0.0054664891213178635, -0.013401016592979431, -0.004239686299115419, -0.0012367254821583629, 0.01835874281823635, -0.0022226779256016016, 0.0011374987661838531, 0.015703076496720314, -0.0514102540910244, -0.014534004963934422, -0.015558745712041855, -0.036775216460227966, -0.007728857453912497, 0.01594843715429306, 0.015703076496720314, 0.018301011994481087, -0.008205145597457886, 0.012195862829685211, -0.00721648707985878, 0.014584519900381565, -0.03051130659878254, 0.005221128463745117, 0.027032960206270218, 0.011899987235665321, -0.004755665082484484, -0.010290710255503654, -0.0005655921995639801, 0.015068025328218937, -0.03865150362253189, 0.04047005996108055, 0.014469056390225887, -0.04993809014558792, -0.012282460927963257, -0.007916485890746117, -0.025041209533810616, 0.010932978242635727, -0.009237103164196014, -0.0026881415396928787, 0.018546372652053833, 0.013971119187772274, -0.03850717470049858, -0.020682452246546745, -0.0024409766774624586, 0.002561852801591158, 0.0062314365059137344, -0.0026249971706420183, -0.039632946252822876, -0.022515440359711647, -0.018113382160663605, -0.0021757709328085184, -0.012195862829685211, 0.04425149783492088, -0.026094816625118256, -0.01488039642572403, 0.005762364715337753, 0.005325767677277327, 0.00887627899646759, -0.011207204312086105, -0.03484119847416878, -0.028793783858418465, -0.007808239199221134, -0.013877304270863533, -0.03853604197502136, 0.0007365327328443527, 0.0025780899450182915, 0.005282468628138304, 0.01729070208966732, 0.01655462197959423, -0.004903602879494429, -0.0015127561055123806, -0.0154865812510252, 0.012376274913549423, -0.01374740805476904, -0.005618035327643156, -0.0022695851512253284, -0.022789666429162025, 0.013097924180328846, 0.0019322143634781241, 0.026412341743707657, 0.017377300187945366, -0.017030909657478333, -0.0010725504253059626, 0.02000410296022892, -0.019354619085788727, 0.002504121046513319, -0.019787607714533806, -0.053604066371917725, -0.009273186326026917, -0.003117522457614541, 0.008335042744874954, -0.03611130267381668, -0.037237074226140976, -0.017940185964107513, 0.016756683588027954, 0.010088648647069931, 0.02196698635816574, 0.01909482479095459, -0.0030561822932213545, -0.009756690822541714, 0.011098956689238548, -0.0073680332861840725, 0.029068009927868843, 0.01610719971358776, 0.0009309268207289279, -0.03322470560669899, 0.006047416012734175, -0.006198962219059467, -0.0030146874487400055, 0.01848863996565342, -0.015298952348530293, 0.011236070655286312, 0.012166997417807579, 0.0021396884694695473, -0.010774214752018452, -0.02257317118346691, 0.008046383038163185, -0.02332368679344654, -0.03804532065987587, -0.021750491112470627, 0.004203603602945805, -0.011221637018024921, 0.032849449664354324, 0.012614419683814049, -0.006361333187669516, 0.0021234513260424137, -0.007331951055675745, -0.02540203370153904, 0.009511330164968967, -0.005888653453439474, 0.017247404903173447, 0.01714637316763401, 0.019152557477355003, 0.015298952348530293, 0.01172679103910923, -0.015991736203432083, -0.08203702419996262, -0.0005813782336190343, 0.0018077300628647208, 0.009388649836182594, 0.028519555926322937, 0.0016859518364071846, -0.010370091535151005, 0.027422651648521423, -0.012996893376111984, -0.02377110905945301, -0.02752368152141571, 0.0224288422614336, 0.02766801230609417, 0.0016570858424529433, -0.02317935600876808, 0.03068450279533863, -0.02843295969069004, 0.02392987161874771, 0.003472934477031231, -0.006819580215960741, -0.015457714907824993, -0.015140189789235592, -0.0006923317559994757, 0.03746800124645233, 0.015818540006875992, 0.022053584456443787, 0.008991742506623268, -0.003177058417350054, 0.01164740975946188, -0.01187833771109581, 0.011618544347584248, 0.024622654542326927, -0.00918658822774887, 0.028635021299123764, 0.011373183690011501, -0.016872147098183632, 0.023338118568062782, -0.012585553340613842, -0.0016859518364071846, -0.015154622495174408, -0.019917504861950874, 0.050775203853845596, -0.01488039642572403, -0.005484530236572027, 0.006794322747737169, 0.015241220593452454, 0.007930919528007507, 0.004604118876159191, 0.014714417047798634, 0.005939168855547905, -0.03079996630549431, 0.007267002481967211, 0.017103074118494987, -0.0009471639059484005, -0.019037092104554176, -0.0005105664604343474, -0.011669059284031391, -0.013870088383555412, -0.012650501914322376, -0.004030407872051001, 0.02254430577158928, -0.034956663846969604, -0.010204113088548183, -0.028476258739829063, -0.013350500725209713, 0.010391741059720516, 0.006076281890273094, 0.006740198936313391, 0.008869062177836895, 0.04892778396606445, -0.025301003828644753, 0.022169047966599464, -0.03665975481271744, -0.013393799774348736, 0.005123705603182316, -0.009265969507396221, -0.009828855283558369, -0.026195848360657692, 0.04635871201753616, -0.004748448263853788, -0.012693800963461399, 0.0034548931289464235, -0.0005732596619054675, -0.003216749057173729, -0.01240514125674963, 0.017810290679335594, 0.003936593886464834, 0.0010824730852618814, 0.014736066572368145, 0.020191730931401253, 0.006570611614733934, 0.0026213889941573143, 0.006422673352062702, -0.009518546052277088, 0.026802033185958862, -0.0048639122396707535, 0.030107183381915092, 0.0030200998298823833, -0.014757716096937656, 0.002769327023997903, -0.03590923920273781, -0.025041209533810616, -0.0025636570062488317, 0.0021793791092932224, -0.012628852389752865, -0.00613401411101222, 0.005278860218822956, 0.008602052927017212, -0.010925761424005032, -0.0061484468169510365, 0.0028054092545062304, 0.0007360816816799343, 0.011329884640872478, 0.02812986634671688, -0.015399983152747154, 0.024406159296631813, -0.017117507755756378, -0.00729586835950613, -0.005704632960259914, -0.01877729967236519, -0.030453575775027275, -0.017925754189491272, -0.020783482119441032, 0.020509256049990654, 0.008104114793241024, -0.032705120742321014, -0.04529067128896713, -0.009713391773402691, -0.011993801221251488, 7.458915933966637e-05, 0.0007924604578875005, 0.029255637899041176, 0.027408218011260033, -0.008529887534677982, -0.01353812962770462, 0.02257317118346691, -0.00455360347405076, -0.02931337058544159, -0.005581952631473541, 0.005199478939175606, 0.015399983152747154, -0.006826796568930149, 0.00985050480812788, 0.020263895392417908, -0.02016286551952362, -0.0017445856938138604, 0.011560812592506409, 0.007483497262001038, 0.0052175200544297695, 0.00395102659240365, 0.0047700977884233, -0.02463708631694317, -0.012946377508342266, -0.026672136038541794, -0.01877729967236519, 0.019210288301110268, -0.00014726143854204565, -0.02437729388475418, -0.011596894823014736, 0.015457714907824993, 0.008984526619315147, -0.011762874200940132, 0.02599378675222397, 0.003691233228892088, -0.02795667015016079, 0.0006494838162325323, -0.023208223283290863, -0.00797421857714653, 0.0007978728390298784, -0.020725751295685768, 0.03472573682665825, 0.01804121769964695, -0.004467005375772715, -0.00018796694348566234, 0.012953594326972961, -0.011712358333170414, -0.0032510273158550262, 0.007967001758515835, -0.02556079626083374, -0.01757936179637909, 0.01059380266815424, -0.002240719273686409, 0.008385557681322098, 0.009684525430202484, 0.0026286053471267223, -0.0046257684007287025, 0.005949993617832661, 0.02316492423415184, -0.009763906709849834, -0.025820590555667877, 0.020523689687252045, 0.016583487391471863, -0.022948428988456726, 0.007649476174265146, -0.0036226764786988497, -0.005040716379880905, 0.007147930562496185, -0.032243262976408005, -0.0018546371720731258, -0.00918658822774887, 0.008616485632956028, -0.03186800703406334, -0.0041711293160915375, -0.01151029672473669, -0.0019177814247086644, 0.012116481550037861, -0.007075765635818243, 0.0003481954918242991, 0.32468417286872864, -0.027552546933293343, -0.03334017097949982, -0.004896386526525021, -0.017030909657478333, 0.008313393220305443, 0.016958745196461678, -0.009641226381063461, -0.0064046322368085384, 0.002017008140683174, 0.0014378849882632494, -0.006891745142638683, -0.003126543015241623, -0.004827830009162426, -0.016338126733899117, -0.02045152522623539, -0.012448440305888653, -0.00028076645685359836, 0.0050298916175961494, 0.005769581533968449, 0.0456659309566021, -0.02224121242761612, 0.000724805926438421, 0.0038427794352173805, 0.02629687823355198, -0.00782267190515995, 0.0040809232741594315, -0.00014884004485793412, 0.032416459172964096, 0.0103773083537817, -0.01143091544508934, 0.021389666944742203, -0.014555654488503933, 0.012073182500898838, 0.0011329884873703122, -0.0015163643984124064, 0.027870073914527893, -0.0021883996669203043, 0.01866183616220951, 0.016179364174604416, -0.00039780884981155396, 0.009684525430202484, -0.009496896527707577, -0.0018672660226002336, 0.011531946249306202, 0.016641220077872276, -0.02449275739490986, -0.004921643994748592, -0.013263903558254242, 0.0069242194294929504, -0.030915429815649986, -0.011466997675597668, 0.03536078706383705, 0.02675873413681984, 0.0039907172322273254, 0.02540203370153904, 0.040210265666246414, -0.004380407743155956, -0.005423190072178841, 0.002857728861272335, -0.013473181053996086, 0.028230898082256317, -0.03238759562373161, 0.024146365001797676, -0.030338112264871597, 0.005906694568693638, 0.005444839596748352, -0.01626596227288246, 0.016511322930455208, -0.008335042744874954, -0.008789680898189545, -0.02677316777408123, -0.0017472918843850493, -0.02032162807881832, -0.04537726938724518, -0.021115440875291824, 0.03778552636504173, 0.00571545772254467, 0.0245071891695261, 0.029212338849902153, -0.009973185136914253, 0.00961957685649395, 0.017694827169179916, -0.011625760234892368, -0.024723684415221214, -0.03896902874112129, 0.012643285095691681, -0.01789688877761364, -0.016294827684760094, 0.0387958362698555, -0.0008425248670391738, 0.01488039642572403, -0.0007383368210867047, 0.009749474003911018, -0.011697925627231598, -0.00848658848553896, 0.029140174388885498, 0.007656692992895842, 0.010831947438418865, -0.015674209222197533, -0.013054625131189823, 0.030482441186904907, 0.016958745196461678, -0.004892778117209673, -0.02001853473484516, -0.00529690133407712, -0.03533191978931427, 0.004513912834227085, 0.009388649836182594, -0.00969174224883318, 0.002069327747449279, -0.04537726938724518, 0.007129888981580734, -0.017103074118494987, 0.005412365309894085, 0.008926794864237309, -0.016583487391471863, 0.00916493870317936, -0.0171608068048954, -0.006202570628374815, 0.03169481083750725, -0.03764119744300842, -0.00024175232101697475, 0.007620610296726227, -0.008652567863464355, -0.03232986107468605, -0.008169063366949558, -0.012924727983772755, 0.008125764317810535, -0.031954605132341385, 0.013047408312559128, -0.04283706843852997, 0.016294827684760094, -0.008840196765959263, -0.017795857042074203, 0.016136065125465393, 0.0075484453700482845, 0.0075556617230176926, -0.014750499278306961, 0.004239686299115419, 0.02661440335214138, 0.026672136038541794, 0.0035775734577327967, 0.005181437823921442, 0.006999992299824953, -0.01525565329939127, -0.005351025145500898, 0.023366985842585564, 0.0017671373207122087, -0.0031824707984924316, -0.04708036035299301, -0.02859172224998474, 0.012008234858512878, 0.0014784777304157615, 0.006249477621167898, -0.015890704467892647, -0.016655651852488518, -0.026715435087680817, 0.01819998025894165, 0.0243484266102314, -0.02465151995420456, 0.005394324194639921, 0.030482441186904907, -0.03114635869860649, -0.004990200977772474, -0.007418548688292503, -0.18670494854450226, 0.009735041297972202, 0.039315421134233475, -0.013545346446335316, 0.02857728861272335, -0.014750499278306961, -0.000899805745575577, 0.012924727983772755, -0.005960818380117416, -0.0003808952169492841, 0.03573604300618172, 0.0013278336264193058, -0.03792985528707504, -0.007887620478868484, 0.007844321429729462, 0.011034009046852589, -0.03798758611083031, 0.020783482119441032, 0.017810290679335594, 0.027119558304548264, 0.03712160885334015, -0.031781408935785294, -0.013119573704898357, 0.04254840686917305, 5.2234961913200095e-05, 0.024305127561092377, 0.0020837606862187386, 0.015861839056015015, 0.011163905262947083, -0.021591728553175926, -0.024896880611777306, -0.00537267467007041, -0.01730513572692871, -0.0019268020987510681, -0.009453598409891129, -5.215039436734514e-06, -0.009684525430202484, 0.0031193264294415712, -0.009229887276887894, -0.0011681688483804464, 0.00030264141969382763, 0.022371109575033188, -0.008298960514366627, 0.015111323446035385, 0.0024554096162319183, 0.04029686376452446, 0.003204120323061943, 0.00642628176137805, 0.0028847907669842243, -0.0050443243235349655, 0.0030237080063670874, -0.011156689375638962, 0.004373190924525261, 0.005369066260755062, 0.03686181455850601, 0.018286578357219696, 0.00023724201309960335, 0.01714637316763401, 0.005008242093026638, 0.02105771005153656, -0.0035450991708785295, -0.015356684103608131, -0.0004988396540284157, 0.02541646733880043, -0.01158246211707592, 0.019325751811265945, -0.014981427229940891, 0.030020585283637047, -0.02854842320084572, 0.007230920251458883, 0.010196896269917488, -0.012578336521983147, 0.012643285095691681, -0.037208206951618195, 0.03172367811203003, 0.0071948375552892685, 0.017030909657478333, -0.012426790781319141, 0.03068450279533863, -0.019744308665394783, -0.030771100893616676, 0.051496852189302444, -0.0360824353992939, -0.020119566470384598, 0.0224288422614336, 0.012217512354254723, 0.020119566470384598, -0.0007663007127121091, -0.022587604820728302, -0.016886578872799873, 0.05981024354696274, -0.025503065437078476, -0.007728857453912497, 0.006556178443133831, 0.004640201106667519, 0.02032162807881832, -0.0010211329208686948, -0.03169481083750725, -0.006061849184334278, -0.004611335229128599, -0.003076027613133192, -0.004524737596511841, 0.0022335026878863573, -0.004445355851203203, 0.004809788428246975, -0.0001826673251343891, 0.020841214805841446, 0.02765357866883278, 0.036284495145082474, -0.012383491732180119, 0.00916493870317936, -0.021245338022708893, 0.009756690822541714, -0.0007302183075807989, 0.011914419941604137, 0.017954619601368904, -0.013422666117548943, -0.013646377250552177, -0.007411332335323095, 0.010016484186053276, 0.016136065125465393, -0.015226787887513638, 0.01427421160042286, 0.024781417101621628, -0.006159271579235792, -0.01623709499835968, -0.029414400458335876, -0.01067318394780159, -0.004001541994512081, 0.021158739924430847, 0.0006981951300986111, 0.02599378675222397, 0.004034016281366348, 0.01353812962770462, -0.005167004652321339, 0.006447931285947561, -0.05207417160272598, -0.01985977217555046, -0.03169481083750725, -0.0032365943770855665, 0.036457691341638565, 0.005065973848104477, -0.012477305717766285, 0.013581428676843643, 0.01565977744758129, 0.04739788547158241, 0.009114422835409641, -0.022327810525894165, 0.027639145031571388, -0.02375667542219162, -0.008082465268671513, -0.004986592568457127, -0.022226780652999878, 0.02690306305885315, 0.006834013387560844, 0.017348434776067734, 0.03882469981908798, -0.0053834994323551655, 0.01527008693665266, -0.009713391773402691, -0.01427421160042286, -0.017117507755756378, -0.024853581562638283, -0.004618551582098007, 0.027999969199299812, -0.0209133792668581, 0.006599477492272854, 0.006999992299824953, 0.00042735133320093155, 0.004932468757033348, 0.005470097064971924, -0.009915453381836414, -0.023193789646029472, 0.01791132055222988, -0.01467111799865961, -0.021620595827698708, -0.041422635316848755, -0.001318812952376902, -0.01593400351703167, -0.032098934054374695, 0.018892763182520866, 0.008602052927017212, 0.0008713908027857542, -0.00019044760847464204, -0.019802041351795197, 0.02166389487683773, -0.0029280895832926035, -0.016006167978048325, -0.008219578303396702, 0.026340177282691002, 0.020379358902573586, -0.005239169578999281, -0.03484119847416878, -0.01938348449766636, 0.02166389487683773, 0.002684533130377531, -0.021389666944742203, 0.03082883358001709, -0.0011952306376770139, 0.018863897770643234, -0.02797110378742218, -0.011849471367895603, -0.0002855022612493485, -0.01270101685076952, 0.026412341743707657, -0.03478346765041351, -0.005913910921663046, -0.009576278738677502, 0.008854629471898079, -0.02118760533630848, 0.05854014307260513, -0.0018158485181629658, -0.010312359780073166, 0.009496896527707577, -0.010932978242635727, -0.008472155779600143, -0.021245338022708893, 0.010384525172412395, 0.03276285156607628, -0.034235015511512756, -0.01652575470507145, 0.0019989670254290104, 0.007205662317574024, 0.00343685201369226, 0.013870088383555412, 0.028086567297577858, -0.02494017966091633, -0.012866996228694916, -0.06575662642717361, 0.030309244990348816, -0.008017516694962978, 0.03521645814180374, -0.0059752510860562325, -0.013198954984545708, 0.02495461143553257, -0.002022420521825552, 0.004199995659291744, -0.010709267109632492, -0.0025420074816793203, 0.016799982637166977, -0.004358758218586445, -0.031232956796884537, -0.014230912551283836, -0.013235037215054035, 0.024622654542326927, -0.004340717103332281, 0.0028883989434689283, 0.003357470501214266, -0.013992768712341785, 0.008551537059247494, 0.03478346765041351, 0.015573179349303246, -0.005657725967466831, 0.007692775223404169, 0.0013819573214277625, -0.00011371605069143698, -0.019672144204378128, 0.00033150738454423845, 0.009756690822541714, -0.026513373479247093, 0.010074215941131115, 0.026874197646975517, -0.003108501899987459, -0.010543287731707096, 0.02362677827477455, 0.014736066572368145, 0.03472573682665825, 0.03611130267381668, -0.008804114535450935, -0.014230912551283836, 0.02330925315618515, -0.0015966477803885937, -0.012065966613590717, 0.011402049101889133, 0.004806180484592915, 0.01171957515180111, 0.0007978728390298784, 0.01361029502004385, 0.015558745712041855, 0.01863296888768673, 0.006906178314238787, -0.019614411517977715, -0.03238759562373161, -0.04840819537639618, 0.019282452762126923, 0.001049998914822936, -0.02857728861272335, -0.02765357866883278, 0.02208244986832142, 0.022818531841039658, 0.016511322930455208, -0.010326793417334557, -0.018993793055415154, 0.006776281166821718, -0.012138131074607372, 0.011539163067936897, 0.03039584308862686, -0.015024726279079914, -0.00534380879253149, 0.007952569052577019, -0.021995851770043373, 0.02013399824500084, -0.027696877717971802, 0.010911328718066216, -0.0008664294728077948, 0.006653600838035345, -0.01866183616220951, 0.0190803911536932, 0.011972151696681976, -0.005913910921663046, -0.04378964379429817, 0.013848438858985901, 0.029703060165047646, -0.021245338022708893, 0.008537104353308678, 0.01420204620808363, -0.037352535873651505, 0.012152563780546188, -0.011632977053523064, 0.01639585942029953, 0.028476258739829063, 0.022948428988456726, 0.019931936636567116, 0.03712160885334015, 0.01623709499835968, 0.004073706921190023, 0.02284739725291729, 0.003904119599610567, 0.006253086030483246, -0.007873187772929668, 0.004950510337948799, 0.0011717771412804723, -0.0021252555307000875, 0.006274735555052757, -0.026672136038541794, -0.0619463250041008, 0.011416482739150524, -0.012390708550810814, 0.0027855639345943928, 0.008313393220305443, -0.030626771971583366, 0.016958745196461678, -0.010334009304642677, -0.0005926539888605475, -0.0029100484680384398, -0.04029686376452446, -0.03567831218242645, 0.004218036774545908, 0.03694841265678406, 0.02300615981221199, 0.008544320240616798, -0.029111308977007866, 0.014454623684287071, -0.0015010293573141098, 0.0075340126641094685, -0.0064371065236628056, 0.002585306530818343, -0.0022226779256016016, 0.0031157182529568672, 0.0019574721809476614, -0.020061833783984184, -0.014245345257222652, -0.018156681209802628, 0.01232575997710228, 0.006862879265099764, 0.013350500725209713, -0.021303070709109306, 0.04393397271633148, 0.0071876212023198605, 0.010680400766432285, 0.0026069560553878546, 0.008768031373620033, -0.0029154608491808176, -0.0015641736099496484, -0.0008095996454358101, -0.005802055820822716, -0.034235015511512756, -0.021432965993881226, -0.01759379543364048, -0.016035033389925957, -0.008811330422759056, -0.0023453582543879747, -0.003817521734163165, -0.015356684103608131, 0.022804098203778267, 0.0037742226850241423, -5.306655111780856e-06, 0.04205768555402756, -0.01577524095773697, 0.007248961366713047, 0.012138131074607372, 0.011236070655286312, -0.02359791286289692, 0.022457707673311234, -0.005618035327643156, 0.0017337610479444265, 0.014851530082523823, 0.003503604559227824, -0.0053077260963618755, -0.01051442138850689, -0.03166594356298447, -0.024261830374598503, 0.008739165961742401, -0.010932978242635727, 0.006126797292381525, -0.004034016281366348, 0.04090305045247078, -0.0053907157853245735, 0.006859270855784416, -0.030569039285182953, -0.015847405418753624, -0.010045349597930908, 0.00918658822774887, -0.009468031115829945, 0.009785556234419346, -0.02000410296022892], "d04b1468-78b1-4115-855e-de536d9f0c9f": [-0.036170974373817444, -0.00788866076618433, -0.018713656812906265, -0.014111937955021858, -0.007662227377295494, 0.019487915560603142, -0.01792479120194912, -0.022804073989391327, -0.0016662970883771777, -0.026076408103108406, 0.013125855475664139, 0.01923956908285618, -0.011701514013111591, -0.005737540312111378, -0.014579414390027523, -0.003416593885049224, -0.014440632425248623, 0.034125763922929764, 0.021167907863855362, -0.016872970387339592, 0.0048865871503949165, -0.007596488576382399, 0.012074034661054611, -0.003569984342902899, -0.0052298903465271, -0.0068879700265824795, 0.03368750587105751, -0.02249729260802269, 0.008326919749379158, 0.011124473065137863, 0.02650005742907524, 0.01811470277607441, -0.013505680486559868, -0.03456402197480202, -0.022570336237549782, -0.007691444829106331, 0.002720857737585902, -0.000529562879819423, 0.02061278000473976, -0.0034312023781239986, 0.006727274972945452, -0.016288625076413155, 0.006387624423950911, 0.021153299137949944, -0.01830461621284485, 0.002293555298820138, -0.016186363995075226, 0.015222194604575634, -0.01754496619105339, 0.008692136034369469, -0.0077279661782085896, 0.015412107110023499, -0.03976469486951828, -0.01884513534605503, 0.017398880794644356, -0.015748105943202972, 0.0036850273609161377, 0.018888961523771286, -0.004473893437534571, -0.03061969205737114, 0.022380424663424492, 0.00028486832161433995, -0.015003064647316933, -0.005452672019600868, 0.0030732909217476845, -0.021708426997065544, -0.01338881067931652, -0.007917878217995167, -0.001216168631799519, -0.014959239400923252, 0.013651766814291477, 0.025740409269928932, -0.004349720198661089, -0.01116099487990141, 0.018450701609253883, -0.014557501301169395, -0.03088264726102352, -0.0027318140491843224, 0.022088252007961273, 0.023739026859402657, 0.022000599652528763, 0.006979274097830057, 0.009685522876679897, 0.008582571521401405, 0.02324233390390873, -0.016390884295105934, 0.012826378457248211, 0.03342454880475998, 0.03108716942369938, 0.008326919749379158, 0.0026058147195726633, 0.02100721187889576, -0.025126846507191658, 0.013695592060685158, 0.006124668754637241, 0.007169186137616634, -0.01116099487990141, 0.014710891991853714, 0.006807622499763966, -0.04277407377958298, -0.004678414203226566, 0.0156896710395813, -0.038216181099414825, -0.006803970318287611, -0.03362907096743584, -0.008655614219605923, 0.02604719065129757, -0.02305242046713829, -0.007713357452303171, -0.029611697420477867, -0.005332150496542454, 0.03444715216755867, -0.022263554856181145, -0.015748105943202972, -0.01940026320517063, -0.0028249442111700773, 0.04172225296497345, -0.008473006077110767, -0.01998460851609707, -0.02192755602300167, 0.024849282577633858, 0.020875735208392143, 0.027829444035887718, -0.006270755082368851, 0.019429480656981468, 0.021810688078403473, 0.008137008175253868, -0.007169186137616634, 0.004189025145024061, -0.021796079352498055, 0.06918647885322571, -0.02408963441848755, -0.004937717691063881, 0.0053102378733456135, 0.003047725884243846, -0.0032339859753847122, -0.00951752346009016, 0.006646927446126938, -0.023037811741232872, -0.023958155885338783, 0.024878500029444695, 0.016946012154221535, 0.01650775410234928, -0.011635775677859783, -0.009495610371232033, 0.028501441702246666, -0.00372154894284904, 0.02137242816388607, 0.007085186429321766, 0.0016151668969541788, 0.010583953931927681, 0.019458698108792305, -0.004985195584595203, 0.005675453692674637, 0.0007144534029066563, 0.0117088183760643, 0.008969699963927269, -0.0066323187202215195, -0.007059621158987284, -0.004141547251492739, -0.00034627021523192525, 0.01716514304280281, 0.0366092324256897, 0.008129703812301159, 0.017048273235559464, 0.03424263373017311, -0.022000599652528763, -0.025608932599425316, 0.0105985626578331, -0.010372128337621689, 0.003809200832620263, 0.021153299137949944, 0.0027464227750897408, 0.020320607349276543, -0.03319081291556358, 0.008239268325269222, -0.007384663447737694, 0.020276781171560287, 0.017062881961464882, 0.010145694948732853, -0.03208055719733238, -0.00340563734062016, 0.009261872619390488, 0.02736196666955948, -0.009583262726664543, -0.03319081291556358, 0.011087951250374317, 0.012746031396090984, 0.017121316865086555, -0.0179101824760437, 0.00044465024257078767, 0.023841287940740585, 0.020466692745685577, 0.0015740800881758332, -0.5474146604537964, -0.00811509508639574, 0.01143855880945921, 0.004641892854124308, 0.032898638397455215, 0.01086882222443819, 0.012212816625833511, 0.019078873097896576, -0.022351207211613655, 0.010474389418959618, -0.008743266575038433, 0.021693818271160126, -0.0059493654407560825, 0.007315272465348244, -0.018056269735097885, -0.007684140466153622, -0.003548071486875415, -0.018421484157443047, -0.023768244311213493, 0.01227855496108532, -0.026280928403139114, 0.013505680486559868, -0.0009952130494639277, 0.02445485070347786, 0.0040977210737764835, -0.007406576536595821, -0.004696675110608339, 0.006898926571011543, -0.006657883990556002, 0.048033181577920914, -0.03929721936583519, 0.008246572688221931, -0.018888961523771286, -0.009809696115553379, 0.06305085867643356, -0.01558740995824337, -0.027318142354488373, 0.011350907385349274, 0.009071960113942623, 0.02902735210955143, -0.02090495266020298, -0.022628771141171455, 0.010686214081943035, -0.003761722706258297, 0.017939399927854538, -0.013286550529301167, 0.004068504087626934, -0.03833305090665817, 0.020773474127054214, -0.005580497439950705, -0.008918569423258305, -0.001497384742833674, 0.0014426023699343204, 0.03240194544196129, -0.02127016894519329, 0.008312311954796314, 0.01614253781735897, -0.01604027859866619, 0.020379042252898216, -0.02109486423432827, -0.021167907863855362, 0.018231572583317757, -0.010854213498532772, -0.004857370164245367, -0.01335228979587555, -0.006541015114635229, -0.007227620575577021, -0.004864674527198076, 0.0031499862670898438, -0.04546206071972847, -0.024790847674012184, 0.011102559976279736, -0.0052919769659638405, -0.00648623239248991, 0.017749488353729248, 0.03257725015282631, 0.04329998418688774, -0.03695983812212944, 0.018976612016558647, 0.010379432700574398, 0.0020305998623371124, -0.0119863823056221, -0.031145602464675903, -0.0012554293498396873, 0.006822231225669384, 0.004178068600594997, -0.04265720397233963, -0.003783635562285781, 0.006829535588622093, -0.0022771204821765423, 0.0360541045665741, 0.006716318428516388, 0.025462845340371132, -0.025170672684907913, -0.004864674527198076, 0.011124473065137863, -0.029465610161423683, 0.015616627410054207, 0.030853429809212685, 0.00248711952008307, -0.057850182056427, 0.017574183642864227, -0.00023761852935422212, 0.0020013826433569193, 0.03742731362581253, -0.021723035722970963, -0.04397198185324669, 0.0014097329694777727, 0.05440254509449005, -0.0070705777034163475, -0.0035462453961372375, -0.012315076775848866, -0.012570727616548538, -0.002488945610821247, 0.004002765286713839, -0.03397967666387558, 0.011862209066748619, 0.011109864339232445, 0.004415458999574184, 0.0027025968302041292, 0.03333689644932747, -0.009970391169190407, 0.025170672684907913, 0.02015991136431694, 0.017486533150076866, 0.010898039676249027, 0.020393650978803635, 0.009086568839848042, -0.009846217930316925, 0.008845526725053787, -0.002028773771598935, 0.006497188936918974, 0.026441624388098717, -0.019619392231106758, -0.004002765286713839, -0.002770161721855402, -0.009627087973058224, 0.005817887838929892, 0.016946012154221535, -0.02585727907717228, -0.008217355236411095, -0.0026770317927002907, 0.0056608449667692184, 0.02026217244565487, -0.005814235657453537, -0.03675531968474388, 0.0004161177494097501, -0.010971082374453545, -0.01268759649246931, 0.0072897071950137615, -0.0017393402522429824, -0.00975856650620699, -0.00646431976929307, -0.008626396767795086, 0.007198403589427471, -0.004389893729239702, -0.0072385771200060844, -0.01783713884651661, -0.011789166368544102, -0.022891726344823837, -0.015733497217297554, 0.010737344622612, -0.003995460923761129, -0.0048537179827690125, -0.020276781171560287, -0.030298301950097084, -0.015017673373222351, -0.025068411603569984, -0.003922417759895325, -0.020232954993844032, 0.002631379757076502, 0.011840295977890491, -0.009481001645326614, -0.020276781171560287, 0.0072203162126243114, 0.015426714904606342, -0.02026217244565487, 0.003823809325695038, -0.0010865170042961836, -0.01021873764693737, -0.0050545865669846535, 0.008699440397322178, 0.026251710951328278, -0.000669714470859617, 0.02137242816388607, -0.00882361363619566, 0.024221111088991165, 0.028968917205929756, -0.012994377873837948, 0.03164229542016983, -0.00803474709391594, 0.007271446753293276, -0.0003510636743158102, -0.005558584351092577, 0.026470841839909554, 0.01376133132725954, 0.00854604970663786, 0.011139081791043282, -0.006891622208058834, 0.03622940555214882, 0.037748705595731735, -0.0033490287605673075, 0.015499758534133434, -0.049143437296152115, 0.04151773080229759, -0.03465167433023453, -0.0012956029968336225, -0.016726883128285408, -0.012439250014722347, 0.005357715766876936, -0.007611097302287817, -0.030678126960992813, -0.021051038056612015, 0.009298394434154034, -0.0001241733698407188, 0.014133851043879986, -0.011307081207633018, 0.00455058878287673, -0.014674371108412743, -0.00257659750059247, 0.001034473767504096, -0.022804073989391327, 0.008100486360490322, -0.021898338571190834, 0.010854213498532772, -0.01661001518368721, 0.01903504692018032, 0.004744153004139662, -0.0016407319344580173, -0.026485448703169823, -0.020305998623371124, -0.008071268908679485, -0.012804466299712658, -0.005536671262234449, 0.014659762382507324, -0.023826679214835167, 0.024966152384877205, 0.0051239775493741035, 0.01227855496108532, 0.006847796030342579, 0.021445471793413162, 0.02930491603910923, -0.016960620880126953, -0.014688979834318161, 0.023928938433527946, 0.027464227750897408, 0.0382746160030365, 0.0024286850821226835, -0.012030208483338356, 0.0010006913216784596, -0.02660231851041317, 0.00040242215618491173, -0.023037811741232872, 0.028954308480024338, 0.005204325076192617, -0.01335228979587555, 0.003502419451251626, 0.016259407624602318, 0.008933178149163723, 0.03146699443459511, 0.016361666843295097, 0.02911500260233879, -0.040173739194869995, 0.0004323241882957518, 0.0058799744583666325, -0.027478836476802826, 0.000596214784309268, -0.02612023428082466, -0.022263554856181145, 0.002143816789612174, 0.007969008758664131, -0.013637158088386059, 0.03377515822649002, 0.001863513607531786, 0.002262511756271124, -0.014338372275233269, 0.017121316865086555, 0.01877209171652794, 0.036813750863075256, -0.014440632425248623, -0.060538168996572495, -0.03900504857301712, 0.02362215705215931, 0.02800474688410759, -0.005989538971334696, 0.0018251659348607063, -0.024294154718518257, -0.009159612469375134, -0.005240846890956163, 0.01539749838411808, 0.027858661487698555, 0.01348376739770174, 0.03435950353741646, 0.010320998728275299, -0.01986773870885372, -0.01264377124607563, 0.02024756371974945, -0.010430563241243362, -0.029918478801846504, 0.0225849449634552, 0.0008395398035645485, 0.009846217930316925, -0.002529119374230504, -0.032051339745521545, 0.04005686938762665, 0.0011759948683902621, 0.004024677909910679, 0.0010737344855442643, 0.002083556028082967, 0.006004147697240114, -0.0002807596465572715, -0.022628771141171455, -0.01022604200989008, -0.03023986890912056, -0.026251710951328278, 0.008699440397322178, -0.0025455541908740997, -0.018552962690591812, 0.02417728491127491, 0.013271941803395748, -0.028165442869067192, -0.009692827239632607, -0.01782253012061119, -0.0003528897650539875, -0.01036482397466898, 0.06860213726758957, -0.0048354570753872395, -0.0042839813977479935, -0.03789479285478592, 0.015324454754590988, 0.004693022929131985, -0.033073943108320236, -0.0015996452420949936, -0.023300768807530403, 0.015353672206401825, -0.00853874534368515, 0.03844992071390152, -0.013447245582938194, -0.0008701266488060355, -0.016580797731876373, -0.003692331723868847, -0.031700730323791504, 0.012935943901538849, -0.0264270156621933, 0.00031385733745992184, 0.004108677618205547, 0.026865273714065552, 0.017311228439211845, -0.0042839813977479935, -0.021518515422940254, -0.006219625007361174, 0.03377515822649002, 0.015134542249143124, 0.0010043433867394924, -0.01045247633010149, -0.0060991039499640465, -0.022643379867076874, 0.03976469486951828, -0.000854148471262306, -0.002863291883841157, 0.02613484300673008, 0.032723333686590195, 0.0007162794936448336, 0.01241003256291151, -0.015339063480496407, 0.013841678388416767, 0.011694209650158882, -0.002638684120029211, 0.014871587045490742, 0.0010600388050079346, 0.002972856629639864, -0.006471624132245779, -0.02967013046145439, -0.03751496598124504, 0.014177677221596241, -0.011409341357648373, -0.026763014495372772, -0.0038165051955729723, -0.02090495266020298, 0.023782853037118912, -0.045403629541397095, 0.0019265133887529373, 0.031204037368297577, -0.007633010391145945, -0.009130395017564297, -0.007428489159792662, -0.0069391001015901566, -0.024936934933066368, -0.0032814638689160347, -0.0286475270986557, -0.014477154240012169, -0.02146008051931858, -0.02464476227760315, 0.004189025145024061, 0.001785905216820538, -0.01893278770148754, -0.02679223008453846, -0.012439250014722347, 0.006778405047953129, 0.017764097079634666, 0.044556327164173126, -0.019663218408823013, -0.01960478350520134, 0.029421783983707428, -0.013717505149543285, -0.003984504379332066, 0.00932761188596487, -0.02986004389822483, 0.0019374698167666793, -0.005755800753831863, 0.008575267158448696, 0.01016760803759098, 0.0024104241747409105, 0.019268784672021866, 0.028355354443192482, 0.012446554377675056, 0.02557971514761448, -0.0014535589143633842, -0.005408845841884613, -0.02511223778128624, -0.030853429809212685, 0.014111937955021858, -0.006310929078608751, -0.000594845216255635, 0.023826679214835167, -0.04724431410431862, 0.007461358793079853, -0.014878891408443451, -0.02585727907717228, 0.001740253297612071, 0.0077279661782085896, 0.031204037368297577, -0.006121016573160887, 0.021051038056612015, 0.014214199036359787, -0.01007995568215847, -0.0005852582980878651, -0.010605867020785809, -0.0032814638689160347, 0.014199590310454369, -0.03061969205737114, -0.001360428868792951, -0.02566736564040184, -0.0037434620317071676, 0.018596788868308067, -0.05434411019086838, 0.020641997456550598, -0.007786400616168976, -0.02164999209344387, 0.03348298370838165, -0.03313237801194191, -0.046426232904195786, -0.013527593575417995, 0.0037434620317071676, -0.01894739642739296, 0.03210977464914322, -0.0032449422869831324, -0.01811470277607441, -0.03146699443459511, -0.00044624804286286235, 0.007618401665240526, 0.005076499655842781, -0.003191986121237278, -0.002392163500189781, -0.030765779316425323, 0.014345676638185978, 0.02062738873064518, -0.005069195292890072, 0.01199368666857481, -0.030385954305529594, -0.0037288533058017492, 0.010394041426479816, -0.004159808158874512, 0.015455932356417179, -0.0009796913946047425, 0.005456324201077223, -0.007311620283871889, 0.00758187985047698, -0.012161686085164547, -0.015339063480496407, -0.01783713884651661, 0.015470541082322598, 0.022468075156211853, 0.01650775410234928, 0.03564506024122238, 0.02603258192539215, 0.0012837335234507918, -0.018640615046024323, 0.007249533664435148, 0.014133851043879986, -0.014637849293649197, 0.00033325940603390336, -0.0036010276526212692, 0.01801244355738163, 0.016113320365548134, 0.013454549945890903, 0.015558192506432533, -0.02790248766541481, -0.004912152420729399, 0.018363051116466522, -0.002229642355814576, 0.007852139882743359, 0.014703587628901005, -0.040553562343120575, -0.019108090549707413, -0.006314581260085106, -0.0025784235913306475, -0.019268784672021866, -0.03856678679585457, -0.01376133132725954, -0.011423950083553791, 0.028516048565506935, 0.02949482761323452, 0.012198207899928093, 0.017428098246455193, -0.0008998004486784339, 0.006763796787708998, -0.01950252428650856, 0.028486832976341248, 0.009707435965538025, -0.015558192506432533, -0.008378050290048122, 0.008757874369621277, 0.00695005664601922, -0.01799783483147621, 0.003750766161829233, 0.0019685132429003716, -0.00613927748054266, -0.01662462390959263, 0.03175916522741318, -0.010255259461700916, -0.003438506741076708, 0.002908943919464946, -0.028019355610013008, -0.03722279518842697, -0.010065346956253052, -0.018699048087000847, -0.018611397594213486, 0.0278148353099823, 0.011000299826264381, -0.03310316056013107, 0.009013526141643524, 0.004276677034795284, -0.00695005664601922, -0.012592640705406666, -0.018173137679696083, 0.04414728656411171, -0.004769718274474144, 0.00909387320280075, 0.041955992579460144, 0.012680292129516602, -0.03231429308652878, -0.03491463139653206, -0.01773487962782383, 0.006475276313722134, 0.012059425935149193, 0.06310928612947464, -0.0031298992689698935, 0.006855100393295288, 0.007706053555011749, 0.012256641872227192, -0.006321885623037815, -0.02182529680430889, 0.010810387320816517, 0.023592939600348473, -0.009875435382127762, -0.014148459769785404, 0.0019685132429003716, -0.03395045921206474, 0.00755996722728014, -0.016303233802318573, -0.023841287940740585, -0.014506371691823006, -0.01744270697236061, -0.02549206279218197, 0.01802705228328705, -0.007187447044998407, 0.009583262726664543, 0.0015503410249948502, 0.010635084472596645, -0.0050728474743664265, -0.02511223778128624, -0.010474389418959618, 0.023914329707622528, 0.009911957196891308, 0.037193577736616135, -0.019166525453329086, 0.0022314684465527534, 0.016493145376443863, -0.007391967810690403, 0.019473306834697723, -0.026485448703169823, -0.01511993445456028, 0.04890970140695572, -0.015938017517328262, -0.009364132769405842, -0.0012006469769403338, 0.018640615046024323, 0.020788082852959633, -0.014287241734564304, -0.004700327292084694, -0.00473684910684824, -0.00043666112469509244, -0.012110555544495583, 0.017515748739242554, -0.02100721187889576, 0.0014015156775712967, -0.010941864922642708, -0.011350907385349274, -0.03246038034558296, -0.018888961523771286, -0.0036722449585795403, 0.012526901438832283, -0.03424263373017311, -0.018070878461003304, 0.009364132769405842, -0.011044126003980637, 0.016960620880126953, 0.01698983833193779, -0.009634392336010933, -0.010372128337621689, 0.04470241442322731, -0.037105925381183624, 0.012746031396090984, -0.008385354653000832, -0.004262068308889866, 0.01036482397466898, -0.01503228209912777, -0.007771792355924845, -0.014352981001138687, 0.033745940774679184, -0.02278946526348591, 0.003248594468459487, -0.019385654479265213, -0.011058734729886055, 0.00511302100494504, -0.03488541394472122, 0.005847104825079441, 0.009838913567364216, -0.006818579044193029, 0.02249729260802269, -0.0016434710705652833, -0.015938017517328262, -0.015806538984179497, -0.0028888569213449955, 0.008473006077110767, 0.0023830330464988947, -0.021956773474812508, -0.005204325076192617, -0.016668448224663734, -0.015046890825033188, 0.00681127468124032, -0.04026138782501221, -0.01390011329203844, -0.004141547251492739, 0.011022212915122509, -0.05177299305796623, -0.011248646304011345, -0.016376275569200516, -0.023928938433527946, -0.003549897577613592, -0.02239503338932991, 0.006183103658258915, -0.012395423837006092, -0.007450402248650789, 0.029377959668636322, -0.010854213498532772, 0.0159672349691391, -0.03725201264023781, -0.02138703688979149, -0.004656501580029726, -0.03573271259665489, -0.02276024781167507, -0.023928938433527946, 0.0048171961680054665, 0.032255858182907104, 0.023826679214835167, -0.021810688078403473, -0.030298301950097084, -0.0002535967214498669, -0.042949378490448, -0.038683656603097916, 0.010204128921031952, 0.005087456200271845, 0.04712744802236557, 0.0037544183433055878, -0.0025802496820688248, 0.012636466883122921, 0.0010143868857994676, 0.015192977152764797, -0.007801009342074394, -0.028486832976341248, -0.014265328645706177, -0.04309546574950218, 0.0006701709935441613, 0.019385654479265213, -0.025974147021770477, -0.01474010944366455, 0.0292026549577713, 0.013454549945890903, 0.004824500530958176, 0.015339063480496407, 0.016843752935528755, 0.004506763070821762, -0.003213898977264762, 0.004181720782071352, -0.004868326708674431, -0.00021011321223340929, 0.007793704979121685, -0.03871287405490875, 0.004755109548568726, -0.003531636670231819, 0.02939256653189659, -0.026923708617687225, 0.018246181309223175, 0.01092725619673729, -0.0010536476038396358, 0.007567271124571562, -0.011212125420570374, 0.0022953813895583153, -0.004499458707869053, -0.002541902009397745, 0.02585727907717228, 0.008896657265722752, 0.0001879720075521618, 0.03473932668566704, 0.018246181309223175, 0.009130395017564297, -0.016843752935528755, 0.027288924902677536, -0.045403629541397095, -0.03213898837566376, 0.0014106460148468614, -0.015090717002749443, 0.020875735208392143, 0.020788082852959633, 0.005098412744700909, -0.030911864712834358, 0.0028304224833846092, 0.015602018684148788, -0.02081730030477047, -0.02463015355169773, 0.010737344622612, 0.03932643681764603, -0.038975831121206284, -0.03503149747848511, -0.0012125164503231645, -0.004072156269103289, 0.0010490823769941926, -0.02277485653758049, 0.019093481823801994, -0.04125477746129036, 0.02445485070347786, -0.002631379757076502, -0.0017813401063904166, -0.019254175946116447, -0.008874744176864624, 0.020656606182456017, 0.03368750587105751, -0.010123781859874725, 0.28422555327415466, -0.022278163582086563, 0.004729544743895531, 0.024104243144392967, -0.01227125059813261, 0.01922496035695076, 0.016025669872760773, 0.007081534247845411, 0.016872970387339592, 0.005478236824274063, -0.004919456783682108, -0.024600936099886894, -0.03050282411277294, -0.004243807401508093, 0.02278946526348591, 0.002079904079437256, -0.03918034955859184, -0.0025272932834923267, -0.02436719834804535, -0.003716070670634508, 0.026806838810443878, -0.02166460081934929, 0.010569345206022263, -0.0050363256596028805, 0.01678531803190708, -0.011949860490858555, -0.004346068017184734, -0.013746722601354122, 0.002804857213050127, 0.026076408103108406, -0.026164060458540916, 0.023271551355719566, 0.006522754207253456, 0.005543975625187159, -0.005481889005750418, -0.0009742131223902106, 0.01988234743475914, 0.01755957491695881, 0.027318142354488373, 0.01567506231367588, 0.0027464227750897408, 0.006475276313722134, 0.01035751961171627, -0.013016290962696075, -0.010342911817133427, 0.030210651457309723, -0.00448119780048728, 0.012716813944280148, -0.009853522293269634, 0.013593331910669804, -0.030269084498286247, -0.026164060458540916, 0.017121316865086555, 0.023753635585308075, 0.0005117586115375161, 0.0031956383027136326, -0.002563814865425229, 0.01036482397466898, 0.02118251658976078, 0.030824214220046997, -0.013922026380896568, 0.03602488711476326, -0.027697965502738953, 0.01877209171652794, -0.01659540645778179, 0.018450701609253883, 0.0024268589913845062, 0.01893278770148754, -0.011526210233569145, -0.02818005159497261, 0.011767253279685974, -0.004181720782071352, -0.02072964794933796, -0.00489754369482398, -0.02248268388211727, -0.037105925381183624, 0.030561257153749466, 0.005171455908566713, 0.009919260628521442, 0.019487915560603142, -0.008889352902770042, -0.012519597075879574, 0.008706744760274887, -0.004609023220837116, -0.030736561864614487, -0.0410502552986145, 0.0069208391942083836, -0.012044817209243774, 0.003023986704647541, 0.006267102900892496, -0.005766757298260927, -0.00023990112822502851, 0.006745535880327225, -0.0030787691939622164, -0.004809892270714045, 0.01200099103152752, -0.019108090549707413, -0.001849818043410778, -0.022541118785738945, 0.00482815271243453, -0.02556510642170906, 0.007969008758664131, 0.01200099103152752, 0.0010527345584705472, 0.0005113020888529718, -0.005876322276890278, -0.019356437027454376, 0.011460471898317337, -0.0003976286971010268, -0.02099260315299034, -0.01726740226149559, -0.05083803832530975, 0.01604027859866619, 0.008443789556622505, -0.005869017913937569, 0.02483467385172844, -0.004605371039360762, -0.023563724011182785, -0.0014535589143633842, 0.0066505796276032925, 0.03546975925564766, -0.027654139325022697, -0.002227816265076399, 0.010905344039201736, 0.0017439054790884256, 0.004809892270714045, -0.001160473213531077, -0.014645153656601906, 0.013717505149543285, -0.02705518715083599, -0.002759205410256982, -0.019268784672021866, 0.025608932599425316, -0.013169681653380394, -0.00237938086502254, 0.016872970387339592, 0.0006797579117119312, 0.0023081637918949127, -0.027025969699025154, 0.0012152555864304304, 0.006617710459977388, 0.0060443212278187275, 0.008903960697352886, -0.005989538971334696, 0.012541510164737701, -0.027697965502738953, 0.008765178732573986, -0.01078847423195839, 0.026383189484477043, -0.008370745927095413, -0.03535288944840431, -0.013315767981112003, 0.017062881961464882, 0.008633701130747795, 0.011182907968759537, -0.012103251181542873, -0.017661835998296738, -0.0627586841583252, -0.01157734077423811, 0.012263946235179901, -0.0217522531747818, -0.002207729499787092, 0.01940026320517063, -0.04338763654232025, -0.02400198206305504, -0.01376133132725954, -0.18897725641727448, 0.007749879267066717, 0.05329228937625885, -0.022906335070729256, 0.02949482761323452, -0.013943939469754696, 0.008480310440063477, 0.013710200786590576, -0.003900504671037197, -0.009597871452569962, 0.031876035034656525, 0.013848982751369476, -0.012629162520170212, -0.010379432700574398, -0.009765870869159698, 0.005617018789052963, -0.024893108755350113, 0.004850065801292658, 0.029655523598194122, 0.01615714654326439, 0.03342454880475998, -0.04090416803956032, 0.010810387320816517, 0.018509136512875557, 0.02351989783346653, -0.014236112125217915, -0.0026277275756001472, -0.003168246941640973, 0.02997691184282303, -0.020305998623371124, 0.003674070816487074, 0.0011915165232494473, 0.026806838810443878, 0.01755957491695881, 0.005200672894716263, -0.013337681069970131, 0.005613366607576609, 0.007183794863522053, 0.008589875884354115, -0.003878591815009713, -0.004517719615250826, 0.05121786519885063, 0.00217120791785419, 0.006774752866476774, 0.0020232954993844032, 0.018363051116466522, 0.006475276313722134, -0.0022223382256925106, 0.003769027069211006, 0.007669531740248203, 0.0167999267578125, -0.046601537615060806, -0.017223576083779335, 0.0181877464056015, 0.04890970140695572, -0.0009723870316520333, 0.006442406680434942, -0.011095255613327026, -0.0043716332875192165, 0.027844052761793137, -0.013125855475664139, -0.018056269735097885, 0.024571718648076057, 0.007771792355924845, -0.021869121119379997, -0.02994769625365734, -0.011555427685379982, 0.013242724351584911, -0.02530215121805668, -0.004079460632055998, 0.0008998004486784339, 0.0015914278337731957, 0.01921035163104534, -0.04464397951960564, 0.01783713884651661, 0.015748105943202972, -0.008348832838237286, 0.01035751961171627, 0.02128477580845356, -0.009678218513727188, -0.019619392231106758, 0.03687218576669693, -0.010262563824653625, -0.01606949418783188, 0.009838913567364216, 0.005244499072432518, -0.00585440918803215, -0.023286160081624985, -0.011738035827875137, -0.005463628098368645, 0.03357063606381416, -0.04686449095606804, 0.010562040843069553, -0.019926173612475395, 0.01554358471184969, 0.023724418133497238, -0.0012746031861752272, 0.0017658183351159096, 0.02334459312260151, 0.0012344294227659702, 0.020861126482486725, -0.014426023699343204, -0.005423454567790031, 0.027011360973119736, 0.013586027547717094, 0.008093181997537613, 0.008290398865938187, 0.019444089382886887, 0.024849282577633858, 0.017150534316897392, -0.016274016350507736, 0.0006779318209737539, 0.02631014585494995, 0.023213116452097893, 0.031700730323791504, 0.01913730800151825, 0.007706053555011749, -0.011489689350128174, 0.02800474688410759, 0.020189128816127777, 0.012563423253595829, -0.029553262516856194, 0.0013330376241356134, 0.03284020349383354, -0.008765178732573986, -0.028253093361854553, -0.05498689040541649, -0.00966360978782177, -0.005503802094608545, 0.034125763922929764, -0.0007769966032356024, 0.020466692745685577, -0.005657192785292864, 0.016084102913737297, 0.01736966334283352, 0.02490771748125553, -0.02138703688979149, -0.05191907659173012, -0.003307029139250517, -1.703389352769591e-05, -0.0006770187756046653, 0.012125164270401001, -0.014440632425248623, -0.0023245986085385084, 0.0028322485741227865, 0.04566658288240433, -0.004857370164245367, -0.012899422086775303, 0.0043022423051297665, -0.036170974373817444, 0.0006441493751481175, -0.0074394457042217255, -0.015046890825033188, 0.038391485810279846, 0.013330376707017422, 0.017574183642864227, 0.039706259965896606, -0.010189521126449108, 0.01810009405016899, -0.004189025145024061, -0.016493145376443863, -0.020422866567969322, -0.024615544825792313, 0.011475080624222755, 0.012044817209243774, -0.025871887803077698, -0.0019210351165384054, 0.007169186137616634, -0.014805848710238934, -0.018348442390561104, -0.014316459186375141, -0.01497384812682867, -0.005620670970529318, 0.03620018810033798, -0.01050360593944788, -0.024600936099886894, -0.022351207211613655, -0.013381507247686386, 0.01236620731651783, -0.026616927236318588, 0.02679223008453846, 0.01157734077423811, 0.0049231089651584625, -0.008326919749379158, -0.04917265474796295, 0.009298394434154034, -0.017033664509654045, -0.016274016350507736, -0.019458698108792305, 0.029275698587298393, -0.019166525453329086, 0.015076108276844025, -0.025638148188591003, -0.011343603022396564, 0.01354220137000084, 0.03032751940190792, -0.004320502746850252, 0.026748405769467354, -0.01390011329203844, 0.021810688078403473, -0.03833305090665817, -0.004313198383897543, -0.028048573061823845, -0.01577732153236866, 0.03926800191402435, -0.013228116557002068, -0.009736653417348862, -0.021869121119379997, 0.009415263310074806, -0.026441624388098717, 0.0269821435213089, 0.013308463618159294, -0.006292668171226978, 0.012994377873837948, -0.0075453585013747215, -0.026733797043561935, 0.0069208391942083836, 0.023300768807530403, 0.025419019162654877, -0.02201520837843418, 0.002425032900646329, 0.01792479120194912, -0.01488619577139616, 0.006858752574771643, 0.0030915518291294575, 0.007077882066369057, -0.025652756914496422, -0.013235420919954777, -0.08028904348611832, 0.01525141205638647, 0.00427302485331893, 0.019809305667877197, 0.014944630675017834, 0.0008158007985912263, -0.011000299826264381, 0.005547627806663513, -0.011285168118774891, -0.02575501799583435, -0.026733797043561935, 0.01526602078229189, 0.00803474709391594, -0.014148459769785404, -0.013754026964306831, -0.014696283265948296, 0.022146685048937798, 0.009627087973058224, -0.002034252043813467, 0.011599253863096237, -0.00197399128228426, 0.002835900755599141, 0.002224164316430688, 0.004740500822663307, 0.0033453768119215965, 0.02183990553021431, 0.010978386737406254, 0.004386241547763348, -0.017574183642864227, -0.002218686044216156, -0.011321689933538437, -0.011796469800174236, -0.001911904662847519, 0.028136225417256355, 0.01932721957564354, -0.005788670387119055, 0.007501532323658466, 0.014579414390027523, 0.0001450591516913846, 0.0017877313075587153, -0.00206346926279366, -0.013030899688601494, 0.011664992198348045, 0.001296516042202711, -0.006117364391684532, 0.0060808430425822735, -0.018041661009192467, -0.00011047777661588043, 0.021606165915727615, 0.012117859907448292, 0.04622171074151993, 0.01297246478497982, 0.016741491854190826, -0.014951935037970543, -0.0352652370929718, -0.04490693286061287, 0.011957164853811264, 0.01744270697236061, 0.0011632123496383429, -0.03880052641034126, 0.015558192506432533, 0.026193277910351753, 0.005978582426905632, -0.008078573271632195, -0.00606988649815321, -0.010554736480116844, -0.005974930245429277, 0.011672296561300755, 0.01820235513150692, -0.023213116452097893, -0.006530058570206165, 0.001788644352927804, -0.023008596152067184, 0.006230581551790237, 0.0017256446881219745, 0.020831909030675888, -0.006661536172032356, -0.0019137307535856962, -0.021606165915727615, 0.01255611889064312, -0.025915712118148804, -0.0037178967613726854, -0.046338580548763275, 0.00923995953053236, 0.01709209941327572, -0.017208969220519066, 0.0011988208862021565, 0.029173437505960464, -0.025871887803077698, 0.007278750650584698, -0.017428098246455193, 0.01577732153236866, 0.018699048087000847, 0.010189521126449108, 0.01338881067931652, 0.0366092324256897, 0.0028432048857212067, 0.01050360593944788, 0.019005829468369484, 0.007121708244085312, -0.007337185554206371, 0.00482815271243453, 0.003606505924835801, 0.0030732909217476845, -0.0234176367521286, 0.024586327373981476, -0.0119863823056221, -0.033921241760253906, 0.003962591290473938, 0.009291090071201324, -0.013447245582938194, 0.013783244416117668, -0.0051239775493741035, 0.01587958261370659, -0.005485541187226772, 0.008436485193669796, 0.0025802496820688248, -0.0053796288557350636, -0.04508223757147789, 0.03958939388394356, 0.02455710992217064, 0.01681453548371792, 0.02416267804801464, -0.008670222945511341, 0.029757782816886902, 0.00013182008115109056, 0.002165729645639658, -0.01241733692586422, 0.02780022658407688, 0.023373810574412346, 0.010934560559689999, -0.006351102609187365, -0.001852557179518044, -0.03172994777560234, 0.013673679903149605, 0.026616927236318588, 0.005259107332676649, 0.01390011329203844, 0.010971082374453545, 0.07672453671693802, -0.00709614297375083, 0.0015229498967528343, -0.009597871452569962, -0.007990921847522259, 0.015733497217297554, 0.021065646782517433, -0.0067199706099927425, -0.017895573750138283, -0.020554345101118088, 0.006453363224864006, -0.009838913567364216, 0.005372324492782354, -0.01885974407196045, -0.0020415564067661762, 0.0006811274797655642, -0.008348832838237286, 0.04584188759326935, -0.026193277910351753, 0.008305007591843605, 0.04303703084588051, -0.009743957780301571, 0.015572801232337952, 0.020671214908361435, -0.006942752283066511, 0.0053102378733456135, -0.004451980348676443, -0.008706744760274887, -0.0159672349691391, -0.00853874534368515, 0.002593032084405422, -0.011738035827875137, -0.02499536983668804, -0.041283994913101196, -0.011066039092838764, -0.004809892270714045, -0.007081534247845411, 0.004130590707063675, 0.0065191020257771015, 0.023636765778064728, 0.006541015114635229, -0.004769718274474144, -0.032723333686590195, -0.011073342524468899, -0.005518410820513964, 0.0072020553052425385, 0.0016845578793436289, 0.00489754369482398, -0.023315375670790672], "c4e7b5cd-3352-42a8-983d-494bcf6582a1": [-0.02036140486598015, -0.00278325448743999, -0.007047887891530991, -0.03570425882935524, 0.0019726527389138937, 0.0032405168749392033, -0.018018407747149467, -0.0417507067322731, -0.011911497451364994, 0.0070289927534759045, 0.030927568674087524, 0.006654868833720684, 0.0071801538579165936, -0.0024129096418619156, -0.002010443015024066, 0.008087120950222015, 0.0053322091698646545, 0.010029541328549385, 0.025969482958316803, 0.0017572481883689761, 0.01487425621598959, 0.034948453307151794, 0.015977732837200165, -0.013899266719818115, -0.02294626086950302, 0.02807062305510044, 0.022870680317282677, -0.023822994902729988, -0.026528779417276382, -0.002866392955183983, 0.029793860390782356, 0.008344094268977642, -0.027072958648204803, -0.03434380888938904, 0.0017336292658001184, -0.01065685972571373, 0.004837156273424625, -0.03389032557606697, 0.015221926383674145, 0.007463580928742886, 0.008404559455811977, -0.008449907414615154, 0.004591519478708506, 0.009319083765149117, -0.010732440277934074, 0.013982404954731464, -0.01990792155265808, 0.02725435234606266, -0.01168475579470396, 0.004398789256811142, -0.010195818729698658, 0.04108559712767601, -0.033134520053863525, -0.01411844976246357, 0.038697250187397, 0.012364980764687061, 0.009326642379164696, 0.014163798652589321, 0.002027448732405901, -0.0155695965513587, 0.03930189460515976, 0.0032405168749392033, -0.0320763923227787, 0.002480932045727968, 0.018230032175779343, -0.01618935726583004, -0.012138239108026028, 0.008616184815764427, -0.010067331604659557, 0.012281842529773712, 0.016113776713609695, 0.037971679121255875, 0.002195615554228425, -0.029854323714971542, 0.027420630678534508, -0.002741685137152672, -0.013476015068590641, -0.04707157611846924, 0.026226457208395004, -0.004247628152370453, 0.011193482205271721, 0.0002586272603366524, -0.0022220686078071594, 0.02353578805923462, 0.005634531378746033, 0.00844234973192215, -0.013672525063157082, 0.04135768860578537, 0.011435340158641338, 0.005067677237093449, 0.005759239196777344, 0.012508584186434746, 0.004738901741802692, 0.016355635598301888, 0.008140027523040771, -0.006103130988776684, -0.033255450427532196, -0.0030912451911717653, -0.009213271550834179, -0.038394927978515625, 0.0033860094845294952, 0.02862991951406002, -0.0032631910871714354, 0.002218289766460657, -0.02226603589951992, -0.017640504986047745, 0.020527683198451996, -0.01853235438466072, -0.006571730598807335, -0.01301497407257557, -0.002053902018815279, 0.034918222576379776, -0.013264389708638191, -0.0006972307455725968, -0.0018658952321857214, 0.0036014141514897346, 0.0236718337982893, -0.019711412489414215, -0.018335845321416855, -0.013853917829692364, 0.02903805486857891, 0.03138105198740959, 0.02544041909277439, -0.019847456365823746, 0.01953001879155636, -0.002505495911464095, -0.004194721579551697, -0.01689981482923031, -0.03537170588970184, -0.017882362008094788, 0.08767345547676086, 0.006375221069902182, 0.034253112971782684, 0.026528779417276382, -0.0145946079865098, 0.02807062305510044, -0.012319632805883884, -0.012357423081994057, -0.012538815848529339, -0.019575366750359535, 0.03138105198740959, 0.02294626086950302, -0.003896178212016821, -0.005215059034526348, -0.014269610866904259, 0.01030163187533617, 0.010951624251902103, -0.00701765576377511, 0.01245567761361599, -0.008359210565686226, -0.004319429397583008, -0.00995396077632904, 0.019711412489414215, 0.015675410628318787, 0.032590340822935104, 0.0022296267561614513, -0.0048900628462433815, 0.012841138057410717, -0.011677198112010956, -0.011420223861932755, 0.011692313477396965, -0.0009740445530042052, 0.014503911137580872, -0.01980210840702057, 0.024714846163988113, 0.023883460089564323, -0.027284584939479828, -0.009349316358566284, 0.006239175796508789, -0.015388203784823418, -0.02033117227256298, 0.013491131365299225, 0.013521363958716393, 0.004311871249228716, -0.01771608553826809, 0.009281293489038944, -0.0008630356169305742, 0.0014870476443320513, 0.004576403181999922, 0.0006726670544594526, -0.0020973607897758484, 0.02114744298160076, 0.03558333218097687, 0.02131371945142746, -0.0024299153592437506, 0.013785895891487598, 0.0014350860146805644, 0.021223023533821106, -0.005479590967297554, 0.0016533249290660024, 0.0038546088617295027, -0.0028380502481013536, 0.008805136196315289, 0.0017855908954516053, -0.5079014301300049, -0.02031605690717697, 0.003440805245190859, 0.004274080973118544, 0.024306710809469223, 0.02713342383503914, 0.0064885918982326984, -0.004274080973118544, -0.020784655585885048, 0.003376561915501952, -0.03652052953839302, 0.01286381296813488, -0.004803145304322243, -0.020013734698295593, -0.01963583193719387, -0.022220686078071594, -0.00011762225767597556, -0.013151018880307674, 0.02501716837286949, 0.02102651447057724, -0.030474085360765457, 0.005041223950684071, -0.016975395381450653, -0.005823482759296894, 0.015267274342477322, -0.0032367378007620573, 0.002641540952026844, -0.012720209546387196, 0.012259168550372124, 0.011533594690263271, -0.01575099118053913, 0.01978699304163456, -0.01727771759033203, -0.006832483224570751, 0.05738076567649841, -0.02131371945142746, -0.022598590701818466, 0.015380645170807838, 0.025939250364899635, 0.03404148668050766, -0.03939259052276611, -0.02988455630838871, 0.0600714348256588, -0.0013519474305212498, 0.017489343881607056, 0.01161673292517662, 0.021782319992780685, -0.041025131940841675, 0.028720615431666374, -0.02420089766383171, 0.02946130558848381, -0.022734634578227997, 0.0032575225923210382, -0.0054644751362502575, -0.0003939637099392712, -0.006242955103516579, 0.025697393342852592, -0.030383387580513954, 0.018048640340566635, -0.018592819571495056, -0.008238282054662704, -0.01907653547823429, -0.022507892921566963, -0.004935411270707846, -0.030882220715284348, -0.0034219101071357727, -0.017625387758016586, -0.0026623255107551813, -0.005521160550415516, -0.002188057405874133, -0.009356874041259289, 0.0395437516272068, 0.006560393143445253, 0.019847456365823746, 0.008397000841796398, 0.014639955945312977, 0.02974851243197918, -0.03540193662047386, 0.01127662044018507, 0.014367866329848766, 0.008412117138504982, -0.013725430704653263, -0.021963713690638542, -0.009931286796927452, 0.004330766387283802, -0.006106909830123186, -0.03274150192737579, -0.006874052807688713, 0.012440561316907406, 0.012773116119205952, 0.03736703097820282, -0.021056747063994408, 0.003644872922450304, -0.011971961706876755, 0.01093650795519352, -0.003818708239123225, -0.002805928699672222, 0.00017466196732129902, 0.033829860389232635, -0.005910400301218033, -0.03969491273164749, 0.012652186676859856, 0.013294622302055359, 0.0006712499307468534, 0.010158028453588486, 0.012138239108026028, -0.028176436200737953, -0.008759788237512112, 0.04422974959015846, -0.014141124673187733, -0.03364846855401993, 0.021963713690638542, -0.0011441007954999804, 0.0018583372002467513, -0.017776548862457275, -0.03262057155370712, 0.0381833016872406, 0.0162044744938612, -0.02643808349967003, -0.006360104773193598, 0.025954367592930794, 0.01106499508023262, 0.0075731729157269, 0.007104573305696249, 0.021540461108088493, 0.0024941586889326572, -0.025138096883893013, 0.01209289114922285, -0.008669091388583183, -0.01189638115465641, 0.00042962830048054457, -0.0081022372469306, 0.020845120772719383, -0.022311383858323097, 0.012470793910324574, 0.006409232039004564, -0.03470659628510475, 0.00117527786642313, 0.012553932145237923, -0.025395071133971214, -0.009303967468440533, -0.019469553604722023, 0.025259025394916534, -0.023566020652651787, -0.006386558059602976, -0.009538267739117146, 0.0011516589438542724, 0.014194030314683914, -0.011654523201286793, -0.009213271550834179, -0.0015635730233043432, 0.012228935956954956, -0.014534142799675465, 0.011798126623034477, -0.0018640058115124702, 0.0003951446560677141, 0.009077225811779499, -0.0179881751537323, 0.019545134156942368, -0.008744671940803528, -0.007384221535176039, 0.020542798563838005, -0.007807472720742226, -0.017096323892474174, -0.029945021495223045, -0.03664145991206169, -0.027088075876235962, -0.033678699284791946, 0.0012678640196099877, -0.038697250187397, -0.019318392500281334, -0.0004445082158781588, 0.007123468443751335, -0.018426543101668358, 0.0032518538646399975, -0.0026698836591094732, -0.014451004564762115, -0.004791807848960161, -0.005071456078439951, 0.0028739511035382748, -0.012319632805883884, 0.004867388401180506, -0.004727564752101898, 0.002191836480051279, 0.020996281877160072, -0.005094130057841539, 0.011208598501980305, 0.024397406727075577, 0.027163656428456306, 0.019605599343776703, -0.011843474581837654, 0.025909019634127617, -0.005063897930085659, 0.021253256127238274, 0.01397484727203846, -0.006231617648154497, 0.012818464078009129, 0.0013717872789129615, -0.012395213358104229, 0.003922631498426199, 0.02335439622402191, -0.0005063898279331625, -0.002155935624614358, -0.027284584939479828, 0.02090558595955372, -0.043534405529499054, -0.02019512839615345, -0.017942827194929123, 0.0035541763063520193, 0.019681179895997047, -0.012213819660246372, -0.033678699284791946, -0.01839631050825119, -0.011435340158641338, 0.01689981482923031, 0.017459111288189888, -0.022916028276085854, -0.002339218510314822, 0.013952173292636871, -0.005037444643676281, 0.012221378274261951, 0.00822316575795412, 0.01949978619813919, -0.008669091388583183, -0.000807767326477915, -0.015856802463531494, 0.021479997783899307, -0.016778886318206787, -0.003930189646780491, 0.0010751335648819804, -0.010467908345162868, -0.02046721801161766, -0.01349868904799223, -0.015599829144775867, 0.036308903247117996, -0.013808569870889187, 0.02448810450732708, -0.007452243939042091, 0.002643430372700095, 0.022054409608244896, 0.01992303691804409, 0.02214510552585125, -0.03848562389612198, -0.02574274130165577, 0.028161318972706795, 0.015735873952507973, 0.04504602029919624, 0.013339970260858536, 0.001512556103989482, 0.01134464330971241, -0.011571384966373444, -0.006632194854319096, -0.0076638697646558285, 0.02448810450732708, -0.0014407546259462833, -0.009152806363999844, 0.01410333439707756, 0.044501837342977524, 0.004398789256811142, 0.013869034126400948, 0.019605599343776703, 0.03373916447162628, -0.03014153055846691, 0.013256832025945187, 0.03316475450992584, 0.010868486016988754, -0.010490583255887032, -0.015871919691562653, 0.005396452732384205, -0.028584571555256844, -0.007490034215152264, 0.007002539467066526, 0.011427781544625759, -0.016249822452664375, 0.015395761467516422, -0.044622767716646194, 0.03370893374085426, 0.0246090330183506, 0.023686949163675308, -0.011027204804122448, -0.00701765576377511, -0.049732014536857605, 0.02931014448404312, 0.03126012161374092, -0.008170259185135365, -0.01856258697807789, 0.012886486947536469, -0.005831040907651186, -0.027858996763825417, 0.014602165669202805, 0.021646274253726006, 0.008510371670126915, -0.005101688206195831, 0.022069524973630905, -0.028750848025083542, 0.014987627044320107, -0.003637314774096012, -0.01273532584309578, -0.03612751141190529, 0.006749344523996115, 0.03370893374085426, 0.01880444586277008, -0.0035768502857536077, 0.0022296267561614513, 0.04692041501402855, -0.0066057415679097176, -0.015841687098145485, 0.004425242077559233, -0.035099614411592484, -0.01689981482923031, -0.02019512839615345, -0.02128348872065544, -0.021086977794766426, -0.024427639320492744, -0.02353578805923462, 4.280930443201214e-05, -0.008797578513622284, -0.01016558613628149, 0.03945305570960045, -0.01948467083275318, -0.004625530913472176, 0.007357768248766661, -0.03476706147193909, 0.016234705224633217, -0.04970178008079529, 0.05961795151233673, -0.005131920799612999, -0.01674865372478962, -0.01827538199722767, 0.016688188537955284, -0.02200906164944172, -0.03301359340548515, 0.01176789402961731, -0.0173079501837492, 3.0852224881527945e-05, -0.02847875840961933, 0.016567260026931763, -0.02200906164944172, 0.02353578805923462, 0.008540604263544083, 0.00501099182292819, -0.01717190444469452, 0.013914383016526699, -0.0320763923227787, -0.02117767557501793, 0.0010883602080866694, 0.009560941718518734, 0.028115971013903618, -0.015373087488114834, -0.023959040641784668, -0.01605331338942051, 0.0300357174128294, 0.018214916810393333, -0.013770779594779015, -0.005676100496202707, -0.01072488259524107, -0.005702553782612085, 0.042415816336870193, -0.03222755342721939, 0.015478900633752346, 0.0285089910030365, 0.003788475878536701, 0.00010699374251998961, 0.02501716837286949, 0.004814482294023037, 0.047101810574531555, 0.016280055046081543, 0.004504601936787367, 0.016400983557105064, 0.022054409608244896, 0.00809467863291502, -0.0064885918982326984, 0.014730652794241905, -0.009961518459022045, 0.005358662456274033, -0.008608627133071423, -0.04277860000729561, -0.010815579444169998, 0.006027550436556339, 0.04329254850745201, -0.05450870469212532, -0.011760336346924305, -0.011057437397539616, 0.005007212515920401, 0.0007487200200557709, -0.014156240038573742, 0.019454438239336014, -0.036308903247117996, 0.0018054308602586389, -0.030232226476073265, -0.0021105874329805374, -0.028720615431666374, -0.01826026476919651, -0.05599008500576019, 0.02878108061850071, -0.021359069272875786, -0.03249964490532875, -0.0025357280392199755, -0.00664353184401989, 0.018471891060471535, -0.003773359814658761, 0.005441800691187382, -0.007183933164924383, 0.00667376397177577, -0.01307543832808733, -0.02810085564851761, -0.0006117302109487355, 0.01140510756522417, 0.02560669556260109, 0.000685421284288168, 0.0228253323584795, -0.01480623334646225, 0.030262459069490433, 0.017761433497071266, 0.02144976519048214, 0.01661260798573494, 0.016234705224633217, 0.02448810450732708, -0.0031781629659235477, -0.010082447901368141, -0.001177167403511703, 0.024548567831516266, -0.01978699304163456, -0.016521912068128586, 0.009175481274724007, -0.04132745414972305, 0.018925374373793602, 0.007403116673231125, -0.011987078003585339, 0.019257929176092148, 0.032590340822935104, -0.01410333439707756, 0.015221926383674145, -0.016642840579152107, 0.030942684039473534, -0.0012527479557320476, 0.01425449550151825, -0.007807472720742226, 0.01287892833352089, 0.017534691840410233, -0.01646144688129425, -0.016945162788033485, -0.01907653547823429, 0.004066234454512596, 0.03585541993379593, -0.035341475158929825, 0.00829118862748146, 0.023006724193692207, -0.001169609255157411, 0.02602994814515114, -0.03138105198740959, -0.025259025394916534, -0.00021989221568219364, 0.026664825156331062, -0.013649850152432919, -0.011866149492561817, -0.009938844479620457, -0.026468314230442047, -0.030957801267504692, -0.017806781455874443, -7.539604666817468e-06, 0.011034762486815453, -0.0021427092142403126, -0.0032820862252265215, -0.009220829233527184, -0.0329228937625885, -0.004527275916188955, 0.001893293228931725, -0.011639407835900784, -0.026800869032740593, -0.004338324535638094, 0.007025213912129402, -0.005925516597926617, 0.019817225635051727, 0.006473475601524115, -0.008170259185135365, -0.0240950845181942, -0.011367317289113998, 0.0197718758136034, -0.02890200912952423, -0.012380097061395645, 0.009976634755730629, 0.01659749262034893, 0.01301497407257557, 0.02793457731604576, 0.010619069449603558, -5.019022137275897e-05, 0.005608078092336655, -0.00026831100694835186, 0.013173692859709263, -0.011586501263082027, 0.009530710056424141, -0.017398646101355553, 0.00968187116086483, 0.004587740637362003, 0.010823137126863003, -0.0028399399016052485, -0.014813791029155254, -0.00027445194427855313, 0.053873829543590546, -0.023611368611454964, 0.0062883030623197556, 0.030670594424009323, -0.060131900012493134, -0.0037015583366155624, -0.013672525063157082, -0.003333103144541383, -0.01161673292517662, -0.0407228097319603, -0.004432800225913525, 0.011185924522578716, 0.01480623334646225, 0.021328836679458618, 0.030186878517270088, -0.0045386129058897495, -0.024578800424933434, 0.012070217169821262, 0.006484812591224909, -0.004825819283723831, -0.003777138888835907, -0.0354624018073082, -0.003949084784835577, -0.00760718435049057, 0.031199658289551735, -0.012433003634214401, 0.022250918671488762, -0.00546825397759676, 0.0034275788348168135, 0.005600519943982363, -0.008041772060096264, -0.024155549705028534, -0.009870822541415691, -0.003015664638951421, 0.0038451612927019596, -0.021933481097221375, -0.016416098922491074, -0.04096466675400734, -0.015599829144775867, 0.0128562543541193, 0.030670594424009323, -0.009802799671888351, 0.008056888356804848, 0.0009712103055790067, -0.0038772830739617348, -0.024019503965973854, -0.023142769932746887, 0.038697250187397, -0.01522948406636715, 0.026513664051890373, 0.02669505588710308, 0.013105670921504498, -0.012501025572419167, -0.06076677516102791, -0.004984538536518812, -0.018154451623558998, 0.017897479236125946, 0.03446473926305771, 0.03002060204744339, -0.02726946957409382, 0.016627725213766098, 0.022190455347299576, -0.02962758205831051, -0.021071862429380417, 0.02794969454407692, -0.0044479165226221085, 0.02489623986184597, -0.0254555344581604, 0.014269610866904259, -0.040027469396591187, 0.013801011256873608, -0.004058676306158304, -0.012402771040797234, -0.0045726243406534195, -0.01591726765036583, -0.01251614186912775, 0.0239288080483675, -0.024956703186035156, 0.031169425696134567, 0.012977183796465397, -0.011745220050215721, -0.006806029938161373, -0.015388203784823418, -0.015191693790256977, 0.002569739241153002, 0.01202486827969551, 0.029929904267191887, -0.0028172656893730164, -0.008397000841796398, 0.014534142799675465, -0.02022535912692547, 0.009417339228093624, 0.0017232369864359498, -0.03316475450992584, 0.04873435199260712, -0.023036956787109375, 0.0029740952886641026, -0.019424205645918846, 0.012070217169821262, 0.02654389478266239, 0.013219041749835014, -0.0026906682178378105, 0.02849387377500534, -0.02476019412279129, 0.0076563116163015366, 0.0023713402915745974, -0.010634185746312141, -0.011526037007570267, -0.009069668129086494, 0.00698742363601923, -0.010770230554044247, -0.034283347427845, 0.011382433585822582, 0.010838253423571587, -0.021948596462607384, 0.0003642038500402123, -0.020240476354956627, -0.029793860390782356, 0.026770636439323425, 0.02104162983596325, -0.036036815494298935, -0.01605331338942051, 0.055143583565950394, -0.019182348623871803, 0.015614945441484451, 0.008578394539654255, -0.01424693688750267, -0.008805136196315289, 0.009772567078471184, 0.007973750121891499, 0.001234797528013587, 0.0495506189763546, -0.02018001116812229, 0.012493467889726162, -0.0009206657996401191, 0.01865328475832939, 0.023082304745912552, -0.01189638115465641, 0.0077545661479234695, 0.020935816690325737, -0.003191389376297593, 0.003818708239123225, -0.011306853033602238, 0.005834819748997688, 0.014042869210243225, -0.016219589859247208, 0.02075442485511303, -0.010112679563462734, -0.01717190444469452, 0.011828359216451645, -0.022039294242858887, -0.01686958223581314, 0.04042048752307892, -0.002579186810180545, -0.016552144661545753, 0.027450861409306526, 0.003618419636040926, -0.02090558595955372, 0.01541843544691801, -0.0311391931027174, -0.005925516597926617, -0.022341616451740265, -0.031743839383125305, 0.019303277134895325, -0.01880444586277008, -0.017897479236125946, 0.027919461950659752, -0.02128348872065544, 0.01044523436576128, -0.03083687089383602, -0.03803214058279991, 0.004939190112054348, -0.01425449550151825, -0.023203235119581223, -0.027012495324015617, -0.032711271196603775, 0.023082304745912552, 0.025138096883893013, -0.04976224526762962, -0.031895000487565994, -0.035885654389858246, -0.03745773062109947, 0.0045461710542440414, -0.004054897464811802, 0.022220686078071594, 0.03098803199827671, -0.014776000753045082, -0.0175649244338274, 0.03110896237194538, -0.023747414350509644, -0.0009216105681844056, -0.0009173591388389468, -0.012833580374717712, -0.010369653813540936, -0.0014360308414325118, 0.002650988521054387, -0.0008044606656767428, -0.02820666879415512, -0.0035730714444071054, 0.02228115126490593, 0.0002912213676609099, 0.0019726527389138937, 0.01141266617923975, -0.006254292093217373, -0.01113301794975996, -0.0013774558901786804, -0.014707978814840317, -0.007100794464349747, 0.002322213025763631, 0.016521912068128586, -0.02185790054500103, 0.0071537005715072155, 0.014677746221423149, 0.023838110268115997, -0.03346707671880722, 0.005366220138967037, 0.009772567078471184, 0.0038376033771783113, -0.0040322234854102135, 0.00926617719233036, -0.002904183231294155, -0.007316199131309986, -0.006968528497964144, 0.048069242388010025, 0.0025300595443695784, 0.006756902672350407, 0.018471891060471535, 0.021479997783899307, -0.011926613748073578, -0.015237042680382729, 0.013090554624795914, -0.025425303727388382, 0.000832803372759372, 0.008336536586284637, -0.015116113238036633, 0.009455129504203796, -0.019983502104878426, 0.01758003979921341, -0.011042321100831032, -0.0021408195607364178, -0.0021408195607364178, -0.01410333439707756, -0.03803214058279991, -0.0016032528365030885, 0.04495532065629959, -0.03407172113656998, -0.02616599202156067, 0.0035617342218756676, -0.013400434516370296, -0.0007529713911935687, -0.01578122191131115, 0.011737662367522717, -0.04026932641863823, -0.0029759849421679974, -0.028403177857398987, 0.003646762343123555, -0.014624839648604393, -0.005551392678171396, 0.003331213491037488, 0.009810357354581356, -0.005706333089619875, 0.27837833762168884, 0.006938296370208263, -0.004795587155967951, 0.010271399281919003, -0.008956297300755978, -0.009107458405196667, 0.030897336080670357, -0.0009145248914137483, 0.009606290608644485, 0.011851033195853233, 0.009606290608644485, -0.003903736360371113, -0.024578800424933434, -0.0040322234854102135, -0.005687437951564789, -0.01424693688750267, -0.050306424498558044, -0.026664825156331062, -0.008790019899606705, -0.015675410628318787, 0.024563685059547424, -0.00705166719853878, 0.00577813433483243, 0.005358662456274033, 0.021389300003647804, -0.014156240038573742, -0.004799365997314453, 0.005925516597926617, 0.025213677436113358, 0.0035711817909032106, -0.03993677347898483, -0.0063638836145401, 0.0061371419578790665, -0.0007359657902270555, -0.03213685750961304, -0.0116242915391922, 0.026619475334882736, 0.026362502947449684, 0.029355492442846298, 0.009137690998613834, -0.01575099118053913, -0.007845262996852398, -0.0017704748315736651, -0.00893362332135439, -0.01797305978834629, 0.0023788984399288893, -0.01826026476919651, -0.012682419270277023, -0.01190393976867199, -0.0006731394096277654, -0.021782319992780685, -0.016144009307026863, 0.03295312821865082, -0.007259513717144728, -0.0028210447635501623, 0.0041833845898509026, 0.019847456365823746, -0.002650988521054387, 0.01522948406636715, 0.017202137038111687, -0.027224119752645493, 0.030504317954182625, -0.03210662677884102, 0.024004388600587845, -0.020588146522641182, -0.010241166688501835, -0.0173079501837492, 0.002029338153079152, -0.004353440832346678, -0.0247753094881773, -0.014209146611392498, 0.0018422763096168637, 0.0024034620728343725, 0.0037015583366155624, -0.037578657269477844, -0.03525077551603317, 0.015841687098145485, 0.011117901653051376, -0.011949287727475166, 0.04054141789674759, 0.012508584186434746, 0.01700562797486782, 0.012417887337505817, -0.007837705314159393, 0.0033784513361752033, 0.0010335642145946622, 0.02335439622402191, -0.002866392955183983, 0.01341555081307888, 0.020421870052814484, 0.0019745423924177885, -0.004141815006732941, -0.0155695965513587, 0.025788089260458946, -0.00010250614286633208, 0.02838806062936783, 0.0247753094881773, 0.025153212249279022, -0.006208943668752909, 0.005687437951564789, -0.03476706147193909, 0.019998617470264435, 0.012841138057410717, -0.00017501624824944884, -0.001022227224893868, -0.0086539750918746, -0.01202486827969551, 0.0004518300702329725, 0.007059224881231785, -0.038546089082956314, -0.005702553782612085, -0.04069257900118828, 0.019031187519431114, -0.0001419497566530481, 0.002643430372700095, -0.008321420289576054, -0.013528921641409397, -0.010377212427556515, -0.020391637459397316, -0.010271399281919003, 0.01631028577685356, -0.026105528697371483, 0.0037147849798202515, 0.023218350484967232, -0.012916718609631062, -0.015025417320430279, -0.025002051144838333, -0.00124424509704113, 0.01910676807165146, -0.046406470239162445, 0.005324651021510363, -0.011201039887964725, 0.05865051969885826, -0.016491679474711418, -0.012644628994166851, -0.005660984665155411, -0.014435888268053532, 0.002137040486559272, -0.008978971280157566, -0.016718421131372452, 0.009137690998613834, -0.012674861587584019, 0.0006306253490038216, -0.02019512839615345, -0.0006811698549427092, -0.009115016087889671, -0.004115361720323563, 0.01294695120304823, 0.025909019634127617, -0.030942684039473534, -0.0395437516272068, -0.017519576475024223, 0.0031422621104866266, 0.021207908168435097, -0.010739998891949654, -0.012871370650827885, -0.008850484155118465, -0.0368228517472744, 0.017323065549135208, 0.02575785666704178, 0.0005550447967834771, -0.031774070113897324, 0.0023751193657517433, 0.0028229341842234135, -0.024412523955106735, -0.014299843460321426, -0.19578389823436737, 0.0006674709147773683, 0.06076677516102791, -0.056352872401475906, 0.012138239108026028, -0.013989963568747044, 0.022190455347299576, -0.008827810175716877, 0.002892846241593361, -0.011503362096846104, 0.0337693989276886, 0.007739450316876173, -0.03249964490532875, -0.010256282985210419, 0.0018281049560755491, -0.02143464982509613, -0.00954582542181015, 0.021812552586197853, 0.026483431458473206, 0.015259716659784317, 0.023324163630604744, -0.005524939391762018, 0.0002850804594345391, 0.04274836927652359, 0.01880444586277008, 0.019152116030454636, -0.008555720560252666, -0.027465978637337685, 0.040329791605472565, -0.007747007999569178, -0.013294622302055359, -0.0009031877852976322, 0.01072488259524107, -0.010074889287352562, -0.009583615697920322, -0.009235945530235767, 0.0030005485750734806, 0.003342550713568926, -0.018078871071338654, 0.004746459890156984, -0.0177312009036541, 0.011155691929161549, 0.019681179895997047, -0.0008753174333833158, -0.011594058945775032, -0.007493813522160053, 0.002484711119905114, -0.0010883602080866694, 0.015826571732759476, -0.011571384966373444, -0.004190942272543907, -0.01099697221070528, 0.028886893764138222, -0.01155626866966486, 0.05218082293868065, 0.030882220715284348, 0.012334749102592468, 0.023414859548211098, 0.019439322873950005, -0.02268928661942482, 0.0063298726454377174, -0.02684621699154377, 0.02212999016046524, -0.015070765279233456, -0.025954367592930794, 0.0186684001237154, -0.014534142799675465, 0.016113776713609695, -0.03896934166550636, 0.009046994149684906, 0.018290497362613678, -0.01869863271713257, 0.028569454327225685, -0.003805481595918536, 0.023188117891550064, 0.012818464078009129, -0.0027227899990975857, -0.021525345742702484, 0.015289949253201485, -0.004523497074842453, -0.03942282497882843, 0.04398788884282112, -0.02740551345050335, -0.015116113238036633, 0.041297223418951035, 0.00695341220125556, 0.007353989407420158, -0.0010439566103741527, -0.030806640163064003, 0.018607934936881065, 0.017761433497071266, -0.032560110092163086, 0.0225683581084013, -0.014798675663769245, -0.004334545694291592, 0.0193486250936985, -0.008737113326787949, -0.02063349448144436, -0.0012546373764052987, -0.016673073172569275, -0.008465023711323738, -0.004663321189582348, -0.02766248770058155, 0.03896934166550636, 0.005453138146549463, 0.015584712848067284, 0.0046708788722753525, 0.006280745379626751, 0.05438777804374695, 0.01963583193719387, -0.024533452466130257, -0.019877688959240913, 0.018623052164912224, -0.006416790187358856, -0.024835774675011635, 0.015811454504728317, -0.029128750786185265, -0.008366769179701805, 0.017217254266142845, 0.027571791782975197, 0.011435340158641338, -0.028705500066280365, 0.021374184638261795, 0.034797292202711105, -0.011389991268515587, -0.006280745379626751, -0.017459111288189888, -0.0145946079865098, 0.0070289927534759045, 0.016128893941640854, -0.005732785910367966, 0.026921797543764114, -0.006620857864618301, 0.023838110268115997, -0.027072958648204803, 0.0304589681327343, 0.00010374614066677168, -0.016113776713609695, -0.02114744298160076, 0.004617972765117884, 0.0240950845181942, 0.02726946957409382, -0.029295027256011963, -0.020996281877160072, 0.009833032265305519, 0.0356437973678112, -0.02671017311513424, -0.004512160085141659, -0.017262602224946022, -0.025803206488490105, 0.007610963191837072, -0.0027945914771407843, -0.02019512839615345, -0.010294073261320591, 0.0007954854518175125, -0.008260956034064293, 0.03697401285171509, 0.0025527337566018105, 0.0032424062956124544, -0.010180702432990074, -0.026513664051890373, 0.011843474581837654, -0.00809467863291502, 0.008956297300755978, 0.010127795860171318, -0.02294626086950302, 0.008389443159103394, 0.008631301112473011, -0.00020843703532591462, -0.005358662456274033, -0.00969698652625084, -0.041569311171770096, -0.026377618312835693, 0.0032518538646399975, 0.013385318219661713, -0.02657412737607956, -0.02326369844377041, 0.0021105874329805374, 0.0008757898467592895, -0.012750442139804363, 0.015796339139342308, 0.010566163808107376, -0.0035239439457654953, 0.003457810962572694, -0.027768300846219063, 0.03234848380088806, -0.005653426516801119, 0.004217395558953285, -0.01176789402961731, -0.007928401231765747, 0.005241512320935726, 0.0038451612927019596, -0.02725435234606266, -0.04045071825385094, 0.014889371581375599, 0.02671017311513424, -0.0031517096795141697, 0.02146488055586815, -0.002615087665617466, 0.03652052953839302, -0.03969491273164749, -0.0032915337942540646, -0.0038697251584380865, 0.0061976066790521145, 0.024306710809469223, -0.016007963567972183, -0.008759788237512112, -0.01963583193719387, -0.004345882683992386, -0.023475324735045433, 0.032983358949422836, -0.0031252563931047916, -0.0074975923635065556, -0.002754911780357361, 0.001592860440723598, -0.009515593759715557, 0.007973750121891499, 0.019424205645918846, 0.004871167708188295, -0.03473683074116707, -0.006703996565192938, 0.015093439258635044, 0.012720209546387196, -0.012327190488576889, 0.0182451494038105, 0.040208861231803894, -0.02101139724254608, -0.035492636263370514, -0.084166519343853, 0.03706470876932144, 0.008767345920205116, 0.008593510836362839, -0.003066681558266282, -0.0008824031101539731, 0.013385318219661713, 0.006840041372925043, -0.0067380075342953205, -0.028735732659697533, -0.023188117891550064, -0.015244600363075733, 0.001606087083928287, -0.02228115126490593, -0.0022409637458622456, -0.02642296627163887, 0.010241166688501835, 0.004716227296739817, 0.024306710809469223, 0.022779982537031174, 0.036853086203336716, -0.00837432686239481, 0.007236839272081852, 0.003070460632443428, -0.02212999016046524, 0.012637071311473846, -0.011246388778090477, 0.021555578336119652, -0.007425790652632713, 0.01783701404929161, -0.00954582542181015, -0.03195546567440033, -0.010467908345162868, 0.05614124611020088, -0.0018602267373353243, -0.02119279094040394, 0.018214916810393333, 0.013438224792480469, 0.029567118734121323, -0.02229626663029194, -0.03806237503886223, -0.035220544785261154, 0.004678437020629644, 0.011163249611854553, 0.0038810621481388807, -0.01661260798573494, -0.004927853122353554, -0.0060048759914934635, -0.0050487820990383625, 0.00892606470733881, 0.00302889128215611, -0.01251614186912775, -0.002796481130644679, -0.012463235296308994, -0.017232369631528854, -0.03183453530073166, -0.0010590726742520928, 0.015690525993704796, 0.004712448455393314, -0.012501025572419167, 0.016839349642395973, 0.013869034126400948, 0.016506796702742577, -0.004557508043944836, -0.0009825474116951227, 0.011677198112010956, -0.04797854274511337, -0.00667754327878356, 0.019439322873950005, -0.022749751806259155, -0.0038508300203830004, 0.00982547365128994, -0.0045990776270627975, 0.026317153126001358, 0.007403116673231125, 0.011820800602436066, -0.013808569870889187, -0.01480623334646225, -0.02544041909277439, 0.013710315339267254, 0.015350413508713245, -0.02491135522723198, -0.029672931879758835, 0.018063755705952644, 0.04525764286518097, -0.014919604174792767, -0.013460898771882057, 0.010755115188658237, -0.0022863121703267097, 0.01661260798573494, 0.0008824031101539731, 0.01674865372478962, 0.0011167029151692986, -0.01445856224745512, 0.008283630013465881, 0.008495256304740906, -0.01251614186912775, -0.003516386030241847, 0.02710319124162197, 0.009780125692486763, 0.022356731817126274, 0.00961384829133749, 0.008245839737355709, -0.0038772830739617348, -0.014707978814840317, 0.01634051837027073, -0.02034628950059414, -0.029521770775318146, -0.017338182777166367, -0.02575785666704178, -0.00968187116086483, 0.02726946957409382, -0.029536886140704155, 0.017232369631528854, -0.013748105615377426, -0.008963854983448982, 0.015599829144775867, -0.0009249172289855778, -0.029385725036263466, 0.015947500243782997, 0.021631158888339996, 0.022341616451740265, 0.004217395558953285, -0.009659196250140667, 0.02365671843290329, 0.015962615609169006, 0.01410333439707756, -0.011971961706876755, 0.029158983379602432, 0.0031271460466086864, -0.0023807878606021404, 0.032015927135944366, -0.024714846163988113, -0.008517930284142494, 0.0036070826463401318, -0.00989349652081728, 0.016537027433514595, 0.026483431458473206, 0.012289400212466717, 0.11300806701183319, -0.00905455183237791, -0.007422011811286211, -0.0017326845554634929, -0.005823482759296894, 0.021631158888339996, 0.03295312821865082, 0.0117527786642313, -0.03219732269644737, -0.03912050276994705, -0.008177817799150944, -0.0007194325444288552, 0.007108352612704039, -0.02352067269384861, 0.004187163431197405, -0.006840041372925043, -0.04147861525416374, 0.03304382413625717, -0.0031687153968960047, -0.015463784337043762, 0.04425998032093048, -0.02129860408604145, 0.0289322417229414, -0.004194721579551697, 0.013211483135819435, 0.010218492709100246, 0.02506251633167267, -0.018366077914834023, -0.0019896584562957287, 0.01593238301575184, -0.0032896441407501698, 0.020013734698295593, 0.001238576602190733, -0.02823689952492714, -0.010142912156879902, -0.022326499223709106, -0.020784655585885048, 0.019182348623871803, 0.04465299844741821, 0.022795099765062332, -0.01072488259524107, 0.012138239108026028, -0.02988455630838871, -0.036308903247117996, -0.014760885387659073, 0.011488246731460094, 0.0066132997162640095, -0.013392876833677292, -0.03135082125663757], "a3a7149a-804f-4666-8986-1cd855092f7d": [-0.030877279117703438, -0.014412329532206059, -0.019895758479833603, -0.006146865896880627, -0.008291121572256088, 0.012924179434776306, -0.048060644418001175, -0.010585658252239227, -0.011780575849115849, 0.006363124120980501, 0.003201721701771021, 0.012770232744514942, -0.0046623810194432735, 0.012374370358884335, -0.000369059358490631, -0.012198431417346, 0.002617091406136751, 0.018810801208019257, 0.02191905677318573, -0.010109156370162964, 0.016963442787528038, 0.003394154831767082, 0.007272141519933939, -0.014837514609098434, -0.015145407989621162, 0.030466753989458084, 0.04345691204071045, -0.0029964596033096313, 0.0018565220525488257, 0.013943159021437168, 0.047591473907232285, 0.01781381480395794, -0.018121708184480667, -0.040993764996528625, -0.03404418006539345, -0.014331690035760403, 0.037445664405822754, 0.008679652586579323, 0.024470170959830284, -0.002948809415102005, 0.008943561464548111, 0.011787907220423222, 0.0017932939808815718, 0.016758181154727936, -0.03501184284687042, 0.008958223275840282, -0.008313113823533058, 0.014771537855267525, -0.01084956619888544, 0.014808191917836666, -0.004284845665097237, 0.030261492356657982, -0.03647800162434578, 0.003619576571509242, 0.013393349945545197, -0.02795962430536747, 0.03175697475671768, 0.016626227647066116, -0.020907407626509666, -0.020306281745433807, 0.059320736676454544, -0.015937132760882378, -0.009361416101455688, 0.005952599924057722, 0.023047996684908867, -0.01725667528808117, -0.029821645468473434, -0.00751405768096447, -0.009126830846071243, -0.009112169034779072, 0.014207066968083382, 0.02936713583767414, -0.007763304281979799, -0.024499492719769478, 0.03515845909714699, -0.002976299962028861, 0.002738049253821373, 0.007741312030702829, -0.016934121027588844, 0.021347254514694214, 0.01734464429318905, -0.012257077731192112, -0.008752960711717606, 0.009456716477870941, 0.017608553171157837, -0.009324762038886547, -0.005560402758419514, 0.0274024847894907, 0.027886318042874336, -0.0102777648717165, -0.003696549916639924, 0.01449296809732914, -0.017403289675712585, -0.004130898974835873, -0.005501756444573402, 0.028971273452043533, -0.036155447363853455, 0.010211787186563015, -0.007521388586610556, -0.03175697475671768, 0.016464950516819954, 0.042489245533943176, -0.017095398157835007, -0.008364428766071796, -0.011883207596838474, -0.025100618600845337, -0.007902589626610279, -0.031610358506441116, 0.0027472127694636583, -0.025789711624383926, -0.028062256053090096, 0.04254789277911186, -0.025848358869552612, 0.0023073654156178236, -0.01091554295271635, -0.00015715377230662853, 0.04688771814107895, -0.002677570329979062, -0.009082846343517303, -0.01734464429318905, 0.020995376631617546, 0.005465102382004261, 0.015042777173221111, -0.04017271846532822, 0.02963104471564293, 0.019763804972171783, -0.0032640332356095314, -0.023942353203892708, -0.027563761919736862, -0.02813556417822838, 0.06398312002420425, -0.011414037086069584, 0.010116487741470337, 0.013576619327068329, 0.010219118557870388, 0.00013138147187419236, -0.019045386463403702, 0.00450476910918951, -0.014463644474744797, -0.023267921060323715, 0.015262700617313385, 0.02713857777416706, 0.005091232247650623, 0.013921166770160198, 0.013693911954760551, 0.038589268922805786, -0.00841574463993311, -0.004702700302004814, -0.011128135956823826, -0.009002207778394222, 0.0026299201417714357, 0.01694878190755844, -0.008129843510687351, 0.006876279134303331, 0.003592086024582386, 0.015409315936267376, 0.01323207188397646, -0.012660270556807518, 0.00839375238865614, -0.019470572471618652, 0.009713293984532356, 0.02307732030749321, 0.016538256779313087, -0.027944963425397873, 0.02149387076497078, 0.028824659064412117, -0.006564720533788204, -0.009038861840963364, -0.005622714292258024, -0.013913835398852825, -0.012315724045038223, 1.6207914086407982e-05, 0.023517167195677757, 0.016332995146512985, -0.023385213688015938, -0.004314168822020292, -0.009390739724040031, 0.0024503159802407026, 0.009596001356840134, 0.02816488780081272, 0.002607927890494466, 0.0018821797566488385, 0.01897207833826542, 0.03580356761813164, 0.007755973841995001, -0.05061176046729088, -0.014331690035760403, 0.006289815995842218, 0.017872460186481476, -0.014544283039867878, 0.010585658252239227, 0.04976138845086098, 0.01888410933315754, -0.006187185179442167, -0.511864960193634, -0.016582243144512177, 0.009456716477870941, 0.010988851077854633, 0.02898593619465828, 0.02876601181924343, 0.002902992069721222, 0.01888410933315754, -0.03920505568385124, 0.013620603829622269, -0.019235987216234207, 0.018077723681926727, -0.0057693300768733025, -0.013063464313745499, -0.016640888527035713, -0.008129843510687351, 0.02051154524087906, -0.01815103180706501, 0.01224241591989994, 0.020966053009033203, -0.006674682255834341, 0.007297799456864595, -0.015306685119867325, -0.002140589989721775, 0.009075515903532505, -0.01275557093322277, -0.023150628432631493, 0.010043179616332054, 0.008159167133271694, 0.03090660274028778, -0.008034543134272099, 0.02666940726339817, -0.02688932977616787, -0.008239805698394775, 0.06838159263134003, -0.02573106624186039, -0.03817874193191528, 0.01944124884903431, -0.005039916839450598, 0.02118597738444805, -0.008181159384548664, -0.017183367162942886, 0.011069489642977715, -0.0094200624153018, 0.0018876779358834028, 0.006685678381472826, -0.007902589626610279, -0.040055423974990845, 0.0061798542737960815, -0.022490857169032097, 0.0003021659213118255, -0.011164790019392967, 0.0020269628148525953, -0.0024228254333138466, -0.006227504462003708, 0.006293481681495905, 0.027900978922843933, -0.02175777778029442, 0.006769982632249594, -0.021977702155709267, -0.023385213688015938, -0.0038999791722744703, -0.008782284334301949, -0.02735850028693676, 0.0038779869209975004, 0.01087155845016241, -0.01263094786554575, -0.0016631725011393428, -0.003373995190486312, -0.04635990411043167, -0.03562762960791588, 0.01746193692088127, -0.037650927901268005, -0.010908212512731552, 0.00012943422188982368, 0.03433741256594658, 0.06996504217386246, -0.03463064134120941, 0.010952197015285492, 0.007033891044557095, 0.010153140872716904, -0.008401082828640938, -0.013554627075791359, -0.013268725946545601, 0.020746130496263504, -0.020101020112633705, -0.022534841671586037, 0.015277362428605556, 0.0010483026271685958, -0.019279971718788147, 0.03729904815554619, 0.022886719554662704, 0.03128780424594879, -0.03269531577825546, 0.005278167314827442, 0.004343491978943348, -0.010607650503516197, 0.030672017484903336, 0.02534986473619938, -0.010981520637869835, -0.0757710263133049, 0.01837095431983471, 0.01862020045518875, -0.010563665069639683, 0.017872460186481476, -0.008642998524010181, -0.03249005228281021, -0.00517920171841979, 0.039146408438682556, -0.0009722457616589963, -0.0066233668476343155, -0.016157057136297226, -0.030965248122811317, 0.018722832202911377, 0.010307087562978268, -0.03882385417819023, 0.040260687470436096, -0.0003202637890353799, -0.007217160891741514, -0.019675834104418755, 0.009918556548655033, -0.0005905866273678839, 0.026903992518782616, 0.016508935019373894, 0.019206663593649864, 0.019016064703464508, 0.034484025090932846, 0.004020937252789736, -0.023194612935185432, 0.026390837505459785, -0.021655147895216942, -0.005545740947127342, 0.01618637889623642, -0.013327372260391712, 0.0014643248869106174, 0.012572301551699638, 0.01307812612503767, 0.012946171686053276, 0.015218716114759445, -0.015365331433713436, -0.016245026141405106, -0.02401566132903099, 0.0020013051107525826, 0.027813009917736053, -0.008481721393764019, -0.011355390772223473, 0.0013506977120414376, -0.007704657968133688, -0.05278167501091957, 0.0023531829938292503, -0.008980215527117252, -0.012125123292207718, -0.012865533120930195, 0.013583949767053127, -0.024206262081861496, -0.012095799669623375, -0.002351350151002407, -0.020232975482940674, 0.015951793640851974, -0.011399375274777412, -0.0008100520935840905, 0.011714599095284939, -0.009515362791717052, -0.004068587440997362, -0.016069086268544197, -0.011560652405023575, -0.021640485152602196, -0.025833696126937866, 0.003450968535616994, -0.034484025090932846, -0.018693508580327034, -0.0009713293984532356, 0.007429753430187702, 0.010050510056316853, -0.004578077234327793, -0.006964248605072498, 0.008745630271732807, 0.016919458284974098, -0.00018235335301142186, 0.005805984139442444, -0.008796945214271545, -0.010021187365055084, 0.0014120930572971702, -0.005849968641996384, 0.010570996440947056, -0.016963442787528038, 0.03589153662323952, 0.03486522659659386, -0.001823533559218049, 0.03545169159770012, -0.011560652405023575, 0.005593391135334969, -0.00013882679922971874, -0.001690662931650877, 0.02419159933924675, 0.01995440386235714, 0.00655005918815732, 0.008320444263517857, -0.029953598976135254, 0.037181757390499115, 0.02015966735780239, 0.004618396516889334, 0.02350250631570816, -0.038589268922805786, 0.030730662867426872, -0.038120098412036896, 0.008445067331194878, -0.011494675651192665, -0.013796542771160603, 0.003366664284840226, -0.007624019403010607, -0.02863405831158161, -0.0045487540774047375, 0.008642998524010181, 0.0359795056283474, 0.01455894485116005, -0.019675834104418755, -0.004995931871235371, 0.005718014668673277, 0.011890538036823273, -0.0024943004827946424, -0.0023311905097216368, 0.0028351822402328253, 0.0009236792684532702, -0.00935408566147089, -0.033076513558626175, 0.015805179253220558, -0.019514556974172592, -0.004508434794843197, -0.02491001784801483, -0.0021699131466448307, -0.001159180887043476, -0.0194852352142334, -0.010211787186563015, 0.020071696490049362, -0.04395540431141853, 0.03304719179868698, -0.005989253520965576, -0.0016668379539623857, 0.004823658615350723, 0.02111266925930977, 0.022534841671586037, -0.030466753989458084, -0.0074114263989031315, 0.03659529238939285, 0.023649122565984726, 0.01845892332494259, 0.008239805698394775, -0.01734464429318905, 0.03175697475671768, -0.018488246947526932, -0.016714196652173996, -0.031111864373087883, 0.04184413701295853, 0.006539063062518835, -0.009896563366055489, -0.000104578270111233, 0.0020397917833179235, -0.00032461644150316715, 0.012506323866546154, 0.030554724857211113, 0.04920424893498421, -0.0423719547688961, 0.008305782452225685, 0.02042357437312603, -0.02252018079161644, 0.012887525372207165, -0.05586060509085655, 0.023326566442847252, 0.000780270725954324, -0.016157057136297226, -0.031698327511548996, 0.0329592227935791, -0.014141090214252472, -0.013261395506560802, -0.0207607913762331, 0.01982245035469532, 0.009639985859394073, 0.029645705595612526, -0.022065671160817146, -0.01832696981728077, -0.044893745332956314, 0.04524562135338783, 0.025496480986475945, 0.01462492160499096, -0.020614175125956535, -0.009999195113778114, -0.0073234569281339645, -0.01939726434648037, 0.042108047753572464, 0.02813556417822838, -0.002849843818694353, 0.005204859655350447, 0.030642693862318993, -0.029894953593611717, -0.027167899534106255, 0.032812606543302536, 0.008621006272733212, 0.005296494346112013, 0.012359708547592163, 0.015160069800913334, 0.011897868476808071, -0.0048273238353431225, -0.01699276641011238, 0.03674190863966942, -0.0007202498964034021, 0.013151433318853378, 0.011091481894254684, -0.010959528386592865, -0.02243221178650856, 0.0021002707071602345, -0.035217106342315674, -0.0030422769486904144, -0.03386824205517769, -0.0376802496612072, 0.008019882254302502, -0.008261797949671745, -0.0014533287612721324, 0.018356293439865112, 0.0030312808230519295, -0.03891182318329811, -0.011597306467592716, -0.019323956221342087, -0.010680957697331905, -0.03451335057616234, 0.02757842466235161, -0.01507209986448288, -0.013737896457314491, -0.03545169159770012, 0.0007280388963408768, 0.0024759736843407154, -0.008232475258409977, 0.0224761962890625, -0.045538853853940964, -0.005252509377896786, -0.010197126306593418, 0.0359501838684082, -0.02281341142952442, 0.015687886625528336, -0.011611968278884888, -0.028927288949489594, -0.015189392492175102, 0.020863423123955727, -0.024118293076753616, 0.008357098326086998, -0.005890287924557924, 0.01913335733115673, 0.007682665716856718, -0.020658159628510475, -0.018400277942419052, 0.0010675459634512663, 0.029103228822350502, 0.015863824635744095, 0.027285192161798477, -0.006062561646103859, 0.001029975712299347, -0.017271336168050766, 0.038501299917697906, -0.014654245227575302, -0.0044717807322740555, 0.030261492356657982, 0.03108254075050354, -0.012498993426561356, 0.00854036770761013, 0.012191100046038628, 0.017491260543465614, 0.015218716114759445, -0.018869448453187943, 0.013261395506560802, 0.004046594724059105, -0.01738862879574299, 0.0036892190109938383, -0.01995440386235714, -0.0398208387196064, 0.014610260725021362, -0.003866990562528372, -0.01460292935371399, -0.005025255028158426, 0.0060478998348116875, 0.012191100046038628, -0.06040569394826889, -0.02127394638955593, 0.02773970179259777, 0.015101423487067223, -0.01601044088602066, -0.003187060123309493, -0.012337716296315193, -0.011619298718869686, -0.0036488997284322977, -0.047884706407785416, -0.008269128389656544, -0.00374603271484375, -0.056095190346241, -0.0069789099507033825, 0.0017648872453719378, -0.030114876106381416, -0.04119902849197388, -0.01810704544186592, 0.0006423603044822812, 0.010145810432732105, 0.0424012765288353, 0.0017209025099873543, -0.008012550882995129, 0.029997583478689194, 0.0008632002864032984, -0.0441020205616951, -0.009192808531224728, -0.008166497573256493, 0.007807289250195026, 0.007385768927633762, 0.0359501838684082, -0.000755529326852411, 0.0034418050199747086, 0.015101423487067223, 0.02435287833213806, 0.021845748648047447, 0.028370149433612823, 0.012081138789653778, -0.0006368621834553778, -0.009412731975317001, -0.04858846217393875, 0.01643562689423561, -0.030408108606934547, -0.0029323152266442776, 0.007466407492756844, -0.035598307847976685, 0.001194918411783874, -0.020555529743433, -0.029484428465366364, 0.010717611759901047, -0.0031467408407479525, 0.007646011654287577, 0.013217411004006863, 0.00837176013737917, 0.006652690004557371, 0.0004206039593555033, -0.0038853175938129425, -0.009896563366055489, -0.007770635187625885, 0.0032567025627940893, -0.012616286054253578, 0.015248038806021214, -0.014903492294251919, 0.032812606543302536, 0.025628434494137764, -0.011267420835793018, 0.018942756578326225, 0.005765664856880903, -0.0063338009640574455, 0.030847955495119095, -0.022314919158816338, -0.037181757390499115, 0.003359333612024784, 0.026170913130044937, -0.032138172537088394, 0.019294634461402893, 0.014654245227575302, -0.046653132885694504, -0.039117082953453064, 0.006542728282511234, 0.01730065979063511, -0.00702289491891861, -0.0218310859054327, -0.014830184169113636, -0.029909614473581314, 0.0031888927333056927, 0.020951392129063606, -0.03524642810225487, -0.006780978757888079, -0.03202088177204132, -0.0007830198155716062, 0.021435223519802094, -0.0063704545609653, 7.410968100884929e-05, 0.004042929504066706, -0.005600722040981054, -0.040993764996528625, -0.011040166951715946, 0.013686581514775753, -0.019104033708572388, -0.005772995296865702, 0.020878084003925323, 0.002190072787925601, 0.02325326018035412, 0.03612612187862396, 0.02410363033413887, -0.0019023395143449306, -0.011919861659407616, 0.009024200029671192, -0.004669711925089359, -0.0005905866273678839, 0.009024200029671192, -0.019807789474725723, -0.0030037902761250734, 0.01908937096595764, 0.018297646194696426, 0.004138229880481958, -0.023150628432631493, -0.01507209986448288, 0.03788551315665245, -0.005974592175334692, 0.021098008379340172, -0.010387726128101349, -0.04175616800785065, -0.02927916683256626, -0.012542977929115295, -0.012689594179391861, -0.00851837545633316, -0.030965248122811317, -0.008782284334301949, 0.013913835398852825, 0.017154043540358543, 0.008085859008133411, 0.01079091988503933, 0.006337466184049845, -0.009412731975317001, 0.009200138971209526, 0.0006794724031351507, 0.023194612935185432, -0.007030225824564695, -0.02196304127573967, -0.009068184532225132, 0.015775855630636215, 0.028370149433612823, -0.026346851140260696, 0.013935827650129795, 0.001982978079468012, 0.029381798580288887, -0.030554724857211113, 0.03152238950133324, -0.009808594360947609, -0.012836209498345852, -0.006920263636857271, -0.04375014081597328, -0.019793126732110977, -0.026478806510567665, -0.014265713281929493, -0.011172120459377766, 0.01044637244194746, 0.003511447459459305, -0.016464950516819954, 0.00491162808611989, 0.014441652223467827, -0.01233038492500782, 0.0004984935512766242, -0.0049702743999660015, 0.022842735052108765, 0.00753604993224144, 0.018898772075772285, 0.032900575548410416, 0.015145407989621162, 0.003707546042278409, -0.03691784664988518, -0.016538256779313087, -0.008628337644040585, 0.02405964583158493, 0.0071328566409647465, -0.008423075079917908, 0.00686161732301116, 0.0007830198155716062, -0.006465754937380552, -0.01665554940700531, -0.0077852969989180565, 0.025628434494137764, 0.010387726128101349, 0.015467962250113487, -0.023619798943400383, -0.0063447970896959305, -0.02435287833213806, -0.03580356761813164, -0.027681054547429085, -0.029044581577181816, 0.012169107794761658, -0.024968663230538368, -0.02285739593207836, 0.018546894192695618, 0.0032347100786864758, 0.030290815979242325, -0.0030551059171557426, 0.03325245529413223, 0.005992919206619263, -0.02230025641620159, 0.0032383755315095186, 0.016728857532143593, 0.02713857777416706, 0.028370149433612823, 0.0029433113522827625, 0.009383408352732658, 0.03369230031967163, -0.01023378036916256, 0.015937132760882378, -0.017608553171157837, -0.026478806510567665, 0.048148613423109055, -0.010805581696331501, -0.011509337462484837, 0.0021314267069101334, 0.018444262444972992, 0.009999195113778114, -0.0024118293076753616, -0.008357098326086998, 0.01417041290551424, -0.025833696126937866, -0.0032108852174133062, 0.03888249769806862, -0.031610358506441116, -0.01862020045518875, -0.021845748648047447, -0.015775855630636215, -0.007459076587110758, -0.015057438053190708, 0.007887927815318108, 0.012198431417346, 0.0013873516581952572, -0.0031009232625365257, -0.019323956221342087, -0.005347809754312038, 0.0179897528141737, 0.03143442049622536, -0.0005782159278169274, -0.015746532008051872, 0.04521629959344864, -0.03034946136176586, 0.006975244730710983, -0.035129137337207794, -0.02033560536801815, 0.0041748839430511, -0.012271738611161709, 0.004651384893804789, 0.01763787493109703, 0.022373564541339874, -0.02345852181315422, 0.028062256053090096, -0.0207607913762331, -0.033369746059179306, 0.01596645638346672, -0.037445664405822754, 0.01230839267373085, -0.011047497391700745, 0.005333148408681154, 0.031023895367980003, -0.015482624061405659, -0.010468365624547005, -0.0031320792622864246, 0.018136369064450264, 0.01995440386235714, -0.01571721024811268, -0.012623616494238377, 0.009720624424517155, -0.014177744276821613, -0.018136369064450264, 0.02256416529417038, -0.048823047429323196, -0.004336161073297262, -0.0023641791194677353, 0.012645608745515347, -0.027754362672567368, -0.00017731342813931406, -0.04627193510532379, -0.017315320670604706, -0.009097508154809475, -0.029894953593611717, 0.002948809415102005, -0.026434822008013725, 0.0035261090379208326, 0.0500839427113533, -0.01772584579885006, 0.012147115543484688, -0.03292990103363991, -0.027461132034659386, -0.0016008608508855104, -0.018473586067557335, -0.012975494377315044, -0.03524642810225487, 0.011084151454269886, 0.04847117140889168, 0.014251051470637321, -0.03070133924484253, -0.03319380804896355, -0.01031441893428564, -0.03806145116686821, 0.0030184518545866013, 0.016127733513712883, 0.02341453731060028, 0.04140429198741913, -0.00935408566147089, -0.01716870628297329, 0.01025577262043953, -0.016596904024481773, 0.016362318769097328, -0.002615258563309908, -0.009969871491193771, -0.009874571114778519, -0.015248038806021214, -0.006297146901488304, 0.030730662867426872, -0.033809594810009, -0.015160069800913334, 0.035862214863300323, 0.02178710140287876, 0.0008210482774302363, 0.007975896820425987, 0.019587865099310875, 0.006964248605072498, -0.017051413655281067, -0.005124220624566078, 0.007316126488149166, 0.0010134814074262977, 0.0021515863481909037, -0.039967454969882965, -0.0010373065015301108, 0.0005378965870477259, 0.027549101039767265, -0.020262297242879868, -0.0011500173714011908, 0.030173523351550102, -0.0048823049291968346, 0.0035059493966400623, 0.008664991706609726, 0.00013321416918188334, 0.005168205592781305, -0.008796945214271545, 0.03378026932477951, 0.0008031794568523765, -0.0002730718406382948, 0.009837917052209377, 0.014375675469636917, 0.02423558570444584, -0.018224338069558144, 0.002435654401779175, -0.02539384923875332, -0.018077723681926727, 0.004519430920481682, -0.035598307847976685, 0.008511045016348362, 0.017154043540358543, 0.017784491181373596, -0.03721107915043831, 0.0004620687395799905, 0.012726248241961002, -0.024308891966938972, -0.03034946136176586, 0.01500612311065197, 0.016596904024481773, 0.00396962184458971, -0.03539304435253143, 0.0005328566767275333, -0.014251051470637321, 0.007077875547111034, -0.03378026932477951, 0.014361013658344746, -0.017095398157835007, 0.01592247188091278, 0.006564720533788204, -0.018385617062449455, -0.035041164606809616, 0.018444262444972992, 0.01406778208911419, -0.004024602472782135, -0.012924179434776306, 0.2392769157886505, -0.0048823049291968346, -0.002032460877671838, 0.012924179434776306, -0.014309697784483433, 0.02646414376795292, 0.006337466184049845, 0.004534092266112566, 0.016846150159835815, -0.011677945032715797, 0.0023806733079254627, -0.015262700617313385, -0.014984130859375, 0.008012550882995129, -0.015350669622421265, -0.0003218674100935459, -0.018810801208019257, -0.02722654677927494, -0.014207066968083382, 0.006627032533288002, 0.006758986506611109, -0.036624617874622345, 0.005043582059442997, 0.0024997987784445286, 0.020364928990602493, -0.0135912811383605, -0.003940298687666655, -0.013034140691161156, 0.0019279972184449434, 0.009119500406086445, -0.01271891687065363, 0.01596645638346672, 0.007305130362510681, 0.002453981200233102, -0.009713293984532356, -0.007851273752748966, 0.022637473419308662, 0.041550904512405396, 0.016157057136297226, 0.015731871128082275, 0.0064217704348266125, -0.006319139152765274, 0.023869045078754425, -0.025569789111614227, -0.02769571729004383, 0.03574492037296295, -0.0063338009640574455, 0.0127335786819458, 4.4299722503637895e-05, -0.00793924368917942, -0.0293231513351202, -0.02325326018035412, 0.033457715064287186, 0.029293827712535858, -0.011150128208100796, -0.005245178937911987, 0.00837176013737917, -0.008283790200948715, 0.04119902849197388, 0.017271336168050766, -0.03674190863966942, 0.035862214863300323, -0.027549101039767265, 0.04357420280575752, -0.019514556974172592, 0.002168080536648631, -0.01421439740806818, 0.020966053009033203, -0.0013552794698625803, -0.009537355042994022, 0.009588670916855335, 0.011956514790654182, 0.0034766262397170067, -0.02303333580493927, -0.019587865099310875, -0.03460131958127022, 0.04700501263141632, -0.008115182630717754, 0.008921569213271141, 0.0006487747305072844, 0.001630184007808566, -0.0011921693803742528, -0.01790178380906582, 0.010123818181455135, -0.02178710140287876, -0.03524642810225487, 0.010431711561977863, -0.008217813447117805, 0.010651635006070137, 0.01367925014346838, -0.005989253520965576, 0.015599916689097881, 0.011414037086069584, 0.023473182693123817, -0.004431461449712515, 0.014859506860375404, 0.0045377579517662525, 0.014324359595775604, -0.03480657935142517, 0.003965956158936024, -0.024264907464385033, -0.028032932430505753, 0.013195418752729893, 0.03486522659659386, -0.01639164239168167, -0.010343741625547409, -0.011362721212208271, -0.0035902534145861864, 0.018429601565003395, -0.023399874567985535, -0.012205761857330799, -0.03990880772471428, 0.007360110990703106, 0.00731246080249548, 0.0013855189317837358, 0.017828475683927536, 0.0032676986884325743, -0.020306281745433807, -0.02773970179259777, 0.009068184532225132, 0.02401566132903099, -0.0026097605004906654, -0.0007770635420456529, 0.010109156370162964, -0.005937938112765551, -0.01935327984392643, -0.004435126669704914, -0.0002842971298377961, 0.018253661692142487, -0.040260687470436096, 0.018297646194696426, -0.02834082581102848, 0.0006506074569188058, 0.0019389934604987502, 0.014229059219360352, 0.01759389042854309, -0.0009969871025532484, 0.008459729142487049, -0.002232224913313985, -0.012924179434776306, 0.0023733426351100206, 0.01785779930651188, 0.004874974023550749, 0.008188489824533463, 0.0014606595505028963, -0.019235987216234207, -0.0008741964702494442, -0.013400680385529995, 0.009552016854286194, -0.005245178937911987, -0.04070053622126579, -0.015306685119867325, 0.020496882498264313, -0.014155751094222069, -0.006308143027126789, -0.003581089898943901, -0.028590073809027672, -0.04782605916261673, -0.021391239017248154, 0.030965248122811317, -0.024968663230538368, -0.012564970180392265, -0.007997890003025532, -0.018209677189588547, -0.0254818182438612, -0.009258785285055637, -0.18672983348369598, 0.011853883974254131, 0.04213736951351166, -0.04803132265806198, 0.02949909120798111, -0.01913335733115673, 0.019279971718788147, -0.00020904200209770352, 0.0024099964648485184, -0.01500612311065197, 0.027475792914628983, 0.007081541232764721, 0.0002506213204469532, -0.013386018574237823, -0.011604636907577515, -0.012748240493237972, -0.014485636726021767, 0.01879614032804966, 0.03668326139450073, 0.0035481012891978025, 0.036624617874622345, -0.03814942017197609, 0.004940951243042946, 0.03533439710736275, 0.0006826796452514827, -0.01892809383571148, -0.01939726434648037, -0.01935327984392643, 0.02238822728395462, -0.020834099501371384, 0.015467962250113487, -0.014031128026545048, 0.01743261329829693, 0.011560652405023575, 0.020922068506479263, -0.02345852181315422, 0.018502909690141678, 0.002083776518702507, -0.008774952962994576, -0.018253661692142487, -0.02577505074441433, 0.03917573019862175, 0.032900575548410416, 0.0009951544925570488, -0.02517392672598362, 0.029176536947488785, 0.0032731967512518167, 0.0035444360692054033, 0.004086914472281933, -0.011641290970146656, -0.00037203749525360763, -0.021816425025463104, -0.00020938563102390617, 0.0067113363184034824, 0.04867643117904663, 0.008686983957886696, 0.01694878190755844, -0.001173842465505004, 0.014918153174221516, -0.00037272475310601294, -0.0033410065807402134, -0.024382200092077255, 0.004064921755343676, 0.01960252784192562, -0.03592086210846901, -0.0027435473166406155, -0.0065353973768651485, 0.03342839330434799, -0.04125767573714256, -0.004973939619958401, 0.012594293802976608, -0.009508032351732254, 0.014038458466529846, -0.02166980877518654, 0.014390336349606514, 0.0063814506866037846, 0.00013195417704991996, 0.0113480594009161, 0.02127394638955593, -0.00954468548297882, -0.029806984588503838, 0.04589073359966278, 0.008459729142487049, -0.036067478358745575, 0.025496480986475945, 0.004123568069189787, -0.006282485090196133, -0.006945921573787928, -0.02760774828493595, -0.007675334811210632, 0.025936327874660492, -0.026566775515675545, 0.017520582303404808, -0.034484025090932846, 0.0054907603189349174, 0.02392769232392311, -0.018297646194696426, -0.008694314397871494, 0.007799958344548941, -0.012198431417346, 0.013393349945545197, 0.009222131222486496, -0.01708073541522026, 0.020394252613186836, 0.019323956221342087, 0.01913335733115673, -0.00982325617223978, 0.00037089205579832196, 0.04228398576378822, 0.005802318453788757, -0.0033373411279171705, 0.00039563345490023494, 0.027856994420289993, 0.027681054547429085, 0.02624422125518322, 0.020320944488048553, 0.019192002713680267, -0.01743261329829693, 0.020188989117741585, 0.00659404369071126, 0.013752558268606663, -0.034102827310562134, 9.289482841268182e-05, 0.053925275802612305, -0.0015761194517835975, 0.010101825930178165, -0.04096444323658943, -0.011853883974254131, -0.009625324979424477, 0.026860006153583527, -0.020262297242879868, 0.004852981772273779, -0.0045377579517662525, 0.02457280084490776, 0.010556334629654884, 0.002593266312032938, 0.012279069982469082, -0.043046385049819946, -0.029894953593611717, 0.012447677552700043, 0.008247136138379574, -0.010417049750685692, -0.015658563002943993, 0.004999597556889057, 0.021083345636725426, 0.037826865911483765, 0.0003644776006694883, -0.026728052645921707, 0.01683148927986622, -0.03612612187862396, 0.0068542868830263615, -0.020907407626509666, -0.021655147895216942, 0.036331385374069214, 0.004020937252789736, 0.0040502604097127914, 0.03413214907050133, -0.01999839022755623, 0.010035848245024681, 0.008958223275840282, -0.009214800782501698, 0.0025969315320253372, -0.016978105530142784, 0.006238500587642193, 0.012051815167069435, -0.008774952962994576, 0.0019518223125487566, 0.006810301914811134, -0.00030033322400413454, -0.00560805294662714, -0.014383005909621716, -0.019661173224449158, -0.008217813447117805, 0.028282180428504944, 0.004497438203543425, -0.01453695259988308, -0.01269692461937666, -0.01091554295271635, 0.014280375093221664, -0.02958706021308899, 0.029865629971027374, -0.002723387675359845, 0.002979965414851904, 0.00899487640708685, -0.023619798943400383, -0.00014581395953428, -0.007114529609680176, 0.004354488104581833, -0.038090772926807404, 0.007459076587110758, -0.006784644443541765, 0.02791563980281353, -0.025892343372106552, -0.01643562689423561, 0.01960252784192562, 0.0030441097915172577, -0.000836626160889864, 0.01084956619888544, -0.016332995146512985, 0.019367942586541176, -0.05659368261694908, -0.008789614774286747, -0.008804276585578918, -0.015658563002943993, 0.03935166820883751, -0.024822048842906952, -0.005461437162011862, 0.01699276641011238, 0.00905352272093296, -0.025540465489029884, 0.04040730372071266, 0.002351350151002407, -0.023297244682908058, 0.01083490438759327, 0.0005204859189689159, -0.01815103180706501, -0.001518389442935586, 0.004024602472782135, 0.023385213688015938, -0.03137577325105667, -0.01772584579885006, 0.013554627075791359, 0.002204734366387129, 0.0009493370307609439, 0.0006047899951227009, 0.006850621197372675, -0.024778062477707863, -0.03527574986219406, -0.08849727362394333, 0.020394252613186836, -0.007327122613787651, 0.015189392492175102, 0.011516667902469635, -0.02851676568388939, 0.002193738240748644, -0.0036818883381783962, -0.012909517623484135, -0.0419614315032959, -0.023575814440846443, 0.011318736709654331, 0.0023843387607485056, -0.02350250631570816, -0.004805331584066153, -0.009016869589686394, 0.030085554346442223, 0.003940298687666655, -0.0008407497662119567, 0.014317029155790806, 0.0013305379543453455, 0.003423477988690138, 0.014749545603990555, -0.023062659427523613, 0.007777966093271971, 0.012345046736299992, 0.00515720946714282, 0.010570996440947056, 0.0014844845281913877, -0.0160544253885746, 0.0049776048399508, -0.0007614856003783643, 0.0019481568597257137, 0.060992155224084854, 0.018077723681926727, -0.0036525651812553406, -0.0026024298276752234, 0.0034271434415131807, 0.014258382841944695, -0.017711183056235313, -0.0135912811383605, -0.01930929534137249, 0.02907390519976616, 0.0014038458466529846, -0.007975896820425987, -0.0007051301654428244, -0.018312308937311172, -0.008884915150702, 0.023179952055215836, 0.025833696126937866, 0.004468115046620369, 0.017696522176265717, 0.001711738994345069, -0.011018174700438976, -0.035862214863300323, -0.02517392672598362, 0.03779754415154457, 0.005556737072765827, -0.021171316504478455, -0.022872058674693108, 0.008606345392763615, 0.02062883786857128, 0.0063557932153344154, -0.00271239154972136, -0.006667351815849543, 0.0034876223653554916, -0.022065671160817146, 0.014324359595775604, 0.015819840133190155, -0.017329983413219452, -0.0002698646276257932, 0.009588670916855335, -0.02200702577829361, -0.026053620502352715, 0.008203151635825634, 0.012858201749622822, 0.004849316086620092, -0.01032174937427044, -0.024118293076753616, 0.01716870628297329, 0.0021497535053640604, -0.015189392492175102, -0.037357695400714874, 0.0025071294512599707, 0.03430808708071709, -0.02093673124909401, -0.02521791122853756, 0.02971901372075081, -0.026478806510567665, -0.0017016591737046838, -0.023267921060323715, 0.008584353141486645, 0.006198181305080652, 0.020174328237771988, 0.031053217127919197, 0.033809594810009, -0.013444664888083935, 0.015687886625528336, 0.028106240555644035, 0.02098071575164795, 0.0038046790286898613, 0.0036745574325323105, 0.021479208022356033, -0.010578326880931854, -0.014932814985513687, -0.0008247136720456183, 0.0026189240161329508, -0.018869448453187943, 0.006975244730710983, 0.008679652586579323, -0.010050510056316853, 0.020540867000818253, -0.012352378107607365, 0.012337716296315193, -0.007646011654287577, 0.031317126005887985, -0.003243873594328761, 0.012066476978361607, -0.04984935745596886, 0.03331109881401062, 0.025833696126937866, 0.008723638020455837, 0.015145407989621162, -0.02474874071776867, 0.024338215589523315, 0.0004086914414074272, 0.016362318769097328, -0.013935827650129795, 0.015218716114759445, -0.0025602777022868395, 0.017667198553681374, -0.001683332142420113, -0.012411024421453476, -0.028839319944381714, 0.004812662489712238, 0.009060854092240334, 0.01218376960605383, -0.014866838231682777, 0.010541672818362713, 0.07524320483207703, -0.011230766773223877, 0.006337466184049845, -0.006872613914310932, 0.0005608052597381175, 0.02642015926539898, 0.04287044703960419, 0.0051938630640506744, 0.013012148439884186, -0.01750592142343521, 0.005586060229688883, -0.013796542771160603, -0.00448644207790494, -0.035510335117578506, 0.007151183672249317, 0.018136369064450264, -0.020863423123955727, 0.03967422619462013, -0.05594857409596443, 0.005578729789704084, 0.025159263983368874, 0.010952197015285492, 0.030378784984350204, 0.013063464313745499, -0.01977846585214138, 0.016083749011158943, 0.017784491181373596, -0.0003376744280103594, -0.018766816705465317, 0.007220826111733913, -0.0021424228325486183, -0.017095398157835007, -0.011113474145531654, -0.03052540123462677, 0.006245831493288279, 0.006022242363542318, 0.003416147083044052, 0.01571721024811268, 0.015292023308575153, 0.0076973275281488895, -0.008686983957886696, 0.03240208327770233, -0.03184494376182556, -0.02158183977007866, 0.014566275291144848, -0.0006318222731351852, 0.016890134662389755, 0.029645705595612526, -0.035598307847976685], "78af704b-28bf-400e-ab15-0860f9ff21f0": [-0.02028557099401951, -0.010271992534399033, -0.03597709909081459, 0.02986127883195877, -0.00814006943255663, 0.04097311943769455, -0.022668730467557907, -0.036005809903144836, 0.005904063116759062, -0.01639499142765999, 0.013617030344903469, 0.017270730808377266, 0.017041027545928955, -0.01264797430485487, 0.0018717135535553098, -0.014564551413059235, -0.007917545735836029, 0.009044522419571877, 0.02496575191617012, -0.0210751723498106, -0.007296632509678602, 0.036005809903144836, 0.0015253658639267087, -0.04947210103273392, 0.0023185559548437595, -0.004540206398814917, 0.03514442965388298, -0.014657868072390556, -7.144544360926375e-05, -0.005968666635453701, 0.04904140904545784, -0.0037003580946475267, -0.008089822717010975, -0.015131629072129726, -0.021003389731049538, -0.030234545469284058, -0.003951594699174166, 0.004310504533350468, -0.005437480751425028, -0.03451274707913399, 0.00822620838880539, -0.004188475199043751, -0.0035944797564297915, -0.008434375748038292, -0.024506347253918648, 0.015691528096795082, 0.01478707604110241, 0.007124355528503656, -0.004181297030299902, 0.01639499142765999, -0.01064525917172432, 0.009231154806911945, -0.028569204732775688, 9.135370783042163e-05, 0.012518767267465591, -0.00241905078291893, 0.01974002830684185, -0.0022324176970869303, -0.044734492897987366, -0.03692461922764778, 0.008520513772964478, 0.01856280490756035, -0.030320683494210243, 0.00010178452066611499, 0.03270384296774864, -0.024664267897605896, -0.0012732318136841059, -0.009503926150500774, -0.015088560059666634, 0.0037506052758544683, 0.011614315211772919, 0.008025218732655048, -0.004924239590764046, 0.022927146404981613, 0.02986127883195877, -0.0045509738847613335, 0.0043069152161479, -0.006833638995885849, 0.008032397367060184, 0.023386549204587936, 0.029545439407229424, -0.01048016082495451, -0.004138227552175522, 0.00848462339490652, 0.01567717082798481, 0.01306430995464325, 0.006826460827142, 0.025224167853593826, -0.009719272144138813, -0.009051700122654438, -0.011406146921217442, 0.019165772944688797, 0.01220292691141367, 0.0015047285705804825, 0.002923318650573492, 0.005502084270119667, -0.025985054671764374, 0.034771163016557693, -0.006298863794654608, -0.012396737933158875, 0.0022826651111245155, 0.008886601775884628, -0.008585117757320404, 0.0006222595111466944, -0.023113777860999107, -0.047289930284023285, 0.007946258410811424, -0.02879890613257885, 0.00920244213193655, -0.02251080982387066, -0.02763604000210762, 0.008068287745118141, -0.005860993638634682, -0.014392275363206863, -0.03187117353081703, -0.0041166930459439754, 0.025870203971862793, 0.008664078079164028, -0.02229546383023262, -0.0055630989372730255, 0.013437575660645962, 0.018376171588897705, 0.03795827925205231, 0.0017066152067855, 0.013215051963925362, -0.02190784178674221, -0.004917061422020197, 0.004583275876939297, -0.011047237552702427, -0.012432628311216831, 0.05044833570718765, -0.0011763261863961816, 0.02997612953186035, 0.0020727028604596853, -0.010946743190288544, 0.020701905712485313, -0.008635365404188633, -0.00114312709774822, -0.007996506057679653, -0.0006769932224415243, 0.021362299099564552, 0.014873214066028595, -3.077369456150336e-06, -0.0022629250306636095, 0.021103885024785995, 0.015504894778132439, -0.0008102384163066745, 0.01248287595808506, 0.012604905292391777, 0.0032571046613156796, -0.0017021287931129336, -0.04714636504650116, 0.009826945140957832, 0.0011224898044019938, 0.011750700883567333, 0.023601895198225975, -0.011284117586910725, 0.019424187019467354, -0.027607327327132225, -0.03192859888076782, 0.002350857947021723, 0.03198602423071861, -0.004723250400274992, -0.02763604000210762, 0.006751089822500944, 0.03669491782784462, -0.014988064765930176, -0.012863320298492908, -0.002654136624187231, -0.010293527506291866, -0.032330576330423355, 0.020816756412386894, -0.014342027716338634, 0.0338236428797245, 0.005354931112378836, 0.014629155397415161, -0.010451448149979115, -0.00758734904229641, 0.010975455865263939, 0.01862023025751114, -0.014521482400596142, -0.009984864853322506, 0.018605874851346016, 0.02841128408908844, 0.005660004448145628, -0.027305843308568, 0.009518282487988472, 0.012748469598591328, 0.009582886472344398, 0.0049314177595078945, 0.011025703512132168, 0.01718459278345108, -0.00892249308526516, 0.018476666882634163, -0.5448535084724426, -0.02951672673225403, -0.003111746395006776, 0.017773203551769257, 0.009747984819114208, 0.024980109184980392, 0.0012032444356009364, 0.03930778056383133, -0.017988549545407295, 0.03126820549368858, -0.0006868632626719773, 0.013624208979308605, -0.019826166331768036, 0.0032696665730327368, -0.004992432426661253, -0.020271213725209236, 0.022381603717803955, -0.021276161074638367, 0.03212958946824074, 0.04151866212487221, -0.020716262981295586, 0.026731587946414948, -0.008441554382443428, 0.024032587185502052, 0.015562320128083229, -0.026717230677604675, -0.0103150624781847, -0.010566298849880695, -0.005297505762428045, 0.015059847384691238, -0.037498876452445984, 0.021304873749613762, 0.008369771763682365, -0.016610337421298027, 0.06839381158351898, -0.0037434271071106195, -0.013559604994952679, 0.014930639415979385, 0.021663783118128777, 0.049242399632930756, -0.007372003514319658, -0.02068755030632019, 0.011269761249423027, -0.01768706552684307, -0.005161120090633631, -0.04381568357348442, -0.0176727082580328, -0.012927924282848835, -0.021936554461717606, -0.014191285707056522, 0.0039192927069962025, -0.009324471466243267, -0.0023311178665608168, 0.00037528484244830906, 0.024980109184980392, 0.008247742429375648, 0.03336423635482788, -0.013358615338802338, 0.027865741401910782, -0.015605390071868896, -0.02163507044315338, -0.005319040268659592, -0.01935240626335144, -0.03402462974190712, -0.01784498617053032, -0.009941795840859413, -0.03201473504304886, -0.008405663073062897, -0.008570761419832706, -0.01573459804058075, -0.0186920128762722, 0.02413308247923851, -0.02396080456674099, 0.04223648086190224, 0.02686079405248165, 0.013315546326339245, 0.01818953827023506, -0.014471235685050488, -0.0025356963742524385, 0.015576676465570927, 0.0270187146961689, -0.003000484313815832, -0.023085065186023712, -0.012497232295572758, 0.021649427711963654, 0.004655057564377785, -0.03201473504304886, 0.010049468837678432, -0.012942280620336533, -0.016696475446224213, 0.016323208808898926, -0.023487044498324394, 0.019251910969614983, -0.020945964381098747, 0.027937524020671844, 0.010472982190549374, -0.035890959203243256, -0.0045904540456831455, 0.022711800411343575, 0.0054877279326319695, -0.03896322846412659, 0.001162867178209126, 0.005240080412477255, -0.00271694571711123, 0.024807831272482872, 0.010623724199831486, -0.018763793632388115, 0.009633134119212627, 0.043672122061252594, -0.02340090647339821, -0.0027402748819440603, -0.018505379557609558, 0.0017748080426827073, -0.021864773705601692, -0.0037721400149166584, -0.042609747499227524, 0.03080880083143711, -0.012210104614496231, 0.013315546326339245, 0.002792316721752286, 0.022697443142533302, -0.03152662143111229, 0.0294018741697073, 0.007303810678422451, 0.016811326146125793, 0.017500432208180428, 0.015662815421819687, -0.008714324794709682, -0.006399358157068491, -0.012892032973468304, -0.01729944348335266, -0.046284981071949005, 0.021764278411865234, -0.01579202339053154, -0.002672082046046853, 0.005125229246914387, 0.0027007947210222483, 0.008685612119734287, 0.006485496647655964, -0.02529594860970974, -0.02568357065320015, -0.01123387087136507, 0.005082160234451294, -0.009791053831577301, 0.0198979489505291, -0.016107862815260887, 0.007702200207859278, -0.000224767136387527, -0.022209325805306435, -0.0030220188200473785, 0.01017149817198515, 0.018031619489192963, -0.013774950988590717, 0.0277508907020092, 0.017916766926646233, -0.017600927501916885, -0.005606167949736118, 0.004271024372428656, 0.01092520821839571, -0.013128913007676601, 0.0045904540456831455, 0.0030489370692521334, -0.012518767267465591, -0.004873992409557104, 0.009137838147580624, -0.018491022288799286, -0.02179299108684063, 0.005656415596604347, -0.02073061838746071, -0.01818953827023506, -0.018045974895358086, -0.006819282658398151, -0.018921714276075363, 0.0006805823650211096, 0.007282275706529617, 0.0027061784639954567, 0.0031637882348150015, -0.0033127355854958296, 0.012640796601772308, 0.014062078669667244, 0.017256373539566994, 0.007881655357778072, -0.013372971676290035, -0.001095571555197239, 0.017256373539566994, -0.007831407710909843, 0.02868405543267727, 0.015978654846549034, -0.04625627025961876, 0.020888539031147957, -0.03614937514066696, -0.0006949387025088072, 0.01211678795516491, -0.014363562688231468, 0.020486559718847275, 0.022697443142533302, 0.011470750905573368, 0.015361331403255463, -0.011528176255524158, 0.011463573202490807, 0.039939459413290024, 0.009999221190810204, -0.011772234924137592, -0.03365136310458183, 0.025439511984586716, -0.04519389569759369, -0.0011852990137413144, -0.018749438226222992, 0.023343481123447418, -0.006446016486734152, -0.022324178367853165, -0.033392950892448425, -0.0067726243287324905, -0.010989812202751637, 0.016868751496076584, 0.0188499316573143, 0.011528176255524158, 0.02124744839966297, 0.00596507778391242, 0.026588022708892822, -0.011879907920956612, -0.014033365994691849, 0.0017290470423176885, -0.014320493675768375, 0.013250942341983318, 0.0011538943508639932, 0.007529923692345619, 0.014988064765930176, -0.0036967690102756023, -0.015447469428181648, -0.016036082059144974, -0.01701231487095356, -0.016466772183775902, 0.010652436874806881, 0.0011861962266266346, -0.01735686883330345, 0.027607327327132225, 0.011657384224236012, 0.0059076519683003426, 0.011865551583468914, 0.023558827117085457, 0.008936849422752857, 0.0015128039522096515, -0.006944900844246149, 0.00758734904229641, 0.02424793317914009, 0.03752758726477623, 0.0029197295662015676, -0.013200695626437664, 0.02173556573688984, -0.013243764638900757, 0.005189832765609026, -0.01761528290808201, 0.022051407024264336, 0.0009062467725016177, -0.007888833060860634, 0.014629155397415161, -0.013466288335621357, 0.03448403626680374, 0.02963157743215561, 0.015117272734642029, 0.021333586424589157, 0.011334365233778954, 0.011714809574186802, 0.009568530134856701, -0.02713356539607048, 0.011004168540239334, -0.02179299108684063, 0.022654375061392784, -0.007565814536064863, -0.01639499142765999, -0.011721987277269363, 0.006952079012989998, 0.017471719533205032, 0.011657384224236012, -0.009166551753878593, 0.026315251365303993, -0.014858857728540897, 0.021161310374736786, -0.0206301249563694, -0.0016617514193058014, -0.015662815421819687, 0.020429134368896484, 0.03609194979071617, 0.007357646711170673, -0.042006779462099075, 0.004482781048864126, -0.01134154386818409, -0.010164320468902588, -0.002438790863379836, 0.006367056630551815, 0.027004359290003777, -0.00320326816290617, 0.007282275706529617, -0.023113777860999107, 0.017945479601621628, 0.024535059928894043, -0.01584944874048233, 0.000721408287063241, -0.0037900854367762804, 0.030378108844161034, 0.004138227552175522, 0.0011000579688698053, -0.016667762771248817, 0.025726640596985817, 0.005125229246914387, 0.0077093783766031265, -0.00814006943255663, 0.003589096013456583, 0.005900473799556494, -0.030119694769382477, -0.030033554881811142, -0.008046753704547882, -0.008125713095068932, -0.011736344546079636, 0.016165288165211678, -0.011585602536797523, -0.016868751496076584, 0.02235289104282856, 0.007321755867451429, -0.032502852380275726, -0.01761528290808201, -0.017529144883155823, 0.0308662261813879, 0.002241390524432063, 0.017988549545407295, -0.013753416016697884, -0.005272381938993931, -0.03540284186601639, 0.02391773648560047, -0.008312346413731575, -0.017198948189616203, 0.009446500800549984, -0.025985054671764374, -0.017098452895879745, -0.024276645854115486, 0.0320434495806694, -0.016825681552290916, 0.005771266296505928, 0.0030668824911117554, -0.002336501609534025, -0.025382086634635925, 0.023989517241716385, -0.0017604515887796879, -0.004561740905046463, 0.00903734378516674, 0.02980385348200798, 0.03385235369205475, -0.018361816182732582, 0.00511446176096797, -0.014521482400596142, -0.007702200207859278, 0.007070519030094147, -0.0025087781250476837, 0.021204380318522453, -0.009941795840859413, 0.003316324669867754, 0.031383056193590164, -0.014801432378590107, 0.007565814536064863, 0.015662815421819687, 0.035603832453489304, -0.017916766926646233, -0.018146470189094543, 0.012289064936339855, 0.0057963901199400425, 0.006169656291604042, -0.02769346535205841, 0.017801916226744652, -0.004522261209785938, -0.00333606475032866, 0.011887086555361748, 0.002070908434689045, -0.030837513506412506, 0.02479347586631775, -0.026042481884360313, -0.026315251365303993, 0.0008685612701810896, 0.007181781344115734, 0.03330681100487709, -0.035000864416360855, -0.008269277401268482, 0.002499805297702551, 0.007773981895297766, 0.0007842174964025617, -0.03290483355522156, 0.016538554802536964, -0.011312831193208694, -0.009109125472605228, -0.04815131425857544, -0.03448403626680374, -0.007486854214221239, -0.03546026721596718, -0.02846870943903923, -0.022898433730006218, 0.002944853389635682, -0.022697443142533302, 0.004798621404916048, 0.0019040154293179512, 0.0148445013910532, 0.019366761669516563, -0.022266751155257225, -0.021161310374736786, 0.00752274552360177, -0.01929498091340065, 0.004260256886482239, -0.008046753704547882, 0.021807348355650902, 0.003797263605520129, 0.007637596223503351, 0.036120664328336716, 0.004443300887942314, 0.025712283328175545, 0.003635754343122244, 0.023171205073595047, 0.0048237452283501625, 0.03336423635482788, -0.0394800566136837, -0.013042774982750416, -0.007917545735836029, -0.005139585584402084, 0.02746376395225525, -0.038446396589279175, 0.008355415426194668, 0.0359196737408638, -0.040456291288137436, -0.004091569688171148, 0.0031619935762137175, -0.014586086384952068, -0.004486369900405407, 0.037010759115219116, 0.027205348014831543, -0.003682412439957261, 0.017084097489714622, -0.0004715175018645823, -0.021821703761816025, 0.016868751496076584, -0.023171205073595047, -0.009008631110191345, 0.007124355528503656, -0.015820736065506935, 0.013107378967106342, -0.012274708598852158, 0.0031063626520335674, 0.019050922244787216, -0.038331545889377594, 0.02618604525923729, 0.0015971477841958404, 0.005024734418839216, 0.010788822546601295, -0.015059847384691238, -0.036781057715415955, -0.013703168369829655, 0.02907167747616768, -0.030550384894013405, 0.02307070977985859, 0.0035729450173676014, -0.012698221951723099, -0.043184004724025726, -0.007716556545346975, 0.00046433930401690304, 0.01187273021787405, -0.005642058793455362, -0.014887570403516293, -0.019969729706645012, -0.012906389310956001, 0.014133860357105732, -0.04120282456278801, 0.03181374818086624, -0.019539039582014084, -0.004759141243994236, 0.004378697369247675, 0.017170235514640808, -0.006158888805657625, -0.0027994948904961348, 0.004349984228610992, -0.05443941056728363, -0.030062269419431686, -0.0014464056584984064, -0.027047427371144295, -0.010200210846960545, -0.0011395380133762956, 0.018333103507757187, 0.02496575191617012, 0.02252516709268093, 0.0024423799477517605, -0.003310941159725189, -0.018333103507757187, 0.006629060488194227, 0.008491801097989082, -0.02212318778038025, 0.005444658920168877, -0.04014045000076294, 0.020615767687559128, -0.017600927501916885, 0.016150932759046555, 0.025812778621912003, -0.014413809403777122, 0.005049858242273331, 0.024764763191342354, -0.0019811810925602913, 0.020658837631344795, 0.005649236962199211, -0.06632649153470993, 0.003804441774263978, -0.011549711227416992, 0.0009313704213127494, -0.021175667643547058, 0.003140459069982171, -0.013358615338802338, -0.017270730808377266, 0.00031292432686313987, 0.002821029396727681, 0.016308853402733803, 0.013078666292130947, -0.008039575070142746, 0.014578907750546932, 0.009460857138037682, 0.037010759115219116, -0.012949458323419094, 0.013810841366648674, -0.011858372949063778, 0.009834122844040394, 0.004741196054965258, -0.03479987382888794, 0.0047483742237091064, -0.00036900394479744136, 0.01517469808459282, -0.014830145053565502, 0.0029753607232123613, -0.010221745818853378, -0.021649427711963654, 0.00198835926130414, -0.03514442965388298, -0.013042774982750416, -0.04203549399971962, -0.007838585413992405, -0.02074497565627098, -0.006474729161709547, 0.01037248782813549, -0.016150932759046555, 0.01590687409043312, -0.010573476552963257, -0.04470578208565712, 0.006399358157068491, -0.04737606644630432, -0.00538005493581295, 0.02564050257205963, 0.045509736984968185, 0.05265921726822853, 0.014112325385212898, -0.030722662806510925, -0.050792887806892395, -0.02691822126507759, 0.013724703341722488, 0.02219497039914131, 0.03953748196363449, 0.015275192447006702, -0.002869482384994626, 0.007716556545346975, 0.011269761249423027, 0.0059937904588878155, -0.03715432062745094, 0.023429619148373604, 0.03075137548148632, 0.02618604525923729, -0.013609852641820908, -0.007138711865991354, -0.01728508621454239, 0.006865940988063812, -0.023731103166937828, -0.006144532468169928, -0.02268308773636818, 0.011040059849619865, -0.0277508907020092, 0.015619746409356594, -0.009417788125574589, 0.03063652478158474, 0.03781471773982048, -0.007124355528503656, -0.02396080456674099, -0.0027600149624049664, 0.0019093990558758378, 0.025669215247035027, 0.007939080707728863, 0.014607621356844902, -0.009396253153681755, -0.008678434416651726, 0.010616546496748924, -0.0019614410120993853, -0.00018472629017196596, -0.03212958946824074, -0.004805799573659897, 0.04309786483645439, -0.053176045417785645, -0.027205348014831543, 0.00581074645742774, 0.009374719113111496, 0.03798699378967285, 0.0034060522448271513, -0.016438059508800507, -0.0048596360720694065, -0.03614937514066696, 0.017873698845505714, 0.014815788716077805, 0.03158404678106308, 0.013588317669928074, -0.013896980322897434, -0.0035388485994189978, -0.02235289104282856, -0.027549901977181435, 0.023659320548176765, 0.002248568693175912, -0.02068755030632019, -0.04855329170823097, -0.02496575191617012, -0.007551458198577166, 0.021649427711963654, -0.0027618093881756067, -0.003291201079264283, -0.0017846779664978385, 0.03497215360403061, -0.02835385873913765, 0.014636334031820297, -0.01846230961382389, 0.0003849305503536016, -0.0107601098716259, -0.006166066974401474, -0.008520513772964478, -0.01543311309069395, 0.019452901557087898, -0.01037248782813549, 0.003364777658134699, -0.009546995162963867, -0.00795343704521656, 0.011212335899472237, 0.003973129205405712, 0.024046944454312325, -0.0018878645496442914, 0.010745753534138203, -0.00011126197932753712, -0.002801289549097419, -0.013495001010596752, 0.00468377023935318, 0.01762964017689228, 0.00042396195931360126, 0.01345193199813366, -0.0057569099590182304, 0.01662469282746315, 0.004978076089173555, -0.007113588508218527, 0.04309786483645439, -0.022209325805306435, -0.027779603376984596, 0.017801916226744652, -0.010688328184187412, -0.0034437377471476793, -0.02268308773636818, 0.003969540353864431, 0.001219395431689918, -0.0036231924314051867, 0.0024513525422662497, 0.0036393434274941683, -0.009690559469163418, 0.02835385873913765, 0.013545248657464981, -0.019754385575652122, 0.005660004448145628, -0.008628186769783497, -0.017041027545928955, 0.013093022629618645, -0.008786107413470745, -0.007917545735836029, -0.0305790975689888, -0.0038905800320208073, 0.009805410169064999, 0.03201473504304886, -0.028669700026512146, -0.02001279965043068, -0.007224850356578827, -0.026774656027555466, -0.01376059465110302, 0.014873214066028595, 0.019309336319565773, 0.02974642813205719, -0.003262488404288888, -0.013294011354446411, 0.031153352931141853, 0.004741196054965258, 0.008089822717010975, 0.0055630989372730255, 0.0005984817398712039, -0.024147437885403633, -0.010271992534399033, -0.002483654534444213, 0.01739993691444397, -0.02417615056037903, 0.006524976808577776, 0.003804441774263978, 0.01939547434449196, 0.007160246837884188, -0.0033701611682772636, -0.011011346243321896, -0.011958868242800236, -0.01817518286406994, -0.018160825595259666, 0.03264641761779785, 0.001770321629010141, -0.012906389310956001, -0.031153352931141853, 0.006801337003707886, 0.004899116232991219, 3.457308775978163e-05, -0.01617964543402195, 0.006341932807117701, 0.024937039241194725, -0.0029592097271233797, -0.004292558878660202, -0.005232902243733406, -0.005566687788814306, -0.012963814660906792, -0.005171887576580048, 0.008075466379523277, 0.007206904701888561, 0.0036519053392112255, 0.00043091585393995047, 0.013588317669928074, 0.008384128101170063, -0.003223008243367076, 8.540927228750661e-05, -0.041949354112148285, -0.010508873499929905, 0.013308368623256683, 0.018318746238946915, 0.001096468884497881, -0.006693664006888866, 0.022697443142533302, -0.011406146921217442, 0.014830145053565502, 0.02312813512980938, 0.017055384814739227, -0.05811464414000511, 0.027147922664880753, 0.007253563031554222, -0.03365136310458183, -0.018203895539045334, -0.00961877778172493, -0.041891928762197495, 0.012497232295572758, -0.028382571414113045, 0.008520513772964478, -0.03436918556690216, -0.0014939612010493875, -0.005850226618349552, 0.007458141539245844, -0.0380157046020031, 0.0026559310499578714, 0.01590687409043312, -0.0004084839893039316, -0.01523212343454361, 0.26392775774002075, -0.02268308773636818, -0.006392179988324642, -0.009245511144399643, -0.003721892600879073, 0.04700280353426933, -0.010157141834497452, 0.0032660774886608124, 0.005843048449605703, -0.004166940692812204, 4.677040851674974e-05, -0.010365309193730354, 0.006690075155347586, -0.022941501811146736, -0.01735686883330345, -0.012245995923876762, -0.04766319692134857, -0.025094959884881973, -0.02179299108684063, -0.00747967604547739, 0.042782023549079895, 0.009604421444237232, -0.022496454417705536, -0.003440148662775755, 0.02256823517382145, -0.009755163453519344, -0.014234354719519615, 0.009374719113111496, -0.013042774982750416, 0.008104179054498672, -0.03658006712794304, 0.017801916226744652, 0.008635365404188633, 0.0029358805622905493, -0.0016626487486064434, -0.0005922008422203362, 0.008125713095068932, 0.013329902663826942, 0.03319196030497551, 0.010688328184187412, 0.002445969032123685, -0.007282275706529617, 0.008599474094808102, 0.008678434416651726, -0.017256373539566994, 0.011721987277269363, -0.02512367255985737, 0.005631291773170233, 0.013523713685572147, -0.0007882552454248071, -0.039996884763240814, -0.05010377988219261, 0.01784498617053032, 0.01629449613392353, -0.010846247896552086, 0.005512851756066084, 0.015806378796696663, -0.028669700026512146, 0.01070268452167511, 0.01979745365679264, -0.03092365153133869, 0.008750216104090214, -0.002148074097931385, 0.014155394397675991, -0.037556301802396774, -0.010408378206193447, -0.012389559298753738, 0.0029753607232123613, 0.01650984212756157, -0.0004629933973774314, -0.007917545735836029, 0.0001528730645077303, -0.004769908729940653, 0.01504549104720354, -0.02167814038693905, -0.024491991847753525, 0.03046424686908722, 0.018390528857707977, 0.028999896720051765, 0.02123309299349785, -0.021276161074638367, 0.014672224409878254, 0.0034652722533792257, -0.05610474944114685, -0.007788338232785463, -0.021146953105926514, -0.0007725529139861465, -0.018548447638750076, -0.021821703761816025, 0.013157625682651997, 0.012181391939520836, -0.007153068669140339, -0.006015324965119362, 0.008068287745118141, -0.003355804830789566, 0.011312831193208694, 0.003589096013456583, 0.00936754047870636, -0.002462119795382023, -0.026674162596464157, -0.025784065946936607, -0.010609367862343788, -0.0023957216180860996, 0.026889508590102196, -0.012030649930238724, 0.009554173797369003, -0.025784065946936607, 0.011061593890190125, 0.004303326364606619, -0.03336423635482788, 0.002305994275957346, -0.0448206327855587, 0.00014322737115435302, 0.007931902073323727, 0.003540643258020282, 0.005415945779532194, -0.015131629072129726, -0.01478707604110241, -0.01162149291485548, 0.0034796285908669233, 0.0341394804418087, -0.016782613471150398, -0.022324178367853165, 0.027549901977181435, -0.005229312926530838, -0.036063238978385925, -0.022984571754932404, -0.0013952611479908228, 0.0046981265768408775, -0.03451274707913399, -0.0021875540260225534, -0.025597432628273964, 0.030665237456560135, -0.014507126063108444, 0.00887224543839693, -0.0058358702808618546, 0.0006657773046754301, -0.015088560059666634, 0.004547384567558765, -0.017443006858229637, 0.002399310702458024, 0.03353651240468025, 0.01167891826480627, 0.0037147144321352243, -0.0010937770130112767, 0.01623707078397274, 0.022266751155257225, 0.025812778621912003, -0.00892249308526516, -0.02997612953186035, -0.0317850336432457, -0.012411094270646572, 0.028425641357898712, 0.011592780239880085, -0.010889317840337753, -0.019309336319565773, -0.02808108739554882, -0.04019787535071373, 0.012461341917514801, 0.028870688751339912, -0.04625627025961876, -0.00814006943255663, 0.0029771551489830017, -0.010803178884088993, -0.0188499316573143, -0.008219029754400253, -0.18422111868858337, -0.003158404491841793, 0.044619642198085785, -0.02601376734673977, 0.007515567354857922, -0.00892249308526516, -0.007264330517500639, 0.005990201141685247, -0.008032397367060184, 0.0010237896349281073, 0.029488014057278633, -9.690559090813622e-05, -0.026257826015353203, 0.006557278335094452, -0.005150353070348501, 0.012303421273827553, -0.024549417197704315, 0.021146953105926514, 0.031124640256166458, -0.0002282440837007016, 0.03402462974190712, -0.040226589888334274, -0.005807157605886459, 0.01991230435669422, -0.016581622883677483, -0.0026684929616749287, -0.017801916226744652, 0.002185759600251913, 0.021950911730527878, -0.016696475446224213, 0.005473371595144272, -0.018333103507757187, 0.04576815292239189, -0.0036016579251736403, 0.007228439673781395, 0.001022892422042787, -0.02869841270148754, 0.025611789897084236, -0.014219998382031918, 0.005889706779271364, -0.0029592097271233797, 0.017084097489714622, -0.006004557479172945, 0.01398311834782362, -0.027865741401910782, 0.02825336344540119, -0.0028246184810996056, -0.015217767097055912, -0.008585117757320404, 0.0015343385748565197, 0.02601376734673977, -0.014930639415979385, 0.011485107243061066, 0.0008389512076973915, 0.044562216848134995, 0.02490832656621933, -0.014284602366387844, 0.017371224239468575, 0.007831407710909843, 0.013337081298232079, -6.236054468899965e-05, -0.028841976076364517, 0.01381802000105381, 0.005541564431041479, -0.025224167853593826, -0.0024513525422662497, 0.004924239590764046, 0.03810184448957443, -0.020271213725209236, 0.019869236275553703, 0.0014840912772342563, -0.0005069597973488271, 0.011937333270907402, -0.015059847384691238, 0.03396720439195633, 0.015332618728280067, 0.01857716031372547, 0.0005401589442044497, 0.016136575490236282, -0.025209810584783554, -0.04631369560956955, 0.04863943159580231, -0.013889801688492298, 0.009159373119473457, 0.026602379977703094, 0.004098747856914997, 0.01818953827023506, -0.003948005847632885, -0.019495969638228416, 0.013631386682391167, 0.03965233266353607, -0.03253156691789627, -0.003278639167547226, -0.027880098670721054, 0.007716556545346975, -0.006234259810298681, -0.008879424072802067, -0.013265298679471016, 0.018160825595259666, -0.0064603728242218494, 0.00181697984226048, -0.019811810925602913, -0.026817725971341133, 0.0055989897809922695, 0.007723734714090824, 0.02028557099401951, 0.002045784844085574, 0.019826166331768036, 0.032933544367551804, 0.0067726243287324905, -0.004026965703815222, -0.018491022288799286, 0.01092520821839571, 0.0270187146961689, 0.01167891826480627, 0.018835576251149178, -0.020931608974933624, -0.007716556545346975, 0.041174110025167465, 0.008692790754139423, -0.01640934683382511, -0.026760300621390343, -0.019194485619664192, 0.011599958874285221, -0.001509214867837727, -0.005197010934352875, -0.027033071964979172, -0.015993012115359306, 0.018763793632388115, 0.010114072822034359, -0.033105820417404175, 0.005013967398554087, -0.011248227208852768, 0.032215725630521774, -0.009130660444498062, 0.024090012535452843, -0.013322724960744381, -0.027492476627230644, -0.01129129622131586, -0.014801432378590107, 0.018045974895358086, -0.0020583465229719877, 0.007429428864270449, 0.0148445013910532, 0.024664267897605896, 0.029114747419953346, -0.010243279859423637, -0.023286055773496628, 0.006489085499197245, -0.01962517760694027, -0.014521482400596142, 0.016782613471150398, 0.0007474292651750147, 0.02085982635617256, 0.015246479772031307, 0.00639576930552721, 0.01289921160787344, -0.004105926025658846, 0.017830628901720047, -0.02902860939502716, 0.010415556840598583, -0.0074007161892950535, -0.016050437465310097, -0.02473605051636696, 0.019050922244787216, -0.04832359030842781, 0.021993979811668396, -0.006873119156807661, 0.0018806863809004426, -0.00532262958586216, -0.032388001680374146, -0.01017149817198515, 0.012023472227156162, 0.007501210551708937, -0.01295663695782423, -0.017170235514640808, -0.02206576243042946, 0.010910851880908012, 0.004113104194402695, -0.019754385575652122, 0.04525132477283478, -0.0010704478481784463, 0.0027761657256633043, 0.01523212343454361, -0.031210780143737793, 0.01297817099839449, -0.015748953446745872, -0.028109800070524216, -0.014729649759829044, 0.04470578208565712, 0.0037649618461728096, 0.003402463160455227, -0.027650395408272743, -0.03063652478158474, 0.03135434165596962, 0.011829660274088383, -0.015935586765408516, 0.03982460871338844, -0.011140554212033749, 0.03970975801348686, -0.04559587687253952, 0.008025218732655048, -0.004400231875479221, -0.006521387491375208, 0.023731103166937828, -0.017084097489714622, -0.01589251682162285, -0.00989872682839632, 0.020199432969093323, -0.01340168435126543, 0.031038502231240273, -0.0277508907020092, -0.010458625853061676, 0.00018831538909580559, 0.02908603474497795, 0.001677005086094141, -0.010530407540500164, 0.01979745365679264, 0.0009138736058957875, -0.014255889691412449, -0.01392569299787283, 0.0029269077349454165, 0.030320683494210243, 0.014248711057007313, -0.004996021743863821, 0.02123309299349785, -0.006987969856709242, -0.027923166751861572, -0.07867298275232315, 0.0038187981117516756, -0.008771751075983047, 0.010193033143877983, 0.01039402186870575, 0.004723250400274992, 0.02162071503698826, 0.0026810546405613422, -0.013437575660645962, -0.024822188541293144, -0.002438790863379836, 0.028439996764063835, 0.014191285707056522, -0.02452070452272892, 0.009633134119212627, -0.036551352590322495, 0.025884561240673065, -0.024434566497802734, -0.010717040859162807, 0.017256373539566994, 0.007221261039376259, -0.005455425940454006, 0.035776108503341675, 0.013215051963925362, 0.003815209027379751, 0.024090012535452843, 0.0029861279763281345, 0.01211678795516491, 0.005929186474531889, 0.012253173626959324, 0.010882139205932617, -0.02279793843626976, -0.019653890281915665, 0.041116684675216675, 0.017988549545407295, -0.01617964543402195, -0.0011601753067225218, 0.00457250839099288, 0.005078570917248726, -0.021376656368374825, -0.016380634158849716, -0.014973708428442478, 0.005717429798096418, 0.0037434271071106195, 0.0029484424740076065, 0.02556871995329857, -0.03548898175358772, 0.01000639982521534, 0.015260836109519005, 0.00973362848162651, -0.011140554212033749, 0.011111841537058353, 0.013724703341722488, -0.014715293422341347, -0.014815788716077805, -0.062478985637426376, 0.025439511984586716, -0.003122513648122549, -0.010616546496748924, -0.012490054592490196, 0.033995918929576874, 0.01039402186870575, 0.030894938856363297, 0.006873119156807661, -0.007910368032753468, -0.001781088882125914, -0.01734251156449318, 0.02556871995329857, -0.009008631110191345, -0.03652264177799225, -0.01640934683382511, 0.007651952560991049, -0.0002866790455300361, 0.00031157839111983776, -0.01129129622131586, 0.016524197533726692, -0.0188499316573143, 0.0077452692203223705, -0.04169093817472458, 0.0023831597063690424, 0.01873508095741272, -0.014327671378850937, -0.04525132477283478, 0.020113294944167137, 0.040226589888334274, 0.004070034716278315, -0.014607621356844902, 0.005358520429581404, -0.021419724449515343, -0.007235617842525244, -0.02641574665904045, 0.014155394397675991, 0.017916766926646233, 0.014241533353924751, 0.001068653305992484, 0.03899193927645683, -0.022640017792582512, 0.007910368032753468, 0.031009789556264877, 0.024879613891243935, -0.010264814831316471, 0.0060691614635288715, 0.012446985580027103, -0.033163245767354965, 0.004245900548994541, 0.006115819793194532, -0.00510369474068284, -0.011686096899211407, 0.011980402283370495, 0.01689746417105198, -0.0033683667425066233, 0.0008515130612067878, -0.014392275363206863, 0.028655342757701874, -0.00026200400316156447, -0.009525461122393608, -0.0018788918387144804, -0.04074341803789139, -0.033392950892448425, 0.014830145053565502, 0.02957415208220482, 0.020673193037509918, -0.0048201559111475945, -0.018390528857707977, 0.023558827117085457, -0.0020942375995218754, 0.016581622883677483, 0.0006675718468613923, 0.03052167221903801, -0.005695895291864872, 0.01281307265162468, 0.041231535375118256, -0.017557857558131218, -0.03307710960507393, -0.008427197113633156, -0.00961877778172493, 0.0017694242997094989, 0.0018770971801131964, -0.043442416936159134, 0.09567094594240189, 0.0022001159377396107, -0.009152194485068321, 0.00947521347552538, -0.0025285182055085897, -0.01573459804058075, 0.012533123604953289, 0.021692495793104172, -0.02736326865851879, -0.016366278752684593, -0.00828363373875618, -0.008032397367060184, 0.012525944970548153, 0.006812104489654303, 0.006044037640094757, 0.0022575415205210447, -0.02330041117966175, 0.016538554802536964, 0.008807641454041004, 0.014399453066289425, 0.03810184448957443, -0.02090289629995823, 0.031210780143737793, -0.004339217208325863, 0.004332039039582014, -0.00446124654263258, 0.013143269345164299, 0.002052963012829423, -0.003879812778905034, 0.022439029067754745, 0.003915703855454922, -0.00688029732555151, -0.022812293842434883, -0.020658837631344795, -0.005039090756326914, 0.020601412281394005, -0.017500432208180428, -0.0024280233774334192, 0.03603452444076538, 0.019251910969614983, 0.013322724960744381, 0.04042757675051689, -0.018447954207658768, -0.002354447031393647, 0.004281791392713785, 0.018390528857707977, 0.007138711865991354, -0.010932386852800846, -0.007608883548527956], "c6701200-393e-4d5f-9fc1-4ecb8bef309f": [-0.030813762918114662, -0.005996469873934984, 0.00289522809907794, -0.0056874495930969715, -0.010521413758397102, 0.015230298042297363, -0.009020457044243813, -0.02369157411158085, -0.0005173335084691644, -0.010580274276435375, 0.01473733689635992, 0.0005081364652141929, 0.003877471899613738, 0.0009942000033333898, -0.010484625585377216, -0.008895376697182655, -0.002216486493125558, -0.006625547539442778, 0.013861778192222118, -0.03437485545873642, -0.0035022327210754156, 0.018703099340200424, -0.005529260262846947, -0.02163143828511238, -0.013839705847203732, -0.004120273981243372, 0.027576403692364693, -0.01681954599916935, 0.01581890881061554, -0.021587291732430458, 0.005635946057736874, 0.016863692551851273, -0.016598816961050034, 0.007096435874700546, -0.017275718972086906, -0.015583463944494724, -0.007835878059267998, -0.014700548723340034, 0.012633053585886955, -0.013067154213786125, 0.025442691519856453, -0.024780504405498505, 0.005716879852116108, -0.001783306011930108, -0.024044740945100784, 0.009991664439439774, -0.02155786193907261, 0.020439501851797104, -0.00929268915206194, 0.00208220980130136, 0.0023654785472899675, 0.02489822544157505, -0.03481631353497505, -0.013273167423903942, 0.019085697829723358, 0.02579585649073124, 0.01356747280806303, 0.0036125972401350737, 0.016834260895848274, -0.034492578357458115, 0.02015991136431694, 0.0014246214414015412, -0.02713494561612606, 0.013780844397842884, 0.016039637848734856, -0.009152893908321857, -0.005720558576285839, -0.009550206363201141, -0.023882873356342316, 0.00046537021989934146, 0.005389465484768152, 0.0224260613322258, 0.008542210794985294, 0.006290775258094072, 0.036964740604162216, -0.021366562694311142, -0.004837642889469862, -0.0021852166391909122, 0.020410070195794106, 0.012324033305048943, 0.008704078383743763, -0.018511801958084106, 0.011742779985070229, -0.0030957236886024475, 0.029577679932117462, 0.00821111723780632, -0.02700250968337059, 0.041967932134866714, 0.02102811262011528, -0.001569934654980898, 0.02482464909553528, 0.0024942371528595686, -0.004870752338320017, 0.006320205517113209, -0.018246926367282867, -0.004999510943889618, -0.01152940932661295, 0.020616084337234497, -0.0021355526987463236, -0.016495810821652412, -0.024942371994256973, 0.01099966000765562, -0.014082507230341434, 0.00513194827362895, -0.03734733909368515, -0.020836813375353813, 0.017069706693291664, -0.02352970652282238, -0.015112576074898243, -0.0273703895509243, 0.006798451766371727, 0.017437586560845375, 0.00023107562446966767, -0.019880320876836777, -0.006500467658042908, 0.0042600687593221664, 0.012213668785989285, -0.01942414790391922, -0.01955658569931984, -0.01655467227101326, 0.001938735949806869, 0.027179092168807983, 0.02823859080672264, -0.0080933952704072, -0.002271668752655387, 0.012169523164629936, -0.016731254756450653, -0.006250308360904455, -0.012228383682668209, -0.002950410358607769, 0.045175857841968536, -0.0032281610183417797, 0.03514004871249199, 0.005503508727997541, -0.0021888953633606434, 0.002466646023094654, -0.014023646712303162, -0.0080933952704072, -0.006960319820791483, -0.02389758825302124, 0.035699229687452316, 0.010874579660594463, 0.00186883844435215, -0.01915927417576313, -0.02266150526702404, 0.005128269549459219, 0.025280822068452835, 0.02419189363718033, 0.006029579322785139, 0.0024041063152253628, 0.024412622675299644, -0.015760047361254692, 0.022352484986186028, -0.02840045839548111, 0.01905626617372036, 0.013596903532743454, -0.011176242493093014, 0.024339046329259872, -0.014546038582921028, -0.015097860246896744, -0.003925296477973461, 0.0161573588848114, 0.027252668514847755, 0.024854080751538277, 0.015480457805097103, 0.014259090647101402, -0.01926228031516075, 0.00513194827362895, 0.012691915035247803, 0.00971207395195961, -0.028989069163799286, 0.01645166426897049, -0.021278271451592445, 0.017614170908927917, -0.015230298042297363, 0.026943648234009743, 0.006014863960444927, 0.0032226426992565393, -0.020748522132635117, -0.02342670038342476, -0.007261982653290033, 0.004609556403011084, 0.018114490434527397, 0.025280822068452835, 0.004366754554212093, 0.0006171213462948799, 0.00802717637270689, 0.004804533440619707, 0.009984306059777737, 0.00663290498778224, -0.0031141177751123905, 0.03458087146282196, -0.008667290210723877, 0.007644579280167818, -0.5895523428916931, -0.01915927417576313, -0.014391527511179447, 0.0037064070347696543, 0.025913579389452934, 0.022117041051387787, 0.005187130533158779, 0.0014935992658138275, -0.020851528272032738, 0.021984603255987167, -0.009697359055280685, 0.03867171332240105, -0.002455609617754817, 0.007902096956968307, -0.03003385290503502, -0.02600187063217163, 0.0035868454724550247, -0.03958405926823616, -0.004995832219719887, 0.01642223447561264, -0.011477905325591564, 0.0230293869972229, -0.023912303149700165, 0.015215582214295864, 0.027488112449645996, 0.009425126016139984, -0.02018934115767479, 0.012301960028707981, 0.003097563050687313, 0.023250116035342216, -0.019600730389356613, 0.020380640402436256, 0.005805171560496092, -0.002466646023094654, 0.06810224056243896, -0.00105582014657557, -0.039466336369514465, 0.041232168674468994, 0.0021355526987463236, 0.029150936752557755, -0.025324968621134758, -0.029518818482756615, 0.02386815845966339, -0.011426402255892754, 0.011124739423394203, -0.01782018505036831, 0.008623144589364529, -0.038995448499917984, 0.003016629023477435, -0.008218474686145782, 0.008593713864684105, -0.018364649266004562, -0.003658582456409931, -0.004263747483491898, 0.0022808657959103584, 0.0003039621515199542, 0.02639918215572834, -0.033227063715457916, 0.018835537135601044, 0.003331167856231332, -0.001159746665507555, 0.02442733757197857, -0.01181635633111, -0.02149900048971176, -0.009491344913840294, 0.0018329700687900186, -0.03084319271147251, 0.0023250116501003504, 0.0063128480687737465, -0.01369991060346365, -0.0047898185439407825, 0.00989601481705904, 0.0018771158065646887, 0.016863692551851273, 0.027752988040447235, 0.03110806830227375, 0.022440776228904724, -0.0028621188830584288, 0.021543145179748535, 0.03284446895122528, 0.01821749657392502, -0.013538043014705181, -0.016481095924973488, 0.0009445360046811402, 0.03037230484187603, -0.01074950024485588, -0.03787709027528763, -0.0086967209354043, -0.0050878021866083145, -0.009094033390283585, 0.01865895465016365, 0.008299408480525017, 0.013324671424925327, -0.028194446116685867, 0.0005210122908465564, 0.016760684549808502, -0.016878407448530197, -0.005128269549459219, 0.011367540806531906, -0.003145387629047036, -0.0336390919983387, 0.02152843028306961, -0.018276358023285866, 0.01858537830412388, 0.002639550482854247, 0.018482370302081108, -0.04082014039158821, 0.017128566280007362, 0.04652966558933258, -0.0292980894446373, 0.01976259984076023, 0.009756219573318958, 2.424282138235867e-05, -0.005555012263357639, -0.017746608704328537, -0.043468888849020004, 0.0323735810816288, 0.005308531224727631, -0.003001913893967867, -0.028091438114643097, 0.035934675484895706, 0.0014798037009313703, 0.014060434885323048, 0.016642963513731956, 0.01218423806130886, 0.005992791149765253, 0.006721196696162224, -0.0019920787308365107, 0.0017547952011227608, 0.0011689437087625265, 0.020071620121598244, -0.0055402969010174274, 0.02750282734632492, -0.021219410002231598, -0.0013492057332769036, 0.024412622675299644, 0.004326287657022476, -0.0017621528822928667, 0.03431599587202072, -0.030490025877952576, -0.010374261066317558, -0.004664738662540913, 0.0028639582451432943, -0.02002747356891632, -0.022043464705348015, -0.04388091713190079, -0.016245651990175247, 0.004447688348591328, 0.01608378253877163, 0.007931526750326157, 0.009233827702701092, -0.018482370302081108, -0.04305686056613922, 0.017481733113527298, -0.014965423382818699, -0.005039977841079235, -0.022470207884907722, -0.01652524061501026, -0.013788201846182346, -0.020748522132635117, -0.010742142796516418, 0.02473635785281658, -0.03552264720201492, -0.00403933972120285, -0.022514352574944496, -0.04108501598238945, 0.0020472609903663397, -0.0045175859704613686, -0.008255262859165668, -0.03687645122408867, -0.004936970770359039, 0.010006379336118698, -0.003689852310344577, 0.0019552905578166246, -0.01219895388931036, 0.017643600702285767, 9.771854820428416e-05, -0.011014374904334545, 0.019409433007240295, -0.010484625585377216, 0.01543631125241518, -0.0066770510748028755, -0.019600730389356613, 0.01208123192191124, 0.00952813308686018, 0.002038063947111368, 0.0064048185013234615, 0.01795262098312378, -0.004031982272863388, 0.038730572909116745, -0.01645166426897049, 0.00017750286497175694, 0.021911026909947395, -0.0026561052072793245, 0.011190958321094513, -0.012920001521706581, 0.023382553830742836, 0.002632192801684141, -0.0011275571305304766, 0.025943009182810783, 0.04823663458228111, 0.0007403616909869015, -0.0036125972401350737, 0.002356281504034996, 0.0360523946583271, -0.01779075339436531, -0.00742752943187952, -0.003071811283007264, 0.010712712071835995, 0.01702556014060974, -0.020042188465595245, -0.02063079923391342, -0.014075149782001972, -0.025207247585058212, -0.0028234911151230335, 0.04055526852607727, -0.00796095747500658, -0.0001793422707123682, 0.003969442564994097, 0.016378087922930717, 0.007030217442661524, -0.021940458565950394, 0.03084319271147251, -0.013126014731824398, 0.004466082435101271, -0.011404328979551792, 0.02482464909553528, 0.012147449888288975, 0.0018072183011099696, -0.0005007788422517478, -0.014340024441480637, 0.0005357275949791074, -0.017496448010206223, -0.02423604018986225, 0.009616425260901451, 0.011507336050271988, 0.022455492988228798, -0.011499978601932526, 0.023191256448626518, 0.02613430842757225, 0.030048567801713943, 0.0161573588848114, -0.006647620350122452, -0.01876196078956127, 0.009866584092378616, 0.02186688221991062, 0.04526415094733238, 0.008542210794985294, -0.0009174047154374421, -0.006776378955692053, -0.010550844483077526, -0.016569387167692184, 0.0019773636013269424, 0.013942711986601353, 0.014384170062839985, -0.008998383767902851, 0.018850252032279968, 0.020704375579953194, 0.026325605809688568, 0.02973954752087593, 0.005624909419566393, 0.035463783890008926, -0.006798451766371727, 0.004543337505310774, 0.0055586909875273705, 0.00879236962646246, 0.012221026234328747, -0.0030938840936869383, -0.032520733773708344, 0.0018927507335320115, -0.006684408523142338, 0.009873941540718079, 0.006356993690133095, -0.009822438471019268, 0.021248841658234596, -0.0026726596988737583, 0.03405112028121948, 0.00247400370426476, 0.018379364162683487, -0.00876293983310461, -0.018114490434527397, -0.05585914105176926, -0.008505422621965408, 0.020365925505757332, 0.002784863580018282, 0.001990239368751645, -0.010366903617978096, -0.004749351181089878, -0.026781780645251274, 0.02797371707856655, 0.010705354623496532, 0.0024684853851795197, 0.011691276915371418, 0.017481733113527298, -0.022249478846788406, 0.018040914088487625, 0.02219061739742756, -0.009873941540718079, -0.022617360576987267, 0.009631140157580376, 0.008299408480525017, -0.0020582973957061768, -0.0211311187595129, -0.024309614673256874, 0.03396282717585564, -0.009579637087881565, 0.0051981667056679726, -0.016275081783533096, 0.0044256155379116535, -0.010977586731314659, -0.02710551582276821, -0.013508612290024757, -0.008718793280422688, -0.015863053500652313, -0.007696082815527916, 0.020719090476632118, -0.005157699808478355, 0.007004465442150831, 0.02826802060008049, 0.00941041111946106, -0.016481095924973488, -0.0035426996182650328, -0.03378624469041824, 0.0002107271720888093, 0.01605435274541378, 0.039701782166957855, 0.01492127776145935, -0.0042416746728122234, -0.017408156767487526, -0.005878747906535864, 0.01093344110995531, -0.026075446978211403, 0.003445211099460721, -0.01296414714306593, 0.008748224005103111, -0.01621622033417225, 0.018541231751441956, -0.034433718770742416, 0.0024905584286898375, -0.0038333262782543898, -0.010168246924877167, -0.022808657959103584, 0.013677837327122688, -0.015642324462532997, -0.027311529964208603, -0.02455977536737919, 0.0008567042532376945, 0.029798408970236778, 0.0008189963991753757, -0.008682005107402802, 0.004528622608631849, 0.002255114261060953, 0.0324324406683445, -0.011904648505151272, 0.011867860332131386, -0.01965959183871746, -0.009506060741841793, 0.024809934198856354, -0.017614170908927917, 0.00439618481323123, -0.012721345759928226, 0.02142542414367199, -0.009925445541739464, 0.00609947694465518, 0.01642223447561264, 0.03431599587202072, 0.025575127452611923, 0.001108243246562779, -0.0024832007475197315, -0.0004736475530080497, 0.02636975236237049, 0.005661697592586279, -0.0018026197794824839, -0.02332369238138199, 0.009903372265398502, -0.01681954599916935, -0.010455194860696793, 0.00031430882518179715, 0.022808657959103584, 0.029489388689398766, -0.04014324024319649, -0.012404967099428177, -0.002096925163641572, 0.013324671424925327, -0.005919214803725481, -0.011389614082872868, 0.02419189363718033, -0.010580274276435375, -0.01839407905936241, -0.013560115359723568, -0.02032177895307541, -0.031461235135793686, -0.018099773675203323, -0.010558201931416988, 0.0102638965472579, -0.03116692788898945, -0.02279394306242466, 0.018644239753484726, -0.00867464765906334, 0.019703738391399384, 0.019541870802640915, -0.01393535453826189, -0.009417768567800522, 0.025913579389452934, -0.01109530869871378, -0.0066586569882929325, -0.021469568833708763, -0.014354739338159561, -0.0008337116451002657, 0.007688725367188454, -0.0013666801387444139, 0.00398783665150404, 0.02179330587387085, 0.018305787816643715, 0.0280031468719244, -0.0005274502327665687, 0.033227063715457916, 0.006062688771635294, -0.022249478846788406, -0.015362734906375408, 0.013008292764425278, 0.020777951925992966, -0.011705991812050343, 0.008086037822067738, -0.002030706498771906, -0.019865605980157852, -0.013486539013683796, -0.004495513159781694, -0.013611619360744953, 0.011735422536730766, 0.029798408970236778, 0.003145387629047036, -0.01668710820376873, 0.0130524393171072, 0.020866243168711662, -0.022573214024305344, 0.006643941625952721, -0.0075194998644292355, 0.004197529051452875, 0.01802619732916355, -0.02473635785281658, 0.014023646712303162, -0.0027517543639987707, 0.0042416746728122234, 0.01968902349472046, -0.02339726872742176, 0.02202874980866909, -0.0018449261551722884, -0.023676859214901924, 0.013898566365242004, -0.007497427053749561, -0.037259045988321304, -0.011176242493093014, 0.025310253724455833, -0.02068966068327427, 0.011507336050271988, -0.0035647726617753506, -0.025104239583015442, -0.029356950893998146, -0.017746608704328537, -0.02492765709757805, 0.014634329825639725, 0.004675774835050106, -0.021337132900953293, -0.03240301087498665, -0.029562965035438538, 0.013133373111486435, -0.004778781905770302, -0.0044807977974414825, -0.024044740945100784, 0.003943690564483404, 0.017099136486649513, -0.02592829428613186, 0.024339046329259872, 0.008071321994066238, -0.019100412726402283, -0.0056874495930969715, 0.0013381693279370666, 0.005783098749816418, -0.035728659480810165, 0.003653064137324691, -0.0028124547097831964, 0.006820524577051401, 0.019350571557879448, 0.022867519408464432, 0.011963509023189545, 0.015745332464575768, 0.0022440776228904724, -0.0023434057366102934, 0.004925934597849846, -0.007953600026667118, -0.01326580997556448, -0.028385743498802185, 0.017481733113527298, 0.00694192573428154, 0.015936629846692085, -0.0055954791605472565, -0.003060774877667427, -0.015392165631055832, 0.011507336050271988, -0.008983668871223927, -0.001890911371447146, -0.0007992227328941226, -0.04137932136654854, 0.007280376739799976, 0.0022643113043159246, 0.009285331703722477, -0.04082014039158821, -0.045735038816928864, -0.007372347172349691, 0.0016701824497431517, 0.024324331432580948, 0.007931526750326157, 0.004249032586812973, 0.00458012567833066, -0.026119593530893326, 0.014075149782001972, -0.014222302474081516, 0.006956641096621752, 0.00771815562620759, -0.002078531077131629, 0.006938247010111809, 0.005043656565248966, 0.009049886837601662, -0.01968902349472046, 0.014214945025742054, -0.006614510901272297, -0.012765491381287575, -0.010234465822577477, 0.0009730468154884875, -0.014163441024720669, -0.010057882405817509, 0.01581890881061554, -0.008166971616446972, -0.016672393307089806, -0.031225789338350296, -0.02376515045762062, -0.026855356991291046, -0.011190958321094513, 0.021940458565950394, -0.011956151574850082, 0.02013048157095909, 0.003463605185970664, -0.01044783741235733, -0.0014218623982742429, -0.020586654543876648, 0.035257771611213684, 0.0075930762104690075, 0.02539854496717453, 0.026678772643208504, 0.003581327386200428, -0.03263845667243004, -0.05797813832759857, -0.0042784628458321095, 0.006379066966474056, 0.005566048435866833, 0.031196359544992447, 0.029562965035438538, -0.0026156380772590637, 0.012279887683689594, 0.005794134922325611, -0.04252711310982704, -0.030548887327313423, 0.027414536103606224, 0.0173934418708086, 0.012485900893807411, -0.020836813375353813, 0.01476676668971777, -0.013508612290024757, 0.0015230297576636076, -0.003294379683211446, -0.005356356035917997, -0.012662484310567379, -0.01074950024485588, -0.023485559970140457, 0.008071321994066238, -0.006559328641742468, 0.014531322754919529, 0.016069067642092705, -0.009255900979042053, 0.007078041788190603, -0.03687645122408867, -0.01326580997556448, 0.01915927417576313, 0.0036751371808350086, 0.036729298532009125, -0.009984306059777737, -0.004686811473220587, 0.019836176186800003, 0.004594841040670872, -0.013788201846182346, -0.0167901162058115, -0.022117041051387787, 0.03693531081080437, -0.030195720493793488, 0.010859864763915539, 0.007696082815527916, 0.004009909462183714, 0.01286849845200777, -0.022484922781586647, -0.0019037872552871704, 0.014700548723340034, -0.026443328708410263, -0.007350274361670017, 0.016378087922930717, 0.0013050599955022335, 0.0057242377661168575, -0.02663462795317173, 0.0021833772771060467, -0.012265171855688095, -0.012530047446489334, -0.0014558914117515087, 0.026487475261092186, -0.026340322569012642, -0.02336783893406391, -0.01568647101521492, -0.01895326003432274, 0.019512439146637917, 0.005135626997798681, 0.00035132691846229136, 0.011632416397333145, 0.04326287657022476, -0.01965959183871746, -0.004782460629940033, 0.010918725281953812, -0.003290700726211071, -0.003910581115633249, 0.005463041830807924, -0.008292051032185555, -0.026119593530893326, 0.027826564386487007, 0.006618189625442028, 0.016245651990175247, -0.009086675010621548, 0.015804193913936615, 0.03084319271147251, 0.004160740878432989, 0.024486199021339417, 0.023250116035342216, -0.001295862952247262, 0.012441755272448063, 0.003848041407763958, -0.019512439146637917, 0.0022385595366358757, -0.010433121584355831, 0.022602645680308342, -0.01013145875185728, -0.016069067642092705, -0.0036788159050047398, -0.017172712832689285, 0.00013692093489225954, 0.0018099774606525898, -0.019865605980157852, -0.013655764982104301, 0.00711850868538022, -0.004274784121662378, -0.04585276171565056, -0.002514470601454377, -0.010352187789976597, 0.01356747280806303, -0.0323147177696228, 0.00784323550760746, 0.004506549332290888, -0.019173989072442055, 0.013427678495645523, 0.009586994536221027, -0.00615833792835474, 0.01206651609390974, -0.02326483279466629, -0.001695014419965446, 0.018379364162683487, -0.021675582975149155, -0.013405605219304562, -0.019129842519760132, -0.03637613356113434, 0.01715799793601036, 0.0005646982463076711, -0.04355718195438385, -0.02068966068327427, 3.359793481649831e-05, -0.03193212300539017, 0.01200029719620943, -0.0042968569323420525, 0.005841959733515978, 0.028989069163799286, -0.00554765434935689, 0.00044651629286818206, 0.016201505437493324, 0.015539318323135376, 0.019350571557879448, 0.0006244790274649858, 0.025118954479694366, -0.0032152850180864334, -0.01963016204535961, -0.00019624183187261224, 0.007214157842099667, -0.02519253082573414, -0.013780844397842884, 0.011845787055790424, 0.004811891354620457, 0.03393339738249779, 0.0198950357735157, 0.003940011840313673, -0.012522689066827297, 0.0010098349303007126, -0.003866435494273901, 0.011588269844651222, 0.015966061502695084, -0.00223672017455101, -0.014509250409901142, 0.015362734906375408, -0.0044440096244215965, 0.011801641434431076, -0.020910389721393585, 0.007916811853647232, 0.005128269549459219, 0.015495172701776028, 0.012765491381287575, -0.023941734805703163, -0.012419682927429676, -0.015671756118535995, -0.020645514130592346, 0.028017861768603325, -0.01241232454776764, 0.0024133033584803343, 0.0034580868668854237, 0.0019111448200419545, -0.0014926795847713947, -0.005860353820025921, -0.003910581115633249, -0.027252668514847755, 0.0008576239342801273, -0.006599795538932085, -0.01689312234520912, 0.012853782624006271, -0.004951686132699251, 0.012699272483587265, -0.007041253615170717, 0.01446510385721922, 0.010823076590895653, 0.02355913631618023, -0.019306426867842674, 0.03681758791208267, -0.004179134964942932, -0.04526415094733238, -0.009425126016139984, -0.012471185997128487, -0.005463041830807924, 0.029798408970236778, -0.026590481400489807, 0.011404328979551792, -0.05023790895938873, 0.018511801958084106, -0.018717816099524498, 0.007791731972247362, -0.017069706693291664, -0.017246289178729057, -0.014398885890841484, 0.02269093692302704, -0.009035171940922737, 0.2841811776161194, -0.02029234915971756, -0.0062208776362240314, 0.004076127894222736, -0.02279394306242466, -0.003489356953650713, 0.015524603426456451, -0.0010135137708857656, 0.00046743956045247614, 0.01671653985977173, -0.013221664354205132, -0.003984157461673021, -0.04882524535059929, -0.0074128140695393085, 0.0051245903596282005, -0.012456471100449562, -0.04555845633149147, -0.007467996329069138, -0.028120869770646095, -0.0024648066610097885, 0.02455977536737919, -0.01845294050872326, 0.007111151237040758, -0.008991026319563389, 0.008181686513125896, -0.01958601549267769, 0.011992939747869968, 0.009741504676640034, 0.0016775400144979358, 0.004429294262081385, -0.03178497031331062, -0.011522051878273487, 0.027414536103606224, -0.023941734805703163, 0.002118997974321246, -0.010609705001115799, 0.015024283900856972, 0.015421596355736256, 0.01689312234520912, 0.0038333262782543898, 0.0008921128464862704, 0.00013266729365568608, 0.004970080219209194, 0.021719729527831078, -0.023514991626143456, 0.008424488827586174, -0.0055954791605472565, -0.0127802062779665, -0.0010889294790104032, 0.0008930325857363641, -0.02826802060008049, -0.009800365194678307, 0.009020457044243813, 0.026443328708410263, 0.029092077165842056, 0.0062392717227339745, 0.016907837241888046, -0.013324671424925327, -0.005919214803725481, -0.003807574510574341, -0.0005150342476554215, 0.023250116035342216, -0.004087164532393217, 0.019600730389356613, -0.022852804511785507, 0.01326580997556448, -0.018438225612044334, -0.021719729527831078, -0.008659932762384415, -0.015392165631055832, -0.000212796512641944, -0.01795262098312378, 0.006614510901272297, -0.02455977536737919, -0.02068966068327427, -0.020174626260995865, 0.030122144147753716, 0.0012967826332896948, 0.008865945972502232, 0.047942329198122025, -0.02045421674847603, 0.00025751712382771075, 0.01531858928501606, -0.012831710278987885, -0.014546038582921028, -0.02018934115767479, 0.004256390035152435, -0.0070007867179811, -0.011507336050271988, 0.008968953043222427, 0.010285968892276287, -0.011014374904334545, 1.9285042071714997e-05, -0.007938885129988194, 0.01602492295205593, 0.027649980038404465, 0.004146025516092777, 0.031726107001304626, -0.016495810821652412, 0.030519457533955574, -0.01038161851465702, -0.0019626482389867306, 0.0011983743170276284, 0.008991026319563389, 0.007887381128966808, 0.003206087974831462, -0.001030068495310843, 0.0074496022425591946, -0.000607464462518692, -0.02536911517381668, 0.01718742772936821, -0.05209203436970711, -0.004160740878432989, -0.005621230695396662, 0.004513907246291637, -0.013847063295543194, 0.0016260365955531597, -0.000971207395195961, 0.003792859148234129, -0.03343307971954346, 0.02018934115767479, -0.026619911193847656, 0.019276995211839676, 0.02002747356891632, 0.011750138364732265, 0.009403053671121597, -0.020307064056396484, -0.016010206192731857, 0.007754943799227476, -0.05176829919219017, 0.034492578357458115, -0.006765342317521572, 0.04361604154109955, -0.02332369238138199, -0.015245012938976288, -0.0007293252274394035, -0.005930251441895962, -0.015230298042297363, 0.004609556403011084, -0.017967337742447853, -0.013236379250884056, 0.00146232929546386, 0.00839505810290575, 0.000916025135666132, 0.007526857312768698, -0.010388975962996483, 0.0019368965877220035, -0.003951048478484154, 0.017099136486649513, -0.012404967099428177, -0.049148980528116226, -0.010801003314554691, 0.002115319250151515, -0.011499978601932526, -0.0019663271959871054, -0.011551481671631336, -0.03987836465239525, -0.024088887497782707, 0.021734444424510002, 0.025943009182810783, -0.04655909538269043, -0.01051405631005764, 0.01152940932661295, -0.03110806830227375, -0.011963509023189545, -0.018747245892882347, -0.19318197667598724, 0.014803554862737656, 0.04055526852607727, -0.010116743855178356, 0.005886105354875326, 0.0026542656123638153, 0.000934419222176075, 0.005150342360138893, -0.015936629846692085, 0.013184876181185246, 0.012022370472550392, 0.02910679206252098, -0.024942371994256973, -0.02960710972547531, 0.009351549670100212, -0.008417130447924137, -0.012294602580368519, 0.02326483279466629, 0.02873891033232212, 0.020410070195794106, 0.02787070907652378, -0.011794283986091614, 0.006886743474751711, 0.0423799604177475, -0.01418551430106163, 0.01658410206437111, -0.010528771206736565, 0.01608378253877163, 0.015760047361254692, -0.010293327271938324, -0.001835729111917317, -0.010639135725796223, 0.018997404724359512, 0.01734929531812668, -0.013589546084403992, -0.017099136486649513, -0.0008176168194040656, 0.008917449973523617, -0.004168098326772451, 0.030460596084594727, 0.003001913893967867, 0.0030570959206670523, -0.026678772643208504, 0.006007506512105465, 0.006022221874445677, 0.01492127776145935, 0.0043152510188519955, 0.0009252221789211035, 0.009888657368719578, 0.005775740835815668, 0.00789473857730627, -0.02847403474152088, 0.007221515756100416, 0.016113214194774628, 0.045676179230213165, -0.00447344034910202, -0.0031968909315764904, 0.016245651990175247, -0.00506572937592864, -0.010116743855178356, -0.01698141358792782, -0.030284011736512184, 0.013788201846182346, 0.0057794200256466866, -0.019806744530797005, 0.003616275964304805, -0.016260366886854172, 0.012772848829627037, -0.012625696137547493, -0.004300535656511784, 0.006688087247312069, -0.01734929531812668, 0.029386380687355995, -0.020012758672237396, 0.020351208746433258, 0.009807723574340343, 0.002462967298924923, -0.003145387629047036, 0.014406243339180946, -0.01734929531812668, -0.031225789338350296, 0.0410555861890316, -0.019865605980157852, -0.029945561662316322, 0.016010206192731857, 0.01356747280806303, -0.009785650297999382, -0.016495810821652412, -0.016495810821652412, 0.015392165631055832, 0.03410997986793518, -0.04211508482694626, -0.0161867905408144, -0.01839407905936241, 0.007681367453187704, 0.01718742772936821, 0.004447688348591328, -0.0267964955419302, -0.0008879741653800011, 0.01708442158997059, -0.004819248802959919, -0.007990388199687004, -0.014170798473060131, 0.015995491296052933, -0.002887870417907834, -0.0006033258396200836, 0.01164713129401207, 0.025884149596095085, 0.07080984860658646, -0.013486539013683796, -0.014943350106477737, 0.0043336451053619385, 0.038701143115758896, 0.03169667720794678, 0.016304511576890945, 0.009395696222782135, -0.01642223447561264, -0.010521413758397102, 0.0280031468719244, -0.012507974170148373, -0.011617700569331646, -0.011286607012152672, 0.00844656117260456, 0.023514991626143456, -0.012059158645570278, -0.004539658781141043, -0.06851426512002945, -0.01765831559896469, 0.004050376359373331, 0.01114681176841259, -0.014347381889820099, 0.004061412997543812, -0.0014816430630162358, 0.03316820412874222, -0.002253274666145444, 0.03614068776369095, -0.030092714354395866, -0.023456130176782608, -0.00784323550760746, 0.005301173776388168, 0.03405112028121948, 0.01464904472231865, -0.0013179357629269361, -0.008667290210723877, 0.013258452527225018, 0.03381567448377609, -0.01926228031516075, -0.0073944199830293655, -0.021543145179748535, -0.03016629070043564, -0.008122825995087624, -0.011242461390793324, -0.03216756507754326, 0.01698141358792782, 0.006011185236275196, 0.003027665428817272, 0.025589844211935997, 0.00876293983310461, 0.00927797332406044, -0.002034385222941637, -0.009667928330600262, -0.016701824963092804, -0.013206949457526207, -0.0030111109372228384, 0.019747883081436157, -0.039495766162872314, 0.013170161284506321, 0.011190958321094513, -0.008520137518644333, -0.005510866176337004, -0.00164351100102067, -0.030696040019392967, -0.022440776228904724, 0.006607153452932835, -0.01286849845200777, -0.003998872824013233, -0.033697955310344696, -0.010705354623496532, 0.003822289640083909, -0.03116692788898945, 0.02710551582276821, -0.00035316633875481784, -0.002359960461035371, -0.003331167856231332, -0.021543145179748535, 0.023573853075504303, -0.021351847797632217, 0.014023646712303162, -0.044145792722702026, 0.018776675686240196, 0.008623144589364529, -0.0026487475261092186, -0.028797771781682968, -0.01655467227101326, 0.014707906171679497, 0.03684702143073082, -0.026046017184853554, 0.03755335137248039, -0.009174967184662819, 0.0448521226644516, -0.02032177895307541, -0.009123463183641434, -0.02669348753988743, -0.014281162992119789, 0.009623782709240913, -0.014134010300040245, -0.00754157267510891, -0.0193211417645216, 0.013287883251905441, -0.052916087210178375, 0.02973954752087593, 0.012640411034226418, 0.010418406687676907, 0.010308042168617249, 0.011867860332131386, -0.03169667720794678, 0.013192233629524708, 0.005617551971226931, 0.02350027672946453, -0.019747883081436157, -0.015142005868256092, 0.025148386135697365, -0.001328972284682095, 0.024074170738458633, -0.004344681743532419, 0.02763526514172554, -0.0033440436236560345, -0.003634670050814748, -0.07186935096979141, 0.02166086807847023, -0.0127802062779665, 0.011867860332131386, -0.0011413526954129338, -0.01889439858496189, 0.00789473857730627, 0.00591553607955575, 0.007754943799227476, -0.02239663153886795, -0.02926865965127945, 0.01692255400121212, 0.005882426630705595, -0.020233487710356712, -0.02539854496717453, -0.03914260119199753, 0.008652575314044952, 0.006489431485533714, 0.017010845243930817, 0.017231574282050133, 0.011691276915371418, -0.022676222026348114, -0.00012312537000980228, -0.00289522809907794, -0.0261048786342144, 0.012772848829627037, -0.006139943841844797, 0.007813804782927036, -0.003906902391463518, 0.00355925434269011, 0.010940798558294773, -0.050708796828985214, -0.0036125972401350737, 0.03955462947487831, 0.006842597387731075, -0.017467018216848373, 0.006765342317521572, 0.005128269549459219, 0.01671653985977173, -0.028091438114643097, -0.010690638795495033, -0.027752988040447235, 0.010043167509138584, 0.007548930123448372, -0.0050878021866083145, 0.013435035943984985, 0.005109875462949276, 0.01918870396912098, -0.012839067727327347, -0.012324033305048943, 0.036022964864969254, 0.013096584938466549, 0.027561688795685768, -0.01388385146856308, 0.0011192797683179379, -0.036964740604162216, 0.0015864893794059753, 0.022278908640146255, -0.01581890881061554, -0.014244374819099903, 0.03378624469041824, 0.014325309544801712, 0.03087262250483036, -0.031755540519952774, -0.013346743769943714, 0.016701824963092804, -0.01865895465016365, -0.005176093894988298, -0.008483349345624447, -0.027561688795685768, -0.006588759366422892, 0.01795262098312378, -0.014935992658138275, 0.0013427678495645523, 0.0012011333601549268, 0.00347096286714077, -0.0028308487962931395, -0.022220049053430557, -0.03240301087498665, 0.007015502080321312, 0.008983668871223927, -0.01044783741235733, -0.038171395659446716, 0.013677837327122688, 0.01708442158997059, -0.005602836608886719, -0.005223918706178665, 0.025383830070495605, -0.00628341780975461, 0.012530047446489334, -0.02013048157095909, 0.00982979591935873, -0.0020693340338766575, 0.01007995568215847, 0.012404967099428177, 0.0323147177696228, -0.006507825572043657, -0.0032851826399564743, 0.027855994179844856, 0.0033771530725061893, 0.009572278708219528, 0.011507336050271988, -0.009027814492583275, -0.0112130306661129, -0.0205277930945158, 0.012154807336628437, -0.00307916896417737, -0.032756175845861435, -0.008372984826564789, 0.0140015734359622, 0.008520137518644333, 0.010764215141534805, 0.0063128480687737465, 0.022014034911990166, -0.01584833860397339, -0.0021465891040861607, -0.0031784968450665474, -0.029798408970236778, -0.017702462151646614, 0.0186883844435215, 0.018335217610001564, 0.02519253082573414, 0.015480457805097103, 0.013905923813581467, 0.03319763392210007, -0.008247905410826206, 0.0047346362844109535, -0.001872517284937203, 0.020145196467638016, 0.01621622033417225, 0.02866533398628235, 0.0010889294790104032, -0.02660519629716873, -0.0323147177696228, -0.012625696137547493, 0.000566997507121414, -0.008910092525184155, 0.01821749657392502, 0.0014972781063988805, 0.08740866929292679, -0.007563645485788584, -0.007353953085839748, -0.008637859486043453, -0.016407519578933716, 0.006242950446903706, 0.0023912303149700165, 0.0063496362417936325, -0.0267670638859272, -0.014406243339180946, -0.004307893570512533, -0.016363373026251793, -0.010396333411335945, -0.013677837327122688, -0.0048302854411304, -0.0028345277532935143, -0.025707565248012543, 0.024692213162779808, -0.010528771206736565, 0.01782018505036831, 0.027649980038404465, -0.004981116857379675, 0.015377450734376907, 0.0024133033584803343, -0.017496448010206223, -0.0003800676786340773, 0.02176387421786785, -0.012559477239847183, -0.01805562898516655, 0.01965959183871746, -0.006993429269641638, 0.003423138288781047, -0.020513078197836876, -0.02516310103237629, 0.003195051569491625, 0.01303036604076624, -0.022514352574944496, 0.015127290971577168, 0.026575766503810883, 0.03658214583992958, -0.010646493174135685, 0.025751711800694466, -0.03131408244371414, -0.020777951925992966, 0.006471037399023771, -0.0064232125878334045, 0.0011946954764425755, 0.0037652680184692144, -0.0017593937227502465], "a9c9ac03-52ba-4828-a891-4f63dcf7e4ea": [-0.026015324518084526, 0.012372084893286228, -0.0034523389767855406, 0.01925509423017502, -0.01947176828980446, 0.0013894219882786274, -0.010978148318827152, -0.040734708309173584, -0.007699149195104837, -0.0002579774591140449, 0.007059960626065731, 0.015224958769977093, -0.00028686734731309116, -0.002056597266346216, -0.020136235281825066, -0.01376602053642273, 0.007641369476914406, 0.009288091212511063, 0.01532607339322567, -0.017738377675414085, 0.002159517491236329, 0.009374761022627354, 0.008226389065384865, -0.0163805540651083, 0.005741860717535019, 0.009656437672674656, 0.024830838665366173, -0.022562984377145767, 0.010862588882446289, 0.0020638196729123592, 0.04694603011012077, 0.002600087784230709, 0.00840695109218359, -0.016351664438843727, -0.012913770042359829, 0.00547462934628129, 0.006489385850727558, -0.007590812165290117, 0.0009316981304436922, 0.012920992448925972, -0.0019049254478886724, -0.007265801075845957, -0.003161634551361203, 0.01042201928794384, 0.0037087365053594112, 0.028239842504262924, 0.003307889448478818, -0.016972795128822327, -0.029482107609510422, 0.026087548583745956, 0.015571637079119682, 0.021624064072966576, -0.020251795649528503, -0.04249699041247368, 0.014531602151691914, 0.004900443367660046, 0.016987239941954613, 0.005543242674320936, -0.004979890305548906, -0.01895175129175186, 0.0264053363353014, 0.004059026017785072, -0.026997579261660576, -0.012068741023540497, 0.00748969754204154, -0.03515896573662758, -0.019731778651475906, 0.01122371293604374, -0.005676858592778444, -0.027012024074792862, 0.01055202353745699, 0.022534094750881195, -0.005196564365178347, 0.004015691112726927, 0.0015717892674729228, -0.012285415083169937, -0.002338273450732231, 0.023704133927822113, 0.02861541137099266, 0.004582654684782028, 0.0170016847550869, -0.01398269459605217, 0.012769320048391819, -0.023920807987451553, 0.013794910162687302, 0.020656254142522812, 0.009468653239309788, 0.049806129187345505, 0.005868253763765097, -0.020974041894078255, -0.016062764450907707, 0.02004956640303135, 0.013939360156655312, 0.01895175129175186, 0.025726424530148506, -0.0032230254728347063, -0.027618711814284325, 0.03432115912437439, -0.021624064072966576, -0.027156474068760872, -0.0007163783884607255, 0.007525810040533543, 0.0011375384638085961, 0.005099061410874128, -0.024787504225969315, -0.015051620081067085, 0.0036527623888105154, -0.024281932041049004, 0.007850821129977703, -0.004553765058517456, 0.009634770452976227, 0.0288320854306221, -0.008674181997776031, 0.001687348703853786, -0.004864330869168043, -0.025509750470519066, 0.0556996613740921, -0.03487006574869156, -0.03926132619380951, -0.013274893164634705, -0.006612167693674564, 0.021219605579972267, 0.018287284299731255, -0.012270970270037651, 0.011938736774027348, 0.03715236485004425, -0.009981448762118816, -0.0025675867218524218, -0.021956296637654305, -0.020425135269761086, 0.07488252967596054, -0.01848951354622841, 0.012754875235259533, -0.016496112570166588, -0.001111357007175684, 0.007619701791554689, -0.0001574271882418543, 0.003085798816755414, -0.0009777413215488195, -0.010920369066298008, 0.020728478208184242, 0.024455271661281586, 0.00032817080500535667, -0.01287765707820654, -0.01261764857918024, 0.010689250193536282, 0.008948635309934616, 0.011014261282980442, 0.021046265959739685, 0.004170974250882864, -0.00804582703858614, -0.009974226355552673, -0.0032699715811759233, -0.033136676996946335, -0.008305836468935013, 0.0012756681535393, 0.026448670774698257, 0.014228258281946182, -0.036401230841875076, -0.01652500219643116, 0.001797491335310042, 0.008710294030606747, 0.00962754711508751, -0.00023450444859918207, 0.015918316319584846, 0.03747015446424484, -0.024830838665366173, 0.0007448168471455574, 0.01731947436928749, 0.010183677077293396, 0.00010765988554339856, 0.04139917716383934, -0.00582853052765131, 0.019110646098852158, -0.025105291977524757, 0.01272598560899496, 0.011411496438086033, -0.008984748274087906, 0.01419936865568161, 0.023270785808563232, -0.02650645188987255, 0.007038293406367302, 0.003266360377892852, 0.03232776001095772, -0.005218232050538063, -0.010508688166737556, 0.008435840718448162, -0.011014261282980442, 0.025004178285598755, -0.019052866846323013, -0.03122994489967823, 0.0248019490391016, 0.010104230605065823, -0.0051748971454799175, -0.535271406173706, -0.04093693941831589, -0.02290966361761093, 0.01094925869256258, 0.037354595959186554, -0.0064171613194048405, 0.023689689114689827, 0.008392506279051304, -0.015586081892251968, 0.019962897524237633, -0.019009530544281006, 0.016467222943902016, 0.006576055660843849, -0.0083708381280303, -0.01432937290519476, -0.007988047786056995, -0.006326880306005478, 0.016785012558102608, 0.005987424403429031, 0.004521263763308525, -0.02127738483250141, 0.021912962198257446, -0.031287722289562225, 0.013924915343523026, 0.02004956640303135, 0.010739807039499283, 0.011649837717413902, -0.022649655118584633, -0.013246003538370132, 0.023039666935801506, -0.04411482438445091, 0.028153173625469208, -0.009721439331769943, -0.0030713537707924843, 0.06332658231258392, -0.018070610240101814, -0.04983501881361008, 0.009851443581283092, 0.030449917539954185, 0.05335957929491997, -0.007460807450115681, -0.008009715005755424, 0.019847337156534195, -0.007153852842748165, 0.016987239941954613, -0.03521674498915672, 0.006814396940171719, -0.005803251639008522, 0.011743729934096336, -0.019009530544281006, 0.022721879184246063, -0.010140342637896538, -0.012913770042359829, 0.0136937964707613, -0.002132433233782649, 0.0061210403218865395, 0.015629416331648827, -0.02156628482043743, 0.00860917940735817, -0.005517964251339436, -0.01928398571908474, 0.021190715953707695, -0.025509750470519066, 0.003641928546130657, 0.009381983429193497, 0.010241457261145115, -0.0037304037250578403, -0.020569583401083946, 0.013751575723290443, -0.025885319337248802, -0.024339711293578148, 0.006688003893941641, 0.00639188289642334, 0.0002523349248804152, 0.006373826414346695, 0.01775282248854637, 0.04388370364904404, -0.04532819986343384, 0.012660983018577099, -0.00555768795311451, 0.025625310838222504, -0.02930876798927784, -0.021927407011389732, 0.014668828807771206, 0.026174217462539673, 0.015123844146728516, -0.010501465760171413, -0.019110646098852158, -0.017955051735043526, -0.010905924253165722, 0.023660799488425255, -0.006604945287108421, 0.038625750690698624, -0.03281888738274574, -0.008233611471951008, 0.015658307820558548, -0.04281478002667427, 0.017131689935922623, 0.023371901363134384, -0.011592058464884758, -0.037065695971250534, 0.014755498617887497, 0.01298599410802126, 0.010942036285996437, 0.027257587760686874, -0.0045429314486682415, -0.036083441227674484, -0.019240649417042732, 0.00795193575322628, 0.0007655814406462014, -0.0022516038734465837, 0.0058465865440666676, -0.019587328657507896, -0.02357413060963154, 0.005171285942196846, -0.03775905445218086, 0.014820501208305359, -0.006994958501309156, -0.004680158104747534, -0.01695835031569004, 0.02029513008892536, -0.007258578669279814, 0.015484967269003391, 0.03238553926348686, 0.013932137750089169, 0.005991035606712103, 0.02756093069911003, 0.00531212380155921, -0.017117245122790337, 0.016496112570166588, -0.025740869343280792, -0.00408430490642786, 0.025899764150381088, -0.020092900842428207, -0.013007662259042263, -0.004449039231985807, -0.019702887162566185, 0.00402291351929307, 0.005936867091804743, -0.04382592439651489, -0.024469716474413872, -0.0030605201609432697, 0.005478240549564362, 0.015961650758981705, -0.0044562616385519505, -0.022967442870140076, 0.005272400565445423, 0.00515684112906456, -0.021190715953707695, 0.021234050393104553, -0.007005792111158371, -0.012971549294888973, -0.010429241694509983, 0.020367354154586792, 0.023906363174319267, -0.009331426583230495, -0.002574809128418565, 0.00526517815887928, -0.0001866556121967733, -0.013534901663661003, -0.0019085367675870657, -0.018677297979593277, -0.01583164557814598, 0.014018806628882885, 0.041312508285045624, -0.014401597902178764, -0.004362369421869516, 0.012740430422127247, -0.0070491270162165165, -0.023920807987451553, -0.00016735808458179235, 0.008356393314898014, -0.0016792233800515532, -0.0058321417309343815, -0.014062141999602318, -0.01597609557211399, -0.004669324494898319, 0.005882698576897383, -9.581053018337116e-05, -0.007677481509745121, 0.01042201928794384, -0.000761518778745085, -0.005326569080352783, -0.008905300870537758, 0.014076586812734604, 0.015369407832622528, 0.04165918380022049, -0.0031796908006072044, -0.018070610240101814, 0.004033747594803572, -0.021884072571992874, 0.01859062910079956, -0.018475068733096123, -0.007742483634501696, 0.026520896703004837, 0.027430927380919456, 0.004698214121162891, 0.013376007787883282, 0.00703468220308423, 0.02415192686021328, 0.01073258463293314, 0.012552645988762379, -0.01707391068339348, -0.004734326619654894, 0.02919320948421955, -0.026174217462539673, 0.005460184533149004, -0.013007662259042263, 0.019226204603910446, 0.03125883266329765, -0.009540878236293793, -0.029250988736748695, -0.0029052370227873325, 0.008869188837707043, 0.014755498617887497, 0.008616402745246887, -0.017998386174440384, 0.007836376316845417, -0.01031368225812912, 0.01463271677494049, 0.0150371752679348, -0.01218430045992136, 0.005229065660387278, -0.04587710648775101, 0.005229065660387278, 0.004113194532692432, 0.01710280030965805, 0.02288077399134636, 0.004459872841835022, -0.030883265659213066, -0.00873196218162775, -0.009685327298939228, -0.03570787236094475, -0.0024050811771303415, -0.02204296737909317, -0.010082563385367393, 0.028644300997257233, -0.004391259513795376, 0.021956296637654305, -0.002489945152774453, 0.010212567634880543, 0.011281492188572884, -0.028817640617489815, -0.0035299803130328655, 0.01827283948659897, 0.012169855646789074, 0.03507229685783386, -0.009685327298939228, 0.0015356768853962421, 0.016943905502557755, -0.024484161287546158, 0.032241091132164, -0.026231996715068817, 0.0381346233189106, -0.021378500387072563, -0.016496112570166588, 0.011541500687599182, 0.014242703095078468, 0.020612919703125954, 0.03923243656754494, 0.03137439489364624, 0.016553891822695732, -0.00936753861606121, -0.005153229925781488, 0.0010644110152497888, -0.022562984377145767, -0.0030984380282461643, -0.011743729934096336, -0.033714473247528076, -0.034812286496162415, 0.0366901271045208, 0.002121599391102791, 0.019399544224143028, -0.029539886862039566, 0.004477929323911667, -0.00413125054910779, 0.04281478002667427, 0.014459377154707909, 0.0427858904004097, -0.0048246076330542564, -0.03816351294517517, 0.013361562974750996, 0.028572076931595802, 0.022924108430743217, -0.01436548586934805, -0.02753204107284546, -0.002683146158233285, -0.019486214965581894, 0.00871751643717289, 0.01274765282869339, 0.020901817828416824, 0.02113293670117855, 0.018287284299731255, 0.013498789630830288, -0.018677297979593277, 0.0010174649069085717, 0.0020836815237998962, -0.012935437262058258, -0.02978545054793358, 0.008327503688633442, 0.003806239692494273, 0.015080509707331657, -0.009873111732304096, -0.023920807987451553, 0.044432613998651505, -0.010349794290959835, 0.005041281692683697, 0.002303966786712408, 0.0016837375005707145, -0.00061752088367939, -0.029294323176145554, -0.034552279859781265, 0.014206591062247753, -0.012920992448925972, -0.03264554589986801, 0.005987424403429031, 0.007561922073364258, 0.003791794879361987, 0.025726424530148506, 0.01841728948056698, -0.03452339023351669, -0.018576182425022125, -0.012595981359481812, -0.015224958769977093, -0.006460496224462986, 0.024931954219937325, -0.02657867595553398, -0.0014183118473738432, -0.037499044090509415, -0.0045898775570094585, -0.03929021582007408, -0.01844617910683155, 0.01695835031569004, -0.0264053363353014, 0.013571014627814293, -0.01205429621040821, 0.0300743505358696, -0.018186170607805252, -0.010414795950055122, -0.011209268122911453, 0.004546542651951313, -0.02215852588415146, 0.018576182425022125, -0.016221659258008003, -0.024541940540075302, 0.008450285531580448, -0.004820996429771185, 0.022432981058955193, 0.006626612972468138, -0.024498606100678444, -0.036112330853939056, -0.00639188289642334, 0.03423449024558067, -0.0014842167729511857, 0.004517652560025454, 0.02004956640303135, -0.0029160708654671907, 0.032992225140333176, -0.014004361815750599, 0.031201055273413658, 0.0320388600230217, 0.0115487240254879, 0.002372580114752054, 0.0021577118895947933, 0.014040474779903889, 0.03189441189169884, 0.00791582278907299, -0.001715335762128234, 0.016351664438843727, 0.0035642872098833323, -0.024599719792604446, 0.03050769679248333, -0.01298599410802126, -0.035245634615421295, 0.017521703615784645, -0.006576055660843849, -0.044865962117910385, 0.02753204107284546, 0.01928398571908474, 0.025668645277619362, -0.04928610846400261, 0.0020078455563634634, 0.012603203766047955, 0.013036551885306835, 0.012032628990709782, -0.022895218804478645, -0.0008256181608885527, -0.012595981359481812, 0.01118759997189045, -0.02978545054793358, -0.004759605508297682, 0.000850445416290313, -0.013303782790899277, 0.005153229925781488, -6.500219751615077e-05, -0.012097630649805069, -0.018836192786693573, 0.013484344817698002, 0.0034884512424468994, 0.03189441189169884, 0.04223698377609253, -0.02410859242081642, 0.005247121676802635, 0.030709926038980484, -0.0028763471636921167, -0.024021923542022705, -0.0005344625096768141, -0.009865889325737953, 0.01447382289916277, 0.013534901663661003, 0.016640562564134598, 0.013628793880343437, -0.02978545054793358, 0.02059847302734852, 0.020251795649528503, 0.01978955790400505, 0.022562984377145767, 0.018605073913931847, -0.015066064894199371, -0.0234585702419281, -0.004142084624618292, 0.01497939508408308, -0.009938113391399384, -0.0094036515802145, 0.02839873731136322, -0.0204106904566288, 0.00014659349108114839, -0.017478369176387787, -0.006976902484893799, -0.004282922483980656, 0.013968249782919884, 0.0012305276468396187, -0.007605256978422403, 0.010248679667711258, 0.01885063759982586, -0.03177885338664055, 0.0026506450958549976, 0.03518785536289215, -0.012545423582196236, -0.009396428242325783, 0.006334102712571621, 0.017825046554207802, -0.016004985198378563, -0.026058658957481384, 0.01519606914371252, -0.020020676776766777, 0.01601943001151085, -0.006009092088788748, -0.043594807386398315, 0.03703680634498596, -0.003183302003890276, -0.03726792708039284, -0.015629416331648827, -0.0037051253020763397, -0.006944401189684868, 0.023920807987451553, -0.007908600382506847, -0.024137482047080994, -0.054341837763786316, 0.0030966324266046286, 0.006399105302989483, 0.015123844146728516, -0.02516307309269905, -0.0244408268481493, -0.047408267855644226, -0.006381048820912838, 0.03290555626153946, -0.019370654597878456, 0.013838245533406734, -0.03307889401912689, 0.010638692416250706, 0.023054111748933792, -0.006027148105204105, 0.013888802379369736, -0.01489272527396679, 0.007612479384988546, -0.0022714657243341208, -0.009591435082256794, -0.015051620081067085, -0.0020457636564970016, -0.01885063759982586, -0.007684703916311264, 0.03562120348215103, 0.04581932723522186, 0.013563791289925575, 0.015470522455871105, -0.012552645988762379, -0.026015324518084526, 0.017897270619869232, -0.015961650758981705, -0.026853129267692566, 0.012978771701455116, -0.031432174146175385, 0.01830172911286354, 0.012270970270037651, 0.031316615641117096, 0.008103607222437859, -0.03588121384382248, 0.021002931520342827, 0.03489895537495613, -0.019702887162566185, 0.0024195262230932713, 0.003889298066496849, -0.04680158197879791, 0.0025080014020204544, -0.009129197336733341, -0.01042201928794384, 0.028355402871966362, -0.013376007787883282, -0.014076586812734604, -0.013014884665608406, 0.007265801075845957, -0.002195629756897688, 0.023545240983366966, 0.005005169194191694, 0.023328566923737526, 0.004741549026221037, -0.000980449840426445, 0.010248679667711258, -0.0033638635650277138, -0.006186042446643114, -0.011216490529477596, 0.005608245264738798, 0.013867135159671307, -0.0009195102611556649, -0.007171908859163523, 0.008233611471951008, -0.00660133408382535, 7.786721835145727e-05, 0.01127426978200674, -0.008926968090236187, -0.004972667898982763, -0.006297990679740906, -0.038365740329027176, -0.02571197971701622, -0.02662201039493084, -0.027950944378972054, -0.005026836413890123, 0.022822992876172066, 0.038654640316963196, -0.008103607222437859, 0.0009858666453510523, 0.006297990679740906, -0.031114384531974792, -0.025740869343280792, -0.014444932341575623, 0.012776542454957962, 0.005062948912382126, 0.014950505457818508, 0.05705748498439789, 0.0022118804045021534, -0.005579355172812939, -0.04775494709610939, -0.018937306478619576, -0.012552645988762379, 0.010992594063282013, 0.03261665627360344, -0.008558622561395168, 3.5999481042381376e-05, -0.002538696862757206, 0.020064011216163635, -0.02731536701321602, -0.024123037233948708, 0.04027247056365013, 0.020381798967719078, -0.00851528812199831, -0.003259137971326709, -0.0008879119413904846, -0.051337290555238724, 0.010212567634880543, -0.024383045732975006, -0.004033747594803572, -0.00690106675028801, 0.006828841753304005, -0.03146106377243996, 0.021306276321411133, -0.015398298390209675, 0.012451532296836376, 0.01993400789797306, -0.009129197336733341, -0.007966380566358566, -0.008334726095199585, 0.015008284710347652, 0.019601773470640182, 0.003932632971554995, 0.0368923582136631, -0.005738249514251947, 0.017377253621816635, 0.03391670063138008, 0.0007759637082926929, -0.00732719199731946, 0.00023224743199534714, 0.0006897455314174294, 0.039492446929216385, -0.05509297177195549, -0.020858483389019966, -0.010580913163721561, 0.0009669076534919441, 0.027517596259713173, -0.01133204996585846, -0.00858751218765974, 0.02537974715232849, -0.006413550116121769, -0.005954923573881388, 0.02537974715232849, -0.00201506819576025, -0.0006405424792319536, -0.0077135940082371235, -0.0037881836760789156, -0.028745416551828384, -0.019702887162566185, -0.014950505457818508, 0.0045357090421020985, -0.007016626186668873, -0.03160551190376282, -0.010053672827780247, -0.021667398512363434, 0.013715463690459728, 0.006446050945669413, -0.014878280460834503, 0.005276011768728495, 0.043017007410526276, -0.04157251492142677, 0.014509934931993484, -0.03163440153002739, -0.017377253621816635, -0.021580729633569717, -0.01127426978200674, 0.0003976870502810925, -0.018388399854302406, 0.010580913163721561, -0.04070581868290901, -0.016770565882325172, -0.029554331675171852, -0.02160961925983429, 0.021017376333475113, -0.011072040535509586, 0.031172163784503937, -0.018070610240101814, 0.005731027107685804, 0.01328933797776699, -0.020786257460713387, -0.03830796107649803, 0.004387648310512304, -0.023328566923737526, 0.0033421963453292847, 0.020685143768787384, -0.0039001319091767073, 0.008796963840723038, -0.02189851738512516, -0.029698781669139862, 0.021075157448649406, -0.011498166248202324, -0.009266423992812634, 0.004763216711580753, 0.003641928546130657, -0.009511987678706646, -0.005481851752847433, -0.026463115587830544, -0.014704941771924496, -0.007814708165824413, -0.010017560794949532, -0.010024783201515675, -0.014054919593036175, 0.004391259513795376, 0.027214253321290016, 0.004712659399956465, 0.010436464101076126, -0.021075157448649406, -0.01976066827774048, 0.0006048815557733178, -0.01623610407114029, -0.007821930572390556, -0.03983912244439125, -0.00936753861606121, 0.022577429190278053, 0.040070243179798126, -0.0023093835916370153, -0.034696727991104126, 0.01165706105530262, -0.049401670694351196, -0.026304222643375397, -0.012494866736233234, 0.013087108731269836, 0.03504340723156929, 0.00953365582972765, 0.011541500687599182, 0.026896463707089424, -0.002181184710934758, 0.003058714559301734, -0.0014833139721304178, -0.01164261531084776, -0.013079886324703693, 0.0015627611428499222, 0.024325266480445862, -0.015253848396241665, -0.014791610650718212, 0.00011646226630546153, 0.002771621337160468, 0.01256709173321724, 0.00829861406236887, 0.005770750343799591, 0.014647161588072777, -0.008688626810908318, 0.002701202407479286, -0.009483098052442074, 0.02465749904513359, -0.03929021582007408, -0.013867135159671307, -0.021725177764892578, 0.0031724683940410614, 0.024166371673345566, 0.027589820325374603, -0.021046265959739685, 0.021739624440670013, 0.020165126770734787, -0.0028528741095215082, 0.014163256622850895, -0.015412743203341961, -0.02520640753209591, -0.02146516926586628, 0.006854120641946793, 0.025076402351260185, -0.009836998768150806, -0.003947077784687281, 0.02611643821001053, 0.022577429190278053, 0.019948452711105347, -0.009728661738336086, 0.010544801130890846, -0.015932761132717133, -0.021089602261781693, 0.02425304241478443, -0.021234050393104553, 0.013729908503592014, 0.03718125820159912, 0.014018806628882885, -0.04038803279399872, 0.010458131320774555, 0.008594734594225883, -0.0003791794879361987, -0.05211731791496277, 0.0017063076375052333, 0.02389191836118698, -0.034985627979040146, 0.0016349857905879617, 0.004698214121162891, -0.0003162086068186909, 0.008796963840723038, -0.021884072571992874, 0.014026029966771603, -0.05286845192313194, 0.06321102380752563, 0.008529732935130596, 0.01422103587538004, -0.0354478657245636, 0.0061752088367938995, 0.0061354851350188255, 0.008963081054389477, -0.0009930891683325171, 0.23805248737335205, -0.008529732935130596, -0.0002557204570621252, 0.02360302023589611, -0.009887556545436382, 0.026058658957481384, -0.02134961076080799, 0.006474941037595272, 0.003943466581404209, 0.003026213264092803, -0.017276139929890633, -0.016756121069192886, -0.016727231442928314, 0.0035028960555791855, 0.006063260603696108, -0.01609165407717228, -0.04434594139456749, -0.010667582973837852, -0.01841728948056698, 0.017695043236017227, 0.030998826026916504, -0.019370654597878456, -0.0019590940792113543, 0.0029467663262039423, 0.022851882502436638, 0.01887952722609043, -0.02753204107284546, -0.0006978707970120013, 0.013794910162687302, 0.03981023281812668, -0.014076586812734604, 0.00038369352114386857, 0.011360939592123032, 0.024787504225969315, -0.015224958769977093, -0.00925920158624649, 0.0207718126475811, 0.003176079597324133, 0.03065214678645134, 0.010068117640912533, 0.00869584921747446, 0.002818567445501685, 0.020324019715189934, -0.02012179046869278, -0.019529549404978752, -0.01109370868653059, -0.011938736774027348, 0.010089785791933537, 0.0036888746544718742, 0.005940478295087814, -0.029135428369045258, -0.014387153089046478, 0.013376007787883282, 0.0024646667297929525, -0.007132185623049736, -0.014863835647702217, 0.020526248961687088, 0.016655007377266884, 0.023371901363134384, 0.029872121289372444, -0.01497939508408308, 0.047408267855644226, -0.014156034216284752, 0.024527495726943016, -0.026203107088804245, 0.019486214965581894, -0.0030551033560186625, -0.004033747594803572, 0.01519606914371252, -0.021147381514310837, 0.00936753861606121, -0.0017026964342221618, -0.009143642149865627, -6.302730616880581e-05, -0.028918754309415817, -0.0347256176173687, 0.0017460312228649855, 0.013924915343523026, 0.023689689114689827, 0.011852066963911057, -0.006153541151434183, 6.787989696022123e-05, 0.016077209264039993, -0.014676051214337349, -0.020656254142522812, -0.025480860844254494, -0.0001591199543327093, 0.004452650435268879, -0.026752015575766563, -0.0009641992510296404, 0.0037231813184916973, -0.004788495134562254, 0.005124339833855629, 0.014011584222316742, -0.005001557990908623, 0.008233611471951008, -0.0064713298343122005, 0.006550776772201061, -0.0048246076330542564, 0.031865522265434265, -0.03576565161347389, 0.016683897003531456, -0.010963703505694866, 0.00311468867585063, -0.005055726505815983, -0.007590812165290117, -0.015846090391278267, 0.0118592893704772, -0.01681390218436718, -0.030189909040927887, 0.0016115127364173532, -0.03810573369264603, 0.012415419332683086, 0.0028637079522013664, -0.009519211016595364, 0.012119298800826073, -0.008840298280119896, -0.011021483689546585, -0.012025406584143639, 0.025914208963513374, 0.016799457371234894, 0.013029329478740692, 0.0004148404113948345, -0.0017731154803186655, -0.019442878663539886, -0.019601773470640182, -0.011873734183609486, -0.007229688577353954, -0.0167416762560606, -0.035361193120479584, 0.020641809329390526, -0.029496552422642708, 0.00840695109218359, -0.0264053363353014, 0.010573690757155418, 0.015253848396241665, 0.006684392690658569, -0.009158086962997913, 0.013498789630830288, -0.024065257981419563, 0.013975472189486027, 0.03232776001095772, -0.007663036696612835, 0.010140342637896538, 0.008890856057405472, -0.003546230960637331, 0.02520640753209591, -0.007814708165824413, -0.010190899483859539, -0.00464765727519989, -0.05494852364063263, -0.01623610407114029, -0.019269540905952454, -0.014134366996586323, 0.02516307309269905, -0.024715280160307884, -0.015094954520463943, -0.04587710648775101, 0.020092900842428207, 0.016496112570166588, -0.038914646953344345, -0.013152111321687698, 0.008522510528564453, -0.027430927380919456, -0.022288531064987183, -0.028369847685098648, -0.1847795844078064, 0.013050996698439121, 0.006272711791098118, -0.012343195267021656, 0.02465749904513359, -0.000623840547632426, 0.0052146208472549915, 0.006738561205565929, -0.01084092166274786, -0.013679350726306438, 0.02650645188987255, -0.0003588662948459387, -0.013520456850528717, -0.005669636186212301, -0.026304222643375397, -0.0167416762560606, -0.006066871806979179, 0.01909620128571987, 0.03209663927555084, 0.02415192686021328, 0.061362072825431824, 0.004019302316009998, 0.022707434371113777, 0.0064641074277460575, 0.004178196657449007, -0.022707434371113777, 0.00039339871727861464, 0.016640562564134598, 0.030334359034895897, -0.019052866846323013, -0.002811345038935542, -0.011144265532493591, 0.0035859544295817614, 0.00039069028571248055, -0.008544177748262882, -0.01489272527396679, -0.001096912077628076, -0.00660133408382535, -0.009483098052442074, 0.0234585702419281, 0.0022949387785047293, 0.03021879866719246, 0.00408430490642786, 0.013246003538370132, 0.0024917509872466326, 0.026997579261660576, 0.008919745683670044, -0.024339711293578148, 0.01714613474905491, -0.028557632118463516, 0.0223751999437809, -0.04749493673443794, 0.018243949860334396, 0.010573690757155418, 0.04021469131112099, 0.027864275500178337, 0.005044892895966768, -0.007258578669279814, 0.009410873986780643, -0.005084616132080555, -0.01604831963777542, -0.017305029556155205, -0.007146630436182022, 0.018200615420937538, -0.006557999178767204, -0.0012955298880115151, -0.021508503705263138, 0.02952544204890728, -0.0183450635522604, -0.008840298280119896, 0.0025820317678153515, -0.0150371752679348, 0.030045459046959877, -0.02818206325173378, 0.03452339023351669, 0.00797360297292471, 0.011563168838620186, -0.002240770263597369, 0.0469171404838562, -0.012653760612010956, -0.022100746631622314, 0.038770198822021484, 0.0024466104805469513, -0.004059026017785072, -0.011953181587159634, 0.0038676306139677763, 0.00793749000877142, -0.021046265959739685, -0.004311812575906515, -0.008847521618008614, 0.05058615282177925, -0.029554331675171852, 0.014286038465797901, -0.029294323176145554, 0.008616402745246887, 0.0273875929415226, -0.005575743969529867, -0.027300922200083733, 0.0013226141454651952, -0.017059465870261192, 0.011462054215371609, -0.011960403993725777, -0.01815728098154068, -0.0010093396995216608, -0.005676858592778444, -0.014026029966771603, -0.0207718126475811, 0.01703057624399662, 0.030681036412715912, -0.012126521207392216, -0.026853129267692566, -0.03232776001095772, 0.015990540385246277, 0.0064316061325371265, 0.01040757354348898, -0.0067530060186982155, 0.0032121918629854918, -0.006352159194648266, 0.01760837249457836, 0.002092709532007575, 0.020829591900110245, -0.03446561098098755, 0.009006415493786335, 0.03278999775648117, 0.01419936865568161, -0.023357456550002098, -0.03966578468680382, -0.022201862186193466, 0.013614349067211151, 0.015094954520463943, -0.009851443581283092, 0.02451305091381073, -0.005326569080352783, 0.0003602204960770905, 0.01827283948659897, 0.027026468887925148, -0.002845651702955365, -0.017189469188451767, -0.040474701672792435, 0.02498973347246647, 0.04645490273833275, 0.02484528347849846, -0.03773016482591629, 0.022707434371113777, -0.014964950270950794, 0.030132129788398743, 0.016900571063160896, -0.03917465731501579, 0.014921614900231361, -0.01856173761188984, -0.003997635096311569, 0.016351664438843727, -0.00023495586356148124, 0.020324019715189934, 0.021595174446702003, 0.04293033853173256, 0.06176653131842613, -0.01098537165671587, 0.005283234175294638, -0.012581536546349525, 0.0014119921252131462, -0.003286222228780389, 0.0019320097053423524, 0.007179131265729666, -0.010371461510658264, -0.013188223354518414, 0.02618866227567196, 0.018056165426969528, -0.00915086455643177, -0.015586081892251968, -0.027474261820316315, -0.016727231442928314, 0.020872928202152252, 0.04434594139456749, -0.013997139409184456, -0.00459348876029253, -0.023805249482393265, -0.004015691112726927, 0.010609802789986134, -0.05081727355718613, 0.027084248140454292, -0.0007023848593235016, 0.016207214444875717, -0.006066871806979179, -0.04267033189535141, -0.015456077642738819, -0.024614164605736732, -0.015210513956844807, -0.003423449117690325, 0.002475500339642167, -0.024166371673345566, -0.01848951354622841, -0.018980640918016434, -0.015297183766961098, 0.02367524430155754, 0.014488267712295055, -0.013137666508555412, 0.035678982734680176, -0.012516533955931664, 0.013376007787883282, -0.028557632118463516, 0.005734638310968876, -0.01844617910683155, -0.00311468867585063, 0.005384348798543215, -0.0029232932720333338, -0.006402716506272554, -0.015629416331648827, -0.002414109418168664, 0.004716270603239536, 0.023805249482393265, 0.009923668578267097, -0.010335349477827549, -0.0005042184493504465, -0.031576622277498245, -0.017420588061213493, -0.0015212319558486342, 0.03830796107649803, 0.016915015876293182, -0.0011610114015638828, 0.004557376261800528, 0.010544801130890846, 0.01014756504446268, 0.004315423779189587, -0.0008838493376970291, 0.030854376032948494, -0.03137439489364624, -0.01794060692191124, -0.07673148065805435, 0.007670259103178978, 0.004257644060999155, 0.0315188430249691, -0.0006892941310070455, 0.0012440697755664587, -0.0020963207352906466, -0.010797587223351002, -0.013997139409184456, -0.014213813468813896, -0.023328566923737526, 0.03443671762943268, 0.0167416762560606, -0.0030496863182634115, -0.03671902045607567, -0.04729270935058594, 0.03570787236094475, -0.02098848670721054, 0.019919561222195625, 0.013975472189486027, 0.015167179517447948, 0.0041998643428087234, 0.027156474068760872, 0.006207709666341543, 0.02396414242684841, 0.01851840317249298, 0.0002717452880460769, 0.0025892541743814945, -0.009006415493786335, -0.029250988736748695, -0.008948635309934616, -0.030998826026916504, -0.0026091160252690315, 0.018691742792725563, 0.0036672072019428015, -0.007778596132993698, -0.002331051044166088, 0.0061752088367938995, 0.004459872841835022, -0.028384292498230934, -0.013751575723290443, -0.018027275800704956, 0.0051351734437048435, 0.005882698576897383, -0.035650093108415604, 0.0035967882722616196, -0.009836998768150806, 0.0010048255790024996, 0.0045501538552343845, 0.026535341516137123, 0.034552279859781265, -0.01200373936444521, 0.018258394673466682, -0.03403226286172867, 0.0037015138659626245, -0.0678911805152893, 0.028196508064866066, -0.00721885496750474, 0.0021974353585392237, -0.002285910537466407, 0.003820684738457203, 0.02389191836118698, 0.016106100752949715, -0.02117627114057541, -0.0005863739643245935, -0.0020457636564970016, -0.02745981700718403, 0.014820501208305359, 0.01573053188621998, 0.001070730620995164, -0.02215852588415146, -0.004983501974493265, -0.011931514367461205, 0.0037340151611715555, -0.0017893660115078092, 0.016770565882325172, -0.028297623619437218, 0.001488730893470347, -0.03926132619380951, 0.014964950270950794, 0.008255278691649437, -0.015701642259955406, -0.03527452424168587, -0.01717502437531948, 0.03801906108856201, -0.029539886862039566, -0.008118052035570145, -0.012841545045375824, -0.008905300870537758, 0.024744169786572456, -0.052897341549396515, 0.016467222943902016, -0.0031869132071733475, 0.03619899973273277, -0.007099684327840805, 0.026390891522169113, 0.0013460871996358037, -0.021884072571992874, 0.015557192265987396, -0.014820501208305359, -0.016727231442928314, 0.005384348798543215, 0.0029955178033560514, -0.04093693941831589, -0.027156474068760872, 0.01151261106133461, -0.0010815643472597003, -0.04307479038834572, 0.017333919182419777, 0.012473199516534805, 0.004033747594803572, -0.0005547757027670741, -0.013000438921153545, 0.020786257460713387, 0.007265801075845957, 0.0063774376176297665, -0.0027156472206115723, -0.014018806628882885, -0.052088428288698196, 0.03729681670665741, 0.05194397643208504, -0.019919561222195625, 0.022360755130648613, 0.007446362636983395, 0.014127143658697605, -0.006814396940171719, 0.004069859627634287, -0.041341397911310196, 0.014018806628882885, 0.037672385573387146, -0.016207214444875717, -0.03602566197514534, -0.01717502437531948, -0.03336779400706291, 0.00984422117471695, 0.009757552295923233, -0.006857731845229864, 0.01692946068942547, -0.024671945720911026, 0.0703757107257843, 0.0007782207685522735, -0.002997323404997587, -0.013441009446978569, -0.009526433423161507, 0.028514297679066658, 0.025365302339196205, -0.013339894823729992, 0.00126212602481246, -0.0013144888216629624, 0.011014261282980442, -0.004506818950176239, 0.0004252227081451565, -0.023776359856128693, -0.013491567224264145, 0.005449350923299789, -0.009656437672674656, 0.04405704513192177, -0.013722686097025871, -0.0024809171445667744, 0.02901986986398697, 0.001069827820174396, 0.028196508064866066, -0.008443063125014305, 0.002914265263825655, -0.007807486224919558, -0.003874853253364563, -0.0137443533167243, 0.0009777413215488195, -0.0034938680473715067, 0.013188223354518414, 0.03336779400706291, -0.00850084237754345, -0.009223089553415775, 0.007171908859163523, -0.008399728685617447, -0.012906547635793686, 0.0034956736490130424, 0.007117740344256163, 0.01913953572511673, -0.007554699666798115, 0.020497359335422516, -0.04891054332256317, -0.004116805735975504, -0.0014634522376582026, -0.007764151319861412, -0.0041276393458247185, 0.004553765058517456, -0.013079886324703693], "c9b38449-e0cc-4a69-a302-65784caaca9c": [-0.011464739218354225, -0.002160488162189722, -0.025525838136672974, -0.02940528281033039, -0.0331488698720932, 0.03432628884911537, -0.017736759036779404, -0.030054371803998947, -0.010732625611126423, 0.013306342996656895, 0.005241778213530779, 0.005864451639354229, 0.0004844588111154735, 0.022008676081895828, -0.009358970448374748, 0.005864451639354229, 0.007932482287287712, 0.004668164066970348, 0.02886185795068741, -0.025405077263712883, 0.008309859782457352, -0.004275691229850054, -0.014770569279789925, -0.029450567439198494, 0.0026548532769083977, -0.004845531657338142, 0.03278658911585808, -0.03689245879650116, -0.02635606937110424, 0.0015868738992139697, 0.03930767625570297, -0.014242240227758884, -0.030129848048090935, -0.04063604772090912, 0.008740071207284927, -0.0201821681112051, 0.017027288675308228, 0.009283495135605335, 0.027382535859942436, 0.013902599923312664, -0.0025774906389415264, 0.012045901268720627, 0.019714219495654106, -0.013064821250736713, -0.00374736194498837, 0.008158909156918526, -0.00794757716357708, 0.016966907307505608, -0.01389505248516798, 0.0012179870391264558, 0.0037152848672121763, 0.022099247202277184, -0.027805199846625328, -0.00997032318264246, 0.013132749125361443, -0.006124842446297407, -0.009426898322999477, 0.025148460641503334, -0.016740482300519943, -0.024635225534439087, 0.012725180946290493, -0.01501963846385479, -0.034628190100193024, 0.0005764446686953306, 0.0020623698364943266, -0.02972227893769741, -0.0018123571062460542, 0.0043813567608594894, -0.0176914744079113, 0.005807844921946526, 0.02117844484746456, 0.03456781059503555, -0.002807691227644682, -0.0014255448477342725, 0.048515696078538895, -0.002377480501309037, -0.0006160693592391908, -0.007189047988504171, 0.015170589089393616, 0.004347392823547125, 0.013834672048687935, -0.001668010139837861, -0.000733999942895025, -0.003958693705499172, -0.000256616942351684, 0.01631781831383705, -0.0034473466221243143, 0.012362898327410221, 0.038613300770521164, -0.012566681951284409, -0.008340050466358662, 0.04136061295866966, -0.005230457056313753, 0.012710086070001125, 0.004622878506779671, -0.0058984155766665936, -0.02123882621526718, 0.01043827086687088, -0.03148840740323067, -0.012483659200370312, -0.015714013949036598, 0.020227452740073204, -0.016061201691627502, 0.005336122587323189, -0.028620336204767227, -0.006909788586199284, 0.027624059468507767, -0.016363102942705154, -0.00240767071954906, -0.0264919251203537, -0.03544332832098007, 0.03378286585211754, -0.010498651303350925, -0.014996996149420738, -0.015714013949036598, 0.015578157268464565, 0.04730808734893799, -0.019865170121192932, -0.0002116853866027668, -0.008974045515060425, 0.017163144424557686, 0.013630887493491173, 0.04120966047048569, -0.017238620668649673, 0.02985813468694687, 0.015306445769965649, 0.0012727067805826664, -0.026129642501473427, -0.014415834099054337, -0.0025227710139006376, 0.052742328494787216, -0.013917694799602032, 0.02603907138109207, 0.02312571369111538, -0.006158806383609772, 0.012030805461108685, -0.02952604368329048, 0.007521140389144421, -0.028575051575899124, -0.019925549626350403, 0.02468051202595234, 0.012559134513139725, -0.0026208891067653894, -0.005513490177690983, 0.0009382556891068816, 0.010302415117621422, 0.000867969065438956, 0.007196595426648855, -0.0027699533384293318, -0.032001640647649765, 0.017344286665320396, -0.00565312011167407, 0.014121479354798794, 0.01520832721143961, -0.013721458613872528, 0.015457396395504475, 0.004283238667994738, 0.002719007432460785, -0.021284110844135284, -0.04573819413781166, -0.005856904201209545, 0.0017472594045102596, 0.026205118745565414, -0.017842425033450127, 0.0022680407855659723, 0.034930095076560974, -0.016982004046440125, 0.012445921078324318, 0.001226478023454547, -0.023216284811496735, 0.0055587757378816605, -0.0051964931190013885, 0.008294764906167984, 0.01348748430609703, -0.014196954667568207, 0.015404563397169113, 0.002962416037917137, -0.0015651746653020382, 0.005664441734552383, -0.012845941819250584, -0.010770363733172417, 0.02256719581782818, 0.017480142414569855, -0.00766454404219985, -0.028273148462176323, -0.026265498250722885, -0.0039322772063314915, 0.019895359873771667, 0.016921622678637505, -0.017797138541936874, 0.0055436803959310055, 0.024574846029281616, 0.00014092703349888325, 0.008030600845813751, -0.5376275777816772, -0.017480142414569855, 0.01577439345419407, 0.012702538631856441, 0.017540521919727325, 0.032696016132831573, 0.014106383547186852, 0.02354837767779827, -0.04030395299196243, 0.03535275533795357, -0.014438476413488388, 0.01751033216714859, -0.03035627491772175, -0.007562652230262756, -0.013162939809262753, -0.03077893704175949, -0.009525016881525517, -0.006268246099352837, 0.02280871756374836, -0.0016585756093263626, -0.03034117817878723, 0.009117448702454567, -0.008083433844149113, 0.01006089337170124, 0.012476111762225628, -0.0012991232797503471, 0.0011632671812549233, -0.0071701789274811745, 0.001539701595902443, 0.027699533849954605, -0.013502579182386398, 0.029178855940699577, -0.008272122591733932, -0.020967112854123116, 0.07040361315011978, -0.015412111766636372, -0.017359381541609764, 0.026340974494814873, -0.012913869693875313, 0.02554093301296234, -0.025525838136672974, -0.018234897404909134, 0.018053757026791573, 0.019668933004140854, 0.006581469904631376, -0.00043988105608150363, 0.014868686906993389, -0.05962570011615753, 0.015789488330483437, 0.014438476413488388, 0.015268707647919655, -0.016378197818994522, 0.0009217453771270812, 0.011517572216689587, 0.0027303288225084543, -0.0001079654466593638, 0.03284696862101555, -0.03272620588541031, 0.00267183524556458, -0.006570148281753063, -0.03169973939657211, -0.013162939809262753, 0.01581967994570732, -0.008785356767475605, -0.01601591520011425, -0.006864503026008606, -0.024046516045928, 0.002602020278573036, 0.012038353830575943, -0.0046643903478980064, -0.017163144424557686, 0.02006140723824501, -0.014468667097389698, 0.01826508715748787, 0.05265175923705101, 0.04993463680148125, 0.06587507575750351, -0.010098631493747234, 0.00032289393129758537, 0.02561640925705433, -5.427754877018742e-05, -0.00903442595154047, -0.019955741241574287, -0.018355658277869225, 0.008309859782457352, -0.015223422087728977, -0.02517865039408207, -0.00723055936396122, 0.02193319983780384, 0.009434445761144161, 0.040545474737882614, -0.00637013791128993, 0.027442917227745056, -0.01908022351562977, 0.0072569758631289005, 0.01645367406308651, -0.03396400809288025, -0.014838497154414654, 0.0046492950059473515, -0.022657766938209534, -0.046402379870414734, -0.006090878508985043, -0.01569891907274723, -0.027322156354784966, 0.011540214531123638, -0.01832546852529049, -0.04102851822972298, 0.013827124610543251, 0.028937334194779396, 0.010959052480757236, -0.008189098909497261, -0.007992862723767757, -0.016438579186797142, -0.010008060373365879, 0.005668215453624725, -0.040847379714250565, 0.015080018900334835, 0.02336723729968071, -0.029133569449186325, 0.005321027711033821, 0.0027341025415807962, -0.003768117865547538, 0.03653017431497574, 0.027005158364772797, 0.013268604874610901, 0.026582496240735054, 0.006505994126200676, -0.009457089006900787, -0.004864400252699852, 0.012113829143345356, -0.021797344088554382, -0.0013208225136622787, 0.02760896272957325, -0.021601108834147453, -0.004000205080956221, 0.010083535686135292, 0.00126987649127841, -0.00699658552184701, 0.015215874649584293, -0.01627253368496895, -0.011245859786868095, -0.019427411258220673, -0.008423073217272758, -0.007773983757942915, 0.0006533354171551764, -0.017736759036779404, -0.0045549506321549416, 0.025012603029608727, -0.023774804547429085, -0.0077362461015582085, 0.01763109304010868, 0.029510946944355965, -0.017555616796016693, 0.018370753154158592, -4.375224307295866e-05, 0.0032001640647649765, -0.018536800518631935, -0.03547351807355881, -0.004253048449754715, -0.02492203377187252, -0.009260852821171284, 0.00668336171656847, -0.01924627088010311, -0.008823093958199024, -0.027201395481824875, -0.04151156172156334, 0.0020868994761258364, -0.03354134410619736, -0.003675660351291299, -0.027382535859942436, -0.0017595242243260145, 0.013479936867952347, -0.006087104789912701, 0.010679793544113636, 0.0020567092578858137, -0.006381459534168243, -0.012098734267055988, -0.014279977418482304, 0.01563853770494461, -0.008347597904503345, 0.0029133569914847612, 0.01695181243121624, -0.013396913185715675, 0.007656996604055166, 0.02468051202595234, -0.005619156174361706, 0.025963595137000084, 0.009041973389685154, -0.004441737197339535, 0.03671131655573845, -0.028061816468834877, -0.0015906476182863116, 0.00900423526763916, 0.014672450721263885, 0.03496028482913971, -0.00915518682450056, 0.02312571369111538, 0.011396811343729496, -0.04419849440455437, 0.0058984155766665936, 0.029993992298841476, 0.006509767845273018, 0.004479474853724241, -0.0601993128657341, 0.020710496231913567, -0.0035020664799958467, -0.014883782714605331, -0.006245603319257498, -0.010294867679476738, 0.017661282792687416, -0.020167071372270584, -0.03121669590473175, -0.017283905297517776, 0.006505994126200676, 0.013193129561841488, 0.018808512017130852, -0.011547761969268322, -0.008566477335989475, -0.011721355840563774, 0.0007745680632069707, 0.03127707540988922, -0.001793488278053701, 0.017178239300847054, -0.012113829143345356, 0.0017000872176140547, -0.01719333417713642, 0.016348008066415787, -0.026582496240735054, -0.016906527802348137, 0.003560560056939721, -0.019850075244903564, 0.00017548070172779262, 0.003077516332268715, 0.004528534132987261, 0.049874257296323776, -0.016529150307178497, 0.012355350889265537, -0.018400944769382477, -0.013208224438130856, 0.0069135623052716255, 0.018461324274539948, 0.03363191336393356, -0.02699006348848343, -0.009457089006900787, 0.04024357348680496, 0.02890714257955551, 0.02462013065814972, 0.012596872635185719, 0.014657355844974518, 0.01012882124632597, -0.03345077112317085, 0.015200779773294926, -0.020016120746731758, 0.018853796645998955, 0.015849869698286057, -0.01246101688593626, 0.0035775420255959034, 0.017178239300847054, 0.0030926114413887262, 0.01389505248516798, 0.03831139951944351, 0.027699533849954605, 0.00198689429089427, 0.014340357854962349, 0.024755986407399178, -0.018959462642669678, -0.0032680921722203493, -0.009215567260980606, 0.004317202605307102, -0.027684438973665237, 0.025812644511461258, 0.00797776784747839, 0.01870284602046013, -0.02424275316298008, 0.01096659991890192, -0.014906425029039383, 0.0077362461015582085, 0.012694991193711758, 0.017857519909739494, -0.02828824333846569, -0.015125304460525513, -0.04127003997564316, 0.028876952826976776, 0.021948296576738358, -0.008007957600057125, -0.010234487242996693, 0.00012276573397684842, 0.021857725456357002, -0.0003080346796195954, 0.010921315290033817, 0.030009087175130844, -0.004902138374745846, 0.0026831564027816057, 0.007611711043864489, -0.01149492897093296, -0.008868379518389702, 0.007290940266102552, -0.021404871717095375, -0.03471876308321953, -0.017148049548268318, 0.03278658911585808, -0.005264420993626118, -0.021465251222252846, -0.0003195918689016253, 0.04006243124604225, -0.009079711511731148, 0.013472389429807663, -0.005713500548154116, -0.002360498532652855, -0.00862685777246952, 0.01274027582257986, 0.0020435010083019733, -0.02754858322441578, -0.028529765084385872, -0.016046106815338135, 0.010891124606132507, -0.013193129561841488, -0.01046846155077219, 0.024091802537441254, 0.0004948367131873965, -0.02880147658288479, -0.0040228478610515594, -0.007128667552024126, 0.002360498532652855, -0.06358061730861664, 0.027095729485154152, 0.018219802528619766, 0.007373963017016649, -0.026537209749221802, 0.00847590621560812, 0.0007005076040513813, -0.03625846281647682, -0.008075886406004429, -0.0240012314170599, -0.004921006970107555, -0.011827021837234497, 0.011532667092978954, -0.028771286830306053, 0.014091288670897484, 0.003379418747499585, -0.021721869707107544, 0.012189304456114769, 0.016680100932717323, -0.019653838127851486, -0.003779439255595207, 0.0026812695432454348, 0.024589940905570984, 0.0021321848034858704, -0.007607937324792147, -0.02051425911486149, 0.007385284639894962, 0.030627986416220665, 0.02256719581782818, -0.00975144375115633, 0.008921212516725063, 0.0035020664799958467, 0.00481534143909812, 0.021344490349292755, -0.014808306470513344, 0.008740071207284927, 0.015042280778288841, 0.02711082436144352, 0.007204143330454826, 0.005834261421114206, -0.02810710296034813, 0.01577439345419407, 0.008106076158583164, -0.006868276745080948, -0.0025661694817245007, -0.021782249212265015, 0.017359381541609764, 0.0025718300603330135, -0.0048417579382658005, -0.0042153107933700085, -0.00409832363948226, -0.018114136531949043, -0.010355248115956783, -0.02324647642672062, -0.021661488339304924, 0.02119353972375393, -0.05165547877550125, -0.02000102587044239, -0.018717940896749496, 0.004366261884570122, 0.0021246373653411865, -0.026265498250722885, 0.013819577172398567, -0.008657047525048256, 0.0006608829717151821, -0.04691561311483383, -0.01671029068529606, -0.011638333089649677, -0.032062023878097534, -0.029390186071395874, -0.007773983757942915, -0.012415731325745583, -0.021465251222252846, -0.010415628552436829, 0.015412111766636372, 0.006943752523511648, 0.02123882621526718, -0.01956326700747013, 0.0034228169824928045, 0.032122403383255005, -0.020408594980835915, 0.006475803907960653, -0.012377993203699589, -0.01944250613451004, 0.00048540226998738945, 0.022265292704105377, 0.02997889555990696, -0.008460811339318752, -0.0014151668874546885, 0.022974763065576553, 0.009985418058931828, 0.002075578086078167, 0.01975950412452221, -0.011804379522800446, -0.017525427043437958, -0.006332400254905224, -0.03272620588541031, 0.030431749299168587, -0.018914178013801575, 0.005373860709369183, 0.004494570195674896, -0.030884603038430214, -0.004875721875578165, -0.011593047529459, -0.02699006348848343, -0.0005504999426193535, 0.022008676081895828, 0.01726881042122841, 0.0066343024373054504, 0.02107277885079384, 0.015132851898670197, -0.008551382459700108, -0.011917592026293278, -0.005154981277883053, 0.003651130711659789, 0.014755473472177982, -0.0425078421831131, 0.01006089337170124, -0.020665211603045464, 0.0005872942856512964, 0.01401581335812807, -0.025782454758882523, 0.04332297667860985, 0.022069057449698448, -0.01681595668196678, 0.02910337969660759, -0.02685420773923397, -0.027518393471837044, 0.0020868994761258364, 0.019306650385260582, -0.0014632826205343008, 0.019714219495654106, 0.014159216545522213, -0.03323943912982941, -0.022521909326314926, -0.007970220409333706, -0.02225019782781601, 0.011351525783538818, 0.004241726826876402, -0.03852273151278496, -0.002381254220381379, -0.00040780394920147955, -0.002294457284733653, -0.00045167410280555487, 0.021797344088554382, -0.02360875904560089, -0.010392986238002777, 0.009328780695796013, -0.013208224438130856, 0.026929683983325958, 0.02810710296034813, -0.01264970563352108, -0.04344373941421509, -0.0035398041363805532, 0.004151156172156334, -0.03819063678383827, 0.0028812799137085676, -0.005509716458618641, 0.01651405543088913, 0.009615588001906872, 0.014363001100718975, -0.00014080910477787256, -0.002851089695468545, -0.0025737169198691845, 0.01631781831383705, 0.008347597904503345, -0.004207762889564037, 0.014891330152750015, -0.023412521928548813, 0.010913767851889133, 0.00960049219429493, 0.002511449623852968, -0.000836835359223187, 0.0018217915203422308, -0.015668727457523346, 0.04299088567495346, -0.013479936867952347, -0.00978918094187975, 0.021887915208935738, -0.06919600069522858, 0.0007854176219552755, -0.0060946522280573845, -4.724593964056112e-06, -0.028635431081056595, -0.025284316390752792, -0.015419659204781055, -0.0008651387179270387, 0.0015972517430782318, 0.024408798664808273, 0.031005363911390305, 0.011011885479092598, -0.013102559372782707, -0.0005486130248755217, 0.0069022406823933125, 0.01619705744087696, 0.021359587088227272, -0.0182499922811985, -0.016861243173480034, -0.0342659093439579, 0.018416039645671844, -0.013713911175727844, 0.014415834099054337, 0.0030586475040763617, 0.010340153239667416, 0.00490968581289053, 0.007773983757942915, 0.000807116855867207, 0.002669948386028409, -0.00033775318297557533, -0.022597385570406914, -0.03435647860169411, -0.011479834094643593, -0.002560508670285344, -0.003736040787771344, 0.041964415460824966, 0.009464636445045471, -0.008415525779128075, 0.006592791061848402, -0.010513747110962868, 0.006253150757402182, -0.00835514534264803, -0.00037336820969358087, 0.025133363902568817, 0.006664492655545473, -0.008838188834488392, 0.01271763350814581, 0.004068133421242237, -0.012144018895924091, -0.05751238390803337, -0.012876132503151894, -0.008641952648758888, 0.01888398826122284, 0.06025969609618187, -0.0011066605802625418, -0.022793622687458992, 0.03191107138991356, -0.004770055878907442, -0.00862685777246952, -0.014189407229423523, 0.010709983296692371, 0.02157091721892357, 0.011600594967603683, -0.01669519580900669, 0.029767565429210663, -0.008589119650423527, 0.012128924019634724, -0.018174517899751663, -0.03553389757871628, -0.022008676081895828, -0.01264970563352108, -0.010528841987252235, 0.03040155954658985, -0.022174721583724022, 0.024016326293349266, 0.011238312348723412, -0.007724924478679895, 0.005192719399929047, -0.020952017977833748, -0.012732728384435177, 0.015487587079405785, 0.017299000173807144, 0.055127356201410294, 0.018733035773038864, -0.011660975404083729, 0.027805199846625328, 0.00010206891602138057, -0.016559340059757233, -0.025088079273700714, -0.01850660890340805, 0.05379898473620415, -0.013729006052017212, 0.004181346390396357, -0.012204399332404137, 0.004464379977434874, 0.029888326302170753, 0.002403897000476718, 0.0076154847629368305, 0.002205773489549756, -0.021359587088227272, 0.00677770609036088, 0.032062023878097534, -0.018597180023789406, 0.0043775830417871475, -0.01814432628452778, -0.01645367406308651, 0.010242034681141376, -0.029737373813986778, -7.938201633805875e-06, -0.0007957955240271986, -0.011872307397425175, -0.020031215623021126, 0.006487125065177679, -0.006706004496663809, 0.015163041651248932, -0.0013434651773422956, -0.01577439345419407, -0.013110106810927391, 0.0358961820602417, -0.033480964601039886, 0.007509819231927395, -0.004528534132987261, 0.005400277208536863, -0.0069890376180410385, -0.02380499430000782, -0.01427242998033762, -0.004517212975770235, 0.03502066433429718, -0.000256616942351684, 0.008513644337654114, -0.025465456768870354, 0.013804481364786625, -0.002183130942285061, -0.016468768939375877, 0.0004823360650334507, 0.01243082620203495, -0.002209547208622098, 0.03456781059503555, 0.002651079325005412, -0.008974045515060425, 0.001748202834278345, -0.0034209301229566336, 0.006619207561016083, 0.0035379172768443823, -0.027835389599204063, 0.018868891522288322, 0.009653325192630291, -0.0419946052134037, 0.004679485224187374, -0.006192770320922136, -0.014551689848303795, -0.01133643090724945, 0.011638333089649677, -0.028016531839966774, -0.02143506146967411, -0.0075400094501674175, 0.00806833803653717, -0.00046417475095950067, -0.012181757017970085, -0.005675762891769409, 0.02617492713034153, 0.0017217864515259862, 0.01868775114417076, -0.02424275316298008, 0.005705953110009432, -0.036349035799503326, -0.04075680673122406, 0.006151258945465088, -0.013193129561841488, -0.027065539732575417, -0.01974440924823284, -0.026205118745565414, 0.010075988247990608, 0.010793006047606468, -0.032182782888412476, -0.028997713699936867, -0.009887299500405788, -0.030205322429537773, -0.0019642517436295748, -0.021284110844135284, 0.01781223528087139, 0.021601108834147453, -0.0003658206551335752, 0.0021944520995020866, 0.011645880527794361, -0.0007170179160311818, -0.007728698197752237, 0.0015076245181262493, -0.01389505248516798, -0.005162529181689024, -0.011223217472434044, 0.022778527811169624, 0.010732625611126423, -0.03819063678383827, -0.0010255243396386504, 0.03559427708387375, 0.008136266842484474, 0.007294713985174894, 0.011555309407413006, 0.006234282162040472, 0.007075834553688765, 0.0018831155030056834, -0.023654043674468994, -0.0023472902830690145, 0.0013302569277584553, 0.02635606937110424, -0.016529150307178497, 0.011359073221683502, 0.015321540646255016, 0.029692089185118675, -0.013412008993327618, 0.016680100932717323, 0.016725385561585426, -0.012725180946290493, 0.007019227836281061, -0.010732625611126423, 0.010083535686135292, -0.011087360791862011, -0.02711082436144352, -0.0034567811526358128, -0.003813403192907572, -0.012423278763890266, -0.0018114136764779687, 0.007857006974518299, -0.010762816295027733, -0.009162734262645245, 0.011668522842228413, -0.03047703579068184, 0.011879854835569859, 0.02360875904560089, -0.017857519909739494, 0.007902292534708977, 0.006713551934808493, -0.00018538687436375767, 0.004487022757530212, 0.0013962980592623353, 0.011291145347058773, -0.020710496231913567, -0.022401148453354836, 0.015472492203116417, 0.02535979077219963, -0.02424275316298008, -0.009419350884854794, -0.022386053577065468, -0.007924934849143028, -0.013079916127026081, -0.025072984397411346, 0.012476111762225628, -0.023714423179626465, -0.0005071014747954905, -0.0057965237647295, -0.014061098918318748, -0.014310168102383614, 0.012385540641844273, 0.023654043674468994, -0.012778013944625854, -0.003543578088283539, 0.31204620003700256, -0.035986751317977905, -0.008106076158583164, 0.013072368688881397, -0.0026246628258377314, -0.0062757935374975204, 0.0018000922864302993, 0.0016444239299744368, 0.004000205080956221, 0.009623135440051556, -0.0033775316551327705, -0.014529047533869743, -0.0006740911630913615, -0.005679536610841751, 0.005996534135192633, -0.005728595890104771, -0.03172992914915085, -0.01719333417713642, -0.023397427052259445, 0.004060585517436266, 0.014974352903664112, -0.019306650385260582, 0.01844622939825058, 0.007283392362296581, 0.016181962564587593, -0.002207660349085927, -0.0010774137917906046, -0.031126124784350395, 0.03284696862101555, 0.020982207730412483, -0.01565363258123398, -0.005781428422778845, 0.02049916423857212, 0.005494621582329273, -0.0012500641169026494, 0.011706260964274406, 0.02412199229001999, 0.032122403383255005, 0.026325879618525505, 0.00107835722155869, -0.00987220462411642, -0.006702230777591467, 0.013578055426478386, -0.03447724133729935, -0.029963800683617592, 0.009736348874866962, -0.002986945677548647, 0.00133591762278229, -0.006438066251575947, 0.012710086070001125, -0.028439193964004517, -0.004211536608636379, 0.024333324283361435, 0.009509922005236149, 0.014415834099054337, -0.008875926956534386, 0.04235688969492912, -0.014687545597553253, 0.018838701769709587, 0.015117757022380829, -0.021948296576738358, 0.01348748430609703, -0.030235514044761658, 0.023397427052259445, -0.03163935989141464, -0.0023529508616775274, -0.010732625611126423, 0.026401353999972343, 0.023352140560746193, -0.023080429062247276, 0.014068646356463432, -0.01639329455792904, 0.005370086990296841, -0.0012727067805826664, -0.015147946774959564, -0.012830846942961216, 0.03227335214614868, 0.0117439990863204, 0.024650320410728455, 0.016408389434218407, 0.006966395303606987, 0.012936512939631939, 0.006747515872120857, 0.020227452740073204, -0.037043411284685135, -0.023080429062247276, -0.01336672343313694, -0.007102251052856445, 0.017102764919400215, 0.01751033216714859, -0.017872614786028862, 0.007955124601721764, -0.00685318186879158, -0.0009830693015828729, 0.005136112682521343, 0.01336672343313694, 0.014808306470513344, -0.0030114753171801567, 0.004819115158170462, 0.005981438793241978, -0.044832486659288406, 0.038854822516441345, 0.004464379977434874, 0.005253099836409092, -0.018431134521961212, -0.0009137261076830328, -0.0029246783815324306, 0.0038058555219322443, 0.0033265857491642237, -0.011955330148339272, 0.003703963477164507, -0.06077292934060097, 0.01831037364900112, 0.0078117214143276215, -0.016378197818994522, 0.006056914571672678, -0.01411393191665411, -0.0315185971558094, -0.016861243173480034, -0.008362692780792713, 0.05428202822804451, -0.015351731330156326, 0.00723055936396122, 0.018400944769382477, 0.002120863413438201, -0.00414360873401165, -0.03166954964399338, -0.01856699027121067, 0.013842219486832619, -0.046462759375572205, 0.026567401364445686, -0.010264677926898003, 0.039549198001623154, 0.02212943695485592, -0.0014849818544462323, -0.0029586423188447952, 0.004449284635484219, -0.004539855755865574, -0.027835389599204063, -0.010868482291698456, 0.0402737632393837, -0.005705953110009432, 0.006064462009817362, -0.0061814491637051105, -0.0020548223983496428, -0.009358970448374748, -0.006068235728889704, 0.005373860709369183, 0.015502681955695152, -0.00934387557208538, -0.03643960505723953, -0.012627062387764454, 0.013910147361457348, -0.006702230777591467, 0.012559134513139725, -0.023216284811496735, -0.009140091948211193, -0.08036638796329498, -0.0057965237647295, 0.01782733015716076, -0.024197468534111977, -0.017480142414569855, 0.016498958691954613, -0.037677403539419174, -0.008241931907832623, -0.0006476747221313417, -0.19659876823425293, 0.008174004033207893, 0.05896151438355446, -0.036107514053583145, 0.02554093301296234, 0.008000410161912441, 0.01862736977636814, -0.0013472388964146376, 0.0015680049546062946, -0.015080018900334835, 0.03257525712251663, -0.015087566338479519, -0.017797138541936874, -0.02647683024406433, -0.0015868738992139697, 0.00450211763381958, -0.012634610757231712, -0.00459646200761199, 0.03351115435361862, 0.018416039645671844, 0.01446111872792244, -0.04187384620308876, 0.02679382637143135, 0.008958949707448483, 0.004717222880572081, 0.012008163146674633, -0.013419556431472301, 0.011736450716853142, 0.019593458622694016, -0.00900423526763916, -0.005260647274553776, -0.0052757421508431435, 0.020363308489322662, 0.004683258943259716, 0.005445562303066254, -0.014415834099054337, -0.009668420068919659, 0.007445665076375008, -0.008996687829494476, -0.024454085156321526, -0.023578567430377007, 0.013389365747570992, 0.01137416809797287, -0.00984201394021511, -0.019276460632681847, 0.020227452740073204, 0.0031794083770364523, -0.0027303288225084543, 0.018355658277869225, -0.0005221965839155018, 0.009992965497076511, -0.01856699027121067, 0.0029699637088924646, 0.012159114703536034, 0.040545474737882614, 0.009449541568756104, -0.00472099706530571, 0.022944573312997818, -0.005328575149178505, -0.0020095370709896088, -0.02772972360253334, -0.01420450210571289, 0.01577439345419407, -0.003702076617628336, -0.0084381690248847, -0.02549564838409424, -0.012196851894259453, -0.0005033276975154877, -0.01619705744087696, 0.0025057888124138117, 0.011540214531123638, -0.032696016132831573, 0.006072009447962046, -0.029148664325475693, 0.02717120572924614, 0.00730603514239192, -0.004264369606971741, -0.023261571303009987, 0.012762919068336487, -0.01669519580900669, -0.02860524132847786, 0.031246885657310486, -0.009811824187636375, -0.017148049548268318, -0.003258657641708851, -0.00029058093787170947, 0.0018982106121256948, -0.01348748430609703, -0.023669138550758362, 0.016665006056427956, 0.043655071407556534, -0.03390362486243248, 0.015880059450864792, -0.013834672048687935, 0.014400738291442394, 0.012008163146674633, -0.012400636449456215, -0.01087602972984314, -0.009932585060596466, -0.009864657185971737, -0.01633291319012642, -0.01776694878935814, -0.011774188838899136, 0.029178855940699577, 0.0001048992489813827, 0.012566681951284409, -0.0018755679484456778, 0.023955944925546646, 3.98015708924504e-06, -0.01399317104369402, 0.006049367133527994, -0.01831037364900112, 0.012453469447791576, 0.006079557351768017, 0.009019330143928528, 0.011019432917237282, -0.005147433839738369, -0.0058267139829695225, 0.004781377501785755, 0.0157592985779047, 0.02131430059671402, -0.011510024778544903, 0.004415320698171854, 0.028529765084385872, 0.001962364884093404, -0.009864657185971737, -0.04151156172156334, -0.00046629749704152346, 0.003254883922636509, 0.04262860119342804, 0.0075437831692397594, 0.031820498406887054, 0.009592944756150246, 0.010785458609461784, -0.010626960545778275, 0.017661282792687416, -0.024755986407399178, -0.023337045684456825, -0.012023258022964, 0.0031794083770364523, 0.0026850434951484203, 0.009434445761144161, -0.011117551475763321, 0.005143660120666027, -0.004309655167162418, 0.022823812440037727, 0.010302415117621422, -0.03160917013883591, 0.008974045515060425, -0.01900474913418293, 0.013578055426478386, -0.00972125306725502, -0.03145821765065193, 0.031880881637334824, 0.01619705744087696, 0.009162734262645245, 0.02952604368329048, -0.01274782419204712, 0.0066305287182331085, 0.0038869918789714575, -0.010340153239667416, 0.005887094419449568, -0.02890714257955551, -0.012468564324080944, 0.007049418054521084, -0.0029227915219962597, -0.010400533676147461, 0.00891366507858038, -0.01096659991890192, -0.012181757017970085, 0.009698610752820969, -0.03556408733129501, -0.014747926034033298, 0.020468974485993385, -0.0035718814469873905, -0.025374885648489, -0.023910660296678543, -0.00280391750857234, 0.0049172332510352135, -0.014249787665903568, 0.034748952835798264, 0.02143506146967411, 0.0017066913424059749, 0.028061816468834877, -0.01619705744087696, 0.013170487247407436, -0.007430569734424353, 0.005536132957786322, 0.004739865660667419, 0.028212767094373703, 0.007502271793782711, 0.004811567720025778, -0.002830333774909377, -0.032303545624017715, 0.019774599000811577, 0.011683618649840355, -0.002719007432460785, 0.019019844010472298, 0.002232189988717437, 0.013578055426478386, -0.047398656606674194, -0.017465047538280487, -0.011668522842228413, -0.036741506308317184, 0.02087654173374176, -0.0157592985779047, -0.011472286656498909, -0.00521913543343544, 0.014212049543857574, -0.00038728403160348535, 0.014536594972014427, 0.03390362486243248, -0.01099679060280323, 0.02406161092221737, 0.008181551471352577, -0.014189407229423523, -0.010015607811510563, 0.007423022296279669, 0.03619808331131935, -0.011193026788532734, -0.027503296732902527, -0.0078117214143276215, 0.014785664156079292, -0.0073475465178489685, 0.015155494213104248, 0.015230969525873661, -0.03239411488175392, -0.02356347255408764, -0.09201981127262115, 0.04960254579782486, -0.0002577962295617908, -0.0013566733105108142, -0.008174004033207893, 0.011789283715188503, 0.009585397318005562, 0.007113572675734758, 0.020544450730085373, 0.016740482300519943, -0.03139783814549446, -0.008943854831159115, 0.0010604317067191005, -0.032182782888412476, -0.007404153235256672, -0.01386486180126667, 0.019231176003813744, 0.01106471847742796, 0.010989243164658546, 0.026824017986655235, -0.009109901264309883, 0.015419659204781055, 0.006136163603514433, 0.032182782888412476, -0.008755166083574295, 0.01137416809797287, 0.0009123109630309045, -0.0007962672389112413, -0.018159423023462296, 0.011162837035953999, -0.002451069187372923, -0.012793108820915222, -0.0027303288225084543, 0.031880881637334824, -0.004211536608636379, -0.021978486329317093, -0.001090622041374445, 0.0011198687134310603, 0.01675557717680931, -0.015072471462190151, -0.005192719399929047, -0.007902292534708977, 0.015880059450864792, 0.010000512935221195, -0.011268503032624722, 0.011019432917237282, -0.02137468196451664, 0.009200472384691238, 0.00133591762278229, 0.03459800034761429, 0.008875926956534386, 0.008415525779128075, 0.008332503028213978, -0.014529047533869743, -0.036862269043922424, -0.01595553569495678, 0.004819115158170462, 0.014838497154414654, 0.011510024778544903, -0.02916376106441021, 0.027337251231074333, 0.02442389354109764, 0.005622929893434048, -0.009517469443380833, 0.014974352903664112, 0.01264970563352108, -0.01844622939825058, -0.005083279684185982, 0.018023565411567688, -0.021510537713766098, -0.03345077112317085, 0.012679895386099815, -0.00414360873401165, 0.005188945215195417, 0.0004295031540095806, 0.016151772812008858, -0.004600236192345619, 0.013532769866287708, 0.00026534381322562695, 0.030205322429537773, -0.004634200129657984, -0.02225019782781601, -0.02617492713034153, 0.0153290880843997, 0.02406161092221737, -0.0436248779296875, 0.003341680858284235, 0.005528585519641638, -0.034930095076560974, 0.009758991189301014, 0.0046606166288256645, 0.015004543587565422, 0.008807999081909657, -0.0008373070741072297, 0.03444705158472061, 0.037858545780181885, 0.023397427052259445, -0.02412199229001999, 0.01234025601297617, 0.025767359882593155, -0.0009316515643149614, -0.005105922464281321, -0.002986945677548647, -0.010800554417073727, -0.008264575153589249, 0.01969912461936474, -0.013713911175727844, -0.07813230901956558, 0.0050040301866829395, -0.012951607815921307, -0.010506199672818184, -0.014317715540528297, -0.0062720198184251785, 0.02255210094153881, 0.005634251516312361, 0.011593047529459, -0.016498958691954613, -0.006755063310265541, -0.028137292712926865, 0.015714013949036598, 0.02311061881482601, 0.03628865256905556, 0.03459800034761429, -0.005668215453624725, 0.010506199672818184, -0.00922311469912529, 0.01994064636528492, -0.015230969525873661, 0.025012603029608727, -0.0014519612304866314, -0.0014661129098385572, -0.0023944624699652195, -0.006253150757402182, -0.024454085156321526, -0.020423689857125282, 0.017555616796016693, 0.003051099833101034, -0.004403999540954828, -0.0066305287182331085, 0.07028285413980484, 0.010075988247990608, -0.0001239450357388705, -0.012423278763890266, -0.01539701595902443, 0.027624059468507767, 0.029873231425881386, 0.014770569279789925, -0.0066305287182331085, -0.026220213621854782, -0.001939722103998065, -0.00623050844296813, 0.005162529181689024, -0.02280871756374836, -0.012596872635185719, -0.012249684892594814, -0.015117757022380829, 0.0003717171784956008, -0.020740685984492302, -0.001212326344102621, 0.011359073221683502, -0.011155289597809315, 0.018280183896422386, 0.03085441328585148, 0.01386486180126667, -0.011464739218354225, 0.028575051575899124, 0.008732523769140244, 0.012279875576496124, 0.010521294549107552, -0.018989654257893562, -0.013947885483503342, -0.013812029734253883, -0.03115631453692913, 0.0006170127890072763, -0.010860934853553772, -0.014174312353134155, 0.005588965956121683, 0.02231057919561863, 0.023578567430377007, -0.0012132697738707066, 0.036681126803159714, -0.018748130649328232, -0.015253612771630287, 0.0017161257565021515, 0.005739917047321796, 0.020785972476005554, 0.0034492334816604853, -0.022355863824486732], "236fce0f-14ec-45a2-98c7-63852575335f": [-0.012447073124349117, -0.012094014324247837, -0.019605178385972977, 0.013347028754651546, -0.014939256943762302, 0.02813398651778698, -0.03566591814160347, -0.03932112082839012, 0.0029767751693725586, -0.013097810558974743, -0.001664917217567563, 0.026666367426514626, 0.01777757704257965, -0.006618132349103689, 0.006112772971391678, -0.02841089479625225, -0.0025250667240470648, 0.006625055335462093, 0.01020410843193531, -0.035610537976026535, 0.01683608628809452, 0.018746759742498398, -0.00653505977243185, -0.03389370068907738, -0.009567216970026493, 0.020449751988053322, 0.03450290113687515, -0.019175969064235687, 0.005763174965977669, 0.006036622915416956, 0.04533005505800247, -0.005638565868139267, -0.011526349931955338, -0.022318890318274498, 0.001023699063807726, -0.0403456874191761, -0.0021650847047567368, 0.00851496122777462, 0.015063866972923279, -0.003759043989703059, 0.004299017135053873, 0.012447073124349117, 0.004569003824144602, 0.006220075301826, -0.00827958807349205, 0.0073519423604011536, 0.01449620258063078, 0.00884725246578455, -0.009172621183097363, 0.011920945718884468, -0.008521883748471737, 0.03040464222431183, -0.025987938046455383, -0.013997765257954597, 0.005247431341558695, -0.020532825961709023, 0.021169716492295265, -0.004458239767700434, -0.03491826355457306, -0.023731127381324768, 0.012190932407975197, 0.012453996576368809, -0.014745420776307583, 0.004707458429038525, 0.010224875994026661, -0.026790976524353027, 0.005057056434452534, -0.008134211413562298, -0.01373470202088356, 0.007774228695780039, -0.0017263564513996243, 0.01392853818833828, 0.003445790149271488, 0.02047744393348694, 0.05175435170531273, 0.00228623254224658, 0.0024714155588299036, -0.009657212533056736, -0.0001501367660239339, 0.017556050792336464, 0.016614558175206184, -0.011145600117743015, 0.006777355447411537, 0.002720633987337351, 0.010197184979915619, -0.008106520399451256, 0.004513621795922518, 0.0130701195448637, 0.006337761878967285, 0.0012287850258871913, 0.00696426909416914, 0.01765296794474125, -0.01621304079890251, 0.00020638397836592048, 0.012855514883995056, 0.005745868198573589, -0.022858863696455956, 0.011145600117743015, -0.018691377714276314, -0.017154531553387642, 0.000301787891658023, 0.01762527786195278, -0.00941491685807705, 0.007718847133219242, -0.035416699945926666, -0.021640462800860405, 0.012993969023227692, -0.029684677720069885, 0.004281710367649794, -0.04449932649731636, -0.03500133752822876, 0.0165176410228014, -0.02381420135498047, -0.028244750574231148, -0.027760159224271774, -0.001407045405358076, 0.04574541747570038, 0.013803929090499878, -0.016185348853468895, -0.006147386506199837, 0.016102276742458344, 0.011941714212298393, 0.031927645206451416, 0.010231799446046352, 0.020948190242052078, 0.0051955110393464565, 0.004395935218781233, -0.0148146478459239, -0.010598704218864441, -0.02381420135498047, 0.057541754096746445, -0.00114311627112329, 0.01528539415448904, 0.01234323251992464, 0.004323246423155069, 0.007781151682138443, -0.025946402922272682, 0.005306274630129337, -0.007054264657199383, -0.010217953473329544, 0.02652791142463684, 0.010764849372208118, -0.001375027815811336, 0.003558284603059292, 0.005572800058871508, 0.007857301272451878, 0.023398837074637413, 0.013575479388237, 0.016420722007751465, -0.012703214772045612, 0.008154978975653648, -0.02362036518752575, -0.002564872382208705, 0.010640240274369717, -0.018220633268356323, 0.021903526037931442, 0.009601830504834652, 0.02350960113108158, -0.013762393034994602, -0.02687404863536358, -0.00740732392296195, 0.025766411796212196, 0.026278693228960037, -0.03333988040685654, 0.010349485091865063, 0.04325323551893234, -0.01020410843193531, 0.004658999387174845, -0.015562303364276886, -0.00417786929756403, -0.0065765962935984135, 0.013769315555691719, -0.00782961118966341, 0.03195533528923988, -0.014593120664358139, 0.008715720847249031, -0.010391022078692913, 0.001780873048119247, 0.01604689471423626, 0.01792987808585167, -0.018179096281528473, 0.0007108781137503684, 0.023564983159303665, 0.025406429544091225, 0.008494192734360695, -0.025960247963666916, -0.00018842813733499497, 0.0005646353820338845, 0.02687404863536358, -0.01565922237932682, 0.019591333344578743, 0.027206338942050934, 0.011588654480874538, 0.021086644381284714, -0.5529325008392334, -0.028466276824474335, -0.0026790976990014315, -0.00029832651489414275, 0.021806608885526657, 0.026126394048333168, 0.021335862576961517, 0.04760070890188217, -0.034198299050331116, 0.03829655796289444, -0.013720856048166752, 0.029961587861180305, -0.01950826123356819, -0.01644841395318508, -0.014676193706691265, -0.013686242513358593, 0.007871147245168686, -0.021848144009709358, 0.03394908085465431, 0.0357213020324707, -0.02353729121387005, 0.025406429544091225, -0.012640910223126411, 0.018151406198740005, 0.026278693228960037, -0.030543096363544464, -0.00990643072873354, -0.0017877956852316856, 0.01122174970805645, 0.040899503976106644, -0.026015629991889, 0.01859446056187153, 0.012903973460197449, 0.0016882814234122634, 0.05615720897912979, -0.02507413737475872, -0.018815986812114716, 0.021446626633405685, -0.001205420820042491, 0.05427422374486923, -0.024271100759506226, -0.022028135135769844, 0.024160336703062057, 0.012488610111176968, 0.006341223139315844, -0.03699508309364319, -0.003689816687256098, -0.03502902761101723, -0.007871147245168686, -0.011671727523207664, -0.0030113887041807175, -0.007054264657199383, 0.010661008767783642, -0.015451539307832718, -0.005780481733381748, 0.01734836772084236, 0.015160785056650639, -0.017334522679448128, -0.00422632833942771, -0.018234478309750557, -0.038075029850006104, -0.002564872382208705, -0.002284501912072301, -0.01833139732480049, -0.021848144009709358, 0.0057389456778764725, -0.013153192587196827, 0.005912013817578554, -0.016863776370882988, -0.0032588765025138855, -0.0037002007011324167, 0.016891468316316605, -0.03181688115000725, 0.03095846064388752, 0.018608305603265762, 0.04006877914071083, 0.04300401732325554, -0.040982577949762344, -0.0013438755413517356, -0.0018379855901002884, 0.008535729721188545, -0.010813308879733086, -0.021211253479123116, -0.03162304311990738, 0.02115587145090103, -6.91191598889418e-05, -0.03273067995905876, 0.00788499228656292, 0.018968287855386734, -0.01833139732480049, 0.018843678757548332, 0.017999105155467987, 0.02263733558356762, -0.04231174290180206, 0.011069449596107006, -0.006718512158840895, -0.028964713215827942, 0.011637113988399506, 0.029047787189483643, 0.002504298696294427, -0.046520765870809555, 0.0148146478459239, 0.010605626739561558, -0.007656542584300041, -0.0021720074582844973, -0.009567216970026493, -0.04372398182749748, 0.021488161757588387, 0.03480749949812889, -0.011270209215581417, -0.019175969064235687, -0.056600261479616165, 0.01030102651566267, -0.006351607386022806, 0.0016562638338655233, -0.0474068745970726, 0.028438586741685867, 0.005745868198573589, 0.008604956790804863, -0.027524786069989204, 0.006985037587583065, -0.01996516063809395, 0.030238496139645576, 0.04161946848034859, 0.02083742618560791, 0.025711029767990112, 0.02637561224400997, -0.016019202768802643, 0.00016614558990113437, 0.0057112546637654305, -0.025337202474474907, -0.01702992245554924, 0.026901738718152046, -0.00914493016898632, -0.014108529314398766, 0.01471772976219654, -0.004828606266528368, 0.0017159724375233054, 0.00034007924841716886, -0.0028435124550014734, -0.022498881444334984, -0.02899240516126156, -0.0011024451814591885, 0.011394818313419819, 0.023606518283486366, -0.02398034557700157, 0.007095801178365946, -0.0034250221215188503, -0.04045645147562027, -0.013173960149288177, 0.0029110091272741556, 0.0006589576369151473, -0.013623937964439392, 0.032149169594049454, -0.008078829385340214, -0.015783831477165222, -0.010391022078692913, -0.009352612309157848, 0.012370923534035683, -0.005801250226795673, 0.026777129620313644, 0.009781821630895138, -0.02742786705493927, 0.015839213505387306, 0.0004941100487485528, -0.02472800202667713, -0.01234323251992464, -0.0012019594432786107, -0.02154354378581047, -0.01828986033797264, -0.017832959070801735, 0.011796336621046066, -0.011090218089520931, -0.0025735259987413883, 0.0043024783954024315, -0.01220477744936943, 0.007621928583830595, 0.024354174733161926, 0.008563420735299587, 0.006950423587113619, 0.013651628978550434, 0.0015524228801950812, -0.0001709049683995545, 0.001472811447456479, 0.01112483162432909, -0.006206229794770479, 0.03284144401550293, 0.026666367426514626, -0.03746582940220833, 0.040871813893318176, -0.026984812691807747, -0.005018981173634529, 0.013976997695863247, 0.0054481904953718185, 0.027870921418070793, 0.02852165885269642, 0.03001696988940239, 0.027483249083161354, -0.02303885482251644, 0.030903078615665436, 0.04139794036746025, 0.0015515574486926198, -0.008265743032097816, -0.05618489906191826, 0.02926931343972683, -0.009484143927693367, 0.005233585834503174, -0.015202321112155914, 0.014537738636136055, -0.0024056497495621443, -0.016489949077367783, -0.027483249083161354, -0.004399396479129791, 0.0029871591832488775, 0.0294631514698267, 0.012031709775328636, -0.0034354061353951693, 0.006881196517497301, 0.006614671088755131, -0.009311075322329998, 0.015410003252327442, -0.017445286735892296, -0.011194058693945408, -0.013291646726429462, 0.00808575190603733, -0.013540864922106266, 0.009823357686400414, -0.023135773837566376, -0.017126841470599174, -0.023689592257142067, -0.02982313372194767, -0.026555603370070457, -0.009491066448390484, 0.004980906378477812, 0.02141893468797207, -0.022429654374718666, 0.03948726877570152, 0.004485930781811476, 0.005122822243720293, -0.0035046334378421307, 0.008210361003875732, 0.004389012698084116, -0.005822018254548311, -0.03389370068907738, 0.018732914701104164, 0.03854577615857124, 0.028106294572353363, -0.00794729683548212, -0.0017860650550574064, 0.01906520687043667, -0.024021882563829422, -0.0030823468696326017, -0.024077264592051506, 0.012744750827550888, -0.01970209740102291, -0.017168376594781876, 8.090944174909964e-05, 0.002582179382443428, 0.02684635855257511, 0.028383204713463783, 0.04209021478891373, 0.03705046698451042, -0.0021495085675269365, 0.01367239747196436, 0.020269760861992836, -0.022595800459384918, 0.008826483972370625, -0.03508441150188446, 0.029601605609059334, -0.006413911934942007, -0.028355512768030167, -0.02377266436815262, 0.032786063849925995, 0.011983250267803669, 0.012017863802611828, 0.001283301622606814, 0.014676193706691265, -0.00512974476441741, 0.01906520687043667, -0.01320165116339922, -0.006130079738795757, -0.03519517183303833, 0.03885037451982498, 0.021280480548739433, -0.00194701855070889, -0.04347476363182068, -0.011588654480874538, -0.006559289526194334, -0.010508708655834198, 0.017099149525165558, 0.019729789346456528, -0.0010686968453228474, -0.009657212533056736, 0.016019202768802643, -0.016960695385932922, 0.018566768616437912, 0.002324307570233941, -0.004617462866008282, 0.0010487940162420273, -0.007220410276204348, 0.028078604489564896, -0.00773961516097188, -0.002852165838703513, -0.015797676518559456, 0.04375167191028595, 0.004503237549215555, 0.024257255718111992, -0.011117909103631973, 0.0036759711802005768, 0.010370253585278988, -0.01600535772740841, -0.02676328457891941, -0.022845018655061722, -0.03525055572390556, -0.020394369959831238, 0.014454665593802929, 0.0057389456778764725, -0.016822241246700287, 0.01644841395318508, -0.006566212046891451, -0.03857346624135971, -0.03201071545481682, -0.015368467196822166, 0.007095801178365946, -0.016309957951307297, 0.013686242513358593, -0.0083211250603199, -0.01918981596827507, -0.03131844475865364, 0.009061857126653194, 0.006645823363214731, -0.03220455348491669, 0.01514693908393383, -0.029850823804736137, -0.003200033213943243, -0.02593255788087845, 0.02558642067015171, -0.0018345242133364081, 0.008840329945087433, 0.00927646178752184, -0.012156318873167038, 0.005361656658351421, 0.02518490143120289, -0.011014067567884922, 0.007462705951184034, 0.01106252707540989, 0.022097362205386162, 0.01930057816207409, -0.018566768616437912, -0.015493076294660568, -0.026887893676757812, 0.003381754970178008, 0.009262616746127605, 0.02542027458548546, 0.010875613428652287, -0.005936243571341038, -0.017376059666275978, 0.01946672424674034, -0.0201313067227602, -0.005624720361083746, 0.0013300300342962146, 0.04344706982374191, -0.015410003252327442, -0.013783160597085953, 0.009518757462501526, 0.02915855124592781, 0.008577265776693821, -0.025752566754817963, 0.002826205687597394, -0.018691377714276314, -0.002954276278614998, 0.014634656719863415, -0.00029356713639572263, -0.01449620258063078, 0.008570343255996704, -0.009290307760238647, -0.029241623356938362, -0.007981911301612854, -0.0014087761519476771, 0.034585971385240555, -0.03699508309364319, -0.0164345670491457, 0.007808842696249485, 0.026195621117949486, 0.00490475632250309, -0.03472442924976349, 0.00719964224845171, -0.007615006063133478, 0.009491066448390484, -0.03275837004184723, -0.022858863696455956, -0.01524385716766119, -0.04330861568450928, -0.008051138371229172, -0.004849374294281006, -0.0064589097164571285, -0.01891290582716465, -0.012453996576368809, 0.018026795238256454, 0.02770477719604969, 0.021363552659749985, -0.022817326709628105, -0.018566768616437912, 0.04037337750196457, -0.01359624695032835, -0.015368467196822166, -0.014828493818640709, 0.016254575923085213, -0.007815765216946602, 0.003949419129639864, 0.03968110308051109, 0.0009198581101372838, 0.015022329986095428, 0.011408663354814053, 0.0213081706315279, 0.02236042730510235, 0.03464135527610779, -0.023163463920354843, -0.01261321920901537, -0.0035323244519531727, -0.014690038748085499, 0.030515406280755997, -0.023025009781122208, 0.013983920216560364, 0.01859446056187153, -0.01765296794474125, 0.0073242513462901115, 0.006922732573002577, -0.021806608885526657, 0.0031931104604154825, 0.02240196242928505, 0.025849483907222748, 0.019314425066113472, 0.006538521032780409, 0.0037105847150087357, -0.012779364362359047, 0.010370253585278988, -0.034004464745521545, -0.0037002007011324167, -0.0032952209003269672, -0.017763732001185417, 0.02150200866162777, -0.009844126179814339, 0.00927646178752184, 0.0018795219948515296, -0.01528539415448904, 0.03602590039372444, 0.0026496760547161102, -0.0065765962935984135, 0.013257033191621304, -0.024312637746334076, -0.027690930292010307, -0.01353394240140915, 0.015991512686014175, -0.027953995391726494, 0.01439928449690342, 0.01552076730877161, -0.03394908085465431, -0.05205895006656647, 0.004174408037215471, -0.011609422974288464, 0.023481909185647964, -0.013353951275348663, -0.029047787189483643, -0.018566768616437912, -0.0036482801660895348, 0.01251630112528801, -0.04076104983687401, 0.030820006504654884, -0.027372485026717186, -0.0073865558952093124, 0.01402545627206564, -0.004662460647523403, 0.00412941025570035, 0.015451539307832718, 0.010100266896188259, -0.02907547727227211, -0.011484813876450062, 0.015562303364276886, -0.021003570407629013, -0.003987493924796581, 0.001013315049931407, 0.0069884988479316235, 0.025807946920394897, 0.015866903588175774, -0.015396157279610634, 0.010584858246147633, -0.019037514925003052, 0.007878069765865803, -0.004222867079079151, -0.01690531335771084, 0.017902186140418053, -0.03469673544168472, 0.015022329986095428, 0.007116569206118584, 0.016489949077367783, 0.011969405226409435, -0.004496315028518438, -0.025018757209181786, 0.0449700728058815, 0.0005460305255837739, 0.01718222349882126, 0.006597364321351051, -0.05576953664422035, -0.0056489501148462296, -0.0094356844201684, 0.0006983306957408786, -0.011214827187359333, -0.011775568127632141, -0.015756139531731606, -0.00012439285637810826, 0.0019297117833048105, 0.01353394240140915, 0.01816525124013424, 0.007123492192476988, 0.008362661115825176, -0.010820231400430202, -0.013430101796984673, 0.028383204713463783, -0.00307023199275136, 0.006098927464336157, -0.013236264698207378, -0.0038767303340137005, 0.022775791585445404, -0.03394908085465431, 0.007518087979406118, 0.015922285616397858, 0.01730683259665966, -0.02338499203324318, 0.017514513805508614, -0.009650289081037045, -0.012211700901389122, -0.019882088527083397, -0.021792761981487274, -0.02852165885269642, -0.030903078615665436, 0.010127957910299301, -0.016586868092417717, 0.011734032072126865, 0.02079588919878006, -0.009359534829854965, 0.006379298400133848, -0.027649395167827606, -0.021723534911870956, -0.0036309733986854553, -0.0357213020324707, 0.004614001605659723, 0.016586868092417717, 0.022194281220436096, 0.03394908085465431, 0.0018016411922872066, -0.007940374314785004, -0.036552030593156815, -0.015756139531731606, 0.014219293370842934, 0.02240196242928505, 0.017043767496943474, 0.016337649896740913, -0.01293166447430849, -0.001760970102623105, 0.009359534829854965, -0.0040082624182105064, -0.020117461681365967, 0.022581953555345535, 0.029103169217705727, 0.004340553656220436, -0.009186466224491596, -0.0005546839674934745, -0.021765071898698807, 0.0188713688403368, -0.019259043037891388, 0.0015956899151206017, -0.02683251164853573, -0.011007145047187805, -0.023246536031365395, 0.030266188085079193, 0.006978114601224661, 0.0353890098631382, 0.0055935680866241455, 0.008431888185441494, -0.015673067420721054, -0.022429654374718666, -0.004607078619301319, 0.020075924694538116, 0.009719517081975937, 0.032232243567705154, -0.0052232020534574986, -0.007171951234340668, 0.024340327829122543, 0.004731687717139721, 0.006379298400133848, -0.03671817481517792, -0.0018604844808578491, 0.04818221926689148, -0.024423401802778244, -0.006777355447411537, 0.00645544845610857, 0.0009570678230375051, 0.01340241078287363, -0.008778025396168232, -0.0011197520652785897, 0.007075032684952021, -0.029407769441604614, 0.0030667707324028015, 0.023177308961749077, 0.020463598892092705, -7.220193947432563e-05, -0.025807946920394897, -0.0013317606644704938, -0.022457344457507133, -0.017472976818680763, 0.005119360983371735, 0.011443276889622211, -0.017680659890174866, -0.026624830439686775, -0.008902634494006634, -0.008951093070209026, 0.003873269073665142, -0.0044617014937102795, -0.0037521212361752987, -0.0011785952374339104, 0.055381860584020615, -0.02141893468797207, 0.014122375287115574, -0.021294325590133667, -0.005839325021952391, -0.011817105114459991, -0.03660741075873375, -0.017514513805508614, -0.024894146248698235, 0.00957413949072361, -2.1349600501707755e-05, 0.01435774751007557, -0.03422598913311958, 0.010176417417824268, 0.03375524654984474, -0.010252567008137703, 0.00035630440106615424, 0.0036344346590340137, 0.028632422909140587, 0.013700088486075401, -0.008424965664744377, -0.029656987637281418, -0.006067775189876556, -0.005957011599093676, 0.015354621224105358, 0.019563643261790276, -0.014537738636136055, 0.01844215951859951, 0.02558642067015171, -0.030044659972190857, 0.011990172788500786, -0.00017458267393521965, -0.019203661009669304, 0.003315988928079605, -0.006507368758320808, -0.01593613065779209, -0.009878739714622498, -0.0050362879410386086, -0.003759043989703059, -0.003253684379160404, -0.014634656719863415, -0.014053147286176682, -0.00798883382230997, 0.0071650282479822636, 0.0424501970410347, -0.03284144401550293, 0.029878513887524605, -0.020823579281568527, -0.028549350798130035, 0.020934343338012695, -0.011242518201470375, -0.02456185594201088, -0.029103169217705727, -0.0016735706012696028, 0.006701205391436815, 0.02762170322239399, -0.04779454693198204, -0.02047744393348694, -0.002878126222640276, -0.0427824892103672, -0.017639122903347015, 0.0060193161480128765, 0.020809734240174294, 0.024935683235526085, -0.011242518201470375, -0.012197854928672314, 0.015839213505387306, 7.977367931744084e-05, 0.01218400988727808, 0.006355068646371365, -0.006811968982219696, -0.025891020894050598, -0.01632380299270153, 0.0020698970183730125, 0.02350960113108158, -0.02299731783568859, -0.004011723678559065, 0.012190932407975197, -0.000741597730666399, 0.002180660841986537, 0.010619471780955791, -0.0007450591074302793, -0.015410003252327442, -0.02162661775946617, -0.025018757209181786, 0.006088543683290482, -0.008424965664744377, -0.0020681663881987333, -0.01977132447063923, 0.0036136663984507322, 0.016074584797024727, 0.03068155236542225, -0.006780816707760096, 0.00740732392296195, 0.029712369665503502, 0.011699418537318707, -0.008923402987420559, -0.005642027128487825, 0.0023675747215747833, -0.02017284370958805, -0.006462370976805687, 0.00910339318215847, 0.03237069770693779, 0.018885215744376183, 0.00019156499183736742, -0.004340553656220436, 0.0020993186626583338, -0.01178941410034895, 0.005690486170351505, -0.02492183819413185, -0.0021304709371179342, 0.0019020208856090903, -0.0024177643936127424, 0.006479677744209766, 0.003328103804960847, 0.0247556921094656, -0.01234323251992464, 0.011346358805894852, 0.02071281708776951, -0.015493076294660568, -0.044831618666648865, 0.008037292398512363, 0.013803929090499878, -0.03605359047651291, -0.007753460668027401, -0.006846582517027855, -0.015077712014317513, 0.014551584608852863, -0.0353059358894825, 0.021765071898698807, -0.028313977643847466, 0.022900400683283806, -0.023288073018193245, -0.002644483931362629, -0.022194281220436096, 0.0021304709371179342, 0.00910339318215847, -0.010474095121026039, -0.026029475033283234, 0.2509905993938446, -0.016545331105589867, 0.010584858246147633, 0.0011249440722167492, 0.005108976736664772, 0.05372040718793869, -0.016462258994579315, -0.009553370997309685, -0.0006066044443286955, -0.013014737516641617, -0.0016727052861824632, -0.01581152155995369, 0.011076372116804123, 0.000791354919783771, -0.008397274650633335, -0.01204555481672287, -0.02990620583295822, -0.03408753499388695, -0.011228672228753567, -0.010114112868905067, 0.0123778460547328, -0.0130078149959445, -0.011990172788500786, 0.0031048457603901625, 0.011041758581995964, 0.00875033438205719, 0.0004168783198110759, 0.008916479535400867, 0.007843456231057644, 0.001373297069221735, -0.030515406280755997, 0.008694952353835106, 0.008791870437562466, 0.006718512158840895, -0.0063135321252048016, -0.015326930209994316, 0.030930770561099052, 0.01698838546872139, 0.025794101879000664, -0.0005927589954808354, -0.0021650847047567368, -0.014385438524186611, 0.008494192734360695, -0.0037140462081879377, -0.02460339292883873, 0.011180213652551174, -0.013707011006772518, 0.011699418537318707, 0.006320455111563206, 0.01675301417708397, -0.04109334200620651, -0.03414291888475418, 0.032038405537605286, 0.005770097952336073, -0.02868780493736267, -0.014551584608852863, 0.03342295438051224, -0.0123778460547328, 0.026430994272232056, 0.022069672122597694, -0.030598478391766548, 0.010854844935238361, -0.020394369959831238, 0.04485930874943733, -0.041259486228227615, 0.0038801918271929026, -0.003741736989468336, 0.007628851570188999, 0.017569895833730698, -0.011394818313419819, -0.008051138371229172, 0.009691826067864895, -0.003585975617170334, 0.0013343567261472344, -0.007808842696249485, -0.03367217257618904, 0.025337202474474907, 0.008071906864643097, 0.03068155236542225, 0.016614558175206184, -0.0015645376406610012, 0.013852388598024845, 0.003679432440549135, -0.02079588919878006, -0.014593120664358139, -0.01131866779178381, -0.009788744151592255, -0.0399303212761879, -0.01281397882848978, 0.027635550126433372, 0.005943166092038155, -0.027289412915706635, 0.006808507721871138, -0.0070023443549871445, -0.007303483318537474, 0.00197124807164073, 0.015216167084872723, -0.004890910815447569, -0.002744863508269191, -0.015368467196822166, -0.026237158104777336, -0.008411120623350143, 0.009844126179814339, 0.01812371425330639, -0.005292429123073816, 0.012744750827550888, -0.010031039826571941, -0.003315988928079605, 0.00812036544084549, -0.031096914783120155, 0.01248168759047985, -0.05097900331020355, 0.0031827264465391636, 0.007192719262093306, 0.0019245196599513292, -0.0014061800902709365, -0.020352834835648537, -0.006642362102866173, -0.02546181157231331, 0.013077042065560818, 0.038435012102127075, -0.016102276742458344, -0.015077712014317513, 0.032121479511260986, 0.008888788521289825, -0.026514066383242607, -0.03037695214152336, -0.01687762327492237, 0.01707145944237709, -0.03162304311990738, 0.00047161115799099207, -0.03408753499388695, 0.03915497660636902, -0.00563164334744215, -0.007158105727285147, -0.008604956790804863, 0.0014304096112027764, -0.029241623356938362, -0.006130079738795757, -0.011200981214642525, -0.008314201608300209, 0.024492628872394562, 0.004963599611073732, 0.008044215850532055, -0.009054934605956078, 0.000511849531903863, -0.007185796741396189, 0.01248168759047985, -0.004132871516048908, -8.707500091986731e-05, -0.03500133752822876, -0.017556050792336464, 0.027843231335282326, 0.014413129538297653, 0.0015818444080650806, -0.02522643841803074, -0.0060746981762349606, -0.04148101434111595, 0.016116121783852577, 0.02158508077263832, -0.040511831641197205, -0.019480569288134575, -0.0029058170039206743, -0.029241623356938362, -0.010681776329874992, -0.0007173682097345591, -0.17478515207767487, 0.00339386984705925, 0.03574899211525917, -0.029850823804736137, 0.02704019472002983, -0.020352834835648537, 0.018511386588215828, -0.014032379724085331, -0.010598704218864441, -0.005302813369780779, 0.011311745271086693, -0.019549798220396042, -0.02229120023548603, 0.007483473978936672, -0.013215497136116028, -0.006936578080058098, -0.017057614400982857, 0.0007567412103526294, 0.0474068745970726, -0.00382134853862226, 0.032149169594049454, -0.04137025028467178, 0.0153823122382164, 0.0006844851886853576, -0.007275792304426432, -0.005735483951866627, -0.014150065369904041, -0.015839213505387306, 0.03896113857626915, -0.031373824924230576, 0.014011611230671406, -0.006645823363214731, 0.01505002100020647, -0.015313085168600082, 0.031096914783120155, 0.006330839358270168, -0.01989593356847763, 0.02319115400314331, -0.014440820552408695, 0.0014027187135070562, -0.02511567436158657, 0.02366190031170845, 0.0005927589954808354, -0.0003675538464449346, -0.02687404863536358, 0.023052699863910675, -0.009857971221208572, -0.006386220920830965, 0.0022637336514890194, -0.0072550238110125065, 0.012322464026510715, -0.02723403088748455, -0.004793992266058922, 0.0036275119055062532, 0.042200978845357895, 0.007781151682138443, 0.002801976166665554, 0.026624830439686775, 0.002744863508269191, -0.0136377839371562, -0.0016631865873932838, -0.03234300762414932, 0.013866233639419079, 0.009283384308218956, -0.014482356607913971, -0.016822241246700287, -0.00658351881429553, 0.04084412381052971, -0.04646538197994232, 0.005628181621432304, 0.00454131281003356, -0.013347028754651546, 0.002980236429721117, -0.04206252470612526, 0.01754220575094223, 0.00987181719392538, 0.003914805594831705, -0.003343679942190647, 0.022041982039809227, -0.028120141476392746, -0.03716123104095459, 0.05831710249185562, -0.025946402922272682, 0.009407993406057358, 0.01471772976219654, 0.0008869751472957432, 0.013194728642702103, -0.021598925814032555, -0.030598478391766548, 0.012495532631874084, 0.031207678839564323, -0.03480749949812889, 0.0112632866948843, -0.017279140651226044, 0.02051897905766964, 0.005330504383891821, -0.0026012167800217867, -0.01876060664653778, 0.0016778974095359445, -0.010508708655834198, 0.0018535617273300886, -0.01722375862300396, -0.01188633218407631, 0.020422061905264854, 0.012820901349186897, 0.03284144401550293, -0.013291646726429462, 0.022429654374718666, 0.01473157573491335, 0.002734479494392872, -0.009027243591845036, -0.011187136173248291, 0.015091557055711746, 0.030266188085079193, 0.018179096281528473, 0.02616792917251587, 0.004285171627998352, -0.004607078619301319, 0.017279140651226044, 0.019785169512033463, 0.0045966943725943565, -0.017334522679448128, -0.011242518201470375, 0.014842338860034943, -0.008798792958259583, 0.006690821144729853, -0.04209021478891373, -0.018179096281528473, 0.0010479287011548877, 0.008563420735299587, -0.021681999787688255, 0.011041758581995964, -0.010114112868905067, 0.033533718436956406, -0.006794662214815617, 0.005863554775714874, -0.01088945847004652, -0.023911118507385254, -0.008127287961542606, -0.007483473978936672, 0.010217953473329544, -0.0038282712921500206, 0.002931777387857437, 0.002412572270259261, 0.0001705804606899619, 0.023952655494213104, 0.009664135053753853, -0.026929430663585663, -0.007968065328896046, -0.015091557055711746, -0.009857971221208572, 0.009387225843966007, -0.00967105757445097, 0.021142026409506798, 0.0019972084555774927, 0.011339436285197735, 0.01640687696635723, -0.02098972536623478, 0.02028360776603222, -0.011512504890561104, -0.002827936317771673, 0.009920275770127773, -0.023634210228919983, -0.01557614840567112, 0.021765071898698807, -0.01942518725991249, 0.004752456210553646, 0.022152744233608246, 0.005932781845331192, -0.0005944896838627756, -0.00875033438205719, -0.043807052075862885, -0.0011007145512849092, 0.010079499334096909, -0.0016926081152632833, -0.004832067526876926, -0.012017863802611828, 0.01765296794474125, 0.022512726485729218, -0.04610539972782135, 0.037964265793561935, 0.009221079759299755, 0.0094979889690876, 0.0005023307749070227, -0.023717282339930534, 0.01997900754213333, -0.020200533792376518, -0.01930057816207409, 0.016739167273044586, 0.04015184938907623, 0.005309735890477896, 0.006694282405078411, -0.016656095162034035, -0.014143142849206924, 0.04494238272309303, -0.007753460668027401, -0.0042886328883469105, 0.03248146176338196, 7.44193748687394e-05, 0.029601605609059334, -0.061307720839977264, -0.0064866007305681705, -0.011858641169965267, -0.014205447398126125, 0.021474316716194153, -0.018774451687932014, -0.013035506010055542, -0.003997878171503544, -0.0035011721774935722, -0.022028135135769844, 0.03638588264584541, -0.006773894187062979, -0.02193121798336506, 0.010321795009076595, 0.031567662954330444, -0.0013265686575323343, -0.0002060594706563279, -0.013347028754651546, 0.01528539415448904, -0.016116121783852577, -0.02428494580090046, 0.0010782156605273485, 0.017514513805508614, -0.0009060126612894237, -0.008570343255996704, 0.015451539307832718, -0.01702992245554924, -0.026943275704979897, -0.07310406118631363, 0.020740507170557976, 0.013021660037338734, 0.0165591761469841, 0.015202321112155914, -0.016143813729286194, 0.0225265733897686, 0.0034907879307866096, 0.013353951275348663, -0.01876060664653778, -0.015008484944701195, 0.010751004330813885, 0.007801919709891081, -0.004745533224195242, -0.004430548753589392, -0.03159535303711891, 0.01867753267288208, -0.003759043989703059, -0.006396605167537928, 0.02597409300506115, 0.007615006063133478, -0.0007822688203305006, 0.013866233639419079, 0.0188713688403368, -0.013139346614480019, 0.029795441776514053, 0.012128627859055996, 0.013963151723146439, -0.006112772971391678, -0.0002961631689686328, -0.0024714155588299036, -0.03140151500701904, -0.01214247290045023, 0.0427824892103672, 0.010072575882077217, 0.0073104058392345905, -0.030709242448210716, 0.00917954370379448, 0.015880748629570007, 0.002930046757683158, 0.0034509822726249695, -0.020200533792376518, 0.022845018655061722, -0.01824832335114479, 0.0028850489761680365, 0.023994192481040955, -0.028909331187605858, 0.01918981596827507, 0.02982313372194767, 0.01505002100020647, 0.0011621537851169705, 0.01353394240140915, -0.019785169512033463, -0.0100033488124609, -0.025766411796212196, -0.05372040718793869, 0.02785707637667656, -0.013720856048166752, -0.010751004330813885, -0.0002634965057950467, 0.025254128500819206, 0.025101829320192337, 0.00694696232676506, 0.01059178076684475, 0.008487270213663578, 0.014136220328509808, -0.03040464222431183, -0.005562415812164545, -0.004662460647523403, -0.023205000907182693, -0.02695712074637413, 0.004683228675276041, -0.019369807094335556, -0.015091557055711746, -0.005839325021952391, 0.031069224700331688, -0.004821683280169964, 0.008189592510461807, -0.031290750950574875, 0.02899240516126156, 0.017445286735892296, -0.017902186140418053, -0.04538543522357941, 0.003084077499806881, 0.049151401966810226, -0.0069261942990124226, -0.006271996069699526, 0.022305045276880264, -0.03386601060628891, -0.004627846647053957, -0.013146269135177135, 0.010169494897127151, 0.013921615667641163, 0.01666994020342827, 0.006618132349103689, 0.044277798384428024, -0.00463823089376092, -0.0178191140294075, 0.019369807094335556, 0.02526797540485859, 0.014233138412237167, 0.001477138139307499, 0.018151406198740005, -0.023966500535607338, -0.003624050645157695, 0.00397364841774106, -0.008556497283279896, -0.030460024252533913, 0.004119026008993387, -0.011055604554712772, -0.013021660037338734, 1.0424661923025269e-05, -0.01247476413846016, 0.0061889230273664, -0.005770097952336073, 0.0015126171056181192, 0.01210785936564207, -0.025517193600535393, -0.0211835615336895, 0.026264848187565804, 0.02432648278772831, 0.033062972128391266, 0.038988832384347916, -0.010224875994026661, 0.016309957951307297, -0.026347920298576355, 0.019079051911830902, -0.00042488271719776094, 0.03602590039372444, 0.008390352129936218, 0.013146269135177135, 0.022041982039809227, -0.022858863696455956, -0.03746582940220833, -0.006860428024083376, 0.006261611822992563, 0.013873156160116196, -0.00973336212337017, -0.01473157573491335, 0.09077087044715881, 0.012135550379753113, -0.008314201608300209, -0.019785169512033463, 0.003596359631046653, 0.006510830018669367, 0.03754890337586403, 0.014911566860973835, -0.014980793930590153, -0.031456898897886276, 0.0013092618901282549, 0.0037278917152434587, 0.005628181621432304, -0.010425635613501072, 0.009470298886299133, 0.0067392801865935326, -0.040401067584753036, 0.0100033488124609, 0.006950423587113619, 0.023218845948576927, 0.027760159224271774, -0.0007000613259151578, 0.02229120023548603, 0.012031709775328636, 0.0009423570008948445, -0.005257815588265657, 0.017403749749064445, 5.7599299907451496e-05, -0.01938365213572979, 0.016919158399105072, -0.0065004462376236916, -0.01390777062624693, -0.002026630099862814, -0.024229565635323524, 0.003227724228054285, 0.012004018761217594, -0.016683785244822502, 0.019037514925003052, 0.027566321194171906, 0.014205447398126125, 0.009089548140764236, 0.045773107558488846, 0.006514291744679213, -0.015839213505387306, -0.01369316503405571, 0.023398837074637413, 0.005437806714326143, 0.0032606071326881647, -0.019632870331406593], "b6b19753-0021-4092-92a5-82c6385d1ea7": [-0.010839560069143772, -0.030850501731038094, -0.022834571078419685, 0.004329324699938297, -0.03792762756347656, 0.03564561530947685, -0.03521232306957245, -0.030474979430437088, -0.007467092480510473, -0.008196469396352768, 0.002276596613228321, 0.023816702887415886, 0.00587112782523036, 0.004990097600966692, 0.00794371496886015, -0.009806877002120018, -0.011771141551434994, 0.016291838139295578, 0.01793835312128067, -0.03041720762848854, 0.027297493070364, 0.017288412898778915, -0.008102589286863804, -0.024582188576459885, -0.010095739737153053, 0.009416913613677025, 0.04494698345661163, -0.01422647200524807, 0.002375893061980605, 0.001025461358949542, 0.02898733876645565, 0.0008228063816204667, -0.01373540610074997, -0.04500475898385048, -0.005759193561971188, -0.0331902876496315, -0.0023560337722301483, 0.011879464611411095, 0.01821277290582657, 0.004852887708693743, 0.0033580251038074493, 0.012110554613173008, -0.003200956154614687, 0.0031359621789306402, -0.005928900092840195, 0.014934184961020947, 0.018284987658262253, 0.00838423054665327, -0.013179345987737179, 0.015641897916793823, -0.004722899757325649, 0.028799578547477722, -0.04809558391571045, -0.01496307086199522, 0.02625758945941925, -0.018241658806800842, 0.02853960171341896, 0.0009324838174507022, -0.04601577669382095, -0.026907529681921005, 0.042116135358810425, -0.0013034914154559374, -0.024769948795437813, 0.008030373603105545, 0.003928528167307377, -0.03772542625665665, 0.004491809755563736, -0.014031489379703999, -0.012269428931176662, 0.014890855178236961, 0.02589651197195053, 0.020162593573331833, 0.009655225090682507, 0.008622542023658752, 0.0341724194586277, 0.0015445109456777573, 0.017230641096830368, 0.007958157919347286, -0.01060124859213829, 0.023860031738877296, 0.01789502426981926, -0.01704287901520729, -4.8717316531110555e-05, 0.008088146336376667, 0.016075190156698227, -0.012334423139691353, 0.008124253712594509, 0.03148599714040756, 0.007958157919347286, -0.0022946505341678858, -0.0007686447352170944, 0.016364052891731262, -0.018602736294269562, 0.0012773133348673582, 0.010059632360935211, 0.0050153727643191814, -0.03405687212944031, 0.017432844266295433, -0.012774938717484474, -0.015338592231273651, 0.01668180152773857, 0.0331902876496315, -0.01855940744280815, -0.00478789396584034, -0.032410357147455215, -0.035905592143535614, 0.009149715304374695, -0.022473491728305817, 0.004000743851065636, -0.011561715975403786, -0.031197136268019676, 0.026849757879972458, -0.018154999241232872, -0.0055028279311954975, -0.017996124923229218, -0.006315253674983978, 0.04590022936463356, -4.767357313539833e-05, -0.028597375378012657, -0.01601741835474968, 0.01623406447470188, 0.02254570834338665, 0.01161226723343134, -0.010081296786665916, 0.020523671060800552, 0.001490349299274385, 0.0029698661528527737, -0.010608470067381859, -0.02410556562244892, -0.03284365311264992, 0.05095532163977623, -0.0007451746496371925, 0.014154256321489811, 0.016392938792705536, 0.014197585172951221, 0.002467967802658677, -0.01906491629779339, 0.0018008763436228037, -0.007423762697726488, -0.011619488708674908, 0.02282012812793255, 0.02335452288389206, -0.0003003717283718288, 0.007066295947879553, 0.014739202335476875, 0.0011563522275537252, 0.01672513037919998, 0.013049357570707798, 0.004899827763438225, -0.021101396530866623, 0.014768088236451149, -0.009525236673653126, -0.001857746159657836, 0.010413488373160362, -0.015627454966306686, 0.020696988329291344, 0.004917881917208433, 0.012998806312680244, -0.01339599210768938, -0.03581893444061279, -0.005427001975476742, 0.013446543365716934, 0.020032605156302452, -0.025159912183880806, 0.01708620972931385, 0.024495529010891914, -0.019613754004240036, 0.01972929947078228, -0.00839145202189684, -0.007319050375372171, -0.010839560069143772, 0.02527545765042305, -0.005304235033690929, 0.015627454966306686, -0.00011498076491989195, 0.0006612240104004741, -0.007654852699488401, 0.00019058145699091256, -0.009907979518175125, 0.01847274787724018, 0.000660321325995028, 0.010659021325409412, 0.03217926621437073, 0.038187604397535324, 0.014681429602205753, -0.04384930804371834, -0.013511537574231625, -0.002686419989913702, 0.019339336082339287, -0.015064172446727753, 0.021173611283302307, 0.03064829669892788, 0.01663847267627716, 0.022170186042785645, -0.5083977580070496, -0.033305831253528595, 0.006694385316222906, 0.0017765036318451166, 0.023542283102869987, 0.021534688770771027, 0.009785212576389313, 0.05419057980179787, -0.020523671060800552, 0.020335910841822624, -0.01279660314321518, 0.028972895815968513, -0.022343505173921585, -0.005174247082322836, -0.025463217869400978, -0.01398093905299902, 0.00937358383089304, -0.01981595903635025, 0.03602113574743271, 0.025983169674873352, -0.02738415263593197, 0.020595887675881386, -0.023773372173309326, 0.021043622866272926, 0.015309705398976803, -0.01915157586336136, -0.012471633031964302, 0.0008011417230591178, -0.0018721892265602946, 0.029695050790905952, -0.024394426494836807, 0.029420632869005203, 0.0014777116011828184, 0.007120457477867603, 0.05228408798575401, -0.014212029054760933, -0.02796187810599804, 0.01955598220229149, -0.0002843489055521786, 0.04644906893372536, -0.016205178573727608, -0.02397557720541954, 0.022487934678792953, 0.008673092350363731, -0.007012133952230215, -0.03345026075839996, 0.0035710609517991543, -0.026763098314404488, -0.012319980189204216, -0.034027986228466034, -0.00825424212962389, -0.013071021996438503, 0.005427001975476742, -0.010825117118656635, -0.0037479891907423735, -0.0017015798948705196, 0.007221559062600136, -0.02178022265434265, -0.0043618218041956425, -0.01496307086199522, -0.019382664933800697, 0.00894751213490963, -0.0040946239605546, -0.015685226768255234, -0.01597408950328827, 0.002397557720541954, -0.01851607859134674, 0.018487190827727318, -0.021664677187800407, -0.020740319043397903, -0.012543848715722561, 0.028106309473514557, -0.03781208395957947, 0.03833203762769699, 0.026402020826935768, 0.03968968987464905, 0.0466223880648613, -0.04416705667972565, 0.011590602807700634, 0.013511537574231625, 0.011590602807700634, -0.015309705398976803, -0.025029923766851425, -0.011749477125704288, 0.028712918981909752, 0.0020310634281486273, -0.02397557720541954, 0.013410435058176517, 0.010926218703389168, -0.021679120138287544, 0.027716344222426414, 0.005130917765200138, 0.027774116024374962, -0.031341567635536194, 0.016161849722266197, -0.0013811232056468725, -0.029550621286034584, 0.02062477357685566, 0.030879387632012367, 0.0004820390895474702, -0.05725252255797386, 0.02039368264377117, 0.010391823947429657, -0.004668738227337599, -0.0031648483127355576, 0.010081296786665916, -0.03801428899168968, 0.006950750946998596, 0.020913636311888695, -0.006983247585594654, -0.017562832683324814, -0.0515330471098423, 0.002736971015110612, -0.002709890017285943, 0.008622542023658752, -0.057425837963819504, 0.03749433532357216, 0.01806834153831005, -0.014551442116498947, -0.01727396994829178, 0.022069085389375687, -0.012688279151916504, 0.03082161396741867, 0.0240766778588295, 0.017635047435760498, 0.032410357147455215, 0.041942816227674484, -0.028785135596990585, 0.0031955400481820107, 0.02433665469288826, -0.03261256217956543, -0.017606161534786224, 0.027774116024374962, -0.010435152798891068, -0.003146794391795993, 0.009149715304374695, -0.0039032527711242437, -0.004488199017941952, -0.0010218506213277578, -0.001150936004705727, -0.02209797129034996, -0.028077421709895134, -0.007438206113874912, -0.006196097936481237, 0.001688942196778953, -0.005903624463826418, 0.013316554948687553, -0.0020382851362228394, -0.02693641558289528, -0.010471261106431484, -0.0032153993379324675, 0.015439693816006184, -0.03310362622141838, 0.03423019126057625, -0.0011464225826784968, -0.013865393586456776, -0.004943157080560923, -0.008889739401638508, 0.025289900600910187, -0.023643385618925095, 0.005354786291718483, 0.00776317622512579, -0.01949821040034294, 0.0034519052132964134, -0.004943157080560923, -0.03775431215763092, -0.00021563124028034508, -0.0002486924349796027, -0.016811789944767952, -0.014890855178236961, -0.007376822642982006, 0.011691704392433167, -0.01453699916601181, 0.003859923454001546, -0.013504316098988056, -0.012117776088416576, 0.012774938717484474, 0.02026369608938694, 0.013944830745458603, 0.006246648728847504, 0.023340079933404922, 0.0058494629338383675, -0.013258783146739006, 0.0017494227504357696, -0.004036851692944765, -0.0021429976914077997, 0.014609213918447495, 0.027629686519503593, -0.02250237949192524, 0.028915124014019966, -0.02764412946999073, -0.0003637860354501754, 0.014125369489192963, 0.008528661914169788, 0.03636777400970459, 0.015049729496240616, 0.018761610612273216, 0.017822807654738426, -0.03050386533141136, 0.02237239107489586, 0.045611366629600525, 0.012717165984213352, 0.013518759049475193, -0.06066109612584114, 0.0178516935557127, -0.019844844937324524, 0.002220629481598735, -0.01757727563381195, 0.013229896314442158, -0.011828914284706116, -0.015555238351225853, -0.039834119379520416, 0.0003836453252006322, -0.0018189302645623684, 0.0316593162715435, 0.01659514382481575, -0.00010499470226932317, 0.00849977508187294, 0.010810674168169498, 0.004311271011829376, 0.006860481109470129, -0.016840675845742226, 0.00016225941362790763, -0.0018794108182191849, -0.007181840483099222, -0.0357033871114254, 0.00811703223735094, -0.02612760104238987, -0.016652915626764297, -0.012536627240478992, -0.007474313955754042, -0.02523212879896164, -0.015988532453775406, -0.005993894301354885, 0.016797346994280815, -0.03137045353651047, 0.031023818999528885, 0.012457190081477165, 0.009424135088920593, -0.020725874230265617, 0.021852437406778336, 0.014038710854947567, -0.014659765176475048, -0.03544341400265694, 0.018140556290745735, 0.037378791719675064, 0.03327694535255432, 0.00474095344543457, -0.002764051780104637, 0.02152024582028389, -0.024582188576459885, -0.01731729879975319, -0.025564320385456085, 0.030041687190532684, -0.012998806312680244, -0.010976769961416721, 0.008196469396352768, -0.0013377938885241747, 0.02751414105296135, 0.014991956762969494, 0.041798386722803116, 0.04107622802257538, -0.004202947486191988, 0.0017963628051802516, 0.03685883805155754, -0.01496307086199522, 0.011908351443707943, -0.03139933943748474, 0.022430162876844406, -0.01017517689615488, -0.014565885066986084, -0.03206372261047363, 0.02043701335787773, 0.0181261133402586, 0.015800772234797478, -0.004253498278558254, 0.020913636311888695, -0.003464543027803302, 0.014500890858471394, -0.019036030396819115, -0.0008711005793884397, -0.04621797800064087, 0.0366855226457119, 0.036887723952531815, 0.00782817043364048, -0.05089754983782768, -0.011893908493220806, 0.011222302913665771, 0.005376450717449188, 0.026228703558444977, 0.027485255151987076, 0.0002150670625269413, -0.0048312232829630375, 0.010305165313184261, -0.014890855178236961, 0.02022036537528038, 0.0011076066875830293, -0.014074819162487984, 0.013576531782746315, -0.0059541757218539715, 0.02410556562244892, -0.001127465977333486, 0.00475178612396121, -0.0003525023639667779, 0.05395948886871338, -0.008167583495378494, 0.030590524896979332, -0.011142865754663944, -0.008752529509365559, 0.009712996892631054, -0.0018848269246518612, -0.028062978759407997, -0.022025756537914276, -0.007467092480510473, -0.0173606276512146, 0.021578019484877586, -0.011503944173455238, -0.021043622866272926, 0.018039455637335777, -0.014500890858471394, -0.04306937754154205, -0.0386497862637043, -0.03148599714040756, 0.017505059018731117, -0.024047791957855225, 0.03024389035999775, -0.023816702887415886, -0.024004463106393814, -0.043993737548589706, 0.009611895307898521, 0.0109189972281456, -0.03449016809463501, 0.017331741750240326, -0.021303599700331688, -0.010752901434898376, -0.022603480145335197, 0.031023818999528885, -0.01565634086728096, 0.011807248927652836, 0.005571432877331972, -0.017375072464346886, -0.00533312140032649, 0.03105270490050316, 0.002034674398601055, -0.008543104864656925, -0.003002363257110119, 0.03405687212944031, 0.017952796071767807, -0.006066109985113144, -0.017245084047317505, -0.013800399377942085, 0.0022170187439769506, 0.0004901633365079761, 0.007589858956634998, -0.0020725876092910767, 0.003296641865745187, -0.02365782856941223, 0.02147691696882248, -0.014746423810720444, -0.010897332802414894, 0.010731237009167671, 0.04228945076465607, -0.002150219166651368, -0.031081590801477432, 0.019527096301317215, 0.03677218034863472, 0.0195993110537529, -0.02621426060795784, 0.021809108555316925, -0.010911775752902031, -0.004033240955322981, 0.0013856366276741028, -0.005997505038976669, -0.010427931323647499, 0.01084678154438734, -0.0075176432728767395, -0.02728305011987686, -0.018097227439284325, 0.00017523564747534692, 0.02277679741382599, -0.028655147179961205, -0.017288412898778915, 0.005058702081441879, 0.01205278281122446, 0.009539679624140263, -0.030272776260972023, 0.01377873495221138, -0.0028019649907946587, 0.024856606498360634, -0.028655147179961205, -0.036743294447660446, -0.022747911512851715, -0.04873108118772507, -0.012919369153678417, -0.008478110656142235, -0.0031666536815464497, -0.022401276975870132, -0.03353692218661308, 0.02237239107489586, 0.025131026282906532, 0.012774938717484474, -0.021014736965298653, -0.006037223618477583, 0.02316676266491413, -0.00031842562020756304, -0.022921228781342506, -0.01879049651324749, 0.0158874299377203, 0.0017440065275877714, -0.0016456127632409334, 0.04217390716075897, 0.004300438333302736, 0.021621348336338997, 0.0025690696202218533, 0.02000371925532818, 0.015194160863757133, 0.02621426060795784, -0.015425250865519047, -0.011886686086654663, 0.010435152798891068, -0.00979965552687645, 0.029016224667429924, -0.04835556074976921, 0.016046304255723953, 0.019397107884287834, -0.03677218034863472, 0.006849648896604776, 0.007654852699488401, -0.033392488956451416, -0.005390894133597612, 0.02173689380288124, 0.02885735034942627, 0.007510421797633171, -0.0016194346826523542, 0.0018992701079696417, -0.017952796071767807, -0.0019967611879110336, -0.02926175855100155, 0.0009821320418268442, -0.0015300678787752986, -0.006235816515982151, 0.019787073135375977, -0.0031179082579910755, 0.03145711123943329, -0.001833373331464827, -0.01793835312128067, 0.032901424914598465, 0.005997505038976669, 0.004376264754682779, 0.011077871546149254, -0.021303599700331688, 4.3442192691145465e-05, -0.028395170345902443, 0.013648746535182, -0.02911732718348503, 0.014399789273738861, 0.019353779032826424, -0.03342137485742569, -0.0495687834918499, 0.014363680966198444, -0.0017647685017436743, 0.01708620972931385, -0.020465899258852005, -0.018718281760811806, -0.011930015869438648, -0.007640409749001265, 0.010297943837940693, -0.04457146301865578, 0.022040199488401413, -0.024726618081331253, -0.02186688221991062, 0.018776053562760353, -0.0009505377383902669, 0.007358768954873085, 0.009583009406924248, 0.01154005154967308, -0.040180753916502, -0.023860031738877296, 0.012096111662685871, -0.014551442116498947, -0.005737528670579195, 0.008109810762107372, 0.006419965997338295, 0.026185374706983566, 0.009301368147134781, -0.010182398371398449, 0.004993708338588476, -0.026806427165865898, 0.009200266562402248, -0.012601620517671108, -0.027124175801873207, 0.030590524896979332, -0.02679198421537876, -0.002469773171469569, 0.008109810762107372, 0.02595428377389908, -0.005376450717449188, -0.01578632928431034, -0.021939096972346306, 0.05835019797086716, -0.007243223953992128, 0.017115095630288124, -0.00648857094347477, -0.07516198605298996, -0.02576652355492115, -0.016118520870804787, -0.0004574406484607607, -0.010969548486173153, -0.028597375378012657, -0.009409692138433456, 0.007914829067885876, 0.01712953858077526, 0.015815215185284615, 0.02143358811736107, 0.0014316741144284606, 0.006380247417837381, -0.0031431836541742086, -0.004766229074448347, 0.04572691395878792, -0.00499731907621026, 0.008752529509365559, -0.015107502229511738, -0.01874716766178608, 0.011467835865914822, -0.04148063808679581, 0.011843357235193253, -0.0002423735859338194, 0.016002975404262543, -0.012060004286468029, 0.009048613719642162, -0.004899827763438225, -0.017923910170793533, -0.009026949293911457, -0.03261256217956543, -0.004694013390690088, -0.03596336394548416, -0.0039393603801727295, -0.02401890605688095, 0.004242666065692902, -0.0012601620983332396, -0.007127678953111172, 0.01981595903635025, -0.02459663152694702, -0.01906491629779339, 0.006080552935600281, -0.009409692138433456, -0.015237489715218544, 0.014183142222464085, 0.017028436064720154, 0.028510715812444687, -0.012955477461218834, 0.00845644623041153, -0.036974381655454636, -0.01650848425924778, 0.00400435458868742, 0.022805683314800262, 0.016291838139295578, -0.005575043614953756, -0.015988532453775406, 0.010839560069143772, 0.004426816012710333, -0.015945203602313995, -0.024856606498360634, 0.026402020826935768, 0.028510715812444687, 0.010160733945667744, -0.005835019983351231, -0.007254056166857481, -0.01990261673927307, 0.001904686214402318, -0.016494041308760643, -0.008247020654380322, -0.018053898587822914, -0.006882146000862122, -0.03356580808758736, 0.0371188148856163, -0.011807248927652836, 0.015844101086258888, 0.02250237949192524, 0.002708084648475051, -0.010890111327171326, -0.023874474689364433, 0.001809903304092586, 0.013872615061700344, 0.024668846279382706, 0.031601544469594955, -0.01829943060874939, 0.00011294970317976549, 0.022964557632803917, -0.0035042616073042154, -0.005250073503702879, -0.029695050790905952, -0.009611895307898521, 0.04393596574664116, -0.044398147612810135, -0.0003696535713970661, 0.0028218242805451155, 0.0058783493004739285, 0.030388321727514267, 0.008644206449389458, -0.005892792250961065, 0.02617092989385128, -0.029449518769979477, 0.005751972086727619, 0.02563653513789177, 0.010615692473948002, -0.0016149211442098022, -0.015540795400738716, -0.01031238678842783, -0.01718731038272381, -0.01391594484448433, 0.010615692473948002, -2.8886237487313338e-05, -0.009655225090682507, -0.01883382722735405, -0.012124997563660145, -0.005553379189223051, 0.008355343714356422, 0.0017936547519639134, -0.0024481085129082203, -0.0003227134293410927, 0.0544794425368309, -0.006008337251842022, 0.008961955085396767, -0.026994189247488976, 0.004470145329833031, -0.02926175855100155, -0.02728305011987686, -0.005080366972833872, -0.0047734505496919155, 0.010276278480887413, 1.9111743313260376e-05, 0.02450997196137905, -0.011915572918951511, 0.01545413676649332, 0.02228573150932789, -0.0018144167261198163, 0.00845644623041153, 0.0035584233701229095, 0.026806427165865898, 0.02357116900384426, -0.008788637816905975, -0.028554044663906097, -0.0011148281628265977, 0.0006535511347465217, 0.015367478132247925, 0.014919741079211235, -0.008918625302612782, 0.016667358577251434, 0.025391003116965294, -0.022300174459815025, 0.019787073135375977, -0.014017046429216862, -0.013280447572469711, 0.007423762697726488, 0.004007965326309204, -0.005900013726204634, -0.017143981531262398, 0.002244099508970976, -0.010890111327171326, 0.00023447499552275985, -0.00729016400873661, -0.008413116447627544, -0.012377752922475338, 0.012291094288229942, 0.05063757300376892, -0.019267119467258453, 0.03154376894235611, -0.007445427589118481, -0.042751628905534744, 0.020075934007763863, -0.006304420996457338, -0.03385467082262039, -0.014659765176475048, -0.01234886609017849, 0.012211657129228115, 0.027008632197976112, -0.04812446981668472, -0.025131026282906532, 0.002099668374285102, -0.04875996708869934, -0.013432100415229797, 0.019339336082339287, 0.02657533809542656, 0.02115916833281517, -0.009048613719642162, -0.011063428595662117, 0.008644206449389458, -0.0035782826598733664, 0.020610330626368523, 0.023181205615401268, -0.000952343107201159, -0.010680685751140118, -0.013771513476967812, -0.0006688969442620873, 0.03480791673064232, -0.02501548081636429, -0.006181654520332813, 0.016970664262771606, 0.014443118125200272, 0.016479598358273506, -0.011236745864152908, -0.002050922717899084, -0.022690139710903168, -0.02630091831088066, -0.01855940744280815, 0.016927335411310196, -0.003569255582988262, 0.005611151456832886, -0.030301662161946297, 0.01111397985368967, 0.015872986987233162, 0.031023818999528885, 0.006055277306586504, -0.0048023369163274765, 0.03911196440458298, 0.013764292001724243, -0.002688225358724594, -0.003881588112562895, -0.003932138904929161, 0.002034674398601055, -0.002421027747914195, 0.012153884395956993, 0.015483022667467594, 0.011670039966702461, 0.008954733610153198, 0.014219250530004501, 0.005549768451601267, -0.0191082451492548, -0.005481163505464792, -0.03024389035999775, -0.013547644950449467, 0.004499031230807304, -0.007329882588237524, 0.016248507425189018, 0.011388398706912994, 0.024394426494836807, -0.012825489044189453, 0.009171380661427975, 0.012110554613173008, -0.01066624280065298, -0.047084566205739975, 0.019166018813848495, 0.013749849051237106, -0.03980523347854614, -0.007239613216370344, -0.01699955016374588, -0.026690883561968803, -0.0031161028891801834, -0.024177780374884605, 0.009756326675415039, -0.015901872888207436, 0.030706070363521576, -0.008875296451151371, -0.00919304508715868, -0.016970664262771606, 0.007178229745477438, 0.010341272689402103, -0.005441444925963879, -0.030388321727514267, 0.23108989000320435, -0.009474685415625572, 0.011930015869438648, 0.008875296451151371, 0.009106386452913284, 0.04286717623472214, -0.025217683985829353, -0.008665870875120163, 0.007987044751644135, -0.014385346323251724, -0.009409692138433456, -0.012146662920713425, 0.010890111327171326, 0.0010570557788014412, -0.012182770296931267, -0.00596139719709754, -0.018862713128328323, -0.03642554581165314, -0.0051489719189703465, 0.012189991772174835, 0.009221930988132954, -0.015670783817768097, -0.008239799179136753, -0.007633188273757696, 0.01371374074369669, 0.004993708338588476, 0.010334051214158535, -0.0027748842258006334, 0.004462923388928175, 0.010521811433136463, -0.019743742421269417, 0.0030962435994297266, 0.0025979559868574142, 0.005185079760849476, 0.003935749642550945, -0.028380727395415306, 0.02687864378094673, 0.01842941902577877, 0.027586355805397034, 0.002370476722717285, -0.0021628569811582565, -0.028077421709895134, 0.023455623537302017, -0.013706519268453121, -0.035905592143535614, 0.004903438501060009, -0.009611895307898521, 0.015757441520690918, 0.004098234698176384, 0.014464783482253551, -0.027369709685444832, -0.028597375378012657, 0.04933769255876541, 0.003805761691182852, -0.039429713040590286, -0.0034609322901815176, 0.042433880269527435, -0.0031594322063028812, 0.027774116024374962, 0.013829286210238934, -0.027889661490917206, 0.016624029725790024, -0.022661253809928894, 0.027008632197976112, -0.03431684896349907, -0.002816408174112439, 0.00982132088392973, -0.0053800614550709724, 0.033132512122392654, -0.0022603480610996485, -0.0026990578044205904, 0.005672534927725792, 0.002366865985095501, -0.0024715785402804613, -0.020826976746320724, -0.04035407304763794, 0.025795409455895424, 0.006719660945236683, 0.031197136268019676, 0.013728183694183826, -0.015381921082735062, 0.005575043614953756, -0.0046217977069318295, -0.004372654017060995, -0.013229896314442158, -0.02738415263593197, 0.008044816553592682, -0.03316140174865723, -0.012955477461218834, 0.028308512642979622, 0.0069435290060937405, -0.02053811401128769, 0.005892792250961065, -0.009106386452913284, -0.009026949293911457, 0.009229152463376522, 0.0181261133402586, 0.0018866324098780751, -0.010514589957892895, -0.015107502229511738, -0.02397557720541954, -0.007553751114755869, 0.017013993114233017, 0.003594531212002039, 0.004899827763438225, -0.0009947697399184108, -0.018198329955339432, -0.0025528213009238243, 0.01646515540778637, -0.03671440854668617, -0.0016898448811843991, -0.04280940443277359, 0.0071998946368694305, 0.01753394491970539, 0.015468579716980457, 0.0031179082579910755, -0.011937237344682217, -0.010926218703389168, -0.011157308705151081, 0.016898449510335922, 0.04168283939361572, -0.035992249846458435, -0.004322103224694729, 0.0357033871114254, 0.010442374274134636, -0.023686714470386505, -0.042780518531799316, -0.009315811097621918, 0.013345441780984402, -0.04280940443277359, 0.010449596680700779, -0.0411628894507885, 0.036569975316524506, -0.0012673836899921298, -0.00856476929038763, -0.0078065055422484875, -0.011590602807700634, -0.021939096972346306, -0.004654294811189175, -0.01727396994829178, -0.016884004697203636, 0.031832631677389145, 0.018487190827727318, -0.009229152463376522, -0.01198778860270977, -0.005567822139710188, -0.012933813035488129, 0.0019245455041527748, 0.005343953613191843, -0.01601741835474968, -0.029016224667429924, -0.02107251062989235, 0.037378791719675064, -0.0020942522678524256, -0.009496350772678852, -0.02178022265434265, -0.015714112669229507, -0.04743120074272156, 0.010991212911903858, 0.04844221845269203, -0.04621797800064087, -0.0011473252670839429, -0.003686605952680111, -0.021823551505804062, -0.0021592462435364723, -0.000759166432544589, -0.1825610250234604, 0.0006386566674336791, 0.04540916532278061, -0.05118641257286072, 0.024899935349822044, -0.02218463085591793, 0.022531265392899513, -0.0030872165225446224, -0.014385346323251724, -0.004585690330713987, 0.013720962218940258, -0.019036030396819115, -0.03212149441242218, 0.0044665345922112465, -0.013865393586456776, 0.0031594322063028812, -0.013215453363955021, 0.009539679624140263, 0.028611818328499794, 0.0017078988021239638, 0.02943507581949234, -0.04486032575368881, 0.0019967611879110336, -0.0005307846004143357, -0.004733731970191002, -0.011020099744200706, -0.009113607928156853, -0.024177780374884605, 0.035270094871520996, -0.019917059689760208, 0.022964557632803917, -0.010290722362697124, 0.03365246579051018, -0.005289792083203793, 0.01981595903635025, 0.01073845848441124, -0.02186688221991062, 0.022170186042785645, -0.008145919069647789, 0.012218878604471684, -0.022155743092298508, 0.012096111662685871, 0.010009081102907658, 0.006983247585594654, -0.038360923528671265, 0.04393596574664116, -0.002496854169294238, -0.009156936779618263, 0.009785212576389313, -0.01104898564517498, 0.008868074975907803, -0.02286345697939396, 0.002272985875606537, 0.009532458148896694, 0.04907771572470665, 0.024120008572936058, 0.015049729496240616, 0.02813519537448883, 0.008203690871596336, -0.004228223115205765, 0.003395938314497471, -0.045611366629600525, 0.0086803138256073, -0.000512279337272048, -0.025795409455895424, -0.009828542359173298, -0.0002396655036136508, 0.03665663301944733, -0.047402314841747284, 0.005008151289075613, 0.00708073889836669, -0.006849648896604776, -0.005065924022346735, -0.0331902876496315, 0.030041687190532684, 0.00176115776412189, -0.006387469358742237, -0.002787521807476878, 0.011511165648698807, -0.03833203762769699, -0.05112864077091217, 0.06418521702289581, -0.012688279151916504, -0.01440701074898243, 0.025391003116965294, -0.0033110848162323236, 0.01247885450720787, -0.027413038536906242, -0.027976321056485176, 0.00912805087864399, 0.034287963062524796, -0.03385467082262039, 0.023917803540825844, -0.008716422133147717, 0.015844101086258888, 0.016407381743192673, -0.0071998946368694305, -0.026026500388979912, 0.006224983837455511, 0.0017728927778080106, 0.013258783146739006, -0.01919490471482277, -0.02227128855884075, 0.01597408950328827, 0.003917695954442024, 0.027413038536906242, -0.025983169674873352, 0.019021587446331978, 0.020653659477829933, 0.0009821320418268442, 0.004762618336826563, -0.00639830157160759, 0.01977262832224369, 0.02152024582028389, 0.01451533380895853, 0.03775431215763092, -0.0016104077221825719, 0.004202947486191988, 0.019787073135375977, 0.004943157080560923, -0.005185079760849476, -0.02728305011987686, -0.02173689380288124, 0.010037967003881931, -0.0048312232829630375, -0.005697810091078281, -0.06655389070510864, -0.01825610175728798, 0.004152396693825722, 0.0005605735350400209, -0.04402262344956398, 0.0009821320418268442, -0.009705775417387486, 0.023686714470386505, -0.027543026953935623, 0.008059260435402393, -0.010680685751140118, -0.03997855260968208, -0.014905298128724098, -0.004791504703462124, -0.0005185982445254922, -0.0005465817521326244, 0.0006860481225885451, 0.009279703721404076, 0.010955105535686016, 0.02388891763985157, 0.01483308244496584, -0.04558248072862625, 0.00517785781994462, -0.01011018268764019, -0.016884004697203636, 0.02710973285138607, -0.014284243807196617, 0.01453699916601181, -0.002805575728416443, 0.020119264721870422, 0.02487104944884777, -0.014977513812482357, 0.02365782856941223, -0.012507740408182144, 0.003491623792797327, 0.004267941694706678, -0.017635047435760498, -0.02877069264650345, 0.02241571992635727, -0.019931502640247345, 0.009907979518175125, 0.012623285874724388, -0.0029463961254805326, 0.0030962435994297266, -0.01972929947078228, -0.04174061119556427, -0.0081892479211092, 0.00874530803412199, 0.010117404162883759, -0.010854003950953484, -0.0195993110537529, 0.004372654017060995, 0.02465440332889557, -0.042116135358810425, 0.026950858533382416, 0.014421453699469566, -0.0010660827392712235, 0.0006679942016489804, -0.020278139039874077, 0.01721619814634323, -0.007373211905360222, -0.019137132912874222, 0.00025275457301177084, 0.04549582302570343, 0.006315253674983978, 0.0009230055147781968, -0.017606161534786224, -0.009712996892631054, 0.03405687212944031, -0.008080924861133099, -0.01272438745945692, 0.0396319180727005, -0.0028687643352895975, 0.018082784488797188, -0.054248351603746414, -0.01098399143666029, -0.0019516263855621219, -0.016884004697203636, 0.03350803628563881, -0.024365540593862534, -0.01802501268684864, 0.003202761523425579, 0.011337848380208015, -0.01941155083477497, 0.029695050790905952, -0.0055786543525755405, -0.007589858956634998, -0.0011852383613586426, 0.03708992898464203, 0.00022770478972233832, -0.001881216187030077, -0.003697438398376107, 0.026763098314404488, -0.03665663301944733, -0.02501548081636429, 0.0038924203254282475, 0.013237117789685726, 0.0015309705631807446, -0.004325713962316513, 0.009676889516413212, -0.016840675845742226, -0.018906041979789734, -0.06967360526323318, 0.023426737636327744, -0.012832710519433022, 0.01704287901520729, 0.006492181681096554, -0.018906041979789734, 0.01346820779144764, -0.002390336012467742, 0.018371647223830223, -0.01798168197274208, 0.002473384141921997, 0.0015553432749584317, -0.007929272018373013, -0.007532086223363876, 0.0018035843968391418, -0.03284365311264992, 0.03252590447664261, -0.01900714449584484, 0.0034392676316201687, 0.030792728066444397, -0.0022170187439769506, 0.010854003950953484, 0.021823551505804062, -0.002617815276607871, -0.0010399045422673225, 0.03171708807349205, 0.018371647223830223, 0.02282012812793255, -0.0008620736189186573, 0.00419572601094842, -0.010897332802414894, -0.01552635245025158, -0.00739126605913043, 0.053208447992801666, 0.014789753593504429, 0.0025835128035396338, -0.01297714188694954, 0.008485332131385803, 0.03056163899600506, -0.029203984886407852, -0.007059074006974697, -0.008550326339900494, 0.020321467891335487, -0.013359884731471539, 0.014002603478729725, 0.02461107447743416, -0.026228703558444977, 0.010326829738914967, 0.015685226768255234, 0.021375814452767372, -0.005130917765200138, 0.023773372173309326, -0.005816965829581022, -0.0005298819160088897, -0.01923823356628418, -0.05569266527891159, 0.02459663152694702, -0.01094066258519888, -0.022213516756892204, 0.0034356568939983845, 0.01507861539721489, 0.024986594915390015, 0.015439693816006184, 0.011171752586960793, 0.002616009907796979, 0.009922422468662262, -0.036165568977594376, -0.0004960308433510363, -0.003498845500871539, -0.037292130291461945, -0.018284987658262253, 0.013229896314442158, -0.005408947821706533, -0.010290722362697124, -0.011453392915427685, 0.0044087618589401245, -0.01135951280593872, 0.01906491629779339, -0.03397021442651749, 0.025752080604434013, 0.02043701335787773, -0.03440350666642189, -0.03397021442651749, 0.02173689380288124, 0.048153355717659, -0.0012421081773936749, -0.014313130639493465, 0.028525158762931824, -0.0347212553024292, -0.012673836201429367, -0.027167506515979767, 0.016436269506812096, 0.021996868774294853, 0.015945203602313995, 0.02092807926237583, 0.04899105802178383, -0.019584868103265762, -0.007192673161625862, 0.024192223325371742, 0.029247315600514412, -0.00772706838324666, 0.013482650741934776, 0.018154999241232872, -0.018328316509723663, 0.00605166656896472, 0.021303599700331688, 0.019570425152778625, -0.00605166656896472, -0.006058888044208288, -0.007618744857609272, -0.01520860381424427, 0.0008128767367452383, -0.013403213582932949, 0.00839145202189684, -0.0012312758481130004, -0.00863698497414589, 0.011157308705151081, -0.020075934007763863, -0.027904104441404343, 0.01552635245025158, 0.03605002537369728, 0.03833203762769699, 0.031023818999528885, -0.019787073135375977, 0.02058144472539425, -0.01776503585278988, 0.02495770901441574, -0.013937609270215034, 0.021274713799357414, -0.003950193058699369, -0.0020924468990415335, 0.018732724711298943, -0.022199073806405067, -0.03581893444061279, -0.017779478803277016, -0.0009130758699029684, 0.022069085389375687, -0.019844844937324524, -0.011749477125704288, 0.10202618688344955, -0.0007203505374491215, -0.004499031230807304, -0.004545971751213074, -0.0063369181007146835, 0.012240543030202389, 0.02299344539642334, 0.0017476173816248775, -0.015468579716980457, -0.03327694535255432, -0.0016934556188061833, -0.005892792250961065, 0.0013729989295825362, -0.007387655321508646, 0.006217762362211943, -0.003224426181986928, -0.02066810242831707, 0.013482650741934776, -0.006939918268471956, 0.017736149951815605, 0.030359435826539993, 0.008622542023658752, 0.015295262448489666, 0.008405894972383976, -0.006531900260597467, -0.011366734281182289, 0.0186171792447567, -0.0036053634248673916, -0.02192465402185917, 0.013836507685482502, -0.0027676625177264214, -0.02152024582028389, -0.008131476119160652, -0.02960839308798313, 0.013655968941748142, -0.00968411099165678, -0.013099908828735352, 0.016118520870804787, 0.03633888438344002, 0.021231384947896004, 0.003632444189861417, 0.04127843305468559, -0.007864277809858322, -0.026777541264891624, -0.005892792250961065, 0.015959646552801132, 0.009922422468662262, -0.00014003054820932448, -0.02992614172399044], "3677f763-add2-4a4e-a9bc-3285c05feea5": [-0.03263528645038605, -0.0028805413749068975, 0.0003078544687014073, 9.188167314277962e-05, -0.012165902182459831, 0.029611891135573387, -0.05141214653849602, -0.044989243149757385, -0.017995698377490044, -0.004965452942997217, -0.0017404400277882814, 0.00817328691482544, -0.00529093760997057, 0.009634353220462799, 0.004354264587163925, -0.007359575014561415, -0.009128042496740818, -0.004426594357937574, 0.0230009313672781, -0.02067190781235695, 0.013829491101205349, 0.017662979662418365, 0.0050667147152125835, -0.01633210852742195, 0.0005876810755580664, 0.00218436517752707, 0.030147133395075798, -0.021843653172254562, -0.0025659059174358845, -0.0014239964075386524, 0.044121284037828445, -0.0022693530190736055, -0.011999542824923992, -0.03003140538930893, -0.007970763370394707, -0.025604810565710068, -0.003985381685197353, -0.0007129023433662951, 0.013612501323223114, -0.018704531714320183, 8.577883272664621e-05, -0.007352341897785664, -0.00042606875649653375, 0.01589812897145748, -0.02337704785168171, 0.002162666292861104, 0.021062489598989487, -0.005384966731071472, -0.011594494804739952, 0.013583569787442684, -0.0022874355781823397, 0.016259778290987015, -0.016809485852718353, -0.005269238725304604, 0.005363267846405506, 0.00830348115414381, 0.018082493916153908, 0.008368577808141708, -0.007421055343002081, -0.00895445141941309, 0.017735309898853302, 0.00941736251115799, -0.012693910859525204, 0.008534937165677547, 0.0068785808980464935, -0.01638997159898281, 0.0029727621003985405, -0.00014206059859134257, -0.030060337856411934, -0.018574338406324387, 0.006795401219278574, 0.015160363167524338, -0.024172678589820862, 0.00846984051167965, 0.008433675393462181, -0.0278181079775095, -0.00806479249149561, 0.008976150304079056, 0.03257742151618004, 0.009330566972494125, 0.027138207107782364, -0.001244979677721858, 0.01607172004878521, -0.015767933800816536, 0.015059101395308971, 0.011934446170926094, 0.0016979462234303355, 0.03830595687031746, -0.0011871156748384237, -0.011254544369876385, -0.004545939154922962, 0.037032946944236755, -0.004256619140505791, 0.005786397960036993, 0.009923672303557396, -0.015102499164640903, -0.04634904861450195, 0.02612558752298355, -0.01991967484354973, -0.025850733742117882, -0.007204065565019846, -0.006549479439854622, -0.0011970611521974206, -0.0028534175362437963, -0.008216685615479946, -0.028006166219711304, 0.024172678589820862, -0.010010468773543835, -0.01239012461155653, -0.026805488392710686, -0.022523554041981697, 0.033300720155239105, -0.0034772634971886873, -0.017330262809991837, -0.013258084654808044, 0.011789785698056221, 0.04750632867217064, 0.00642290199175477, -0.007912899367511272, -0.008621732704341412, 0.016809485852718353, 0.010444448329508305, 0.0451049730181694, -0.017301330342888832, 0.03214344009757042, 0.018690066412091255, 0.010878427885472775, 0.0019728001207113266, -0.028440145775675774, -0.005189675837755203, 0.0690317302942276, 0.0037900907918810844, 0.002050554845482111, 0.017445990815758705, 0.0015523821348324418, 0.015073566697537899, -0.006213144864886999, -0.0012332260375842452, -0.01654909923672676, -0.0073342593386769295, 0.01436473336070776, 0.002329025184735656, 0.009865808300673962, -0.011594494804739952, -0.00204332172870636, 0.01563774049282074, 0.009554789401590824, -0.0025152747984975576, 0.00561280595138669, -0.01231056172400713, 0.0012983230408281088, -0.030610045418143272, 0.011312408372759819, -0.012592649087309837, 0.0009909207001328468, -0.006393969990313053, 0.029134513810276985, 0.018053561449050903, -0.0005171593511477113, -0.0021138435695320368, -0.008411976508796215, 0.015102499164640903, 0.029626358300447464, -0.024114813655614853, 0.024158211424946785, 0.03489198163151741, -0.020194528624415398, -0.0032313417177647352, -0.006379503756761551, -0.03440013527870178, 0.0017820297507569194, -0.002499000634998083, -0.006459066644310951, 0.026747625321149826, -0.004064944572746754, 0.021944914013147354, 0.001264870399609208, -0.008238384500145912, 0.009619886986911297, 0.019543560221791267, -0.0032078344374895096, 0.020049870014190674, 0.01591259427368641, 0.01996307261288166, -0.027413060888648033, -0.0009556597797200084, -0.0015469572972506285, 0.04365837201476097, 0.017084339633584023, -0.0011726496741175652, -0.009684983640909195, 0.017720844596624374, -0.0034501398913562298, 0.011674057692289352, -0.5360519289970398, -0.025677140802145004, 0.0005664341151714325, 0.0028805413749068975, 0.02612558752298355, 0.014104344882071018, 0.02424500696361065, 0.02385442517697811, -0.01715666987001896, 0.021019091829657555, -0.0036978700663894415, 0.0247223861515522, -0.001396872685290873, 0.004932904150336981, -0.01759064942598343, -0.02446199767291546, -0.008281782269477844, -0.0021210764534771442, 0.006549479439854622, 0.004028779454529285, -0.04357157647609711, 0.0422985702753067, 0.0007223956054076552, -0.00326750660315156, 0.028541408479213715, -0.025344423949718475, 0.007160667795687914, -0.004473608918488026, -0.013532938435673714, 0.01589812897145748, -0.013836724683642387, 0.012693910859525204, 0.0038009402342140675, -0.0037105276715010405, 0.06862667948007584, -0.0170988067984581, -0.02802063338458538, 0.023116659373044968, 0.02104802243411541, 0.04805603623390198, -0.02088889665901661, -0.025633743032813072, 0.03445800021290779, 0.0038479547947645187, 0.019746083766222, -0.01611511781811714, -0.003164436435326934, -0.045047108083963394, 0.02612558752298355, -0.012578182853758335, 0.01850200816988945, -0.013590802438557148, 0.005714068189263344, 0.002571330638602376, -0.006976226344704628, 0.02320345677435398, 0.019456762820482254, -0.022538021206855774, 0.009258236736059189, -0.038826730102300644, -0.015391819179058075, 0.006820716895163059, -0.015536478720605373, 0.00128476123791188, -0.026704227551817894, 0.0005460912943817675, -0.007985229603946209, 0.013033861294388771, 0.007710375357419252, -0.014914440922439098, -0.007486152462661266, 0.023666368797421455, -0.00106234650593251, 0.010502312332391739, 0.020252393558621407, 0.027123741805553436, 0.05560728535056114, -0.043745167553424835, -0.01877686195075512, 0.030552182346582413, 0.00662542600184679, -0.01601385697722435, -0.034226544201374054, -0.01867559924721718, 0.032114509493112564, 0.017605116590857506, -0.03084150142967701, -0.01347507443279028, 0.012151435948908329, -0.00236699846573174, 0.023868892341852188, -0.005182442720979452, 0.034486930817365646, -0.007251080125570297, -0.0010469764238223433, 0.010003235191106796, -0.03868206962943077, -0.004101109690964222, 0.004017930012196302, -0.009721148759126663, -0.03338751569390297, -0.002907664980739355, 0.010024935007095337, -0.014675752259790897, 0.009699449874460697, -0.010560176335275173, -0.04501817747950554, -0.0010379351442679763, 0.056185923516750336, 0.011095418594777584, -0.014191141352057457, -0.0169396810233593, 0.005204141605645418, -0.012296095490455627, -0.007077488116919994, -0.036338578909635544, 0.019543560221791267, 0.0015044634928926826, 0.005319869611412287, -0.026255780830979347, 0.004379579797387123, 0.0001472593139624223, 0.02586519904434681, 0.04195138439536095, 0.029944609850645065, 0.020758703351020813, 0.02726840041577816, -0.0032620818819850683, -0.012542017735540867, -0.00533071905374527, -0.029134513810276985, -0.006343338638544083, 0.04212497919797897, -0.02174239046871662, 0.01654909923672676, -0.025141900405287743, -0.006965376436710358, 0.002088528126478195, 0.023507243022322655, -0.024216076359152794, -0.017981231212615967, -0.028686068952083588, -0.005131811834871769, -0.0012476920383051038, 0.010162361897528172, -0.03034965693950653, 0.002961912425234914, 0.007746540475636721, -0.009128042496740818, 0.029684221372008324, -0.004990768153220415, -0.0011301558697596192, -0.018256084993481636, 0.026819955557584763, 0.005265622399747372, 0.01296153198927641, -0.02152540162205696, -0.012896434403955936, 0.005446447059512138, -0.00240677990950644, -0.004748462699353695, 0.0009181386558339, -0.011406437493860722, 0.013077259995043278, -0.0017024667467921972, -0.04513390362262726, -0.018863657489418983, -0.0064952317625284195, -0.012303329072892666, -0.023058796301484108, -0.021568799391388893, 0.015536478720605373, -0.007876734249293804, -0.010343186557292938, 0.0016581646632403135, -0.01936996728181839, 0.001141909509897232, 0.026385976001620293, 0.0035152367781847715, -0.01774977520108223, 0.0018950453959405422, 0.020787635818123817, -0.005793631076812744, -0.01322915218770504, 0.009019548073410988, 0.019890744239091873, 0.03662789985537529, 0.016100652515888214, -0.0068894303403794765, 0.03142014145851135, -0.025402287021279335, 0.01779317483305931, 0.003855187678709626, 0.0016581646632403135, 0.030233928933739662, 0.0056345053017139435, 0.050833508372306824, 0.010567408986389637, -0.005952756851911545, 0.0363675132393837, 0.02104802243411541, 0.0005849686567671597, -0.003629156621173024, -0.032490625977516174, 0.013655899092555046, -0.03651216998696327, -0.002914898097515106, -0.022277632728219032, -0.003070407547056675, 0.03931857645511627, -0.017662979662418365, -0.015015702694654465, -0.01198507659137249, 0.0020469382870942354, 0.025026172399520874, 0.02997354231774807, -0.012194833718240261, -0.004918438382446766, 0.004140891134738922, -0.007544016465544701, 0.03289567306637764, -0.018299484625458717, 0.021134817972779274, -0.02493937499821186, -0.006144431419670582, -0.024678988382220268, 0.018979385495185852, -0.0026997162494808435, -0.019731616601347923, -0.025995392352342606, -0.005804480519145727, -0.018111426383256912, 0.0003813146031461656, -0.006231227423995733, 0.027745777741074562, -0.022436758503317833, 0.016679292544722557, -0.006285475101321936, 0.032924603670835495, 0.0033543026074767113, -0.018704531714320183, 0.006907512899488211, -0.006770085543394089, -0.027745777741074562, 0.002254887018352747, 0.027065876871347427, 0.02462112344801426, 0.027355195954442024, 0.0033741933293640614, 0.004987151827663183, -0.001661781221628189, 0.01360526867210865, -0.013482307083904743, 0.011565563268959522, -0.01314958930015564, -0.006672440096735954, -0.0021463921293616295, 0.011565563268959522, 0.023680834099650383, 0.02699354663491249, 0.02423054166138172, 0.01936996728181839, 0.010039400309324265, 0.0019963074009865522, 0.03555741533637047, -0.02197384648025036, 0.009771780110895634, 0.014458762481808662, -0.014458762481808662, -0.01352570578455925, 0.0052475398406386375, -0.010516778565943241, 0.02234996296465397, -0.004101109690964222, 0.016852883622050285, -0.018863657489418983, 0.02872946672141552, -0.01682395301759243, 0.04296400398015976, -0.007797171361744404, -0.02483811415731907, -0.024331804364919662, 0.030147133395075798, 0.016592497006058693, -0.012773473747074604, -0.03526809439063072, 0.009178673848509789, -0.004795477259904146, 0.006003388203680515, 0.03309819847345352, 0.036975082010030746, 0.014856576919555664, 0.005457296501845121, 0.023666368797421455, -0.009164207614958286, 0.009670517407357693, 0.007185983005911112, -0.01612958498299122, -0.029771018773317337, -0.007855035364627838, 0.01670822501182556, -0.014147743582725525, -0.02116375043988228, -0.023058796301484108, 0.05094923451542854, -0.002256695181131363, 0.004788244608789682, -0.010140663012862206, -0.022812874987721443, 0.0054536801762878895, -0.015666672959923744, -0.011008622124791145, 0.006965376436710358, -0.0273696631193161, -0.02185811847448349, -0.0007418342866003513, -0.003010735148563981, -0.02304433099925518, 0.038161296397447586, 0.0010569217847660184, -0.038537412881851196, -0.007091953884810209, -0.02261034958064556, 0.01335934642702341, -0.016520166769623756, 0.04987874999642372, -0.013352113775908947, -0.018299484625458717, -0.035731006413698196, 0.017879970371723175, -0.0219159834086895, -0.025561412796378136, 0.007037706673145294, -0.033850427716970444, -0.005240306723862886, -0.021192682906985283, 0.032317034900188446, -0.029467232525348663, 0.004596570041030645, -0.01330871507525444, -0.008100957609713078, -0.014661286026239395, 0.021467536687850952, -0.030262861400842667, -0.009373964741826057, 0.004665283486247063, 0.01654909923672676, 0.040823038667440414, -0.025792868807911873, 0.01952909305691719, -0.0042204540222883224, 0.0005497077945619822, 0.013966917991638184, 0.018111426383256912, 0.01452385913580656, 0.010813331231474876, 0.011377505026757717, 0.03208557888865471, -0.03150693699717522, 0.022639282047748566, 0.025127433240413666, 0.023015398532152176, -0.008990615606307983, -0.03315605968236923, -0.017706377431750298, 0.024548793211579323, 0.022914135828614235, -0.009402897208929062, 0.0033633438870310783, 0.009460761211812496, -0.009330566972494125, 0.02509850077331066, 0.003621923504397273, -0.037900906056165695, 0.018458610400557518, -0.023058796301484108, -0.033850427716970444, -0.009120809845626354, 0.006285475101321936, 0.033184994012117386, -0.039144981652498245, 0.0017096997471526265, 0.0021138435695320368, 0.02201724424958229, 0.004683366045355797, -0.024751316756010056, 0.015406284481287003, -0.011023088358342648, 0.0018001123098656535, -0.049907684326171875, -0.00271056592464447, -0.002987228101119399, -0.02450539544224739, -0.030754705891013145, 0.00806479249149561, -0.004679749254137278, -0.028121894225478172, -0.004918438382446766, 0.0030378589872270823, 0.009214838966727257, 0.016838418319821358, -0.011167747899889946, 0.004748462699353695, 0.022480156272649765, 0.005041399504989386, -0.01344614289700985, -0.008231150917708874, -0.002784704091027379, 0.01533395517617464, -0.010350419208407402, 0.00890382006764412, 0.0011753621511161327, 0.008780859410762787, 0.0071389684453606606, 0.0023019015789031982, 0.02904771827161312, 0.02543121948838234, 0.002938405377790332, 0.00010476545139681548, -0.0038407216779887676, -0.011174981482326984, 0.02802063338458538, -0.019717151299118996, -8.685248030815274e-05, 0.020628508180379868, -0.021351808682084084, 0.010892894119024277, 0.006390353199094534, -0.0017214533872902393, -0.023246854543685913, 0.04921331629157066, 0.029120048508048058, 0.0022078724578022957, -0.0003489921218715608, 0.022002778947353363, -0.014972304925322533, 0.006093800533562899, -0.0038515711203217506, 0.009909207001328468, 0.009800711646676064, -0.01119668036699295, 0.030176065862178802, -0.02991567738354206, -0.007269162684679031, 0.009909207001328468, -0.015840264037251472, 0.027311798185110092, 0.011833184398710728, -0.010111730545759201, 0.0203536543995142, -0.019109578803181648, -0.026805488392710686, -0.01335934642702341, 0.01650569960474968, -0.03142014145851135, -0.002551439916715026, 0.0075006186962127686, -0.03937643766403198, -0.04756419360637665, 0.002960104262456298, -0.025402287021279335, -0.0009244675165973604, -0.011739155277609825, -0.02018006332218647, -0.009721148759126663, -0.0022802024614065886, -0.005605573300272226, -0.01573900319635868, 0.006061251740902662, -0.023492775857448578, 0.0017720843898132443, 0.01838628016412258, 0.004979918710887432, 0.009634353220462799, -0.0034410986118018627, -0.01231056172400713, -0.026487236842513084, -0.0013579953229054809, 0.023174524307250977, -0.022378893569111824, -0.007388507016003132, 0.02049831487238407, 0.02363743633031845, 0.021829186007380486, 0.0273696631193161, 0.006328872870653868, -0.009446294978260994, -0.028917524963617325, 0.01388012245297432, 0.0003772460331674665, 0.0010578258661553264, 0.017605116590857506, -0.028541408479213715, 0.019442297518253326, 0.014654053375124931, 0.02942383475601673, 0.015406284481287003, -0.02310219407081604, -0.0029420217033475637, 0.024143746122717857, -0.01536288671195507, 0.006191445980221033, 0.016245312988758087, -0.04597293213009834, 0.009873041883111, -0.03228810057044029, -0.00911357719451189, 0.013373812660574913, -0.009554789401590824, -0.00661457609385252, 0.01887812279164791, 0.0023814644664525986, 0.030002474784851074, 0.023521708324551582, 0.009077412076294422, -0.006636275444179773, 0.0017178369453176856, -0.016809485852718353, 0.014328568242490292, 0.004151740577071905, -0.011637893505394459, -0.004325332585722208, -0.012780706398189068, -0.00108223722781986, -0.04111235961318016, 0.020368121564388275, 0.004697831813246012, -0.01187658216804266, 0.011717456392943859, 0.0075150844641029835, -0.00216447445563972, -0.024693453684449196, 0.0042059882543981075, -0.015305022709071636, -0.018082493916153908, -0.04232750087976456, -0.011652358807623386, -0.025995392352342606, 0.055867671966552734, 0.041893523186445236, 0.001131964148953557, 0.004589336924254894, -0.015059101395308971, -0.009265470318496227, -0.00653501320630312, -0.013048327527940273, 0.019456762820482254, -0.009576489217579365, 0.01095799170434475, 0.013178521767258644, -0.002685250248759985, -0.014871043153107166, -0.04047585278749466, -0.01617298275232315, 0.006491615436971188, 0.030494317412376404, 0.06243523582816124, -0.016259778290987015, -0.012686677277088165, 0.010921826586127281, -0.01850200816988945, -0.007601880468428135, -0.036975082010030746, 0.021279478445649147, 0.0230009313672781, 0.0004715010290965438, -0.02276947721838951, 0.011478766798973083, -0.021438604220747948, 0.013619733974337578, -0.018747929483652115, -0.012086339294910431, -0.01623084582388401, 0.0024537944700568914, -0.018603269010782242, 0.016245312988758087, 0.0012006775941699743, 0.01780764013528824, 0.017503853887319565, -0.007428288459777832, 0.0033380284439772367, -0.02197384648025036, -0.018024630844593048, 0.03850847855210304, 0.007905666716396809, 0.0435137115418911, -0.012824105098843575, 0.004629118368029594, 0.013062793761491776, 0.000959276279900223, -0.0038117896765470505, -0.0034121666103601456, -0.032808877527713776, 0.0475931242108345, -0.046117592602968216, 0.01200677640736103, -0.019442297518253326, 0.0056345053017139435, 0.014111578464508057, -0.002303709741681814, -0.007471686694771051, 0.010285322554409504, -0.02261034958064556, -0.013048327527940273, 0.023492775857448578, -0.010885661467909813, -0.0009628927800804377, -0.004549555480480194, -0.01682395301759243, -0.020469382405281067, -0.03315605968236923, -0.008397510275244713, 0.021192682906985283, -0.023463843390345573, 0.0036617049481719732, -0.0026870586443692446, -0.00865789782255888, 0.032374896109104156, 0.015116964466869831, -0.024433065205812454, 0.009583721868693829, 0.04545215517282486, -0.007522317580878735, 0.02478024922311306, -0.034805186092853546, -0.003978148568421602, -0.009836876764893532, -0.025937529280781746, -0.004281934350728989, -0.006835182663053274, 0.02839674800634384, -0.04279041290283203, -0.0018227153923362494, -0.0006211336585693061, -0.01899385079741478, -0.0050160838291049, -0.023724231868982315, 0.0003969107347074896, 0.02754325419664383, 0.0028226773720234632, 0.016100652515888214, -0.0024881511926651, -0.019760549068450928, 0.027470923960208893, -0.019022783264517784, 0.007645278237760067, 0.021134817972779274, -0.009055713191628456, 0.01076270081102848, -0.012353959493339062, -0.021076954901218414, 0.009930905885994434, -0.009619886986911297, -0.027340730652213097, -0.003560442943125963, -0.014241771772503853, -0.0013227344024926424, -0.005030549596995115, -0.011015855707228184, -0.013670365326106548, -0.00048415877972729504, 0.00222595501691103, -0.0006292707985267043, -0.010053866542875767, -0.007609113585203886, 0.04496031254529953, -0.020107733085751534, -0.0038009402342140675, -0.017547251656651497, -0.027745777741074562, 0.022711612284183502, -0.02282734028995037, -0.027557721361517906, -0.04724593833088875, -0.011109883897006512, 0.011558329686522484, 0.022161904722452164, -0.019702685996890068, -0.011348573490977287, 0.010234691202640533, -0.03657003492116928, -0.01899385079741478, -0.003685212228447199, 0.01066143810749054, 0.032317034900188446, 0.008701296523213387, -0.009554789401590824, 0.012910900637507439, -0.017503853887319565, 0.007594647351652384, -0.0052620056085288525, -0.007428288459777832, -0.017619581893086433, -0.0008950834744609892, 0.014509392902255058, -0.014762547798454762, -0.007732074242085218, -0.00328739732503891, 0.0016048213001340628, -0.02618345059454441, -0.0006568466196767986, 0.010921826586127281, -0.010538477450609207, -0.0009601804194971919, -0.03029179386794567, -0.016520166769623756, 0.001194348675198853, -0.019731616601347923, 0.0005212278920225799, -0.029351504519581795, -0.020093267783522606, 0.0031789024360477924, 0.02570607326924801, -0.01780764013528824, 0.019948607310652733, 0.010835030116140842, -0.0030975311528891325, -0.009164207614958286, -0.017026476562023163, -0.010046633891761303, 0.0052258409559726715, 0.005207758396863937, 0.027196070179343224, 0.009525857865810394, -0.029626358300447464, 0.017937833443284035, 0.03810343146324158, 0.0029944609850645065, -0.013872888870537281, 0.0037900907918810844, -0.0199052095413208, 0.003923901356756687, 0.026197917759418488, 0.009554789401590824, 0.007905666716396809, 0.007149817887693644, 0.004010697361081839, -0.01968821883201599, 0.017445990815758705, 0.0010035784216597676, 0.0019022783963009715, -0.04386089742183685, 0.004459143150597811, 0.035731006413698196, -0.062145914882421494, -0.004788244608789682, -0.019138511270284653, -0.02695014886558056, 0.011457067914307117, -0.023883357644081116, 0.018024630844593048, -0.04253002628684044, 0.019022783264517784, 0.007269162684679031, 0.0038479547947645187, -0.01682395301759243, 0.0071281190030276775, 0.03121761791408062, -0.008325180038809776, 0.0004954603500664234, 0.2735809087753296, -0.009287169203162193, -0.007775472477078438, 0.03359004110097885, -0.0019963074009865522, 0.0463201180100441, -0.00508841359987855, -0.027875972911715508, 0.0020939528476446867, -0.016303176060318947, 0.007891200482845306, -0.027036944404244423, -0.010733768343925476, 0.0001741570158628747, -0.004050478804856539, -0.018371812999248505, -0.030812568962574005, -0.026863353326916695, -0.035470619797706604, 0.019268706440925598, 0.03440013527870178, -0.013771627098321915, 0.0035134286154061556, 0.014509392902255058, 0.0029293640982359648, -0.0019547175616025925, -0.013142356649041176, -0.013771627098321915, 0.030494317412376404, -0.00557302450761199, -0.023232387378811836, 0.006173363421112299, 0.012701143510639668, 0.007544016465544701, -0.010748234577476978, -0.00561280595138669, 0.028252089396119118, 0.0034447151701897383, 0.030204998329281807, -0.005826179403811693, -0.01436473336070776, -0.008730228058993816, -0.012643279507756233, 0.011001389473676682, -0.024114813655614853, 0.020961226895451546, 0.005988921970129013, 0.004972686059772968, 0.013344880193471909, 0.008968916721642017, -0.057429999113082886, -0.014328568242490292, 0.04105449467897415, 0.017489388585090637, -0.012223766185343266, -0.002793745370581746, 0.014343034476041794, 0.01495783869177103, 0.00854940339922905, 0.032982468605041504, -0.0220751091837883, 0.04924224689602852, -0.00919314008206129, 0.007956297136843204, -0.05850048363208771, -0.004947370383888483, -0.023246854543685913, 0.003632772946730256, 0.011478766798973083, -0.03078363835811615, -0.0016925213858485222, -0.011247310787439346, -0.015464148484170437, 0.015811333432793617, -0.032317034900188446, -0.025633743032813072, 0.01919637620449066, 0.01628871075809002, 0.00846984051167965, 0.014256238006055355, -0.027731312438845634, 0.021337343379855156, -0.004885890055447817, -0.0018787711160257459, -0.008245617151260376, -0.023188989609479904, -0.003952833358198404, -0.025503549724817276, -0.015869196504354477, 0.009851342998445034, 0.001755810109898448, -0.022002778947353363, 0.011536630801856518, 0.020223461091518402, -0.0009240154176950455, 0.01790890283882618, -0.01589812897145748, -0.007160667795687914, -0.0044338274747133255, 0.0007463549263775349, -0.022972000762820244, 0.003007118823006749, 0.005019700154662132, 0.015319488942623138, -0.017706377431750298, -0.009287169203162193, -0.026168985292315483, 0.01312065776437521, -0.004741230048239231, -0.015550944954156876, -4.297417763154954e-05, -0.03512343764305115, 0.015825798735022545, 0.009807944297790527, -0.020657440647482872, 0.01150046568363905, -0.02310219407081604, -0.007609113585203886, -0.023449378088116646, 0.005949140526354313, 0.0272105373442173, -0.00846984051167965, -0.005233073607087135, 0.031564801931381226, -0.0068785808980464935, -0.016780555248260498, -0.04345585033297539, -0.02655956707894802, 0.02055617980659008, -0.037032946944236755, 0.027253935113549232, -0.023015398532152176, 0.0370040163397789, -0.009019548073410988, -0.00677731866016984, 0.011811484582722187, 0.0027991700917482376, -0.036917220801115036, -0.019124045968055725, -0.009865808300673962, 0.03269314765930176, 0.029018785804510117, 0.004788244608789682, -0.0052728550508618355, -0.013496773317456245, -0.027036944404244423, 0.015782400965690613, 0.005909359082579613, 7.447726966347545e-05, -0.029120048508048058, -0.04391876235604286, -0.016042789444327354, 0.002661743201315403, 0.005037782713770866, 0.0029836115427315235, -0.017836572602391243, -0.003786474233493209, -0.05204864963889122, 0.013106191530823708, 0.0029836115427315235, -0.0584426186978817, 0.00022196261852514, 0.0026472772005945444, -0.02505510300397873, -0.014675752259790897, -0.026921216398477554, -0.18562765419483185, 0.00027734023751690984, 0.04551002010703087, -0.03182518854737282, 0.03755372390151024, -0.016780555248260498, 0.021062489598989487, -0.015594342723488808, 0.017113272100687027, -0.00043804841698147357, 0.03353217616677284, -0.002969145542010665, -0.0025116584729403257, -0.016375506296753883, -0.0032910138834267855, -0.019239773973822594, -0.008759159594774246, 0.007034090347588062, 0.0304653849452734, 0.025199763476848602, 0.045047108083963394, -0.010654205456376076, 0.007214915007352829, 0.029177911579608917, 0.005095646716654301, 0.013836724683642387, 0.006090183742344379, -0.002518891356885433, 0.04886613041162491, -0.017561718821525574, -0.03587566688656807, -0.026009859517216682, -0.0069002797827124596, -0.006784551776945591, 0.02347831055521965, 0.0031463538762181997, 0.0029456382617354393, 0.010343186557292938, -0.01074100099503994, 0.012375658378005028, -0.00919314008206129, 0.02991567738354206, 0.007435521576553583, 0.00998153630644083, -0.008180520497262478, 0.023073261603713036, -0.0066652074456214905, -0.0033832346089184284, 0.010914593003690243, -0.005345185287296772, 0.015001237392425537, -0.03396615758538246, 0.026964614167809486, 0.009012315422296524, 0.05187505856156349, 0.020599577575922012, 0.0073197935707867146, 0.015030168928205967, -0.001980033004656434, -0.006784551776945591, -0.0004023354849778116, -0.01905171573162079, 0.020382586866617203, 0.014154976233839989, -0.01066143810749054, 0.006010620854794979, -0.028714999556541443, 0.023087728768587112, -0.03486304730176926, 0.003956449683755636, -0.008093724027276039, -0.014914440922439098, 0.015348420478403568, -0.020758703351020813, 0.015420750714838505, 0.009439061395823956, 0.015811333432793617, 0.007775472477078438, 0.04192245379090309, -0.01327978353947401, -0.03931857645511627, 0.037466928362846375, -0.0097139161080122, 0.001632849220186472, 0.02796276845037937, 0.004278318025171757, -0.008194985799491405, -0.005627272184938192, -0.012071873061358929, 0.009135276079177856, 0.0254890825599432, -0.04117022082209587, 0.02466452121734619, -0.02462112344801426, 0.011283475905656815, 0.023058796301484108, 0.0017250699456781149, -0.02067190781235695, -0.000561009394004941, -0.007688676472753286, -0.013583569787442684, -0.012730075977742672, -0.022595884278416634, 0.022914135828614235, 0.00998153630644083, 0.01925423927605152, -0.0247223861515522, 0.025286559015512466, 0.01866113394498825, 0.007146201562136412, -0.0034664140548557043, -0.011080952361226082, 0.01779317483305931, 0.017330262809991837, 0.006209528539329767, 0.00449169147759676, -0.01623084582388401, -0.00786950159817934, -0.0174170583486557, 0.03127548098564148, 0.022060642018914223, -0.03555741533637047, -0.003538744058459997, 0.022755010053515434, 0.02088889665901661, -0.02738412842154503, -0.04501817747950554, -0.007486152462661266, -0.005298170726746321, 0.01921084150671959, -0.016375506296753883, 0.00626015942543745, -0.005352418404072523, 0.013670365326106548, -0.017113272100687027, 0.027065876871347427, -0.011992310173809528, -0.012223766185343266, -0.021568799391388893, 0.005319869611412287, 0.028367815539240837, 0.003092106431722641, -0.026313645765185356, -0.007370424456894398, 0.014632354490458965, 0.03694615140557289, 0.016650360077619553, -0.03127548098564148, 0.01795230060815811, -0.02505510300397873, 0.012353959493339062, -0.010683136992156506, -0.0056779030710458755, 0.015305022709071636, 0.006987075787037611, 0.01715666987001896, 0.04085196927189827, -0.009041246958076954, 0.021019091829657555, -0.010560176335275173, -0.008028627373278141, 0.015420750714838505, -0.01363420020788908, -0.010589108802378178, 0.008694062940776348, -0.0170988067984581, 0.0031789024360477924, 0.013663132674992085, -0.025995392352342606, 0.00919314008206129, -0.006318023428320885, -0.04634904861450195, -0.001805537031032145, 0.016042789444327354, -0.035297028720378876, -0.028931990265846252, -0.02169899269938469, -0.008961684070527554, 0.00011482383706606925, -0.016520166769623756, 0.019514627754688263, -0.0066869063302874565, 0.031622666865587234, 0.011948912404477596, -0.03142014145851135, 0.010936291888356209, -0.007912899367511272, -0.006361421197652817, 0.0025116584729403257, 0.031015094369649887, 0.007724841590970755, -0.002898623701184988, -0.015710070729255676, -0.0152326924726367, 0.014191141352057457, 0.011080952361226082, -0.018704531714320183, 0.03651216998696327, -0.0035242780577391386, 0.022914135828614235, -0.03798770159482956, 0.004191522020846605, -0.03275101259350777, -0.0172579325735569, 0.026009859517216682, -0.015348420478403568, -0.00941736251115799, -0.0024556026328355074, 0.0021463921293616295, -0.008571102283895016, 0.038450613617897034, 0.0013182137627154589, -0.0032711231615394354, 0.0013588994042947888, -0.006003388203680515, -0.01899385079741478, -0.00822391826659441, 0.02294306829571724, 0.005685136187821627, -0.027181604877114296, 0.022581418976187706, 0.01779317483305931, -0.00030288175912573934, -0.012889201752841473, 0.016896281391382217, -1.6698053514119238e-05, -0.04241429641842842, -0.028440145775675774, -0.06978396326303482, 0.030436454340815544, 0.0024320953525602818, 0.019818414002656937, 0.015550944954156876, 0.01163065992295742, 0.0030143517069518566, -0.005323486402630806, -0.005348801612854004, -0.016317643225193024, -0.018458610400557518, 0.016057254746556282, 0.006567561998963356, -0.018039096146821976, -0.003804556792601943, -0.02867160178720951, 0.025127433240413666, -0.014480461366474628, 0.00794906448572874, 0.018646668642759323, -0.005876810755580664, 0.01127624325454235, 0.00895445141941309, 0.02564821019768715, -0.00019743823213502765, -0.007149817887693644, 0.006607343442738056, 0.005902125965803862, -0.002459219191223383, -0.00220425589941442, 0.004321716260164976, -0.008990615606307983, 0.0004265208262950182, 0.023984620347619057, 0.010849496349692345, -0.0018751546740531921, -0.0025225079152733088, 0.00236699846573174, 0.01575346849858761, -0.021120352670550346, -0.030002474784851074, -0.020585110411047935, 0.005511544179171324, 0.008939985185861588, -0.024216076359152794, 0.014784246683120728, 0.005724917631596327, 0.007507851347327232, 0.0033398366067558527, 0.01155109703540802, 0.022581418976187706, 0.011580029502511024, 0.01569560542702675, 0.002784704091027379, -0.026472771540284157, -0.06480766087770462, 0.006867730990052223, -0.0013516664039343596, -0.012527551501989365, -0.00481355981901288, 0.0013408169616013765, 0.0293804369866848, 0.005392199847847223, -0.017185602337121964, -0.017662979662418365, 0.008289014920592308, -0.03147800639271736, 0.01844414323568344, 0.02195938117802143, -0.03928964212536812, -0.010068332776427269, 0.00012567333760671318, 0.0024103964678943157, 0.008614500053226948, -0.0029329804237931967, 0.027514323592185974, -0.024172678589820862, 0.0013950644060969353, -0.033474311232566833, 0.02288520522415638, 0.019890744239091873, -0.02883072756230831, -0.04270361736416817, -0.003202409716323018, 0.022031711414456367, -0.007327026687562466, 0.0004448293475434184, 0.013619733974337578, -0.017547251656651497, 0.01666482724249363, -0.028657136484980583, 0.011717456392943859, -0.009923672303557396, 0.01644783653318882, 0.005312636494636536, 0.038537412881851196, 0.012708377093076706, -0.02943830005824566, 0.0025948379188776016, 0.010234691202640533, 0.002050554845482111, 0.013952452689409256, -0.011261777020990849, -0.006419285200536251, 0.010502312332391739, 0.01964482106268406, -0.012339494191110134, -0.029684221372008324, 0.0272105373442173, -0.006520547438412905, 0.0004773778491653502, -0.001601204858161509, -0.014596189372241497, 0.02152540162205696, 0.011493233032524586, 0.012802405282855034, -0.004509774036705494, -0.015666672959923744, -0.026096655055880547, 0.047911375761032104, 0.01743152365088463, 0.010220225900411606, 0.044121284037828445, 0.004517007153481245, 0.008780859410762787, -0.006846032105386257, -0.022277632728219032, -0.02839674800634384, 0.02943830005824566, 0.00011787525727413595, -0.008990615606307983, -0.001763947308063507, -0.035094503313302994, -0.03645430877804756, 0.003215067321434617, 0.009410129860043526, -0.003303671721369028, 0.03084150142967701, -0.008665131404995918, 0.08731674402952194, -0.0016545482212677598, -0.01612958498299122, -0.007992462255060673, 0.010429982095956802, 0.01850200816988945, 0.021814720705151558, -2.986436811625026e-05, -0.01330871507525444, -0.028700534254312515, -0.005956373643130064, 0.004781011492013931, -0.027282867580652237, -0.02337704785168171, -0.0036888287868350744, -0.022161904722452164, -0.02083103358745575, 0.03072577342391014, -0.014986771158874035, 0.01098692324012518, 0.02829548716545105, -0.0014972304925322533, 0.018082493916153908, 0.003419399494305253, 0.00513904495164752, -0.013048327527940273, 0.015550944954156876, -0.007428288459777832, -0.006014237646013498, -0.0025876048021018505, -0.0023724231868982315, -0.0025857966393232346, -0.013236385770142078, -0.0270514115691185, 0.003518853336572647, -0.015276091173291206, -0.008534937165677547, 0.013171288184821606, -0.0009809753391891718, 0.010596341453492641, -0.0017151245847344398, 0.010589108802378178, -0.02574947103857994, -0.02023792639374733, -0.012267163954675198, 0.0075150844641029835, -0.002479109913110733, -0.005648971069604158, -0.023883357644081116], "e906b892-59c3-47ea-8db5-9b62513213dd": [-0.035792525857686996, -0.009311997331678867, -0.012490254826843739, -0.002532209735363722, -0.02239631861448288, 0.030416222289204597, -0.0427728109061718, -0.04820852354168892, -0.023584453389048576, -0.0007142725517041981, 0.008918427862226963, 0.009891212917864323, -0.02394089289009571, 0.001365425530821085, -0.0018861622083932161, 0.004321835935115814, -0.006712954957038164, 0.009193183854222298, 0.022114137187600136, -0.02830728515982628, 0.020183419808745384, 0.014250177890062332, 0.01632198691368103, -0.022589391097426414, 0.009579327888786793, 0.004009950906038284, 0.027163704857230186, -0.028708279132843018, -0.00627854373306036, 0.015445737168192863, 0.033475667238235474, 0.0011175882536917925, -0.00577358715236187, -0.0323469378054142, -0.00019191142928320915, -0.011970446445047855, 0.005844132509082556, -0.006564438343048096, 0.012386293150484562, 0.009245164692401886, 0.007154792547225952, -0.005866409745067358, 0.0016828799853101373, 0.009297145530581474, -0.013641259633004665, -0.004232726059854031, 0.007403557654470205, -0.0011426503770053387, -0.009802103042602539, 0.008190696127712727, -0.009512495249509811, 0.010091709904372692, -0.03451528400182724, -0.023450788110494614, 0.023970596492290497, 0.023970596492290497, 0.014747709035873413, -0.001908439677208662, 0.0067092422395944595, -0.010344188660383224, 0.02845580130815506, 0.01294323056936264, -0.020569564774632454, 0.011955594643950462, 0.010863997042179108, -0.016841795295476913, -0.001386774703860283, 0.007099098525941372, -0.02199532464146614, 0.002381836762651801, -0.007370141800493002, 0.02752014622092247, -0.0031949656549841166, 0.003438161686062813, 0.0042364392429590225, -0.02238146774470806, -0.012356589548289776, 0.009066944941878319, 0.03344596177339554, 0.004073070827871561, 0.026629045605659485, -0.008866447024047375, 0.013663536868989468, -0.016574464738368988, 0.010581815615296364, 0.0018805927829816937, 0.0017190808430314064, 0.042327262461185455, 0.0021553486585617065, -0.01349274255335331, -0.013321948237717152, 0.020079458132386208, 0.004533472470939159, 0.012705604545772076, 0.016188321635127068, -0.015490292571485043, -0.03071325458586216, 0.018148740753531456, -0.01905469410121441, -0.039772775024175644, -0.020584415644407272, 0.0044592139311134815, -0.010834293439984322, -0.009044667705893517, -0.01554969884455204, 0.0032172431237995625, 0.016930904239416122, -0.011495193466544151, -0.0074592516757547855, -0.02472803182899952, -0.00581442890688777, 0.04455501213669777, -0.0031596929766237736, -0.03638659417629242, -0.017049718648195267, 0.027327073737978935, 0.04205993190407753, -0.008762485347688198, -0.012920953333377838, -0.01045557577162981, 0.016975458711385727, 0.02114877849817276, 0.04036683961749077, -0.015386330895125866, 0.03133702650666237, 0.03769354149699211, 0.011888762004673481, -0.00925259105861187, -0.005012438632547855, 0.00011202568566659465, 0.08495155721902847, 0.012534810230135918, 8.040787361096591e-05, 0.01655961200594902, 0.0030501617584377527, 0.02790628932416439, -0.007307021878659725, 0.009720418602228165, -0.014680876396596432, 0.00839861948043108, 0.022515133023262024, 0.008561988361179829, 0.007811978925019503, -0.016975458711385727, -0.0025210711173713207, 0.03701036423444748, 0.016455650329589844, -0.007210486102849245, 2.1508816644200124e-05, -0.020198272541165352, 0.013114024884998798, -0.022336913272738457, 0.009906064718961716, -0.010010026395320892, 9.624578524380922e-05, -0.013967996463179588, 0.02416366897523403, 0.014547211118042469, -0.008094160817563534, -0.002634315053001046, -0.003089147387072444, 0.007863959297537804, 0.033624183386564255, -0.026406271383166313, 0.018208147957921028, 0.034634094685316086, -0.015802178531885147, -0.010225375182926655, 0.010403594933450222, -0.018000224605202675, -0.0040507931262254715, 0.024757735431194305, 0.0015677794581279159, 0.02339138090610504, -0.01834181323647499, 0.023435937240719795, 0.016039803624153137, -0.01788141205906868, 0.009170906618237495, 0.02838154323399067, -0.02416366897523403, 0.010648648254573345, 0.011792226694524288, 0.0226190946996212, -0.0191289521753788, -0.014123938977718353, 0.0029276355635374784, 0.03911929950118065, 0.02162403240799904, 0.0012261910596862435, 0.0036627931986004114, 0.02074778452515602, 0.0011277986923232675, 0.0156388096511364, -0.531808614730835, -0.017673488706350327, -0.0007045261445455253, -0.008235251531004906, 0.022500280290842056, 0.009237739257514477, 0.009512495249509811, 0.01990123838186264, -0.013314522802829742, 0.020020052790641785, -0.004767386242747307, 0.010017451830208302, 0.004875061102211475, 0.003928266931325197, -0.012742733582854271, -0.01896558329463005, -0.015460588969290257, 0.008309509605169296, 0.0066238450817763805, 0.006545873824506998, -0.041020315140485764, 0.028589466586709023, -0.0038057405035942793, 0.005547098815441132, 0.02059926651418209, -0.0161734689027071, -0.003259941702708602, -0.0015687077539041638, -0.009824380278587341, 0.003259941702708602, -0.016767535358667374, 0.011465489864349365, -0.00862882100045681, -0.004299558699131012, 0.07283259183168411, -0.03409943729639053, -0.027728069573640823, 0.02276761084794998, 0.006352802272886038, 0.04782237857580185, -0.030653847381472588, -0.012765010818839073, 0.037129174917936325, -0.011057068593800068, 0.018148740753531456, -0.018846770748496056, -0.011175882071256638, -0.04253518581390381, 0.0156388096511364, -0.0023577027022838593, 0.019945792853832245, -0.013388780876994133, 0.012698178179562092, -0.005313185043632984, 0.0014545355224981904, 0.02720826119184494, 0.019559649750590324, -0.03329744562506676, 0.0013440762413665652, -0.04511937499046326, -0.018638847395777702, 0.007915940135717392, -0.016143765300512314, 0.012029853649437428, -0.027431035414338112, 0.008420897647738457, -0.010039729066193104, 0.004604017827659845, 0.00831693597137928, -0.016292283311486244, -0.0024208223912864923, 0.020807189866900444, 0.010618944652378559, 0.015326923690736294, 0.00894070602953434, 0.03320833668112755, 0.053673937916755676, -0.03787175938487053, -0.01905469410121441, 0.030980585142970085, 0.007195634301751852, -0.03297070786356926, -0.023822080343961716, -0.01866854913532734, 0.020554712042212486, 0.015430886298418045, -0.028411246836185455, -0.0160101018846035, 0.007975347340106964, -0.005253778304904699, 0.03709947317838669, -0.004466639831662178, 0.02931719832122326, -0.0023261429741978645, -0.008955557830631733, -0.000519808498211205, -0.040693577378988266, -0.0031244202982634306, 0.010433298535645008, -0.020020052790641785, -0.04642632231116295, -0.00800505094230175, -0.0005402294918894768, -0.021341850981116295, 0.0019622768741101027, -0.009378829970955849, -0.04580255225300789, 0.0061300271190702915, 0.051594704389572144, 0.020569564774632454, -0.012623920105397701, -0.02364386059343815, -0.004073070827871561, -0.0071176630444824696, 0.017049718648195267, -0.0365351103246212, 0.014948206953704357, -0.0008613968966528773, 0.005884974729269743, -0.024861697107553482, 0.0008725356310606003, -0.008524859324097633, 0.024297332391142845, 0.025129027664661407, 0.012104111723601818, 0.023926042020320892, 0.026718156412243843, -0.0003088683297391981, -0.009408533573150635, -0.0043515395373106, -0.03389151394367218, -0.000989492516964674, 0.03802027553319931, -0.024133965373039246, 0.00403965450823307, -0.026539934799075127, -0.0035829655826091766, 0.0035941042006015778, 0.014821967110037804, -0.02550031803548336, -0.011153604835271835, -0.011049643158912659, -0.0005467271548695862, 0.0070322658866643906, -0.00403965450823307, -0.03193109109997749, 0.010730331763625145, 0.006404783111065626, -0.01069320272654295, 0.017064569517970085, 0.008836744353175163, -0.0032617980614304543, -0.014576914720237255, 0.024534959346055984, 0.005803290288895369, 0.0027828318998217583, -0.024742882698774338, -0.01773289404809475, 0.01224520243704319, -0.006664687301963568, 0.00038707166095264256, -0.0013700666604563594, -0.012720456346869469, 0.012386293150484562, -0.0009068801300600171, -0.04811941459774971, -0.01702001504600048, -0.023064645007252693, -0.0019399995217099786, -0.023153753951191902, -0.006241414695978165, 0.017376454547047615, -0.011057068593800068, -0.006835481617599726, -0.012178369797766209, -0.0016995880287140608, -0.011963021010160446, 0.006482754368335009, 0.00471911858767271, -0.013581852428615093, 0.010789738968014717, 0.015200684778392315, -0.007199347484856844, -0.019708167761564255, 0.009958045557141304, 0.014584340155124664, 0.029421159997582436, 0.012193221598863602, -0.0038465827237814665, 0.020643822848796844, -0.03959455341100693, 0.010789738968014717, -0.01615861803293228, 0.007329299580305815, 0.026376567780971527, -0.01018082071095705, 0.0396539606153965, 0.026718156412243843, -0.014450675807893276, 0.05432740971446037, 0.03466380015015602, -0.007596629671752453, 0.012371441349387169, -0.02815876714885235, 0.02037649229168892, -0.025247840210795403, -0.004915902856737375, -0.01446552760899067, -0.015312072820961475, 0.03291130065917969, -0.01748041622340679, -0.010797164402902126, -0.008740208111703396, 0.004882486537098885, 0.014413546770811081, 0.033624183386564255, -0.015995249152183533, -0.002509932266548276, -0.0011760666966438293, -0.0017292913980782032, 0.04075298458337784, -0.021980471909046173, 0.00932684913277626, -0.01981212943792343, 0.0037481903564184904, -0.028975609689950943, 0.024624070152640343, -0.007258754223585129, -0.012713029980659485, -0.04235696420073509, -0.0023131477646529675, -0.02456466294825077, -0.0069580078125, -0.020257677882909775, 0.01266847550868988, -0.025559725239872932, 0.005628783255815506, -0.018059631809592247, 0.023911189287900925, 0.0035439799539744854, -0.01511900033801794, 0.012200647033751011, -0.013329374603927135, -0.01143578626215458, 0.015401182696223259, 0.01523781381547451, 0.018995286896824837, 0.014198197051882744, -0.0033509081695228815, -0.007139940746128559, -0.006983998231589794, 0.009200610220432281, -0.02177254855632782, 0.021475516259670258, -0.021980471909046173, -0.01014369074255228, -0.000978353782556951, 0.027193408459424973, 0.011799652129411697, 0.033772699534893036, 0.03368359059095383, 0.01511900033801794, 0.010745183564722538, 0.004793376661837101, 0.04345598816871643, -0.01002487726509571, 0.0019399995217099786, 0.02223295159637928, -0.028247877955436707, -0.02417851984500885, 0.017287343740463257, -0.018178444355726242, 0.02199532464146614, -0.0033397695515304804, 0.0003801099373959005, -0.01632198691368103, 0.0174061581492424, -0.005495117977261543, 0.018861621618270874, -0.0011018082732334733, -0.030891474336385727, -0.01298036053776741, 0.030594442039728165, 0.017079420387744904, -0.006263691931962967, -0.023926042020320892, 0.005688189994543791, 0.0057884384877979755, 0.0061151753179728985, 0.02463892102241516, 0.03516875579953194, 0.006378792691975832, 0.01850518211722374, 0.024208223447203636, -0.015683364123106003, 0.0067649357952177525, 0.005402295384556055, -0.021044816821813583, -0.04360450431704521, -0.0006701816455461085, 0.022426022216677666, -0.007834256626665592, -0.022812165319919586, -0.0019752723164856434, 0.058426473289728165, -0.006872610654681921, -0.0014099804684519768, -0.007184495683759451, -0.02168343961238861, 0.02131214737892151, -0.026406271383166313, -0.00871050450950861, 0.005777299869805574, -0.027475589886307716, -0.025485467165708542, 0.010945681482553482, -0.007277318742126226, -0.027237964794039726, 0.027802327647805214, 0.009193183854222298, -0.040693577378988266, -0.007737720385193825, -0.016841795295476913, 0.019619056954979897, -0.030059780925512314, 0.04687187448143959, -0.010017451830208302, -0.010789738968014717, -0.032228127121925354, 0.01018082071095705, -0.02004975453019142, -0.01935172639787197, -2.429350388410967e-05, -0.016678426414728165, -0.006620132364332676, -0.01865369826555252, 0.027148853987455368, -0.021950770169496536, 0.017227938398718834, -0.010165968909859657, -0.012096685357391834, -0.0099951745942235, 0.014079383574426174, -0.023732969537377357, -0.013693240471184254, 0.001606765086762607, 0.010774887166917324, 0.01465859916061163, -0.022143840789794922, 0.013938292860984802, -0.013596704229712486, 0.02255968749523163, 0.03320833668112755, 0.008309509605169296, 0.01166598778218031, 0.024074558168649673, 0.008190696127712727, 0.030832068994641304, -0.00963873416185379, 0.0015603536739945412, 0.025856759399175644, 0.02324286475777626, -0.009698141366243362, -0.011836781166493893, -0.01317343208938837, 0.027015188708901405, 0.010106561705470085, -0.007633758708834648, 0.005372591782361269, 0.002957338932901621, 0.0007588275475427508, 0.018534885719418526, -0.01411651261150837, -0.029480567201972008, 0.014094235375523567, -0.006178294774144888, -0.02705974318087101, -0.0021033678203821182, -0.009906064718961716, 0.04110942408442497, -0.02961423061788082, -0.0029387744143605232, -0.004500056151300669, 0.008094160817563534, 0.0020012627355754375, -0.019544798880815506, 0.00902238953858614, -0.007945643737912178, 0.0011918465606868267, -0.03600044921040535, 0.006716668140143156, -0.01092340424656868, -0.014146216213703156, -0.03614896535873413, 0.00831693597137928, 0.00033625110518187284, -0.029525121673941612, 0.002706717001274228, -0.0019102961523458362, 0.013893737457692623, 0.028559762984514236, -0.010596667416393757, -0.0006511529209092259, 0.012163517996668816, 0.0004887128015980124, -0.017673488706350327, 0.010708054527640343, -0.014933355152606964, 0.021044816821813583, -0.0005031003383919597, 0.014755134470760822, -0.0027828318998217583, -0.0003046913188882172, 0.014992761425673962, -0.003163405926898122, 0.014250177890062332, 0.03519846126437187, 0.0016327555058524013, 0.004214161541312933, -0.01709427312016487, -0.018074482679367065, 0.012274906039237976, -0.007663461845368147, 0.0038502956740558147, 0.02907957136631012, -0.030891474336385727, -0.001810975605621934, 0.008160993456840515, -0.011599155142903328, -0.01896558329463005, 0.0441688671708107, 0.010708054527640343, 0.004125051666051149, 0.0018880186835303903, 0.012765010818839073, 0.0007161289686337113, -0.010217949748039246, -0.009386255405843258, 0.007938218303024769, 0.012497681193053722, -0.021891362965106964, 0.016292283311486244, -0.03294100612401962, -0.012297183275222778, -0.002040248364210129, -0.025366652756929398, 0.02370326593518257, 0.024460701271891594, -0.010203097946941853, 0.02278246358036995, -0.023124050348997116, -0.05055508762598038, -0.01764378510415554, 0.008680801838636398, -0.025767648592591286, 0.007930791936814785, -0.0053651658818125725, -0.029272641986608505, -0.05403037741780281, 0.002428248059004545, -0.02976274862885475, 0.012928379699587822, -0.02325771562755108, -0.029257791116833687, -0.01224520243704319, 0.0018388224998489022, -0.01547544077038765, -0.003898563561961055, -0.0060594817623496056, -0.021817104890942574, -0.007789701223373413, 0.008042179979383945, -0.012787288054823875, 0.02068837732076645, 0.001266104867681861, -0.008264955133199692, -0.0309508815407753, -0.01368581410497427, 0.012415996752679348, -0.02206958271563053, -0.001208554720506072, -0.003319348441436887, 0.022797314450144768, 0.023421084508299828, 0.028663724660873413, 0.01081201620399952, 0.0031151380389928818, -0.030535034835338593, 0.004188171122223139, 0.012727881781756878, 0.0018898750422522426, 0.009482791647315025, -0.02006460726261139, 0.01392344105988741, 0.015609106048941612, 0.020034903660416603, 0.01403482910245657, -0.017851708456873894, -0.011220437474548817, 0.03255486115813255, -0.003321204800158739, 0.017524970695376396, 0.012133815325796604, -0.061307694762945175, 0.008264955133199692, -0.024891400709748268, -0.006698103621602058, 0.015170981176197529, -0.012772437185049057, -0.008784763514995575, 0.02307949587702751, 0.002704860409721732, 0.022203247994184494, 0.03528757020831108, 0.016515057533979416, -0.009052093140780926, 0.006920878309756517, -0.017138827592134476, 0.012505106627941132, 0.007915940135717392, -0.010366465896368027, 0.0024728032294660807, -0.026094384491443634, 0.004882486537098885, -0.03007463365793228, 0.029213236644864082, 0.0017710616812109947, -0.014005125500261784, 0.008539710193872452, -0.009304571896791458, -0.0002719712210819125, -0.014458101242780685, -0.00030979656730778515, -0.013188283890485764, -0.0205250084400177, -0.023658711463212967, -0.0261092372238636, -0.018623994663357735, 0.03032711148262024, 0.0379311665892601, -0.0014591766521334648, 0.005472840741276741, -0.008547136560082436, -0.012193221598863602, -0.005250065587460995, -0.028411246836185455, 0.032525159418582916, 0.003055731300264597, 0.02285672165453434, 0.03454498574137688, -0.0024598080199211836, -0.00410277396440506, -0.047376830130815506, -0.020718080922961235, -0.003549549262970686, 0.0222478024661541, 0.0698622614145279, 0.0038502956740558147, -0.0023874060716480017, 0.010448150336742401, -0.017153680324554443, -0.006252553313970566, -0.03647570312023163, 0.03600044921040535, 0.020955707877874374, 0.012349164113402367, -0.02566368691623211, 0.015817029401659966, -0.02410426177084446, 0.02068837732076645, -0.01857944019138813, -0.01795567013323307, -0.01866854913532734, 0.00882931798696518, -0.022485429421067238, 0.012141240760684013, -0.011101623997092247, 0.021252740174531937, -0.00040308362804353237, 0.005372591782361269, -0.0057067545130848885, -0.019856683909893036, -0.034010324627161026, 0.03193109109997749, 0.005569376517087221, 0.05016894266009331, -0.00024296404444612563, 0.01918835937976837, 0.012846695259213448, -0.0021831956692039967, -0.002198047237470746, -0.009237739257514477, -0.022589391097426414, 0.05447592958807945, -0.041941117495298386, 0.0061263139359653, -0.01410908717662096, 0.0028106786776334047, 0.012089259922504425, -0.004912190139293671, -0.01341105904430151, 0.013470465317368507, -0.014287306927144527, -0.014487804844975471, 0.021831955760717392, -0.014651172794401646, -0.009675863198935986, 0.006668400019407272, -0.006594141945242882, -0.030505331233143806, -0.0407232828438282, -0.009527347050607204, 0.03659451752901077, -0.030223149806261063, -0.008888725191354752, -0.002448669169098139, -0.00801247637718916, 0.03466380015015602, 0.01887647435069084, -0.03025285340845585, 0.004180745221674442, 0.041168831288814545, -0.0030037504620850086, 0.017628932371735573, -0.028827093541622162, -0.002121932338923216, -0.016589315608143806, -0.019767573103308678, -0.005417146719992161, -0.012200647033751011, 0.026703303679823875, -0.03632718697190285, 0.006282256916165352, -0.007570639252662659, -0.011963021010160446, 0.0007555787451565266, -0.021416109055280685, 0.008769911713898182, 0.011948169209063053, 0.006802065297961235, 0.022886425256729126, -0.0044777789153158665, -0.010871422477066517, 0.0261092372238636, 0.0028515206649899483, 0.013344226405024529, 0.016574464738368988, -0.007325586397200823, 0.014368991367518902, -0.00292392261326313, -0.023673562332987785, -0.009363978169858456, -0.021326998248696327, -0.015817029401659966, -0.011101623997092247, -0.0031188507564365864, -0.018445774912834167, 0.0004747893544845283, -0.01318085752427578, -0.012883824296295643, -0.0037871759850531816, 0.004533472470939159, -0.010425873100757599, 0.0018091191304847598, 0.0006854974199086428, 0.049159031361341476, -0.022440874949097633, -0.0020977985113859177, -0.02193591743707657, -0.028752833604812622, 0.014213048852980137, -0.01887647435069084, -0.035406384617090225, -0.04146586358547211, -0.005643635056912899, 0.019559649750590324, 0.03745591267943382, -0.02658449113368988, -0.025485467165708542, 0.008443174883723259, -0.0226190946996212, -0.018846770748496056, -0.00851743295788765, 0.016826942563056946, 0.02643597312271595, 0.006412209011614323, -0.004979022778570652, 0.00309100397862494, -0.025292394682765007, 0.022173544391989708, -0.018995286896824837, -0.004340400919318199, -0.018861621618270874, 0.00016267220780719072, 0.027267666533589363, -0.026465676724910736, -0.00466342456638813, -0.0006376936216838658, 0.0024690902791917324, -0.024000300094485283, 0.007578065153211355, 0.013767498545348644, -0.002897932194173336, -0.00018529780209064484, -0.03305982053279877, -0.017539823427796364, 0.007084246724843979, -0.01981212943792343, -0.013782350346446037, -0.027698365971446037, -0.011450638063251972, -0.0043775299564003944, 0.032851897180080414, -0.020584415644407272, 0.008613969199359417, 0.015505144372582436, -0.007693165447562933, -0.001498162280768156, -0.02146066352725029, -9.166265226667747e-05, -0.0032617980614304543, 0.019990349188447, 0.03297070786356926, 0.007303309161216021, -0.019010137766599655, 0.01181450393050909, 0.0340697318315506, 0.009267442859709263, -0.016663573682308197, 0.0018286119448021054, -0.00611888850107789, 0.006408495828509331, 0.02169829048216343, -0.0018193296855315566, 0.023153753951191902, 0.0029796164017170668, 0.0087030790746212, -0.025084471330046654, 0.011636284179985523, -0.009467939846217632, -0.02184680849313736, -0.04966398701071739, 0.0019047267269343138, 0.04856496304273605, -0.04633721336722374, 0.0057216063141822815, 0.005643635056912899, -0.020703228190541267, 0.011057068593800068, -0.016218025237321854, 0.020094310864806175, -0.06112947687506676, 0.027089446783065796, 0.011339250952005386, 0.0016401814064010978, -0.010269930586218834, 0.008212974295020103, 0.03980247676372528, -0.008465452119708061, -0.0024579514283686876, 0.2746964991092682, -0.011851632967591286, -0.001751568866893649, 0.042802516371011734, 0.004251290578395128, 0.04066387563943863, 0.008250103332102299, -0.018223000690340996, 0.0009848513873293996, -0.0008813538588583469, 0.013114024884998798, -0.026332011446356773, -0.03031226061284542, -0.005201797466725111, 0.002140497090294957, -0.011903613805770874, -0.031218212097883224, -0.027416184544563293, -0.04167378693819046, 0.00707682128995657, 0.029985522851347923, -0.009675863198935986, 0.006828055717051029, 0.009274868294596672, 0.011079346761107445, 0.0022277506068348885, -0.010411021299660206, -0.027401331812143326, 0.03496083244681358, 0.014235326088964939, -0.013047192245721817, -0.00862882100045681, 0.022678501904010773, 0.005818142089992762, -0.006813203915953636, -0.00606319447979331, 0.022589391097426414, -0.0020272531546652317, 0.02324286475777626, -0.002476516179740429, 7.79132533352822e-05, -0.005695615895092487, -0.0020365354139357805, 0.003813166404142976, -0.03516875579953194, 0.0011649279622361064, 0.004659711848944426, -0.00485649611800909, 0.0047822380438447, 0.004321835935115814, -0.04099060967564583, -0.008227825164794922, 0.03543608635663986, 0.012304608710110188, -0.0018546023638918996, 0.0026473102625459433, 0.017896262928843498, 0.005105261690914631, 0.00032023913809098303, 0.041554976254701614, -0.027876585721969604, 0.0692087858915329, -0.0121709443628788, 0.002884936984628439, -0.04464412108063698, -0.0025396356359124184, -0.019411133602261543, 0.008740208111703396, -0.004444362595677376, -0.02924294024705887, 0.0032766498625278473, -0.02004975453019142, -0.012029853649437428, 0.0248765479773283, -0.04734712466597557, -0.03706977143883705, 0.002159061608836055, 0.0020959419198334217, 0.01360413059592247, 0.01694575697183609, -0.021356701850891113, 0.007455538492649794, -0.017287343740463257, 0.01727249287068844, -0.012742733582854271, -0.017361603677272797, 0.005231501068919897, -0.024044854566454887, -0.015312072820961475, 0.017064569517970085, -0.00012322246038820595, -0.027935992926359177, 0.004154754802584648, 0.01584673300385475, -0.0021646309178322554, 0.005082984454929829, -0.013336800038814545, -0.0003016745613422245, 0.00019179540686309338, -0.012185796163976192, -0.036653924733400345, 0.026792414486408234, 0.0019771286752074957, 0.022366616874933243, -0.014131364412605762, -0.014331862330436707, -0.028782537207007408, 0.0004901051288470626, -0.008480303920805454, -0.011911040171980858, 0.0024059705901890993, -0.036653924733400345, 0.02636171504855156, 0.006415921729058027, -0.026718156412243843, -0.014064531773328781, -0.013128876686096191, -0.016529910266399384, -0.029035016894340515, 0.008361490443348885, 0.019886387512087822, -0.017242789268493652, 0.0016643153503537178, 0.02884194441139698, 0.002040248364210129, -0.003027884289622307, -0.03923811390995979, -0.02867857553064823, 0.02083689346909523, -0.03834701329469681, 0.02091115154325962, -0.01973786950111389, 0.03398062288761139, -0.002680726582184434, -0.00444807531312108, -0.006946868728846312, -0.003536554053425789, -0.029643934220075607, -0.03071325458586216, -0.011406082659959793, 0.021029965952038765, 0.02045075036585331, 0.005985223222523928, -0.002610181225463748, -0.014391268603503704, -0.017510119825601578, 0.009802103042602539, 0.005201797466725111, 0.008576840162277222, -0.010366465896368027, -0.03709947317838669, -0.022262655198574066, 0.004110199864953756, 0.0021534922998398542, 0.005346601363271475, -0.02704489231109619, -0.001896372647024691, -0.03133702650666237, 0.011606580577790737, 0.0033267743419855833, -0.033475667238235474, -0.0213864054530859, -0.004076783545315266, -0.027713216841220856, -0.014383843168616295, -0.02861917018890381, -0.19188357889652252, 0.007585490588098764, 0.031158804893493652, -0.02961423061788082, 0.04021832346916199, -0.018846770748496056, 0.013930867426097393, -0.0030724394600838423, 0.012534810230135918, -0.013500168919563293, 0.017153680324554443, -0.002500650007277727, -0.006516170687973499, -0.023450788110494614, 0.006445624865591526, -0.024995362386107445, -0.010559537447988987, 0.008925854228436947, 0.03659451752901077, 0.023510195314884186, 0.04749564453959465, -0.009378829970955849, 0.01679723896086216, 0.030445924028754234, 0.00995061919093132, 0.008769911713898182, 0.0035959607921540737, -0.0029647648334503174, 0.05637694150209427, -0.010656073689460754, -0.024000300094485283, -0.022901276126503944, -0.01076746080070734, -0.008034753613173962, 0.0031244202982634306, -0.007481528911739588, 0.019024990499019623, 0.011554599739611149, 0.0009746408904902637, 0.016440799459815025, -0.0010767461499199271, 0.030223149806261063, 0.011584303341805935, 0.009705566801130772, 0.0036052430514246225, 0.033327147364616394, 0.008443174883723259, -0.004113912582397461, 0.007975347340106964, -0.0066089932806789875, 0.03023800067603588, -0.0351390540599823, 0.01834181323647499, 0.01266847550868988, 0.027891438454389572, 0.022128989920020103, 0.011420934461057186, 0.012341738678514957, 0.007136227563023567, -0.0030613006092607975, 0.003295214381068945, -0.025322098284959793, 0.025292394682765007, 0.012118963524699211, -0.016975458711385727, 0.009794676676392555, -0.018950732424855232, 0.021980471909046173, -0.009156054817140102, -0.0076003423891961575, -0.00047525347326882184, -0.006490180268883705, 0.011250140145421028, -0.014339287765324116, 0.008354065008461475, 0.01687149703502655, 0.009542198851704597, 0.01267590094357729, 0.042475778609514236, -0.018445774912834167, -0.03534697741270065, 0.03570341691374779, -0.00475996034219861, 0.010581815615296364, 0.02760925516486168, 0.02067352645099163, -0.0004966027336195111, 0.003089147387072444, -0.0034103149082511663, -0.0022982959635555744, 0.024282481521368027, -0.02255968749523163, 0.02177254855632782, -0.02518843300640583, -0.0018286119448021054, 0.03187168389558792, 0.006207998376339674, -0.025515170767903328, -0.006408495828509331, -0.009527347050607204, -0.015534847974777222, -0.017317047342658043, -0.018312109634280205, 0.02853005938231945, -0.005420859903097153, 0.019990349188447, -0.04081239178776741, 0.04122823849320412, 0.025247840210795403, -0.0028905062936246395, 0.00020977984240744263, -0.0075149452313780785, 0.014094235375523567, 0.0018295401241630316, 0.01193331740796566, 0.004641146864742041, -0.005561950616538525, -0.0012475403491407633, -0.004841644782572985, 0.03243605047464371, 0.016574464738368988, -0.040455952286720276, 0.004804515279829502, 0.02760925516486168, -0.0032562287524342537, -0.026525083929300308, -0.04214904084801674, -9.943657641997561e-05, 0.0007453682483173907, 0.021653736010193825, -0.01733190007507801, 0.008101586252450943, -0.010113988071680069, 0.0006441912264563143, -0.014450675807893276, 0.027772624045610428, -0.010611518286168575, -0.012044704519212246, -0.0147774126380682, 0.0005643634940497577, 0.022916126996278763, 0.01804477907717228, -0.019307171925902367, -0.008576840162277222, 0.01057438924908638, 0.04425797984004021, 0.0021330711897462606, -0.0337429940700531, 0.0037611855659633875, -0.019960645586252213, -0.0030390231404453516, -0.009727844037115574, -0.0008711433038115501, 0.013017489574849606, 0.010604092851281166, 0.008272380568087101, 0.06326811760663986, -0.010321911424398422, 0.021831955760717392, -0.014435824006795883, -0.011747671291232109, 0.01569821499288082, -0.015668513253331184, -0.009690715000033379, 0.0022166117560118437, -0.020257677882909775, -0.004358965437859297, 0.011346676386892796, -0.0060854721814394, 0.0049567450769245625, 0.00020154181402176619, -0.03101028874516487, -0.0020940855611115694, 0.018787363544106483, -0.015920991078019142, -0.019797276705503464, -0.02722311206161976, -0.012326886877417564, 0.002823673887178302, -0.025455763563513756, 0.01337392907589674, 0.011101623997092247, 0.021089373156428337, -0.0036163819022476673, -0.030416222289204597, 0.011784800328314304, 0.0034994250163435936, -0.006170869339257479, -0.003610812360420823, 0.01655961200594902, 0.010485279373824596, 0.003898563561961055, -0.030535034835338593, -0.011458063498139381, 0.014762560836970806, 0.01664872281253338, -0.01679723896086216, 0.02160918153822422, 0.0019028702517971396, 0.030341962352395058, -0.028975609689950943, -0.007878811098635197, -0.030134038999676704, -0.025916164740920067, 0.018445774912834167, -0.011220437474548817, -0.005443137139081955, 0.0006469758809544146, -0.0005977797554805875, -0.0006497605936601758, 0.019708167761564255, 0.012564513832330704, 0.006750084459781647, -0.016663573682308197, -0.011346676386892796, -0.020569564774632454, -8.087198511930183e-05, 0.014636320993304253, 0.007377567235380411, -0.012816991657018661, 0.014205623418092728, 0.013470465317368507, 0.003068726509809494, -0.005372591782361269, 0.03576282411813736, 0.00859169103205204, -0.04004010558128357, -0.028277581557631493, -0.07206030935049057, 0.028099361807107925, -0.0044740657322108746, 0.016039803624153137, 0.012066982686519623, -0.0014554637018591166, -0.009928341954946518, -0.0021757697686553, 0.004581740591675043, -0.0056213573552668095, -0.013529871590435505, 0.01049270574003458, 0.005613931454718113, -0.02588646113872528, -0.01859429106116295, -0.02931719832122326, 0.024624070152640343, -0.02076263539493084, 0.018638847395777702, 0.026762710884213448, -0.0072030602023005486, 0.014086809940636158, 0.0070508308708667755, 0.010760035365819931, -0.004763673525303602, -0.007017414551228285, 0.005532247480005026, 0.0048156543634831905, 5.992881051497534e-05, 0.0016253297217190266, 0.01329224556684494, -0.012594216503202915, -2.3829388737794943e-05, 0.024534959346055984, 0.014755134470760822, -0.021549774333834648, -0.0037890325766056776, 0.007841682061553001, 0.020896300673484802, -0.04057476297020912, -0.02829243242740631, -0.015200684778392315, -0.0009226600523106754, 0.00043649988947436213, -0.026569638401269913, 0.013856608420610428, -0.004002525471150875, -0.00746296439319849, -0.003865147242322564, 0.010774887166917324, 0.016440799459815025, 0.00538373040035367, 0.016307134181261063, 0.0006479041185230017, -0.01372294407337904, -0.06445625424385071, 0.013091747649013996, -0.002198047237470746, -0.0019140091026201844, -0.006612706463783979, -0.011049643158912659, 0.021713143214583397, 0.009052093140780926, -0.02122303657233715, -0.01586158387362957, 0.006516170687973499, -0.04957487806677818, 0.013396207243204117, 0.031455837190151215, -0.025010213255882263, -0.018059631809592247, 0.005027290433645248, -0.001849033054895699, 0.013522446155548096, 0.013507594354450703, 0.01756952702999115, -0.03320833668112755, 0.000211288221180439, -0.02395574562251568, 0.029183533042669296, 0.003987673670053482, -0.03157465159893036, -0.04057476297020912, 0.0009254447068087757, 0.02177254855632782, -0.007975347340106964, 0.004277280997484922, 0.012185796163976192, -0.029837006703019142, 0.006441912148147821, -0.025247840210795403, 0.0006808562902733684, -0.017777450382709503, 0.021520070731639862, 0.008680801838636398, 0.033089522272348404, 0.008443174883723259, -0.030802365392446518, 0.01756952702999115, 0.013448188081383705, 0.001014554756693542, 0.0027327074203640223, -0.014628895558416843, -0.011213011108338833, 0.010656073689460754, 0.01410908717662096, -0.004002525471150875, -0.044050056487321854, 0.03561430796980858, -0.006133739836513996, -0.0196636114269495, 0.0031077121384441853, -0.0035198458936065435, 0.021505219861865044, 0.021401258185505867, 0.011138753034174442, -0.011361528187990189, -0.01733190007507801, -0.02884194441139698, 0.03894108161330223, 0.022916126996278763, 0.025381505489349365, 0.026614194735884666, 0.00027962910826317966, -0.0012772437185049057, -0.009170906618237495, -0.013210561126470566, -0.0441688671708107, 0.043663911521434784, 0.014101661741733551, -0.007095385808497667, -0.0007514017052017152, -0.036356888711452484, -0.03493113070726395, 0.009000112302601337, 0.015401182696223259, 0.002764267148450017, 0.029109274968504906, 0.005153529811650515, 0.07847622781991959, -0.0026417409535497427, -0.011472915299236774, -0.009727844037115574, 0.007737720385193825, 0.03418854624032974, 0.023836931213736534, -0.002112650079652667, -0.01446552760899067, -0.0182675551623106, 0.021282443776726723, -0.00011376611655578017, -0.018921028822660446, -0.026643896475434303, -0.002658449113368988, -0.022812165319919586, -0.029257791116833687, 0.025455763563513756, -0.025916164740920067, 0.007834256626665592, 0.03585193306207657, -0.008985260501503944, 0.0191289521753788, 0.001328296260908246, -0.006987710949033499, -0.007095385808497667, 0.016455650329589844, -0.0077154431492090225, 0.01294323056936264, -0.00038219845737330616, -0.0022407458163797855, 0.008495155721902847, -0.017628932371735573, -0.026851819828152657, -0.007236476521939039, -0.014064531773328781, -0.007281031459569931, 0.011294695548713207, 0.019930941984057426, 0.009913490153849125, -0.0053800176829099655, 0.018802214413881302, -0.01975272223353386, -0.009601605124771595, -0.002274162136018276, 0.000978353782556951, -0.013930867426097393, -0.006263691931962967, -0.023064645007252693], "6c060f29-393f-4866-9884-d6732a831213": [-0.014259553514420986, -0.01735367812216282, -0.030631085857748985, 0.01158634852617979, -0.018933970481157303, 0.03317137062549591, -0.041235290467739105, -0.0199234988540411, -0.008100843988358974, -0.014776472002267838, -0.006276862230151892, 0.035150427371263504, 0.0008773760637268424, 0.00364796444773674, 0.01290079765021801, -0.01060420460999012, -0.0009701444068923593, -8.469148451695219e-05, 0.008536532521247864, -0.031044621020555496, 0.00015680617070756853, 0.010161131620407104, -0.007930999621748924, -0.02451668493449688, 0.003263968275859952, 0.006081171799451113, 0.040083304047584534, -0.019199812784790993, 0.008890990167856216, -0.004847952630370855, 0.036922719329595566, -0.011276197619736195, -0.02621512860059738, -0.017309369519352913, -0.00834453385323286, -0.036095649003982544, 0.008698992431163788, 0.00999867171049118, 0.029198484495282173, -0.02088348940014839, 0.03470735624432564, 0.006509474944323301, -0.00023480541130993515, 0.0009719905210658908, -0.030143706128001213, 0.01303371973335743, 0.004220266826450825, 0.003673810511827469, -0.00547194667160511, 0.00948913861066103, 0.0003311506297904998, 0.01023497711867094, -0.022005939856171608, 0.01606876589357853, 0.01999734342098236, -0.010486051440238953, 0.03958115354180336, 0.009991287253797054, -0.02391115203499794, -0.010042979381978512, 0.02357146330177784, 0.007990076206624508, -0.02141517587006092, 0.016659529879689217, 0.005663944873958826, 0.0007407620432786644, 0.002396284369751811, -0.011726655066013336, -0.03060154803097248, 0.010449129156768322, -0.00020930565369781107, 0.021518560126423836, -0.012509416788816452, 0.014614012092351913, 0.03455966338515282, -0.014333399012684822, -0.0036128878127783537, 0.006723626982420683, 0.007181468419730663, 0.016851527616381645, 0.01877151057124138, -0.01185219269245863, -0.0003936884750146419, 0.0009627598337829113, 0.016659529879689217, -0.004836875945329666, -0.016186919063329697, 0.026658201590180397, -0.002063979860395193, -0.03591841831803322, -0.006675627548247576, 0.008927913382649422, -0.03234430029988289, -0.007628233637660742, 0.004785184282809496, -0.0012904489412903786, -0.035623036324977875, 0.0324033759534359, -0.010692819021642208, -0.0337621346116066, 0.006284246686846018, -0.0032362760975956917, -0.02513698674738407, 0.005361178424209356, -0.025831133127212524, -0.002724896650761366, -0.003049816470593214, -0.012671876698732376, 0.014495858922600746, -0.029493866488337517, -0.02538806013762951, 0.028548644855618477, -0.0028338185511529446, -0.024841604754328728, -0.0391971580684185, -0.030365243554115295, 0.04838353022933006, 0.023276081308722496, 0.005087950266897678, -0.02716035023331642, 0.013314331881701946, 0.0027895113453269005, 0.01984965242445469, -0.007137161213904619, 0.013594944961369038, 0.006635012570768595, -0.0021285947877913713, -0.01984965242445469, -0.013210948556661606, -0.01411924697458744, 0.056506525725126266, 0.016039228066802025, 0.011394350789487362, 0.00430518900975585, 0.01843181997537613, 0.005361178424209356, -0.030749239027500153, -0.004785184282809496, -0.019096430391073227, -0.022655779495835304, 0.015522310510277748, 0.006092248484492302, 0.015086621977388859, 0.001949519501067698, 0.007137161213904619, -0.00670516537502408, 0.004087344743311405, 0.017663829028606415, -0.02363053895533085, -0.005959326401352882, 0.01002821046859026, -0.021297022700309753, -0.008669453673064709, -0.022537626326084137, -0.005501484964042902, 0.020721029490232468, -0.004681800492107868, 0.005737790372222662, 0.009983902797102928, -0.0253289844840765, -0.017589982599020004, 0.01188911497592926, 0.03600703552365303, -0.04309619590640068, 0.0182398222386837, 0.050687506794929504, -0.005309486761689186, 0.01829889975488186, -0.012583262287080288, -0.030719701200723648, -0.010559896938502789, 0.0037568865809589624, -0.001480601029470563, 0.032107993960380554, -0.006306400056928396, 0.012634954415261745, -0.0001178065431304276, 0.008839298970997334, -0.003703348571434617, 0.006745780352503061, -0.008100843988358974, 0.013772173784673214, 0.013114949688315392, 0.018682895228266716, 0.015788154676556587, -0.02466437593102455, -0.016024459153413773, 0.009865750558674335, 0.010220208205282688, -0.0023353619035333395, -0.005036258604377508, 0.03222614899277687, 0.0006396860699169338, 0.01310756430029869, -0.5189266204833984, -0.019746270030736923, -0.01006513275206089, 0.007281159982085228, 0.012376494705677032, 0.03323044627904892, 0.022714855149388313, 0.028076034039258957, -0.02727850340306759, 0.026658201590180397, -0.02574251964688301, 0.024841604754328728, -0.015049699693918228, -0.0009913749527186155, -0.0028707413002848625, -0.007022700738161802, 0.002351977163925767, -0.023482847958803177, 0.0209425650537014, 0.02073579840362072, -0.007340236101299524, 0.02377822995185852, -0.01208849810063839, 0.011017738841474056, 0.016836758702993393, -0.03411659225821495, -0.00996174942702055, 0.0019329042406752706, -0.009334063157439232, 0.02410314977169037, -0.005316871218383312, 0.016245996579527855, -0.007569157052785158, -0.007990076206624508, 0.07526326924562454, -0.03361444175243378, -0.033466752618551254, 0.016039228066802025, -0.00682331807911396, 0.03355536609888077, -0.009540829807519913, -0.033939361572265625, 0.010057748295366764, 0.000982144265435636, 0.015921076759696007, -0.01161588728427887, 0.0013901402708142996, -0.040437761694192886, 0.011276197619736195, -0.013078026473522186, -0.003887962084263563, -0.014776472002267838, 0.003921192605048418, -0.00406888360157609, -0.003526119515299797, 0.016467532142996788, 0.020277956500649452, -0.014872470870614052, 0.009238064289093018, -0.023601001128554344, -0.028888333588838577, -0.007439927663654089, 0.009105142205953598, 0.012450340203940868, -0.017324138432741165, -0.010884816758334637, -0.012147573754191399, -0.003400582354515791, 0.010338361375033855, -0.035623036324977875, -0.028681566938757896, 0.016585685312747955, -0.02397022768855095, 0.021902555599808693, 0.03600703552365303, 0.024752989411354065, 0.04330296441912651, -0.04991951584815979, -0.014156170189380646, 0.02013026550412178, 0.0324329137802124, -0.008270688354969025, -0.03385074809193611, -0.007421466056257486, 0.043273426592350006, 0.00888360571116209, -0.052518874406814575, 0.001480601029470563, 0.013927249237895012, -0.013351255096495152, 0.021252715960144997, 0.014444166794419289, 0.039344847202301025, -0.024974526837468147, 0.011268813163042068, -0.012502032332122326, -0.029552944004535675, 0.02857818268239498, 0.01727983169257641, -0.005819020327180624, -0.03754302114248276, 0.002019672654569149, 0.02559482865035534, 0.0021581328473985195, 0.008802375756204128, -0.0029039718210697174, -0.040496837347745895, -0.01810690015554428, 0.03730671480298042, -0.02404407411813736, -0.027573885396122932, -0.05816066637635231, 0.0004370726819615811, 0.01219188142567873, -0.006454091053456068, -0.039669767022132874, 0.011438657529652119, -0.004205497447401285, 0.015226928517222404, -0.03801563009619713, 0.0151973906904459, 0.011084199883043766, 0.02856341376900673, 0.03246245160698891, 0.03166492283344269, 0.013144487515091896, 0.038399625569581985, -0.014983238652348518, 0.0026639741845428944, 0.00765038700774312, -0.031369540840387344, -0.010751895606517792, 0.035357195883989334, -0.020366571843624115, 0.009474369697272778, 0.001801828620955348, -0.004164882469922304, -0.004851645324379206, 0.016792451962828636, 0.014089709147810936, -0.021252715960144997, -0.02513698674738407, 0.006598089821636677, 0.00440857233479619, 0.008558685891330242, -0.026569588109850883, 0.006579628214240074, -0.007746386341750622, -0.021843479946255684, -0.0016753682866692543, 0.0011326043168082833, -0.01148296520113945, -0.02594928629696369, 0.030837854370474815, -0.01343986950814724, -0.01676291413605213, -0.024974526837468147, -0.008300227113068104, 0.009954364970326424, -0.009924826212227345, 0.005497792735695839, 0.01971673034131527, 0.0081082284450531, 0.02540282905101776, -0.006575935985893011, -0.03453012555837631, 0.0015110622625797987, -0.008735914714634418, -0.013720481656491756, -0.019140737131237984, -0.015359850600361824, 0.0006023018504492939, -0.012398649007081985, -0.018815817311406136, -0.01414878573268652, -0.01640845648944378, -0.007255313917994499, 0.023866845294833183, -0.004877490922808647, 0.012509416788816452, -0.0011455273488536477, -0.00807130616158247, -0.0009544522617943585, 0.011571579612791538, -0.004312573466449976, 0.01810690015554428, 0.03145815432071686, 0.01748659834265709, 0.0003306891012471169, 0.023925920948386192, -0.024398531764745712, 0.007775924168527126, 0.004046729765832424, -0.013085410930216312, 0.029228024184703827, 0.02878495119512081, 0.054704699665308, 0.013011565431952477, -0.001332910149358213, 0.0358002670109272, 0.027381887659430504, -0.001931058126501739, 0.013757404871284962, -0.060494180768728256, 0.01912596821784973, -0.013351255096495152, -0.00047168773016892374, -0.017191218212246895, -0.006915625184774399, 0.028592953458428383, -0.031074158847332, -0.03355536609888077, -0.014067555777728558, 0.012627569027245045, 0.03993561118841171, 0.023615770041942596, -0.0015775230713188648, 0.020632414147257805, 0.021902555599808693, -0.0011455273488536477, -0.003393197664991021, -0.019746270030736923, 0.0007043008226901293, -0.01965765468776226, -0.006173478439450264, -0.027647731825709343, 0.019480425864458084, -0.012118035927414894, -0.018933970481157303, -0.019347503781318665, -0.0226262416690588, 0.0007952230516821146, -0.012849105522036552, 0.00677162641659379, 0.04551832750439644, -0.00935621652752161, 0.032255686819553375, 0.011800500564277172, 0.006070094648748636, -0.0016670606564730406, -0.006291631143540144, 0.02425084076821804, -0.008255919441580772, -0.02317269705235958, 0.0014944470021873713, 0.0432143472135067, 0.02944955974817276, 0.02196163311600685, -0.010892202146351337, 0.033998437225818634, -0.012583262287080288, 0.017530906945466995, -0.02033703215420246, 0.02052903175354004, -0.008920528925955296, -0.02160717360675335, 0.0020953642670065165, 0.01533031277358532, 0.02857818268239498, 0.009991287253797054, 0.027810191735625267, 0.05290286988019943, -0.007351313252002001, 0.005279948469251394, 0.034677814692258835, -0.018668126314878464, 0.01030143816024065, -0.006361784413456917, 0.02761819213628769, -0.006716242525726557, -0.021297022700309753, -0.024162227287888527, 0.004057806450873613, -0.009688520804047585, 0.02249331958591938, -0.008130382746458054, 0.020617645233869553, 0.006690396461635828, 0.03464827686548233, -0.021725326776504517, -0.0014898316003382206, -0.055827148258686066, 0.041973743587732315, -2.65526268776739e-05, -0.012073728255927563, -0.05925357714295387, -0.011778347194194794, -0.012007268145680428, -0.001406755531206727, 0.03281691297888756, 0.024634838104248047, 0.025653904303908348, -0.010678050108253956, 0.01064112689346075, -0.0007804539636708796, 0.00019857498409692198, 0.012502032332122326, -0.009430062025785446, 0.008078690618276596, -0.007923615165054798, 0.014008479192852974, -0.00976236630231142, -0.00305720092728734, -0.0018765971763059497, 0.05118965730071068, 0.002495975699275732, 0.006568551529198885, -0.014200476929545403, -0.010294053703546524, 0.006487321574240923, -0.007325467187911272, -0.017250293865799904, -0.00430518900975585, -0.016792451962828636, -0.01844658888876438, -0.000321227649692446, 0.002049210714176297, -0.0016587531426921487, 0.025151755660772324, -0.011601117439568043, -0.030217552557587624, -0.01674814522266388, -0.02823849394917488, -0.003215968608856201, -0.023586232215166092, 0.036509182304143906, -0.017811518162488937, -0.014879855327308178, -0.042446356266736984, 0.016393685713410378, 0.0028559721540659666, -0.039079003036022186, 0.013676174916327, -0.03328952193260193, 0.01844658888876438, -0.03541627153754234, 0.014156170189380646, -0.005678713787347078, 0.015965383499860764, -0.0002547667536418885, -0.02032226324081421, -0.012568493373692036, 0.011985113844275475, -0.01567000150680542, 0.024295147508382797, -0.017575213685631752, 0.006620243191719055, 0.010087286122143269, -0.04439587518572807, 0.001938442699611187, -0.03769071027636528, 0.0086103780195117, 0.024871142581105232, 0.0033839670941233635, 0.006572243757545948, -0.015640463680028915, -0.017043527215719223, 0.004334726836532354, -0.01769336685538292, 0.00635070726275444, 0.0004970720619894564, 0.041028525680303574, 0.00553840771317482, -0.022508088499307632, -0.0023316696751862764, 0.011970344930887222, 0.0002124210150213912, -0.019347503781318665, 0.0005736867315135896, 0.007908846251666546, -0.0036535030230879784, 0.016703836619853973, 0.008735914714634418, -0.027573885396122932, 0.02174009568989277, 0.002795049687847495, -0.02430991642177105, -0.017205987125635147, -0.005032566376030445, 0.039138082414865494, -0.025550520047545433, -0.007185160648077726, 0.013668790459632874, 0.023527156561613083, 0.011098968796432018, -0.034087054431438446, 0.0036055033560842276, -0.021577635779976845, 0.015655232593417168, -0.02302500605583191, -0.019096430391073227, -0.023305619135499, -0.052991483360528946, -0.01776721142232418, -0.00013984479301143438, -0.006066402420401573, -0.027514809742569923, -0.017117371782660484, 0.015086621977388859, 0.016452763229608536, 0.030512934550642967, -0.010980816558003426, -0.01246510911732912, 0.0256686732172966, -0.005752559285610914, -0.019465656951069832, -0.021459482610225677, -0.0026159745175391436, 0.0027968958020210266, 0.003817809047177434, 0.017781980335712433, 0.016113074496388435, -0.007284852210432291, 0.007687309756875038, 0.01556661818176508, 0.027943111956119537, 0.01782628893852234, -0.009732828475534916, -0.035357195883989334, -0.00790146179497242, -0.01019805483520031, 0.013484176248311996, -0.0337621346116066, 0.014569704420864582, 0.00820422824472189, -0.03011416830122471, 0.009068218991160393, 0.007085469551384449, -0.032196611166000366, -0.011874346062541008, 0.04091037064790726, -0.0034688892774283886, 0.01727983169257641, 0.0010393745033070445, 0.023143159225583076, -0.0199234988540411, 0.004031960852444172, -0.030143706128001213, -0.013358639553189278, 0.0006004556780681014, -0.013188795186579227, 0.030217552557587624, -0.02727850340306759, 0.006254708394408226, 0.004098421428352594, -0.010323591530323029, 0.018830586224794388, 0.021090256050229073, 0.017781980335712433, -0.006162401754409075, -0.02716035023331642, -0.0378088615834713, 0.00206028763204813, 0.021223178133368492, -0.019687192514538765, 0.007768539711833, 0.008758069016039371, -0.03187169134616852, -0.07148238271474838, 0.008026998490095139, -0.025772057473659515, 0.00942267756909132, 0.0022282861173152924, -0.0219468642026186, -0.011298351921141148, -0.003814116818830371, 0.030158475041389465, -0.0331122949719429, 0.00012888335913885385, -0.01999734342098236, -0.010648511350154877, 0.030424319207668304, 0.0035833497531712055, 0.002019672654569149, -0.006273169536143541, -0.007103930693119764, -0.030232321470975876, -0.010175900533795357, 0.026037899777293205, -0.03275783360004425, 0.000952606089413166, 0.01360971387475729, 0.0008635300328023732, 0.021311793476343155, 0.034825507551431656, -0.025624366477131844, 9.980671893572435e-05, -0.01654137670993805, 0.013262639753520489, -0.007576541509479284, 0.002411053515970707, 0.008396225981414318, -0.03695225715637207, 0.013513715006411076, 0.011830038391053677, 0.03263968229293823, 0.0236453078687191, 0.005855943076312542, 0.005091642960906029, 0.04489802569150925, -0.00211936398409307, 0.010618973523378372, 0.016836758702993393, -0.05243025720119476, -0.022242244333028793, -0.02606743946671486, 0.013513715006411076, -0.008639915846288204, -0.00771684804931283, -0.020277956500649452, 0.004061499144881964, 0.024221302941441536, 0.003924884833395481, 0.01489462424069643, 0.01567000150680542, 0.0010144516127184033, -0.001129835145547986, -0.013750020414590836, 0.034205205738544464, -0.026983121410012245, -0.00383257819339633, -0.0007379928138107061, -0.003743963548913598, 0.015226928517222404, -0.03402797505259514, 0.010397437028586864, 0.006513167172670364, 0.00922329444438219, -0.0032325838692486286, -0.0025975131429731846, -0.007092854008078575, -0.019893961027264595, -0.01225834246724844, -0.015345081686973572, -0.012760491110384464, -0.027987420558929443, -0.003160584717988968, -0.027514809742569923, 0.03574119135737419, 0.004209189675748348, -0.01878627948462963, -0.005254102870821953, -0.023660076782107353, -0.030099399387836456, -0.01769336685538292, -0.014060171321034431, 0.009378369897603989, 0.00908298883587122, 0.025107448920607567, 0.0222865529358387, 0.000967375177424401, 0.003112585050985217, -0.03574119135737419, -0.008802375756204128, 0.006911932956427336, 0.022242244333028793, 0.03249199315905571, 0.004493494518101215, 0.01937704160809517, 0.011800500564277172, -0.015012777410447598, -0.014326014555990696, -0.01856474205851555, 0.029095102101564407, 0.039610691368579865, 0.011564195156097412, -0.030631085857748985, 0.00759869534522295, -0.035829804837703705, 0.008270688354969025, 0.0012756799114868045, 0.0010089132701978087, -0.010921739973127842, -0.028253262862563133, -0.024738220497965813, 0.01810690015554428, -0.0014076785882934928, 0.01358017511665821, -0.0010984508553519845, -0.0009996825829148293, 0.007314390502870083, -0.017309369519352913, 0.00017411369481123984, 0.03417566791176796, -0.015655232593417168, 0.037247639149427414, -0.00858083926141262, -0.008388841524720192, 0.01246510911732912, -0.005859635304659605, 0.002551359822973609, -0.03222614899277687, -0.028415722772479057, 0.048265375196933746, -0.011091584339737892, 0.0026639741845428944, -0.02491544932126999, 0.005220872350037098, -0.00027045889873988926, -0.01716167852282524, -0.009577753022313118, 0.0037605788093060255, -0.03636149317026138, 0.0008616839186288416, 0.014636165462434292, -0.0032362760975956917, -0.0022984391544014215, -0.01212542038410902, -0.020514262840151787, -0.02018934115767479, -0.0025236676447093487, -0.003127354197204113, 0.04554786533117294, -0.009917441755533218, -0.0006369168986566365, -0.03234430029988289, -0.009201141074299812, 0.011911268346011639, 0.022257015109062195, -0.022803470492362976, 0.011135892011225224, 0.06025787442922592, -0.019229350611567497, 0.03721809759736061, -0.041176214814186096, -0.018210284411907196, 0.003928577061742544, -0.02281823940575123, -0.005686098709702492, -0.020913027226924896, 0.01185219269245863, -0.01104727666825056, 0.004681800492107868, -0.019022583961486816, -0.02741142548620701, 0.017132140696048737, -0.0023058236110955477, 0.023276081308722496, 0.016526607796549797, 0.010271900333464146, 0.022655779495835304, -0.0036830410826951265, -0.01878627948462963, 0.015773385763168335, -0.016393685713410378, 0.016910605132579803, 0.025845902040600777, -0.012472493574023247, 0.004463956691324711, 0.0025864364579319954, -0.023896383121609688, 0.007391928229480982, -0.012199265882372856, -0.014953700825572014, -0.008063921704888344, 0.001613522763364017, -0.0010329129872843623, -0.01837274432182312, -0.011608502827584743, -0.006217785645276308, 0.0014667549403384328, -0.026835430413484573, -0.005926096346229315, -0.015182621777057648, 0.0007306082989089191, 0.04064452648162842, -0.01769336685538292, -0.0012046037008985877, -0.026702510192990303, -0.03875408321619034, 0.021666251122951508, 0.01795920915901661, -0.01144604291766882, -0.02667297050356865, -0.01135004311800003, 0.003991345874965191, 0.013100179843604565, -0.03190122917294502, 0.009836211800575256, 0.009474369697272778, -0.01729460060596466, -0.014458936639130116, 0.001417832332663238, 0.01877151057124138, 0.04271220043301582, 0.0018885970348492265, -0.010862663388252258, 0.02148902229964733, -0.016467532142996788, 0.011999883688986301, -0.0024165918584913015, 0.002126748440787196, -0.011770962737500668, -0.0026639741845428944, 0.0018442897126078606, 0.02741142548620701, -0.028400953859090805, -0.019332734867930412, 0.01111373770982027, 0.003053508698940277, 0.005881789140403271, 0.019687192514538765, 0.010109440423548222, 0.016659529879689217, -0.018357975408434868, -0.023822536692023277, 0.01222880370914936, -0.023955458775162697, -0.007591310888528824, -0.007236852776259184, 0.005955634173005819, 0.021858248859643936, 0.03506181389093399, -0.028282802551984787, -0.0029113562777638435, 0.026244668290019035, 0.019332734867930412, -0.003252891357988119, -0.0151973906904459, 0.012406033463776112, 0.008182073943316936, -0.015315542928874493, 0.02763296104967594, 0.02984832413494587, 0.008499609306454659, 0.01803305558860302, -0.0007398389279842377, 0.013860788196325302, -0.030837854370474815, -0.011697117239236832, -0.018047824501991272, -0.0022172091994434595, -0.0022467472590506077, 0.0239849966019392, -0.004127959720790386, 0.005409178324043751, 0.022330859676003456, -0.014547551050782204, 0.029154177755117416, 0.003895346773788333, 0.004637493286281824, -0.026170821860432625, 0.04353926703333855, 0.00867683906108141, -0.038399625569581985, -0.017250293865799904, -0.00787192303687334, -0.010663281194865704, 0.007894077338278294, -0.03633195534348488, 0.044011879712343216, -0.027810191735625267, 0.018284128978848457, -0.0179001335054636, -0.01736844703555107, -0.023660076782107353, 0.001222141901962459, 0.01897827722132206, -0.016053996980190277, -0.0014482935657724738, 0.2646620273590088, -0.012723568826913834, 0.006107017397880554, 0.015507541596889496, 0.010006056167185307, 0.040349144488573074, -0.006745780352503061, -0.006978393532335758, -0.008019614033401012, -0.021444713696837425, 0.008211612701416016, -0.00783500075340271, -0.009341447614133358, 0.003385813208296895, 7.499926869058982e-05, -0.006081171799451113, -0.03709994629025459, -0.022242244333028793, -0.015034930780529976, -0.009585137479007244, 0.014473705552518368, -9.19029553188011e-05, 0.01104727666825056, -0.014237400144338608, 0.00489595253020525, 0.005867019761353731, -0.003035047324374318, 0.005689790938049555, 0.017663829028606415, 0.008152536116540432, -0.030306166037917137, 0.024472376331686974, -0.0010209131287410855, 0.017397984862327576, -0.021533329039812088, -0.016703836619853973, 0.007953152991831303, 0.02329085022211075, 0.028888333588838577, 0.005615945439785719, 0.005124873016029596, -0.0253289844840765, 0.0035390425473451614, -0.005346409510821104, -0.05030351132154465, 0.021503791213035583, 0.008669453673064709, 0.011793116107583046, 0.0005556868854910135, 0.02661389485001564, -0.032314762473106384, -0.021917324513196945, 0.030956005677580833, 0.020248418673872948, -0.0337916724383831, 0.003906423691660166, 0.04734969139099121, 0.0035888880956918, 0.03707040846347809, 0.007502696011215448, -0.018668126314878464, 0.013255255296826363, -0.018948739394545555, 0.04566601663827896, -0.04005376249551773, 0.0006692242459394038, -0.03258060663938522, -0.006450398825109005, 0.020351801067590714, -0.03996514901518822, -0.00601101852953434, -0.007908846251666546, -0.0168810673058033, -0.009644214063882828, -0.017442291602492332, -0.03523904085159302, 4.531686499831267e-05, 0.004035653080791235, 0.01327002514153719, 0.014990623109042645, -0.011342658661305904, 0.0035611961502581835, 0.006018402986228466, -0.009850980713963509, -0.028548644855618477, -0.014813394285738468, 0.007849769666790962, -0.017265062779188156, -0.02540282905101776, 0.00022303628793451935, 0.010663281194865704, -0.016600454226136208, 0.011357427574694157, 0.022670548409223557, -0.007329159416258335, -0.002111979527398944, 0.004630108829587698, 0.013447253964841366, -0.016940142959356308, -0.02283300831913948, -0.02020411193370819, -0.019022583961486816, 0.010486051440238953, 0.014924162067472935, -0.004360572900623083, 0.011866961605846882, -0.0031919688917696476, 0.005612253211438656, 0.005859635304659605, -0.040555913001298904, 0.0019809037912636995, -0.029301868751645088, -0.008506993763148785, 0.015315542928874493, -0.007997460663318634, 0.006435629911720753, -0.03334859758615494, 0.007340236101299524, -0.023128390312194824, 0.008351918309926987, 0.04241681843996048, 0.004031960852444172, 0.009924826212227345, 0.016836758702993393, 0.0005547638284042478, -0.01438509114086628, -0.03972884267568588, -0.015625694766640663, 0.03134000301361084, -0.03996514901518822, 0.006302707828581333, -0.024826835840940475, 0.020558569580316544, 0.005209795664995909, -0.004530417267233133, 0.00393596151843667, 0.001465831883251667, -0.024679144844412804, 0.0032067380379885435, -0.008381457068026066, 0.012826952151954174, 0.03600703552365303, 0.004201805219054222, -0.013055873103439808, 0.00648362934589386, -0.0199234988540411, 0.00553840771317482, 0.010862663388252258, 0.0016781375743448734, -0.011874346062541008, -0.03128092736005783, -0.0036793488543480635, -0.004988259170204401, 0.003563042264431715, 0.013978940434753895, -0.014111862517893314, -0.02215363085269928, -0.023054545745253563, 0.013624482788145542, 0.000527994881849736, -0.05780620500445366, 0.01496108528226614, -0.009274986572563648, -0.026318512856960297, -0.017073065042495728, -0.01101035438477993, -0.1897532343864441, -0.009068218991160393, 0.039079003036022186, -0.03181261196732521, 0.03432335704565048, -0.02255239523947239, 0.02268531732261181, -0.017855826765298843, -0.005313178990036249, -0.0018692126031965017, 0.015057084150612354, -0.006646089255809784, -0.012849105522036552, 0.007945768535137177, -0.03207845613360405, 0.0037051946856081486, -0.007004239596426487, 0.005272564012557268, 0.03275783360004425, 0.012450340203940868, 0.038606394082307816, -0.029892632737755775, 0.0006383014842867851, 0.013196179643273354, 0.0015424465527758002, 0.004017191473394632, -0.011593732982873917, -0.020115496590733528, 0.02620035968720913, -0.013705712743103504, -0.009681136347353458, -0.014473705552518368, 0.024398531764745712, -0.015655232593417168, 0.02140040695667267, 0.004430726170539856, -0.017870595678687096, 0.010353130288422108, -0.022065015509724617, 0.015965383499860764, -0.01195557601749897, 0.03328952193260193, 0.016452763229608536, 0.0024756682105362415, -0.03571165353059769, 0.02046995423734188, -0.007857154123485088, 0.00611440185457468, -0.012140189297497272, 0.009924826212227345, 0.01959857903420925, -0.04469125717878342, 0.009378369897603989, 0.003227045526728034, 0.05452746897935867, 0.017870595678687096, 0.01925889030098915, 0.023320388048887253, -0.007879307493567467, 0.008012229576706886, -0.008263303898274899, -0.04672939330339432, 0.0182398222386837, 0.011261428706347942, -0.02126748487353325, 0.0029630481731146574, -0.01364663615822792, 0.02593451738357544, -0.042446356266736984, 0.019628116860985756, -0.003049816470593214, -0.013964171521365643, 0.012930335476994514, -0.019303197041153908, 0.026096977293491364, -0.005844866391271353, 0.011475580744445324, 0.0344710499048233, 0.026111746206879616, -0.02857818268239498, -0.034884583204984665, 0.04070360213518143, -0.002647358924150467, 0.006354399491101503, 0.02039610967040062, 0.009806673973798752, 0.005900250282138586, -0.015241697430610657, -0.006937778554856777, -0.01208849810063839, 0.032994139939546585, -0.0391971580684185, 0.009843596257269382, -0.00830761156976223, 0.020218880847096443, 0.011830038391053677, -0.014577088877558708, -0.00028661260148510337, 0.01897827722132206, -0.008588223718106747, -0.007923615165054798, -0.012243573553860188, -0.013284794054925442, 0.0030701239593327045, 0.03331905975937843, 0.04061498865485191, -0.013181409798562527, 0.014540166594088078, 0.03343721479177475, 0.012753106653690338, -0.009969133883714676, -0.010493435896933079, 0.0168810673058033, 0.03458920121192932, 0.010242361575365067, 0.011571579612791538, 0.005390716716647148, -0.024959757924079895, 0.009238064289093018, 0.015020161867141724, 0.010426975786685944, -0.030276628211140633, -0.021223178133368492, 0.0092897554859519, -0.01175619289278984, -0.006513167172670364, -0.050421662628650665, -0.022316090762615204, -0.0022430550307035446, 0.010892202146351337, -0.007096546236425638, -0.0018027516780421138, -0.010796202346682549, 0.02640712819993496, -0.011903883889317513, 0.021503791213035583, 0.00371442548930645, -0.009511291980743408, -0.029479097574949265, -0.007798078004270792, 0.0131740253418684, 5.085527300252579e-05, 0.011468196287751198, -0.006934086326509714, 0.014067555777728558, 0.029907401651144028, 0.013764789327979088, -0.013388177379965782, 0.00965898297727108, -0.016511838883161545, 0.01290079765021801, -0.001908904523588717, -0.018549973145127296, 0.05432070046663284, -0.003053508698940277, -0.003430120414122939, 0.04377557337284088, -0.018062593415379524, 0.03086739219725132, -0.0014704472851008177, 0.006775318644940853, 0.0249892957508564, -0.022065015509724617, -0.0021322870161384344, 0.01829889975488186, -0.020026881247758865, -0.000481841474538669, 0.013100179843604565, -0.0189191997051239, 0.008787606842815876, 0.006671934854239225, -0.05313917621970177, 0.009607290849089622, 0.028120342642068863, 0.004227651283144951, -0.019642885774374008, -0.02727850340306759, -0.005320563446730375, -0.0036461183335632086, -0.0035759652964770794, 0.021326562389731407, 0.008455302566289902, 0.01411924697458744, 0.02005642093718052, -0.03574119135737419, 0.024280378594994545, -0.007236852776259184, -0.008758069016039371, -0.01188911497592926, 0.02831234037876129, 0.010116824880242348, 0.0036165802739560604, -0.01394940260797739, -0.02013026550412178, 0.021164102479815483, -0.01050082128494978, 0.0037088869139552116, 0.03390982374548912, -0.00771684804931283, 0.029907401651144028, -0.04838353022933006, -0.006413476075977087, -0.009910057298839092, -0.016024459153413773, 0.016659529879689217, -0.007000547368079424, -0.005811635870486498, 0.015418927185237408, -0.0011399888899177313, -0.021193640306591988, 0.018801048398017883, -0.012538954615592957, 0.001347679179161787, 0.023999767377972603, 0.029434790834784508, -0.01543369609862566, 0.0028375107795000076, -0.010375283658504486, 0.013462022878229618, -0.06657904386520386, -0.02243424393236637, 0.02538806013762951, -0.0003770732437260449, -0.003939653746783733, -0.010515590198338032, -0.002783973002806306, -0.017265062779188156, -0.045282021164894104, -0.07130515575408936, 0.0206028763204813, -0.006302707828581333, 0.004135344177484512, 0.018062593415379524, -0.005608560983091593, 0.0089500667527318, 0.0004906106041744351, -0.0002695358416531235, -0.020499492064118385, 0.0002163440512958914, 0.016098305583000183, -0.0036424261052161455, -0.02417699620127678, -0.009178987704217434, -0.046611238270998, 0.012442955747246742, 0.01606876589357853, -0.018269360065460205, 0.010899586603045464, 0.012516801245510578, 0.00013522944936994463, 0.012620184570550919, 0.015182621777057648, 0.004076268058270216, 0.0002794588217511773, 0.021297022700309753, 0.023143159225583076, 0.010855278931558132, -0.012590646743774414, -0.011726655066013336, -0.020780105143785477, -0.014946316368877888, 0.0344710499048233, 0.032994139939546585, 0.00665347371250391, -0.012450340203940868, -0.0003918423317372799, 0.012760491110384464, -0.0010790664236992598, 0.002219055313616991, -0.022729624062776566, 0.022478550672531128, -0.0092897554859519, -0.007476850412786007, 0.009496523067355156, -0.020573338493704796, 0.003755040466785431, 0.01999734342098236, 0.013210948556661606, -0.0007379928138107061, 0.021651482209563255, -0.004692877642810345, -0.008263303898274899, -0.018549973145127296, -0.038399625569581985, 0.018697664141654968, -0.017604751512408257, -0.019199812784790993, 0.0011510656913742423, 0.022847777232527733, 0.022257015109062195, -0.0013052180875092745, -0.002145209815353155, -0.022670548409223557, -0.005062104668468237, -0.021518560126423836, 0.0034467356745153666, 0.001421524677425623, -0.024767758324742317, -0.008905759081244469, 0.0028744335286319256, -0.002961202058941126, -0.005099027417600155, -0.004393803421407938, 0.015463233925402164, -0.006948855239897966, 0.012627569027245045, -0.025845902040600777, 0.007454696577042341, 0.01959857903420925, -0.026510510593652725, -0.035150427371263504, -0.0016264456789940596, 0.044218648225069046, -0.003156892256811261, -0.011830038391053677, 0.014606626704335213, -0.006287938915193081, 0.012553724460303783, -0.024738220497965813, 0.010582051239907742, 0.006989470217376947, -0.002348284935578704, 0.0029002793598920107, 0.046434011310338974, -0.003987653646618128, -0.008078690618276596, 0.0001932673476403579, 0.012989412061870098, 0.013639251701533794, -0.0013246025191619992, 0.01236172579228878, -0.01897827722132206, -0.008728530257940292, 0.003817809047177434, 0.0031808922067284584, -0.008573454804718494, 0.0009701444068923593, -0.012132804840803146, 0.0002669974055606872, 0.008026998490095139, -0.02302500605583191, 0.023748692125082016, 0.009607290849089622, 0.012147573754191399, 0.007011624053120613, -0.019967805594205856, -0.025151755660772324, 0.03899038955569267, 0.023409003391861916, 0.025978824123740196, 0.026126515120267868, -0.002846741583198309, 0.020514262840151787, -0.018801048398017883, 0.02538806013762951, 0.00021219023619778454, 0.0287111047655344, 0.015374619513750076, -0.0014390628784894943, 0.031576309353113174, -0.02939048409461975, -0.04613862931728363, -0.00033830440952442586, 0.004397495649755001, 0.012346956878900528, -0.005963019095361233, -0.010958662256598473, 0.08052106201648712, 0.007004239596426487, -0.020218880847096443, 0.003684887196868658, 0.0033618134912103415, 0.01736844703555107, 0.031221849843859673, 0.007166699506342411, 0.005039950832724571, -0.038399625569581985, 0.007849769666790962, 0.008314996026456356, -0.002543975133448839, -0.03479596972465515, 0.011763578280806541, -0.012051574885845184, -0.027544347569346428, 0.02788403630256653, 0.003899039002135396, 0.011150660924613476, 0.026288975030183792, 0.003791963215917349, 0.019761038944125175, 0.00694147078320384, -0.014377706684172153, -0.022005939856171608, 0.028666798025369644, -0.010899586603045464, -0.018343206495046616, 0.007332851644605398, 0.005357486195862293, -0.023541925475001335, -0.042328204959630966, -0.03972884267568588, 0.016718607395887375, 0.009023912250995636, 0.0034430434461683035, 0.006723626982420683, 0.03045385703444481, -0.00454149441793561, -0.002462745178490877, 0.029552944004535675, -0.013690943829715252, -0.030719701200723648, -0.0253289844840765, 0.005553176626563072, 0.01680722087621689, 0.020839182659983635, -0.0324329137802124], "be92606c-f3e3-4dc0-8a4f-c9095ab46d10": [-0.018102072179317474, -0.010312959551811218, -0.029343342408537865, 0.00965298805385828, -0.015186593867838383, 0.03379633650183678, -0.02985101379454136, -0.028806664049625397, -0.010182416066527367, -0.01792801357805729, -0.010965678840875626, 0.029125770553946495, 0.004213663283735514, -0.0007352153770625591, 0.010798872448503971, -0.009703755378723145, 0.002561921952292323, -0.0065126847475767136, 0.013569301925599575, -0.03576899692416191, 0.0049207755364477634, 0.015360652469098568, -0.009972095489501953, -0.019712112843990326, 0.003843789454549551, 0.005392184015363455, 0.040468573570251465, -0.015143079683184624, 0.015360652469098568, -0.016085896641016006, 0.032200802117586136, -0.008724676445126534, -0.017057722434401512, -0.022221453487873077, -0.010254940018057823, -0.03568197041749954, -0.0017396772745996714, 0.019480034708976746, 0.019247956573963165, -0.013141408562660217, 0.030692296102643013, -0.00516373198479414, -0.004039605148136616, 0.002572800498455763, -0.026616428047418594, 0.007314078509807587, 0.003123985370621085, 0.00022278567485045642, -0.010211425833404064, 0.002231936203315854, 0.00343584013171494, 0.012031786143779755, -0.0296479444950819, 0.001200277591124177, 0.015839314088225365, -0.014555633068084717, 0.02950289659202099, 0.014352564699947834, -0.024165106937289238, -0.012981854379177094, 0.02860359475016594, 0.00897851213812828, -0.024237630888819695, 0.008296783082187176, 0.01533164270222187, -0.010196920484304428, 0.0010679207043722272, -0.017115741968154907, -0.02431015484035015, 0.016637081280350685, -0.0016499285120517015, 0.019363995641469955, -0.01681113988161087, 0.0062334658578038216, 0.03214278072118759, -0.015404167585074902, -0.0022972081787884235, 0.007890647277235985, 0.012459679506719112, 0.015984361991286278, 0.016492031514644623, -0.012829553335905075, -0.0019581569358706474, 0.00041406857781112194, 0.017318809404969215, -0.0015493009705096483, -0.012967349961400032, 0.02883567288517952, 0.0068753063678741455, -0.03521781414747238, -0.005482839420437813, 0.01237265020608902, -0.03904709964990616, -0.009080045856535435, 0.009790784679353237, -0.002969871275126934, -0.028240973129868507, 0.03109843283891678, -0.014664418995380402, -0.030605265870690346, 0.015404167585074902, -0.005881723016500473, -0.02600722387433052, 0.005410315003246069, -0.021829823032021523, -0.009203337132930756, -0.0019781009759753942, -0.014272787608206272, 0.00851435586810112, -0.03539187088608742, -0.01977013237774372, 0.018551724031567574, -0.010733600705862045, -0.017347820103168488, -0.030721304938197136, -0.01578129455447197, 0.055350568145513535, 0.011937504634261131, 0.0027232884895056486, -0.027733303606510162, 0.010588551871478558, 0.007118262816220522, 0.01589733362197876, -0.003767638932913542, 0.017449352890253067, 0.009072793647646904, -0.004463872406631708, -0.027544740587472916, 0.0005298808682709932, -0.00130634440574795, 0.06028222292661667, 0.01757989637553692, 0.013467768207192421, 0.005976004526019096, 0.022671105340123177, -0.0008485346334055066, -0.026717962697148323, -0.0015764975687488914, -0.01430179737508297, -0.02406357228755951, 0.02045186050236225, 0.005693159997463226, 0.0028393275570124388, 0.0035192430950701237, 0.00689343735575676, 0.0029082256369292736, 0.0013226624578237534, 0.03043120726943016, -0.020074734464287758, 0.0005339603521861136, 0.01004461944103241, -0.022337492555379868, -0.009036531671881676, -0.017913509160280228, -0.011734436266124249, 0.012249358929693699, -0.003785769920796156, 1.9108460037386976e-05, 0.004895392339676619, -0.013213932514190674, -0.011277533136308193, 0.018827315419912338, 0.03791571781039238, -0.03971432149410248, 0.018145587295293808, 0.04583537578582764, -0.007745598442852497, 0.017217274755239487, -0.021728288382291794, -0.02486133947968483, -0.016753120347857475, 0.003595393616706133, -0.004899018444120884, 0.02293219231069088, -0.006592461373656988, 0.011175999417901039, -0.0017161068972200155, 0.006625097244977951, 6.957802543183789e-05, 0.009718259796500206, -0.009464425034821033, 0.009101803414523602, 0.022439027205109596, 0.020756462588906288, 0.017782965674996376, -0.02928532287478447, -0.00638576690107584, 0.009167075157165527, 0.01988617144525051, -0.0024096209090203047, -0.010247687809169292, 0.02567361295223236, 0.003310735570266843, 0.015578225255012512, -0.5356356501579285, -0.01998770423233509, -0.005689533427357674, 0.009950337931513786, 0.017753954976797104, 0.04055560380220413, 0.01248868927359581, 0.03327416256070137, -0.024803319945931435, 0.028763148933649063, -0.02825547754764557, 0.0255285631865263, -0.013997195288538933, -0.002846579998731613, -0.015085060149431229, -0.0046488093212246895, 0.0188418198376894, -0.015201099216938019, 0.007230675313621759, 0.02088700607419014, -0.014359816908836365, 0.029589926823973656, -0.013670835644006729, 0.006625097244977951, 0.016216440126299858, -0.03565296158194542, -0.021510716527700424, -0.004028726369142532, -0.0071146367117762566, 0.02670345827937126, -0.02576064132153988, 0.025456039234995842, -0.005486465524882078, -0.00964573584496975, 0.07275640964508057, -0.02555757388472557, -0.03486969694495201, 0.007332209497690201, -0.014620904810726643, 0.03666830062866211, -0.019015878438949585, -0.03777066990733147, 0.024092581123113632, 0.006773772183805704, 0.011952009052038193, -0.02396203763782978, 0.003283538855612278, -0.04197708144783974, 0.015186593867838383, -0.002518407301977277, -0.011321047320961952, -0.01027669757604599, 0.005928863771259785, -0.007350340485572815, -0.005664150230586529, 0.01418575830757618, 0.020277801901102066, -0.012742524035274982, 0.00561700901016593, -0.03339020162820816, -0.028676118701696396, -0.01599886640906334, 0.009689250029623508, 0.0006631443393416703, -0.0036515998654067516, -0.015505701303482056, -0.0064038983546197414, 0.0028737764805555344, -0.0010715469252318144, -0.018595237284898758, -0.030692296102643013, 0.010624813847243786, -0.022090910002589226, 0.019030382856726646, 0.030228139832615852, 0.0241796113550663, 0.04893941804766655, -0.028574585914611816, -0.0209015104919672, 0.006353131029754877, 0.027965381741523743, -0.014998030848801136, -0.021974870935082436, -0.004982421174645424, 0.036407213658094406, -0.0008421887760050595, -0.04464597627520561, -0.005033188499510288, 0.012670000083744526, -0.00937739573419094, 0.0223810076713562, 0.003595393616706133, 0.029792994260787964, -0.022090910002589226, 0.009870560839772224, -0.012242106720805168, -0.021510716527700424, 0.01965409331023693, 0.011995524168014526, -0.0030043201986700296, -0.04493607208132744, -0.003822032129392028, 0.01875479146838188, -0.0004976982017979026, 0.010516027919948101, -0.012757029384374619, -0.03965630382299423, -0.010864144191145897, 0.029705964028835297, -0.01860974170267582, -0.02053888887166977, -0.05537957698106766, -0.00011683216143865138, 0.009609473869204521, -0.0021702905651181936, -0.041832033544778824, 0.017202770337462425, 0.011110726743936539, 0.015853818506002426, -0.029705964028835297, 0.01862424798309803, -0.0023262177128344774, 0.034231483936309814, 0.028095925226807594, 0.03440554067492485, 0.005660523660480976, 0.030460217967629433, -0.01452662330120802, -0.010516027919948101, 0.010878649540245533, -0.02033582143485546, -0.023251298815011978, 0.029705964028835297, -0.010124396532773972, 0.007912403903901577, 0.00302426447160542, -0.018479198217391968, -0.0013135968474671245, 0.01579579897224903, 0.010943921282887459, -0.016999702900648117, -0.02336733788251877, 0.014367069117724895, -0.0005965125747025013, 0.005098460242152214, -0.023454368114471436, 0.008550617843866348, -0.007731093559414148, -0.014200263656675816, -0.01679663360118866, 0.00016510616114828736, -0.010777114890515804, -0.018870830535888672, 0.01566525548696518, -0.020640423521399498, -0.017507372424006462, -0.02304823137819767, -0.007089253049343824, 0.013177670538425446, -0.015418672002851963, 0.012292874045670033, 0.010487018153071404, -0.007687578909099102, 0.019712112843990326, 0.0021721036173403263, -0.04203509911894798, -0.0006386673776432872, -0.001856622751802206, -0.0072052921168506145, -0.022453531622886658, -0.01760890707373619, 0.0002531552454456687, -0.015070555731654167, -0.013714350759983063, 0.00579469371587038, -0.004159270320087671, -0.00319288345053792, 0.026761477813124657, -0.010856891982257366, 0.010632066056132317, -0.004587163683027029, -0.02088700607419014, 0.005656897556036711, 0.007089253049343824, -0.0017550888005644083, 0.01939300447702408, 0.03443454951047897, 0.01591183803975582, -0.007665821351110935, 0.02657291479408741, -0.02953190729022026, 0.0006255223415791988, 0.0021430938504636288, -0.010878649540245533, 0.027312662452459335, 0.01225661113858223, 0.05253662168979645, 0.02304823137819767, 0.010095386765897274, 0.046038445085287094, 0.025383515283465385, 0.00014368882693815976, 0.01576678827404976, -0.05714917182922363, 0.019726617261767387, -0.005867218133062124, -0.0002876042854040861, -0.020959530025720596, 0.0005461988621391356, 0.015476691536605358, -0.025978215038776398, -0.03019913099706173, -0.017086731269955635, 0.012220349162817001, 0.03193971514701843, 0.01670960523188114, 0.0008000339730642736, 0.01659356616437435, 0.019726617261767387, 0.003011572640389204, -0.003865546779707074, -0.016405003145337105, 0.0010488830739632249, -0.01804405264556408, 0.0006432001246139407, -0.02851656638085842, 0.01005187164992094, -0.00981254130601883, -0.009268608875572681, -0.017449352890253067, -0.018232615664601326, 0.003368755104020238, -0.005758431740105152, 0.002152159344404936, 0.0361461266875267, -0.014164001680910587, 0.03777066990733147, 0.010624813847243786, 0.007615054491907358, 0.015462187118828297, 0.00624797074124217, 0.019581569358706474, -0.00476484838873148, -0.0367843396961689, 0.003241837490350008, 0.038669973611831665, 0.027849342674016953, 0.012916582636535168, -0.0030641527846455574, 0.02996705286204815, -0.01850820891559124, 0.014033457264304161, -0.02374446578323841, 0.018653256818652153, -0.005243509076535702, -0.026979049667716026, 0.010661075823009014, 0.005134722217917442, 0.02815394476056099, 0.014367069117724895, 0.028342507779598236, 0.05430621653795242, -0.008536113426089287, 0.006023145280778408, 0.02860359475016594, -0.012155077420175076, 0.011379066854715347, -0.007256058976054192, 0.02928532287478447, 0.00519636832177639, -0.00024408969329670072, -0.02507891319692135, 0.01714475080370903, -3.680042937048711e-05, 0.022555066272616386, -0.006922447122633457, 0.02033582143485546, 0.005783815402537584, 0.021496210247278214, -0.01452662330120802, -0.003671544138342142, -0.04995475709438324, 0.04600943252444267, 0.004264430608600378, -0.0064038983546197414, -0.05018683522939682, -0.014388826675713062, -0.013344475999474525, 0.0017886311979964375, 0.034695640206336975, 0.0322878323495388, 0.025963708758354187, -0.006574330385774374, 0.014171253889799118, -0.007281442638486624, 0.00799943320453167, 0.01657906174659729, -0.004275308921933174, 0.011995524168014526, -0.00411938177421689, 0.01952354982495308, -0.016970692202448845, -0.004732212517410517, -0.010088133625686169, 0.04975168779492378, -0.0007705710013397038, -0.0032726603094488382, -0.01827613078057766, -0.011908494867384434, 0.004402226768434048, -0.0209015104919672, -0.02143819071352482, -0.012800543569028378, -0.024556737393140793, -0.012952844612300396, -0.0031675000209361315, 0.002603623317554593, -0.000713458051905036, 0.024223126471042633, -0.006019519176334143, -0.03330317139625549, -0.013982690870761871, -0.016724109649658203, -0.002077822107821703, -0.020959530025720596, 0.029604431241750717, -0.015375157818198204, -0.003673357190564275, -0.046821705996990204, 0.010726348496973515, -0.0024748926516622305, -0.03486969694495201, 0.01670960523188114, -0.04212212935090065, 0.024281146004796028, -0.04647358879446983, 0.011038202792406082, -0.0074700056575238705, 0.010211425833404064, -0.007687578909099102, -0.015085060149431229, -0.01225661113858223, 0.011284785345196724, -0.02303372696042061, 0.0227001141756773, -0.0018520900048315525, 0.01827613078057766, 0.014388826675713062, -0.038437895476818085, -0.007002223748713732, -0.025702621787786484, 0.014751448296010494, 0.01623094454407692, 7.609388558194041e-05, 0.014178506098687649, -0.008731928654015064, -0.015317138284444809, 0.01300361193716526, -0.015969857573509216, 0.017797470092773438, 0.010900406166911125, 0.03573998808860779, -0.002585492329671979, -0.015578225255012512, -0.0017949771136045456, 0.0094209099188447, -0.0004539569781627506, -0.020843492820858955, 0.007038486190140247, 0.0013054378796368837, -0.0050767031498253345, 0.01726078987121582, 0.003880051663145423, -0.034695640206336975, 0.014911001548171043, -0.003640721319243312, -0.037422552704811096, -0.014519370160996914, -0.008217005990445614, 0.03710344806313515, -0.030866354703903198, -0.0049860477447509766, 0.007665821351110935, 0.024440698325634003, 0.021510716527700424, -0.02169927954673767, 0.010095386765897274, -0.01962508261203766, 0.010748105123639107, -0.019451024010777473, -0.02146720141172409, -0.022990211844444275, -0.05485740303993225, -0.016492031514644623, 0.009051036089658737, -0.006393019575625658, -0.02851656638085842, -0.005736674182116985, 0.012807796709239483, 0.013286457397043705, 0.028806664049625397, -0.007169029675424099, -0.009827046655118465, 0.027834836393594742, 0.00405773613601923, -0.02190234698355198, -0.020016714930534363, 0.0038365370128303766, -0.004924402106553316, 0.004811989143490791, 0.023802485316991806, 0.010733600705862045, -0.0027939998544752598, 0.010740852914750576, 0.02567361295223236, 0.03518880531191826, 0.0290677510201931, -0.015404167585074902, -0.03217179328203201, -0.013649079017341137, -0.005624261684715748, 0.030837344005703926, -0.025920195505023003, 0.022090910002589226, 0.009072793647646904, -0.024092581123113632, 0.013170418329536915, 0.004982421174645424, -0.023207785561680794, -0.008151734247803688, 0.04072966426610947, 0.004075867123901844, 0.017072226852178574, 0.008898735046386719, 0.01066832896322012, -0.012343640439212322, -0.004750343505293131, -0.02950289659202099, -0.009798036888241768, 0.012162329629063606, -0.013670835644006729, 0.03426049277186394, -0.02259858138859272, 0.006461917422711849, 0.009507939219474792, -0.007571539841592312, 0.023439863696694374, 0.012844058685004711, 0.0115748830139637, -0.010711843147873878, -0.021496210247278214, -0.03257792815566063, -0.00106429448351264, 0.01701420731842518, -0.022192444652318954, 0.004206411074846983, 0.00624797074124217, -0.02873413823544979, -0.07188611477613449, -0.007248806767165661, -0.022163433954119682, 0.008949502371251583, 0.003075031563639641, -0.01757989637553692, -0.01379412692040205, 0.00097998499404639, 0.036407213658094406, -0.022903183475136757, 0.0011603892780840397, -0.021032055839896202, -0.0017342380015179515, 0.03463761880993843, 0.02339634858071804, 0.003026077523827553, 0.012387155555188656, -0.003977959509938955, -0.03710344806313515, -0.021293142810463905, 0.025020893663167953, -0.024904854595661163, -0.0016453956486657262, 0.02213442511856556, -0.0026416985783725977, 0.03463761880993843, 0.033883366733789444, -0.02338184416294098, -0.0017650608206167817, -0.008891482837498188, 0.015433177351951599, -0.00604852894321084, -0.008724676445126534, -0.0004324263136368245, -0.03460860997438431, 0.019044889137148857, 0.010196920484304428, 0.02008923888206482, 0.008971258997917175, 0.00746275344863534, 0.0024440698325634003, 0.033767327666282654, -0.006309616379439831, 0.02542703039944172, 0.008217005990445614, -0.05395809933543205, -0.022526055574417114, -0.025281980633735657, 0.004452993627637625, -0.010465260595083237, -0.015824807807803154, -0.016724109649658203, 0.013025369495153427, 0.023120755329728127, 0.005537232384085655, 0.026021728292107582, 0.002141280798241496, -0.011117979884147644, -0.004141139332205057, -0.018682267516851425, 0.037625622004270554, -0.025586582720279694, 0.0032527160365134478, -0.0024295649491250515, -0.004278935492038727, 0.022642094641923904, -0.03634919226169586, 0.010421746410429478, 0.018928850069642067, 0.006338626146316528, -0.002567361108958721, 0.003082284005358815, -0.008579627610743046, -0.02043735608458519, -3.1049479730427265e-05, -0.019915180280804634, -0.01414224412292242, -0.03330317139625549, -0.0009790784679353237, -0.033535249531269073, 0.021481705829501152, 0.010856891982257366, -0.029009731486439705, -0.006918821018189192, -0.030721304938197136, -0.029140274971723557, -0.022395512089133263, -0.024788815528154373, 0.018696771934628487, 0.018464693799614906, 0.030866354703903198, 0.033999405801296234, -0.00044829101534560323, 0.001865688362158835, -0.03716146573424339, -0.01840667426586151, 0.011524115689098835, 0.025369010865688324, 0.02441168949007988, 0.010661075823009014, 0.007781860418617725, 0.005174610763788223, -0.007499015424400568, -0.015143079683184624, -0.022293979302048683, 0.03620414435863495, 0.035710979253053665, 0.006654107011854649, -0.02554306760430336, 0.014736943878233433, -0.032200802117586136, 0.009594968520104885, -0.017913509160280228, 0.001166735077276826, -0.012851310893893242, -0.02963344007730484, -0.022090910002589226, 0.017782965674996376, -0.007629559375345707, 0.011009193025529385, 0.0015103191835805774, -0.014548379927873611, 0.001376149128191173, -0.02008923888206482, 0.001200277591124177, 0.01872578077018261, -0.006432908121496439, 0.034579601138830185, -0.013366233557462692, -0.009848804213106632, 0.037625622004270554, -0.01965409331023693, 0.0028157569468021393, -0.03840888291597366, -0.01998770423233509, 0.042528264224529266, -0.03121447004377842, -0.005747552961111069, -0.022961203008890152, -0.0016064138617366552, -0.007299573626369238, -0.008753686212003231, -0.01237990241497755, -0.004032352473586798, -0.021887842565774918, -0.007803617510944605, 0.02474530041217804, 0.008993016555905342, -0.0072052921168506145, -0.0035736362915486097, -0.013728855177760124, -0.01515758503228426, 0.0038111533503979445, 0.01668059639632702, 0.042731333523988724, -0.009856056421995163, -0.02657291479408741, -0.025354504585266113, -0.011509611271321774, 0.024237630888819695, 0.01232913602143526, -0.017753954976797104, 0.005917984992265701, 0.061384592205286026, -0.02645687572658062, 0.03341921046376228, -0.042615294456481934, -0.004014221485704184, 0.006828165613114834, -0.027443205937743187, -0.004859129898250103, -0.02782033197581768, 0.010262192226946354, -0.01874028705060482, -0.0004485176468733698, -0.025267476215958595, -0.02169927954673767, 0.011371814645826817, -0.006668611895292997, 0.018696771934628487, 0.01862424798309803, 0.015940846875309944, 0.011342804878950119, -0.01579579897224903, -0.014954516664147377, 0.01299635972827673, -0.000577474944293499, 0.023454368114471436, 0.025499554350972176, -0.019218947738409042, 0.0050694504752755165, 0.008818957954645157, -0.01985716074705124, 0.004833746701478958, -0.012068048119544983, -0.022279473021626472, -0.005983257200568914, 0.010262192226946354, -0.010189668275415897, -0.0017487428849563003, -0.017115741968154907, 0.003265407867729664, 0.002734167268499732, -0.015940846875309944, 0.0021485332399606705, -0.020611414685845375, 0.0024295649491250515, 0.05352295562624931, -0.022235959768295288, -0.00012215816241223365, -0.03066328540444374, -0.04209312051534653, 0.010356473736464977, 0.018232615664601326, -0.01481672003865242, -0.02509341761469841, -0.013083389028906822, 0.015969857573509216, 0.020480871200561523, -0.03170763701200485, 0.002046999055892229, 0.007219797000288963, -0.020176267251372337, -0.021742792800068855, 0.005131096113473177, 0.014519370160996914, 0.05244959518313408, -0.003774891374632716, -0.011422581970691681, 0.015520206652581692, -0.010312959551811218, 0.011277533136308193, -0.0015810303157195449, 0.002386050298810005, -0.006781024858355522, 0.0016191055765375495, -0.00783262774348259, 0.029430372640490532, -0.035827018320560455, -0.007212544325739145, 0.015375157818198204, -0.0020723827183246613, 0.010399988852441311, 0.01998770423233509, 0.01670960523188114, 0.006226213648915291, -0.022424522787332535, -0.027646273374557495, 0.014867487363517284, -0.016985198482871056, -0.0046560619957745075, -0.0189723651856184, -0.00010300720896339044, 0.025470543652772903, 0.02576064132153988, -0.02679048664867878, -0.015636244788765907, 0.02893720753490925, 0.017768461257219315, 0.011038202792406082, -0.010900406166911125, 0.008702919818460941, -0.005537232384085655, -0.013540292158722878, 0.021887842565774918, 0.026413360610604286, 0.0010561355156823993, 0.013953681103885174, 0.007314078509807587, 0.004322450142353773, -0.03881502151489258, 0.004583537578582764, -0.003785769920796156, -0.0008974885568022728, -0.002204739488661289, 0.019001374021172523, -0.0032817258033901453, 0.0012601101770997047, 0.026137767359614372, -0.012133319862186909, 0.017173761501908302, 0.007241554092615843, -0.0028864683117717505, -0.03849591314792633, 0.028748644515872, 0.01772494614124298, -0.03811878710985184, -0.025296485051512718, -0.010109891183674335, -0.012568466365337372, -0.004514639265835285, -0.028748644515872, 0.03756760060787201, -0.02281615324318409, 0.013562049716711044, -0.015186593867838383, -0.011059960350394249, -0.029589926823973656, -0.003259968478232622, 0.01977013237774372, -0.008304035291075706, -0.006907942239195108, 0.25946304202079773, -0.010196920484304428, 0.0019291471689939499, 0.018305139616131783, 0.006389393471181393, 0.03930818662047386, -0.005685907322913408, -0.017637915909290314, 0.001018966780975461, -0.031968723982572556, -0.002754111308604479, -0.0024204994551837444, -0.01885632611811161, 0.005867218133062124, -0.011719931848347187, 6.334546924335882e-05, -0.040932729840278625, -0.016854653134942055, -0.02214892953634262, -0.00661784503608942, 0.013707097619771957, -0.0040541100315749645, -0.0025419776793569326, -0.004674192983657122, 0.014105982147157192, 0.011292037554085255, -0.011386319994926453, 0.0013906540116295218, 0.016492031514644623, -0.0017641542945057154, -0.02745771035552025, 0.019915180280804634, 0.01335172913968563, 0.02066943421959877, -0.019044889137148857, -0.013583806343376637, 0.022859668359160423, 0.01962508261203766, 0.030750315636396408, 0.0010661076521500945, 0.004184653516858816, -0.005776562727987766, 0.0035029251594096422, -0.0028012520633637905, -0.04174500331282616, 0.02316427044570446, 0.0007868889370001853, 0.01942201517522335, 0.0008698386372998357, 0.014657166786491871, -0.034695640206336975, -0.02451322227716446, 0.04310845956206322, 0.02737068198621273, -0.025615593418478966, -0.0016372366808354855, 0.04426885023713112, -0.0005190022056922317, 0.02737068198621273, 0.013823136687278748, -0.021873338147997856, 0.013300961814820766, -0.0192914716899395, 0.053638994693756104, -0.04043956473469734, 0.00258186599239707, -0.03054724633693695, 0.00954420119524002, 0.014620904810726643, -0.037741661071777344, -0.0007832627161405981, -0.00822425913065672, -0.011596639640629292, -0.012184087187051773, -0.025252971798181534, -0.025920195505023003, 0.007448248565196991, 0.0030006940942257643, 0.022322988137602806, 0.02020527794957161, -0.010682833380997181, 0.006606966257095337, 0.006171820219606161, -0.01515758503228426, -0.031156450510025024, -0.016434011980891228, 0.0104507552459836, -0.012191339395940304, -0.01311239879578352, 0.011748941615223885, 0.020016714930534363, -0.011545873247087002, 0.006269728299230337, 0.01963958889245987, -0.012873068451881409, 0.0017215462867170572, -0.0011758006876334548, 0.003774891374632716, -0.006073912605643272, -0.022308483719825745, -0.013997195288538933, -0.02077096700668335, 0.010777114890515804, 0.007031233515590429, -0.008449084125459194, 0.007484510540962219, -0.010943921282887459, 0.00965298805385828, 0.008173491805791855, -0.03904709964990616, 0.005704038310796022, -0.031852684915065765, -0.010414493270218372, 0.018928850069642067, 0.007031233515590429, 0.007201666012406349, -0.02261308580636978, 0.0032799127511680126, -0.023700950667262077, 0.00578744150698185, 0.037306513637304306, -0.0025020893663167953, 0.0044167316518723965, 0.013300961814820766, -0.002346161985769868, -0.008180744014680386, -0.028429536148905754, -0.024904854595661163, 0.03278099745512009, -0.034666627645492554, 0.009986599907279015, -0.024571241810917854, 0.022439027205109596, 0.002164851175621152, 0.006168194115161896, 0.0023987421300262213, 0.013097893446683884, -0.026195786893367767, 0.0001836905285017565, -0.007042112294584513, 0.016869159415364265, 0.030866354703903198, 0.002017989521846175, 0.007745598442852497, 0.012031786143779755, -0.013569301925599575, 0.0032255195546895266, 0.004877260886132717, -0.0015447682235389948, -0.009428163059055805, -0.03826383501291275, -0.004090372007340193, 0.000756066117901355, 0.00029984276625327766, 0.00965298805385828, -0.021844327449798584, -0.022105414420366287, -0.03109843283891678, 0.00286652403883636, 0.010632066056132317, -0.04725685343146324, 0.0087464340031147, -0.006218960974365473, -0.026717962697148323, -0.018116576597094536, -0.010690085589885712, -0.18601039052009583, 0.003898182651028037, 0.05288473889231682, -0.04186104238033295, 0.02985101379454136, -0.021989377215504646, 0.02384599857032299, -0.013591059483587742, 0.0002224457130068913, 0.010240435600280762, 0.0223810076713562, 0.0029191041830927134, -0.017086731269955635, 0.007285068742930889, -0.020379336550831795, 0.0009047409985214472, -0.011255775578320026, 0.005979630630463362, 0.03222981095314026, 0.0011712679406628013, 0.02497737854719162, -0.034666627645492554, -0.0007057523471303284, 0.022743629291653633, -0.008405569940805435, 0.0036896751262247562, -0.006284233182668686, -0.01804405264556408, 0.01691267266869545, -0.01579579897224903, -0.007687578909099102, -0.013924671337008476, 0.02291768789291382, -0.016492031514644623, 0.017173761501908302, -0.001853903173469007, -0.023991048336029053, 0.01316316518932581, -0.034666627645492554, 0.01998770423233509, -0.012082553468644619, 0.03307109326124191, 0.027428701519966125, 0.00048591301310807467, -0.03159159794449806, 0.031620606780052185, -0.007738345768302679, 0.004989673849195242, -0.017347820103168488, 0.0019762879237532616, 0.02193135768175125, -0.04293440282344818, -0.0001805175852496177, 0.0067846509627997875, 0.05941192805767059, 0.0192914716899395, 0.017565391957759857, 0.021191608160734177, -0.0059107327833771706, 0.005482839420437813, -0.011161494068801403, -0.038089778274297714, 0.024904854595661163, 0.005714917089790106, -0.023802485316991806, -0.006548946723341942, -0.016651585698127747, 0.017101235687732697, -0.04110679030418396, 0.01863875240087509, -0.00018652350991033018, -0.008253268897533417, 0.011386319994926453, -0.022410016506910324, 0.028531070798635483, -0.0027323539834469557, 0.0080066854134202, 0.025862175971269608, 0.029792994260787964, -0.033100102096796036, -0.037074435502290726, 0.0361461266875267, -0.0005294276052154601, 0.005036814603954554, 0.021264132112264633, 0.011248523369431496, 0.001281867502257228, -0.005345042794942856, 0.0009663866949267685, -0.0008444551494903862, 0.03985936939716339, -0.03872799128293991, 0.006088417489081621, -0.007433743681758642, 0.0192914716899395, 0.010414493270218372, -0.010806124657392502, -0.0016308908816426992, 0.022076405584812164, -0.01453387551009655, 0.007905151695013046, 0.0020796351600438356, -0.014047962613403797, 0.0025347252376377583, 0.03495672717690468, 0.038757000118494034, 0.0004063628730364144, 0.002989815315231681, 0.022206949070096016, 0.029328837990760803, -0.007636811584234238, -0.008064704947173595, 0.01997319981455803, 0.020379336550831795, 0.01185772754251957, 0.01130654290318489, -0.0007374817505478859, -0.020611414685845375, 0.009964842349290848, 0.008536113426089287, 0.017986033111810684, -0.024121591821312904, -0.022874172776937485, -0.001956343650817871, -0.001261016703210771, -0.01714475080370903, -0.05097009614109993, -0.01311965100467205, -0.006316869053989649, 0.011611144989728928, -0.015534711070358753, 0.004202784970402718, -0.01095842570066452, 0.022888677194714546, -0.00886247307062149, 0.015418672002851963, 0.004681445192545652, -0.030112100765109062, -0.02896621637046337, -0.003069592174142599, 0.022003881633281708, 0.004181027412414551, 0.012474184855818748, -0.012568466365337372, 0.010581299662590027, 0.02837151661515236, 0.01090765930712223, -0.019581569358706474, 0.0015112257096916437, -0.020974036306142807, 0.0010561355156823993, -0.004083119798451662, -0.027834836393594742, 0.035362862050533295, -0.002552856458351016, -0.006563451606780291, 0.0270080603659153, -0.030808335170149803, 0.03632018342614174, -0.00405773613601923, 0.0042861877009272575, 0.01829063519835472, -0.02928532287478447, 0.0018448375631123781, 0.02181531861424446, -0.0188418198376894, 0.007897899486124516, 0.012365397997200489, -0.00969650223851204, 0.015752283856272697, -0.0017333314754068851, -0.052391573786735535, 0.006193577777594328, 0.020756462588906288, 0.0066432286985218525, -0.02169927954673767, -0.030402198433876038, -0.008543365634977818, 0.007615054491907358, -0.0038836777675896883, 0.03109843283891678, 0.005743926856666803, 0.018261626362800598, 0.010530532337725163, -0.034550588577985764, 0.03530484437942505, -0.006625097244977951, -0.007934161461889744, -0.009130813181400299, 0.043891724199056625, 0.005323285702615976, 0.0017741264309734106, -0.019030382856726646, -0.02361392043530941, 0.021873338147997856, -0.012053543701767921, 0.004971542861312628, 0.027515729889273643, -0.004224542062729597, 0.02374446578323841, -0.05143425241112709, 0.0046560619957745075, -0.008731928654015064, -0.018537217751145363, 0.025717126205563545, -0.01837766543030739, -0.0018638751935213804, 0.0038111533503979445, 0.007422864902764559, -0.007694831117987633, 0.027312662452459335, -0.01849370449781418, 0.004177401307970285, 0.027051573619246483, 0.029575420543551445, -0.02825547754764557, -0.003209201619029045, -0.007397481705993414, 0.016738614067435265, -0.05790342390537262, -0.03089536353945732, 0.025354504585266113, -0.005178236868232489, -0.004293440375477076, -0.00312035926617682, -0.007194413337856531, -0.022685609757900238, -0.03170763701200485, -0.06921721994876862, 0.014911001548171043, 0.0015592731069773436, 0.00028103176737204194, 0.022322988137602806, -0.008521609008312225, 0.012263864278793335, 0.006168194115161896, 0.007890647277235985, -0.015839314088225365, -0.002132215304300189, 0.006683116778731346, 0.00360445911064744, -0.01988617144525051, -0.012778786942362785, -0.04397875443100929, 0.021844327449798584, 0.009711007587611675, -0.022293979302048683, 0.003789396258071065, 0.016085896641016006, -0.0013852146221324801, 0.013576554134488106, 0.006099295802414417, 0.006991345435380936, 0.006541694514453411, 0.016216440126299858, 0.02554306760430336, 0.010218678042292595, -0.00913806539028883, -0.011611144989728928, -0.02576064132153988, -0.020292306318879128, 0.042064111679792404, 0.036726318299770355, 0.012670000083744526, -0.010849639773368835, 0.0019998583011329174, 0.005888975225389004, -3.983172064181417e-05, 0.005540858488529921, -0.029459381476044655, 0.009036531671881676, 0.005363174248486757, -0.0015792172634974122, 0.01237990241497755, -0.018870830535888672, 0.004724959842860699, 0.013344475999474525, 0.012459679506719112, -0.0025002763140946627, 0.029227305203676224, -0.009979347698390484, -0.009007521905004978, -0.028008894994854927, -0.04815615341067314, 0.008543365634977818, -0.011560377664864063, -0.012822301127016544, -0.0027450458146631718, 0.030025072395801544, 0.01829063519835472, 0.003807527245953679, -0.001729705254547298, -0.022888677194714546, 0.014599147252738476, -0.03431851044297218, 0.014562885276973248, 0.0006577050080522895, -0.03281000629067421, -0.01827613078057766, 0.006160941906273365, 0.0039562019519507885, -0.0034666629508137703, -0.003051461186259985, 0.020509880036115646, -0.02181531861424446, 0.004431236535310745, -0.018870830535888672, 0.0027939998544752598, 0.0223810076713562, -0.010233182460069656, -0.052391573786735535, -0.0031330508645623922, 0.03710344806313515, -0.0038256582338362932, -0.005682281218469143, 0.008492599241435528, -0.007440995890647173, 0.011328300461173058, -0.02893720753490925, 0.025252971798181534, 0.007977675646543503, 0.004249925725162029, 0.005624261684715748, 0.0347246490418911, -0.012314630672335625, -0.012945592403411865, 0.0002857911749742925, 0.01647752709686756, 0.018566228449344635, -0.009522444568574429, 0.003332492895424366, -0.006447413004934788, -0.008180744014680386, 0.002277263905853033, 0.011016445234417915, -0.011096222326159477, 0.0064147766679525375, -0.014040710404515266, -0.005189115647226572, 0.011763446033000946, -0.02745771035552025, 0.021409181877970695, 0.00772384088486433, -0.000816351966932416, 0.012851310893893242, -0.03164961561560631, -0.025717126205563545, 0.031736645847558975, 0.02599271945655346, 0.025499554350972176, 0.01056679431349039, 0.0027105966582894325, 0.019233452156186104, -0.01351128239184618, 0.015520206652581692, -0.007230675313621759, 0.033100102096796036, 0.014852982014417648, -0.010711843147873878, 0.025354504585266113, -0.022221453487873077, -0.04125183820724487, -0.00890598725527525, 0.0019998583011329174, 0.005907106678932905, 0.00047820727922953665, -0.005791067611426115, 0.0717700719833374, 0.007143646478652954, -0.01988617144525051, -0.0004514639440458268, -0.010015609674155712, 0.025920195505023003, 0.036610279232263565, 0.017666926607489586, -0.0071073840372264385, -0.04186104238033295, -0.004634304437786341, 0.01181421335786581, 0.003967080730944872, -0.030286159366369247, 0.01158938743174076, -0.006008640397340059, -0.02757374942302704, 0.029343342408537865, 0.016840148717164993, 0.02110457979142666, 0.03170763701200485, -0.0037005539052188396, 0.021394677460193634, 0.006527189631015062, -0.00772384088486433, -0.020524384453892708, 0.02123512327671051, -0.0013643639395013452, -0.023236794397234917, 0.014570137485861778, -0.0023479750379920006, -0.015346148051321507, -0.031620606780052185, -0.025702621787786484, -0.0007755570113658905, 0.005548111163079739, -0.01039273664355278, 0.018827315419912338, 0.026500388979911804, -0.00476484838873148, 0.013997195288538933, 0.02145269699394703, -0.00930487085133791, -0.029691459611058235, -0.015288128517568111, 0.015592730604112148, 0.008637647144496441, 0.01875479146838188, -0.017884498462080956], "a80a896e-df16-444e-ba40-7e566075f3f7": [-0.00541337113827467, -0.009699690155684948, -0.02910611405968666, 0.00610369024798274, -0.015482875518500805, 0.02969781681895256, -0.025584077462553978, -0.010509759187698364, 0.0017196346307173371, -0.020160140469670296, -0.003927071578800678, 0.020146051421761513, -0.016130929812788963, -0.015806902199983597, 0.006751745007932186, -0.02072366699576378, 0.004381414037197828, 0.006755267269909382, 0.0071109929122030735, -0.038094352930784225, -0.0057761408388614655, 0.02593628130853176, -0.013679591938853264, -0.01653948612511158, -0.0034040489699691534, 0.006624951958656311, 0.02783818170428276, -0.01222851313650608, 0.028965232893824577, -0.026260308921337128, 0.03998216614127159, -0.003842542413622141, -0.01603231206536293, -0.011495929211378098, -0.007177911698818207, -0.024555642157793045, -0.0008426473941653967, 0.00957994069904089, -0.006177653092890978, 0.006307968404144049, 0.04733617976307869, -0.0073610576801002026, 0.01372890081256628, 0.006469982210546732, -0.025105079635977745, 0.01069994829595089, -0.0010390009265393019, -0.0006687467684969306, -0.001571709057316184, 0.01954026147723198, 0.003134612925350666, -0.0015884387539699674, -0.019976994022727013, -0.007375145796686411, 0.024851493537425995, -0.001762779545970261, 0.03736177086830139, 0.016863513737916946, -0.02847214788198471, -0.004839279223233461, 0.05401396006345749, 0.0039658136665821075, -0.02492193505167961, 0.01294700801372528, 0.02245650812983513, -0.01713118888437748, -0.012425746768712997, -0.019610702991485596, -0.026387102901935577, 0.017582008615136147, 0.004120783414691687, 0.021554866805672646, -0.008931886404752731, 0.0024566208012402058, 0.029472406953573227, -0.008664211258292198, -0.004402546212077141, -0.006001551169902086, -0.008262699469923973, 0.0035977608058601618, 0.015130671672523022, -0.004744184203445911, 0.004360281862318516, -0.008847356773912907, 0.00769917294383049, -0.0012600087793543935, -0.014292426407337189, 0.038432467728853226, -0.003758013481274247, -0.02407664619386196, -0.009375662542879581, 0.007452630437910557, -0.021723924204707146, -0.017441127449274063, -0.0009729627636261284, -0.0023104562424123287, -0.019004913046956062, 0.03200827166438103, -0.02047007903456688, -0.01915988139808178, 0.02258330211043358, -0.006639040075242519, -0.015595580451190472, -0.0012177443131804466, -0.03710818290710449, -0.013390785083174706, -0.008798048831522465, -0.01751156896352768, 0.01966705545783043, -0.017793331295251846, -0.007403322029858828, 0.014102236367762089, -0.009713778272271156, -0.019469821825623512, -0.016609927639365196, -0.034713197499513626, 0.04474395886063576, 0.012700465507805347, -0.005511987954378128, -0.04099651053547859, 0.015271552838385105, 0.01784968376159668, 0.0034868167713284492, -0.035981129854917526, 0.028613029047846794, 0.02183663100004196, 0.011643854901194572, -0.018342768773436546, -0.002764799166470766, -0.005568340886384249, 0.07241307944059372, 0.028204472735524178, 0.014292426407337189, 0.0006951621035113931, 0.037925295531749725, -0.016469044610857964, -0.021723924204707146, 0.011157813481986523, -0.016680367290973663, -0.012158072553575039, 0.016145018860697746, 0.016863513737916946, -0.0031117198523133993, 0.0007026463863439858, 0.018554091453552246, -0.010847873985767365, 0.013285123743116856, 0.04023575037717819, -0.041137393563985825, -0.0034392692614346743, 0.019554350525140762, -0.018976736813783646, 0.0036312201991677284, -0.012108763679862022, -0.01025617215782404, 0.007847098633646965, -0.006684826221317053, 0.008114773780107498, -0.004141915589570999, -0.03753082826733589, 0.010016673244535923, 0.009234781377017498, 0.019737495109438896, -0.02762685902416706, 0.017694713547825813, 0.03189556673169136, -0.010291391983628273, 0.03383973240852356, -0.001762779545970261, -0.00903050322085619, -0.027655035257339478, 0.009523588232696056, -0.009734910912811756, 0.0015426522586494684, 0.010833785869181156, 0.0058606695383787155, -0.00816408172249794, -0.004314495250582695, 0.00592406652867794, 0.00620935158804059, -0.00151447590906173, -0.011686119250953197, 0.027218302711844444, 0.02444293722510338, 0.027640948072075844, -0.014905260875821114, -0.012355306185781956, 0.004420156590640545, 0.03905234858393669, -0.0011270518880337477, 0.0032931047026067972, 0.031951919198036194, 0.009481323882937431, 0.010192775167524815, -0.5324193239212036, -0.018540004268288612, -0.01649722270667553, 0.014236073940992355, 0.030261343345046043, 0.022822801023721695, -0.004578648135066032, 0.027260567992925644, -0.013094933703541756, 0.030064107850193977, -0.016990307718515396, 0.024189351126551628, 0.009417926892638206, -0.012552539817988873, -0.01861044391989708, -0.003317758906632662, 0.024132998660206795, -0.010756301693618298, 0.0056387814693152905, 0.016173195093870163, -0.034121494740247726, 0.020751843228936195, -0.012876567430794239, 0.0073187933303415775, -0.0009148491662926972, -0.013285123743116856, -0.01080560963600874, -0.019385293126106262, -0.007628732360899448, 0.023583561182022095, -0.026725217700004578, 0.010728125460445881, -0.0004211035557091236, -0.00408204086124897, 0.07213132083415985, -0.02399211749434471, -0.04539201408624649, -0.009488368406891823, -0.017708802595734596, 0.028908880427479744, -0.020202405750751495, -0.03079669177532196, 0.022738272324204445, -0.002475992077961564, -0.0009923339821398258, -0.01987837813794613, -0.0033934826496988535, -0.04522295668721199, 0.0007413888233713806, -0.006307968404144049, -0.012249644845724106, -0.009368618950247765, 0.013475313782691956, -0.004219400230795145, 0.006776399444788694, -0.004046820569783449, 0.006617907900363207, -0.008699432015419006, -0.0002916686935350299, -0.03290991485118866, -0.026175780221819878, 0.004599780309945345, -0.005314753856509924, -0.000172469750395976, -0.003374111605808139, -0.007389233913272619, -0.016469044610857964, 0.0009148491662926972, -0.007029986009001732, -0.019554350525140762, -0.017441127449274063, 0.003715749131515622, -0.024668347090482712, 0.013207639567553997, 0.009002326987683773, 0.013630283996462822, 0.04975933954119682, -0.008558549918234348, -0.00010109347203979269, 0.02509099245071411, 0.02452746592462063, -0.028739823028445244, -0.015792815014719963, 0.011129637248814106, 0.024104822427034378, -0.008572638034820557, -0.039700403809547424, -0.02203386463224888, 0.012172160670161247, -0.011798824183642864, 0.037502650171518326, 0.01203127857297659, 0.027598682790994644, -0.02606307528913021, 0.03138839453458786, -0.0024918413255363703, -0.026119427755475044, 0.00475827232003212, 0.017229804769158363, -0.008347228169441223, -0.04623730480670929, 0.008833268657326698, 0.018934471532702446, 0.0026714650448411703, 0.008319051936268806, 0.002527061617001891, -0.03609383478760719, -0.017229804769158363, 0.026542071253061295, -0.023287709802389145, -0.002428444568067789, -0.038009826093912125, 0.0008959181723184884, 0.01949799805879593, -0.002328066620975733, -0.04547654464840889, 0.05153444781899452, 0.012975185178220272, 0.008107729256153107, -0.03136022016406059, 0.03169833496212959, -0.0051985266618430614, 0.025034639984369278, 0.013573930598795414, 0.023090476170182228, 0.000593903532717377, 0.023668089881539345, -0.014137457124888897, -0.017018483951687813, 0.02047007903456688, -0.00492732971906662, -0.026091251522302628, 0.024893758818507195, -0.01573646254837513, 0.011362091638147831, 0.018540004268288612, -0.017032571136951447, -0.0045539941638708115, 0.015032053925096989, -0.0005093746003694832, -0.013503490015864372, -0.01080560963600874, 0.007790746167302132, 0.007487850729376078, 0.0001753314136294648, -0.015201112255454063, 0.0003464804030954838, -4.652941061067395e-05, 0.0064382837153971195, 0.002386180218309164, 0.0001753314136294648, -0.005895890295505524, -0.02597854658961296, 0.019906554371118546, -0.019681142643094063, -0.011897440999746323, -0.014750291593372822, 0.0009298177901655436, 0.009868747554719448, -0.030430400744080544, 0.017117099836468697, 0.01641269214451313, -0.01814553514122963, 0.004244054667651653, -0.014257206581532955, -0.022780535742640495, -0.01093240361660719, -0.0020093221683055162, -0.0036276981700211763, -0.03578389808535576, -0.010622464120388031, 0.012700465507805347, -0.0023544817231595516, -0.025795400142669678, -0.00302895181812346, 0.011094416491687298, -0.007959803566336632, 0.028105856850743294, -0.0068362741731107235, 0.012348261661827564, 0.005043556913733482, -0.018962647765874863, -0.009432015009224415, 0.0011332154972478747, 0.0018208931433036923, 0.02203386463224888, 0.030514929443597794, 0.004089084919542074, -0.015412434004247189, 0.010312524624168873, -0.039024170488119125, -0.007896407507359982, -0.00044905973481945693, -0.01945573277771473, 0.02152669057250023, -0.004768838174641132, 0.053027790039777756, 0.014158588834106922, 0.010657683946192265, 0.04361690580844879, 0.034121494740247726, 0.009192517027258873, 0.03313532471656799, -0.02072366699576378, 0.006762311328202486, -0.005043556913733482, 0.007931627333164215, 0.0014369911514222622, 0.008657167665660381, 0.014186765067279339, -0.029218818992376328, -0.013679591938853264, -0.022132480517029762, -0.011326871812343597, 0.020117875188589096, 0.012151028029620647, -0.001237115589901805, 0.020484168082475662, 0.020498255267739296, -0.0019318374106660485, -0.013010405004024506, -0.001429947093129158, -0.001190448529087007, -0.01455305702984333, -0.005536642391234636, -0.02348494343459606, -0.006110734306275845, -0.009446103125810623, 0.014081104658544064, -0.030092285946011543, -0.015187024138867855, 0.019188057631254196, -0.020906811580061913, 0.0012485621264204383, 0.033783379942178726, -0.009629249572753906, 0.03130386769771576, 0.00398694584146142, 0.021963423117995262, -0.0011094417423009872, -0.0012679334031417966, 0.027147861197590828, -0.008643078617751598, -0.034121494740247726, 0.012172160670161247, 0.028796175494790077, 0.05838128551840782, 0.013968398794531822, -0.005209092982113361, 0.018723148852586746, -0.033614322543144226, 0.0035290811210870743, -0.017877859994769096, 0.014961613342165947, 0.015088407322764397, -0.017736978828907013, 0.016004135832190514, 0.008699432015419006, 0.04158821329474449, 0.03012046217918396, 0.023808971047401428, 0.06125526875257492, -0.0028757432010024786, -0.004980160389095545, 0.031078455969691277, -0.00714973546564579, 0.02013196423649788, -0.008791004307568073, 0.006522812880575657, 0.0057655745185911655, -0.007487850729376078, -0.03772806003689766, 0.00658973166719079, -0.00502242473885417, 0.02369626611471176, 0.005043556913733482, 0.016398604959249496, 0.010136422701179981, 0.02754233032464981, -0.01362323947250843, -0.010030761361122131, -0.03071216307580471, 0.03778441250324249, 0.025781311094760895, 0.0010108246933668852, -0.03764353320002556, -0.008791004307568073, -0.012686377391219139, 0.010566111654043198, 0.02695062756538391, 0.03493860736489296, 0.01831459254026413, -0.00769917294383049, 0.02390758879482746, -0.006543945055454969, 0.006431239657104015, 0.025161433964967728, -0.005511987954378128, 0.02394985221326351, -0.0032173809595406055, 0.0008994402014650404, -0.021089958027005196, -0.007459674496203661, -0.012876567430794239, 0.04465943202376366, -0.007727349642664194, 0.009403838776051998, -0.021935246884822845, -0.006307968404144049, 0.015511051751673222, -0.020103788003325462, -0.036234717816114426, -0.015327905304729939, -0.016990307718515396, -0.004751228261739016, 0.010080070234835148, 0.0006564196664839983, 0.00043651246232911944, -0.004539906047284603, 0.009608116932213306, -0.03167015686631203, 0.000835163053125143, -0.01856818050146103, -0.0011332154972478747, -0.01941346935927868, 0.03338891267776489, -0.013933178968727589, -0.004314495250582695, -0.05592994764447212, 0.017103012651205063, 0.009741954505443573, -0.03786894306540489, 0.018075093626976013, -0.019554350525140762, 0.02292141690850258, -0.035135842859745026, 0.015370169654488564, -0.004613868426531553, 0.007487850729376078, 0.008297919295728207, -0.003951725549995899, -0.010516802780330181, 0.017610184848308563, 0.00475827232003212, 0.003990468103438616, -0.009840571321547031, 0.010023717768490314, 0.005455635488033295, -0.04899857938289642, -0.024485202506184578, -0.021301280707120895, 0.012101719155907631, 0.01250323187559843, -0.0019142271485179663, 0.0023157394025474787, 0.011996058747172356, -0.016215458512306213, 0.016525398939847946, 0.003227947046980262, 0.026542071253061295, 0.01231304183602333, 0.03189556673169136, -0.0019159881630912423, -0.02665477618575096, 0.014334690757095814, 0.013806385919451714, 0.0007845337386243045, -0.0014026513090357184, 0.02492193505167961, -0.007375145796686411, -0.008981194347143173, 0.02585175260901451, -0.009967365302145481, -0.026626599952578545, 0.012439834885299206, 0.001613092957995832, -0.038855113089084625, 0.001050447579473257, 0.0066460841335356236, 0.05305596813559532, -0.03121933713555336, -0.007096904795616865, 0.010432274080812931, 0.02695062756538391, 0.01137617975473404, -0.0016905778320506215, 0.014919348992407322, -0.012073542922735214, 0.015172936022281647, -0.013968398794531822, -0.024766964837908745, -0.030430400744080544, -0.058437637984752655, -0.009093900211155415, -0.0004133991023991257, -0.022738272324204445, -0.0027366229332983494, 0.004874499514698982, -0.0010257932590320706, 0.02047007903456688, 0.031951919198036194, -0.022188832983374596, -0.003944681491702795, 0.021977512165904045, 0.014426263980567455, -0.04009487107396126, -0.016356339678168297, -0.022470597177743912, 0.00019162082753609866, 0.0023439156357198954, 0.030909398570656776, -0.005663435906171799, 0.0014185004401952028, 0.012460967525839806, 0.03358614444732666, 0.03460049256682396, 0.015299729071557522, -0.00611425656825304, -0.0022523426450788975, -0.008086597546935081, -0.004899153485894203, 0.03465684503316879, -0.013721856288611889, -0.012052411213517189, 0.019216233864426613, -0.02199159935116768, 0.006871494464576244, 0.017835596576333046, -0.03693912550806999, -0.0029127246234565973, 0.031191160902380943, -0.0011939705582335591, 0.008417668752372265, -0.006713002920150757, 0.007304704748094082, -0.01522928848862648, -0.01249618735164404, -0.03705183044075966, -0.02266783080995083, 0.006642561871558428, -0.007776658050715923, 0.04001034051179886, -9.977271110983565e-05, -0.003948203753679991, -0.01165794301778078, -0.007678040768951178, 0.021343544125556946, 0.01165794301778078, 0.014665762893855572, -0.0044835531152784824, -0.017877859994769096, -0.03879876062273979, 0.0037967560347169638, -0.00032820983324199915, -0.02597854658961296, 0.009974408894777298, -0.001426425063982606, -0.02275235950946808, -0.07066614925861359, -0.005001292563974857, -0.01691986620426178, 0.014891172759234905, 0.00483223469927907, -0.022104304283857346, -0.01708892360329628, -0.0005155382095836103, 0.04705441743135452, -0.023358149453997612, -0.0004424559010658413, -0.019892465323209763, 0.01907535269856453, 0.02817629650235176, 0.011249386705458164, 0.012186248786747456, 0.012630024924874306, -0.009403838776051998, -0.02139989659190178, -0.02944423072040081, 0.005011858884245157, -0.017441127449274063, 0.00409260718151927, -0.0052584013901650906, -0.013630283996462822, 0.028289001435041428, 0.02542910724878311, -0.034544140100479126, -0.009446103125810623, 0.007931627333164215, 0.0006744700949639082, -0.004258142784237862, -0.019892465323209763, 0.0020040390081703663, -0.019300762563943863, 0.01372890081256628, 0.012841347604990005, 0.02030102163553238, -0.00873465184122324, -0.0003279896918684244, -0.01539834588766098, 0.02220292203128338, -0.0009324593120254576, 0.007642820477485657, -0.022808711975812912, -0.046885356307029724, -0.042320799082517624, -0.031416572630405426, -0.0009483085013926029, -0.009213648736476898, -0.015370169654488564, -0.012848391197621822, 0.0022065562661737204, 0.022132480517029762, -0.0009465474868193269, 0.021709837019443512, -0.0008954779477789998, -0.006543945055454969, -0.005096387583762407, -0.02864120528101921, 0.040545690804719925, -0.02414708584547043, 0.014426263980567455, 0.005367584526538849, -0.0014035317581146955, 0.023555384948849678, -0.03150109946727753, 0.029810521751642227, 0.034628670662641525, 0.0017724651843309402, -2.09808858926408e-05, 0.008333140052855015, -0.02406255714595318, -0.03319167718291283, 0.011023975908756256, -0.030909398570656776, -0.022174745798110962, -0.016821248456835747, -0.005966330878436565, -0.020906811580061913, -0.017398864030838013, 0.004860411398112774, -0.01928667537868023, -0.008762828074395657, -0.03138839453458786, -0.021287191659212112, -0.023189092054963112, -0.013306256383657455, 0.03693912550806999, 0.02089272439479828, 0.03321985527873039, 0.025457283481955528, -0.005036512855440378, 0.015637844800949097, -0.05435207486152649, -0.02211839333176613, -0.009763087145984173, 0.025950370356440544, 0.020991340279579163, -0.012101719155907631, 0.010242084041237831, 0.002224166411906481, -0.005420415196567774, -0.01882176660001278, -0.013221727684140205, 0.04026392847299576, 0.034121494740247726, 0.010939447209239006, -0.0034375081304460764, 0.014595321379601955, -0.042743440717458725, -0.009650381281971931, -0.022710096091032028, -0.003652352374047041, -0.008953018113970757, -0.029472406953573227, -0.01708892360329628, 0.02275235950946808, -0.015299729071557522, 0.012630024924874306, 0.0015091928653419018, 0.001967057818546891, 0.020230581983923912, -0.03668553754687309, 0.0035414083395153284, 0.012742729857563972, -0.01696213148534298, 0.04192632809281349, -0.03262815251946449, -0.0055859507992863655, 0.041813623160123825, -0.00960107333958149, -0.012939964421093464, -0.023654000833630562, -0.027908621355891228, 0.04234897345304489, -0.025330491364002228, -0.0020515865180641413, -0.02342859096825123, -0.0041560037061572075, -0.004247576929628849, 0.0054485914297401905, -0.0036347422283142805, 0.010305481031537056, -0.010622464120388031, 0.006804575677961111, 0.03769988566637039, -0.0022664309944957495, -0.006170609034597874, 0.00361713208258152, -0.016905779018998146, -0.0036593966651707888, 0.010474538430571556, 0.014440352097153664, 0.03629107028245926, -0.0051210420206189156, -0.028289001435041428, -0.040376633405685425, -0.00648407032713294, 0.02504872716963291, 0.010840830393135548, -0.019061265513300896, 0.007685084827244282, 0.03544578328728676, -0.015116583555936813, 0.03186739236116409, -0.04048933833837509, -0.02144216187298298, -0.006938413251191378, -0.010326612740755081, 0.0016923388466238976, -0.01814553514122963, 0.01869497261941433, -0.012580716982483864, 0.0035097100771963596, -0.025274138897657394, -0.014334690757095814, 0.021428074687719345, 0.0009069245425052941, 0.02192115969955921, 0.016525398939847946, 0.005663435906171799, 0.0036276981700211763, -0.005649347323924303, -0.02127310447394848, 0.011855176649987698, -0.017497479915618896, 0.025696782395243645, 0.007346969563513994, -0.016948042437434196, 0.009333398193120956, 0.0041560037061572075, -0.008974150754511356, 0.011510017327964306, -0.018624532967805862, -0.03172650933265686, 0.01267228927463293, 0.013411917723715305, -0.017920125275850296, -0.01203127857297659, -0.02013196423649788, 0.013651415705680847, -0.0022699530236423016, -0.011235298588871956, 0.016948042437434196, -0.011087372899055481, 0.010474538430571556, 0.028542589396238327, -0.008009112440049648, 0.007959803566336632, -0.023020034655928612, -0.04719529673457146, 0.014510792680084705, 0.017103012651205063, -0.005998029373586178, -0.015553316101431847, -0.003530842252075672, 0.017159365117549896, 0.016821248456835747, -0.027739563956856728, -0.016807161271572113, -0.0013005122309550643, -0.004885065369307995, -0.013024493120610714, 0.011989014223217964, 0.014736203476786613, 0.041052863001823425, 0.005663435906171799, 0.007952759973704815, 0.002914485754445195, -0.005941676441580057, 0.0066460841335356236, 0.012904743663966656, 0.01958252675831318, 0.025992633774876595, 0.0034621625673025846, 0.004395502153784037, 0.015933696180582047, -0.027993150055408478, -0.00816408172249794, 0.0007000048644840717, 0.01165794301778078, 0.020160140469670296, 0.010869006626307964, 0.030176814645528793, 0.0023720921017229557, -0.036572832614183426, -0.02499237470328808, 0.037756238132715225, -0.01708892360329628, -0.009093900211155415, -0.028486236929893494, 0.002437249757349491, 0.019469821825623512, 0.02779591642320156, -0.024104822427034378, -0.01025617215782404, 0.030937574803829193, 0.011545238085091114, 0.0017953583737835288, -0.005755008663982153, 0.01818780042231083, 0.004163047764450312, -0.013249903917312622, 0.02935970202088356, 0.01389795821160078, 0.012573672458529472, 0.015750549733638763, 0.0005450352327898145, 0.009312266483902931, -0.024118909612298012, -0.005832493305206299, -0.01091127097606659, -0.019343027845025063, 0.009213648736476898, 0.011777692474424839, -0.0046209124848246574, -0.012827259488403797, 0.03381155803799629, -0.024865582585334778, 0.011446620337665081, -0.00437789224088192, -0.01313719805330038, -0.03967222571372986, 0.045025721192359924, -0.00723426416516304, -0.015384257771074772, -0.0024143564514815807, 0.0005247835069894791, -0.021583043038845062, -0.0055014220997691154, -0.01751156896352768, 0.03330438211560249, -0.021554866805672646, 0.021709837019443512, -0.010354788973927498, -0.0020991340279579163, -0.02068140171468258, 0.006963067222386599, 0.012108763679862022, -0.01628590002655983, 0.009727866388857365, 0.27252113819122314, 0.002428444568067789, -0.0012089392403140664, 0.01869497261941433, -0.010178687050938606, 0.031754687428474426, -0.010108246468007565, -0.009565852582454681, 0.0024037903640419245, -0.023273620754480362, 0.013524622656404972, 0.01814553514122963, -0.01249618735164404, 0.004793492611497641, -0.01890629529953003, -0.010876050218939781, -0.027359183877706528, -0.027908621355891228, -0.015933696180582047, 0.0015576209407299757, 0.01296814065426588, -0.014130412600934505, -0.009227736853063107, -0.002764799166470766, 0.010883094742894173, 0.00649463664740324, -0.011136681772768497, -0.002852850127965212, 0.025358667597174644, 0.0005309471162036061, -0.016722632572054863, -0.005290099885314703, 0.01089013833552599, 0.007565335836261511, -0.02072366699576378, -0.02017422765493393, 0.030148638412356377, 0.011601590551435947, 0.010537935420870781, 0.0018156100995838642, -0.008579682558774948, -0.01239757053554058, 0.023414501920342445, 0.014151545241475105, -0.037418123334646225, 0.02139989659190178, 0.0007026463863439858, 0.00714973546564579, -0.012531408108770847, 0.024597907438874245, -0.01810326986014843, -0.02771138772368431, 0.03003593161702156, 0.013109021820127964, -0.007255396340042353, 0.011171901598572731, 0.047617942094802856, -0.004606824368238449, 0.012179204262793064, -0.018793590366840363, 0.000806546478997916, 0.016356339678168297, -0.020286934450268745, 0.02110404707491398, -0.03240274265408516, -0.0018367423908784986, -0.01983611285686493, 0.005092865787446499, 0.0037333592772483826, -0.03431873023509979, -0.006695392541587353, -0.004275753162801266, -0.003483294742181897, 0.004205312114208937, -0.05432390049099922, -0.027612771838903427, 0.008009112440049648, 0.008030244149267673, 0.025922192260622978, 0.01362323947250843, -0.016299987211823463, -0.008727608248591423, -0.015919607132673264, 0.0017874338664114475, -0.03440325707197189, -0.019173970445990562, 0.0005252237897366285, 0.010629507713019848, -0.006477026268839836, 0.014221985824406147, 0.013426005840301514, -0.0022558646742254496, 0.002664420986548066, 0.003243796294555068, -0.016525398939847946, -0.003134612925350666, 0.017060747370123863, 0.01594778336584568, -0.015088407322764397, -0.02517552115023136, -0.02152669057250023, -0.027640948072075844, 0.011242342181503773, -0.018624532967805862, -0.0031645502895116806, -0.009988497011363506, -0.01992064155638218, 0.02919064275920391, 0.008727608248591423, -0.036572832614183426, -0.005909978412091732, -0.04153186082839966, -0.010037805885076523, 0.013559842482209206, 0.016722632572054863, 0.009333398193120956, -0.0031258079688996077, 0.0031081978231668472, -0.024865582585334778, 0.0019318374106660485, 0.04212356358766556, -0.009636293165385723, 0.0014889411395415664, 0.01506023108959198, -0.0013533427845686674, -0.008551506325602531, -0.027105597779154778, -0.03299444541335106, 0.020920900627970695, -0.030092285946011543, 0.03296626731753349, -0.02618986740708351, 0.024400673806667328, -0.00011391588486731052, -0.007776658050715923, -0.005980418995022774, 0.007389233913272619, -0.0013234054204076529, 0.014285382814705372, -0.01249618735164404, -0.004751228261739016, 0.02268191985785961, 0.003972857724875212, -0.007417410146445036, 0.0016932192957028747, 0.01138322427868843, 0.0017152320360764861, 0.007544203661382198, 0.012341218069195747, -0.0027471890207380056, -0.025612253695726395, -0.03012046217918396, 0.011228254064917564, -0.005152740515768528, -0.010206863284111023, -0.021977512165904045, -0.04017939791083336, -0.01924441009759903, 0.0037791458889842033, 0.024597907438874245, -0.04082745313644409, 0.021470338106155396, -0.005568340886384249, -0.01582099124789238, -0.006624951958656311, -0.008128861896693707, -0.17863772809505463, -0.009537676349282265, 0.04649088904261589, -0.05249243974685669, 0.02961328811943531, -0.02059687301516533, 0.02788044512271881, 0.01231304183602333, -0.011545238085091114, -0.007022941950708628, 0.01298927329480648, -0.002143159508705139, -0.02652798406779766, -0.010115290991961956, -0.018723148852586746, -0.010418185964226723, -0.01755383238196373, 0.00034956217859871686, 0.04178544878959656, -0.005071733612567186, 0.05139356479048729, -0.04513842612504959, -0.010312524624168873, 0.04271526634693146, -0.003613610053434968, -0.006040293723344803, -0.01229190919548273, -0.011235298588871956, 0.007114515174180269, -0.003423420013859868, 0.0045434278436005116, -0.010009629651904106, 0.03121933713555336, -0.007354013621807098, 0.005135130137205124, -0.00875578448176384, -0.032712679356336594, 0.01072108093649149, -0.03398061543703079, 0.02285097725689411, 0.003099392633885145, 0.04891405254602432, 0.010178687050938606, 0.016271810978651047, -0.026034899055957794, 0.04186997562646866, 0.013299211859703064, -0.0066707381047308445, -0.0013427766971290112, 0.012996316887438297, 0.014059972018003464, -0.04589918628334999, 0.009748999029397964, 0.003132852027192712, 0.053450435400009155, 0.025795400142669678, 0.018962647765874863, 0.03293808922171593, 0.005519032012671232, 5.013399641029537e-05, 0.008234522305428982, -0.04415225610136986, 0.01763836108148098, 0.009185472503304482, -0.04068657383322716, -0.00305184512399137, -0.01053089089691639, 0.018244152888655663, -0.029416054487228394, 0.018286416307091713, 0.006624951958656311, -0.002477753208950162, 0.0033670675475150347, -0.014348778873682022, 0.05147809535264969, -0.008016156032681465, -0.015468787401914597, 0.022907329723238945, 0.03544578328728676, -0.042912501841783524, -0.016652191057801247, 0.03955952078104019, 0.01746930368244648, -0.0018490694928914309, 0.019385293126106262, 0.020399639382958412, 0.012320085428655148, 0.0011173662496730685, -0.008107729256153107, -0.009192517027258873, 0.046209126710891724, -0.047138944268226624, 0.0029884485993534327, -0.0016747287008911371, 0.009988497011363506, 0.0047864485532045364, -0.018497738987207413, -0.008558549918234348, 0.009488368406891823, -0.007945715449750423, 0.00227875798009336, -0.006558033172041178, -0.02165348455309868, -0.007727349642664194, 0.024978287518024445, 0.02423161454498768, -0.005416892934590578, 0.004779404494911432, 0.04065839573740959, 0.011439576745033264, -0.014144500717520714, -0.0025869363453239202, 0.022780535742640495, 0.028993409126996994, 0.005015380680561066, 0.0022576258052140474, 0.0010803848272189498, -0.01738477498292923, 0.006367843132466078, -0.017187541350722313, -0.0012564867502078414, -0.005948720499873161, -0.02881026268005371, 0.004582170397043228, 0.01476437970995903, -0.005191482603549957, -0.041221924126148224, -0.017736978828907013, -0.010897182859480381, 0.013144242577254772, -0.012834303081035614, 0.0023632869124412537, -0.012453923001885414, 0.020188316702842712, -0.022062040865421295, 0.019568437710404396, -0.010213907808065414, -0.046350009739398956, -0.04110921546816826, -0.005547208245843649, 0.013383740559220314, 0.008530373685061932, 0.001569067477248609, -0.018554091453552246, 0.009925100952386856, 0.017286157235503197, 0.009065723977982998, -0.023738529533147812, -0.008868489414453506, -0.014412175863981247, -0.02458381839096546, -0.0067235687747597694, -0.03152927756309509, 0.038178883492946625, -0.0072906166315078735, 0.007132125087082386, 0.039024170488119125, -0.00705464044585824, 0.023175004869699478, 0.004659655038267374, -0.009903968311846256, 0.007769613992422819, -0.03620653972029686, 0.0004723932361230254, 0.020709577947854996, -0.008403580635786057, 0.02304821088910103, 0.011052152141928673, 0.0020286934450268745, 0.009756042622029781, -0.0025851752143353224, -0.03398061543703079, 0.006290358491241932, 0.014074060134589672, -0.00848106574267149, -0.004730095621198416, -0.022132480517029762, -0.003190965624526143, 0.00941088330000639, 0.0022734750527888536, 0.03321985527873039, -0.009572897106409073, 0.013580975122749805, 0.001954730600118637, -0.017441127449274063, 0.023541295900940895, -0.003669962752610445, -0.014123369008302689, -0.025203697383403778, 0.03989763557910919, 0.011819956824183464, -0.0038354983553290367, -0.013771165162324905, -0.023020034655928612, 0.019568437710404396, -0.019047176465392113, 0.011277562938630581, 0.01324285939335823, -0.009396795183420181, 0.02547137252986431, -0.05263332277536392, 0.011615678668022156, -0.014243118464946747, -0.009565852582454681, 0.03045857697725296, -0.029387878254055977, 0.014426263980567455, 0.004635001067072153, 0.00998145341873169, -0.026457542553544044, 0.023160915821790695, -0.00323675200343132, 0.005487333983182907, -0.004997770767658949, 0.026894275099039078, -0.006730612833052874, 0.004025688394904137, -0.026640689000487328, 0.03685459494590759, -0.04387049376964569, -0.028655294328927994, 0.011622722260653973, -0.0045258174650371075, -0.013573930598795414, -0.016145018860697746, 0.0002246399235446006, -0.009911012835800648, -0.013066757470369339, -0.060804449021816254, 0.025034639984369278, -0.005068211350589991, 0.00484280101954937, 0.0049836826510727406, -0.02025875821709633, 0.03136022016406059, 0.015187024138867855, 0.0031170027796179056, -0.017060747370123863, 0.005666957702487707, -0.0023544817231595516, -0.020864548161625862, -0.028317177668213844, -0.010812654159963131, -0.04040481150150299, 0.02521778643131256, 0.006695392541587353, -0.01810326986014843, 0.005261923652142286, 0.025753134861588478, -0.006498158443719149, 0.01920214667916298, -0.011989014223217964, -0.0032244250178337097, 0.0012503231409937143, 0.007114515174180269, 0.038939643651247025, 0.014095192775130272, -0.009967365302145481, -0.017441127449274063, -0.023823058232665062, -0.016511309891939163, 0.05257697030901909, 0.025119168683886528, -0.016722632572054863, -0.0010398814920336008, 0.008847356773912907, 0.004011600278317928, -0.003842542413622141, -0.0033529794309288263, -0.028782086446881294, 0.019892465323209763, 0.016088666394352913, -0.005219658836722374, 0.013109021820127964, -0.012601848691701889, -0.0063537550158798695, -0.00996032077819109, -0.0034621625673025846, -0.00979126337915659, 0.027993150055408478, -0.009164340794086456, -0.01653948612511158, -0.008424712345004082, -0.041813623160123825, 0.016145018860697746, -0.005980418995022774, -0.00695954542607069, -0.007494894787669182, 0.015130671672523022, 0.004666699096560478, 0.022315626963973045, -0.003099392633885145, -0.018892206251621246, 0.017906036227941513, -0.041306450963020325, 0.01080560963600874, 0.0018913339590653777, -0.04372961446642876, -0.011157813481986523, 0.01298927329480648, 0.014306514523923397, 0.02063913829624653, 0.004860411398112774, 0.010312524624168873, -0.02935970202088356, 0.0072060879319906235, -0.019061265513300896, -0.010206863284111023, 0.018117358908057213, -0.014722115360200405, -0.01683533750474453, 0.00022232859919313341, 0.030486753210425377, -0.002477753208950162, -0.014221985824406147, -0.0013674309011548758, -0.0013401351170614362, 0.012094675563275814, -0.037587180733680725, 0.023358149453997612, -0.005156262312084436, -0.002313978271558881, 0.015553316101431847, 0.030007755383849144, -0.03183921426534653, 0.010516802780330181, 0.009925100952386856, 0.018455473706126213, 0.01419380959123373, -0.01484890840947628, -0.01184108853340149, -0.026964716613292694, -0.01827232912182808, 0.013299211859703064, -0.002375614130869508, -0.005416892934590578, -0.0005556013784371316, 0.0006533378618769348, -0.01220738049596548, 0.013785253278911114, -0.01928667537868023, 0.02021649293601513, 0.009967365302145481, -0.01780742034316063, 0.009368618950247765, -0.026203956454992294, -0.014595321379601955, 0.007776658050715923, 0.02059687301516533, 0.018131447955965996, 0.010566111654043198, -0.005452113226056099, 0.01017164345830679, -0.004043298773467541, 0.02444293722510338, -0.024203438311815262, 0.02711968496441841, 0.0011613917304202914, -0.005226702895015478, 0.0007026463863439858, -0.03417784720659256, -0.047477059066295624, -0.016891689971089363, 0.00013592862524092197, 0.01620137132704258, -0.0071109929122030735, 0.00865012314170599, 0.06046633422374725, -0.011221210472285748, -0.0018860509153455496, 0.007494894787669182, -0.013968398794531822, 0.024259790778160095, 0.012432791292667389, 0.0045434278436005116, -0.008685343898832798, -0.040883805602788925, 0.011798824183642864, -0.007466718554496765, -0.011531149037182331, -0.029669640585780144, -0.0017645405605435371, 0.007040552329272032, -0.009157296270132065, 0.03223368525505066, 0.025415020063519478, -0.006110734306275845, 0.028105856850743294, -0.004148959647864103, 0.022400155663490295, 0.017398864030838013, 0.00881918054074049, -0.028613029047846794, 0.01801874116063118, -0.0017671821406111121, -0.025245962664484978, 0.017370687797665596, 0.006709480658173561, 0.011002844199538231, -0.04978751763701439, -0.017990564927458763, 0.005300665739923716, 0.00018996988364960998, -0.008157038129866123, 0.017567921429872513, 0.04795605689287186, 0.003467445494607091, 0.004811102524399757, 0.015961872413754463, -0.008220434188842773, -0.03806617856025696, -0.007516026962548494, 0.008220434188842773, -0.001803282997570932, 0.018427297472953796, -0.021935246884822845], "bb09d21a-e0ce-4bd4-b30e-71b1502184db": [-0.0024919607676565647, -0.00860248226672411, -0.02797221578657627, 0.0030066242907196283, -0.01826612651348114, 0.022015564143657684, -0.03531545400619507, -0.0035513537004590034, 0.006083992309868336, -0.012783458456397057, -0.001574940513819456, 0.03129718825221062, -0.019044311717152596, -0.014170043170452118, 0.008397324942052364, -0.01860569790005684, 0.00035349943209439516, 0.00686925183981657, 0.0064271013252437115, -0.03514566645026207, -0.008736896328628063, 0.022270241752266884, -0.012698565609753132, -0.01852080412209034, -0.00431892741471529, 0.007711106911301613, 0.02911827154457569, -0.016582416370511055, 0.020841211080551147, -0.01605891063809395, 0.03839989751577377, -0.00037317510577850044, -0.022001415491104126, -0.01736060157418251, -0.008701523765921593, -0.031466975808143616, 0.008814714848995209, -0.002369927242398262, 0.00654029194265604, -0.00010081034270115197, 0.05546337366104126, -0.004014727659523487, 0.01361823920160532, 0.009104765951633453, -0.030816128477454185, 0.01678049936890602, 0.0014838575152680278, 0.0010381696047261357, 0.006879863794893026, 0.01958196610212326, -0.002877516206353903, -0.002002058085054159, -0.017487941309809685, 0.0015139237511903048, 0.027420412749052048, 0.0039652069099247456, 0.04386134073138237, 0.014516688883304596, -0.032881855964660645, -0.004746928811073303, 0.04417261481285095, 0.009727313183248043, -0.0247745830565691, 0.016172101721167564, 0.011962827295064926, -0.009324071928858757, 0.00021654326701536775, -0.01811048947274685, -0.026529036462306976, 0.013002765364944935, 0.009380667470395565, 0.018336869776248932, -0.003330278443172574, 0.005475593265146017, 0.02667052485048771, -0.010109331458806992, -0.0053694769740104675, -0.007852595299482346, -0.012373142875730991, 0.00010434754221932963, 0.015945719555020332, -0.004715094342827797, 0.006087529473006725, -0.007873818278312683, 0.011092674918472767, 0.0002927037130575627, -0.017714321613311768, 0.03661714494228363, -0.011000707745552063, -0.023161618039011955, -0.01653997041285038, 0.0050688148476183414, -0.016738053411245346, -0.020628979429602623, -0.0037423628382384777, -0.0011186411138623953, -0.020869508385658264, 0.033023346215486526, -0.02082706242799759, -0.02354363538324833, 0.015775933861732483, -0.003116277512162924, -0.01710592396557331, -0.002419448224827647, -0.04516303166747093, -0.012465110048651695, -0.004969772882759571, -0.012528779916465282, 0.020770467817783356, -0.007880892604589462, -0.01645507663488388, 0.02262396365404129, -0.0009868801571428776, -0.024236928671598434, -0.031212296336889267, -0.046125151216983795, 0.03274036943912506, 0.014757218770682812, -0.0025308700278401375, -0.036334168165922165, 0.021350568160414696, 0.016341887414455414, 0.002286802977323532, -0.03506077453494072, 0.025368833914399147, 0.017459644004702568, 0.010795549489557743, -0.004276480991393328, -0.015408064238727093, -0.006292687729001045, 0.06853688508272171, 0.024180332198739052, 0.013936587609350681, 0.00394752062857151, 0.029825711622834206, -0.013434303924441338, -0.021930670365691185, 0.007226509507745504, -0.028509872034192085, -0.011651553213596344, 0.010349861346185207, 0.015195832587778568, -0.0006919656880199909, -0.0079021155834198, 0.02304842695593834, -0.016639012843370438, 0.01217505894601345, 0.031212296336889267, -0.04278603196144104, -0.009246253408491611, 0.0144813172519207, -0.02123737893998623, 0.00822753831744194, -0.014028554782271385, -0.0030862113926559687, 0.010809698142111301, -0.00767573481425643, 0.012500482611358166, -0.008694449439644814, -0.0406637080013752, 0.001535146962851286, 0.010010289959609509, 0.016327738761901855, -0.023685123771429062, 0.021775033324956894, 0.03794713318347931, -0.009005723521113396, 0.039220526814460754, 0.0012919640867039561, -0.0161438025534153, -0.024208631366491318, 0.012493407353758812, -0.006766673177480698, 0.003413402708247304, 0.014148819260299206, 0.008128496818244457, -0.009118914604187012, -0.0003603527438826859, 0.001138980034738779, 0.0003453196259215474, -0.013073509559035301, -0.00288989651016891, 0.025043411180377007, 0.026288507506251335, 0.02568010799586773, -0.011976975947618484, -0.019949836656451225, 0.008284133858978748, 0.02689690701663494, 0.00514309573918581, 0.00011164302850374952, 0.04247475787997246, 0.014063926413655281, 0.010682359337806702, -0.5356177091598511, -0.019468775019049644, -0.01564859412610531, 0.01513923704624176, 0.019440477713942528, 0.024661391973495483, -0.0032542285043746233, 0.024788731709122658, -0.011587883345782757, 0.022609813138842583, -0.013936587609350681, 0.0247745830565691, 0.016087207943201065, -0.010293266735970974, -0.0090976906940341, -0.0059318928979337215, 0.017728470265865326, -0.010731879621744156, 0.011644478887319565, 0.013462602160871029, -0.024972666054964066, 0.022921087220311165, -0.006993053946644068, 0.005291658453643322, -0.0002845239359885454, -0.006890475284308195, -0.004860119428485632, -0.011085600592195988, -0.015577850863337517, 0.018987715244293213, -0.013115955516695976, 0.006260852795094252, 0.0004571837489493191, -0.004789375700056553, 0.0715930312871933, -0.03251398727297783, -0.04765322431921959, -0.0011327898828312755, -0.013844620436429977, 0.02739211544394493, -0.010427679866552353, -0.03296675160527229, 0.012606598436832428, -0.00464788731187582, 0.001180542167276144, -0.017049327492713928, -0.00643771281465888, -0.04046562314033508, -0.0036008746828883886, -0.009387741796672344, -0.003859090618789196, -0.010088108479976654, 0.015450511127710342, -0.004633738659322262, 0.010385233908891678, -0.004541771020740271, 0.013115955516695976, -0.008078975602984428, 0.004127918276935816, -0.01597401686012745, -0.021675990894436836, 0.015478808432817459, -0.006667631212621927, 0.007852595299482346, -0.007718181237578392, -0.002877516206353903, -0.012330695986747742, -0.005387163255363703, -0.0031180460937321186, -0.03322142735123634, -0.01910090632736683, 0.002944723004475236, -0.025411279872059822, 0.01867644116282463, 0.011319056153297424, 0.012825905345380306, 0.043663255870342255, -0.010095182806253433, -0.005358865484595299, 0.031212296336889267, 0.03324972465634346, -0.024732137098908424, -0.02050163969397545, 0.003233005292713642, 0.028651360422372818, 0.0007582883117720485, -0.03967329114675522, -0.02081291377544403, 0.012323621660470963, -0.018039744347333908, 0.03548524156212807, 0.019143352285027504, 0.028821146115660667, -0.030052093788981438, 0.030335068702697754, -0.0014334522420540452, -0.03531545400619507, 0.013236220926046371, 0.01958196610212326, -0.014799665659666061, -0.03865457698702812, 0.016723904758691788, 0.012571225874125957, 0.0041562155820429325, 0.003972281236201525, 0.007972859777510166, -0.02889188937842846, -0.018563251942396164, 0.027349667623639107, -0.0360511913895607, -0.004170364700257778, -0.030136985704302788, 0.006062769331037998, 0.022326838225126266, 0.001263666432350874, -0.0440877228975296, 0.04055051878094673, 0.00896327756345272, 0.011510064825415611, -0.03953180089592934, 0.03404206037521362, -0.0017473791958764195, 0.03019358217716217, 0.009026947431266308, 0.015945719555020332, -5.2643557864939794e-05, 0.028042960911989212, -0.011616180650889874, -0.008489292114973068, 0.020374299958348274, -0.016738053411245346, -0.016242844983935356, 0.030561450868844986, -0.02154865302145481, 0.008376101031899452, 0.014785517007112503, -0.003905074205249548, -0.006080455146729946, 0.018308572471141815, 0.004308315459638834, -0.01444594468921423, -0.010937037877738476, 0.008446845225989819, 0.008793491870164871, 0.0014272622065618634, -0.023430446162819862, 0.0031905588693916798, -0.0023310179822146893, -0.0045170108787715435, 0.010279117152094841, -0.009125988930463791, -0.01324329525232315, -0.03440992906689644, 0.02600553072988987, -0.015337320975959301, -0.008913756348192692, -0.023741720244288445, 0.00011573292431421578, 0.005567560438066721, -0.02699594758450985, 0.006996591575443745, 0.01843591220676899, -0.0087581193074584, 0.0022443565540015697, -0.01342015527188778, -0.02385490946471691, -0.0010770788649097085, -0.0016377258580178022, -0.013688983395695686, -0.030165283009409904, -0.011453469283878803, 0.007322014309465885, -0.004601903725415468, -0.025934787467122078, -0.016228696331381798, 0.0014025017153471708, -0.006607498973608017, 0.020784616470336914, 0.0027484081219881773, 0.008093125186860561, 0.008411473594605923, -0.004198662471026182, -0.009217956103384495, 0.010201298631727695, -0.004046562593430281, 0.020063025876879692, 0.027788281440734863, 0.00945848599076271, -0.012840053997933865, 0.008482217788696289, -0.042927518486976624, 0.0036857675295323133, 0.004729242995381355, -0.01702103018760681, 0.019808348268270493, 0.010646986775100231, 0.04739854484796524, 0.014997748658061028, 0.01464402861893177, 0.03429673984646797, 0.02937294915318489, 0.0010638143867254257, 0.031127402558922768, -0.020218662917613983, 0.011142195202410221, -0.012691491283476353, 0.004371985327452421, 0.00644124997779727, 0.002539713168516755, 0.025467876344919205, -0.02872210368514061, -0.016723904758691788, -0.017884107306599617, -0.014368126168847084, 0.0243501178920269, 0.01915750280022621, 0.003689304692670703, 0.02132227085530758, 0.022171201184391975, -0.0026210688520222902, -0.018138786777853966, 0.0006344861467368901, -0.006681780330836773, -0.017134221270680428, -0.01032863836735487, -0.020515788346529007, 0.00713807949796319, -0.005355328321456909, 0.004637275822460651, -0.026939352974295616, -0.02048749104142189, 0.018987715244293213, -0.025722553953528404, 0.007081484422087669, 0.03341951221227646, -0.0015528330113738775, 0.020586533471941948, 0.0038201813586056232, 0.026401696726679802, -0.015280725434422493, -0.0008909335010685027, 0.03220271319150925, -0.005104186944663525, -0.028325937688350677, 0.016271142289042473, 0.0348626933991909, 0.05636889860033989, 0.027208181098103523, -0.01550710666924715, 0.0245199054479599, -0.02814200334250927, 0.003068525344133377, -0.013505048118531704, 0.01826612651348114, 0.009189658798277378, -0.013589940965175629, 0.013158402405679226, 0.016087207943201065, 0.04360666126012802, 0.023727571591734886, 0.023656826466321945, 0.06016078218817711, -0.014304456301033497, -0.001314955879934132, 0.02993890270590782, -0.009734387509524822, 0.024463308975100517, -0.005808090325444937, 0.009175509214401245, 0.003613254753872752, -0.02212875336408615, -0.03446652367711067, 0.0025450189132243395, -0.021251527592539787, 0.018888674676418304, 0.004693870898336172, 0.01571933925151825, 0.007979934103786945, 0.035343751311302185, -0.015988165512681007, -0.012189208529889584, -0.04105987399816513, 0.03457971662282944, 0.021831627935171127, -0.0029659464489668608, -0.04878513142466545, -0.011319056153297424, -0.013427229598164558, 0.015450511127710342, 0.02807125821709633, 0.02764679305255413, 0.01958196610212326, -0.007647437043488026, 0.019624412059783936, -0.0005571097717620432, 0.008942053653299809, 0.031636759638786316, -0.009196733124554157, 0.02419448085129261, -0.009529230184853077, -0.00594604155048728, -0.01900186575949192, -0.007880892604589462, -0.00859540794044733, 0.04519132897257805, -0.006533217616379261, 0.02081291377544403, -0.01959611475467682, 0.0003340448020026088, 0.011877934448421001, -0.019850794225931168, -0.029146568849682808, -0.008694449439644814, -0.014247861690819263, -0.012606598436832428, 0.004853045102208853, 0.002882821951061487, 0.0039652069099247456, 0.0013582867104560137, 0.01242266409099102, -0.030306771397590637, -0.009076467715203762, -0.030080391094088554, 0.003933371976017952, -0.03305164352059364, 0.036503955721855164, -0.01975175179541111, -0.008680300787091255, -0.05178467929363251, 0.02065727673470974, 0.015026046894490719, -0.050822559744119644, 0.015846678987145424, -0.012500482611358166, 0.012479258701205254, -0.03316483274102211, 0.020869508385658264, -0.006126438733190298, 0.012790532782673836, 0.01662486232817173, -0.005878834519535303, -0.011778892017900944, 0.008149719797074795, 0.004952087067067623, 0.0072088236920535564, -0.01860569790005684, 0.0049945334903895855, 0.0027554826810956, -0.04889832064509392, -0.019539520144462585, -0.02072801999747753, 0.007169914431869984, 0.011594957672059536, 0.004856582265347242, -0.002311563352122903, 0.013101806864142418, -0.020275259390473366, 0.008333655074238777, -0.00048061771667562425, 0.022779598832130432, 0.010434754192829132, 0.03407035768032074, -0.0013653611531481147, -0.027179881930351257, 0.015379766933619976, 0.023331403732299805, 0.0033019809052348137, -0.005036979913711548, 0.019143352285027504, -0.004930863622575998, -0.008008232340216637, 0.021675990894436836, -0.008496366441249847, -0.015011897310614586, 0.02263811230659485, -0.002690044464543462, -0.024180332198739052, 0.0052138399332761765, 0.012578301131725311, 0.051133833825588226, -0.029514437541365623, -0.010243745520710945, 0.008751044981181622, 0.027759984135627747, 0.008942053653299809, -0.010038587264716625, 0.017261559143662453, -0.0099536944180727, 0.016341887414455414, -0.014559135772287846, -0.020855359733104706, -0.021916521713137627, -0.05404848977923393, -0.007795999757945538, -0.0020285870414227247, -0.020459193736314774, -0.0033214355353266, 0.0015457585686817765, 0.0050829635001719, 0.013526272028684616, 0.03701331093907356, -0.020190365612506866, -0.003031384665518999, 0.031325485557317734, 0.010788475163280964, -0.041767314076423645, -0.0220438614487648, -0.02132227085530758, -0.0002036103542195633, -0.0009541610488668084, 0.02749115601181984, -0.007233584299683571, -0.00962119735777378, 0.010243745520710945, 0.03808862343430519, 0.028127852827310562, 0.017148369923233986, -0.005797478836029768, -0.008729822002351284, -0.007070872467011213, -0.008418547920882702, 0.0265714842826128, -0.01744549535214901, -0.019355585798621178, 0.019553668797016144, -0.017558684572577477, 0.004152678418904543, 0.012252877466380596, -0.04844556003808975, -0.007456427905708551, 0.026444144546985626, -0.006126438733190298, 0.004524085205048323, -0.011064376682043076, 0.0014033860061317682, -0.02205801010131836, -0.006193645764142275, -0.038060326129198074, -0.025963084772229195, 0.005086500663310289, -0.0008714788709767163, 0.037975430488586426, 0.002170075196772814, 0.0010823847260326147, -0.012684416957199574, -0.0069046239368617535, 0.020034728571772575, 0.01357579231262207, 0.020855359733104706, 0.0017721396870911121, -0.021916521713137627, -0.047030676156282425, 0.007155765779316425, 0.006448324769735336, -0.028651360422372818, 0.013710206374526024, 0.0036256350576877594, -0.014028554782271385, -0.07397002726793289, 0.0033037494868040085, -0.00713807949796319, 0.01637018471956253, 0.005493279080837965, -0.021350568160414696, -0.01513923704624176, -0.006016785744577646, 0.04558749869465828, -0.03647565841674805, 0.0017571065109223127, -0.018860377371311188, 0.013844620436429977, 0.025637662038207054, -0.006218406371772289, 0.008411473594605923, 0.0024495143443346024, -0.00983342994004488, -0.018068043515086174, -0.01942632906138897, 0.011842561885714531, -0.02147790789604187, 0.007866743952035904, -0.015775933861732483, -0.013172551058232784, 0.01768602430820465, 0.026444144546985626, -0.039701588451862335, -0.005433146841824055, -0.0012654350139200687, -0.004531159531325102, -0.003915685694664717, -0.016186250373721123, 0.009720238856971264, -0.020218662917613983, 0.008998649194836617, 0.02139301598072052, 0.03220271319150925, 0.0020055952481925488, -0.0059495787136256695, -0.012691491283476353, 0.02897678315639496, 0.0005579940625466406, -0.0006101678591221571, -0.024661391973495483, -0.04420091211795807, -0.03975818306207657, -0.03398546576499939, 0.0022903401404619217, -0.013936587609350681, -0.011092674918472767, -0.01652582176029682, -0.005999099463224411, 0.018648143857717514, -0.0064094155095517635, 0.016738053411245346, 0.014325680211186409, 0.0019136278424412012, -0.007604990620166063, -0.029854008927941322, 0.03610778972506523, -0.018973566591739655, 0.002548556076362729, 0.009762685745954514, -0.0042128111235797405, 0.019398031756281853, -0.02993890270590782, 0.023303106427192688, 0.02221364714205265, 0.005026368424296379, 0.0024265225511044264, 0.010427679866552353, -0.017742620781064034, -0.02749115601181984, -0.002056884579360485, -0.021576950326561928, -0.02074217051267624, -0.015450511127710342, -0.008078975602984428, -0.02344459481537342, -0.007371535059064627, 8.505872392561287e-05, -0.014700623229146004, -0.006635796278715134, -0.031382083892822266, -0.01719081588089466, -0.02222779579460621, -0.000584523135330528, 0.03579651564359665, 0.011644478887319565, 0.02920316345989704, 0.015011897310614586, -0.005730271805077791, 0.009557527489960194, -0.04343687742948532, -0.011984050273895264, -0.004064248409122229, 0.02345874346792698, 0.031551867723464966, -0.019624412059783936, 0.01761528104543686, 0.0020427359268069267, -0.008857160806655884, -0.013306965120136738, -0.008460993878543377, 0.03523056209087372, 0.029401246458292007, 0.011750594712793827, -0.005744420923292637, 0.008616630919277668, -0.03907904028892517, -0.005404849071055651, -0.011913306079804897, -0.0058469995856285095, -0.007421055808663368, -0.027363818138837814, -0.009720238856971264, 0.019539520144462585, -0.01587497629225254, 0.015040195547044277, -0.0018269662978127599, 0.008517589420080185, 0.024335969239473343, -0.03455141931772232, 0.0034169398713856936, 0.026373399421572685, -0.023685123771429062, 0.042248375713825226, -0.022185349836945534, 0.0012194514274597168, 0.022609813138842583, 0.006282075773924589, -0.013597015291452408, -0.025779150426387787, -0.02558106556534767, 0.047030676156282425, -0.006059232167899609, 0.0028562929946929216, -0.024703839793801308, 0.004566531628370285, -0.007329088635742664, 0.0006875442340970039, -0.005461444612592459, 0.015068492852151394, -0.014573284424841404, 0.010250819846987724, 0.030221879482269287, -0.010413531213998795, -0.010144704021513462, -0.006550903432071209, -0.02255321852862835, -0.008998649194836617, 0.007484725676476955, 0.002912888303399086, 0.04089009016752243, -0.007852595299482346, -0.008630779571831226, -0.044059425592422485, -0.005868223030120134, 0.01481381431221962, 0.01313010510057211, -0.01727570965886116, 0.01460158172994852, 0.03285355865955353, -0.010837995447218418, 0.03760756179690361, -0.040946684777736664, -0.028368383646011353, -0.005323493387550116, -0.002166538033634424, 0.004952087067067623, -0.012040645815432072, 0.014396424405276775, -0.012613672763109207, 0.004732780158519745, -0.025906488299369812, -0.019879091531038284, 0.02000643126666546, 0.0016784036997705698, 0.033532701432704926, 0.010547945275902748, -0.001502427738159895, 0.007056723814457655, 0.0008763425284996629, -0.023586083203554153, 0.012090166099369526, -0.034353334456682205, 0.015323171392083168, 0.009472634643316269, -0.010109331458806992, 0.011205865070223808, -0.0019065533997491002, -0.007074409630149603, 0.008496366441249847, -0.019539520144462585, -0.02617531642317772, 0.009515081532299519, 0.012535854242742062, -0.013009839691221714, -0.01809634082019329, -0.024463308975100517, 0.005588783882558346, -0.0030738310888409615, -0.011262460611760616, 0.015691041946411133, -0.005029905587434769, 0.009359444491565228, 0.016639012843370438, -0.004509936086833477, 0.012818831019103527, -0.01535146962851286, -0.04179561510682106, 0.019313139840960503, 0.01702103018760681, -0.0025945398956537247, -0.019963985309004784, -0.008779342286288738, 0.008977426216006279, 0.010151778347790241, -0.022312689572572708, -0.009274551644921303, -0.00025180476950481534, -0.011000707745552063, -0.011403948999941349, 0.014672325924038887, 0.016511673107743263, 0.036334168165922165, 0.009288700297474861, 0.011113897897303104, 0.005199691280722618, -0.005521576851606369, 0.012705639936029911, 0.01628529094159603, 0.023600231856107712, 0.015818379819393158, 0.00112040969543159, 0.006144125014543533, 0.010081034153699875, -0.023402146995067596, -0.017487941309809685, -0.0036256350576877594, 0.021845778450369835, 0.019115054979920387, 0.01167985051870346, 0.02607627399265766, 0.0016315358225256205, -0.03653225302696228, -0.017629429697990417, 0.03432503715157509, -0.019808348268270493, -0.005238600540906191, -0.02236928418278694, 0.005815165117383003, 0.01884622871875763, 0.036985013633966446, -0.026812013238668442, -0.0027625570073723793, 0.022609813138842583, 0.014148819260299206, -0.001169046270661056, -0.00340455980040133, 0.022807897999882698, 0.012790532782673836, -0.011715223081409931, 0.034523118287324905, 0.009847578592598438, 0.021675990894436836, 0.03341951221227646, -0.013066435232758522, 0.011467617936432362, -0.019214097410440445, -0.020430896431207657, -0.017148369923233986, -0.02149205654859543, 0.003636246779933572, 0.01924239471554756, -0.008241687901318073, -0.005733808968216181, 0.030759533867239952, -0.021591098979115486, 0.015521255321800709, -0.0007472345605492592, 0.0008555614622309804, -0.03565502539277077, 0.05342594161629677, -0.018478358164429665, -0.01564859412610531, -0.0047363173216581345, 0.005203228443861008, -0.027448710054159164, 9.030926594277844e-05, -0.019963985309004784, 0.04346517473459244, -0.022779598832130432, 0.027844877913594246, -0.01394366193562746, -0.005341179668903351, -0.022567367181181908, 0.00967071857303381, 0.010519647039473057, -0.017261559143662453, 0.014191266149282455, 0.2691671550273895, -0.0015634446172043681, 0.0034770723432302475, 0.013604090549051762, -0.008418547920882702, 0.03186314180493355, -0.0007914496236480772, -0.002651135204359889, -0.007979934103786945, -0.01415589451789856, 0.011800115928053856, 0.00913306325674057, -0.004223422612994909, 0.0034381630830466747, -0.012295324355363846, -0.009041096083819866, -0.028042960911989212, -0.032712072134017944, -0.016837095841765404, -0.010448903776705265, 0.005687825381755829, -0.010562093928456306, -0.005319956224411726, -0.006653482560068369, 0.01168692484498024, 0.003316129557788372, -0.006918773055076599, -0.0022938773036003113, 0.028028812259435654, 0.00448163878172636, -0.021930670365691185, -0.0037671232130378485, -0.0015917422715574503, 0.0013750884681940079, -0.024576500058174133, -0.020133771002292633, 0.02140716463327408, 0.016242844983935356, 0.005811627488583326, 0.003388642333447933, -0.009118914604187012, -0.03285355865955353, 0.022822046652436256, 0.01460158172994852, -0.040946684777736664, 0.015068492852151394, 0.00541192339733243, -0.004453341010957956, -0.009196733124554157, 0.02740626409649849, -0.008828863501548767, -0.02371342107653618, 0.020034728571772575, 0.012769309803843498, -0.013016914017498493, 0.014842111617326736, 0.050567880272865295, 0.002019743900746107, 0.011085600592195988, -0.028920186683535576, 0.002912888303399086, 0.01621454767882824, -0.018718888983130455, 0.014827962964773178, -0.026769567281007767, -0.0025450189132243395, -0.020841211080551147, -0.008008232340216637, 0.006936458870768547, -0.040946684777736664, -0.010130555368959904, -0.007413981482386589, -0.003501832950860262, -0.0020055952481925488, -0.04796449840068817, -0.036588847637176514, 0.0058469995856285095, 0.010109331458806992, 0.021619396284222603, 0.01185671053826809, -0.013795099221169949, -0.012507556937634945, -0.01809634082019329, 0.0018128175288438797, -0.020105473697185516, -0.021746736019849777, -0.0038166441954672337, 0.0035212875809520483, -0.009762685745954514, 0.0035212875809520483, 0.00843977089971304, -0.011156344786286354, 0.004828284960240126, 0.0032047077547758818, -0.005815165117383003, -0.0009550453396514058, 0.018860377371311188, 0.014021480455994606, -0.02412373758852482, -0.025722553953528404, -0.01932728849351406, -0.0289626345038414, 0.016639012843370438, -0.01842176355421543, -0.009967843070626259, -0.0036716186441481113, -0.010102257132530212, 0.028014663606882095, 0.009642420336604118, -0.04038073122501373, 0.0007109781727194786, -0.036419063806533813, -0.011156344786286354, 0.01189208310097456, 0.006664094049483538, 0.0057196603156626225, -0.006289150565862656, -0.00048150200746022165, -0.022001415491104126, 0.002048041671514511, 0.03684352710843086, -0.008468068204820156, 0.013222072273492813, 0.010406456887722015, 0.00022616004571318626, -0.012252877466380596, -0.03390057384967804, -0.025807447731494904, 0.01924239471554756, -0.03483439236879349, 0.024378417059779167, -0.030646342784166336, 0.026316804811358452, 0.002815615152940154, -0.01679464988410473, -0.008086050860583782, -0.004350761882960796, -0.0009382435819134116, 0.016313588246703148, -0.014056852087378502, -0.002601614221930504, 0.03158016502857208, 0.013568717986345291, -0.017417196184396744, -0.0004726590123027563, 0.009762685745954514, 0.007909189909696579, 0.010646986775100231, 0.011014856398105621, -0.008036529645323753, -0.03186314180493355, -0.02467554248869419, 0.008885459043085575, -0.007873818278312683, -0.010547945275902748, -0.014686474576592445, -0.039871372282505035, -0.015775933861732483, 0.01292494684457779, 0.018832078203558922, -0.04190880432724953, 0.027844877913594246, -0.009529230184853077, -0.017997298389673233, -0.009026947431266308, -0.018888674676418304, -0.17963340878486633, -0.017403047531843185, 0.03769245743751526, -0.04137114807963371, 0.02962762862443924, -0.014728921465575695, 0.02313332073390484, 0.016115505248308182, -0.008149719797074795, -0.019539520144462585, 0.00654029194265604, -0.011651553213596344, -0.023996397852897644, -0.007272493559867144, -0.02757604978978634, -0.007831371389329433, -0.016497524455189705, 0.0008431812166236341, 0.048021093010902405, 0.0010372853139415383, 0.05795356631278992, -0.044597078114748, -0.012847128324210644, 0.03701331093907356, 0.001952537102624774, -0.002539713168516755, -0.013172551058232784, -0.009769760072231293, 0.012868351303040981, -0.0023893818724900484, 0.007590841967612505, -0.013533346354961395, 0.0322876051068306, -0.009189658798277378, 0.0046903337351977825, -0.004906103014945984, -0.03149527311325073, 0.014014406129717827, -0.028849443420767784, 0.020600682124495506, 0.0017977843526750803, 0.04878513142466545, 0.005762106738984585, 0.020798765122890472, -0.026047976687550545, 0.03885265812277794, 0.011644478887319565, -0.012677342630922794, 0.007527172099798918, 0.011425171978771687, 0.0073078651912510395, -0.04748344048857689, 0.0132857421413064, 0.0037671232130378485, 0.05085085704922676, 0.035428643226623535, 0.01786995865404606, 0.03636246547102928, 0.005984950810670853, 0.001885330188088119, 0.008482217788696289, -0.04943597689270973, 0.013681909069418907, 0.01201234757900238, -0.03746607527136803, -0.0027890861965715885, -0.013165476731956005, 0.019553668797016144, -0.025382982566952705, 0.021591098979115486, -0.001169046270661056, -0.0017677181167528033, 0.009352370165288448, -0.008743970654904842, 0.05102064460515976, -0.006660556886345148, -0.013370634987950325, 0.02839668095111847, 0.03268377482891083, -0.04097498208284378, -0.01378095056861639, 0.04754003509879112, 0.012146761640906334, 0.0012495176633819938, 0.01744549535214901, 0.019567817449569702, 0.018888674676418304, -0.00793748814612627, -0.013172551058232784, -0.011764743365347385, 0.04244646057486534, -0.04683259502053261, -0.0028103094082325697, 0.0015758248046040535, 0.00627146428450942, 0.00925332773476839, -0.02098269946873188, -0.011297832243144512, 0.009005723521113396, -0.009111840277910233, -0.006894012447446585, -0.014474242925643921, -0.01477136742323637, -0.005259823519736528, 0.025552768260240555, 0.020346002653241158, -0.012104315683245659, 0.008574184961616993, 0.05042639374732971, -0.00046514245332218707, -0.013872917741537094, -0.005928355269134045, 0.017671875655651093, 0.041173066943883896, 0.0026263745967298746, 0.006101678591221571, 0.003174641402438283, -0.02354363538324833, 0.005808090325444937, -0.011750594712793827, -0.01496945135295391, -0.012677342630922794, -0.022807897999882698, 0.013349411077797413, 0.013986107893288136, 0.0019719917327165604, -0.0367303341627121, -0.026599781587719917, -0.013639462180435658, 0.011807190254330635, -0.01753038726747036, -0.003929834812879562, -0.014389350078999996, 0.02764679305255413, -0.021180782467126846, 0.02132227085530758, -0.01703517884016037, -0.03890925273299217, -0.032372500747442245, -0.009904174134135246, 0.020346002653241158, 0.014339828863739967, 0.007604990620166063, -0.015521255321800709, 0.0158042311668396, 0.02091195620596409, 0.022086307406425476, -0.018832078203558922, -0.0006428869673982263, -0.016667310148477554, -0.016101356595754623, -0.008453919552266598, -0.02781657874584198, 0.05444465950131416, -0.007880892604589462, 0.01156666036695242, 0.042163483798503876, 0.004226959776133299, 0.018733037635684013, 0.00697183096781373, -0.0013423692435026169, 0.00789504125714302, -0.036249276250600815, 0.0003271914611104876, 0.019638562574982643, -0.010066885501146317, 0.018068043515086174, 0.007619139272719622, -0.0020179753191769123, 0.0008555614622309804, 0.0003291811444796622, -0.02979741431772709, 0.011142195202410221, 0.01612965390086174, -0.016087207943201065, -0.0066110361367464066, -0.014205414801836014, 0.001282236771658063, 0.008545886725187302, 0.0049485499039292336, 0.02689690701663494, -0.009607048705220222, 0.014396424405276775, 0.005723197478801012, -0.018662292510271072, 0.011976975947618484, -0.00740690715610981, -0.020445045083761215, -0.0269110556691885, 0.02911827154457569, 0.009182583540678024, -0.004775226581841707, -0.0050829635001719, -0.020275259390473366, 0.02130812220275402, -0.012323621660470963, 0.013809247873723507, 0.025651810690760612, -0.01587497629225254, 0.030674641951918602, -0.050822559744119644, 0.004191587679088116, -0.012804681435227394, 0.0003764912544284016, 0.01951122283935547, -0.014757218770682812, 0.008942053653299809, 0.007548395544290543, 0.009564601816236973, -0.03763585910201073, 0.022411730140447617, -0.002861598739400506, 0.008694449439644814, -0.0012344844872131944, 0.02212875336408615, -0.006430638488382101, 0.0062077948823571205, -0.029825711622834206, 0.03528715670108795, -0.05110553652048111, -0.028821146115660667, 0.011658627539873123, -0.004375522490590811, -0.013964884914457798, -0.01869059167802334, 0.00843977089971304, 0.0018906360492110252, -0.021619396284222603, -0.0642356425523758, 0.022850343957543373, -0.012458035722374916, 0.0056276931427419186, 0.001036401023156941, -0.010173001326620579, 0.030985916033387184, 0.0020763392094522715, -0.002346935449168086, -0.01670975610613823, 0.0033002120908349752, 0.0012530548265203834, -0.023798314854502678, -0.03305164352059364, -0.010929963551461697, -0.044483888894319534, 0.015988165512681007, 0.009324071928858757, -0.012528779916465282, 0.009550453163683414, 0.02345874346792698, -0.0026918130461126566, 0.015945719555020332, -0.012394365854561329, -0.0025432503316551447, -7.35075373086147e-05, 0.00979098305106163, 0.04502154514193535, 0.01361823920160532, -0.012118464335799217, -0.014516688883304596, -0.02180333063006401, -0.014997748658061028, 0.04171071946620941, 0.020204514265060425, -0.022906938567757607, 0.00567721389234066, 0.006727763917297125, 0.009946620091795921, 0.0011867322027683258, -0.0055463374592363834, -0.025312239304184914, 0.027703389525413513, 0.000890491355676204, -0.01460158172994852, 0.019440477713942528, -0.01324329525232315, -0.0067313010804355145, -0.004969772882759571, -0.0010885747615247965, -0.006494308356195688, 0.025524470955133438, 0.0006672052550129592, -0.013264518231153488, -0.009041096083819866, -0.03381567820906639, 0.026288507506251335, -0.008736896328628063, -0.012939095497131348, -0.0029376486781984568, 0.013561643660068512, 0.010682359337806702, 0.010597465559840202, -0.00017973422654904425, -0.01712007261812687, 0.0046160523779690266, -0.030476557090878487, 0.010031512938439846, 0.002430059714242816, -0.041682422161102295, -0.01695028692483902, 0.009387741796672344, 0.008538812398910522, 0.015846678987145424, 0.008128496818244457, 0.006059232167899609, -0.023472892120480537, 0.010427679866552353, -0.024788731709122658, -0.01098655816167593, 0.014672325924038887, -0.030589748173952103, -0.014290307648479939, -0.001136327045969665, 0.03647565841674805, 0.0005301386117935181, -0.013568717986345291, 0.009274551644921303, -0.005709048826247454, 0.015266576781868935, -0.0355418361723423, 0.016681458801031113, -0.004099620506167412, -0.0007591726025566459, 0.0055003538727760315, 0.03740948066115379, -0.03619268164038658, 0.011135120876133442, 0.009189658798277378, 0.023798314854502678, 0.015337320975959301, -0.01049134973436594, -0.008609556593000889, -0.03305164352059364, -0.01973760314285755, 0.00827705953270197, -0.01049134973436594, 0.005295195616781712, 0.0003212224110029638, 0.003167567076161504, -0.009748537093400955, 0.018336869776248932, -0.020133771002292633, 0.021760884672403336, 0.008248762227594852, -0.013462602160871029, 0.008453919552266598, -0.016992732882499695, -0.01378095056861639, 0.013236220926046371, 0.02335970103740692, 0.01655411906540394, 0.02007717452943325, -0.0040854718536138535, 0.010109331458806992, -0.007795999757945538, 0.02584989368915558, -0.019313139840960503, 0.026373399421572685, 0.0054260725155472755, 0.0032064763363450766, 0.0035407422110438347, -0.044398996978998184, -0.04742684215307236, -0.009897099807858467, 0.0052244518883526325, 0.01915750280022621, -0.012373142875730991, -0.0007436973392032087, 0.05840632691979408, -0.015422213822603226, -0.003151649609208107, 0.008659077808260918, -0.010915813967585564, 0.013413080945611, 0.009380667470395565, 0.0006853334489278495, -0.0026210688520222902, -0.035428643226623535, 0.02427937462925911, -0.00934529583901167, -0.014672325924038887, -0.03339121490716934, -0.0026794327422976494, 0.0009099459857679904, -0.008545886725187302, 0.033447809517383575, 0.017049327492713928, -0.013066435232758522, 0.023345552384853363, 0.005956653039902449, 0.026203613728284836, 0.014827962964773178, 0.00864492915570736, -0.026231911033391953, 0.018251977860927582, -0.0017332304269075394, -0.021930670365691185, 0.007428130134940147, 0.0158042311668396, 0.0087581193074584, -0.052633609622716904, -0.021251527592539787, 0.01712007261812687, -0.003164029913023114, 0.0003179062914568931, 0.007852595299482346, 0.04536111652851105, -0.000273691228358075, -0.008170943707227707, 0.015323171392083168, -0.00909061636775732, -0.03868287429213524, -0.013809247873723507, 0.0004686796455644071, 0.010045661590993404, 0.018860377371311188, -0.03310823813080788], "007f28db-1a5c-40d3-919b-4d993ff0d192": [0.014837371185421944, 0.0014360244385898113, -0.0009941707830876112, -0.017273135483264923, -0.029080653563141823, 0.04324967414140701, 0.006345612462610006, -0.013805141672492027, 0.01749591901898384, -0.008881629444658756, -0.007247885223478079, 0.00451507605612278, -0.010574783198535442, 0.019070254638791084, -0.013181348331272602, 0.004815833643078804, 0.008733107708394527, -0.007351850625127554, 0.02339225262403488, -0.007582060061395168, -0.0068023186177015305, 0.002959305653348565, -0.011748109012842178, -0.02306550368666649, -9.143400529865175e-05, -0.01798604242503643, 0.007611764594912529, -0.014332395978271961, -0.005502748768776655, 0.008035053499042988, 0.021788211539387703, -0.010188625194132328, 0.0022723902948200703, -0.018981141969561577, 0.012230806052684784, -0.01647111587226391, 0.01743650995194912, -0.0016476685414090753, 0.005250261165201664, 0.0007407546509057283, -0.001166827860288322, 0.0011881779646500945, 0.006445865146815777, 0.0017442080425098538, -0.006256499327719212, 0.015936436131596565, -0.012906582094728947, 0.01385712530463934, -0.005421061534434557, 0.017109761014580727, 0.007299867924302816, 0.004336849320679903, -0.027238978073000908, 0.005265113431960344, 0.00015420785348396748, 0.013975942507386208, -0.019278187304735184, 0.010960941202938557, -0.00830239336937666, -0.024268534034490585, 0.01957523077726364, 0.0038244477473199368, -0.02937769889831543, -0.016010697931051254, 0.02042180858552456, -0.009468292817473412, -0.008346949703991413, 0.008792516775429249, -0.029986640438437462, 0.010196051560342312, 0.03395218402147293, 0.03888312354683876, -0.01702064834535122, 0.002834918210282922, 0.020807964727282524, 0.015787914395332336, 0.009921285323798656, -0.0036220860201865435, -0.012951139360666275, 0.014518048614263535, 0.017466215416789055, -0.0018908737692981958, 0.0020997331012040377, -0.0013933242298662663, -0.01909996010363102, -0.006557256914675236, 0.01496361568570137, 0.012052579782903194, 0.013248183764517307, -0.00635303882881999, 0.013426410034298897, 0.030922330915927887, 0.000764425378292799, 0.004425962921231985, 0.02159513346850872, -0.015416608192026615, -0.005558444652706385, 0.01476311031728983, 0.0008131592767313123, -0.02305065095424652, -0.012668946757912636, 0.033922478556632996, -0.02278331108391285, -0.0003014537214767188, -0.03873459994792938, -0.01288430392742157, 0.014399231411516666, -0.0225753802806139, 0.019961388781666756, -0.03320957347750664, -0.03811080753803253, 0.01874350570142269, -0.014599735848605633, 0.009564831852912903, -0.024877475574612617, -0.013975942507386208, 0.028575679287314415, -0.03421952202916145, -0.009475719183683395, -0.005551018752157688, 0.014421509578824043, 0.031427305191755295, 0.02771425060927868, -0.023926932364702225, 0.007686025928705931, 0.003462424734607339, -0.040041595697402954, 0.007110502105206251, -0.009668798185884953, -0.012520425021648407, 0.03701174259185791, -0.010701027698814869, 0.018995994701981544, 0.034278932958841324, -0.014183874242007732, 0.015060154721140862, -0.02055547758936882, 0.013240757398307323, -0.018372200429439545, -0.016842421144247055, 0.027328092604875565, 0.02416456863284111, -0.00291660544462502, -0.0211198627948761, -0.00581835862249136, 0.02019902504980564, 0.0007026958628557622, -0.0043925452046096325, 0.0009932424873113632, -0.03139759972691536, 0.007968218065798283, 0.0009746772120706737, 0.018654393032193184, 0.007333285640925169, 0.0008841714588925242, 0.002292812103405595, -0.0035868119448423386, 0.014592309482395649, -0.017065204679965973, -0.021298088133335114, 0.010530226863920689, 0.034130409359931946, 0.011228281073272228, -0.00576266273856163, -0.00779741769656539, 0.02297639101743698, -0.000727758975699544, -0.00510545214638114, 0.010879253968596458, -0.021208975464105606, -0.009527701884508133, -0.009950989857316017, -0.015995845198631287, 0.004366553854197264, -0.020525773987174034, 0.011651569977402687, -0.00868112500756979, -0.011302541941404343, -0.017377102747559547, -0.022946685552597046, -0.019916832447052002, 0.00131070869974792, -0.005075747612863779, 0.0023596470709890127, -0.02826378121972084, -0.022114960476756096, -0.01972375251352787, 0.024491317570209503, 0.0014063199050724506, 0.006315908394753933, 0.01721372827887535, 0.0323481447994709, 0.021015897393226624, 0.016708752140402794, -0.5603446960449219, -0.010396556928753853, 0.0009691076120361686, 0.00822813156992197, 0.011020350269973278, 0.010337147861719131, -0.006516413297504187, 0.011280263774096966, -0.014005647040903568, 0.029986640438437462, -0.021283237263560295, 0.024639839306473732, -0.022753607481718063, -0.012943712994456291, 0.009446014650166035, -0.02450616843998432, 0.011926336213946342, -0.02667459473013878, 0.001127840718254447, -0.0020570328924804926, -0.005487896502017975, 0.015802765265107155, -0.017733555287122726, 0.0006316836224868894, -0.0058443499729037285, 0.008213279768824577, -0.008413785137236118, -0.017391953617334366, -0.009735632687807083, 0.021342646330595016, -0.016025548800826073, 0.0340115912258625, -3.4664859413169324e-05, -0.017466215416789055, 0.06641914695501328, -0.01938215270638466, -0.037873171269893646, 0.015446312725543976, -0.01232734601944685, 0.06499332934617996, -0.03139759972691536, -0.03178375959396362, 0.004986634012311697, 0.007789991330355406, -0.00905985664576292, -0.010366852395236492, 0.003532972652465105, -0.027164718136191368, 0.012193676084280014, 0.011800091713666916, 0.016278037801384926, -0.004385119304060936, 0.007901382632553577, 0.0004734146350529045, 0.021506020799279213, -0.0005240050377324224, 0.029080653563141823, -0.0211198627948761, 0.0006121901096776128, 0.004938364494591951, -0.009705928154289722, 0.00023786764359101653, -0.01762958988547325, -0.01270607765763998, -0.007106788922101259, -0.009557406418025494, -0.022129813209176064, -0.022619936615228653, 0.0073889815248548985, -0.02431309036910534, -0.01951582171022892, 0.008688551373779774, -0.01896628923714161, -0.005094312597066164, 0.022664492949843407, 0.019946536049246788, 0.05379475653171539, 0.004474232438951731, -0.012609537690877914, 0.013671471737325191, -0.02159513346850872, -0.0020960201509296894, -0.0195009708404541, -0.02076340839266777, 0.005499036051332951, -0.041645634919404984, -0.019129663705825806, -0.02048121578991413, 0.004812120459973812, 0.0014518048847094178, 0.033298686146736145, -0.02444676123559475, 0.016485968604683876, -0.0037687518633902073, 0.010760435834527016, 0.025605233386158943, -0.02888757549226284, -0.013560079969465733, 0.014755683951079845, -0.03127878159284592, -0.05213130638003349, -0.0030558451544493437, -0.009223231114447117, -0.0036536471452564, 0.027684545144438744, -0.017659293487668037, -0.0184167567640543, 0.009527701884508133, 0.04250706359744072, 0.0010972080053761601, 0.017347397282719612, 0.00401010038331151, -0.022545676678419113, -0.018297940492630005, -0.0029277445282787085, -0.04173474758863449, 0.013218479230999947, 0.007459529209882021, -0.0034884160850197077, 0.03166494145989418, 0.002695678733289242, -0.008213279768824577, 0.035734452307224274, 0.008844499476253986, 0.01100549753755331, 0.02340710535645485, -0.015201251022517681, -0.005881480872631073, -0.002623273991048336, 0.01596613973379135, -0.009861876256763935, 0.013218479230999947, 0.025263633579015732, -0.009995546191930771, -0.001090710167773068, 0.003763182321563363, 0.005955741740763187, 0.005491609685122967, 0.009980694390833378, -0.020718852058053017, -0.0157582089304924, -0.008265262469649315, 0.010233182460069656, -0.0076488954946398735, 0.0027588005177676678, -0.018981141969561577, 0.016218628734350204, 0.01500074565410614, -0.03139759972691536, 0.013723454438149929, 0.02333284355700016, 0.016263185068964958, -0.019961388781666756, 0.016649343073368073, 0.011956039816141129, -0.0013766154879704118, 0.003131962614133954, -0.0331798680126667, -0.021966438740491867, -0.022619936615228653, -0.007270163390785456, -0.009832172654569149, -0.030239127576351166, -0.006720631383359432, -0.025575529783964157, -0.026763707399368286, -0.005862915422767401, -0.028783610090613365, -0.0013626915169879794, -0.021817917004227638, -0.012980843894183636, 0.029704447835683823, 0.003894995665177703, 0.00032628478948026896, -0.004121492151170969, -0.005528740119189024, -0.02368929795920849, -0.028234077617526054, 0.010329721495509148, -0.012631816789507866, 0.009646519087255001, -0.0027940745931118727, -0.01200802344828844, -0.004422249738126993, 0.03834844380617142, -0.013990795239806175, 0.015201251022517681, -0.001681086141616106, -0.025040850043296814, 0.009304918348789215, -0.020154466852545738, -0.0006897001294419169, 0.00643843924626708, 0.004927225410938263, 0.025798313319683075, -0.004982921294867992, -0.01895143836736679, 0.004693302791565657, -0.029600482434034348, 0.009594536386430264, 0.03020942397415638, 0.007767713163048029, -0.0014360244385898113, -0.020852522924542427, 0.025189371779561043, -0.03368484228849411, -0.004466806538403034, -0.0019177934154868126, -0.0040212394669651985, 0.002942596795037389, -0.01110946387052536, -0.026095356792211533, -0.009327196516096592, -0.011406508274376392, 0.02873905375599861, 0.013493245467543602, -0.00822813156992197, -0.004552206490188837, -0.006728057283908129, 0.030239127576351166, 0.014993320219218731, -0.005695827770978212, 0.005621566902846098, -0.020941635593771935, -0.004192040301859379, 0.0010656471131369472, 0.005569583736360073, -0.004593050107359886, 0.003991534933447838, -0.005992872174829245, -0.03300164267420769, 0.0044556669890880585, -0.017733555287122726, 0.010411408729851246, 0.033714547753334045, -0.011213429272174835, 0.02368929795920849, -0.013315018266439438, -0.006531265564262867, 0.009022725746035576, 0.026971638202667236, 0.027194421738386154, -0.004834399092942476, -0.005499036051332951, 0.039536621421575546, 0.016218628734350204, 0.023555627092719078, 0.013359575532376766, -0.0211198627948761, 0.02397148869931698, -0.016307741403579712, 0.01624833233654499, 0.0033398938830941916, 0.013567506335675716, -0.0052391220815479755, -0.020451512187719345, 0.017198875546455383, 0.009572258219122887, -8.992557241072063e-07, 0.03463538736104965, 0.021699098870158195, 0.011391655541956425, -0.001638385932892561, 0.014339822344481945, 0.017674146220088005, -0.018491018563508987, -0.012572407722473145, -0.0029054663609713316, -0.023362549021840096, -0.021609986200928688, 0.023243730887770653, 0.009483144618570805, 0.013834846206009388, -0.021268384531140327, -0.013701176270842552, -0.010114364326000214, 0.009601962752640247, 0.008636567741632462, 0.026585480198264122, -0.01577306166291237, -0.007530077360570431, -0.009587110951542854, 0.014844797551631927, 0.011280263774096966, 0.0022185510024428368, -0.0013710459461435676, 0.0143026914447546, -0.005250261165201664, 0.01235705055296421, 0.007834548130631447, -0.005235408898442984, -0.017094910144805908, 0.00668721366673708, -0.012594685889780521, 0.00018542073667049408, 0.015193824656307697, 0.022738754749298096, 0.0024376213550567627, -0.04660627990961075, -0.012119414284825325, 0.01288430392742157, -0.0031635237392038107, -0.027610283344984055, -0.011584734544157982, 0.029347993433475494, -0.012461015954613686, 0.009943563491106033, -0.01441408321261406, -0.01114659383893013, -0.006854301318526268, -0.01270607765763998, -0.017688998952507973, -0.020793113857507706, 0.007091937121003866, -0.011243133805692196, 0.022337744012475014, 0.0021665680687874556, -0.0003532044356688857, 0.018921732902526855, 0.01291400846093893, -0.010507948696613312, -0.03383336588740349, -0.02758057974278927, 0.006089411675930023, -0.060121800750494, 0.012431311421096325, 0.009438588283956051, 0.008562306873500347, -0.042328838258981705, -0.002290955511853099, -0.01589187979698181, -0.050527267158031464, 0.0028293486684560776, -0.005246547982096672, 0.0010043816873803735, 0.012409033253788948, 0.02749146707355976, -0.017659293487668037, 0.02125353179872036, 0.004938364494591951, -0.0078791044652462, -0.02645181119441986, 0.016634490340948105, -0.01507500745356083, -0.013730880804359913, 0.010262886993587017, 0.024832917377352715, 0.031486716121435165, -0.011413933709263802, -0.014280413277447224, 0.0034327202010899782, 0.020718852058053017, 0.0315164178609848, -0.011443638242781162, 0.00012810043699573725, 0.014755683951079845, 0.011191151104867458, 0.018090007826685905, 0.011206002905964851, 0.03285311907529831, 0.007177337072789669, 0.037813760340213776, -0.014599735848605633, 0.0315164178609848, 0.005447052884846926, 0.014042777940630913, -0.0006131183472461998, -0.012178823351860046, 0.013834846206009388, -0.029362846165895462, 0.006405021529644728, -0.00781969539821148, 0.010530226863920689, -0.016411706805229187, -0.014852223917841911, -0.012349624186754227, -0.029392551630735397, 0.0035255467519164085, 0.0053839311003685, 0.04036834463477135, -0.019694048911333084, -0.011592160910367966, 0.0034438595175743103, -0.019634639844298363, -0.038170214742422104, -0.03713056072592735, 0.027313239872455597, -0.007997922599315643, -0.010760435834527016, -0.05908214673399925, -0.02867964468896389, 0.006512700114399195, -0.02256052754819393, -0.009795041754841805, -0.010322295129299164, -0.02244170941412449, -0.020807964727282524, -0.009891580790281296, 0.02318432182073593, 0.022961538285017014, -0.0020848808344453573, 0.0014230286469683051, 0.004741572309285402, 0.03555622324347496, -0.008785090409219265, 0.006820883601903915, -0.017124613747000694, -0.01441408321261406, 0.0029667317867279053, 0.0044556669890880585, -0.002851627068594098, -0.0036907775793224573, 0.016441412270069122, 0.004463093355298042, -0.0027625137008726597, 0.010641618631780148, 0.016307741403579712, -0.00678746635094285, 0.0033398938830941916, -0.0043925452046096325, -0.019768310710787773, 0.01111688930541277, -0.004106639884412289, -0.03814050927758217, -0.0038430129643529654, -0.019664345309138298, -0.021981291472911835, -0.015268086455762386, -0.02896183729171753, 0.021075306460261345, 0.0037334777880460024, 0.013129365630447865, -0.005012625362724066, 0.015565130859613419, 0.01528293825685978, -0.023986341431736946, 0.005510175134986639, 0.0005198278231546283, -0.009512849152088165, 0.021535724401474, -0.010671323165297508, 0.013819994404911995, -0.004674737341701984, 0.009601962752640247, 0.021134713664650917, -0.002591713098809123, 0.04235854372382164, 0.021580280736088753, -0.027342943474650383, 0.03680381178855896, -0.004533641505986452, -0.029763856902718544, 0.003607233753427863, 0.0204960685223341, -0.009780189022421837, 0.02452102117240429, 0.005354226566851139, -0.04494282975792885, -0.032407552003860474, -0.0053468006663024426, -0.0016151793533936143, 0.008933613076806068, -0.0010721449507400393, -0.041497115045785904, -0.00625278614461422, -0.024773510172963142, 0.006935988552868366, -0.020956488326191902, 0.027342943474650383, -0.02410515956580639, -0.0038578652311116457, -0.026422105729579926, -0.015743358060717583, 0.030313389375805855, 0.009668798185884953, -0.012201101519167423, -0.039417803287506104, -0.0054136356338858604, 0.005788654088973999, -0.03606120124459267, 0.010292591527104378, 0.00012798440002370626, 0.017822667956352234, -0.012245658785104752, 0.02401604689657688, -0.0012680086074396968, 0.0132630355656147, 0.0064310128800570965, 0.017466215416789055, -0.00030075752874836326, -0.0008498256793245673, -0.0018379626562818885, -0.0038244477473199368, 0.008012774400413036, 0.007396407425403595, 0.02680826373398304, 0.014859650284051895, -0.0194564126431942, 0.003649933962151408, 0.029466811567544937, -0.0327640064060688, -0.0016847990918904543, -0.011369377374649048, -0.06332988291978836, 0.007864252664148808, -0.0025341606233268976, -0.0015752640319988132, -0.010374278761446476, -0.038021694868803024, -0.01667904667556286, -0.020585183054208755, -0.012446163222193718, 0.020659442991018295, 0.01694638654589653, 0.026288436725735664, -0.010084659792482853, 0.018565280362963676, -0.005317096132785082, 1.638966023165267e-05, 0.010842123068869114, -0.007931087166070938, -0.021268384531140327, -0.019887126982212067, 0.017792964354157448, -0.00167551648337394, 0.01639685593545437, 0.003932126332074404, -0.002955592470243573, 0.014369526877999306, -0.003987822216004133, -0.004214318469166756, -0.010515374131500721, -0.004399971105158329, -0.01531264279037714, -0.03549681603908539, -0.03799198940396309, -0.014874502085149288, 0.001457374426536262, 0.027328092604875565, -0.0034085854422301054, 0.013812568038702011, 0.0195009708404541, -0.002255681436508894, -0.002881331369280815, 0.0033473200164735317, -0.0014518048847094178, 0.010500522330403328, -0.011911483481526375, 0.0036889209877699614, 0.023006094619631767, 0.008517750538885593, -0.02097133919596672, -0.05890392139554024, 0.002112728776410222, 0.004006387200206518, 0.026570629328489304, 0.04883411154150963, 0.002506312681362033, 0.007195902522653341, 0.0323481447994709, -0.0015214246232062578, -0.0219515860080719, -0.009386605583131313, 0.013485819101333618, 0.025798313319683075, 0.02144661173224449, -0.007552355993539095, 0.019203925505280495, -0.004507650155574083, -0.0024970301892608404, -0.011896631680428982, -0.0006975904107093811, -0.017540477216243744, 0.0010118077043443918, -0.020436659455299377, 0.009824746288359165, 5.59569125471171e-05, 0.03380366042256355, 0.01568394899368286, 0.010634192265570164, 0.01510471198707819, -0.00851032417267561, -2.1669162379112095e-05, 0.013768011704087257, 0.018387053161859512, 0.048923224210739136, 0.029570776969194412, 0.005606714636087418, 0.01985742338001728, 0.010158920660614967, -0.011094611138105392, -0.014844797551631927, -0.010173773393034935, 0.04835883900523186, -0.006067133508622646, -0.0024209124967455864, -0.012869452126324177, 0.00830239336937666, 0.029273733496665955, 0.009074708446860313, 0.0024190559051930904, 0.00661666551604867, -0.025055700913071632, 0.0010591491591185331, 0.023288287222385406, -0.021357497200369835, -0.000365736021194607, -0.022486267611384392, -0.01722857914865017, -0.0019363586325198412, 0.001678301254287362, 0.007329572457820177, -0.006546117831021547, -0.02055547758936882, -0.032466962933540344, -0.016515672206878662, -0.009438588283956051, 0.02040695585310459, 0.0011046341387555003, 0.00011556886602193117, 0.0048678163439035416, 0.01785237342119217, -0.04235854372382164, 0.0026529785245656967, 0.0076488954946398735, -0.01993168517947197, 0.010649044066667557, 0.014258135110139847, -0.006568395998328924, 0.015052729286253452, 0.03659588098526001, 0.018565280362963676, -0.0019103672821074724, -0.009609389118850231, 0.013426410034298897, -0.0052391220815479755, -0.020733704790472984, 0.034071002155542374, 0.0015650531277060509, 0.0036165164783596992, 0.003854152048006654, 0.015431460924446583, -0.008532602339982986, -0.019278187304735184, -0.002073741750791669, -0.005992872174829245, 0.026837969198822975, -0.017867226153612137, 0.03451656922698021, 0.007195902522653341, -0.0012318063527345657, 0.01673845574259758, -0.03306104987859726, -0.028783610090613365, -4.919799175695516e-05, 0.014503196813166142, -0.010782714933156967, -0.010715879499912262, -0.02223377861082554, -0.010203477926552296, -0.010270312428474426, -0.014079907909035683, 0.011517900042235851, 0.028234077617526054, 0.0014276700094342232, 0.01944156177341938, -0.016857273876667023, 0.004748998675495386, -0.01993168517947197, -0.0231991745531559, -0.01972375251352787, -0.03626913204789162, -0.02777365781366825, -0.004362840671092272, -0.027417205274105072, 0.009765337221324444, 0.010812418535351753, -0.025679495185613632, -0.039625734090805054, -0.02512996271252632, -0.02665974199771881, 0.010767862200737, -0.027951885014772415, 0.002045893808826804, 0.027595432475209236, 0.0022686771117150784, 0.013032826595008373, 0.012572407722473145, 0.0077751390635967255, -0.007336998358368874, 0.0006474641268141568, 0.02187732607126236, 0.0036982037127017975, -0.00204032426699996, 0.017481068149209023, 0.001208599773235619, -0.019768310710787773, -0.015297790989279747, 0.01762958988547325, -0.01246844232082367, 0.03062528558075428, 0.011324821040034294, -0.0006975904107093811, -0.023436808958649635, -0.016515672206878662, -0.024120012298226357, 0.008525176905095577, 0.016783012077212334, 0.009594536386430264, -0.0061042639426887035, -0.004214318469166756, 0.019768310710787773, 0.009661371819674969, -0.021535724401474, 0.02348136529326439, 0.0020848808344453573, -0.015223529189825058, 0.009371752850711346, -0.019916832447052002, 0.013359575532376766, -0.010032677091658115, -0.0290212444961071, 0.013678898103535175, -0.03626913204789162, 0.003987822216004133, 0.013552654534578323, 0.018431609496474266, -0.005725532304495573, 0.0015437030233442783, 0.0081910016015172, -0.028382599353790283, 0.015268086455762386, 0.013129365630447865, -0.011644143611192703, 0.007381555158644915, -0.0012939999578520656, 0.004403684288263321, -0.01131739467382431, 0.0056921145878732204, 0.01079756673425436, -0.005369078833609819, -0.014911632984876633, 0.0219515860080719, 0.029808413237333298, -0.02270905114710331, -0.0011835366021841764, -0.01319620106369257, -0.0011798235354945064, -0.0184613149613142, -0.040516868233680725, 0.017258284613490105, -0.008933613076806068, -0.017258284613490105, -0.015327494591474533, -0.01426556147634983, -0.027179569005966187, -0.006189664360135794, 0.010730731301009655, -0.0015158550813794136, -0.001748849404975772, 0.317481130361557, -0.023511070758104324, -0.013582359068095684, -0.0011129885679110885, -0.010433686897158623, -0.030090605840086937, -0.00619709026068449, 0.009290065616369247, 0.018387053161859512, 0.02193673513829708, -0.027194421738386154, -0.023659592494368553, 0.007856826297938824, -0.01200802344828844, -0.005331948399543762, -0.008250410668551922, -0.027833066880702972, -0.00625278614461422, -0.010515374131500721, 0.02152087166905403, 0.02450616843998432, -0.01959008350968361, -0.004273727536201477, 0.008666272275149822, 0.014844797551631927, -0.0031059712637215853, 0.01159958727657795, -0.004975494928658009, 0.01813456602394581, 0.03763553500175476, -0.0012633672449737787, 0.01569879986345768, 0.01604040153324604, -0.006256499327719212, -0.005877767689526081, 0.005758950021117926, 0.05750780925154686, 0.019545527175068855, 0.00598915945738554, 0.012602112255990505, 0.01855042763054371, -0.020540624856948853, 0.0125352768227458, -0.016842421144247055, -0.02570919878780842, 0.0031059712637215853, -0.005603001452982426, -0.009661371819674969, 0.0032582066487520933, 0.014124465174973011, -0.013315018266439438, -0.004451954271644354, 0.021535724401474, 0.016159219667315483, 0.015743358060717583, -0.015550278127193451, 0.027833066880702972, 0.016693899407982826, 0.0020867374259978533, -0.00029658034327439964, 0.00025016715517267585, 0.033298686146736145, -0.03430863842368126, -0.0015956858405843377, -0.024491317570209503, 0.0018788062734529376, -0.01183722261339426, -0.014859650284051895, 0.003794743213802576, -0.012401606887578964, 0.011762961745262146, -0.003206223715096712, -0.0012448020279407501, -0.0043479884043335915, -0.039061348885297775, -0.02853112295269966, 0.03157582879066467, 0.01055993139743805, 0.04173474758863449, 0.029942084103822708, -0.0041289180517196655, 0.026704298332333565, -0.0037780343554913998, 0.009839598089456558, -0.02570919878780842, -0.016708752140402794, 0.028649939224123955, -0.013485819101333618, -0.00671691820025444, -0.008005348965525627, -0.0024933170061558485, 0.01609981060028076, -0.010121790692210197, 0.02104560099542141, -0.006768900901079178, 0.028976688161492348, -0.008213279768824577, 0.022397153079509735, -0.0025360172148793936, 0.021788211539387703, -0.0360909029841423, 0.050170812755823135, 0.03582356497645378, 0.006419873796403408, -0.03410070762038231, -0.0053653656505048275, -0.010723305866122246, 0.028516270220279694, -0.00045600967132486403, -0.012074857950210571, 0.0057366713881492615, -0.04687361791729927, 0.009431161917746067, 0.009802468121051788, -0.01336700189858675, -0.01218624971807003, -0.01791178248822689, -0.01811971329152584, -0.020020797848701477, -0.020926782861351967, 0.008257836103439331, -0.013626915402710438, 0.0028980402275919914, 0.015067581087350845, -0.016084957867860794, 0.003716768929734826, -0.03671469911932945, -0.007767713163048029, 0.027164718136191368, -0.05533938482403755, 0.044408150017261505, -0.020718852058053017, 0.00779741769656539, 0.0007091937004588544, 0.0067354836501181126, 0.006835735868662596, 0.0021182983182370663, -0.009950989857316017, -0.003425294067710638, 0.0053022438660264015, 0.02242685854434967, 0.01368632446974516, 0.02535274624824524, -0.014948762953281403, 0.011042628437280655, 0.0003975290455855429, 0.006315908394753933, 0.01218624971807003, 0.0219515860080719, 0.021609986200928688, -0.03920987248420715, -0.008695976808667183, 0.02952622063457966, -0.0261102095246315, 0.019604936242103577, -0.005599288269877434, -0.015201251022517681, -0.06624092161655426, 0.022545676678419113, 0.02862023562192917, -0.01117629837244749, 0.009683649986982346, 0.020035650581121445, -0.043635834008455276, -0.01868409849703312, -0.03154612332582474, -0.1936729997396469, 0.0026009955909103155, 0.049071747809648514, -0.012245658785104752, 0.023377399891614914, 0.01006980799138546, -0.011102037504315376, 0.006412447430193424, -0.022278334945440292, 0.007073371671140194, 0.045239873230457306, -0.01531264279037714, 0.0034531420096755028, -0.039477210491895676, -0.001501002931036055, 0.003635081695392728, -0.03451656922698021, 0.0018166126683354378, 0.043012041598558426, 0.007678599562495947, 0.024402203038334846, -0.03944750502705574, -0.0034754204098135233, 0.024818066507577896, 0.010114364326000214, 0.030402502045035362, -0.007084510754793882, 0.0040657962672412395, -0.017555328086018562, -0.03077380731701851, -0.016634490340948105, -0.006884005852043629, 0.0327640064060688, 0.007544929627329111, -0.006924849469214678, -0.02340710535645485, -0.005706966854631901, 0.006709492299705744, 0.005320809315890074, 0.0016058967448771, 0.000290314550511539, 0.040457457304000854, -0.0061079771257936954, 0.01687212660908699, -0.004786129109561443, 0.03285311907529831, 0.02070399932563305, 0.015550278127193451, 0.01804545149207115, 0.002224120544269681, -0.008346949703991413, -0.014941337518393993, 0.014362100511789322, 0.01645626313984394, 0.027253830805420876, 0.026422105729579926, -0.00024111657694447786, 0.007931087166070938, -0.008866777643561363, -0.007634043227881193, -0.011027776636183262, 0.007184763438999653, 0.004697015974670649, 0.013582359068095684, 0.01517154648900032, -0.0013794002588838339, -0.004121492151170969, 0.02541215531527996, -0.009475719183683395, 0.01681271754205227, 0.02486262284219265, -0.03157582879066467, -0.0010313013335689902, -0.01287687849253416, 0.029422255232930183, -0.005376505199819803, -0.011569882743060589, -0.0045484937727451324, 0.009698501788079739, -0.0056735496036708355, -0.02318432182073593, 0.032823413610458374, -0.007463242392987013, -0.018075156956911087, -0.008985595777630806, 0.01097579300403595, 0.010500522330403328, -0.012409033253788948, -0.027313239872455597, 0.024966588243842125, 0.03463538736104965, -0.04384376481175423, -0.003165380097925663, -0.009624240919947624, -0.022308040410280228, 0.026986490935087204, 0.0021758507937192917, -0.019916832447052002, -0.013723454438149929, -0.012223380617797375, -0.01993168517947197, 0.0029054663609713316, -0.01285459939390421, 0.005799793638288975, -0.007745434530079365, -0.013634341768920422, 0.02013961598277092, 0.037189967930316925, 0.01420615240931511, -0.04779445752501488, 0.012409033253788948, -0.017867226153612137, 0.026971638202667236, 0.015089859254658222, 0.000507760385517031, 0.00804990530014038, -0.004188327118754387, -0.01451062224805355, 0.013589784502983093, 0.001054507913067937, -0.015149268321692944, -0.0157582089304924, 0.022946685552597046, 0.02533789351582527, -0.002911035902798176, 0.009512849152088165, -0.02848656475543976, -0.00975791085511446, 0.009468292817473412, 0.022114960476756096, -0.004559632856398821, 0.029600482434034348, 0.01902569830417633, 0.018372200429439545, -0.026407254859805107, -0.01201544888317585, -0.044348739087581635, -0.021001044660806656, -0.0246546920388937, 0.010002972558140755, 0.012594685889780521, 0.017406806349754333, -0.010671323165297508, 0.0031802323646843433, -0.0071699111722409725, 0.021654542535543442, 0.008124166168272495, -0.03175405412912369, -0.019753457978367805, -0.01728798821568489, 0.010507948696613312, -0.0015734074404463172, -0.03436804562807083, 0.031011443585157394, 0.013107087463140488, 0.012594685889780521, 0.018283087760210037, -0.0021015896927565336, 0.006969406269490719, -0.0036555035039782524, -0.0064235869795084, 0.009134117513895035, -0.032882824540138245, -0.002587999915704131, 0.01562453992664814, -0.014562605880200863, 0.005450766067951918, -0.008666272275149822, -0.008554880507290363, -0.024818066507577896, -0.004147483501583338, 0.00045067217433825135, -0.010047529824078083, 0.042804110795259476, 0.001857456285506487, -0.01496361568570137, -0.017971191555261612, 0.006709492299705744, -0.0076488954946398735, -0.028560826554894447, 0.024357646703720093, 0.0034735638182610273, 0.015431460924446583, 0.016070106998085976, -0.013812568038702011, 0.017377102747559547, 0.004102926701307297, -0.011941188015043736, 0.0009287281427532434, 0.023496218025684357, -0.002073741750791669, 0.0050237649120390415, 0.004062083084136248, -0.006594387348741293, 0.011161446571350098, 0.0005281821941025555, -0.031694646924734116, 0.011532751843333244, -0.016708752140402794, 0.03056587651371956, -0.032526370137929916, -0.012267936952412128, -0.0039135608822107315, -0.035942383110523224, 0.017688998952507973, -0.03136789798736572, -0.008324671536684036, -0.004797268193215132, 0.02423882856965065, -0.010017825290560722, 0.03222932666540146, 0.04268529266119003, -0.012082284316420555, 0.021832769736647606, -0.0125352768227458, -0.010114364326000214, -0.009661371819674969, 0.007433537859469652, 0.039061348885297775, -5.615996997221373e-05, -0.006635230965912342, -0.013448689132928848, 0.020451512187719345, 0.004774990025907755, 0.007589486427605152, 0.030595581978559494, -0.017347397282719612, -0.001421172171831131, -0.07948910444974899, 0.04250706359744072, 0.00269196555018425, -0.0025044563226401806, -0.029971787706017494, -0.0009496140410192311, 0.012720929458737373, -0.015089859254658222, 0.00401010038331151, 0.002656691474840045, -0.017599884420633316, 0.01065647043287754, -0.002955592470243573, -0.026971638202667236, -0.020095059648156166, -0.02521907538175583, 0.035318586975336075, 0.005161147564649582, 0.00013436621520668268, -0.00408064853399992, 0.0006818099063821137, -0.005261400248855352, 0.03508095443248749, 0.04221002012491226, -0.01811971329152584, 0.006921136286109686, 0.005153721664100885, 0.01204515341669321, -0.004904946777969599, 0.020570330321788788, -0.009824746288359165, -0.019263334572315216, 0.003024284029379487, 0.026199322193861008, 0.0012169540859758854, -0.012082284316420555, 0.01048566959798336, 0.016144366934895515, 0.027654841542243958, 0.006601813714951277, -0.0034401463344693184, -0.01624833233654499, 0.021268384531140327, 0.015743358060717583, -0.01589187979698181, 0.012735782191157341, -0.018698949366807938, -0.0066463700495660305, 0.0024227690882980824, 5.5695840273983777e-05, 0.019263334572315216, 0.01598099246621132, -0.0019215064821764827, -0.01198574434965849, -0.04550721496343613, -0.02811525948345661, 0.010493095964193344, 0.017896929755806923, -0.013961090706288815, -0.022605083882808685, 0.02395663782954216, 0.00124108896125108, 0.009988120757043362, -0.02521907538175583, -0.01722857914865017, -0.018387053161859512, 0.002615847857668996, -0.013218479230999947, 0.01549086906015873, -0.030595581978559494, -0.03995248302817345, 0.005380217917263508, -0.01730284094810486, 0.006189664360135794, -0.017674146220088005, 0.015921583399176598, 0.0018101148307323456, 0.000949149951338768, -0.019842570647597313, 0.0292291771620512, 0.0032229325734078884, -0.012416458688676357, -0.03855637460947037, 0.015253233723342419, 0.017109761014580727, -0.010032677091658115, 0.01198574434965849, -0.014948762953281403, -0.018906880170106888, 0.004273727536201477, -0.01229764148592949, 0.019916832447052002, 0.022412005811929703, 0.02397148869931698, 0.02576860785484314, 0.03347691148519516, 0.025397302582859993, -0.003532972652465105, 0.021060453727841377, 2.66295737674227e-05, 0.004975494928658009, 0.002911035902798176, -0.01048566959798336, -0.03145701065659523, -0.006638944149017334, -0.004195753019303083, -0.008294967003166676, -0.07140949368476868, -0.001021090429276228, 0.00975791085511446, -0.032526370137929916, -0.009446014650166035, 0.0015817618696019053, 0.04105154797434807, -0.006074559409171343, 0.015877027064561844, -0.016233481466770172, -0.009446014650166035, -0.020822817459702492, 0.0048715295270085335, 0.025397302582859993, 0.04657657444477081, 0.010782714933156967, -0.013812568038702011, 0.00865142047405243, -0.002290955511853099, -0.0005629921215586364, -0.02535274624824524, 0.01479281485080719, 0.011451064608991146, 0.02138720266520977, 0.010753010399639606, 0.003493985626846552, -0.03460568189620972, -0.019812867045402527, 0.01145849097520113, -0.0037353343795984983, -0.006100550759583712, -0.03528888523578644, 0.054537367075681686, -0.012379328720271587, 0.0026009955909103155, -0.016886979341506958, -0.004099213983863592, 0.03315016254782677, 0.0010869971010833979, -0.0135749327018857, -0.0030409928876906633, -0.015223529189825058, 0.00020421807130333036, -0.02083767019212246, -0.022129813209176064, -0.007997922599315643, -0.020243581384420395, -0.007355563808232546, -0.017807817086577415, 0.014421509578824043, -0.0027476614341139793, -0.0016244619619101286, 0.01159958727657795, -0.008465767838060856, 0.03237784653902054, 0.01902569830417633, -0.009438588283956051, -0.031635235995054245, 0.005959454923868179, 0.014354674145579338, 0.006230507977306843, 0.0034735638182610273, 0.00442967563867569, 0.012000597082078457, -0.021402055397629738, -0.03214021399617195, -0.0028256354853510857, -0.011324821040034294, -0.001024803495965898, -0.008309818804264069, 0.010233182460069656, 0.013819994404911995, -0.0092306574806571, 0.020793113857507706, -0.03208080306649208, -0.02223377861082554, 0.006464430596679449, 0.008703403174877167, -0.0030521319713443518, -0.009215804748237133, 0.011436212807893753], "d44e0165-c1b2-4295-9dcc-bf9de3a9fd06": [-0.01725584641098976, -0.016918323934078217, -0.020110726356506348, -0.016946449875831604, -0.00260349502786994, 0.020406058058142662, -0.017241783440113068, -0.046746887266635895, 0.0029621128924191, -0.0159760732203722, 0.01784651167690754, 0.020251359790563583, -0.00952095165848732, -0.011932832188904285, -0.0011198017746210098, -0.01788870058953762, -0.0014485347783192992, 0.00010047671821666881, 0.030348913744091988, -0.0021042427979409695, 0.002564820693805814, 0.005829297471791506, -0.002860153093934059, -0.00229058344848454, 0.0026738124433904886, -0.0019723980221897364, 0.02441413886845112, -0.026551783084869385, 0.004419437609612942, 0.007256737444549799, 0.021784275770187378, -0.0015355523210018873, 0.010153806768357754, -0.032205287367105484, -0.021503007039427757, -0.004823761526495218, 0.007453625556081533, -0.01468223612755537, 0.015722930431365967, 0.00959830079227686, -0.008332590572535992, -0.020377930253744125, 0.012087530456483364, 0.015708867460489273, -0.02238900400698185, 0.01888720504939556, -0.005572639871388674, 0.020490437746047974, 0.011757039465010166, 0.025961117818951607, -0.014429094269871712, 0.012727417051792145, -0.03504610434174538, -0.01852155663073063, 0.007098523434251547, 0.0024066069163382053, 0.0004632147029042244, 0.04044646769762039, 0.005614830181002617, -0.025764230638742447, 0.02015291526913643, -0.0054952907375991344, -0.015104139223694801, -0.0022360875736922026, 0.022965604439377785, -0.018816888332366943, -0.02852066606283188, -0.008817779831588268, -0.007474720478057861, 0.00044959073420614004, 0.019857583567500114, 0.03670559078454971, -0.003870963118970394, 0.010871042497456074, 0.02354220673441887, -0.0024470393545925617, -0.021657703444361687, 0.02756435051560402, 0.0054460689425468445, 0.0252157561480999, 0.024048490449786186, -0.007777084596455097, -0.006110566668212414, -0.007031721994280815, 0.013311049900949001, 0.010013172402977943, -0.00175001984462142, 0.026326768100261688, 0.01673549972474575, -0.0184793658554554, 0.003352373605594039, 0.02290935069322586, 0.001260436256416142, 0.021418625488877296, 0.007650513667613268, -0.001411618199199438, -0.021067040041089058, 0.014330649748444557, -0.02506105788052082, -0.048687644302845, -0.015315091237425804, 0.005147220566868782, -0.022403066977858543, -0.006560596637427807, -0.042330969125032425, -0.006683651823550463, 0.014527537859976292, -0.02079983428120613, 0.004795634653419256, -0.01864812709391117, -0.009134206920862198, 0.03904012218117714, 0.0008424881962127984, -0.018338730558753014, -0.012628973461687565, 0.025707976892590523, 0.02008259855210781, 0.004647968336939812, -0.02995513565838337, -0.02558140456676483, 0.0006873508682474494, -0.012593814171850681, 0.03079894371330738, 0.0027212765999138355, 0.012790702283382416, 0.014555664733052254, -0.0304332934319973, -0.011911737732589245, -0.014527537859976292, -0.014415030367672443, 0.06210416927933693, -0.02127799205482006, 0.018465302884578705, -0.003584420308470726, -0.020293550565838814, 0.01919660158455372, 0.0017675991402938962, 0.036114923655986786, -0.015329154208302498, 0.003018366638571024, 0.01189064234495163, 0.028464412316679955, 0.0033224886283278465, -0.008958414196968079, -0.002204444957897067, 0.01871844381093979, -0.0033084251917898655, 0.02302185818552971, 0.025159502401947975, 0.018943458795547485, -0.014267364516854286, -0.006490279454737902, 0.002526146126911044, -0.02071545273065567, 0.0021604965440928936, 0.010449139401316643, -0.00461984146386385, 0.019970091059803963, 0.00633558165282011, -0.02151707001030445, 0.0005682510673068464, 0.012987591326236725, 0.03394915536046028, -0.001926691853441298, 0.035918038338422775, 0.05096592381596565, 0.00038103145197965205, -0.015230710618197918, 0.012460211291909218, -0.0020602946169674397, -0.003677590750157833, 0.0349898487329483, 0.002758193062618375, 0.013149320147931576, -0.01971694827079773, 0.02278278023004532, 0.020110726356506348, 0.009366254322230816, 0.013880619779229164, -0.023570332676172256, -0.03904012218117714, 0.022557765245437622, -0.0014687509974464774, 0.006528954021632671, -0.0030289143323898315, -0.012516465038061142, 0.013339176774024963, -0.004433501046150923, 0.006975468248128891, -0.01632765866816044, 0.012931336648762226, 0.03091145120561123, -0.004837824963033199, -0.00511909369379282, -0.5593875646591187, -0.016524547711014748, 0.021095165982842445, 0.0001872196007752791, 0.028422221541404724, 0.01435877662152052, -0.012277387082576752, 0.00767864054068923, -0.03777441009879112, 0.027353398501873016, -0.007154777180403471, -0.0021095166448503733, 0.005238633137196302, 0.004113557282835245, -0.0141829838976264, -0.015863565728068352, -0.008606827817857265, 0.010913233272731304, 0.013226669281721115, 0.012797734700143337, -0.028112825006246567, 0.01037882175296545, -0.019576314836740494, 0.03358350694179535, 0.008395876735448837, -0.010308505035936832, -0.005794139113277197, -0.0227124635130167, -0.006986015941947699, 0.02441413886845112, -0.03915262967348099, 0.019632568582892418, 0.016679244115948677, -0.015596359968185425, 0.06497311592102051, -0.03704311326146126, -0.03119271993637085, 0.027001813054084778, 0.014569728635251522, 0.03805568069219589, -0.01788870058953762, -0.021137356758117676, 0.019154410809278488, 0.013437621295452118, 0.002295857295393944, 0.019857583567500114, -0.01971694827079773, -0.0360867977142334, 0.013529033400118351, -0.0053159818053245544, 0.01764962263405323, -0.021854592487215996, -0.0002935744123533368, 0.013514970429241657, -0.003413901198655367, -0.0054320055060088634, 0.02302185818552971, -0.021418625488877296, 0.003853383706882596, -0.015722930431365967, -0.03417417034506798, 0.027339335530996323, -0.019731013104319572, 0.00651489058509469, -0.02441413886845112, 0.00641293078660965, -0.0207576435059309, -0.012333640828728676, -0.009408444166183472, -0.026326768100261688, -0.020265422761440277, -0.007305959239602089, 0.006458636838942766, 0.01812778040766716, 0.012853988446295261, 0.025806419551372528, 0.04337166249752045, -0.038786981254816055, -0.004517881665378809, 0.005955868866294622, 0.004503818228840828, -0.009120143949985504, -0.01031553652137518, -0.02382347546517849, 0.001638391287997365, -0.004046756308525801, -0.007418466731905937, 0.010512424632906914, -0.0012200038181617856, 0.0180433988571167, 0.03811193257570267, 0.003526408690959215, 0.02812688797712326, 0.003965891432017088, -0.010547582991421223, 0.03482108935713768, -0.05237226560711861, 0.010730408132076263, 0.0024997771251946688, 0.009542047046124935, -0.04517178237438202, 0.010582742281258106, 0.00970377679914236, 0.003990502562373877, 0.03310534730553627, -0.009872538037598133, -0.03690247982740402, -8.229312516050413e-05, 0.04334353655576706, -0.008656050078570843, -0.005910162348300219, 0.0024066069163382053, -0.022318685427308083, -0.002308162860572338, 0.016876133158802986, -0.03110833838582039, 0.018985649570822716, 0.030573928728699684, -0.012481306679546833, 0.004106525797396898, 0.01334620825946331, -0.014597855508327484, 0.04345604404807091, 0.00695085758343339, 0.013212606310844421, 0.0367337167263031, 0.03690247982740402, 0.02538451738655567, -0.011475770734250546, 0.007882560603320599, -0.033921029418706894, -0.01784651167690754, 0.023767221719026566, -0.019295046105980873, -0.004915173631161451, 0.006349645089358091, -0.007516910787671804, -0.00820602010935545, 0.004679610952734947, -0.024751661345362663, -0.02573610283434391, -0.01856374740600586, -0.0025823998730629683, -0.0025226303841918707, -0.00592774199321866, -0.040418338030576706, -0.003899089992046356, 0.0007941451040096581, -0.03155836835503578, -0.0014784196391701698, 0.032852206379175186, 0.004655000288039446, 0.015272900462150574, 0.0006192310247570276, 0.016819879412651062, -0.0029076170176267624, -0.006184399593621492, -0.009120143949985504, -0.006810222752392292, -0.006655524950474501, 0.0032539295498281717, -0.0051015145145356655, 0.0018704381072893739, -0.009549078531563282, 0.010716344229876995, -0.03484921529889107, -0.002026893896982074, -0.011081994511187077, -0.009542047046124935, -0.024470392614603043, 0.008184924721717834, 0.023176556453108788, -0.0048940787091851234, -0.004447564482688904, -0.005305434577167034, 0.02084202505648136, -0.013367303647100925, -0.009478761814534664, 0.012959464453160763, -0.011081994511187077, 0.015005694702267647, 0.017382416874170303, -0.0005612193490378559, 0.005003070458769798, 0.013739985413849354, 0.0003551019763108343, 0.022839033976197243, 0.021882720291614532, 0.011011676862835884, 0.011328104883432388, -0.012403957545757294, 0.021615514531731606, -0.006518406327813864, -0.02223430573940277, 0.03355537727475166, 0.001517973025329411, 0.03397728130221367, 0.010210060514509678, -0.011433579958975315, 0.026242386549711227, 0.023359380662441254, 0.028028445318341255, 0.022135861217975616, -0.03183963894844055, 0.020096661522984505, -0.015104139223694801, 0.015019758604466915, -0.0028197206556797028, -0.005713274236768484, 0.023359380662441254, 0.0011408969294279814, -0.050656527280807495, -0.008543542586266994, -0.009513920173048973, -0.005699210800230503, -0.000498373294249177, -0.004004565998911858, 0.004795634653419256, -0.022051481530070305, -0.010266314260661602, 0.0010459687327966094, -0.021699894219636917, 0.014865060336887836, -0.04207782447338104, -0.005966416094452143, -0.0005493533099070191, 0.03091145120561123, 0.0186903178691864, 0.004574135411530733, -0.03234592080116272, -0.019379425793886185, -0.0295613594353199, -0.014991631731390953, 0.0013808544026687741, 0.006184399593621492, -0.012664131820201874, 0.019351299852132797, -0.007418466731905937, 0.01856374740600586, 0.023317189887166023, 0.00031225240672938526, 0.03394915536046028, -0.001728045754134655, 0.014035317115485668, -0.014963504858314991, 0.017593368887901306, 0.036030545830726624, 0.008213051594793797, -0.01980132982134819, 0.013430589810013771, -0.0360867977142334, 0.01521664671599865, -0.021263927221298218, 0.024723535403609276, -0.0008200745796784759, -0.003531682537868619, 0.0033699527848511934, -0.0030851680785417557, 0.014302522875368595, 0.027508096769452095, 0.03231779485940933, 0.03231779485940933, -0.00806538574397564, 0.014126730151474476, -0.00727080088108778, -0.017902765423059464, 0.008318527601659298, -0.030208278447389603, -0.007228610571473837, -0.02082796022295952, 0.009682681411504745, -0.020729517564177513, 0.020645136013627052, 0.018338730558753014, -0.0018300056690350175, -0.017607431858778, 0.017579305917024612, 0.0012446148321032524, 0.031417734920978546, -0.004574135411530733, -0.03690247982740402, -0.039096374064683914, 0.03406166285276413, 0.035074230283498764, -0.013993127271533012, -0.019871646538376808, 0.002394301351159811, -0.012896178290247917, -0.002385511761531234, 0.003329520346596837, 0.016510482877492905, 0.009731903672218323, 0.024357885122299194, 0.015526042319834232, 0.006936794146895409, -0.028590982779860497, 0.016580801457166672, -0.012797734700143337, -0.042893506586551666, 0.004813213832676411, 0.011321072466671467, 0.0030095770489424467, -0.008852938190102577, -0.01928098313510418, 0.02402036264538765, 0.009668618440628052, -0.00010756337724160403, 0.01749492436647415, 0.025468897074460983, 0.001103101414628327, -0.006455121096223593, -0.024203186854720116, -0.014555664733052254, -0.02382347546517849, -0.04134652763605118, 0.015033821575343609, 0.0027775303460657597, -0.009760030545294285, 0.014295491389930248, 0.000557263963855803, -0.03853383660316467, -0.01163046807050705, -0.022220242768526077, -0.01095542311668396, -0.012059403583407402, 0.028337839990854263, -0.0017693571280688047, 0.01525883749127388, -0.047506313771009445, 0.007049301639199257, -0.019351299852132797, -0.022248368710279465, 0.017635559663176537, -0.010885106399655342, 0.00820602010935545, 0.003498281817883253, 0.02195303700864315, -0.0168480072170496, -0.004795634653419256, -0.006071892101317644, -0.018437175080180168, -0.028155015781521797, -0.005906646605581045, -0.03425855189561844, -0.0015812584897503257, 0.006518406327813864, 0.018901269882917404, 0.024160997942090034, -0.0005511112394742668, -0.012643036432564259, -0.0012463727034628391, 0.01135623175650835, 0.03532737120985985, -0.013304018415510654, -0.016285467892885208, 0.01139139011502266, -0.01159530971199274, 0.017635559663176537, -0.012818829156458378, 0.00489056296646595, 0.01984352059662342, 0.02856285497546196, -0.022135861217975616, 0.004088946618139744, -0.0007686551543883979, 0.020054470747709274, 0.020659198984503746, -0.011482802219688892, 0.0026456855703145266, -0.004465143661946058, 0.005221053492277861, 0.01507601235061884, -0.009077953174710274, -0.0373806357383728, 0.015455725602805614, 0.002886521862819791, -0.03788691759109497, -0.009471729397773743, -0.013648572377860546, 0.016904260963201523, -0.03951827809214592, -0.026383021846413612, 0.014513474889099598, 0.004215517546981573, -0.01123669184744358, -0.0049854908138513565, -0.0006851534126326442, -0.01736835390329361, -0.023471888154745102, -0.031052084639668465, -0.024836042895913124, -0.013275891542434692, -0.022121798247098923, 0.016833942383527756, -0.003951827995479107, -0.02899882197380066, -0.04193719103932381, -0.011081994511187077, -0.0018686801195144653, 0.014963504858314991, 0.02868942730128765, -0.01464004535228014, -0.00017359564662910998, 0.025398580357432365, -0.025075120851397514, -0.01943567954003811, -0.00046892795944586396, -0.02134830877184868, 0.01109605748206377, -0.004155747592449188, 0.018535619601607323, 0.0074958158656954765, 0.001669155084528029, 0.03636806830763817, 0.03588990867137909, -0.003948311787098646, 0.04469362646341324, 0.018226223066449165, 0.0010538793867453933, -0.0019952512811869383, -0.005403878632932901, 0.004338572733104229, -0.003856899682432413, 0.00022281770361587405, 0.028436284512281418, -0.03791504725813866, -0.01063899602741003, -0.0022167505230754614, -0.009260778315365314, 0.004029176663607359, 0.010132711380720139, 0.002534935949370265, 2.840156594174914e-05, 0.03023640625178814, 0.01995602808892727, -0.0171714648604393, -0.009999108500778675, 0.0006548291421495378, 0.004623357206583023, 0.0032644770108163357, -0.02425944246351719, -0.0021921393927186728, -0.013043845072388649, -0.0019231759943068027, 0.01864812709391117, -0.045790575444698334, 0.01899971254169941, -0.0015153361018747091, -0.008044290356338024, 0.02103891223669052, -0.005312466062605381, -0.05895395949482918, -0.011539055965840816, 0.03254280984401703, -0.011208564974367619, 0.02143268845975399, 0.004904626403003931, -0.041177764534950256, -0.034877341240644455, 0.010188965126872063, 0.0018686801195144653, 0.02732527256011963, -0.01645422913134098, -0.0432591550052166, -0.018254350870847702, 0.011250755749642849, 0.0018563746707513928, 0.0034859762527048588, 0.01919660158455372, -0.02681898884475231, 0.009647523052990437, -0.0030869259499013424, 0.005105030257254839, 0.014457221142947674, -0.008177893236279488, 0.0017834205646067858, -0.02864723652601242, -0.009675649926066399, -0.010477266274392605, -0.015793247148394585, -0.025482961907982826, -0.012221133336424828, 0.04688752442598343, 0.018029335886240005, 0.0067293583415448666, 0.009035763330757618, -0.0044018579646945, -0.03349912539124489, 0.004595230333507061, -0.01482287049293518, -0.03119271993637085, 0.0171714648604393, -0.0406433530151844, -0.0025700945407152176, 0.008684176951646805, -0.0065219225361943245, -0.004194422159343958, -0.023457825183868408, 0.02108110301196575, 0.014625982381403446, 0.010034267790615559, 0.01198908593505621, 0.019984154030680656, -0.03167087584733963, -0.00043047324288636446, -0.005706242751330137, 0.0019759139977395535, -0.0014151340583339334, -0.004507333971560001, 0.0038498679641634226, -0.02525794692337513, 0.015765121206641197, 0.00902169942855835, 0.01404234953224659, 0.013086034916341305, -0.00027050156495533884, 0.005878519732505083, -0.0008468830492347479, 0.018198097124695778, 0.017635559663176537, -0.016637055203318596, -0.007095007691532373, 0.014091570861637592, -0.0007998584187589586, -0.006001574918627739, -0.011609373614192009, 0.02442820370197296, 0.005899615120142698, 0.00727080088108778, 0.017705876380205154, 0.0018001209245994687, 0.00042278229375369847, -0.01689019612967968, -0.01175000797957182, -0.039771419018507004, -0.019210664555430412, -0.02497667632997036, -0.010041299276053905, 0.029533233493566513, 0.009232651442289352, -0.020771706476807594, 0.01995602808892727, -0.005045260768383741, -0.016833942383527756, -0.008318527601659298, -0.03566489368677139, 0.015582296065986156, 0.0024523132015019655, 0.01468223612755537, 0.05493181198835373, 0.013972031883895397, -0.009324063546955585, -0.055550605058670044, -0.004665547516196966, 0.0065852077677845955, 0.03158649429678917, 0.04880015179514885, -0.00852244719862938, -0.000830182689242065, 0.019182538613677025, 0.021685831248760223, -0.0016621233662590384, -0.015807311981916428, 0.014527537859976292, 0.024723535403609276, -0.015483852475881577, -0.027058066800236702, 0.0013878861209377646, -0.04657812789082527, 0.009928791783750057, -0.02612987905740738, -0.01669330894947052, -0.01852155663073063, -0.0057167899794876575, -0.010631963610649109, 0.018971586599946022, -0.03769003227353096, 0.028464412316679955, 0.015033821575343609, -0.01736835390329361, -0.015272900462150574, -0.006926246453076601, -0.0097811259329319, 0.03189589083194733, -0.003786582499742508, 0.010153806768357754, -0.015427598729729652, -0.0006842744769528508, 0.002323984168469906, 0.00741143524646759, 0.0037092333659529686, -0.02199522778391838, 0.007580196484923363, 0.046437494456768036, -0.016637055203318596, -0.019168473780155182, -0.0037338444963097572, 0.017241783440113068, 0.020771706476807594, -0.0268471147865057, -0.0013456958113238215, -0.008916223421692848, -0.010336631909012794, -0.009113111533224583, 0.013451684266328812, -0.013135257177054882, 0.019984154030680656, -0.011089025996625423, -0.01346574816852808, -0.02158738672733307, -0.012361767701804638, -0.0036248527467250824, 0.016721434891223907, -0.02800031751394272, -0.03473670780658722, -0.003480702405795455, -0.004865951836109161, 0.009949887171387672, 0.019632568582892418, -0.018816888332366943, 0.02382347546517849, 0.051247190684080124, -0.04967208579182625, 0.007882560603320599, -0.007657545618712902, -0.015624486841261387, -0.012045339681208134, -0.012256291694939137, -0.015666676685214043, -0.022163989022374153, 0.03785879164934158, -0.029898881912231445, -0.0028812482487410307, -0.015666676685214043, -0.013219637796282768, 0.010392885655164719, -0.011560151353478432, 0.007147745694965124, 0.017705876380205154, 0.018774697557091713, 0.007931782864034176, -0.018352795392274857, -0.008107575587928295, -0.004690158646553755, -0.020420121029019356, -0.012959464453160763, 0.008613859303295612, -0.012783670797944069, 0.01712927594780922, -0.01784651167690754, -0.016763625666499138, 0.025328263640403748, -0.0447780080139637, -0.027339335530996323, 0.0011154069798067212, 0.00278456206433475, -0.04297788441181183, -0.022923413664102554, -0.020785771310329437, -0.015329154208302498, -0.008824811317026615, -0.033639758825302124, -0.011679690331220627, -0.0002300691558048129, 0.005168315954506397, 0.018380921334028244, -0.005987511482089758, 0.010125679895281792, -0.044159214943647385, -0.006655524950474501, -5.658339068759233e-05, -0.03681809827685356, -0.006437541451305151, -0.01991383731365204, -0.00350003968924284, 0.017115211114287376, 0.02147487923502922, -0.0180433988571167, -0.03943389654159546, 0.0030992315150797367, -0.03099583089351654, -0.008606827817857265, -0.016594864428043365, 0.019421616569161415, 0.05901021137833595, -0.0006012122612446547, 0.012713354080915451, 0.03302096575498581, -0.010603836737573147, 0.004953848198056221, 0.005048776511102915, -0.008149766363203526, -0.021249864250421524, -0.026720544323325157, 0.023373443633317947, 0.00852244719862938, -0.029814502224326134, -0.013655604794621468, 0.030067643150687218, -0.0013043844373896718, -0.007214547134935856, 0.012143784202635288, -0.00019710796186700463, -0.0046725794672966, -0.010505393147468567, -0.005048776511102915, -0.022853096947073936, 0.0023116786032915115, -0.009900664910674095, -0.02243119291961193, 0.0007726104813627899, 0.016721434891223907, 0.023176556453108788, -0.007559101562947035, 0.013268860056996346, 0.015722930431365967, 0.0022870677057653666, -0.01864812709391117, -0.021488942205905914, -0.009113111533224583, -0.004823761526495218, -0.006096503231674433, 0.016665181145071983, 0.017537115141749382, -0.011686721816658974, 0.017002703621983528, 0.016074517741799355, 0.007530974689871073, -0.004422953352332115, 0.01728397235274315, -0.033442869782447815, -0.0051788631826639175, 0.021334245800971985, -0.0051647997461259365, 0.015835437923669815, 0.01712927594780922, -0.001220882753841579, -0.04632498696446419, 0.001430955482646823, 0.0012692258460447192, -0.0009431297658011317, -0.04601559042930603, 0.008684176951646805, 0.01780432090163231, -0.013156352564692497, 0.003536956151947379, -0.001997009152546525, -0.01908409409224987, 0.0049362690187990665, -0.024203186854720116, 0.014197046868503094, -0.04714066535234451, 0.04525616392493248, 0.0022976151667535305, -0.014393934980034828, -0.017677750438451767, 0.0031713068019598722, 0.017157401889562607, 0.0027915937826037407, 0.007031721994280815, 0.26529282331466675, -0.021221738308668137, -0.013585287146270275, 0.02430163137614727, -0.0062547167763113976, 0.017635559663176537, 0.002531419973820448, -0.022290559485554695, 0.0070914919488132, 0.013121193274855614, -0.00399401830509305, -0.022206177935004234, -0.019590377807617188, -0.010828851722180843, -0.0060613444074988365, 0.007066880818456411, -0.042134080082178116, -0.01773400418460369, -0.02756435051560402, 0.015962010249495506, 0.03625556081533432, -0.005671083927154541, 0.010906200855970383, 0.01577918417751789, 0.024287568405270576, -0.024681344628334045, -0.01356419175863266, -0.002271246165037155, 0.02688930556178093, 0.015301027335226536, -0.017551178112626076, -0.002063810359686613, 0.004609293770045042, 0.0054952907375991344, -0.008888096548616886, -0.007587228436022997, 0.0029023434035480022, 0.022853096947073936, 0.017748067155480385, -0.00786849670112133, -0.023176556453108788, 0.009155302308499813, 0.009605332277715206, -0.027465905994176865, -0.001621690928004682, 0.009816284291446209, -0.0070914919488132, 0.010294441133737564, 0.0037654873449355364, 0.006184399593621492, -0.03701498731970787, -0.003937764558941126, 0.021137356758117676, 0.005129641387611628, 0.0011408969294279814, -0.0050733876414597034, 0.024596964940428734, -0.011363263241946697, 0.011208564974367619, 0.007784116547554731, 0.0014582034200429916, 0.04311852157115936, -0.014084539376199245, 0.026861179620027542, -0.023964108899235725, 0.007748957723379135, -0.012544592842459679, 0.035918038338422775, 0.012516465038061142, -0.01665111817419529, 0.02087015099823475, -0.007763021159917116, -0.02701587602496147, 0.0060472809709608555, -0.015919819474220276, -0.019393490627408028, 0.014485348016023636, 0.021685831248760223, 0.030545800924301147, -0.0058960989117622375, -0.006989531684666872, -0.011820324696600437, 0.008501351810991764, 0.007369244936853647, -0.032092779874801636, -0.03445543721318245, 0.014625982381403446, -0.016862070187926292, 0.008684176951646805, 0.0032996356021612883, -0.013353240676224232, -0.00952095165848732, 0.004243644420057535, 0.001817700220271945, 0.001778146717697382, 0.010252251289784908, 0.008142733946442604, 0.009570173919200897, -0.025792356580495834, 0.010188965126872063, 0.0020567786414176226, 0.00916233379393816, 0.0025841579772531986, 0.032008398324251175, -0.028506601229310036, -0.007312991190701723, 0.004050272051244974, -0.0006354919169098139, -0.01769181340932846, -0.009809252806007862, 0.00246989238075912, -0.05732259899377823, 0.011939864605665207, 0.01780432090163231, -0.03541175276041031, 0.039658911526203156, -0.01087807398289442, -0.021503007039427757, 0.00435263616964221, 0.002545483410358429, 0.026397084817290306, -0.014850997366011143, 0.015174456872045994, 0.00105563725810498, 0.009408444166183472, -0.009457666426897049, 0.004071366973221302, -0.010273345746099949, 0.00300781917758286, -0.0408683679997921, 0.028112825006246567, -0.026031436398625374, 0.022332750260829926, -0.010083490051329136, 0.009675649926066399, -0.000256218365393579, 0.0036705590318888426, 0.0067785801365971565, -0.010245218873023987, -0.004268255550414324, 0.023218747228384018, 0.0037408762145787477, -0.00019941524078603834, -0.007657545618712902, 0.013620445504784584, -0.017241783440113068, 0.0195622518658638, 0.01171484962105751, 0.015526042319834232, 0.000570008996874094, -0.047112539410591125, -0.012586782686412334, 0.005706242751330137, -0.004095978103578091, 0.024315696209669113, 0.0033594053238630295, -0.023035921156406403, -0.040896497666835785, -0.0036283687222748995, 0.017551178112626076, -0.02019510604441166, -0.024709472432732582, 0.014808806590735912, -0.025356389582157135, -0.0024294599425047636, -0.013768112286925316, -0.18001209199428558, 0.010392885655164719, 0.014710363000631332, -0.014485348016023636, 0.01440096739679575, -0.023415634408593178, 0.011307009495794773, 0.01832466758787632, -0.012811797671020031, -0.00628635985776782, 0.031220845878124237, -0.007516910787671804, -0.021742084994912148, -0.011574214324355125, -0.016341721639037132, -0.015230710618197918, -0.006180883850902319, 0.02589080110192299, 0.024090679362416267, 0.029392598196864128, 0.03729625418782234, -0.008220083080232143, 0.027423717081546783, 0.021699894219636917, 0.02697368711233139, -0.009450634941458702, -0.014485348016023636, 0.01991383731365204, 0.032570935785770416, -0.01231254544109106, -0.0057167899794876575, -0.00973893515765667, 0.01669330894947052, 0.025075120851397514, 0.014091570861637592, -0.015877628698945045, -0.024948550388216972, 0.005421457812190056, -0.0034262065310031176, -0.0007629418396390975, -0.0011373810702934861, 0.039743293076753616, 0.026664290577173233, 0.01712927594780922, -0.01028037816286087, 0.013100098818540573, 0.011159342713654041, 0.007404403295367956, -0.01328292302787304, -0.008529478684067726, 0.028295649215579033, -0.0495595782995224, 0.0022730042692273855, -0.0063918353989720345, 0.02975824847817421, 0.0017368353437632322, -0.005769527982920408, -0.03265531733632088, -0.010716344229876995, 0.022684335708618164, -0.028633173555135727, -0.012853988446295261, -0.0037795507814735174, 0.023092174902558327, -0.012643036432564259, 0.009288905188441277, -0.0232609361410141, 0.015863565728068352, 0.00013316323747858405, 0.010856978595256805, 0.002475166227668524, -0.039096374064683914, 0.031052084639668465, -0.02601737156510353, 0.01356419175863266, -0.0009352190536446869, 0.006131661590188742, 0.006117598153650761, 0.03541175276041031, -0.01139139011502266, -0.031530242413282394, 0.02386566437780857, -0.014893187209963799, -0.012228164821863174, 0.009042794816195965, 0.002309920731931925, 0.014710363000631332, -0.017058957368135452, -0.030264532193541527, -0.006504342891275883, 0.04024957865476608, -0.042809125036001205, -7.213008939288557e-05, -0.0025665785651654005, 0.02395004592835903, 0.014583791606128216, -0.021221738308668137, 0.009267809800803661, 0.008332590572535992, -0.00966158602386713, -0.011510929092764854, 0.011897673830389977, -0.01067415438592434, -0.009077953174710274, 0.0057167899794876575, -0.0007374518900178373, -0.0024329759180545807, 0.02302185818552971, 0.015624486841261387, -0.0079880366101861, -0.012326609343290329, -0.0059242257848382, 0.009788157418370247, -0.016187025234103203, 0.019449744373559952, -0.008466193452477455, -0.016594864428043365, -0.016524547711014748, 0.005544512998312712, 0.003930732607841492, 0.0025613047182559967, -0.02486416883766651, 0.006321518216282129, 0.032570935785770416, -0.016862070187926292, -0.022163989022374153, -0.04756256937980652, -0.03844945505261421, 0.018859079107642174, 0.032289668917655945, 0.00808648020029068, 0.019885709509253502, 0.005421457812190056, 0.014668172225356102, 0.012045339681208134, 0.030545800924301147, -0.024175060912966728, -0.032880332320928574, -0.028576919808983803, 0.008276336826384068, 0.031136466190218925, 0.006588723510503769, -0.02319061942398548, -0.00422254903241992, -0.0097811259329319, 0.025426708161830902, -0.017480861395597458, -0.02095453254878521, 0.0018405532464385033, -0.02617206983268261, 0.0021886234171688557, -0.022178051993250847, -0.009394381195306778, 0.051528461277484894, 0.023443762212991714, 0.046831268817186356, 0.04972833767533302, -0.0004392628907226026, 0.0021358856465667486, -0.023879729211330414, -0.01812778040766716, 0.0015838954132050276, 0.0002663264749571681, -0.014211110770702362, -0.009127175435423851, -0.01764962263405323, 0.0012868051417171955, -0.007348149549216032, 0.0019055966986343265, -0.02928009070456028, -0.014766616746783257, -0.007903655990958214, 0.009767062030732632, 0.025792356580495834, -0.01318447943776846, -0.027550287544727325, -0.027114320546388626, -0.017705876380205154, -0.016524547711014748, -0.04193719103932381, 0.030348913744091988, 0.021657703444361687, 0.016004199162125587, 0.007650513667613268, -0.05203474313020706, 0.016904260963201523, -0.016791753470897675, -0.0024153965059667826, -0.025075120851397514, 0.028914442285895348, 0.002408364787697792, -0.013296986930072308, -0.01318447943776846, -0.019702885299921036, 0.01606045290827751, 0.008452130481600761, 0.012755543924868107, 0.023317189887166023, -0.02402036264538765, 0.04067148268222809, -0.03290845826268196, -0.017030831426382065, -0.007882560603320599, -0.00659223971888423, 0.015835437923669815, 0.008234146982431412, -0.018915332853794098, -0.009985045529901981, 0.008930287323892117, 0.0028056572191417217, 0.018437175080180168, 0.019168473780155182, -0.017537115141749382, 0.005583187565207481, -0.010575709864497185, -0.009527983143925667, -0.0016981608932837844, 0.03529924526810646, 0.004992522764950991, -0.00973893515765667, 0.009183429181575775, -0.005055808462202549, 0.010821820236742496, 0.008452130481600761, 0.00816382933408022, 0.023893792182207108, -0.005734369624406099, -0.01601826399564743, -0.08483069390058517, 0.010491329245269299, -0.0017174981767311692, 0.01368373166769743, 0.008867002092301846, 0.0268471147865057, 0.01539947185665369, -0.01697457768023014, -0.01253052894026041, -0.013353240676224232, -0.028675362467765808, 0.03664933517575264, 0.01292430516332388, 0.0008315011509694159, -0.019463807344436646, -0.02247338369488716, 0.043287280946969986, -0.001218245830386877, 0.0029269543010741472, 0.027747176587581635, -0.0008692966657690704, 0.00035532171023078263, 0.01999821700155735, 0.013177447021007538, 0.021896783262491226, 0.0025279042311012745, 0.003930732607841492, 0.0020796319004148245, 0.0008279852918349206, -0.02493448741734028, 0.010540551505982876, 0.005664052441716194, 0.013079003430902958, 0.01967475935816765, -0.001629601581953466, 0.0035633251536637545, 6.707603461109102e-05, 0.008438066579401493, 0.01828247681260109, -0.009155302308499813, -0.017748067155480385, -0.03012389875948429, 0.018198097124695778, -0.0014133761869743466, -0.035214863717556, 0.00010003723582485691, -0.035214863717556, 0.009816284291446209, 0.02438601292669773, -0.001100464491173625, 0.026804925873875618, -0.007070396561175585, 0.021446753293275833, 0.0006794401560910046, -0.01660892739892006, -0.03811193257570267, 0.017058957368135452, 0.01067415438592434, -0.009317032061517239, -0.029701994732022285, 0.005277307704091072, 0.039180755615234375, 0.009070921689271927, -0.015863565728068352, 0.017199592664837837, -0.0018880174029618502, -0.028534729033708572, 0.004095978103578091, 0.03600241616368294, -0.019618505612015724, -0.00964049156755209, -0.009886601008474827, -0.004781571216881275, 0.014879124239087105, -0.009478761814534664, 0.007917718961834908, 0.004496786277741194, 0.00143710826523602, -0.012783670797944069, 0.023570332676172256, -0.001845827093347907, 0.014077507890760899, -0.04309039190411568, -0.004640936851501465, 0.0295613594353199, -0.017832446843385696, -0.008916223421692848, -0.0057027265429496765, -0.021137356758117676, 0.02262808196246624, -0.02800031751394272, 0.026790861040353775, 0.024189123883843422, 0.006996563635766506, 0.011757039465010166, 0.039743293076753616, 0.0015074254479259253, -0.01288914680480957, 0.02800031751394272, 0.014724425971508026, -0.0067012314684689045, 0.007995068095624447, -0.005934773478657007, -0.013001654297113419, -0.01569480448961258, 0.02023729681968689, -0.025750165805220604, -0.021699894219636917, 0.008388844318687916, 0.015680739656090736, -0.0132055738940835, 0.0016840974567458034, 0.008276336826384068, 0.019885709509253502, -0.005189410876482725, 0.02788781002163887, -0.018788762390613556, -0.020982658490538597, -0.03254280984401703, 0.02852066606283188, 0.03423042222857475, 0.008198987692594528, 0.014611918479204178, -0.007875529117882252, 0.02621426060795784, -0.01952006109058857, 0.011159342713654041, -0.03192402049899101, 0.023921918123960495, 0.024948550388216972, 0.0065219225361943245, -0.010406948626041412, -0.013233700767159462, -0.04449673742055893, -0.0034824605099856853, 0.015090076252818108, -0.013219637796282768, 0.0036951699294149876, -0.029589487239718437, 0.08314308524131775, 0.014949440956115723, 0.00995691865682602, 0.00906389020383358, 0.016341721639037132, 0.005723821930587292, 0.022009290754795074, -0.0028583949897438288, -0.012579751200973988, -0.004489754792302847, 0.023795347660779953, -0.010392885655164719, 0.02358439564704895, -0.015835437923669815, -0.0019987670239061117, 0.002540209563449025, -0.02888631448149681, 0.01653861068189144, -0.02051856555044651, -0.002237845677882433, 0.02804250828921795, -0.026622099801898003, 0.006813738960772753, 0.004074883181601763, -0.009134206920862198, -0.004616325721144676, 0.01210862584412098, 0.007875529117882252, 0.006472700275480747, 0.0007097644847817719, 0.010582742281258106, 0.00011261742474744096, -0.00403269287198782, -0.023612523451447487, 0.008402908220887184, 0.010892137885093689, -0.020293550565838814, 0.011728912591934204, 0.009942854754626751, -0.0006420841091312468, -0.008283368311822414, 0.02688930556178093, -0.03729625418782234, -0.021249864250421524, 0.01123669184744358, -0.016313595697283745, 0.012875082902610302, -0.00413465267047286, -0.014471284113824368], "f8833e02-c260-4885-8532-49ed310cac67": [0.0007557189674116671, 0.004057911690324545, -0.024368921294808388, -0.004022159148007631, -0.00949587021023035, 0.03663918748497963, -0.020579153671860695, -0.0317196398973465, 0.002651049755513668, 0.0006596340681426227, -0.00550946407020092, -0.012012847699224949, 0.007543782703578472, -0.006242390722036362, 0.005330701358616352, 0.005159089341759682, 0.00869501382112503, 0.0028566266410052776, 0.005806209985166788, 0.0008611889206804335, 0.0026617753319442272, 0.03723983094096184, 0.0031051067635416985, -0.024840854108333588, -0.020550550892949104, 0.007257762365043163, 0.032263077795505524, -0.012942413799464703, 0.01836249604821205, 0.008516251109540462, 0.022738605737686157, -0.002869140123948455, 0.005470136180520058, 0.004865918308496475, -0.01575971208512783, -0.009696085005998611, -0.014408267103135586, -0.01701820082962513, 0.0008781713549979031, 0.016531966626644135, 0.02361096628010273, -0.0022112936712801456, 0.01575971208512783, 0.015373585745692253, -0.022738605737686157, 0.008873776532709599, -0.01741863042116165, -0.020421842113137245, -0.04010003060102463, 0.014386815950274467, -0.011569516733288765, 0.0455344133079052, -0.0423881933093071, -0.002583119785413146, 0.011047529987990856, 0.016245946288108826, 0.021494418382644653, 0.0001140729000326246, -0.00954592414200306, -0.03460844233632088, -0.007472277618944645, -0.022838711738586426, -0.032005660235881805, -0.005984972696751356, 0.012878059409558773, 0.0029906986746937037, 0.020350337028503418, -0.001748298411257565, 0.005631022620946169, 0.007579535245895386, 0.005359303206205368, 0.01095457375049591, -0.022938819602131844, -0.01676078327000141, 0.019320664927363396, 0.014308160170912743, 0.006299594882875681, 0.009116893634200096, 0.015673907473683357, 0.008337488397955894, 0.02282441221177578, -0.012563437223434448, -0.017919166013598442, 0.020135821774601936, 0.02518407814204693, 0.022280972450971603, -0.007465126924216747, 0.013114025816321373, 0.0037468646187335253, -0.0005930449697189033, -0.010103663429617882, 0.02266710065305233, 0.0436466820538044, 0.0057418555952608585, 0.00489094527438283, 0.018891634419560432, -0.020993882790207863, 0.0414443276822567, -0.024025695398449898, -0.020450443029403687, 0.0051626646891236305, -0.011097583919763565, -0.043532274663448334, -7.597411604365334e-05, -0.035838332027196884, -0.035866931080818176, 0.01588842086493969, 0.013836226426064968, 0.0045226942747831345, -0.02382548153400421, -0.01084731612354517, 0.02986050769686699, 0.01437966525554657, -0.0067357756197452545, -0.02957448735833168, -0.01575971208512783, 0.02303892746567726, -0.01849120482802391, -0.02448332868516445, 5.9717887779697776e-05, 0.00915264617651701, 0.04922407492995262, 0.019635286182165146, 0.0032463292591273785, -0.002624235348775983, 0.005684651434421539, 0.0013603835832327604, 0.011161938309669495, -0.00042456123628653586, -0.012656393460929394, 0.040328849107027054, 0.01151946373283863, 0.016717880964279175, -0.013171229511499405, -0.015259177424013615, 0.043246254324913025, -0.028401805087924004, -0.005269921850413084, -0.020865174010396004, -0.006174460984766483, 0.02624235302209854, 0.020664958283305168, -0.010561295785009861, -0.004179470241069794, 0.02495526149868965, 0.01511616725474596, 0.01626024767756462, 2.74009580607526e-05, -0.01164817251265049, -0.009159796871244907, -0.034865859895944595, 0.0022470462135970592, -0.00893098022788763, 0.02303892746567726, -0.00011574880045372993, -0.0008969414629973471, -0.005051831714808941, 0.03927057236433029, -0.014036441221833229, -0.005913467612117529, 0.015016060322523117, 0.037468645721673965, 0.011276345700025558, -0.029488682746887207, 0.015316381119191647, 0.011097583919763565, -0.0028888038359582424, -0.017790455371141434, -0.0006797448731958866, -0.0006265629781410098, -0.004529844969511032, 0.014336762018501759, 0.010403984226286411, 0.0004540570662356913, -0.011855537071824074, 0.018762923777103424, 0.00811582338064909, 0.012112955562770367, -0.006574889179319143, 0.003918476868420839, -0.042588405311107635, -0.011719677597284317, 0.014358214102685452, 0.03146222233772278, -0.03306393325328827, -0.01786196045577526, -0.017475834116339684, 0.013006768189370632, 0.010475489310920238, 0.014579879119992256, 0.02744363807141781, 0.048995260149240494, -0.013886280357837677, -0.00562744727358222, -0.5807353854179382, -0.004218797665089369, -0.008430445566773415, -0.005698952358216047, -0.004397560376673937, 0.052885133773088455, 0.01092597097158432, 0.011355001479387283, -0.02245258539915085, 0.001632996485568583, -0.013993537984788418, 0.022609896957874298, 0.006306745111942291, -0.02326774224638939, -0.0021666029933840036, -0.010961723513901234, 0.005298524163663387, -0.011447958648204803, -0.02053624950349331, -0.0036199430469423532, 0.006796554662287235, 0.01676078327000141, -0.010597048327326775, -0.004958875011652708, 0.010740058496594429, 0.00885232537984848, -0.037039615213871, -0.010475489310920238, 0.006174460984766483, 0.026113644242286682, 0.0008585074683651328, 0.00631032045930624, -0.004740784876048565, 0.0078512541949749, 0.057032424956560135, -0.02907395176589489, -0.04110110178589821, 0.029660293832421303, 0.01893453672528267, 0.022423982620239258, -0.005126912146806717, -0.0449051707983017, -0.004243824630975723, 0.016617773100733757, -0.019392170011997223, 0.010275275446474552, 0.0013854103162884712, -0.023053226992487907, 0.0025008891243487597, -0.021594524383544922, 0.0007195195648819208, -0.002438322175294161, 0.0035234112292528152, -0.003351799212396145, 0.007261337712407112, -0.0073006656020879745, 0.02455483376979828, -0.02426881343126297, 0.010096512734889984, -0.01557379961013794, -0.006220939103513956, -0.0063639492727816105, -0.018162282183766365, -0.0408150814473629, -0.036438971757888794, -0.0009005166939459741, -0.04602064937353134, 0.0038290952797979116, 0.010132265277206898, -0.022438284009695053, -0.018762923777103424, 0.01541648805141449, -0.005595270078629255, 0.019077546894550323, 0.0078512541949749, 0.003044327488169074, 0.04150152951478958, -0.006964591797441244, -0.015030360780656338, 0.0013049670960754156, 0.014086494222283363, -0.005066132638603449, -0.03312113881111145, -0.021337106823921204, -0.002293524332344532, 0.008973883464932442, -5.591918306890875e-05, 0.0076867928728461266, 0.015044662170112133, -0.020950978621840477, 0.02166602946817875, -0.0016133326571434736, 0.004554871469736099, -0.00014435082266572863, 0.0025920579209923744, 0.0035502256359905005, -0.009352860040962696, 0.0070182206109166145, 0.010897369123995304, -0.0026492620818316936, -0.07184827327728271, 0.01084731612354517, -0.016346054151654243, -0.01478724367916584, 0.032034263014793396, 0.01620304398238659, -0.01544509083032608, 0.005076858215034008, 0.04787978157401085, -0.02495526149868965, -0.0028423257172107697, 0.012634942308068275, -0.0008044317946769297, -0.0006529304664582014, 0.00021306269627530128, -0.04273141548037529, 0.002138000912964344, 0.013328541070222855, 0.004347506910562515, 0.006953865755349398, 0.014515524730086327, -0.013829076662659645, 0.04539140313863754, 0.0011270983377471566, 0.00995350256562233, 0.02831599861383438, 0.028702126815915108, 0.02119409665465355, -0.018762923777103424, -0.0032642055302858353, -0.021480116993188858, -0.00822308100759983, 0.006682146806269884, -0.014093644917011261, 0.021122591570019722, -0.00978189054876566, 0.009517322294414043, 0.014393966645002365, 0.017218416556715965, 0.0011485498398542404, -0.023696772754192352, -0.011605269275605679, 0.017733251675963402, -0.0011378240305930376, 0.007972813211381435, -0.00018110887322109193, 0.00738647161051631, 0.01959238387644291, -0.009166947565972805, 0.013993537984788418, -0.008423294872045517, -0.020507648587226868, -0.014730039983987808, 0.003922051750123501, -0.007429374381899834, -0.007400772534310818, 0.002490163315087557, -0.019635286182165146, -0.0076867928728461266, -0.0106757041066885, -0.0007150504970923066, -0.019792597740888596, -0.0033357106149196625, -0.01972109265625477, -0.0041973465122282505, -0.03661058470606804, -0.031347814947366714, -0.006843033246695995, -0.03223447501659393, -0.025412894785404205, -0.03498027101159096, -0.00613870844244957, -0.025155475363135338, 0.03397919982671738, -0.009460117667913437, 0.012999617494642735, -0.019234858453273773, -0.016975298523902893, -0.003989981487393379, 0.009831944480538368, 0.008008565753698349, 0.010496941395103931, -0.012298868037760258, 0.0025008891243487597, 0.021365707740187645, -0.003351799212396145, 0.020865174010396004, 0.01588842086493969, -0.028401805087924004, 0.03629596158862114, -0.008358940482139587, 0.027415035292506218, 0.013657464645802975, -0.0016937758773565292, 0.01062565017491579, 0.007872706279158592, 0.012999617494642735, -0.007865555584430695, -0.010990326292812824, 0.03598133847117424, 0.05342857167124748, 0.004029309377074242, 0.02392558939754963, -0.02085087262094021, 0.048737842589616776, -0.030117927119135857, 0.018405400216579437, 0.0024740747176110744, 0.015173370949923992, -0.0030604160856455564, -0.009131195023655891, -0.0031247707083821297, -0.018562709912657738, -0.010146566666662693, 0.013957785442471504, 0.03472284972667694, -0.009688934311270714, -0.009531622752547264, 0.018476905301213264, 0.0013693217188119888, 0.00836609024554491, -0.0022774357348680496, 0.02539859339594841, -0.008687863126397133, -0.025942031294107437, 0.005187691189348698, 0.016817986965179443, 0.01686089113354683, 0.0004974069888703525, -0.03209146484732628, -0.0157025083899498, -0.032320283353328705, -0.00227207294665277, 0.010139415971934795, 0.00818017777055502, -0.027743957936763763, 0.006013574544340372, 0.0004028862458653748, 0.003187337424606085, 0.007082575000822544, 0.020193025469779968, 0.017061104997992516, -0.005069707985967398, -0.014644233509898186, 0.014522675424814224, 0.009073990397155285, 0.03309253603219986, 0.019892703741788864, 0.006639243569225073, 0.01972109265625477, -0.022052157670259476, 0.009996405802667141, -0.019735394045710564, 0.026699984446167946, -0.02411150187253952, -0.026099342852830887, 0.006639243569225073, 0.03286372125148773, 0.002096885582432151, 0.008816572837531567, 0.03332135081291199, 0.011605269275605679, -0.007822652347385883, 0.03369317948818207, 0.03781186789274216, -0.0026224476750940084, -0.0036360316444188356, -0.005641748197376728, -0.0016285274177789688, -0.04527699574828148, -0.016460461542010307, 0.0035466502886265516, -0.006317471154034138, -0.018004970625042915, 0.013385744765400887, -0.012663544155657291, 0.022280972450971603, 0.006696447730064392, 0.031919851899147034, 0.003700386267155409, -0.02718621864914894, -0.014901652000844479, 0.009045388549566269, 0.033921994268894196, 0.0005336064496077597, -0.014658534899353981, -0.0034644196275621653, -0.0072398860938847065, -0.006800130009651184, 0.023467956110835075, -0.019878404214978218, -7.45775323593989e-05, 0.008909529075026512, 0.007161230780184269, -0.022552691400051117, 0.00738647161051631, 0.02169463224709034, -0.024940960109233856, -0.01701820082962513, -0.008122973144054413, -0.00432605529204011, 0.005058981943875551, -0.016217345371842384, -0.025284186005592346, 0.02100818231701851, -0.02285301312804222, 0.022752907127141953, 0.016946695744991302, 0.0028530515264719725, -4.6143100917106494e-05, -0.025069670751690865, -0.03332135081291199, -0.01836249604821205, -0.004633527249097824, 0.0040185838006436825, -0.004619226325303316, 0.02093667723238468, -0.01227741688489914, 0.006396126467734575, 0.03540930151939392, -0.00432605529204011, -0.017976369708776474, -0.019835500046610832, -0.0039435033686459064, -0.03675359487533569, 0.019921306520700455, -0.0025777569971978664, -0.011376453563570976, -0.01610293611884117, -0.004562022164463997, -0.021294202655553818, -0.030661365017294884, 0.011276345700025558, -0.01893453672528267, -0.002779758768156171, 0.0012906661722809076, 0.022996023297309875, 0.002052194904536009, -0.002282798755913973, 0.016875190660357475, -0.020178724080324173, -0.03786907345056534, 0.015030360780656338, -0.008473347872495651, -0.020607754588127136, 0.004991052206605673, 0.047136127948760986, 0.002241683192551136, -0.04201636463403702, 0.005148363299667835, -0.004940998740494251, 0.01232032012194395, 0.0022506213281303644, 0.0251125730574131, 0.003328559920191765, 0.010203770361840725, 0.004690730944275856, 0.02784406580030918, -0.026771489530801773, 0.007232735864818096, 0.016331752762198448, 0.03254909813404083, -0.014572728425264359, 0.007179107051342726, 0.007200558204203844, 0.030117927119135857, 0.009109742939472198, -0.0034948091488331556, 0.02311043068766594, 0.0013952422887086868, 0.004247399978339672, 0.0046871560625731945, -0.0139720868319273, -0.01604573242366314, 0.021351408213377, -0.008709315210580826, -0.011397904716432095, 0.007422224152833223, -0.01654626801609993, 0.0008674456039443612, -0.04705032333731651, -0.0035108979791402817, 0.026042139157652855, -0.0012736836215481162, -0.021308504045009613, -0.026070740073919296, 0.00523416930809617, -0.0025956332683563232, -0.03755445033311844, -0.03412220999598503, -0.025341389700770378, 0.017790455371141434, -0.013657464645802975, -0.01912044920027256, 0.009038237854838371, 0.011641021817922592, -0.023396451026201248, -0.017690349370241165, 0.008544852957129478, 0.012577737681567669, 0.02366817183792591, -0.020865174010396004, -0.004812289960682392, 0.020493347197771072, -0.0008589543867856264, -0.022395381703972816, -0.005788333714008331, 0.0026635630056262016, 0.03243469074368477, 0.003789767622947693, -0.003187337424606085, -0.017118308693170547, -0.011719677597284317, -0.013385744765400887, 0.013285637833178043, 0.03234888240695, 0.026914499700069427, 0.00019719751435332, 0.005892015993595123, -0.02263849787414074, -0.007472277618944645, 0.020393239334225655, -0.01749013550579548, -0.012563437223434448, 0.0028351752553135157, -0.018948838114738464, -0.018419699743390083, -0.005187691189348698, -0.021866243332624435, 0.01836249604821205, 0.02891664206981659, 0.020950978621840477, 0.01277795247733593, 0.003886299440637231, 0.010318178683519363, -0.009767589159309864, 0.02775825932621956, -0.023854084312915802, 0.007901308126747608, 0.01720411516726017, -0.0037575901951640844, 0.004233099054545164, -0.007415073458105326, 0.004579898435622454, -0.0073435683734714985, -0.03952798992395401, 0.014465471729636192, 0.011969945393502712, -0.04347506910562515, 0.028659222647547722, -3.6702200304716825e-05, -0.028559116646647453, -0.022338178008794785, 0.0008535915403626859, -0.018090777099132538, 0.012134406715631485, 0.008423294872045517, -0.01359310932457447, -0.051598042249679565, 0.02313903346657753, 0.022967422381043434, 0.00545583525672555, 0.005495163146406412, -0.01387912966310978, -0.010032158344984055, -0.012649242766201496, 0.012163008563220501, -0.023739676922559738, 0.028072882443666458, -0.026013536378741264, -0.006739350967109203, -0.010232372209429741, -0.007175531703978777, 0.03117620013654232, -0.0029156182426959276, 0.0021952050738036633, -0.03992841765284538, -0.008208779618144035, -0.01927776075899601, -0.05088299140334129, -0.02253839187324047, 0.005212718155235052, 0.01783335953950882, 0.020007112994790077, 0.011955644004046917, -0.018662817776203156, 0.029202662408351898, 0.008051468059420586, -0.0016982449451461434, 0.005566668231040239, -0.013636012561619282, -0.0010993900941684842, -0.02163742668926716, 0.009688934311270714, 0.01701820082962513, 0.020350337028503418, 0.01749013550579548, -0.03706821799278259, 0.0040185838006436825, 0.008795120753347874, -0.02502676658332348, 0.012098654173314571, -0.0009635305032134056, -0.04919547215104103, 0.004622801207005978, 0.0014542338903993368, 0.005373604595661163, -3.2316929718945175e-05, -0.039356376975774765, -0.02185194194316864, 0.008623508736491203, 0.003593128640204668, 0.030346741899847984, -0.008537703193724155, 0.002583119785413146, -0.02844470739364624, -0.006356798578053713, -0.0004665704327635467, 0.012155857868492603, 0.0033178343437612057, -0.005959945730865002, -0.008101521991193295, -0.019034644588828087, 0.0017715375870466232, 0.008401842787861824, 0.005066132638603449, -0.0044940924271941185, -0.031977057456970215, -0.01959238387644291, -0.0016097574261948466, 0.002575969323515892, 0.004465490113943815, 0.022624196484684944, -0.038784340023994446, -0.021365707740187645, -0.030661365017294884, 0.0066463942639529705, -0.017904864624142647, 0.03020373173058033, 0.03558091074228287, -0.0002580885193310678, 0.01034678053110838, -0.008344639092683792, -0.0020700711756944656, 0.00828743539750576, 0.015101865865290165, 0.011283496394753456, -0.013206982053816319, 0.018691420555114746, 0.020021414384245872, 0.012835156172513962, 0.0019056095043197274, -0.02737213298678398, 0.0026617753319442272, 0.025012465193867683, 0.01610293611884117, 0.037754666060209274, -0.015187672339379787, 0.026699984446167946, 0.02200925350189209, 0.014336762018501759, -0.0024704993702471256, -0.027457939460873604, 0.014022139832377434, 0.025226980447769165, 0.03306393325328827, -0.010597048327326775, -0.012699296697974205, -0.02784406580030918, -0.014529826119542122, -0.0025473672430962324, -0.007336418144404888, -0.015688207000494003, 0.00023551975027658045, -0.016331752762198448, 0.008802271448075771, -0.0026474744081497192, 0.04030024632811546, 0.0222952738404274, 0.01644616201519966, 0.01149086095392704, -0.0077010937966406345, -0.011669623665511608, -0.008630659431219101, -0.005616721697151661, 0.028516212478280067, 0.01964958757162094, -0.0038290952797979116, 0.013192681595683098, 0.011390754021704197, -0.012406125664710999, 0.002999636810272932, -0.0063925511203706264, 0.04378969222307205, -0.016632074490189552, -0.01890593394637108, -0.013886280357837677, 0.029059652239084244, 0.013464400544762611, 0.026771489530801773, -0.01006076019257307, 0.018348194658756256, -0.014343912713229656, -0.0014944555005058646, 0.014429719187319279, -0.004840891808271408, -0.000946548068895936, -0.003232028102502227, -0.01575971208512783, -0.03912756219506264, -0.00958882737904787, 0.013414346612989902, -0.0048337411135435104, -0.03126200661063194, -0.038069289177656174, -0.02621375024318695, -0.01736142486333847, 0.039356376975774765, 0.0129495644941926, -0.0066463942639529705, 0.030060721561312675, 0.03089018166065216, -0.04141572490334511, 0.0071076019667088985, -0.007028946187347174, 0.011197690851986408, -0.0014658535365015268, 0.016174441203475, 0.00022188910224940628, -0.010747209191322327, 0.017847660928964615, -0.014579879119992256, -0.02461203746497631, -0.044533345848321915, -0.022152263671159744, 0.011226292699575424, -0.010232372209429741, 0.024526230990886688, 0.06429734081029892, -0.023196237161755562, 0.015387886203825474, -0.007139779161661863, -0.007100451271981001, -0.009274205192923546, -0.006975317373871803, 0.022738605737686157, 0.007636738941073418, 0.005098309833556414, 0.02951728366315365, 0.003333922941237688, 0.0008513570064678788, 0.02697170339524746, -0.04215937480330467, -0.024354619905352592, 0.016031431034207344, 0.013042520731687546, -0.011876988224685192, -0.000210157799301669, -0.02574181742966175, -0.03821229934692383, -0.015902722254395485, -0.019821198657155037, -0.01833389513194561, 0.015974227339029312, 0.008423294872045517, 0.013628861866891384, -0.04107249900698662, 0.00579190906137228, -0.0157025083899498, -0.03314974159002304, 0.01657487079501152, -0.039671000093221664, -0.03723983094096184, -0.01222736295312643, -0.016017131507396698, 0.04267421364784241, 0.025470098480582237, -0.010825864039361477, -0.004958875011652708, 0.0007718076230958104, 0.0046871560625731945, 0.016531966626644135, -0.008795120753347874, 0.02200925350189209, 0.04347506910562515, -0.0009849820053204894, 0.0008303523645736277, 0.03249189257621765, 0.017575940117239952, -0.003950654063373804, -0.0006475676200352609, -0.009073990397155285, -0.029488682746887207, -0.028029978275299072, -0.017218416556715965, 0.007651040330529213, -0.021952049806714058, 0.005148363299667835, 0.005906316917389631, -0.011969945393502712, 0.02863062173128128, 0.034265220165252686, -0.014465471729636192, -0.03289232403039932, -0.03372178226709366, 0.0073292674496769905, -0.019835500046610832, -0.0031944881193339825, -0.018004970625042915, -0.044218722730875015, 0.005841962527483702, 0.01739002764225006, 0.01158381812274456, -0.01166247297078371, -0.004422587342560291, 0.01081871334463358, -0.007815501652657986, 0.01238467451184988, -0.0006462268647737801, -0.010239522904157639, -0.01667497679591179, -0.026328159496188164, 0.024726444855332375, 0.0017545551527291536, 0.004236673936247826, 0.02185194194316864, 0.006499808747321367, 0.021294202655553818, -0.0064533306285738945, 0.0062316651456058025, -0.017590241506695747, -0.003700386267155409, -0.0038076438941061497, -0.007078999653458595, 0.023653870448470116, -0.013936334289610386, 0.017561640590429306, -0.026828693225979805, -0.0031783992890268564, 0.009281354956328869, -0.015273477882146835, -0.036782197654247284, 0.03160523250699043, 0.004604924935847521, -0.01544509083032608, -0.01607433520257473, -0.01147656049579382, -0.027114713564515114, 0.0026939527597278357, -0.005684651434421539, 0.026771489530801773, -0.023124732077121735, -0.008666411973536015, -0.0021844792645424604, 0.01833389513194561, -0.009853395633399487, 0.003950654063373804, 0.004665704444050789, 0.0023400026839226484, -0.02027883194386959, 0.22435423731803894, -0.027272025123238564, -0.005734704900532961, 0.010747209191322327, -0.009982104413211346, 0.018190884962677956, 0.00449051707983017, 0.00010128019494004548, -0.00762243801727891, 0.031061792746186256, 0.015359284356236458, 0.0036360316444188356, -0.011691075749695301, 0.0014014989137649536, -0.016503365710377693, -0.02571321465075016, -0.023696772754192352, -0.013600260019302368, -0.02624235302209854, -0.014329611323773861, 0.02737213298678398, -0.004933848511427641, -0.0433320589363575, -0.0014238442527130246, 0.014501223340630531, 0.0018501931335777044, -0.001641040900722146, -0.017289919778704643, 0.026614179834723473, 0.030032120645046234, -0.023725375533103943, 0.0033178343437612057, 0.013171229511499405, 0.004125841427594423, 0.0033535866532474756, -0.004869493655860424, 0.02329634502530098, -0.00945296697318554, 0.0360957495868206, 0.030604161322116852, -0.0006203062948770821, -0.003244541585445404, 0.00818017777055502, 0.0034286670852452517, -0.03212006762623787, 0.017375726252794266, -0.0012111167889088392, -0.012377523817121983, -0.0072541870176792145, 0.023053226992487907, -0.006635668687522411, -0.037039615213871, 0.036496177315711975, 0.026485469192266464, 0.012763651087880135, -0.008566305041313171, -0.0054737115278840065, -0.02109398879110813, 0.03532349318265915, 0.02687159739434719, -0.022495487704873085, 0.04407571256160736, -0.0035645265597850084, -0.00025585401454009116, -0.03117620013654232, -0.013328541070222855, 0.0013952422887086868, -0.012584888376295567, -0.00539148086681962, -0.031347814947366714, 0.0024883756414055824, -0.02119409665465355, -0.014601331204175949, -0.014343912713229656, -0.030403947457671165, -0.03372178226709366, 0.02448332868516445, -0.008380391635000706, 0.04107249900698662, 0.01660347171127796, -0.0006207532132975757, -0.0420735701918602, 0.01833389513194561, -0.015673907473683357, -0.0019002467161044478, -0.034551240503787994, 0.0004983008257113397, -0.010153716430068016, -0.016117237508296967, 0.010117963887751102, -0.013257035985589027, -0.007915608584880829, -0.007064698729664087, 0.021523019298911095, 0.01151946373283863, 0.01786196045577526, 0.0029388575349003077, -0.011312098242342472, -0.01528777927160263, -0.0030300263315439224, -0.030461151152849197, 0.014715738594532013, 0.008316037245094776, 0.0070611233823001385, -0.011140486225485802, 0.003006787272170186, -0.028201591223478317, 0.002293524332344532, 0.019821198657155037, -0.0047908383421599865, 0.010067910887300968, -0.05846252664923668, 3.281969839008525e-05, 0.009617429226636887, 0.009045388549566269, -0.008580605499446392, 0.004383259452879429, -0.008037167601287365, -0.003936353139579296, -0.00597424665465951, 0.02797277458012104, 0.0013407196383923292, 0.002230957616120577, 0.006331772077828646, 0.0056953770108520985, -0.01279225293546915, -0.03240608796477318, -0.010168017819523811, 0.03369317948818207, -0.057661671191453934, 0.02994631417095661, -0.012284567579627037, 0.02747223898768425, -0.01158381812274456, 0.002223806921392679, 0.010139415971934795, 0.000727563863620162, -0.025970634073019028, -0.013535905629396439, -0.0013264185981824994, -0.0026492620818316936, 0.00899533461779356, 0.04533420130610466, 0.010010707192122936, 0.00779405003413558, -0.0010260974522680044, -0.0080872206017375, 0.010103663429617882, 0.0019252734491601586, 0.0043010287918150425, -0.05817650631070137, -0.012506232596933842, 0.012141557410359383, -0.008358940482139587, 0.000801750342361629, -0.027229122817516327, 0.00184840545989573, -0.0508543886244297, 0.018248088657855988, 0.017447231337428093, -0.029116855934262276, -0.005491587799042463, -0.018105078488588333, -0.0200929194688797, -0.010933121666312218, -0.039756808429956436, -0.1833961457014084, 0.009939202107489109, 0.025856224820017815, -0.02923126332461834, 0.025513000786304474, -0.010983175598084927, 0.008358940482139587, 0.015302080661058426, -0.0360957495868206, -0.012828005477786064, 0.03769746050238609, 0.002534853992983699, -0.021351408213377, 0.009831944480538368, -0.003939928021281958, -0.011283496394753456, 0.012177309952676296, -0.007708244025707245, 0.03180544450879097, 0.017475834116339684, 0.01972109265625477, -0.019706791266798973, -0.02085087262094021, 0.03309253603219986, 0.0035287742502987385, 0.03249189257621765, -0.008859475143253803, 0.02718621864914894, -0.002034318633377552, -0.015344982966780663, -0.01158381812274456, -0.015516595914959908, -0.0020843720994889736, 0.010704305954277515, -0.0038398210890591145, -0.010461188852787018, 0.011433657258749008, 0.017347125336527824, -0.000904091983102262, -0.01431531086564064, 0.0024615612346678972, 0.04925267770886421, 0.0071362038142979145, 0.01751873642206192, 0.006857334170490503, 0.03598133847117424, 0.013106875121593475, -0.016174441203475, 0.03466564789414406, -0.010940272361040115, 0.01018946897238493, -0.022996023297309875, -0.0062888688407838345, 0.024411823600530624, 0.025598807260394096, 0.019191954284906387, 0.017118308693170547, 0.0011083282297477126, -0.012906661257147789, 0.00789415743201971, -0.013414346612989902, -0.02486945502460003, 0.024511931464076042, 0.007465126924216747, -0.012356072664260864, -0.021809039637446404, -0.012248815037310123, 0.02006431668996811, -0.019377868622541428, 0.0021719657815992832, -0.013793324120342731, -0.030060721561312675, 0.005999273620545864, -0.021952049806714058, 0.017904864624142647, 0.020364638417959213, 0.0017822632798925042, 0.009374312125146389, 0.007186257280409336, -0.019849801436066628, -0.025484399870038033, 0.011805483140051365, -0.02405429817736149, -0.006009999196976423, 0.0008321399800479412, -0.008737917058169842, -0.01021807175129652, 0.011741128750145435, 0.0016544481040909886, -0.027872668579220772, 0.03463704511523247, -0.018734322860836983, 0.006056477781385183, -0.020135821774601936, -0.015302080661058426, 0.024654939770698547, -0.0031533725559711456, -0.017104007303714752, -0.0002388715511187911, 0.012584888376295567, 0.005723979324102402, -0.0018609188264235854, 0.0024365345016121864, -0.007779749110341072, -0.00261350953951478, -0.02963169291615486, -0.002727917628362775, 0.03466564789414406, 0.04670709744095802, -0.02345365658402443, 0.0015275266487151384, -0.018190884962677956, 0.010883068665862083, 0.05008213594555855, 0.007643889635801315, 0.008787970058619976, -0.011033228598535061, -0.02791557088494301, 0.007615287788212299, 0.020679259672760963, -0.011748279444873333, -0.02109398879110813, -0.008573455736041069, 0.008509100414812565, 0.007182681933045387, 0.0032052136957645416, -0.06647109240293503, -0.011362152174115181, 0.02398279309272766, 0.038126491010189056, -0.012906661257147789, 0.01902034319937229, -0.0017232716782018542, 0.02222376875579357, -0.03460844233632088, 0.022395381703972816, 0.0023024624679237604, -0.0227672066539526, -0.01751873642206192, 0.007304240483790636, 0.01437966525554657, 0.009431515820324421, -0.007572384551167488, 0.008144425228238106, 0.005441534332931042, 0.02429741621017456, -0.008137274533510208, -0.026828693225979805, 0.044819362461566925, -0.031004589051008224, -0.006499808747321367, -0.000711028347723186, -0.017404329031705856, 0.01524487603455782, 0.021337106823921204, 0.0058884406462311745, 0.03978540748357773, -0.01767604798078537, -0.01081871334463358, -0.003265992971137166, 0.011776881292462349, 0.008530552498996258, -0.019349265843629837, 0.014873050153255463, 0.022252371534705162, -0.028616320341825485, 0.009803341701626778, -0.01028242614120245, 0.006860909517854452, -0.000614496530033648, -0.01081871334463358, -0.03400780260562897, -0.03272071108222008, 0.05657479539513588, -0.002935282187536359, -0.010732907801866531, -0.0023668170906603336, 6.558353925356641e-05, 0.0005362878437153995, -0.022609896957874298, 0.009081141091883183, -0.0037575901951640844, 0.018248088657855988, 0.017061104997992516, -0.02442612498998642, 0.024383220821619034, -0.0034340298734605312, -0.010096512734889984, -0.03606714680790901, -0.00040176897891797125, 0.007025370839983225, 0.018004970625042915, -0.010811563581228256, 0.00472648348659277, 0.0022434708662331104, 0.017318522557616234, -0.012499082833528519, 0.03729703277349472, -0.0009161584312096238, 0.03206286206841469, -0.01251338329166174, 0.011197690851986408, 0.010768660344183445, -0.009810492396354675, 0.033292751759290695, -0.018634214997291565, -0.029345672577619553, -0.015874121338129044, -0.004855192732065916, -0.02285301312804222, 0.03217727318406105, 0.004065061919391155, -0.0075509329326450825, -0.006120832171291113, 0.011097583919763565, -0.022252371534705162, -0.0003483636537566781, 0.025727516040205956, 0.01335714291781187, -0.03283511847257614, -0.004887369927018881, 0.029746100306510925, 0.032263077795505524, 0.020135821774601936, 0.007636738941073418, 0.014901652000844479, 0.006850183475762606, -0.02439752221107483, -0.07058978080749512, 0.03638176992535591, 0.007779749110341072, 0.00040243935654871166, -0.011691075749695301, -0.00813012383878231, 0.02502676658332348, -0.011119035072624683, -0.014887350611388683, -0.01917765475809574, 0.005927768535912037, 0.017275620251893997, -0.005148363299667835, 0.0078512541949749, -0.0046120756305754185, -0.035209085792303085, 0.010968874208629131, 0.02053624950349331, 0.0014014989137649536, 0.016317451372742653, -0.010403984226286411, -0.007465126924216747, 0.022409681230783463, 0.022052157670259476, -0.002910255454480648, -0.011698225513100624, 0.01604573242366314, 0.033264148980379105, -0.02003571391105652, 0.00948156975209713, 0.0030336016789078712, -0.014744341373443604, 0.004347506910562515, 0.031319212168455124, -0.013149778358638287, -0.012727898545563221, -0.01006076019257307, 0.0026778641622513533, -0.011912740767002106, 0.010604199022054672, 0.00047640237607993186, -0.03051835484802723, 0.017318522557616234, -0.03600994125008583, -0.017661746591329575, -0.002420445904135704, -0.012198761105537415, 0.00432605529204011, 0.017718950286507607, -0.035866931080818176, 0.03137641400098801, 0.020178724080324173, -0.008766518905758858, -0.010589897632598877, -0.047422148287296295, -0.03758305311203003, 0.008137274533510208, 0.01277795247733593, -0.006635668687522411, -0.04407571256160736, 0.01262064091861248, -0.0058884406462311745, 0.02800137735903263, 0.0035162607673555613, 0.0060672033578157425, -0.005906316917389631, 0.014672836288809776, -0.008687863126397133, -0.00309616862796247, -0.006360373925417662, -0.021437212824821472, -0.01883442886173725, 0.0077153947204351425, -0.005044681020081043, -0.01749013550579548, 0.01811937987804413, -0.00779405003413558, 0.00779405003413558, -0.041673142462968826, 0.018748624250292778, 0.014236655086278915, -0.021894846111536026, -0.026571275666356087, 0.02925986610352993, 0.01817658357322216, -0.00012234067253302783, 0.015330682508647442, 0.020965280011296272, -0.02203785628080368, -0.00533785205334425, -0.036210156977176666, 0.0279441736638546, -0.01028242614120245, 0.010797262191772461, 0.01021807175129652, 0.006889511365443468, -0.015688207000494003, -0.00670359842479229, 0.028930943459272385, 0.006725049577653408, 0.005048256367444992, -0.001072575687430799, -0.02891664206981659, -0.01717551238834858, -0.011905591003596783, 0.024654939770698547, -0.013257035985589027, -0.026885898783802986, 0.00295494613237679, 0.026614179834723473, 0.003062203759327531, 0.005684651434421539, 0.024311715736985207, 0.027872668579220772, -0.007629588712006807, 0.012735049240291119, 0.01767604798078537, -0.009810492396354675, -0.029031049460172653, 0.03635316714644432, 0.018605614081025124, 0.011969945393502712, 0.004966025706380606, -0.019106149673461914, 0.004966025706380606, -0.009595977142453194, -0.0050625572912395, -0.02734353020787239, -0.0029370698612183332, 0.003700386267155409, -0.007247036788612604, -0.02358236536383629, -0.013142627663910389, -0.02245258539915085, -0.009503020904958248, 0.004318905062973499, -0.00012792700727004558, 0.004912396892905235, 0.006517685018479824, 0.057690273970365524, -0.0109116705134511, 0.009045388549566269, -0.00437253387644887, -0.005906316917389631, 0.03563811630010605, 0.015974227339029312, -0.010611348785459995, 0.0034840835724025965, -0.01814798079431057, -0.019506577402353287, -0.02542719431221485, -0.003230240661650896, -8.815231558401138e-05, -0.02093667723238468, -0.006117256823927164, -0.01046833861619234, 0.0279441736638546, -0.013106875121593475, 0.011633871123194695, 0.036467574536800385, -0.0012969227973371744, 0.018691420555114746, 0.031691037118434906, -0.010289576835930347, -0.014022139832377434, -0.005838387180119753, 0.000135971320560202, -0.012527684681117535, 0.005917042959481478, -0.0007190726464614272, 0.024097200483083725, -0.02424021065235138, -0.0436466820538044, -0.002527703531086445, 0.0053986310958862305, 0.0073435683734714985, 0.006696447730064392, 0.019978510215878487, 0.01495885569602251, 0.0019216982182115316, 0.014200902543962002, -0.02408290095627308, -0.028745029121637344, 0.009467268362641335, 0.020321734249591827, 0.0017089706379920244, -0.004486941732466221, -0.010411134921014309], "963f875d-783b-4902-9e2b-433010ef739a": [-0.019947733730077744, -0.01967969536781311, -0.015235893428325653, -0.025463692843914032, -0.004845860414206982, 0.005205596797168255, -0.02870837412774563, -0.012089964002370834, 0.010834413580596447, -0.006528157275170088, 0.031769659370183945, 0.005985025782138109, 0.0020050012972205877, 0.017916282638907433, -0.0046624657697975636, 0.014304811134934425, 0.008415009826421738, 0.006598693784326315, 0.02987927943468094, -0.020765958353877068, 0.0014257199363783002, -0.017351990565657616, 0.03205180540680885, -0.016463229432702065, -0.02298080548644066, -0.013804001733660698, 0.012534343637526035, -0.031120723113417625, 0.013028099201619625, -0.006471727974712849, 0.0354093462228775, -0.00656695244833827, -0.004965772852301598, -0.025026366114616394, -0.01461517158895731, 0.003209412796422839, 0.027890149503946304, 0.003574439324438572, 0.01444588415324688, 0.0035462246742099524, 0.0026363034266978502, 0.0009169750846922398, 0.007244103122502565, -0.01718270219862461, -0.02759389579296112, 0.012950509786605835, -0.0017457794165238738, -0.00011230740346945822, -0.006069669499993324, -0.01546161063015461, 0.0018868525512516499, 0.024744220077991486, -0.03741258382797241, -0.0028514398727566004, 0.005353723652660847, 0.00625306461006403, -0.013246762566268444, -0.006080250255763531, 0.014699815772473812, 0.0050539434887468815, 0.016223404556512833, -0.012753007002174854, -0.026662813499569893, 0.0019556256011128426, 0.004020582884550095, 0.009367252700030804, 0.0006189581472426653, 0.01159620750695467, 0.0058333720080554485, -0.004669519141316414, 0.03966975212097168, 0.03270074352622032, 0.012520236894488335, -0.00016796514682937413, 0.02879301644861698, -0.008005897514522076, -0.03222109377384186, 0.03337789326906204, 0.010220745578408241, 0.004144021775573492, 0.011885407380759716, -0.012202821671962738, -0.010721554979681969, -0.001957389060407877, 0.018311286345124245, 0.028722479939460754, 0.0034774516243487597, 0.02959713339805603, 0.03490148112177849, -0.006842044647783041, 0.01267541665583849, 0.0218945425003767, 0.009966813959181309, 0.01967969536781311, 0.002830278826877475, 0.01850878819823265, -0.012887026183307171, 0.007512141950428486, -0.015884829685091972, -0.05380527675151825, 0.007064234931021929, 0.020765958353877068, -0.014347133226692677, -0.021767577156424522, -0.024222249165177345, -0.018805041909217834, 0.036820076406002045, -0.0005598838324658573, 0.025111010298132896, -0.004937557969242334, -0.01817021332681179, 0.021175069734454155, 0.008358580060303211, -0.021175069734454155, 0.0005938295507803559, 0.008831175044178963, 0.03233395144343376, 0.00868304818868637, -0.010785037651658058, -0.02140078693628311, 0.025322619825601578, 0.018099676817655563, 0.015997687354683876, 0.002812644699588418, 0.020131129771471024, 0.03507076948881149, -0.0028655470814555883, -0.0015315247001126409, -0.0033945711329579353, -0.022740982472896576, 0.009755204431712627, -0.003052468877285719, -0.004334470722824335, -0.018029140308499336, -0.02735407091677189, -0.01715448684990406, -0.02371438592672348, -0.0088382288813591, -0.0006057325517758727, -0.01192067563533783, 0.006524630356580019, 0.015108928084373474, 0.006803249474614859, -0.009120374917984009, -0.010862627997994423, 0.013719357550144196, -0.0010351238306611776, 0.015278215520083904, 0.0027438716497272253, -0.012167553417384624, -0.002094935392960906, -0.023079557344317436, -0.032503239810466766, -0.006168420892208815, -0.010129047557711601, 0.012555505149066448, -0.0016443831846117973, -0.006126098800450563, -0.00851376075297594, -0.009346092119812965, -0.004330943804234266, -0.0036097075790166855, -0.0033575394190847874, -0.0303024984896183, 0.02168293297290802, 0.035776134580373764, 0.015616790391504765, 0.008400902152061462, -0.0025340253487229347, -0.0006110228132456541, -0.007660268805921078, 0.01921415515244007, -0.02171114832162857, 0.025026366114616394, -0.024899400770664215, 0.020808281376957893, 0.003749017370864749, 0.021302036941051483, -0.021880436688661575, -0.013867484405636787, -0.01746484823524952, 0.010749769397079945, 0.020526133477687836, 0.028327476233243942, 0.0037807587068527937, -0.027988901361823082, 0.009028677828609943, 0.006425878964364529, 0.016406800597906113, -0.006087303627282381, 0.023488668724894524, 0.022684551775455475, -0.01733788289129734, -0.01694287732243538, -0.6405846476554871, -0.021908650174736977, 0.005932123400270939, -0.03490148112177849, 0.015066605992615223, 0.02836979739367962, 0.012068802490830421, 0.011123612523078918, -0.02491350658237934, 0.01244264654815197, 0.007286425214260817, 0.002643357031047344, -0.007970629259943962, 0.02584458887577057, -0.018861472606658936, -0.02592923305928707, 0.019143618643283844, 0.0007895684102550149, -0.0010959615465253592, 0.03792044520378113, -0.005843952763825655, 0.016646623611450195, 0.013345514424145222, -0.0030983176548033953, 0.021443109959363937, 0.002087881788611412, 0.014601064845919609, -0.010171369649469852, 0.0014407088747248054, 0.018706291913986206, -0.021668827161192894, 0.00931787770241499, -0.013930967077612877, -0.008034111931920052, 0.04542553424835205, 0.001305807731114328, -0.025266189128160477, 0.012943455949425697, 0.014713923446834087, 0.04601804167032242, -0.0013745808973908424, -0.0015817820094525814, 0.03808973357081413, 0.011130666360259056, -0.029681777581572533, 0.02291026897728443, 0.026465311646461487, -0.013874538242816925, -0.008859389461576939, -7.384294440271333e-05, 0.0008561373106203973, -0.015898937359452248, 0.011370491236448288, 0.006531684193760157, -0.00331521756015718, -0.013148011639714241, 0.04395837336778641, -0.015165356919169426, 0.019609158858656883, -0.033095747232437134, -0.00952948722988367, 0.01287291944026947, -0.025280296802520752, 0.009719936177134514, -0.015405180864036083, 0.0008169013308361173, -0.02923034317791462, -0.008415009826421738, -0.0010201347758993506, -0.04438159242272377, 0.007970629259943962, -0.0031300592236220837, 0.004482597578316927, -0.009092160500586033, 0.00942368246614933, 0.04071369394659996, 0.009705828502774239, -0.016872340813279152, 0.014558742754161358, 0.008337419480085373, 0.019425764679908752, -0.012075856328010559, -0.007900092750787735, -0.00044393938151188195, 0.025632979348301888, 0.0019450451945886016, -0.03233395144343376, 0.0053854649886488914, -0.012950509786605835, 0.013634714297950268, 0.03385753929615021, 0.0302742850035429, -0.0018004452576860785, -0.005251445807516575, 0.016308048740029335, 0.013373728841543198, -0.03095143474638462, 0.0031917786691337824, 0.03509898483753204, -0.0068773129023611546, -0.01119414996355772, -0.01869218423962593, -0.004285095259547234, -0.002068484202027321, 0.025971556082367897, -0.0002235126739833504, -0.026140842586755753, 0.0369611494243145, 0.043535154312849045, -0.0003778113750740886, -0.014953747391700745, -0.015094820410013199, -0.020808281376957893, -0.011250578798353672, 0.035776134580373764, -0.029399631544947624, 0.007857770659029484, 0.01894611492753029, 0.010813252069056034, -0.02735407091677189, 0.0031618005596101284, -0.007878932170569897, 0.008062327280640602, 0.007885986007750034, 0.0034016247373074293, 0.004584875423461199, 0.027833720669150352, -0.011483348906040192, -0.013669982552528381, -0.008520814590156078, 0.018678076565265656, 0.01129995472729206, 0.021513646468520164, -0.012329787947237492, 0.01313390489667654, 0.004785904660820961, 0.009219125844538212, 0.00026340989279560745, 0.005286714062094688, -0.005484216380864382, -0.006115518510341644, 0.006161367055028677, -0.019975949078798294, -0.004930504597723484, 0.00501162139698863, -0.03097965009510517, -0.005036309361457825, -0.012252197600901127, 0.0009689957951195538, -0.015250001102685928, 0.015376966446638107, 0.007392229977995157, 0.002364737680181861, 0.0016637807711958885, -0.003660846734419465, -0.013846323825418949, 0.005360777489840984, -0.020921139046549797, -0.008259829133749008, -0.015207679010927677, 0.009755204431712627, -0.01616697572171688, -0.00382660748437047, 0.005822791717946529, -0.029314987361431122, -0.02571762353181839, 0.005329035688191652, 0.009021623991429806, -0.01709805801510811, -0.00916269700974226, -0.013239709660410881, -0.009621184319257736, -0.010686286725103855, -0.00014360799104906619, -0.0025640034582465887, 0.02449028752744198, -0.020272202789783478, -0.0037243294063955545, 0.022769195958971977, 0.004658938851207495, 0.004595455713570118, -0.008922873064875603, -0.0029431371949613094, 0.002906105713918805, 0.02217668853700161, 0.013909806497395039, 0.01967969536781311, 0.052563831210136414, -0.004006475675851107, 0.01336667500436306, -0.0009072762914001942, 0.01762002892792225, 0.02368617057800293, 0.008944033645093441, 0.013599446043372154, -0.0035250638611614704, 0.02056845650076866, 0.011448080651462078, -0.0011038968805223703, 0.019736124202609062, 0.020258095115423203, 0.006545791402459145, 0.012082910165190697, -0.02473011240363121, 0.025576550513505936, -0.00998092070221901, -0.005022202152758837, -0.0003987519012298435, -0.0031053712591528893, 0.03360360860824585, 0.021753469482064247, -0.017845746129751205, -0.03055643104016781, 0.028722479939460754, 0.02621137909591198, 0.014742137864232063, -0.006940796039998531, -0.004017055965960026, -0.025830483064055443, 0.0011682615149766207, -0.004330943804234266, -0.003904197597876191, 0.010030296631157398, 0.015786077827215195, -0.027579788118600845, 0.006041455082595348, 0.014283650554716587, -0.0036291051656007767, -0.0033769370056688786, -0.050617024302482605, -5.890903412364423e-05, 0.023643849417567253, -0.005918016191571951, 0.0006039691506884992, 0.029314987361431122, -0.010509945452213287, 0.02870837412774563, -0.0037595978938043118, -0.00549832358956337, 0.0017995635280385613, 0.02449028752744198, 0.013994450680911541, 0.019044866785407066, -0.01721091754734516, 0.031036078929901123, 0.01730966754257679, 0.0336882546544075, 0.013317299075424671, -0.036453284323215485, 0.013112743385136127, -0.01918593980371952, -0.0159553661942482, -0.03792044520378113, 0.009691720828413963, 0.02030041813850403, -0.004891709424555302, 0.00032601109705865383, 0.014114362187683582, 0.004288621712476015, 0.0096846679225564, 0.013373728841543198, 0.006179001182317734, 0.008661887608468533, 0.012273358181118965, -0.0013225602451711893, -0.02654995582997799, -0.023911887779831886, -0.024194033816456795, -0.0014750955160707235, 0.005671137943863869, 5.946010060142726e-05, 0.004383846186101437, -0.009289663285017014, -0.017422527074813843, -0.008704209700226784, -0.0030630494002252817, -0.0024035326205193996, 0.01949630118906498, -0.010785037651658058, 0.00943778920918703, -0.0004880246997345239, -0.023954210802912712, 0.04500231519341469, 0.002724474063143134, 0.013973289169371128, -0.01185719296336174, -0.016646623611450195, 0.02457493171095848, -0.012111124582588673, 0.005001041106879711, 0.011095398105680943, 0.012633094564080238, 0.004225139040499926, 0.009832793846726418, -0.018240749835968018, -0.019736124202609062, -0.009607077576220036, -0.016420908272266388, -0.00711361039429903, -0.003607944119721651, 0.024716004729270935, 0.013056314550340176, -0.01647733710706234, -0.011483348906040192, 0.0319671630859375, 0.02688853070139885, -0.02236008457839489, -0.011215310543775558, -0.004337997641414404, -0.014255435205996037, -5.44178419659147e-06, -0.005099792033433914, -0.01817021332681179, -0.016096439212560654, -0.009409574791789055, 0.002616905840113759, -0.015348752029240131, -0.03490148112177849, 0.015080712735652924, 0.019270583987236023, -0.014897317625582218, -0.025477800518274307, -0.012668363749980927, 0.011433973908424377, 0.017478955909609795, 0.010375925339758396, 0.021979186683893204, 0.014474098570644855, -0.008288043551146984, -9.671221778262407e-05, -0.0006141088088043034, -0.005851006135344505, -0.00016950813005678356, -0.005868640262633562, -0.007928307168185711, 0.0011964761652052402, 0.00635181600227952, 0.003209412796422839, -0.0030489421915262938, 0.011433973908424377, 0.0036361587699502707, -0.01546161063015461, 0.018621647730469704, -0.019609158858656883, 0.012647202238440514, -0.007815449498593807, -0.004852914251387119, 0.008944033645093441, 0.023319382220506668, -0.008556082844734192, 0.008273936808109283, 0.03924653306603432, 0.0050539434887468815, -0.00873242411762476, -0.015334644354879856, 0.012209875509142876, -0.0007463648216798902, 0.012576665729284286, -0.005314928479492664, 0.01099664717912674, 0.025943340733647346, 0.022656338289380074, 0.004997514188289642, 0.019933627918362617, 0.004718894604593515, -0.0010924347443506122, 0.003942993003875017, -0.013296138495206833, 0.01129995472729206, -0.005032782442867756, -0.008986355736851692, 0.009585916064679623, -0.012865865603089333, -0.02990749478340149, 0.031177151948213577, 0.00879590678960085, -0.014234274625778198, -0.0017545964801684022, -0.0015817820094525814, -0.013239709660410881, -0.016068223863840103, -0.009310823865234852, 8.48091731313616e-05, -0.04209620878100395, 0.0016884685028344393, -0.02300902083516121, -0.010298334993422031, -0.011723173782229424, -0.002493466716259718, -0.008358580060303211, -0.02611262910068035, -0.013987396843731403, -0.02001827023923397, -0.019453978165984154, 0.001155035919509828, -0.023051341995596886, -0.0218945425003767, 0.02590101957321167, 0.006581059657037258, 0.00936019979417324, 0.022952592000365257, -0.02173936367034912, -0.006743293721228838, 0.01989130489528179, 0.009339038282632828, -0.021612396463751793, -0.01310568954795599, -0.025082794949412346, 0.017394311726093292, -0.009374306537210941, 0.023206522688269615, 0.0045460802502930164, -0.020864710211753845, 0.024687791243195534, 0.03532470017671585, -0.003057759255170822, 0.029399631544947624, 0.00425688037648797, -0.010453515686094761, 0.013923914171755314, 0.021414894610643387, 0.002680388744920492, -0.02473011240363121, 0.0012299809604883194, -0.0012070565717294812, -0.05115310102701187, -0.005142114125192165, -0.015630898997187614, -0.00976225733757019, -0.032418593764305115, -0.008520814590156078, 0.030443571507930756, -0.01077798381447792, 0.015348752029240131, -0.0030101470183581114, 0.012640148401260376, -0.021443109959363937, 0.007085395976901054, 0.0005647332291118801, -0.006662176456302404, -0.014114362187683582, -0.005025728605687618, -0.022656338289380074, 0.01653376594185829, -0.0023135985247790813, -0.030866792425513268, 0.014572850428521633, -0.008295097388327122, -0.005452475044876337, -0.00823866855353117, -0.0018321867100894451, -0.03391396999359131, -0.031177151948213577, -0.0013781076995655894, 0.004595455713570118, 0.016703054308891296, -0.007043073885142803, -0.0009099214221350849, -0.007526249159127474, -0.008161078207194805, 0.020060593262314796, -0.0016937587643042207, 0.006348289083689451, -0.025576550513505936, -0.04536910355091095, 0.003140639513731003, -0.0029219763819128275, -0.011137720197439194, -0.048246994614601135, -0.019453978165984154, -0.02454671636223793, 0.01996184140443802, -0.0023435766343027353, 0.007187673822045326, 0.0062424843199551105, 0.016406800597906113, -0.013084528967738152, -0.003851295216009021, -0.004535499960184097, -0.034788623452186584, -0.007356961723417044, -0.01970791071653366, 0.04178584739565849, 0.043535154312849045, 0.02537904866039753, 0.019792554900050163, 0.007759019732475281, -0.003001329954713583, 0.025336727499961853, -0.007512141950428486, 0.003851295216009021, 0.019284691661596298, -0.017972711473703384, 0.0065740058198571205, 0.019736124202609062, 0.013916860334575176, 0.008492600172758102, 0.020131129771471024, -0.0235874205827713, 0.007229995913803577, -0.00936019979417324, 0.004129914566874504, -0.0006348288734443486, -0.027650324627757072, -0.018833257257938385, 0.002805591095238924, 0.004066431894898415, -0.004824699833989143, -0.007392229977995157, -0.006750347092747688, 0.01647733710706234, 0.00398884154856205, 0.029738206416368484, 0.027481038123369217, 0.013571230694651604, -0.03399861603975296, -0.019637374207377434, -0.007554464042186737, 0.024151712656021118, 0.002768559381365776, 0.00942368246614933, -0.0020420330110937357, -0.016237512230873108, 0.005657030735164881, 0.01709805801510811, -0.0008526104502379894, 0.020836494863033295, 0.01721091754734516, 0.0018515842966735363, 0.02873658761382103, -0.013959182426333427, -0.007050127722322941, -0.011462188325822353, -0.010354764759540558, -0.0037878123112022877, -0.021330250427126884, -0.015278215520083904, -0.019482193514704704, -0.01650555059313774, 0.002638066653162241, 0.00468009989708662, 0.025026366114616394, 0.012139338999986649, -0.029484275728464127, -0.004341524094343185, 0.012202821671962738, 0.03419611603021622, 0.01496785506606102, 0.011828978545963764, 0.019397549331188202, -0.014234274625778198, -0.0009072762914001942, -0.013916860334575176, 0.01547571737319231, -0.013465425930917263, 0.029117485508322716, 0.04235013946890831, -0.009494218975305557, 0.00597444549202919, -0.006140206009149551, -0.012590773403644562, -0.01832539401948452, -0.02137257345020771, 0.016491444781422615, -0.009670560248196125, -0.003957100212574005, -0.024067068472504616, -0.00609083054587245, -0.03385753929615021, 0.0024123499169945717, -0.043253008276224136, -0.004348577931523323, -0.005427787080407143, -0.002227191347628832, -0.028595514595508575, 0.01635037176311016, -0.020088808611035347, 0.0076320539228618145, 0.01477035228163004, -0.004729475360363722, 0.011814870871603489, 0.01034771092236042, -0.03095143474638462, 0.010305388830602169, 0.013832216151058674, 0.03267252817749977, -0.03391396999359131, -0.005523011554032564, 0.02746693044900894, 0.008852336555719376, -0.0014777405885979533, -0.011631475761532784, -0.006563425529748201, 0.032728955149650574, -0.014925532974302769, -0.017634136602282524, 0.017563600093126297, 0.008852336555719376, 0.023107772693037987, -0.01546161063015461, 0.004126387648284435, 0.017168594524264336, 0.004482597578316927, -0.008894658647477627, 0.0035144833382219076, -0.030500002205371857, -0.016985200345516205, -0.01666073128581047, -0.013352567330002785, -0.0008464385173283517, -0.03775115683674812, -0.0032958199735730886, 0.013528909534215927, -0.037835802882909775, -0.018367715179920197, -0.019171832129359245, 0.008972248062491417, -0.0002715656883083284, 0.00598149886354804, -0.006217796355485916, 0.0038548221345990896, 0.03332146257162094, -0.009571809321641922, 0.021485431119799614, -0.0014301284682005644, 0.003496849210932851, -0.03732793778181076, 0.00998092070221901, -0.0074133905582129955, -0.016251619905233383, 0.016985200345516205, -0.03165680170059204, -0.006711552385240793, -0.012908187694847584, 0.012541397474706173, 0.011786656454205513, -0.0068526254035532475, -0.02254347875714302, 0.026352452114224434, 0.005290240980684757, 0.029371416196227074, -0.03224930912256241, -0.01567322015762329, 0.011885407380759716, -0.0009619421325623989, 0.011779602617025375, 0.0007335800328291953, -0.00029162451392039657, -0.02787604182958603, -0.014572850428521633, -0.007744912523776293, -0.0012846468016505241, -0.022106152027845383, -0.02592923305928707, -0.0034316028468310833, -0.007184146903455257, -0.025209760293364525, -0.0018339501693844795, -0.009649399667978287, -0.01461517158895731, -0.009663506411015987, -0.015278215520083904, -0.01093316450715065, 0.0015967710642144084, 0.019355228170752525, 0.02488529309630394, 0.01309158280491829, 0.009466004557907581, -0.026902638375759125, -0.03425254672765732, -0.043196581304073334, 0.0004999277298338711, -0.03490148112177849, -0.009726989082992077, 0.000336811994202435, 0.029653562232851982, -0.0019080134807154536, -0.02118917740881443, -0.005886274389922619, -0.00922617968171835, -0.0134583730250597, -0.021922757849097252, 0.004574294667690992, -0.014128469862043858, 0.03089500591158867, -0.002802064176648855, 0.0052126506343483925, 0.053353842347860336, 0.0026063253171741962, -0.0008270409889519215, 0.0032870029099285603, -0.009339038282632828, -0.004641304723918438, -0.04294264689087868, -0.01448820624500513, -0.007991790771484375, -0.028482656925916672, -0.008549029007554054, 0.029089270159602165, 0.021922757849097252, -0.011970051564276218, 0.009797525592148304, 0.020243987441062927, 0.008062327280640602, -0.024292785674333572, -0.0034827417694032192, -0.01379694789648056, 0.010524052195250988, 0.014459991827607155, 0.0004055851313751191, 0.0010721554281190038, 0.011060129851102829, 0.007885986007750034, 0.010425301268696785, -0.010446461848914623, -0.02374260127544403, 0.004232192412018776, -0.007208834867924452, -0.009409574791789055, 0.017295559868216515, 0.0017404892714694142, -0.030838577076792717, 0.01129995472729206, -0.02636655978858471, 0.0042533534578979015, 0.0039500463753938675, 0.012343895621597767, -0.022755088284611702, -0.004986933432519436, 0.005523011554032564, -0.05778353661298752, -0.014798566699028015, 0.002675098367035389, -0.008097595535218716, -0.018917901441454887, 0.0026662813033908606, 0.0008266001241281629, -0.006323601119220257, -0.010051457211375237, 0.0027368178125470877, -0.0023559206165373325, -0.012865865603089333, 0.008612511679530144, 0.0012969906674697995, -0.006700971629470587, -0.02248704992234707, -0.011391651816666126, -0.0005982380826026201, -0.01002324279397726, -0.0018321867100894451, 0.011236471123993397, -0.02829926088452339, -0.005374884698539972, 0.005960337817668915, 0.0008570189820602536, -0.021330250427126884, 0.016491444781422615, 0.04235013946890831, 0.018466467037796974, -0.004754162859171629, 0.20574098825454712, 0.0069654835388064384, 0.005353723652660847, 0.03597363829612732, -0.008323311805725098, 0.026874423027038574, 0.0064011914655566216, -0.013098636642098427, -0.014368293806910515, 0.03323682025074959, -0.015602683648467064, 0.006362396292388439, -0.010495837777853012, -0.007032493595033884, 0.009536541067063808, 0.006115518510341644, -0.02324884571135044, -0.02897641249001026, -0.03425254672765732, -0.025816375389695168, 0.002361210761591792, -0.02473011240363121, -0.009106268174946308, -0.025322619825601578, 0.025816375389695168, -0.0121816610917449, 0.008979301899671555, 0.007773126941174269, 0.02525208331644535, -0.004881128668785095, -0.010799145326018333, -0.012365056201815605, 0.011589154601097107, -0.00965645257383585, 0.017380204051733017, -0.015419288538396358, 0.020413275808095932, -0.004694207105785608, 0.01116593461483717, 0.0055300649255514145, 0.002907868940383196, -0.010404140688478947, -0.004641304723918438, -0.012590773403644562, -0.01127173937857151, 0.016025902703404427, -0.014742137864232063, -0.01343015767633915, 0.031148938462138176, -0.02353099174797535, -0.03402682766318321, -0.015038391575217247, 0.018424145877361298, 0.009966813959181309, 0.005769889336079359, 0.004874075297266245, 0.01921415515244007, -0.006221323274075985, 0.023460455238819122, 0.008781800046563148, -0.011899515055119991, 0.030528215691447258, -0.024786541238427162, -0.01783163845539093, -0.019242368638515472, 0.006337708327919245, -0.03693293407559395, 0.030133211985230446, 0.009607077576220036, 0.0008455568458884954, 0.0026592276990413666, -0.019566837698221207, -0.028003007173538208, -0.0049093435518443584, -0.015221785753965378, -0.02993571013212204, 0.03388575464487076, 0.0007644398137927055, 0.03334967792034149, 0.030725719407200813, 0.01962326653301716, -0.005128006916493177, 0.005353723652660847, -0.005290240980684757, -0.00331521756015718, -0.03904902935028076, 0.04003654047846794, -0.0062424843199551105, -0.010432355105876923, 0.021668827161192894, -0.006602220702916384, -0.01863575540482998, 0.0022994913160800934, 0.006447040010243654, 0.023573312908411026, 0.0005202069878578186, -0.002438801107928157, 0.011031915433704853, 0.011800764128565788, -0.012738900259137154, -0.04519981890916824, 0.020526133477687836, 0.03092322126030922, -0.008598404936492443, -0.03126179799437523, 0.009585916064679623, -0.0037983928341418505, 0.0004615735088009387, 0.02987927943468094, -0.003115951782092452, -0.02491350658237934, -0.027678539976477623, 0.011680851690471172, -0.000784719071816653, 0.016703054308891296, 0.03806151822209358, -0.006062616128474474, -0.016872340813279152, 0.005745201371610165, 0.011201202869415283, -0.002176052425056696, -0.015052498318254948, 0.008753584697842598, 0.007462766487151384, -0.03318038955330849, -0.027819612994790077, -0.0025075741577893496, -0.009670560248196125, -0.012922294437885284, -0.029456060379743576, 0.008005897514522076, -0.0039500463753938675, -0.014953747391700745, -0.010700393468141556, -0.004489650949835777, -0.024222249165177345, 0.02303723432123661, -0.014177845790982246, -0.013190333731472492, 0.0037243294063955545, -0.014996069483458996, 0.00942368246614933, -0.009430736303329468, 0.0031141883227974176, -0.011730227619409561, -0.02605619840323925, 0.014699815772473812, 0.0067785619758069515, -0.00965645257383585, -0.029653562232851982, -0.004577821586281061, -0.006013240199536085, -0.016279835253953934, 0.012315680272877216, 0.007237049285322428, -0.03399861603975296, -0.006838517729192972, -0.025971556082367897, -0.012576665729284286, 0.030330713838338852, -0.05425671115517616, -0.016731267794966698, 0.027833720669150352, -0.011878353543579578, -0.018071463331580162, -0.0019221208058297634, -0.18339501321315765, 0.026013877242803574, 0.02303723432123661, -0.007349907886236906, 0.018395930528640747, -0.034816838800907135, -0.005628816317766905, -0.013204441405832767, -0.015743756666779518, -0.011673797853291035, 0.01632215641438961, 0.012788275256752968, -0.023545097559690475, -0.013444265350699425, 0.009430736303329468, 0.013677035458385944, 0.009515379555523396, 0.0032817127648741007, 0.04009297117590904, 0.01321149431169033, 0.025661194697022438, -0.01946808584034443, 0.004426168277859688, 0.024377429857850075, -0.012372110038995743, 0.002320652361959219, -0.018438251689076424, -0.013684089295566082, 0.010213691741228104, 0.006362396292388439, -0.0003573116846382618, -0.025604765862226486, 0.010037350468337536, 0.012407378293573856, 0.01319738756865263, -0.002297727856785059, 0.008358580060303211, -0.0017069843597710133, 0.0011911859037354589, 0.026169057935476303, -0.013923914171755314, 0.05219704285264015, 0.02063899300992489, -0.0024405643343925476, 0.002105515915900469, 0.010728607885539532, -0.004489650949835777, -0.029709992930293083, -0.007526249159127474, -0.017408419400453568, 5.797222183900885e-05, -0.016576087102293968, -0.016801804304122925, -0.020610777661204338, 0.022472942247986794, 0.009508325718343258, 0.019171832129359245, 0.007237049285322428, 0.004560187458992004, -0.014996069483458996, -0.02149953879415989, -0.04737234115600586, 0.00877474620938301, -0.011892461217939854, -0.025802267715334892, -0.012661309912800789, -0.012484968639910221, 0.017873959615826607, -0.007998843677341938, 0.013310246169567108, -0.007871878333389759, -0.017930390313267708, 0.02223311923444271, 0.019566837698221207, 0.014474098570644855, 0.020610777661204338, 0.0023523936979472637, 0.018833257257938385, 0.03306753188371658, 0.003278185846284032, -0.014050879515707493, 0.04243478551506996, 0.00566055765375495, -0.016745375469326973, 0.004990460351109505, -0.0009610604029148817, -0.02298080548644066, 0.012668363749980927, -0.02300902083516121, -0.022585801780223846, 0.030104996636509895, -0.02106221206486225, 0.009197965264320374, 0.00022075734159443527, 0.003678480861708522, 0.021908650174736977, 0.007730805315077305, 0.003900670912116766, 0.012724792584776878, -0.031120723113417625, -0.002987222746014595, -0.010305388830602169, 0.002119623124599457, 0.02121739275753498, 0.033490750938653946, 0.02660638466477394, -0.018099676817655563, 0.021513646468520164, 0.03910546004772186, 0.007878932170569897, -0.025520121678709984, 0.012745953164994717, 0.01077798381447792, 0.03732793778181076, 0.0319671630859375, 0.021485431119799614, 0.013804001733660698, 0.006686864420771599, 0.021259713917970657, 0.021485431119799614, 0.036453284323215485, -0.01326087024062872, -0.01783163845539093, 0.027212997898459435, 0.02085060253739357, -0.013451319187879562, -0.08594172447919846, -0.029145700857043266, 0.008549029007554054, 0.03995189815759659, -0.02207793854176998, 0.04675162211060524, -0.004242773167788982, 0.007766073569655418, -0.009557701647281647, 0.0053114015609025955, 0.008760638535022736, -0.011984159238636494, -0.016519658267498016, -0.006041455082595348, -0.005071577616035938, -0.0013543016975745559, 0.02048381231725216, -0.003932412248104811, 0.005276133306324482, 0.002234244951978326, -0.003957100212574005, 0.006390610709786415, 0.005903908517211676, -0.0018604013603180647, 0.0065740058198571205, -0.008048219606280327, -0.031205367296934128, 0.02618316560983658, 0.009670560248196125, -0.0006745057180523872, 0.022966697812080383, -0.00037913391133770347, -0.01546161063015461, -0.016491444781422615, 0.009042784571647644, 0.004665992222726345, 0.01678769662976265, -0.0002510659978725016, 0.036453284323215485, -0.035860780626535416, -0.013155065476894379, -0.00965645257383585, 0.0010051457211375237, -0.008062327280640602, -0.005032782442867756, -0.020963460206985474, -0.017253238707780838, -0.003618524642661214, 0.03061285987496376, -0.02140078693628311, -0.02959713339805603, -0.0037948661483824253, -0.016956984996795654, -0.01162442285567522, 0.02374260127544403, -0.0020349794067442417, 0.020892923697829247, 0.012266305275261402, -0.01024190615862608, 0.013013992458581924, 0.01663251779973507, -0.007307585794478655, -0.01814199984073639, 0.022120259702205658, 0.0016814148984849453, -0.004020582884550095, -0.029653562232851982, -0.018621647730469704, -0.002660991158336401, -0.00256047653965652, -0.007166512776166201, 0.005805157590657473, -0.013451319187879562, 0.0014345370000228286, -0.015066605992615223, -0.03825902193784714, 0.006048508454114199, -0.02233186922967434, 0.02537904866039753, 0.0048634945414960384, -0.03216466307640076, -0.004606036469340324, -0.019242368638515472, -0.020765958353877068, 0.03924653306603432, 0.03332146257162094, -0.01983487606048584, 0.013239709660410881, 0.01709805801510811, -0.030866792425513268, -0.006983117666095495, -0.0008839110378175974, -0.011666744016110897, -0.03628399968147278, -0.014354187063872814, 0.004778850823640823, -0.001117122475989163, -0.0021866329479962587, 0.023940103128552437, 0.016858233138918877, -0.032475024461746216, -0.03436540439724922, -0.08509528636932373, 0.021824005991220474, -0.004468489903956652, -0.0022007401566952467, 0.020949354395270348, -0.0048952363431453705, -0.004214558284729719, -0.005925069563090801, -0.005410152953118086, -0.006341235246509314, -0.013282030820846558, -5.9349888033466414e-05, 0.010799145326018333, -0.0011850139126181602, -0.0017739940667524934, -0.024321001023054123, 0.04172942042350769, 0.008429116569459438, 0.015066605992615223, 0.00652110343798995, 0.006912581156939268, 0.009790472686290741, -0.009607077576220036, 0.013204441405832767, -0.002870837226510048, 0.002486413111910224, 0.019538622349500656, 0.02087881788611412, -0.011384597979485989, -0.0015006649773567915, -0.004383846186101437, -0.0008962549618445337, 0.00909921433776617, 0.0014592247316613793, 0.013126851059496403, 0.017394311726093292, -0.01632215641438961, 0.01185719296336174, -0.00048317533219233155, -0.008069380186498165, -0.028228724375367165, -0.017295559868216515, 0.012774168513715267, -0.008309205062687397, -0.013726411387324333, -0.008492600172758102, 0.000494196661747992, -0.009846901521086693, 0.003699641674757004, 0.04748520255088806, 0.011349329724907875, 0.015884829685091972, -0.0201452374458313, -0.003593836911022663, -0.012414432130753994, -0.014911425299942493, 0.0023294694256037474, 0.0045178658328950405, -0.017690565437078476, -0.011130666360259056, 0.02324884571135044, 0.01613876037299633, -0.004771796986460686, -0.02248704992234707, -0.006785615347325802, -0.010912002995610237, -0.02897641249001026, 0.01194889098405838, 0.02306544966995716, -0.014269542880356312, -0.016279835253953934, -0.014149630442261696, 0.012626041658222675, -0.009035731665790081, 0.003436892991885543, -0.008675995282828808, 0.004052324220538139, -0.00019309378694742918, -0.00823866855353117, 0.014325971715152264, -0.0018039720598608255, -0.01116593461483717, -0.039161890745162964, -0.018099676817655563, 0.023545097559690475, -0.0007930952706374228, -0.011095398105680943, 0.03532470017671585, 0.008266882970929146, 0.0015500405570492148, -0.015405180864036083, 0.0079776830971241, -0.0012185188243165612, 0.00036987601197324693, 0.013839269988238811, 0.019609158858656883, -0.004189870785921812, 0.0029625347815454006, 0.026408882811665535, 0.013599446043372154, 0.011716119945049286, -0.007103030104190111, -0.012463807128369808, -0.00609083054587245, 0.003108898177742958, 0.025393156334757805, -0.02460314705967903, -0.04472016915678978, 0.010037350468337536, 0.00038684887113049626, 0.0175918135792017, -0.009910384193062782, -0.019975949078798294, 0.018029140308499336, -0.002461725380271673, 0.013592392206192017, 0.003516246797516942, -0.016392692923545837, -0.012971670366823673, 0.013408997096121311, 0.014728030189871788, 0.0003478333237580955, 0.00034011839306913316, -0.0143189188092947, 0.0402904748916626, -0.0005493033095262945, 0.0159553661942482, -0.028158187866210938, 0.0037737051025032997, -0.01129995472729206, -0.019270583987236023, 0.01666073128581047, -0.024250464513897896, -0.013359621167182922, -0.009346092119812965, 0.0016161685343831778, -0.009508325718343258, 0.018649863079190254, -0.023516884073615074, 0.1144384890794754, 0.016519658267498016, -0.007356961723417044, 0.02470189705491066, 0.002438801107928157, -0.009621184319257736, -0.0010651018237695098, 0.030104996636509895, -0.015235893428325653, -0.0064435130916535854, 0.029851065948605537, 0.006447040010243654, 0.001812789123505354, -0.01785985380411148, -0.004172236658632755, -0.01795860379934311, -0.01905897445976734, -0.015602683648467064, -0.02501225844025612, 0.002967825159430504, 0.022797411307692528, 0.016420908272266388, -0.014699815772473812, -0.0024546717759221792, -0.0002124913444276899, 0.007074815221130848, 0.041221555322408676, -0.005716986954212189, -0.01299988478422165, -0.01067217905074358, 0.01626572757959366, -0.010573428124189377, -0.0218663290143013, -0.042491212487220764, -0.0024035326205193996, 0.007970629259943962, -0.0036961149889975786, 0.021076319739222527, 0.03470398113131523, 0.0022254278883337975, 0.001003382378257811, 0.02688853070139885, -0.025209760293364525, -0.031120723113417625, 0.007949468679726124, -0.0034474735148251057, -0.005441894289106131, -0.01752127707004547, -0.019566837698221207], "8719fd0e-5005-4414-bf3c-41d6a3057de9": [0.006739016622304916, -0.015929194167256355, 0.008280226960778236, -0.020710639655590057, -0.005016487557440996, 0.014733834192156792, -0.02566668763756752, -0.008206356316804886, 0.024927981197834015, -0.003310747444629669, 0.0044691734947264194, 0.017379745841026306, -0.023114793002605438, -0.007286330685019493, -0.02025398425757885, 0.008454829454421997, -0.00917338952422142, -0.019166070967912674, -0.004277781117707491, -0.0208315197378397, -0.016251539811491966, -0.0056208837777376175, 0.002054946729913354, -0.013316860422492027, -0.031025666743516922, 0.022644707933068275, 0.0235848780721426, -0.025760704651474953, 0.009482303634285927, -0.0038043376989662647, 0.019958501681685448, -0.009442009963095188, -0.015311367809772491, -0.011637982912361622, 0.008367528207600117, 0.011369362473487854, -0.012376689352095127, 0.006530835758894682, -0.005906293168663979, -0.020065950229763985, 0.015781452879309654, 0.003265417879447341, 0.007669114973396063, -0.019689882174134254, -0.026485979557037354, 0.020012225955724716, -0.02722468599677086, -0.008548847399652004, -0.010194147936999798, 0.011590974405407906, -0.0029229267966002226, 0.014787557534873486, -0.045423723757267, -0.011550680734217167, -0.01445178221911192, 0.015512833371758461, -0.025451790541410446, 0.0035189283080399036, 0.015391954220831394, 0.017057400196790695, 0.007823571562767029, 0.017863262444734573, -0.01689622923731804, -0.01814531348645687, -0.019434692338109016, 0.01641271263360977, -0.021315036341547966, 0.006601348519325256, -0.023114793002605438, -0.0017779318150132895, 0.03215387091040611, 0.009777786210179329, 0.001333868596702814, 0.0057854135520756245, 0.032395631074905396, 0.01059036236256361, -0.02118072472512722, -0.012564723379909992, 0.0017090978799387813, 0.005248172674328089, 0.011658129282295704, -0.003874850459396839, 0.00748108047991991, 0.007400494534522295, 0.02118072472512722, -0.0019844339694827795, -0.009401717223227024, -0.01066423300653696, 0.003827841952443123, 0.006057391874492168, 0.025881584733724594, 0.005731689743697643, -0.007689261343330145, 0.026539703831076622, 0.0040696002542972565, -4.4936219637747854e-05, 0.012658740393817425, 0.011597689241170883, -0.004858673084527254, -0.0341416634619236, -0.0176483653485775, 0.003309068735688925, 0.00010256895620841533, -0.006346159148961306, -0.023799775168299675, -0.0159157644957304, 0.04845913499593735, -0.005996952299028635, -0.0032402346841990948, -0.01368621364235878, -0.021315036341547966, 0.02456534281373024, -0.008119054138660431, -0.04244203865528107, -0.0064703961834311485, -0.011725284159183502, 0.01226924080401659, -0.02251039631664753, 0.009213683195412159, -0.014465213753283024, 0.008367528207600117, 0.014854713343083858, 0.029440805315971375, -0.0005322043434716761, -0.0033611138351261616, 0.012222232297062874, -0.005500004626810551, -5.075982699054293e-05, -0.002335319295525551, -0.010180716402828693, 0.050420064479112625, -0.014693540520966053, 0.008777174167335033, -0.0020247269421815872, -0.014975592494010925, -0.006789383012801409, -0.005130651406943798, -9.475168189965189e-05, -0.016157522797584534, -0.021650811657309532, 0.014142869040369987, 0.006436818279325962, 0.007084865588694811, -0.005261603742837906, 0.011040301993489265, 0.024605637416243553, 0.03150918334722519, -0.0038714928086847067, -0.001209631678648293, -0.008804036304354668, -0.0018568391678854823, -0.016103798523545265, 0.005614168010652065, -0.01556655764579773, -0.01008669938892126, 0.028957288712263107, 0.018158745020627975, -0.00311767659150064, 0.006822960451245308, 0.0054865735583007336, -0.010919422842562199, 0.023772913962602615, -0.0036733851302415133, -0.019945072010159492, 0.012531145475804806, 0.03113311529159546, 0.017702089622616768, 0.015982918441295624, -0.00844811461865902, -0.01459952350705862, 0.009603182785212994, 0.0063226548954844475, -0.040669143199920654, 0.04085717722773552, -0.0012113105040043592, 0.027587324380874634, -0.021395621821284294, 0.030918218195438385, -0.011725284159183502, -0.023356551304459572, -0.005704827606678009, -0.013410878367722034, -0.009885233826935291, 0.02060319110751152, -0.008777174167335033, -0.04652506858110428, 0.009583035483956337, 0.009596467018127441, 0.024551913142204285, 0.015056177973747253, 0.01425031665712595, 0.035404179245233536, 0.023047637194395065, 0.003572652582079172, -0.5931140184402466, -0.04413434490561485, -0.017487194389104843, 0.010435906238853931, -0.0015067930798977613, 0.019945072010159492, -0.0023907222785055637, 0.01892431266605854, -0.016184384003281593, 0.020267415791749954, -0.010966431349515915, 0.021341897547245026, -0.0013808772200718522, -0.008085477165877819, 0.01361234299838543, -0.02060319110751152, -0.0037371825892478228, -0.004569906275719404, -0.0005989397177472711, 0.013478033244609833, -0.04010503739118576, -0.006131262518465519, -0.013007947243750095, -0.0012121499748900533, 0.00901221763342619, -0.009784501045942307, 0.01819903776049614, -0.013289998285472393, -0.013296714052557945, 0.02092553675174713, -0.021462777629494667, 0.006681934464722872, 0.028608081862330437, 0.010738103650510311, 0.04126010835170746, -0.007058003451675177, -0.03900369629263878, 0.015700867399573326, -0.011651413515210152, 0.0465787909924984, -0.010079983621835709, -0.035350456833839417, 0.010106845758855343, -0.003706962801516056, 0.0002577077830210328, 0.00011563272710191086, 0.020133106037974358, -0.032449353486299515, 0.00693712430074811, 4.328357317717746e-05, -0.0063125817105174065, -0.002258091000840068, -0.0018954533152282238, 0.009677053429186344, 0.014290610328316689, 0.00307066785171628, 0.03787548840045929, -0.00872345082461834, 0.012584869749844074, -0.011302206665277481, -0.009206967428326607, 0.008844329975545406, -0.030273528769612312, -0.014572661370038986, -0.027358997613191605, 0.020724071189761162, -0.02812456525862217, -0.0235848780721426, 0.0031361442524939775, -0.028285738080739975, 0.012228948064148426, -0.005795487202703953, 0.009106234647333622, -0.018467659130692482, 0.017379745841026306, 0.03978269547224045, 0.028661806136369705, -0.016385849565267563, -0.001093789003789425, 0.016453005373477936, 0.0012113105040043592, 0.008978639729321003, 0.01909891702234745, -0.03107939101755619, 0.008548847399652004, -0.006275646388530731, -0.03140173479914665, -0.017164848744869232, 0.003592798952013254, -0.008501838892698288, 0.028312599286437035, 0.03287914767861366, 0.0036431653425097466, -0.053079407662153244, 0.005661176983267069, 0.016681332141160965, -0.0027634333819150925, -0.004989625420421362, 0.013847386464476585, 0.00304884254001081, 0.00872345082461834, -0.009777786210179329, 0.0007903318619355559, 0.012443844228982925, 0.02566668763756752, -0.01985105499625206, -0.03376559540629387, 0.01500245463103056, 0.03516242280602455, -0.008790605701506138, 0.012168508023023605, 0.005295181181281805, -0.0172185730189085, -0.008629432879388332, 0.017876693978905678, -0.03341639041900635, -0.0033829393796622753, 0.012699034065008163, 0.03175094351172447, -0.026002462953329086, 0.018091589212417603, -0.026351669803261757, 0.011731999926269054, -0.017661796882748604, 0.012940792366862297, 0.007360201328992844, -0.0008973603253252804, -0.005983521230518818, -0.012766188941895962, -0.008783889934420586, -0.012537861242890358, -0.0022513754665851593, 0.016936521977186203, -0.0070244260132312775, -0.004009160678833723, 0.041421279311180115, 0.005184375215321779, -0.01042919047176838, 0.007910873740911484, -0.0017141344724223018, -0.0030656312592327595, -0.010194147936999798, 0.013417593203485012, -0.0012138288002461195, 0.018454227596521378, -0.02506229095160961, -0.01289378385990858, -0.009844941087067127, -0.004945974797010422, 0.004311359021812677, 0.01952870935201645, 0.003740540239959955, 0.007004279177635908, 0.011114172637462616, 0.010697810910642147, 0.010113561525940895, 0.004882177338004112, -0.028178289532661438, 0.006923693232238293, -0.010268018580973148, 0.0035189283080399036, 0.006977417040616274, -0.03860076516866684, 0.012296102941036224, -0.028205150738358498, -0.016399281099438667, -0.002832267200574279, 0.0009997718734666705, -0.028339462354779243, -0.02696949802339077, -0.004747867118567228, -0.026177067309617996, -0.00010776298586279154, -0.015512833371758461, 0.017715521156787872, 0.0019928282126784325, -0.027278410270810127, -0.008293657563626766, -0.007695977110415697, -0.007360201328992844, 0.013202697038650513, -0.015190488658845425, 0.01154396589845419, -0.01050306111574173, 0.0329865962266922, -0.006020456552505493, 0.037687454372644424, 0.03032725304365158, -0.03975583240389824, -0.012873636558651924, -0.02042858861386776, 0.011926749721169472, 0.030166080221533775, -0.006581202149391174, 0.03830528259277344, 0.0022312288638204336, 0.019810760393738747, 0.006503973621875048, 0.00375061365775764, 0.008481691591441631, 0.027963392436504364, 0.017930418252944946, 0.009421863593161106, -0.026687445119023323, 0.0341416634619236, -0.011369362473487854, 0.004979552235454321, 0.004519539885222912, 0.0006950555252842605, 0.025948738679289818, 0.005103789269924164, -0.04241517558693886, -0.02216118946671486, -0.0014782521175220609, 0.03035411611199379, 0.007078149821609259, -0.008998786099255085, 0.013498179614543915, -0.026579996570944786, 0.006997563876211643, 0.01022772490978241, -0.022604413330554962, 0.0235848780721426, -0.020039089024066925, -0.014344333671033382, 0.01235654205083847, -0.005802202504128218, 0.007669114973396063, 0.01105373352766037, -0.04722348228096962, -0.028715530410408974, -0.01292064506560564, -0.0020045803394168615, 0.010724673047661781, 0.012605016119778156, -0.018857158720493317, 0.009240544401109219, -0.02694263495504856, 0.024471325799822807, 0.006685292348265648, 0.026526274159550667, 0.0006308384472504258, 0.039164867252111435, -0.00748108047991991, 0.009468872100114822, 0.011315638199448586, 0.042146556079387665, 0.015499401837587357, -0.0169230904430151, -0.012947507202625275, 0.00042853361810557544, -0.024525050073862076, -0.008199640549719334, 0.04872775822877884, 0.015875471755862236, -0.034678906202316284, 0.015203919261693954, 0.006809529382735491, 0.037660591304302216, 0.031294286251068115, 0.019810760393738747, 0.025035429745912552, -0.0015974524430930614, 0.005446280352771282, -0.004536328371614218, -0.032073285430669785, -0.0049392590299248695, -0.01014042366296053, -0.011188043281435966, -0.012826628051698208, -0.010348604060709476, 0.011597689241170883, 0.016157522797584534, -0.03333580121397972, -0.0014421562664210796, 0.010711242444813251, -0.00958975125104189, 0.012913930229842663, 0.019958501681685448, -0.002291668439283967, -0.012531145475804806, -0.006319297011941671, 0.022564120590686798, 0.02804397977888584, 0.02606961876153946, 0.01387424860149622, -0.014545799233019352, 0.027251549065113068, -0.0029464310500770807, 0.0023319616448134184, 0.011006724089384079, 0.023719189688563347, 0.00553358206525445, -0.01709769479930401, -0.004684069659560919, -0.014787557534873486, 0.0367472842335701, -0.0285006333142519, -0.004687427543103695, 0.001784647349268198, 0.009059226140379906, -0.015875471755862236, -0.021516501903533936, -0.011449947953224182, 0.03484007716178894, -0.014344333671033382, -0.006990848109126091, 0.001004808465950191, 0.01709769479930401, -0.021368760615587234, -0.019461553543806076, 0.0027466444298624992, -0.013256421312689781, -0.03416852653026581, -0.03032725304365158, 0.002295026322826743, -0.009005501866340637, -0.006611421704292297, 0.031697217375040054, 0.015835177153348923, -0.005963374860584736, -0.0222820695489645, -0.007427356671541929, 0.013283283449709415, 0.024256430566310883, 0.008710019290447235, 0.01756777986884117, 0.017487194389104843, 0.0025132803712040186, 0.0027835797518491745, -0.015324799343943596, -0.00440537603572011, -0.008065329864621162, 0.008555562235414982, 0.006668503861874342, -0.0026492695324122906, 0.007058003451675177, -0.009515880607068539, 0.02355801686644554, -0.0024679508060216904, -0.021422484889626503, -0.004113251343369484, 0.0031025665812194347, -0.041448142379522324, 0.007467649411410093, -0.02569354884326458, 0.03287914767861366, -0.008965209126472473, 0.009891949594020844, 0.017514055594801903, -0.001932388637214899, 0.033120907843112946, 0.005291823763400316, -0.01481441967189312, -0.012853490188717842, 0.004425522405654192, -0.013390731066465378, 0.010308311320841312, -0.013753369450569153, 0.029897460713982582, -0.007635537534952164, 0.05549699440598488, -0.0016872724518179893, 0.017379745841026306, -0.0005456353537738323, 0.023222241550683975, 0.017057400196790695, 0.0026358384639024734, 0.039191730320453644, -0.022402949631214142, -0.0022648065350949764, 0.024283291772007942, -0.013901110738515854, -0.019609294831752777, 0.0214090533554554, 0.014532368630170822, -0.044000037014484406, -0.006822960451245308, -0.007366917096078396, 0.01171856839209795, -0.025008566677570343, -0.0026945993304252625, 0.00840782094746828, -0.02852749638259411, -0.013498179614543915, -0.004603483714163303, -0.008233217522501945, -0.0235848780721426, -0.03508183732628822, -0.02737242728471756, -0.03741883486509323, -0.012363257817924023, -0.02641882561147213, -0.009959104470908642, 0.005016487557440996, -0.03701590374112129, -0.025572670623660088, 0.01255800761282444, 0.0019827550277113914, 0.02115386351943016, 0.011456663720309734, -0.023705758154392242, 0.002619049744680524, 0.021247880533337593, -0.0031344653107225895, 0.003409801283851266, -0.002402474405243993, -0.05103789269924164, 0.010946284979581833, -0.004922470543533564, -0.005835779942572117, 0.007890726439654827, -0.008965209126472473, 0.011698422022163868, 0.003152932971715927, -0.0009796253871172667, 0.02063005417585373, -0.0027986897621303797, -0.005906293168663979, -0.0033896546810865402, 0.01092613860964775, 6.495159323094413e-05, -0.006678577046841383, -0.012061060406267643, 0.003152932971715927, -0.03669355809688568, 0.0007836163276806474, -0.007722839247435331, -0.003999087493866682, -0.0008062811684794724, 0.012658740393817425, 0.010986577719449997, -0.007293046452105045, -0.007709408178925514, 0.018561676144599915, 0.0015437284018844366, -0.01149024162441492, -0.01774238422513008, 0.0011030228342860937, 0.009636759757995605, -0.0038009798154234886, 0.014048852026462555, 0.000609852431807667, 0.032798562198877335, -0.0004608520248439163, -0.0004910718416795135, 0.04875461757183075, 0.05141396075487137, -0.010079983621835709, 0.011940180324018002, -0.03422224894165993, -0.025653256103396416, -0.0054932888597249985, 0.02563982643187046, 0.009327846579253674, 0.01979733072221279, -0.013753369450569153, -0.0173663143068552, -0.043704554438591, -0.018857158720493317, 0.01609036698937416, 0.0285006333142519, -0.02581442892551422, -0.026754600927233696, -0.007910873740911484, -0.007863865233957767, 0.0013204376446083188, -0.007689261343330145, -0.0002726078382693231, -0.032852284610271454, -0.025559239089488983, -0.009106234647333622, 0.012114783748984337, 0.022550690919160843, 0.004556475207209587, 0.019663019105792046, -0.013565334491431713, -8.619989239377901e-05, -0.0008067009039223194, -0.028608081862330437, 0.019542140886187553, -0.015083040110766888, 0.013189266435801983, 0.012678886763751507, 0.026808325201272964, 0.02396094799041748, 0.0081727784126997, -0.004096462391316891, 0.006846464704722166, 0.0013943081721663475, -0.015029316768050194, 0.022564120590686798, -0.006087611895054579, -0.0041770488023757935, 0.014720402657985687, 0.009764354676008224, -0.013927971944212914, 0.0066248527728021145, -0.0003659954236354679, 0.009065941907465458, 0.014774126932024956, 0.004935901612043381, -0.012027482502162457, -0.036854732781648636, -0.013726507313549519, 0.016076935455203056, -0.008239933289587498, -0.002924605505540967, -0.02717096172273159, -0.017164848744869232, -0.011470095254480839, 0.014666678383946419, 0.029494529590010643, 0.03669355809688568, 0.019461553543806076, -0.02341027557849884, 0.002634159754961729, -0.00995238870382309, -0.008555562235414982, 0.007507942616939545, 0.0028037263546139, -0.00897192396223545, 0.007622106466442347, 0.002078450983390212, 0.024457896128296852, 0.03255680203437805, 0.038063522428274155, 0.014156299643218517, -0.010395612567663193, 0.025800997391343117, 0.015297937206923962, -0.03457145765423775, -0.0047915177419781685, -0.04878148064017296, -0.03833214193582535, -0.02772163413465023, 0.003918501548469067, 0.012853490188717842, -0.03381931781768799, 0.009757638908922672, -0.002326925052329898, 0.015982918441295624, 0.003173079574480653, -0.007655683904886246, 0.0048989662900567055, -0.016399281099438667, 0.039917003363370895, 0.0177961066365242, 0.02123444899916649, 0.04241517558693886, 0.010953000746667385, -0.015539695508778095, -0.05025889351963997, 0.002983366372063756, 0.013075102120637894, 0.033899907022714615, 0.04840541258454323, 0.02965570241212845, -0.0277753584086895, -0.005771982949227095, -0.008770459331572056, 0.012840059585869312, -0.023826638236641884, 0.008931631222367287, 0.01516362652182579, -0.011671559885144234, -0.016251539811491966, 0.00599023699760437, -0.024927981197834015, 0.029870597645640373, -0.009965820237994194, -0.018427366390824318, 0.001457266160286963, -0.018736278638243675, -0.014935298822820187, 0.013269851915538311, -0.02925277128815651, 0.004841884132474661, 0.010677664540708065, 0.00722589110955596, 0.015136764384806156, -0.007313192822039127, -0.016170954331755638, 0.012954222969710827, -0.019219795241951942, 0.03148232027888298, -0.004835168831050396, -0.01860196888446808, 0.021315036341547966, 0.02020025998353958, -0.002306778449565172, -0.015929194167256355, 0.002822194015607238, 0.0434090718626976, -0.0064972578547894955, -0.03825155645608902, -0.005647745914757252, 0.015096471644937992, 0.02063005417585373, -0.010825405828654766, 0.001006487407721579, -0.006903546396642923, -0.008501838892698288, -0.029037874191999435, 0.0007626303704455495, -0.020092813298106194, 0.01050306111574173, -0.015754591673612595, -0.00507692713290453, 0.005322043318301439, -0.010462768375873566, -0.006584559567272663, 0.009750924073159695, -0.057162441313266754, -0.032019563019275665, -0.02251039631664753, -0.04620272293686867, 0.01915264129638672, 0.011826016940176487, 0.020562898367643356, 0.007507942616939545, 0.03868135064840317, -0.014317472465336323, 0.025733843445777893, 0.000531364930793643, 0.006101042963564396, -0.0033124263864010572, 0.006866611074656248, -0.033174630254507065, -0.004257634747773409, 0.018991468474268913, -0.013820524327456951, -0.022268638014793396, -0.03306718170642853, -0.003827841952443123, 0.013719791546463966, -0.017715521156787872, 0.035457905381917953, 0.01912577822804451, 0.006225279998034239, 0.019716743379831314, -0.024605637416243553, -0.02150307036936283, 0.008065329864621162, -0.011866309680044651, -0.0031126399990171194, 0.019407831132411957, 0.005026560742408037, 0.0035424327943474054, 0.004717647563666105, 0.006812887266278267, -0.0060708229430019855, -0.02882297895848751, -0.04126010835170746, -0.00443559605628252, -0.009233829565346241, -0.03145546093583107, -0.0035491480957716703, -0.03363128378987312, -0.030864493921399117, -0.02040172554552555, -0.019286951050162315, 0.005812275689095259, 0.012081206776201725, 0.033174630254507065, 0.016855936497449875, -0.0024763450492173433, 0.0047646560706198215, 0.00031646850402466953, -0.015190488658845425, -0.021368760615587234, -0.03333580121397972, -0.012128215283155441, -0.02030770853161812, -0.03572652488946915, 0.03379245847463608, 0.0025821144226938486, -0.015593419782817364, -0.010281449183821678, -0.002125459723174572, -0.013229559175670147, -0.007850433699786663, -0.005399271845817566, 0.03137487173080444, 0.002090203110128641, 0.004593410529196262, 0.023047637194395065, 0.03115997649729252, 0.001221383805386722, 0.013504895381629467, -0.01932724379003048, -0.01857510767877102, -0.011409655213356018, -0.0264725498855114, -0.006285719573497772, -0.010919422842562199, 0.01261844765394926, -0.027667909860610962, 0.01944812387228012, -0.004757940303534269, 0.025774136185646057, 0.008542131632566452, 0.009717346169054508, -0.00824664905667305, 0.008777174167335033, -0.03411480039358139, 0.0057652671821415424, 0.01631869561970234, 0.016506729647517204, -0.03717707470059395, 0.006064107641577721, 0.03381931781768799, -0.0068968310952186584, -0.009475587867200375, -0.0159157644957304, 0.013632489368319511, 0.0005976805696263909, 0.02494141273200512, -0.01171856839209795, 0.008226502686738968, -0.005845853593200445, -0.017352882772684097, 0.027009790763258934, -0.024028101935982704, 0.00024238802143372595, 0.0215567946434021, -0.013551903888583183, -0.004596767947077751, -0.023880360648036003, 0.009797932580113411, -0.032717976719141006, -0.022698432207107544, -0.00264423293992877, -0.01774238422513008, -0.01889745146036148, -0.003288922132924199, 0.0017829685239121318, -0.010724673047661781, -0.0010257945396006107, 0.00436172541230917, 0.01289378385990858, -0.009697199799120426, 0.009455441497266293, 0.015700867399573326, -0.021811984479427338, -0.008508553728461266, 0.011624551378190517, -0.007185597904026508, -0.020348001271486282, -0.023128224536776543, 0.020092813298106194, -0.03105252794921398, 0.003952078986912966, -0.012242378666996956, -0.007837003096938133, -0.025854721665382385, 0.02248353511095047, 0.0021153863053768873, 0.022819310426712036, -0.00986508745700121, 0.25013938546180725, -0.04762641340494156, -0.018991468474268913, 0.03309404477477074, 0.016009781509637833, -0.01799757219851017, 0.013296714052557945, -0.003831199835985899, 0.009744208306074142, 0.018628830090165138, -0.005876073148101568, 0.009797932580113411, -0.024283291772007942, 0.006023814436048269, -0.00047638165415264666, -0.002607297617942095, -0.029064737260341644, -0.02361174114048481, -0.0234371367841959, -0.0002268583921249956, 0.015606850385665894, -0.010093415156006813, 0.007440787740051746, -0.016627607867121696, 0.007622106466442347, 0.0031680429819971323, -0.021489638835191727, 0.035350456833839417, 0.03032725304365158, 0.021650811657309532, -0.024283291772007942, 0.011866309680044651, 0.020764363929629326, -0.0029548252932727337, 0.00546978460624814, -0.008965209126472473, 0.025102585554122925, -0.02366546541452408, 0.02291332744061947, 0.015700867399573326, 0.0036532387603074312, -0.007313192822039127, 0.003740540239959955, 0.017702089622616768, -0.012712464667856693, -0.0033359306398779154, 0.009334562346339226, -0.0009393322980031371, -0.004119966644793749, -0.003874850459396839, -0.015042747370898724, -0.022000018507242203, 0.025196602568030357, 0.03419538959860802, -0.011423086747527122, -0.005345547571778297, 0.008098907768726349, -0.0016402638284489512, 0.0003989434044342488, 0.0040494538843631744, 0.0007613712223246694, 0.026432255282998085, -0.011443233117461205, 0.0051709446124732494, -0.03521614521741867, -0.00313950190320611, -0.025881584733724594, -0.006137978285551071, -0.006268930621445179, -0.005855926778167486, -0.011120888404548168, 0.0049392590299248695, -0.017285728827118874, -0.006567771080881357, -0.010637371800839901, -0.03446400910615921, 0.04639075696468353, 0.024753378704190254, 0.013289998285472393, 0.04346279427409172, 0.015459109097719193, -0.00478816032409668, -0.0042274147272109985, -0.015190488658845425, 0.007420640904456377, -0.01515019591897726, 0.028796115890145302, -0.018131883814930916, 0.00873688142746687, -0.010476198978722095, 0.008414536714553833, -0.02456534281373024, 0.003908427897840738, -0.010805259458720684, 0.015029316768050194, 0.008864476345479488, -0.02714410051703453, 0.012967654503881931, 0.006796098314225674, 0.013028093613684177, -0.036156319081783295, 0.030595874413847923, 0.005647745914757252, 0.018709417432546616, 0.0033711872529238462, -0.0016646075528115034, -0.004566548392176628, 0.006453607231378555, 0.020549466833472252, -0.009193535894155502, -0.016802212223410606, -0.045934103429317474, 0.0023218884598463774, 0.0035760102327913046, -0.017957279458642006, 0.04821737855672836, -0.00917338952422142, -0.01724543608725071, -0.01784983091056347, -0.007185597904026508, 0.03341639041900635, -0.02265813760459423, -0.01579488441348076, -0.008642864413559437, -0.00218757800757885, 0.0008646221831440926, -0.005580590572208166, 0.002812120830640197, -0.0018316559726372361, -0.054153889417648315, 0.014116006903350353, 0.010046406649053097, 0.012578153982758522, -0.0043550096452236176, -0.0037640444934368134, 0.022738724946975708, 0.012927360832691193, -0.009354708716273308, -0.002281595254316926, -0.006067465525120497, -0.013518325984477997, 0.008622718043625355, 0.033496975898742676, 0.017527487128973007, -0.011658129282295704, -0.01686936616897583, 0.019488416612148285, 0.019286951050162315, -0.005050064995884895, -0.016614176332950592, -0.03441028296947479, 0.013652636669576168, 0.010758250951766968, 0.01228267140686512, 0.013316860422492027, -0.02095239795744419, -0.00902564823627472, -0.038439590483903885, -0.012981085106730461, 0.011859594844281673, -0.02318194881081581, -0.01932724379003048, 0.008757027797400951, -0.015982918441295624, -0.008219786919653416, -0.013733222149312496, -0.16998304426670074, -0.0043247900903224945, 0.04859344661235809, -0.028769254684448242, 0.03140173479914665, 0.005751836113631725, -0.016855936497449875, -0.006859895773231983, 0.001593255321495235, -0.004385229665786028, 0.03073018416762352, -0.0010006113443523645, -0.023517724126577377, -0.014653247781097889, 0.003572652582079172, 0.020321140065789223, -0.01536509208381176, 0.009784501045942307, 0.05367037281394005, 0.009703915566205978, 0.07978028804063797, -0.008985355496406555, -0.013666067272424698, -0.001514347968623042, 0.006638283841311932, 0.021650811657309532, -0.006651714909821749, -0.008636148646473885, -0.022577552124857903, -0.020791225135326385, 0.0008142558508552611, -0.008864476345479488, 0.02884984016418457, 0.03218073397874832, 0.00757509795948863, -0.0013137221103534102, -0.0036062300205230713, 0.010274733416736126, 0.008676441386342049, 0.007837003096938133, 0.002645911881700158, 0.050796136260032654, 0.031616631895303726, -0.00033493616501800716, 0.029360219836235046, 0.008924915455281734, 0.002068377798423171, -0.024578774347901344, 0.01811845228075981, 0.008515269495546818, -0.004697500728070736, -0.019461553543806076, -0.03150918334722519, -0.007393778767436743, 0.021422484889626503, 0.008354097604751587, 0.022792449221014977, 0.02306106872856617, -0.006591275334358215, -0.015700867399573326, 0.007931020110845566, -0.026808325201272964, 0.012477422133088112, -0.01802443526685238, -0.034598320722579956, -0.00016064764349721372, -0.023101361468434334, 0.030461562797427177, -0.026123343035578728, -0.006769236177206039, 0.013068386353552341, -0.021973155438899994, -0.007722839247435331, -0.025653256103396416, -0.007125158328562975, -0.002078450983390212, -0.0021540005691349506, 0.02569354884326458, 0.01747376285493374, -0.012732611037790775, -0.0009166673989966512, 0.04048110917210579, 0.01944812387228012, -0.017326021566987038, 0.012349827215075493, 0.03134801238775253, -0.009804647415876389, -0.016882797703146935, -0.02265813760459423, 0.003221767023205757, 0.03177780285477638, -0.027990255504846573, -0.02488768845796585, -0.0025283903814852238, 0.01579488441348076, -0.0016813963884487748, -0.02268500067293644, -0.012739326804876328, -0.012390119954943657, 0.010362035594880581, -0.0012289386941120028, 0.0026912414468824863, -0.034302838146686554, 0.03000490926206112, 0.04800248146057129, 0.044564139097929, 0.01361234299838543, 0.01312211062759161, 0.020549466833472252, -0.007125158328562975, -0.02178512141108513, 0.003717035986483097, 0.022765586152672768, 0.025975601747632027, 0.022792449221014977, 0.029897460713982582, -0.00757509795948863, -0.011564112268388271, 0.012987800873816013, 0.010597078129649162, -0.012598301284015179, -0.004314716439694166, 0.011241767555475235, 0.028285738080739975, -0.0019072054419666529, -0.021691104397177696, -0.05391213297843933, -0.020119674503803253, -0.0002812120656017214, 0.026700876653194427, -0.013713075779378414, 0.018037864938378334, -0.0027953318785876036, 0.029413944110274315, -0.013148972764611244, 0.016023213043808937, 0.003131107660010457, -0.010946284979581833, -0.0056410301476716995, 0.019595865160226822, -0.012007336132228374, -0.009321130812168121, 0.02025398425757885, -0.015996349975466728, -0.012531145475804806, 0.018481088802218437, -0.00944872573018074, -0.005217953119426966, -0.008166062645614147, -0.0022614486515522003, -0.0024545197375118732, 0.013484749011695385, -0.010731388814747334, 0.0208315197378397, 0.014747264795005322, -0.0011726963566616178, 0.005909650586545467, 0.0005179338622838259, -0.021516501903533936, -0.00478816032409668, -0.001784647349268198, 0.002927963389083743, -0.009442009963095188, -0.03038097731769085, 0.03107939101755619, -0.009985966607928276, 0.005516793113201857, -0.007427356671541929, 0.006107758264988661, -0.004942616913467646, -0.03030039183795452, -0.010362035594880581, 0.004660565406084061, -0.020348001271486282, -0.02384006790816784, -0.004459100309759378, -0.022349225357174873, -0.004727720748633146, -0.019985364750027657, -0.021597087383270264, 0.02378634363412857, 0.012423697859048843, 0.01232968084514141, 0.00483181094750762, -0.01907205395400524, 0.01799757219851017, 0.00038131518522277474, -0.0163455568253994, -0.015056177973747253, 0.029360219836235046, -0.009562889114022255, -0.019569002091884613, -0.04563862085342407, -0.003569294698536396, -0.022470103576779366, 0.0032687755301594734, -0.012625163421034813, 0.022013448178768158, -0.022402949631214142, 0.011456663720309734, -0.00930098444223404, -0.03682786971330643, -0.01292064506560564, -0.005520150996744633, 0.005721616558730602, 0.001952535123564303, -0.0018971322569996119, -0.024632498621940613, -0.0047713713720440865, -0.01289378385990858, 0.02479367144405842, 0.032422494143247604, -0.011758862063288689, 0.010435906238853931, 0.01849452033638954, -0.055604442954063416, -0.007467649411410093, 0.004190479405224323, 0.008347381837666035, -0.0014178125420585275, -0.009475587867200375, -0.020092813298106194, -0.006869968958199024, -0.015754591673612595, 0.02534434385597706, 0.028205150738358498, 0.00454304413869977, -0.018615400418639183, -0.08273511379957199, 0.000666934298351407, -0.009468872100114822, 0.0007727036136202514, 0.003649880876764655, -0.0027382501866668463, 0.013807092793285847, 0.0010828763479366899, 0.017782676964998245, 0.017352882772684097, -0.02569354884326458, 0.012605016119778156, -0.00701099494472146, -0.005103789269924164, -0.014478644356131554, -0.007763131987303495, 0.03287914767861366, 0.025156307965517044, -0.01014042366296053, 0.00557723268866539, -0.03556535392999649, 0.0009368139435537159, -0.008978639729321003, 0.021691104397177696, -0.026660583913326263, 0.027479875832796097, -0.003465204266831279, 0.03330894187092781, 0.0015512832906097174, -0.00938828568905592, 0.014277178794145584, -0.0025317480321973562, -0.0083205197006464, -0.002053267788141966, -0.00958975125104189, -0.007877295836806297, -0.009468872100114822, 0.01973017491400242, -0.0031243921257555485, 0.038761936128139496, -0.005228026304394007, -0.024269862100481987, 0.013249705545604229, 0.0011172933736816049, 0.0006283200928010046, -0.00525824585929513, -0.004677354358136654, 0.007669114973396063, 0.007917588576674461, -0.00585256889462471, 0.03330894187092781, 0.01611723005771637, -0.0059331548400223255, -0.01586204022169113, -0.01170513778924942, -0.05106475576758385, -0.0005863481783308089, 0.016560453921556473, -0.01030159555375576, -0.009314415045082569, 0.034249112010002136, 0.0019609294831752777, -0.0019004899077117443, -0.001932388637214899, -0.0108522679656744, 0.00580891827121377, -0.017164848744869232, -0.010838836431503296, 0.024269862100481987, -0.022416379302740097, -0.034652043133974075, -0.0034752776846289635, 0.0005670410464517772, 0.0076288217678666115, 0.0164932981133461, -0.009616613388061523, -0.03758000582456589, 0.006433460861444473, -0.018843727186322212, 0.0067423745058476925, 0.007373632397502661, 0.010731388814747334, -0.011826016940176487, 0.021825414150953293, 0.025357773527503014, 0.005379125475883484, -0.023356551304459572, 0.028688667342066765, -0.00580891827121377, -0.02609647996723652, -0.048539724200963974, -0.0007231766940094531, 0.022295501083135605, 0.025653256103396416, 5.1940289267804474e-05, 0.02075093239545822, -0.002402474405243993, -0.003332572989165783, 0.019461553543806076, -0.015553126111626625, 0.005009772256016731, -0.0108522679656744, -0.001176054123789072, -0.029682563617825508, 0.003183152759447694, 0.0046068415977060795, 0.01135593093931675, -0.024874256923794746, 0.0038446306716650724, -0.004878819454461336, -0.015069609507918358, 0.005412702914327383, 0.002508243778720498, 0.010986577719449997, -0.023947516456246376, 0.0013985054101794958, -0.0008839293150231242, -0.040319934487342834, -0.03344324976205826, 0.012443844228982925, 0.0037674023769795895, 0.022926758974790573, 0.011812586337327957, -0.021489638835191727, 0.04523568972945213, -0.003488708520308137, 0.014908436685800552, -0.027506738901138306, 0.020844949409365654, -0.015418816357851028, -0.017715521156787872, 0.026056187227368355, -0.0222820695489645, -0.02152993157505989, -0.012665456160902977, 0.001932388637214899, 0.018937744200229645, -0.002279916312545538, 0.00030429664184339345, 0.07843717932701111, 0.02543836086988449, -0.01387424860149622, 0.0006388130714185536, 0.001885380013845861, 0.016453005373477936, 0.009616613388061523, 0.022201484069228172, -0.019139209762215614, -0.006389809772372246, 0.018736278638243675, 0.011846163310110569, -0.021046414971351624, -0.00953602697700262, -0.008112338371574879, -0.006883400026708841, -0.03897683322429657, 0.020992690697312355, -0.017003677785396576, 0.00375061365775764, 0.025102585554122925, 0.0176483653485775, 0.002023048000410199, 0.027641048654913902, -0.02534434385597706, -0.009898665361106396, 0.03886938467621803, -0.0013632490299642086, 0.0056309569627046585, -0.008730165660381317, 0.018857158720493317, 0.01183273270726204, -0.014935298822820187, -0.009321130812168121, 0.0030203016940504313, 0.042495761066675186, -0.018360210582613945, -0.004381871782243252, 0.029091598466038704, -0.005654461216181517, 0.014921868219971657, 0.015539695508778095, -0.03825155645608902, -0.018212469294667244, 0.003884923877194524, -0.002404153347015381, -0.01805129647254944, -0.010744819417595863, 0.02514287829399109], "00c06687-6593-44db-9462-6ec51c254b20": [-0.013092439621686935, -0.02214507944881916, -2.775999018922448e-05, -0.03213049843907356, -0.0005251068505458534, 0.02164849452674389, -0.024614593014121056, -0.013166257180273533, 0.02701699733734131, -0.004583360627293587, 0.026345934718847275, 0.013931268826127052, -0.007334718946367502, -0.011730181984603405, -0.01248848345130682, -0.01841397024691105, -0.0016063571674749255, -0.012307296507060528, 0.015716295689344406, -0.029902568086981773, 0.007294455077499151, -0.02701699733734131, 0.011770445853471756, -0.016763154417276382, -0.039592720568180084, 0.009723703376948833, 0.026345934718847275, -0.023527469485998154, -0.019071610644459724, -0.0013438037130981684, 0.017152370885014534, 0.007213927805423737, -0.008421841077506542, -0.01971583254635334, 0.013696396723389626, 0.004717573057860136, 0.013562183827161789, -0.004519609734416008, -0.005757720675319433, -0.02387642301619053, 0.011200042441487312, -0.009039219468832016, 0.012199926190078259, -0.009703571908175945, -0.023097990080714226, 0.012743487022817135, -0.011240306310355663, 0.009166721254587173, -0.0038183487486094236, 0.008113152347505093, 0.006958923768252134, 0.011663075536489487, -0.04995393380522728, -0.003299952484667301, -0.009133167564868927, -0.0011215141275897622, -0.024856174364686012, 0.021876655519008636, -0.0062341755256056786, -0.011857683770358562, 0.025500396266579628, 0.006475758273154497, -0.03076152876019478, -0.016226304695010185, -0.006858264096081257, 0.006120095029473305, 0.005385281052440405, 0.007260901853442192, -0.02375563234090805, 0.0029610656201839447, 0.045847028493881226, 0.031298380345106125, 0.015461292117834091, -0.01441443432122469, 0.0434848852455616, -0.0014268477680161595, -0.024292482063174248, -0.004546452313661575, -0.005720812361687422, 0.0029677762649953365, -0.009448567405343056, -0.009824362583458424, -0.0017003059620037675, -0.0010980268707498908, 0.011629522778093815, 0.003442553337663412, -0.019259508699178696, -0.0008488947642035782, 0.026547253131866455, -0.011059118434786797, 0.01426680013537407, 0.025634607300162315, 0.007542748469859362, 0.001494792872108519, -0.000338886835379526, 0.017769748345017433, -0.003303307807072997, 0.013931268826127052, -0.026332514360547066, -0.057281941175460815, -0.025151442736387253, 0.008764083497226238, -0.00024158268934115767, -0.007703803479671478, -0.02579566277563572, -0.03457316756248474, 0.05381925404071808, -0.015098918229341507, -0.00662339199334383, -0.01740737445652485, -0.016105512157082558, 0.0270841047167778, -0.017944226041436195, -0.04619598016142845, -0.03602266311645508, 0.002900670049712062, 0.0233664158731699, -0.013427970930933952, -0.013367575593292713, -0.011240306310355663, 0.024399852380156517, 0.012407955713570118, 0.025446711108088493, 0.009663308039307594, 0.030895741656422615, 0.002221218543127179, -0.009763967245817184, 0.0006450593355111778, -0.0043283565901219845, -0.013783634640276432, 0.025661449879407883, 0.0001969150616787374, -0.007395114749670029, -0.006388520356267691, -0.022077973932027817, -0.02033321000635624, -0.008623160421848297, -0.02193034067749977, -0.012911252677440643, -0.006878396030515432, 0.018467655405402184, 0.008650003001093864, 0.012964937835931778, -0.035351600497961044, 0.016239725053310394, 0.031298380345106125, 0.012018739245831966, 0.012407955713570118, -0.005345017183572054, 0.0065026008524000645, 0.011153067462146282, -0.0158639308065176, -0.026976734399795532, 0.005871801637113094, -0.009019087068736553, 0.02446695789694786, 0.015850508585572243, 0.0018621999770402908, 0.004398818127810955, 0.008817768655717373, 0.008274206891655922, 0.025352761149406433, 0.0031590291764587164, -0.023084567859768867, 0.009891469031572342, 0.03441211208701134, 0.02010504901409149, 0.0027899446431547403, -0.022198764607310295, 0.006277794949710369, 0.01657525636255741, -0.014629174023866653, -0.02458775043487549, 0.0283188596367836, -0.018521340563893318, 0.01719263568520546, -0.0011894592316821218, 0.017568429931998253, -0.01566261053085327, -0.01182413101196289, -0.0006630941643379629, -0.024292482063174248, 0.0035297914873808622, 0.039270609617233276, -0.001961181638762355, -0.023903265595436096, 0.0015476391417905688, 0.02729884348809719, 0.0044759903103113174, -0.013092439621686935, 0.0032395569141954184, 0.04630335047841072, 0.017863698303699493, -0.007046161685138941, -0.5845227241516113, -0.029177820309996605, 0.005526204127818346, -0.010958459228277206, 0.016467886045575142, 0.013864162378013134, -0.0005372698651626706, -0.004187433514744043, -0.024292482063174248, 0.02567487210035324, 0.0008405064581893384, 0.004835009109228849, -0.019769517704844475, 0.02052110806107521, -0.009884758852422237, -0.03186207264661789, 0.01248848345130682, -0.011904658749699593, -0.009294223040342331, 0.023124832659959793, -0.02325904555618763, 0.003536502132192254, -0.018132124096155167, 0.013387707993388176, 0.005928841885179281, -0.011260437779128551, 0.014790229499340057, 0.0053752148523926735, 0.00581811647862196, 0.030063623562455177, -0.035861607640981674, 0.018830029293894768, 0.026668045669794083, 0.0011064151767641306, 0.0388411283493042, 0.011897947639226913, -0.036344774067401886, 0.029902568086981773, -0.005304753314703703, 0.06039567291736603, -0.005861735437065363, -0.024923281744122505, 0.03505633398890495, 0.0035599893890321255, -0.025607764720916748, 0.019044769927859306, 0.007623276207596064, -0.04316277429461479, 0.007603144273161888, 0.018252914771437645, -0.005603376310318708, -0.004831654019653797, -0.0003466460038907826, -0.006737472955137491, 0.014642595313489437, 0.013079018332064152, 0.020574793219566345, -0.03519054502248764, 0.0018789764726534486, -0.013240073807537556, -0.004033088684082031, 0.011569126509130001, -0.006358322221785784, -0.0037747295573353767, -0.02064189873635769, 0.011750313453376293, -0.03336525335907936, -0.012421377003192902, 0.0019225955475121737, -0.0277014821767807, 0.0023822737857699394, -0.014186272397637367, 0.03720373660326004, -0.011891237460076809, 0.02064189873635769, 0.041713278740644455, 0.007428667973726988, -0.004955800715833902, 0.006022790912538767, 0.01789054088294506, 0.009643175639212132, 0.0019293061923235655, -0.0006828066543675959, -0.023433521389961243, 0.009992128238081932, -0.003308340674266219, -0.038277436047792435, -0.010830957442522049, -0.008086309768259525, 0.0085493428632617, 0.0052678450010716915, 0.02880202606320381, 0.022064553573727608, -0.05210133269429207, 0.013414550572633743, 0.012743487022817135, -0.02619830146431923, 0.009951865300536156, 0.005311463959515095, -0.00023696913558524102, -0.008871453814208508, -0.0187226589769125, 0.00325968861579895, 0.0051873172633349895, 0.02367510460317135, -0.02123243361711502, -0.03113732486963272, 0.019353458657860756, 0.04418278858065605, -0.019433986395597458, -0.01758185215294361, -0.013307180255651474, -0.02246719039976597, -0.014186272397637367, 0.037069521844387054, -0.039377979934215546, 0.013984953984618187, 0.030493104830384254, 0.015018390491604805, -0.015608926303684711, 0.0033284726087003946, -0.010783983394503593, 0.012199926190078259, -0.00462697958573699, 0.011837552301585674, 0.02445353753864765, 0.016038406640291214, 0.00760985491797328, -0.01167649682611227, -0.0026557319797575474, -0.01219321507960558, 0.0017984489677473903, 0.033418938517570496, -0.007052872329950333, 0.0170986857265234, 0.008811057545244694, 0.005821472033858299, -0.009428435936570168, 0.025554081425070763, 0.005123566370457411, -0.0019293061923235655, -0.006217399146407843, 0.006854909006506205, 0.0028620839584618807, 0.01289783138781786, -0.012206636369228363, -0.01778317056596279, -0.006083186250180006, -0.010126341134309769, 0.011481888592243195, 0.010294106788933277, 0.0017548298928886652, 0.0007662700954824686, 0.003939140122383833, 0.006160358898341656, 0.008790926076471806, -0.004388752393424511, -0.017152370885014534, 0.0061033181846141815, -0.0188031867146492, -0.003308340674266219, -0.01660209894180298, -0.02234639972448349, 0.016414202749729156, -0.04007588326931, -0.019085032865405083, -0.013488367199897766, 0.005542980507016182, -0.016454465687274933, -0.028130963444709778, -0.006381809711456299, -0.019380301237106323, 0.011857683770358562, 0.01163623295724392, 0.009160010144114494, -0.009019087068736553, -0.021675335243344307, -0.004402173683047295, 0.012179793789982796, -0.003677425440400839, -0.008770793676376343, -0.023379836231470108, 0.007851437665522099, 0.0016650751931592822, 0.018749501556158066, 0.019648725166916847, 0.02861412800848484, 0.02121901325881481, -0.038384806364774704, 0.006110028829425573, -0.009240537881851196, 0.024440115317702293, 0.03288209065794945, 0.011562416329979897, 0.03113732486963272, -0.006656945217400789, 0.03996851295232773, 0.025218548253178596, 0.0013429649407044053, 0.0016935953171923757, 0.009817652404308319, 0.0029694540426135063, 0.025017229840159416, -0.029875727370381355, 0.014481540769338608, -0.0035264361649751663, -0.0021021049469709396, -0.007676961366087198, -0.0016952729783952236, 0.018628709018230438, -0.00032001317595131695, -0.035432130098342896, -0.034948963671922684, 0.0063549671322107315, 0.019366879016160965, 0.02346036396920681, -0.0006496729329228401, -0.002947644330561161, -0.02668146602809429, 0.028560442849993706, 0.008482236415147781, -0.013770213350653648, 0.013414550572633743, -0.0164813082665205, -0.012401244603097439, -0.01768922246992588, 0.008824478834867477, -0.004660532809793949, -0.0005058137467131019, -0.02344694174826145, -0.03446579724550247, 0.0188031867146492, 0.00838828831911087, 0.01264953799545765, 0.017058422788977623, -0.03454632684588432, 0.02597014047205448, -0.011374518275260925, 0.011944921687245369, 0.010797404684126377, 0.012958227656781673, -0.006133516319096088, -0.008005782030522823, -0.019568197429180145, 0.014427855610847473, 0.034653693437576294, 0.045659128576517105, 0.021299540996551514, -0.030707845464348793, 0.0032479451037943363, -0.009884758852422237, -0.01912529580295086, -0.0097505459561944, -0.0026607648469507694, 0.01688394695520401, -0.0085493428632617, 0.0073615615256130695, -0.00011963795986957848, 0.03315051272511482, 0.02558092214167118, 0.016951052471995354, 0.0362105630338192, 0.010696744546294212, 0.013105860911309719, -0.004865207243710756, -0.030009938403964043, -0.01168320793658495, -0.017716065049171448, -0.014374170452356339, -0.019259508699178696, -0.032908931374549866, 0.008441973477602005, 0.026171458885073662, -0.035593181848526, 0.005120210815221071, -0.004774613305926323, -0.00031351225334219635, 0.01920582354068756, 0.012629406526684761, 0.012662959285080433, 0.0007171986508183181, -0.01618603989481926, 0.03795532509684563, 0.004130392801016569, 0.027124367654323578, -0.01016660500317812, -0.016655784100294113, 0.017716065049171448, 0.0013438037130981684, -0.00571410171687603, 0.0011978475376963615, 0.005301398225128651, 0.005751010030508041, -0.002756391419097781, -0.005019551608711481, -0.01031423918902874, 0.017756327986717224, -0.02124585583806038, 0.006878396030515432, -0.015098918229341507, 0.002137335715815425, 0.00361367454752326, -0.023218780755996704, -0.025151442736387253, 0.045363862067461014, 0.010750429704785347, -0.01117991004139185, -0.0016642363043501973, 0.01758185215294361, -0.039270609617233276, 0.0028738274704664946, -0.006693853996694088, 0.0012884410098195076, -0.02904360741376877, -0.01304546557366848, -0.009059350937604904, 0.0037847955245524645, -0.00809301994740963, 0.030707845464348793, 0.013877583667635918, -0.007341429591178894, -0.026949891820549965, -0.0015568662201985717, 0.0062912157736718655, -0.013656132854521275, 0.00848894752562046, 0.013642711564898491, -0.007650118786841631, -0.041632749140262604, 0.0031405750196427107, 0.006767670623958111, -0.01627998985350132, -0.009696860797703266, -0.014723123051226139, 0.008106441237032413, -0.006579773034900427, 0.02152770198881626, -0.01010620966553688, 0.015353922732174397, 0.01759527251124382, -0.018132124096155167, -0.004425660707056522, 0.013931268826127052, -0.03186207264661789, 0.005650350823998451, -0.01279046107083559, 0.01349507737904787, -0.003583476645871997, 0.015501555986702442, -0.01264953799545765, 0.01637393794953823, 0.03167417645454407, 0.010951749049127102, -0.007207217160612345, -0.013280337676405907, -0.006378454156219959, -0.00788499042391777, 0.016615521162748337, 0.01972925290465355, 0.007911833003163338, -0.0024376364890486, 0.05389978364109993, -0.011361096985638142, 0.02477564662694931, -0.011159778572618961, 0.014146008528769016, 0.004479345865547657, -0.010334370657801628, 0.016816839575767517, -0.003583476645871997, 0.005032972898334265, -0.008723819628357887, -0.017648957669734955, -0.016253147274255753, 0.04055904969573021, 0.0015124083729460835, -0.05156448483467102, -0.0063314796425402164, -0.0025215193163603544, 0.014360749162733555, -0.029258348047733307, -0.030305206775665283, 0.010146473534405231, 0.006680432707071304, 0.011408071964979172, 0.0033049853518605232, -0.01739395409822464, -0.009656596928834915, -0.008985534310340881, -0.029285190626978874, -0.02123243361711502, -0.0008958691614679992, -0.03647898510098457, -0.023379836231470108, -0.0018789764726534486, -0.04345804080367088, -0.034626852720975876, -0.0021910208743065596, 0.0024275705218315125, 0.014776808209717274, 0.016628941521048546, -0.004076708108186722, -0.023514049127697945, 0.028399387374520302, -0.0067643155343830585, -0.0021054602693766356, -0.03226470947265625, -0.0283188596367836, 0.016132354736328125, -0.010716876946389675, 0.013864162378013134, -0.012683091685175896, 7.376450957963243e-05, 0.03328472748398781, 0.02437300980091095, 0.006734117399901152, 0.013535341247916222, -0.008428552187979221, -0.005086658056825399, 0.023004040122032166, 0.0033871906343847513, 0.002122236881405115, -0.006898527964949608, -0.008361445739865303, -0.0009000633144751191, -0.047457579523324966, -0.0012406278401613235, 0.0049490900710225105, -0.010884642601013184, -0.013944690115749836, 0.01759527251124382, 0.010951749049127102, 0.00788499042391777, 0.019890308380126953, 0.030197836458683014, 0.014468119479715824, -0.004163946025073528, -0.005895288661122322, 0.0015073753893375397, -0.0010309205390512943, 0.00019869756943080574, 0.0022447057999670506, -0.006677077151834965, 0.026748573407530785, 0.02559434436261654, 0.0015761592658236623, 0.025433288887143135, 0.00771051412448287, 0.00561344251036644, 0.0010451807174831629, -0.018158966675400734, -0.04235750064253807, -0.020896902307868004, 0.01399837527424097, 0.0037881508469581604, 0.01487075723707676, 0.006123450119048357, -0.019742675125598907, -0.0230577252805233, 0.017259741201996803, 0.0035935426130890846, 0.013166257180273533, 0.007421957328915596, -0.014897599816322327, -0.01720605604350567, -0.01739395409822464, 0.0075897229835391045, -0.02021241933107376, -0.011502020061016083, -0.02123243361711502, -0.015957878902554512, -0.0034995938185602427, 0.02193034067749977, 0.008394998498260975, 0.01740737445652485, 0.006042922846972942, -0.0592682883143425, -0.008227232843637466, 0.0097505459561944, -0.0323452390730381, -0.0039693377912044525, 0.00371768930926919, 0.025849347934126854, 0.009643175639212132, 0.03478790819644928, 0.021581387147307396, 0.002632244722917676, 0.003623740514740348, 0.010837667621672153, 0.006281150039285421, -0.0040096016600728035, 0.014011796563863754, -0.011099382303655148, -0.0020517753437161446, 0.006656945217400789, 0.00834131333976984, 0.016508150845766068, 0.002721160650253296, 0.0026037245988845825, 0.0171792134642601, -0.003029849613085389, 0.020802954211831093, -0.00452296482399106, -0.045873869210481644, -0.018440812826156616, 0.009643175639212132, 0.0026154681108891964, 0.002095394302159548, -0.015286816284060478, -0.004677309188991785, 0.015608926303684711, 0.008603028021752834, 0.04123011231422424, 0.012636116705834866, 0.021111642941832542, -0.021111642941832542, -0.004080063197761774, -0.02397037111222744, 0.004761192481964827, -0.007160242646932602, 0.004549807403236628, -0.01476338692009449, 0.018145544454455376, 0.00012142046762164682, 0.0164813082665205, 0.010273975320160389, 0.01748790219426155, 0.018642131239175797, -0.008213811554014683, 0.022386662662029266, 0.017541587352752686, -0.0402369387447834, -0.014937863685190678, -0.023701947182416916, -0.03215733915567398, -0.027862537652254105, -0.0015056977281346917, -0.006972345057874918, -0.00848894752562046, 0.004472635220736265, -0.007952096872031689, 0.00884461123496294, -0.005549691151827574, -0.004861851688474417, -0.013823898509144783, -0.025460131466388702, 0.03409000113606453, -0.0044189500622451305, 0.020037941634655, 0.02417169138789177, 0.004106905777007341, 0.007482352666556835, -0.03658635541796684, -0.00324626755900681, 0.004848430398851633, 0.0277014821767807, 0.051618169993162155, -0.009455278515815735, -0.011978475376963615, 0.010891352780163288, 0.003757952945306897, -0.003576766001060605, -0.028130963444709778, 0.027231737971305847, 0.02375563234090805, -0.0007176180370151997, -0.017944226041436195, 0.01077056210488081, -0.016347095370292664, -0.0014696280704811215, -0.028372544795274734, 0.004969222005456686, -0.012904542498290539, 0.004935668781399727, -0.005761076230555773, 0.0069522131234407425, -0.030600475147366524, 0.01861528865993023, 0.0006232497980818152, 0.01077056210488081, -0.010508847422897816, -0.0004902954096905887, -0.04753810539841652, 0.001411748817190528, -0.008951980620622635, 0.02407774142920971, -0.007878280244767666, -0.011092672124505043, 0.020400315523147583, 0.01445469819009304, 0.01128056924790144, -0.023004040122032166, -0.02547355368733406, 0.052423443645238876, 0.0026456660125404596, -0.008629870600998402, -0.011347675696015358, 0.012293875217437744, 0.023312730714678764, -0.017353689298033714, 0.0037344659212976694, 0.009113036096096039, 0.0015249907737597823, -0.011025565676391125, -0.004187433514744043, -0.033016301691532135, 0.01699131540954113, -0.01532708015292883, 0.004771258216351271, -0.01005923468619585, -0.015313658863306046, -0.007267612498253584, -0.0006274439510889351, -0.05067868158221245, -0.023540891706943512, -0.015998143702745438, -0.022413505241274834, -0.004210920538753271, 0.002550039440393448, 0.0188031867146492, -0.002076940145343542, 0.04547123238444328, -0.01899108476936817, 0.00879763625562191, -0.0004206726443953812, 0.003217747202143073, -0.014897599816322327, 0.006841487716883421, -0.007797752507030964, 0.009844494983553886, 0.01168320793658495, -0.006717341020703316, -0.01849449798464775, -0.02133980393409729, 0.01491102110594511, 0.01781001314520836, -0.003133864374831319, 0.011562416329979897, 0.05620824173092842, 0.005559757351875305, 0.018065016716718674, -0.010032392106950283, -0.004321645945310593, -0.020292947068810463, -0.015166024677455425, 0.0014847270213067532, 0.008609739132225513, -0.018964242190122604, -0.008703687228262424, 0.0016952729783952236, -0.0040498655289411545, -0.0031003111507743597, -0.03062731772661209, -0.048289697617292404, -0.003617029869928956, -0.021782705560326576, -0.02497696690261364, 0.008146705105900764, -0.014602331444621086, -0.03317735716700554, -0.017716065049171448, -0.002140691038221121, -0.008582896552979946, 0.0009688472491689026, 0.00361367454752326, 0.0441022627055645, 0.023742210119962692, 0.014736544340848923, -0.0039190081879496574, -0.030493104830384254, -0.019393721595406532, -0.017514744773507118, -0.0023705302737653255, -0.017675800248980522, -0.018668973818421364, 0.03245260939002037, -0.01209255587309599, -0.0323452390730381, -0.014025217853486538, -0.008314470760524273, -0.012844146229326725, -0.009851205162703991, 0.006177135277539492, 0.025554081425070763, 0.025460131466388702, -0.0028838934376835823, -6.154906441224739e-05, 0.03674741089344025, -0.005324885249137878, 0.02486959658563137, 0.012428087182343006, -0.014575488865375519, -0.018024753779172897, -0.017367111518979073, -0.024010635912418365, -0.01940714381635189, -0.016628941521048546, -0.00859631784260273, 0.027862537652254105, 0.00043744922732003033, 0.005163830239325762, 0.029473088681697845, 0.008764083497226238, -0.00809301994740963, -0.01224019005894661, -0.025446711108088493, -0.021272698417305946, 0.01991715095937252, 0.015394185669720173, -0.020037941634655, 0.01870923675596714, 0.021057957783341408, -0.008421841077506542, 0.01128056924790144, 0.004677309188991785, -0.004902115557342768, -0.006854909006506205, 0.027647797018289566, -0.024842754006385803, 0.005499361548572779, -0.005032972898334265, -0.00960291177034378, 0.03025152161717415, -0.017635537311434746, 0.0031036664731800556, 0.028292017057538033, 0.017742907628417015, -0.008737240917980671, -0.017031580209732056, 0.00046345291775651276, -0.049604978412389755, -0.0001459562045056373, 0.022306134924292564, -0.011153067462146282, -0.00894527044147253, 0.004137103445827961, -0.006049633491784334, -0.01689736731350422, 0.004533031024038792, 0.018132124096155167, 0.026117773726582527, -0.025205127894878387, 0.02307114750146866, 0.011602680198848248, -0.02425221912562847, -0.010361213237047195, -0.016508150845766068, -0.0044189500622451305, 0.0024661566130816936, -0.04512227699160576, 0.024708541110157967, -0.03693531081080437, 0.008757372386753559, -0.011562416329979897, -0.014172851108014584, -0.02486959658563137, 0.016038406640291214, 0.029097292572259903, -0.0026641201693564653, 0.0004881983622908592, 0.2542523741722107, -0.024426694959402084, -0.009012376889586449, 0.034653693437576294, 0.009623044170439243, 0.005811405833810568, 0.0064455606043338776, -0.015152603387832642, -0.010461872443556786, 0.019688989967107773, -0.011629522778093815, -0.01248848345130682, -0.00217256648465991, -0.004996064119040966, 0.008186968974769115, -0.013441392220556736, -0.03508317470550537, -0.02507091499865055, -0.024332745000720024, -0.01107253972440958, 0.021903498098254204, 0.0036606488283723593, -0.0044088843278586864, -0.021286118775606155, -0.0008509918116033077, 0.0029073806945234537, -0.009831073693931103, 0.01152886264026165, 0.030868899077177048, -0.00919356383383274, -0.03175470232963562, 0.03022467903792858, 0.0014260089956223965, -0.01770264282822609, -0.004871917888522148, -0.02123243361711502, 0.04106905683875084, 0.004086773842573166, 0.014602331444621086, 0.009878047741949558, -0.010052524507045746, 0.003403967246413231, -0.0070797149091959, 0.0019242732087150216, -0.031593646854162216, 0.006378454156219959, -9.567890811013058e-05, -0.002848662668839097, 0.015394185669720173, 0.000476454762974754, -0.038170065730810165, -0.013689685612916946, 0.0201184693723917, 0.02539302594959736, -0.0028721496928483248, -0.018762921914458275, 0.03339209780097008, -0.007965518161654472, 0.039297450333833694, 0.03642529994249344, -0.020856639370322227, 0.04316277429461479, -0.01345481351017952, -0.0024091163650155067, -0.015004969201982021, -0.012904542498290539, -0.03567371144890785, -0.0035935426130890846, -0.007482352666556835, 0.0007494935416616499, -0.0026523766573518515, -0.005737589206546545, -0.008790926076471806, -0.004757836926728487, -0.01487075723707676, -0.0341973714530468, 0.036344774067401886, -0.007925254292786121, 0.03277472034096718, 0.053738728165626526, 0.02882886864244938, -0.001036792411468923, 0.002041709376499057, 0.007576301693916321, -0.004267960786819458, -0.014468119479715824, 0.017648957669734955, -0.004952445160597563, -0.010367924347519875, -0.0015761592658236623, 0.01626656763255596, -0.038680072873830795, 0.006412007380276918, -0.016722891479730606, 0.015018390491604805, 0.007864858955144882, 0.001956148771569133, 0.022910092025995255, 0.002316845115274191, 0.012267032638192177, -0.03451948240399361, 0.012522036209702492, 0.03349946811795235, 0.013595737516880035, -0.023943528532981873, 0.005120210815221071, 0.025648029521107674, 0.016615521162748337, 0.018642131239175797, -0.02121901325881481, -0.0034660405945032835, -0.038680072873830795, 0.015300237573683262, 0.0038284147158265114, 0.005999303422868252, 0.029097292572259903, -0.02548697404563427, -0.017675800248980522, -0.005844959057867527, 0.0188031867146492, 0.017796590924263, -0.025634607300162315, -0.018172387033700943, -0.008650003001093864, -0.01668262667953968, -0.02618487924337387, -0.0016004852950572968, -0.01340112928301096, -0.016709469258785248, -0.03983430191874504, 0.024225376546382904, -0.005365149118006229, 0.017917383462190628, 0.007770909927785397, 0.012743487022817135, 0.007207217160612345, 0.014629174023866653, -0.012951516546308994, -0.006606615614145994, 0.0028704721480607986, -0.003036560257896781, 0.0002889765310101211, -0.004902115557342768, 0.01626656763255596, -0.030868899077177048, -0.024628013372421265, 0.0017900606617331505, 0.0008916750084608793, 0.003224457846954465, -0.02579566277563572, -0.025661449879407883, 0.013092439621686935, 0.0014746610540896654, -0.00662674754858017, 0.01248177234083414, -0.03650582954287529, -0.01720605604350567, -0.04088116064667702, -0.001533379079774022, 0.035136859863996506, -0.023312730714678764, -0.019850045442581177, 0.008180258795619011, -0.02759411185979843, -0.011153067462146282, -0.013595737516880035, -0.16846366226673126, 0.00930093415081501, 0.044451214373111725, -0.01006594579666853, 0.020561370998620987, 0.0028385967016220093, 0.0014738221652805805, -0.009086193516850471, -0.00950225256383419, -0.008683555759489536, 0.024547485634684563, -0.0016122289234772325, -0.013931268826127052, -0.021071380004286766, -0.016226304695010185, 0.01899108476936817, -0.022936934605240822, 0.009025798179209232, 0.0513765849173069, 0.0023671749513596296, 0.06603260338306427, -0.033311568200588226, -0.0023705302737653255, 0.02488301694393158, -0.002347043016925454, -0.0062912157736718655, -0.017635537311434746, -0.004898760002106428, -0.0027396148070693016, -0.016534993425011635, -0.013307180255651474, 0.0031590291764587164, 0.036344774067401886, 0.003633806249126792, 0.02548697404563427, -0.021474016830325127, 0.012978359125554562, -0.007133400067687035, -0.011710049584507942, -0.0022782590240240097, 0.005646995268762112, 0.04442437365651131, 0.02890939638018608, -0.009696860797703266, -0.011032276786863804, -0.004291448276489973, 0.001315283589065075, -0.013917847536504269, 0.017018157988786697, -0.008160126395523548, 0.0025567500852048397, -0.034224215894937515, -0.0181858092546463, -0.01708526536822319, 0.03623740375041962, 0.0060529885813593864, 0.004928958136588335, 0.004482700955122709, 0.00014543194265570492, -0.003033204935491085, -0.0035230808425694704, -0.02284298650920391, 0.009294223040342331, -0.000910129223484546, -0.03043941967189312, -0.006203977856785059, -0.023191938176751137, 0.029473088681697845, -0.02974151447415352, 0.012575721368193626, 8.010814781300724e-05, -0.02245377004146576, -0.004781323950737715, 0.005875156726688147, -0.011126224882900715, -0.001808514934964478, 0.0027614242862910032, 0.014562067575752735, 0.017353689298033714, 0.00540541298687458, -0.00599259277805686, 0.054544005542993546, 0.01626656763255596, -0.010119630955159664, 0.008435262367129326, 0.015649190172553062, 0.0005599182331934571, 0.005150408949702978, -0.03551265597343445, -0.019098453223705292, 0.02963414415717125, -0.029660986736416817, -0.004237763117998838, 0.007421957328915596, 0.002491321414709091, 0.010233711451292038, -0.005999303422868252, 0.000909290392883122, -0.006693853996694088, 0.000658061180729419, 0.011897947639226913, 0.013515209779143333, -0.012065713293850422, 0.029580458998680115, 0.04125695675611496, 0.029956253245472908, -0.010877931490540504, 0.023138253018260002, 0.029902568086981773, 0.00505310483276844, 0.004640400875359774, 0.02397037111222744, 0.025661449879407883, 0.02284298650920391, 0.033928945660591125, 0.021420331671833992, -0.032506294548511505, 0.005365149118006229, 0.008629870600998402, 0.021165328100323677, -0.009925022721290588, -0.0396195612847805, 0.00830104947090149, 0.025138020515441895, 0.003120443085208535, -0.016024986281991005, -0.06737472862005234, -0.004432371351867914, 0.004942379426211119, 0.021487439051270485, -0.0029593880753964186, 0.01598472148180008, 0.001135774189606309, 0.015944458544254303, -0.010441740974783897, 0.02729884348809719, 0.0025282299611717463, -0.028479915112257004, -0.0016675916267558932, -0.005875156726688147, -0.024829331785440445, -0.002811754122376442, 0.02880202606320381, 0.0005095885135233402, 0.00095123186474666, 0.009495542384684086, -0.009213695302605629, 0.0066099707037210464, 0.017769748345017433, -0.0112201739102602, -0.0055228485725820065, -0.006311347708106041, -0.013877583667635918, 0.010998723097145557, 0.002662442624568939, 0.02701699733734131, 0.023795895278453827, 0.013206521049141884, -0.011354386806488037, 0.0012968293158337474, 0.016159197315573692, 0.010669901967048645, -0.010629638098180294, -0.012179793789982796, 0.016924209892749786, -0.0018806541338562965, -0.006824710872024298, 0.00020740041509270668, -0.004019667394459248, 0.01606524921953678, -0.018749501556158066, -0.018883714452385902, -0.000837570580188185, 0.0038720336742699146, -0.02417169138789177, 0.0024258929770439863, -0.0348147489130497, 0.0001155486679635942, -0.022990619763731956, -0.0004244473821017891, 0.013575605116784573, 0.015085496939718723, 0.024708541110157967, 0.00930093415081501, -0.017568429931998253, 0.0194205641746521, -0.0038820996414870024, 0.00021411104535218328, -0.024198533967137337, 0.03325788304209709, -0.0010015616426244378, 0.010783983394503593, -0.03073468804359436, -0.02010504901409149, 0.0035297914873808622, 0.005301398225128651, -0.011421493254601955, -0.0034727512393146753, -0.007770909927785397, 0.028399387374520302, -0.02861412800848484, -0.042921192944049835, -0.0011458401568233967, -0.014843914657831192, 0.025621186941862106, 0.01273677684366703, -0.022198764607310295, -0.006767670623958111, -0.0005330757121555507, -0.01990373060107231, 0.028292017057538033, 0.02499038726091385, -0.016454465687274933, 0.007428667973726988, 0.01626656763255596, -0.036854781210422516, -0.011830841191112995, -0.005553046707063913, -0.000306382222333923, -0.022990619763731956, -0.0005326562677510083, -0.016199462115764618, 0.002451057778671384, 0.007240770384669304, 0.012253611348569393, 0.02711094729602337, -0.03102995455265045, -0.047484420239925385, -0.09212353080511093, 0.02031978964805603, -0.004841719754040241, -0.0036002532579004765, 0.007777620572596788, -0.005247713066637516, 0.01677657663822174, -0.006965634413063526, 0.008441973477602005, 0.008482236415147781, -0.0055228485725820065, 0.007388404104858637, 0.022480612620711327, 0.0036069639027118683, 0.0011684885248541832, 9.331970431958325e-06, 0.02598356083035469, 0.004465924575924873, -0.014629174023866653, 0.0002929609618149698, -0.005241002421826124, 0.0097505459561944, 0.0006035373080521822, 0.025540659204125404, -0.02802359312772751, 0.0070797149091959, 0.020306367427110672, 0.030358891934156418, 0.0049658664502203465, -0.013823898509144783, 0.004935668781399727, 0.005445676390081644, -0.006126805674284697, 0.010441740974783897, 0.00018129187810700387, 0.012743487022817135, 0.007656829431653023, 0.028748340904712677, 0.004569939337670803, 0.03830427676439285, -0.02193034067749977, -0.032211024314165115, 0.031003111973404884, -0.00113158009480685, -0.010904774069786072, -0.019058190286159515, -0.00353985745459795, 0.006136871408671141, 0.013521919958293438, 0.03460001200437546, 0.023701947182416916, 0.022373242303729057, -0.00016808032523840666, 0.007260901853442192, -0.006683787796646357, -0.057979848235845566, 0.0013094117166474462, 0.003912297543138266, -0.0021926984190940857, -0.0263861995190382, 0.03476106375455856, -0.003038237802684307, 0.007180374581366777, 0.0029140913393348455, -0.01609209179878235, -0.014642595313489437, -0.01809185929596424, -0.022386662662029266, 0.016159197315573692, -0.03492211923003197, -0.022507455199956894, -0.0108712213113904, 0.01081082597374916, -0.01727316342294216, 0.011589258909225464, -0.0020987496245652437, -0.013273626565933228, -0.010783983394503593, -0.018266335129737854, 0.029553616419434547, -0.018427390605211258, 0.003617029869928956, -0.026963312178850174, 0.007468931842595339, 0.03148627653717995, 0.010227000340819359, -0.016521571204066277, 0.013877583667635918, 0.0047007966786623, -0.018427390605211258, -0.03570055216550827, -0.01511233951896429, 0.011938211508095264, 0.027647797018289566, 0.026345934718847275, 0.03658635541796684, 0.009777388535439968, -0.013783634640276432, 0.013461524620652199, -0.0032294909469783306, 0.002259804867208004, -0.006864974740892649, -0.01881660707294941, -0.038062695413827896, 0.00588857801631093, -0.013172967359423637, -0.005660416558384895, -0.03653267025947571, -0.011515441350638866, -0.008113152347505093, -0.01107925083488226, 0.0037243999540805817, -0.001815225463360548, 0.004684019833803177, -0.012126109562814236, -0.0070327408611774445, -0.00308521231636405, -0.019031347706913948, -0.014065481722354889, 0.011267147958278656, 0.012575721368193626, 0.010126341134309769, 0.03814322128891945, -0.0024544131010770798, 0.053228721022605896, -8.152367081493139e-05, 0.022681931033730507, -0.005180606618523598, 0.02731226570904255, 0.004096840042620897, -0.010817536152899265, 0.04592755436897278, -0.011146357282996178, -0.029446246102452278, -0.014320485293865204, -0.014803650788962841, 0.00644891569390893, 0.008294339291751385, -0.0210445374250412, 0.09647202491760254, 0.0011013821931555867, -0.007777620572596788, -0.00743537861853838, 0.009388172067701817, 0.005794629454612732, -0.006203977856785059, 0.02073584869503975, -0.00919356383383274, -0.018964242190122604, 0.009636465460062027, 0.012676380574703217, -0.017541587352752686, -0.01385074108839035, -0.008012493140995502, -0.01030752807855606, -0.015125760808587074, 0.003945850767195225, -0.016038406640291214, 0.011025565676391125, 0.03951219096779823, 0.009260670281946659, -0.011139646172523499, -0.012911252677440643, -0.018038174137473106, -0.013595737516880035, 0.04114958643913269, -0.006214043591171503, -0.00208532833494246, -0.023111410439014435, 0.02751358412206173, -0.01279046107083559, -0.008435262367129326, -0.05024920031428337, -0.0016046795062720776, 0.034653693437576294, -0.01931319385766983, 0.005740944296121597, 0.03417053073644638, -0.0008493141504004598, -0.0019192403415217996, 0.010783983394503593, -0.020695583894848824, -0.037767428904771805, -0.013266916386783123, 0.008428552187979221, 0.016937630251049995, -0.013360865414142609, -0.00016818517178762704], "0c575bac-b8db-4ea8-abc2-0b512363d662": [-0.018191471695899963, -0.02889629639685154, 0.004106882959604263, -0.02341596595942974, -0.02309280075132847, 0.010253742337226868, -0.03412079066038132, -0.024223877117037773, 0.018016424030065536, 0.0008066490408964455, 0.028061455115675926, 0.006631605792790651, -0.006746060214936733, -0.011155909858644009, -0.014555870555341244, -0.02737473137676716, -0.0021998754236847162, -0.00415064487606287, 0.008590791374444962, -0.027253543958067894, -0.0014020629459992051, -0.02186746895313263, 0.021948259323835373, -0.015619619749486446, -0.017410490661859512, -0.009264050982892513, 0.011472341604530811, -0.024021899327635765, -0.009041874669492245, -0.0036154035478830338, 0.01521566417068243, 0.008166637271642685, -0.018985917791724205, -0.025529999285936356, -0.003588473191484809, 0.011411747895181179, 0.012159066274762154, -0.010045032016932964, -0.011755110695958138, -0.0034369896166026592, 0.012475498020648956, 0.0027452155482023954, 0.01495982613414526, -0.010725023224949837, -0.014232705347239971, 0.008934153243899345, -0.012569754384458065, -0.010024833492934704, 0.009378504939377308, -0.009519889019429684, -0.009499691426753998, 0.002243637340143323, -0.05951613932847977, -0.0008529355982318521, -0.0003050707164220512, 0.0019204727141186595, -0.026580285280942917, -0.0010982545791193843, -0.005089841783046722, 0.00342857395298779, 0.015377246774733067, -0.0003587210667319596, -0.019241755828261375, -0.007729019038379192, -0.000554597529117018, 0.00931117869913578, -0.0022739339619874954, 0.0009854835225269198, -0.05052139237523079, 0.007587634492665529, 0.02895015850663185, 0.038106486201286316, 0.027846012264490128, -0.009593947790563107, 0.042119111865758896, 0.003901538671925664, -0.04629332199692726, -0.001479487749747932, -0.003238378092646599, 0.0021712619345635176, 0.009358307346701622, -0.009385237470269203, -0.01431349664926529, -0.001497160759754479, 0.019699573516845703, 0.0141923101618886, -0.00918999221175909, 0.006055969279259443, 0.017720188945531845, -0.021073022857308388, 0.009748797863721848, 0.016939207911491394, -0.0014256269205361605, 0.018056819215416908, -0.004248267505317926, 0.016494857147336006, -0.0121994623914361, 0.01017295103520155, -0.026284050196409225, -0.05606904998421669, -0.016966139897704124, 0.015161803923547268, -0.004810438957065344, -0.002361457562074065, -0.04174209013581276, -0.020547879859805107, 0.032289523631334305, -0.016723765060305595, 0.0019911648705601692, -0.02011699415743351, -0.01610436663031578, 0.02311973087489605, -0.010031566023826599, -0.03576354309916496, -0.0218405369669199, 0.01656218431890011, 0.028465410694479942, -0.01833958923816681, -0.015754271298646927, -0.004874398931860924, -0.0033057041000574827, 0.01144541148096323, 0.02662068046629429, 0.01808374933898449, 0.017275838181376457, 0.017464350908994675, -0.014515474438667297, -0.010751954279839993, 0.017410490661859512, -0.015552294440567493, 0.042361486703157425, 0.01029413752257824, 0.011506004258990288, -0.0015518631553277373, -0.01434042677283287, -0.01334400288760662, -0.008139707148075104, -0.02035936713218689, 0.009890181943774223, -0.013182421214878559, 0.024533575400710106, 0.012414905242621899, 0.008200300857424736, -0.013142025098204613, 0.007500110659748316, 0.03196636214852333, 0.015161803923547268, 0.010953932069242, -0.00754723884165287, 0.010826013050973415, 0.005934782326221466, -0.020184319466352463, -0.016252484172582626, -0.01495982613414526, 0.0016999802319332957, 0.03242417797446251, 0.011317492462694645, 0.0011201354209333658, -0.006655170116573572, -0.011122247204184532, -0.005699141416698694, 0.02163855917751789, 0.02489713579416275, -0.022473402321338654, 0.004881131462752819, 0.04096110910177231, 0.00408668490126729, 0.010617301799356937, -0.01634673960506916, 0.009836320765316486, 0.01737009547650814, -0.013620039448142052, -0.02814224734902382, 0.03422851115465164, -0.022473402321338654, 0.031535472720861435, -0.010906803421676159, 0.016481392085552216, -0.015188734047114849, -0.022500332444906235, -0.015256060287356377, -0.00012045032781315967, 0.0008440990932285786, 0.04351949319243431, -0.008294557221233845, -0.013842214830219746, 0.0021577966399490833, 0.013949936255812645, 0.012246590107679367, -0.011041455902159214, 0.03449781611561775, 0.04750518873333931, 0.014273101463913918, -0.009728599339723587, -0.5907447934150696, -0.03309743478894234, 0.004053022246807814, -0.0063993316143751144, 0.017006535083055496, 0.01887819543480873, -0.0045411353930830956, 0.008658116683363914, -0.011822436936199665, 0.020534414798021317, 0.002294131787493825, 0.013243013992905617, -0.008489802479743958, 0.009546819142997265, -0.009425632655620575, -0.02334863878786564, 0.010529777966439724, -0.0012707773130387068, 0.011849367059767246, 0.022688845172524452, -0.02139618620276451, 0.002479278016835451, -0.023483291268348694, 0.01497329119592905, 0.010583639144897461, 0.00013465189840644598, 0.013707563281059265, -0.008247428573668003, -0.004298761952668428, 0.042603861540555954, -0.04066487401723862, 0.01711425557732582, 0.02138272114098072, 0.00665853638201952, 0.04403116926550865, 0.0053928084671497345, -0.03449781611561775, 0.011155909858644009, -0.008254161104559898, 0.056715380400419235, -0.009115933440625668, -0.028223037719726562, 0.03737936541438103, 0.008254161104559898, -0.025301091372966766, 0.00721734156832099, 0.022783100605010986, -0.01811067946255207, -0.013418061658740044, 0.005497163627296686, 0.002262151800096035, -0.012664010748267174, 0.01207154244184494, -0.004167476203292608, 0.01205807738006115, 0.0006126661319285631, 0.02485674060881138, -0.030781423673033714, 0.010334532707929611, -0.005678943824023008, -0.003339366987347603, 0.011586795561015606, -0.027468986809253693, -0.006503686774522066, -0.020211249589920044, 0.010334532707929611, -0.030727563425898552, -0.009600680321455002, -0.013121827505528927, -0.023968037217855453, 0.005540925543755293, -0.008207033388316631, 0.01964571140706539, 0.002304230583831668, 0.025529999285936356, 0.04456977918744087, 0.010900070890784264, -0.016642974689602852, -0.008988014422357082, 0.013189153745770454, 0.0033494660165160894, -0.0026964042335748672, -0.0018649287521839142, -0.016023576259613037, 0.01043552253395319, 0.0038847073446959257, -0.03694847971200943, -0.012536091729998589, -0.009849786758422852, 0.0009619194897823036, 0.0140845887362957, 0.021544303745031357, 0.015794668346643448, -0.02870778553187847, 0.006210818886756897, 0.0243989247828722, -0.01837998442351818, 0.013936471194028854, 0.0055038961581885815, 0.004322325810790062, -0.007271202281117439, -0.012354311533272266, 0.0010267207399010658, -0.001875027664937079, 0.030835283920168877, -0.008382081054151058, -0.040341708809137344, 0.018447309732437134, 0.046401042491197586, -0.005806863307952881, -0.013949936255812645, 0.007459715008735657, -0.010395126417279243, -0.010341266170144081, 0.0418228805065155, -0.030269747599959373, 0.012340846471488476, 0.01786830648779869, 0.019659176468849182, -0.023846851661801338, 0.015431107953190804, -0.009486226364970207, -0.003201348939910531, -0.0015712192980572581, 0.011054920963943005, 0.005631815642118454, 0.02962341718375683, -0.0021965091582387686, -0.0029640248976647854, 0.005985276773571968, -0.02060174010694027, 0.0048239040188491344, 0.031293101608753204, -0.006049236748367548, 0.005177365615963936, -0.004776776302605867, 0.002817590953782201, -0.02387378178536892, 0.027522847056388855, -0.014488544315099716, 0.0013103312812745571, 0.0024271004367619753, 0.015161803923547268, 0.0007683573639951646, 0.011405015364289284, -0.028492340818047523, -0.00684368284419179, -0.0062242839485406876, -0.004244901239871979, 0.002915213583037257, 0.007580901961773634, 0.0223387498408556, 0.0015392395434901118, -0.001318747061304748, 0.02186746895313263, 0.006890811026096344, -0.0003158007748425007, -0.004012626595795155, 0.032316453754901886, -0.02612246759235859, -0.015148338861763477, -0.00465558934956789, -0.018662752583622932, -0.001177362515591085, -0.03640987351536751, -0.020736392587423325, 0.0024607633240520954, 0.0051908306777477264, -0.025556929409503937, -0.03667917847633362, -0.00892742071300745, -0.007412586826831102, 0.001831265864893794, -0.004749845713376999, 0.009439097717404366, 0.007459715008735657, -0.019982341676950455, -0.0011714715510606766, 0.010139288380742073, 0.007796344812959433, 0.003638967638835311, -0.0035682753659784794, 0.022002119570970535, -0.0053928084671497345, 0.02313319593667984, 0.006278144661337137, 0.03624829277396202, 0.03463246673345566, -0.04448898881673813, 0.0008836530614644289, -0.009378504939377308, 0.019026312977075577, 0.03161626681685448, 0.011681051924824715, 0.024466250091791153, -0.0005365036777220666, 0.044919874519109726, 0.021207673475146294, 0.0019827492069453, 0.01988808624446392, 0.013458456844091415, 0.016481392085552216, 0.009997903369367123, -0.017922166734933853, 0.025503069162368774, -0.010374928824603558, -0.017168117687106133, -0.001866611884906888, 0.01940333843231201, 0.019255220890045166, 0.010388393886387348, -0.05259503051638603, -0.018191471695899963, -0.0003204294480383396, 0.020022736862301826, 0.004443512763828039, -0.02286389283835888, -0.024021899327635765, -0.004739746917039156, 0.024277737364172935, 0.010516312904655933, -0.012630348093807697, 0.004672420676797628, -0.010018100962042809, -0.01030760258436203, -0.005497163627296686, 0.006961503066122532, 0.010334532707929611, -0.015686945989727974, -0.029784999787807465, -0.014111518859863281, 0.01811067946255207, 0.0023160127457231283, 0.010482650250196457, 0.016467927023768425, -0.03616749867796898, 0.022473402321338654, 0.0015451305080205202, 0.013512318022549152, 0.01409805379807949, 0.01420577522367239, 0.005096574313938618, -0.0038443116936832666, -0.012886187061667442, 0.01681802235543728, 0.017154652625322342, 0.060485631227493286, 0.032801203429698944, -0.03921063244342804, -0.020453622564673424, -0.01688534766435623, -0.020709462463855743, -0.027576709166169167, 0.013566178269684315, 0.02410268969833851, -0.018770474940538406, -0.004847468342632055, 0.012744802050292492, 0.02886936627328396, 0.03336673974990845, 0.013646969571709633, 0.0341477207839489, -0.0009593947906978428, 0.015660015866160393, -0.01081254705786705, -0.03336673974990845, -0.03492870181798935, -0.015794668346643448, -0.011788773350417614, -0.025718512013554573, -0.006860514171421528, 0.005507262423634529, 0.015484968200325966, -0.026997705921530724, 0.007742484100162983, -0.0016536936163902283, 0.006783089134842157, 0.002773829037323594, 0.00432569207623601, -0.004116981755942106, -0.00815990474075079, -0.027091961354017258, 0.02792680449783802, 0.0014071123441681266, 0.03196636214852333, 0.0055543906055390835, 0.013155490159988403, 0.026445632800459862, 0.0016604262636974454, -0.007675158325582743, 0.01587545871734619, 0.01434042677283287, 0.005773200187832117, -0.0037029271479696035, -0.02938104420900345, -0.014905964955687523, 0.008812966756522655, -0.015929318964481354, -0.00257353438064456, -0.008590791374444962, 0.028276897966861725, -0.004318959545344114, -0.03212794288992882, -0.0014172112569212914, 0.03945300728082657, 0.004844102077186108, -0.03444395586848259, -0.004615193698555231, 0.02336210384964943, -0.027267009019851685, -0.02565118670463562, -0.010496115311980247, -0.007856938056647778, -0.01983422413468361, -0.00415064487606287, -0.0016166643472388387, 0.006995166186243296, -0.026512958109378815, 0.03377069532871246, 0.0020955202635377645, -0.0031660026870667934, -0.02364487387239933, -0.0030902610160410404, 0.015417641960084438, 0.0008356833131983876, 0.004854200873523951, 0.004729648120701313, -0.006853781640529633, -0.02363140881061554, -0.0032047152053564787, -0.0017126038437709212, -0.01432696171104908, -0.02267538011074066, -0.026351377367973328, 0.009822855703532696, -0.004467076621949673, 0.030565980821847916, -0.018770474940538406, 5.906799924559891e-05, 0.005483698565512896, -0.012327381409704685, 0.0006673684692941606, 0.012286985293030739, -0.020763322710990906, 0.013128560036420822, -0.01836651936173439, 0.0024893770460039377, 0.009378504939377308, 0.014380822889506817, -0.008220498450100422, -0.008732175454497337, 0.030512120574712753, 0.008839896880090237, -0.010347998701035976, 0.004342523869127035, -0.001673049875535071, -0.000966127379797399, 0.024789415299892426, -0.001999580767005682, 0.015660015866160393, 0.0006063543260097504, 0.04793607443571091, -0.006227650213986635, 0.006372401025146246, -0.011970553547143936, 0.028249967843294144, 0.01070482563227415, -0.007473180536180735, 0.023321708664298058, 7.821381586836651e-05, -0.004992219153791666, 0.0040328241884708405, -0.005470233503729105, -0.022082911804318428, 0.020709462463855743, 0.02365833893418312, -0.04459670931100845, -0.002824323484674096, -0.0024254173040390015, 0.028223037719726562, -0.042334556579589844, -0.0076549602672457695, 0.004342523869127035, -0.007466447539627552, 0.020318971946835518, -0.015646550804376602, -0.00840901117771864, -0.011532935313880444, -0.015404176898300648, -0.022742705419659615, -0.03791797533631325, -0.016427531838417053, -0.02363140881061554, -0.025731977075338364, 0.0036658979952335358, -0.04702044278383255, -0.020655600354075432, 0.01886473037302494, 0.019753433763980865, 0.017275838181376457, 0.012509161606431007, -0.01683148741722107, -0.01634673960506916, 0.025543464347720146, -0.008590791374444962, -0.013734493404626846, -0.011970553547143936, -0.01685841754078865, 0.032801203429698944, -0.008738907985389233, 0.01196382101625204, -0.0005306126549839973, -0.018258797004818916, 0.026028212159872055, 0.03425544127821922, 0.010334532707929611, 0.01219272892922163, 0.005140336230397224, -0.005187464412301779, 0.02038629725575447, 0.011479074135422707, 0.00966800656169653, -0.003659165231510997, -0.011021258309483528, 0.0070961550809443, -0.0522180050611496, 0.007055759429931641, 0.011378085240721703, -0.003723124973475933, -0.017949098721146584, 0.0020904706325381994, 0.012852523475885391, 0.002124133752658963, 0.00868504773825407, 0.02135579101741314, 0.0066518038511276245, -0.015444573014974594, -0.01357964426279068, 0.003389861434698105, -0.00401935912668705, -0.006594576872885227, 0.016993070021271706, -0.009210189804434776, 0.03522493690252304, 0.013707563281059265, -0.019241755828261375, 0.02290428802371025, -0.003521147184073925, 0.012206194922327995, 0.0037702531553804874, -0.017423955723643303, -0.03694847971200943, -0.02213677205145359, 0.009472761303186417, 0.013842214830219746, 0.008334952406585217, -0.02694384567439556, -0.02667454071342945, -0.018406914547085762, 0.0029354114085435867, 0.015148338861763477, 0.017531676217913628, -0.0014180528232827783, -0.02464129775762558, -0.03829500079154968, -0.01913403533399105, 0.009849786758422852, -0.023173591122031212, -0.03463246673345566, -0.027980664744973183, -0.01605050638318062, 0.011842634528875351, 0.02266191504895687, 0.017033465206623077, 0.022567657753825188, 0.0040732198394834995, -0.05248731002211571, -0.006257947068661451, 0.0054937973618507385, -0.042119111865758896, -0.007607832085341215, -0.0016511689173057675, 0.03064677119255066, 0.02719968371093273, 0.02410268969833851, 0.030539050698280334, 0.0007031353889033198, -0.002750264946371317, 0.016292879357933998, 0.01684495247900486, -0.007782879751175642, 0.008496535010635853, -0.012152333743870258, 0.007022096309810877, 0.008846629410982132, 0.011741645634174347, 0.008079113438725471, 0.009109200909733772, -0.0015434473752975464, 0.022271424531936646, -0.0024085857439786196, 0.006877345498651266, -0.008563860319554806, -0.047101233154535294, -0.006362302228808403, -0.0037837184499949217, -0.01245530042797327, -0.01734316535294056, -0.008711977861821651, -0.011310759000480175, -0.006294976454228163, -0.0016242385609075427, 0.03277427330613136, 0.004951823502779007, 0.016737230122089386, -0.021194208413362503, -0.0021897763945162296, -0.011748378165066242, 0.012670743279159069, 0.0035245134495198727, 0.014569335617125034, -0.0007569961599074304, 0.01910710521042347, 0.01563308574259281, 0.023065870627760887, -0.0005436570500023663, 0.015552294440567493, -0.0060828994028270245, -0.0012034513056278229, 0.03546731173992157, -0.008227230980992317, -0.03374376520514488, -0.015107942745089531, -0.017706723883748055, -0.03261268883943558, -0.025018323212862015, -0.01683148741722107, -0.0011958772083744407, -0.025772374123334885, 0.007735751569271088, -0.0006046711932867765, 0.00354807754047215, 0.00018840745906345546, -0.009008212015032768, -0.010731756687164307, -0.027213148772716522, 0.032343387603759766, 0.02240607514977455, 0.015444573014974594, 0.01638713665306568, 0.0178548414260149, -0.006692199502140284, -0.03894132748246193, -0.009304446168243885, -0.0026341278571635485, 0.025328021496534348, 0.05205642431974411, -0.006318540312349796, -0.022271424531936646, 0.009506423957645893, 0.005625083111226559, -0.00622091768309474, -0.03465939685702324, 0.009277516044676304, 0.019416803494095802, -0.009216922335326672, -0.011559865437448025, 0.012886187061667442, -0.045593131333589554, 0.0036524327006191015, -0.02386031672358513, -0.003958765882998705, -0.021571233868598938, 0.005274988245218992, 0.0027384830173105, 0.023698734119534492, -0.031508542597293854, 0.021800141781568527, 0.012940047308802605, 0.006096364464610815, -0.005695775151252747, 0.009055339731276035, -0.03977617248892784, 0.007688623387366533, -0.00326362531632185, 0.037352435290813446, -0.01658911444246769, -0.009210189804434776, 0.029596487060189247, 0.01508101262152195, -0.005261522717773914, -0.01208500750362873, -0.016239019110798836, 0.052675820887088776, 0.001168946735560894, -0.026526423171162605, 0.0030162024777382612, 0.012791930697858334, 0.018541567027568817, -0.010859675705432892, -0.00031222408870235085, 0.011155909858644009, 0.003174418583512306, -0.007843472994863987, 0.004837369546294212, -0.026486027985811234, -0.0036759967915713787, -0.023335173726081848, -0.00420450558885932, -0.013754690997302532, -0.03412079066038132, -0.01432696171104908, 0.01734316535294056, -0.03323208913207054, -0.026216724887490273, -0.022042516618967056, -0.021692421287298203, -0.0002981277066282928, -0.00566211249679327, 0.026257120072841644, 0.004130446817725897, 0.055692024528980255, -0.026566820219159126, 0.01257648691534996, 0.002512941136956215, 0.007264469750225544, -0.012738069519400597, -0.0039049049373716116, -0.0026762064080685377, 0.00026509593590162694, 0.015404176898300648, -0.03877974674105644, -0.017922166734933853, -0.031239239498972893, 0.01936294324696064, 0.02792680449783802, -0.012832325883209705, 0.009755530394613743, 0.053214430809020996, 0.010179683566093445, 0.004265098832547665, -0.019026312977075577, -0.011034723371267319, -0.015888923779129982, -0.004467076621949673, 0.01271787192672491, 0.004773409571498632, -0.010805814526975155, -0.014879034832119942, -0.01018641609698534, -0.002664424479007721, -0.0019911648705601692, -0.025503069162368774, -0.03972230851650238, 0.012448567897081375, -0.030485190451145172, -0.022823495790362358, -0.009122665971517563, -0.02718621864914894, -0.02215023711323738, -0.014178845100104809, -0.014528939500451088, 0.004261732567101717, -1.8895974790211767e-05, 0.010502847842872143, 0.032262593507766724, 0.008106044493615627, 0.024843275547027588, 0.008617721498012543, -0.029865790158510208, -0.015269525349140167, -0.028465410694479942, -0.009115933440625668, -0.017020000144839287, -0.01660257950425148, 0.03541344776749611, 2.118400516337715e-05, -0.025839699432253838, -0.011640656739473343, -0.007466447539627552, -0.017464350908994675, -0.012818860821425915, 0.007062491960823536, 0.0241161547601223, 0.03148161247372627, -0.000559226144105196, -0.01005176454782486, 0.03692154958844185, -0.017168117687106133, 0.008395546115934849, -0.007035561837255955, -0.018178006634116173, 0.012408172711730003, -0.02965034730732441, -0.004113615490496159, -0.015431107953190804, -0.01654871739447117, -0.020776787772774696, 0.021678956225514412, 0.010408591479063034, 0.012165798805654049, 0.021032625809311867, 0.0009307812433689833, -0.014757848344743252, -0.008846629410982132, -0.027980664744973183, -0.007224074099212885, 0.006311807781457901, 0.009587215259671211, -0.019672641530632973, 0.01281212829053402, 0.008233963511884212, -0.0006913533434271812, -0.0063353716395795345, 0.004147278610616922, -0.00571597320958972, 0.0008470445754937828, 0.02115381322801113, -0.03721778467297554, 0.0130545012652874, -0.0023261115420609713, -0.001016621827147901, 0.03342059999704361, -0.0073923892341554165, 0.020749857649207115, 0.025247231125831604, 0.006830217316746712, -0.009331376291811466, -0.014124983921647072, 0.0037769856862723827, -0.046401042491197586, -0.019322548061609268, 0.013041036203503609, -0.0036793630570173264, -0.00802525319159031, -0.004834003280848265, -0.0072914003394544125, -0.024950996041297913, 0.0032703580800443888, 0.025785839185118675, -0.001034294837154448, -0.031562406569719315, 0.02412961982190609, 0.01333053782582283, -0.018730079755187035, -0.030619841068983078, -0.006948038004338741, -0.021719351410865784, -0.010125822387635708, -0.040611013770103455, 0.02062867023050785, -0.030269747599959373, 0.003867875784635544, -0.005561123602092266, -0.007116352673619986, -0.024573970586061478, 0.0065912106074392796, 0.029004018753767014, 0.001967600779607892, -0.007372191641479731, 0.2492675930261612, -0.02892322838306427, -0.0057058739475905895, 0.01910710521042347, 0.01808374933898449, 0.001881760312244296, 0.014623195864260197, 0.0056587462313473225, -0.0024136353749781847, 0.010792349465191364, -0.023954572156071663, 0.010024833492934704, -0.00484073581174016, -0.001994531136006117, 0.02083064801990986, -0.003763520624488592, -0.02538188360631466, -0.007123085204511881, -0.03398614004254341, -0.013485387898981571, 0.03250496834516525, -0.016239019110798836, 0.00023374728334601969, -0.008839896880090237, 0.017800981178879738, 3.881761585944332e-05, -0.013323805294930935, 0.02033243700861931, 0.017410490661859512, -0.020224714651703835, -0.024075759574770927, 0.016939207911491394, 0.01069136057049036, -0.01737009547650814, 0.01133769005537033, -0.023941107094287872, 0.052702754735946655, -0.0009215239551849663, 0.021988654509186745, -0.001252262620255351, -0.002472545485943556, -0.004366087727248669, -0.008880292996764183, -0.013162222690880299, -0.03239724785089493, 0.006150225643068552, -0.010698093101382256, -0.015404176898300648, 0.0009459296124987304, -0.002637494122609496, -0.037567880004644394, -0.012569754384458065, 0.02940797433257103, 0.03799876570701599, -0.0027872943319380283, -0.002856303472071886, 0.026243655011057854, -0.020494019612669945, 0.02542227879166603, 0.026809193193912506, -0.007789612282067537, 0.03212794288992882, -0.02342943102121353, 0.006456558592617512, -0.016683369874954224, 0.007708820980042219, -0.0243989247828722, 0.007277935277670622, -0.002060174010694027, -0.013572911731898785, 0.010146020911633968, 0.011876297183334827, -0.025220301002264023, -0.009587215259671211, -0.021476978436112404, -0.025718512013554573, 0.024560505524277687, -0.00376688688993454, 0.0327204130589962, 0.042065251618623734, 0.024250807240605354, 0.0180702842772007, 0.006907642353326082, -0.013249746523797512, -0.013828749768435955, -0.017976028844714165, 0.011277096346020699, -0.005823694635182619, -0.013512318022549152, -0.010381661355495453, 0.00831475481390953, -0.027711359784007072, 0.0016545351827517152, -0.004416582174599171, 0.01732969842851162, 0.0041843075305223465, -0.02087104506790638, 0.01782791130244732, 0.006830217316746712, 0.015296455472707748, -0.0317239873111248, 0.02158469893038273, 0.0023665071930736303, 0.006847049109637737, -0.01609090156853199, 0.001689039752818644, 0.0067527927458286285, 0.015888923779129982, 0.03266654908657074, -0.021571233868598938, 0.0007856096490286291, -0.03737936541438103, 0.006830217316746712, -0.004076586104929447, -0.001997897634282708, 0.027468986809253693, -0.025597326457500458, -0.02316012606024742, -0.0063993316143751144, 0.013801819644868374, 0.02943490445613861, -0.02588009461760521, 0.0008701878832653165, -0.0005133603699505329, -0.01522912923246622, -0.0003528300439938903, -0.011835901997983456, -0.012414905242621899, -0.01233411394059658, -0.030269747599959373, 0.025705046951770782, 0.005264888983219862, 0.011916693300008774, -0.001680623972788453, 0.010401858948171139, -0.003228279296308756, 0.020036201924085617, -0.0001978751679416746, -0.0016040407354012132, 0.0038712420500814915, 0.007803077343851328, -0.00880623422563076, -0.011741645634174347, 0.018447309732437134, -0.013626771979033947, -0.021275000646710396, 0.006719129625707865, 0.0023648240603506565, -0.003058281261473894, -0.027038101106882095, -0.042334556579589844, -0.003756787860766053, -0.001639386871829629, 0.014273101463913918, 0.011849367059767246, -0.023779524490237236, -0.019726503640413284, -0.03904905170202255, -0.009688204154372215, 0.021934794262051582, -0.03417465090751648, -0.011108781211078167, 0.023294778540730476, -0.019053243100643158, -0.01711425557732582, -0.009984438307583332, -0.1703077256679535, 0.012152333743870258, 0.03018895536661148, -0.008220498450100422, 0.017033465206623077, 0.010146020911633968, -0.007991590537130833, -0.0030801622197031975, 0.001093205064535141, 0.005803496576845646, 0.029327183961868286, -0.0011866198619827628, -0.019214825704693794, -0.008779304102063179, -0.008610988967120647, 0.013229548931121826, -0.0013650335604324937, 0.009614145383238792, 0.05259503051638603, -0.004015992861241102, 0.05854664370417595, -0.02886936627328396, 0.01396340224891901, 0.03500949218869209, 0.004574798047542572, 0.022540727630257607, -0.023025475442409515, -0.006432994268834591, 0.0025937322061508894, -0.012340846471488476, 0.005524094216525555, 0.002241954207420349, 0.030862215906381607, 0.013909541070461273, 0.02266191504895687, -0.024600902572274208, 0.0023597744293510914, 0.0068032871931791306, 0.009957508184015751, 0.0020130458287894726, 0.014488544315099716, 0.05431857705116272, 0.0261763297021389, -0.0015350315952673554, -0.01155313290655613, 0.0016688419273123145, -0.003100360045209527, -0.011748378165066242, -0.008604256436228752, -0.011270363815128803, 0.021221138536930084, -0.03374376520514488, -0.023792989552021027, -0.01232064887881279, 0.03495563194155693, 0.008011788129806519, 0.0051706330850720406, 0.009089003317058086, -0.011027990840375423, 0.002664424479007721, -0.005867456551641226, -0.0139768673107028, 0.011034723371267319, -0.0036187698133289814, -0.014555870555341244, 0.0013338953722268343, -0.022177167236804962, 0.01232064887881279, -0.03498256206512451, -0.004386285785585642, -0.013182421214878559, -0.02412961982190609, 0.007708820980042219, -0.014663591980934143, 0.0029539261013269424, -0.006055969279259443, -0.015390711836516857, 0.019686106592416763, 0.019726503640413284, -0.009896914474666119, 0.014555870555341244, 0.05935455486178398, 0.006379133556038141, -0.016925742849707603, -0.00943236518651247, 0.01494636107236147, -0.005103306844830513, 0.00028592487797141075, -0.024964461103081703, 0.00267284014262259, 0.03964151814579964, -0.03239724785089493, -0.0060728006064891815, -0.005779932718724012, 0.018541567027568817, 0.015148338861763477, 0.015579224564135075, 0.008624454028904438, 0.0008041242836043239, -0.008745640516281128, 0.013007373549044132, 0.0005621716845780611, -0.00867158267647028, 0.027226613834500313, 0.02517990581691265, 0.027576709166169167, -0.006665268912911415, 0.0163602065294981, 0.03719085454940796, -0.0005078901303932071, -0.02434506267309189, 0.01812414638698101, 0.017221977934241295, 0.014273101463913918, 0.03420158103108406, 0.018056819215416908, -0.02989272214472294, -0.0008836530614644289, 0.020709462463855743, 0.020965300500392914, -0.02485674060881138, -0.0422537662088871, 0.006392599083483219, 0.02538188360631466, 0.02163855917751789, -0.017504746094346046, -0.06016246974468231, -0.007345261052250862, 0.018487704917788506, 0.044354334473609924, -0.00395203335210681, 0.026337910443544388, -0.004699351266026497, 0.010523045435547829, -0.012152333743870258, 0.025516534224152565, -0.0012000850401818752, -0.01495982613414526, -0.004574798047542572, -0.0027384830173105, -0.014380822889506817, 0.020197784528136253, 0.042092181742191315, -0.014111518859863281, 0.012159066274762154, 0.01638713665306568, -0.015417641960084438, -0.010953932069242, 0.0014862202806398273, -0.007156748324632645, -0.021167278289794922, -0.0013179054949432611, -0.013633504509925842, 0.008873560465872288, 0.00802525319159031, 0.009795925579965115, 0.04104189947247505, 0.0032703580800443888, -0.004292029421776533, -0.0029993709176778793, 0.003093627281486988, 0.01687188260257244, -0.0023597744293510914, -0.00957375019788742, 0.025085648521780968, -0.01710079051554203, -0.008254161104559898, -0.00026151922065764666, -0.0028781844303011894, 0.005126871168613434, -0.014623195864260197, -0.01497329119592905, -0.01606397144496441, 0.003346099751070142, -0.030996866524219513, -0.009721866808831692, -0.03791797533631325, 0.008382081054151058, -0.01961878128349781, -0.010644232854247093, 0.02442585490643978, 0.02338903397321701, 0.028465410694479942, 0.011997483670711517, -0.02488367073237896, 0.01017295103520155, 0.011405015364289284, -0.002605514135211706, -0.004827270749956369, 0.026607215404510498, -0.009903647005558014, 0.015673480927944183, -0.046401042491197586, -0.012381241656839848, 0.005534193012863398, 0.02316012606024742, -0.007102887611836195, 0.013505585491657257, -0.017531676217913628, 0.015188734047114849, -0.029273321852087975, -0.03546731173992157, -0.013640237040817738, -0.006140126381069422, 0.03638294339179993, 0.004719548858702183, -0.011135712265968323, -0.02109995298087597, -0.001227856962941587, -0.022231027483940125, 0.0337168350815773, 0.004059754777699709, -0.002226805780082941, 0.001184095162898302, 0.014259636402130127, -0.026728400960564613, -0.00514706876128912, -0.012529359199106693, -0.008887025527656078, -0.02441238984465599, -0.009486226364970207, -0.009795925579965115, -6.62213860778138e-05, 0.009499691426753998, 0.020695997402071953, 0.006557547487318516, -0.013855679892003536, -0.034066930413246155, -0.08391506224870682, 0.01580813340842724, 0.00840901117771864, -0.011216503567993641, 0.004844102077186108, -0.0026425435207784176, 0.015794668346643448, 0.0021712619345635176, -0.0054029072634875774, -0.005779932718724012, -0.017935633659362793, 0.024802880361676216, 0.007116352673619986, -0.004487274680286646, -0.013721028342843056, -0.0055947862565517426, 0.009344841353595257, 0.0011706299846991897, -0.00956028513610363, 0.010664430446922779, -0.0021392819471657276, -0.010482650250196457, 0.012246590107679367, 0.02165202610194683, -0.018433844670653343, 0.02009006403386593, 0.014488544315099716, 0.020992230623960495, -0.003302337834611535, -0.024843275547027588, 0.003588473191484809, -0.003026301506906748, 0.0030145193450152874, 0.021328860893845558, -0.010893338359892368, -0.006109829992055893, 0.003773619420826435, 0.01988808624446392, 0.0019894817378371954, 0.032343387603759766, -0.01662950962781906, -0.037298575043678284, 0.016414066776633263, 0.005153801292181015, -0.0014357258332893252, -0.022029049694538116, 0.0057092406786978245, 0.01144541148096323, -0.0008878609514795244, 0.025597326457500458, 0.01057017408311367, 0.008442673832178116, -0.008725442923605442, 0.0016536936163902283, 0.0036759967915713787, -0.046616487205028534, -0.009028409607708454, 0.011654121801257133, -0.012219659984111786, -0.02717275358736515, 0.041607435792684555, -0.0049080615863204, 0.012832325883209705, 0.00045024228165857494, -0.012805395759642124, 0.004409849643707275, -0.02287735790014267, -0.0010822645854204893, 0.010260474868118763, -0.041095759719610214, -0.014421218074858189, 0.002023144857957959, 0.003386495169252157, -0.011822436936199665, -0.0009004845633171499, 0.010650965385138988, -0.0141923101618886, 0.019955411553382874, -0.02135579101741314, 0.020951835438609123, -0.015511898323893547, -0.000756575376726687, -0.04071873426437378, -0.006402697879821062, 0.020224714651703835, 0.015107942745089531, -0.008698512800037861, 0.023052405565977097, 0.006348837167024612, -0.018528101965785027, -0.03538651764392853, 0.0021291831508278847, 0.015282990410923958, 0.017531676217913628, 0.021328860893845558, 0.03137389197945595, -0.00036629525129683316, -0.007621297612786293, 0.04276544228196144, 0.00017525786824990064, 0.009735331870615482, -0.012670743279159069, -0.025058718398213387, -0.032585758715867996, 0.005248057655990124, -0.011108781211078167, -0.007634762674570084, -0.05081762745976448, 0.01005176454782486, 0.01421924028545618, -0.0027216514572501183, 0.006459924858063459, -0.0012665693648159504, 0.017989493906497955, -0.014932895079255104, 0.011068386025726795, -0.0025954153388738632, -0.01983422413468361, -0.02215023711323738, 0.0013860729523003101, 0.005931416060775518, 0.03121230937540531, 0.03724471479654312, 0.007224074099212885, 0.024277737364172935, -0.004901329055428505, 0.006749426480382681, -0.023739129304885864, 0.008718710392713547, -0.005907852202653885, -0.010974129661917686, 0.03460553660988808, -0.03212794288992882, -0.020224714651703835, -0.01421924028545618, 0.005827060900628567, 0.010388393886387348, -0.00433579133823514, -0.017976028844714165, 0.08811619877815247, 0.0183530542999506, -0.0030532318633049726, 0.017033465206623077, 0.0013010739348828793, -0.004773409571498632, 0.01181570440530777, 0.02666107565164566, -0.015673480927944183, -0.0218405369669199, 0.030350537970662117, -0.0016671587945893407, -0.004911427851766348, -0.007284667808562517, 0.007850205525755882, -0.0031929330434650183, -0.007782879751175642, 0.0035649091005325317, -0.016225554049015045, -0.010738489218056202, 0.040126264095306396, 0.008786036632955074, -0.015713876113295555, 0.0013061234494671226, -0.03220873326063156, 0.01041532400995493, 0.034282371401786804, -0.00647338991984725, -0.015794668346643448, -0.016279414296150208, 0.015915853902697563, -0.012502429075539112, -0.03164319694042206, -0.031131519004702568, 0.01054324395954609, 0.02715928852558136, -0.025718512013554573, 0.011519470252096653, 0.032316453754901886, 0.012751534581184387, -0.0006278145010583103, 0.0074529824778437614, -0.03568275272846222, -0.027065031230449677, -0.0013482021167874336, 0.007325063459575176, -0.004079952370375395, -0.021557768806815147, 0.005924683529883623], "47443c42-8394-4e1a-a1ae-748f0d235d1e": [0.0023535701911896467, -0.03443766012787819, 0.0014027409488335252, -0.031534869223833084, 0.006900726817548275, 0.018485503271222115, -0.03251126408576965, -0.010977829806506634, 0.017152858898043633, -0.005828673020005226, 0.007177811581641436, 0.011320886202156544, -0.01921120099723339, -0.018881339579820633, -0.027523741126060486, -0.00911080650985241, 0.008015662431716919, -0.0024459315463900566, 0.02145426720380783, -0.022984830662608147, -0.02018759585916996, -0.0019709293264895678, 0.00471703615039587, -0.0028813504613935947, -0.01983134262263775, 0.014118121936917305, 0.008404900319874287, -0.03140292689204216, -0.010892065241932869, 0.02881680242717266, 0.0030363858677446842, 0.013682703487575054, -0.02219315990805626, 0.00270322454161942, 0.024027196690440178, 0.003588905790820718, 0.01615007594227791, -0.004994120914489031, -0.01713966391980648, 0.00810802448540926, 0.030320975929498672, 0.006537877954542637, 0.020200788974761963, 0.016717439517378807, -0.0142368720844388, 0.026375818997621536, -0.023420248180627823, -0.0029390763957053423, -0.006712705362588167, 0.000395835202652961, 0.001105039962567389, 0.013761870563030243, -0.047421056777238846, -0.018102863803505898, 0.0068149627186357975, -0.006607149261981249, -0.0029357776511460543, 0.0024624248035252094, 0.004337694030255079, -0.023090386763215065, 0.013135131448507309, 0.016651466488838196, -0.012745893560349941, -0.01713966391980648, 0.009902477264404297, 0.01267992053180933, -0.01428965013474226, 0.009823310188949108, -0.02190288156270981, -0.014857014641165733, 0.02087370865046978, 0.04581132531166077, 0.0012922369642183185, -0.010628174990415573, 0.04533632472157478, -0.009170182049274445, -0.03931963071227074, -0.014118121936917305, 0.01633479818701744, 0.023420248180627823, -0.000971445522736758, -0.026441790163517, -0.01892092265188694, -0.004288214724510908, -0.0001198844620375894, 0.0073691317811608315, -0.004839085042476654, 0.009592406451702118, 0.013880620710551739, -0.020860515534877777, 0.015002153813838959, 0.011294497177004814, 0.02427789196372032, 0.039187684655189514, -0.0025168522261083126, 0.008127816021442413, 0.007758369669318199, 0.015002153813838959, -0.010496229864656925, -0.042301587760448456, -0.007085449993610382, 0.023077191784977913, -0.005112871062010527, -0.014540346339344978, -0.031376536935567856, -0.019250784069299698, 0.0419849194586277, -0.005386657081544399, 0.00015936489216983318, -0.014038954861462116, -0.00911080650985241, 0.023037608712911606, -0.009902477264404297, -0.03351404517889023, -0.03369877114892006, -0.016585495322942734, 0.024818867444992065, -0.011116371490061283, 0.0046708551235497, -0.003132045967504382, 0.004397069104015827, 0.009730948135256767, 0.010397271253168583, 0.00714482506737113, 0.014711874537169933, 0.01015317253768444, -0.005835270509123802, -0.008424692787230015, -0.003064424032345414, -0.030268197879195213, 0.03691823035478592, -0.016229242086410522, 0.0033843908458948135, 0.007738578133285046, -0.013405618257820606, -0.004558701999485493, -0.018591059371829033, 0.0034734539221972227, -0.017548693343997, -0.016031324863433838, 0.02554456517100334, 0.023895250633358955, 0.015688268467783928, -0.01909245178103447, 0.00931532122194767, 0.017970917746424675, 0.010727133601903915, 0.011254914104938507, 0.0028269230388104916, 0.0018488802015781403, 0.005281101446598768, -0.00836531724780798, 0.003671371378004551, -0.008272955194115639, 0.0003923304029740393, 0.020662596449255943, 0.013907009735703468, 0.0089194867759943, 7.282748993020505e-05, -0.006867740768939257, 0.011004218831658363, 0.023538999259471893, 0.006541176699101925, -0.027048738673329353, -0.007382326293736696, 0.026758458465337753, 0.022470245137810707, 0.030268197879195213, -0.007092047017067671, 3.3630527468631044e-05, 0.011076788417994976, 0.024027196690440178, -0.027009155601263046, 0.03259043022990227, 0.0035361277405172586, 0.04451826587319374, -0.010285117663443089, 0.0035658152773976326, -0.005079885013401508, -0.01302957534790039, -0.022179964929819107, -0.012000403366982937, 0.006999685894697905, 0.02813068777322769, -0.023538999259471893, -0.009500044398009777, 0.00599360466003418, 0.0007256978424265981, 0.02868485637009144, -0.012831657193601131, 0.006834754254668951, 0.03525572270154953, 0.01512090489268303, 0.013412215746939182, -0.5966027975082397, -0.003856094554066658, -0.001697143423371017, -0.00770559161901474, 0.017390359193086624, 0.02185010351240635, 0.00796288438141346, 0.014500762335956097, -0.027127904817461967, 0.018788976594805717, 0.006613746285438538, 0.018881339579820633, 0.011400053277611732, -0.006768781691789627, 0.013280270621180534, -0.030690422281622887, -0.00951323937624693, -0.0015124203637242317, -0.010898662731051445, -0.0015181929338723421, -0.019184812903404236, 0.002111121080815792, -0.020662596449255943, 0.00940768327564001, -0.004934745375066996, -0.00648180115967989, 0.004796203225851059, -0.013445202261209488, -0.005168947856873274, 0.03583627939224243, -0.027233460918068886, 0.015160487964749336, 0.020715374499559402, -0.0017994007794186473, 0.04786967113614082, -0.022100798785686493, -0.03760434314608574, 0.025900816544890404, 0.0020220582373440266, 0.06650031358003616, 0.0029027913697063923, -0.009981644339859486, 0.02506956271827221, 0.004723633173853159, -0.026982765644788742, 0.021467462182044983, 0.012013598345220089, -0.016691051423549652, 0.004162866622209549, 0.008147607557475567, 0.008226774632930756, -0.0067456914111971855, 0.0166778564453125, -0.008451081812381744, 0.016717439517378807, 0.003856094554066658, 0.035282108932733536, -0.016691051423549652, 0.017984112724661827, -0.0005327282124198973, -0.005812180228531361, 0.0041925543919205666, -0.018723005428910255, -0.007256978657096624, -0.02611192874610424, 0.020728569477796555, -0.0278931874781847, -0.01644035428762436, 0.028077909722924232, 0.0031716295052319765, 0.002010512864217162, -0.004984224680811167, 0.008028857409954071, 0.006043083965778351, 0.00309905968606472, 0.05858360975980759, -0.0012320370879024267, 0.009981644339859486, -0.009902477264404297, 0.02945013903081417, -0.018036890774965286, -0.004759918432682753, -0.0036680728662759066, -0.008926083333790302, 0.02369733341038227, -0.01127470564097166, -0.022496633231639862, -0.0015280888183042407, 0.0033761444501578808, 0.0015429325867444277, 0.011591373942792416, 0.004195853136479855, 0.009401085786521435, -0.042354367673397064, -0.006999685894697905, 0.026982765644788742, -0.010925051756203175, 0.0063201687298715115, 0.0018257898045703769, 0.006000201683491468, -0.0026883806567639112, -0.0126535315066576, -0.001776310382410884, 0.0132208950817585, 0.039873797446489334, -0.013267076574265957, -0.027048738673329353, 0.024106362834572792, 0.022404272109270096, -0.0379474014043808, -0.016479939222335815, 0.007929898798465729, -0.009044834412634373, -0.005145857576280832, 0.04132519289851189, -0.022285521030426025, 0.026191094890236855, 0.017575083300471306, 0.010417062789201736, -0.009130598045885563, 0.033382102847099304, -0.008741360157728195, 0.010601785965263844, -0.013722286559641361, 0.008642401546239853, 0.014250067062675953, 0.03111264668405056, -0.03008347563445568, -0.012409433722496033, 0.004548806231468916, -0.023948028683662415, -0.004034220241010189, 0.02570289932191372, -0.005426240619271994, 0.023195942863821983, 0.002185340039432049, 0.016400771215558052, -0.003951754886657, 0.029661251232028008, -0.018261196091771126, -0.019066061824560165, -0.007012880407273769, -0.008022259920835495, -0.01926397904753685, -0.006105757784098387, -0.007230589631944895, -0.006781976204365492, -0.0073757292702794075, -0.012739296071231365, -0.006231105886399746, 0.013306659646332264, -0.009361502714455128, 0.015054931864142418, 0.010977829806506634, -0.012416030280292034, -0.003908872604370117, 0.02029315009713173, -0.026362624019384384, 0.0055120051838457584, 0.0037175521720200777, -0.020029261708259583, 0.01048963237553835, -0.028895968571305275, 0.008886500261723995, -0.04127241671085358, -0.005789089947938919, 0.01794452965259552, -0.005554887466132641, -0.02749735116958618, -0.0284737441688776, 0.008523651398718357, -0.005218427162617445, -0.0036977604031562805, -0.01012018695473671, 0.018089668825268745, 0.00405401224270463, -0.01389381568878889, -0.00966497603803873, 0.012943810783326626, 0.0028566105756908655, 0.005789089947938919, 0.0119344312697649, 0.004548806231468916, -0.01127470564097166, 0.01684938557446003, 0.004047414753586054, 0.018498698249459267, 0.024238308891654015, -0.01955425925552845, -0.016888968646526337, -0.03763073310256004, 0.004001234192401171, 0.01931675709784031, 0.012699712067842484, 0.025491787120699883, 0.0015610750997439027, 0.022443855181336403, 0.033039044588804245, -0.003961650654673576, 0.0050666905008256435, 0.02645498514175415, -0.007184408605098724, 0.01690216362476349, -0.034068215638399124, 0.020504262298345566, -0.0023090385366231203, -0.005188739858567715, -0.014250067062675953, -0.010271923616528511, 0.011835472658276558, 0.009196571074426174, -0.04604882746934891, -0.02093968167901039, -0.01915842294692993, 0.02541261911392212, -0.000494381645694375, -0.010588591918349266, -0.008325733244419098, -0.02316955290734768, 0.0026784848887473345, -0.004373978823423386, -0.011004218831658363, 0.02030634507536888, -0.01674382947385311, -0.001896710367873311, -0.005831971764564514, 0.0015082970494404435, -0.01719244197010994, -0.0230112187564373, -0.03636405989527702, -0.03127098083496094, -0.009559419937431812, -0.023248720914125443, -0.0013169767335057259, 0.030901534482836723, -0.022562606260180473, 0.0011875055497512221, -0.007606633007526398, 0.014474373310804367, -0.026032760739326477, 0.0006626116228289902, 0.007454896345734596, 0.013069158419966698, -0.020715374499559402, 0.019567452371120453, 0.026243872940540314, 0.03953074291348457, 0.012323669157922268, -0.03443766012787819, -0.01296360231935978, -0.01944870315492153, -0.007289964705705643, -0.024752894416451454, 0.025953594595193863, 0.010700744576752186, -0.03003069758415222, 0.0013763519236817956, 0.01316811703145504, 0.020108427852392197, 0.026138316839933395, 0.021256349980831146, 0.03253765404224396, -0.004129880573600531, -0.003277185605838895, -0.009697962552309036, -0.019475091248750687, -0.02834179997444153, 0.0005686007789336145, -0.005927632097154856, -0.02335427701473236, -0.002784040989354253, -0.009645184502005577, 0.03990018740296364, -0.00780455069616437, -0.027233460918068886, 0.005297594238072634, -0.0012963602785021067, 0.007718786131590605, 0.00997504685074091, -0.004720334894955158, -0.020042454823851585, -0.022457050159573555, 0.03174598142504692, 0.004067206755280495, 0.0301890317350626, 0.011248316615819931, -0.003305223770439625, 0.02427789196372032, 0.00464446609839797, 0.0087743466719985, -0.003044632263481617, -0.010562202893197536, 0.020741764456033707, -0.020398706197738647, 0.004166165366768837, -0.022523023188114166, 0.005363566800951958, -0.02547859214246273, -0.01296360231935978, -0.01995009370148182, 0.014184094034135342, -0.00808163546025753, -0.03224737569689751, -0.009335113689303398, 0.03892379254102707, -0.013491382822394371, -0.01597854681313038, -0.006940310355275869, 0.018023695796728134, -0.028737634420394897, -0.01921120099723339, -0.013629925437271595, -0.01691535674035549, -0.03675989434123039, -0.003833004040643573, 0.005716519895941019, -0.0036680728662759066, -0.012376447208225727, 0.020900098606944084, 0.013102144934237003, -0.02369733341038227, -0.02024037390947342, -0.01165074948221445, 0.005587873514741659, 0.0002591483644209802, 0.005037002731114626, 0.013709092512726784, 0.016374383121728897, -0.010938245803117752, 0.009091014973819256, -0.0005306665552780032, -0.02455497719347477, 0.012580961920320988, 0.007111839018762112, -0.01428965013474226, 0.006854546256363392, 0.020675791427493095, -0.005927632097154856, 0.03517655283212662, 0.011024010367691517, -0.0172452200204134, -0.0235785823315382, 0.015846602618694305, -0.027523741126060486, 0.011149358004331589, -0.012224710546433926, 0.004456444643437862, -0.003427273128181696, 0.010469840839505196, -0.004651063587516546, -0.00027296136249788105, 0.025267479941248894, 0.017060497775673866, -0.01886814460158348, -0.0019544363021850586, 0.005182142369449139, -0.005884749814867973, 0.006706107873469591, -0.0028104297816753387, 0.025848038494586945, -0.018472308292984962, 0.04763216897845268, 0.0030710212886333466, 0.01609729789197445, 0.0009211414726451039, 0.02881680242717266, 0.0007772389217279851, 0.0013788259821012616, 0.029291804879903793, -0.013603536412119865, -0.0028483641799539328, 0.013524369336664677, -0.030690422281622887, -0.019884120672941208, 0.013537563383579254, 0.004235436674207449, -0.029080692678689957, -0.007567049469798803, -0.0024987095966935158, 0.013379229232668877, -0.04219603165984154, -0.02042509615421295, 0.00714482506737113, -0.013629925437271595, -0.016004936769604683, -0.0063234674744307995, -0.012607350945472717, -0.009150390513241291, -0.01144623477011919, -0.028077909722924232, -0.020253567025065422, -0.01615007594227791, -0.031772371381521225, -0.019514674320816994, 0.014368817210197449, -0.04480854421854019, -0.019461896270513535, 0.010126783512532711, 0.0027246656827628613, 0.014909792691469193, 0.0009566016960889101, -0.010713939554989338, -0.0071184360422194, 0.03179876133799553, -0.006775379180908203, -0.01775980554521084, -0.02224593795835972, -0.03950435295701027, 0.03755156695842743, 0.003476752433925867, -0.0033167691435664892, -0.0017004420515149832, -0.016757022589445114, 0.029872363433241844, 0.008523651398718357, -0.010746925137937069, 0.010964634828269482, 0.0037175521720200777, 0.011901444755494595, -0.007837536744773388, 0.0037472399417310953, -0.005746207665652037, 0.016031324863433838, -0.03454321622848511, 0.003165032248944044, -0.03462238609790802, -0.0003490359231363982, -0.016598688438534737, -0.0172452200204134, -0.00808163546025753, -0.00500071793794632, -0.011287900619208813, -0.015107709914445877, 0.00046428170753642917, 0.03187792748212814, 0.009387891739606857, -0.00994865782558918, -0.01487020868808031, -0.002948972163721919, 0.00576599920168519, -0.0018983596237376332, 0.03285432234406471, 0.007204200606793165, 0.026019567623734474, 0.008754555135965347, -0.005851763766258955, 0.04267103224992752, 0.023961223661899567, 0.006907324306666851, 0.02755012921988964, -0.0041463738307356834, -0.0229980256408453, -0.007349340245127678, 0.0010027824901044369, 0.019000088796019554, 0.011617762967944145, -0.018129251897335052, -0.017904944717884064, -0.0009153689024969935, 0.003346456680446863, 0.022734135389328003, 0.021638991311192513, -0.02381608448922634, -0.024000806733965874, -0.021533435210585594, -0.00233542756177485, 0.024066779762506485, 0.00011534884833963588, -0.003958351910114288, -0.026600124314427376, -0.011083385907113552, 0.0009953605476766825, 0.032115429639816284, 0.016704244539141655, 0.030664032325148582, -0.008794138208031654, -0.04019046574831009, -0.015714656561613083, -0.004914953839033842, -0.03314460068941116, -0.0022546113468706608, -0.01392020471394062, 0.0201348178088665, 0.016941746696829796, 0.0077979532070457935, 0.0005718994070775807, 0.016255632042884827, -0.010087200440466404, -0.0042618256993591785, 0.01828758604824543, -0.02818346582353115, 0.010146575048565865, 0.014223678037524223, -0.003513037459924817, -0.015213266015052795, 0.006580760236829519, -0.010727133601903915, -0.008503859862685204, 0.0189737007021904, 0.025003589689731598, -0.023446638137102127, 0.007131630554795265, -0.0032722377218306065, -0.04187936335802078, 0.0009450565557926893, 0.002914336510002613, 0.001251828856766224, 0.00514915632084012, -0.01006740890443325, -0.008714971132576466, -0.01886814460158348, 0.0071250335313379765, 0.043277982622385025, 0.021177183836698532, 0.01822161301970482, -0.019184812903404236, 0.0102059505879879, -0.002058343030512333, -0.0024096467532217503, -0.002305740024894476, 0.02483206056058407, -0.008886500261723995, 0.03198348358273506, -0.0005982884322293103, 0.03150848299264908, 0.02592720463871956, 0.018129251897335052, 0.017218830063939095, -0.00556148448958993, 0.02852652221918106, 0.007646216545253992, -0.043964095413684845, -0.009882685728371143, -0.02857930026948452, -0.02623067982494831, -0.035387665033340454, 0.002355219330638647, 0.013511174358427525, -0.02623067982494831, 0.004598285537213087, 3.978968379669823e-05, -0.00372414942830801, 0.0005966391181573272, 0.0038461985532194376, 0.007164617069065571, -0.02392164058983326, 0.03554600104689598, 0.012429225258529186, 0.04417520761489868, 0.031086256727576256, -0.009077820926904678, 0.0018373350612819195, -0.031534869223833084, 0.004443250130861998, 0.021177183836698532, 0.02518831379711628, 0.05261969193816185, 0.00303473649546504, -0.03224737569689751, 0.0037637329660356045, 5.736517778132111e-05, 0.0012576014269143343, -0.03546683490276337, 0.01691535674035549, 0.02431747503578663, 0.001567672356031835, -0.012257696129381657, 0.01560910139232874, -0.031772371381521225, 0.02421191893517971, -0.0066335382871329784, -0.009968449361622334, -0.0028928956016898155, 0.009374696761369705, -0.009156987071037292, 0.0070656584575772285, -0.033909883350133896, 0.021361906081438065, -0.0011792590375989676, 0.010799703188240528, -0.008009065873920918, -0.006211313884705305, -0.046154383569955826, 0.007764967158436775, -0.006541176699101925, 0.03145570307970047, 0.0046708551235497, -0.015727851539850235, -5.4942749557085335e-05, 0.015886185690760612, -0.00043871733942069113, -0.020715374499559402, -0.01389381568878889, 0.043911319226026535, 0.005040301475673914, -0.014606318436563015, 0.02455497719347477, 0.007698994595557451, 0.022100798785686493, -0.0020517457742244005, 0.010575396940112114, 0.02381608448922634, -0.015371600165963173, -0.009480252861976624, 0.013148325495421886, -0.01955425925552845, 0.015952158719301224, -0.011974014341831207, -0.006600551772862673, -0.007336145732551813, -0.05016551539301872, -0.005307490471750498, 0.011776097118854523, -0.014988959766924381, -0.024185530841350555, -0.020148010924458504, -0.012389641255140305, 0.01775980554521084, 0.007540660444647074, 0.016770217567682266, 0.01382784266024828, 0.04794883728027344, -0.020715374499559402, -0.007256978657096624, 0.013174714520573616, 0.0036317878402769566, -0.026613319292664528, -0.010938245803117752, -0.024462614208459854, -0.02852652221918106, 0.03810573369264603, -0.012211515568196774, -0.013537563383579254, -0.048740506172180176, 0.022166771814227104, 0.01492298673838377, -0.022219549864530563, 0.019527869299054146, 0.010568799450993538, -0.0003358414105605334, 0.013379229232668877, -0.011894847266376019, -0.001135552185587585, 0.002226572949439287, -0.011921236291527748, -0.016202853992581367, 0.018762588500976562, 0.00635315477848053, 0.002490463200956583, 0.0040771025232970715, -0.007230589631944895, -0.0008271306287497282, -0.021995242685079575, -0.026494568213820457, 0.002734561450779438, -0.009467058815062046, -0.01995009370148182, -0.014606318436563015, -0.021823713555932045, -0.026243872940540314, -0.029344582930207253, -0.026600124314427376, 0.01394659373909235, 0.0037538371980190277, 0.02155982330441475, 0.02133551612496376, 0.01497576478868723, 0.015200071036815643, -0.007738578133285046, -0.023314692080020905, -0.010773314163088799, -0.01972578652203083, -0.03554600104689598, -0.022681357339024544, -0.025834843516349792, 0.03272237628698349, 0.00464446609839797, -0.030452920123934746, -0.0047071403823792934, -0.0019132033921778202, -0.01380145363509655, 0.0059441253542900085, 0.007916703820228577, 0.01921120099723339, 0.019976483657956123, -0.00022100798378232867, 0.011941028758883476, 0.02155982330441475, -0.008068440482020378, 0.004924849607050419, -0.007606633007526398, -0.017746610566973686, -0.016862578690052032, -0.027576519176363945, 0.00810802448540926, 0.0024112961255013943, -0.01944870315492153, -0.013907009735703468, 0.008833722211420536, 0.010469840839505196, 0.01144623477011919, 0.0034635579213500023, 0.02609873376786709, -0.03433210775256157, -0.02657373622059822, -0.029898751527071, -0.016822995617985725, -0.007019477430731058, 0.009876088239252567, -0.04863495007157326, -0.0010497879702597857, 0.03322376683354378, -0.004809397738426924, 0.00997504685074091, -0.002488813828676939, 0.016031324863433838, -0.01736397109925747, -0.0006984841893427074, -0.005109572783112526, 0.014857014641165733, -0.006940310355275869, 0.009572614915668964, 0.026468180119991302, -0.01538479421287775, 0.0025894218124449253, 0.02813068777322769, -0.002487164456397295, 0.004308006260544062, 0.009183376096189022, 0.016638273373246193, -0.0540446974337101, 0.0016229243483394384, 0.01926397904753685, -0.01389381568878889, -0.018089668825268745, 0.009836504235863686, -0.0004514995089266449, -0.01789175160229206, -0.009599003940820694, 0.03580988943576813, 0.004242033697664738, -0.032801542431116104, -0.0012881136499345303, 0.02518831379711628, -0.015305627137422562, -0.003839601296931505, 0.006669823080301285, -0.018129251897335052, -0.009605600498616695, -0.026929987594485283, 0.02450219914317131, -0.014751458540558815, -0.002208430552855134, -0.028948746621608734, 0.011538595892488956, -0.023261915892362595, 0.010991023853421211, 0.011024010367691517, 0.0028813504613935947, -1.865785634436179e-05, 0.24362336099147797, -0.024185530841350555, -0.0026570437476038933, 0.0133660351857543, 0.011050399392843246, 0.024370253086090088, 0.02075495943427086, 0.009328516200184822, 0.011736513115465641, 0.018709810450673103, -0.021876491606235504, -0.022048020735383034, 0.009876088239252567, -0.00793649535626173, 0.01489659771323204, -0.031534869223833084, -0.014025760814547539, -0.018366752192378044, -0.01828758604824543, -0.003575711278244853, 0.031614039093256, 0.0010753523092716932, -0.008695179596543312, -0.01599174179136753, 0.017179246991872787, -0.0010803001932799816, -0.018934117630124092, 0.01977856457233429, 0.02082093060016632, 0.03361960127949715, -0.02852652221918106, 0.008846916258335114, 0.010212548077106476, -0.009414280764758587, -0.006603850517421961, -0.008272955194115639, 0.03990018740296364, 0.00021080285659991205, 0.015516739338636398, 0.020557040348649025, -0.010100394487380981, 0.01943550817668438, -0.005479018669575453, 0.00019451588741503656, -0.03082236647605896, -0.01058199442923069, -0.003592204302549362, -0.02277371846139431, 0.003146889852359891, -0.006366349291056395, -0.020794542506337166, -0.00966497603803873, 0.016004936769604683, 0.03409460559487343, -0.006478502880781889, -0.012059778906404972, 0.013273673132061958, -0.002262857975438237, -0.006587357260286808, 0.020807737484574318, -0.0048225922510027885, 0.03578350320458412, -0.022153576835989952, 0.021375101059675217, -0.0020814333111047745, -0.009282335638999939, -0.00034326332388445735, 0.04517798870801926, -0.0005500459810718894, -0.010700744576752186, -0.013682703487575054, 0.016189659014344215, -0.026705680415034294, -0.011426442302763462, -0.0076858000829815865, -0.026547346264123917, 0.03166681528091431, 0.014751458540558815, 0.029344582930207253, 0.05779193714261055, 0.026890404522418976, 0.009216362610459328, 0.0040078312158584595, 0.010008033365011215, -0.00016781763406470418, -0.025491787120699883, 0.015741046518087387, 0.0076198275201022625, 0.0004679926496464759, 0.004651063587516546, -0.0018538282020017505, -0.029344582930207253, -0.0020962771959602833, -0.026270262897014618, -0.0002397689240751788, 0.0035988015588372946, 0.012013598345220089, 0.03836962580680847, 0.009493447840213776, 0.01874939352273941, -0.03454321622848511, 0.038501568138599396, 0.008094829507172108, -0.012844852171838284, -0.017561888322234154, -0.0022645071148872375, -0.003522933227941394, 0.011597971431910992, 0.008088232949376106, -0.021995242685079575, -0.016928551718592644, -0.035862669348716736, 0.0059441253542900085, -0.002506956225261092, -0.007316353730857372, 0.02448900416493416, 0.0002764661330729723, -0.02496400661766529, -0.008992056362330914, 0.01799730770289898, 0.01004101987928152, -0.019000088796019554, 0.0003888256032951176, -0.012007000856101513, -0.0013598587829619646, -0.023670945316553116, -0.01385423168540001, -0.015793824568390846, -0.019514674320816994, -0.04504604637622833, 0.02784040942788124, -0.006039785221219063, 0.0005529322661459446, -0.006300376728177071, 0.003918768372386694, 0.006066174246370792, 0.005241517908871174, -0.014012565836310387, -0.01127470564097166, 0.012429225258529186, -0.0028945449739694595, -0.014645902439951897, -0.003974845167249441, 0.00698649138212204, -0.018788976594805717, -0.024818867444992065, 0.0037835247348994017, -0.002668588887900114, -0.009763934649527073, 0.00012472932576201856, -0.03185153752565384, 0.009935463778674603, 0.007395520806312561, 0.01626882702112198, 0.021137598901987076, -0.0032986265141516924, -0.0056901308707892895, -0.0546252578496933, -0.000922790786717087, 0.03467516228556633, -0.011591373942792416, -0.014104927890002728, 0.02138829417526722, -0.00714482506737113, -0.016123687848448753, -0.00714482506737113, -0.16530077159404755, 0.007092047017067671, 0.01626882702112198, -0.022391077131032944, 0.03266959637403488, -0.009321918711066246, 0.009011847898364067, -0.005185441114008427, -0.005554887466132641, 0.014250067062675953, 0.03425293788313866, 0.022166771814227104, -0.03182515129446983, -0.02018759585916996, -0.016136880964040756, 0.04219603165984154, -0.020398706197738647, 0.029186248779296875, 0.054889146238565445, 0.005525199696421623, 0.04393770545721054, -0.00943407230079174, 0.006795170716941357, -0.00698649138212204, -0.001072053681127727, 0.017970917746424675, -0.023380665108561516, -0.007580243982374668, -0.01741674914956093, -0.01902647875249386, 0.0072371866554021835, 0.008668790571391582, 0.020398706197738647, 0.009678170084953308, 0.004796203225851059, -0.02541261911392212, 0.005290997214615345, 0.007276770193129778, -0.01546396128833294, 0.009328516200184822, -0.009711156599223614, 0.023961223661899567, 0.02749735116958618, -0.008121218532323837, -0.0033002758864313364, -0.0029770105611532927, -0.015028542838990688, -0.012838254682719707, 0.008747957646846771, 0.02203482575714588, 0.004070505034178495, -0.020055649802088737, -0.027339017018675804, -0.02140148915350437, 0.005901243072003126, 0.0024492302909493446, -0.0015049984212964773, 0.02322233095765114, -0.007666008081287146, 0.0032689389772713184, 0.01165074948221445, -0.04631271958351135, 0.00917677953839302, 0.0028236242942512035, -0.008675388060510159, -0.01216533500701189, -0.006092563271522522, 0.019409118220210075, -0.020570235326886177, -0.002670238260179758, 0.004024324472993612, -0.02960847318172455, -0.028394578024744987, -0.016427161172032356, 0.012376447208225727, -0.01043685432523489, -0.026705680415034294, 0.034754328429698944, 0.027339017018675804, -0.010654564015567303, -0.0005533446092158556, 0.019184812903404236, -0.01254137884825468, -0.004466340411454439, -0.003447064897045493, 0.0089194867759943, -0.01552993431687355, -0.012007000856101513, -0.032801542431116104, 0.005347073543816805, 0.04549465700984001, -0.03243209794163704, -0.015160487964749336, -0.002782391617074609, 0.023908445611596107, 0.015793824568390846, 0.0030578267760574818, 0.006894129794090986, -0.013392424210906029, 0.005139260087162256, 0.0017565187299624085, -0.0016080804634839296, -0.028157077729701996, 0.03369877114892006, 0.03573072329163551, 0.017047302797436714, -0.015675073489546776, 0.01834036409854889, 0.028552912175655365, 0.004037518985569477, -0.03810573369264603, 0.022272327914834023, 0.029186248779296875, 0.03873907029628754, 0.027418185025453568, 0.0037769274786114693, -0.005221725907176733, 0.014025760814547539, -0.0025448903907090425, 0.006646732799708843, -0.019013283774256706, -0.020966071635484695, 0.007890314795076847, 0.01504173781722784, -0.011466026306152344, -0.0345168299973011, -0.06507530808448792, -0.02064940333366394, 0.0036482810974121094, 0.028552912175655365, -0.011591373942792416, 0.028843190521001816, 0.02064940333366394, -0.008431289345026016, -0.006706107873469591, 0.014791041612625122, -0.013590341433882713, -0.011861861683428288, 0.005165649112313986, -0.01104380190372467, 0.003694461891427636, 0.021757740527391434, 0.030400142073631287, -0.0026883806567639112, 0.020266762003302574, 0.020557040348649025, -0.0035295304842293262, -0.012607350945472717, -0.013161520473659039, 0.004806098993867636, -0.016427161172032356, 0.011314289644360542, -0.0067522889003157616, 0.014619513414800167, 0.008668790571391582, 0.008477470837533474, 0.035229332745075226, 0.00494793988764286, -0.009757337160408497, -0.004730230662971735, 0.013709092512726784, -0.004242033697664738, -0.016704244539141655, -0.03003069758415222, 0.03185153752565384, 0.0031419419683516026, -0.012891032733023167, -0.013088950887322426, -0.005241517908871174, -0.014302845112979412, -0.02431747503578663, -0.01869661547243595, -0.016321605071425438, 0.008992056362330914, -0.004298110492527485, -0.013095547445118427, -0.041140470653772354, -0.010397271253168583, -0.0212827380746603, -0.021005654707551003, 0.023314692080020905, 0.019646620377898216, 0.012033389881253242, 0.021018849685788155, -0.04876689612865448, 0.007896912284195423, 0.01308235339820385, -0.009097612462937832, -0.014593124389648438, 0.02638901211321354, -0.011400053277611732, -0.01190804224461317, -0.021177183836698532, -0.016651466488838196, 0.008272955194115639, 0.006673121824860573, -0.01845911517739296, -0.012561170384287834, -0.02477928251028061, 0.03227376192808151, -0.029872363433241844, -0.003819809528067708, -0.007428507320582867, -0.023499416187405586, 0.022338299080729485, 0.009453863836824894, -0.007633022032678127, -0.012343460693955421, 0.006475204136222601, 0.01898689568042755, 0.040269635617733, 0.021243155002593994, -0.008747957646846771, 0.001992370467633009, 0.0030561776366084814, -0.048107169568538666, -0.01839314214885235, 0.002652095863595605, 0.0029027913697063923, -0.0143820121884346, -0.016809800639748573, -0.02460775524377823, 0.010944843292236328, -0.005851763766258955, 0.009876088239252567, 0.011004218831658363, -0.0017070393078029156, -0.016836190596222878, -0.0839170590043068, 0.019686203449964523, -0.0071184360422194, 0.004990822169929743, -0.0008658894803375006, 0.006795170716941357, 0.0034041826147586107, -0.01915842294692993, 0.0002123490849044174, 0.0062574949115514755, -0.02283969148993492, 0.03248487412929535, 0.005564783234149218, 0.02161260135471821, -0.01765424944460392, -0.012455614283680916, 0.03179876133799553, 0.00920316856354475, 0.02087370865046978, 0.02237788215279579, -0.004687348380684853, -0.003740642685443163, -2.468815910106059e-05, 0.016321605071425438, -0.023261915892362595, 0.0028137285262346268, -0.0035394264850765467, 0.013438604772090912, -0.008576429449021816, -0.019686203449964523, 0.00770559161901474, -0.00015245839313138276, -0.004304707515984774, 0.006834754254668951, 0.0005739610060118139, -0.00464446609839797, -0.0046708551235497, 0.015543128363788128, 0.004776411224156618, 0.036205727607011795, -0.027127904817461967, -0.028209855780005455, 0.02674526534974575, 0.001567672356031835, -0.005647248588502407, -0.015688268467783928, 0.015371600165963173, 0.000493969360832125, -0.0008634155383333564, 0.01244901679456234, 0.017786195501685143, 0.015252849087119102, 0.004344291053712368, 0.0035823085345327854, -0.017284803092479706, -0.05879472196102142, -0.0005331405554898083, 0.0013606834691017866, -0.007883717305958271, -0.01426326110959053, 0.04385853931307793, 0.022285521030426025, 0.0032986265141516924, -0.008668790571391582, 0.00579238822683692, -0.015714656561613083, -0.011564984917640686, -0.026600124314427376, 0.005670339334756136, -0.03301265463232994, -0.02974041737616062, -0.011129566468298435, 0.0004684049927163869, 0.004868772812187672, 0.01546396128833294, 0.010991023853421211, -0.005172246601432562, 0.003839601296931505, -0.03230015188455582, 0.029898751527071, 0.004288214724510908, 0.017007719725370407, -0.027682075276970863, 0.02558414824306965, 0.020741764456033707, 0.009130598045885563, -0.008042051456868649, 0.0053107887506484985, -0.01880217157304287, -0.012759087607264519, -0.03697100654244423, 0.007844134233891964, 0.04156269505620003, 0.031191812828183174, 0.03116542473435402, 0.033725157380104065, 0.024581365287303925, -0.011294497177004814, 0.032458484172821045, 0.008424692787230015, 0.00992226880043745, 0.0032557444646954536, -0.00037295097718015313, -0.036944616585969925, 0.00040140163036994636, -0.003077618544921279, -0.01176290214061737, -0.04520437866449356, -0.015332016162574291, -0.01742994226515293, -0.0373668409883976, -0.010872273705899715, 0.018102863803505898, 0.02082093060016632, -0.024647338315844536, 0.006953504867851734, -0.01277228258550167, -0.030268197879195213, -0.0278931874781847, 0.008965667337179184, 0.01582021266222, 0.032801542431116104, 0.00540644908323884, -0.02984597347676754, 0.037525177001953125, -0.012719504535198212, 0.019738981500267982, -0.05042940378189087, 0.012112556956708431, -0.0039418586529791355, 0.012007000856101513, 0.02415914088487625, -0.022918857634067535, -0.02868485637009144, -0.012119154445827007, -0.0020698881708085537, 0.005284399725496769, -0.01046324335038662, -0.008503859862685204, 0.07315034419298172, 0.022958440706133842, 0.00831253919750452, 0.005241517908871174, 0.004001234192401171, 0.0043277982622385025, -0.0006184924859553576, 0.014170899987220764, 0.0020220582373440266, -0.01224450208246708, 0.041668251156806946, 0.0007619827520102262, -0.005673637613654137, -0.010793106630444527, -0.010872273705899715, 0.00816739909350872, -0.023657750338315964, 0.006874337792396545, -0.009678170084953308, -0.008451081812381744, 0.05763360485434532, -0.008180594071745872, 0.0038494972977787256, -0.009942060336470604, -0.015846602618694305, -0.015741046518087387, 0.03963629901409149, -0.005413046106696129, 0.001236160285770893, -0.0014926285948604345, 0.021757740527391434, -0.007012880407273769, -0.004552104976028204, -0.04340992495417595, -0.00059292814694345, 0.017970917746424675, -0.012079570442438126, 0.019475091248750687, 0.04348909482359886, 0.008457678370177746, -0.0017515707295387983, 0.008503859862685204, -0.0161104928702116, -0.02225913293659687, -0.015859797596931458, -0.0005570555804297328, -0.012429225258529186, -0.00592103460803628, 0.016347993165254593], "7e115d34-80b1-444b-9a9b-cc54eca947cc": [-0.020787792280316353, -0.02430572547018528, -0.0038620796985924244, -0.020078642293810844, -0.00114715239033103, 0.023693911731243134, -0.013654589653015137, -0.026349741965532303, -0.006406672298908234, -0.0030347395222634077, 0.026043836027383804, 0.007758921477943659, -0.010442563332617283, -0.010227037593722343, -0.032565221190452576, -0.018131960183382034, 0.0012062480673193932, -0.003225931664928794, 0.023999817669391632, -0.00812044832855463, -0.010400848463177681, 0.0019501590868458152, -0.00019727545441128314, -0.0019032300915569067, -0.006577007006853819, 0.019383398815989494, 0.0013452968560159206, -0.025890881195664406, -0.01306363195180893, 0.015740321949124336, 0.02721184492111206, 0.0069524385035037994, -0.010783232748508453, -0.0036013631615787745, 0.003516195807605982, -0.009003408253192902, 0.004088033922016621, 0.00022834415722172707, 0.0027462132275104523, -0.002191756386309862, 0.02263714000582695, 0.02498706430196762, 0.016185278072953224, 0.02597431093454361, -0.030173584818840027, 0.023972008377313614, -0.009768176823854446, 0.043828174471855164, -0.006733437068760395, 0.02304038219153881, 0.003580505959689617, 0.004463465418666601, -0.02290133386850357, -0.014558406546711922, 0.007668539881706238, 0.010491229593753815, -0.015795940533280373, 0.008224735036492348, 0.0048319450579583645, -0.019258255138993263, 0.022261708974838257, 0.019494637846946716, -0.027684610337018967, -0.013710209168493748, 0.005690570920705795, 0.0038968417793512344, -0.023388003930449486, 0.001594715635292232, -0.007320918142795563, -0.01888282410800457, 0.027295274659991264, 0.05967973545193672, -0.003335432382300496, 0.007543396204710007, 0.05712123587727547, -0.000982031924650073, -0.021552560850977898, 0.011200378648936749, -0.00882264506071806, -0.001389618730172515, 0.00908683706074953, -0.02803223207592964, -0.02013426274061203, 0.004439132288098335, -0.0184656772762537, 0.027698514983057976, -0.011304665356874466, 0.020885126665234566, 0.024959255009889603, -0.023930294439196587, 0.0219418965280056, 0.0011028306325897574, 0.015309269540011883, 0.02223389968276024, 0.001446107286028564, 0.005224757827818394, 0.009205028414726257, 0.017116904258728027, -0.015740321949124336, -0.019939593970775604, -0.019522447139024734, 0.021733323112130165, -0.023652195930480957, -0.008704453706741333, -0.03273208066821098, -0.0010237465612590313, 0.027726326137781143, 0.011603619903326035, 0.006497053895145655, -0.009809890761971474, -0.01803462579846382, 0.027017176151275635, 0.002878309693187475, -0.03426161780953407, -0.042298637330532074, -0.008106543682515621, 0.012729914858937263, -0.018952347338199615, -0.02609945461153984, -0.022386852651834488, 0.012132005766034126, -0.001220152946189046, 0.018298817798495293, 0.016060132533311844, 0.01888282410800457, 0.02388857863843441, -0.00840549822896719, -0.01667194813489914, -0.014906028285622597, -0.03095225617289543, 0.047304391860961914, 0.01012970320880413, 0.001426119008101523, -0.0039976523257792, -0.021010270342230797, -0.007765873800963163, -0.017005665227770805, 0.010303514078259468, -0.020315025001764297, -0.013035822659730911, 0.009052075445652008, 0.02501487359404564, -0.003394528292119503, -0.025932596996426582, 0.0017181214643642306, 0.02665564976632595, -0.014224689453840256, -0.0016459898324683309, 0.011694001965224743, 0.006976772099733353, -0.0018476105760782957, 0.013237442821264267, -0.01076932717114687, -0.019633686169981956, 0.0013366063358262181, 0.008697500452399254, 0.004143653437495232, 0.010908376425504684, 0.00030851445626467466, -0.005652332678437233, 0.011520191095769405, 0.010025416500866413, 0.0006213742308318615, -0.013897924683988094, 0.022331232205033302, 0.03267646208405495, 0.017047379165887833, 0.007731111720204353, -0.005349901504814625, -0.0006074693519622087, 0.012250197120010853, 0.021483035758137703, -0.023304574191570282, 0.02277618832886219, 0.00690377177670598, 0.03373323380947113, -0.00034870824310928583, 0.006358005106449127, -0.002535901963710785, -0.001762443222105503, -0.032759889960289, -0.0056801424361765385, 0.01597670465707779, 0.022664949297904968, -0.018646441400051117, -0.009065980091691017, -0.004393941257148981, 0.007112344726920128, 0.0158376544713974, -0.01118647400289774, -0.0029617389664053917, 0.030201394110918045, 0.006670864764600992, -0.00943445973098278, -0.5931264758110046, -0.008162163197994232, -0.00039172646938823164, -0.012827249243855476, 0.015434414148330688, 0.012799439951777458, -0.0016094895545393229, 0.017714813351631165, -0.023930294439196587, 0.032759889960289, 0.00704629672691226, 0.022428566589951515, -0.022678855806589127, -0.018006816506385803, -0.014892123639583588, -0.034150380641222, 0.008516737259924412, 0.001315749017521739, 0.017297668382525444, 0.003948985133320093, -0.020481884479522705, 0.010998757556080818, -0.011874765157699585, 0.02445867843925953, 0.014558406546711922, -0.01021313201636076, 0.0034032186958938837, -0.02472287230193615, -0.00521432887762785, 0.02723965421319008, -0.02831033058464527, 0.0085375951603055, 0.008913026191294193, 0.009253695607185364, 0.0591791570186615, -0.027934899553656578, -0.02580745331943035, 0.008641880936920643, -0.005464616697281599, 0.07063677906990051, -0.028421569615602493, -0.014725265093147755, 0.026002120226621628, 0.0001612096675671637, -0.007432157173752785, 0.000649183988571167, 0.0018215388990938663, -0.027017176151275635, -0.006510959006845951, 0.020342836156487465, 0.0034727430902421474, 0.007480823900550604, 0.011687049642205238, 0.006695198360830545, 0.0233323834836483, 0.010227037593722343, 0.017728717997670174, -0.033927902579307556, 0.0036639352329075336, -9.776867227628827e-05, -0.00971950963139534, 0.006451863329857588, 0.003573553403839469, -0.01943901926279068, -0.012952392920851707, 0.005207376554608345, -0.016769282519817352, -0.011999908834695816, -0.012597818858921528, -0.009712557308375835, -0.002989548724144697, -0.01450278703123331, 0.01222238689661026, -0.004449560772627592, 0.006017335690557957, 0.052421387284994125, 0.013077537529170513, -0.027392609044909477, 0.003517933888360858, 0.018159769475460052, -0.00019553734455257654, -0.003893365617841482, 0.01131161767989397, 0.0053811874240636826, 0.01803462579846382, -0.03109130635857582, -0.031035685911774635, 0.0013957020128145814, 0.009629127569496632, 0.0038481748197227716, 0.002796618500724435, 0.020384550094604492, 0.021886276081204414, -0.030785398557782173, -0.005909572821110487, 0.03648639842867851, -0.01888282410800457, 0.008669691160321236, 0.017839957028627396, -0.008919978514313698, -0.020732171833515167, 0.008655786514282227, -0.001777217141352594, 0.015378794632852077, 0.0400182381272316, 0.0040185097604990005, -0.049084216356277466, 0.0005170876393094659, 0.019119206815958023, -0.019786641001701355, -0.009413601830601692, 0.004491275176405907, -0.01597670465707779, -0.013272205367684364, 0.03679230436682701, -0.03707040473818779, 0.0313694030046463, 0.008342926390469074, 0.008481975644826889, 0.007376537658274174, 0.004505180288106203, -0.008315117098391056, 0.013571159914135933, 0.0007882327190600336, 0.014391548000276089, 0.03095225617289543, 0.03890584781765938, -0.004960564896464348, -0.0120138144120574, 0.008398545905947685, -0.024625537917017937, 0.005349901504814625, 0.02914462238550186, -0.0007760659791529179, 0.011992956511676311, -0.014217737130820751, 0.008315117098391056, -0.012403151020407677, 0.018271008506417274, -0.006865533068776131, -0.0248758252710104, -0.006434482056647539, -0.004571228288114071, -0.0010028892429545522, -0.003443195251747966, -0.024945350363850594, -0.007362632546573877, -0.013849257491528988, 0.0059165251441299915, -0.0046442290768027306, -0.01874377392232418, -0.0023603530135005713, 0.024514298886060715, 0.021761132404208183, 0.0009663889650255442, -0.003427552292123437, -0.0065839593298733234, -0.017951196059584618, 0.012208482250571251, -0.01582374982535839, -0.005252567585557699, 0.0014408929273486137, -0.02359657734632492, -0.002073564799502492, -0.023221144452691078, -0.01512850634753704, -0.026919841766357422, 0.0030660254415124655, -0.018924538046121597, -0.022970857098698616, -0.025737928226590157, -0.009900272823870182, 0.005335996858775616, 0.00011927777813980356, -0.011304665356874466, -0.018131960183382034, -0.006660436280071735, -0.00014198182907421142, 0.006521387491375208, -0.0009507460054010153, 0.00957350805401802, -0.006427529733628035, -0.003019096562638879, -0.005579331889748573, 0.02374953031539917, -0.0008099591359496117, 0.009392744861543179, 0.027476036921143532, -0.018396152183413506, -0.009712557308375835, -0.026280218735337257, 0.009191123768687248, -0.00038846750976517797, 0.005228233989328146, 0.014474977739155293, 0.02456991747021675, 0.02178894355893135, 0.03401133045554161, 0.010748470202088356, 0.009024265222251415, 0.03317703679203987, 0.029228052124381065, 0.01998130790889263, -0.03718164190649986, 0.02653050608932972, -0.018410056829452515, 0.00566276116296649, -0.017547955736517906, -0.01622699201107025, 0.014711360447108746, -0.010783232748508453, -0.003573553403839469, -0.01831272430717945, -0.0019397303694859147, 0.002355138538405299, 0.003858603537082672, -0.01720033399760723, 0.002926976652815938, -0.006966343615204096, -0.00862102396786213, 0.010366085916757584, -0.014099545776844025, 0.0017363715451210737, -0.03111911565065384, 0.01166619174182415, -0.00437308382242918, -0.0014513215282931924, -0.00693853385746479, -0.0058052861131727695, -0.023568768054246902, -0.026989366859197617, -0.027017176151275635, -0.005395092535763979, -0.0031529308762401342, 0.03932299464941025, -0.011360284872353077, 0.018563011661171913, -0.004578181076794863, 0.027809754014015198, -0.005610617808997631, 0.011262950487434864, -0.015754226595163345, 0.007070630323141813, -0.0016034061554819345, 0.00700805801898241, 0.008565404452383518, 0.045747045427560806, -0.005989525932818651, -0.014600121416151524, -0.011805240996181965, -0.017144713550806046, 0.01682490110397339, -0.03473438322544098, 0.025306876748800278, 0.011749621480703354, -0.01984225958585739, -0.001910182530991733, 0.020315025001764297, 0.033955711871385574, 0.0313694030046463, 0.01974492520093918, 0.029200242832303047, -0.03303799033164978, -0.0016372993122786283, -0.012458770535886288, -0.036430779844522476, 0.005579331889748573, -0.01571251079440117, -0.0005635820562019944, -0.03690354526042938, 0.005885239224880934, -0.0019710164051502943, 0.015740321949124336, -0.026210693642497063, -0.01651899516582489, -0.004004604648798704, -0.007473871577531099, 0.020579218864440918, 0.027128415182232857, 0.010261799208819866, -0.013668494299054146, -0.01960587687790394, 0.03259303420782089, -0.0036222205962985754, 0.00589914433658123, -0.002259542467072606, -0.017742622643709183, 0.01708909496665001, 0.012938488274812698, 0.00860711932182312, -0.009281505830585957, 0.015392699278891087, 0.0014235117705538869, -0.015323175117373466, -0.0031042639166116714, -0.023527052253484726, 0.020454075187444687, -0.00211527943611145, -0.022956952452659607, -0.011659239418804646, 0.013001060113310814, 0.01083189994096756, -0.014878218993544579, -0.00937188696116209, 0.022011421620845795, 0.0021552559919655323, -0.023554861545562744, -0.010532944463193417, 0.032565221190452576, -0.030868828296661377, -0.014002211391925812, -0.01048427727073431, 0.000649618508759886, -0.03501247987151146, -0.008224735036492348, 0.0021257081534713507, -0.00020705231872852892, -0.009309315122663975, 0.03946204110980034, 0.016755377873778343, -0.034150380641222, -0.016838805750012398, -0.012931535951793194, 0.005322091747075319, -0.008210830390453339, 0.010150560177862644, 0.004320940468460321, 0.02445867843925953, -0.016324326395988464, -0.0006183325313031673, -0.008593214675784111, -0.03403913974761963, 0.0006987201049923897, -0.012271054089069366, -0.01076932717114687, 0.0022108755074441433, 0.0031077400781214237, -0.025612784549593925, 0.00944836437702179, 0.0036256967578083277, -0.012048576027154922, -0.027670705690979958, 0.028073947876691818, -0.02345752902328968, 0.018715964630246162, 0.00832206942141056, 0.002242161426693201, 0.0023568766191601753, 0.013021918013691902, -0.0012618675827980042, 0.00222304230555892, 0.015350984409451485, 0.026919841766357422, 0.0008673167321830988, 0.006427529733628035, -0.006059050094336271, -0.001501726801507175, 0.021010270342230797, -0.0005340342177078128, 0.012243244796991348, -0.005589760839939117, 0.04266016557812691, 0.003573553403839469, 0.018966251984238625, 0.008231687359511852, 0.0238746739923954, 0.016032323241233826, -0.01931387558579445, 0.011165616102516651, -0.006017335690557957, -5.261855307026053e-08, 0.002302995417267084, -0.029617389664053917, -0.023374099284410477, 0.024361345916986465, 0.007167964242398739, -0.04316074028611183, 0.002259542467072606, 0.007585110608488321, 0.02484801597893238, -0.056314755231142044, -0.011972099542617798, 0.01817367412149906, -0.0026175931561738253, -0.004797182511538267, -0.011652287095785141, 0.0018823727732524276, -0.004459989257156849, -0.008384641259908676, -0.015267555601894855, -0.02279009483754635, -0.031730931252241135, -0.03428942710161209, 0.009469221346080303, 0.01943901926279068, -0.026168979704380035, -0.040351953357458115, -0.0007182738045230508, 0.003076454158872366, 0.016741473227739334, 0.022428566589951515, -0.0001982531393878162, -0.004453036934137344, 0.04196491837501526, -0.006212003994733095, -0.02498706430196762, -0.010998757556080818, -0.027601182460784912, 0.01789557747542858, 0.02067655324935913, 0.01847958192229271, -0.0030903590377420187, -0.008308163844048977, 0.026725174859166145, 0.006295433267951012, -0.002720141550526023, 0.012090290896594524, 0.010421705432236195, 0.012396197766065598, -0.026739079505205154, -0.0016260015545412898, -0.003948985133320093, 0.006326719187200069, -0.008315117098391056, 0.0009950677631422877, -0.038544319570064545, -0.013133157044649124, -0.0205514095723629, -0.011068282648921013, -0.011026567779481411, -0.003019096562638879, -0.0010593777988106012, -0.0008030066965147853, -0.005475045647472143, 0.027573371306061745, -0.0011532357893884182, -0.02875528670847416, -0.007891017943620682, 0.008287306874990463, 0.000909031368792057, -0.0036778401117771864, 0.02374953031539917, -0.008586261421442032, 0.017839957028627396, -0.0001466530084144324, -0.00867664348334074, 0.03223150596022606, 0.03239836543798447, 0.02806004323065281, 0.02654441073536873, 0.0052908058278262615, -0.03570772334933281, -0.02427791617810726, 0.005127423442900181, 0.0027740229852497578, 0.031035685911774635, 0.0008768763509579003, -0.030924446880817413, -0.020899031311273575, -0.010240942239761353, 0.002313423901796341, 0.01665804348886013, -0.01722814328968525, -0.019105302169919014, -0.014113450422883034, -0.0056801424361765385, 0.0059165251441299915, 0.005906096659600735, -0.0003832531801890582, -0.023554861545562744, 0.013258300721645355, -0.005645380355417728, 0.01138114184141159, 0.0027879278641194105, 0.015768131241202354, 0.0065283398143947124, -0.029895486310124397, -0.008037019520998001, -0.005926954094320536, -0.04555237665772438, -0.01622699201107025, -0.03250960260629654, 0.014009163714945316, 0.020203785970807076, 0.012417055666446686, 0.018368342891335487, 0.007612920366227627, -0.004418274853378534, 0.008544547483325005, 0.020718267187476158, -0.010247894562780857, 0.01188171748071909, -0.005947811529040337, 0.0023447100538760424, -0.005464616697281599, 0.00645533949136734, -0.025348590686917305, -0.020926840603351593, 0.013313920237123966, 0.03181435912847519, -0.02306819148361683, 0.0030990494415163994, -0.0032485269475728273, -0.03809936344623566, 0.006907247938215733, -0.006201575510203838, -0.00666738860309124, 0.006062526721507311, -0.007863207720220089, -0.007661587558686733, -0.004334845580160618, 0.025098303332924843, 0.02347143366932869, 0.01722814328968525, 0.01105437707155943, -0.010748470202088356, 0.00876007229089737, -0.008141305297613144, 0.024416964501142502, -0.004060224164277315, 0.01124209351837635, -0.0129802031442523, 0.017951196059584618, 0.011346380226314068, 0.01571251079440117, 0.012104195542633533, 0.022734474390745163, 0.005356853827834129, -0.008210830390453339, 0.04240987449884415, -0.018549107015132904, -0.034511905163526535, 0.004689420107752085, -0.028671856969594955, -0.03720945119857788, -0.027406513690948486, 0.01928606443107128, -0.010713707655668259, -0.02152474969625473, 0.011631430126726627, 0.0023829482961446047, -0.0022108755074441433, -0.004939707461744547, -0.00507180392742157, -0.004077605437487364, -0.02110760472714901, 0.0355408675968647, 0.010790185071527958, 0.002709713065996766, 0.025890881195664406, -0.0017902529798448086, -0.011534095741808414, -0.024625537917017937, 0.008259497582912445, 0.0033597659785300493, 0.028532808646559715, 0.03470657393336296, 0.0021031126379966736, -0.014822599478065968, -0.008516737259924412, 0.011617525480687618, -0.02095464989542961, -0.037710025906562805, 0.029756437987089157, 0.03470657393336296, -0.011339427903294563, -0.019355589523911476, 0.01304972730576992, -0.042548924684524536, 0.0016190491151064634, -0.0054368069395422935, -0.016755377873778343, -0.02668345905840397, 0.007654634770005941, -0.00806482881307602, 0.01491993386298418, -0.01764529012143612, 0.011944289319217205, 0.012417055666446686, 0.0034223380498588085, -0.009323220700025558, -0.016588518396019936, -0.024903634563088417, 0.0013383444165810943, -0.007265298627316952, 0.01346687413752079, 0.016421660780906677, -0.02427791617810726, 0.003349337261170149, 0.010512087494134903, 0.0059373825788497925, -0.027823660522699356, -0.001353987492620945, 0.04710972309112549, 0.005064851604402065, -0.01292458362877369, 0.02056531421840191, 0.007578158285468817, 0.04302169010043144, 0.00462337164208293, 0.009510936215519905, 0.0016425136709585786, -0.01208333857357502, -0.007307013031095266, 0.004560799803584814, -0.013842305168509483, 0.013703256845474243, -0.02067655324935913, 0.002735784510150552, -0.005760095547884703, -0.026725174859166145, -0.010998757556080818, 0.013626779429614544, -0.012389245443046093, -0.013626779429614544, -0.015921084210276604, -0.0144471675157547, 0.01048427727073431, 0.004456513095647097, 0.01075542252510786, 0.018243199214339256, 0.030868828296661377, -0.026822509244084358, -0.001501726801507175, 0.0144471675157547, 0.007953589782118797, -0.01668585278093815, -0.015267555601894855, -0.001611227635294199, -0.009823795408010483, 0.03225931525230408, -0.043828174471855164, -0.007897970266640186, -0.04663695767521858, -0.003507505403831601, 0.015879370272159576, -0.005843524821102619, 0.02429182082414627, 0.007383489981293678, 0.0022925666999071836, 0.013744971714913845, -0.018702059984207153, 0.01075542252510786, 0.0023064715787768364, -0.007446061819791794, 0.01450278703123331, 0.008099591359496117, 0.003914223052561283, -0.012145910412073135, -0.02668345905840397, -0.012243244796991348, 0.010790185071527958, -0.03278769925236702, -0.007508633658289909, 0.0033076226245611906, 0.009406649507582188, -0.03773783892393112, -0.03640297055244446, -0.038516510277986526, -0.01929996907711029, -0.025765737518668175, -0.00805092416703701, 0.003149454714730382, -0.003505767323076725, 0.005332520697265863, 0.00903121754527092, -0.00663262652233243, 0.002791404025629163, -0.004324417095631361, -0.006900295615196228, -0.012743820436298847, -0.021441321820020676, -0.03287113085389137, -0.023707816377282143, -0.0003671756712719798, 0.029645198956131935, 0.008836549706757069, -0.04168682172894478, -0.012868964113295078, 0.0017433239845559, -0.027420418336987495, 0.008419402875006199, -0.005433330778032541, 0.015225840732455254, 0.030618539080023766, -0.0009229362476617098, 0.003431028453633189, 0.03587458282709122, 0.005384663585573435, -0.0012001647846773267, -0.011895623058080673, -0.03670887649059296, -0.020634837448596954, -0.034150380641222, 0.013209633529186249, -0.006479673087596893, -0.015406603924930096, 0.010463420301675797, 0.00790492258965969, 0.006955915130674839, 0.004672038834542036, 0.0030868828762322664, 0.012076386250555515, -0.00889216922223568, 0.004967517219483852, -0.021413510665297508, -0.020634837448596954, -0.02362438663840294, 0.009267601184546947, -0.029478339478373528, 0.009427506476640701, 0.043132930994033813, 0.004824992269277573, -0.004039366729557514, -0.006531815975904465, 0.0036013631615787745, -0.020356740802526474, 0.0053116632625460625, -0.01984225958585739, -0.017881672829389572, -0.0013418206945061684, 0.002134398790076375, 0.02221999317407608, 0.0016911807470023632, -0.010943138040602207, 0.01943901926279068, 0.003910746891051531, -0.011123902164399624, -0.02775413542985916, 0.001977968728169799, -0.04502399265766144, -0.0010107107227668166, 0.017172522842884064, -0.02095464989542961, 0.003410171251744032, 0.004991850815713406, -0.0015660368371754885, -0.021343987435102463, -0.003761269384995103, 0.028838716447353363, -0.007897970266640186, -0.04238206520676613, 0.0025828310754150152, 0.025863071903586388, 0.005589760839939117, -0.005958240013569593, -0.00232906686142087, -0.01820148527622223, -0.006145955994725227, -0.022428566589951515, 0.004970993846654892, -0.036013633012771606, 0.028783096000552177, -0.014189926907420158, -0.006239813752472401, -0.030312633141875267, 0.01943901926279068, 0.0038273173850029707, 0.011346380226314068, 0.01457231119275093, 0.24962036311626434, -0.015114601701498032, -0.003260693745687604, 0.019411208108067513, -0.0010784970363602042, 0.008850454352796078, 0.014127355068922043, 0.012229339219629765, 0.011548000387847424, 0.028977764770388603, -0.030034534633159637, -0.01971711590886116, 0.0058470009826123714, -0.002336019417271018, 0.004366131499409676, -0.022609330713748932, -0.04240987449884415, -0.023860769346356392, -0.03651420772075653, -0.0007825838983990252, 0.031730931252241135, -0.0012679509818553925, -0.0047554681077599525, -0.00805092416703701, 0.03885022923350334, 0.004112367518246174, -0.004466942045837641, 0.0344562865793705, 0.026711270213127136, 0.018257103860378265, -0.02803223207592964, 0.011680097319185734, 0.019355589523911476, -0.008377688936889172, 0.012389245443046093, -0.012194577604532242, 0.0021587321534752846, 0.016477279365062714, 0.017116904258728027, 0.011520191095769405, -0.015267555601894855, 0.013001060113310814, 0.00028809168725274503, -0.022970857098698616, -0.01636604033410549, -0.017436716705560684, -0.001466095563955605, -0.002542854519560933, -0.0031581453513354063, -0.007592062931507826, -0.013598970137536526, 0.00704629672691226, 0.0571768544614315, 0.0355408675968647, -0.007689397316426039, 0.000740869261790067, 0.007244441192597151, -0.012465722858905792, 0.012132005766034126, 0.03184216842055321, -0.004536466207355261, 0.04989070072770119, -0.015323175117373466, -0.0029721674509346485, -0.017283761873841286, 0.009469221346080303, 0.010227037593722343, 0.04293826222419739, 0.014530597254633904, -0.02903338335454464, -0.013306967914104462, 0.013216585852205753, -0.014586216770112514, -0.015934988856315613, -0.013494683429598808, -0.03289894014596939, 0.024486489593982697, -0.002925238572061062, 0.03679230436682701, 0.03581896424293518, 0.028949955478310585, -0.016505088657140732, 0.0020440169610083103, -0.00406717648729682, -0.020509693771600723, -0.02137179672718048, 0.0052004242315888405, 0.005753143224865198, 0.006622198037803173, -0.0010289609199389815, -0.0021083271130919456, -0.016046227887272835, -0.01612965762615204, -0.01817367412149906, -0.007536443416029215, 0.012118100188672543, -0.0026036882773041725, 0.020370645448565483, -0.01667194813489914, 0.0109709482640028, -0.02721184492111206, 0.005356853827834129, 0.03011796437203884, -0.001647727913223207, -0.012743820436298847, 0.02625240758061409, 0.013341729529201984, 0.0005770524148829281, 0.007230536080896854, -0.018145864829421043, -0.00017880802624858916, -0.03278769925236702, 0.013397349044680595, -0.00521432887762785, -0.014280308969318867, 0.02914462238550186, -0.005009232088923454, -0.01916092075407505, 0.003935080487281084, 0.011624477803707123, 0.028435474261641502, -0.025167828425765038, -0.0034936005249619484, 0.00038108055014163256, -0.007710254285484552, -0.017714813351631165, 0.007932732813060284, -0.021051984280347824, -0.014544501900672913, -0.026488792151212692, 0.02082950621843338, -0.012959346175193787, 0.0021204939112067223, -0.012938488274812698, 0.005895668175071478, 0.016310421749949455, 0.0008751382119953632, -0.0042653209529817104, -0.012062480673193932, 0.028838716447353363, -0.002089207759127021, 0.003460576292127371, -0.002480282448232174, 0.005676666274666786, -0.0017311571864411235, -0.015907179564237595, 0.008099591359496117, -0.0006192015716806054, 0.0031355498358607292, -0.01875768043100834, -0.04391160234808922, 0.004404369741678238, -0.014655740931630135, -0.00015414859808515757, 0.022873522713780403, -0.003015620168298483, -0.018090246245265007, -0.04499618336558342, 0.002631498035043478, 0.03954547271132469, -0.02778194472193718, -0.005408997181802988, 0.025070494040846825, -0.009309315122663975, -0.009281505830585957, -0.009740366600453854, -0.17809367179870605, 0.003410171251744032, 0.010421705432236195, -0.023638291284441948, 0.03134159371256828, -0.002944357693195343, 0.02320723980665207, 0.0030416918452829123, -0.028254710137844086, -0.017158618196845055, 0.011096091940999031, 0.004011556971818209, -0.023832960054278374, -0.015114601701498032, -0.018980158492922783, 0.01902187243103981, -0.04488494247198105, 0.0205514095723629, 0.0550076961517334, 0.02124665305018425, 0.04902859777212143, -0.02484801597893238, 0.002942619612440467, 0.014683550223708153, 0.013918782584369183, 0.008579309098422527, -0.006476196460425854, -0.02790708839893341, -0.0019814451225101948, -0.01999521441757679, -0.008196924813091755, 0.0060833836905658245, 0.007710254285484552, 0.017422812059521675, 0.01928606443107128, -0.025098303332924843, -0.006521387491375208, 0.007633777800947428, -0.0040984624065458775, -0.0005444628768600523, -0.0007947506383061409, 0.021038079634308815, 0.01834053359925747, 0.01021313201636076, -0.01835443824529648, 0.0179233867675066, -0.005697523709386587, -0.0030416918452829123, 0.00943445973098278, 0.011123902164399624, -0.005370758939534426, -0.04054662212729454, -0.03111911565065384, -0.012799439951777458, 0.021844562143087387, 0.010852756910026073, -0.013598970137536526, 0.01695004478096962, -0.004227082710713148, 0.0203984547406435, -0.004425227176398039, -0.03470657393336296, 0.013272205367684364, 0.01019922737032175, -0.005280377343297005, -0.005322091747075319, -0.010609421879053116, 0.02861623838543892, -0.00987246260046959, -0.002038802718743682, 0.0023394955787807703, -0.039934806525707245, -0.0012740343809127808, -0.02292914316058159, 0.006364957429468632, -0.005137852393090725, -0.021997515112161636, 0.03109130635857582, 0.028282521292567253, -0.006517911329865456, 0.007571205962449312, 0.03376104310154915, -0.010032368823885918, 0.00406717648729682, 0.012542199343442917, 0.016338231042027473, -0.006987201049923897, 0.011207330971956253, -0.028644047677516937, -0.003450147807598114, 0.03932299464941025, -0.0414087250828743, 0.002483758609741926, -0.0026367122773081064, 0.025028780102729797, 0.010532944463193417, -0.008287306874990463, 0.0003033001266885549, -0.024959255009889603, -0.016324326395988464, 0.019397303462028503, -0.015198031440377235, -0.019800545647740364, 0.005353377666324377, 0.03512372076511383, 0.013216585852205753, -0.03292674943804741, 0.014697455801069736, 0.027962708845734596, 7.028481195447966e-05, -0.021691609174013138, 0.0144471675157547, 0.014189926907420158, 0.01817367412149906, 0.027267465367913246, -0.006403196137398481, -0.011207330971956253, 0.01012970320880413, -0.004745039623230696, 0.017102999612689018, -0.01389097236096859, -0.029645198956131935, 0.027531657367944717, 0.03740411996841431, 0.0013957020128145814, -0.026280218735337257, -0.06652093678712845, -0.03234274312853813, 0.012771629728376865, 0.021274462342262268, -0.007480823900550604, 0.02693374827504158, 0.008857406675815582, 0.012215434573590755, -0.008634928613901138, 0.010498182848095894, -0.01626870594918728, -0.01779824309051037, 0.006510959006845951, 0.00038477402995340526, 0.0034744811709970236, 0.021302271634340286, 0.0313694030046463, -0.000889477611053735, 0.011200378648936749, 0.020370645448565483, -0.02472287230193615, -0.03598582372069359, 0.007286155596375465, -0.005947811529040337, -0.021191032603383064, 0.0014139522099867463, 0.002464639488607645, 0.0017746100202202797, -0.004348750226199627, 0.026141170412302017, 0.029895486310124397, -0.0036986973136663437, 0.008043971844017506, -0.0054785218089818954, -0.0019188730511814356, -0.0019119206117466092, -0.008857406675815582, -0.02512611262500286, 0.025445925071835518, 0.006736913230270147, 0.009649984538555145, -0.015406603924930096, -0.002629759954288602, -0.01250743679702282, -0.023819055408239365, -0.004522561561316252, -0.012702105566859245, 0.030896637588739395, 0.002315161982551217, -0.013035822659730911, -0.05322787165641785, -0.013418206945061684, -0.010324371047317982, -0.016699757426977158, 0.02372172102332115, 0.020454075187444687, 0.01914701610803604, -1.9730259737116285e-05, -0.03848870098590851, 0.006681293714791536, 9.467265772400424e-05, 0.0049779461696743965, -0.0015251912409439683, 0.017158618196845055, -0.011262950487434864, 0.006931581534445286, -0.035207148641347885, -0.04129748418927193, 0.021302271634340286, 0.011436761356890202, -0.01943901926279068, 0.010240942239761353, -0.013501635752618313, 0.03526276722550392, -0.03253741189837456, -0.013341729529201984, -0.0056940470822155476, -0.011652287095785141, 0.01626870594918728, 0.030729778110980988, -0.03042387217283249, -0.009580460377037525, 0.019466828554868698, 0.016838805750012398, 0.019911784678697586, 0.01747843064367771, -0.005096137523651123, 0.010303514078259468, 0.002351662376895547, -0.023304574191570282, -0.016866616904735565, 0.0033771470189094543, -0.008196924813091755, -0.008092639036476612, -0.021580370143055916, -0.01807633973658085, 0.020467979833483696, 0.007307013031095266, 0.012444864958524704, 0.025779642164707184, -0.02317943051457405, -0.03834965080022812, -0.09421944618225098, 0.01667194813489914, 0.009941987693309784, -0.014766979962587357, 0.008037019520998001, 0.00923283863812685, 0.004216654226183891, 0.0017763481009751558, 0.0018806346924975514, -0.021079793572425842, -0.030590729787945747, 0.038405273109674454, -0.018521295860409737, -0.02110760472714901, -0.022192183881998062, -0.0024194486904889345, 0.029506150633096695, 0.01764529012143612, 0.024917541071772575, 0.021038079634308815, -0.01105437707155943, -0.0120138144120574, 0.00388988945633173, 0.007863207720220089, -0.006542244926095009, 0.00903121754527092, 0.003224193351343274, 0.006198098883032799, 0.004939707461744547, -0.02512611262500286, 0.013835352845489979, 0.014120402745902538, -0.0008916502702049911, -0.0048875645734369755, -0.0238746739923954, 0.015879370272159576, 0.010692850686609745, 0.0219418965280056, 0.0254181157797575, 0.03567991405725479, -0.013230490498244762, -0.026822509244084358, 0.025584975257515907, 0.0032085503917187452, -0.010227037593722343, 0.003371932776644826, -0.0036639352329075336, 0.005940858740359545, 0.025904785841703415, 0.013279157690703869, 0.01491993386298418, 0.011638382449746132, 0.010678946040570736, 0.0048875645734369755, -0.020509693771600723, -0.05247700586915016, -0.007877113297581673, 0.00634757662191987, -0.012660390697419643, -0.02970081754028797, 0.05634256452322006, 0.018841108307242393, 0.008954741060733795, -0.010108846239745617, 0.007195774000138044, -0.018646441400051117, -0.01611575298011303, -0.020078642293810844, 0.008363783359527588, -0.02206704020500183, -0.025348590686917305, -0.010338276624679565, 0.0024124961346387863, 0.0038655558601021767, 0.022678855806589127, -0.011436761356890202, -0.014739169739186764, -0.0031390259973704815, -0.01875768043100834, 0.016185278072953224, -0.007404347416013479, 0.014419358223676682, -0.013904877007007599, 0.004995326977223158, 0.020231597125530243, 0.0037925553042441607, 0.003914223052561283, -0.011429809033870697, -0.03028482384979725, 0.0007061070646159351, -0.03843308240175247, 0.015045077539980412, 0.0120138144120574, 0.012868964113295078, 0.011923432350158691, 0.03317703679203987, 0.04485713317990303, -0.007738064043223858, 0.011624477803707123, 0.016185278072953224, 0.0020666124764829874, 0.008009209297597408, -0.0027514277026057243, -0.0355408675968647, 0.006375386379659176, 0.00500227976590395, -0.007842350751161575, -0.038127172738313675, -0.0009976750006899238, 0.003484909888356924, -0.0330657996237278, 0.009907225146889687, 0.003723030909895897, 0.010727613233029842, -0.030868828296661377, 0.006622198037803173, -0.023846864700317383, -0.02986767701804638, -0.036013633012771606, 0.012410103343427181, 0.023805150762200356, 0.024500394240021706, 0.018715964630246162, -0.029756437987089157, 0.045218661427497864, -0.020384550094604492, 0.03025701269507408, -0.03679230436682701, 0.015086792409420013, -0.011388094164431095, -0.006497053895145655, 0.028977764770388603, -0.027851469814777374, -0.032148078083992004, -0.01820148527622223, -0.00020053439948242158, -0.0007360894232988358, -0.011853908188641071, -0.016991760581731796, 0.08648833632469177, 0.02429182082414627, 0.011228188872337341, -0.001538227079436183, 0.005335996858775616, -0.006577007006853819, -0.011645334772765636, 0.024375250563025475, -0.0006031240336596966, -0.006243289913982153, 0.04015728458762169, -0.0009594365255907178, 0.016338231042027473, -0.019522447139024734, 0.01971711590886116, -0.011005710810422897, -0.011874765157699585, 0.028240805491805077, -0.02914462238550186, 0.010602468624711037, 0.051336806267499924, 0.0037682217080146074, 0.010581611655652523, 0.009330173023045063, -0.02928367257118225, -0.014252499677240849, 0.03551305830478668, 0.018549107015132904, 0.002263018861413002, -0.0019240874098613858, 0.016713662073016167, -0.007300060708075762, -0.006225908640772104, -0.03264865279197693, 0.009990653954446316, 0.015350984409451485, -0.017408907413482666, 0.010067131370306015, 0.032565221190452576, 0.006239813752472401, 0.006743865553289652, 0.01612965762615204, -0.034150380641222, -0.01682490110397339, -0.004473894368857145, -0.006156384479254484, -0.0034014806151390076, -0.0012357960222288966, -0.020217692479491234], "6055200f-29d8-477f-ac6b-e4bede10878a": [-0.010989170521497726, -0.03168410435318947, -0.014478432945907116, -0.04034709930419922, -0.016269855201244354, 0.01234610565006733, -0.029384667053818703, -0.03090871311724186, 0.008161664940416813, 0.013342082500457764, 0.011797984130680561, 0.004084174521267414, -0.024411465972661972, -0.012894227169454098, -0.014558645896613598, -0.017553260549902916, 0.002286068396642804, -0.013322029262781143, 0.02799431048333645, -0.011884881183505058, 0.012740486301481724, -0.010668318718671799, 0.003123290603980422, -0.03050764836370945, -0.013970417901873589, -0.00272389710880816, 0.010427679866552353, -0.01895698718726635, -0.002899362938478589, 0.0038970112800598145, 0.01606932282447815, 0.01695166528224945, -0.010420995764434338, -0.019251100718975067, -0.00597252044826746, 5.6608598242746666e-05, 0.00864962674677372, 0.011203072033822536, 0.01503992360085249, 0.013114812783896923, 0.02597561851143837, 0.007473170757293701, 0.011584082618355751, 0.019104044884443283, -0.034438081085681915, 0.007005262188613415, -0.01727251708507538, 0.0012491492088884115, -0.00030790065648034215, 0.01974574849009514, -0.0036162659525871277, 0.0026219598948955536, -0.03663056716322899, -0.004675745032727718, 0.01054131519049406, 0.014358113519847393, -0.0026403421070426702, 0.0012232470326125622, -0.013181657530367374, -0.022125398740172386, 0.012606797739863396, -0.019892804324626923, -0.025868667289614677, -0.008683049120008945, 0.004598874133080244, 0.01419768761843443, -0.0007507428526878357, 0.002207526471465826, -0.013863466680049896, 0.006417033728212118, 0.007807391230016947, 0.01691155880689621, -0.008108189329504967, 0.003495946526527405, 0.030641335994005203, 0.011584082618355751, -0.025467602536082268, 0.020868729799985886, 0.009685710072517395, 0.00884347502142191, -0.004288049414753914, -0.021256424486637115, -0.012620166875422001, -0.016229748725891113, 0.02098904922604561, 0.006971839815378189, -0.023823238909244537, 0.009197748266160488, 0.018342021852731705, -0.030186796560883522, 0.0046189273707568645, 0.029197504743933678, -0.009378227405250072, 0.016363436356186867, -0.0006354367360472679, 0.021577276289463043, -0.01732599176466465, 0.008068082854151726, -0.032780349254608154, -0.036924682557582855, -0.014879497699439526, 0.013823360204696655, -0.009485178627073765, -0.0009425018797628582, -0.05652337521314621, -0.016336698085069656, 0.03419744223356247, -0.0098862424492836, 0.008963794447481632, -0.019986387342214584, -0.020815253257751465, 0.024545155465602875, -0.009331436827778816, -0.04663044586777687, -0.033582478761672974, 0.023729655891656876, 0.03425091877579689, -0.004181098658591509, -0.029919421300292015, -0.004568794276565313, 0.009585444815456867, 0.010514577850699425, 0.009191064164042473, 0.010461102239787579, 0.01820833422243595, 0.034037016332149506, 0.003983908332884312, -0.014625489711761475, 0.0035828438121825457, -0.02716544270515442, 0.044357746839523315, -0.009211117401719093, 0.024251040071249008, 0.004532030317932367, -0.020761778578162193, -0.007205794099718332, -0.015574675984680653, -0.0017930930480360985, -0.024050507694482803, -0.0035995549988001585, 0.022887421771883965, 0.017432941123843193, 0.003036393318325281, -0.01008009072393179, 0.019973017275333405, 0.008362197317183018, -0.004779353272169828, 0.008810052648186684, -0.009338120929896832, 0.013596090488135815, -0.012232471257448196, -0.013248501345515251, -0.010253885760903358, -0.021149473264813423, -0.019264470785856247, 0.007306060288101435, 0.018823299556970596, -0.010795322246849537, 0.01727251708507538, -0.015013185329735279, 0.002688803942874074, 0.020882098004221916, 0.01364956609904766, -0.02887665294110775, 0.007359535899013281, 0.04245937243103981, 0.02761998400092125, 0.008870212361216545, -0.011390235275030136, 0.004892988130450249, 0.003950486425310373, 0.004886304028332233, -0.02228582464158535, 0.008435726165771484, -0.008068082854151726, 0.017125459387898445, -0.012031938880681992, 0.007272638380527496, -0.0016151206800714135, 0.011871512979269028, -0.009137588553130627, 0.001206536078825593, 0.010681687854230404, 0.022887421771883965, -0.013108128681778908, -0.015414250083267689, 0.005163706839084625, -0.00947180949151516, 0.011416972614824772, -0.01091564167290926, 0.01423779409378767, 0.045106399804353714, 0.006971839815378189, -0.0013920284109190106, -0.5967841744422913, -0.01850244775414467, 0.017887482419610023, -0.0019702299032360315, 0.02017354965209961, 0.014304637908935547, 0.0020788516849279404, 0.022579938173294067, -0.029037078842520714, 0.014772546477615833, 0.004879619460552931, 0.007900972850620747, -0.002941140439361334, -0.005434425547719002, 0.00031270505860447884, -0.02847558818757534, 0.02390345185995102, -0.00534418597817421, -0.016697656363248825, 0.0386626273393631, -0.009612182155251503, 0.028315162286162376, -0.0009750883327797055, 0.010695056058466434, 0.004134307615458965, 0.015213717706501484, 0.0024381387047469616, -0.0222189798951149, 0.0075868056155741215, 0.04855555668473244, -0.020039862021803856, 0.004495265893638134, 0.006313425488770008, -0.0006287523428909481, 0.04114922881126404, -0.013268554583191872, -0.03398354351520538, 0.017860744148492813, -0.007392957806587219, 0.05104215815663338, -0.009839451871812344, -0.01612279750406742, 0.032780349254608154, 0.0190238319337368, 0.009224486537277699, 0.02022702619433403, 0.00485956622287631, -0.03475893288850784, 0.008168349042534828, 0.01260011363774538, 0.0013134866021573544, -0.01894361898303032, 0.01568162627518177, -0.000230194375035353, 0.00012303492985665798, 0.01820833422243595, 0.03997277468442917, -0.025267070159316063, 0.004130965564399958, -0.025226963683962822, -0.019892804324626923, 0.006761280819773674, -0.002276041777804494, -0.0027823857963085175, -0.012894227169454098, 0.013288607820868492, 0.006734543479979038, -0.009966455399990082, -0.004538714420050383, -0.03561453893780708, 0.007372904568910599, -0.0018398839747533202, 0.00045495768426917493, -0.0076269120909273624, 0.026189519092440605, 0.05403677374124527, 0.017874112352728844, -0.0076135434210300446, 0.0361492894589901, 0.014785915613174438, 0.009037322364747524, 0.007225847337394953, 0.0017914219060912728, -0.003780034137889743, -0.016162903979420662, -0.018823299556970596, -0.047619737684726715, -0.010267253965139389, 0.007787337992340326, 0.018903512507677078, 0.012546638026833534, 0.010233832523226738, 0.00993303395807743, -0.026911435648798943, 0.011577398516237736, 0.009779292158782482, -0.014879497699439526, 0.004665718413889408, -1.574491943756584e-05, -0.007914341986179352, -0.027940835803747177, 0.01564151979982853, 0.004378288518637419, -0.0016669247997924685, 0.01938479021191597, -0.03007984720170498, -0.029464880004525185, 0.012292630970478058, 0.035668011754751205, 0.00868973322212696, -0.018342021852731705, -0.02893012762069702, -0.03513326123356819, -0.00907074473798275, 0.015186980366706848, -0.028529062867164612, 0.016309961676597595, 0.0076937563717365265, 0.0047559579834342, -0.009592128917574883, 0.013716409914195538, -0.002727239392697811, 0.007459802087396383, -0.0018632793799042702, 0.0010327413910999894, 0.023743025958538055, 0.03545411303639412, -0.019090676680207253, -0.030721548944711685, 0.018248440697789192, -0.00867636501789093, -0.004298076033592224, 0.01649712398648262, -0.008288668468594551, -0.007566752377897501, -0.0084424102678895, 0.0026587240863591433, -0.010634896345436573, 0.022579938173294067, 0.0009316396899521351, -0.0026670796796679497, 0.002932785078883171, -0.010053353384137154, 0.010441049002110958, 0.011049330234527588, -0.024852637201547623, -0.008756577037274837, -0.003425760194659233, -0.016176272183656693, 0.006878258194774389, 0.01903720013797283, -0.012112151831388474, 0.0025467602536082268, 0.02180454693734646, 0.0008434890187345445, 0.0008489200845360756, -0.014277900569140911, -0.0006822276045568287, 0.01401052437722683, -0.017112091183662415, 0.0024682185612618923, -0.01234610565006733, -0.01934468373656273, 0.0024164142087101936, -0.02270025759935379, -0.029518356546759605, -0.014117474667727947, 0.006457140203565359, -0.01463885884732008, -0.028662750497460365, -0.006747912149876356, -0.005594851449131966, 0.0008200936135835946, 0.022446250542998314, 0.0025300492998212576, 0.00030790065648034215, -0.008168349042534828, 0.0012115493882447481, 0.020093336701393127, -0.0065574063919484615, -0.008148295804858208, -0.0032402679789811373, 0.0055313496850430965, 0.0002721808268688619, 0.02350238710641861, 0.008576098829507828, 0.043101076036691666, 0.014531907625496387, -0.014063999056816101, -0.0012382869608700275, -0.011276599951088428, 0.02181791514158249, 0.014157581143081188, 0.011089436709880829, 0.032860562205314636, 0.008576098829507828, 0.02481253072619438, 0.026577215641736984, -0.00890363473445177, 0.024157458916306496, 0.029946157708764076, 0.015133504755795002, 0.01818159595131874, -0.038983479142189026, 0.010594789870083332, -0.0019234390929341316, 0.009525285102427006, -0.00864962674677372, 0.004578820895403624, 0.0027539769653230906, -0.0016343382885679603, -0.02676437795162201, -0.008475832641124725, 0.00323859672062099, 0.014772546477615833, 0.008703102357685566, 0.0012366159353405237, -0.007727178279310465, -0.009251223877072334, 0.016684288159012794, 0.0015766852302476764, 0.00370650552213192, 0.006884942762553692, -0.02600235678255558, 0.0007135607884265482, 0.002979575889185071, 0.005417714361101389, 0.010387573391199112, -0.0029311138205230236, -0.022352667525410652, -0.009638919495046139, 0.0075065926648676395, -0.008917002938687801, 0.01647038757801056, 0.04772669076919556, -0.02887665294110775, 0.024210933595895767, -0.02518685720860958, 0.0018081329762935638, 0.004478554707020521, 0.015307299792766571, 0.02509327605366707, -0.007473170757293701, -0.01156402938067913, 0.013281923718750477, 0.026938173919916153, 0.06876921653747559, 0.022553199902176857, -0.017098721116781235, 0.017874112352728844, -0.024010401219129562, -0.0019301234278827906, -0.05160364881157875, 0.018489079549908638, 0.011076067574322224, -0.017606737092137337, -0.008007923141121864, 0.009217801503837109, 0.02884991466999054, 0.0247323177754879, 0.01608269102871418, 0.03179105371236801, 0.0027422793209552765, 0.0065607489086687565, -0.0010060037020593882, -0.03352900221943855, -0.009999877773225307, -0.02554781548678875, -0.002150709042325616, -0.029865944758057594, -0.01973237842321396, -0.00986618921160698, 0.003231912385672331, -0.017232410609722137, 0.013308661058545113, -0.010180356912314892, 0.015815313905477524, 0.006858204957097769, 0.002037073951214552, -0.025053169578313828, -0.014732440002262592, -0.02965204417705536, 0.037780288606882095, -0.007941079325973988, 0.0027873991057276726, -0.006747912149876356, -0.017620105296373367, -0.0010001548798754811, -0.008896949701011181, 0.0026152755599468946, -0.00929801445454359, -0.0033956803381443024, 0.00527065759524703, 0.012399581260979176, -0.016376804560422897, -0.019157519564032555, 0.012038622982800007, -0.018275177106261253, 0.009244539774954319, -0.028555801138281822, 0.016577336937189102, 0.016670919954776764, -0.02962530590593815, -0.027539771050214767, 0.049705274403095245, 0.013268554583191872, 0.009378227405250072, -0.019612058997154236, 0.017633473500609398, -0.018342021852731705, -0.0030163400806486607, -0.007399642374366522, -0.013255185447633266, -0.02354249358177185, -0.013047968968749046, -0.00536423921585083, 0.0005594015819951892, -0.011904934421181679, 0.04195135831832886, 0.006243239156901836, -0.009792661294341087, -0.015414250083267689, -0.0010761900339275599, -0.01647038757801056, -0.0024347964208573103, -0.008315406739711761, 0.014692333526909351, -0.002371294656768441, -0.029090553522109985, -0.001801448524929583, -0.008796683512628078, -0.020320607349276543, 0.001102927722968161, -0.015374143607914448, 0.009171010926365852, 0.0010218792594969273, 0.031149351969361305, -0.004007304087281227, 0.021644121035933495, 0.016978401690721512, -0.006096182391047478, -0.0046590338461101055, 0.028582537546753883, -0.01568162627518177, 0.03454503417015076, 9.984838106902316e-05, 0.0027138704899698496, -0.003378969384357333, 0.001126323128119111, -0.013235132209956646, 0.008896949701011181, 0.02101578563451767, 0.012399581260979176, -0.012780592776834965, 0.004562110174447298, 0.007165687624365091, -0.007366220001131296, 0.03387659043073654, 0.011076067574322224, 0.028689488768577576, 0.000303096225252375, 0.06417033821344376, -0.007265953812748194, 0.008195087313652039, 0.0086295735090971, 0.021751070395112038, 0.013515877537429333, -0.009144273586571217, -0.0066643571481108665, 0.008582782931625843, -0.008342144079506397, 0.0056516691111028194, -0.012633535079658031, -0.02351575531065464, 0.029438143596053123, 0.0015992451226338744, -0.05395656079053879, -0.0019150834996253252, -0.004562110174447298, 0.01402389258146286, -0.03224559500813484, -0.02143021859228611, 0.014625489711761475, 0.01612279750406742, 0.029411405324935913, -0.0040407259948551655, -0.019170889630913734, -0.014745809137821198, -0.007185740862041712, -0.011116174049675465, -0.013061338104307652, -0.006587486248463392, -0.03681773319840431, -0.011296653188765049, 0.012867489829659462, -0.044812288135290146, -0.039304330945014954, -0.0029428116977214813, 0.019932910799980164, 0.029518356546759605, 0.02351575531065464, 0.00210558925755322, -0.015882158651947975, 0.048020802438259125, -0.009598813019692898, -0.030614599585533142, -0.005548060405999422, -0.012473109178245068, 0.011370182037353516, 0.0029545093420892954, 0.01935805194079876, -0.017566630616784096, -0.02641678974032402, 0.03219211846590042, 0.017446311190724373, 0.014545276761054993, 0.007794022560119629, -0.007974501699209213, -0.012292630970478058, 0.00731942942366004, -0.016737762838602066, 0.004097543656826019, 0.0035594485234469175, 0.010394258424639702, 0.008983847685158253, -0.047646477818489075, -0.0017346044769510627, -0.006724516861140728, -0.0371653214097023, -0.0043682618997991085, 0.022753732278943062, 0.014170950278639793, -0.010828744620084763, 0.0014831034932285547, 0.039758872240781784, 0.00232116156257689, 0.00820845551788807, 0.012920965440571308, 0.03393006697297096, 0.012640220113098621, -0.009552022442221642, 0.0024114008992910385, -0.016376804560422897, 0.014264531433582306, 0.010066721588373184, -0.027406081557273865, 0.03545411303639412, 0.011811353266239166, 0.015334037132561207, 0.01135681290179491, -0.006607539486140013, -0.045106399804353714, -0.035668011754751205, 0.015347406268119812, -0.003425760194659233, 0.017432941123843193, 0.015547938644886017, -0.031095877289772034, -0.017018508166074753, 0.014331375248730183, -0.020333975553512573, 0.02106926217675209, -0.010701741091907024, -0.015106767416000366, -0.009237854741513729, 0.0013686330057680607, 0.0061897640116512775, -0.012626850977540016, -0.02108263038098812, -0.027432819828391075, -0.015868790447711945, 0.015293930657207966, 0.006925049237906933, 0.020374082028865814, 0.031042400747537613, 0.010414311662316322, -0.048475343734025955, -0.00764028076082468, 0.03267339617013931, -0.026938173919916153, -0.010213779285550117, 0.007633596658706665, 0.019932910799980164, 0.024852637201547623, 0.013362135738134384, 0.01819496415555477, 0.0067412275820970535, -0.017847375944256783, 0.01278727687895298, 0.005761961452662945, -0.01110948994755745, 0.0067846765741705894, -0.008295353502035141, 0.0034758932888507843, 0.0008434890187345445, 0.00464232312515378, 0.005698459688574076, 0.0067445700988173485, -0.024852637201547623, 0.04080164059996605, -0.0031834503170102835, 0.009237854741513729, 0.00927796121686697, -0.04245937243103981, -0.027833884581923485, 0.0005848858854733407, 0.008302037604153156, -0.0038268249481916428, -4.699976125266403e-05, -0.007346166763454676, 0.003990592900663614, -0.0038335092831403017, 0.01771368645131588, 0.032753609120845795, 0.025240333750844002, -0.019104044884443283, -0.00884347502142191, -0.009638919495046139, 0.008970478549599648, -0.008957109414041042, -0.0035159997642040253, -0.02637668326497078, 0.0018031196668744087, 0.005110231693834066, 0.014852759428322315, 0.013241817243397236, -0.012814014218747616, 0.02346228063106537, -0.020547877997159958, 0.031924743205308914, 0.019491739571094513, -0.028555801138281822, -0.01052126195281744, -0.0065975128673017025, -0.03550758585333824, -0.020922204479575157, 0.01465222705155611, -0.02346228063106537, -0.007519961800426245, 0.0057953838258981705, -0.01358272135257721, -0.0015666586114093661, -0.011156280525028706, -0.0021523800678551197, -0.005310764070600271, -0.005815437063574791, 0.049732010811567307, 0.01894361898303032, 0.038983479142189026, 0.04157703369855881, 0.02514675073325634, 0.011724455282092094, -0.03283382207155228, -0.01610942929983139, -0.0034692089539021254, 0.029571831226348877, 0.03379637748003006, -0.024224303662776947, -0.019638797268271446, -0.017927588894963264, 0.008415672928094864, -0.027005016803741455, -0.02553444728255272, 0.023809868842363358, 0.022005079314112663, -0.019946280866861343, -0.013255185447633266, 0.027513032779097557, -0.028315162286162376, 0.015521200373768806, -0.032780349254608154, -0.014117474667727947, -0.01054131519049406, -0.014104105532169342, -0.01110948994755745, 0.007921026088297367, -0.020039862021803856, 0.018448973074555397, -0.005875596776604652, 0.008054714649915695, -0.015427619218826294, 0.0045821634121239185, -0.054223936051130295, 0.01072847843170166, 0.010654949583113194, 0.02844884991645813, -0.008261931128799915, -0.011183018796145916, 0.022807208821177483, -0.0001832990674301982, 0.0006128768436610699, -0.012793960981070995, 0.006356874015182257, 0.04780690371990204, -0.001234944793395698, -0.02478579245507717, -0.018328653648495674, 0.019170889630913734, 0.010989170521497726, 0.0043314979411661625, 0.0031366595067083836, 0.013181657530367374, -0.02719218097627163, -0.019919542595744133, 0.013716409914195538, -0.02680448442697525, 0.01684471406042576, -0.018328653648495674, -0.0032586499582976103, -0.005421056877821684, -0.008796683512628078, 0.0045821634121239185, 0.018716348335146904, -0.028636014088988304, -0.01446506381034851, -0.019063938409090042, -0.008395619690418243, -0.009184380061924458, 0.009552022442221642, 0.003031380008906126, 0.0012608468532562256, 0.038555677980184555, -0.0197724848985672, 0.012566691264510155, -0.010641581378877163, 0.0177671629935503, -0.015481093898415565, -0.009879558347165585, -0.013535930775105953, -0.014906235039234161, 0.0345182940363884, -0.014491801150143147, -0.001075354521162808, -0.0197724848985672, 0.012920965440571308, 0.019571952521800995, -0.013890204951167107, 0.011470448225736618, 0.016817975789308548, 0.005771988071501255, 0.016269855201244354, -0.004037383943796158, -0.022940896451473236, -0.015440987423062325, 0.0017463022377341986, 0.019959649071097374, -0.002154051326215267, -0.000377251417376101, -0.014558645896613598, -0.009331436827778816, -0.0048428550362586975, 0.011657611466944218, -0.041443344205617905, -0.011136227287352085, -0.018275177106261253, -0.015146873891353607, -0.03189800679683685, -0.0008301202324219048, -0.026644058525562286, -0.010875535197556019, -0.02796757221221924, -0.00569177558645606, -0.013970417901873589, -0.0071389502845704556, -0.004638980608433485, 0.04569463059306145, -0.0024515073746442795, 0.013529246672987938, -0.010628212243318558, -0.019505109637975693, -0.0098862424492836, -0.005350870545953512, -0.01771368645131588, -0.034812409430742264, -0.018636135384440422, 0.060052741318941116, 0.001514854491688311, -0.02350238710641861, -0.02303447760641575, -0.019104044884443283, -0.02350238710641861, -0.00848251674324274, 0.007252585142850876, 0.027780409902334213, 0.03505304828286171, -0.007286007050424814, 0.00289267860352993, 0.029865944758057594, -0.020079968497157097, -0.0036129236686974764, 0.012259208597242832, -0.027860622853040695, -0.028288424015045166, -0.0021858022082597017, -0.020882098004221916, 0.002972891554236412, -0.019090676680207253, -0.015106767416000366, 0.013616143725812435, -0.011664295569062233, -0.0034859199076890945, 0.013930311426520348, 0.029892683029174805, -0.007392957806587219, -0.004247942939400673, -0.026563847437500954, -0.017834005877375603, 0.0005050907493568957, -0.01008009072393179, -0.021229686215519905, 0.017045246437191963, 0.019090676680207253, 0.006714490242302418, 0.006350189913064241, -0.005126942880451679, -0.0016452005365863442, -0.003850220236927271, 0.0009516929276287556, -0.02890338934957981, -0.001172278425656259, -0.011002539657056332, -0.013997155241668224, 0.027726933360099792, -0.012005200609564781, -0.014077368192374706, 0.009130904451012611, 0.0007636938826180995, 0.010701741091907024, -0.024157458916306496, 0.017513154074549675, -0.030641335994005203, 0.001378659624606371, 0.017045246437191963, -0.008068082854151726, -0.009799345396459103, 0.005367581266909838, 0.000800875888671726, -0.0328872986137867, -0.005912360735237598, 0.020547877997159958, -0.004478554707020521, -0.02517348900437355, 0.024558523669838905, 0.01856929250061512, 0.0028341899160295725, -0.0033188096713274717, -0.0009433373925276101, -0.017553260549902916, 0.00785418227314949, -0.03548084944486618, 0.022406144067645073, -0.03499957174062729, 0.006350189913064241, 0.004779353272169828, 0.019264470785856247, 0.007346166763454676, -0.0018114751437678933, 0.027887359261512756, -0.018007801845669746, 0.006356874015182257, 0.23721635341644287, -0.017232410609722137, -0.0009592128917574883, 0.025079907849431038, 0.0012675313046202064, 0.03056112304329872, 0.007473170757293701, 0.0005289039690978825, -0.011410288512706757, -0.004257969558238983, -0.02478579245507717, -0.014558645896613598, 0.0002001145330723375, -5.6765264162095264e-05, 0.0172591470181942, 0.009785976260900497, -0.010781954042613506, -0.028636014088988304, -0.029518356546759605, -0.014157581143081188, 0.019117413088679314, -0.0052138399332761765, -0.013997155241668224, -0.015427619218826294, 0.01505329180508852, 0.00905069150030613, -0.013876835815608501, 0.01767357997596264, 0.03299424797296524, -0.0028559144120663404, -0.03502630814909935, 0.012132205069065094, 0.010929010808467865, 0.002543418202549219, -0.006390296388417482, 2.4740151275182143e-05, 0.04002624750137329, 0.028769701719284058, 0.019571952521800995, -0.0031316461972892284, -0.02433125302195549, 0.009772608056664467, 0.003380640409886837, -0.03580170124769211, -0.020146813243627548, 0.013342082500457764, -0.014692333526909351, -0.0165104940533638, 0.005678406450897455, 0.009384912438690662, -0.031042400747537613, -0.00628000358119607, 0.03497283533215523, 0.03171084076166153, -0.011597451753914356, -0.00648722006008029, 0.02393018826842308, -0.010253885760903358, 0.02973225712776184, 0.02057461440563202, -0.010026615113019943, 0.03171084076166153, -0.017967695370316505, 0.001991954166442156, -0.027459558099508286, -0.0017229067161679268, -0.019224364310503006, 0.0339033305644989, 0.020293869078159332, -0.007172372192144394, 0.003019682364538312, 0.0003724469861481339, -0.0012282603420317173, -0.0030831843614578247, -0.021657489240169525, -0.04173745959997177, 0.04745931178331375, 0.003917064517736435, 0.03871610388159752, 0.028315162286162376, 0.020079968497157097, 2.6476531274965964e-05, 0.00493309460580349, 0.0002671675174497068, -0.022446250542998314, -0.016350068151950836, 0.002728910418227315, 0.0021891442593187094, -0.005842174403369427, 0.018301915377378464, -0.003404035931453109, -0.03417070582509041, 0.014291268773376942, -0.01194504089653492, 0.0021941575687378645, 0.020534507930278778, 0.009846135973930359, 0.017005139961838722, 0.003676425665616989, -0.00029515850474126637, -0.023301854729652405, -0.012205732986330986, 0.007078790571540594, 0.011503869667649269, -0.026497002691030502, -0.007078790571540594, 0.010514577850699425, 0.005848858971148729, 0.011630874127149582, -0.021309899166226387, 0.005892307497560978, -0.04200483486056328, 0.028689488768577576, 0.0024347964208573103, 0.005086836405098438, 0.02604246325790882, -0.02227245457470417, -0.02973225712776184, -0.009378227405250072, 0.02306121587753296, 0.021764440461993217, -0.007713809609413147, -0.015788577497005463, -0.007967816665768623, 0.0015064990147948265, -0.017606737092137337, -0.00366974133066833, -0.020481033250689507, -0.008088136091828346, -0.01524045504629612, 0.011236493475735188, -0.024638736620545387, 0.01482602208852768, 0.00023813211009837687, -0.015882158651947975, -0.00741301104426384, -0.002063811756670475, -0.0009759239037521183, -0.0011188031639903784, -0.004906357266008854, -0.002944482723250985, 0.013616143725812435, -0.019090676680207253, 0.0011564029846340418, -0.005738566163927317, -0.014879497699439526, -0.002705515129491687, 0.0029528383165597916, 0.006904996000230312, -0.009785976260900497, -0.030026370659470558, -0.009251223877072334, 0.0008915332145988941, 0.0004294733516871929, 0.011851459741592407, -0.014852759428322315, -0.025922143831849098, -0.06197785213589668, -0.0012341092806309462, 0.03708510845899582, -0.03205843269824982, -0.01116964966058731, 0.02564139850437641, -0.02764672040939331, -0.013108128681778908, -0.006052733398973942, -0.16855409741401672, 0.009378227405250072, 0.02105589210987091, -0.021350005641579628, 0.029518356546759605, -0.013682987540960312, 0.013642881065607071, 0.001424614922143519, -0.008789999410510063, -0.00493309460580349, 0.019251100718975067, -0.0012892556842416525, -0.024531785398721695, 0.003198490245267749, -0.017593367025256157, 0.016670919954776764, -0.015735100954771042, 0.012205732986330986, 0.04991917684674263, -0.0017379466444253922, 0.03208516910672188, -0.04133639484643936, -0.0005510460468940437, 0.04665718227624893, -0.005086836405098438, 0.003586186096072197, -0.022406144067645073, -0.031951479613780975, 0.0047024828381836414, -0.021777808666229248, 0.0007440584013238549, 0.027045123279094696, 0.01692492701113224, -0.001988612115383148, 0.0013301976723596454, -0.02393018826842308, 0.007499908562749624, -0.012720433063805103, -0.014892865903675556, -0.007406326476484537, -0.006594170816242695, 0.04248611256480217, 0.020721672102808952, -0.01767357997596264, -0.003425760194659233, 0.011918303556740284, -0.010601474903523922, -0.005758619401603937, -0.010126881301403046, -0.002464876277372241, 0.01983932964503765, -0.02675100974738598, -0.020882098004221916, -0.017446311190724373, 0.03229907155036926, -0.005461163353174925, -0.008990531787276268, -0.0006383612053468823, -7.974292384460568e-05, -0.009779292158782482, -0.004822801798582077, -0.020307239145040512, 0.0004733398091048002, 0.010046668350696564, -0.010013246908783913, -0.024424836039543152, -0.015347406268119812, 0.029865944758057594, -0.023341961205005646, 0.009531969204545021, 0.009478493593633175, -0.046363070607185364, 0.0028692830819636583, -0.015908896923065186, 0.0047392467968165874, 0.004799406509846449, -0.0003037228889297694, 0.033261626958847046, 0.005949125159531832, -0.01689818874001503, -0.003723216475918889, 0.046737395226955414, 0.004271338228136301, -0.009712448343634605, 0.033555738627910614, -0.003592870431020856, 0.008315406739711761, 0.016162903979420662, -0.043127816170454025, -0.037673335522413254, 0.04572136700153351, -0.009204433299601078, -0.004969859030097723, -0.0007641116390004754, 0.029090553522109985, 0.009164326824247837, -0.008997215889394283, -0.007426379714161158, -0.00887689646333456, -0.025427496060729027, 0.0009567062370479107, 0.0014998145634308457, -0.01728588528931141, 0.027887359261512756, 0.03713858500123024, 0.03245949745178223, -0.017914218828082085, 0.0238499753177166, -0.005140311550348997, 0.019478371366858482, -0.0062699769623577595, 0.016376804560422897, 0.00733948266133666, 0.026189519092440605, 0.03382311761379242, 0.019478371366858482, -0.021243056282401085, -0.0052405777387320995, 0.012894227169454098, 0.02315479703247547, -0.010715109296143055, -0.02890338934957981, 0.011503869667649269, 0.026095937937498093, 0.005548060405999422, -0.015160242095589638, -0.06064096838235855, -0.009003900922834873, 0.008388934656977654, 0.01735273003578186, 0.013756516389548779, 0.033234886825084686, 0.004588847514241934, 0.03548084944486618, 0.01421105582267046, 0.01570836454629898, -0.011670980602502823, -0.03130977600812912, 0.006052733398973942, -0.003412391524761915, -0.03291403502225876, -0.004114254377782345, 0.032753609120845795, -0.0017864085966721177, 0.005912360735237598, 0.010166987776756287, -0.02024039439857006, -0.00577533058822155, 0.01215894240885973, -0.00030038069235160947, -0.0026988305617123842, -0.017031878232955933, -0.0218446534126997, 0.010574736632406712, 0.003552763955667615, 0.012105466797947884, 0.022379405796527863, -0.003492604475468397, -0.005999258253723383, -0.002941140439361334, 0.016978401690721512, 0.017085352912545204, -0.01486612856388092, -0.019571952521800995, 0.01610942929983139, -0.004856224171817303, -0.007252585142850876, -0.023194903507828712, -0.0005293217254802585, -0.009959771297872066, 0.00019228123710490763, -0.02965204417705536, -0.02677774801850319, 0.025066537782549858, -0.011898250319063663, -0.031122613698244095, -0.05983884260058403, -0.020882098004221916, 0.0009541995823383331, -0.011296653188765049, 0.025320546701550484, 0.00907074473798275, 0.0066376193426549435, 0.015347406268119812, -0.01609605923295021, 0.022018447518348694, 0.003626292571425438, -0.010160303674638271, -0.006691094487905502, 0.035266947001218796, -0.02022702619433403, 0.019197626039385796, -0.036871206015348434, -0.026470264419913292, 0.037379223853349686, 0.0006709476583637297, -0.0076536498963832855, 0.022085292264819145, -0.004655691795051098, 0.028234949335455894, -0.030668074265122414, -0.012914280407130718, -0.006958471145480871, -0.012332737445831299, 0.042298946529626846, 0.0049431212246418, -0.012900912202894688, -0.010755215771496296, 0.0036797679495066404, -0.016269855201244354, 0.021243056282401085, 0.012185679748654366, -0.0037599809002131224, 0.010668318718671799, 0.01524045504629612, -0.014906235039234161, 0.0029979581013321877, 0.007165687624365091, 0.0025183516554534435, -0.02276710234582424, -0.013061338104307652, -0.006654330529272556, -0.00826861523091793, -0.007707125041633844, 0.0012650246499106288, 0.013809992000460625, -0.0354006364941597, -0.03494609519839287, -0.08609520643949509, 0.016376804560422897, -0.012840752489864826, -0.01641691103577614, 0.016777869313955307, 0.01774042472243309, 0.02108263038098812, -0.012606797739863396, 0.0003335938381496817, -0.026510370895266533, -0.007600174285471439, 0.009003900922834873, 0.019130783155560493, -0.007045368663966656, -0.007921026088297367, 0.00743306428194046, 0.015427619218826294, 0.01153060793876648, 0.015561306849122047, 0.02188475988805294, 0.011463763192296028, -0.009538653306663036, 0.012720433063805103, 0.004094201140105724, -0.008101505227386951, 0.018034538254141808, 0.01820833422243595, 0.013348767533898354, -0.009879558347165585, -0.03427765518426895, 0.01260011363774538, 0.022874051705002785, 0.0005243084160611033, 0.01981259137392044, 0.006737885531038046, 0.004445132799446583, 0.004338182508945465, 0.015775207430124283, 0.020414188504219055, 0.019144151359796524, -0.012259208597242832, -0.007065421901643276, 0.031603891402482986, -0.009371543303132057, -0.0021306558046489954, -0.010420995764434338, -0.0010043326765298843, -0.00013880596088711172, 0.003950486425310373, 0.023823238909244537, 0.0047659846022725105, 0.006938417907804251, -0.011824721470475197, -0.002006994094699621, -0.013769885525107384, -0.04288717731833458, 0.011196387000381947, -0.021109366789460182, -0.0025467602536082268, -0.03379637748003006, 0.018863406032323837, 0.015440987423062325, 0.004161045420914888, 0.0034324447624385357, 0.0038970112800598145, -0.006193106062710285, -0.01645701751112938, -0.009779292158782482, -0.016309961676597595, -0.024638736620545387, -0.019157519564032555, -0.011089436709880829, 0.01648375578224659, 0.002157393377274275, -0.0036931366194039583, -0.004171072039753199, -0.021764440461993217, 0.0023094636853784323, -0.022459618747234344, 0.025721611455082893, 0.003420746885240078, 0.008796683512628078, -0.036095816642045975, 0.0011714429128915071, 0.046871084719896317, -0.002543418202549219, -0.003532710950821638, 0.008756577037274837, -0.01735273003578186, -0.011918303556740284, -0.038582414388656616, -0.012433002702891827, 0.0037332430947571993, 0.015574675984680653, 0.020828623324632645, 0.03681773319840431, 0.010788638144731522, -0.018342021852731705, 0.021724333986639977, 0.016430281102657318, 0.015374143607914448, -0.016296591609716415, -0.015133504755795002, -0.029999634250998497, -0.02807452343404293, 0.010019931010901928, -0.006400323007255793, -0.042298946529626846, -0.017112091183662415, 0.011824721470475197, -0.02564139850437641, 0.013549299910664558, -0.016684288159012794, 0.0035159997642040253, 0.000766200537327677, -0.011811353266239166, -0.011062699370086193, -0.008963794447481632, -0.0371653214097023, 0.012773907743394375, 0.017085352912545204, 0.013863466680049896, 0.040186673402786255, -0.007346166763454676, 0.011490501463413239, -0.014037261717021465, 0.022513093426823616, -0.02192486636340618, -0.009431703016161919, -0.014932972379028797, -0.015975739806890488, 0.031924743205308914, -0.025922143831849098, -0.018408866599202156, -0.01093569491058588, 5.378861260396661e-06, 0.0009282974642701447, -0.014799284748733044, -0.0058722542598843575, 0.09149620682001114, -0.009498546831309795, 0.0013235132209956646, -0.0011371852597221732, -0.0032920720987021923, 0.002738937037065625, 0.020935572683811188, 0.024879375472664833, 0.0001217816025018692, -0.018850037828087807, 0.013555984012782574, -0.00846246350556612, 0.0014605436008423567, -0.03261992335319519, 0.013462401926517487, 0.002688803942874074, -0.02225908637046814, 0.01862276718020439, -0.04371604323387146, 0.03304772451519966, 0.043929945677518845, 0.002018691971898079, 0.0014572014333680272, 0.004869592841714621, -0.006911680102348328, 0.00045997099368833005, 0.04665718227624893, 0.005828805733472109, -0.002149038016796112, -0.009953087195754051, 0.0037733495701104403, -0.02683122269809246, -0.0017830664291977882, -0.027111968025565147, -0.008362197317183018, 0.017646843567490578, -0.0054243989288806915, 0.016630813479423523, 0.04486576095223427, 0.010033300146460533, 0.002200842136517167, -0.0005410194862633944, -0.03786050155758858, -0.02925097942352295, -0.002683790633454919, 0.012834067456424236, 0.011884881183505058, -0.011884881183505058, -0.01198514737188816], "4cc49e02-40a2-48f8-88b6-76b37c9bdd81": [-0.01577633060514927, -0.018456581979990005, 0.011696244589984417, -0.021388934925198555, -0.0076758679933846, 0.026417722925543785, -0.026285037398338318, -0.0168643519282341, 0.017209336161613464, -0.011510484851896763, 0.017846226692199707, 0.008790427818894386, 0.009122141636908054, -0.013169055804610252, -0.008611301891505718, -0.015285393223166466, 0.022384077310562134, -0.02227792888879776, 0.02428148314356804, -0.041106030344963074, 0.012492358684539795, -0.015656912699341774, 0.005327330902218819, -0.014024878852069378, -0.030836157500743866, 0.002292145509272814, 0.021468546241521835, -0.03455135598778725, -0.012319867499172688, 0.004269162658601999, 0.013640089891850948, 0.0056822653859853745, -0.008080558851361275, -0.0032889468129724264, -0.005728705320507288, -0.011012913659214973, 0.020553015172481537, -0.00279469252564013, -0.00981874205172062, -0.001063144183717668, 0.011158867739140987, -0.0008773842127993703, 0.008405638858675957, 0.0014686648501083255, -0.010714370757341385, 0.03224262595176697, -0.011298188008368015, -0.0015872527146711946, -0.015816135331988335, 0.001545788487419486, -0.0076758679933846, 0.021853335201740265, -0.04580310359597206, -0.012353039346635342, 0.008604668080806732, 0.008054021745920181, -0.01001777034252882, 0.008717450313270092, -0.0032806540839374065, -0.022025827318429947, 0.021097026765346527, -0.01048217061907053, -0.025634877383708954, -0.006368913687765598, 0.000333580159349367, 0.011371164582669735, -0.02762516401708126, 0.0017746712546795607, -0.016373416408896446, -0.005672313738614321, 0.0278639979660511, 0.032295700162649155, 0.00779528496786952, -0.004627414047718048, 0.033144887536764145, 0.0003263239050284028, -0.02908470667898655, 0.016771472990512848, 0.018124867230653763, 0.022145243361592293, 0.0028908897656947374, -0.012207084335386753, -0.02623196318745613, -0.01393199898302555, 0.015829404816031456, 0.00823314767330885, -0.0065911621786653996, 0.0018957470310851932, 0.005586068145930767, -0.020208032801747322, -0.00045693639549426734, 0.028686648234725, -0.001781305531039834, 0.010356118902564049, 0.01210757065564394, 0.020858192816376686, 0.0004585949645843357, 0.02884587086737156, -0.0065712593495845795, -0.050234805792570114, -0.010508707724511623, 0.03149958699941635, -0.008982822299003601, -0.0052842083387076855, -0.030915768817067146, -0.019624214619398117, 0.059443194419145584, -0.01284397579729557, -0.0004192038904875517, -0.013653358444571495, -0.037550054490566254, -0.0016726691974326968, -0.016824547201395035, -0.04604193940758705, -0.02948276326060295, 0.0027532284148037434, 0.007357422262430191, -0.010004501789808273, -0.023631323128938675, -0.0019322355510666966, 0.01639995351433754, 0.014728113077580929, 0.03001350536942482, 0.017753347754478455, 0.01862907223403454, 0.005984125193208456, 0.009679421782493591, -0.025316432118415833, -0.010110650211572647, -0.02552872896194458, 0.03630280867218971, 0.009095604531466961, -0.00501220254227519, -0.011782490648329258, -0.003169529838487506, -0.017753347754478455, -0.00721146771684289, -0.009540102444589138, -0.012943490408360958, -0.007251273840665817, 0.025621609762310982, 0.009586541913449764, 0.010064210742712021, -0.025966592133045197, 0.025011254474520683, 0.01718279905617237, 0.011749318800866604, 0.008916479535400867, 0.00028796945116482675, 0.012452553026378155, 0.0010059234919026494, -0.03163227066397667, -0.007370690815150738, -0.020327448844909668, -0.004571022465825081, 0.011769222095608711, 0.017886033281683922, -5.8205485402140766e-05, 0.010920033790171146, -0.005894562229514122, 0.006773605011403561, 0.033144887536764145, 0.030225802212953568, -0.02892548404633999, 0.00043620425276458263, 0.03157919645309448, 0.005101765040308237, 0.03479019179940224, 0.0014437863137573004, -0.00029812820139341056, 0.009248193353414536, 0.00193886982742697, -0.02660348266363144, 0.021309323608875275, -0.02126951888203621, 0.03489634022116661, -0.01097974181175232, 0.013746239244937897, -0.0003576294402591884, -0.016280535608530045, -0.028527425602078438, -0.015073095448315144, -0.007848359644412994, 0.04447624832391739, -0.008690913207828999, -0.013049638830125332, 0.018284089863300323, 0.008624570444226265, 0.02319345995783806, -0.001387394848279655, 0.0016817912692204118, 0.05360502377152443, 0.007138490676879883, 0.0034863168839365244, -0.6012254357337952, -0.024507049471139908, -0.005314062349498272, -0.019013861194252968, 0.02229119837284088, 0.015338467434048653, 0.024878568947315216, 0.0037019310984760523, -0.025621609762310982, 0.008465347811579704, 0.001826087012887001, 0.01373297069221735, -0.011012913659214973, 0.02282194048166275, -0.006899656727910042, -0.028527425602078438, -0.02026110701262951, 0.01910674199461937, -0.006833313498646021, 0.010973108001053333, -0.0036554911639541388, 0.02034071832895279, -0.014290249906480312, 0.0028660111129283905, 0.007430399302393198, -0.007264542393386364, 0.04269826039671898, -0.0043122852221131325, -0.01864234171807766, 0.02661675214767456, -0.045219287276268005, 0.01539154164493084, -0.00901599321514368, 0.0122203528881073, 0.05763866752386093, 0.013600284233689308, -0.032852981239557266, 0.03561284393072128, 0.007410496473312378, 0.05278237164020538, 0.005599336698651314, -0.012518895789980888, 0.047156497836112976, -0.01512616965919733, 0.003642222611233592, -0.002189313992857933, -0.0016776449047029018, -0.039646487683057785, 0.00037027604412287474, 0.014608696103096008, 0.019518066197633743, -0.009427319280803204, -0.007602890953421593, 3.791390190599486e-05, -0.004275796934962273, 0.004172965418547392, 0.04399858042597771, -0.024626465514302254, 0.01941191777586937, -0.002554199891164899, -0.0019654070492833853, 0.017302215099334717, -0.0033237768802791834, 0.007224736735224724, -0.026271769776940346, 0.01894751749932766, -0.021548157557845116, -0.009155313484370708, 0.020022273063659668, -0.031605735421180725, -0.00032798247411847115, -0.014542353339493275, 0.0329325906932354, -0.011961615644395351, 0.024228408932685852, 0.04996943473815918, 0.008916479535400867, -0.02081838622689247, 0.009420684538781643, -0.001841014134697616, 0.02275559864938259, -0.015219050459563732, 0.01512616965919733, -0.0036090512294322252, 0.005406942218542099, -0.008133633993566036, -0.03131382539868355, -0.0027283497620373964, 0.009931525215506554, 0.014980215579271317, 0.0007832602714188397, 0.028447814285755157, 0.009871816262602806, -0.03922189399600029, -0.01547115296125412, 0.011503850109875202, -0.027572089806199074, 0.016293805092573166, 0.01864234171807766, 0.016904158517718315, -0.03394100442528725, -0.021760454401373863, -0.008505153469741344, -0.009248193353414536, 0.020698970183730125, -0.02149508334696293, -0.03821348398923874, 0.023379221558570862, 0.03999147191643715, -0.015059826895594597, -0.00390759389847517, -0.01663878746330738, -0.01870868355035782, 0.002219168469309807, 0.030199265107512474, -0.03078308328986168, 0.042220588773489, 0.011344627477228642, 0.007437033578753471, -0.019916124641895294, 0.011364530771970749, 0.010389290750026703, 0.012877147644758224, -0.0006655017496086657, 0.020685700699687004, 0.01001777034252882, 0.044529322534799576, -0.005065276753157377, -0.031234214082360268, 0.003199384082108736, -0.018907712772488594, 0.010243336670100689, 0.018310626968741417, -0.029721597209572792, 0.016731666401028633, 0.015842672437429428, 0.002149508334696293, -0.016678592190146446, 0.026338111609220505, -0.02034071832895279, -0.0021179956384003162, -0.02298116311430931, 0.0028759625274688005, -0.007410496473312378, -0.008107096888124943, -0.0225167628377676, -0.0007865774095989764, 0.0022307783365249634, -0.015152707695960999, -0.013215496204793453, 0.025011254474520683, 0.0018725269474089146, 0.018071793019771576, 0.01950479857623577, 0.000905579945538193, -0.012392845004796982, 5.1519371481845155e-05, -0.03126075118780136, -0.020566284656524658, -0.0057751452550292015, 0.0016303756274282932, -0.009805473499000072, -0.01593555323779583, 0.020168226212263107, -0.03935457766056061, -0.014091221615672112, 0.0053571853786706924, -0.02940315194427967, -0.020765312016010284, -0.017222603783011436, -0.00018233917944598943, -0.02344556339085102, 0.013567113317549229, -0.01687762141227722, 0.020221300423145294, -0.010223433375358582, -0.021680843085050583, 0.014502547681331635, 0.009719227440655231, -0.0012240256182849407, 0.014051415957510471, -0.011862101964652538, -0.003768273862078786, 0.0005622556782327592, 0.010064210742712021, 0.027054615318775177, 0.03800118342041969, 0.027943609282374382, -0.026324843987822533, -0.014330055564641953, 0.005456699524074793, 0.01671839877963066, 0.011450775898993015, 0.00721146771684289, 0.03410022705793381, 0.010090747848153114, 0.027253642678260803, 0.027757849544286728, 0.017620662227272987, 0.009506930597126484, 0.014038147404789925, -0.011968250386416912, 0.005964222364127636, -0.028023220598697662, 0.00952019914984703, -0.008843502029776573, -0.003652174025774002, -0.003562611062079668, 0.007025707978755236, 0.015537495724856853, -0.002554199891164899, -0.027890535071492195, -0.03126075118780136, 0.02059282176196575, 0.026829048991203308, 0.01764719933271408, -0.009208387695252895, -0.013540576212108135, -0.01496694702655077, 0.016360146924853325, 0.00885677058249712, -0.011928444728255272, 0.018297357484698296, -0.020062077790498734, -0.006159933749586344, -0.017275677993893623, 0.036010898649692535, -0.00611017644405365, -0.021256249397993088, -0.02197275310754776, 0.004806539509445429, 0.011736050248146057, -0.011736050248146057, 0.0026404454838484526, 0.013839119113981724, -0.005751925054937601, 0.024891838431358337, -0.00932117085903883, 0.03157919645309448, -0.005536310840398073, 0.007085416465997696, 0.01593555323779583, -0.006773605011403561, -0.006305887829512358, -0.00599407684057951, 0.02677597478032112, 0.045458123087882996, 0.01958440989255905, -0.016983769834041595, -0.001235635601915419, -0.03441867232322693, -0.012426015920937061, -0.016824547201395035, 0.010376022197306156, 0.019995735958218575, 0.008027484640479088, -0.001996919745579362, 0.0009030920919030905, 0.03739083185791969, 0.01222698763012886, 0.032614145427942276, 0.015802867710590363, -0.004843028262257576, 0.005075227934867144, -0.004405165556818247, -0.02644426003098488, -0.008107096888124943, -0.004461556673049927, -0.010084113106131554, -0.004667219705879688, -0.017050113528966904, 0.010541878640651703, 0.023379221558570862, -0.007821822538971901, -0.012399478815495968, 0.007901433855295181, -0.011450775898993015, 0.0016950598219409585, 0.0155507642775774, -0.013540576212108135, -0.0016129605937749147, -0.028368202969431877, 0.044688545167446136, 0.0041464283131062984, 0.01793910749256611, 0.0012090984964743257, -0.00137827277649194, 0.013547210022807121, 0.018974054604768753, -9.484954352956265e-05, 0.01724914088845253, 0.015205781906843185, 0.007025707978755236, 0.02597985975444317, -0.014038147404789925, -0.0077090393751859665, 0.00434877397492528, -0.03078308328986168, -0.017275677993893623, -0.0009329463355243206, -0.010356118902564049, -0.015802867710590363, -0.02149508334696293, -0.02406918630003929, 0.02932354062795639, -0.0054334793239831924, -0.008498519659042358, -0.016837814822793007, -0.0015076412819325924, -0.02266271784901619, -0.020247837528586388, -0.014330055564641953, -0.005990759469568729, -0.020924534648656845, -0.028102831915020943, 0.01963748410344124, -0.015948820859193802, -0.01811159774661064, 0.043441299349069595, 0.0026205426547676325, -0.027359791100025177, -0.0174747072160244, 0.003247482469305396, -0.005622556433081627, -0.0028129369020462036, -0.00882359966635704, 0.003824665443971753, -0.002486198442056775, -0.04858950525522232, 0.0052875252440571785, -0.011238479055464268, -0.002569126896560192, 0.0024331239983439445, -0.008292856626212597, -0.016214193776249886, 0.00554957939311862, 0.013786044903099537, -0.010462267324328423, 0.0068266792222857475, 0.009759033098816872, -0.005154839716851711, -0.02373747155070305, 0.019398650154471397, -0.00877715926617384, 0.011623268015682697, -0.027810923755168915, -0.009931525215506554, 0.029801208525896072, 0.008345930837094784, -0.009274730458855629, 0.002129605505615473, 0.02924392931163311, 0.011749318800866604, 0.00222580274567008, -0.01051534153521061, -0.0015084706246852875, -0.01106598787009716, 0.020075347274541855, 0.00016502784274052829, 0.004421751014888287, 0.01577633060514927, 0.03587821498513222, -0.014104490168392658, 0.01678474061191082, -0.0037218339275568724, 0.018191209062933922, 0.0034962682984769344, 0.0011551949428394437, 0.014741381630301476, -0.0072380052879452705, -0.016413221135735512, 0.020911267027258873, -0.03149958699941635, -0.02390996366739273, 0.02437436394393444, -0.0014338348992168903, -0.053180430084466934, -0.009254828095436096, -0.0012920270673930645, 0.013719701208174229, -0.04123871773481369, -0.010674565099179745, -9.49013774516061e-05, 0.00554957939311862, 0.01633360981941223, -0.014767918735742569, -0.018363701179623604, -0.007231371011584997, -0.020791849121451378, -0.03850539028644562, -0.009347707964479923, -0.015112901106476784, -0.029297003522515297, -0.041504088789224625, 0.01934557594358921, -0.030809620395302773, -0.03425944969058037, 0.008690913207828999, -0.01164317037910223, 0.02538277581334114, 0.015192513354122639, -0.021853335201740265, -0.018231015652418137, 0.021388934925198555, 0.0025857125874608755, 0.0035891481675207615, -0.03210993856191635, -0.030119653791189194, 0.016904158517718315, -0.011888639070093632, 0.007622793782502413, 0.004116573836654425, -0.013533941470086575, 0.036382418125867844, 0.017501244321465492, -0.004179599694907665, 0.04046913981437683, 0.049014098942279816, -0.0027582040056586266, 0.0014048098819330335, 0.011629901826381683, 0.00928136520087719, 0.000900604180060327, -0.02064589597284794, 0.00789479911327362, -0.027598626911640167, -0.00038561783730983734, 0.008173439651727676, -0.01755431853234768, -0.020672433078289032, 2.9750623070867732e-05, 0.0021544841583818197, 0.009487027302384377, 0.006786873564124107, 0.02103068307042122, 0.018270820379257202, -0.011417604982852936, -0.01833716407418251, 0.006166568025946617, 0.002094775438308716, -0.00017249141819775105, 0.020486673340201378, -0.01780642196536064, 0.00827295333147049, 0.00882359966635704, -0.006445208098739386, 0.008206610567867756, 0.01633360981941223, -0.006873119622468948, -0.003665442578494549, -0.01488733571022749, -0.04415780305862427, -0.015258856117725372, 0.013666626997292042, 0.0034266081638634205, 0.01492714136838913, -0.004720293916761875, -0.012558701448142529, -0.027333253994584084, 0.019093472510576248, 0.031897641718387604, 0.011324725113809109, 0.012717925012111664, -0.02397630736231804, -0.01824428327381611, -0.010734273120760918, 0.02319345995783806, 0.0008632863755337894, -0.03444520756602287, -0.023777278140187263, -0.015285393223166466, 0.0036256369203329086, 0.026417722925543785, 0.013587015680968761, 0.026550408452749252, 0.020154958590865135, -0.024639734998345375, 2.2118603737908415e-05, 0.006783556658774614, -0.022994432598352432, -0.01093993615359068, -0.0040734512731432915, 0.009274730458855629, 0.00827295333147049, 0.013878924772143364, 0.025502191856503487, 0.013056273572146893, 0.010880227200686932, 0.009069067426025867, 0.012372941710054874, -0.0010847055818885565, 0.021680843085050583, -0.00553299393504858, -0.012877147644758224, 0.008040753193199635, 0.02259637601673603, -0.003944082651287317, 0.016824547201395035, 0.0022274611983448267, 0.005891245324164629, -0.0048927851021289825, 0.009593176655471325, 0.0046373652294278145, -0.04023030400276184, 0.00031554317683912814, -0.016758203506469727, 0.010535244829952717, 0.0027681554201990366, -0.002668641274794936, -0.017315484583377838, -0.02716076374053955, -0.005396991036832333, 0.0300931166857481, 0.01894751749932766, 0.021760454401373863, -0.009958062320947647, -0.01055514719337225, -0.01809833012521267, -0.0022954626474529505, 0.006873119622468948, 0.017501244321465492, -0.0030948941130191088, 0.016147850081324577, -0.0040037911385297775, -0.005042056553065777, -0.009334439411759377, 0.011981518939137459, 0.004335505422204733, 0.018841369077563286, 0.022861747071146965, -0.006992536596953869, -0.022954626008868217, -0.012545432895421982, -0.030305415391921997, -0.01500675268471241, 0.003391778329387307, -0.008850136771798134, -0.019292501732707024, -0.02660348266363144, 0.012591873295605183, -0.006040516775101423, -0.004398530814796686, 0.001383248483762145, -0.003302215365692973, -0.009460490196943283, -0.05007558315992355, 0.02282194048166275, 0.008704181760549545, 0.03611704707145691, 0.030915768817067146, -0.014011610299348831, 0.004129842389374971, -0.030756546184420586, -0.003209335496649146, 0.005025471094995737, 0.023790545761585236, 0.06315839290618896, 0.0008089681505225599, -0.010594953782856464, 0.0019703826401382685, -0.010807250626385212, 0.0036090512294322252, -0.02336595207452774, 0.0034067053347826004, 0.03651510551571846, 0.0034067053347826004, -0.025329699739813805, 0.017766615375876427, -0.014515816234052181, -0.0056291907094419, -0.02815590612590313, -0.0027499112766236067, -0.026457529515028, 0.016904158517718315, -0.010263239033520222, -0.0015573984710499644, -0.011795759201049805, 0.01934557594358921, -0.005324013996869326, -0.0024795641656965017, -0.017421633005142212, -0.013361450284719467, -0.03842578083276749, 0.026046203449368477, -0.011132330633699894, 0.02258310653269291, -0.011656438931822777, -0.012956758961081505, 0.0178727637976408, -0.011855467222630978, -0.003239189740270376, -0.021760454401373863, -0.019305769354104996, 0.043972041457891464, 0.0066608223132789135, -0.0174747072160244, -0.024162067100405693, 0.012658216059207916, 0.014131027273833752, -0.02608601003885269, -0.0035758796148002148, 0.023551711812615395, -0.01230659894645214, -0.001943845534697175, -0.010243336670100689, -0.010714370757341385, 0.027359791100025177, -0.025621609762310982, 0.001988627016544342, -0.020460136234760284, -0.0543215274810791, -0.008790427818894386, 0.02863357402384281, -0.02267598733305931, -0.034312523901462555, -0.026829048991203308, -0.03033195249736309, 0.000959483499173075, -0.011457410641014576, -0.0026752755511552095, 0.000939580611884594, 0.05246392637491226, -0.00839237030595541, 0.010104016400873661, -0.010568416677415371, 0.01068119890987873, -0.018058523535728455, -0.0038080797530710697, -0.021627768874168396, -0.01864234171807766, 0.02397630736231804, -0.013474233448505402, -0.007105319295078516, -0.03869115188717842, 0.0009130435064435005, 0.019385380670428276, -0.005798364989459515, 0.024467242881655693, 0.03327757492661476, -0.02528989501297474, 0.02088472992181778, -0.012094302102923393, -0.02475915290415287, -0.00609027361497283, -0.024560123682022095, -0.008525056764483452, 0.017275677993893623, -0.002874304074794054, -0.01101954746991396, 0.008266319520771503, -0.026417722925543785, 0.008113730698823929, -0.011769222095608711, -0.024931643158197403, 0.013759507797658443, -0.02754555270075798, -0.024785690009593964, -0.01870868355035782, -0.007576353847980499, -0.0391688197851181, -0.01117877010256052, -0.0049591283313930035, 0.0022473640274256468, 0.00013776507694274187, 0.0013260277919471264, 0.012943490408360958, 0.02791707217693329, 0.005692216567695141, -0.01531193032860756, -0.02660348266363144, -0.014728113077580929, -0.010123918764293194, -0.028447814285755157, -0.014250444248318672, -0.012830707244575024, 0.024944912642240524, -0.010183627717196941, -0.033463332802057266, -0.002406586892902851, 0.00781518779695034, -0.006060419604182243, -0.005164790898561478, -0.0013757848646491766, 0.019305769354104996, 0.012737827375531197, -0.0005539628327824175, -0.008326027542352676, 0.03749698027968407, 0.004358725156635046, 0.01771354116499424, 0.0040071080438792706, -0.012339770793914795, -0.028368202969431877, -0.009307902306318283, -0.012512261979281902, -0.013799313455820084, -0.010873593389987946, -0.0033486555330455303, 0.014741381630301476, 0.009009359404444695, -0.0036488568875938654, 0.03380831703543663, 0.027810923755168915, -0.01438312977552414, 0.012386210262775421, -0.02706788294017315, -0.013905461877584457, 0.008173439651727676, 0.0058448053896427155, -0.031074991449713707, 0.010488804429769516, 0.02637791819870472, 0.003361924085766077, 0.005834853742271662, 0.01693069562315941, -0.001608814112842083, 0.00023282194160856307, 0.018456581979990005, -0.026789244264364243, 0.0027781068347394466, 0.0002367610577493906, -0.0036919796839356422, 0.006203056778758764, -0.006004028022289276, -0.008564862422645092, 0.01608150638639927, 0.008598033338785172, 0.0014636891428381205, -0.013175690546631813, 0.00047808318049646914, -0.052649687975645065, -0.004232673905789852, 0.013036370277404785, -0.004106622654944658, -0.01732875220477581, 0.005247719585895538, 0.0042393081821501255, -0.019849780946969986, -0.003675393993034959, 0.02977467142045498, 0.022994432598352432, -0.04192868247628212, 0.011749318800866604, 0.030225802212953568, -0.017381826415657997, 0.0034730483312159777, -0.0020350669510662556, -0.0008272124105133116, -0.012512261979281902, -0.009725862182676792, 0.015285393223166466, -0.04402511566877365, 0.0006360620609484613, -0.01269138790667057, -0.015232319012284279, -0.017899300903081894, 0.005811634007841349, 0.019597677513957024, -0.0026537140365689993, -0.0016834498383104801, 0.2282194048166275, -0.026364648714661598, 0.009805473499000072, 0.02599312923848629, 0.0031910911202430725, 0.01601516455411911, 0.011424238793551922, -0.0013956876937299967, -0.010196896269917488, 0.028049757704138756, -0.02065916359424591, -0.021388934925198555, -0.012346404604613781, 0.0013227106537669897, 0.012950124219059944, -0.041132569313049316, -0.03386139124631882, -0.017368558794260025, -0.03303873911499977, -0.011384433135390282, 0.025581803172826767, -0.0011527070309966803, 0.01159672997891903, -0.004070133902132511, 0.010289776138961315, -0.015165976248681545, -0.01732875220477581, 0.022609643638134003, 0.02383035235106945, -0.001943845534697175, -0.041106030344963074, 0.00015714962501078844, 0.0050321053713560104, -0.008146902546286583, 0.012160644866526127, -0.015059826895594597, 0.02892548404633999, 0.007748845033347607, 0.0087373536080122, 0.011908541433513165, -0.008843502029776573, 0.023153655230998993, 0.016346879303455353, 0.019677288830280304, -0.022490225732326508, 0.00952019914984703, 0.01500675268471241, -0.014011610299348831, 0.018589267507195473, -0.00041754532139748335, -0.03847885504364967, -0.0007388935191556811, 0.023034237325191498, 0.02242388390004635, 0.011809027753770351, 0.007105319295078516, 0.02876625955104828, -0.007622793782502413, 0.01001777034252882, 0.03258761018514633, -0.015139439143240452, 0.04758109152317047, -0.016890889033675194, -0.0061732023023068905, -0.006213007960468531, 0.012034593150019646, -0.03632934391498566, -0.0026205426547676325, -0.003423291025683284, -0.01264494750648737, 0.01886790618300438, -0.008000947535037994, -0.013381353579461575, -0.021773723885416985, -0.0031081626657396555, -0.022994432598352432, 0.014144295826554298, 0.021375667303800583, 0.02597985975444317, 0.03134036436676979, 0.012777633033692837, 0.017779884859919548, -0.0031230896711349487, 0.017740078270435333, 0.01113896444439888, -0.005997393745929003, 0.02660348266363144, -0.0005912806373089552, -0.006451842375099659, 0.005881293676793575, 0.006873119622468948, -0.02948276326060295, 0.004381945356726646, -0.012094302102923393, 0.021335860714316368, -0.0036787111312150955, 0.00771567365154624, 0.021136833354830742, -0.006395450793206692, 0.009599810466170311, -0.0274659413844347, 0.0351351723074913, 0.01292358711361885, -0.0029655254911631346, -0.033914465457201004, 0.010767444968223572, 0.009148678742349148, 0.015205781906843185, 0.01273119356483221, -0.007702405098825693, 0.002691861242055893, -0.044131264090538025, 0.0007094538887031376, -0.010223433375358582, 0.013102713041007519, 0.026046203449368477, -0.018814831972122192, -0.01114559918642044, -0.004713659640401602, 0.014582158997654915, 0.021296055987477303, -0.007748845033347607, -0.0011444141855463386, 0.003152943914756179, -0.009467124938964844, -0.00947375874966383, -0.012989929877221584, -0.02436109445989132, -0.00882359966635704, -0.04256557300686836, 0.02932354062795639, -0.01492714136838913, 0.008458714000880718, 0.011298188008368015, 0.011915176175534725, 0.005101765040308237, 0.02150835283100605, -0.011543655768036842, -0.02770477533340454, -0.008624570444226265, -0.01052197627723217, 0.0071517592296004295, 0.012034593150019646, 0.012419382110238075, -0.02003554068505764, -0.029509300366044044, 0.012465821579098701, 0.003642222611233592, 0.003089918289333582, -0.030464638024568558, -0.032826442271471024, 0.010349485091865063, -0.009221656247973442, 0.01480772439390421, -0.006866485346108675, -0.015112901106476784, -0.017607392743229866, -0.044051654636859894, -0.0011485606664791703, 0.026935197412967682, -0.04585617780685425, -0.03441867232322693, 0.020526478067040443, -0.02507759816944599, -0.0022705839946866035, -0.012419382110238075, -0.166440948843956, 0.025966592133045197, 0.020393792539834976, -0.013215496204793453, 0.02065916359424591, -0.009387513622641563, 0.014091221615672112, -0.02730671688914299, 0.0006903802859596908, -0.01385238766670227, 0.032375309616327286, -0.0010498756309971213, -0.017050113528966904, -0.016134580597281456, -0.016373416408896446, 0.009958062320947647, -0.0016370099037885666, 0.0009569956455379725, 0.052649687975645065, 0.006770288106054068, 0.0403895266354084, -0.0071517592296004295, 0.0036488568875938654, 0.01484753005206585, -0.0057054851204156876, -0.002353512682020664, -0.022331003099679947, 0.014476010575890541, 0.009646250866353512, -0.009739130735397339, -0.004786636680364609, 0.0014487620210275054, 0.013865656219422817, 0.025634877383708954, -0.00221419264562428, -0.00823314767330885, 0.01109915878623724, -0.00025251746410503983, -0.012200450524687767, 0.0010863641509786248, -0.004172965418547392, 0.046307310461997986, 0.017527781426906586, 0.004318919498473406, 0.009639616124331951, -0.00012014275853289291, -0.006465110927820206, 0.004594242665916681, 0.006372231058776379, -0.005642459727823734, -0.001816135598346591, -0.015099632553756237, -0.00885677058249712, -0.01803198643028736, 0.0076360623352229595, 0.009845279157161713, 0.018907712772488594, 0.003177822567522526, -0.002346878405660391, 0.011576827615499496, -0.002506101271137595, -0.038717687129974365, 0.0030733325984328985, -0.007463570684194565, -0.010548513382673264, -0.011012913659214973, -0.0012862220173701644, 0.02126951888203621, -0.015577301383018494, 0.01941191777586937, -0.00013600284000858665, -0.02181352861225605, 0.013580381870269775, 0.017607392743229866, 0.010263239033520222, -0.004551119636744261, 0.011125695891678333, 0.02528989501297474, 0.02150835283100605, 0.0071318564005196095, -0.016612250357866287, 0.0508982352912426, -0.0111057935282588, -0.012936855666339397, 0.007198199164122343, 0.006478379480540752, 0.014993484131991863, -0.007589622400701046, -0.0311015285551548, 0.006329108029603958, 0.03999147191643715, -0.03412676230072975, 0.015152707695960999, 0.021773723885416985, -0.0032707026693969965, 0.01910674199461937, -0.0033834853675216436, 0.0068266792222857475, -0.014635233208537102, 0.0027814239729195833, 0.0043321880511939526, 0.0004789124650415033, 0.008969553746283054, 0.0015341783873736858, 0.031924180686473846, 0.012578604742884636, -0.030146190896630287, 0.014104490168392658, 0.033383723348379135, 0.00392749672755599, 0.004020376596599817, 0.008047387935221195, 0.016346879303455353, 0.020791849121451378, 0.04797914996743202, -0.008956285193562508, -0.0013500769855454564, 0.008870039135217667, 0.005091813858598471, 0.00557279959321022, -0.017700273543596268, -0.027890535071492195, 0.0068067763932049274, 0.020924534648656845, 0.0016071555437520146, -0.027054615318775177, -0.06283994764089584, -0.023180192336440086, 0.0055960193276405334, 0.03603743761777878, -0.020526478067040443, 0.02283520996570587, 0.0035891481675207615, 0.00721146771684289, -0.010488804429769516, 0.016837814822793007, -0.004965762607753277, -0.040044546127319336, -0.029880819842219353, -0.009626347571611404, -0.014051415957510471, 0.017355289310216904, 0.004066816996783018, -0.017076650634407997, 0.0029207440093159676, 0.009712593629956245, 0.0032955810893326998, -0.011278284713625908, 0.017461437731981277, -0.01663878746330738, -0.009082335978746414, -0.005396991036832333, -0.0010150456801056862, 0.03351640701293945, 0.013540576212108135, 0.026046203449368477, 0.03908920660614967, -0.005735339596867561, -0.014197370037436485, -0.00279469252564013, 0.021773723885416985, 0.005914465058594942, -0.011112427338957787, -0.006232910789549351, 0.012950124219059944, -0.01322213001549244, -0.018682146444916725, -0.005795048084110022, -0.0057054851204156876, -0.010727639310061932, -0.01551095861941576, -0.04580310359597206, -0.014316787011921406, 0.0027499112766236067, -0.020473403856158257, 0.014330055564641953, -0.03335718438029289, -0.014051415957510471, -0.019013861194252968, -0.01318895909935236, 0.036010898649692535, 0.024241678416728973, 0.02420187182724476, 0.022490225732326508, -0.052490465342998505, 0.005260988138616085, 0.022808672860264778, -0.004133159760385752, -0.025727758184075356, 0.023870157077908516, -0.00827295333147049, -0.005134936887770891, -0.0442374125123024, -0.02762516401708126, 0.009069067426025867, -0.014489279128611088, -0.0076758679933846, 0.000774967425968498, -0.01393199898302555, 0.01679801009595394, -0.01779315248131752, -0.03242838755249977, -0.02229119837284088, -0.014781187288463116, 0.024082455784082413, -0.007317616604268551, 0.009632982313632965, -0.009268096648156643, -0.02042032964527607, -0.005851439666002989, 0.018443312495946884, 0.024931643158197403, -0.022928088903427124, 0.013533941470086575, 0.0056159221567213535, -0.019677288830280304, -0.008757255971431732, -0.0012953442055732012, -0.010044307447969913, -0.015962090343236923, -0.008604668080806732, -0.0077090393751859665, -0.00108719349373132, 0.00039163013570941985, 0.014170832931995392, 0.024254946038126945, -0.013494135811924934, -0.015418078750371933, -0.07939912378787994, 0.01256533619016409, -0.001224854844622314, 0.011012913659214973, -0.0030965525656938553, 0.005483236629515886, 0.011556924320757389, 0.0018095013219863176, 0.010661296546459198, 0.003592465305700898, -0.03226916119456291, 0.018854638561606407, 0.013759507797658443, -0.00097441062098369, -0.024732615798711777, -0.022065632045269012, 0.02096434123814106, 0.010203530080616474, 0.0005701338523067534, 0.032136477530002594, -0.012074398808181286, 0.00492927385494113, 0.005413576494902372, 0.00789479911327362, 0.005164790898561478, 0.002947281114757061, 0.012120839208364487, 0.02847435139119625, -0.006020613946020603, -0.019358843564987183, 0.014104490168392658, -0.0052178651094436646, -0.000959483499173075, -0.005586068145930767, 0.01771354116499424, 0.011012913659214973, -0.005619239527732134, 0.02908470667898655, -0.003439876949414611, 0.03218955174088478, -0.03999147191643715, -0.027970146387815475, 0.02916431799530983, -0.006879753898829222, -0.022331003099679947, -0.0022506811656057835, -0.011835564859211445, 0.009414050728082657, 0.011278284713625908, 0.03598436340689659, 0.023724203929305077, 0.009108873084187508, 0.006932828109711409, -0.016824547201395035, 0.0020367256365716457, -0.05238431692123413, 0.0031728469766676426, 0.005224499385803938, -0.014953678473830223, 0.0005319867632351816, 0.035082098096609116, 0.012936855666339397, -0.0023170241620391607, -0.01832389645278454, -0.013036370277404785, -0.01585594192147255, -0.018775027245283127, -0.026643289253115654, 0.010170359164476395, -0.022105438634753227, -0.02482549473643303, 0.00037504444480873644, 0.009838644415140152, -0.007649330887943506, 0.02319345995783806, 0.0038644711021333933, -0.0053770882077515125, -0.009646250866353512, -0.030066579580307007, 0.03425944969058037, -0.008379101753234863, -0.0003172017459291965, -0.041344866156578064, -0.012074398808181286, 0.022384077310562134, -0.012081033550202847, -0.00609027361497283, 0.018509656190872192, -0.002063262742012739, 0.011457410641014576, -0.03362255543470383, 0.0044748252257704735, 0.013759507797658443, 0.01118540484458208, 0.019159816205501556, 0.03216301277279854, 0.006332424934953451, -0.0100973816588521, 0.016731666401028633, 0.014953678473830223, 0.011901907622814178, 0.00611349381506443, -0.02072550728917122, -0.024387631565332413, 0.002149508334696293, 0.010336216539144516, 0.009287999011576176, -0.024772420525550842, -0.014515816234052181, -0.0015930577646940947, 1.1577604709600564e-05, 0.013640089891850948, 0.0036389054730534554, 0.007450302131474018, -0.015073095448315144, 0.004713659640401602, -0.011954981833696365, -0.02227792888879776, -0.015829404816031456, 0.015338467434048653, 0.020791849121451378, 0.007835091091692448, 0.023631323128938675, -0.00882359966635704, 0.05068593844771385, -0.012512261979281902, 0.01206113025546074, -0.0311015285551548, 0.017514511942863464, -0.0005738656618632376, -0.0047965883277356625, 0.021932946518063545, -0.03086269460618496, -0.0337287038564682, 0.005164790898561478, 0.025886980816721916, 0.004395213909447193, 0.0016560833901166916, -0.005340599454939365, 0.0856088176369667, -0.0030783081892877817, -0.012326502241194248, 0.018974054604768753, 0.008425542153418064, -0.0054334793239831924, 0.006820044945925474, 0.020566284656524658, 0.004584291018545628, -0.03266721963882446, 0.024719346314668655, 0.005841488018631935, -0.006305887829512358, -0.004627414047718048, -0.009540102444589138, -0.00031803103047423065, -0.04933254420757294, 0.02977467142045498, -0.003479682607576251, 0.014913872815668583, 0.03566591814160347, -0.0072181024588644505, 0.0010606563882902265, -0.025555266067385674, -0.02482549473643303, -0.014409666880965233, 0.023578248918056488, -0.00016305828467011452, 0.008007582277059555, -0.001324369222857058, 0.03646203130483627, -0.0055197253823280334, -0.017740078270435333, -0.04516621306538582, -0.017846226692199707, 0.04349437355995178, -0.0025459069292992353, 0.005506456829607487, 0.03890344873070717, -0.012392845004796982, 0.001495201955549419, 0.020858192816376686, -0.02985428273677826, -0.03606397286057472, -0.00769577082246542, 0.0020549697801470757, 0.017607392743229866, -0.01957114040851593, 0.011895272880792618], "f6db1301-4642-4407-b005-e75982801961": [-0.01889824867248535, -0.01834435760974884, 0.012633999809622765, -0.019175194203853607, -0.011374556459486485, 0.028986984863877296, -0.03059590794146061, -0.02385689504444599, 0.017909156158566475, -0.013807722367346287, 0.008196274749934673, 0.0035013852175325155, 0.0035871064756065607, -0.008209462277591228, -0.009231523610651493, -0.012192205525934696, 0.018489424139261246, -0.02414702996611595, 0.018014660105109215, -0.043467290699481964, 0.021654518321156502, -0.016761809587478638, 0.012251551263034344, -0.016722247004508972, -0.029224367812275887, -0.0013550558360293508, 0.021272068843245506, -0.03431489318609238, -0.009732663631439209, 0.010174457915127277, 0.015311142429709435, -0.0008114674710668623, -0.004889410920441151, -0.0016064500669017434, -0.0056740902364254, -0.007108273450285196, 0.019544454291462898, -0.006785170175135136, -0.00934362132102251, -0.00466521643102169, 0.01018105261027813, 0.002017747377976775, 0.009983234107494354, 0.004741047043353319, -0.011460277251899242, 0.03497428819537163, -0.011130580678582191, 0.00017412137822248042, -0.014176983386278152, 0.010932762175798416, -0.0066730729304254055, 0.017935533076524734, -0.04254413768649101, -0.012937321327626705, 0.003163445508107543, 0.007780855987221003, -0.003465118585154414, 0.009831572882831097, 0.006729121785610914, -0.01511332392692566, 0.024054713547229767, -0.007813825272023678, -0.021931463852524757, -0.004157482646405697, 0.002996948314830661, 0.005641120485961437, -0.022023778408765793, -0.000809818971902132, -0.019096067175269127, -0.013675843365490437, 0.034183014184236526, 0.034183014184236526, 0.009989827871322632, -0.0002637578290887177, 0.024542666971683502, -0.0036761248484253883, -0.024358035996556282, 0.018753182142972946, 0.014783626422286034, 0.022036965936422348, 0.010266773402690887, -0.013900037854909897, -0.025360316038131714, -0.01322745531797409, 0.022129282355308533, 0.0039860401302576065, 0.0018908139318227768, 0.004948756191879511, 0.0087237898260355, -0.015258390456438065, 0.0009264493710361421, 0.029461748898029327, 0.0009396372479386628, 0.014678123407065868, 0.009139209054410458, 0.02595376968383789, 0.003428851719945669, 0.03070141188800335, -0.0057466235011816025, -0.04998210817575455, -0.012152642011642456, 0.027404438704252243, -0.0069434246979653835, 0.0012775770155712962, -0.02634940668940544, -0.0255845095962286, 0.049560096114873886, -0.021614953875541687, -0.007134649436920881, -0.019504891708493233, -0.04140998050570488, 0.004846550058573484, -0.01747395657002926, -0.04549822583794594, -0.03708435222506523, 0.010649221949279308, 0.008347935043275356, -0.005894987378269434, -0.019412577152252197, -0.002952439244836569, 0.009745852090418339, 0.01496825646609068, 0.03618757426738739, 0.008097365498542786, 0.017170634120702744, 0.0017984986770898104, 0.009983234107494354, -0.02592739462852478, -0.014519868418574333, -0.02503061853349209, 0.04075058549642563, 0.011334992945194244, -0.008103959262371063, -0.01269993931055069, -0.0025370207149535418, -0.019307073205709457, -0.009508470073342323, -0.013913225382566452, -0.010570094920694828, -0.007378625217825174, 0.02388327196240425, 0.011156956665217876, 0.010893198661506176, -0.02640215866267681, 0.021087437868118286, 0.017078319564461708, 0.003178281942382455, 0.006976394448429346, 0.004058573395013809, 0.014348425902426243, -0.00330356671474874, -0.029804633930325508, -0.008427063003182411, -0.03046402893960476, -0.00021698202181141824, 0.010939355939626694, 0.026362594217061996, -0.006138963624835014, 0.007207182701677084, -0.012455963529646397, 0.0027381358668208122, 0.021773207932710648, 0.024344848468899727, -0.027747323736548424, 0.010840446688234806, 0.03238946199417114, 0.0042563918977975845, 0.03705797344446182, -0.0024842689745128155, -0.003448633709922433, 0.010227209888398647, -0.0071478369645774364, -0.025017431005835533, 0.01606285199522972, -0.01321426685899496, 0.04293977469205856, -0.0072863101959228516, 0.019979655742645264, -0.0017523410497233272, -0.020375292748212814, -0.02280186489224434, -0.011334992945194244, -0.007108273450285196, 0.031756442040205, -0.014598995447158813, -0.004108028020709753, 0.017961908131837845, 0.0023045840207487345, 0.019636770710349083, 0.0009742554975673556, 0.004520149901509285, 0.04789842292666435, -0.0013023043284192681, -0.0021727050188928843, -0.5937716364860535, -0.02359313704073429, -0.0012149345129728317, -0.011631720699369907, 0.026797795668244362, 0.01786959357559681, 0.024344848468899727, 0.008347935043275356, -0.02367226593196392, 0.006458770018070936, 0.0020160989370197058, 0.019584018737077713, -0.012429587543010712, 0.022195221856236458, -0.0072401524521410465, -0.02993651293218136, -0.01815972663462162, 0.016339797526597977, -0.0004574549966491759, 0.008288590237498283, -0.004955350421369076, 0.023922834545373917, -0.013425273820757866, 4.360761886346154e-05, 0.007279715966433287, -0.006277436390519142, 0.0411989726126194, 0.0013979164650663733, -0.019267508760094643, 0.021667705848813057, -0.04064508154988289, 0.014875941909849644, -0.0074445647187530994, 0.009521657600998878, 0.06161382794380188, 0.017513519152998924, -0.03658321127295494, 0.033391740173101425, 0.004948756191879511, 0.05293619632720947, -0.0012421344872564077, -0.012324084527790546, 0.048531439155340195, -0.010530531406402588, 0.010326119139790535, -0.006142260506749153, 0.002736487425863743, -0.043994806706905365, -0.0024958085268735886, 0.013979164883494377, 0.028433093801140785, -0.011618532240390778, -0.004925677552819252, 0.002116656629368663, -0.008822699077427387, 0.005463084205985069, 0.043203532695770264, -0.0320202000439167, 0.020335728302598, 0.0006041702581569552, -0.00456630764529109, 0.012950509786605835, -0.0039662583731114864, 0.0007063764496706426, -0.032574091106653214, 0.014031916856765747, -0.02372501604259014, -0.010121706873178482, 0.026692291721701622, -0.02653403766453266, -0.00030496998806484044, -0.014928692951798439, 0.029620004817843437, -0.01627385802567005, 0.023237064480781555, 0.04594661295413971, 0.009805196896195412, -0.02380414493381977, -0.002027638256549835, 0.002812317805364728, 0.01765858754515648, -0.019267508760094643, 0.010649221949279308, 0.000527103547938168, 0.006241169758141041, -0.0078072319738566875, -0.02621752768754959, -0.004922380670905113, 0.009844761341810226, 0.012284521013498306, 0.003357966896146536, 0.019307073205709457, 0.015482584945857525, -0.03468415513634682, -0.015350705944001675, 0.01126905344426632, -0.03141355887055397, 0.013794534839689732, 0.01553533598780632, 0.01569359004497528, -0.029197990894317627, -0.01595734804868698, 0.000579030835069716, -0.012633999809622765, 0.014401177875697613, -0.021364383399486542, -0.04069783166050911, 0.024173405021429062, 0.048636943101882935, -0.01590459793806076, -0.010411839932203293, -0.011374556459486485, -0.02017747424542904, 0.00223699607886374, 0.02288099192082882, -0.03035852685570717, 0.040671456605196, 0.013352740556001663, 0.008631475269794464, -0.024160217493772507, 0.012462557293474674, 0.0037849247455596924, 0.01506057195365429, 2.823032991727814e-05, 0.02102149836719036, 0.010187646374106407, 0.0461839959025383, 0.002133141504600644, -0.033840131014585495, -0.0005806793342344463, -0.023474447429180145, 0.005799375474452972, 0.016933253034949303, -0.025175685063004494, 0.014111043885350227, 0.01603647693991661, 0.0032656516414135695, -0.012073514983057976, 0.019280698150396347, -0.024028338491916656, -0.006452175788581371, -0.02240622788667679, -0.0029854089953005314, -0.008011643774807453, -0.002497456967830658, -0.0200719702988863, 0.0002204850607085973, 0.002789239166304469, -0.00761600723490119, -0.003794815856963396, 0.024806423112750053, 0.0016352985985577106, 0.012680158019065857, 0.019096067175269127, 0.0007459401385858655, -0.01182294450700283, 0.002327662892639637, -0.03291697800159454, -0.02237985096871853, -0.00886885728687048, 0.0011193222599104047, -0.00881610531359911, -0.016498051583766937, 0.015258390456438065, -0.04125172644853592, -0.021773207932710648, 0.005904878489673138, -0.026125213131308556, -0.01710469461977482, -0.01991371624171734, -0.001231419388204813, -0.01566721498966217, 0.008011643774807453, -0.019109254702925682, 0.017645398154854774, -0.019491704180836678, -0.013557152822613716, 0.01291094534099102, 0.013056012801826, -0.0015372135676443577, 0.006488442420959473, -0.015337517485022545, 0.00029157602693885565, 0.0023210688959807158, 0.007866577245295048, 0.029567252844572067, 0.03708435222506523, 0.029514500871300697, -0.02613840065896511, -0.006122478749603033, -0.0021347899455577135, 0.021509451791644096, 0.013121952302753925, 0.002764511853456497, 0.03763824328780174, 0.009752445854246616, 0.027536317706108093, 0.026969237253069878, 0.012680158019065857, 0.014256110414862633, 0.014097856357693672, -0.01169106550514698, 0.005416926462203264, -0.023870084434747696, 0.012337272055447102, -0.003564027603715658, -0.002251832513138652, -0.005248780827969313, 0.0006078793667256832, 0.021496262401342392, -0.00206390512175858, -0.024845987558364868, -0.029171615839004517, 0.01271312776952982, 0.023263441398739815, 0.01622110605239868, -0.019689522683620453, -0.011869102716445923, -0.01763221062719822, 0.014216546900570393, 0.01064262818545103, -0.014941881410777569, 0.02230072394013405, -0.023606326431035995, -0.008189680986106396, -0.019953280687332153, 0.032705970108509064, -0.010972325690090656, -0.01808059960603714, -0.026956049725413322, 0.009910700842738152, 0.009060081094503403, -0.005186138208955526, 0.0034947912208735943, 0.014282486401498318, -0.009363402612507343, 0.012291114777326584, -0.005466381087899208, 0.03589744120836258, -0.002782645169645548, 0.005248780827969313, 0.0092513058334589, -0.008934796787798405, -0.01039205864071846, -0.008460032753646374, 0.028433093801140785, 0.03655683621764183, 0.014097856357693672, -0.01622110605239868, 0.00630381191149354, -0.033787377178668976, -0.011196520179510117, -0.010820665396749973, 0.002701869234442711, 0.028090208768844604, 0.007945704273879528, -0.0006441460573114455, 0.0024611903354525566, 0.038113005459308624, 0.013781346380710602, 0.029804633930325508, 0.011974605731666088, -0.0012594435829669237, 0.00855234730988741, -0.004711374174803495, -0.028248462826013565, -0.01153281144797802, -0.003399179084226489, -0.011209707707166672, -0.005110308062285185, -0.014084667898714542, 0.004378379788249731, 0.014150607399642467, -0.015034195967018604, -0.013234049081802368, 0.005050962325185537, -0.003353021340444684, -0.008671038784086704, 0.020770929753780365, -0.0077149164862930775, 0.0006437339470721781, -0.02632303163409233, 0.04686976596713066, 0.005499350838363171, 0.013326364569365978, -0.0011382799129933119, 0.002848584670573473, 0.01157237496227026, 0.024938302114605904, 0.015390269458293915, 0.023606326431035995, 0.01574634201824665, 0.01627385802567005, 0.026903297752141953, -0.018225666135549545, -0.008407280780375004, -0.0010748131899163127, -0.029540877789258957, -0.01847623661160469, -0.001671565230935812, -0.014190170913934708, -0.010266773402690887, -0.025808703154325485, -0.023579949513077736, 0.029224367812275887, 0.003018378745764494, -0.004309143405407667, -0.014387989416718483, -0.005146574694663286, -0.026599977165460587, -0.017012380063533783, -0.008967766538262367, -0.010266773402690887, -0.026547225192189217, -0.027193432673811913, 0.02041485533118248, -0.02547900564968586, -0.021140189841389656, 0.04098796844482422, 0.005459786858409643, -0.026876922696828842, -0.019425764679908752, -3.199094135197811e-05, -0.006406018510460854, 0.007154431194067001, -0.005054259207099676, 0.005829047877341509, 0.005080635193735361, -0.04597298800945282, 0.0035310578532516956, -0.010372276417911053, -0.010754725895822048, 0.0037750338669866323, -0.008367717266082764, -0.01710469461977482, 0.00911942683160305, 0.01031293161213398, -0.01908287964761257, 0.005855423863977194, 0.01637936197221279, -0.0072137764655053616, -0.02104787528514862, 0.012132859788835049, -0.016814561560750008, 0.004520149901509285, -0.027061553671956062, -0.0080709895119071, 0.033734627068042755, 0.0074907224625349045, -0.010583283379673958, 0.007800637744367123, 0.024437163025140762, 0.017961908131837845, 0.007279715966433287, -0.004609168041497469, 0.0014836378395557404, -0.005278453696519136, 0.01603647693991661, -0.0020655535627156496, 0.005126792937517166, 0.021298443898558617, 0.04159460961818695, -0.014704499393701553, 0.008288590237498283, -0.0038310824893414974, 0.015970537438988686, 0.003547542728483677, 0.0009462311863899231, 0.017197011038661003, -0.010425028391182423, -0.011717441491782665, 0.026731856167316437, -0.03431489318609238, -0.028591347858309746, 0.02497786656022072, -0.005509241484105587, -0.054228611290454865, -0.011011889204382896, -0.005627932492643595, 0.017276138067245483, -0.03803388029336929, -0.014401177875697613, 0.0014935287181288004, 0.009607379324734211, 0.016207918524742126, -0.0059081753715872765, -0.014506680890917778, -0.004312440287321806, -0.013636279851198196, -0.04077696055173874, -0.006930237170308828, -0.01304282434284687, -0.03560730814933777, -0.04024944454431534, 0.01781684160232544, -0.03729535639286041, -0.04122534766793251, 0.01170425396412611, -0.011605344712734222, 0.019293885678052902, 0.016181543469429016, -0.02123250439763069, -0.013543964363634586, 0.01710469461977482, -0.0038871311116963625, 0.008631475269794464, -0.027087928727269173, -0.03544905409216881, 0.021957838907837868, -0.007827013731002808, 0.006956612691283226, 0.005159762687981129, -0.0066302125342190266, 0.03513254225254059, 0.016880501061677933, 0.0005984005983918905, 0.03990656137466431, 0.04114622250199318, -0.004991617053747177, 0.005835642106831074, 0.013128546066582203, 0.011229489929974079, 0.00017710926476866007, -0.021957838907837868, 0.00022707901371177286, -0.029461748898029327, 0.0024743780959397554, 0.005832345224916935, -0.017645398154854774, -0.02264360897243023, 0.004655325785279274, 0.0056114476174116135, 0.012093296274542809, 0.007002770435065031, 0.025360316038131714, 0.011809756979346275, -0.014770438894629478, -0.017276138067245483, 0.0074907224625349045, 0.0015916136326268315, 0.00048630349920131266, 0.02409427799284458, -0.018463047221302986, 0.011091017164289951, 0.010411839932203293, 0.0027051663491874933, 0.010814070701599121, 0.01721019856631756, -0.0021347899455577135, -0.006765388417989016, -0.024054713547229767, -0.043862927705049515, -0.020032407715916634, 0.013794534839689732, -0.003329942701384425, 0.018647678196430206, -0.0005576005205512047, -0.017170634120702744, -0.027246184647083282, 0.02311837300658226, 0.03104429692029953, 0.011427308432757854, 0.01511332392692566, -0.02240622788667679, -0.01868724264204502, -0.0053443931974470615, 0.019438952207565308, -2.6581843485473655e-05, -0.03178281709551811, -0.02510974556207657, -0.014229735359549522, 0.011757005006074905, 0.022920554503798485, 0.014730874449014664, 0.02340850792825222, 0.012324084527790546, -0.027536317706108093, 0.005848830100148916, 0.004652028903365135, -0.03207295387983322, -0.012244957499206066, -0.0016278803814202547, 0.022419415414333344, 0.01553533598780632, 0.014387989416718483, 0.018621303141117096, 0.013689031824469566, 0.004140997771173716, 0.012541685253381729, 0.005707059986889362, 0.0011696011060848832, 0.021140189841389656, -0.005730138625949621, -0.009673318825662136, 0.009752445854246616, 0.022683173418045044, -0.00038821855559945107, 0.008222650736570358, 0.008921608328819275, 0.007919329218566418, -0.006059836130589247, 0.006884079426527023, 0.002573287347331643, -0.043836552649736404, 0.0020886322017759085, -0.01728932559490204, 0.006251060403883457, 0.007543473970144987, 0.006023569498211145, -0.015812281519174576, -0.022063342854380608, -0.0065840547904372215, 0.029461748898029327, 0.019135629758238792, 0.022683173418045044, -0.016155166551470757, -0.01166469044983387, -0.020797304809093475, -0.00250240252353251, 0.005370768718421459, 0.009462311863899231, -0.0016163409454748034, 0.009409560821950436, -0.003534354967996478, -0.006119181867688894, -0.003242572769522667, 0.01321426685899496, 0.0026787903625518084, 0.017447579652071, 0.03141355887055397, 0.0022749113850295544, -0.027562692761421204, -0.014546244405210018, -0.0314926840364933, -0.012891164049506187, -0.012310897000133991, -0.011658095754683018, -0.02553175762295723, -0.028485845774412155, 0.018621303141117096, -0.00654778815805912, -0.0034453365951776505, 0.004226719029247761, -0.003517870092764497, -0.014269298873841763, -0.048663318157196045, 0.01792234368622303, 0.001917189685627818, 0.028617724776268005, 0.028063833713531494, -0.018568551167845726, 0.0008403159445151687, -0.032574091106653214, -0.0018809230532497168, -0.0014506680890917778, 0.02621752768754959, 0.06572844833135605, -0.004160779993981123, -0.01524520292878151, 0.0005316368769854307, -0.010405246168375015, -0.0007475885795429349, -0.028986984863877296, 0.010095330886542797, 0.03072778694331646, -0.002045771572738886, -0.019214758649468422, 0.024160217493772507, -0.024489914998412132, -0.005585072096437216, -0.03217845410108566, -0.015627650544047356, -0.027378063648939133, 0.015785906463861465, -0.005430114455521107, -0.0011588860070332885, -0.013260425068438053, 0.02282823994755745, -0.003082669572904706, 0.0021380868274718523, -0.01256806030869484, -0.015166074968874454, -0.032969728112220764, 0.020006030797958374, -0.013675843365490437, 0.022709548473358154, -0.015166074968874454, -0.014915505424141884, 0.012020763009786606, -0.011196520179510117, -0.006811546161770821, -0.024278908967971802, -0.01978183723986149, 0.04584110900759697, 0.009607379324734211, -0.017091507092118263, -0.029725506901741028, 0.012093296274542809, 0.012357054278254509, -0.02404152601957321, -0.003412366844713688, 0.02012472227215767, -0.008117146790027618, -0.013662655837833881, -0.005393847823143005, -0.013181297108530998, 0.02128525637090206, -0.026890110224485397, -0.0010393706616014242, -0.02094237133860588, -0.054070353507995605, -0.008150116540491581, 0.030094768851995468, -0.027852827683091164, -0.02582189068198204, -0.017988283187150955, -0.034525901079177856, -0.0012668618001043797, -0.007503910455852747, -0.003906912636011839, 0.005258671939373016, 0.05045687407255173, -0.006274139508605003, 0.010906386189162731, -0.015482584945857525, 0.014598995447158813, -0.024265719577670097, -0.0069961766712367535, -0.019359825178980827, -0.008097365498542786, 0.028222087770700455, -0.019663145765662193, -0.013194485567510128, -0.029751883819699287, 0.0024793236516416073, 0.015680402517318726, -0.004262986127287149, 0.024938302114605904, 0.04175286367535591, -0.023896459490060806, 0.016260670498013496, -0.01003598514944315, -0.02157539129257202, -0.0008291886770166457, -0.028353966772556305, -0.008301777765154839, 0.014401177875697613, -0.0020408262498676777, -0.00921174231916666, 0.005730138625949621, -0.022656798362731934, 0.0118756964802742, -0.014005540870130062, -0.021245693787932396, 0.018225666135549545, -0.027694571763277054, -0.02052035927772522, -0.01511332392692566, -0.0065840547904372215, -0.03505341708660126, -0.008321559987962246, -0.006518115289509296, -0.0010558555368334055, 0.0034420397132635117, 0.0018149835523217916, 0.017513519152998924, 0.026230717077851295, 0.003583809593692422, -0.007114867679774761, -0.028459470719099045, -0.009805196896195412, -0.013062606565654278, -0.02650766260921955, -0.012680158019065857, -0.007385219447314739, 0.020823679864406586, -0.008394093252718449, -0.0346314013004303, -0.0023754688445478678, 0.01012830063700676, -0.009093050844967365, 0.0014259407762438059, 0.0026210935320705175, 0.018331170082092285, 0.016418924555182457, 0.0007616007351316512, -0.006432394031435251, 0.029699131846427917, 0.0038508642464876175, 0.01786959357559681, 0.007774262223392725, -0.008717196062207222, -0.029831010848283768, -0.015654027462005615, -0.012390024028718472, -0.015429832972586155, -0.012324084527790546, -0.002527129603549838, 0.01523201446980238, 0.010741537436842918, -0.003544245846569538, 0.03539630025625229, 0.024423975497484207, -0.014506680890917778, 9.272736497223377e-05, -0.027404438704252243, -0.012535090558230877, 0.013168109580874443, 0.006336781661957502, -0.03104429692029953, 0.016471676528453827, 0.022577669471502304, 0.0015792499762028456, 0.01174381747841835, 0.028142960742115974, -0.002243590075522661, -0.0012643891386687756, 0.009712882339954376, -0.021746832877397537, 0.005390550475567579, 0.004124512895941734, -0.0056147449649870396, 0.002548560034483671, -0.009732663631439209, -0.005809266120195389, 0.016722247004508972, 0.010906386189162731, 0.005179544445127249, -0.009772227145731449, 0.00035421852953732014, -0.05014036223292351, -0.00023305477225221694, 0.008763354271650314, -0.0018759776139631867, -0.01972908526659012, 0.007279715966433287, 0.005660902243107557, -0.019795024767518044, 0.0021727050188928843, 0.017447579652071, 0.023184312507510185, -0.04019669443368912, 0.012798848561942577, 0.028353966772556305, -0.019742272794246674, 0.005529023706912994, -9.952736581908539e-05, -0.0010509100975468755, -0.0044937739148736, -0.01169106550514698, 0.019623583182692528, -0.043942052870988846, 0.008769948035478592, -0.0037025006022304296, -0.020744552835822105, -0.01821247860789299, 0.011018482968211174, 0.024305284023284912, -0.006844515912234783, 0.0033497244585305452, 0.24434524774551392, -0.028063833713531494, 0.0031337726395577192, 0.022010590881109238, 0.003353021340444684, 0.020480794832110405, 0.010978919453918934, -0.0104316221550107, -0.00014795166498515755, 0.0187663696706295, -0.011104204691946507, -0.025703201070427895, -0.004935568198561668, -0.0013946195831522346, 0.012198799289762974, -0.04135722666978836, -0.03170369192957878, -0.014612183906137943, -0.027562692761421204, -0.0006713460898026824, 0.03803388029336929, -0.002922766376286745, 0.016854126006364822, 0.002223808318376541, 0.005769702605903149, -0.007998456247150898, -0.01288457028567791, 0.022472167387604713, 0.025650449097156525, -0.00447399215772748, -0.03642495721578598, 0.0028864997439086437, 0.00911942683160305, -0.006963206920772791, 0.012244957499206066, -0.012060326524078846, 0.022129282355308533, 0.005466381087899208, 0.011130580678582191, 0.0075368802063167095, -0.008018238469958305, 0.02539987862110138, 0.019465327262878418, 0.007965486496686935, -0.021852336823940277, 0.007563255727291107, 0.016155166551470757, -0.013056012801826, 0.02062586322426796, -0.0008192977402359247, -0.0398801825940609, -0.003933288622647524, 0.021549014374613762, 0.025149310007691383, 0.008690820075571537, 0.005585072096437216, 0.025914207100868225, -0.0038310824893414974, 0.014242922887206078, 0.03091241791844368, -0.01750033162534237, 0.05293619632720947, -0.008572129532694817, -0.008011643774807453, -0.01258124876767397, 0.009752445854246616, -0.038798775523900986, -0.006613727658987045, 0.004197046626359224, -0.01842348463833332, 0.018172914162278175, 0.0017605834873393178, -0.01721019856631756, -0.011684471741318703, -0.007081897929310799, -0.020480794832110405, 0.009851355105638504, 0.024186592549085617, 0.03449952229857445, 0.026652729138731956, 0.012548279017210007, 0.019768649712204933, -0.006884079426527023, 0.022920554503798485, 0.012976884841918945, -0.009950264357030392, 0.026388971135020256, -0.003043106058612466, -0.0029672756791114807, 0.005921363364905119, 0.008822699077427387, -0.02624390460550785, 0.00643569091334939, -0.005179544445127249, 0.01582546904683113, 0.0036398579832166433, 0.006844515912234783, 0.014810002408921719, -0.012732909061014652, 0.007497316226363182, -0.02067861333489418, 0.03207295387983322, 0.021878711879253387, 0.007009364198893309, -0.034024760127067566, 0.004681701306253672, 0.011473465710878372, 0.01564083993434906, 0.011631720699369907, -0.0113481804728508, 0.0028601239901036024, -0.04061870649456978, -0.00028663058765232563, -0.000853091711178422, 0.012040545232594013, 0.03985380753874779, -0.010814070701599121, -0.0036497488617897034, -0.011005295440554619, 0.014572620391845703, 0.015654027462005615, -0.0002882790577132255, -0.0026952752377837896, 0.0051630595698952675, -0.009607379324734211, -0.019504891708493233, -0.017038755118846893, -0.028538597747683525, -0.0074643464758992195, -0.038798775523900986, 0.038113005459308624, -0.013768158853054047, 0.014348425902426243, 0.010286555625498295, 0.01537708193063736, -6.568188109667972e-05, 0.016643119975924492, -0.01868724264204502, -0.025755951181054115, -0.0025584509130567312, -0.006742309313267469, 0.014071480371057987, 0.016682682558894157, 0.009337027557194233, -0.032732345163822174, -0.033840131014585495, 0.01564083993434906, 0.006877485197037458, -0.0017342077335342765, -0.029435373842716217, -0.03093879297375679, 0.014546244405210018, -0.009482094086706638, 0.009541439823806286, -0.0036662337370216846, -0.019320260733366013, -0.021272068843245506, -0.043546415865421295, -0.0014935287181288004, 0.027800075709819794, -0.05024586617946625, -0.038482267409563065, 0.017328890040516853, -0.028037456795573235, -0.003428851719945669, -0.012851600535213947, -0.16490139067173004, 0.021509451791644096, 0.026494473218917847, -0.006007084622979164, 0.020032407715916634, -0.01496825646609068, 0.012653782032430172, -0.027430813759565353, 0.00015815166989341378, -0.013108763843774796, 0.033734627068042755, -0.005687278229743242, -0.014559431932866573, -0.018779557198286057, -0.014440741389989853, 0.009264493361115456, -0.008572129532694817, -0.001902353367768228, 0.054545119404792786, 0.008928202092647552, 0.03581831231713295, 0.0018479533027857542, 0.0025716389063745737, 0.020322540774941444, -0.013662655837833881, 0.004447616636753082, -0.026758231222629547, 0.005736732855439186, 0.015337517485022545, -0.01195482350885868, -0.006897267419844866, -0.006363157648593187, 0.012798848561942577, 0.027536317706108093, -0.00035854580346494913, -0.017249761149287224, 0.011427308432757854, 0.003926694858819246, -0.010649221949279308, 0.012053732760250568, -0.0018693836173042655, 0.04154185950756073, 0.015733154490590096, 0.004945459309965372, 0.00388383399695158, -0.0023540386464446783, -0.005153168458491564, 0.009020517580211163, 0.009554627351462841, -0.009666724130511284, -0.0009371645282953978, -0.017223386093974113, -0.009218336082994938, -0.016076039522886276, 0.007161024957895279, 0.014361613430082798, 0.01060306467115879, 0.004441022407263517, -0.0025963662192225456, 0.009416154585778713, -0.0008786432445049286, -0.03473690524697304, 0.005288344342261553, -0.0010212373454123735, -0.0025353720411658287, -0.011302023194730282, -0.004190452396869659, 0.027246184647083282, -0.012357054278254509, 0.018014660105109215, -0.002898039063438773, -0.028169335797429085, 0.013596716336905956, 0.02131163328886032, 0.011803163215517998, 0.0016105712857097387, 0.0043717860244214535, 0.024529477581381798, 0.03136080503463745, 0.0029507908038794994, -0.018489424139261246, 0.04626312479376793, -0.00933043286204338, -0.00890842080116272, 0.008618286810815334, 0.006554381921887398, 0.008150116540491581, -0.014269298873841763, -0.03468415513634682, 0.010866822674870491, 0.043203532695770264, -0.03449952229857445, 0.009389778599143028, 0.021786397323012352, -0.0034552274737507105, 0.01513969898223877, -0.0024958085268735886, 0.009224929846823215, -0.015996912494301796, 0.0048927078023552895, -0.0008910069009289145, -0.001583371195010841, 0.008638069033622742, 0.005169653333723545, 0.029778258875012398, 0.00900073628872633, -0.034156639128923416, 0.02009834721684456, 0.03790200129151344, 0.006870891433209181, 0.0037156883627176285, 0.004770719911903143, 0.01792234368622303, 0.016392549499869347, 0.04201662167906761, -0.005753217730671167, -0.001531443907879293, 0.006491739768534899, 0.002322717336937785, 0.008539159782230854, -0.010959138162434101, -0.03080691397190094, 0.00022996385814622045, 0.02264360897243023, 0.012759285047650337, -0.024555854499340057, -0.06382939219474792, -0.021192941814661026, 0.0007517097983509302, 0.0401439405977726, -0.01895100064575672, 0.021008310839533806, 0.005885096732527018, 0.010253585875034332, -0.009712882339954376, 0.012462557293474674, -0.008249025791883469, -0.03697884827852249, -0.0314926840364933, -0.0015405105659738183, 0.0013756619300693274, 0.010233803652226925, 0.0035145729780197144, -0.021654518321156502, -0.0006606309325434268, 0.012231769040226936, 0.003062887815758586, -0.011196520179510117, 0.0151528874412179, -0.015258390456438065, 0.0008085825829766691, -0.007187400944530964, -0.00034247306757606566, 0.028380341827869415, 0.008262214250862598, 0.024727296084165573, 0.04138360172510147, -0.0029326574876904488, -0.002993651432916522, -0.002251832513138652, 0.01736845262348652, 0.0009965100325644016, -0.0032244394533336163, -0.01138774398714304, 0.01022061612457037, -0.013464837335050106, -0.01577271893620491, -0.007101679686456919, -0.0069236429408192635, -0.007563255727291107, -0.013926413841545582, -0.048584192991256714, -0.01260762382298708, 0.0010583283146843314, -0.026916487142443657, 0.014625371433794498, -0.028802355751395226, -0.018937813118100166, -0.029250742867588997, -0.014374801889061928, 0.03236308693885803, 0.017183823511004448, 0.027087928727269173, 0.019926903769373894, -0.04694889485836029, 0.005403738468885422, 0.02314474992454052, 0.0022551293950527906, -0.020401667803525925, 0.026929674670100212, -0.008018238469958305, -0.007299497723579407, -0.04209575057029724, -0.033312615007162094, 0.0056740902364254, -0.013497807085514069, -0.011091017164289951, 0.004312440287321806, -0.013847285881638527, 0.02330300398170948, -0.02280186489224434, -0.033787377178668976, -0.02230072394013405, -0.014533056877553463, 0.03020027093589306, -0.017144259065389633, 0.011117392219603062, -0.009112833067774773, -0.011420713737607002, -0.004764125682413578, 0.02012472227215767, 0.021773207932710648, -0.019702710211277008, 0.01056350115686655, -0.0006082914769649506, -0.02346125990152359, -0.015034195967018604, 0.0016847531078383327, -0.006930237170308828, -0.017447579652071, 0.001489407499320805, -1.889320083137136e-05, -0.004091543145477772, -0.0039036159869283438, 0.001956753432750702, 0.01868724264204502, -0.010490967892110348, -0.010682191699743271, -0.08334747701883316, 0.012647188268601894, -0.0011984496377408504, 0.010108518414199352, 0.005898284260183573, 0.006748903542757034, 0.011776787228882313, -0.0008139401907101274, 0.007128055207431316, 0.004958647303283215, -0.03534355014562607, 0.02070499025285244, 0.015838658437132835, 0.002012802055105567, -0.024674544110894203, -0.018146539106965065, 0.026573602110147476, 0.005057556554675102, 0.0017506926087662578, 0.030015641823410988, -0.008130335249006748, 0.0038607551250606775, 0.003041457384824753, 0.013326364569365978, -0.007325873710215092, 1.3818952538713347e-05, 0.02091599628329277, 0.024819612503051758, -0.0048036896623671055, -0.017170634120702744, 0.0106953801587224, -0.006514818407595158, 0.00016608501027803868, 0.0007525340770371258, 0.011117392219603062, 0.01165150199085474, -0.004404755774885416, 0.03078053891658783, -0.003679421730339527, 0.028617724776268005, -0.03729535639286041, -0.02666591666638851, 0.03180919587612152, -0.01125586498528719, -0.02516249753534794, -0.004249798133969307, -0.0021891898941248655, 0.008539159782230854, 0.00907986331731081, 0.038851529359817505, 0.020296165719628334, 0.012633999809622765, 0.004098137374967337, -0.013425273820757866, 0.00312223332002759, -0.053859349340200424, 0.001681456109508872, 0.0029293603729456663, -0.017144259065389633, -0.0009346918086521327, 0.02671866863965988, 0.01792234368622303, 0.0036431550979614258, -0.019623583182692528, -0.02075774036347866, -0.023105185478925705, -0.026679104194045067, -0.03096516989171505, 0.013913225382566452, -0.03088604100048542, -0.022195221856236458, -0.002482620533555746, 0.011156956665217876, -0.0033464275766164064, 0.022709548473358154, 0.0006845339667052031, -0.011994387023150921, -0.011499841697514057, -0.026982426643371582, 0.027562692761421204, -0.01165150199085474, 0.0016113955061882734, -0.0398801825940609, -0.013372521847486496, 0.020770929753780365, -0.012146048247814178, -0.0035772155970335007, 0.006349969655275345, 0.0014786922838538885, 0.011816350743174553, -0.03660958632826805, 0.007002770435065031, 0.013926413841545582, 0.016537616029381752, 0.017117884010076523, 0.04154185950756073, 0.015311142429709435, -0.02036210522055626, 0.01721019856631756, 0.010246992111206055, 0.008624880574643612, 0.007998456247150898, -0.020639050751924515, -0.021905086934566498, 0.006488442420959473, 0.01513969898223877, 0.00580596923828125, -0.029329869896173477, -0.009488687850534916, 0.004424537532031536, 0.001701237983070314, 0.014374801889061928, 0.01026017963886261, 0.012950509786605835, -0.014849565923213959, 0.011328399181365967, -0.01784321665763855, -0.02044123224914074, -0.01818610168993473, 0.02332938089966774, 0.014941881410777569, 0.005604853853583336, 0.03476328030228615, -0.008005050010979176, 0.05341096222400665, -0.010880010202527046, 0.003906912636011839, -0.032811474055051804, 0.016563991084694862, -0.0014589105267077684, -0.009561221115291119, 0.01579909399151802, -0.029277119785547256, -0.03120255097746849, 0.007424782961606979, 0.020348915830254555, 0.004137700889259577, 0.005436708219349384, -0.00885566882789135, 0.08403324335813522, -0.005637823604047298, -0.014295673929154873, 0.01271312776952982, 0.01117673795670271, -0.0036266702227294445, 0.0012775770155712962, 0.020428044721484184, 0.005664199590682983, -0.03025302290916443, 0.026758231222629547, 0.010669004172086716, -0.00793911051005125, -0.010148082859814167, -0.011717441491782665, -0.0056740902364254, -0.043810173869132996, 0.03194107487797737, -0.0020441231317818165, 0.019188381731510162, 0.029435373842716217, -0.00578618748113513, 0.007002770435065031, -0.01721019856631756, -0.02598014660179615, -0.014651747420430183, 0.022656798362731934, -0.00020430928270798177, 0.001088825287297368, -0.004767422564327717, 0.03695247322320938, -0.008862263523042202, -0.02396239899098873, -0.03932629153132439, -0.01148005947470665, 0.029118863865733147, -0.004661919549107552, 0.006890673190355301, 0.03608207032084465, -0.006884079426527023, -0.004239907022565603, 0.02616477757692337, -0.033444494009017944, -0.03750636428594589, -0.004780610557645559, -0.00196169875562191, 0.020335728302598, -0.017051944509148598, 0.016774997115135193], "3fc35171-bc33-4726-af97-d66dd2070531": [0.0017415168695151806, -0.025375422090291977, -0.01793593354523182, -0.03292312100529671, -0.01793593354523182, 0.02169625647366047, -0.007710016332566738, -0.013688660226762295, 0.01942383125424385, -0.018639301881194115, 0.020911728963255882, -0.011429760605096817, 0.001611325773410499, 0.0019816095009446144, -0.016691509634256363, 0.0031262764241546392, 0.002130399225279689, -0.01439203042536974, 0.025321315973997116, -0.011909945867955685, 0.011720577254891396, 0.01047615334391594, 0.011815262027084827, -0.018504038453102112, -0.016001665964722633, -0.0011708742240443826, 0.00406804820522666, -0.02576768584549427, 0.019464408978819847, -0.0022132480517029762, 0.031435225158929825, -0.01209255214780569, 0.011341840028762817, 0.006245789583772421, -0.013309923000633717, 0.013749528676271439, 0.01097662840038538, -0.00010308554192306474, 0.008920623920857906, 0.0112606817856431, 0.028648797422647476, -0.004169495776295662, 0.008927387185394764, 0.013621028512716293, -0.0001544962142361328, 0.027783110737800598, -0.03354533389210701, 0.01028678473085165, 0.008859755471348763, 0.029054587706923485, -0.016339823603630066, 0.00584676256403327, -0.018382301554083824, -0.03232796490192413, 0.02935216762125492, 0.003075552638620138, -0.0111930500715971, -0.008514833636581898, -0.0002865894348360598, -0.01965377852320671, 0.013364028185606003, -9.843585576163605e-05, -0.010449101217091084, 0.00538010336458683, 0.005829854402691126, 0.017800670117139816, -0.03405933454632759, -0.008027885109186172, -0.01827409118413925, -0.011517682112753391, 0.04003797844052315, 0.03560134023427963, -0.015027768909931183, -0.003357914974913001, 0.02149336040019989, -0.008311938494443893, -0.014148556627333164, -0.0010144758271053433, 0.015920506790280342, -0.006059802137315273, 0.004937115591019392, -0.00468349689617753, -0.003040045965462923, -0.036142393946647644, -0.005545801017433405, -0.0008513142820447683, 0.004358864389359951, 0.019477935507893562, 0.004385916981846094, -0.02062767557799816, 0.006046276073902845, 0.02786426991224289, 0.015717612579464912, 0.02000546269118786, -0.01885572448372841, -0.01801709085702896, -0.006468974053859711, 0.021141676232218742, -0.000765083881560713, -0.01606929674744606, 0.007716779597103596, 0.028946377336978912, -0.016569772735238075, -0.0036622576881200075, -0.037522077560424805, -0.019302094355225563, 0.022426679730415344, 0.0030687893740832806, 0.017381353303790092, -0.0054375906474888325, -0.01638040319085121, 0.013681896962225437, 0.008318701758980751, -0.02737732045352459, -0.06400666385889053, 0.013654844835400581, 0.03503323346376419, -0.0092249670997262, -0.027756059542298317, -0.016745613887906075, 0.002566623967140913, 0.01655624620616436, 0.014189135283231735, 0.015555296093225479, 0.020465359091758728, 0.013776581734418869, -0.022805416956543922, 0.0032446319237351418, 0.025213105604052544, -0.015514717437326908, 0.033301860094070435, -0.002438123570755124, 0.01612340286374092, 0.010469391010701656, -0.010969865135848522, -0.0021997217554599047, -0.010232679545879364, 0.020695306360721588, -0.028675850480794907, -0.017462510615587234, 0.03630470857024193, 0.025172526016831398, 0.007209541741758585, -0.005359814036637545, 0.00472069438546896, 0.01228192076086998, 0.018436407670378685, 0.0106181800365448, 0.021101096644997597, 0.007615332026034594, -0.00414582435041666, 0.009177624247968197, -0.00030307465931400657, -0.018057670444250107, 0.0075409370474517345, -0.018057670444250107, 0.023738734424114227, 0.007899384945631027, -0.013120554387569427, -0.01612340286374092, 0.019220935180783272, 0.0051535372622311115, 0.013823923654854298, 0.004876247141510248, -0.007676200475543737, 0.03909113630652428, -0.009427862241864204, 0.00418302183970809, 0.0016324607422575355, -0.018328197300434113, 0.005089287180453539, 0.021655676886439323, -0.03024490550160408, 0.0071419100277125835, -0.03208448737859726, 0.021128149703145027, -0.0297309048473835, 0.019761988893151283, -0.0034137112088501453, -0.009515783749520779, -0.025862369686365128, -0.012836501002311707, 0.013107027858495712, 0.016136929392814636, -0.020167779177427292, -0.014919557608664036, 0.02676863595843315, 0.010374706238508224, 0.01486545242369175, -0.01228192076086998, 0.02781016379594803, 0.04726104810833931, -0.0019122869707643986, -0.003466125810518861, -0.5981890559196472, -0.020275989547371864, -4.719029675470665e-06, -0.004984457977116108, 0.011483866721391678, 0.022047940641641617, 0.0205735694617033, 0.025186052545905113, -0.025470105931162834, 0.014703135937452316, 0.011159233748912811, 0.010225916281342506, -0.0008420149679295719, -0.021709783002734184, -0.0008301793714053929, -0.019897252321243286, 0.00898149237036705, -0.017814194783568382, -0.005008128937333822, 0.008961203508079052, -0.02881111390888691, 0.014757242053747177, -0.007358331233263016, -0.013404606841504574, 0.015379454009234905, 0.03395112603902817, 0.008974729105830193, -0.013188186101615429, 0.011023970320820808, 0.013479001820087433, -0.005856906995177269, -0.0007194324280135334, -0.0035540470853447914, -0.0034796521067619324, 0.04663883522152901, -0.010564074851572514, -0.02223731018602848, 0.017692457884550095, 0.012410420924425125, 0.040957771241664886, -0.017205510288476944, -0.018152354285120964, 0.03673755005002022, 0.018544618040323257, 0.016691509634256363, 0.0064148688688874245, 0.01348576508462429, -0.01811177469789982, 0.00744625274091959, 0.011057786643505096, -0.01094957534223795, -0.02591647580265999, 0.010915759950876236, -0.0058197095058858395, 6.372175994329154e-05, 0.02935216762125492, 0.029649747535586357, -0.01776009052991867, 0.016691509634256363, -0.0212363600730896, -0.01064523309469223, 0.026755109429359436, -0.018098248168826103, 0.003190526505932212, -0.018125301226973534, 0.0009375447407364845, -0.01130802370607853, -0.0003614070010371506, 0.007121620234102011, -0.006766553968191147, -0.0029369075782597065, -0.01180849876254797, 0.014527293853461742, -0.007047225255519152, 0.02479378879070282, 0.00270865042693913, 0.026268159970641136, -0.020871149376034737, -0.021101096644997597, -0.004061284940689802, 0.004889773670583963, 0.0029402892105281353, -0.010868418030440807, 0.004771417938172817, 0.019031567499041557, -0.021560993045568466, -0.03533081337809563, -0.006019223481416702, 0.02005956880748272, 0.004954023752361536, 0.011186286807060242, 0.025470105931162834, 0.01882867142558098, -0.010638469830155373, 0.002644400345161557, 0.021046992391347885, -0.017922407016158104, -0.018287617713212967, -0.007791174575686455, -0.012802684679627419, -0.03205743804574013, -0.00014149823982734233, 0.0025750778149813414, 0.006932251621037722, 0.01681324653327465, 0.001448164228349924, -0.038523029536008835, 0.005586380138993263, 0.06016518175601959, -0.00029652283410541713, 0.008305175229907036, 0.007953490130603313, -0.00048229872481897473, -0.009130282327532768, 0.0124983424320817, -0.02881111390888691, 0.012484815903007984, 0.0024854657240211964, 0.0191127248108387, -0.0018581815529614687, 0.030596591532230377, -0.0065467506647109985, 0.023454681038856506, 0.025010211393237114, 0.0042641800828278065, 0.026836266741156578, 0.020357148721814156, -0.015392979606986046, -0.007148672826588154, -0.0024668669793754816, 0.004365627653896809, -0.009522546082735062, 0.016231613233685493, -0.021588046103715897, 0.005511985160410404, -0.011943762190639973, 0.020073095336556435, -0.007385383825749159, 0.014757242053747177, -0.013546633534133434, -0.012586263008415699, 0.006621145643293858, 0.0016950200079008937, 0.004416351672261953, 0.004352101124823093, -0.01647508703172207, -0.01566350646317005, -0.011125418357551098, -0.005833236034959555, -0.0006124897627159953, 0.029595641419291496, -0.00021525908960029483, 0.004352101124823093, 0.03727860376238823, -0.008670386858284473, 0.0017330629052594304, 0.0002519281697459519, -0.03065069578588009, -0.024942578747868538, -0.0029927038121968508, -0.003513467963784933, -0.017746564000844955, -0.035628389567136765, -0.013796871528029442, -0.01394566148519516, -0.015244190581142902, -0.012579500675201416, 0.007527410518378019, -0.02223731018602848, -0.03151638060808182, -0.019694358110427856, 0.013188186101615429, -0.008487781509757042, 0.014662557281553745, 0.005670920014381409, -0.009536072611808777, 0.008805650286376476, 0.003723126370459795, 0.005305708386003971, -0.010570838116109371, 0.014067398384213448, 0.006306658033281565, -0.01629924587905407, -0.02026246301829815, 0.011098365299403667, 0.006259315647184849, 0.017408404499292374, 0.03162459284067154, -0.01464903075248003, 0.0003168123366776854, -0.024022787809371948, 0.03735976293683052, -0.00472745718434453, -0.0007790328818373382, 0.02074941247701645, 0.011132181622087955, 0.007290699519217014, 0.01824703812599182, -0.01842288114130497, 0.02835121750831604, 0.039902716875076294, -0.006851093377918005, -0.01308673806488514, -0.012789159081876278, 0.01678619347512722, -0.03922639787197113, 0.005958354566246271, -0.012031683698296547, 0.01957262121140957, -0.015690559521317482, -0.012018157169222832, -0.007845279760658741, -0.004954023752361536, -0.004348719958215952, 0.017638353630900383, 0.008332228288054466, -0.028729954734444618, 0.010908996686339378, -0.01842288114130497, 0.012593026272952557, 0.028621744364500046, -0.010219153016805649, 0.009015308693051338, -0.031895119696855545, 0.0002813056926243007, 0.018774565309286118, -0.00225213635712862, 0.04433935880661011, -0.0038719160947948694, -0.028729954734444618, -0.03733270987868309, -0.016028719022870064, -0.0311917494982481, 0.0030721710063517094, 0.028540587052702904, -0.042337458580732346, 0.03589891642332077, -0.026836266741156578, 0.046584729105234146, 0.009015308693051338, -0.0038617714308202267, 0.009103230200707912, 0.027323216199874878, -0.010137994773685932, 0.02783721685409546, 0.006654961500316858, 0.034248702228069305, 0.030136695131659508, -0.024523261934518814, 0.028621744364500046, -0.03643997013568878, -0.011064549908041954, -0.01253892108798027, 0.010827838443219662, -0.001280775759369135, -0.000826797797344625, 0.008169911801815033, 0.008345754817128181, 0.0171649307012558, 0.03157048672437668, 0.009306125342845917, 0.03305838629603386, -0.018463460728526115, -0.025497158989310265, -0.002030642470344901, -0.017381353303790092, 0.007385383825749159, -0.020641202107071877, -0.002639327896758914, -0.02321120724081993, 0.0042168376967310905, -0.006746264174580574, 0.015379454009234905, 0.0030637169256806374, -0.013695423491299152, -0.013580449856817722, 0.0171649307012558, -0.0037603238597512245, 0.015095400623977184, 0.01287031639367342, -0.0008927387534640729, -0.024631472304463387, 0.007243357598781586, -0.004480601754039526, -0.0039226398803293705, -0.008805650286376476, -0.005562709178775549, 0.004964168183505535, -0.020451832562685013, 0.023549364879727364, -0.003885442391037941, 0.018098248168826103, -0.01624513976275921, 0.0016544410027563572, 0.004960787016898394, -1.4239647498470731e-05, 0.012511868961155415, -0.01161913014948368, -0.05821738764643669, -0.005992170423269272, 0.02077646553516388, 0.008744781836867332, -0.018057670444250107, -0.02837827056646347, 0.047991469502449036, 0.011138944886624813, -0.018341723829507828, -0.03581776097416878, -0.0004125534906052053, -0.013695423491299152, 0.02108757011592388, -0.025632422417402267, 0.008954440243542194, -0.026376372203230858, 0.006698922254145145, 0.005204260814934969, 0.0019782278686761856, -0.0028743480797857046, 0.02218320406973362, 0.00827812310308218, -0.03178691118955612, -0.013593976385891438, -0.00955636240541935, -0.011544735170900822, 0.024347420781850815, -0.017800670117139816, 0.021412203088402748, 0.008325465023517609, -0.031408172100782394, -0.009901284240186214, -0.028080690652132034, -0.020384201779961586, 0.010983391664922237, -0.0009138736641034484, 0.00668539572507143, 0.021845046430826187, 0.001595263252966106, -0.0125659741461277, 0.00171615497674793, -0.01107807643711567, -0.0009747421718202531, -0.015257716178894043, 0.008616281673312187, -0.025957055389881134, 0.029866168275475502, 0.015474137850105762, -0.002015425357967615, 0.007256883662194014, -0.0055999066680669785, -0.004997984040528536, 0.003543902188539505, 0.018693407997488976, 0.008927387185394764, -0.01334373839199543, -0.009853942319750786, -0.0008449738379567862, -0.014026818796992302, 0.030407221987843513, -0.013830686919391155, 0.02120930887758732, 0.004132298287004232, 0.038009028881788254, 0.0007202778360806406, 0.03343712165951729, 0.013188186101615429, 0.005606669932603836, 0.005028418730944395, -0.01439203042536974, 0.01180849876254797, -0.01624513976275921, 0.006316802930086851, 0.003040045965462923, -0.009285835549235344, -0.03730565682053566, 0.01489250548183918, -0.005041944794356823, -0.043690092861652374, 0.008683913387358189, 0.015230664052069187, 0.0057317884638905525, -0.02100641280412674, 0.012937948107719421, 0.004954023752361536, -0.007162199355661869, 0.00015756077482365072, 0.0012063808972015977, 0.004297995939850807, -0.009279072284698486, -0.01704319380223751, -0.018490511924028397, -0.009495493955910206, -0.017841247841715813, -0.006874764338135719, 0.017570720985531807, 0.033274807035923004, -0.05756812170147896, -0.03159753978252411, -0.010137994773685932, 0.034681547433137894, 0.0064148688688874245, 0.024212157353758812, -0.0071554360911250114, -0.012850027531385422, 0.02005956880748272, -0.013837450183928013, -0.029866168275475502, -0.004108627326786518, -0.017489563673734665, 0.008541886694729328, 9.383901488035917e-05, -0.025673002004623413, -0.001657822635024786, -0.025294264778494835, 0.001350943697616458, 0.011761156842112541, 0.01678619347512722, 0.03178691118955612, 0.01213989406824112, -0.003942929208278656, -0.012762106023728848, -0.005988788791000843, 0.01347223948687315, 0.020844096317887306, -0.009049124084413052, 0.021966783329844475, -0.036142393946647644, -0.03411344066262245, -0.037576183676719666, 0.004862720612436533, -0.0069457776844501495, 0.026416949927806854, 0.007824989967048168, 0.011247155256569386, 0.008298411965370178, 0.013208474963903427, -0.0027424662839621305, 0.009353467263281345, -0.016677983105182648, 0.026159949600696564, -0.0073921470902860165, 0.0033951124642044306, -0.004524562042206526, 0.020073095336556435, -0.02287304773926735, 0.02062767557799816, -0.04628714919090271, 0.041769351810216904, 0.020073095336556435, -0.02459089457988739, -0.019356198608875275, -0.008453965187072754, -0.0405249260365963, -0.01575819030404091, 0.001615552813746035, 0.0067090666852891445, 0.018057670444250107, -0.025591842830181122, -0.01489250548183918, -0.03232796490192413, -0.03603418171405792, -0.013999766670167446, 0.029135745018720627, -0.026836266741156578, -0.042256299406290054, -0.012356315739452839, -0.01489250548183918, 0.0055525642819702625, 0.004578667692840099, 0.022818943485617638, -0.028459427878260612, -0.015501190908253193, 0.0019494843436405063, 0.01156502403318882, 0.009448151104152203, 0.022129099816083908, -0.005863670259714127, -0.013228764757514, -0.007439489476382732, -0.007480068597942591, -0.03405933454632759, -0.0339781753718853, -0.01908567175269127, 0.029866168275475502, -0.003109368495643139, 0.02878406085073948, 0.0063675264827907085, -0.015244190581142902, -0.028648797422647476, 0.016921456903219223, 0.0009493802790530026, -0.015284769237041473, 0.007114856969565153, -0.023346470668911934, -0.002941979793831706, -0.0006835031090304255, 0.02689037285745144, 0.020478885620832443, -0.0225213635712862, -0.01486545242369175, 0.0032243423629552126, 0.005532274954020977, 0.011064549908041954, -0.00991481076925993, -0.0421210378408432, 0.005342905875295401, -0.009603704325854778, -0.00370959984138608, -0.01916683092713356, -0.025591842830181122, -0.009265545755624771, 0.007425962947309017, -0.0012317427899688482, 0.020073095336556435, 0.03067774884402752, -0.0029825589153915644, -0.024726158007979393, -0.009603704325854778, 0.003777231788262725, 0.014324398711323738, 0.011964051984250546, 0.008460728451609612, -0.03727860376238823, 0.018030617386102676, 0.007689727004617453, 0.00850807037204504, 0.007696489803493023, -0.003523612627759576, 0.006769935600459576, 0.012620079331099987, 0.01166647206991911, -0.03584481403231621, -0.018084721639752388, -0.0060564205050468445, -0.016136929392814636, -0.04498862102627754, -0.0052414583042263985, 0.0028523679357022047, 0.0026528541930019855, 0.00896796677261591, -0.004169495776295662, -0.006401342339813709, 0.0119234723970294, 0.0008069309988059103, -0.033301860094070435, 0.010712864808738232, 0.0025175907649099827, 0.02574063278734684, 0.0014836709015071392, 0.00860951840877533, 0.026308739557862282, 0.02267015352845192, -0.005474787671118975, -0.05729759484529495, -0.023075943812727928, -0.004994602873921394, 0.028567640110850334, 0.047044627368450165, -0.007601805496960878, -0.044636934995651245, 0.017665406689047813, -0.013107027858495712, -0.0210605189204216, -0.02536189556121826, 0.006120671052485704, 0.023089470341801643, 8.353574230568483e-05, -0.0069051990285515785, 0.006840948481112719, -0.030434275045990944, 0.019504988566040993, 0.0035269942600280046, -0.01159207709133625, -0.01014475803822279, -0.010516732931137085, 0.01218047272413969, 0.017665406689047813, 0.01441908348351717, -0.006533224135637283, 0.015257716178894043, 0.0026156569365411997, 0.009975679218769073, 0.0022741167340427637, -0.03227385878562927, 0.01629924587905407, -0.016569772735238075, 0.025875896215438843, 3.0942833291192073e-06, -0.02410394512116909, 0.0015521480236202478, 0.011585313826799393, -0.006046276073902845, -0.012883842922747135, 0.007236594334244728, 0.04166113957762718, -0.009292598813772202, -0.007879095152020454, -0.0035777180455625057, 0.007737068925052881, 0.008927387185394764, 0.02358994446694851, -0.004155969247221947, 0.0004045222303830087, -0.029406271874904633, -0.009062650613486767, 0.015081874094903469, -0.011889657005667686, -0.006526461336761713, -0.010225916281342506, 0.009766020812094212, -0.015284769237041473, -0.018747514113783836, -0.007804700639098883, 0.008629807271063328, -0.024753211066126823, -0.012126367539167404, -0.020614149048924446, -0.022331994026899338, -0.006590711418539286, 0.009353467263281345, -0.007473305333405733, 0.013025869615375996, 0.049425262957811356, -0.03170575201511383, 0.018071196973323822, 0.009502257220447063, -0.0019342672312632203, -0.013905081897974014, 0.0075409370474517345, -0.013276106677949429, -0.033004280179739, 0.05299621820449829, -0.006090236362069845, -0.0003094151325058192, -0.011382418684661388, -0.015230664052069187, 0.029974378645420074, -0.00223522842861712, 0.018531091511249542, -0.003133039455860853, 0.0035912443418055773, 0.010665522888302803, -0.00018746667774394155, -0.020871149376034737, 0.0024939198046922684, 0.008920623920857906, -0.00023882451932877302, 0.012741816230118275, -0.0042641800828278065, 0.03305838629603386, 0.013715713284909725, 0.00606994703412056, 0.0008377879275940359, -0.03603418171405792, -0.05213053151965141, 0.00538010336458683, 0.013600739650428295, -0.012444237247109413, -0.02049241214990616, -0.01381716039031744, -0.010854891501367092, -0.003537139156833291, -0.015000715851783752, 0.018179407343268394, -0.010726391337811947, 0.002678216202184558, 0.02392810396850109, -0.026295213028788567, 0.023860471323132515, -0.009684862568974495, -0.0007625476573593915, -0.01968083158135414, -0.0437983013689518, -0.04203987866640091, -0.010266495868563652, -0.01652919314801693, 0.027242057025432587, -0.006242407951503992, -0.02476673573255539, -0.03200333192944527, -0.021074045449495316, -0.021655676886439323, 0.005163682159036398, -0.0030231380369514227, 0.022142626345157623, 0.009089703671634197, 0.009421098977327347, 0.0007959408103488386, 0.01658329740166664, -0.01635335013270378, 0.010401759296655655, -0.0011674925917759538, -0.007223067805171013, -0.010293547995388508, -0.009982442483305931, -0.0024043077137321234, 0.00745301553979516, -0.0033257899340242147, -0.013607502914965153, -0.0033257899340242147, -0.012978527694940567, 0.006939014885574579, 0.005383484996855259, 0.02436094544827938, -0.007094567641615868, -0.02292715385556221, -0.006279605440795422, -0.009610467590391636, 0.012315736152231693, -0.001033074571751058, -0.009880994446575642, 0.0065636588260531425, 0.03462744131684303, -0.0006632135482504964, -0.007662673946470022, 0.009231730364263058, 0.020397726446390152, -0.04101187735795975, 0.021709783002734184, -0.01819293387234211, -0.0025057552848011255, -0.014026818796992302, 0.013526344671845436, 0.01566350646317005, -0.020911728963255882, -0.0024398143868893385, 0.002794880885630846, 0.0007274636882357299, -0.004460311960428953, 0.004358864389359951, 0.01220752578228712, -0.018761038780212402, -0.017800670117139816, 0.005160300526767969, 0.003139802720397711, -0.01744898408651352, 0.0009908047504723072, 0.020154252648353577, -0.019951358437538147, -0.012248104438185692, 0.016637403517961502, 0.003574336413294077, -0.04974989593029022, -0.009901284240186214, 0.014229713939130306, -0.010996918193995953, -0.014567872509360313, 0.001761806313879788, -0.003804284380748868, 0.007310989312827587, -0.03541196882724762, 0.017651880159974098, -0.020789992064237595, 0.014310872182250023, 0.0186257753521204, 0.008697439916431904, -0.01155149843543768, 0.017232563346624374, 0.0055829985067248344, -0.00944138877093792, 0.008048174902796745, 0.2858928143978119, -0.009252019226551056, -0.005102813243865967, 0.023549364879727364, 0.0029030917212367058, 0.007324515376240015, 0.01968083158135414, -0.00010403661144664511, -0.010679048486053944, 0.029135745018720627, -0.008575702086091042, -0.02663337253034115, -0.008852992206811905, 0.0005520439590327442, 0.0038719160947948694, -0.01704319380223751, -0.026646899059414864, -0.008771833963692188, -0.015095400623977184, 0.005092668812721968, 0.029406271874904633, -0.003946310840547085, -0.011368892155587673, 0.001203844673000276, 0.008710965514183044, 0.012931184843182564, -0.027999533340334892, 0.03730565682053566, 0.026498109102249146, 0.015054821036756039, -0.0075882794335484505, 0.015217137522995472, 0.009238493628799915, -0.0077505954541265965, 0.0022183205001056194, 0.009563125669956207, 0.011314786970615387, 0.019721409305930138, 0.0269444789737463, 0.00781146390363574, 0.0011125418823212385, 0.011301260441541672, -0.02077646553516388, -0.0139591870829463, 0.007885858416557312, 0.0008652633405290544, -0.0023620377760380507, -0.011612366884946823, -0.012403657659888268, 0.0036352050956338644, -0.028080690652132034, -0.009333177469670773, 0.02781016379594803, 0.03603418171405792, -0.005975262727588415, 0.0013374172849580646, 0.001346716657280922, -0.015203610993921757, -0.01225486770272255, -0.004690259695053101, 0.00040008389623835683, 0.033869966864585876, -0.025429528206586838, 0.013661608099937439, -0.030055537819862366, 0.007250120397657156, -0.021709783002734184, 0.019247988238930702, 0.022913627326488495, -0.018869251012802124, -0.017922407016158104, -0.003310572821646929, -0.020194832235574722, -0.005752077791839838, -0.03395112603902817, -0.017746564000844955, 0.04122829809784889, 0.019004514440894127, 0.024942578747868538, 0.009461677633225918, -0.01842288114130497, 0.010273258201777935, 0.007223067805171013, -0.005589761771261692, -0.004981076344847679, -0.01776009052991867, 0.010854891501367092, -0.025388948619365692, -0.01031383778899908, 0.007094567641615868, 0.006854475010186434, 0.0071554360911250114, -0.015555296093225479, -0.025727106258273125, -0.012302210554480553, -0.001024620607495308, -0.010117705911397934, 0.02126341313123703, -0.011253918521106243, 0.007791174575686455, -0.016772666946053505, 0.04363598674535751, 0.01744898408651352, 0.020330095663666725, -0.0212363600730896, 0.009049124084413052, -0.005586380138993263, 0.026930952444672585, -0.004267561715096235, 0.002723867539316416, -0.01847698725759983, -0.046016622334718704, 0.028026586398482323, -0.008217254653573036, 0.004213456064462662, 0.017854774370789528, -0.007310989312827587, -0.02097935974597931, -0.006898435764014721, -0.0007638157694600523, 0.013932134956121445, -0.024266261607408524, -0.0019359580473974347, 0.008717728778719902, 0.0003413288504816592, -0.012931184843182564, -0.02003251574933529, -0.005758841056376696, -0.018923355266451836, -0.030867118388414383, 0.0302178543061018, -0.024672051891684532, 0.012444237247109413, -0.006695540621876717, 0.002326531335711479, -0.004335193429142237, 0.009853942319750786, -0.0016865660436451435, 0.01216694712638855, 0.018030617386102676, 0.027756059542298317, 0.01100368145853281, 0.012653895653784275, 0.009502257220447063, 0.003942929208278656, -0.004389298614114523, 0.007256883662194014, 0.014635504223406315, 0.014080924913287163, -0.009035598486661911, -0.03781965747475624, -0.025213105604052544, -0.017827721312642097, 0.004889773670583963, 0.020194832235574722, 0.005664156749844551, -0.03546607494354248, -0.03795492276549339, 0.003459362545982003, 0.023319417610764503, -0.04861368238925934, -0.003625060198828578, 0.05524159222841263, -0.02353583835065365, 0.0017922406550496817, -0.0017668787622824311, -0.17292079329490662, 0.006107144523411989, 0.021601572632789612, 0.0022656626533716917, 0.020654728636145592, -0.010692575015127659, -0.0060564205050468445, -0.0006492645479738712, -0.002647781977429986, 0.00012448463530745357, 0.022169679403305054, 0.006468974053859711, -0.04926294460892677, -0.020654728636145592, 0.02085762284696102, -0.001273167203180492, -0.024293314665555954, -0.001812530099414289, 0.036169443279504776, 0.013296396471560001, 0.03121880255639553, -0.0003089924284722656, -0.019748462364077568, 0.017570720985531807, 0.009279072284698486, 0.01483839936554432, -0.016542719677090645, 0.01601519249379635, 0.0009088012739084661, -0.03576365485787392, -0.010814311914145947, 0.003547283820807934, 0.01347223948687315, 0.03019080124795437, -0.003171927761286497, -0.02975795790553093, 0.00967133603990078, 0.0018108393996953964, -0.0019122869707643986, 0.010415284894406796, -0.018869251012802124, 0.02886521816253662, -0.0018328196601942182, 0.016434509307146072, 0.02461794763803482, 0.034708600491285324, 0.010821075178682804, -0.0017060101963579655, -0.006387816276401281, -0.003669020952656865, 0.010922523215413094, -0.020898202434182167, -0.02200736291706562, -0.0020948925521224737, 0.023833418264985085, 0.019477935507893562, -0.005407155957072973, 0.02361699752509594, -0.011842314153909683, 0.009995968081057072, -0.009678099304437637, -0.022575469687581062, 0.0021168729290366173, 0.030407221987843513, 0.0026342556811869144, -0.02108757011592388, -0.030461328104138374, 0.02505078911781311, -0.012572737410664558, 0.0026105844881385565, 0.02258899435400963, -0.022602520883083344, 0.02367110177874565, -0.015690559521317482, 0.027336742728948593, -0.0007532482850365341, 0.00348641537129879, 0.016515666618943214, 0.031813960522413254, -0.009610467590391636, -0.020194832235574722, 0.04631420224905014, -0.005325998179614544, -0.027363793924450874, 0.025835318490862846, 0.02129046618938446, 3.08305534417741e-05, 0.0036588760558515787, -0.01882867142558098, -0.016312770545482635, 0.03443807363510132, -0.03936166316270828, -0.00079002307029441, -0.009001782163977623, 0.013127317652106285, 0.017597774043679237, 0.007101330906152725, -0.0027103412430733442, -0.002585222478955984, -0.009130282327532768, 0.0026866700500249863, -0.013999766670167446, -0.015447085723280907, -0.008305175229907036, 0.021709783002734184, -0.007642384618520737, 0.002838841639459133, 0.02072235941886902, 0.030461328104138374, -0.008934150449931622, -0.005319234915077686, 0.018233511596918106, 0.025091368705034256, 0.017854774370789528, 0.018761038780212402, 0.02668747678399086, 0.0074665420688688755, -0.017719510942697525, -0.004440022632479668, -0.0037569422274827957, 0.00013885638327337801, -0.00690858019515872, 0.027972480282187462, 0.029622694477438927, -0.003031591884791851, -0.01370218675583601, -0.047910310328006744, -0.013526344671845436, -0.00690181739628315, 0.018463460728526115, -0.011321550235152245, 0.049885157495737076, 0.014135030098259449, 0.03508733585476875, -0.0042168376967310905, 0.006698922254145145, -0.012910895980894566, -0.02832416445016861, -0.01624513976275921, 0.003543902188539505, -0.0010077126789838076, 0.012836501002311707, -0.011903183534741402, -0.026119371876120567, 0.012667421251535416, 0.021398676559329033, 0.0035202312283217907, -0.014405556954443455, -0.021155202761292458, -0.016393929719924927, -0.01272828970104456, -0.010408521629869938, -0.018720461055636406, 0.027255583554506302, 0.02321120724081993, 0.009664572775363922, 0.03305838629603386, -0.017895353958010674, 0.002950433874502778, -0.015528243035078049, 0.00024220610794145614, -0.008406623266637325, -0.019964884966611862, -0.01776009052991867, 0.03205743804574013, -0.011571787297725677, 0.018896302208304405, -0.01821998506784439, -0.008792123757302761, -0.02003251574933529, -0.011889657005667686, -0.0014143483713269234, -0.02031656913459301, 0.015176558867096901, 0.021398676559329033, -0.04190461337566376, -0.056540120393037796, -0.014500240795314312, -0.006952540948987007, -0.023292364552617073, 0.006567039992660284, 0.019789041951298714, 0.0051535372622311115, 0.019410304725170135, -0.04523209482431412, 0.01209255214780569, 0.006759790703654289, 0.009400809183716774, -0.009001782163977623, 0.01655624620616436, 0.004189785104244947, 0.010969865135848522, -0.023170627653598785, -0.019586145877838135, 0.02883816696703434, -0.016596823930740356, -0.0245097354054451, 0.02229141630232334, -0.030163748189806938, 0.013005579821765423, -0.016542719677090645, -0.008318701758980751, -0.015825822949409485, -0.021831519901752472, 0.02970385178923607, -0.0013340357691049576, -0.005850143730640411, -0.016569772735238075, -0.011328313499689102, -0.01064523309469223, 0.012910895980894566, 0.025645948946475983, -0.0021980309393256903, 0.017056720331311226, -0.0018040761351585388, 0.0019308857154101133, 0.007567989639937878, -0.002527735661715269, 0.021912677213549614, -0.008859755471348763, -0.0105302594602108, -0.012214289046823978, 0.005282037425786257, -0.009786310605704784, 0.007026935927569866, 0.029027534648776054, -0.007263646926730871, -0.016136929392814636, -0.08878692239522934, 0.01773303747177124, -0.016934983432292938, 0.01959967240691185, -0.009218203835189342, -0.0032125068828463554, 0.03781965747475624, -0.006526461336761713, 0.0046124835498631, -0.020668255165219307, -0.029920274391770363, 0.022020889446139336, 0.003983508329838514, -0.03246322646737099, -0.028648797422647476, -0.012532157823443413, 0.024212157353758812, 0.004933733958750963, 0.016055770218372345, 0.006668487563729286, -0.00624917121604085, 0.010577601380646229, 0.017381353303790092, 0.014973662793636322, -0.01054378505796194, 0.019910778850317, -0.015352400951087475, 0.008305175229907036, -0.01827409118413925, -0.018152354285120964, -0.0031228947918862104, 0.004822141956537962, 4.2349081923021004e-05, 0.005765604320913553, -0.022602520883083344, -0.010300311259925365, 0.004456930328160524, -0.0033951124642044306, 0.018409354612231255, 0.024293314665555954, -0.017597774043679237, -0.004294614307582378, 0.016637403517961502, -0.006570421624928713, -0.015744665637612343, 0.015014242380857468, 0.0033511517103761435, -0.013878029771149158, 0.030948275700211525, -0.006019223481416702, 0.027309689670801163, 0.007994069717824459, -0.010733154602348804, -0.016258666291832924, -0.014243240468204021, -0.033842913806438446, 0.005572854075580835, -0.010679048486053944, -0.02157451957464218, -0.002941979793831706, -0.0013982858508825302, 0.013837450183928013, -0.0008339836494997144, -0.022399626672267914, 0.0013864502543583512, 0.0005736015154980123, -0.008109043352305889, 0.008088753558695316, 0.01767893135547638, -0.018801618367433548, -0.02476673573255539, -0.01064523309469223, 0.004358864389359951, -0.0052110240794718266, -0.019897252321243286, -0.006313421297818422, 0.011936998926103115, 0.015528243035078049, -0.03392407298088074, 0.02510489523410797, 0.027039162814617157, 0.005508603528141975, -0.04623304679989815, 0.01873398758471012, 0.01988372579216957, -0.011030733585357666, -0.017083773389458656, 0.010063599795103073, -0.017516616731882095, 0.01486545242369175, -0.02323826029896736, 0.013823923654854298, 0.018084721639752388, 0.013790108263492584, -0.00015396784874610603, 0.03914524242281914, 0.010631706565618515, 0.008738018572330475, 0.02525368519127369, 0.02028951607644558, 0.02313004806637764, -0.005319234915077686, 0.010983391664922237, 0.005261748097836971, -0.01753014326095581, 0.00955636240541935, -0.02338705025613308, -0.05288800597190857, 0.006198447197675705, 0.0015496117994189262, 0.019072145223617554, 0.007513884454965591, -0.016163982450962067, 0.023792840540409088, -0.005978644359856844, -0.0023975444491952658, -0.01790888048708439, -0.027729006484150887, -0.03443807363510132, -0.0011539662955328822, 0.02927100844681263, 0.009488730691373348, 0.011402708478271961, -0.020411252975463867, 0.024685578420758247, -0.010083889588713646, 0.022142626345157623, -0.02978501096367836, -0.003366369055584073, -0.01982962153851986, -0.014743715524673462, -0.005904249381273985, -0.003929403144866228, -0.0171649307012558, -0.0029183088336139917, -0.0013179731322452426, -0.00813609641045332, 0.007439489476382732, -0.02028951607644558, 0.05150831863284111, 0.0012833119835704565, 0.028513533994555473, 0.0015276315389201045, 0.005718261934816837, -0.014919557608664036, -0.012593026272952557, 0.0231841541826725, -0.011165997013449669, -0.02743142656981945, 0.012234578840434551, -0.011165997013449669, 0.0065636588260531425, -0.03359944000840187, -0.008643333800137043, 0.009360230527818203, -0.023292364552617073, 0.023711681365966797, -0.010942813009023666, 0.02005956880748272, 0.03798197582364082, 0.004747746977955103, 0.011842314153909683, 0.021763887256383896, -0.01970788463950157, -0.0003100491885561496, 0.015230664052069187, 0.0139591870829463, 0.0025091369170695543, -5.7064266002271324e-05, 0.02005956880748272, 0.016109876334667206, 0.011125418357551098, -0.03500618040561676, -0.0055694724433124065, -0.009745731018483639, -0.0011852459283545613, 0.016312770545482635, 0.0041593508794903755, 0.00894091371446848, -0.00028764616581611335, 0.019220935180783272, -0.034762706607580185, -0.011964051984250546, -0.015879929065704346, -0.015176558867096901, -0.01303939614444971, 0.01799003779888153, 0.0012638678308576345], "3b9b8a00-cdac-42d3-b5d0-c5e7f87345a6": [0.002451330190524459, -0.01407212857156992, 0.02515610121190548, -0.02473914995789528, -0.016789264976978302, 0.019082501530647278, 0.017998427152633667, -0.03318937495350838, -0.006500976160168648, 0.0034502774942666292, 0.007098607253283262, 0.005072915460914373, -0.010750411078333855, -0.020124880596995354, -0.020653020590543747, -0.0002632009272929281, 0.005104186944663525, -0.02407202683389187, 0.038415174931287766, 0.0075329323299229145, 0.0030437493696808815, -0.0012595424195751548, -0.015983158722519875, -0.006980470847338438, -0.008498870767652988, 0.028714092448353767, 0.009339723736047745, -0.005698343738913536, 0.009485657326877117, 0.0070047928020358086, -0.0025416696444153786, 0.009652437642216682, -0.0004994737100787461, -0.00413129897788167, -0.0032001063227653503, -0.009645489044487476, -0.01005549170076847, -0.0009798371465876698, 0.019304875284433365, -0.018748940899968147, 0.001415030681528151, -0.01802622340619564, 0.019374368712306023, 0.0036518042907118797, -0.01867944747209549, 0.008234801702201366, -0.012334829196333885, 0.0017051597824320197, -0.008589210920035839, 0.029436808079481125, -0.0017807323019951582, 0.004298079758882523, -0.042473506182432175, 0.004895710851997137, 0.02233472652733326, 0.015538410283625126, -0.017039436846971512, 0.003205318236723542, -0.02193167246878147, -0.021236753091216087, 0.02423880808055401, 0.011605163104832172, -0.02839442901313305, -0.015496714971959591, -0.0034937099553644657, 0.012730933725833893, 0.0011188210919499397, 0.012758729979395866, -0.002194209722802043, 0.0012908137869089842, 0.024892032146453857, 0.02300184965133667, -0.022626593708992004, 0.0032522252295166254, 0.03271682932972908, 0.004336300306022167, -0.016344517469406128, -0.001803317223675549, 0.0005793895106762648, 0.00405138311907649, 0.001402869587764144, -0.00954820029437542, -0.004760201554745436, -0.011612112633883953, 0.020375052466988564, -0.01058363076299429, -0.019555047154426575, 0.012466863729059696, 0.0009355359943583608, -0.027365947142243385, -0.003863754915073514, 0.01842927746474743, 0.01826249621808529, 0.02391914464533329, 0.005451647099107504, 0.013766364194452763, -0.00826954748481512, 0.04066671431064606, -0.015913667157292366, -0.03469040244817734, 0.0009294554474763572, 0.02739374339580536, -0.031271398067474365, -0.0015010270290076733, -0.045642342418432236, -0.0014141621068120003, 0.025017118081450462, -0.008519718423485756, -0.00610487163066864, -0.026031700894236565, -0.03455141931772232, 0.03182733431458473, -0.025628646835684776, -0.02674051932990551, -0.024975422769784927, -0.02949240244925022, 0.00968023482710123, -0.007185472175478935, -0.031604960560798645, -0.012494660913944244, 0.006341144442558289, 0.002795315347611904, 0.017247913405299187, 0.013224326074123383, 0.0014341410715132952, 0.001642617047764361, -0.026434754952788353, -0.011584315448999405, 0.0004868782707490027, -0.01628892309963703, 0.04177858680486679, -0.005788682959973812, 0.017650965601205826, 0.01058363076299429, -0.01801232434809208, 0.0008247831137850881, -0.0019996322225779295, -0.006202160380780697, -0.03330056369304657, 0.008547515608370304, 0.02940901182591915, 0.023543886840343475, -0.01341195497661829, -0.012237540446221828, 0.003787313587963581, 0.01058363076299429, 0.019457757472991943, 0.005778259132057428, 0.021737094968557358, 0.01041684951633215, 0.006132668349891901, -0.005847751162946224, -0.0075329323299229145, -0.015885869041085243, -0.01324517372995615, -0.004040959291160107, 0.018540464341640472, 0.006674706004559994, 0.007727509830147028, -0.00342769268900156, 0.048283036798238754, 0.031688347458839417, 0.010701767168939114, -0.01602485403418541, 0.012147200293838978, 0.031271398067474365, 0.024600164964795113, 0.001808529137633741, -0.015760784968733788, 0.0018224274972453713, 0.003050698433071375, 0.0199442021548748, -0.03224428370594978, 0.000986786326393485, -0.0019475130829960108, 0.01548281591385603, 0.002288023941218853, -0.0007340091979131103, -0.0013768101343885064, -0.004951304756104946, -0.015983158722519875, -0.018540464341640472, -0.007150726392865181, 0.03179953619837761, -0.025225594639778137, -0.02125065214931965, 0.008790737017989159, 0.002953409682959318, 0.017831645905971527, 0.015538410283625126, 0.02750493213534355, 0.024725250899791718, 0.00741479592397809, 0.01154262013733387, -0.5937395691871643, -0.010013796389102936, -0.02749103307723999, -0.00461079366505146, 0.01834588684141636, 0.01867944747209549, 0.0035006592515856028, 0.018971314653754234, -0.02592051401734352, 0.025698140263557434, -0.017567576840519905, 0.023863550275564194, -0.010020745918154716, -0.025142204016447067, -0.0017703085904940963, -0.02963138557970524, -0.003769940696656704, -0.014259757474064827, -0.010347357951104641, 0.0071437768638134, -0.016650281846523285, 0.022890662774443626, -0.023710668087005615, -0.0035284559708088636, 0.005847751162946224, 0.00013040607154835016, -0.028519514948129654, -0.009777523577213287, 0.005472494754940271, 0.043057240545749664, -0.03346734493970871, 0.0002621151215862483, 0.028338834643363953, -0.008762940764427185, 0.04350198805332184, 0.0008451963658444583, -0.040722306817770004, 0.033995483070611954, -0.01420416310429573, 0.046615228056907654, -0.017164522781968117, -0.01794283278286457, -0.0030194271821528673, -0.030743258073925972, 0.01734520122408867, -0.01282822247594595, 0.006619112566113472, -0.02266828902065754, -0.0029481977690011263, 0.0038846025709062815, -0.013578735291957855, 0.004920033272355795, 0.01512145809829235, -0.038832128047943115, 0.01578858122229576, -0.008526667952537537, 0.025364577770233154, -0.05008982867002487, -0.007727509830147028, -0.03288361057639122, -0.009805320762097836, 0.024405587464571, -0.00026406958932057023, -0.014148569665849209, 0.005208424758166075, 0.0013342462480068207, -0.015065864659845829, -0.007136827800422907, 0.020875394344329834, -0.021473025903105736, 0.00440231803804636, 0.004565624054521322, -0.00901311170309782, -0.009944303892552853, 0.005125034600496292, 0.038832128047943115, 0.02433609589934349, -0.016872655600309372, 0.010451596230268478, 0.015065864659845829, 0.010743462480604649, 0.014496030285954475, -0.02176489308476448, -0.01826249621808529, 0.006052752491086721, -0.033828701823949814, -0.012571102008223534, -0.009228536859154701, 0.004558674991130829, 0.008151411078870296, -0.021528620272874832, 0.018707245588302612, 0.014016535133123398, -0.029798166826367378, 0.0031028175726532936, 0.012911612167954445, -0.018318088725209236, -0.016900453716516495, -0.010521087795495987, -0.021195057779550552, -0.034829385578632355, 0.006966572254896164, -0.02066691964864731, 0.008908873423933983, 0.058428868651390076, -0.01058363076299429, -0.032188691198825836, -0.0026163735892623663, 0.011292449198663235, -0.024850336834788322, 0.017456388100981712, -0.0009815744124352932, -0.022696085274219513, -0.021612010896205902, 0.011598213575780392, -0.03885992243885994, 0.010826853103935719, 0.01154956966638565, 0.013335513882339, 0.005041643977165222, 0.008408531546592712, 0.00863785482943058, 0.012730933725833893, -0.0008612663950771093, 0.009694132953882217, 0.028797483071684837, 0.015288238413631916, 0.010118034668266773, -0.010889395140111446, -0.0002964267914649099, -0.011764994822442532, -0.0072202179580926895, 0.02865849807858467, -0.010451596230268478, 0.01237652450799942, -0.003552778158336878, 0.01909640058875084, -0.006090973503887653, 0.037080928683280945, -0.008735143579542637, -0.04133383929729462, -0.00394714530557394, 0.0063689411617815495, -0.005163255147635937, -0.009228536859154701, -0.025281187146902084, -0.02383575402200222, -0.00917294342070818, -0.014023484662175179, 0.02600390464067459, 0.008491921238601208, -0.016414009034633636, -0.028255444020032883, 0.030048338696360588, -0.006306398659944534, 0.0038255343679338694, -0.02016657590866089, -0.007803950924426317, 0.01407212857156992, -0.01312008872628212, -0.014357046224176884, 0.006824113894253969, -0.02059742622077465, 0.022154048085212708, -0.038165003061294556, -0.03669177368283272, -0.017567576840519905, -0.002534720581024885, -0.0038672294467687607, -0.03338395431637764, -0.004565624054521322, 0.006681655067950487, 0.006059702020138502, 0.0035962106194347143, 0.004204265773296356, 0.00038654921809211373, -0.005680970381945372, -0.002866544760763645, 0.004301554523408413, -0.0008265203796327114, -0.014412639662623405, 0.010507189668715, -0.00562885170802474, -0.022626593708992004, 0.025642545893788338, 0.008471074514091015, 0.02707407996058464, -0.005194526631385088, -0.014676708728075027, 0.010270916856825352, -0.01154956966638565, 0.02390524558722973, 0.007373100612312555, 0.02824154682457447, 0.0332171730697155, -0.007442592643201351, 0.02176489308476448, 0.030048338696360588, 0.00017937620577868074, 0.02400253526866436, 0.016803164035081863, 0.0013316402910277247, -0.0011292449198663235, -0.03338395431637764, 0.025475764647126198, -0.02491982840001583, 0.009777523577213287, -0.02018047496676445, -0.010006846860051155, -0.02166760340332985, -0.000828692049253732, -0.03343954682350159, -0.01835978403687477, 0.002711924957111478, 0.03705313056707382, -0.0054030027240514755, -0.008123613893985748, 0.0070047928020358086, -0.008617007173597813, 0.008610057644546032, -0.00628902530297637, -0.0006710320594720542, -0.002230693120509386, -0.010152780450880527, -0.007171573583036661, 0.007991579361259937, 0.004034010227769613, 0.008776838891208172, 0.016219431534409523, -0.02473914995789528, -0.032438863068819046, -0.018818432465195656, -0.01834588684141636, 0.012390422634780407, 0.032355472445487976, -0.03894331306219101, 0.021723197773098946, -0.026768315583467484, 0.02482254058122635, -0.00282484944909811, 0.00835293810814619, 0.0004794947453774512, 0.004433589056134224, 0.0027466709725558758, 0.008651752956211567, 0.01936046965420246, 0.06926961988210678, 0.02765781432390213, -0.022640490904450417, 0.011660756543278694, -0.020639121532440186, -0.001412424724549055, 0.0019301400752738118, 0.012425168417394161, 0.012320930138230324, -0.022723881527781487, 0.006337669678032398, 0.018582159653306007, 0.016497399657964706, 0.03463480994105339, 0.004930457100272179, 0.03513515368103981, 0.018554361537098885, 0.013272970914840698, 0.002970782807096839, -0.019068602472543716, -0.007929036393761635, -0.00543774850666523, -0.0035058711655437946, -0.00610139686614275, -0.015149254351854324, -0.01510755904018879, -0.006792842410504818, -0.0031358262058347464, -0.0013490132987499237, -0.0030315881595015526, 0.019819116219878197, 0.020152678713202477, 0.031243599951267242, -0.006143092177808285, -0.016956046223640442, -0.016163837164640427, 0.03780364617705345, -0.018554361537098885, 0.013439751230180264, 0.00880463607609272, -0.004662912804633379, 0.006692078895866871, -0.0250032190233469, 0.020472342148423195, -0.006344619207084179, -0.01191787701100111, 0.0107156652957201, -0.0031427755020558834, 0.005017322022467852, 0.002188997808843851, 0.047226760536432266, -0.017484186217188835, 0.011125667952001095, -0.004277232103049755, 0.008332090452313423, -0.004989525303244591, -0.002357515972107649, -0.03802601993083954, 0.058929212391376495, 0.005378680303692818, 0.004311978351324797, -0.014037382788956165, 0.001301237614825368, -0.0012821273412555456, 0.0009763624984771013, -0.03510735556483269, -0.0035336678847670555, -0.02940901182591915, 0.004357147961854935, -0.007032589986920357, 0.02824154682457447, 0.010069389827549458, 0.025461867451667786, 0.01677536778151989, -0.018415378406643867, -0.020958784967660904, -0.016136040911078453, 0.02200116589665413, -0.008783788420259953, 0.023488294333219528, 0.017581474035978317, -0.012446016073226929, -0.03802601993083954, -0.0007700581336393952, -0.01286991685628891, -0.00733140530064702, 0.01034040842205286, -0.01902690716087818, 0.015732986852526665, -0.008234801702201366, 0.024711353704333305, -0.002963833510875702, 0.016747569665312767, 0.0029794692527502775, -0.03021511808037758, -0.011146515607833862, 0.013231275603175163, -0.009624641388654709, 0.008040223270654678, -0.0025937887839972973, -0.0073036085814237595, 0.006862334441393614, 0.002387050073593855, -0.0002527771284803748, 9.946041973307729e-05, 0.01445433497428894, 0.025878818705677986, -0.014496030285954475, 0.022612694650888443, 0.005222323350608349, -0.0036865503061562777, 0.009117349982261658, 0.016956046223640442, 0.021528620272874832, -0.009284130297601223, 0.05954074114561081, -0.012897714041173458, 0.002498237183317542, 0.0014845227124169469, 0.013724668882787228, -0.005847751162946224, -0.0017555415397509933, 0.006890131160616875, -0.030687663704156876, -0.0027449338231235743, 0.01109092216938734, -0.014384842477738857, -0.008450226858258247, 0.03257784619927406, -0.004715031944215298, -0.05570478364825249, 0.007484287954866886, 0.011764994822442532, 0.008207004517316818, -0.027949679642915726, -0.010951938107609749, 0.0011943936115130782, -0.001724270056001842, -0.005736564286053181, -0.017817746847867966, 0.0011665968922898173, -0.0174424909055233, -0.014009585604071617, -0.03627482056617737, -0.012320930138230324, -0.011723299510776997, -0.03635821118950844, 0.007338354364037514, 0.012689238414168358, -0.028199851512908936, -0.029047653079032898, -0.009235486388206482, 0.006636485457420349, 0.04494742304086685, 0.013189580291509628, -0.01759537309408188, -0.011354992166161537, 0.017400795593857765, -0.010555833578109741, -0.003985365852713585, -0.02774120308458805, -0.024725250899791718, 0.026128990575671196, 0.006459280848503113, 0.001467149704694748, -0.006205635145306587, -0.006591315846890211, 0.021069971844553947, -0.012195845134556293, 0.009527352638542652, -0.0045100306160748005, -0.014732303097844124, 0.0005098974797874689, -0.019249282777309418, -0.02019437402486801, 0.0013646490406244993, 0.024878133088350296, -0.02542017214000225, 0.022876763716340065, -0.03777584806084633, -0.004235537257045507, -0.02690730057656765, 0.0005472494522109628, 0.009485657326877117, 0.021625908091664314, 0.0006202160730026662, 0.007810899987816811, 0.022195743396878242, 0.02318252995610237, -0.025892717763781548, 0.012230590917170048, 0.012981104664504528, 0.019290978088974953, 0.02739374339580536, 0.003846381790935993, 0.002776205074042082, -0.0006189130945131183, -0.005295290146023035, 0.01644180528819561, -0.011737197637557983, 0.025225594639778137, 0.017887238413095474, 0.03216089308261871, -0.0011570417555049062, -0.005528088193386793, -0.05356442928314209, -0.0014897346263751388, -0.0022776001133024693, -0.0028613328468054533, 0.0204167477786541, 0.0007917744223959744, -0.031855128705501556, -0.008464124985039234, -0.00751903373748064, -0.025712037459015846, 0.037414491176605225, -0.03007613494992256, -0.011327194981276989, -0.014301452785730362, -0.022821171209216118, 0.000681455887388438, -0.022320829331874847, 0.007380049675703049, -0.020792003720998764, -0.012737882323563099, 0.001341195427812636, 0.009193791076540947, -0.0010849437676370144, 0.018818432465195656, 0.0017381685320287943, -0.03613583743572235, -0.012689238414168358, -0.00666080741211772, -0.012084657326340675, -0.017539778724312782, -0.00610139686614275, 0.021625908091664314, 0.018457073718309402, 0.013676024042069912, 0.006987419910728931, 0.025517459958791733, 0.0018536989809945226, -0.006789367645978928, 0.00276056956499815, -0.005590630695223808, -0.00206391210667789, -0.005191051866859198, -0.0024270080029964447, 0.01481569278985262, 0.01585807278752327, 0.004541301634162664, -0.03413446620106697, 0.008457175455987453, 0.030771054327487946, -0.0001887141988845542, 0.013210427947342396, -0.001365517731755972, -0.044308096170425415, -0.01399568747729063, 0.012390422634780407, 0.006118770223110914, 0.0034763370640575886, -0.021306244656443596, -0.006507925223559141, 0.012320930138230324, 0.000555501610506326, 0.01702553778886795, -0.003000316908583045, -0.01079210638999939, -0.02059742622077465, 0.008095817640423775, 0.002253277925774455, -0.0028526464011520147, -0.004582996945828199, 0.0038846025709062815, -0.020305560901761055, 0.017122827470302582, 0.013259072788059711, 0.01324517372995615, 0.017400795593857765, 0.010541935451328754, -0.0022393795661628246, 0.0012699662474915385, -0.0011136091779917479, -0.007505135145038366, -0.02532288245856762, -0.0003296526556368917, -0.01602485403418541, -0.03813720494508743, -0.02640695683658123, -0.004808845929801464, -0.008908873423933983, 0.008540566079318523, -0.0011596475960686803, 0.007164624519646168, -0.009603793732821941, -0.021973367780447006, -0.00610487163066864, 0.00535783264786005, -0.021528620272874832, 0.02159811183810234, 0.0022914984729140997, 0.027532728388905525, 0.048533208668231964, 0.026128990575671196, -0.005142407491803169, -0.04161180555820465, -0.006629536394029856, 0.02066691964864731, 0.016969945281744003, 0.025864919647574425, -0.010778208263218403, -0.029520198702812195, 0.0010701767168939114, 0.00996515154838562, 0.0014341410715132952, -0.028297139331698418, 0.02350219152867794, 0.03588566556572914, 0.023307614028453827, -0.015538410283625126, 0.0229184590280056, -0.004624692257493734, 0.013745516538619995, 0.0025746782775968313, -0.002963833510875702, -0.013231275603175163, 0.0032244285102933645, -0.02491982840001583, -0.0028613328468054533, 0.010229221545159817, 0.024030331522226334, 0.004405792336910963, 0.002381838159635663, -0.015621799975633621, -0.008311242796480656, -0.047310151159763336, -0.012112454511225224, -0.015316035598516464, 0.01437094435095787, 0.011202109046280384, 0.01852656528353691, 0.028352733701467514, 0.018137410283088684, -0.01958284340798855, -0.01353703998029232, 0.007275811862200499, 0.04742133617401123, -0.012814323417842388, -0.01809571497142315, 0.00178594421595335, 0.01207770872861147, 0.019054705277085304, -0.009061755612492561, 0.0013203478883951902, 0.009499555453658104, -0.01993030309677124, -0.01594146341085434, 0.033912092447280884, 0.007810899987816811, -0.0022063707001507282, -0.03280021995306015, 0.001699079293757677, 0.0005559359560720623, -0.005159780383110046, -0.000665385858155787, 0.006785893347114325, -0.04603149741888046, -0.02707407996058464, -0.022195743396878242, -0.015496714971959591, 0.005277916789054871, -0.003250488080084324, 0.007428694050759077, 0.011716349981725216, 0.05198001116514206, -0.02971477620303631, 0.014482131227850914, -0.02018047496676445, 0.021959470584988594, 0.006827588193118572, -0.005885971710085869, -0.0028926043305546045, -0.030048338696360588, 0.038165003061294556, -0.004617743194103241, -0.001575730973854661, -0.028380529955029488, 0.01628892309963703, 0.02024996653199196, 0.01216109935194254, 0.044391486793756485, 0.008519718423485756, 0.01548281591385603, 0.01844317466020584, -0.0009737565414980054, -0.033995483070611954, -0.0030437493696808815, 0.0038707039784640074, -0.009152095764875412, 0.005204950459301472, -2.08068795473082e-05, 0.016302822157740593, -0.004009688273072243, 0.007803950924426317, 0.00628902530297637, -0.014635014347732067, -0.013029748573899269, -0.016719773411750793, -0.0204167477786541, -0.01520484872162342, 0.0020847597625106573, -0.005152831319719553, -0.020236069336533546, -0.028714092448353767, 0.000847367977257818, 0.0024078974965959787, -0.019402164965867996, 0.00016667220916133374, 0.02575373277068138, -0.009423114359378815, 0.007442592643201351, -0.023349309340119362, -0.03232767432928085, -0.021056074649095535, -0.027268659323453903, -0.009652437642216682, -0.026226278394460678, -0.02624017745256424, 0.035079557448625565, 0.021320143714547157, -0.016956046223640442, -0.046865399926900864, -0.00975667592138052, -0.015663495287299156, 0.013905348256230354, 0.007122929207980633, 0.025350678712129593, 0.01694214902818203, 0.002783154370263219, 0.00855446420609951, 0.01810961402952671, -0.0046420651488006115, 0.026434754952788353, -0.004544776398688555, -0.0031705722212791443, -0.036914147436618805, 0.008311242796480656, -0.016330618411302567, 0.007713611237704754, -0.02019437402486801, 0.004450962413102388, 0.00013268626935314387, -0.014190264977514744, 0.023543886840343475, 0.024766946211457253, 0.0008069757604971528, -0.014940778724849224, -0.011584315448999405, -0.023891348391771317, -0.014225010760128498, 0.004086129367351532, -0.01942996121942997, -0.023349309340119362, -0.006219533272087574, 0.036997538059949875, 0.012063810601830482, -0.021236753091216087, 0.0097636254504323, -0.016344517469406128, -0.00525012006983161, 0.01944386027753353, -0.029047653079032898, 0.0016608586302027106, -0.004972151946276426, -0.021042175590991974, 0.014016535133123398, 0.001739037106744945, 0.004461386241018772, 0.02681001089513302, 0.0008278233581222594, 0.003059385111555457, -0.005941565614193678, 0.006563518662005663, -0.02749103307723999, 0.009131248109042645, 0.006011057645082474, 0.006466229911893606, 0.005267492961138487, 0.013856703415513039, 0.004040959291160107, -0.008227852173149586, 0.013189580291509628, 0.01752588152885437, 0.00041825493099167943, -0.03546871244907379, 0.013154834508895874, 0.024725250899791718, -0.023029645904898643, -0.0028648073785007, 0.012056861072778702, -0.007380049675703049, 0.010173628106713295, -0.036497194319963455, 0.017039436846971512, -0.027782898396253586, 0.02832493744790554, -0.02772730588912964, 0.019485555589199066, -0.0029812066350132227, 0.004482233431190252, -0.015538410283625126, -0.025392374023795128, 0.021028276532888412, 0.24105383455753326, -0.017220115289092064, -0.00834598857909441, 0.03138258308172226, 0.010701767168939114, 0.01917979121208191, 0.0009876550175249577, 0.006049278192222118, -0.016177736222743988, 0.03496837243437767, -0.04769930616021156, -0.01961064152419567, 0.005163255147635937, -0.0030906563624739647, 0.009457860141992569, 0.00076310895383358, -0.02491982840001583, -0.027755102142691612, -0.03891551494598389, 0.008853279985487461, 0.002534720581024885, 0.006653858348727226, -0.019402164965867996, -0.005267492961138487, 0.009784473106265068, 0.025225594639778137, -0.006500976160168648, 0.02391914464533329, 0.017817746847867966, 0.024377791211009026, -0.019054705277085304, 0.010722614824771881, -0.00432240217924118, 0.018304191529750824, -0.007081234361976385, 0.00639673788100481, 0.021069971844553947, 0.028172055259346962, 0.020722512155771255, 0.007435643579810858, -0.026142887771129608, 0.011396687477827072, 0.0076232715509831905, -0.017803849652409554, -0.02749103307723999, -0.0017234014812856913, -0.01041684951633215, -0.005364781711250544, -0.012911612167954445, 0.022862866520881653, -0.01453772559762001, -0.019805219024419785, 0.05106271803379059, 0.015830276533961296, 0.005517664365470409, -0.02001369372010231, 0.02332151308655739, 0.0034520148765295744, 0.0033877347595989704, 0.034329045563936234, -0.00543774850666523, 0.055843766778707504, -0.023126935586333275, 0.0008191368542611599, 0.0028231122996658087, 0.002077810699120164, -0.025295086205005646, -0.0006280338857322931, 0.004082654602825642, -0.01801232434809208, -0.00230539683252573, 0.004701133351773024, 0.005041643977165222, -0.019916405901312828, -0.03444023057818413, -0.0373866930603981, 0.04294605180621147, 0.028630701825022697, 0.034329045563936234, 0.03880432993173599, 0.0031358262058347464, -0.0057469881139695644, -0.0006262966198846698, -0.003985365852713585, 0.0022949730046093464, 0.0027275606989860535, 0.0008365098619833589, -0.02093098871409893, -0.006591315846890211, -0.0008617007406428456, 0.0027866289019584656, -0.028213748708367348, 0.0028265868313610554, -0.028964262455701828, -0.018484869971871376, 0.02325202152132988, -0.01569129154086113, 0.015594003722071648, -0.00938141904771328, 0.024614064022898674, -0.029909353703260422, 0.025475764647126198, 0.0204167477786541, 0.023391004651784897, -0.021486924961209297, 0.0036379059311002493, 0.007838697172701359, 0.017122827470302582, 0.001884970348328352, -0.025211695581674576, 0.010486342012882233, -0.0395270474255085, 0.021542517468333244, 0.005149356555193663, -0.011528722010552883, -0.011403636075556278, -0.02400253526866436, -0.03196631744503975, 0.01287686638534069, -0.006049278192222118, 0.035162948071956635, -0.019958101212978363, -0.01437094435095787, 0.0002575546968728304, -0.016233330592513084, -0.017220115289092064, -0.023196427151560783, -0.030659867450594902, 0.007942934520542622, -0.009485657326877117, 0.026309669017791748, -0.029214434325695038, 0.030354103073477745, -0.007553779520094395, 0.00432240217924118, -0.00030815356876701117, -0.007922086864709854, -0.019958101212978363, 0.026532042771577835, 0.0007261913269758224, -0.0010423798812553287, 0.016817063093185425, 0.008387683890759945, 0.011507874354720116, -0.0008903661509975791, -0.008026325143873692, 0.004659438040107489, -0.00693182647228241, 0.012154149822890759, 0.009992948733270168, -0.048116255551576614, -0.02034725621342659, 0.020152678713202477, -0.009666336700320244, 0.024516776204109192, 0.009652437642216682, -0.02266828902065754, -0.05264713615179062, 0.004263333976268768, 0.0345236212015152, -0.02640695683658123, 0.004242486320436001, 0.020819801837205887, -0.02209845371544361, -0.027379846200346947, -0.012459914200007915, -0.17789950966835022, 0.0018832330824807286, 0.02382185496389866, -0.033661920577287674, 0.03355073556303978, 0.0002486510493326932, -0.010812954045832157, 0.0009876550175249577, -0.015163153409957886, -7.322447345359251e-06, 0.011938724666833878, 0.01926317997276783, -0.022946257144212723, -0.002725823549553752, 0.01587197184562683, 0.012522457167506218, -0.01651129685342312, 0.02268218621611595, 0.05578817427158356, 0.004447487648576498, 0.05225798115134239, -0.015079762786626816, -0.011424483731389046, 0.03527413681149483, -0.008582261390984058, 0.009270232170820236, -0.0055350372567772865, -0.008248699828982353, -0.0074495417065918446, -0.02126454934477806, 0.012341777794063091, 0.019568946212530136, 0.025642545893788338, 0.023655075579881668, 0.004926982335746288, -0.01802622340619564, 0.008436327800154686, -0.004444012884050608, -0.003094131126999855, 0.013933144509792328, 0.01482959184795618, 0.018040122464299202, -0.002837010659277439, 0.010389053262770176, -0.0007874311413615942, 0.0056219021789729595, 0.000974625232629478, 0.018067918717861176, 0.0021629382390528917, 0.003752567572519183, 0.025934413075447083, -0.03877653181552887, -0.026476450264453888, -0.008394632488489151, 0.04024976119399071, -0.006341144442558289, 0.009033959358930588, 0.005152831319719553, -0.02764391526579857, 0.004444012884050608, 0.0048574903048574924, -0.0229184590280056, -0.011806690134108067, 0.0006927482900209725, -0.00826954748481512, -0.0050902883522212505, -0.01407212857156992, 0.04052773118019104, -0.007275811862200499, 0.016483500599861145, 0.008283445611596107, -0.024892032146453857, 0.0012560677714645863, 0.00038481192314065993, 0.010653122328221798, -0.019888607785105705, 0.003933246713131666, 0.02002759277820587, 0.0018241648795083165, 0.005719190929085016, -0.01612214185297489, 0.038665346801280975, 0.013856703415513039, 0.004537827335298061, 0.03163275495171547, 0.017136726528406143, 0.0006488814833573997, 0.0030194271821528673, -0.028046969324350357, -0.02558695152401924, 0.029909353703260422, -0.017178421840071678, -0.007056911941617727, -0.014940778724849224, -0.007824798114597797, 0.022904561832547188, -0.017095031216740608, 0.005566308740526438, -0.013856703415513039, -0.006375890225172043, 0.016830960288643837, -0.014384842477738857, -0.01677536778151989, -0.0025990004651248455, 0.017178421840071678, 0.017637068405747414, 0.020792003720998764, 0.019888607785105705, 0.02341880276799202, -0.011778892949223518, 0.0020274289418011904, 0.004551725462079048, 0.015719089657068253, 0.0345236212015152, -0.009909558109939098, 0.012904663570225239, -0.002182048512622714, -0.009562098421156406, 0.0011014480842277408, 0.004624692257493734, -0.03327276557683945, -0.016052650287747383, 0.03330056369304657, 0.013919246383011341, -0.013022799976170063, -0.04567013680934906, -0.04044434055685997, -0.011500924825668335, 0.023460498079657555, 0.030937835574150085, -0.00375951686874032, 0.020375052466988564, 0.004530877806246281, 0.04350198805332184, 0.006650384049862623, 0.007852595299482346, -0.0030611222609877586, -0.034106671810150146, -0.014885185286402702, 0.011966520920395851, -0.024447282776236534, -0.0019579369109123945, -0.0110422782599926, -0.0035857867915183306, -0.008832432329654694, 0.011667706072330475, -0.027296455577015877, -0.0032365897204726934, -0.023140834644436836, 0.001724270056001842, -0.007171573583036661, 0.02108387090265751, -0.009847015142440796, 0.027713406831026077, 0.008408531546592712, -0.011632959358394146, 0.013919246383011341, -0.0220845565199852, -0.004100027494132519, -0.008311242796480656, 0.017122827470302582, 0.008901924826204777, -0.03280021995306015, -0.02033335715532303, 0.028964262455701828, -0.003116715932264924, 0.003394683822989464, 0.004301554523408413, 0.010569732636213303, 0.0023835753090679646, 0.0016704137669876218, -0.006122244521975517, -0.028519514948129654, 0.025434069335460663, -0.01735910028219223, -0.005093763116747141, -0.03719211369752884, 0.004075705539435148, -0.03480159118771553, -0.016872655600309372, 0.013821957632899284, 0.014565521851181984, 0.004801896866410971, 0.012862968258559704, -0.039582639932632446, 0.03341175243258476, 0.014496030285954475, 0.01304364763200283, -0.00676851999014616, 0.0020534885115921497, 0.0029377739410847425, 0.016983842477202415, -0.03396768495440483, -0.019457757472991943, 0.018373683094978333, -0.010486342012882233, -0.030771054327487946, 0.019958101212978363, -0.009714980609714985, 0.05139628052711487, -0.033745311200618744, -0.015218746848404408, 0.0031479874160140753, -0.004569098819047213, 0.02350219152867794, -0.014857388101518154, -0.02383575402200222, -0.01154956966638565, -0.001402869587764144, -0.017136726528406143, -0.0003954528656322509, 0.03413446620106697, 0.012307032011449337, 0.0023384056985378265, 0.01685875840485096, -0.03638600930571556, 0.003881127806380391, 0.0086309053003788, 0.0017103716963902116, -0.00030250733834691346, -0.025948310270905495, -0.012244489043951035, 0.016969945281744003, -0.014357046224176884, -0.012327879667282104, 0.010861598886549473, -0.027087979018688202, -0.02542017214000225, -0.08344598859548569, 0.013342462480068207, -0.003149724565446377, -0.00413477374240756, -0.0006349831237457693, -0.00834598857909441, 0.03343954682350159, 0.0013846280053257942, -0.008165309205651283, 0.005475969053804874, -0.007956833578646183, 0.025044914335012436, -0.003822059603407979, 0.0015166627708822489, -0.030187321826815605, -0.02325202152132988, 0.015329933725297451, 0.01341195497661829, 0.005312663037329912, 0.0157746821641922, 0.006038854364305735, -0.017164522781968117, 0.032939206808805466, 0.015399426221847534, -0.05498206615447998, 0.00880463607609272, 0.0029082398395985365, 0.005833853036165237, -0.009798371233046055, -0.018554361537098885, 0.00013746385229751468, -0.005642749834805727, -0.01587197184562683, 0.0069596231915056705, 0.00225154054351151, 0.017039436846971512, 0.004847066476941109, 0.021042175590991974, 0.015997057780623436, 0.02599000558257103, -0.017637068405747414, -0.019207587465643883, 0.025197796523571014, -0.008325140923261642, -0.0030107407364994287, -0.005076390225440264, -0.03469040244817734, -0.015746885910630226, 0.013960941694676876, 0.009770574048161507, 0.036080244928598404, 0.0033703616354614496, -0.002195947105064988, -0.01651129685342312, -0.00908955279737711, -0.04733794555068016, 0.01620553247630596, 0.0019058178877457976, 0.005378680303692818, -1.9205306671210565e-05, 0.032021909952163696, 0.00033486454049125314, -0.0025225593708455563, 0.0016217693919315934, -0.006928351707756519, -0.011521772481501102, -0.005826903507113457, -0.03015952557325363, 0.017317404970526695, -0.02523949183523655, -0.03735889494419098, -0.01100753154605627, 0.01819300465285778, 0.010430748574435711, 0.02034725621342659, 0.014482131227850914, -0.007553779520094395, -0.02068081684410572, -0.029186638072133064, 0.034329045563936234, 0.015468917787075043, 0.015802480280399323, -0.02423880808055401, 0.0172618106007576, 0.01902690716087818, 0.0016686765011399984, -0.010361256077885628, -0.009200739674270153, -0.014885185286402702, -0.013203478418290615, -0.02293235808610916, -0.003121927846223116, 0.01063227467238903, 0.037748049944639206, 0.016149939969182014, 0.02822764776647091, 0.015913667157292366, -0.01257805060595274, 0.008874127641320229, 0.010833801701664925, 0.00817920733243227, -0.01250160951167345, 0.005194526631385088, -0.03396768495440483, -0.03271682932972908, -0.006414111237972975, -0.006393263582140207, -0.04892236366868019, -0.0029864185489714146, 0.014086027629673481, -0.02108387090265751, -0.003710872493684292, -0.0022063707001507282, 0.02664322964847088, -0.020805902779102325, -0.004746302962303162, -0.01445433497428894, -0.028880871832370758, -0.019221484661102295, -0.0010006846860051155, 0.017901137471199036, 0.017817746847867966, 0.022709984332323074, -0.010486342012882233, 0.009638539515435696, -0.027782898396253586, 0.0036205328069627285, -0.04266808554530144, 0.0122027937322855, 0.01236957497894764, 0.009909558109939098, 0.03046528995037079, 0.0065148742869496346, -0.028769684955477715, -0.013613482005894184, -0.011528722010552883, 0.006810215301811695, 0.0068727582693099976, -0.03352293744683266, 0.07249404489994049, 0.0044127414003014565, -0.018373683094978333, -0.021473025903105736, -0.0025868394877761602, -6.770040636183694e-05, 0.00722716748714447, 0.025559155270457268, -0.005152831319719553, -0.012022115290164948, 0.0027744679246097803, -0.012022115290164948, -0.02465575933456421, -0.012598898261785507, -0.002725823549553752, -0.003794262884184718, -0.014857388101518154, 0.054676301777362823, 0.018651651218533516, 0.016233330592513084, 0.05034000054001808, 0.024113722145557404, 0.010861598886549473, 0.021903876215219498, -0.014801794663071632, -0.00249302526935935, 0.022793374955654144, -0.016497399657964706, 0.0036205328069627285, -0.01619163528084755, 0.005868598818778992, 0.0017876815982162952, -0.020611325278878212, -0.014002637006342411, -0.014565521851181984, 0.023543886840343475, -0.0017555415397509933, -0.007845645770430565, 0.039332468062639236, 0.009638539515435696, -0.0058790226466953754, 0.004930457100272179, -0.03377310931682587, -0.01976352371275425, -0.0002673270064406097, 0.00458647171035409, 0.005288340616971254, -0.006330720614641905, -0.018067918717861176], "5fbdf692-ad99-4031-a69d-798144197097": [-0.022846819832921028, -0.012849596329033375, 0.005687355063855648, -0.002214068314060569, -0.014637547545135021, 0.03152916580438614, 0.0010313766542822123, -0.0062265233136713505, -0.00029675994301214814, -0.031195230782032013, -0.003064562566578388, 0.030026452615857124, -0.022596366703510284, -0.00021490636572707444, -0.03712260350584984, -0.0029619468841701746, -0.0035324215423315763, 0.01858912967145443, 0.022999873384833336, -0.0024088644422590733, 0.02764715626835823, 0.014498407952487469, -0.0097189424559474, -0.044997937977313995, -0.006390013266354799, 0.00398288806900382, 0.00772923743352294, -0.027494100853800774, 0.008466680534183979, 0.017489921301603317, 0.02415473759174347, 0.026144441217184067, 0.0021688477136194706, -0.031334370374679565, 0.018491731956601143, 0.017225556075572968, 0.0194378849118948, 0.001897524343803525, -0.013343543745577335, 0.00294977193698287, 0.01111730094999075, 0.011291226372122765, 0.005238628014922142, -0.00466815335676074, -0.020384037867188454, 0.019757907837629318, -0.008431895636022091, -0.0031706569716334343, -0.007492699194699526, 0.0063587068580091, -0.018505645915865898, 0.02333381026983261, -0.023932112380862236, -0.0035411177668720484, 0.004355087876319885, 0.03392237797379494, -0.011715603992342949, 0.015959380194544792, -0.025852248072624207, -0.015291506424546242, 0.001374009414575994, 0.006285658106207848, -0.03305970877408981, 0.007910119369626045, 0.029942968860268593, 0.005607349798083305, -0.00666481489315629, 0.013058306649327278, -0.009245865978300571, -0.011005989275872707, -0.0016035906737670302, 0.029887313023209572, 0.001633157953619957, 0.0012696542544290423, 0.029386408627033234, -0.0009400658891536295, -0.01893698051571846, 0.0041533345356583595, -0.022457227110862732, 0.0021758046932518482, 0.01545847486704588, 0.0139835886657238, 0.00496730487793684, -0.011005989275872707, 0.021858923137187958, -0.00288020190782845, -0.0031236973591148853, 0.0024210393894463778, -0.013524426147341728, -0.014776688069105148, 0.010233760811388493, -0.003408934688195586, 0.03664952516555786, 0.018477817997336388, -0.017935169860720634, 0.002671491587534547, 0.005436902865767479, 0.023695575073361397, -0.008668433874845505, -0.008863230235874653, -0.0005704747745767236, 0.007016144227236509, -0.021135395392775536, -0.010435514152050018, -0.035703372210264206, -0.0031063046772032976, 0.011924314312636852, -0.005986506585031748, 0.004452486056834459, -0.004417701158672571, -0.041185494512319565, 0.03269794583320618, 0.00518645066767931, -0.03759567812085152, -0.025003492832183838, -0.016293317079544067, 0.003355017863214016, -0.01826910674571991, -0.030583012849092484, -0.010164191015064716, 0.016543768346309662, 0.01640462875366211, 0.028064576908946037, 0.003184571163728833, 0.005544736515730619, 0.0066195945255458355, -0.020759716629981995, -0.018408246338367462, 0.004974261857569218, -0.026158355176448822, 0.06422711163759232, -0.0059934635646641254, 0.02910812757909298, 0.019410056993365288, -0.01736469566822052, 0.00833449698984623, -0.009732856415212154, 0.01021288987249136, -0.01452623587101698, 0.006438712123781443, 0.011374710127711296, 0.028481997549533844, -0.01195909921079874, -0.012550445273518562, -0.006616116035729647, 0.017503835260868073, 0.016933361068367958, -0.003050648607313633, 0.008369282819330692, 0.017545577138662338, 0.016321144998073578, -0.03289274126291275, 0.014401009306311607, -0.0075970543548464775, 0.034395456314086914, 0.002033185912296176, 0.019590938463807106, 0.004118549637496471, -0.003979409579187632, 0.0068526542745530605, 0.016098519787192345, 0.02173369750380516, -0.0027323653921484947, -0.014776688069105148, 0.004111592657864094, 0.032614462077617645, 0.03339364379644394, 0.0007483133231289685, -0.0044490075670182705, -0.016446370631456375, -0.0015522827161476016, 0.024377360939979553, -0.02013358473777771, 0.012390433810651302, -0.006501325406134129, -0.0018853495130315423, 0.025587880983948708, -0.007346602156758308, -0.017837772145867348, 0.027452358976006508, -0.004650760907679796, -0.0007717932458035648, -0.00379504868760705, 0.02272159233689308, 0.011374710127711296, -0.03539726510643959, 0.011513850651681423, 0.007652710657566786, 0.011639077216386795, -0.013552254065871239, 0.019090034067630768, 0.03726174309849739, 0.00949631817638874, 0.030749982222914696, -0.5930711627006531, -0.006734385155141354, -0.002504523377865553, 0.004984697327017784, 0.04099069908261299, 0.014331439509987831, -0.0037533065769821405, 0.018519559875130653, -0.0074996561743319035, 0.048003364354372025, -0.0007274423260241747, 0.024057338014245033, -0.0024210393894463778, -0.01648811250925064, 0.006765691563487053, -0.0284959115087986, 0.016321144998073578, -0.0050333961844444275, -0.002196675632148981, 0.02176152542233467, -0.021218879148364067, 0.011889529414474964, -0.014171428047120571, 0.00974677037447691, -0.009461533278226852, 0.00674482062458992, -0.02098233997821808, -0.001594024826772511, 0.005948243197053671, 0.024460844695568085, -0.04210381954908371, -0.010595525614917278, 0.027744553983211517, -0.0194378849118948, 0.04485879838466644, -0.004059414844959974, -0.03918187692761421, 0.032002244144678116, 0.010421600192785263, 0.0503409206867218, -0.03175179287791252, -0.004048979375511408, 0.004219426307827234, -0.011966056190431118, -0.01089467667043209, 0.0017809944692999125, 0.014679290354251862, -0.009037155658006668, 0.013573125936090946, -0.007548355497419834, -0.009085854515433311, 0.005297762807458639, 0.009099768474698067, -0.015027140267193317, 0.01946571283042431, -0.010045921429991722, 0.024196479469537735, -0.0233059823513031, 0.010595525614917278, -0.03395020589232445, -0.004275082144886255, 0.015194108709692955, -0.01902046427130699, -0.000320239836582914, -0.0364825576543808, 0.006024770438671112, 0.0005996072432026267, -0.02272159233689308, -0.007019622717052698, -0.03214138373732567, -0.014080987311899662, -0.015597615391016006, -0.006998751312494278, -0.013120919466018677, 0.0022210252936929464, 0.02016141265630722, 0.0202448982745409, -0.0038054841570556164, -0.0014522757846862078, 0.016627252101898193, 0.006191738415509462, 0.0036872150376439095, -0.01230695005506277, -0.03556423261761665, 0.020954512059688568, -0.01390010491013527, -0.007708366494625807, -0.0014853215543553233, 0.013287887908518314, 0.006890918128192425, 0.019980531185865402, 0.025880075991153717, 0.012167809531092644, -0.012404347769916058, 0.0007874465081840754, 0.0007009187247604132, -0.03350495919585228, -0.0007422259659506381, -0.012633929029107094, -0.016209831461310387, -0.025907903909683228, -0.002570614917203784, 0.031306542456150055, 0.027925435453653336, 0.013420071452856064, 0.0008683217456564307, -0.04157508909702301, 0.011284269392490387, 0.011082516051828861, -0.010964247398078442, -0.022624194622039795, 0.004146377556025982, -0.021984150633215904, 0.014734946191310883, 0.011576463468372822, -0.03653821349143982, 0.016947275027632713, 0.017615148797631264, 0.02969251573085785, 0.009322392754256725, 0.014734946191310883, -0.004981218837201595, 0.010233760811388493, 0.0035689459182322025, 0.010226803831756115, 0.014484493993222713, 0.01346181333065033, 0.0067169927060604095, -0.007221376057714224, 0.021831095218658447, 0.01602894999086857, -0.03091694973409176, 0.01765689067542553, -0.032614462077617645, 0.013941846787929535, -0.010825106874108315, 0.04755811765789986, -0.0009974612621590495, 0.018742183223366737, 0.012654799968004227, -0.033171020448207855, 0.0010365943890064955, 0.0017149028135463595, -0.013733136467635632, -0.022749420255422592, -0.024989578872919083, -0.002840199042111635, 0.008731046691536903, -0.010386815294623375, -0.008765831589698792, -0.005454295314848423, -0.011819958686828613, -0.008362325839698315, 0.029442064464092255, -0.009955480694770813, -0.011792130768299103, -0.03272577375173569, -0.002671491587534547, -0.0005883020930923522, -0.012654799968004227, -0.004876863677054644, -0.006946573965251446, -0.028829846531152725, -0.0027880214620381594, -0.008452766574919224, -0.0163768008351326, -0.010713794268667698, 0.014595805667340755, -0.009788512252271175, -0.02569919265806675, -0.01957702450454235, -0.0016931621357798576, -0.006595245096832514, -0.008042302913963795, 0.020731888711452484, 0.005847366526722908, -0.016390714794397354, -0.008508422411978245, -0.006922224536538124, -0.005349940154701471, -0.012633929029107094, 0.004647282417863607, -0.0026349674444645643, 0.005336026195436716, 0.028356770053505898, 0.01008070632815361, 0.03770698979496956, 0.0012670453870669007, -0.041352465748786926, 0.0033097972627729177, -0.0069917943328619, 0.016098519787192345, 0.0011696472065523267, 0.006859611254185438, 0.021845009177923203, 0.030109936371445656, 0.006153475027531385, 0.00043546530650928617, -0.039432328194379807, 0.013976631686091423, 0.04032282531261444, 0.02514263242483139, 0.002104495419189334, -0.0270349383354187, 0.0076596676371991634, -0.02050926350057125, 0.014359267428517342, -0.013246146030724049, 0.006212609354406595, 0.0031010869424790144, 0.004087243229150772, -0.014456666074693203, -0.008543207310140133, 0.0008965845918282866, 0.020356209948658943, -0.004591626115143299, -0.027396703138947487, 0.0077501083724200726, 0.0008683217456564307, 0.027076680213212967, 0.02205372042953968, 0.021288448944687843, -0.009391962550580502, 0.0025480047333985567, 0.016182003542780876, 0.038096584379673004, -0.01486017182469368, 0.009781555272638798, -0.011632120236754417, -0.034089345484972, 0.00796577613800764, -0.012877424247562885, 0.00337241031229496, 0.006894396618008614, 0.018783925101161003, -0.019660508260130882, 0.02983165718615055, -0.0033967599738389254, 0.0261026993393898, -0.014234041795134544, -0.008724089711904526, 0.007506613153964281, 0.026436636224389076, -0.015096710994839668, 0.0423542745411396, -0.002047100104391575, 0.0439404733479023, 0.02208154834806919, -0.018575215712189674, 0.006456104572862387, -0.04836513102054596, 0.008522336371243, -0.017545577138662338, 0.0130513496696949, 0.0041359420865774155, -0.01608460582792759, 0.002892376622185111, 0.005823017098009586, 0.008793660439550877, 0.03239183500409126, 0.03581468388438225, 0.03100043348968029, 0.020439693704247475, 0.02114930935204029, -0.00933630671352148, -0.02628358267247677, -0.00649784691631794, -0.0322248674929142, -0.014067073352634907, -0.018505645915865898, -0.01523585058748722, 0.029302924871444702, 0.006379577796906233, -0.014289697632193565, 0.01117295678704977, 0.005377768538892269, 0.04138029366731644, 0.023431207984685898, 0.021775439381599426, 0.0282315444201231, -0.008355367928743362, -0.0251704603433609, 0.040601108223199844, 0.017267297953367233, 0.0016714215744286776, -0.0027706290129572153, -0.027341047301888466, -0.0017027280991896987, -0.0037220001686364412, 0.010498126968741417, -0.010233760811388493, 0.022457227110862732, -0.009858082048594952, 0.008738003671169281, -0.013510512188076973, -0.006476975977420807, 0.02692362666130066, -0.02383471466600895, -0.022846819832921028, -0.006449147593230009, 0.007172676734626293, -0.01643245667219162, -0.019006550312042236, -0.00942674744874239, 0.023125099018216133, 0.011409495957195759, -0.023347724229097366, -0.017044672742486, -0.00529428431764245, -0.011590377427637577, -0.011221656575798988, -0.027452358976006508, 0.00026132268249057233, -0.007346602156758308, 0.020578833296895027, 0.02085711434483528, 0.022485055029392242, -0.023737316951155663, 0.013322672806680202, 0.01808822527527809, -0.017378609627485275, -0.018185622990131378, -0.000708745326846838, 0.010692923329770565, -0.01555587351322174, 0.006967444904148579, 0.003979409579187632, -0.010825106874108315, -0.04516490548849106, -0.019187431782484055, -0.02295813150703907, 0.0005626481142826378, -0.0016392453107982874, 0.0007696191896684468, -0.007478785235434771, 0.03033256158232689, 0.019660508260130882, -0.008285798132419586, 0.03779047727584839, 0.000302847329294309, -0.0029219440184533596, -0.0139835886657238, 0.020119670778512955, -0.0009374570217914879, 0.016933361068367958, -0.026854056864976883, 0.006515239365398884, -0.0028158496133983135, 0.011590377427637577, -0.001435752841643989, -0.004650760907679796, 0.017587320879101753, -0.0028106318786740303, -0.014025331474840641, 0.009976351633667946, 0.013920975849032402, 0.0194378849118948, 0.022568538784980774, 0.007304859813302755, 0.022457227110862732, 0.008369282819330692, 0.04010020196437836, -0.035592060536146164, 0.007360516116023064, 0.018449990078806877, 0.023027701303362846, -0.00597954960539937, -0.020175326615571976, -0.01258523017168045, -0.031306542456150055, -0.0021462375298142433, -0.0019166561542078853, -0.00029523810371756554, -0.04227079078555107, 0.005085573997348547, 0.010845977813005447, -0.07240855693817139, -0.005158622749149799, 0.022999873384833336, 0.028050662949681282, -0.026060957461595535, -0.02407125197350979, 0.017489921301603317, -0.0127174137160182, 0.0005439511733129621, -0.019702250137925148, 0.012258250266313553, -0.007715323474258184, 0.01427578367292881, -0.023319896310567856, -0.01602894999086857, 0.0034350233618170023, -0.04466399922966957, 0.009510232135653496, 0.009197166189551353, -0.05395856499671936, -0.0279671773314476, -0.009197166189551353, -0.007005708757787943, 0.03578685596585274, 0.001158342114649713, -0.02135801874101162, -0.016279403120279312, 0.024279963225126266, -0.03389455005526543, -0.010929461568593979, -0.014707118272781372, -0.001836650539189577, 0.0073257312178611755, 0.004734245128929615, 0.0019392663380131125, 0.010595525614917278, -0.013468770310282707, -0.0006035205442458391, -0.010505083948373795, -0.0015088014770299196, 0.013774878345429897, 0.009127596393227577, 0.0005474296631291509, -0.0011400799266994, 0.0032906655687838793, 0.025309599936008453, -0.003624601988121867, -0.0001178343445644714, 0.016126347705721855, -0.04299432039260864, -0.037456538528203964, -0.011159042827785015, 0.009078897535800934, -0.001888828119263053, 0.035647716373205185, 0.021552816033363342, 0.0097189424559474, -0.009009327739477158, 0.003930710256099701, 0.002240156987681985, 0.02045360766351223, -0.008264927193522453, 0.02098233997821808, -0.005569085944443941, -0.0035237253177911043, -0.01121469959616661, -0.004497706424444914, -0.005788231734186411, 0.012974822893738747, -0.03225269541144371, 0.036371245980262756, 0.010505083948373795, -0.016710735857486725, 0.03520246967673302, -0.016919447109103203, -0.03523029759526253, -0.030610842630267143, 0.015319335274398327, -0.012967865914106369, 0.030861293897032738, 0.0021897186525166035, -0.044413547962903976, -0.016070691868662834, -0.007791850715875626, -0.0007470088894478977, 0.016627252101898193, -0.0388757698237896, -0.039515815675258636, -0.016682907938957214, -0.02905247174203396, -0.008675390854477882, -0.01882566697895527, 0.027494100853800774, -0.027925435453653336, 0.006849175784736872, 0.02135801874101162, -0.007812721654772758, 0.011096430011093616, 0.009579801931977272, 0.008487551473081112, -0.01914568990468979, -0.02780020982027054, -0.024933921173214912, -0.014790602028369904, -0.0254348274320364, -0.006167388986796141, 0.019563110545277596, 0.006595245096832514, 0.04012802988290787, -0.0009078897419385612, 0.009266736917197704, -0.004076807759702206, 0.005541258025914431, -0.009565887972712517, -0.017225556075572968, -0.002021011197939515, -0.016251573339104652, -0.017253383994102478, -0.000689178763423115, 0.0017088154563680291, 0.02905247174203396, -0.016321144998073578, -0.00761792529374361, 0.013002650812268257, -0.008668433874845505, 0.00027262780349701643, -0.019827477633953094, -0.05334634706377983, -0.001677508931607008, 0.011854744516313076, 0.003680258058011532, 0.007924034260213375, -0.03470156341791153, -0.010978161357343197, 0.007457914296537638, -0.015681099146604538, 0.020203156396746635, 0.004911648575216532, 0.006595245096832514, -0.02825937233865261, 0.008647562935948372, 0.01696118898689747, 0.007631839253008366, -0.007256160955876112, 0.02750801481306553, -0.026993196457624435, 0.02706276625394821, 0.009078897535800934, 0.007256160955876112, 0.022067634388804436, -0.00016696822422090918, 0.006706557236611843, -0.01362182479351759, -0.004191598389297724, -0.03283708542585373, -0.0163768008351326, -0.01771254651248455, -0.012042582966387272, -0.04232644662261009, -0.020787544548511505, 0.004407265689224005, -0.025866162031888962, 0.03712260350584984, 0.012724370695650578, 0.008139701560139656, 0.011917357333004475, -0.016182003542780876, -0.013628781773149967, 0.018463904038071632, -0.018422160297632217, 0.05320720747113228, 0.006400448735803366, 0.009656328707933426, 0.046194542199373245, 0.017406437546014786, -0.014213169924914837, -0.04814250394701958, -0.011979970149695873, 0.004320302978157997, 0.029609031975269318, 0.009732856415212154, 0.017907341942191124, -0.021956322714686394, 0.04018368571996689, 0.02229025773704052, -0.016975102946162224, -0.036927808076143265, 0.022123290225863457, 0.03300405293703079, -0.003081955248489976, -0.019326573237776756, 0.0010965985711663961, -0.027257563546299934, 0.011110343970358372, -0.011103386990725994, -0.02027272619307041, -0.018227364867925644, -0.011833873577415943, -0.004048979375511408, 0.024697383865714073, 0.001069640158675611, 0.0063482713885605335, 0.02412690967321396, 0.004299432039260864, 0.01579241082072258, 0.005496037658303976, -0.013760964386165142, 0.01299569383263588, 0.007569226436316967, 0.04346739500761032, 0.008230142295360565, -0.007576183415949345, 0.024196479469537735, -0.012522617354989052, 0.0028280243277549744, -0.00986503902822733, 0.012216508388519287, 0.04702938348054886, -0.014971484430134296, 0.006609159056097269, 0.00029002033988945186, -0.01643245667219162, 0.02112148143351078, -0.0029306402429938316, -0.002619314007461071, -0.0013540079817175865, -0.00660568056628108, -0.012084325775504112, 0.025281772017478943, -0.01024071779102087, -0.00964241474866867, -0.000567865907214582, -0.007847506552934647, -0.015681099146604538, -0.0024210393894463778, 0.0029515111818909645, 0.023208582773804665, -0.014748860150575638, -0.02633923850953579, 0.000999200507067144, -0.005711704958230257, -0.005976071115583181, -0.002574093407019973, 0.002993253292515874, 0.035675544291734695, 0.05067485570907593, -0.019660508260130882, 0.008564078249037266, -0.003275012131780386, -0.0002093625080306083, -7.310295040952042e-05, -0.0032767513766884804, -0.027201907709240913, -0.014734946191310883, 0.0071657197549939156, -0.012230422347784042, -0.017239470034837723, -0.0327536016702652, 0.008181443437933922, 0.022749420255422592, 0.0026662738528102636, 0.04263255372643471, 0.002737583126872778, -0.0006513500120490789, 0.0029045515693724155, 0.0021323233377188444, -0.02535134181380272, -0.0004287257033865899, 0.006960487924516201, -0.009009327739477158, 0.013093091547489166, -0.005412553437054157, 0.016001122072339058, -0.012446089647710323, 0.0035324215423315763, -0.0052734133787453175, -0.03475721925497055, -0.03239183500409126, -0.0019236131338402629, 0.01984139159321785, -0.00837623979896307, 0.02240157127380371, -0.03620427846908569, -0.00537429004907608, -0.02689579874277115, -0.00011685601930366829, 0.004462921526283026, -0.009051069617271423, 0.0275636725127697, 0.012501746416091919, 0.013747050426900387, 0.01634897291660309, -0.01223737932741642, -0.01696118898689747, 0.003895925357937813, -0.03548074886202812, -0.026408808305859566, -0.019757907837629318, -0.02631141059100628, 0.04407961294054985, -0.000995722017250955, -0.004650760907679796, -0.03823572397232056, 0.00977459829300642, -0.04032282531261444, -0.00898845586925745, -0.01954919658601284, 0.028746362775564194, 0.02357034757733345, 0.014846257865428925, -0.01102686021476984, 0.029386408627033234, -0.0059552001766860485, -0.004076807759702206, -0.006723949685692787, -0.00010000701149692759, -0.016655080020427704, -0.030193421989679337, -0.01710032857954502, 0.005589957349002361, -0.020634490996599197, -0.008786702528595924, -0.010449428111314774, -0.009969394654035568, 0.009405876509845257, 0.03553640469908714, -0.009092811495065689, -0.03186310455203056, -0.004205512348562479, 0.0017714285058900714, -0.027869779616594315, 0.02441910281777382, -0.006024770438671112, -0.023125099018216133, -0.020147498697042465, 0.0014061855617910624, -0.01177125982940197, -0.016613338142633438, 0.009211080148816109, 0.003294144058600068, -0.011165999807417393, 0.01776820234954357, -0.004706416744738817, 0.0015296724159270525, 0.0014548846520483494, 0.004212469328194857, 0.012265208177268505, 0.005850845016539097, -0.0012044322211295366, 0.009656328707933426, -0.013496598228812218, 0.0009426747565157712, 0.009016284719109535, 0.01105468813329935, -0.04093504324555397, -0.02966468781232834, 0.030082108452916145, -0.015597615391016006, 0.003121958114206791, 0.0030349954031407833, 0.02421039342880249, -0.014665376394987106, -0.01789342798292637, 0.013141791336238384, -0.0022749421186745167, -0.026993196457624435, -0.015263678506016731, 0.0063587068580091, -0.03481287509202957, -0.009183252230286598, -0.0015992425614967942, -0.002561918692663312, 0.018658699467778206, -0.03414500132203102, 0.020356209948658943, -0.028161974623799324, 0.024001682177186012, -0.005089052487164736, -0.00033111017546616495, -0.006428276654332876, 0.008125786669552326, 0.01406011637300253, -0.01034507341682911, -0.0019218738889321685, 0.23264239728450775, -0.031946588307619095, 0.002777585992589593, 0.00458814762532711, -0.00611868966370821, 0.004195076879113913, 0.028746362775564194, 0.006129125133156776, 0.015430646948516369, 0.00597954960539937, -0.01242521870881319, 0.0030889122281223536, 0.0018957850988954306, -0.01258523017168045, 0.00172099017072469, -0.021552816033363342, -0.027549756690859795, -0.036983463913202286, -0.027048852294683456, 0.0006904831971041858, 0.02908029966056347, -0.0037811347283422947, -0.017169900238513947, 0.006678729318082333, 0.007722280453890562, 0.014171428047120571, -0.034423284232616425, 0.02368166111409664, 0.020592747256159782, 0.006393491756170988, -0.011152085848152637, 0.005656048655509949, 0.015625443309545517, -0.00294977193698287, -0.010338116437196732, -0.01744817942380905, -0.0035324215423315763, 0.0008496248046867549, 0.025003492832183838, 0.003774177748709917, 0.00743008591234684, 0.00887018721550703, 0.025045234709978104, -0.024363446980714798, 0.005370811093598604, 0.0014157514087855816, -0.021260621026158333, -0.01678030751645565, 0.006807433906942606, -0.0027410618495196104, -0.019938789308071136, -0.004518577829003334, 0.030583012849092484, 0.03475721925497055, 0.004069850780069828, -0.007179633714258671, 0.0012557401787489653, -0.016794221475720406, 0.01195909921079874, 0.01728121191263199, -0.013093091547489166, 0.028440255671739578, -0.010150277055799961, 0.038736630231142044, -0.023417294025421143, 0.0026732308324426413, -0.014776688069105148, -0.009106725454330444, 0.0012218247866258025, -0.00633783545345068, 0.0006487411446869373, -0.005663005635142326, -0.005224714055657387, -0.02479478158056736, -0.02453041635453701, -0.03851400315761566, 0.04842078685760498, 0.01765689067542553, 0.026186183094978333, 0.03901490941643715, -0.012494789436459541, 0.006647422444075346, 0.0027219299226999283, -0.015695013105869293, -0.00434117391705513, -0.016251573339104652, 0.005050789099186659, -0.013865320011973381, -0.003240227233618498, -0.004849035758525133, 0.011068602092564106, -0.0033393646590411663, 0.008744960650801659, -0.0014261869946494699, -0.016418542712926865, 0.011221656575798988, 0.006908310577273369, 0.013350501656532288, -0.005530822556465864, -0.020411865785717964, -0.0254348274320364, 0.03890359774231911, 0.012341734953224659, 0.03470156341791153, -0.012160852551460266, 0.005558650474995375, 0.009670243598520756, -0.007290945854038, 0.01073466520756483, -0.005798667203634977, 0.007534441072493792, -0.04881037771701813, -0.013308758847415447, 0.0018644785741344094, -0.0026819270569831133, -0.007666624616831541, -0.02258245274424553, -0.0097189424559474, -0.012160852551460266, -0.003895925357937813, 0.019034378230571747, -0.015945466235280037, -0.021747611463069916, -0.006630029994994402, -0.02913595549762249, -0.014442752115428448, 0.002509741112589836, -0.005127315875142813, -0.020578833296895027, -0.005367332603782415, 0.034618079662323, -0.03392237797379494, 0.030026452615857124, -0.00930847879499197, 0.008529293350875378, 0.011353839188814163, 0.010595525614917278, -0.011089473031461239, 0.009892867878079414, 0.0006169997504912317, -0.00337241031229496, 0.02205372042953968, 0.004007237497717142, -0.007722280453890562, 0.02333381026983261, 0.013524426147341728, 0.0038298338185995817, 0.04396830126643181, -0.004139420576393604, 0.0044490075670182705, -0.05036874860525131, -0.025866162031888962, 0.00833449698984623, -0.01634897291660309, 0.03642690181732178, 0.026144441217184067, -0.03208572790026665, 0.0009209341369569302, 0.002601921558380127, 0.007388344034552574, -0.02974817343056202, -0.01605677790939808, 0.016627252101898193, -0.010407686233520508, -0.025240030139684677, -0.009885910898447037, -0.17809943854808807, 0.005788231734186411, 0.03767916187644005, -0.028968987986445427, 0.022791163995862007, 0.004028108436614275, 0.013893147930502892, -0.010950332507491112, -0.008911929093301296, -0.021024081856012344, 0.02045360766351223, 0.022276343777775764, -0.017142070457339287, -0.007784893736243248, -0.005144708324223757, 0.014261869713664055, -0.03208572790026665, 0.031390026211738586, 0.010449428111314774, -0.002191457897424698, 0.05537779629230499, -0.017754288390278816, -0.016529854387044907, 0.024906093254685402, -0.009795469231903553, 0.0022871168330311775, -0.016613338142633438, 0.022624194622039795, 0.00420203385874629, -0.029469892382621765, -0.000539603061042726, -0.0142479557543993, 0.01406011637300253, 0.007256160955876112, 0.030666498467326164, 0.004247254226356745, 0.003288926323875785, 0.004139420576393604, -0.015861982479691505, 0.00357590289786458, 0.004981218837201595, 0.038152240216732025, -0.004473356995731592, 0.0059552001766860485, -0.0055064731277525425, 0.0037985271774232388, 0.029414236545562744, -0.0002800196234602481, 0.0022210252936929464, -0.00040481099858880043, 0.025977473706007004, -0.02234591357409954, 0.0233059823513031, -0.015625443309545517, 0.04160291701555252, 0.006042162887752056, -0.00017033802578225732, -0.013294844888150692, 0.0006974401767365634, -0.015221936628222466, -0.009969394654035568, -0.01236956287175417, 0.025226116180419922, 0.009482404217123985, -0.008515379391610622, -0.012362605892121792, -0.031195230782032013, 0.04725200682878494, 0.0037567850667983294, -0.004268125165253878, 0.01593155227601528, 0.006494368426501751, 0.01981356367468834, -0.015013226307928562, 0.018770011141896248, -0.0033219719771295786, -0.003285447834059596, 0.00611868966370821, 0.03709477558732033, -0.007708366494625807, -0.009127596393227577, 0.05315155163407326, -0.01888132281601429, -0.009294564835727215, 0.014846257865428925, 0.0051307943649590015, 0.01765689067542553, 0.011270355433225632, -0.03486853092908859, -0.0071657197549939156, 0.031362198293209076, 0.004737723618745804, -0.006574374157935381, -0.01762906275689602, -0.005718661937862635, 0.00434117391705513, -0.0035028543788939714, -0.016682907938957214, -0.023556433618068695, -0.007687495555728674, -0.012188680469989777, 0.005339504685252905, -0.016098519787192345, 0.0010313766542822123, 0.02735496126115322, 0.006463062018156052, 0.010011136531829834, 0.020898856222629547, 0.035174641758203506, -0.004146377556025982, -0.0036141665186733007, 0.012105196714401245, 0.0062682656571269035, 0.028857674449682236, 0.009593715891242027, 0.011555592529475689, -0.022331999614834785, -0.02508697658777237, -0.004038543906062841, 0.016710735857486725, -0.014213169924914837, -0.028356770053505898, 0.03620427846908569, 0.028662879019975662, -0.02325032651424408, -0.013920975849032402, -0.047418978065252304, -0.03233617916703224, 0.014776688069105148, 0.03762350603938103, -0.0163768008351326, 0.02770281210541725, -0.002271463628858328, 0.05159318074584007, -0.0049151270650327206, 0.010358987376093864, -0.01346181333065033, -0.014025331474840641, -0.003624601988121867, 0.004963826388120651, -0.010908590629696846, 0.0027932391967624426, -0.007805764675140381, -0.0136496527120471, -0.01952136866748333, 0.030026452615857124, -0.01545847486704588, -0.01986921951174736, 0.006598723586648703, -0.0404897965490818, -0.0004132898466195911, 0.003064562566578388, -0.016655080020427704, 0.002170586958527565, 0.026506206020712852, 0.012056497856974602, 0.020091842859983444, -0.03339364379644394, -0.0015922855818644166, -0.007534441072493792, -0.004577712155878544, 0.003923753276467323, -0.01771254651248455, -0.03100043348968029, 0.03216921165585518, -0.02258245274424553, 0.02170586958527565, -0.0026210532523691654, -0.005885629914700985, -0.008007518015801907, 0.004389872774481773, -0.018756097182631493, -0.021636299788951874, 0.01666899397969246, -0.018770011141896248, -0.005012525245547295, -0.02109365351498127, -0.008877144195139408, -0.010783364996314049, 0.004772508516907692, 0.03464590758085251, 0.031250886619091034, 0.017142070457339287, 0.017142070457339287, -0.030527357012033463, 0.016613338142633438, -0.0014070551842451096, -0.013726179488003254, -0.02170586958527565, 0.012842639349400997, 0.018770011141896248, 0.004375958815217018, -0.03784613311290741, -0.003815919626504183, 0.016599424183368683, 0.008967584930360317, 0.004922084044665098, 0.024961750954389572, -0.013990545645356178, 0.008390153758227825, -0.035063326358795166, -0.022526796907186508, -0.01890915259718895, -0.005342983175069094, 0.04232644662261009, -0.030805638059973717, -0.016919447109103203, -0.0057917102240026, 0.004400308709591627, -0.02229025773704052, 0.014150557108223438, 0.023584261536598206, -0.009684157557785511, -0.01490191463381052, -0.01223737932741642, -0.023083357140421867, 0.01890915259718895, 0.01728121191263199, 0.004706416744738817, -0.008292755112051964, -0.01675247959792614, -0.03425631299614906, 0.016154175624251366, -0.0028680271934717894, 0.004553362727165222, 0.01002505049109459, -0.018728269264101982, -0.04480314254760742, -0.0807013064622879, 0.01184083055704832, -0.0037011289969086647, 0.007030058186501265, 0.008348410949110985, -0.004539448767900467, 0.03715043142437935, -0.005148186814039946, 0.009315435774624348, -0.0030976084526628256, -0.014414923265576363, 0.00715180579572916, 0.009190209209918976, -0.0028332420624792576, -0.03392237797379494, -0.02141367457807064, 0.015583701431751251, 0.006866568233817816, -0.0006443930324167013, 0.0029341187328100204, -0.0002526263997424394, -0.007478785235434771, 0.03105609118938446, 0.0028158496133983135, -0.017197728157043457, 0.010901633650064468, -0.010852934792637825, 0.008383196778595448, -0.006236958783119917, -0.015917638316750526, -0.0031097831670194864, -0.006379577796906233, -0.01733686774969101, 0.012613058090209961, -0.02537916973233223, -0.01789342798292637, 0.011819958686828613, 0.01570892706513405, 0.017809944227337837, 0.02394602634012699, -0.013559211045503616, -0.04096287116408348, 0.005416031926870346, -0.0020488393492996693, -0.0028367205522954464, 0.015945466235280037, -0.028454169631004333, 0.006296093575656414, 0.010908590629696846, -0.0045290132984519005, 0.02519828826189041, 0.011256441473960876, -0.008000561036169529, -0.026158355176448822, -0.025532225146889687, -0.029915140941739082, 0.027577586472034454, -0.005850845016539097, -0.002191457897424698, 0.025796590372920036, 0.022526796907186508, 0.0016435935394838452, 0.022123290225863457, -0.006223044823855162, -0.01483234390616417, 0.0012070410884916782, -0.010845977813005447, -0.01286351028829813, -0.012000841088593006, -0.028078490868210793, -0.025921817868947983, -0.0021723262034356594, -0.0006174346199259162, 0.022039806470274925, 0.020912770181894302, 0.022137204185128212, 0.0046646748669445515, -0.0016140261432155967, -0.03403368964791298, 0.04572146758437157, 0.03414500132203102, -0.026380980387330055, -0.028746362775564194, 0.007847506552934647, -0.0037880917079746723, 0.0009009327040985227, -0.021260621026158333, -0.009760684333741665, -0.020996253937482834, -0.013503555208444595, -0.014581891708076, 0.014101858250796795, 0.009315435774624348, 0.02048143558204174, 0.03612079471349716, 0.005002089776098728, 0.004782943986356258, -0.027981091290712357, 0.017809944227337837, 0.024307791143655777, 0.017044672742486, -0.02077363058924675, -0.01728121191263199, -0.016613338142633438, -0.0025827898643910885, 0.008285798132419586, -0.03790178894996643, -0.03214138373732567, 0.006779605522751808, 0.02860722318291664, -0.009301521815359592, 0.020495349541306496, -0.00649784691631794, 0.027368875220417976, -0.021218879148364067, -0.0020192719530314207, -0.010205932892858982, -0.021775439381599426, -0.04672327637672424, 0.014846257865428925, 0.021984150633215904, 0.0048977346159517765, 0.03180744871497154, -0.006567417178303003, 0.04410744085907936, 0.005398639477789402, 0.005948243197053671, -0.05084182694554329, 0.022067634388804436, -0.00990678183734417, -0.018575215712189674, 0.0072839888744056225, -0.017796030268073082, -0.0262279249727726, -0.033866722136735916, -0.015945466235280037, -0.01879783906042576, 0.017587320879101753, -0.018171709030866623, 0.06700991839170456, 0.0071309348568320274, 0.0155141307041049, -0.011075559072196484, 0.015291506424546242, 0.005280370358377695, -0.005089052487164736, -0.0020662317983806133, 0.003763742046430707, 0.003930710256099701, -0.0015548915835097432, -0.014122729189693928, -0.02532351389527321, -0.02814806066453457, -0.010859891772270203, -0.010602482594549656, -0.01590372435748577, 0.04583277925848961, 0.007402257993817329, -0.0025427869986742735, 0.03367192670702934, 0.0009226733818650246, 0.006383056286722422, 0.002513219602406025, -0.004240297246724367, -0.006153475027531385, 0.02336163818836212, -0.012265208177268505, 0.0001268567139049992, -0.00510644493624568, 0.010783364996314049, -0.017796030268073082, -0.01806039735674858, -0.02759150043129921, 0.004400308709591627, 0.012599144130945206, -0.008605821058154106, -0.008202314376831055, 0.016947275027632713, 0.019479626789689064, -0.014985398389399052, -0.0028019356541335583, -0.01683596335351467, -0.021427588537335396, 0.0023010307922959328, -0.00337241031229496, -0.003728957148268819, -0.0017296865116804838, -0.0023636440746486187], "9c38a9cf-92ca-492e-bf14-e332287c02ad": [-0.024405241012573242, -0.013998768292367458, -0.018073298037052155, -0.012810654938220978, -0.00758295739069581, 0.010273683816194534, -0.040367890149354935, -0.05440160259604454, -0.02053339034318924, -0.023370884358882904, 0.005661009810864925, 0.021246258169412613, -0.012097787111997604, -0.01647982746362686, 0.009791449643671513, -0.00494115287438035, 7.22914410289377e-05, 0.020868858322501183, 0.02392999641597271, -0.012055854313075542, 0.003449022537097335, 0.009015682153403759, -0.025411643087863922, -0.040339935570955276, -0.023888062685728073, -0.012447232380509377, 0.01773783005774021, -0.018296942114830017, 0.022755861282348633, 0.0036342283710837364, 0.01987643353641033, -0.0047978805378079414, -0.010783874429762363, -0.005409409292042255, -0.00510189775377512, -0.01874423213303089, -0.004161890596151352, -0.00617119949311018, -2.1540010493481532e-05, 0.023203151300549507, 0.02643202245235443, 0.017150763422250748, 0.013257944956421852, 0.014536913484334946, -0.028165269643068314, -0.008666236884891987, -0.013223000802099705, -0.013768134638667107, -0.024265464395284653, 0.013313855975866318, -0.02630622312426567, 0.035056326538324356, -0.03220485523343086, -0.004085012711584568, -0.0010457142489030957, 0.01140588615089655, -0.017458274960517883, 0.006436777766793966, -0.006499677896499634, -0.012635932303965092, 0.0034542642533779144, -0.018828099593520164, -0.043750520795583725, 0.02314724028110504, 0.020421568304300308, 0.022378461435437202, -0.0026365628000348806, 0.01441111322492361, -0.0008862799732014537, 0.006967934314161539, 0.007939391769468784, 0.013188055716454983, -0.01751418597996235, 0.003394858678802848, 0.030052274465560913, 0.0015646402025595307, -0.00956780556589365, 0.0003520658938214183, 0.0027012100908905268, 0.0008216326823458076, 0.018534565344452858, 0.01070000696927309, -0.007715746760368347, -0.0040605515241622925, 0.01177629828453064, 0.013069245032966137, -0.0003107876982539892, 0.01600458286702633, 0.011937042698264122, -0.008533447980880737, 0.015123981051146984, 0.021595703437924385, 0.0501243956387043, 0.02165161445736885, 0.004493863321840763, 0.011944031342864037, -0.03259623423218727, 0.021427970379590988, -0.02806742675602436, -0.03033182956278324, 0.001384675968438387, -0.02105056867003441, -0.01798943057656288, 0.009679627604782581, -0.039864689111709595, -0.02619440108537674, 0.03692935034632683, -0.0013794342521578074, -0.008764081634581089, -0.009407060220837593, -0.02545357681810856, 0.039864689111709595, 0.012677866034209728, -0.02381817437708378, -0.02239243872463703, 0.029129737988114357, 0.037712108343839645, 0.0008806015248410404, -0.028989961370825768, -0.012426265515387058, 0.01353051234036684, 0.021581726148724556, 0.0362863726913929, 0.006394844502210617, 0.033686503767967224, -0.008072180673480034, -0.025341754779219627, -0.010993541218340397, 0.0005875044735148549, -0.01241228822618723, 0.05982499197125435, 0.007506079506129026, 0.020868858322501183, -0.0007631006301380694, -0.02429341897368431, 0.023468729108572006, 0.00019754565437324345, 0.002355259610339999, -0.018953898921608925, 0.004787397105246782, 0.012719799764454365, 0.0016598639776930213, -0.005811271257698536, 0.004158395808190107, 0.013313855975866318, 0.011356963776051998, -0.0012641174253076315, 0.0006176441092975438, -0.01038550678640604, -0.0015794915379956365, -0.007541024126112461, 0.008917837403714657, 0.00837969221174717, -0.0027588685043156147, -0.00787649117410183, 0.014788514003157616, 0.006541611161082983, 0.018199097365140915, -0.016591651365160942, -0.0034927031956613064, 0.018953898921608925, 0.016158338636159897, 0.003742556320503354, -0.05048782005906105, 0.012545077130198479, 0.039836734533309937, 0.03307148069143295, -0.006587039213627577, -0.016843251883983612, 0.0015707554994150996, -0.018925944343209267, 0.015263759531080723, -0.026418045163154602, 0.018981855362653732, -0.021190347149968147, 0.007946380414068699, 0.021190347149968147, 0.0023238095454871655, 0.013327834196388721, 0.018171142786741257, -0.029185650870203972, 0.000943501596339047, -0.0027815825305879116, 0.02671157941222191, -0.02734057977795601, -0.02507617697119713, 0.02053339034318924, 0.022015037015080452, 0.027410469949245453, 0.015515360049903393, 0.017653964459896088, 0.03765619918704033, 0.01914958842098713, 0.01025271788239479, -0.5917642116546631, -0.0117203863337636, -0.016955073922872543, -0.0013261439744383097, -0.0035608450416475534, 0.03265214338898659, -0.0035224060993641615, 0.02381817437708378, -0.038578733801841736, 0.028374938294291496, 0.0032236305996775627, -0.0007137415232136846, -0.005329037085175514, -0.007988314144313335, -0.02054736763238907, -0.02481059730052948, 0.01850660890340805, -0.006097815930843353, -0.013684268109500408, 0.008847948163747787, -0.030247962102293968, -0.007485112641006708, -0.00015277300553862005, 0.012740766629576683, 0.012782699428498745, 0.016675516963005066, -0.03290374577045441, -0.007513068616390228, 0.013768134638667107, 0.02089681290090084, -0.016298117116093636, 0.01963881216943264, 0.027745936065912247, -0.012740766629576683, 0.04484078660607338, -0.025132087990641594, -0.010322606191039085, 0.013257944956421852, 0.018422743305563927, 0.04293980821967125, -0.028878137469291687, -0.006733805872499943, 0.016298117116093636, 0.009358137845993042, -0.011818231083452702, 0.02127421461045742, 0.014690669253468513, -0.01575298234820366, 0.00022670246835332364, -0.019988255575299263, 0.005640042945742607, -0.021721504628658295, 0.0005966774187982082, 0.0016738417325541377, 0.007645857520401478, 0.004752452485263348, 0.02230857126414776, -0.0071566347032785416, 0.011440830305218697, -0.04372256249189377, -0.03902602195739746, -0.019191522151231766, -0.010336584411561489, 0.0029755246359854937, -0.03340694680809975, -0.005007547326385975, -0.013334822840988636, -0.004843308124691248, 0.0021630648989230394, -0.015794916078448296, -0.009400071576237679, -0.00041147152660414577, 0.012237565591931343, 0.01861843280494213, 0.011238152161240578, -0.006115288473665714, 0.029129737988114357, -0.011978976428508759, -0.011294064112007618, 0.006269044242799282, -0.0010465879458934069, -0.0002627389912959188, -0.022462327033281326, -0.015836849808692932, 0.00695745088160038, -0.015641160309314728, -0.01403371337801218, 0.009980150498449802, 0.02781582623720169, 0.021819349378347397, 0.023203151300549507, 0.012915488332509995, 0.01025271788239479, -7.103562529664487e-05, -0.007666824385523796, 0.019862456247210503, -0.0187721885740757, 0.008750103414058685, 0.010993541218340397, -0.03463699296116829, -0.05412204936146736, 0.013705234974622726, -0.00500055868178606, 0.016521761193871498, 0.02795560285449028, 0.008044225163757801, -0.021316148340702057, -0.0024496098048985004, 0.04621061310172081, -0.013747167773544788, -0.01455089170485735, 0.000713304674718529, -0.015123981051146984, 0.0004282885929569602, -0.0007945506949909031, -0.031925298273563385, 0.006083838175982237, 0.015445470809936523, 0.02342679537832737, 0.00019405120110604912, 0.022084927186369896, -0.008274858817458153, 0.03553157299757004, 0.015515360049903393, -0.001893992186523974, 0.03147801011800766, 0.03410583734512329, 0.02339884079992771, -0.002481059869751334, -0.0037215896882116795, 0.004832825157791376, -0.011363952420651913, 0.02179139293730259, -0.03248441219329834, -0.0018503115279600024, -0.010084983892738819, 0.03010818548500538, 0.018338875845074654, 0.03262418881058693, -0.003288277890533209, -0.02079896815121174, -0.01660562865436077, 0.00661499472334981, -0.010874729603528976, -0.0063913497142493725, -0.03413379192352295, -0.009302226826548576, 0.02138603664934635, 0.002425148617476225, -0.0015096025308594108, 0.004679068922996521, 0.007771657779812813, -0.011545664630830288, 0.03438539057970047, -0.017276562750339508, -0.002924855099990964, -0.009504904970526695, -0.02996840700507164, -0.013320844620466232, -0.01498420350253582, 0.00479089142754674, -0.033686503767967224, -0.014648736454546452, -0.009924239479005337, -0.007960357703268528, -0.02481059730052948, -0.0194011889398098, 0.0003007411432918161, -0.00799530278891325, -0.029632939025759697, -0.031673699617385864, 0.0011653992114588618, -0.02517402172088623, 0.018925944343209267, -0.010755917988717556, 0.012740766629576683, -0.010867740958929062, -0.0076248906552791595, 0.0014615538530051708, 0.0005232939729467034, -0.00749210175126791, 0.017052918672561646, -0.007352323736995459, 0.008757092989981174, 0.025886889547109604, 0.020100079476833344, 0.030275918543338776, 0.02796958200633526, -0.0011365700047463179, 0.02555142156779766, 0.0005713426508009434, 0.021176369860768318, -0.0037146008107811213, 0.006013949401676655, 0.028500737622380257, 0.0024426209274679422, 0.007275445852428675, -0.0225461944937706, -0.025132087990641594, 0.028542671352624893, 0.043359141796827316, 0.024754686281085014, 0.008344748057425022, -0.04632243514060974, 0.024782642722129822, -0.03301556780934334, 0.014620780944824219, -0.0014091371558606625, 0.018870031461119652, -0.002412918023765087, 0.01649380661547184, -0.017961475998163223, -0.01723462902009487, 0.005426881369203329, 0.02265801653265953, 0.018576499074697495, -0.035084281116724014, 0.002799054840579629, 0.0034053418785333633, 0.007170612458139658, 0.02570517733693123, 0.0024268957786262035, 0.013271923176944256, 0.005916104651987553, -0.02683737874031067, 0.010434429161250591, 0.0017245112685486674, 0.010343573056161404, -0.00707975635305047, -0.03698526322841644, -0.0016013318672776222, -0.02809538133442402, 0.0015305692795664072, -0.010602162219583988, 0.01663358323276043, -0.008610325865447521, 0.032428499311208725, -0.01044840645045042, -0.0010710490169003606, 0.013216011226177216, 0.004235273692756891, 0.025579378008842468, 0.008505492471158504, -0.02757820300757885, 0.023734306916594505, 0.022951550781726837, 0.04014424607157707, 0.01902378723025322, -0.005185764282941818, 0.025509487837553024, -0.040339935570955276, 0.020743057131767273, -0.04092700406908989, 0.00951189361512661, -0.011329008266329765, 0.00034922664053738117, -0.0029650412034243345, 0.02406977489590645, 0.00679670600220561, 0.02809538133442402, 0.04361074045300484, 0.020701125264167786, -0.006020938046276569, 0.0339660570025444, 0.005273125600069761, -0.002966788364574313, -0.004584718961268663, -0.024754686281085014, 0.019540967419743538, -0.018842076882719994, -0.016423916444182396, -0.0025299820117652416, -0.011671464890241623, -0.017024962231516838, -0.012244554236531258, -0.01891196519136429, 0.025607332587242126, 0.01712280698120594, 0.013376756571233273, 7.988095603650436e-05, 0.004755946807563305, -0.01220961008220911, 0.024363309144973755, 0.018716275691986084, -0.0012676118640229106, -0.01701098494231701, 0.004378546494990587, 0.0017882849788293242, 0.017038939520716667, 0.01916356571018696, -0.007443179376423359, -0.0002915681980084628, 0.01888401061296463, 0.003394858678802848, -0.00016511278226971626, -0.0069434731267392635, 0.011762320064008236, -0.041122693568468094, -0.03902602195739746, -0.018282964825630188, 0.01891196519136429, 0.027116935700178146, -0.002872438170015812, -0.00924631580710411, 0.03340694680809975, 0.012517121620476246, -0.008938804268836975, 0.011978976428508759, 0.0049341642297804356, 0.0006962692714296281, 0.006300494074821472, -0.014117579907178879, -0.006852617487311363, -0.00774370227009058, 0.02583097666501999, -0.00449735764414072, 0.03863464295864105, -0.017779763787984848, 0.01505409274250269, 0.018981855362653732, -0.00724050123244524, -0.0023517650552093983, -0.010867740958929062, -0.002750132465735078, -0.04769225791096687, 0.014998180791735649, 0.004815352614969015, 0.004133935086429119, -0.032819878309965134, -0.010161861777305603, -0.0068561118096113205, -0.022993484511971474, -0.0026662657037377357, -0.014634758234024048, -0.011489752680063248, 0.0007574221235699952, 0.008204969577491283, -0.008519469760358334, 0.0045462800189852715, -0.0034193196333944798, 0.0017149015329778194, -0.03234463185071945, 0.02592882141470909, 0.015948671847581863, -0.0008508986793458462, -0.0012344146380200982, 0.02229459397494793, 0.02292359434068203, -0.024097729474306107, 0.0018817615928128362, -0.024894464761018753, 0.016591651365160942, 0.002089681336656213, -0.02037963457405567, -0.006279527209699154, 0.018828099593520164, 0.0035643393639475107, 0.02618042193353176, -0.012740766629576683, 0.009518883191049099, 0.0225461944937706, 0.038466911762952805, 0.003571328241378069, -0.01158759742975235, 0.003188685979694128, 0.030667297542095184, -0.0006119656027294695, -0.00981940608471632, 0.012384332716464996, -0.016060493886470795, -0.007027339655905962, 0.007415223866701126, 0.0009068098734132946, -0.012649910524487495, 0.013320844620466232, -0.009980150498449802, -0.03799166530370712, -0.015515360049903393, -0.025649266317486763, 0.01776578649878502, -0.031142542138695717, -0.013034299947321415, 0.01660562865436077, -0.006527633406221867, 0.006775739602744579, -0.04089904949069023, 0.026166444644331932, -0.014998180791735649, -0.03326716646552086, -0.018101252615451813, -0.023580551147460938, 0.0009548585512675345, -0.03514019399881363, -0.011790275573730469, 0.004983086138963699, -0.03086298704147339, -0.05266835540533066, -0.011895108968019485, 0.023524640128016472, 0.015529337339103222, 0.026390088722109795, 0.0011828715214505792, -0.01701098494231701, 0.02545357681810856, -0.020351679995656013, -0.010126917622983456, -0.001680830609984696, -0.01491431426256895, 0.009938216768205166, -0.009651672095060349, -0.00048354457248933613, -0.01836683228611946, -0.009532860480248928, -0.005423387046903372, 0.01001509465277195, 0.020491456612944603, 0.040787223726511, 0.014928292483091354, -0.011804253794252872, -0.010846774093806744, -0.008344748057425022, -0.0037285785656422377, 0.003899806644767523, 0.008086157962679863, 0.019107654690742493, -0.014788514003157616, -0.0291017834097147, -0.013404712080955505, -0.002089681336656213, -0.0070518008433282375, 0.039361488074064255, 0.01019680593162775, 0.017667941749095917, -0.006719828117638826, 0.006185177247971296, 0.004434457514435053, 0.021581726148724556, 0.0007783888140693307, 0.029940450564026833, 0.014522936195135117, 0.003452517092227936, -0.029912495985627174, 0.0018118725856766105, -0.008589359000325203, -0.0016415180871263146, -0.030499562621116638, 0.03891419991850853, 0.00020158611005172133, -0.01415951270610094, 0.008903860114514828, -0.01088870782405138, -0.044365543872117996, -0.02289563976228237, 0.009931228123605251, -0.025397665798664093, 0.004962119739502668, 0.008121103048324585, -0.04156998172402382, -0.03410583734512329, 1.5602176063111983e-05, 0.01624220609664917, 0.007960357703268528, -0.013139133341610432, -0.03335103392601013, -0.017416341230273247, -0.007268456742167473, -0.013803078792989254, 0.002080945298075676, 0.006307483185082674, -0.02545357681810856, -0.028989961370825768, -0.009455982595682144, 0.0003754350182134658, 0.01838080957531929, 0.013635345734655857, 0.013174078427255154, -0.03583908453583717, -0.008966759778559208, 0.001680830609984696, -0.04498056694865227, -0.019191522151231766, 0.0028654492925852537, 0.02746638096868992, 0.018422743305563927, 0.01762600801885128, -0.0008045972208492458, 0.0009225349058397114, -0.00456724688410759, 0.048922307789325714, 0.018464675173163414, 0.00575885409489274, 0.00440650200471282, -0.040479712188243866, -0.002898646518588066, 0.013453634455800056, 0.02367839589715004, 0.028416870161890984, -0.009414049796760082, -0.014250368811190128, 0.029493162408471107, -0.003124038688838482, 0.01761203072965145, -0.005374464672058821, -0.03172960877418518, 0.0064961835741996765, 0.0015794915379956365, -0.008952781558036804, -0.01610242761671543, -0.02242039330303669, -0.03413379192352295, -0.005699448753148317, -0.03662183880805969, 0.01108439639210701, 0.006045399233698845, 0.010930640622973442, -0.02756422571837902, -0.005790304392576218, -0.0008032867917791009, 0.018031364306807518, -0.014236390590667725, 0.009770483709871769, -0.02419557422399521, -0.007464146241545677, -0.005318553652614355, -0.009721561335027218, 0.028360959142446518, -0.005454837344586849, -0.010357551276683807, -0.0023727319203317165, -0.004493863321840763, -0.03472086042165756, -0.004853791557252407, -0.008079169318079948, -0.0027728464920073748, -0.023468729108572006, -0.014285312965512276, 0.010720973834395409, -0.00239544571377337, 0.034553125500679016, 0.0187721885740757, -0.004521818831562996, 0.010427440516650677, -0.017961475998163223, -0.009435015730559826, 0.015291715040802956, -0.004221295937895775, 0.04470100998878479, 0.003249838948249817, 0.013831035234034061, 0.04003242403268814, 0.0200301893055439, 0.007534035015851259, -0.04266025125980377, -0.008365713991224766, 0.004476390779018402, 0.0415140725672245, 0.03466494753956795, -0.002222470473498106, -0.0058601931668818, 0.03446925804018974, 0.01712280698120594, 0.007869502529501915, -0.04170976206660271, 0.03388218954205513, 0.006345922127366066, 0.012146709486842155, -0.02732660248875618, 0.0026330684777349234, -0.0357552170753479, -0.018171142786741257, -0.007170612458139658, -0.010609151795506477, -0.0022853706032037735, -0.0013951592845842242, -0.009435015730559826, 0.018702298402786255, 0.0006241961964406073, 0.028794271871447563, 0.002882921602576971, -0.009239327162504196, 0.006104805041104555, -0.005999971181154251, -0.03799166530370712, 0.009959183633327484, 0.00061021838337183, 0.02985658496618271, -0.013838023878633976, -0.0044694021344184875, 0.005734393373131752, -0.002199756447225809, 0.001484267762862146, -0.02630622312426567, -0.000969710003118962, 0.047021325677633286, -0.03158983215689659, -0.0025526960380375385, -0.0159906055778265, 0.02191719226539135, 0.010371528565883636, 0.0015707554994150996, -0.008225936442613602, 0.006754772737622261, -0.030164096504449844, -0.006901539396494627, 0.031310275197029114, -0.012957422062754631, 0.0009967919904738665, -0.0062271105125546455, -0.014271335676312447, -0.029185650870203972, -0.023720329627394676, -0.0009199140476994216, 0.013404712080955505, -0.05325542390346527, 0.0015227068215608597, -0.032288722693920135, -0.008121103048324585, 0.002806043718010187, 0.01334880106151104, 0.011091385968029499, 0.027298646047711372, 0.04397416487336159, -0.03748846426606178, -0.005098402965813875, 0.007212545722723007, -0.017584074288606644, -0.0006936484132893384, -0.011937042698264122, -0.02731262519955635, -0.012649910524487495, 0.035559527575969696, -0.015906738117337227, -0.017080873250961304, -0.031422097235918045, -0.0021595703437924385, 0.002341281855478883, -0.011056440882384777, 0.01713678427040577, 0.02606859989464283, 0.002718682400882244, 0.010860752314329147, -0.0032218832056969404, -0.004102484788745642, 0.02105056867003441, -0.005793798714876175, -0.008156047202646732, 0.017975453287363052, -0.003440286498516798, 0.019093677401542664, -0.013537500984966755, -0.013893934898078442, 0.008666236884891987, -0.03863464295864105, -0.03200916573405266, 0.008799025788903236, -0.011608564294874668, -0.015543315559625626, -0.003333705710247159, -0.03737664222717285, -0.022504260763525963, -0.017947496846318245, -0.002374479081481695, -0.013020322658121586, -0.016395961865782738, 0.021092502400279045, 0.03371445834636688, -0.002329051261767745, 0.024013863876461983, -0.02581699937582016, -0.02179139293730259, 0.022322548553347588, -0.03941740095615387, -0.034944504499435425, -0.03346285596489906, 0.005965027026832104, 0.045903101563453674, 0.013188055716454983, 0.000299649138469249, -0.023259062319993973, 0.009777472354471684, -0.0128456000238657, -0.004368063062429428, -0.005769337527453899, 0.04883844032883644, 0.03265214338898659, 0.007076262030750513, -0.010434429161250591, 0.015515360049903393, -0.0016502542421221733, -0.0014440816594287753, -0.012447232380509377, -0.01220961008220911, -0.03301556780934334, -0.011846186593174934, 0.002498531946912408, 0.008323781192302704, -0.019471077248454094, 0.008910848759114742, 0.010965585708618164, 0.005157808773219585, -0.0009059362928383052, 0.017821697518229485, -0.017919542267918587, 0.003959212452173233, -0.011496742255985737, 0.013565456494688988, -0.026138490065932274, 0.020309746265411377, -0.0222806166857481, -0.041122693568468094, 0.011489752680063248, 0.00912750419229269, 0.02859858237206936, -0.012062842957675457, 0.0035783173516392708, 0.011210196651518345, -0.017052918672561646, 0.015137959271669388, -0.016088450327515602, 0.005066953133791685, 0.004389029927551746, -0.007268456742167473, 0.025341754779219627, 0.015962649136781693, -0.009658660739660263, -5.345417230273597e-05, -0.003704117378219962, 0.01825500838458538, -0.001327017555013299, 0.006293505430221558, -0.03614659607410431, -0.014313269406557083, 0.010811829939484596, 0.00016238274110946804, 0.010008106008172035, 0.017178718000650406, 0.026110533624887466, -0.006919011939316988, 0.003927762154489756, 0.015459449030458927, -0.033546723425388336, -0.03349081426858902, 0.014690669253468513, 0.017192695289850235, -0.016270160675048828, -0.008778059855103493, 0.001832839217968285, -0.015836849808692932, 0.01277571078389883, -0.026110533624887466, 0.018562519922852516, -0.025775065645575523, 0.015906738117337227, -0.015445470809936523, 0.005619076080620289, -0.03111458756029606, 0.011217186227440834, 0.02253221720457077, 0.006919011939316988, -0.021763436496257782, 0.22610491514205933, -0.034832682460546494, -0.015207848511636257, 0.03256827965378761, -0.00893181562423706, 0.006206144113093615, 0.014970225282013416, -0.002482807030901313, -0.01480249222368002, 0.02153979241847992, -0.0035119226668030024, -0.001720143249258399, -0.003780995262786746, -0.00449735764414072, -0.010413462296128273, -0.006094321608543396, -0.013579434715211391, -0.011308041401207447, -0.0020302757620811462, -0.010588184930384159, 0.017416341230273247, 0.0005940565606579185, -0.020449524745345116, -0.005591120570898056, 0.014383157715201378, -0.0016091944416984916, -0.01140588615089655, -0.012426265515387058, 0.02051941305398941, 0.0008089652983471751, -0.01649380661547184, 0.0001645667798584327, -0.00974951684474945, 0.005615581758320332, -0.007534035015851259, -0.029549073427915573, 0.028039470314979553, 0.006524139083921909, 0.007254478987306356, 0.026376111432909966, -0.019289366900920868, 0.007247490342706442, -0.004504346754401922, -0.023832151666283607, -0.010189817287027836, 0.02570517733693123, -0.021204324439167976, -0.004322635009884834, -0.008037235587835312, -0.002998238429427147, -0.03237259015440941, -0.011342986486852169, 0.04498056694865227, 0.009966172277927399, -0.003199169412255287, 0.004801374860107899, 0.013460623100399971, -0.013216011226177216, 0.00485029723495245, 0.021358080208301544, -0.009518883191049099, 0.03010818548500538, -0.004092001356184483, -0.003980178851634264, -0.02064521238207817, -0.008114113472402096, -0.02859858237206936, 0.004762935917824507, 0.010839785449206829, -0.02292359434068203, -0.015892760828137398, -0.015277736820280552, -0.022210726514458656, 0.0022207233123481274, -0.0266836229711771, -0.03086298704147339, 0.02996840700507164, 0.015962649136781693, 0.018939921632409096, 0.03200916573405266, -0.005538703873753548, -0.027256714180111885, 0.011923064477741718, -0.0036866453010588884, -0.008135080337524414, -0.020072123035788536, 0.007792624644935131, -0.006003465969115496, 0.00017242928151972592, 0.008764081634581089, 0.016214249655604362, -0.019219476729631424, 0.010231751017272472, 2.7778150979429483e-05, 0.008568392135202885, -0.012691844254732132, 0.010776884853839874, -0.008435603231191635, 0.002229459350928664, -0.032176900655031204, -0.02079896815121174, 0.016312094405293465, 0.00944899395108223, 0.01924743317067623, -0.027242735028266907, -0.008645270019769669, -0.005699448753148317, 0.011881131678819656, 0.02518799901008606, 0.0003887576167471707, 0.02130216918885708, -0.05401022732257843, 0.009707583114504814, 0.003833412192761898, 0.007848535664379597, -0.0011042463593184948, -0.033686503767967224, -0.02079896815121174, -0.014676691964268684, -0.010469373315572739, 0.01491431426256895, -0.018688321113586426, 0.00661499472334981, 0.006059376988559961, -0.028388915583491325, -0.023608507588505745, -0.006251571699976921, -0.008778059855103493, 0.0021595703437924385, -0.03550361469388008, 0.014872381463646889, -0.02871040441095829, 0.033323079347610474, -0.011000529862940311, 0.01613038405776024, 0.009560815989971161, 0.0030261941719800234, -0.021973105147480965, -0.01115428563207388, -0.004133935086429119, 0.009861338883638382, 0.027033068239688873, 0.016955073922872543, 0.0013418690068647265, 0.022825749590992928, -0.027284668758511543, -0.019331300631165504, 0.03223280981183052, -0.020715102553367615, 0.009602749720215797, -0.04380642995238304, -0.02671157941222191, 0.011790275573730469, 0.0028287575114518404, 0.009980150498449802, -0.000797171494923532, 0.005454837344586849, -0.04556763544678688, 0.010727962478995323, 0.020980680361390114, -0.022769838571548462, -0.02141399309039116, 0.013174078427255154, -0.02367839589715004, 0.0014615538530051708, -0.01850660890340805, -0.17913950979709625, 0.007694779895246029, 0.04291184991598129, -0.009169437922537327, 0.017653964459896088, -0.02441922016441822, -0.002194514963775873, -0.000985434977337718, -0.014243380166590214, -0.00107891159132123, 0.027620136737823486, 0.012314443476498127, -0.009588772431015968, -0.012300465255975723, -0.007946380414068699, 0.014264347031712532, -0.013299878686666489, -0.004581224638968706, 0.028123337775468826, 0.006953956559300423, 0.043862342834472656, -0.028654493391513824, -0.0033669029362499714, 0.03416174650192261, 0.012006931938230991, 0.016563694924116135, 0.002825263189151883, 0.01801738701760769, 0.020435545593500137, -0.013928879052400589, -0.016577672213315964, -6.180808850331232e-05, 0.0025177516508847475, 0.008225936442613602, 0.0038963123224675655, -0.004584718961268663, 0.006290010642260313, 0.01902378723025322, -0.02014201320707798, 0.0022084927186369896, -0.023328950628638268, 0.02960498444736004, -0.007219534367322922, 0.0017157751135528088, -0.0023692373652011156, 0.021567748859524727, 0.012482176534831524, -0.01638198271393776, 0.0033319585490971804, -0.02339884079992771, 0.015012159012258053, -0.016941094771027565, -0.0014807733241468668, -0.006024432368576527, 0.03371445834636688, -0.007534035015851259, -0.007939391769468784, 0.011783286929130554, 0.0030873469077050686, -0.0023203149903565645, -0.0254256222397089, -0.01849263161420822, 0.02857062593102455, 0.0005280988407321274, -0.009602749720215797, -0.00362025061622262, -0.011091385968029499, 0.0364820621907711, -0.011964998207986355, -0.001340121729299426, -0.011503730900585651, -0.033183302730321884, 0.03086298704147339, 0.000826000701636076, 0.011818231083452702, 0.02102261409163475, 0.006695366930216551, -0.011566630564630032, 0.02708897925913334, 0.012719799764454365, -0.02140001393854618, 0.041486114263534546, -0.028360959142446518, -0.00849850382655859, 0.003459505969658494, 0.00449735764414072, 0.013572445139288902, 0.016689496114850044, -0.02342679537832737, -0.032512366771698, 0.03309943526983261, 0.0027291658334434032, -0.0015899749705567956, -0.03072320856153965, -0.0011007519206032157, 0.010658074170351028, -0.016535740345716476, -0.0012431507930159569, -0.022630060091614723, -0.008086157962679863, 0.0064088222570717335, 0.007359312381595373, -0.019373232498764992, 0.008973748423159122, 0.024642864242196083, -0.007890469394624233, 0.004581224638968706, 0.024852531030774117, 0.023021439090371132, 0.005982499103993177, 0.011692430824041367, 0.007422212511301041, 0.0017996419919654727, 0.014774536713957787, 0.006234099622815847, 0.004182856995612383, -0.014704647473990917, -0.018436720594763756, 0.0019149588188156486, 0.0337703675031662, 0.01240529865026474, -0.030779119580984116, -0.0070203510113060474, 0.02746638096868992, -0.0024915430694818497, -0.005426881369203329, -0.04481283202767372, -0.004602191038429737, 0.0007906194077804685, 0.04799976944923401, -0.01177629828453064, 0.04744065925478935, -0.0020145506132394075, 0.020812947303056717, 0.0039172787219285965, 0.02065919153392315, -0.0005246043438091874, -0.003669172991067171, -0.02113443613052368, 0.007247490342706442, 0.002741396427154541, 0.006775739602744579, -0.018464675173163414, 0.014005756936967373, 0.0017882849788293242, 0.02721478044986725, -0.02469877526164055, -0.02191719226539135, 0.022252660244703293, -0.014718624763190746, 0.0002168743230868131, -0.010029072873294353, -0.020337700843811035, 0.004724496975541115, 0.02190321497619152, 0.0018433226505294442, 0.040619492530822754, -0.004039584659039974, -0.00806519202888012, -0.01675938442349434, -0.001697429339401424, 0.01713678427040577, -0.01019680593162775, -0.00313102756626904, 0.021749459207057953, -0.02318917214870453, -0.007687790784984827, 0.02165161445736885, -0.001021253177896142, 0.002767604775726795, 0.0013969065621495247, -0.034581080079078674, -0.008337758481502533, 0.027857758104801178, -0.009253304451704025, -0.012971400283277035, -0.01748622953891754, 0.004354085307568312, 0.0005918725510127842, -0.024377286434173584, -0.0005189258954487741, 0.018856054171919823, 0.020561346784234047, 0.02707500196993351, -0.046518124639987946, 0.014928292483091354, 0.004305162932723761, -0.0017978947144001722, -0.029912495985627174, 0.015249781310558319, 0.014271335676312447, 0.010301640257239342, -0.023482706397771835, 0.0030716219916939735, 0.02620837837457657, 0.029996361583471298, -0.006677894853055477, 0.02757820300757885, -0.0013855495490133762, 0.022015037015080452, -0.05048782005906105, -0.019093677401542664, 0.007708757650107145, -0.01541751530021429, 0.044756922870874405, -1.5397421520901844e-05, -0.016144361346960068, 0.005346509162336588, -0.005381453782320023, -0.017220651730895042, 0.023734306916594505, 0.017835674807429314, -0.01183919794857502, 0.004479885566979647, 0.013921890407800674, -0.0194990336894989, -0.016200272366404533, 0.0040046400390565395, 0.010595173574984074, -0.023217128589749336, 0.008149058558046818, 0.015291715040802956, 0.0033459363039582968, 0.005025019869208336, 0.025621309876441956, 0.006090827286243439, -0.023105306550860405, -0.044756922870874405, -0.08738921582698822, 0.04101087152957916, -0.016843251883983612, 0.0037775009404867887, 0.022741883993148804, -0.005122864153236151, 0.023273039609193802, -0.011671464890241623, 0.00817701406776905, -0.01197198685258627, 0.0078066023997962475, 0.03715299814939499, -0.0014519441174343228, -0.013216011226177216, -0.020603280514478683, -0.006506666541099548, 0.01737440750002861, 0.039585135877132416, 0.007848535664379597, 0.012852588668465614, -0.008980737999081612, 0.007023845333606005, 0.013055266812443733, -0.0005136842373758554, -0.01924743317067623, 0.014494980685412884, 0.012307454831898212, 0.011978976428508759, 0.0033022556453943253, -0.018688321113586426, 0.014620780944824219, -0.00588814914226532, -0.005821754224598408, 0.011846186593174934, -0.010790863074362278, -0.011266108602285385, -0.009546838700771332, 0.011475775390863419, 0.006901539396494627, -0.001848564250394702, -0.02188923768699169, -0.032037120312452316, 0.025006286799907684, 0.0023465235717594624, 0.009476949460804462, 0.025844955816864967, -0.027480358257889748, 0.001739362720400095, 0.019708700478076935, 0.012922477908432484, 0.024027841165661812, 0.006150232627987862, -0.017975453287363052, -0.01050431840121746, -0.04889434948563576, -0.041234515607357025, 0.02075703628361225, 0.006433283444494009, -0.01056721806526184, -0.01790556311607361, 0.019722677767276764, -0.0021857786923646927, 0.012048864737153053, -0.024209553375840187, -0.016535740345716476, -0.006555588915944099, -0.002818274311721325, 0.0023150735069066286, 0.016437895596027374, 0.014620780944824219, -0.006639455910772085, -0.009994127787649632, -0.01541751530021429, 0.01750020682811737, 0.0015113498084247112, 0.014508957974612713, -0.012216598726809025, -0.002447862410917878, -0.03927762433886528, 0.012628943659365177, 0.022336527705192566, -0.016675516963005066, -0.05440160259604454, 0.021078525111079216, 0.02289563976228237, 0.002856713254004717, -0.007352323736995459, 0.01647982746362686, -0.02406977489590645, 0.0020372646395117044, -0.03262418881058693, 0.011944031342864037, -0.0032166417222470045, 0.006744289305061102, 0.021973105147480965, 0.015529337339103222, -0.01863241009414196, -0.01586480438709259, 0.01736043021082878, 0.012202620506286621, 0.009553827345371246, -0.012440243735909462, 0.0026592768263071775, -0.00676525617018342, 0.003456011414527893, 0.032316677272319794, -0.03732072934508324, -0.03150596469640732, 0.010644095949828625, 0.005238180980086327, -0.010273683816194534, 0.017178718000650406, -0.01724860817193985, 0.017192695289850235, -0.023846128955483437, 0.01209079846739769, -0.021819349378347397, -0.027284668758511543, -0.04498056694865227, 0.03340694680809975, 0.02304939553141594, 0.009302226826548576, 0.014998180791735649, -0.028137315064668655, 0.013397722505033016, -0.026487933471798897, 0.00044947367860004306, -0.027354557067155838, 0.011895108968019485, 0.00041518438956700265, -0.03170165419578552, 0.0030978303402662277, -0.0019796062260866165, -0.03035978600382805, -0.017653964459896088, -0.005091414321213961, 0.007785635534673929, 0.00868021510541439, 0.01710882969200611, 0.07324367761611938, 0.004766430240124464, -0.014208435080945492, 0.01183919794857502, 0.01132201962172985, 0.02441922016441822, 0.0005936197703704238, -0.012146709486842155, -0.00608034385368228, -0.034049924463033676, -0.0166196059435606, -0.0112730972468853, -0.001446702517569065, -0.03894215449690819, 0.004301668610423803, -0.026012688875198364, -0.012803666293621063, 0.02871040441095829, -0.019834499806165695, -0.0030716219916939735, 0.02720080129802227, 0.005832237657159567, 0.0066918726079165936, 0.012188643217086792, 0.0003669172874651849, 0.0050110421143472195, 0.037572331726551056, -0.011210196651518345, -0.0014344719238579273, -0.004182856995612383, -0.0013794342521578074, 0.005923093296587467, -0.010301640257239342, -0.030751163139939308, 0.008274858817458153, 0.01152469776570797, -0.002947568893432617, 0.006723322439938784, 0.008086157962679863, 0.012265521101653576, -0.015571271069347858, -0.0038473899476230145, -0.01600458286702633, -0.021861281245946884, 0.000966215564403683, -0.0009513641125522554, -0.00907858181744814, 0.007289423607289791, -0.014236390590667725], "2ef6c2b4-8a75-4214-97a7-ba78b4f7fcc8": [-0.029641343280673027, -0.016852425411343575, 0.005726484581828117, -0.008447086438536644, -0.02760958857834339, 0.010854575783014297, -0.02115250751376152, -0.052352454513311386, -0.010089189745485783, -0.020136630162596703, -0.004491428844630718, 0.01699158549308777, -0.008871528320014477, -0.02351824752986431, -0.012962868437170982, 0.007584287319332361, 0.0011811309959739447, 0.01728382520377636, 0.04155354201793671, -0.02063761092722416, 0.022070972248911858, -0.003934783861041069, -0.017214244231581688, -0.005385539494454861, 0.001716031925752759, -0.018397115170955658, 0.022836357355117798, -0.02319817803800106, 0.015613890253007412, 0.01824403740465641, 0.013011574745178223, 0.020150545984506607, -0.01148775964975357, -0.009699537418782711, 0.02243279106914997, -0.022919854149222374, -0.008711493574082851, -0.01479283906519413, 0.011842620559036732, 0.002193528925999999, 0.02504902146756649, -0.0037851855158805847, 0.019579986110329628, 0.0036529824137687683, -0.006578847300261259, 0.016407109797000885, 0.007549496833235025, -0.0014768486144021153, -0.009574293158948421, -0.0007719099521636963, -0.018257953226566315, 0.010562337934970856, -0.040690742433071136, -0.006905876100063324, 0.0014029191806912422, 0.020693276077508926, 0.006624074652791023, 0.013811752200126648, -0.006878043990582228, -0.01534948404878378, -0.0011446011485531926, -0.001358561567030847, -0.034651145339012146, 0.01875893399119377, 0.0029850085265934467, -0.017102915793657303, -0.003437282517552376, -0.0018230121349915862, -0.012503637000918388, 0.015711303800344467, 0.020080965012311935, 0.025953570380806923, -0.001317682908847928, 0.009546460583806038, 0.0257169958204031, -0.0053924978710711, 0.004035675898194313, 0.018717186525464058, 0.002200487069785595, -0.007065911311656237, 0.03492946922779083, 0.02374090626835823, -0.03286988288164139, 0.01639319397509098, 0.03345435857772827, 0.019440824165940285, -0.02616231143474579, -0.0009671705774962902, -0.0009567334782332182, -0.015864379703998566, 0.011814788915216923, 0.002070023212581873, 0.014737174846231937, 0.028347142040729523, 0.03312037140130997, 0.024548040702939034, -0.007486874237656593, 0.02588398940861225, -0.011153772473335266, -0.03774052485823631, -0.008363589644432068, -0.009289012290537357, -0.00965083111077547, 0.010103105567395687, -0.029418684542179108, -0.013763045892119408, 0.019315578043460846, -0.01964956521987915, -0.013081155717372894, -0.03799101710319519, -0.03133910894393921, 0.020080965012311935, 0.01132772397249937, -0.023434750735759735, -0.03846416622400284, 0.025424757972359657, 0.01204440463334322, -0.010381427593529224, -0.009796950966119766, -0.01817445643246174, 0.019399074837565422, 0.010694541037082672, 0.030531974509358406, -0.012594091705977917, 0.011522550135850906, 0.010555379092693329, 0.008127016015350819, -0.01047884114086628, 0.018745018169283867, -0.008878486230969429, 0.06618507951498032, 0.019412992522120476, -0.0007405986543744802, 0.011014611460268497, -0.028611550107598305, -0.0004313998215366155, 0.010130937211215496, 0.003920867573469877, -0.040523748844861984, -6.05025197728537e-05, 0.011891326867043972, 0.016504522413015366, -0.013046365231275558, -0.02120817080140114, -0.010423175990581512, 0.028667213395237923, 0.010325763374567032, 0.003548611421138048, -0.010151811875402927, -0.013122904114425182, 0.012601049616932869, -0.0076121194288134575, -0.00832184124737978, -0.005486431531608105, -0.01607312262058258, 0.014180529862642288, 0.04077424108982086, -0.005037636496126652, -0.013519513420760632, 0.020053133368492126, 0.025132518261671066, 0.011056359857320786, 0.013909164816141129, -0.014131822623312473, -8.061566768446937e-05, 0.02450629323720932, -0.002026535337790847, -0.0037747484166175127, -0.006554494146257639, -0.007305964827537537, -0.0057717119343578815, 0.012058320455253124, -0.02290593832731247, 0.024645453318953514, -0.011223353445529938, 0.03924346715211868, 0.00515940273180604, -0.014709342271089554, 0.02696944586932659, -0.012921120040118694, -0.004547093063592911, 0.00819659698754549, 0.006669302005320787, 0.06089695543050766, -0.024464543908834457, -0.015168574638664722, 0.007375545334070921, 0.01654626987874508, 0.014556264504790306, 0.011779998429119587, -0.009268137626349926, 0.02527168020606041, 0.0010210955515503883, -0.007980897091329098, -0.5789107084274292, -0.005681257229298353, -0.012983743101358414, -0.005876082926988602, -0.003071984276175499, 0.01824403740465641, -0.0018369283061474562, 0.04060724750161171, -0.022057054564356804, 0.013241191394627094, 0.01718641258776188, 0.011515592224895954, 0.007890441454946995, 0.00022874627029523253, -0.013331646099686623, -0.023796571418642998, 0.004133088514208794, -0.009400341659784317, -0.025410840287804604, 0.0124618886038661, -0.02253020368516445, 0.010277057066559792, -0.011877411045134068, 0.013429058715701103, 0.011870453134179115, -0.016379276290535927, -0.029864000156521797, 0.004359225742518902, -0.0104649243876338, 0.018800683319568634, -0.016727179288864136, 0.01703333482146263, -0.0010463185608386993, 0.00348250987008214, 0.05318742245435715, -0.025508252903819084, -0.022084888070821762, 0.021778732538223267, 0.02239104174077511, 0.047815799713134766, -0.024659371003508568, -0.012559301219880581, 0.01990005560219288, -0.01984439231455326, 0.02411664091050625, -0.005754317156970501, -0.005698652472347021, -0.03996710479259491, 0.018383199349045753, -0.04300082102417946, 0.00717376172542572, 0.007125054951757193, -2.4081416995613836e-05, -0.011432095430791378, 0.006578847300261259, 0.012705420143902302, 0.016574103385210037, -0.01696375384926796, 0.010965905152261257, -0.02776266634464264, 0.0031346066389232874, -0.009803908877074718, 0.003435542806982994, 0.01447276771068573, -0.06874565035104752, -0.010346638038754463, -0.01391612272709608, 0.00038138875970616937, 0.04617369547486305, -0.008440128527581692, -0.004195711109787226, -0.010875450447201729, 0.02312859706580639, -0.027080776169896126, 0.017882218584418297, -0.010791953653097153, 0.020234042778611183, -0.014034410007297993, 0.0040078433230519295, 0.02591182105243206, -0.01335251983255148, -0.026190143078565598, -0.029001200571656227, -0.03537478670477867, 0.018480611965060234, -0.011091150343418121, -0.01083370205014944, -0.004463596735149622, 0.014048326760530472, -0.008447086438536644, 0.04044025391340256, 0.019371243193745613, 0.018536275252699852, -0.009727369993925095, -0.012267062440514565, 0.0002957176184281707, -0.015641722828149796, -0.009574293158948421, -0.0037434371188282967, 0.0061613633297383785, -0.027498260140419006, -0.005173319019377232, -0.008634954690933228, 0.0036007969174534082, 0.03740653768181801, -0.008495792746543884, -0.022641532123088837, -0.0028788980562239885, 0.027470426633954048, 0.01335251983255148, 0.022933771833777428, -0.0007966980338096619, -0.011042444035410881, 0.006704092491418123, -0.000651883368846029, -0.02850021980702877, 0.03785185515880585, -0.010019608773291111, -0.0007279872079379857, -0.008572331629693508, -0.008398380130529404, 0.005559490993618965, 0.040273260325193405, 0.0036355871707201004, -0.005736921913921833, 0.037072550505399704, 0.030309315770864487, 0.02616231143474579, 0.0028249730821698904, -0.021639572456479073, -0.013456891290843487, -0.014458851888775826, 0.04776013642549515, -0.023699156939983368, 0.01081282738596201, -0.018647605553269386, 0.023017268627882004, -0.0015064203180372715, -0.0016368839424103498, -0.00403219647705555, -0.02386615052819252, -0.011877411045134068, 0.0023553038481622934, -0.027178188785910606, 0.0009950028033927083, -0.0533544160425663, -0.020721107721328735, 0.004613194614648819, -0.01204440463334322, -0.025410840287804604, 0.011613004840910435, -0.01671326346695423, 0.004018280655145645, 0.039187803864479065, -0.04147004708647728, -0.0015325130661949515, -0.0246037058532238, -0.05226895958185196, -0.03902081027626991, -0.007855651900172234, 0.009066354483366013, -0.00591783132404089, -0.02006704919040203, 0.0001989570737350732, -0.019440824165940285, -0.05371623486280441, -0.008161806501448154, -0.005855208728462458, 0.0018821556586772203, -0.022752860561013222, -0.00751470634713769, 0.0037121258210390806, -0.022766778245568275, -0.007960022427141666, 0.014653678052127361, -0.014333606697618961, -0.031867921352386475, 0.006843253504484892, -0.01834145002067089, -0.0035607879981398582, 0.006898918189108372, -0.01423619408160448, -0.01903725601732731, -0.015488645061850548, 0.027275601401925087, 0.028486303985118866, 0.03295338153839111, 0.024019228294491768, -0.03885381668806076, 0.03774052485823631, 5.05546668136958e-05, 0.03256372734904289, -0.0048497687093913555, -0.021736985072493553, 0.03582010045647621, 0.019245998933911324, 0.013394268229603767, -0.013964829966425896, -0.002226579701527953, 0.03712821751832962, 0.04208235815167427, -0.010819786228239536, -0.01274716854095459, -0.035319119691848755, 0.004919349681586027, -0.014305775053799152, -0.0010793693363666534, -0.006568409968167543, 0.05160098522901535, 0.019273830577731133, -0.01295591052621603, 0.005176797974854708, -0.01632361300289631, 0.013603010214865208, 0.0023326901718974113, 0.033593520522117615, -0.013310771435499191, -0.009149851277470589, -0.019343411549925804, 0.00934467650949955, 0.02620406076312065, -0.01740906946361065, 0.001374217215925455, 0.024993356317281723, -6.68626234983094e-05, 0.0011315547162666917, 0.01866152137517929, 0.012559301219880581, 0.024144474416971207, -0.03328736498951912, -0.013255107216536999, -0.008586248382925987, 0.0014011797029525042, -0.012378391809761524, 0.01843886263668537, -0.025410840287804604, 0.012260104529559612, -0.02396356500685215, 0.009323802776634693, -0.005215066950768232, 0.00913593452423811, 0.004140046425163746, 0.014333606697618961, -0.017116831615567207, 0.017102915793657303, 0.00014394489699043334, 0.006203111726790667, 0.024227971211075783, -0.016337528824806213, 0.013846542686223984, -0.023949647322297096, -0.010137896053493023, -0.007883483543992043, 0.007980897091329098, -0.006512745749205351, -0.0183692816644907, 0.016532354056835175, 0.010235308669507504, 0.003379878355190158, 0.01824403740465641, 0.02756783924996853, 0.016560185700654984, 0.013498639687895775, 0.0011324245715513825, 0.004428806249052286, 0.01139034703373909, 0.007598203141242266, 0.0031902713235467672, -0.003451198572292924, -0.027206020429730415, 0.005743879824876785, -0.030726799741387367, 0.011452969163656235, -0.012935036793351173, -0.01974697969853878, 0.009929154068231583, 0.009824782609939575, 0.01747865043580532, 0.008878486230969429, 0.0020352329593151808, -0.01878676563501358, -0.025772660970687866, 0.014013536274433136, 0.010471882298588753, 0.00016579756629653275, -0.0036947308108210564, -0.00022570212604478002, 0.018856346607208252, 0.013262065127491951, 0.04163704067468643, -0.012788916938006878, 0.006464039441198111, -0.009302928112447262, 0.0107849957421422, -0.013616926968097687, 0.004985451232641935, 0.028834206983447075, -0.018063127994537354, -0.03957745432853699, -0.002520557725802064, 3.6176483263261616e-05, 0.0065892841666936874, -0.017589978873729706, -0.011299892328679562, 0.014987664297223091, 0.009560376405715942, -0.00678063090890646, -0.00704503757879138, -0.015182490460574627, 0.02620406076312065, -0.00016068773402366787, -0.015488645061850548, -0.023490415886044502, -0.025062937289476395, 0.003023277735337615, 0.013623884879052639, 0.019092921167612076, -0.020568029955029488, 0.021013345569372177, 0.014570181258022785, -0.02371307462453842, -0.01127901766449213, -0.02169523574411869, -0.00036181919858790934, -0.04667467623949051, 0.02517426759004593, -0.006808463484048843, 0.001282022800296545, -0.036376744508743286, 0.004157441668212414, -0.01600354164838791, -0.03042064607143402, -0.004303561057895422, -0.020373204723000526, -0.003087639808654785, -0.003035454312339425, 0.006258776411414146, -0.0076329936273396015, 0.005465557333081961, 0.011807830072939396, 0.008419254794716835, -0.03000316210091114, 0.008523625321686268, -0.005347270518541336, 0.008022644557058811, -0.03428932651877403, 0.007003289181739092, 0.017673475667834282, 0.007076348643749952, 0.007396419532597065, -0.002120469231158495, 0.017130747437477112, 0.017743056640028954, 0.0012507116189226508, -0.004063508007675409, 0.019705230370163918, 0.033370863646268845, 0.0024631537962704897, -0.0024840279947966337, 0.01935732737183571, 0.005246378481388092, 0.00929597020149231, -0.005486431531608105, -0.007688657846301794, -0.001288980944082141, 0.042833827435970306, 0.008127016015350819, 0.0015881775179877877, 0.020526282489299774, -0.015043329447507858, 0.006724966689944267, 0.03328736498951912, -0.012364475056529045, 0.00518375588580966, 0.016407109797000885, 0.0032320197205990553, -0.04901258647441864, -0.004717565607279539, -0.017297741025686264, 0.015224238857626915, -0.018633689731359482, -0.035319119691848755, -0.0190094243735075, 0.002466632751747966, 0.004905433394014835, -0.0367385633289814, 0.0022091844584792852, -0.009094186127185822, -0.010235308669507504, -0.03295338153839111, -0.024812446907162666, -0.01132772397249937, -0.024561956524848938, -0.03492946922779083, 0.02300335094332695, -0.017673475667834282, -0.04041242226958275, 0.0028301915153861046, 0.010562337934970856, 0.013074197806417942, 0.03236890211701393, -0.016852425411343575, -0.02140299789607525, 0.030086658895015717, -0.012162691913545132, 0.00581346033141017, -0.008732367306947708, -0.0013620405225083232, 0.00792523194104433, -0.010840659961104393, 0.0083844643086195, -8.648652874398977e-05, -0.014180529862642288, -0.0070415581576526165, -0.011529508046805859, 0.013693464919924736, 0.042499840259552, 0.00934467650949955, 0.003993927501142025, -0.005437725223600864, 0.013756087981164455, 0.012371433898806572, 0.016601935029029846, -0.010402302257716656, 0.014250109903514385, -0.018731102347373962, -0.040273260325193405, 0.002200487069785595, 0.005886520259082317, 0.016504522413015366, 0.028388891369104385, -0.010186602361500263, 0.03145043924450874, -0.015071161091327667, 0.021110758185386658, -0.006808463484048843, 0.01703333482146263, 0.004275728948414326, 0.030170155689120293, 0.01671326346695423, -0.003491207491606474, 0.0032563728746026754, -0.03170092776417732, 0.008808906190097332, 0.0005257685552351177, -0.01962173357605934, 0.021333416923880577, 0.016379276290535927, 0.007813903503119946, 0.024227971211075783, -0.011028527282178402, -0.03774052485823631, -0.021222088485956192, 0.020526282489299774, -0.02808273583650589, 0.005705610383301973, 0.02211271971464157, -0.045477889478206635, -0.04403061419725418, 0.004787146579474211, 0.000420092954300344, 0.014709342271089554, -0.027039026841521263, -0.037935350090265274, -0.017395153641700745, -0.013888291083276272, -0.008655828423798084, 0.0007793029071763158, -0.011299892328679562, -0.015766967087984085, -0.017812637612223625, -0.022738944739103317, 0.008210512809455395, -0.0033050791826099157, 0.01372129749506712, -0.006992851849645376, -0.015808716416358948, -0.013651716522872448, -0.0014063982525840402, -0.024965524673461914, -0.010165727697312832, -0.017770890146493912, 0.022641532123088837, 0.026885949075222015, 0.01479283906519413, -0.0013698684051632881, -0.0033311720471829176, 0.013902206905186176, 0.028013156726956367, 0.00429660314694047, 0.034205831587314606, 0.004014801699668169, -0.021416913717985153, -0.017617812380194664, 0.022502372041344643, 0.004588841460645199, 0.02399139665067196, -0.015112909488379955, -0.012844582088291645, -0.00034333684016019106, -0.020150545984506607, 0.0063005248084664345, -0.019607817754149437, -0.06974761188030243, 0.012434056028723717, -0.001762129133567214, 0.0014724998036399484, -0.004056550096720457, -0.009769118390977383, -0.030782464891672134, -0.015697386115789413, -0.01081282738596201, 0.030364980921149254, 0.014598012901842594, 0.02616231143474579, 0.002506641671061516, 0.002624928718432784, -0.00439401576295495, 0.013157694600522518, -0.005743879824876785, 0.006432727910578251, -0.013846542686223984, -0.015488645061850548, 0.012183565646409988, -0.004293124191462994, 0.037016887217760086, -0.01699158549308777, 0.014145739376544952, -0.000875846017152071, -0.023059016093611717, -0.02166740410029888, 0.004689733497798443, -0.015669554471969604, -0.013575178571045399, -0.021876145154237747, -0.006154405418783426, 0.01107027567923069, -0.009936111979186535, 0.03245240077376366, 0.036181919276714325, 0.002988487482070923, 0.010297930799424648, 0.014542348682880402, -0.0014898949302732944, 0.016212282702326775, -0.03139477223157883, 0.040301091969013214, -0.010847617872059345, 0.02371307462453842, 0.015739135444164276, -0.009024606086313725, -0.009128976613283157, -0.021681319922208786, 0.011383389122784138, 0.017228160053491592, 0.016601935029029846, 0.05513567849993706, -0.005402934737503529, 0.00683629559352994, 0.033398695290088654, -0.0027310391888022423, -0.001778654521331191, -0.040050603449344635, 0.03826933726668358, 0.03370485082268715, 0.013025491498410702, -0.007292048539966345, 0.017520399764180183, -0.03565310686826706, -0.016768928617239, -0.0008280093315988779, 0.000896720215678215, 0.004126130603253841, -0.007424251642078161, -0.012531468644738197, 0.004352267365902662, 0.005963058676570654, 0.02246062271296978, -0.02063761092722416, 0.025925736874341965, -0.036181919276714325, -0.0054412041790783405, -0.03729521110653877, -0.003094597952440381, -0.0040704659186303616, 0.027595672756433487, -0.017562147229909897, 0.002478809328749776, -0.016017457470297813, -0.022516287863254547, -0.003167657647281885, -0.026468466967344284, -0.024784615263342857, 0.04820545017719269, -0.021848313510417938, -0.016727179288864136, -0.016699347645044327, -0.00536814471706748, 0.013526471331715584, -0.03281421959400177, -0.011195520870387554, 0.019468655809760094, -0.026384970173239708, -0.005681257229298353, 0.01843886263668537, 0.006537098903208971, 0.002605793997645378, 0.006937187630683184, 0.0027571318205446005, -0.007570371031761169, -0.012113985605537891, 0.0005840422818437219, 0.05636030063033104, -0.0249237772077322, -0.01113289874047041, -0.041971027851104736, -0.021291667595505714, 0.01188436895608902, 0.013707381673157215, -0.004894996527582407, 0.02280852571129799, 0.03568093851208687, -0.014528432860970497, 0.017673475667834282, 0.005389018915593624, -0.0031015558633953333, 0.0002491855702828616, 0.0007240732666105032, -0.018452778458595276, -0.01935732737183571, 0.02958567813038826, -0.023212093859910965, -0.02584224008023739, -0.0209298487752676, 0.012684546411037445, 0.004630589857697487, -0.03796318545937538, 0.013923081569373608, 0.026176227256655693, 0.00510373804718256, 0.002231798367574811, -0.00034725075238384306, -0.018925927579402924, 0.021611738950014114, -0.01779872179031372, 0.008015686646103859, 0.022251881659030914, 0.006029160227626562, 0.01458409707993269, -0.015015496872365475, -0.0023309506941586733, -0.017075082287192345, -0.022057054564356804, -0.011432095430791378, 0.0015116388676688075, -0.004790625534951687, -0.02019229531288147, -0.0003655156760942191, -0.01060408540070057, -0.026384970173239708, -0.0338718444108963, 0.024617621675133705, -0.017200328409671783, 0.010840659961104393, 0.01977481134235859, 0.022029222920536995, -0.004894996527582407, 0.017325572669506073, 0.012176607735455036, -0.018035296350717545, 0.01935732737183571, -0.04333480820059776, -0.041108228266239166, -0.05093301087617874, -0.0015464292373508215, 0.020442785695195198, 0.012016572058200836, -0.008238345384597778, -0.021806564182043076, 0.01353343017399311, -0.010722372680902481, 0.003555569564923644, 0.003875640220940113, 0.004606236703693867, 0.023880068212747574, 0.0345119871199131, -0.01164779532700777, 0.011717375367879868, -0.008029603399336338, 0.02239104174077511, -0.03000316210091114, 0.004780188202857971, -0.051962804049253464, -0.011494717560708523, 0.023086847737431526, -0.01834145002067089, -0.03665506839752197, 0.026496298611164093, 0.011738250032067299, 0.0024179264437407255, 0.017854386940598488, 0.04016193002462387, -0.02271111309528351, -0.022766778245568275, -0.007010247092694044, -0.014013536274433136, -0.012712378986179829, -0.006818900350481272, -0.016810676082968712, -0.044169776141643524, 0.015460812486708164, 0.004000885412096977, 0.03300904482603073, -0.012427098117768764, 0.02632930502295494, 0.0033207349479198456, -0.00832184124737978, 0.005305522121489048, -0.025090770795941353, 0.0011637357529252768, -0.002624928718432784, -0.003536434844136238, 0.014959832653403282, 0.005549054127186537, -0.0019065089290961623, 0.026023149490356445, -0.00798785500228405, 0.010715414769947529, -0.016671516001224518, 0.020568029955029488, -0.04789929464459419, -0.020401036366820335, 0.004380099941045046, -0.0004927177214995027, 0.018035296350717545, -0.003459896193817258, 0.011550381779670715, -0.007152887526899576, -0.006171800661832094, -0.004147004801779985, -0.029084697365760803, -0.026384970173239708, 0.013575178571045399, 0.030114490538835526, -0.029418684542179108, -0.005736921913921833, 0.011557340621948242, -0.001774305710569024, 0.017882218584418297, -0.009115060791373253, 0.007953064516186714, -0.046953000128269196, 0.011258143931627274, -0.006137010175734758, -0.004435764160007238, -0.01642102561891079, -0.0064014168456196785, 0.02162565477192402, 0.014222278259694576, -0.011216395534574986, 0.21197038888931274, -0.019162502139806747, 0.02150041051208973, 0.03328736498951912, 0.0014603232266381383, 0.016685431823134422, 0.02102726139128208, -0.009289012290537357, -0.015460812486708164, 0.02578657679259777, -0.001244623214006424, -0.019065089523792267, -0.015836548060178757, 0.002983268816024065, 0.0036808145232498646, -0.037657029926776886, -0.022029222920536995, -0.024144474416971207, -0.02287810668349266, -0.01015876978635788, 0.014765006490051746, -0.009469921700656414, -0.02620406076312065, 0.01220444031059742, 0.023365171626210213, 0.002550129545852542, -0.0026997278910130262, -0.008328800089657307, 0.026412801817059517, 0.029641343280673027, -0.01523815467953682, -0.0032563728746026754, 0.0014142260188236833, -0.016727179288864136, -0.0074520837515592575, -0.015920044854283333, 0.023490415886044502, -0.02051236480474472, 0.023281674832105637, 0.003371180733665824, -0.010819786228239536, 0.012768043205142021, 0.000219831257709302, -0.018619772046804428, -0.008607122115790844, 0.006453602109104395, -0.0023570433259010315, 0.0049297865480184555, 0.010826744139194489, 0.029864000156521797, -0.03158960118889809, -0.004693212453275919, 0.02642671763896942, 0.021834397688508034, 0.0014759787591174245, -0.0036982097662985325, -0.012232271954417229, 0.0006910224910825491, -0.00525681534782052, 0.0345119871199131, -0.01632361300289631, 0.03632108122110367, -0.009678663685917854, 0.01521032303571701, -0.037657029926776886, 0.00351903960108757, -0.028138400986790657, 0.005204630084335804, -0.0338718444108963, -0.019343411549925804, -0.006056992802768946, -0.027052942663431168, -0.033788345754146576, -0.007820861414074898, -0.01619836688041687, -0.01974697969853878, 0.009275096468627453, 0.03453981876373291, 0.008551457896828651, 0.011550381779670715, -0.018160540610551834, -0.00497501390054822, -0.002106553176417947, 0.01521032303571701, 0.021848313510417938, 0.02827756293118, 0.019816558808088303, -0.016977669671177864, -0.02502118982374668, 0.0033624833449721336, 0.0023205135948956013, -0.0386589914560318, 0.015836548060178757, 0.005959579721093178, -0.004181794822216034, -0.016755012795329094, -0.00017514746286906302, 0.0033763993997126818, -0.02958567813038826, -0.02221013233065605, -0.01875893399119377, 0.05416155233979225, 0.024464543908834457, 0.018800683319568634, -0.026050982996821404, 0.0012011353392153978, -0.006961540784686804, -0.004456638358533382, 0.012218356132507324, -0.029029032215476036, 0.01081282738596201, -0.051517486572265625, 0.02223796397447586, 0.00701372604817152, -0.006798026151955128, -0.022029222920536995, -0.008704534731805325, -0.014389270916581154, -0.027943575754761696, 0.007305964827537537, 0.03740653768181801, -0.025897905230522156, 0.008892402984201908, 0.003819975769147277, -0.03156176581978798, -0.014291858300566673, -0.00827313493937254, -0.01664368249475956, 0.007382503245025873, -0.021305585280060768, 0.012587133795022964, -0.016212282702326775, 0.005281168967485428, -0.007236383855342865, -0.002939780941233039, 0.005228983238339424, -0.002090897411108017, -0.033593520522117615, 0.006112657021731138, -0.016184451058506966, 0.006234423257410526, 0.025758743286132812, 0.01878676563501358, 0.03863115608692169, 0.01113289874047041, -0.020818520337343216, -0.021333416923880577, 0.028778541833162308, -0.003023277735337615, 0.0062205069698393345, -0.0466468445956707, -0.04147004708647728, 0.015293819829821587, 0.007584287319332361, 0.01703333482146263, -0.003089379286393523, 0.0016107913106679916, -0.03328736498951912, -0.008259219117462635, 0.0226832814514637, -0.03996710479259491, -0.0138187101110816, 0.0006253558094613254, -0.03559744358062744, -0.015377315692603588, -0.016532354056835175, -0.17623378336429596, 0.017548231407999992, 0.04208235815167427, -0.02485419623553753, 0.03106078691780567, -0.014667593874037266, 0.0029310835525393486, -0.023337338119745255, -0.004644506145268679, -0.010694541037082672, 0.0035625274758785963, -0.0055003478191792965, -0.005434246268123388, -0.025953570380806923, -0.006307482719421387, 0.0031954897567629814, -0.00515940273180604, 0.013477765023708344, 0.037684861570596695, 0.008398380130529404, 0.03412233293056488, -0.030281484127044678, 0.007862609811127186, 0.005482952576130629, 0.007549496833235025, 0.036794230341911316, 0.005249857436865568, 0.008057435043156147, 0.02980833500623703, -0.02102726139128208, -0.019287746399641037, -0.01118160504847765, 0.0011245966888964176, -0.01015876978635788, 0.0041504837572574615, -0.024715034291148186, 0.003566006664186716, -0.010548421181738377, 0.0035834016744047403, 0.00832184124737978, -0.008440128527581692, 0.03392750769853592, 0.01301853358745575, 0.0046410271897912025, -0.005639508832246065, 0.02194572612643242, -0.009191599674522877, -0.03582010045647621, 0.0006653646123595536, 0.003432063851505518, 0.0124618886038661, -0.034845974296331406, 0.0007645169971510768, -0.0010602346155792475, -0.01920424960553646, -0.01301853358745575, -0.005469036288559437, 0.012308810837566853, 0.009128976613283157, -0.0010158770019188523, -0.010221392847597599, -0.03147827088832855, 0.010847617872059345, -0.007479916326701641, -0.0006540577742271125, -0.025104686617851257, -0.02054019831120968, 0.03170092776417732, 0.006290087476372719, 0.002612752141430974, -0.006338794250041246, 0.002969352761283517, 0.011188562959432602, 0.0057891071774065495, 0.015474729239940643, -0.0024718514177948236, -0.0007514706230722368, 0.030337149277329445, 0.02830539457499981, 0.005921310279518366, -0.026371054351329803, 0.040301091969013214, -0.024200137704610825, 0.013178568333387375, 0.016365360468626022, 0.006018723361194134, 0.02712252363562584, -0.002598836086690426, -0.001705594826489687, -0.024227971211075783, 0.028667213395237923, -0.0066901762038469315, 0.004550572484731674, -0.020359288901090622, -0.01118160504847765, 0.0033311720471829176, -0.004714086651802063, 0.02706686034798622, -0.010896324180066586, 0.02108292654156685, -0.01285849791020155, 0.017965715378522873, -0.01817445643246174, 0.026273639872670174, -0.010019608773291111, 0.03556961193680763, 0.0020839395001530647, 0.0031606995034962893, 0.03192358836531639, 0.00950471218675375, -0.0014751090202480555, 0.0006005676696076989, 0.015391232445836067, 0.028263645246624947, 0.0071007017977535725, -0.002972831716760993, 0.005604718811810017, -0.013811752200126648, 0.015961794182658195, 0.003016319591552019, -0.006669302005320787, -0.04909608140587807, -0.014229236170649529, -0.0005557751865126193, -0.004613194614648819, -0.056026313453912735, -0.052129797637462616, -0.018077043816447258, 0.02054019831120968, 0.051294829696416855, -0.01699158549308777, -0.0023413877934217453, 0.0013350780354812741, 0.02179264836013317, -0.006464039441198111, 0.013394268229603767, -0.010200518183410168, -0.011306850239634514, 0.0022491933777928352, 0.008551457896828651, 0.014542348682880402, -0.007466000039130449, 0.007549496833235025, -0.009282054379582405, -0.006540577858686447, 0.06334619224071503, 0.005427287891507149, -0.017144663259387016, 0.017645644024014473, -0.011209437623620033, 2.9544582503149286e-05, -0.0050515527836978436, -0.007660825736820698, 0.014458851888775826, 0.013749130070209503, 0.001737775863148272, 0.021458661183714867, -0.012545385397970676, -0.008461003191769123, -0.0032633307855576277, -0.024130556732416153, 0.011571256443858147, -0.006624074652791023, -0.0012350559700280428, 0.02536909282207489, -0.025438673794269562, 0.006164842750877142, 0.03492946922779083, 0.021069010719656944, 0.007542538922280073, 0.016629766672849655, -0.022697197273373604, -0.00961604155600071, 0.02980833500623703, -0.012427098117768764, 0.005309001076966524, -0.016059206798672676, 0.009567334316670895, -0.029112529009580612, -0.019176417961716652, 0.018772849813103676, 0.026844201609492302, 0.041804034262895584, 0.02120817080140114, -0.04016193002462387, 0.009177682921290398, 0.005987411830574274, -0.009789993055164814, -0.02702511101961136, 0.030977290123701096, -0.0006679738871753216, 0.0005431636818684638, -0.032508064061403275, 0.006724966689944267, 0.0028075778391212225, 0.009936111979186535, -0.01129293441772461, 0.027470426633954048, 0.006613637320697308, 0.03256372734904289, -0.03590359911322594, 0.011098108254373074, 0.014514516107738018, -0.024659371003508568, 0.029724838212132454, -0.005448162090033293, -0.009330760687589645, -0.004825415555387735, -0.003369441255927086, -0.010701498948037624, 0.025925736874341965, 0.004094819072633982, -0.007793028838932514, -0.004407932050526142, 0.028583716601133347, -0.008760199882090092, -0.017868302762508392, 0.010652792640030384, 0.00023396481992676854, -0.0020126192830502987, 7.74627915234305e-05, 0.016629766672849655, 0.01269846223294735, 0.0009341197437606752, 0.02447846159338951, -0.009024606086313725, -0.02847238816320896, -0.04647985100746155, -0.08093617111444473, 0.002226579701527953, 0.004602757748216391, 0.0279574915766716, 0.010680624283850193, 0.0007566891727037728, 0.0063631474040448666, 0.013470807112753391, -0.0064222910441458225, -0.01067366637289524, -0.005524700973182917, 0.031032955273985863, 0.00040748147876001894, -0.031867921352386475, -0.02687203325331211, -0.02751217596232891, 0.026176227256655693, 0.011724334210157394, 0.01169650163501501, 0.021263835951685905, -0.012594091705977917, -0.006749319843947887, -0.005430766846984625, 0.004063508007675409, -0.02613447979092598, -0.0063422732055187225, 0.015808716416358948, 0.021556075662374496, 0.012447971850633621, -0.0003535565047059208, 0.020748939365148544, 0.00510373804718256, 0.0031746155582368374, 0.01731165684759617, 0.0015386013546958566, -0.01654626987874508, 0.013095071539282799, 0.03136694058775902, 0.017019418999552727, -0.022516287863254547, -0.009386424906551838, -0.01311594620347023, 0.035708773881196976, -0.017436902970075607, -0.005994370207190514, 0.027359098196029663, -0.017715224996209145, -0.014159655198454857, 0.0063631474040448666, 0.001734296907670796, 0.02019229531288147, -0.00987348984926939, -0.0011828704737126827, -0.002137864474207163, -0.03069896809756756, -0.034873805940151215, 0.009901321493089199, 0.013338604010641575, -0.006119615398347378, -0.0029049906879663467, 0.017882218584418297, 0.018035296350717545, 0.009852615185081959, -0.011383389122784138, -0.004714086651802063, -0.0002837584470398724, -0.019065089523792267, -0.028611550107598305, 0.018828514963388443, -0.004627110902220011, -0.0057891071774065495, 0.006742361467331648, -0.00016177493671420962, -0.004206148441880941, -0.002217882080003619, 0.011035486124455929, -0.004647985100746155, -0.014124864712357521, -0.013436016626656055, 0.025870073586702347, 0.04194319620728493, -0.03776835650205612, -0.006213549058884382, 0.0002883246634155512, 0.026176227256655693, 0.029697006568312645, 0.005270731635391712, 0.019830474629998207, -0.006008286029100418, 0.008989815600216389, -0.014458851888775826, -0.0011454708874225616, -0.012614965438842773, 0.02837497554719448, 0.0033398696687072515, 0.019440824165940285, -0.019371243193745613, -0.024450628086924553, 0.022822441533207893, 0.022070972248911858, 0.007688657846301794, -0.005611676722764969, -0.006470997352153063, 0.004195711109787226, 0.00031659178785048425, 0.0027606110088527203, -0.02329559065401554, -0.026858117431402206, 0.006404895801097155, 0.013345561921596527, -0.022669363766908646, 0.021389082074165344, -0.006982414983212948, 0.028194066137075424, -0.008057435043156147, 0.02389398403465748, 0.014862419106066227, -0.0249237772077322, -0.028138400986790657, 0.01651843823492527, -0.0010784995974972844, 0.013804794289171696, 0.03543044999241829, -0.016810676082968712, 0.019802642986178398, -0.025438673794269562, -0.019566068425774574, -0.029084697365760803, 0.022669363766908646, 0.013686507008969784, -0.001260278862901032, -0.002718862611800432, -0.02211271971464157, -0.017784805968403816, -0.023406919091939926, 0.006641469895839691, 0.0032389776315540075, 0.011877411045134068, 0.03568093851208687, 0.07598203420639038, 0.0027362576220184565, -0.012482762336730957, 0.011028527282178402, 0.02147257886826992, 0.009198557585477829, 0.010332721285521984, 0.005883041303604841, -0.007125054951757193, -0.025897905230522156, 0.01099373772740364, -0.008572331629693508, -0.0182162057608366, -0.030782464891672134, 0.0005122873117215931, -0.008857612498104572, -0.01763172820210457, 0.03601492568850517, 0.0076538678258657455, 0.01220444031059742, 0.03932696580886841, 0.0012020051945000887, 0.012935036793351173, 0.004380099941045046, -0.016699347645044327, -0.019176417961716652, 0.03537478670477867, -0.0015994843561202288, 0.0014646719209849834, 0.0028997722547501326, 0.012225314043462276, -0.009289012290537357, -0.018424946814775467, -0.011432095430791378, -0.009748244658112526, 0.0164488572627306, -0.01521032303571701, -0.005844771862030029, 0.028027072548866272, 0.0048880381509661674, -0.0284306388348341, 0.011265101842582226, -0.019190333783626556, -0.0057090893387794495, 0.020943764597177505, 0.01148775964975357, -0.009574293158948421, -0.0087880315259099, 0.01295591052621603], "5b87a716-610c-4a52-9706-58146e9b5f5b": [-0.018425121903419495, -0.012499801814556122, 0.013521884568035603, -0.015317436307668686, -0.014682087115943432, -0.010497070848941803, -0.009205655194818974, -0.03632539138197899, -0.003894965862855315, -0.03406023234128952, 0.0058942437171936035, 0.020800774917006493, -0.01308680884540081, -0.019433394074440002, -0.016740065068006516, -0.012230468913912773, -0.004906690213829279, 0.0008662673644721508, 0.024557622149586678, -0.017472097650170326, 0.019640572369098663, 0.013107527047395706, -0.016380956396460533, -0.01484783086925745, -0.012886536307632923, -0.013107527047395706, 0.01633951999247074, -0.020635031163692474, 0.010041276924312115, 0.003378744702786207, 0.023825589567422867, -0.003237172495573759, 0.018052199855446815, -0.03220943361520767, -0.003577291266992688, -0.016795312985777855, 0.006902514956891537, -0.009074442088603973, 0.020717903971672058, 0.008404563181102276, 0.0029730191454291344, -0.005994379986077547, 0.009744320996105671, -0.006374208256602287, -0.011084077879786491, 0.01703011617064476, 0.019626760855317116, -0.0080109229311347, -0.01292797178030014, 0.01997205801308155, -0.015179317444562912, 0.015110258013010025, -0.011180762201547623, -0.00993078202009201, 7.19731324352324e-05, 0.0033010526094585657, -0.010738779790699482, 0.02401895634829998, -0.020773151889443398, -0.01022083219140768, 0.02553826943039894, -0.013818841427564621, -0.047430187463760376, 0.004357665777206421, 0.0315464623272419, 0.007665624376386404, -0.019778691232204437, 0.012762228958308697, -0.03861817345023155, 0.0007415282889269292, 0.004910143092274666, 0.0265465397387743, 0.0017575687961652875, -0.0022720634005963802, 0.042706504464149475, -0.005504056345671415, -0.014695899561047554, -0.012361682020127773, 0.00830097310245037, 0.001204228145070374, 0.02523440681397915, -0.008059264160692692, -0.01398458518087864, -0.010731874033808708, -0.0056525347754359245, -0.006646994035691023, -0.010055089369416237, -0.009178031235933304, 0.004481973126530647, -0.003439171938225627, 0.012002572417259216, -0.006671165116131306, 0.025717824697494507, 0.02716807648539543, -0.014392036944627762, 0.006091063376516104, -0.012313340790569782, 0.003036899259313941, -0.006792019121348858, -0.03969550132751465, 0.012230468913912773, -0.002446439117193222, 0.0008045452414080501, -0.006467438768595457, -0.04173966869711876, -0.019723443314433098, 0.026878027245402336, -0.012258092872798443, -0.017209671437740326, -0.023797964677214622, -0.03754084184765816, 0.03917064890265465, -0.0032181809656322002, -0.026891838759183884, -0.03372874855995178, -0.007838273420929909, 0.03295527771115303, 0.000731169362552464, -0.02881169691681862, -0.01633951999247074, 0.03215418756008148, 0.010469446890056133, 0.02501341514289379, 0.0036083681043237448, 0.0074791633524000645, -0.00048557587433606386, -0.00995840597897768, 0.0033666593953967094, -0.007575846742838621, -0.019060472026467323, 0.056794680655002594, 0.027306197211146355, 0.0004709006752818823, 0.0029160447884351015, -0.01976487971842289, -0.008521963842213154, -0.006422549951821566, 0.007617282681167126, -0.043231356889009476, 0.012209750711917877, 0.01084927562624216, 0.019530076533555984, -0.00245852442458272, -0.012969407252967358, -0.006816190201789141, 0.014336789026856422, -0.007182206492871046, 0.012852005660533905, -0.005493697244673967, 0.009150407277047634, 0.015621298924088478, 0.0005080202827230096, 0.007934956811368465, 0.0003012728411704302, 0.0027520281728357077, -0.013349235989153385, 0.02323167584836483, 0.002341123064979911, -0.002536216750741005, 0.008031640201807022, 0.011429376900196075, 0.009841004386544228, 0.00954404752701521, -0.014212481677532196, 0.0007596564828418195, 0.01908809505403042, 0.012458366341888905, -0.008376939222216606, 0.01781739667057991, -0.01719585992395878, -0.010055089369416237, 0.026684660464525223, -0.023425042629241943, 0.01305918488651514, -0.008093793876469135, 0.04580037668347359, 0.021684739738702774, -0.0005136313266120851, 0.00848743412643671, -0.0005990926874801517, -0.008770579472184181, 0.014095080085098743, 0.009778850711882114, 0.04157392680644989, -0.011077172122895718, -0.028839321807026863, 0.02765149436891079, 0.014295353554189205, 0.02107701450586319, 0.008666989393532276, 0.012182126753032207, 0.03452983871102333, 0.01290034782141447, 0.029916653409600258, -0.6090511083602905, -0.017264919355511665, -0.02234771102666855, 0.011560590006411076, 0.03085586428642273, 0.022320087999105453, 0.0070717111229896545, 0.03900490701198578, -0.024971978738904, 0.033452507108449936, 0.007285796105861664, 0.027941545471549034, -0.013611662201583385, -0.012126879766583443, 0.005890790373086929, -0.03127022087574005, 0.010207020677626133, 0.000655203708447516, -0.013798123225569725, 0.026311736553907394, -0.028369715437293053, -0.0056421756744384766, -0.0010160405654460192, 0.022983061149716377, 0.010041276924312115, 0.006267165765166283, -0.03074536845088005, -0.0038120942190289497, 0.0010453908471390605, 0.02743050456047058, -0.020110178738832474, 8.022792462725192e-05, 0.03143596649169922, -0.016229024156928062, 0.0478445440530777, -0.012209750711917877, -0.03458508849143982, 0.010883805342018604, 0.031021608039736748, 0.061104003340005875, -0.03422597795724869, -0.008991570211946964, 0.014654464088380337, -0.019516265019774437, -0.009074442088603973, -0.011463906615972519, -0.004475066903978586, 0.0037361285649240017, 0.01729254424571991, -0.04240264371037483, 0.0005019775126129389, -0.002786558121442795, 0.010207020677626133, -0.027844863012433052, 0.004492332227528095, -0.026007873937487602, 0.010773309506475925, -0.017637841403484344, 0.01849418133497238, -0.043921954929828644, -0.024032767862081528, 0.04010986164212227, 0.01124982163310051, 0.012693168595433235, -0.02570401132106781, 0.0032233605161309242, -0.023065932095050812, 0.0024723364040255547, 0.019585324451327324, -0.02038641646504402, -0.004827271681278944, 0.003307958599179983, -0.009999841451644897, -0.00037982824142090976, 0.010939053259789944, -0.012865818105638027, 0.03535855561494827, -0.028949817642569542, -0.008432187139987946, 0.008266443386673927, 0.005711235571652651, -0.0032285398337990046, -0.008521963842213154, -0.013017749413847923, 0.005756124388426542, -0.019433394074440002, -0.011857546865940094, -0.0004825544892810285, 0.00983409769833088, 0.005483338609337807, 0.004026179201900959, 0.0296956617385149, 0.01487545482814312, -0.006222276948392391, -0.011892076581716537, 0.018963787704706192, 0.009578577242791653, -0.03325914219021797, 0.00639837933704257, -0.021436123177409172, -0.035662416368722916, 0.0002242281479993835, 0.005314142443239689, 0.01566273532807827, 0.003292420180514455, -0.01140865869820118, -0.031408339738845825, -0.0036014621146023273, 0.039087776094675064, -0.008149041794240475, 0.0015391675988212228, -0.016905808821320534, -0.012651733122766018, -0.0003774543001782149, 0.010531600564718246, -0.041491053998470306, 0.015331248752772808, 0.0018801497062668204, 0.038866788148880005, 0.009564765729010105, 0.008604835718870163, -0.006988839246332645, 0.012423835694789886, 0.020372604951262474, 0.014101985841989517, 0.01114623248577118, 0.03317626938223839, 0.020994141697883606, 0.007948769256472588, -0.002223721705377102, 0.005618004593998194, 0.001014314009808004, 0.024405689910054207, -0.02806585282087326, 0.005493697244673967, -0.006104875355958939, 0.0207593385130167, -0.016367143020033836, 0.01374287623912096, -0.00699229259043932, -0.032982900738716125, -0.0091987494379282, 0.0034115479793399572, -0.014226294122636318, 0.004796194843947887, -0.03580053523182869, 0.003926042467355728, -0.009695978835225105, 0.002451618667691946, -0.016159964725375175, 0.013411389663815498, -0.000155276371515356, -0.018590865656733513, 0.03223705664277077, -0.024253759533166885, -0.0029678395949304104, -0.04127006232738495, -0.040496595203876495, -0.001963021233677864, -0.012748416513204575, 0.003358026733621955, 0.002152935368940234, -0.01854942925274372, 0.012755322270095348, -0.008204289712011814, -0.01897759921848774, -0.017430663108825684, 0.008370032534003258, -0.012078537605702877, -0.027292383834719658, -0.014654464088380337, 0.006274071522057056, -0.012451459653675556, -0.012596485204994678, 0.007047540042549372, 0.004267888143658638, -0.019405769184231758, 0.00261563528329134, -0.02370128221809864, -0.00983409769833088, 0.008818920701742172, -0.012368588708341122, -0.008591024205088615, -0.005700876470655203, 0.021947165951132774, 0.004216093569993973, 0.015731794759631157, 0.005155304912477732, -0.02690565027296543, 0.005472979508340359, -0.023728905245661736, 0.024999603629112244, -0.017858833074569702, 0.00927471462637186, 0.035027068108320236, 0.022333899512887, 0.0033010526094585657, 0.0064363619312644005, -0.006225729826837778, 0.02501341514289379, 0.04651859775185585, 0.009682167321443558, -0.00475821178406477, -0.0052485354244709015, 0.014378225430846214, -0.023880837485194206, 0.023839401081204414, -0.015966597944498062, 0.029889028519392014, -0.00646398589015007, -0.010158678516745567, -0.005521321203559637, -0.010082713328301907, 0.013425201177597046, 0.030027147382497787, 0.00803854689002037, -0.019847750663757324, 0.002417088719084859, -0.01854942925274372, 0.014571592211723328, 0.013003936968743801, -0.004354212898761034, 0.01897759921848774, -0.007541317027062178, -0.007921145297586918, 0.03223705664277077, 0.005870072636753321, 0.025883566588163376, 3.107685552095063e-05, -0.029447047039866447, -0.009074442088603973, -0.01301084365695715, -0.012361682020127773, -0.00914350152015686, 0.02611836977303028, -0.010745685547590256, 0.028286844491958618, 0.0022323541343212128, 0.024253759533166885, 0.011346505023539066, -0.00011189826182089746, -0.014751147478818893, 0.028922192752361298, -0.01661575771868229, 0.03527568280696869, 0.029668036848306656, 0.03149121254682541, 0.010731874033808708, -0.026836590841412544, 0.018894728273153305, -0.027610059827566147, 0.00497920298948884, -0.009861721657216549, 0.03848005086183548, 0.0030731556471437216, 0.01403292641043663, 0.001269834814593196, 0.012244281359016895, -0.013867183588445187, 0.03582816198468208, 0.04093857854604721, 0.0315464623272419, 0.005987474229186773, -0.0010617926018312573, -0.0021926448680460453, -0.01798314042389393, -0.0004450033011380583, -0.03422597795724869, 0.011560590006411076, 0.000505862117279321, -0.028342092409729958, 0.016988681629300117, -0.008397656492888927, -0.012582673691213131, -0.004720229189842939, -0.011968041770160198, 0.022320087999105453, 0.027458127588033676, 0.032568544149398804, 0.002743395743891597, 0.005711235571652651, -0.022154344245791435, 0.03069012053310871, 0.000549024436622858, 0.005041356664150953, -0.005811371840536594, -0.00026393745793029666, -0.0241708867251873, 0.02307974360883236, 0.037817079573869705, -0.0031836512498557568, -0.01132578682154417, -0.003269975772127509, -0.010869992896914482, 0.00419192248955369, -0.01482020691037178, 0.027872486039996147, 0.004364571534097195, -0.04455730319023132, -0.021353252232074738, -0.001185236731544137, 0.013597850687801838, -0.02622886560857296, -0.02060740813612938, 0.003898418741300702, 0.03353537991642952, -0.024405689910054207, -0.01970963180065155, -0.004243717063218355, 0.025634951889514923, 0.012057819403707981, -0.01828700304031372, 0.024971978738904, -0.010455635376274586, 0.02632554993033409, 0.020165426656603813, 0.03900490701198578, -0.04005461186170578, -0.011318881064653397, -0.0047305878251791, -0.028784073889255524, -0.005593833979219198, -0.020690279081463814, 0.004661528393626213, -0.03027576208114624, -0.0014226293424144387, 0.012472177855670452, -0.01395696122199297, -0.04240264371037483, 0.004865254275500774, -0.02922605536878109, -0.0252205953001976, -8.929200703278184e-05, -0.0027503017336130142, -0.0017523893620818853, 0.00857030600309372, -0.008715331554412842, -0.011974948458373547, -0.003746487433090806, 0.0008865536074154079, -0.0005144946044310927, -0.020220674574375153, 0.024005144834518433, 0.01714061200618744, 0.010704250074923038, -0.009184936992824078, -0.008901792578399181, 0.013604756444692612, -0.015510804019868374, -0.017071552574634552, 0.00421954644843936, 0.015124069526791573, 0.004381836391985416, -0.008370032534003258, 0.0027658401522785425, 0.00746535137295723, 0.0007587932050228119, 0.009916969574987888, -0.02091127075254917, 0.018328439444303513, 0.009633825160562992, 0.03593865782022476, 0.0022789693903177977, -0.016961056739091873, 0.017886456102132797, 0.022775880992412567, -0.010179396718740463, 0.008950133807957172, 0.008756767027080059, -0.0278586745262146, 0.010234644636511803, 0.0019751067738980055, 0.0026052764151245356, -0.027250949293375015, 0.029833780601620674, -0.006664258893579245, -0.055275365710258484, 0.00016876458539627492, 0.0064432681538164616, 0.015496991574764252, -0.03596628084778786, -0.018369873985648155, 0.014281541109085083, 0.005949491169303656, 0.0127415107563138, -0.03538617864251137, 0.005493697244673967, 0.011836828663945198, -0.01198185421526432, -0.009074442088603973, -0.02928130328655243, -0.0031404888723045588, -0.029253680258989334, -0.008660083636641502, 0.005659440532326698, -0.0467672124505043, -0.02722332440316677, -0.0032768817618489265, 0.003798282239586115, 0.010421105660498142, 0.009481893852353096, 0.0020700639579445124, -0.011215291917324066, 0.03491657227277756, 0.0004838493769057095, -0.007354855537414551, -0.020994141697883606, -0.0003511252871248871, 0.03016526810824871, -0.006336225662380457, -0.008805109187960625, 0.00935758650302887, -0.007113147061318159, 0.00012279674410820007, -0.006702241953462362, 0.005852807778865099, 0.03444696590304375, 0.009896252304315567, 0.014958326704800129, -0.017306355759501457, 0.00995840597897768, 0.010296798311173916, 0.005908055230975151, -0.006771301385015249, -0.004810006357729435, -0.023328358307480812, -0.041491053998470306, -0.002829720266163349, -0.012506707571446896, 0.013825747184455395, 0.011933512054383755, 0.028894569724798203, 0.013970772735774517, -0.006957762409001589, 0.006184294354170561, -5.5301694374065846e-05, 0.007679436355829239, 0.004419819451868534, 0.027029957622289658, -0.006933591794222593, 0.009253996424376965, 0.019682008773088455, -0.003421907080337405, 0.007009557448327541, -0.0033649327233433723, -0.0241708867251873, 0.02360459789633751, 0.0004644263244699687, -5.9145836530660745e-06, 0.01330089382827282, -0.00198546564206481, -0.045330774039030075, -0.0034754283260554075, 0.014026020653545856, -0.011305069550871849, 0.004067615140229464, 0.004336947575211525, -0.03615964576601982, -0.04091095179319382, -0.0202344860881567, 0.00930233858525753, 0.011263633146882057, -0.02165711484849453, -0.024958167225122452, -0.008611741475760937, -0.013072997331619263, 0.008591024205088615, -0.009854815900325775, 0.03480607643723488, -0.016588134691119194, -0.010455635376274586, -0.026201242581009865, 0.016008032485842705, -0.009060629643499851, 0.011015018448233604, 0.020193049684166908, -0.02307974360883236, -0.007120052818208933, -0.017858833074569702, -0.017223482951521873, -0.03803807124495506, -0.01718204841017723, 0.008155947551131248, 0.003743034554645419, 0.04209877923130989, -0.02307974360883236, -0.01046254113316536, 0.0009357586386613548, 0.014240105636417866, 0.016726253554224968, -0.002848711796104908, 0.02285875380039215, -0.021007953211665154, -0.0022254481445997953, 0.021007953211665154, 0.004965391010046005, 0.037181731313467026, -0.035441428422927856, -0.01807982288300991, 0.020952707156538963, -0.010207020677626133, 0.01384646538645029, -0.010635190643370152, -0.046021368354558945, 0.0007751949015073478, 0.011933512054383755, 0.0004544990079011768, 0.005535133183002472, -0.007886615581810474, -0.028452588245272636, 0.012285716831684113, -0.006412191316485405, 0.009184936992824078, 0.009896252304315567, -0.006560669280588627, -0.014136516489088535, 0.003705051727592945, -0.011173855513334274, 0.02307974360883236, -0.006567575503140688, -0.001187826506793499, -0.011595119722187519, 0.012665544636547565, -0.002346302615478635, -0.01813507080078125, 0.012734604999423027, -0.017278730869293213, 0.0022634309716522694, -0.013625474646687508, -0.0012344417627900839, -0.031518835574388504, -0.015469367615878582, -0.023038309067487717, -0.01908809505403042, -0.0077001540921628475, -0.03383924067020416, 0.007748495787382126, -0.014157233759760857, 0.035772912204265594, 0.014695899561047554, 0.004212640225887299, -0.0019008676754310727, -0.002506866352632642, -0.012182126753032207, 0.012534331530332565, -0.021063201129436493, 0.04483354464173317, -0.00011621449084486812, 0.012375494465231895, 0.04295511916279793, 0.005362484138458967, -0.0024533451069146395, -0.0296956617385149, 0.019253838807344437, 0.030303386971354485, 0.029447047039866447, 0.03588340803980827, -0.016726253554224968, -0.010883805342018604, 0.009992935694754124, 0.01729254424571991, -0.0015978682786226273, -0.03016526810824871, 0.03248567134141922, 0.013521884568035603, 0.0070717111229896545, -0.03690549358725548, -0.002253072103485465, -0.054584767669439316, -0.014019114896655083, 0.003226813394576311, -0.006035815924406052, 0.004330041818320751, -0.0016272186767309904, 0.00563872279599309, 0.050800297409296036, 0.008183571510016918, 0.03488894924521446, 0.005100056994706392, -0.004499237984418869, 0.006267165765166283, 0.0043887426145374775, -0.017720714211463928, 0.016311895102262497, 0.002261704532429576, 0.029944276437163353, 0.003770658513531089, 0.014336789026856422, 0.014488720335066319, 0.003188830567523837, 0.006643541157245636, -0.029308928176760674, -0.02691946178674698, 0.0446954220533371, -0.021256569772958755, -0.014101985841989517, -0.006916326936334372, 0.01035204529762268, -0.005386654753237963, -0.0024567979853600264, -0.023259298875927925, 0.01019320823252201, -0.02291400171816349, -0.020110178738832474, 0.013162774965167046, -0.0051725697703659534, -0.013832653872668743, -0.005697423592209816, -0.010103430598974228, 0.0009193569421768188, -0.02165711484849453, -0.022306276485323906, 0.01935052126646042, -0.025372525677084923, -0.002593190874904394, -0.019530076533555984, -0.012285716831684113, -0.002936762757599354, 0.013155868276953697, -0.00746535137295723, 0.03491657227277756, 0.03690549358725548, -0.035137563943862915, 0.023328358307480812, -0.020510723814368248, 0.015013573691248894, 0.004440537188202143, -0.031822700053453445, -0.023687468841671944, -0.016104716807603836, 0.030828239396214485, -0.0054798852652311325, -0.010200113989412785, -0.03809331730008125, 0.014226294122636318, 0.016201401129364967, -0.00047176392399705946, 0.03433647006750107, 0.009682167321443558, 0.011733239516615868, 0.003368385834619403, -0.004578656516969204, -0.018121259286999702, -0.004502690862864256, 0.0008900066022761166, 0.00428515300154686, 0.010213926434516907, -0.01850799284875393, 0.024060392752289772, 0.0009849636116996408, 0.006795472465455532, -0.01490307878702879, -0.016850560903549194, -0.01667100563645363, 0.000765267584938556, 0.0055662100203335285, -0.026739906519651413, 0.0029125919099897146, -0.032982900738716125, -0.029474670067429543, -0.010711155831813812, -0.01714061200618744, -0.013473543338477612, -0.001802457612939179, 0.002484421944245696, 0.026615599170327187, -0.020248297601938248, 0.019585324451327324, 0.0033010526094585657, -0.003553120419383049, -0.0016893723513931036, -0.037457969039678574, -0.03284478187561035, -0.018328439444303513, -0.007921145297586918, 0.024460937827825546, 0.01787264458835125, -0.021726174280047417, -0.019999682903289795, 0.016146153211593628, -0.029529917985200882, -0.0038155470974743366, 0.007907332852482796, 0.04803791269659996, 0.03947451338171959, 0.0023100462276488543, -0.01588372513651848, 0.01939195767045021, -0.012734604999423027, 0.013777405954897404, 0.008943228051066399, 0.004305870737880468, -0.04397720471024513, -0.01877042092382908, -0.0017023211112245917, 0.03138071671128273, -0.01282438263297081, 0.002843532245606184, 0.01719585992395878, 0.012948689982295036, 0.0008541818824596703, 0.009841004386544228, 0.018590865656733513, -0.01955770142376423, 0.0029471218585968018, 0.012389305979013443, -0.024971978738904, 0.004357665777206421, -0.021477559581398964, -0.022734446451067924, 0.014654464088380337, 0.01667100563645363, 0.005659440532326698, -0.03754084184765816, 0.001348390243947506, 0.009350680746138096, -0.027817238122224808, 0.005041356664150953, -0.009129689075052738, -0.008017828688025475, -0.001802457612939179, -0.0006793745560571551, 0.011664179153740406, 0.009661449119448662, 0.008756767027080059, 0.027057582512497902, 0.010752592235803604, 0.011726333759725094, -0.012976313941180706, 0.0032941466197371483, -0.056684184819459915, 0.0012007751502096653, -0.009053723886609077, 0.0035427615512162447, 0.0165605116635561, 0.008874168619513512, 0.034087855368852615, -0.003781017381697893, -0.002063157968223095, 0.016380956396460533, -0.02506866306066513, -0.03394973650574684, 0.012700074352324009, 0.03477845340967178, -0.0415186770260334, -0.014557779766619205, -0.004336947575211525, 0.0045337677001953125, 0.020994141697883606, -0.028424963355064392, 0.002099414123222232, -0.03038625791668892, 0.004837630316615105, -0.010441822931170464, 0.019474828615784645, -0.035137563943862915, 0.0003273860493209213, 0.014709711074829102, -0.005586927756667137, 0.002221995033323765, 0.20010732114315033, -0.013673815876245499, -0.009316151030361652, 0.004941219929605722, -0.016229024156928062, 0.002872882643714547, 0.01813507080078125, 0.007900427095592022, -0.021063201129436493, 0.026394609361886978, -0.002028628019616008, -0.018687548115849495, 0.0043127769604325294, -0.002957480726763606, -0.006567575503140688, -0.008715331554412842, -0.04132531210780144, -0.012161409482359886, -0.022527266293764114, -0.009150407277047634, 0.031988441944122314, 0.007527505047619343, -0.028162537142634392, -0.0043887426145374775, 0.015828479081392288, 0.00018613741849549115, -0.011747051030397415, 0.011767769232392311, 0.013466637581586838, 0.010579942725598812, -0.021173696964979172, -0.013231834396719933, -0.0016738339327275753, -0.007106240838766098, -0.033563002943992615, -0.01368762832134962, 0.021477559581398964, 0.0037499405443668365, 0.017568781971931458, 0.016408579424023628, -0.013162774965167046, -0.005621457938104868, 0.014378225430846214, 0.0013388944789767265, 0.017941704019904137, 0.026781342923641205, -0.0005162211018614471, -0.005669799633324146, -0.007120052818208933, 0.04563463479280472, -0.015151693485677242, -0.03342488408088684, 0.04809315875172615, -0.0054798852652311325, -0.002886694623157382, -0.003856983035802841, 0.018646113574504852, -0.027195701375603676, 0.0031750185880810022, 0.01182301715016365, -0.026781342923641205, 0.022983061149716377, 0.002867703093215823, 0.029032688587903976, -0.02917080745100975, 0.019682008773088455, -0.024115638807415962, -0.005548945162445307, 0.013943148776888847, 0.009053723886609077, 0.005666346754878759, -0.0014278088929131627, -0.014350601471960545, -0.009668354876339436, -0.0367949977517128, -0.036601629108190536, 0.012817475944757462, 0.0019233120838180184, 0.00010849922546185553, 0.011104796081781387, -0.006698788609355688, -0.018908539786934853, -0.01802457682788372, -0.018162695690989494, 0.002834899816662073, -0.010510883294045925, 0.003330403007566929, 0.00029933053883723915, -0.0020683372858911753, 0.0140605503693223, 0.016961056739091873, 0.017527345567941666, -0.006066892761737108, -0.00914350152015686, -0.01712680049240589, -0.017831208184361458, 0.02454380877315998, 0.016698630526661873, -0.0046097333543002605, -0.006381114479154348, -0.004357665777206421, 0.025994062423706055, 0.014557779766619205, 0.018038388341665268, -0.01907428354024887, -0.00011427218851167709, -0.011491530574858189, -0.012320246547460556, 0.0231349915266037, -0.015013573691248894, -0.026712283492088318, -0.052485354244709015, -0.00036623209598474205, -0.008535776287317276, -0.015262188389897346, 0.004236811306327581, -0.012044007889926434, -0.018328439444303513, -0.002872882643714547, 0.0008131777285598218, 0.03265141695737839, -0.03132547065615654, -0.002688148058950901, -0.021532807499170303, -0.017996951937675476, -0.03662925213575363, -0.028162537142634392, -0.02690565027296543, -0.0026846949476748705, -0.03226468339562416, 0.010372763499617577, -0.014212481677532196, 0.009295432828366756, -0.020054930821061134, 0.005687064491212368, -0.003967478405684233, 0.02821778506040573, -0.001601321273483336, 0.0074584451504051685, -0.004896331112831831, 0.015842290595173836, -0.014916890300810337, 0.010448729619383812, 0.002914318349212408, 0.023314546793699265, -0.030772993341088295, -0.015621298924088478, 0.021891918033361435, -0.011781580746173859, 0.01845274679362774, -0.03378399461507797, -0.028563082218170166, 0.013998396694660187, 0.01845274679362774, -0.0006249900907278061, 0.007679436355829239, -0.040662337094545364, -0.018880916759371758, -0.01639476791024208, -0.0029885575640946627, -0.03394973650574684, 0.004402554593980312, 0.021795233711600304, -0.0094611756503582, -0.007783025503158569, -0.010628284886479378, -0.17624029517173767, 0.023052120581269264, 0.020952707156538963, -0.024958167225122452, 0.02465430460870266, -0.02480623684823513, -0.00935758650302887, -0.007278889883309603, -0.023784153163433075, -0.007196018472313881, 0.018259378150105476, 0.020206861197948456, -0.007189112715423107, -0.004740946926176548, -0.0022444394417107105, 0.0015607486711815, -0.03977837413549423, 0.014861642383038998, 0.03458508849143982, 0.009426645934581757, 0.025994062423706055, -0.017720714211463928, -0.005687064491212368, 0.03201606497168541, -0.014350601471960545, 0.007106240838766098, 0.01845274679362774, 0.017057741060853004, 0.02664322406053543, -0.02476480044424534, -0.031518835574388504, -0.003325223457068205, -0.006781660486012697, 0.02933655120432377, 0.004171204753220081, -0.00497920298948884, -0.0036221800837665796, 0.005462620407342911, -0.010075806640088558, 0.024322818964719772, -0.004854895174503326, 0.007845179177820683, -0.0028970534913241863, 0.0032285398337990046, -0.007575846742838621, 0.018010763451457024, 0.01770690083503723, -0.015317436307668686, -0.0005779431667178869, -0.02281731739640236, 0.00421954644843936, -0.017361603677272797, 0.008363126777112484, -0.019046658650040627, 0.01680912636220455, -0.015082634054124355, -0.024681929498910904, -0.00867389515042305, 0.011270539835095406, -0.0021028672344982624, -0.022596325725317, -0.018093636259436607, 0.012126879766583443, 0.01798314042389393, -0.016546698287129402, -0.013439013622701168, -0.01609090529382229, 0.03549667447805405, 0.0014062277041375637, 0.006988839246332645, -0.00036083682789467275, -0.010939053259789944, 0.023259298875927925, -0.01024845615029335, 0.024364253506064415, -0.008335502818226814, -0.014944514259696007, 0.01924002543091774, 0.04447443410754204, 0.022195780649781227, -0.037706583738327026, 0.05030306801199913, -0.009578577242791653, -0.014834018424153328, 0.018259378150105476, 0.014378225430846214, 0.022264840081334114, 0.004336947575211525, -0.0002872450859285891, -0.027831049636006355, 0.03441934287548065, -0.015704169869422913, -0.005417731590569019, -0.010013652965426445, -0.001005681580863893, 0.002291054930537939, -0.012686262838542461, -0.010559224523603916, -0.027292383834719658, -0.016684819012880325, -0.0035565735306590796, -0.016118528321385384, 0.0034616163466125727, 0.006785113364458084, 0.037347473204135895, -0.0025103192310780287, 0.00564908143132925, 0.0005693107377737761, 0.03160170838236809, 0.00017362034122925252, -0.0009478440624661744, 0.00870151910930872, 0.0010203567799180746, 0.02770674228668213, -0.01014486700296402, 0.007147676777094603, -0.010911429300904274, -0.0063673024997115135, -0.006232636049389839, 0.014889266341924667, -0.03651875630021095, -0.02512391097843647, 0.020414041355252266, 0.044281065464019775, -0.004709870088845491, -0.02502722665667534, -0.049059994518756866, -0.01933670975267887, 0.010455635376274586, 0.045855626463890076, -0.01214069128036499, 0.04190541431307793, 0.0014882360119372606, 0.023010684177279472, -0.007168394513428211, 0.007748495787382126, 0.000223580704187043, -0.02791392244398594, -0.02906031161546707, 0.011505342088639736, 0.013653098605573177, 0.012734604999423027, 0.0015400308184325695, -0.030524376779794693, -0.01697486825287342, 0.03171220421791077, 0.00229968735948205, -0.039916492998600006, -0.004882519133388996, -0.003083514515310526, -0.005255441647022963, -0.008024734444916248, -0.020193049684166908, 0.021422311663627625, 0.017416851595044136, 0.01046254113316536, 0.0207593385130167, -0.011546778492629528, -0.0030627967789769173, -0.013514978811144829, -0.028452588245272636, -0.007748495787382126, 0.005314142443239689, -0.006201559212058783, 0.026615599170327187, -0.02686421386897564, 0.011512248776853085, 0.011664179153740406, 0.004927407950162888, 0.012057819403707981, -0.015897538512945175, -0.01479258295148611, -0.015966597944498062, 0.024529997259378433, -0.0073134200647473335, -0.027361445128917694, -0.030938735231757164, 0.0012542963959276676, -0.020773151889443398, -0.01997205801308155, 0.029502294957637787, 0.024378066882491112, 0.03209893777966499, 0.021518995985388756, -0.034502215683460236, 0.023673657327890396, 0.01127744559198618, 0.00832859706133604, -0.026726095005869865, 0.014053644612431526, 0.009799567982554436, 0.0207593385130167, -0.02796917036175728, -0.006394925992935896, 0.014447284862399101, 0.01377050019800663, -0.0006871438235975802, 0.017320167273283005, -0.00967526063323021, 0.018784232437610626, -0.05267872288823128, 0.0059529440477490425, -0.01006199512630701, -0.024833859875798225, 0.04919811338186264, -0.01680912636220455, -0.007955675013363361, -0.0013975952751934528, -0.005341765936464071, -0.014861642383038998, 0.019419580698013306, 0.0010428011883050203, -0.0015538427978754044, 0.007520598825067282, 0.002810728969052434, -0.011498436331748962, -0.010690438561141491, 0.024944355711340904, 0.0008226734353229403, -0.006142858415842056, -0.023991331458091736, -0.005289971362799406, 0.011781580746173859, -0.012700074352324009, 0.010987394489347935, 0.0038120942190289497, -0.025994062423706055, -0.021367063745856285, -0.07917001843452454, 0.011519154533743858, 0.024350441992282867, 0.02622886560857296, 0.015731794759631157, -0.0007354855770245194, 0.04162917286157608, -0.010628284886479378, -0.0020545253064483404, -0.019281461834907532, -0.01787264458835125, -0.006053080782294273, -0.023618409410119057, -0.014019114896655083, -0.03372874855995178, -0.024309007450938225, 0.02680896781384945, 0.014447284862399101, 0.007451539393514395, 0.017361603677272797, 0.0019526623655110598, 0.012589579448103905, -0.0033321294467896223, 0.025745447725057602, 0.0007087249541655183, 0.006691882852464914, 0.013521884568035603, -0.001125672715716064, 0.00299546355381608, -0.002691600937396288, 0.019695820286870003, 0.01084927562624216, -0.0019612947944551706, -0.002577652456238866, -0.0005201057065278292, 0.0069094207137823105, 0.005289971362799406, 0.00516566401347518, 0.01871517300605774, 0.0068300021812319756, -0.02733382023870945, -0.014944514259696007, 0.012458366341888905, -0.0005296014132909477, 0.002128764521330595, 0.026615599170327187, -0.04894949868321419, -3.409821511013433e-05, 0.0063707553781569, 0.01327326986938715, 0.028977440670132637, 0.005397013854235411, -0.0014537061797454953, 0.007831367664039135, -0.020041119307279587, -0.03900490701198578, 0.018383685499429703, 0.02008255384862423, -0.009005381725728512, 0.0005671526305377483, 0.02707139402627945, -0.0011731513077393174, 0.010234644636511803, -0.014668275602161884, -0.004944672808051109, -0.003770658513531089, -0.0093299625441432, -0.0013613388873636723, 0.01639476791024208, -0.021878106519579887, -0.019889187067747116, 0.007762307766824961, -0.001835260889492929, 0.017996951937675476, -0.004854895174503326, 0.010510883294045925, -0.007686342112720013, 0.006325866561383009, -0.02928130328655243, 0.022430583834648132, 0.023576974868774414, 0.0020752432756125927, -0.03162933140993118, 0.006826549302786589, 0.020731715485453606, 0.004091785755008459, -0.01043491717427969, 0.017112988978624344, -0.009723602794110775, 0.0030541643500328064, -0.021629491820931435, 0.0042229993268847466, 0.018121259286999702, 0.01216831523925066, 0.03447459265589714, 0.01355641521513462, 0.007838273420929909, -0.016215212643146515, 0.020317357033491135, 0.025096286088228226, 0.015386496670544147, -0.005738859064877033, 0.008418374694883823, -0.020469289273023605, 0.009896252304315567, 0.017306355759501457, -0.019253838807344437, -0.04024798050522804, 0.010055089369416237, 0.006957762409001589, 0.006457079667598009, 0.024516185745596886, -0.01714061200618744, 0.020897459238767624, -0.024309007450938225, 0.02323167584836483, 0.0011714247521013021, -0.025565892457962036, -0.02911555953323841, 0.010890711098909378, 0.022665387019515038, -0.0038915127515792847, 0.020800774917006493, -0.010013652965426445, 0.045220278203487396, -0.027402879670262337, 0.030717745423316956, -0.05002683028578758, 0.02501341514289379, 0.003926042467355728, -0.015856102108955383, 0.020800774917006493, -0.03422597795724869, -0.010662814602255821, -0.013604756444692612, 0.0008438229560852051, 0.011602025479078293, 0.013128245249390602, -0.018411310389637947, 0.06800997257232666, 0.02881169691681862, -0.0019578419160097837, 0.014253917150199413, 0.012748416513204575, -0.012244281359016895, -0.01216831523925066, -0.0006383704021573067, -0.01100811269134283, -0.016933433711528778, -0.019143342971801758, -0.014516344293951988, -0.013880995102226734, -0.01939195767045021, 0.011160043999552727, -0.012451459653675556, 0.0008584980969317257, 0.04762355238199234, 0.013777405954897404, 0.019309086725115776, 0.0467948392033577, 0.004923955071717501, 0.011753956787288189, 0.012230468913912773, -0.0001439462648704648, 0.004095239099115133, 0.039032530039548874, 0.012175220996141434, -0.00428515300154686, 0.009447364136576653, 0.010179396718740463, -0.0093299625441432, -0.03190557286143303, -0.0028159082867205143, -0.009923875331878662, 0.020193049684166908, -0.02002730593085289, 0.0009038185235112906, 0.01493070274591446, 0.00022207002621144056, -0.0009236732148565352, 0.01062137819826603, -0.024115638807415962, -0.008881074376404285, 0.008086888119578362, 0.0046097333543002605, -0.010531600564718246, 0.012865818105638027, -0.0064467210322618484], "1349852d-6cd2-4a66-b4a1-b258a4147807": [-0.029148485511541367, -0.023530010133981705, -0.0022336612455546856, -0.008110882714390755, -0.00495313061401248, 0.004439159296452999, -0.004865121562033892, -0.03703406825661659, -0.02002374269068241, -0.00162112049292773, 0.00994146429002285, 0.01898171938955784, -0.016953999176621437, -0.01509525440633297, -0.015559940598905087, 0.013673033565282822, -0.0013509338023141026, -0.003476344281807542, 0.027585450559854507, -0.010166767053306103, 0.007688441313803196, 0.02775442786514759, -0.009540144354104996, -0.020671486854553223, -0.011370725929737091, 0.018967637792229652, 0.028021974489092827, -0.02169942855834961, 0.017643986269831657, -0.011729801073670387, 0.034414928406476974, 0.004502526018768549, -0.010349825024604797, -0.05987408757209778, -0.008512202650308609, -0.010617371648550034, -0.015954218804836273, -0.024177754297852516, -0.004403956234455109, -0.009624633006751537, 0.037935275584459305, 0.001561274635605514, 0.019544975832104683, 0.003222879022359848, 0.009624633006751537, -0.0035819546319544315, -0.01633441634476185, -0.006664020009338856, 0.009427493438124657, 0.018418462947010994, -0.004752470646053553, 0.002529370365664363, -0.019925173372030258, 0.002670184476301074, -0.01615135930478573, 0.004675022792071104, -0.011053894646465778, -0.007765888702124357, -0.008026394993066788, -0.011258075013756752, 0.020953115075826645, 0.012081836350262165, -0.05249543860554695, -0.008110882714390755, 0.003173594130203128, -0.011018690653145313, -0.001524310908280313, 0.005695924162864685, -0.00912474375218153, 0.02296675369143486, 0.015306475572288036, 0.013919457793235779, -0.022699207067489624, 0.006259179674088955, 0.01441934797912836, 0.0074701798148453236, -0.023994695395231247, 0.006118365563452244, -0.003988554701209068, -0.0115397023037076, 0.012532440945506096, -0.0008849276346154511, -0.0052558802999556065, 0.006554889027029276, 0.017517253756523132, -0.0023586335591971874, -0.030612951144576073, 0.008498121052980423, -0.00023718348529655486, -0.00949085969477892, 0.00546006066724658, 0.012722539715468884, 0.014743220061063766, 0.018446626141667366, 0.0038723833858966827, 0.011159504763782024, 0.0031612729653716087, 0.008610772900283337, -0.025459161028265953, -0.05548069253563881, -0.008716383017599583, 0.018348056823015213, 0.014151801355183125, -0.005720566492527723, -0.0367242768406868, -0.013405486941337585, 0.005062261130660772, -0.0009337724768556654, 0.0053157261572778225, -0.022178195416927338, -0.01698216050863266, 0.04263846203684807, -0.010800429619848728, -0.04444088041782379, -0.02231900952756405, 0.015433208085596561, 0.023755311965942383, 0.010659615509212017, -0.04782041534781456, -0.02329062670469284, 0.018784580752253532, -0.000512210710439831, 0.024909986183047295, -0.008110882714390755, 0.03193660080432892, -0.006709784269332886, -0.013384365476667881, -0.011335521936416626, -0.008385470137000084, -0.030049694702029228, 0.03748467192053795, 0.01977027766406536, -0.0033355301711708307, 0.0230794046074152, -0.02797972969710827, 0.007941906340420246, 0.002613858785480261, -0.004963691346347332, -0.04238499701023102, 0.0014345420058816671, -0.0011309119872748852, 0.02379755675792694, -0.03157048672437668, -0.00407304335385561, 0.0009812971111387014, 0.026796892285346985, 0.019390080124139786, -0.0034939460456371307, -0.016672370955348015, -0.0017786561511456966, 0.012314178980886936, 0.0035537919029593468, 0.021108010783791542, -0.005607915110886097, 0.0016853668494150043, -0.001009459956549108, 0.009152906015515327, 0.013468853197991848, 0.009209231473505497, 0.02322021871805191, 0.011976225301623344, 0.029739905148744583, -0.003404177026823163, -0.0019080289639532566, 0.017714394256472588, 0.03500634431838989, 0.023684905841946602, -0.008892400190234184, -0.006125406362116337, -0.0007537946221418679, 0.008279860019683838, 0.01774255745112896, -0.031514160335063934, 0.0036189183592796326, 0.009202190674841404, 0.020333534106612206, 0.019249266013503075, -0.014447510242462158, 0.006656979210674763, 0.0032510419841855764, -0.005188993643969297, 0.004080084152519703, 0.008554446510970592, 0.05553701892495155, -0.010040033608675003, -0.004815836902707815, 0.031288858503103256, 0.019573137164115906, 0.029148485511541367, 0.017390521243214607, 0.004724307917058468, 0.02278369665145874, 0.0033689734991639853, -0.0036963659804314375, -0.5975016951560974, -0.01640482433140278, -0.03892097249627113, 0.005780412349849939, 0.04016013443470001, 0.010117481462657452, 0.015588103793561459, 0.011349603533744812, -0.016883591189980507, 0.024332650005817413, 0.005122106987982988, 0.011708679609000683, -0.022375335916876793, -0.010828591883182526, -0.001019140938296914, -0.027852997183799744, 0.008786790072917938, -0.015588103793561459, 0.0037034067790955305, 0.017643986269831657, -0.03923076391220093, -0.00029130885377526283, -0.01850295253098011, 0.013504057191312313, -0.00187986611854285, 0.008364347741007805, -0.00319295609369874, 0.005621996708214283, 0.01117358636111021, -0.0019185899291187525, -0.02917664870619774, 0.007822214625775814, 0.0013324519386515021, -0.02147412672638893, 0.0552835538983345, -0.014771382324397564, -0.017432766035199165, 0.042469486594200134, 0.015588103793561459, 0.04998894780874252, -0.028500741347670555, -0.015376882627606392, 0.04052625223994255, -0.025388753041625023, 0.009504941292107105, 0.003699886379763484, 0.00994146429002285, -0.01857335865497589, -0.01478546392172575, -0.01529239397495985, -0.011060935445129871, 0.00966687686741352, 0.010082278400659561, -0.028388090431690216, 0.019432324916124344, -0.004403956234455109, -0.005498784594237804, -0.026501184329390526, 0.022980835288763046, -0.0120466323569417, -0.01762990467250347, 0.04072339087724686, 0.0016924075316637754, -0.007723644841462374, -0.0021966975182294846, -0.009040255099534988, -0.0018358618253841996, -0.012856313027441502, 0.029401950538158417, -0.01585564948618412, -0.014968521893024445, 0.008878318592905998, 0.025529567152261734, 0.009709121659398079, -0.0035625926684588194, 0.008955766446888447, 0.019981497898697853, -0.01679910346865654, -0.034020647406578064, 0.02282593958079815, 0.009371167980134487, 0.0006437837146222591, -0.0193759985268116, -0.003277444513514638, 0.011004609987139702, -0.026825055480003357, -0.007371610030531883, -0.005424857139587402, 0.010821551084518433, 0.0001434542064089328, 0.010237173177301884, 0.0343867652118206, 0.013039370998740196, -0.034161463379859924, -0.000840483233332634, 0.0031243092380464077, 0.015250150114297867, -0.015362801030278206, -0.0035995563957840204, -0.029120322316884995, -0.039456065744161606, 0.012159284204244614, 0.008645975962281227, 0.02775442786514759, 0.028289521113038063, -0.007998231798410416, 0.00870934221893549, 0.0016572041204199195, 0.0070477379485964775, -0.010370946489274502, -0.008329144679009914, -0.0007115504704415798, -0.0101949293166399, 0.015221986919641495, 0.02644485794007778, -0.042976416647434235, 0.018010104075074196, 0.012525400146842003, 0.03914627432823181, -0.020080067217350006, 0.0280501376837492, 0.01293376088142395, 0.010230133309960365, -0.00525235990062356, 0.01889723166823387, 0.028148707002401352, 0.034189626574516296, 0.016883591189980507, 0.005790973547846079, -0.006414074916392565, -0.0026349809486418962, -0.015334637835621834, 0.029148485511541367, -0.02590976469218731, 0.02068556845188141, -0.02253023162484169, -0.003692845581099391, 0.002462483709678054, 0.01458832435309887, -0.019347835332155228, -0.045116785913705826, 0.005509345326572657, 0.017207464203238487, -0.0045377290807664394, -0.008786790072917938, -0.03573857992887497, -0.0177003126591444, -0.0028426814824342728, 0.003511547576636076, 0.024360811337828636, 0.006069080904126167, 0.00941341184079647, -0.024290405213832855, 0.026219556108117104, -0.018784580752253532, -0.0225724745541811, -0.026698322966694832, -0.022699207067489624, -0.007280080579221249, -0.01803826540708542, 0.026149148121476173, 0.02379755675792694, -0.02379755675792694, -0.004710226319730282, -0.028219113126397133, -0.012905597686767578, -0.019404161721467972, 0.00798415020108223, -0.002300547668710351, -0.03306311368942261, -0.013546301051974297, -0.019404161721467972, -0.010462475940585136, 0.008758626878261566, -0.0011071496410295367, 0.03157048672437668, -0.022192277014255524, 0.012581725604832172, -0.01632033661007881, -0.016714615747332573, -0.007885580882430077, 0.00887127872556448, -0.033907998353242874, 0.0009003291488625109, 0.037935275584459305, 0.020981278270483017, 0.01581340655684471, 0.005428377538919449, -0.020629242062568665, -0.0002600657462608069, -0.022487986832857132, 0.0016818465664982796, 0.0056184763088822365, 0.022980835288763046, 0.034274112433195114, 0.00463629886507988, 0.02826135791838169, 0.006526726298034191, -0.011145423166453838, 0.04244132339954376, 0.026895463466644287, -0.0031595127657055855, 0.004393395036458969, -0.034274112433195114, 0.027078520506620407, -0.029796229675412178, 0.01232121977955103, -0.00957534834742546, 0.03261251002550125, -0.004495485220104456, -0.008638935163617134, -0.00949085969477892, -0.004808796104043722, -0.0126802958548069, 0.0008457637159153819, 0.020699650049209595, -0.03044397383928299, 0.01632033661007881, 0.008413633331656456, 0.015193824656307697, -0.0005064901197329164, 0.005410775542259216, 0.02692362479865551, -0.00136765546631068, 0.011814289726316929, 0.007660278584808111, 0.017756637185811996, -0.021544532850384712, 0.006216935347765684, -0.02706443890929222, -0.012912638485431671, -0.021361475810408592, -0.017038486897945404, 0.004407476168125868, 0.019319672137498856, -0.027669940143823624, 0.016137277707457542, -0.009202190674841404, 0.021558614447712898, -0.00761803425848484, 0.006597133353352547, -0.0022336612455546856, 0.013616708107292652, -0.014517917297780514, 0.0021245302632451057, 0.011046853847801685, 0.02917664870619774, 0.01585564948618412, -0.016489312052726746, 0.023783475160598755, -0.027303824201226234, 0.043990276753902435, -0.010730022564530373, 0.027712183073163033, -0.002242462011054158, -0.03289413824677467, 0.030922742560505867, 0.015700753778219223, -0.0020347614772617817, 0.03033132292330265, 0.018770499154925346, 0.03973769396543503, 0.037174880504608154, 0.03241536766290665, -0.002700107404962182, -0.007185031194239855, 0.009702080860733986, 0.002488886471837759, -0.007350487634539604, 0.013546301051974297, 0.007216714322566986, -0.010962365195155144, -0.0035696334671229124, 0.00044774432899430394, 0.0036400402896106243, 0.0022688645403832197, 0.0160809513181448, 0.014447510242462158, 0.01509525440633297, -0.010877877473831177, -0.013250592164695263, -0.03424594923853874, 0.03661162406206131, 0.012898556888103485, 0.012271935120224953, -0.015306475572288036, -0.00030142985633574426, 0.002606817986816168, 0.018235405907034874, 0.022685125470161438, 0.01139184832572937, 0.016461150720715523, 0.02303716167807579, 0.005667760968208313, 0.003949831239879131, -0.015461371280252934, 0.03559776395559311, -0.015517696738243103, -0.022868184372782707, -0.006706263870000839, 0.00789262168109417, -0.0031419110018759966, -0.007016054820269346, -0.03979402035474777, 0.01603870838880539, 0.02354409173130989, -0.026078741997480392, 0.00040968056418932974, -0.008336185477674007, 0.015728916972875595, 0.009117702953517437, -0.008068638853728771, -0.018995800986886024, -0.021234743297100067, 0.0019485129741951823, 0.007540586404502392, 0.02351592853665352, -0.02514936961233616, 0.005783932749181986, 0.00761803425848484, 0.008505161851644516, 0.0034059372264891863, -0.02020680159330368, 0.03224639222025871, -0.02648710273206234, 0.031148044392466545, -0.020291289314627647, -0.01447567343711853, -0.02184024266898632, 0.005445979069918394, -0.01882682368159294, -0.02554364874958992, -0.021178416907787323, -0.0305847879499197, 0.0022248602472245693, -0.019573137164115906, 0.04075155407190323, 0.002921889303252101, 0.005847299005836248, -0.009758406318724155, -0.0031295898370444775, 0.007899662479758263, 0.008779749274253845, 0.007913743145763874, -0.002962373197078705, -0.008821993134915829, 0.008645975962281227, 0.0030398210510611534, 0.01534871943295002, 0.009913301095366478, -0.002703627571463585, 0.02031945250928402, 0.022065544500947, -0.010068196803331375, 0.014644649811089039, -0.002608578186482191, -0.004330028779804707, 0.01061033084988594, 0.00839955173432827, 0.009913301095366478, 0.02917664870619774, 0.045764531940221786, -0.03021867200732231, -0.005970511119812727, -0.00010511541040614247, 0.025670381262898445, 0.003953351639211178, 0.006104284431785345, -0.0027546726632863283, -0.037315696477890015, -0.010962365195155144, -0.004333549179136753, -0.0017997781978920102, -0.03545695170760155, 0.007170950062572956, 0.015559940598905087, -0.03475287929177284, -0.013898336328566074, 0.001755773788318038, 0.029373789206147194, -0.03373901918530464, -0.02216411381959915, -0.027923405170440674, 0.007850376889109612, 0.013144981116056442, -0.015616266056895256, 0.020418021827936172, 0.011314400471746922, -0.02151636965572834, -0.006787232123315334, -0.012419790029525757, 0.007315284106880426, -0.05300236865878105, -0.012961923144757748, 0.023811638355255127, -0.05638190358877182, -0.047510623931884766, 0.010420232079923153, 0.006252138875424862, 0.026951787993311882, 0.0038688629865646362, -0.0034798644483089447, -0.023487765341997147, 0.008484040386974812, -0.013574464246630669, -0.010145644657313824, -0.004432118963450193, -0.019038045778870583, -0.00536149088293314, 0.0035203485749661922, 0.020558835938572884, 0.0024836058728396893, -0.022516150027513504, 0.005093944258987904, 0.0012594047002494335, 0.024473462253808975, 0.037062227725982666, -0.012638051062822342, 0.0016827265499159694, 0.0011177107226103544, 0.010997569188475609, -0.014560161158442497, 0.0052558802999556065, -0.006435197312384844, 0.010025952942669392, -0.002772274427115917, -0.013933539390563965, 0.003918148111552, 0.020164556801319122, 0.006463360041379929, 0.022234521806240082, -0.0030239794868975878, -0.00861781369894743, -0.025050800293684006, 0.006621775683015585, -0.010011871345341206, 0.020150475203990936, 0.021248823031783104, 0.020558835938572884, 0.0026789852418005466, 0.006069080904126167, -0.008322103880345821, 0.017981940880417824, 4.073840955243213e-06, 0.009814731776714325, -0.016193604096770287, 0.03249985724687576, 0.011821330524981022, 0.016925835981965065, 0.037738136947155, -0.01184949278831482, -0.054438669234514236, -0.03500634431838989, 0.01698216050863266, -0.0038583020213991404, 0.028289521113038063, -0.009659836068749428, -0.050918322056531906, -0.025768950581550598, -0.021502288058400154, 0.004041360225528479, 0.003059182781726122, -0.024909986183047295, -0.024586115032434464, -0.003212318057194352, -0.007639156188815832, -0.004470842890441418, -0.010638493113219738, -0.010272377170622349, -0.008293941617012024, -0.0071603888645768166, -0.004587014205753803, 0.016306255012750626, 0.003692845581099391, 0.03207741677761078, 0.020094148814678192, -0.02634628862142563, -0.007413853891193867, 0.004495485220104456, -0.010680737905204296, -0.02481141686439514, 0.0007797572179697454, 0.02322021871805191, 0.0037386100739240646, 0.030528463423252106, -0.00031045073410496116, 0.0029746945947408676, -0.00664993841201067, -0.0001990097080124542, 0.013102737255394459, 0.003699886379763484, 0.01955905742943287, -0.028345845639705658, -0.0009056096896529198, 0.014940359629690647, 0.01257468480616808, 0.016756858676671982, -0.034274112433195114, 0.00013916377793066204, 0.019418243318796158, -0.012490197084844112, -0.003749171271920204, -0.0027687540277838707, -0.0382450670003891, 0.02209370769560337, 0.01422220841050148, -0.01173684187233448, 0.007850376889109612, -0.012616929598152637, -0.015672592446208, -0.02351592853665352, 0.00324224098585546, -0.003302086843177676, 0.006452798843383789, 0.001651043421588838, 0.006966769695281982, 0.0073364065028727055, 0.0005289323744364083, 0.004294825252145529, -0.015757080167531967, -0.00133773242123425, -0.01632033661007881, 0.006994932424277067, 0.009899220429360867, 0.018446626141667366, 0.01857335865497589, 0.013461812399327755, -0.003615397959947586, -0.00943453423678875, 0.0017434526234865189, -0.02674056775867939, -0.010708900168538094, 0.020305370911955833, -0.024191835895180702, -0.03728753328323364, -0.018024183809757233, 0.003742130473256111, -0.009864016436040401, 0.01375048141926527, 0.0034904256463050842, -0.004245540127158165, 0.005238278768956661, -0.02198105677962303, -0.0059141856618225574, -0.011715720407664776, -0.0203898586332798, 0.031345184892416, -0.014827707782387733, -0.015658510848879814, 0.021164335310459137, -0.02050250954926014, -0.02579711377620697, -0.025416916236281395, 0.0034076974261552095, 0.014813627116382122, 0.038329556584358215, 0.03649897500872612, -0.0060937232337892056, -0.02347368374466896, 0.02057291753590107, -0.005224197171628475, -0.02285410277545452, -0.025599975138902664, 0.015433208085596561, 0.003650601487606764, 0.022685125470161438, -0.02002374269068241, -0.006565450225025415, -0.026149148121476173, 0.00690340343862772, 0.009871057234704494, -0.012687335722148418, -0.011962144635617733, -0.001295488211326301, -0.003317928407341242, 0.009849934838712215, -0.01117358636111021, 0.04193439334630966, 0.01164531335234642, 0.0055656712502241135, 0.018601521849632263, -0.019432324916124344, -0.05638190358877182, 0.003784374799579382, 0.004910886287689209, 0.033682696521282196, 0.017686231061816216, -0.013412527740001678, -0.003324969206005335, -0.007287121377885342, 0.010300539433956146, -0.027655858546495438, -0.02238941751420498, 0.044497206807136536, -0.04176541417837143, -0.010962365195155144, -0.017658067867159843, 0.02441713772714138, -0.008892400190234184, 0.004946089815348387, -0.01101164985448122, 0.0300778578966856, -0.018587440252304077, -0.010018912144005299, 0.009554225951433182, -0.002374475123360753, 0.005636077839881182, -0.012469074688851833, -0.02036169543862343, -0.016447069123387337, -0.041849903762340546, -0.018150916323065758, 0.020375777035951614, -0.037738136947155, -0.007427935488522053, -0.01615135930478573, -0.01926334761083126, 0.028542986139655113, 0.0011696357978507876, 0.01850295253098011, 0.03168313577771187, 0.032021090388298035, -0.04491964727640152, 0.02165718376636505, -0.006368310656398535, -0.016953999176621437, 0.011251034215092659, -0.02238941751420498, 0.012623969465494156, -0.009927382692694664, 0.022811857983469963, -0.03362637013196945, -0.023023080080747604, -0.040469925850629807, -0.003441140754148364, 0.012081836350262165, -0.0067590693943202496, 0.018446626141667366, 0.012792946770787239, 0.0009900979930534959, 0.018629685044288635, -0.0049672117456793785, -0.009166987612843513, 0.010321661829948425, -0.004759511444717646, -0.006012755446135998, 0.003777334000915289, -0.019178858026862144, -0.0044990056194365025, -0.0037245287094265223, 0.021291067823767662, -0.006160609889775515, -0.011145423166453838, -0.029852556064724922, 0.0091810692101717, -0.000912650371901691, -0.040216460824012756, -0.005699444096535444, -0.019038045778870583, -0.013342120684683323, -0.008941685780882835, -0.009716162458062172, -0.002749392297118902, -0.022431660443544388, 0.010582167655229568, 0.01872825436294079, -0.024586115032434464, 0.027275661006569862, -0.019038045778870583, -0.004488444421440363, 0.02448754385113716, 0.006192293018102646, -0.01654563844203949, -0.021037602797150612, 0.009983708150684834, 0.03835771605372429, 0.0208967886865139, -0.022487986832857132, -0.02296675369143486, -0.014489755034446716, -0.01730603352189064, 0.0071075838059186935, -0.0028409212827682495, 0.013658951967954636, 0.024121427908539772, -0.010427271947264671, 0.009709121659398079, 0.019347835332155228, -0.0014723858330398798, 0.022333091124892235, -0.002766994060948491, 0.020108230412006378, -0.027078520506620407, -0.023177973926067352, -0.006220455747097731, 0.016827266663312912, -0.034161463379859924, -0.015390964224934578, -0.0018041785806417465, -0.003574914066120982, 0.019840683788061142, 0.010589208453893661, 0.001178436679765582, -0.014926278032362461, 0.007132226135581732, -0.0031014271080493927, -0.01955905742943287, 0.0005051700281910598, 0.014672813005745411, -0.03224639222025871, -0.04066706821322441, 0.009420452639460564, 0.012032551690936089, -0.03323208913207054, -0.00190450856462121, 0.003985034767538309, -0.012807028368115425, 0.0032686435151845217, -0.012863353826105595, 0.022473905235528946, -0.003717488143593073, -0.01097644679248333, 0.014306696131825447, 0.010737063363194466, 0.009814731776714325, 0.03137334808707237, -0.0017214504769071937, -0.003566113067790866, 0.012018470093607903, -0.009680958464741707, -0.029232975095510483, -0.014053231105208397, 0.015109336003661156, 0.015362801030278206, -0.00407304335385561, 0.005333328153938055, 0.02340327762067318, 0.00463629886507988, 0.0021421320270746946, 0.025093045085668564, -0.01066665630787611, -0.02514936961233616, 0.02036169543862343, 0.03962504491209984, -0.016461150720715523, -0.005636077839881182, -0.009279638528823853, -0.023121649399399757, -0.00045192474499344826, -0.03159864991903305, -0.0019326714100316167, -0.0372312068939209, 0.01854519546031952, -0.01175796426832676, -0.005354450084269047, -0.04075155407190323, 0.007955987937748432, 0.003085585543885827, -0.01164531335234642, -0.008814952336251736, 0.1947738379240036, -0.021023521199822426, 0.01686950959265232, 0.010884917341172695, -0.017798881977796555, 0.004368752706795931, 0.026796892285346985, 0.0080404756590724, -0.009188110008835793, 0.02713484689593315, -0.010821551084518433, -0.011342562735080719, -0.00030891058850102127, -0.0052770026959478855, -0.010575126856565475, -0.00812496431171894, -0.04376497492194176, -0.013088655658066273, -0.037935275584459305, -0.006875240709632635, 0.02402285858988762, -0.004396915435791016, -0.05125627666711807, -0.0025205696001648903, 0.009230353869497776, -0.0016079192282631993, -0.021938811987638474, 0.005104505456984043, 0.009793609380722046, -0.01893947459757328, -0.025811195373535156, -0.014898114837706089, -0.01273662131279707, -0.005755770020186901, -0.03162681311368942, -0.0310917180031538, 0.016601962968707085, 0.014412307180464268, 0.02024904452264309, 0.027740346267819405, -0.010652574710547924, -0.0010305820032954216, 0.026754649356007576, -0.013701196759939194, 0.006530246697366238, 0.0046715023927390575, -0.01661604456603527, -0.01021605171263218, -0.00045192474499344826, 0.02057291753590107, -0.02427632361650467, -0.023093486204743385, 0.03244353085756302, 0.013525179587304592, -8.003292168723419e-05, -0.005136188585311174, 0.023375114426016808, 0.0023410317953675985, 0.004308906849473715, 0.020150475203990936, -0.0064035141840577126, 0.027444636449217796, -0.010258295573294163, 0.0063366275280714035, -0.013306917622685432, 0.026064660400152206, -0.024614276364445686, 0.008660057559609413, -0.013257632963359356, -0.01905212551355362, 0.00957534834742546, -0.0053368485532701015, -0.01585564948618412, -0.001849943189881742, -0.04942569509148598, -0.034302275627851486, 0.012631010264158249, 0.006368310656398535, -0.0033390505705028772, 0.04314539209008217, -0.009540144354104996, -0.00812496431171894, -0.0001217820608871989, 0.006104284431785345, -0.005340368952602148, 0.014517917297780514, -0.0044250781647861, 0.005100985057651997, 0.008744546212255955, -0.0031665535643696785, 0.03790711238980293, -0.014884033240377903, 0.009223313070833683, -0.04038543999195099, -0.002999336924403906, -0.020981278270483017, 0.005762810353189707, 0.0074631390161812305, -0.005636077839881182, -0.007843337021768093, -0.024332650005817413, 0.044243741780519485, -0.013285795226693153, 0.005593833979219198, 0.009209231473505497, -0.013877213932573795, 0.012419790029525757, 0.013701196759939194, 0.029007671400904655, -0.015447289682924747, -0.024036940187215805, -0.04714450612664223, 0.015489533543586731, 0.0059599499218165874, -0.0023779955226927996, -0.015728916972875595, -0.0002558853302616626, -0.002752912463620305, -0.00010258515976602212, -0.01843254454433918, 0.010180847719311714, -0.014503835700452328, -0.026951787993311882, 0.016644207760691643, -0.007639156188815832, -0.01066665630787611, -0.022727370262145996, -0.01400394644588232, 0.01640482433140278, -0.019432324916124344, 0.02144596353173256, -0.007512423675507307, 0.00849108025431633, 0.021178416907787323, 0.019136615097522736, -0.007653237786144018, 0.016235847026109695, -0.02119249850511551, 0.003935749642550945, -0.010427271947264671, 0.016123196110129356, 0.02423407882452011, 0.013405486941337585, -0.007244877517223358, -0.004104726482182741, -0.014517917297780514, -0.0055656712502241135, 0.015067092142999172, 0.006417595315724611, 0.004798234906047583, -0.027191171422600746, -0.035794902592897415, 0.0034904256463050842, 0.019840683788061142, 0.010293499566614628, 0.008554446510970592, -0.027303824201226234, -0.04542657732963562, -0.010455435141921043, 0.03269699588418007, -0.02876828797161579, -0.008821993134915829, 0.0074631390161812305, -0.01097644679248333, 0.0017372920410707593, -0.024008776992559433, -0.18069244921207428, -0.005829697009176016, 0.019573137164115906, -0.041202157735824585, 0.021797997877001762, -0.008540365844964981, -0.013039370998740196, 0.0014785464154556394, -0.02300899848341942, -0.007808133028447628, 0.01864376664161682, 0.010328702628612518, 0.002904287539422512, -0.019164778292179108, -0.015827486291527748, 0.01748909242451191, -0.02351592853665352, 0.01232121977955103, 0.06702743470668793, 0.021938811987638474, 0.040075648576021194, -0.03264067322015762, -0.01159602776169777, 0.04176541417837143, 0.023389196023344994, -0.0036400402896106243, -0.007815173827111721, -0.0024184794165194035, -0.006294383201748133, -0.03647081181406975, -0.0014187004417181015, 0.021854324266314507, 0.017207464203238487, -0.00035819545155391097, 0.014018028043210506, -0.01447567343711853, 0.02126290462911129, 0.00520659564062953, -0.014250370673835278, -0.009371167980134487, 0.009892179630696774, 0.01249723695218563, 0.01010340079665184, 4.130908928345889e-05, -0.012856313027441502, 0.028021974489092827, 0.01817907951772213, -0.01585564948618412, -0.0024959270376712084, -0.01981252245604992, 0.015053010545670986, -0.03740018233656883, 0.008821993134915829, 0.00034345401218160987, 0.0083432262763381, 0.019361916929483414, -0.019502731040120125, 0.00957534834742546, -0.0110327722504735, -0.003956871572881937, -0.019136615097522736, -0.04263846203684807, 0.04784857854247093, -0.009117702953517437, -0.014095475897192955, -0.0052030752412974834, -0.033682696521282196, 0.004396915435791016, -0.004569412209093571, 3.671613376354799e-05, -0.003453461918979883, -0.01654563844203949, -0.0032827251125127077, -0.011779086664319038, -0.00417161313816905, 0.011610109359025955, -0.02858523093163967, 0.008216493763029575, 0.03289413824677467, 0.0009900979930534959, -0.03776630014181137, 0.06139487773180008, 0.0096879992634058, -0.019136615097522736, 0.004277223255485296, 0.014926278032362461, 0.04568004235625267, -0.003985034767538309, -0.007688441313803196, -0.03821690380573273, 0.026726486161351204, -0.010328702628612518, 0.003854781622067094, -0.020234962925314903, 0.007030135951936245, 0.01375048141926527, -0.009328924119472504, 0.00457997340708971, -0.008315063081681728, -0.02096719667315483, 0.00700197322294116, -0.003173594130203128, -0.012807028368115425, 0.014412307180464268, 0.01912253350019455, 0.007258958648890257, -0.019404161721467972, 0.018714172765612602, 0.050017111003398895, 0.004213856998831034, -0.009483818896114826, 0.012384586036205292, 0.01092012133449316, 0.026867300271987915, -0.006516165100038052, 0.014757300727069378, -0.0024501625448465347, -0.016601962968707085, 0.020263126119971275, -0.0019256306113675237, -0.0219106487929821, -0.02002374269068241, -0.00473486864939332, 0.04677839204668999, 0.0035625926684588194, -0.01803826540708542, -0.05497376248240471, 0.006861159112304449, -0.013060493394732475, 0.027191171422600746, -0.0193759985268116, 0.03582306578755379, 0.007568749599158764, 0.03497818484902382, -0.008019354194402695, 0.02231900952756405, 0.0017698552692309022, -0.020418021827936172, -0.0026578630786389112, 0.002819799119606614, -0.001099228858947754, 0.011497458443045616, -0.004066002555191517, -0.019038045778870583, -0.024008776992559433, 0.03703406825661659, -0.0230794046074152, -0.025966091081500053, 0.007350487634539604, -0.02064332365989685, -0.0015357520896941423, 0.012785905972123146, -0.014546080492436886, 0.0005249719833955169, 0.014391184784471989, -0.0050200168043375015, -0.0007876780000515282, 0.00624157814309001, -0.008174248971045017, -0.033288415521383286, -0.007195592392235994, 0.02181207947432995, -0.025768950581550598, -0.03083825297653675, 0.025571811944246292, -0.0068048336543142796, 0.005893063265830278, 0.029289299622178078, -0.010272377170622349, 0.00861781369894743, -0.0136941559612751, -0.00997666735202074, 0.0060866824351251125, 0.03486553207039833, -0.018700091168284416, -0.022516150027513504, -0.03714671730995178, -0.0038336594589054585, 0.0006046198541298509, 0.010969405993819237, 0.019291510805487633, 0.02521977759897709, 0.03523164987564087, 0.0006024196627549827, -0.017460929229855537, -0.009568307548761368, 0.002464243909344077, 0.004361711908131838, -0.01148337684571743, 0.023882044479250908, -0.019404161721467972, 0.006259179674088955, -0.031232532113790512, -0.025642218068242073, 0.019094370305538177, -0.005562150850892067, -0.01386313233524561, 0.005850819405168295, -0.021051684394478798, 0.033795345574617386, -0.041455622762441635, -0.013898336328566074, -0.022558392956852913, -0.023867962881922722, 0.04162460193037987, 0.0035344299394637346, -0.00499889487400651, -0.004428598564118147, 0.011842452920973301, -0.001042023184709251, 0.008096802048385143, 0.02398061379790306, -0.01767214946448803, 0.002758193062618375, -0.007589871529489756, -0.0009601750643923879, -0.008857197128236294, 0.0009320122771896422, 0.014926278032362461, -0.023093486204743385, 0.012722539715468884, 0.004759511444717646, 0.01854519546031952, 0.003416498191654682, 0.015827486291527748, 0.0010402629850432277, -0.019277429208159447, -0.01596830040216446, -0.07891213148832321, 0.0155458590015769, -0.0015084693441167474, -0.011941022239625454, -0.005762810353189707, -0.020516591146588326, 0.04277927428483963, -0.004277223255485296, -0.0010675457306206226, -0.005308685824275017, -0.03624550998210907, 0.020009661093354225, -0.012004388496279716, -0.01755949854850769, -0.024374892935156822, -0.016348497942090034, -0.009237394668161869, 0.016235847026109695, 0.019432324916124344, 0.029486440122127533, -0.013898336328566074, 0.022262685000896454, -0.004555331077426672, 0.009406371042132378, -0.0026297003496438265, -0.007554668001830578, -0.002902527339756489, 0.011272155679762363, 0.0035238689742982388, -0.00912474375218153, 0.012391626834869385, -0.0177003126591444, -0.013567423447966576, -0.0028831653762608767, -0.0009619352640584111, -0.019474567845463753, 0.017277870327234268, 0.007030135951936245, 0.006801313254982233, 0.008751586079597473, -0.029345626011490822, -0.02943011373281479, 0.030612951144576073, -0.0006028597126714885, 0.013173144310712814, 0.020924951881170273, -0.04255397245287895, -0.017869289964437485, 0.01189877837896347, 0.02395245060324669, 0.023023080080747604, 0.017277870327234268, 0.002106928499415517, 0.005139708984643221, -0.027529126033186913, -0.03548511490225792, 0.0412866473197937, 0.006238057743757963, -0.015024847351014614, -0.013159062713384628, 0.026501184329390526, 0.012645091861486435, 0.004639819264411926, -0.007660278584808111, -0.030753765255212784, -0.012891516089439392, -0.03649897500872612, -0.0001968094875337556, 0.03244353085756302, -0.05159422755241394, -0.04100501909852028, 0.009702080860733986, -0.008392510935664177, 0.03162681311368942, 0.01622176542878151, 0.01955905742943287, -0.013454772531986237, 0.005949389189481735, -0.022150032222270966, 0.021502288058400154, 0.025022637099027634, -0.006114845629781485, -0.04810204356908798, 0.015010765753686428, -0.004682063590735197, 0.008983929641544819, -0.012694376520812511, -0.007913743145763874, -0.0036541218869388103, -0.003458742517977953, -0.009948505088686943, 0.012856313027441502, 0.01044839434325695, 0.02169942855834961, -0.0022160594817250967, 0.018657848238945007, -0.03435860201716423, -0.011236952617764473, 0.00495313061401248, 0.03813241422176361, 0.019657626748085022, -0.0024484023451805115, -0.0021544534247368574, -0.017658067867159843, 0.0096879992634058, -0.007589871529489756, -0.004280743654817343, -0.004615176934748888, 0.00820241216570139, 0.011497458443045616, 0.0035801944322884083, 0.013039370998740196, -0.026473021134734154, 0.015250150114297867, -0.00865301676094532, -0.007287121377885342, -0.003001097124069929, -0.01898171938955784, -0.019544975832104683, 0.022220440208911896, 0.022178195416927338, 0.043117228895425797, 0.004724307917058468, 0.006083162501454353, 0.0359075553715229, -0.010687777772545815, 0.012525400146842003, -0.04103318229317665, 0.036696113646030426, 0.009849934838712215, 0.0006877881241962314, 0.003155992366373539, -0.0016008785460144281, -0.013813847675919533, -0.01622176542878151, 0.014658731408417225, 0.0155458590015769, 0.013961702585220337, -0.006755548994988203, 0.05097464844584465, 0.015362801030278206, 0.005864900536835194, 0.007850376889109612, 0.014053231105208397, 0.00994146429002285, 0.01044839434325695, 0.004168092738837004, -0.014700975269079208, -0.01226489432156086, 0.01484178937971592, 0.00808976124972105, 0.014405266381800175, -0.025994254276156425, 0.0031419110018759966, 0.000507370219565928, -0.0021614939905703068, 0.04770776256918907, -0.017151137813925743, -0.0003597356262616813, 0.053312160074710846, 0.0013782164314761758, 0.045229438692331314, 0.007484260946512222, -0.018052347004413605, -0.020671486854553223, 0.03483736887574196, 0.005523426923900843, 0.011821330524981022, -0.015081172809004784, 0.018446626141667366, -0.001787457033060491, -0.004889764357358217, -0.0017249707598239183, 0.008547406643629074, 0.0007163909031078219, -0.021206580102443695, 0.018883150070905685, 0.028711963444948196, -0.013102737255394459, -0.0033707336988300085, -0.01795377768576145, -0.03162681311368942, -0.018925393000245094, 0.002891966374590993, 0.0018164998618885875, -0.022558392956852913, 0.005456540267914534, -0.008174248971045017], "019057ca-a153-4f2f-bd21-65fbb4dfcce6": [-0.026963578537106514, 0.02272164449095726, 0.004490430001169443, -0.006033905781805515, -0.020565679296851158, 0.019935688003897667, -0.022861642763018608, -0.041355352848768234, 0.01735972799360752, -0.009757847525179386, 0.001482226885855198, 0.03155550733208656, 0.006922891829162836, -0.0019389697117730975, -0.03323547914624214, -0.009603849612176418, 0.00023777753813192248, -0.010079842060804367, 0.019823690876364708, -0.027649568393826485, -9.556491022522096e-06, 0.010800831019878387, -0.004808925092220306, -0.02199365571141243, 0.004514929372817278, 0.000920485588721931, 0.0012713550822809339, -0.022315651178359985, -0.008630865253508091, 0.024821612983942032, 2.9804221412632614e-05, 0.01972569152712822, 0.0019267199095338583, -0.0407673642039299, -0.011472820304334164, -0.012991797178983688, -0.026935579255223274, -0.002399212447926402, 0.016911735758185387, -0.0003344635188113898, 0.010471836663782597, -0.0091488566249609, 0.015203762799501419, -0.0015644755912944674, -0.026305589824914932, -0.004157934803515673, 0.0075668818317353725, -0.012333807535469532, -0.03183550387620926, -0.001577600371092558, 0.009743847884237766, 0.009960844181478024, -0.03427146375179291, -0.0005293667200021446, 0.001956469379365444, 0.003464945824816823, -0.006961391307413578, 0.001161106862127781, -0.012368806637823582, -0.002719457494094968, 0.027663568034768105, 0.020691676065325737, -0.04930723085999489, 0.00986284576356411, 0.023799628019332886, -0.03133150935173035, -0.005186919122934341, 0.005862408317625523, -0.00265820836648345, -0.006796893663704395, 0.026095591485500336, 0.020621677860617638, -0.02351963333785534, 0.02578759752213955, 0.032115496695041656, 0.005330416839569807, -0.03110751323401928, -0.005711910780519247, -0.005022421479225159, -0.008168872445821762, 0.0226096473634243, 0.010723832063376904, -0.03547544404864311, 0.03337547928094864, 0.002516460604965687, 0.004819424822926521, -0.017947720363736153, 0.002785956487059593, -0.04152335226535797, -0.018479710444808006, -4.514382453635335e-05, 0.009246855974197388, 0.016477743163704872, 0.011129826307296753, 0.011745816096663475, -0.005218418315052986, -0.00910685770213604, -0.0017464726697653532, -0.004458930343389511, -0.03950738161802292, -0.0029627038165926933, -0.008994859643280506, -0.014825768768787384, -0.007846876978874207, -0.019207699224352837, -0.01660373993217945, 0.025913594290614128, 0.00166159903164953, -0.003832440124824643, -0.013103795237839222, -0.017751723527908325, 0.039731379598379135, -0.002001968678086996, -0.004521929193288088, -0.04460330307483673, -0.011108826845884323, 0.011388822458684444, -0.014699770137667656, -0.053059171885252, -0.01807371713221073, 0.006898391991853714, -0.005347916390746832, 0.038219403475522995, 0.005652411840856075, 0.006065405439585447, 0.0063559007830917835, -0.040487367659807205, 0.0013894783332943916, -0.005806409288197756, -0.010114842094480991, 0.0621030293405056, -0.0031412008684128523, -0.006831893231719732, -0.015371759422123432, -0.0077628786675632, 0.02510160766541958, -0.01888570562005043, -0.007678879890590906, -0.03127551078796387, 0.003793940646573901, 0.001987969037145376, 0.03505545109510422, -0.014377775602042675, 0.009519850835204124, -0.017737722024321556, 0.02034168131649494, 0.017135731875896454, 0.01814371719956398, -0.0077628786675632, -0.012613803148269653, 0.008952859789133072, -0.012291807681322098, 0.021013671532273293, 0.006163403857499361, 0.0012206059182062745, 0.01807371713221073, 0.03317948058247566, 0.024373618885874748, 0.01581975258886814, 0.007650880608707666, -0.006208903156220913, 0.025171605870127678, -0.009050858207046986, -0.010660833679139614, 0.01741572842001915, 0.0438753142952919, 0.05664311349391937, -0.013698785565793514, 0.012004812248051167, -0.012690802104771137, -0.00528141763061285, 0.01959969289600849, -0.03354347497224808, 0.014447773806750774, -0.023071639239788055, 0.041439350694417953, 0.003564694197848439, -0.012347807176411152, -0.00566291157156229, 0.0002085748710669577, -0.009974843822419643, 0.01129082404077053, -0.004556928761303425, 0.006282401736825705, 0.0038114404305815697, -0.027033576741814613, 0.012683801352977753, -0.007636880502104759, 0.039619382470846176, 0.01965569332242012, -0.0025007110089063644, 0.036035437136888504, 0.00263720890507102, 0.006670895963907242, -0.5797029137611389, -0.007391884457319975, -0.015441758558154106, 0.0038674394600093365, 0.041411351412534714, 0.02734157256782055, 0.009204856120049953, 0.018577709794044495, -0.015133763663470745, -0.0007078639464452863, 0.012634802609682083, 0.03936738520860672, 0.014531772583723068, -0.008266870863735676, 0.01130482368171215, -0.014671770855784416, 0.010240839794278145, 0.008896861225366592, -0.03550344705581665, 0.00703488988801837, -0.020131684839725494, 0.02034168131649494, -0.03390746936202049, 0.00036027561873197556, -0.00036333806929178536, -0.0091488566249609, -0.0008237996371462941, -0.008819862268865108, 0.010667833499610424, -0.01403478067368269, -0.03404746949672699, -0.00529541727155447, 0.010807830840349197, 0.004679427016526461, 0.05247117951512337, -0.003148200921714306, -0.033739473670721054, 0.0010342338355258107, 0.025563601404428482, 0.040431369096040726, -0.02421962097287178, -0.017779722809791565, -0.00789587665349245, -0.004322432447224855, -0.012018811888992786, 0.017149731516838074, 0.004143935162574053, -0.02204965613782406, 0.00358394393697381, -0.0014384775422513485, -0.00043224325054325163, 0.006929891649633646, -0.011934813112020493, -0.022203652188181877, 0.03427146375179291, -0.002189215738326311, 0.02042568102478981, -0.023925626650452614, 0.008896861225366592, -0.006845892872661352, -0.012130810879170895, 0.020761676132678986, -0.01894170418381691, -0.003555944422259927, -0.02333763614296913, -0.006166903767734766, -0.0005696160951629281, -0.016267746686935425, 0.015567757189273834, -0.014307776466012001, -0.0023047139402478933, -0.0021717159543186426, 0.02129366807639599, 0.005330416839569807, 0.02790156379342079, 0.004150934983044863, 0.01731772907078266, -0.008875861763954163, -0.0030694520100951195, 0.01826971396803856, 0.02045368030667305, -0.013040795922279358, -0.02654358558356762, -0.026025593280792236, 0.011696817353367805, -0.024009624496102333, 0.0009651099098846316, -0.029147544875741005, 0.022105654701590538, -0.013019796460866928, 0.012277808040380478, 0.012186809442937374, 0.025479601696133614, 0.004024937283247709, -0.002005468588322401, 0.014923767186701298, 0.01327879261225462, 0.007419884204864502, -0.02041168138384819, -0.006541397888213396, -0.03805140405893326, -0.003797440556809306, 0.025241605937480927, 0.005319917108863592, 0.013194793835282326, 0.010408837348222733, 0.004962922539561987, -0.011857815086841583, 0.010149841196835041, -0.011654817499220371, -0.016841737553477287, -0.011143825948238373, -0.015287761576473713, -0.009764847345650196, 0.017919719219207764, -0.04678726941347122, 0.0025409602094441652, -0.0024552117101848125, 0.02185365930199623, 0.01210981048643589, 0.027117576450109482, -0.003120201174169779, 0.015049764886498451, -0.00419293437153101, 0.012718801386654377, 0.02640358731150627, 0.02867155149579048, 0.005130919627845287, -0.003916438668966293, 0.013761784881353378, -0.0226796455681324, 0.0008675489225424826, 0.03732341527938843, -0.025339603424072266, -0.006310401484370232, -0.015105764381587505, 0.04068336263298988, 0.002073717536404729, 0.019977686926722527, -0.022343650460243225, -0.02869955077767372, 0.004570928402245045, 0.013614787720143795, -0.030771519988775253, -0.009505851194262505, -0.03267548978328705, -0.03768740966916084, 0.005351416300982237, -0.012928797863423824, 0.010079842060804367, -0.006789893843233585, -0.005470414645969868, -0.003517444944009185, 0.025899594649672508, -0.017933718860149384, -0.0029084545094519854, 0.0007953625754453242, -0.02664158307015896, 0.014230777509510517, -0.03418746590614319, 0.005624412093311548, 0.0013361041201278567, -0.005767909809947014, 0.004374931566417217, -0.009918845258653164, -0.022959642112255096, -0.02420562133193016, 0.0091488566249609, 0.012305807322263718, -0.015161762945353985, 0.0007590506575070322, -0.0006391775095835328, 0.0006623646477237344, 0.008035873994231224, 0.017177730798721313, 0.017191732302308083, -0.017667723819613457, -0.0028664551209658384, 0.006975390948355198, 0.015385759994387627, -0.0007538007339462638, 0.011528819799423218, -0.020285682752728462, -0.002189215738326311, 0.014503773301839828, 0.01210981048643589, 0.022371649742126465, 0.008182872086763382, -0.05207918584346771, 0.008553866297006607, -0.03208749741315842, 0.020579678937792778, 0.022973641753196716, -0.01208181120455265, 0.022861642763018608, 0.014419774524867535, 0.0050399210304021835, 0.010436836630105972, -0.007080389186739922, 0.026921579614281654, 0.0182277150452137, 0.03317948058247566, 9.367822349304333e-05, -0.032115496695041656, 0.02959553711116314, -0.0483272448182106, 0.026137592270970345, -0.03547544404864311, 0.01475576963275671, 0.004528929013758898, 0.006131904199719429, -0.03424346446990967, -0.016225745901465416, -0.0017219730652868748, 0.011710816994309425, 0.013432790525257587, 0.010737832635641098, 0.019515695050358772, -0.005449414718896151, 0.016351744532585144, 0.02269364520907402, -0.0010569834848865867, 0.0023484632838517427, -0.0002572459925431758, -0.0003974625433329493, 0.012487804517149925, -0.011059827171266079, 0.008476867340505123, 0.021419664844870567, 0.0012967297807335854, -0.009659849107265472, -0.005480914376676083, -0.005575412884354591, 0.01805971749126911, 0.03166750445961952, -0.015707755461335182, 0.006166903767734766, -0.023967625573277473, 0.006467898841947317, -0.001199606223963201, -0.00417193491011858, -0.005960406735539436, 0.013467789627611637, 0.010737832635641098, 0.01205381192266941, 0.018339714035391808, 0.029203543439507484, 0.02647358551621437, 0.0015426009194925427, -0.013012796640396118, -0.028307557106018066, 0.020999671891331673, -0.005536913406103849, 0.030743518844246864, 0.012417806312441826, 0.005764409899711609, 0.0032636988908052444, 0.0012827299069613218, 0.01896970346570015, 0.02125166729092598, 0.011899814009666443, 0.021041670814156532, 0.021671662107110023, 0.013026796281337738, 0.0009729848243296146, -0.004416930954903364, -0.01602974906563759, -0.006131904199719429, 0.007622880861163139, -0.0024167122319340706, -0.013187794014811516, 0.005757410079240799, 0.0006216777837835252, -0.0011707317316904664, -0.004822924733161926, 0.009008859284222126, 0.016085749492049217, 0.03947938233613968, 0.027663568034768105, -0.01130482368171215, 0.019543694332242012, -0.0182977132499218, 0.03502745181322098, -0.02042568102478981, 0.01672973856329918, -0.011003827676177025, -0.01054883562028408, 0.017709722742438316, 0.02279164455831051, 0.01965569332242012, 0.004217434208840132, 0.009204856120049953, 0.02493361011147499, -0.026081591844558716, -0.0075388820841908455, 0.029763534665107727, 0.017849721014499664, -0.04031936824321747, -0.003727441653609276, 0.007216887082904577, 0.0027457070536911488, -0.0016703489236533642, -0.02336563542485237, -0.02185365930199623, 0.0422513410449028, 0.015189762227237225, -0.01894170418381691, 0.0017140982672572136, 0.007594881113618612, -0.013474789448082447, 0.003526194952428341, -0.006198402959853411, -0.013544788584113121, -0.0010744832688942552, -0.004882423672825098, 0.017247730866074562, 0.038219403475522995, -0.008875861763954163, -0.006369900424033403, 0.005757410079240799, -0.005155419465154409, -0.022217653691768646, -0.0019424696220085025, 0.019809691235423088, -0.047235261648893356, 0.025325603783130646, 0.030939515680074692, -0.004161435179412365, -0.030519522726535797, -0.009736848063766956, -0.016337744891643524, -0.01130482368171215, -0.011976812966167927, -0.015679754316806793, 0.005414415616542101, -0.006068905349820852, 0.021727660670876503, -0.0025777097325772047, 0.004815924912691116, -0.011003827676177025, -0.006348900962620974, -0.018017718568444252, -0.004385431297123432, -0.0005893032648600638, -0.005351416300982237, -0.03805140405893326, 0.017793722450733185, 0.00016952860460150987, -0.0001431696437066421, 0.01754172518849373, 0.0010884830262511969, 0.01131182350218296, -0.02959553711116314, 3.0060566587053472e-06, 0.009484851732850075, 0.027089577168226242, 0.016127748414874077, 0.022287651896476746, 0.009554850868880749, 0.044379305094480515, -0.019291698932647705, 0.023771628737449646, 0.013705785386264324, 0.00028787049814127386, 0.005431915167719126, 0.0033669474069029093, 0.012151810340583324, -0.0035016953479498625, 0.016827737912535667, -0.008616865612566471, 0.0015889751957729459, -0.007300885859876871, 0.010688832961022854, 0.0063244011253118515, 0.011920813471078873, 0.0023834628518670797, -0.03488745540380478, -0.013208793476223946, 0.02052367851138115, 0.021601662039756775, -0.0336274728178978, -0.014230777509510517, 0.004591928329318762, 0.01902570202946663, 0.01054883562028408, -0.003660942893475294, -0.002224215306341648, -0.021629661321640015, -0.013502788729965687, -0.046619269996881485, -0.036707427352666855, -0.041887346655130386, -0.02333763614296913, -0.007958875969052315, 0.02959553711116314, -0.0500912182033062, -0.023155638948082924, -0.012725801207125187, 0.013376791030168533, 0.04099135845899582, -0.008609865792095661, -0.017877720296382904, 0.009792846627533436, 0.029119545593857765, -0.005809909198433161, -0.026795580983161926, -0.00907185859978199, -0.0036574427504092455, -0.011752815917134285, 0.01590375229716301, 0.0015426009194925427, -0.017807722091674805, -0.020061686635017395, -0.011668818071484566, -0.030715519562363625, 0.021811658516526222, 0.007216887082904577, 0.01591775193810463, 0.012018811888992786, -0.026305589824914932, 0.002560209948569536, -0.014839768409729004, 0.00025658973027020693, -0.009596849791705608, 0.006978890858590603, -0.03583943843841553, -0.0024009624030441046, -0.005484414286911488, 0.016491742804646492, 0.02645958587527275, 0.019053703173995018, 0.00913485698401928, -0.020873673260211945, 0.008483867160975933, 0.022525647655129433, 0.0012363556306809187, -0.012424806132912636, 0.006453899201005697, 0.029735535383224487, 0.02658558450639248, -0.01577775366604328, 0.01731772907078266, 0.005746910348534584, 0.018045717850327492, 0.01284479908645153, -0.02582959644496441, 0.040403369814157486, 0.02647358551621437, 0.020831674337387085, 0.015399759635329247, 0.010877829976379871, -0.05980706587433815, -0.038863394409418106, 0.028181560337543488, -0.010681833140552044, 0.03035152517259121, 0.0008329869597218931, -0.03194750100374222, -0.027439571917057037, -0.01475576963275671, -0.004759925417602062, 0.007202887441962957, -0.033655475825071335, -0.012571803294122219, -0.005988406483083963, -0.03163950517773628, -0.012676801532506943, -0.006915892008692026, 0.016141748055815697, -0.019347697496414185, 0.01892770454287529, -0.013047795742750168, 0.023071639239788055, -0.003723941743373871, -0.001226730877533555, -0.008798862807452679, -0.03393546864390373, -0.007986875250935555, -0.002119216835126281, -0.018619708716869354, -0.022259652614593506, -0.011920813471078873, 0.008308869786560535, -0.0034176965709775686, 0.03023952804505825, -0.017205731943249702, -0.008469867520034313, -0.019179699942469597, -0.010352837853133678, 0.016421742737293243, -0.01357278786599636, 0.012963797897100449, -0.011437821201980114, -0.00013846658112015575, -0.004451930522918701, 0.018451711162924767, 0.02489161118865013, -0.013817784376442432, 0.0010333588579669595, 0.01826971396803856, -0.0038639395497739315, -0.015189762227237225, 0.011451820842921734, -0.0394233837723732, 0.017807722091674805, 0.028951548039913177, -0.0043154326267540455, -0.0029977031517773867, -0.03869539499282837, -0.024401618167757988, -0.0071958876214921474, -0.0047284262254834175, 0.019795691594481468, 0.008252871222794056, -0.011689817532896996, -0.03163950517773628, -0.012970797717571259, -0.014265777543187141, -0.009918845258653164, 0.0059744068421423435, 0.008938860148191452, 6.36005715932697e-05, 0.00032636988908052444, 0.018339714035391808, 0.019431697204709053, 0.049531225115060806, 0.004206934478133917, 0.024807611480355263, 0.00986284576356411, 0.012662801891565323, -0.005207918584346771, 0.0029312041588127613, -0.004206934478133917, -0.025381604209542274, -0.00022990265279076993, -0.016085749492049217, 0.011003827676177025, -0.016379743814468384, 0.029735535383224487, 0.0058729080483317375, -0.008910860866308212, 0.010429836809635162, 0.010324838571250439, 0.0003893689136020839, 0.018563710153102875, -0.010338838212192059, 0.02421962097287178, -0.008721863850951195, 0.0012363556306809187, 0.03567144274711609, 0.005739910528063774, -0.011633818037807941, -0.0351114496588707, 0.01253680419176817, -0.002563709858804941, 0.030911516398191452, 0.030883517116308212, 0.010982828214764595, -0.037463415414094925, 0.0469832643866539, 0.007867877371609211, 0.00020015312475152314, -0.029119545593857765, 0.007136388681828976, 0.03861139714717865, 0.010240839794278145, -0.015455758199095726, 0.024723613634705544, -0.01478376891463995, -0.0017630974762141705, -0.033011484891176224, -0.012886798940598965, 0.008721863850951195, -0.006982390768826008, -0.016169747337698936, 0.03995537385344505, 0.0006964891217648983, 0.05207918584346771, 0.00036311932490207255, -0.0032304495107382536, -0.017163731157779694, -0.017093732953071594, -0.05283517390489578, 0.0026004593819379807, -0.022399650886654854, 0.022973641753196716, 0.0006772394408471882, -0.0027877064421772957, -0.011248824186623096, 0.0120468121021986, -0.02507360838353634, -0.007286886218935251, 5.413977851276286e-05, 0.04155135154724121, -0.043427322059869766, 0.02875555120408535, 0.01210981048643589, -0.012606803327798843, 0.005473914556205273, -0.004472929984331131, 0.0017219730652868748, -0.00014273214037530124, -0.02791556343436241, -0.0005643661716021597, 0.0351114496588707, -0.0168137364089489, -0.013544788584113121, -0.005200918763875961, 0.01059783436357975, -0.0014673520345240831, -0.01555375661700964, -0.013866783119738102, 0.022973641753196716, -0.022301651537418365, -0.016911735758185387, -0.005186919122934341, 0.040543366223573685, 0.009743847884237766, -0.007307885680347681, 0.006502898409962654, 0.026067592203617096, 0.024821612983942032, -0.03404746949672699, 0.02647358551621437, -0.019319698214530945, -0.010044842958450317, -0.018423711881041527, -0.01325079333037138, -0.0020649677608162165, -0.026711583137512207, 0.0032041999511420727, -0.01548375841230154, -0.026893580332398415, -0.029035545885562897, 0.026263589039444923, 0.01959969289600849, -0.007300885859876871, 0.0173457283526659, 0.017891719937324524, 0.022945640608668327, -0.005053921137005091, -0.004406431224197149, -0.024821612983942032, 0.00012884174066130072, -0.009505851194262505, 0.00909285806119442, 0.033795472234487534, -0.004794924985617399, 0.0075738816522061825, -0.002238214947283268, 0.014391775242984295, 0.0046654269099235535, -0.027579568326473236, -0.03261949121952057, 0.029735535383224487, 0.0015942250611260533, -0.0009406103054061532, 0.016155747696757317, -0.010023843497037888, -0.010030843317508698, -0.014895766973495483, -0.015203762799501419, 0.01751372590661049, -0.006789893843233585, 0.0019407196668908, 0.01327879261225462, 0.01285179890692234, 0.025269605219364166, -0.0050784205086529255, -0.026823580265045166, -2.798589048325084e-05, -0.03687542304396629, -0.0334874764084816, -0.04009537398815155, -0.008553866297006607, 0.021797658875584602, 0.03432746231555939, -0.017933718860149384, -0.015343760140240192, -0.0010359837906435132, -0.0058764079585671425, 0.012228809297084808, -0.01576375402510166, 0.032255496829748154, 0.045723285526037216, 0.001218855963088572, 0.01481176819652319, 0.026753582060337067, -0.011822815053164959, 0.02185365930199623, 0.011178825050592422, -0.020649677142500877, -0.04454730451107025, -0.027509570121765137, 0.01885770447552204, -0.010737832635641098, -0.015441758558154106, -0.0018252214649692178, -0.0034666957799345255, -0.018521711230278015, 0.039591383188962936, 0.012137810699641705, -0.00836486928164959, -0.020117685198783875, -0.024611614644527435, -0.015315760858356953, -0.007468883413821459, -0.005718910600990057, -0.005414415616542101, -0.046479273587465286, 0.002288964344188571, 0.02637558802962303, 0.010646834038197994, -0.002551460172981024, -0.0023134639486670494, 0.01208881102502346, 0.01062583364546299, -0.00942885223776102, -0.004749425686895847, -0.007972875609993935, -0.006891392171382904, -0.015259761363267899, 0.023925626650452614, -0.007552882190793753, 0.001474351971410215, 0.012977797538042068, 0.002147216349840164, 0.007209887262433767, 0.003568194340914488, 0.01821371540427208, -0.041355352848768234, 0.01210981048643589, 0.010982828214764595, -0.005617412272840738, 0.0068003935739398, 0.017051734030246735, 0.029735535383224487, 0.010009843856096268, 0.015245761722326279, -0.015581756830215454, 9.898282587528229e-05, -0.02582959644496441, -0.011206825263798237, 0.011486820876598358, -0.05387115851044655, -0.01285179890692234, 0.006726894993335009, -0.037519413977861404, 0.001921469927765429, -0.028503553941845894, 0.005806409288197756, -0.033767472952604294, 0.005480914376676083, -0.014699770137667656, 0.011990812607109547, -0.03418746590614319, 0.004133435431867838, -0.006730394903570414, -0.01902570202946663, 0.002792956307530403, 0.18994903564453125, -0.019991688430309296, 0.01584775187075138, 0.011731816455721855, -0.010744832456111908, 0.0063629006035625935, 0.005788909737020731, -0.008476867340505123, 0.009736848063766956, 0.03228349611163139, -0.0029084545094519854, 0.005820408929139376, 0.015231762081384659, 0.005330416839569807, 0.0059814066626131535, -0.024597615003585815, -0.051827188581228256, -0.014293776825070381, -0.05095920339226723, -0.028503553941845894, 0.014727769419550896, -0.010128841735422611, -0.014545773155987263, -0.01660373993217945, 0.019893689081072807, -0.005218418315052986, 0.0007096139015629888, -0.0016510991845279932, 0.013866783119738102, 0.01670173928141594, -0.010485836304724216, -0.011500820517539978, 0.0006168653490021825, -0.023953625932335854, -0.00045324291568249464, -0.02262364700436592, -0.0024202121421694756, 0.003167450428009033, 0.014951766468584538, 0.0173457283526659, -0.0182277150452137, -0.016169747337698936, 0.022875642403960228, -0.015427758917212486, 0.01434977538883686, -0.003618943504989147, 0.01658974029123783, 0.004115935880690813, 0.012662801891565323, 0.027677567675709724, -0.022931640967726707, -0.00914185680449009, 0.048075247555971146, 0.01959969289600849, 0.013376791030168533, -0.017625724896788597, 0.031219512224197388, -0.010520835407078266, 0.013873782940208912, 0.007797878235578537, -0.014545773155987263, 0.005638411734253168, 0.023911627009510994, 0.013852783478796482, -0.0271315760910511, 0.0021769660525023937, -0.006348900962620974, 0.012235809117555618, 0.0020719675812870264, -0.0027474570088088512, 0.019991688430309296, 0.010219840332865715, -0.011437821201980114, -0.012641802430152893, -0.01555375661700964, -0.030715519562363625, 0.019893689081072807, 0.02731357328593731, 0.02357563190162182, 0.040347371250391006, 0.0025077108293771744, 0.001761347521096468, 0.018493711948394775, -0.0009143606876023114, -0.02045368030667305, -0.020033687353134155, 0.0009686098783276975, -0.014363775961101055, -0.003442196175456047, 0.006978890858590603, -0.001761347521096468, 0.01658974029123783, 0.008014874532818794, -0.022847643122076988, -0.02731357328593731, 0.005855408497154713, -0.023211637511849403, -0.012396805919706821, -0.0015644755912944674, 0.005235918331891298, -0.038975391536951065, 0.060143060982227325, 0.009582850150763988, 0.006964891217648983, -0.020005688071250916, -0.01898370310664177, -0.017681723460555077, 0.008175872266292572, 0.00835786946117878, -0.011605818755924702, 0.00663939630612731, -0.038303401321172714, -0.002050967887043953, 0.009288854897022247, -0.0181577168405056, -0.025535600259900093, -0.011269823648035526, -0.006240402348339558, -0.017989719286561012, -0.014615771360695362, 0.04625527560710907, -0.039759378880262375, -0.013439790345728397, -0.005725910421460867, -0.010492836125195026, -0.006670895963907242, -0.010674833320081234, -0.022959642112255096, 0.014587772078812122, -0.017821721732616425, -0.006282401736825705, 0.011955813504755497, 0.02433161996304989, -0.030015531927347183, 0.02575959824025631, 0.01103882770985365, -0.010072842240333557, -0.020117685198783875, -0.000986109604127705, 0.0027719566132873297, 0.0059394072741270065, 0.019543694332242012, 0.04701126366853714, -0.017667723819613457, 0.0046619269996881485, 0.0059464070945978165, -0.01205381192266941, 0.016379743814468384, -0.005645412020385265, -0.005774909630417824, -0.04902723431587219, -0.02503160946071148, 0.010149841196835041, -0.0012171060079708695, 0.03547544404864311, 0.006121404469013214, -0.006065405439585447, -0.03413146734237671, -0.004343431908637285, 0.0166737399995327, -0.044183310121297836, 0.002689708024263382, 0.0365954264998436, -0.039619382470846176, -0.019291698932647705, -0.024527616798877716, -0.1774052232503891, 0.012025811709463596, 0.019907688722014427, -0.04491129890084267, 0.02052367851138115, -0.0015408509643748403, -0.015609756112098694, -0.01965569332242012, -0.02942753955721855, -0.0006247402634471655, 0.015469757840037346, 0.015119764022529125, -0.031219512224197388, 0.009253855794668198, 0.004014437086880207, 0.0020527178421616554, -0.02190965786576271, 0.040599364787340164, 0.024821612983942032, 0.02038368210196495, 0.03841539844870567, -0.014244777150452137, 0.01824171468615532, -0.02498960867524147, 0.00032768238452263176, 0.029651537537574768, -0.016155747696757317, 0.0027754565235227346, -0.0009152357233688235, -0.03863939642906189, 0.0031499508768320084, 0.018465710803866386, 0.006474898662418127, -0.0007258011610247195, -0.012004812248051167, -0.012592803686857224, -0.0038464399985969067, 0.005998906213790178, -0.015021765604615211, 0.013950781896710396, -0.005120419897139072, 0.03550344705581665, 0.010156841017305851, -0.013712786138057709, -0.00551591394469142, 0.04404330998659134, 0.02130766771733761, 0.009001859463751316, -0.013054795563220978, 0.004791425075381994, 0.010422836989164352, -0.02736957184970379, 0.019137701019644737, -0.009253855794668198, 0.02435961924493313, -0.009043858386576176, 0.006457399111241102, 0.010289839468896389, -0.019865689799189568, -0.03032352589070797, -0.017933718860149384, -0.027845565229654312, -0.003487695474177599, 0.02339363470673561, -0.013516788370907307, -0.016113748773932457, -0.0280135627835989, 0.03259149193763733, 0.0046619269996881485, 0.023995624855160713, -0.033711474388837814, 0.00663939630612731, 0.016197746619582176, 0.0005626162164844573, 0.011696817353367805, -0.02718757465481758, -0.019291698932647705, 0.018325714394450188, 0.02277764491736889, 0.03253549337387085, -0.013628787361085415, 0.04255933687090874, 0.0008714863797649741, -0.00019916876044590026, 0.035279449075460434, 0.017247730866074562, 0.0023554631043225527, -0.012760800309479237, 0.004003937356173992, -0.010807830840349197, 0.03936738520860672, -0.002815705956891179, -0.005711910780519247, 0.008882861584424973, -0.013698785565793514, 0.012207808904349804, -0.00835786946117878, 0.03407546877861023, -0.03032352589070797, -0.001264355261810124, -0.004150934983044863, 0.0024272119626402855, -0.03471945598721504, -0.005463414825499058, 0.01889970526099205, 0.002773706568405032, 0.009526851586997509, 0.03245149180293083, 0.039115387946367264, -0.014979765750467777, -0.025157606229186058, 0.05241518095135689, -0.01405578013509512, 0.029287543147802353, -0.010968828573822975, -0.003877939423546195, -0.011143825948238373, -0.0006413649534806609, -0.009736848063766956, 0.010646834038197994, -0.018367713317275047, -0.013558788225054741, 0.00018615333829075098, 0.03261949121952057, -0.004854423925280571, -0.004234933760017157, -0.06445499509572983, -0.008546866476535797, 0.004787925165146589, 0.04446330666542053, -0.0017902220133692026, 0.006100404541939497, 0.019053703173995018, 0.04533129185438156, 0.006152903661131859, 0.037491414695978165, -0.02812555991113186, -0.01255080383270979, 0.0026914579793810844, -0.007482883054763079, 0.004630427807569504, -0.006082904990762472, -0.02420562133193016, -0.026333589106798172, -0.007685879711061716, 0.033739473670721054, 0.007066389545798302, -0.030071530491113663, 0.002976703457534313, -0.014251776970922947, -0.0050749205984175205, 0.005753910169005394, -0.012242808938026428, 0.011458820663392544, 0.019921688362956047, -0.0016677239909768105, 0.01828371360898018, -0.011486820876598358, -0.01653374172747135, -0.03861139714717865, -0.02883954904973507, 0.014111779630184174, -0.02658558450639248, -0.028335556387901306, 0.05095920339226723, -0.01828371360898018, 0.021601662039756775, -0.0046619269996881485, 0.0007914251182228327, 0.010807830840349197, -0.015623755753040314, 0.001406103023327887, -0.019389696419239044, 0.02717357501387596, 0.0063559007830917835, 0.013859783299267292, -0.032983485609292984, -0.03018352761864662, -0.03177950158715248, 0.0030099530704319477, 0.04079536348581314, 0.007384884636849165, 0.016897736117243767, 0.030435524880886078, -0.04443530738353729, 0.012389806099236012, -0.006117904558777809, 0.010247839614748955, -0.019991688430309296, 0.024387618526816368, 0.010065842419862747, 0.02581559680402279, -0.02183965966105461, -0.0364554300904274, 0.004451930522918701, 0.01474176999181509, -0.0334874764084816, 0.009785846807062626, -0.023631630465388298, 0.01807371713221073, -0.03547544404864311, -0.008784863166511059, -0.01406277995556593, -0.004889423493295908, 0.030603522434830666, -0.047235261648893356, 0.0015426009194925427, 0.0002544022863730788, -0.00776987848803401, -0.0013588537694886327, 0.016463743522763252, 0.02494760975241661, -0.0029872034210711718, -0.02585759572684765, -0.01479776855558157, -0.0315835066139698, 0.007636880502104759, 0.004616427700966597, -0.0043469322845339775, -0.008595866151154041, -0.04703926667571068, -0.019109701737761497, 0.01206781156361103, 0.015021765604615211, -0.005267417524009943, -0.011052827350795269, -0.020131684839725494, -0.023911627009510994, -0.07386284321546555, 0.01177381630986929, 0.018577709794044495, -0.008266870863735676, -0.0002633708936627954, 0.003529694862663746, 0.013341791927814484, -0.006366400513797998, 0.0033949469216167927, 0.009218855760991573, -0.0006054905243217945, 0.03508345037698746, -0.007650880608707666, -0.020915674045681953, -0.035251449793577194, -0.022469649091362953, 0.013194793835282326, 0.019823690876364708, -0.01062583364546299, 0.022959642112255096, 0.018801705911755562, -0.0021612162236124277, 0.005795909557491541, 0.01210281066596508, -0.017247730866074562, 0.007094389293342829, -0.006887892261147499, 0.017247730866074562, -0.0013851033290848136, -0.011066826991736889, 0.014230777509510517, -0.003335447981953621, -0.014909766614437103, -0.005365415941923857, 0.003015202935785055, -0.02189565822482109, -0.0075668818317353725, 0.008889861404895782, 0.006492398679256439, -0.009568850509822369, -0.03284348547458649, -0.017891719937324524, 0.010212840512394905, -0.003832440124824643, 0.011689817532896996, 0.030687520280480385, -0.03231149539351463, -0.01754172518849373, 0.0009721097885631025, -0.011150825768709183, 0.02490561082959175, 0.008105873130261898, -0.008273870684206486, -0.0017062233528122306, -0.018731707707047462, -0.019543694332242012, 0.01254380401223898, 0.017723722383379936, -0.021377665922045708, 0.009771847166121006, 0.030603522434830666, -0.011430821381509304, -0.0030852018389850855, 0.004563928581774235, 0.003503445303067565, 0.011283823288977146, -0.001608224818482995, -0.011241824366152287, 0.023281635716557503, -0.009050858207046986, -0.03166750445961952, 0.02948353998363018, 0.009456852450966835, 0.03533544763922691, 0.0168137364089489, 0.019193699583411217, -0.010163840837776661, 0.020159684121608734, 0.017149731516838074, 0.018017718568444252, 0.021713661029934883, -0.007041890174150467, -0.016197746619582176, 0.0395633801817894, -0.004168434999883175, 0.00865886453539133, -0.019851690158247948, -0.017611725255846977, -0.00986284576356411, 0.0011409821454435587, -0.019235700368881226, 0.01965569332242012, -0.0059359073638916016, 0.01735972799360752, 0.014923767186701298, 0.008931860327720642, -0.004434430506080389, -0.02043968066573143, 0.002918954472988844, 0.01958569325506687, -0.004637427628040314, 0.0004646177403628826, 0.011472820304334164, -0.020649677142500877, -0.029007546603679657, 0.007412884384393692, -0.004952422808855772, -0.028545554727315903, -0.002119216835126281, 0.016967734321951866, -0.017947720363736153, -0.0063594006933271885, -0.038863394409418106, 0.020691676065325737, -0.025381604209542274, -0.02049567922949791, -0.005260417703539133, -0.01476976927369833, -0.03401947021484375, 0.009680848568677902, 0.03651142865419388, 0.017667723819613457, 0.023071639239788055, 0.006464398931711912, 0.044239308685064316, -0.02346363291144371, 0.014377775602042675, -0.05924707278609276, 0.0018549710512161255, 0.004269933328032494, 0.01056983508169651, 0.026305589824914932, -0.021685661748051643, -0.03460745885968208, -0.026683583855628967, 0.008448868058621883, -0.00039921249845065176, -0.010695832781493664, -0.002220715396106243, 0.0683189332485199, 0.010513835586607456, -0.015063764527440071, -0.004122935701161623, 0.010723832063376904, 0.010471836663782597, -0.021055670455098152, 0.01061183400452137, -0.014937766827642918, -0.040599364787340164, -0.00010133435716852546, -0.015315760858356953, -0.009708847850561142, -0.0257175974547863, 0.009659849107265472, -0.019571693614125252, -0.016463743522763252, 0.028629552572965622, 0.019277699291706085, 0.02739757113158703, 0.02732757292687893, 0.010681833140552044, 0.009057858027517796, 0.00416493508964777, -0.027621569111943245, -0.004521929193288088, 0.00832987017929554, -0.026725582778453827, -0.006082904990762472, 0.022427650168538094, 0.0030327027197927237, 0.011129826307296753, -0.02041168138384819, -0.011542819440364838, 0.023617630824446678, 0.0006409274647012353, -0.02042568102478981, -0.02342163398861885, 0.02739757113158703, 0.02118166908621788, -0.00989084504544735, -0.02048167958855629, -0.02421962097287178, -0.020957672968506813, 0.030827518552541733, 0.006509898230433464, -0.0008338619954884052, 0.028321556746959686, -0.024653615429997444], "40d8ea74-d247-413f-9230-20c95127dcdb": [-0.022998638451099396, -0.013926875777542591, 0.032329995185136795, -0.0032589591573923826, -0.0019259080290794373, 0.02535603567957878, -0.0020013307221233845, -0.028036169707775116, 0.0011971149360761046, -0.02142704278230667, 0.00011028366861864924, 0.014207517728209496, -0.004325400106608868, 0.0015365168219432235, -0.04366794601082802, 0.006426709238439798, -0.006570538505911827, 0.01610887050628662, 0.025468291714787483, -0.02036060206592083, 0.001971512334421277, 0.022325098514556885, -0.008243868127465248, -0.0316845178604126, -0.023152992129325867, -0.007794840727001429, 0.028078265488147736, -0.03409804403781891, 0.0004626213340088725, 0.006844164803624153, 0.030618079006671906, 0.02865358255803585, 0.0057531679049134254, -0.020627211779356003, 0.010622312314808369, -0.0126990657299757, 0.020472858101129532, -0.005262043792754412, 0.009920706041157246, -0.004532373510301113, 0.0009147186065092683, 0.001745244488120079, -0.010720537044107914, -0.017596274614334106, -0.01509855780750513, -0.00047139142407104373, -0.003162488341331482, -0.00019787477503996342, -0.016796443611383438, 0.01841013692319393, -0.005142770707607269, 0.008419269695878029, -0.027362627908587456, -0.015884356573224068, 0.007493150420486927, 0.016136934980750084, -0.04481858015060425, 0.011639640666544437, -0.010825778357684612, -0.012039556168019772, 0.0240931436419487, -0.003067771438509226, -0.03421030193567276, 0.03258257359266281, 0.022212840616703033, -0.01710515096783638, 0.006591586861759424, 0.022577675059437752, -0.0035273232497274876, -0.015295007266104221, 0.015505488961935043, 0.01391284354031086, -0.020823661237955093, -0.0025941876228898764, 0.030898720026016235, -0.003325611585751176, 0.001866271486505866, 0.004521849565207958, -0.032442253082990646, 0.021483169868588448, 0.01754014566540718, -0.028962288051843643, -0.015014364384114742, -0.0021925182081758976, 0.02544022724032402, -0.002685396233573556, -0.026380378752946854, 0.0031484561040997505, -0.006914325524121523, -0.012432455085217953, 0.007093234919011593, -0.007724680006504059, 0.023152992129325867, 0.009590951725840569, -0.0007169534801505506, -0.00946466252207756, -0.00022692563652526587, 0.009857562370598316, 0.007303716614842415, -0.04136668145656586, 0.004602534230798483, 0.0074159735813736916, -0.012130765244364738, -0.002627513837069273, -0.03019711561501026, -0.004784951917827129, 0.011099404655396938, 0.005479541607201099, -0.013793570920825005, -0.027053920552134514, -0.035501256585121155, 0.044313423335552216, -0.012130765244364738, -0.009296277537941933, -0.0327790230512619, -0.040103789418935776, 0.0034887350630015135, -0.017357727512717247, -0.0425453782081604, -0.010741584934294224, 0.027769558131694794, 0.029270995408296585, 0.01801723800599575, -0.0179049801081419, -0.001686485018581152, -0.003834275994449854, -0.010594247840344906, 0.0001990806485991925, -0.011955363675951958, -0.012979707680642605, 0.04961756616830826, 0.008208788000047207, 0.01777869090437889, 0.0007134454208426178, -0.034743521362543106, 0.0040938700549304485, -0.0258331261575222, 0.011765929870307446, -0.04192796349525452, 0.01829788088798523, 0.0033238576725125313, 0.02372830919921398, -0.011499319225549698, -0.01984141208231449, -0.009338373318314552, 0.03095484897494316, 0.00926821306347847, 0.021146399900317192, 0.002627513837069273, 0.0050726099871098995, 0.016599994152784348, -0.01710515096783638, -0.0064161852933466434, -0.019223999232053757, -0.006381105165928602, 0.009969819337129593, 0.013919860124588013, 0.004223667085170746, -0.0067213838919997215, 0.019139807671308517, 0.024037016555666924, 0.038756705820560455, -0.01509855780750513, -0.014888076111674309, 0.012593824416399002, 0.014677594415843487, 0.03345256671309471, -0.017077086493372917, 0.00567599106580019, -0.030702270567417145, 0.007296700496226549, 0.02556651644408703, -0.05068400502204895, -0.00084718904690817, -0.005198899190872908, 0.019743187353014946, 0.024640396237373352, -0.021707683801651, -0.02476668544113636, -0.0007673813961446285, 0.011583512648940086, -0.010790697298943996, 0.010173284448683262, 0.024121208116412163, -0.0013646233128383756, -0.029776152223348618, 0.008307012729346752, -0.00821580458432436, 0.009892642498016357, -0.006682795472443104, -2.48165652010357e-05, 0.030533885583281517, 0.011253757402300835, 0.03269483149051666, -0.5837360620498657, -0.026085704565048218, -0.018746908754110336, 0.0024310641456395388, 0.023966854438185692, 0.03547319024801254, 0.012586808763444424, 0.015519521199166775, -0.024022983387112617, 0.019083678722381592, -0.009148940443992615, 0.017750628292560577, -0.0001302355813095346, 0.0029888409189879894, 0.01833997666835785, -0.031291618943214417, 0.02524377778172493, -0.0003385248128324747, -0.011120452545583248, 0.017764659598469734, -0.0008270178805105388, 0.01236229483038187, -0.01841013692319393, 0.0035922217648476362, 0.0065109021961688995, -0.00747210206463933, -0.02726440317928791, -0.0011611576192080975, 0.00787903368473053, -0.003432606579735875, -0.049112409353256226, 0.018676746636629105, 0.03362094983458519, 0.002124111633747816, 0.05214334651827812, 0.01782078854739666, -0.030337436124682426, 0.021679619327187538, 0.042966339737176895, 0.05531460419297218, -0.00670735165476799, -0.012095684185624123, -0.0046937428414821625, 0.00523047149181366, -0.006738923955708742, -0.0057426439598202705, 0.015337103977799416, -0.006784528493881226, 0.02515958435833454, -0.01567387394607067, 0.010706504806876183, -0.00025038557942025363, 0.00025827865465544164, -0.021342849358916283, 0.01571597158908844, 0.012930595315992832, 0.02671715058386326, -0.03162839263677597, 0.0003560649638529867, -0.025468291714787483, 0.005290107801556587, 0.016978861764073372, -0.01514065358787775, -0.005591798573732376, -0.01972915604710579, 0.002338101388886571, 0.010664409026503563, 0.0015093295369297266, -0.007556295022368431, -0.03853219375014305, 0.007710648234933615, -0.0007007288513705134, 0.006226751953363419, -0.015168718062341213, 0.009927722625434399, 0.011036260053515434, 0.01881706900894642, 0.007675567641854286, -0.022044455632567406, 0.013190189376473427, -0.010924003086984158, 0.013947923667728901, -0.017147246748209, -0.036736082285642624, -0.004690235015004873, -0.01884513348340988, -0.008643783628940582, -0.006040826439857483, -0.01675434783101082, -0.003458916675299406, -0.0005419905064627528, 0.019504642114043236, -1.8033462765743025e-05, -0.019673027098178864, 0.01509855780750513, 0.00873499270528555, -0.004090362228453159, -0.0034448846708983183, 0.011057307943701744, -0.031010977923870087, -0.03067420795559883, -0.013484864495694637, -0.0015470408834517002, 0.026380378752946854, 0.0037921795155853033, 0.002959022531285882, -0.010952066630125046, -0.003092327620834112, 0.028681647032499313, -0.005872440990060568, 0.010011915117502213, -0.005019989795982838, -0.0049673691391944885, -0.00747210206463933, 0.01580016314983368, -0.05017884820699692, 0.013007772155106068, 0.02492103911936283, 0.033957723528146744, 0.006433725357055664, 0.04049668833613396, 0.00326422112993896, 0.020136088132858276, 0.004423624835908413, 0.014523240737617016, 0.002857289742678404, 0.026029575616121292, 0.005700547248125076, 0.0009050715016201138, -0.000831402896437794, -0.005812804214656353, -0.02437378652393818, 0.017554178833961487, -0.029467444866895676, 0.006977470126003027, -0.0301690511405468, 0.026366347447037697, 0.01474775467067957, 0.008826201781630516, 0.022198809310793877, -0.04571663588285446, -0.018634650856256485, 0.02107623964548111, 0.005896997172385454, -0.030393565073609352, -0.014789851382374763, -0.00942958239465952, 0.028246650472283363, -0.006742432247847319, -0.016010645776987076, -0.004493785556405783, -0.005616354756057262, -0.023265250027179718, 0.024640396237373352, -0.012250037863850594, -0.008349109441041946, -0.015814196318387985, -0.022240905091166496, 0.00025235884822905064, -0.024457979947328568, -0.007724680006504059, 0.009387485682964325, -0.009520791471004486, 0.01675434783101082, 0.0033712161239236593, -0.010573199950158596, 0.0023293313570320606, 0.012460519559681416, -0.014789851382374763, -0.02372830919921398, 0.011758914217352867, -0.019715124741196632, -0.01406719721853733, -0.0019855445716530085, 0.010643360204994678, -0.0017820787616074085, -0.01979931630194187, -0.0023170532658696175, -0.02444394677877426, -0.009878610260784626, -0.01884513348340988, 0.008959506638348103, -0.019673027098178864, -0.007570326793938875, 0.0264786034822464, 0.0172595027834177, 0.02444394677877426, -0.005346236284822226, -0.06780318915843964, 0.013681313954293728, -0.043724074959754944, 0.03552931919693947, 0.015351135283708572, 0.0014540781266987324, -0.0016259715193882585, 0.013512928038835526, 0.002283727051690221, 0.01627725549042225, -0.007598391268402338, 0.021258655935525894, 0.011246741749346256, 0.03261063992977142, 0.029860343784093857, 0.012214957736432552, 0.00792112946510315, -0.04024410992860794, 0.014719690196216106, -0.018662715330719948, 0.002936220495030284, 0.0022311066277325153, 0.01474775467067957, -0.013505912385880947, -0.02374234050512314, -0.0034764569718390703, -0.0019943146035075188, 0.024022983387112617, -0.0010445156367495656, 0.0016224634600803256, -0.025861190631985664, 0.0277835913002491, -0.0070792026817798615, 0.00693537387996912, 0.004339431878179312, 0.01046094298362732, 0.012228989973664284, 0.009696193039417267, 0.013148093596100807, -0.0014838962815701962, 0.00684767309576273, -0.024556204676628113, 0.005760184023529291, 0.004318383987993002, 0.019378352910280228, -0.0023310852702707052, 0.016291286796331406, -0.02849922887980938, 0.015589681454002857, -0.006395136937499046, 0.02341960184276104, -0.009198052808642387, 0.020065926015377045, -0.04063700884580612, 0.004609550349414349, -0.0037570991553366184, 0.019911574199795723, 0.018985453993082047, 0.038672514259815216, 0.02298460714519024, -0.03384546563029289, -0.0014961744891479611, -0.0336490161716938, 0.03783058747649193, 0.006188163533806801, 0.030056793242692947, -0.012306165881454945, -0.0020872773602604866, 0.01610887050628662, 0.003939516842365265, 0.025861190631985664, 0.03889702633023262, 0.027727462351322174, 0.017890948802232742, 0.010341670364141464, 0.035978347063064575, 0.017091117799282074, -0.02631021849811077, -0.007282668724656105, 0.004504309501498938, -0.004097377881407738, 0.007366861216723919, -0.015028396621346474, 0.0056794993579387665, 0.008945474401116371, -0.0018171591218560934, 0.0058478848077356815, 0.022409290075302124, 0.007359845098108053, 0.0360344760119915, 0.011485287919640541, 0.005402364768087864, -0.01591242104768753, -0.028878096491098404, 0.032133545726537704, 0.011857138946652412, 0.008208788000047207, 0.01370937842875719, -0.005486557725816965, -0.0030712794978171587, 0.000671787594910711, 0.024907007813453674, -0.011106420308351517, 0.004697251133620739, -0.0021188496612012386, -0.004592010285705328, -0.002343363594263792, 0.0020451811142265797, 0.027180209755897522, -0.022563643753528595, -0.014495176263153553, -0.0031379321590065956, -0.00877007283270359, -0.017919013276696205, -0.04585695639252663, -0.006391629111021757, 0.026815375313162804, 0.0022433847188949585, -0.005539177916944027, 0.0074580698274075985, -0.0032887773122638464, -0.018199656158685684, 0.002830979647114873, -0.007724680006504059, -0.01027852576225996, -0.0030081348959356546, 0.0003503644256852567, 0.017764659598469734, 0.02433169074356556, -0.024457979947328568, -1.1565533895918634e-05, 0.009506759233772755, -0.019041582942008972, -0.028358908370137215, -0.0199677012860775, 0.02869567833840847, -0.04914047196507454, 0.01603871025145054, -0.004844588227570057, 0.00542692095041275, -0.038840897381305695, -0.0032414188608527184, -0.03774639219045639, -0.024121208116412163, 0.0075212144292891026, -0.00029577070381492376, -0.0026485619600862265, 0.012060604058206081, 0.013898811303079128, -0.0037465752102434635, 0.031179362908005714, 0.015589681454002857, -0.013702361844480038, -0.014705657958984375, 0.007198475766927004, 0.001038376591168344, -0.0033045634627342224, -0.03696059435606003, 0.01678241230547428, -0.007850969210267067, 0.0005604076432064176, -0.009997882880270481, -0.004360480234026909, 0.02762923762202263, 0.01115553267300129, -0.007254604250192642, 0.008278949186205864, 0.028078265488147736, 0.02420540153980255, 0.011323918588459492, 0.010425862856209278, 0.010846826247870922, -0.013295430690050125, 0.028485197573900223, -0.02222687192261219, -0.0008524510776624084, 0.006514410022646189, 0.035501256585121155, 0.00437451247125864, -0.022409290075302124, 0.017961109057068825, 0.0011181843001395464, 0.016333384439349174, -0.009345389902591705, 0.01686660386621952, -0.03067420795559883, 0.006409169174730778, 0.028386972844600677, -0.06421096622943878, -0.011765929870307446, 0.030253242701292038, 0.027250370010733604, -0.03898122161626816, -0.01032062154263258, -0.005055069923400879, -0.012411407195031643, 0.0012707835994660854, -0.011618592776358128, -0.0037150029093027115, 0.006563522387295961, -0.0006174131412990391, -0.03373320773243904, -0.016179030761122704, -0.015856292098760605, -0.03743768855929375, 0.017119182273745537, 0.0033291196450591087, -0.041338615119457245, -0.031965162605047226, -0.012172861024737358, 0.007093234919011593, 0.02643650770187378, 0.0007779054576531053, -0.01651580072939396, -0.019813349470496178, 0.023798469454050064, -0.01115553267300129, 0.007338797207921743, -0.008650800213217735, -0.002850273624062538, -0.006033810321241617, 0.01081876177340746, -0.019181903451681137, -0.033115796744823456, -0.011632625013589859, -0.0030397071968764067, -0.00805443525314331, 0.005974173545837402, 0.02457023598253727, 0.00637058075517416, 0.041142165660858154, -0.02817649021744728, 0.023195089772343636, 0.009633048437535763, -0.020220279693603516, -0.005535670090466738, 0.011843106709420681, -0.0066477153450250626, -0.008180724456906319, -0.016122901812195778, 0.013639217242598534, 0.017315631732344627, 0.019111743196845055, 0.026324251666665077, 0.013274382799863815, -0.004749871324747801, 0.021384945139288902, -0.00139707257039845, 0.007465085946023464, 0.011843106709420681, -0.001077841967344284, -0.010720537044107914, -0.004164030775427818, 0.01730160042643547, -0.004065805580466986, -0.00016926240641623735, 0.020893821492791176, -0.019392386078834534, 0.03541706129908562, 0.018396105617284775, 0.009927722625434399, 0.029158737510442734, -0.007829921320080757, -0.031656455248594284, -0.02190413326025009, 0.01884513348340988, 0.014102277345955372, 0.00908579584211111, 0.00017452445172239095, -0.029635829851031303, -0.008671848103404045, -0.006812592502683401, 0.010748601518571377, -0.003722019027918577, -0.010888922959566116, -0.021819941699504852, 0.018662715330719948, -0.02155333198606968, -0.010004899464547634, -0.03592221811413765, 0.016922732815146446, -0.022437354549765587, 0.01410929299890995, -0.004581485874950886, 0.006125018931925297, 0.0004863005306106061, 0.006009254138916731, 0.02357395552098751, -0.03381740301847458, -0.002806423231959343, 0.0014225058257579803, -0.028962288051843643, -0.011899234727025032, 0.023882662877440453, -0.004013185389339924, 0.014018084853887558, 0.03844799846410751, -0.0013681313721463084, -0.010952066630125046, 0.0027818670496344566, 0.0021574378479272127, -0.005076118279248476, -0.009240148589015007, 0.00023942299594637007, -0.019476577639579773, 9.592267451807857e-05, 0.002245138632133603, -0.003900928422808647, 0.03401385247707367, 0.006363565102219582, -0.004455197136849165, 0.016614025458693504, -0.013211238197982311, -0.018185622990131378, -0.01204657182097435, -0.05009465664625168, -0.0023328394163399935, 0.030702270567417145, -0.0006388998008333147, 0.024738620966672897, -0.02372830919921398, -0.0085736233741045, 0.01901351846754551, -0.011878186836838722, 0.029467444866895676, -0.007212508004158735, 0.0030046270694583654, -0.036848340183496475, 0.009078779257833958, 0.012032539583742619, 0.014719690196216106, -0.023209121078252792, 0.009198052808642387, -0.012607856653630733, 0.019111743196845055, 0.035781897604465485, 0.01623515971004963, 0.016375480219721794, 0.008664832450449467, 0.00940853450447321, -0.02281622216105461, -0.005609338637441397, -0.033199988305568695, 0.004072821699082851, -0.001194483949802816, -0.013583089224994183, -0.018676746636629105, -0.05528653785586357, 0.0019311700016260147, -0.016964828595519066, 0.019223999232053757, 0.020150119438767433, 0.007019566372036934, -0.0016145703848451376, -0.0014225058257579803, -0.007801856845617294, 0.007963226176798344, 0.0006827501929365098, 0.03825154900550842, -0.016501769423484802, 0.02949550934135914, 0.04490277171134949, 0.00017057791410479695, -0.0034536547027528286, -0.022367194294929504, 0.011836090125143528, 0.004637614358216524, 0.012425439432263374, 0.010685456916689873, -0.006139051169157028, -0.025145553052425385, 0.04161925986409187, 0.0295235738158226, 0.018522394821047783, -0.019757220521569252, 0.02631021849811077, 0.0277835913002491, 0.019083678722381592, -0.023756373673677444, -0.00940853450447321, -0.013990020379424095, 0.004672694951295853, -0.009401517920196056, -0.007486134301871061, 0.0066898115910589695, -0.0011997459223493934, 0.0011664197081699967, 0.008917409926652908, 0.015659842640161514, 0.04063700884580612, 0.00942958239465952, 0.00542692095041275, 0.003537847427651286, 0.019588835537433624, -0.001955726183950901, 0.01643160916864872, -0.0031993226148188114, 0.0302813071757555, -0.0014646021882072091, 0.02044479362666607, -0.007661535870283842, -0.00780887296423316, -0.00022692563652526587, -0.012137780897319317, -0.0012681524967774749, 0.04484664648771286, -0.037802521139383316, -0.00011653234105324373, -0.007009042426943779, -0.028429068624973297, 0.006788036320358515, 0.0005849638837389648, -0.010418846271932125, 0.005665467120707035, -0.023545891046524048, -0.017554178833961487, 0.02139897830784321, 0.001065563876181841, -0.007254604250192642, -0.016571929678320885, -0.007465085946023464, 0.008349109441041946, -0.01580016314983368, 0.006482837721705437, 0.03064614348113537, -0.0020749992690980434, -0.025734901428222656, 0.01805933378636837, -0.013365590944886208, -0.009576919488608837, 0.004841080401092768, 0.0016891160048544407, 0.003557141637429595, 0.051497869193553925, -0.03238612413406372, -0.004157014656811953, -0.019813349470496178, -0.00318529037758708, -0.012137780897319317, 0.013456800021231174, -0.02099204622209072, -0.0026450539007782936, 0.014705657958984375, 0.00976635329425335, -0.029579702764749527, -0.020528987050056458, 0.028246650472283363, 0.03401385247707367, -0.0019434482092037797, 0.0516662523150444, 0.010243444703519344, 0.019378352910280228, -0.010510055348277092, 0.0028836000710725784, -0.03112323395907879, -0.013961955904960632, -0.010180301032960415, 0.0018118970328941941, 0.03356482461094856, -0.008082498796284199, 0.026801342144608498, 0.0059636496007442474, 0.008756040595471859, 0.007949193939566612, -0.024654429405927658, -0.043443433940410614, -0.005718087311834097, 0.0032922853715717793, 0.00036483502481132746, 0.00030936431721784174, 0.01675434783101082, -0.02079559676349163, -0.033003538846969604, -0.00940853450447321, 0.002131127752363682, -0.010538119822740555, 0.006966945715248585, 0.00871394481509924, -0.002971300622448325, 0.008833217434585094, -0.020585115998983383, -0.024556204676628113, 0.007787824608385563, -0.041338615119457245, -0.052648503333330154, -0.029270995408296585, -0.01133093424141407, 0.011057307943701744, 0.022732028737664223, -0.027053920552134514, -0.02734859474003315, -0.03134774789214134, -0.02322315238416195, 0.006770496256649494, 0.015603713691234589, 0.03064614348113537, 0.010180301032960415, -0.0024187860544770956, -0.01061529666185379, -6.396671960828826e-05, -0.009506759233772755, 0.00608292268589139, 0.031965162605047226, 0.0036553663667291403, -0.052452053874731064, -0.031937096267938614, -0.018269816413521767, -0.004462213255465031, -0.01335857529193163, -0.001460217172279954, 0.0028800920117646456, -0.016066772863268852, 0.02146913856267929, 0.013583089224994183, -0.012937611900269985, -0.01718934252858162, -0.006146067287772894, -0.01547742448747158, -0.01514065358787775, 0.0073528289794921875, 0.02246541902422905, -0.01619306206703186, 0.02190413326025009, 0.014845979399979115, -0.008180724456906319, -0.008706928230822086, 0.0006577554740943015, 0.0019995765760540962, 0.01490210834890604, 0.011934314854443073, -0.008152659982442856, 0.006167115177959204, -0.014817914925515652, -0.015603713691234589, 0.007002026308327913, -0.01838207244873047, 0.008405237458646297, 0.04049668833613396, 0.0011804518289864063, 0.010039979591965675, -0.0029414824675768614, 0.001897843787446618, -0.04425729438662529, -0.002085523447021842, 0.017764659598469734, 0.0017461215611547232, 0.0021925182081758976, 0.01706305332481861, 0.017933044582605362, 0.006093446630984545, -0.003834275994449854, 0.020416729152202606, 0.013470832258462906, -0.029916472733020782, -0.002299513202160597, 0.027278434485197067, -0.052844952791929245, -0.0007230925257317722, -0.018648682162165642, -0.016796443611383438, -0.00014920085959602147, -0.042573440819978714, 0.03064614348113537, -0.03064614348113537, 0.0017145492602139711, -0.02099204622209072, -0.007275652606040239, -0.04560437798500061, 0.008861281909048557, 0.03202129155397415, -0.009682160802185535, 0.023279281333088875, 0.19487804174423218, -0.03084259293973446, -0.0008660447201691568, 0.00958393607288599, -0.014207517728209496, -0.0020101007539778948, 0.034715455025434494, 0.016375480219721794, 0.013484864495694637, 0.015126621350646019, -0.008278949186205864, 0.010369733907282352, -0.012537696398794651, -0.0010611788602545857, 0.023391539230942726, -0.028008105233311653, -0.06123615801334381, -0.029748087748885155, -0.04740048944950104, -0.00785798579454422, 0.025412162765860558, -0.025313938036561012, -0.013540992513298988, -0.01255874428898096, -0.003206338733434677, 0.0036869386676698923, -0.010369733907282352, 0.0006980978068895638, 0.010720537044107914, 0.02885003201663494, -0.006570538505911827, -0.0023012671153992414, -0.0055567179806530476, -0.013940908014774323, -0.015000333078205585, -0.014860011637210846, -0.0008428040309809148, 0.007745728362351656, 0.032442253082990646, 0.017357727512717247, -0.011436174623668194, -0.008131611160933971, 0.023307345807552338, -0.005062086042016745, -0.026899566873908043, 0.00015117412840481848, -0.00419560307636857, 0.00891039427369833, 0.0016119393985718489, 0.0010243444703519344, -0.004472737200558186, -0.021342849358916283, 0.039710890501737595, -0.0013295430690050125, 0.006556506734341383, -0.010082075372338295, 0.015407264232635498, -0.015196782536804676, 0.003067771438509226, -0.003099343739449978, -0.016010645776987076, 0.015238878317177296, -0.0022083043586462736, 0.04007572680711746, -0.02231106534600258, 0.002930958289653063, -0.021328818053007126, -0.031067106872797012, 0.004090362228453159, -0.0068687209859490395, -0.005960141774266958, 0.00274854083545506, -0.008510478772222996, -0.017554178833961487, -0.03269483149051666, -0.03437868505716324, 0.037409622222185135, 0.019223999232053757, 0.0070686787366867065, 0.044874709099531174, -0.015070493333041668, -0.005868932697921991, 0.0029064021073281765, 0.0030870656482875347, 0.0018276831833645701, -0.024022983387112617, 0.011057307943701744, -0.007170411758124828, -0.008447334170341492, -0.001292708795517683, -0.0199677012860775, -0.016375480219721794, -0.002631021896377206, -0.01634741574525833, -0.014972268603742123, 0.011534400284290314, -0.0006524934433400631, -0.002631021896377206, -0.003844799939543009, 0.01909771002829075, -0.023110896348953247, 0.04779338836669922, 0.032442253082990646, 0.032245803624391556, -0.020416729152202606, 0.008587655611336231, -0.009611999616026878, -0.013302446343004704, 0.013940908014774323, -0.0035150451585650444, -0.01456533744931221, -0.05107690393924713, 0.0019785284530371428, 0.017245471477508545, -0.024191368371248245, -0.006044334266334772, -0.01357607264071703, -0.014579368755221367, -0.003837783820927143, -0.005886472761631012, 0.014789851382374763, -0.014207517728209496, -0.004206127021461725, 0.01011715643107891, -0.014207517728209496, -0.014453080482780933, -0.02559458091855049, 0.0016996401827782393, -0.018185622990131378, -0.023012671619653702, 0.02166558802127838, 9.707374556455761e-05, 0.02485087886452675, -0.010313605889678001, 0.016024677082896233, 0.005528653971850872, 0.016263222321867943, 0.0027467869222164154, -0.005809296388179064, -0.015168718062341213, -0.0013190190074965358, 0.014179454185068607, 0.02762923762202263, -0.0017583996523171663, 0.002404754050076008, 0.009415550157427788, -0.010783681645989418, 0.03592221811413765, -0.016543865203857422, -0.007033598609268665, -0.02687150426208973, -0.022802188992500305, 0.002085523447021842, -0.0029239424038678408, 0.029748087748885155, -0.0010901200585067272, -0.02626812271773815, -0.022367194294929504, 0.011092388071119785, 0.017989173531532288, -0.03839186951518059, -0.0020206246990710497, 0.02139897830784321, -0.024598300457000732, -0.02198832668364048, -0.027881816029548645, -0.17837627232074738, 0.012685033492743969, 0.04013185203075409, -0.026857471093535423, 0.03763413801789284, -0.006317960564047098, -0.008503463119268417, -0.012397374957799911, -0.02774149551987648, -0.012411407195031643, 0.019392386078834534, 0.006160099059343338, -0.040019597858190536, 0.0015601959312334657, -0.008328061550855637, 0.018508361652493477, -0.03350869566202164, 0.008250884711742401, 0.03303160145878792, 0.017750628292560577, 0.03067420795559883, -0.03412610664963722, 0.008384189568459988, -0.016024677082896233, -0.015519521199166775, 0.014719690196216106, -0.016263222321867943, 0.020500922575592995, 0.0011146762408316135, -0.03957056999206543, -0.007233556360006332, 0.010187316685914993, 0.02988840825855732, 0.006437233649194241, 0.016529833897948265, -0.004427132662385702, 0.011099404655396938, -9.76218725554645e-05, -0.02135688066482544, 0.01255874428898096, 0.001604923396371305, 0.03151613473892212, 0.03334030881524086, -0.007366861216723919, -0.023447666317224503, 0.03390159457921982, 0.005367284640669823, 0.007226540241390467, 0.019546737894415855, -0.0027625730726867914, 0.007131823338568211, 0.0005985574680380523, 0.015547585673630238, -0.019588835537433624, 0.014635497704148293, 0.007233556360006332, -0.004735839553177357, 0.013302446343004704, 0.007009042426943779, -0.012102700769901276, -0.02960776537656784, -0.019574802368879318, 0.01703498885035515, 0.00829298049211502, -0.027053920552134514, -0.018592555075883865, -0.022198809310793877, 0.028050201013684273, -0.0027695889584720135, 0.009724256582558155, 0.010671424679458141, -0.02405104786157608, 0.017049022018909454, -0.009948770515620708, 0.0253981314599514, -0.027994072064757347, -0.012355279177427292, 0.009499742649495602, 0.024780718609690666, 0.020065926015377045, -0.017147246748209, 0.05326591432094574, 0.000640215293969959, -0.010145219974219799, 0.01290253084152937, -0.018704811111092567, 0.007089727092534304, -0.017203375697135925, -0.02754504419863224, -0.010916986502707005, 0.0295235738158226, -0.004770919680595398, -0.03872864320874214, -0.006560014560818672, -0.008335077203810215, 0.007633471395820379, -0.0011260773753747344, 0.0015856291865929961, -0.005697039421647787, -0.004034233745187521, 0.005370792467147112, -0.0006196056492626667, -0.02318105660378933, 0.027559077367186546, 0.02103414200246334, -0.01341470330953598, 0.019069647416472435, 0.023587988689541817, 0.031656455248594284, -0.015982581302523613, 0.024022983387112617, 0.027320530265569687, 0.027559077367186546, 0.030505821108818054, -0.028204554691910744, 0.00627937214449048, -0.01081876177340746, -0.022479450330138206, 0.004865636583417654, 0.007942178286612034, -0.026843439787626266, -0.014874043874442577, 0.01662805862724781, 0.04490277171134949, -0.020262377336621284, -0.02774149551987648, -0.06129228696227074, -0.012250037863850594, 0.032161612063646317, 0.03174064680933952, -0.017652403563261032, 0.00747210206463933, 0.001589137245900929, 0.03948637470602989, -0.022297034040093422, 0.010334653779864311, 0.0044411648996174335, -0.02654876559972763, -0.014235582202672958, -0.012313182465732098, 0.014095260761678219, 0.010166268795728683, -0.020585115998983383, -0.015519521199166775, -0.018915293738245964, 0.018157558515667915, 0.021707683801651, -0.0253981314599514, 0.011127468198537827, -0.015435328707098961, -0.002324069384485483, 0.002822209382429719, -0.022802188992500305, 0.03275096043944359, 0.018760940060019493, -0.001955726183950901, 0.029074545949697495, -0.022886382415890694, 0.002866059774532914, -0.0199677012860775, -0.009611999616026878, 0.012600841000676155, -0.01754014566540718, -0.016810474917292595, 0.047653067857027054, -0.043443433940410614, 0.010706504806876183, -0.00023788823455106467, 0.006612634751945734, 0.016571929678320885, -0.00877007283270359, -0.008959506638348103, -0.021932197734713554, 0.033312246203422546, -0.014523240737617016, -0.03479965031147003, -0.016838539391756058, -0.025776999071240425, -0.005549702327698469, 0.002169715939089656, 0.02626812271773815, 0.024022983387112617, 0.023798469454050064, 0.025313938036561012, -0.02031850442290306, 0.014095260761678219, 0.004904225002974272, -0.021104304119944572, -0.029186801984906197, 0.03710091486573219, 0.043836332857608795, -0.011625608429312706, -0.009169988334178925, -0.02865358255803585, 0.0179049801081419, 0.0008265793439932168, -0.007675567641854286, 0.017652403563261032, -0.005840868689119816, 0.02016415074467659, -0.017834819853305817, -0.03575383499264717, -0.02520168200135231, -0.02552442066371441, 0.048130158334970474, -0.04726016893982887, -0.010327638126909733, -0.011071340180933475, -0.0027695889584720135, -0.012271085754036903, -0.0012471043737605214, 0.02007995918393135, 0.0045885019935667515, -0.02163752354681492, -0.0043780202977359295, -0.009380470030009747, -0.006805576384067535, 0.020150119438767433, -0.009380470030009747, -0.023517828434705734, -0.026492636650800705, -0.007556295022368431, 0.03592221811413765, 0.009162971749901772, -0.00016849502571858466, 0.025412162765860558, -0.03485577926039696, -0.040187980979681015, -0.07633471488952637, 0.021441074088215828, 0.02861148677766323, -0.0009041945450007915, 0.009738288819789886, 0.010039979591965675, 0.025173617526888847, -0.028878096491098404, -0.01048199087381363, 0.012418422847986221, -0.018438201397657394, 0.0168245080858469, -0.0096049839630723, -0.0073107327334582806, -0.017147246748209, -0.022928478196263313, 0.007759760599583387, 5.273006172501482e-05, 0.0023591495119035244, 0.01619306206703186, 0.009619016200304031, 0.0017189342761412263, 0.013330510817468166, 0.01375147420912981, -0.014025100506842136, 0.010566184297204018, -0.003018659073859453, 0.02348976396024227, 0.025706836953759193, 0.027334563434123993, 0.015168718062341213, -0.022774124518036842, 0.006928357761353254, 0.00057794782333076, -0.012993739917874336, -0.0002014924248214811, 0.024752654135227203, 0.00205395114608109, 0.03508029133081436, 0.014361871406435966, -0.03112323395907879, -0.015575649216771126, -0.008166692219674587, -0.010068044066429138, -0.0061039705760777, -0.004549914039671421, -0.0416753850877285, -0.01833997666835785, 0.029158737510442734, 0.008201772347092628, 0.028555357828736305, 0.008812169544398785, -0.016066772863268852, -0.011815042234957218, -0.026099737733602524, -0.022647837176918983, 0.025131521746516228, 0.00022802189050707966, -0.0074580698274075985, 0.017919013276696205, 0.0199677012860775, -0.01984141208231449, 0.005356760695576668, 0.022844286635518074, -0.011358998715877533, 0.009808450005948544, -0.0039570569060742855, -0.03182484209537506, 0.006328484509140253, -0.016136934980750084, -0.021483169868588448, 0.02179187722504139, -0.0020311488769948483, 0.0069634378887712955, 0.011674720793962479, 0.02079559676349163, -0.004760395735502243, 0.028204554691910744, -0.02031850442290306, 0.018915293738245964, 0.008812169544398785, -0.007180935703217983, -0.016614025458693504, 0.006507393904030323, 2.60224514931906e-05, -0.005960141774266958, -0.01686660386621952, -0.02607167325913906, -0.014775819145143032, -0.014326791279017925, -0.014123325236141682, 0.012671001255512238, 0.015463392250239849, 0.03182484209537506, 0.02730649895966053, 0.02083769254386425, 0.013765506446361542, -0.03095484897494316, 0.008299997076392174, 0.028008105233311653, 0.008973538875579834, -0.014986300840973854, -0.009534823708236217, -0.028639549389481544, -0.006275864318013191, -0.014691625721752644, -0.02739069238305092, -0.039823148399591446, -0.01257979217916727, -0.008615720085799694, -0.020767532289028168, 0.007556295022368431, -0.026506667956709862, 0.02107623964548111, -0.03766220062971115, 0.011786977760493755, -0.005844376515597105, -0.01067844033241272, -0.03457513451576233, 0.002760818926617503, 0.03662382438778877, 0.01130988635122776, 0.031768713146448135, 0.008889345452189445, 0.04610953480005264, 0.018648682162165642, 0.02643650770187378, -0.03917767107486725, 0.03611866757273674, -0.0003560649638529867, -0.001148002571426332, 0.025271842256188393, -0.01916787214577198, -0.026169897988438606, -0.024065079167485237, -0.0004867390380240977, 0.0009226116817444563, -0.004339431878179312, -0.021960262209177017, 0.06045036017894745, 0.003143194131553173, 0.008896362036466599, 0.007009042426943779, 0.018550457432866096, 0.00032515046768821776, -0.008278949186205864, 0.006275864318013191, -0.015968548133969307, -0.010608280077576637, -0.006560014560818672, -0.023475730791687965, -0.008068467490375042, -0.00018570628890302032, -0.0030397071968764067, -0.000292920449282974, -0.013014787808060646, 0.023503795266151428, 0.017652403563261032, 0.0019434482092037797, 0.031656455248594284, 0.0007708893972449005, 0.03123549185693264, -0.0011032752227038145, -0.006560014560818672, -0.015168718062341213, 0.013379623182117939, -0.00805443525314331, 0.01580016314983368, 0.013400671072304249, -0.0021504219621419907, 0.007654519751667976, -0.011562463827431202, -0.024065079167485237, 0.021918166428804398, -0.004069313872605562, -0.00516031077131629, -0.013597121462225914, 0.015337103977799416, 0.009499742649495602, 0.002780113136395812, -0.016810474917292595, -0.029916472733020782, -0.04501502960920334, 0.01699289306998253, 0.008819185197353363, -0.00576369185000658, -0.013983003795146942, -0.0013611153699457645], "71f70f07-2860-4a61-b3a1-372762fedfb8": [-0.025871658697724342, -0.015281999483704567, 0.008668777532875538, 0.004635634366422892, 0.008151344954967499, 0.020257864147424698, -0.008484486490488052, -0.03192491829395294, -0.0026155184023082256, -0.016912268474698067, 0.02578660286962986, 0.02717587538063526, -0.032747142016887665, -0.003618488321080804, -0.03887128084897995, -0.005011305212974548, -0.0015257190680131316, 0.01440307218581438, 0.017351731657981873, -0.023305758833885193, 0.009108241647481918, 0.020144453272223473, -0.020683150738477707, -0.029061315581202507, -0.018599241971969604, -0.008527015335857868, 0.03407970815896988, -0.049276649951934814, 0.0197900477796793, -0.0005227492656558752, 0.01685556396842003, 0.0202436875551939, 0.0003295978531241417, -0.03527051582932472, -0.00863333698362112, 0.005181420128792524, -0.0003823158040177077, -0.005564178805798292, 0.009930464439094067, -0.012616864405572414, -0.0028334783855825663, 0.0003034604014828801, 0.020654799416661263, -0.011319736950099468, -0.04267051815986633, 0.0028068977408111095, 0.016515333205461502, -0.0197900477796793, -0.0011553645599633455, 0.006301343906670809, -0.009675292298197746, 0.02784215845167637, -0.023249052464962006, -0.010178549215197563, -0.008881421759724617, 0.00662030978128314, -0.003019541734829545, 0.008810540661215782, 0.0021866867318749428, -0.012319162487983704, 0.0404873751103878, 0.0032835742458701134, -0.055003855377435684, 0.01454483438283205, 0.017493493854999542, -0.016132574528455734, 0.01428966224193573, 0.0309609342366457, -0.0071873595006763935, -0.013013798743486404, 0.0197758711874485, 0.01703985407948494, -0.013389470055699348, -0.0014149671187624335, 0.023078937083482742, -0.005145979579538107, 0.0029344840440899134, 0.007612647023051977, -0.009455559775233269, 0.022242538630962372, 0.016968972980976105, 0.00944847147911787, -0.008534103631973267, 0.03356936573982239, 0.017947135493159294, -0.02415633387863636, -0.015182765200734138, -0.00024985644267871976, -0.007442532107234001, -0.024283919483423233, 0.008349812589585781, -0.005744926165789366, 0.006191478110849857, 0.009179122745990753, -0.009788702242076397, -0.005057377740740776, 0.0018136742291972041, 0.006652206182479858, -0.006701822858303785, -0.04111113026738167, 0.0005338244955055416, 0.0037460746243596077, -0.023121466860175133, -0.0077827624045312405, -0.02755863405764103, 0.0050183930434286594, 0.002470211824402213, 0.010362840257585049, -0.002666907384991646, -0.0046781632117927074, -0.05097780004143715, 0.048567838966846466, 0.0019492346327751875, -0.0030815626960247755, -0.046895042061805725, -0.005323182325810194, -0.006205654237419367, -0.00781820248812437, -0.01587740145623684, -0.007995406165719032, 0.024184685200452805, 0.03356936573982239, 0.022270891815423965, -0.00942720752209425, 0.005156611558049917, 0.01545211486518383, -0.04128124564886093, -0.006513987667858601, -0.005181420128792524, -0.010171460919082165, 0.02666552923619747, 0.006308432202786207, 0.017422612756490707, -0.014459776692092419, -0.03617779538035393, 0.008810540661215782, -0.023163994774222374, -0.0071129342541098595, -0.04547741636633873, 0.006173757836222649, 0.004823469556868076, 0.020073572173714638, -0.03436323255300522, -0.020824914798140526, -0.020541388541460037, 0.035639096051454544, 0.0035635551903396845, 0.0016727977199479938, -0.0004088962741661817, -0.006808144971728325, -0.0056882211938500404, -0.023816103115677834, 0.018145602196455002, 0.002269972348585725, -0.005333814769983292, -0.009363414719700813, 0.045817647129297256, 0.0018730373121798038, -0.014048665761947632, -0.005539370235055685, -0.011950580403208733, 0.03220844268798828, -0.009625675156712532, -0.013042151927947998, 0.02509196475148201, 0.018046367913484573, 0.00756303034722805, -0.029713423922657967, 0.011504027992486954, -0.017536023631691933, -0.0027643691282719374, 0.020357098430395126, -0.04045902192592621, 0.012730274349451065, 0.010568395256996155, 0.012531806714832783, 0.030507294461131096, -0.018358245491981506, -0.024737559258937836, 0.0010880273766815662, 0.01946399360895157, -0.0022026351653039455, 0.026084303855895996, 0.03663143515586853, 0.004143009427934885, -0.03453334793448448, 0.013843109831213951, -0.039551742374897, 0.020754031836986542, -0.019761694595217705, -0.0008589922799728811, 0.01498429849743843, -0.002998277312144637, 0.016628744080662727, -0.5783910751342773, -0.0223417729139328, -0.02672223374247551, 0.008130080066621304, 0.03793564811348915, 0.017252499237656593, 0.0051885079592466354, 0.0031364955939352512, -0.008314372040331364, 0.028366679325699806, -0.028239093720912933, 0.0067478958517313, -0.006715999450534582, -0.0003949415113311261, 0.03793564811348915, -0.01149694062769413, -0.001608118531294167, -0.020754031836986542, -0.014743302017450333, 0.005319638643413782, -0.03226514905691147, 0.023745222017169, -0.03226514905691147, 0.015239470638334751, 0.004437166731804609, -0.02062644623219967, -0.02755863405764103, 0.002659819321706891, 0.007194447796791792, 0.007024332880973816, -0.03904139623045921, 0.024042923003435135, -0.018032193183898926, 0.0028901833575218916, 0.055882785469293594, 0.0179187823086977, -0.046526458114385605, 0.024893498048186302, 0.04346438869833946, 0.04153641685843468, -0.020598093047738075, -0.024652501568198204, -0.012694833800196648, -0.012134871445596218, 0.006808144971728325, 0.010369928553700447, 0.013297324068844318, 0.0017968398751690984, 0.019534874707460403, -0.033682774752378464, 0.010837744921445847, 0.0069428193382918835, -0.0033136988058686256, -0.01773449033498764, 0.0022557959891855717, 0.0027165242936462164, 0.05460692197084427, -0.02523372881114483, -0.005720117595046759, -0.015792343765497208, 0.012765714898705482, 0.0028954993467777967, -0.0015425534220412374, -0.01358793769031763, 0.002142386045306921, -0.002693487796932459, 0.006361593026667833, -0.004352109506726265, -0.014360543340444565, -0.0207115039229393, 0.0045151361264288425, 0.00998008158057928, 0.014955945312976837, 0.01548046711832285, 0.013354029506444931, -0.0002137512929039076, 0.03342760354280472, 0.0037106338422745466, -0.008888510055840015, 0.009143682196736336, 0.0018925296608358622, 0.00478448485955596, -0.002744876779615879, -0.009937552735209465, 0.0024188230745494366, -0.009483912028372288, -0.013105944730341434, -0.032747142016887665, 0.001708238385617733, -0.013857286423444748, 0.00944847147911787, 0.022029895335435867, -0.011319736950099468, -0.02597089298069477, 0.013325676321983337, 0.0005010418826714158, 0.0016072324942797422, -0.019662460312247276, 0.016302689909934998, -0.02667970582842827, -0.028012273833155632, -0.010653452947735786, -0.004865998402237892, 0.01624598540365696, 0.04459848627448082, 0.035072047263383865, -0.017762843519449234, 0.01102912425994873, 0.015281999483704567, -0.020824914798140526, 0.006857761647552252, -0.016827210783958435, -0.012616864405572414, -0.0009010779904201627, 0.011879699304699898, -0.035213809460401535, 0.021377786993980408, 0.0104762502014637, 0.0174509659409523, 0.006560060661286116, 0.04584599658846855, 0.022228362038731575, 0.007974141277372837, -0.014927593059837818, 0.015083531849086285, 0.01997433789074421, 0.023192347958683968, -0.013658818788826466, -0.0053550791926681995, -0.00250742444768548, 0.019435640424489975, -0.024411505088210106, 0.01936475932598114, -0.022214187309145927, -0.0040827603079378605, -0.012503454461693764, 0.013913990929722786, -0.007357474882155657, 0.016642918810248375, 0.02126437798142433, -0.03938162699341774, -0.009994257241487503, 0.04170653223991394, 0.0029823288787156343, -0.03280384838581085, -0.049333356320858, -0.013765140436589718, 0.022370126098394394, 0.02034292183816433, -0.008271843194961548, -0.021817252039909363, -0.020371273159980774, -0.014473953284323215, 0.020513037219643593, -0.019421465694904327, -0.01601916365325451, -0.003994158934801817, -0.0158206969499588, -0.0032445895485579967, -0.020371273159980774, -0.01084483228623867, 0.02364598773419857, -0.02360345982015133, 0.03132951632142067, -0.012815332040190697, -0.02168966457247734, -0.01012184377759695, 0.0050432016141712666, -0.02370269224047661, -0.023249052464962006, 0.012170311994850636, -0.013602113351225853, 0.0010375244310125709, 0.03430652990937233, -0.011142534203827381, -0.0018181042978540063, -0.00863333698362112, -0.001401676912792027, -0.016770506277680397, -0.023915337398648262, -0.014261309057474136, 9.070586384041235e-05, -0.03337089717388153, 0.0067514399997889996, 0.014941769652068615, 0.03773718327283859, 0.008179697208106518, 0.0005670500686392188, -0.05111956223845482, 0.010128932073712349, -0.039409980177879333, 0.046753279864788055, -0.0070172445848584175, 0.005089274607598782, 0.01796131022274494, 0.022086599841713905, 0.009016096591949463, 0.013261883519589901, 0.0069428193382918835, 0.017209969460964203, 0.017280850559473038, 0.025673191994428635, -0.005507473833858967, 0.015849050134420395, 0.003115231404080987, -0.03220844268798828, 0.013077592477202415, -0.02996859699487686, 0.0015700198709964752, -0.01247510127723217, 0.01538123283535242, -0.03240691125392914, -0.014559010975062847, -0.016132574528455734, -0.006652206182479858, 0.01964828558266163, -0.0032144649885594845, 0.005036113318055868, -0.0031701643019914627, 0.018443303182721138, -0.0069215549156069756, -0.007240520790219307, 0.004954599775373936, 0.0200168676674366, -0.0027253844309598207, 0.026509590446949005, 0.01119215041399002, 0.006946363486349583, 0.002053784439340234, -0.028508441522717476, 0.004398182034492493, -0.0050432016141712666, 0.011709583923220634, -0.017394261434674263, 0.004267051815986633, -0.04593105614185333, 0.01852836087346077, -0.011688319966197014, 0.01634521782398224, 0.0013024430954828858, 0.014785830862820148, -0.02109426259994507, -0.005075098015367985, -0.004773852881044149, 0.010759775526821613, -0.009845406748354435, 0.03671649098396301, 0.012602687813341618, -0.04910653457045555, -0.009590234607458115, -0.025772426277399063, 0.027728747576475143, -0.009264180436730385, 0.02666552923619747, 0.009654027409851551, -0.013658818788826466, 0.03240691125392914, 0.018783533945679665, 0.008697130717337132, 0.03691495954990387, 0.025247903540730476, 0.02034292183816433, 0.014516482129693031, 0.05474868416786194, 0.03546898066997528, -0.025290433317422867, -0.018599241971969604, 0.00709875812754035, -0.012723186053335667, 0.0035954518243670464, -0.004816381726413965, -0.01102912425994873, 0.016231808811426163, -0.0027696851175278425, 0.018783533945679665, 0.0015983723569661379, 0.03430652990937233, 0.04386132210493088, 0.021292729303240776, 0.007400003261864185, -0.02462415024638176, -0.024326447397470474, 0.0335126593708992, 0.012255369685590267, -0.0017755755688995123, 0.01991763338446617, -0.01480000652372837, 0.0109369782730937, -0.009809966199100018, 0.0260701272636652, 0.003336735302582383, 0.005032569169998169, -0.004890806972980499, -0.013531232252717018, -0.013779317028820515, -0.01515441294759512, 0.023546753451228142, -0.02360345982015133, 0.0019386024214327335, -0.02476591244339943, -0.005053833592683077, -0.029118021950125694, -0.024567443877458572, -0.020130276679992676, 0.05018392950296402, 0.02099502831697464, -0.011071653105318546, 0.008108816109597683, -0.003326103091239929, -0.0014929365133866668, 0.0001680107379797846, -0.0030230856500566006, 0.009689467959105968, 0.018329894170165062, -0.0018322805408388376, 0.024454034864902496, 0.013694259338080883, -0.02564483880996704, -0.016160927712917328, 0.006113508716225624, -0.015537171624600887, -0.023589283227920532, -0.04459848627448082, 0.019067058339715004, -0.0563080720603466, 0.04734868183732033, -0.0053763436153531075, 0.007825290784239769, -0.0151260606944561, 0.011908051557838917, -0.036007679998874664, -0.0028476545121520758, 0.008555367588996887, -0.010830656625330448, 0.010866097174584866, -0.008243490010499954, -0.005170787684619427, -0.00870421901345253, 0.034193120896816254, 0.020754031836986542, 0.009356326423585415, -0.002601342275738716, -0.007527589797973633, -0.01777702011168003, -0.0010322083253413439, -0.02625441923737526, 0.028040625154972076, 0.0017897518118843436, -0.011815905570983887, 0.009462648071348667, -0.01433927845209837, 0.021491197869181633, -0.011156709864735603, -0.005011305212974548, -0.01657203771173954, 0.001168654765933752, 0.011341001838445663, 0.005670500919222832, -0.0010508146369829774, 0.01959157921373844, -0.01161035057157278, 0.043407682329416275, -0.009377590380609035, 0.00261197448708117, -0.0019439185271039605, 0.03858775645494461, 0.010093491524457932, 0.001507112756371498, 0.007162551395595074, 0.003570643486455083, 0.027530280873179436, 0.024028746411204338, 0.019534874707460403, -0.012524718418717384, 0.004362741485238075, 0.020839089527726173, -0.06333949416875839, -0.009420119225978851, 0.006067435722798109, 0.03609273582696915, -0.02667970582842827, -0.010830656625330448, 0.014261309057474136, -0.005854791961610317, 0.0010596747742965817, -0.01363755390048027, -0.00044367238297127187, 0.0037318982649594545, 0.0027944936882704496, -0.021519551053643227, -0.001766715431585908, -0.01526782289147377, -0.016331041231751442, -0.007967053912580013, -0.024680854752659798, -0.02015862986445427, -0.013899815268814564, -0.0001306873164139688, -0.013318588957190514, 0.02387280762195587, 0.0065813250839710236, -0.007116478402167559, -0.0183865986764431, 0.025219552218914032, -0.01913793943822384, 0.0076693519949913025, -0.03453334793448448, -0.0151260606944561, 0.01038410421460867, 0.00979578960686922, -0.00019448045350145549, -0.025446372106671333, -0.021335259079933167, -8.998597331810743e-05, -0.009781613945960999, 0.02313564345240593, 0.010185636579990387, 0.029032964259386063, 0.033767830580472946, -0.012666480615735054, 0.006000098772346973, 0.027062464505434036, -0.010114755481481552, -0.0027094362303614616, 0.0167563296854496, -0.01289330143481493, -0.003898469265550375, -0.004756132606416941, 0.016699625179171562, 0.03249197080731392, 0.028990434482693672, 0.0038346759974956512, 0.018046367913484573, 0.005627972073853016, 0.038049060851335526, 0.00041753490222617984, 0.020697327330708504, 0.01600498892366886, 0.011851346120238304, 0.021562078967690468, -0.01219157688319683, 0.014296749606728554, -0.013417822308838367, -0.015834873542189598, -0.005436592735350132, -0.02495020255446434, 0.018358245491981506, -1.8094102415489033e-05, -0.00510699488222599, 0.03294561058282852, -0.020229510962963104, -0.014757477678358555, -0.04153641685843468, 0.022922998294234276, 0.005851247813552618, 0.006754984147846699, -0.001841140678152442, -0.0353839248418808, -0.005681132897734642, -0.0014690140960738063, -0.01569311134517193, -0.022781236097216606, -0.02126437798142433, -0.008782188408076763, 0.02276705950498581, -0.025545606389641762, 0.0011553645599633455, -0.0012076394632458687, 0.025332961231470108, -0.0265379436314106, 0.015140237286686897, -0.002845882438123226, 0.02360345982015133, 0.004791573155671358, -0.004036687780171633, 0.010228165425360203, -0.033399250358343124, -0.007775674108415842, 0.009384678676724434, -0.016954796388745308, -0.008307283744215965, 0.016331041231751442, 0.004738412331789732, 0.00478448485955596, 0.04128124564886093, 0.007059773430228233, 0.001290038926526904, 0.01918046921491623, -0.0006419183919206262, -0.018655946478247643, 0.01501265075057745, 0.0014947085874155164, -0.022426830604672432, -0.0006157809402793646, -0.025999246165156364, 0.005489753559231758, 0.022285068407654762, 0.022866293787956238, -0.0072157122194767, 0.024468211457133293, -0.028281621634960175, -0.011879699304699898, -0.0042989482171833515, -0.043549444526433945, -0.00986667163670063, 0.01750767044723034, -0.007293681614100933, 0.019010353833436966, -0.02717587538063526, -0.009356326423585415, -0.00394454225897789, 0.001300671137869358, 0.019704990088939667, 0.00042661657789722085, 0.013247706927359104, -0.011071653105318546, 0.01375805214047432, -0.006960539612919092, -0.007513413671404123, -0.018542537465691566, -0.007166095077991486, 0.006418297998607159, 0.005440136417746544, 0.030790818855166435, -0.005216860678046942, 0.037255190312862396, -0.00570239732041955, 0.0349019318819046, -0.015806520357728004, -0.017011502757668495, -0.05403987318277359, 0.003813411807641387, -0.009639850817620754, -0.00944847147911787, -0.022086599841713905, -0.021250201389193535, -0.01893947273492813, -0.043691206723451614, 0.015763992443680763, 0.010851920582354069, -0.01899617724120617, 0.004181994125247002, 0.014927593059837818, -0.013247706927359104, -0.003008909523487091, -0.005542914383113384, 0.04584599658846855, -0.0036255763843655586, 0.03410806134343147, 0.040515728294849396, 0.001132328063249588, -0.028976257890462875, -0.03836093842983246, -0.0045080482959747314, 0.022554416209459305, -0.0009090521489270031, 0.0036220322363078594, -0.005989466328173876, -0.024539092555642128, 0.02356093004345894, 0.017748666927218437, -0.008945214562118053, -0.038616109639406204, 0.013410734012722969, 0.025871658697724342, 0.017677785828709602, -0.01399196032434702, 0.0017800056375563145, -0.03385289013385773, 0.017153264954686165, -0.023206524550914764, -0.018542537465691566, 0.010738510638475418, -0.016543686389923096, 0.018443303182721138, -0.013715523295104504, 0.026098480448126793, 0.02122184820473194, 0.004465519450604916, 0.006106420420110226, -0.00171355449128896, 0.003639752743765712, 0.0016816578572615981, 0.03433488309383392, -0.007013700436800718, 0.01848583295941353, -0.003072702558711171, 0.010582571849226952, 0.027076641097664833, -0.008661690168082714, 0.01107874047011137, -0.004965232219547033, 0.005635059904307127, 0.05287741869688034, -0.021959014236927032, -0.0017729174578562379, -0.0353839248418808, -0.019123762845993042, -0.0010880273766815662, -0.00452576857060194, -0.0057413820177316666, -0.007903260178864002, -0.007236976642161608, -0.020484684035182, 0.04193335399031639, -0.007293681614100933, -0.03277549520134926, -0.007648088037967682, -0.008831804618239403, 0.02238430082798004, -0.025077790021896362, 0.0052062286995351315, 0.013786405324935913, -0.02262529730796814, -0.02015862986445427, 0.011227590963244438, -0.004738412331789732, 0.008094639517366886, 0.009299620985984802, -0.018188131973147392, -0.012623951770365238, 0.03402300551533699, -0.030847523361444473, 0.015508819371461868, -0.0005670500686392188, 0.0026952598709613085, 0.0004691453359555453, 0.008250578306615353, -0.017932958900928497, -0.010199813172221184, 0.009327973239123821, 0.00033491395879536867, -0.0028281621634960175, -0.0015257190680131316, 0.0066309417597949505, 0.02717587538063526, -0.0009143682545982301, 0.042840633541345596, -0.008534103631973267, 0.03697166591882706, -0.007286593317985535, -0.0034625495318323374, -0.0019651828333735466, -0.012758626602590084, 0.00594693748280406, 0.012616864405572414, 0.04230193421244621, -0.023447521030902863, 0.020130276679992676, -0.009228739887475967, -0.0022097232285887003, 0.009937552735209465, -0.032888904213905334, -0.027998097240924835, 0.0051885079592466354, 0.022682003676891327, -0.012340427376329899, -0.007952877320349216, 0.006914466619491577, -0.031527984887361526, -0.02568736858665943, -0.0013671222841367126, -0.0007974141626618803, -0.0158206969499588, 0.008037935011088848, 0.0011039755772799253, 0.010596748441457748, -0.0025109685957431793, -0.04924830049276352, -0.04068584367632866, 0.0013830706011503935, -0.034703463315963745, -0.037396952509880066, -0.039551742374897, -0.006811689119786024, 0.011014947667717934, 0.033172428607940674, -0.04323756694793701, -0.034646760672330856, -0.03453334793448448, -0.00893812719732523, -0.0005608479841612279, 0.005216860678046942, 0.02150537446141243, 0.02438315376639366, 0.00034178057103417814, 0.0035139385145157576, 0.008449045941233635, 0.009937552735209465, 0.004919159226119518, 0.008243490010499954, -0.0021707385312765837, -0.04808584600687027, -0.005798086989670992, -0.015608053654432297, -8.583277667639777e-05, -0.01969081349670887, 0.0169831495732069, 0.005642148200422525, -0.012786978855729103, 0.0283950325101614, 0.008853069506585598, -0.022965528070926666, -0.016770506277680397, -0.005294830072671175, 0.0007043824880383909, -0.013233531266450882, 0.0031400397419929504, 0.016189279034733772, -0.04034561291337013, 0.013226442970335484, 0.019889282062649727, -0.005904408637434244, -0.014700773172080517, 0.0021246657706797123, 0.004954599775373936, 0.01501265075057745, -0.006822321098297834, -0.03660308197140694, 0.0014672420220449567, -0.02686399780213833, -0.006141860969364643, 0.003597223898395896, -0.0024081908632069826, 0.022752884775400162, 0.024780089035630226, -0.001998851541429758, 0.01801801659166813, -0.005245212931185961, 0.005415328312665224, -0.050807684659957886, -0.006187933962792158, 0.006815233267843723, -0.0144314244389534, 0.003813411807641387, 0.006758527830243111, 0.045590825378894806, -0.0019244261784479022, 0.015579700469970703, 0.015905754640698433, -0.00017111179477069527, -0.014700773172080517, 0.013318588957190514, 0.011333913542330265, -0.03422147035598755, -0.0006357163074426353, -0.012779890559613705, 0.0009728453005664051, 0.0009799334220588207, -0.03742530569434166, 0.028239093720912933, -0.026041774079203606, 0.0023284493945538998, -0.0021352979820221663, -0.013183914124965668, -0.030280474573373795, -0.008590808138251305, 0.016331041231751442, 0.011596173979341984, 0.0176919624209404, 0.18281693756580353, -0.029344841837882996, -0.00919329933822155, 0.012666480615735054, 0.021661313250660896, -0.005075098015367985, 0.0390981025993824, 0.01679885759949684, 0.02066897600889206, -0.006836497224867344, -0.0057626464404165745, 0.027034111320972443, -0.013389470055699348, 0.0026846276596188545, 0.024496562778949738, -0.017209969460964203, -0.0674789547920227, -0.017932958900928497, -0.01996016316115856, -0.018826061859726906, 0.010058050975203514, -0.013453262858092785, -0.0060071866028010845, -0.013049240224063396, 0.013098856434226036, -0.01259559951722622, 0.002824618248268962, -0.011532381176948547, 0.00966111570596695, 0.028706910088658333, -0.009554794058203697, -0.014183339662849903, -0.004167817998677492, 0.008697130717337132, -0.0186134185642004, -0.025063613429665565, -0.017932958900928497, 0.007974141277372837, 0.026467062532901764, 0.017521847039461136, -0.010072226636111736, -0.026793116703629494, 0.02401456981897354, -0.022781236097216606, -0.01820230670273304, -0.004036687780171633, -0.0025038805324584246, 0.0026314668357372284, -0.005096362438052893, 0.0200168676674366, -0.017224146053195, 0.0022398477885872126, 0.03952338919043541, 0.0015948283253237605, -0.014062841422855854, -0.004430078901350498, -0.004933335818350315, -0.020683150738477707, -0.0006047057686373591, -0.004288316238671541, -0.013566672801971436, 0.011107093654572964, 0.006960539612919092, 0.055372439324855804, -0.013807669281959534, 0.0007008384563960135, -0.0016914040315896273, -0.013906902633607388, 0.015763992443680763, 0.0013192774495109916, -0.005982378032058477, 0.0019279702100902796, 0.008682954125106335, -0.0021335259079933167, -0.042245231568813324, -0.030507294461131096, 0.028040625154972076, 0.00047446141252294183, -0.0076693519949913025, 0.03291725739836693, -0.004788029007613659, 0.0032924343831837177, -0.005415328312665224, -0.005518105812370777, -0.026367828249931335, -0.008321459405124187, -0.014225868508219719, 0.0019545506220310926, -0.023674340918660164, -0.000793870072811842, -0.016444452106952667, 0.0028317063115537167, -0.006655750330537558, -0.01084483228623867, -0.01726667396724224, -0.009405942633748055, -0.01324061956256628, 0.0022876926232129335, -0.018074721097946167, 0.02945825085043907, -0.017295027151703835, 0.06129811331629753, 0.020640622824430466, 0.023433344438672066, -0.0050928182899951935, -0.00237983837723732, 0.01610422134399414, 0.015494642779231071, 0.023759398609399796, 0.006028451025485992, -0.007485060952603817, -0.03759542107582092, 0.000687548192217946, 0.01824483647942543, -0.02848009020090103, -0.009930464439094067, -0.009817054495215416, -0.0035848196130245924, -0.012446749024093151, -0.029855186119675636, 0.03980691358447075, -0.012439660727977753, 0.0061773015186190605, -0.006776248570531607, -0.005968201905488968, 0.0002775444299913943, -0.006967627909034491, 0.015763992443680763, -0.012035638093948364, -0.008271843194961548, 0.024893498048186302, -0.003200288861989975, 0.0028795511461794376, -0.02798392064869404, -0.0047525884583592415, 0.008838892914354801, 0.016501156613230705, -0.015296176075935364, -0.025077790021896362, 0.01338238175958395, -0.014176251366734505, 0.01212778314948082, 0.027629515156149864, 0.0018340526148676872, 0.017989663407206535, 0.012269546277821064, -0.010816480033099651, 0.044995423406362534, -8.83246957528172e-06, 0.0021193495485931635, -0.03923986479640007, -0.02611265517771244, -0.007120022550225258, -0.0034466013312339783, 0.014587363228201866, 0.014154987409710884, 0.003799235448241234, -0.022724531590938568, 0.0009134822175838053, 0.0038488523568958044, -0.026977406814694405, -0.0010587888536974788, 0.01382184587419033, -0.018372422084212303, -0.027728747576475143, -0.041593123227357864, -0.17998169362545013, 0.03192491829395294, 0.03748200833797455, -0.021448668092489243, 0.0034412851091474295, -0.016331041231751442, -0.011114181019365788, -6.888772622914985e-05, -0.019563227891921997, -0.012205752544105053, 0.008215137757360935, 0.011227590963244438, -0.01667127199470997, 0.0034306528978049755, 0.0008572202059440315, 0.002899043494835496, -0.033541012555360794, 0.035724155604839325, 0.016401924192905426, 0.020186983048915863, 0.033030666410923004, -0.013963608071208, -0.00012946904462296516, 0.0006476775160990655, -0.008562455885112286, 0.02044215425848961, -0.007240520790219307, 0.028267446905374527, 0.005036113318055868, -0.048936422914266586, -0.004596649669110775, 0.004628546070307493, 0.009349238127470016, 0.02531878650188446, 0.00898774340748787, -0.01498429849743843, 0.022100776433944702, 0.0018446847097948194, -0.019889282062649727, 0.018414951860904694, 0.019194645807147026, 0.034419938921928406, 0.020612269639968872, -0.008697130717337132, -0.014502305537462234, 0.04074254631996155, 0.006187933962792158, -0.004153641872107983, 0.02020115964114666, -0.012382956221699715, 0.0038275879342108965, 0.0027112080715596676, 0.028919553384184837, -0.023858631029725075, -0.013800580985844135, -0.007212168071419001, -0.008363988250494003, 0.0005874284543097019, 0.01614675112068653, -0.008179697208106518, -0.021618783473968506, -0.027034111320972443, 0.010036786086857319, -0.011681231670081615, -0.02238430082798004, -0.01759272813796997, -0.01927970163524151, 0.03773718327283859, -0.009788702242076397, -0.02485097013413906, -0.015494642779231071, -0.021108439192175865, -0.015891578048467636, 0.012836595997214317, 0.02965671941637993, 0.00641120970249176, -0.02774292416870594, 0.00031763664446771145, 0.018514184281229973, 0.012227017432451248, -0.010419544763863087, 0.04357779771089554, -0.008888510055840015, 0.006163125392049551, 0.02109426259994507, 0.015196941792964935, 0.014700773172080517, 0.007116478402167559, -0.018259013071656227, -0.02341916784644127, 0.014913416467607021, 0.014814183115959167, -0.016628744080662727, -0.0032073769252747297, -0.003873660694807768, 0.021632960066199303, -0.009639850817620754, 0.018372422084212303, -0.009852495044469833, -0.010462073609232903, 0.014644067734479904, -0.003581275697797537, -0.024368977174162865, 0.01806054450571537, -0.0015133148990571499, 0.006407666020095348, -0.00017731389380060136, 0.03175480291247368, 0.02755863405764103, -0.0039126453921198845, 0.004880174528807402, 0.01940728910267353, 0.020498860627412796, 0.03989197313785553, -0.0088459812104702, 0.009221651591360569, -0.021803075447678566, -0.02811150811612606, 0.012269546277821064, 0.001317505375482142, -0.019818399101495743, -0.010625100694596767, 0.009207475930452347, 0.05137473717331886, -0.03787894546985626, -0.01207816693931818, -0.07246899604797363, -0.032747142016887665, 0.008831804618239403, 0.025843307375907898, -0.022639473900198936, 0.006134773138910532, -0.0026509591843932867, 0.04255710914731026, -0.018826061859726906, 0.03243526443839073, 0.002179598668590188, -0.018925296142697334, -0.005266477353870869, 0.0017729174578562379, -0.003685825504362583, 0.0004554120823740959, -0.006304888054728508, -0.02717587538063526, -0.01801801659166813, 0.03348430618643761, -0.00015472050290554762, -0.04737703502178192, 0.016189279034733772, -0.02276705950498581, 0.004040231928229332, 0.005734293721616268, -0.018216483294963837, 0.013141385279595852, 0.0006317291990853846, -0.008505751378834248, 0.027998097240924835, -0.017890429124236107, 0.008973567746579647, -0.022086599841713905, -0.004376917611807585, -0.015437938272953033, -0.025800777599215508, -0.00921456329524517, 0.012843684293329716, -0.02564483880996704, 0.0109369782730937, 0.018726829439401627, -0.002528688870370388, 0.018259013071656227, -0.034788522869348526, -0.004167817998677492, -0.01889694295823574, 0.029344841837882996, 0.01468659657984972, -0.019520698115229607, -0.019109588116407394, -0.015934107825160027, -0.014658244326710701, -0.014091194607317448, 0.007676440291106701, 8.007367432583123e-05, 0.011234679259359837, 0.034051354974508286, -0.013665907084941864, 0.010986595414578915, -0.014126635156571865, 0.014672420918941498, -0.022724531590938568, 0.018358245491981506, 0.02089579589664936, -0.009746173396706581, -0.0010995455086231232, -0.03186821565032005, 0.01480000652372837, -0.022270891815423965, -0.021406140178442, 0.01002969779074192, 0.005727205891162157, 0.014885064214468002, -0.023901160806417465, -0.036291204392910004, -0.013212266378104687, -0.01913793943822384, 0.06084447354078293, -0.022738708183169365, -0.013098856434226036, -0.007534677628427744, -0.013453262858092785, -0.02485097013413906, 0.014346366748213768, -0.01624598540365696, 0.0012838367838412523, -0.009739085100591183, -0.01960575580596924, -0.026878172531723976, 0.00039095443207770586, 0.012446749024093151, 0.007633911445736885, -0.007881996221840382, -0.008271843194961548, -0.006251727230846882, 0.028636028990149498, 3.405622919672169e-05, -0.004951056092977524, 0.014771654270589352, -0.026268593966960907, -0.02476591244339943, -0.07428356260061264, 0.03728354349732399, 0.011234679259359837, -0.010603836737573147, 0.0018021559808403254, 0.027870511636137962, 0.016657095402479172, -0.004883718676865101, 0.011737936176359653, 0.009122418239712715, -0.029032964259386063, -0.00038010074058547616, -0.006758527830243111, 0.0033863522112369537, -0.022355949506163597, -0.03932492062449455, 0.012134871445596218, -0.0004850936238653958, 0.02020115964114666, -0.0021778265945613384, -0.007959965616464615, -0.011014947667717934, 0.005663412623107433, 0.004185538273304701, -0.010532954707741737, 0.009122418239712715, -0.005961114075034857, 0.017380084842443466, 0.0054046958684921265, 0.025389667600393295, 0.018358245491981506, -0.033399250358343124, -0.0013724383898079395, 0.011808817274868488, 0.007584294769912958, 0.008810540661215782, 0.012843684293329716, 0.007881996221840382, 0.04388967528939247, -0.010412457399070263, -0.004663986619561911, -0.018500007688999176, -0.009576058015227318, -0.0057626464404165745, -0.017947135493159294, 0.002128209685906768, -0.022511888295412064, -0.01596245914697647, 0.028791967779397964, 0.018329894170165062, 0.021448668092489243, 0.006648662034422159, 0.015551348216831684, -0.030195416882634163, -0.017932958900928497, -0.0073291221633553505, 0.029826832935214043, 0.014126635156571865, -0.029911890625953674, 0.024496562778949738, 0.017578551545739174, -0.008271843194961548, 4.898005863651633e-05, 0.015211118385195732, -0.0069888923317193985, 0.010299046523869038, 0.015863224864006042, -0.0049227033741772175, 0.005167244002223015, -0.01324061956256628, -0.011014947667717934, 0.023518402129411697, -0.0009108241647481918, 0.0047986614517867565, 0.01173084881156683, 0.015253647230565548, 0.00858372077345848, 0.009845406748354435, -0.007265328895300627, 0.0019013897981494665, 0.02201571874320507, 0.006017819046974182, -0.013949431478977203, 0.01689809188246727, 0.0005701511399820447, -0.0020484684500843287, -0.038984693586826324, -0.01596245914697647, -0.020130276679992676, -0.013899815268814564, -0.0025198287330567837, 0.01828736439347267, -0.02062644623219967, 0.005503929685801268, 0.023390814661979675, -0.006496267393231392, -0.011851346120238304, -0.036007679998874664, 0.005447224713861942, 0.03779388591647148, 0.014771654270589352, -0.011532381176948547, -0.01879771053791046, -0.007070405408740044, -0.034986987709999084, -0.03620614856481552, -0.012205752544105053, -0.011645791120827198, -0.010299046523869038, -0.013318588957190514, 0.012460925616323948, 0.008045023307204247, -0.029628366231918335, 0.016543686389923096, -0.028508441522717476, 0.015849050134420395, 0.010362840257585049, -0.009937552735209465, -0.026467062532901764, 0.0006397033575922251, 0.02089579589664936, -0.012723186053335667, 0.03283219784498215, 0.019860928878188133, 0.04400308430194855, 0.032321855425834656, 0.0017100103432312608, -0.04774561524391174, 0.06441688537597656, 0.01073142234236002, -0.0021654225420206785, 0.004437166731804609, -0.006368681322783232, -0.019846752285957336, -0.0043733734637498856, -0.011114181019365788, 0.0059788343496620655, 0.014062841422855854, -0.013219354674220085, 0.09225904941558838, 0.002867146860808134, 0.005961114075034857, -0.015834873542189598, 0.0051849642768502235, -0.006861305795609951, 0.005613795481622219, 0.010306134819984436, -0.011397706344723701, -0.0003820942947641015, -0.010951154865324497, -0.014133723452687263, -0.02066897600889206, -0.007477972656488419, 0.010086403228342533, 0.007548854220658541, -0.00893812719732523, 0.03337089717388153, 0.010660541243851185, 0.015069355256855488, 0.030138710513710976, 0.008831804618239403, 0.0309609342366457, 0.028962083160877228, -0.011603262275457382, -0.020229510962963104, 0.020357098430395126, -0.004341477062553167, 0.011142534203827381, -0.020966676995158195, -0.002987645100802183, 0.015763992443680763, 0.0004974978510290384, -0.006326152477413416, 0.013417822308838367, 0.004461975302547216, -0.012666480615735054, -0.0012227017432451248, 0.03734024614095688, 0.014814183115959167, 0.01638774760067463, -0.027360165491700172, 0.00014962590648792684, -0.00910115335136652, 0.01796131022274494, 0.0012094115372747183, -0.011787553317844868, -0.0016435591969639063, 0.0025091965217143297], "8285f94c-d182-4f5e-b8ea-8916ebc54544": [-0.00987336691468954, -0.002403752878308296, -0.0010945192771032453, -0.025556238368153572, -0.017987122759222984, 0.010040948167443275, -0.008658397942781448, -0.004999526310712099, -0.009154160507023335, -0.014370147138834, -0.012401060201227665, 0.019481394439935684, 0.005202021449804306, 0.007080335170030594, -0.0004331381060183048, -0.025081424042582512, 0.006305268965661526, 0.005739680025726557, 0.010627484880387783, 0.001923700445331633, 0.0354156419634819, 0.012303303927183151, -0.011318759992718697, -0.02399214170873165, -0.015333742834627628, 0.028153758496046066, 0.018392112106084824, -0.021701855584979057, 0.022874929010868073, -0.0026970210019499063, 0.02589140273630619, -0.011200056411325932, 0.008162634447216988, -0.018336251378059387, 0.009475359693169594, -0.015501325018703938, 0.0029501395765691996, -0.005708258133381605, -0.0036763278767466545, -0.004119721706956625, 0.03376775234937668, -0.026170706376433372, 0.004531693644821644, 0.002459613373503089, -0.014537729322910309, 0.030053019523620605, -0.014579624868929386, -0.004021965432912111, -0.0014916533837094903, 0.036979738622903824, 0.005523219704627991, 0.008225478231906891, -0.030108880251646042, -0.03644906356930733, 0.01435618195682764, 0.007240934297442436, -0.01733076013624668, 0.004996035248041153, -0.022539764642715454, -0.03376775234937668, 0.017246969044208527, -0.009559150785207748, -0.008358146995306015, -0.020738258957862854, 0.008483833633363247, 0.0024980176240205765, -0.02636621706187725, 0.025500377640128136, 0.008337198756635189, 0.0042558819986879826, 0.04223063588142395, 0.025081424042582512, -0.024285409599542618, -5.820634032716043e-05, 0.029606133699417114, -0.003707749303430319, -0.01576666347682476, -0.017470411956310272, 0.004088299814611673, -0.0007820488535799086, 0.00788333173841238, -0.002299014013260603, 0.008043930865824223, -0.010173617862164974, 0.007925227284431458, 0.01759609952569008, -0.001810233574360609, 0.014928753487765789, 0.008414007723331451, -0.03125402331352234, -0.0008920244290493429, 0.015892349183559418, 0.031784698367118835, 0.018713312223553658, -0.013050439767539501, 0.010033966042101383, -0.0012184600345790386, 0.03075127676129341, 0.020808085799217224, -0.04929700866341591, 0.012408042326569557, 0.027511360123753548, -0.008812014944851398, -0.0010255662491545081, -0.0370914600789547, -0.016199583187699318, 0.024006105959415436, -0.021785646677017212, 0.0056873103603720665, -0.004831944592297077, -0.01624147780239582, 0.018769172951579094, -0.01545942947268486, -0.05370999872684479, -0.043878525495529175, 0.007743679918348789, 0.04047102853655815, -0.007317742798477411, -0.005484815686941147, -0.020235514268279076, 0.010285338386893272, 0.010418008081614971, 0.006273847073316574, -0.010376112535595894, -0.010054913349449635, -0.003815979463979602, -0.018224531784653664, 0.0008396551129408181, 0.009112265892326832, -0.03231537342071533, 0.021659959107637405, 0.002571334596723318, 0.010404042899608612, -0.0016889112303033471, -0.008951665833592415, -0.01523598749190569, 0.01268734596669674, 0.003555878298357129, -0.025332795456051826, -0.008763136342167854, 0.019900349900126457, 0.0004835435829591006, 0.007827471010386944, -0.011702802032232285, 0.009370621293783188, 0.015194091945886612, 0.004203512333333492, 0.006291303783655167, 0.011451429687440395, 0.014258425682783127, 0.0046922932378947735, 0.019593115895986557, -0.01685594581067562, -0.007408516015857458, 0.02636621706187725, 0.003025202313438058, 0.01226839143782854, 0.00866538006812334, -0.02110135369002819, -0.013448446989059448, 0.04954838007688522, 0.013176126405596733, 0.01579459384083748, -0.012024001218378544, -0.016087861731648445, 0.03463359177112579, -0.0018015053356066346, 0.00149514467921108, -0.0035331849940121174, 0.0008693310664966702, -0.006427464075386524, 0.03156125545501709, -0.026966718956828117, 0.009866383858025074, -0.03857176750898361, 0.01818263530731201, 0.002730188425630331, -0.005397533532232046, -0.010676363483071327, -0.012456920929253101, -0.0005188928917050362, -0.0206544678658247, 0.016283374279737473, -0.004856383427977562, -0.015990106388926506, -0.014537729322910309, 0.014858927577733994, -0.024676434695720673, 0.021632028743624687, 0.02017965354025364, 0.043710943311452866, 0.04474436491727829, 0.009510272182524204, 0.006542676594108343, -0.5907820463180542, -0.0028488922398537397, -0.0074015334248542786, 0.012505798600614071, 0.011186091229319572, 0.0293547622859478, 0.03136574476957321, 0.03047197498381138, -0.015878384932875633, 0.0194674301892519, -0.016059931367635727, -0.0007693929364904761, -0.017149213701486588, -0.009775610640645027, -0.012491833418607712, -0.038711417466402054, 0.02269338071346283, -0.04172789305448532, -0.01688387617468834, 0.006811505649238825, -0.01712128333747387, 0.023098371922969818, -0.02921511046588421, -0.001377313630655408, 0.00997112225741148, 0.02262355573475361, -0.026003124192357063, 0.010061896406114101, 0.022204600274562836, 0.03605803847312927, -0.027357744053006172, 0.017624029889702797, 0.026170706376433372, -0.018601590767502785, 0.03910244256258011, -0.004091791342943907, -0.022707346826791763, 0.019579151645302773, -0.007436446379870176, 0.042789243161678314, -0.004894787911325693, -0.024955736473202705, 0.018364181742072105, -0.004954139702022076, 0.017610063776373863, -0.0029449027497321367, 0.004800523165613413, -0.011486342176795006, 0.006856892257928848, -0.006361129228025675, -0.021855471655726433, -0.009056405164301395, 0.006912752985954285, -0.012324252165853977, 0.035583220422267914, 0.009510272182524204, 0.014188600704073906, -0.018056949600577354, -0.008309269323945045, -0.031952280551195145, -0.024215582758188248, 0.005509254522621632, 0.0005236933939158916, 0.0017290611285716295, -0.0110743697732687, 0.010285338386893272, -0.010362147353589535, 0.017651960253715515, -0.010145687498152256, -0.021185144782066345, -0.028991667553782463, -0.009272865019738674, -0.010578607209026814, -0.008232460357248783, 0.022023053839802742, 0.005072843749076128, 0.026086915284395218, 0.0018172161653637886, 0.002477069851011038, 0.002166345017030835, 0.006766119040548801, -0.013909297063946724, -0.01607389748096466, -0.012820014730095863, 0.01531977765262127, -0.01522202230989933, -0.01102549210190773, -0.014279373921453953, -0.005547659005969763, -0.003784557804465294, 0.0049262093380093575, 0.02167392522096634, 0.006940683349967003, 0.010369129478931427, 0.021771680563688278, 0.01103945728391409, -0.012044948525726795, -0.020710328593850136, 0.009258899837732315, -0.019341744482517242, -0.042146846652030945, -0.005191547330468893, 0.005732697434723377, -0.02408989705145359, 0.009964140132069588, 0.0014130993513390422, -0.04116928577423096, 0.024034036323428154, 0.043710943311452866, -0.00992224458605051, 0.0008597300038672984, -0.003704258007928729, -0.012303303927183151, 0.020640503615140915, -0.00523344287648797, -0.03991242125630379, -0.001035167369991541, 0.019271917641162872, 0.009789575822651386, 0.015026509761810303, 0.015194091945886612, 0.02062653750181198, 0.03904658183455467, 0.022023053839802742, 0.023321812972426414, 0.033656030893325806, 0.015026509761810303, -0.011639959178864956, -0.03432635962963104, -0.005914244335144758, 0.01068334560841322, 0.0071431780233979225, 0.010040948167443275, -0.01837814785540104, 0.014579624868929386, -0.002780812093988061, 0.03139367327094078, -0.006839436013251543, 0.03063955530524254, -0.00995715707540512, 0.001422700472176075, -0.012435972690582275, -0.005271846894174814, 0.02212080918252468, -0.02520710974931717, -0.010376112535595894, -0.013308795168995857, -0.019411569461226463, -0.025542274117469788, 0.013741714879870415, 0.009300795383751392, -0.013581115752458572, -0.019970174878835678, 0.03622562065720558, 0.007045422215014696, -0.020221548154950142, -0.007478341925889254, -0.003526202403008938, -0.011996070854365826, -0.0010168380104005337, 0.006420481484383345, -0.012449937872588634, -0.03605803847312927, 0.0278604906052351, -0.028628572821617126, -0.03332086652517319, -0.018489869311451912, 0.0080858264118433, -0.01590631529688835, -0.0290475282818079, -0.00807186122983694, -0.009831471368670464, -0.00534167280420661, 0.010641450062394142, 0.02422954887151718, -0.011632976122200489, 0.010117757134139538, 0.0025032544508576393, -0.00993620976805687, -0.007666871417313814, -0.00634367298334837, 0.00791824422776699, 0.001810233574360609, -0.011248935014009476, 0.03879520669579506, -0.017540238797664642, 0.007261882070451975, 0.013483359478414059, -0.017135249450802803, -0.002381059341132641, -0.008469868451356888, 0.037454552948474884, -0.0016059931367635727, -8.58093480928801e-05, 0.02198115922510624, 0.02415972389280796, 0.0013223259011283517, 0.010501798242330551, -0.0158644188195467, 0.040107931941747665, 0.020752225071191788, 0.004032439086586237, -0.003475578734651208, -0.013148196041584015, 0.03622562065720558, -0.028740294277668, 0.002091282280161977, -0.0012402805732563138, 0.028223583474755287, -0.011234969832003117, 0.011172126047313213, -0.018001088872551918, -0.02140858769416809, -0.0011809286661446095, 0.036979738622903824, -0.01068334560841322, -0.012100809253752232, 0.0009915261762216687, -0.00533469021320343, -0.0029326830990612507, 0.011304794810712337, 0.015529255382716656, -0.014956683851778507, -0.0022047492675483227, -0.016283374279737473, -0.007548167835921049, 0.014970649033784866, 0.028279444202780724, -0.007020982913672924, -0.035583220422267914, -0.03404705598950386, -0.0011006289860233665, -0.007045422215014696, 0.0020284391939640045, 0.046531904488801956, -0.03186849132180214, 0.0431523360311985, -0.011130230501294136, 0.022106844931840897, -0.023433534428477287, -0.00304440432228148, 0.007631958927959204, 0.009670872241258621, -0.025221075862646103, 0.024271443486213684, -0.005603519733995199, 0.027818594127893448, 0.012813032604753971, -0.018196601420640945, 0.03731490299105644, -0.02932683192193508, -0.0030147284269332886, 0.008281338959932327, 0.003784557804465294, 0.009196056053042412, -0.025598134845495224, 0.001827690051868558, 0.016115792095661163, 0.024592643603682518, 0.03016474097967148, 0.003836927004158497, 0.026827068999409676, -0.024508852511644363, 0.004402515944093466, 0.023126300424337387, -0.0010596063220873475, 0.0104808509349823, -0.018950719386339188, 0.02890787646174431, -0.01709335297346115, -0.015515290200710297, 0.0005620975862257183, 0.0060189832001924515, -0.021520307287573814, 0.003328944556415081, 0.0020284391939640045, 0.028740294277668, 0.0028017598669975996, 0.02537469193339348, -0.011088334955275059, -0.008539694361388683, -0.03982862830162048, 0.027022579684853554, 0.0018835506634786725, -0.009084335528314114, -0.018643485382199287, -0.002780812093988061, 0.006120230536907911, -0.03678422421216965, 0.033656030893325806, 0.0030636065639555454, 0.021310830488801003, -0.004056878387928009, 0.011912279762327671, 0.005020474083721638, 0.013343708589673042, 0.03530392050743103, -0.0068848226219415665, -0.01923002302646637, 0.01576666347682476, 0.024271443486213684, 0.0006794921937398612, 0.005638432689011097, -0.007869366556406021, 0.03938174620270729, 0.0030129828955978155, -0.0059875613078475, -0.011095318011939526, -0.012931736186146736, -0.01508237048983574, 0.013280864804983139, -0.010145687498152256, -4.5359487558016554e-05, -0.021771680563688278, 0.010271373204886913, -0.022176669910550117, 0.00842797290533781, 0.0030461500864475965, 0.011528237722814083, 0.006804523058235645, -0.02568192593753338, -0.029885437339544296, -0.032091934233903885, -0.01007586158812046, 0.0006101028411649168, -0.007492307107895613, -0.004315233789384365, -0.014139722101390362, -0.04144858941435814, -0.023251987993717194, -0.027036545798182487, -0.024103863164782524, -0.003609993262216449, -0.013748697936534882, -0.009112265892326832, -0.003896279027685523, 0.004158125724643469, -0.007359638344496489, 0.01814074069261551, 0.0113816037774086, -0.029159249737858772, -0.009196056053042412, -0.005149651784449816, -0.008455903269350529, 0.021925298497080803, 0.011716767214238644, -0.009775610640645027, 0.0025329305790364742, -0.023056475445628166, 0.0007851037080399692, 0.014223513193428516, 0.02728791907429695, -0.002833181293681264, -0.03332086652517319, 0.014083861373364925, 0.001213223091326654, -0.006790557876229286, 0.037733856588602066, 0.00011412152525736019, 0.0365607813000679, 0.019313814118504524, 0.042314428836107254, -0.012415025383234024, -0.007743679918348789, 0.020458955317735672, 0.002958867698907852, 0.004650397691875696, -0.019048474729061127, 0.0008038693922571838, -0.044353339821100235, 0.005847909953445196, 0.010641450062394142, -0.021562203764915466, -0.03457773104310036, 0.02551434375345707, -0.01491478830575943, -0.06747964024543762, -0.009775610640645027, 0.016674397513270378, -0.004657380282878876, -0.020207583904266357, -0.007981088012456894, 0.0260589849203825, 0.002971087349578738, -0.008225478231906891, -0.015445464290678501, 0.008029965683817863, -0.001962104579433799, 0.0026743276976048946, -0.020710328593850136, -0.009489324875175953, 0.02314026653766632, -0.02636621706187725, 0.025695890188217163, 0.03974483907222748, -0.026896893978118896, -0.013308795168995857, -0.029634064063429832, 0.0533469021320343, -0.0015588607639074326, 0.03846004605293274, -0.011751680634915829, -0.020752225071191788, -0.019593115895986557, -0.003812488168478012, -0.021995123475790024, 0.012896823696792126, -0.022162705659866333, 0.02205098420381546, 0.015431499108672142, 0.015152196399867535, 0.011200056411325932, -0.01906244084239006, 0.014069896191358566, 0.0005197657155804336, 0.0048738401383161545, 0.02650586888194084, 0.018420042470097542, -0.013280864804983139, -0.017135249450802803, -0.0290475282818079, -0.005942174699157476, -0.008190564811229706, -0.004702766891568899, 0.01770782098174095, -0.030360253527760506, -0.025025563314557076, -0.00708382623270154, -0.0058793313801288605, -0.008092808537185192, 0.026212600991129875, 0.011123248375952244, 0.004046404268592596, 0.0290475282818079, 0.026072949171066284, -0.005275338422507048, 0.012303303927183151, -0.026952754706144333, 0.002407244173809886, 0.004133686888962984, 0.007827471010386944, 0.002602756256237626, 0.00493668345734477, -0.02283303253352642, 0.007841436192393303, -0.018266426399350166, 0.023517325520515442, 0.015305813401937485, -0.014139722101390362, -0.012694328092038631, -0.0024700872600078583, -0.03281811997294426, -0.005215986631810665, -0.010348182171583176, -0.0033690943382680416, 0.004538676235824823, -0.003994035068899393, -0.03407498449087143, -0.004287303425371647, -0.009293812327086926, 0.000864966947119683, 0.03672836348414421, -0.01397912297397852, -0.025933297351002693, -0.026966718956828117, -0.022944753989577293, 0.008518746122717857, -0.013406551443040371, 0.017959192395210266, -0.02952234447002411, -0.021394621580839157, 0.007289812434464693, 0.011591080576181412, 0.011102300137281418, 0.0173586905002594, -0.0029012614395469427, -0.025975193828344345, -0.015654942020773888, 0.011577115394175053, 0.010920753702521324, -0.01787540130317211, 0.0014628502540290356, 0.0009749425807967782, 0.007359638344496489, 0.04242615029215813, -0.002086045453324914, -0.012191582471132278, -0.005174091085791588, 0.004318724852055311, 0.019662942737340927, -0.018629521131515503, -0.007020982913672924, -0.01282699778676033, -0.003669345285743475, -0.0035174740478396416, 0.036030106246471405, 0.012903805822134018, -0.03122609294950962, -0.00543593754991889, 0.006144669372588396, 0.01705145835876465, 0.04161617159843445, -0.018908822908997536, -0.03818074241280556, 0.007680836599320173, -4.036803511553444e-05, 0.004056878387928009, 0.0069616311229765415, -0.027581186965107918, -0.03404705598950386, 0.03449393808841705, -0.00733869057148695, 0.0034162267111241817, 0.010508781298995018, -0.011842453852295876, -0.019174162298440933, 0.021687889471650124, 0.0006655270699411631, 0.024760223925113678, 0.014426007866859436, 0.026045018807053566, -0.04248201102018356, 0.025556238368153572, 0.007597045972943306, -0.006689310539513826, 0.014817032031714916, 0.010257408022880554, -0.00549528980627656, 0.013294829986989498, 0.0020598608534783125, -0.00448630703613162, -0.015599081292748451, 0.01211477443575859, -0.018713312223553658, -0.03184055909514427, -0.02446695603430271, -0.008022983558475971, -0.013881366699934006, 0.04633639380335808, 0.011702802032232285, -0.0042419168166816235, 0.008148669265210629, -0.0068324534222483635, -0.02368490770459175, 0.019732767716050148, 0.016423026099801064, 0.03865555673837662, -0.005544167477637529, 0.021659959107637405, 0.024201618507504463, 0.015654942020773888, 0.013685855083167553, -0.014202565886080265, -0.012652432546019554, -0.004468850325793028, 0.023196127265691757, -0.00030679706833325326, -0.009524237364530563, -0.03128195181488991, 0.006675345357507467, -0.008497798815369606, -0.008400042541325092, -0.019830524921417236, 0.02615674026310444, 0.03952139616012573, 0.017456447705626488, -0.0011756917228922248, 0.01685594581067562, -0.0146773811429739, 0.0104808509349823, 0.01657664217054844, -0.004667853936553001, 0.0012865401804447174, -0.025067457929253578, -0.029773715883493423, 0.011283847503364086, 0.034745313227176666, -0.0004551768652163446, 0.022037018090486526, -0.021659959107637405, 0.0004591045726556331, -0.0221487395465374, -0.023182161152362823, 0.0009749425807967782, -0.007366620935499668, 0.02378266304731369, -0.020165687426924706, -0.026184670627117157, 0.03812488168478012, 0.011549185961484909, -0.016325268894433975, -0.013853436335921288, 0.015445464290678501, 0.04633639380335808, -0.042593732476234436, -0.03354430943727493, 0.010997561737895012, 0.023349743336439133, 0.01783350668847561, -0.0020633521489799023, 0.011681854724884033, 0.012422007508575916, -0.011598063632845879, -0.01008982677012682, 0.008162634447216988, 0.010013017803430557, -0.029717855155467987, -0.006664871703833342, -0.003505254629999399, -0.01875520683825016, -0.02579364739358425, -0.006127213127911091, -0.011688836850225925, -0.04351543262600899, -0.0323433056473732, -0.03463359177112579, -0.022637519985437393, 0.012540712021291256, 0.001367712626233697, -0.0134693942964077, 0.0034197180066257715, 0.04538676142692566, -0.018797103315591812, 0.01936967298388481, -0.027818594127893448, 0.010704293847084045, -0.016018036752939224, -0.010585589334368706, 0.005463867913931608, -0.014817032031714916, 0.043096475303173065, -0.024648504331707954, -0.005331199150532484, -0.0197746641933918, -0.02446695603430271, 0.03292984142899513, -0.0018084879266098142, 0.018461938947439194, -0.015878384932875633, 0.006814997177571058, 0.026017088443040848, -0.0062773386016488075, -0.03139367327094078, 0.004737679846584797, -0.00016856381262186915, -0.015878384932875633, 0.002976324176415801, 0.002426446182653308, 0.008714258670806885, 0.017316795885562897, -0.0113816037774086, -0.0075272200629115105, -0.019174162298440933, -0.02819565311074257, -0.025472447276115417, -0.013406551443040371, 0.011688836850225925, 0.002002254594117403, -0.011409534141421318, -0.01547339465469122, -0.02031930536031723, -0.025975193828344345, 0.010362147353589535, -0.016702327877283096, 0.007848418317735195, 0.01251976378262043, -0.006507763639092445, 0.011877366341650486, -0.021827541291713715, -0.009286830201745033, -0.02435523457825184, -0.0026446518022567034, -0.033209145069122314, -0.01397912297397852, -0.020067932084202766, 0.04290096461772919, 0.00598057871684432, -0.026854999363422394, -0.03329293802380562, -0.01583648845553398, -0.01681404933333397, 0.007275847252458334, 0.003704258007928729, 0.022414078935980797, 2.962822691188194e-06, 0.017987122759222984, 0.0030496413819491863, 0.022679416462779045, -0.00805091392248869, 0.015682872384786606, -0.0033097423147410154, 0.0034651048481464386, -0.018224531784653664, 0.010927735827863216, 0.0007043676450848579, 0.00553718488663435, 0.00549528980627656, -0.010906788520514965, 0.0009688328136689961, 0.011744697578251362, -0.011716767214238644, 0.026994649320840836, 0.014314286410808563, -0.026003124192357063, -0.0074643767438828945, -0.006036439444869757, -0.013197073712944984, 0.011975122615695, -0.00978259276598692, -0.007904279045760632, -0.011549185961484909, 0.01654871180653572, 0.022791137918829918, -0.012589589692652225, 0.00823944341391325, 0.012449937872588634, -0.029270971193909645, 0.02496970258653164, -0.010501798242330551, -0.010578607209026814, -0.005167108494788408, 0.01393024530261755, 0.021925298497080803, 0.012973631732165813, -0.007226969115436077, 0.01523598749190569, 0.009496307000517845, 0.00823944341391325, -0.013176126405596733, 0.001843400881625712, 0.0031281954143196344, -0.0009164634975604713, -0.00668581947684288, 0.024299373850226402, -0.007562133017927408, -0.018880892544984818, 0.019802594557404518, -0.00842797290533781, -0.013092335313558578, 0.0188529621809721, -0.015445464290678501, -0.04519125074148178, 0.010829979553818703, 0.005554641596972942, -0.021771680563688278, -0.0004457940231077373, -0.002850637771189213, 0.013399569317698479, 0.004468850325793028, -0.040415167808532715, 0.029550274834036827, 0.0005520601407624781, -0.007967122830450535, 0.012380111962556839, -0.0017342980718240142, 0.004130195360630751, 0.00284190964885056, 0.0020249478984624147, -0.035555291920900345, 0.009677854366600513, 0.2343912124633789, -0.015850454568862915, -0.0008313633152283728, 0.024341270327568054, 0.00503793079406023, 0.03795729950070381, -0.001365966978482902, -0.006389059592038393, -0.01284096296876669, 0.020738258957862854, 0.005418481305241585, -0.0032538818195462227, -0.003472087439149618, 0.004894787911325693, -0.021143248304724693, -0.016869910061359406, -0.043264057487249374, -0.02800014056265354, -0.017274899408221245, -0.007359638344496489, 0.02198115922510624, -0.004755136091262102, -0.004133686888962984, -0.007652906700968742, 0.010878858156502247, 0.0026446518022567034, -0.04075033217668533, 0.01671629399061203, 0.025667959824204445, 0.029941298067569733, -0.028139792382717133, 0.00922398641705513, -0.0014933990314602852, 0.008176599629223347, -0.02776273339986801, 0.006979087833315134, 0.0341029167175293, 0.017177144065499306, 0.03142160549759865, 0.01865745149552822, 0.008693310432136059, 0.004989052657037973, -0.0073456731624901295, 0.00773669732734561, -0.01828039065003395, 0.009293812327086926, -0.024480922147631645, 0.005617484916001558, -0.005292794667184353, 0.012666397728025913, -0.02769290842115879, -0.01804298348724842, 0.029717855155467987, 0.019858455285429955, 0.012994579039514065, -0.027497395873069763, 0.0008898423984646797, 0.003182310378178954, 0.03611389920115471, 0.0003098519518971443, 0.0027755750343203545, 0.047341883182525635, -0.025765717029571533, 0.014817032031714916, 0.004528202582150698, 0.03094678930938244, -0.024830050766468048, 0.0034825613256543875, -0.004915735684335232, -0.006965122651308775, -0.015487359836697578, -0.005512746050953865, -0.010913770645856857, -0.014467903412878513, -0.019662942737340927, -0.002295522717759013, 0.051419712603092194, 0.00214539747685194, 0.04709051176905632, 0.0122823566198349, -0.02252580039203167, 0.021352726966142654, -0.020752225071191788, 0.00672771455720067, -0.00897261407226324, -0.016157686710357666, 0.001077935565263033, -0.018699346110224724, 0.0024386656004935503, 0.01097661443054676, 0.0008064878638833761, -0.004545658826828003, 0.0030129828955978155, -0.005006508901715279, -0.017037492245435715, 0.02453678287565708, 0.010026982985436916, 0.029159249737858772, -0.009419498965144157, -0.01160504575818777, -0.012275373563170433, 0.023601116612553596, 0.016674397513270378, 0.007631958927959204, -0.020919807255268097, -0.02079411968588829, -0.010578607209026814, 0.017079388722777367, -0.020137757062911987, -0.02584950625896454, -0.009943191893398762, -0.034912895411252975, 0.00753420265391469, -0.014139722101390362, -0.0014986359747126698, 0.017917297780513763, -0.00922398641705513, -0.013699820265173912, -0.015738733112812042, -0.020040001720190048, 0.0011940209660679102, -0.007478341925889254, -0.0015798084205016494, -0.01733076013624668, 0.0021628537215292454, -0.015529255382716656, -0.016758188605308533, -0.024131793528795242, 0.017847470939159393, -0.029438553377985954, 0.02714826725423336, -0.040582749992609024, 0.022469939664006233, 0.0007178963860496879, 0.006654397584497929, -0.011409534141421318, -0.006486815866082907, -0.0034668503794819117, 0.021073423326015472, 0.02762308157980442, -0.006130704190582037, 0.021869437769055367, -0.005502272397279739, 0.00789729692041874, -0.014188600704073906, -0.007848418317735195, 0.011444446630775928, 0.01607389748096466, -0.002201257972046733, 0.02207891456782818, -0.03231537342071533, -0.025877436622977257, -0.012072878889739513, -0.015752697363495827, 0.02840513177216053, -0.012526746839284897, -0.03077920712530613, -0.03390740230679512, 0.005519728641957045, 0.01830832101404667, -0.016897840425372124, 0.012659415602684021, 0.00858158990740776, -0.02534676156938076, -0.00883296225219965, 0.019453464075922966, -0.17886574566364288, 0.010543693788349628, 0.0389348603785038, -0.03706352785229683, 0.03122609294950962, -0.00668581947684288, 0.015850454568862915, 0.0002734115987550467, -0.01756816916167736, 0.0011058659292757511, 0.02361508272588253, 0.019481394439935684, -0.01865745149552822, -0.009908279404044151, -0.000400189048377797, 0.005373094696551561, -0.03281811997294426, -0.025081424042582512, 0.03262260928750038, 0.02371283806860447, 0.04189547523856163, -0.008860892616212368, -0.028307374566793442, 0.038990721106529236, -0.0007532457238994539, 0.008043930865824223, 0.0004233188519719988, 0.0013537474442273378, -0.0089865792542696, -0.01902054436504841, -0.020612573251128197, -0.002571334596723318, 0.0055686067789793015, 0.018797103315591812, 0.005502272397279739, -0.019257953390479088, 0.02174375019967556, -0.009307777509093285, -0.011849435977637768, -0.005799031816422939, -0.006717240903526545, 0.005296286195516586, 0.005509254522621632, 0.01490082312375307, -0.004479324445128441, -0.0024212091229856014, 0.033516377210617065, 0.00859555508941412, 0.0007759390864521265, -0.012966648675501347, 0.010997561737895012, -0.0323433056473732, -0.03393533453345299, -0.0018643485382199287, 0.03516426682472229, -0.003002509009093046, -0.004367602989077568, -0.0026289408560842276, 0.019495360553264618, -0.0015920279547572136, -0.011262900196015835, -0.01763799414038658, -0.018671415746212006, 0.03298570215702057, 0.013797575607895851, -0.0011896569048985839, -0.014293339103460312, 0.03343258798122406, -0.01678611896932125, 0.005418481305241585, 0.021618064492940903, -0.01875520683825016, 0.005373094696551561, -0.014244460500776768, 0.013972140848636627, 0.012184600345790386, 0.016730258241295815, 0.008323234505951405, 0.01899261400103569, -0.011660906486213207, -0.030192671343684196, 0.05527409538626671, -0.003994035068899393, -0.02530486509203911, 0.033991195261478424, 0.011158160865306854, 0.0016478885663673282, 0.0020842996891587973, -0.03516426682472229, -0.020975666120648384, 0.028684433549642563, -0.03966104984283447, -0.021017562597990036, -0.006389059592038393, 0.0010395314311608672, 0.015487359836697578, -0.010131722316145897, -0.02167392522096634, -2.764392047538422e-05, -0.008791066706180573, 0.004580571781843901, 0.021520307287573814, -0.019802594557404518, -0.01899261400103569, 0.015305813401937485, 0.00015808995522093028, -0.007813505828380585, 0.0023670941591262817, 0.004716732073575258, -0.01508237048983574, 0.002876822603866458, -0.008462885394692421, 0.01756816916167736, 0.024997632950544357, -0.0008990070200525224, 0.017931262031197548, -0.005725714843720198, -0.025318831205368042, 0.018406078219413757, 0.01960708200931549, -0.00613419571891427, 0.0026324321515858173, 0.028014106675982475, 0.028083931654691696, -0.00941251590847969, -0.022344252094626427, -0.03156125545501709, -0.021855471655726433, -0.014251443557441235, 0.016562677919864655, 0.004769101273268461, 0.01987241953611374, -0.00033429096220061183, 0.04206305369734764, -0.0018695854814723134, -0.008379094302654266, 0.00012404988228809088, -0.034466009587049484, -0.008993561379611492, 0.002601010724902153, 0.0063820770010352135, -3.333090353407897e-05, -0.03142160549759865, -0.003575080307200551, 0.012959666550159454, 0.016283374279737473, -0.019174162298440933, 0.010187583044171333, -0.011653924360871315, -0.015417533926665783, -0.0009007526678033173, 0.023978175595402718, -0.027678942307829857, 0.050470080226659775, -0.001268210937269032, -0.0015955192502588034, 0.050470080226659775, -0.03401912376284599, -0.0012708293506875634, -0.004580571781843901, -0.00678706681355834, -0.014188600704073906, -0.017777645960450172, -0.023726802319288254, 0.0371752493083477, -0.007694801781326532, 0.0036728365812450647, 0.005414989776909351, -0.007771610282361507, -0.007213003933429718, -0.010131722316145897, 0.004570097662508488, -0.02871236391365528, 0.014886857941746712, 0.007261882070451975, -0.03401912376284599, -0.04329198971390724, -0.0001574353373143822, -0.004849400836974382, -0.01624147780239582, 0.026212600991129875, 0.014998579397797585, 0.007904279045760632, -0.0004621594271156937, -0.03122609294950962, 0.011870384216308594, 0.017917297780513763, 0.01929984800517559, -0.003088045632466674, 0.013169143348932266, 0.014481868594884872, 0.015752697363495827, -0.020193617790937424, -0.019076405093073845, 0.03454979881644249, -0.028139792382717133, -0.013001562096178532, 0.02565399557352066, -0.021715819835662842, 0.020919807255268097, -0.033823613077402115, -0.018573660403490067, -0.002339164027944207, -0.00244564819149673, 0.022232530638575554, 0.006514746230095625, -0.004678328055888414, -0.010404042899608612, -0.015431499108672142, 0.003952139522880316, 0.018838997930288315, 0.025542274117469788, 0.0026917841751128435, 0.013022509403526783, -0.0048109968192875385, -0.02752532623708248, -0.01343448180705309, -0.0006973850540816784, 0.027567220851778984, -0.028600642457604408, -0.009182090871036053, 0.006106265354901552, -0.004186056088656187, -0.0032922858372330666, -0.0025399131700396538, 0.015850454568862915, -0.03063955530524254, -0.011688836850225925, -0.10200151056051254, 0.009705784730613232, -0.026310358196496964, 0.020947737619280815, 0.011360655538737774, -0.038348324596881866, 0.039465535432100296, -0.008148669265210629, 0.00978259276598692, -0.013190091587603092, -0.009573115967214108, 0.008483833633363247, 0.022344252094626427, -0.013357673771679401, -0.03597424551844597, -0.017791610211133957, 0.017582133412361145, 0.005868857726454735, 0.004510745871812105, -0.0031910385005176067, -0.021869437769055367, 0.009398551657795906, 0.04172789305448532, 0.01719111017882824, -0.03248295560479164, 0.011297812685370445, -0.012701311148703098, 0.012820014730095863, -0.0001897297624964267, -0.020403096452355385, -0.015375638380646706, -0.007199038751423359, 0.01043197326362133, 0.03091885894536972, 0.02133876085281372, 0.008979596197605133, 0.010438955388963223, -0.007890313863754272, 0.01960708200931549, 0.02622656710445881, -0.015249952673912048, -0.021757716313004494, 0.023908350616693497, -0.0026097388472408056, -0.03237123414874077, -0.006759136449545622, -0.01956518553197384, -0.01882503181695938, 0.02670138143002987, 0.011870384216308594, 0.023182161152362823, -0.005840927362442017, -0.00903545692563057, -0.01752627268433571, -0.0001951848971657455, -0.039018649607896805, 0.02212080918252468, -0.012072878889739513, -0.017512308433651924, 0.015738733112812042, 0.008923735469579697, -0.004465359263122082, -0.01561304647475481, 0.014817032031714916, 0.010487833060324192, -0.004922718275338411, -0.013399569317698479, -0.004248899407684803, 0.004451394081115723, -0.02772083878517151, -0.01376266311854124, -0.015445464290678501, -0.013699820265173912, 0.009251916781067848, -0.00634367298334837, 0.007820487953722477, 0.01342051662504673, -0.023056475445628166, -0.032091934233903885, 0.027986176311969757, 0.03672836348414421, -0.0023461466189473867, -0.04164410009980202, 0.0161716528236866, 0.029243040829896927, 0.001681055873632431, -0.026729311794042587, 0.015948209911584854, 0.0012402805732563138, -0.0047586276195943356, -0.0197746641933918, 0.02072429470717907, 0.021282900124788284, 0.01631130464375019, 0.013511289842426777, 0.030890928581357002, 0.00956613291054964, -0.018503833562135696, 0.01207986194640398, 0.00772971473634243, 0.0006890932563692331, 0.0048214709386229515, 0.0027406623121351004, -0.014244460500776768, -0.016353199258446693, -0.011388585902750492, -0.006025965791195631, -0.0359463170170784, 0.014551694504916668, 0.011891331523656845, 0.012401060201227665, -0.009265881963074207, -0.021659959107637405, 0.021659959107637405, -0.005729205906391144, -0.01307837013155222, 0.01868538185954094, -0.02269338071346283, -0.03591838479042053, 0.014342216774821281, 0.012219512835144997, 0.01763799414038658, 0.003150888718664646, -0.009754662401974201, 0.02843306213617325, 0.023433534428477287, 0.012442955747246742, -0.023978175595402718, 0.001892278902232647, 0.0004577953368425369, -0.009698801673948765, -0.0058164880611002445, -0.01291078794747591, -0.019481394439935684, -0.012575624510645866, -0.01358809880912304, -0.0009278101497329772, 0.022609589621424675, -0.03767799586057663, 0.07049611955881119, 0.0011826743138954043, 0.010068878531455994, 0.005236934404820204, 0.006130704190582037, 0.006518237292766571, 0.011116265319287777, 0.014069896191358566, -0.022134775295853615, 0.006678836885839701, 0.0010212021879851818, -0.012226495891809464, -0.03153332695364952, -0.013413534499704838, -0.009943191893398762, 0.025975193828344345, -0.019928280264139175, 0.03463359177112579, 0.002440411364659667, 0.018978649750351906, 0.03940967470407486, 0.00902149174362421, 0.03077920712530613, 0.021464448422193527, 0.005215986631810665, -0.010187583044171333, 0.007139686960726976, -0.0036030106712132692, 0.021185144782066345, -0.011947192251682281, 0.006029456853866577, 0.004315233789384365, -0.03859969601035118, -0.004542167764157057, -0.019858455285429955, 0.014398077502846718, -0.005418481305241585, -0.011269882321357727, 0.0179731585085392, 0.00987336691468954, -0.020040001720190048, 0.02721809223294258, -0.022819068282842636, -0.032259512692689896, -0.016520781442523003, -0.0012699565850198269, -0.01342051662504673, 0.009796557947993279, -0.0209617018699646], "0de6c6a7-1c6a-4840-8e96-e09d0d995e52": [-0.012029909528791904, -0.013410946354269981, -0.007385836448520422, -0.02404627948999405, -0.019090795889496803, 0.013410946354269981, 0.0017482972471043468, -0.016667213290929794, 0.006275591440498829, -0.016477659344673157, -0.00405848678201437, 0.0035710621159523726, -0.004515447188168764, 0.004708386026322842, 3.839737837552093e-05, -0.0033188876695930958, 0.012645959854125977, -0.017222335562109947, 0.013769744895398617, 0.010344233363866806, 0.003896011970937252, 0.00617742957547307, -0.0012346396688371897, -0.03097853995859623, -0.008814261294901371, 0.014392565004527569, 0.0002058438112726435, -0.010899355635046959, 0.013146924786269665, -0.002611445030197501, -0.005513990763574839, 2.3786806195857935e-05, 0.011887744069099426, -0.013241701759397984, 0.015908997505903244, -0.012280391529202461, -0.003462745575234294, 0.000607588270213455, 0.009477700106799603, -0.000678671058267355, 0.01428424846380949, -0.012185614556074142, 0.010398391634225845, -0.004298814106732607, -0.00885487999767065, 0.0014470417518168688, -0.019496982917189598, 0.008976736105978489, -0.00675963144749403, 0.025860583409667015, 0.005513990763574839, 0.012551182880997658, -0.02083740197122097, -0.021216509863734245, 0.01004636287689209, 0.021324826404452324, -0.01930742897093296, 0.00486747594550252, -0.008543469943106174, -0.03655684366822243, 0.016518278047442436, 0.003469515359029174, -0.028189389035105705, -0.01075719017535448, 0.019672997295856476, 0.01863045059144497, -0.007636318448930979, 0.018007630482316017, -0.019686536863446236, 0.012172074988484383, 0.01995733007788658, 0.02626677043735981, -0.006116501521319151, 0.014419644139707088, 0.03314487263560295, 0.010276535525918007, -0.027282238006591797, 0.013322939164936543, 0.012138226069509983, -0.0028026914224028587, 0.006495609879493713, -0.004393591079860926, -0.001126323128119111, -0.007135354448109865, 0.006461760960519314, -0.01234131958335638, -0.012645959854125977, 0.014798752032220364, 0.01165757142007351, -0.014162392355501652, -0.0035812167916446924, 0.0177097599953413, 0.029868295416235924, 0.03222418203949928, -0.01785869523882866, 0.0005623153410851955, -0.00972141232341528, 0.029841216281056404, -0.011244614608585835, -0.046657364815473557, -0.0032461124937981367, 0.01157633401453495, -0.013417716138064861, -0.004586529918015003, -0.045249249786138535, -0.0003306617436464876, 0.01689738593995571, -0.01501538511365652, -0.0022221822291612625, -0.00620450871065259, -0.017926393076777458, 0.03306363523006439, -0.012219463475048542, -0.046576127409935, -0.049852702766656876, 0.005219505168497562, 0.03374061360955238, -0.012882903218269348, -0.018427357077598572, -0.00023609628260601312, 0.009159520268440247, 0.025386696681380272, -0.000603357155341655, 0.020282279700040817, 0.01506954338401556, 0.002792536746710539, -0.03246789425611496, -0.00817113183438778, 0.006999958772212267, -0.03642144799232483, 0.015570507384836674, -0.01239547785371542, 0.009430311620235443, 0.001427578623406589, -0.018156565725803375, -0.013214622624218464, -0.00024498163838870823, 0.010283305309712887, -0.007832642644643784, 0.008963196538388729, 0.023613013327121735, 0.011000902391970158, 0.0007641395786777139, -0.025291919708251953, 0.01278135646134615, 0.019104335457086563, 0.015665285289287567, 0.006383908446878195, 0.007182742934674025, 0.013133385218679905, 0.0015570507384836674, -0.007629548665136099, -0.007927419617772102, -0.023545315489172935, -0.0034356664400547743, -0.01348541397601366, -0.0003027363563887775, 0.020471833646297455, 0.0073452177457511425, 0.004897939972579479, 0.03893980756402016, 0.041214458644390106, 0.014433183707296848, -0.033632297068834305, -0.0026452939491719007, 0.0447889044880867, 0.02235383354127407, 0.015380953438580036, 0.015624666586518288, 0.0037944649811834097, 0.0031885693315416574, 0.00886164978146553, -0.009024124592542648, -0.004336047917604446, -0.03319903090596199, 0.009281376376748085, 0.009342304430902004, -0.002354193013161421, -0.015760062262415886, -0.008502851240336895, -0.0007049039704725146, -0.02403273992240429, 0.004281889647245407, 0.01617978885769844, -0.02781028114259243, -0.01869814842939377, 0.013045378029346466, -0.019591759890317917, 0.01077749952673912, 0.018264882266521454, 0.02171747386455536, 0.041241537779569626, 0.011989290826022625, 0.018941860646009445, -0.5957411527633667, -0.017479587346315384, -0.024195214733481407, -0.021175891160964966, 0.00028433100669644773, 0.01856275275349617, 0.009247527457773685, 0.0019226191798225045, -0.007717555854469538, 0.03406556323170662, -0.006509149447083473, 0.009315225295722485, -0.0060691130347549915, -0.022638164460659027, -1.2488404536270536e-05, -0.031222254037857056, 0.0032731916289776564, -0.03650268539786339, -0.016802608966827393, 0.01609855145215988, -0.019672997295856476, 0.031249333173036575, -0.014744593761861324, -0.0016281335847452283, -0.007277519907802343, 0.01624748669564724, -0.02173101343214512, -0.0006363599095493555, 0.016518278047442436, 0.04191851615905762, -0.019713615998625755, -0.002484511584043503, 0.030734827741980553, 0.004275119863450527, 0.04581791162490845, -0.009552167728543282, -0.0201198048889637, 0.03571739047765732, -0.017479587346315384, 0.05004225671291351, -0.017601443454623222, -0.012510564178228378, 0.017344191670417786, 0.001054394175298512, 0.01624748669564724, -0.00010376812861068174, -0.008692405186593533, -0.014555039815604687, 0.0063026705756783485, 0.013722356408834457, -0.0008800721843726933, -0.014108234085142612, 0.011021211743354797, -0.021974725648760796, 0.016789069399237633, 0.010723341256380081, 0.016464119777083397, -0.02240799181163311, -0.021446682512760162, -0.022868337109684944, -0.011325852014124393, 0.02240799181163311, 0.013850982300937176, -0.009064743295311928, -0.008963196538388729, 0.004288659431040287, -0.01158310379832983, -0.004437594674527645, 0.005669695790857077, -0.025007588788866997, 0.012544413097202778, -0.007920649833977222, -0.0013937297044321895, -0.00675963144749403, 0.02076970413327217, 0.005107803735882044, 0.013729126192629337, -0.026591720059514046, -0.008204980753362179, 0.0074264551512897015, -0.0006884026224724948, 0.007460304070264101, -0.018088867887854576, -0.016626594588160515, 0.009599556215107441, -0.029164237901568413, -0.021812250837683678, -0.009897426702082157, 0.005307512357831001, -0.007175973150879145, -0.0012997989542782307, 0.0024117361754179, 0.00806958507746458, -0.029218396171927452, -0.0010095443576574326, 0.013647888787090778, -0.034336354583501816, 0.0006126656080596149, -0.0024388153105974197, -0.029218396171927452, -0.04394945129752159, -0.00484716659411788, 0.003081945003941655, -0.008719484321773052, 0.028324784711003304, -0.021988265216350555, -0.022908955812454224, 0.01616624929010868, 0.042026832699775696, -0.024289991706609726, -0.012497024610638618, -0.022963114082813263, -0.007006728556007147, 0.004955483600497246, 0.0017821461660787463, -0.03574446961283684, 0.017574364319443703, 0.0028111536521464586, 0.017994090914726257, 0.023477617651224136, 0.0003539328754413873, -0.00270283711142838, 0.006698703393340111, 0.015814220532774925, 0.01156956423074007, 0.022083042189478874, 0.005246584303677082, -0.010479629039764404, -0.011732039041817188, 0.0011043213307857513, 0.012239772826433182, 0.005354900844395161, 0.017520206049084663, -0.009078282862901688, 0.011901283636689186, 0.0005064646247774363, 0.00045653744018636644, 0.009051203727722168, 0.027525950223207474, -0.003164874855428934, -0.017547285184264183, -0.005960796494036913, 0.010980593040585518, 0.0028280781116336584, -0.013681737706065178, -0.028974683955311775, -0.008428383618593216, 0.0007357911090366542, -0.009274606592953205, 0.017141098156571388, 0.014433183707296848, -0.008326836861670017, -0.02079678326845169, 0.02319328673183918, -0.0012405633460730314, -0.0022052577696740627, -0.009213678538799286, -0.00027481099823489785, 0.011190456338226795, -0.00997866503894329, 0.01994379051029682, -0.006346674170345068, -0.036746397614479065, 0.03414680063724518, -0.029976611956954002, -0.01436548586934805, -0.05034012719988823, 0.005591843277215958, -0.0009663869277574122, -0.04110614210367203, -0.0042514256201684475, 0.014054075814783573, -0.0017635292606428266, 0.014040536247193813, 0.00676978612318635, -0.0006524381460621953, -0.013309399597346783, 0.0011178608983755112, 0.01354634203016758, -0.010269765742123127, -0.007277519907802343, -0.026605259627103806, 0.009470930323004723, -0.006617465987801552, 0.018264882266521454, 0.007142124231904745, 0.019158493727445602, -0.0008953041979111731, -0.01766914129257202, 0.004478213377296925, -0.011474787257611752, 0.023734869435429573, -0.0023694250266999006, 0.025210682302713394, 0.011007672175765038, -0.0028196158818900585, -0.0025115907192230225, 0.03948139026761055, -0.008435153402388096, 0.03157428279519081, 0.015949616208672523, 0.01501538511365652, -0.02252984791994095, -0.011075370013713837, 0.009010585024952888, -0.03257621079683304, 0.025291919708251953, -0.010540557093918324, 0.013126615434885025, -0.028406022116541862, -0.003689533332362771, -0.02713330276310444, -0.007771714124828577, 0.007683706935495138, 0.028081072494387627, 0.015150780789554119, -0.004542526323348284, -0.0059201777912676334, 0.004677921999245882, 0.014216550625860691, 0.0018599986797198653, 0.013634349219501019, -0.006417757365852594, -0.03022032417356968, -0.021473761647939682, 0.011786197312176228, 0.0022171048913151026, 0.019117875024676323, 0.007379066664725542, -0.02238091267645359, -0.017262954264879227, -0.0064820703119039536, -0.025955360382795334, 0.0028382327873259783, 0.049202803522348404, -0.03485085815191269, 0.029543345794081688, -0.0194292850792408, 0.013837442733347416, 0.0028416176792234182, 0.0032579596154391766, 0.011772657744586468, 0.0030396338552236557, -0.022719401866197586, 0.025142984464764595, 0.005530915223062038, 0.05621630325913429, 0.013796824030578136, -0.03241373598575592, 0.04427440091967583, -0.021852869540452957, -0.008665326051414013, -0.014839370734989643, 0.017587903887033463, -0.00044130542664788663, -0.013350018300116062, -0.015963155776262283, 0.018048249185085297, 0.013803593814373016, 0.04005005583167076, 0.002271263161674142, 0.029164237901568413, 0.01703278161585331, -0.0006262052338570356, 0.00895642675459385, -0.025765806436538696, 0.0051348828710615635, -0.0075753903947770596, -0.012537643313407898, -0.015340334735810757, -0.049852702766656876, 0.006241742521524429, -0.014595658518373966, -0.012097607366740704, 0.01863045059144497, 0.003367968602105975, 0.033632297068834305, 0.008536700159311295, 0.024303531274199486, -0.0005800860235467553, -0.020214581862092018, -0.027999835088849068, 0.00675286166369915, 0.002548824530094862, -0.008333606645464897, -0.017438968643546104, -0.02856849692761898, -0.017574364319443703, -0.02155499905347824, 0.010445780120790005, -0.032738685607910156, -0.010323924012482166, 0.00889549870043993, -0.006339904386550188, 0.0019886246882379055, 0.009017354808747768, 0.024994049221277237, 0.000757369794882834, -0.025007588788866997, -0.00674270698800683, 0.021351905539631844, -0.003183491760864854, -0.007710786070674658, -0.02017396315932274, 0.05459155514836311, 0.02618553303182125, 0.018048249185085297, -0.029922453686594963, -0.0007180204265750945, -0.017939932644367218, 0.0002490011975169182, -0.02630738914012909, 0.0006139349425211549, -0.021771632134914398, -0.00892257783561945, -0.0150560038164258, 0.019916711375117302, 0.004261580295860767, 0.018941860646009445, 0.01428424846380949, -0.021460222080349922, -0.019158493727445602, -0.016477659344673157, 0.0041735731065273285, -0.018102407455444336, 0.011427398771047592, 0.012916752137243748, -0.00885487999767065, -0.05702867731451988, -0.007629548665136099, -0.002552209421992302, -0.015299716033041477, 0.007128584664314985, -0.02477741613984108, 0.013932219706475735, -0.00751446234062314, 0.02317974716424942, -0.001726295449770987, 0.017249414697289467, 0.00405171699821949, -0.025941820815205574, -0.00674609187990427, 0.023464078083634377, -0.00042268852121196687, 0.019591759890317917, 0.0370713472366333, 0.010587945580482483, 0.004657612647861242, -0.02485865354537964, -0.021040495485067368, -0.00808312464505434, 0.015502809546887875, 0.015475730411708355, -0.007169203367084265, 0.007588929962366819, -0.004681306891143322, -0.012937061488628387, 0.034309275448322296, 0.014135313220322132, 0.021974725648760796, 0.0024354304186999798, 0.03934599459171295, -0.011366470716893673, 0.0024963587056845427, 0.023775488138198853, -0.001643365598283708, -0.010527017526328564, -0.011847125366330147, 0.0020597074180841446, -0.04254133626818657, 0.01280166581273079, -0.009552167728543282, 0.00241004372946918, -0.028053993359208107, 0.01239547785371542, -0.01502892468124628, -0.06769786030054092, 0.0028890061657875776, 0.009355843998491764, 0.024560783058404922, -0.017574364319443703, -0.006268821656703949, 0.01693800464272499, 0.006999958772212267, -0.008353915996849537, -0.03187215328216553, 0.010587945580482483, -0.0108181182295084, -0.013972838409245014, -0.03162844106554985, -0.0060691130347549915, 0.0028974683955311775, -0.018725227564573288, 0.011982521042227745, 0.01867106929421425, -0.03807327523827553, -0.026117835193872452, -0.012260082177817822, 0.031113935634493828, 0.029922453686594963, 0.00481331767514348, 0.0005932024796493351, -0.013850982300937176, 0.01846797578036785, 0.006928876042366028, -0.031953390687704086, -0.02014688402414322, -0.015651745721697807, 0.02483157441020012, -0.0028974683955311775, 0.029191317036747932, -0.004312353674322367, 4.355405326350592e-05, 0.033686455339193344, -0.013363557867705822, 0.01938866637647152, 0.004261580295860767, 0.010357772931456566, -0.0067190127447247505, 0.00808989442884922, -0.01630164496600628, 0.01710047945380211, 0.0016865229699760675, -0.00752123212441802, 0.0002382118400419131, -0.05166700854897499, 0.000974002992734313, -0.014148852787911892, -0.019578220322728157, -0.009802649728953838, 0.02477741613984108, 0.03615065664052963, 0.0036590693052858114, 0.017154637724161148, 0.026537561789155006, -0.02155499905347824, 0.02247568964958191, 0.003376430831849575, -0.006492224987596273, 0.013729126192629337, -0.005199195817112923, 0.026740655303001404, -0.019172033295035362, 0.0006135118310339749, 0.009227218106389046, -0.002184948418289423, 0.02867681346833706, 0.028189389035105705, -0.005717084277421236, -0.003933245781809092, -0.007291059475392103, -0.04305583983659744, -0.007277519907802343, -0.01006667222827673, 0.001272719819098711, 0.01432486716657877, -0.0007450995617546141, -0.045303408056497574, -0.016775529831647873, 0.01856275275349617, -0.01788577437400818, 0.029976611956954002, -0.005246584303677082, -0.02164977602660656, -0.013092766515910625, -0.0254950150847435, 0.0006604772643186152, -0.0003300270764157176, 0.018996018916368484, -0.023369301110506058, -0.017574364319443703, 0.01695154421031475, -0.015313255600631237, 0.017262954264879227, 0.006045418791472912, -0.0006689394940622151, -0.021879948675632477, -0.016531817615032196, 0.014094694517552853, -0.017303572967648506, -0.016856767237186432, 0.001949698431417346, 0.029949532821774483, 0.012124686501920223, 0.007934189401566982, 0.010445780120790005, 0.013769744895398617, 0.0051348828710615635, 0.0027248389087617397, 0.0005864326958544552, -0.019794853404164314, -0.0024895889218896627, 0.0096469447016716, -0.0023761948104947805, -0.0024997435975819826, 0.01776391826570034, 0.016640134155750275, -0.028216468170285225, -0.0027434558141976595, 0.010107290931046009, -0.004711770918220282, 0.025630410760641098, -0.010784269310534, -0.03934599459171295, -0.006590386852622032, 0.01765560172498226, 0.015448651276528835, 0.0023000347428023815, -0.028866367414593697, -0.029001763090491295, 0.018806464970111847, -0.017317112535238266, 0.004105875268578529, -0.0004848859098274261, 0.003950170241296291, -0.027295777574181557, 0.009227218106389046, 0.0024591246619820595, 0.02479095570743084, -0.005893098656088114, -5.73316247027833e-05, -0.015191399492323399, 0.030518194660544395, -0.019050177186727524, -0.0018599986797198653, 0.028189389035105705, -0.003608295926824212, 0.00481670256704092, 0.00404156232252717, 0.010323924012482166, 0.0023051120806485415, -0.035202886909246445, 0.004207422025501728, -0.00486747594550252, -0.04021253064274788, -0.008550239726901054, -0.006522689014673233, -0.020322898402810097, 0.013776514679193497, 0.014622737653553486, 0.007372296880930662, 0.011434168554842472, -0.015259097330272198, -0.016504738479852676, 0.013823903165757656, 0.005896483547985554, 0.0287309717386961, 0.008990275673568249, 0.03479669988155365, 0.04069995507597923, 0.017276493832468987, -0.006932260934263468, -0.04663028568029404, -0.019754234701395035, -0.002855157246813178, 0.024547243490815163, 0.01424362976104021, -0.027634266763925552, -0.011007672175765038, 0.01075719017535448, 0.0011203995672985911, -0.0201875027269125, -0.024926351383328438, 0.018725227564573288, 0.03254913166165352, -0.00403140764683485, -0.029570424929261208, 0.019632378593087196, -0.0016924465307965875, 0.03103269822895527, -0.008651786483824253, 0.005896483547985554, -0.00965371448546648, -0.022597545757889748, -0.026754194870591164, 0.011061830446124077, 0.023491157218813896, 0.01429778803139925, 0.015638206154108047, 0.010967053472995758, -0.0015672054141759872, 0.003912936430424452, -0.027471791952848434, 0.006018339656293392, -0.007636318448930979, 0.01003282330930233, -0.003686148440465331, -0.012686578556895256, 0.02558979205787182, 0.00620112381875515, -0.005141652654856443, -0.021961186081171036, 0.002542054746299982, 0.05247938260436058, -0.028785130009055138, -0.0177097599953413, 0.010723341256380081, 0.01708693988621235, 0.026551101356744766, 0.00997189525514841, 0.009254297241568565, 0.013377097435295582, -0.012950601056218147, -0.00018564022320788354, 0.021785171702504158, 0.003021016949787736, 0.011264923959970474, -0.03013908676803112, 0.0028890061657875776, -0.026063676923513412, -0.010215607471764088, 0.004633918404579163, -0.0027282238006591797, -0.030355719849467278, -0.02864973433315754, -0.02071554586291313, -0.005314282141625881, -0.0049520982429385185, 0.003156412625685334, 0.010648873634636402, 0.016450580209493637, 0.03731505945324898, -0.029083000496029854, 0.004894555080682039, -0.02485865354537964, -0.0062248180620372295, -0.007203052286058664, 0.006360213737934828, -0.01158310379832983, -0.003967094700783491, 0.04422024264931679, -0.0012278698850423098, -0.019849013537168503, -0.029868295416235924, 0.002630061935633421, 0.02864973433315754, 0.018332580104470253, 0.032170023769140244, 0.007995117455720901, 0.011481557041406631, 0.024425387382507324, 0.009342304430902004, -0.035067491233348846, -0.013790054246783257, 0.012199154123663902, -0.021947646513581276, 0.02175809256732464, -0.0014571964275091887, 0.028406022116541862, 0.0031191788148134947, -0.013234931975603104, -0.006908566690981388, -0.03105977736413479, -0.029678741469979286, -0.008441923186182976, -0.02548147551715374, -0.014568579383194447, 0.0028094612061977386, -0.017276493832468987, -0.02469617873430252, -0.023531775921583176, -0.010615024715662003, 0.006918721366673708, -0.028460180386900902, -0.016017314046621323, 0.025752266868948936, -0.010527017526328564, 0.024168135598301888, -0.012720427475869656, -0.012916752137243748, -0.01861691102385521, -0.00537859508767724, -0.029759978875517845, -0.029218396171927452, -0.019876092672348022, 0.039670947939157486, 0.015746522694826126, -0.012104377150535583, -0.045303408056497574, -0.001423347508534789, -0.022096581757068634, 0.006678394041955471, 0.010689492337405682, 0.03379477187991142, 0.024384768679738045, 0.011082139797508717, 0.014717514626681805, 0.022028883919119835, -0.005771242547780275, -0.004156648647040129, 0.0020021642558276653, 0.009057973511517048, -0.01628810539841652, 0.005723854061216116, -0.023626552894711494, 0.008651786483824253, -0.0064854552038013935, -0.020404135808348656, 0.004958868492394686, 0.000827183248475194, 0.009762031026184559, 0.02948918752372265, 0.02097279764711857, -0.013796824030578136, -0.022177819162607193, -0.011380010284483433, -0.006939030718058348, 0.012706887908279896, -0.011129528284072876, -0.0027569953817874193, -0.011095679365098476, 0.03395724669098854, 0.009795879945158958, -0.006668239366263151, 0.0053718253038823605, 0.012977680191397667, -0.018373198807239532, 0.012598571367561817, -0.015421572141349316, -0.012212693691253662, 0.005646001547574997, -0.015529888682067394, 0.02856849692761898, 0.013025068677961826, 0.008793951943516731, 0.025332538411021233, 0.008963196538388729, 0.006587001960724592, -0.027498871088027954, -0.006840868853032589, -0.03192631155252457, -0.007717555854469538, -0.005937102250754833, 0.0037098426837474108, 0.0001401557237841189, 0.0013192620826885104, 0.01079103909432888, -0.020674927160143852, 0.00121433031745255, 0.028243547305464745, -0.01708693988621235, -0.04495137929916382, 0.02094571851193905, 0.019524062052369118, -0.01429778803139925, 0.016071472316980362, 0.0032714991830289364, 0.0022391066886484623, 0.015705903992056847, -0.03615065664052963, 0.0064042177982628345, -0.013668198138475418, 0.021947646513581276, -0.010689492337405682, 0.006813789717853069, 0.0022391066886484623, -0.0013954221503809094, 0.006617465987801552, -0.03788372129201889, 0.013986377976834774, 0.2597431540489197, -0.018061788752675056, 0.0053718253038823605, 0.02393796294927597, -0.01775037869811058, -0.0011203995672985911, -0.0037910800892859697, -0.012652729637920856, -0.016626594588160515, 0.016044393181800842, -0.026848971843719482, -0.023734869435429573, 0.003220725804567337, -0.0017804537201300263, -0.0037132275756448507, -0.011427398771047592, -0.01501538511365652, -0.022678783163428307, -0.0017584519227966666, -0.016829688102006912, 0.01431132759898901, -0.017303572967648506, -0.022584006190299988, -0.019063716754317284, 0.01766914129257202, 0.0028128460980951786, -0.009450620971620083, 0.015272636897861958, 0.03384893015027046, 0.02239445224404335, -0.012862593866884708, 0.02705206535756588, -9.97485694824718e-05, 0.011278463527560234, -0.019050177186727524, 0.005750933196395636, 0.04473474621772766, 0.024262912571430206, 0.02236737310886383, 0.004948713351041079, -0.010188528336584568, 0.00012587571109179407, -0.0064854552038013935, -0.008394534699618816, -0.01937512680888176, -0.0011660956079140306, -0.017317112535238266, -0.009274606592953205, 0.011786197312176228, 0.021785171702504158, -0.03539244085550308, -0.029814137145876884, 0.03485085815191269, 0.01699216291308403, 0.011312312446534634, -0.0017601443687453866, 0.018088867887854576, 0.014920608140528202, 0.013607270084321499, 0.012280391529202461, -0.002191718202084303, 0.05177532508969307, -0.025400236248970032, 0.01501538511365652, -0.01938866637647152, 0.0008132205693982542, -0.01944282464683056, 0.014961226843297482, -0.003845238359645009, 0.0026012903545051813, -0.011109218932688236, 0.008705944754183292, -0.003956940025091171, -0.01945636421442032, -0.02404627948999405, -0.01863045059144497, 0.05166700854897499, 0.0007408684468828142, 0.03736921772360802, 0.030328640714287758, 0.01085873693227768, 0.015502809546887875, 0.003973864484578371, -0.0031885693315416574, -0.02155499905347824, -0.007406145799905062, 0.013444795273244381, -0.011149837635457516, -0.018725227564573288, 0.012862593866884708, 0.002853464800864458, -0.011088909581303596, 0.024168135598301888, -0.008265908807516098, -0.007223361637443304, 0.009586016647517681, 0.027282238006591797, 0.0388585701584816, 0.008645016700029373, 0.00016215753566939384, -0.015191399492323399, 0.00375723117031157, 0.02090509980916977, 0.014649816788733006, -0.018170105293393135, -0.014663356356322765, -0.0008123743464238942, 0.017411889508366585, 0.0012837207177653909, -0.00973495189100504, 0.0030548658687621355, -0.039102282375097275, 0.006035264115780592, -0.009355843998491764, -0.01241578720510006, -0.0025911356788128614, -0.025982439517974854, -0.010723341256380081, 0.0036692239809781313, -0.007825872860848904, -0.009430311620235443, -0.003841853467747569, -0.013052147813141346, 0.0007324062171392143, -0.006972879637032747, -0.02240799181163311, -0.02634800784289837, -0.013092766515910625, 0.01923973113298416, -0.012463175691664219, 0.012469945475459099, -0.04273089021444321, 0.02469617873430252, -0.002193410648033023, 0.0021646390669047832, -0.015502809546887875, -0.012679808773100376, 0.0008563779410906136, 0.02010626532137394, 0.008421613834798336, -0.008651786483824253, 0.013045378029346466, 0.009877117350697517, 0.009775570593774319, -0.012517333962023258, -0.009870347566902637, 0.018386738374829292, 0.01617978885769844, 0.004275119863450527, 0.01429778803139925, -0.0399688184261322, -0.029624583199620247, 0.008550239726901054, -0.014893529005348682, 0.016071472316980362, -0.00023123050050344318, -0.007006728556007147, -0.05702867731451988, 0.008678865619003773, 0.026117835193872452, -0.018968939781188965, 0.005933717358857393, -0.0031141014769673347, -0.019023098051548004, -0.030409878119826317, -0.0024371228646486998, -0.17146514356136322, 0.0035169038455933332, 0.018237803131341934, -0.0369359515607357, 0.03850654140114784, -0.008435153402388096, -0.025995979085564613, 0.0034932096023112535, -0.012185614556074142, -0.0043292781338095665, 0.018427357077598572, -0.003543982980772853, -0.0033188876695930958, -0.00034018175210803747, -0.0015663591912016273, -0.0038181592244654894, -0.016477659344673157, 0.002117250580340624, 0.04459935054183006, 0.011447708122432232, 0.039048124104738235, -0.019659457728266716, -0.020498912781476974, 0.04787592589855194, 0.0037504613865166903, 0.0015181244816631079, -0.003533828305080533, -0.02006564661860466, 0.004630533512681723, -0.026442784816026688, -0.004207422025501728, 0.012063758447766304, 0.009464160539209843, -0.010736880823969841, 0.0014698897721245885, -0.021162351593375206, 0.006262051872909069, -0.016640134155750275, -0.01860337145626545, 0.003997558727860451, -0.0033476592507213354, 0.01617978885769844, -0.01945636421442032, -0.011298772878944874, 0.0007675244705751538, 0.015678824856877327, 0.01613917015492916, 0.010669182986021042, 0.014392565004527569, -0.012869363650679588, 0.007825872860848904, -0.018955400213599205, -0.004200652241706848, -0.00121094542555511, 0.049798544496297836, -0.005459832493215799, 0.011055060662329197, -0.0016916003078222275, 0.023545315489172935, -0.008286218158900738, -0.01635580323636532, -0.013390637002885342, 0.0002805230033118278, 0.03089730255305767, 0.00378431030549109, -0.0030396338552236557, -0.011237844824790955, 0.07045993208885193, -0.026591720059514046, 0.011440938338637352, 0.01865752972662449, -0.038398224860429764, -0.001648442936129868, -0.019551141187548637, -0.0011051675537601113, 0.011237844824790955, 0.00016226331354118884, 0.02097279764711857, 0.018386738374829292, -0.016057932749390602, -0.02305789105594158, 0.05245230346918106, 0.0034238193184137344, -0.018955400213599205, 0.035202886909246445, 0.0017119096592068672, 0.019104335457086563, 0.013905140571296215, -0.0464407317340374, -0.03717966377735138, 0.023680711165070534, -0.03455298766493797, -0.001423347508534789, -0.002626677043735981, 0.0009536935831420124, 0.010154679417610168, 0.005077339708805084, -0.01845443621277809, -0.0008529930491931736, -0.01611209101974964, 0.0013412638800218701, 0.01234131958335638, -0.015584047883749008, -0.0021375599317252636, -0.002340653445571661, 0.01240901742130518, -0.004004328511655331, 0.03931891545653343, 0.021961186081171036, -0.009795879945158958, -0.006333134602755308, -0.015584047883749008, 0.0135734211653471, 0.020282279700040817, -0.008272678591310978, 0.0373421385884285, -0.020458294078707695, -0.014636277221143246, 0.001436887076124549, 0.0003370084159541875, -0.008042505942285061, -0.004891170188784599, 0.022150740027427673, 0.02938087098300457, -0.020458294078707695, -0.015881918370723724, -0.03780248388648033, -0.010202067904174328, 0.004749004729092121, 0.0031445655040442944, 0.009349074214696884, 0.02781028114259243, 0.00889549870043993, 0.034336354583501816, 0.0017618368146941066, -0.0025860583409667015, 0.005246584303677082, -0.03479669988155365, -0.01946990378201008, -0.0016349033685401082, -0.0014893529005348682, -0.011704959906637669, -0.025291919708251953, 0.013065687380731106, 0.004241270944476128, 0.013803593814373016, -0.019618839025497437, -0.013647888787090778, -0.012997989542782307, 0.002120635472238064, -0.01005990244448185, 0.015908997505903244, -0.028135230764746666, 0.032901160418987274, 0.006353443954139948, 0.01856275275349617, 0.03777540475130081, -0.005686620250344276, -0.006025109440088272, -0.0075280019082129, 0.03192631155252457, -0.007372296880930662, -0.053020965307950974, -0.03490501642227173, 0.036665160208940506, -0.01347864419221878, 0.00676640123128891, -4.1755829442990944e-05, -0.0011601720470935106, -0.005541069898754358, -0.018224263563752174, 0.00019283311848994344, -0.01704632118344307, 0.017939932644367218, -0.012497024610638618, -0.018833544105291367, -0.03227834030985832, 0.0017482972471043468, -0.03081606514751911, -0.045222170650959015, 0.0178451556712389, 0.034390512853860855, 0.005828785710036755, 0.009795879945158958, -0.02851433865725994, 0.03393016755580902, 0.008320067077875137, 0.001650135382078588, -0.013140155002474785, -0.0030413263011723757, -0.0007700631394982338, 0.017181716859340668, -0.026605259627103806, -0.0005513144424185157, 0.021054035052657127, -0.021839329972863197, -0.01775037869811058, 0.020485373213887215, -0.005727238953113556, 0.03577154874801636, -0.01853567361831665, -0.0027265313547104597, -0.011921592988073826, -0.0034762851428240538, 0.012084067799150944, -0.015529888682067394, -0.014785212464630604, -0.009152750484645367, -0.007683706935495138, -0.008821031078696251, 0.025765806436538696, 0.026063676923513412, 0.0018515364499762654, 0.017141098156571388, 0.00407202634960413, -0.009003815241158009, -0.014108234085142612, 0.012733967043459415, 0.015949616208672523, -0.0067968652583658695, -0.01083842758089304, -0.014771672897040844, 0.007453534286469221, 0.010452549904584885, -0.016585975885391235, 0.03260328993201256, -0.03631313145160675, -0.022841257974505424, -0.08730316162109375, 0.0215008407831192, -0.0201198048889637, 0.002870389260351658, 0.015448651276528835, -0.015760062262415886, 0.03655684366822243, -0.00750769255682826, -0.005778012331575155, -0.00621804827824235, -0.009355843998491764, 0.015963155776262283, 0.01002605352550745, 0.012043449096381664, -0.02862265519797802, -0.03081606514751911, 0.034498829394578934, 0.011779427528381348, 0.0052872030064463615, -0.005872789304703474, 0.007697246503084898, -0.01007344201207161, 0.04086242988705635, 0.014785212464630604, -0.03812743350863457, 0.0035812167916446924, 0.001734757679514587, 0.010892585851252079, -0.008570549078285694, -0.016734911128878593, -0.017452508211135864, -0.018237803131341934, 0.0019243116257712245, 0.02247568964958191, 0.01432486716657877, 0.015719443559646606, 0.0016230562468990684, 0.013275550678372383, 0.026077216491103172, 0.01937512680888176, -0.021406063809990883, -0.01766914129257202, 0.009288146160542965, -0.015908997505903244, -0.004579760134220123, 0.014798752032220364, -0.012097607366740704, -0.005070569925010204, 0.013986377976834774, 0.02247568964958191, 0.014148852787911892, 0.02071554586291313, -0.016017314046621323, -0.013986377976834774, -0.0008407228160649538, -0.0358257070183754, 0.013052147813141346, -0.011190456338226795, -0.020458294078707695, -0.013404176570475101, 0.02243507094681263, 0.02155499905347824, 0.005033336114138365, -0.00969433318823576, -0.01001928374171257, -0.0064076026901602745, -0.0044105155393481255, -0.010743650607764721, 0.0013124922988936305, -0.016572436317801476, -0.013058917596936226, -0.013329708948731422, 0.007277519907802343, -0.0007260595448315144, -0.009281376376748085, 0.0010882430942729115, 0.0029076230712234974, -0.006333134602755308, -0.03699010983109474, 0.04346202686429024, 0.01858983188867569, -0.003452590899541974, -0.04026668891310692, 0.004650842864066362, 0.047496818006038666, 0.011346161365509033, 0.001580744981765747, 0.01863045059144497, -0.01635580323636532, -0.00882780086249113, -0.014961226843297482, -0.006685163825750351, 0.01863045059144497, 0.025711648166179657, 0.02625323086977005, 0.03940015286207199, 0.021040495485067368, -0.010547326877713203, 0.03818159177899361, 0.007866491563618183, 0.0097146425396204, -0.019889632239937782, 0.006045418791472912, -0.04619701951742172, -0.01513724122196436, -0.006031879223883152, 0.00034123953082598746, -0.04925696179270744, -0.00966048426926136, 0.006248512305319309, 0.004914864432066679, 0.00884811021387577, -0.005111188627779484, 0.012909982353448868, -0.014162392355501652, -0.013140155002474785, -0.011921592988073826, -0.016667213290929794, -0.028920525684952736, 0.009112131781876087, 0.031953390687704086, 0.018210723996162415, 0.019036637619137764, 0.0014969689073041081, 0.018982479348778725, -0.008279448375105858, 0.002347423229366541, -0.01692446507513523, 0.007825872860848904, 0.011921592988073826, -0.011413859203457832, -0.00241004372946918, -0.02252984791994095, -0.022001804783940315, -0.006587001960724592, 0.00676301633939147, 0.012131456285715103, 0.009565707296133041, -0.02691666968166828, 0.0542936846613884, -0.006603926420211792, 0.00814405269920826, -0.02167685516178608, -0.013790054246783257, 0.0005009641754440963, 0.02081032283604145, -0.0016010544495657086, -0.02078324370086193, -0.003364583710208535, -0.011765887960791588, 0.0005881251418031752, -0.009518318809568882, -0.026090756058692932, -0.013681737706065178, -0.0034932096023112535, -0.0399688184261322, 0.016789069399237633, -0.002090171445161104, 0.030436957255005836, 0.05423952639102936, 0.00894288718700409, 0.026483403518795967, 0.00888872891664505, -0.007439994718879461, -0.010256226174533367, 0.010120830498635769, 0.0018616911256685853, 0.030328640714287758, -0.012043449096381664, 0.023572394624352455, 0.014148852787911892, -0.01613917015492916, -0.03468838334083557, -0.012144995853304863, 0.0339030884206295, -0.005974336061626673, -0.000978234107606113, 0.026686497032642365, 0.008326836861670017, -0.003615065710619092, 0.012009600177407265, -0.0430016815662384, -0.031249333173036575, -0.0064888400956988335, 0.019618839025497437, -0.005774627439677715, -0.01008698157966137, -0.019496982917189598], "c180cbf8-8012-4f58-a408-4b6a6072477a": [-0.019209561869502068, -0.04077991843223572, 0.01652556285262108, -0.023003695532679558, -0.032320402562618256, 0.0010714916279539466, 0.0071631851606070995, -0.012590905651450157, -0.002171088010072708, -0.009836644865572453, -0.005301248747855425, -0.004433516412973404, -0.008445462211966515, 0.014867385849356651, -0.006622169632464647, -0.0022747241891920567, 0.011712633073329926, 0.003105569165199995, 0.014670653268694878, -0.001933954656124115, -0.010440895333886147, 0.01086246594786644, -0.0014684705529361963, 0.0023326899390667677, 0.009660989977419376, 0.011888287961483002, 0.009365891106426716, -0.010995963588356972, 0.01242227666079998, 0.01186720933765173, 0.010841387324035168, 0.009323733858764172, 0.002710346831008792, -0.01134024653583765, -0.00037106985109858215, 0.011888287961483002, 0.010658707469701767, 0.006931321229785681, 0.013377836905419827, 0.008564907126128674, -0.009393995627760887, -0.0006235730252228677, -0.0013929391279816628, 0.025195863097906113, -0.012373093515634537, 0.01472686231136322, 0.0010574392508715391, -0.0006986652733758092, 0.016637982800602913, 0.031421054154634476, 0.0016081157373264432, 0.0072299339808523655, -0.019813813269138336, -0.009000529535114765, 0.013384862802922726, -0.0013384863268584013, 0.020024597644805908, 0.017073605209589005, -0.00981556624174118, -0.03681715577840805, 0.018408577889204025, 0.008578959852457047, -0.023537686094641685, -0.020741267129778862, 0.0009134027059189975, -0.0016660817200317979, -0.009829618968069553, -0.0016063592629507184, -0.009794487617909908, 0.023242585361003876, 0.015822945162653923, 0.03434394299983978, -0.02832953631877899, -0.005592835135757923, 0.022947486490011215, 0.006906729657202959, -0.026460574939846992, -0.003997893538326025, -0.0012524157064035535, 0.00496399262920022, 0.02366415597498417, 0.0012041106820106506, -0.01562621258199215, 0.011466717347502708, 0.008473566733300686, -0.0037063071504235268, 0.016272621229290962, 0.02141578122973442, -0.0160056259483099, -0.008874058723449707, 0.011361324228346348, 0.023045852780342102, 0.004577552899718285, 0.02246970683336258, 0.00522747403010726, 0.009471283294260502, -0.012977344915270805, 0.010869492776691914, 0.0037484641652554274, -0.031280528753995895, 0.0029457237105816603, 0.029116468504071236, -0.03698578476905823, -0.018029164522886276, -0.03364132344722748, -0.007201828993856907, 0.008227651007473469, -0.0021535225678235292, -0.006453541573137045, -0.005273144226521254, -0.027795547619462013, 0.024338670074939728, -0.0068505206145346165, -0.017214128747582436, -0.03600211814045906, -0.0036852287594228983, 0.02976287715137005, -0.01443176344037056, -0.02602495066821575, -0.008248729631304741, 0.007518006954342127, 0.028203066438436508, 0.010103639215230942, 0.01212717778980732, 0.003716846462339163, 0.007251012604683638, -0.014769019559025764, -0.007251012604683638, 0.008698404766619205, -0.0211909431964159, 0.05258389189839363, -0.025940638035535812, 0.012850874103605747, 0.0005730724078603089, -0.018549101427197456, 0.0038046736735850573, -0.008361147716641426, 0.01888635754585266, -0.040808022022247314, -0.007208855357021093, 0.01290708314627409, 0.03265766054391861, 0.00967504270374775, -0.02804848924279213, 0.003720359643921256, 0.025336386635899544, 0.01867557317018509, 0.014712809585034847, 0.016103992238640785, -0.01019497960805893, -0.019139301031827927, -0.011916392482817173, -0.002081504324451089, -0.013925878331065178, 0.0028034436982125044, -0.007672582753002644, 0.014333396218717098, 0.00815036240965128, 0.0126400887966156, -0.013131920248270035, 0.023088010028004646, 0.023158272728323936, -0.006794311106204987, -0.015050066635012627, -0.02037590742111206, 0.02841385081410408, 0.005016688723117113, -0.014923594892024994, -0.01112243440002203, -0.0013876694720238447, -0.01447391975671053, 0.010700863786041737, -0.01368698850274086, 0.006822415627539158, -0.023467423394322395, 0.013581596314907074, 0.010293345898389816, -0.01045494806021452, -0.01717197149991989, -0.008157389238476753, -0.02150009572505951, -0.010033377446234226, 0.00904268678277731, 0.03285439312458038, -0.03937468305230141, -0.014284213073551655, 0.001826805411837995, 0.00710697565227747, 0.01890040934085846, -0.015555950812995434, 0.020333750173449516, 0.03434394299983978, 0.01859125867486, 0.014544181525707245, -0.576033890247345, -0.00159494171384722, -0.0006670474540442228, -0.019518714398145676, 0.006481646094471216, 0.008136310614645481, -0.005357458256185055, 0.028160909190773964, -0.027795547619462013, 0.03442825749516487, -0.012836821377277374, 0.005090463440865278, 0.00773581862449646, 0.01048305258154869, -0.0014412441523745656, -0.02655894123017788, 0.016272621229290962, -0.006046023219823837, -0.02588442713022232, 0.0071561592631042, -0.02061479724943638, 0.02506939135491848, -0.0033339199144393206, 0.005445285700261593, 0.009527493268251419, -0.0010170388268306851, -0.01621641218662262, -0.014326370321214199, -0.006871598772704601, 0.026502732187509537, -0.01918145641684532, -0.0016160202212631702, 0.013405941426753998, -0.003557001007720828, 0.06435976177453995, -0.011726685799658298, -0.04283156245946884, 0.01316705159842968, 0.000263701134826988, 0.0565466545522213, -0.011108382605016232, -0.016553668305277824, 0.00773581862449646, -0.027331819757819176, 0.006028458010405302, 0.002710346831008792, 0.002629545982927084, -0.005420693662017584, 0.019841916859149933, -0.018015112727880478, -0.011825052089989185, -0.025392595678567886, 0.004296505823731422, -0.0024398392997682095, 0.01405937597155571, 0.005396102089434862, 0.017818380147218704, -0.012611983343958855, -0.013483229093253613, -0.02402951754629612, -0.024155989289283752, 0.0028262787964195013, 0.006998070050030947, -0.01048305258154869, 0.0007421397021971643, -0.001956789754331112, -0.01687687262892723, -0.017902692779898643, 0.01978570781648159, -0.03170210123062134, -0.010932727716863155, -0.00511154206469655, -0.004932374693453312, -0.004953453317284584, 0.021457938477396965, 0.0416511632502079, 0.056040771305561066, -0.031280528753995895, -0.015232747420668602, 0.020952053368091583, 0.0019901639316231012, -0.012815742753446102, -0.01971544697880745, -0.00741964066401124, 0.009379942901432514, -0.033275965601205826, 0.0059581962414085865, 0.0061549292877316475, -0.012457408010959625, -0.003664150135591626, 0.0069699655286967754, 0.007300195749849081, 0.021542251110076904, -0.015303009189665318, -0.01852099597454071, 0.03296681120991707, -0.035889700055122375, 0.013792380690574646, 0.004349202383309603, -0.009920958429574966, -0.0424099899828434, -0.008220624178647995, 0.00773581862449646, -0.009892853908240795, 0.0319550447165966, -0.010553314350545406, -0.02446513995528221, 0.010911649093031883, 0.028287379071116447, -0.023073958232998848, -0.007201828993856907, -0.023917099460959435, -0.031364843249320984, 0.0026839987840503454, 0.012780612334609032, -0.03709820285439491, 0.01621641218662262, 0.007897420786321163, 0.003319867653772235, 0.011052172631025314, 0.005782541818916798, -0.015303009189665318, 0.019729498773813248, 0.02283506840467453, -0.011424560099840164, 0.026797831058502197, 0.014712809585034847, 0.005754437297582626, -0.0052099088206887245, 0.01137537695467472, -0.012857900001108646, -0.00138591299764812, 0.03206746280193329, -0.026530835777521133, 0.009239420294761658, -0.010785178281366825, 0.015822945162653923, 0.018577206879854202, -0.0002090287016471848, 0.0035271397791802883, -0.029734771698713303, -0.0043843332678079605, 0.00528368353843689, -0.006776745431125164, -0.014417710714042187, -0.01149482186883688, 0.0036044276785105467, -0.0072931693866848946, -0.024451088160276413, 0.0024029517080634832, 0.014256108552217484, -0.00877569243311882, 0.0053925891406834126, 0.03094327449798584, -0.013623752631247044, -0.026671359315514565, 0.0006288426229730248, -0.013082737103104591, -0.005663096904754639, 0.00903566088527441, -0.004415950737893581, -0.00459160516038537, -0.019588975235819817, 0.010813282802700996, -0.02283506840467453, -0.03816618025302887, 0.001561567303724587, -0.02998771332204342, -0.007036713883280754, -0.03212366998195648, -0.018408577889204025, 0.014389606192708015, 6.263176328502595e-05, -0.0017460044473409653, 0.013152998872101307, 0.00971017312258482, -0.002624276326969266, -0.023312848061323166, -0.02550501376390457, -0.014502025209367275, -0.001444757217541337, -0.011846130713820457, 0.0011320924386382103, -0.014087480492889881, 0.013251366093754768, -0.0035201136488467455, 0.014698757790029049, 0.00814333651214838, -0.007904446683824062, 0.005041280295699835, -0.011726685799658298, 0.007602320984005928, -0.01513438019901514, 0.018928514793515205, 0.027711233124136925, 0.026811882853507996, 0.0004720711149275303, 0.02484455332159996, -0.0011777625186368823, 0.040583185851573944, 0.020488325506448746, 0.007405588403344154, 0.012780612334609032, -0.02075532078742981, 0.041904106736183167, -0.03476551175117493, 0.0312524251639843, -0.014122610911726952, 0.008101179264485836, -0.0031881267204880714, 0.025336386635899544, -0.021176891401410103, -0.014192872680723667, -0.00606007594615221, 0.01637098751962185, -0.005097489804029465, -0.011740738525986671, 0.0005871247267350554, -0.0029404540546238422, 0.0009977167937904596, -0.0027841217815876007, -0.0017688395455479622, 0.005793081130832434, -0.005982787813991308, -0.0029088363517075777, -0.02581416629254818, 0.024507297202944756, 0.011052172631025314, 0.021106628701090813, -0.035524338483810425, -0.01137537695467472, 9.853112715063617e-06, -0.0037590034771710634, -0.00401545874774456, 0.020867738872766495, -0.01394695695489645, 0.036395587027072906, -0.0029720719903707504, 0.010356581769883633, 0.014867385849356651, 0.011993680149316788, 0.0076093473471701145, -0.01305463258177042, 0.01070789061486721, 0.020024597644805908, -0.0024222738575190306, 0.02477429248392582, 0.00021012654178775847, -0.034934140741825104, 0.020263487473130226, -0.0037695427890866995, -0.011909366585314274, -0.02463376894593239, 0.0025434752460569143, -0.01717197149991989, 0.0036957678385078907, 0.006759180221706629, 0.02253996953368187, 0.006028458010405302, 0.031111901625990868, 0.010665733367204666, 0.024788344278931618, -0.02373441867530346, -0.010068508796393871, 0.0010644654976204038, -0.021106628701090813, -0.013223260641098022, -0.015949416905641556, 0.002857896499335766, -0.017663802951574326, 0.0008466540602967143, -0.002483752788975835, 0.0045564742758870125, 0.00323555339127779, 0.0014430006267502904, -0.02245565503835678, 0.02253996953368187, 0.03133673965930939, 0.025111548602581024, 0.004718076437711716, -0.020052703097462654, -0.005009662825614214, 0.020642900839447975, 0.0212049949914217, -0.0039276317693293095, -0.0010205518919974566, -0.008269807323813438, -0.003530652727931738, -0.003557001007720828, 0.024802397936582565, -0.017874589189887047, -0.0028174961917102337, 0.013975061476230621, -0.007377483416348696, -0.010089587420225143, 0.015232747420668602, 0.04193221032619476, -0.01472686231136322, -0.01875988580286503, 0.020333750173449516, 0.026572993025183678, 0.0037730559706687927, 0.017579488456249237, -0.02158440835773945, 0.024788344278931618, 0.017677856609225273, -0.005041280295699835, -0.010216058231890202, -0.015007909387350082, 0.003829265246167779, 0.003365537617355585, -0.0408923365175724, -0.010897597298026085, 0.013124894350767136, 0.00180397043004632, -0.01148779597133398, 0.009288603439927101, -0.024802397936582565, 0.020923947915434837, 0.012225544080138206, -0.047721780836582184, -0.019603027030825615, -0.02574390359222889, -0.0009652207372710109, -0.030465494841337204, 0.04218515381217003, -0.01822589710354805, 0.005206395406275988, -0.036929573863744736, -0.005596348084509373, -0.012949240393936634, -0.01815563626587391, 0.019532766193151474, -0.003240823047235608, -0.026151422411203384, 0.015752684324979782, 0.014853333123028278, -0.006186546757817268, 0.024732135236263275, 0.006808363366872072, -0.023242585361003876, -0.0356929674744606, 0.038109973073005676, -0.017874589189887047, 0.002743721241131425, 0.00021550594829022884, 0.014502025209367275, 0.010834361426532269, -0.015232747420668602, -0.019237667322158813, 0.0033058151602745056, 0.022736702114343643, 0.03226419538259506, -0.022554021328687668, 0.0017240475863218307, 0.02849816530942917, 0.002329176990315318, 0.02365010417997837, 0.011129461228847504, 0.007040227297693491, 0.02900405041873455, 0.049942050129175186, -0.010068508796393871, 0.007391535677015781, 0.012436329387128353, 0.015148432925343513, 0.008157389238476753, 0.0026330589316785336, 0.010089587420225143, -0.016019677743315697, 0.03996488079428673, 0.005230986978858709, -0.020797478035092354, -0.02595468983054161, 0.009780434891581535, -0.007813106290996075, -0.037688400596380234, -0.005238013342022896, 0.01583699882030487, 0.02096610516309738, -0.022258922457695007, -0.01949060894548893, 0.02328474260866642, -0.007693661376833916, -0.02751450054347515, -0.007124541327357292, 0.014361501671373844, -0.006976991426199675, -0.01890040934085846, -0.04485509917140007, 0.0063376096077263355, -0.007335326634347439, -0.023818733170628548, 0.03203935548663139, 0.036339376121759415, -0.007468823809176683, -0.029032154008746147, 0.006530829705297947, -0.0014307048404589295, 0.01875988580286503, 0.014361501671373844, -0.0083681745454669, -0.016694191843271255, 0.017495175823569298, -0.006952399853616953, -0.03577728196978569, -0.022441603243350983, -0.015331113710999489, 0.021233100444078445, 0.01160724088549614, 0.03361321985721588, 0.012218518182635307, 0.01134727243334055, 0.014965752139687538, 0.017424913123250008, -0.009738278575241566, 0.025982795283198357, -0.0102230841293931, 0.006674866192042828, -0.009393995627760887, -0.013384862802922726, 0.013131920248270035, -0.015865102410316467, -0.037154413759708405, 0.014740915037691593, -0.04384332895278931, -0.020038651302456856, -0.015555950812995434, -0.02439487911760807, 0.01606183499097824, 0.0017978224204853177, 0.024507297202944756, 0.0050799245946109295, 0.030324971303343773, 0.027570709586143494, -0.024858606979250908, -0.0048726522363722324, -0.007085897494107485, -0.01755138486623764, 0.016567720100283623, -0.01316002570092678, 0.021612513810396194, -0.02067100629210472, 0.008726509287953377, 0.0186053104698658, -0.02178114280104637, 0.01918145641684532, 0.008087127469480038, 0.004092746879905462, 0.03147726133465767, -0.007314248010516167, -0.04263482987880707, 0.012443355284631252, 0.008206572383642197, 0.005220447666943073, 0.015570003539323807, 0.029931504279375076, -0.04699105769395828, -0.020066754892468452, 0.01461444329470396, 0.002109609078615904, 0.0012120151659473777, -0.032236091792583466, -0.009745304472744465, -0.021668722853064537, -0.010890571400523186, 0.0067064836621284485, -0.006601091008633375, 0.012864925898611546, -0.028807315975427628, -0.018563153222203255, 0.005076411180198193, -0.02470402978360653, 0.021233100444078445, 0.01294221356511116, -0.0005484807770699263, -0.01175479032099247, -0.004528369754552841, -0.015092223882675171, -0.02284912019968033, -0.01578078791499138, -0.008958373218774796, 0.02818901278078556, 0.020122963935136795, 0.025350438430905342, 0.010490079410374165, 0.015794841572642326, -0.0012181630590930581, 0.011558057740330696, 0.01268224511295557, 0.007553137838840485, -0.00022055601584725082, 0.0017916745273396373, -0.008726509287953377, 0.004890217445790768, 0.023397162556648254, -0.004974531941115856, -0.02796417661011219, 0.0060776411555707455, 0.003822239115834236, -0.0001333875406999141, 0.016497459262609482, -0.0042402963154017925, -0.06874409317970276, 0.00637976685538888, 0.025167757645249367, -0.012401198968291283, -0.012373093515634537, -0.028737055137753487, 0.004310558084398508, -0.02297559194266796, -0.0015387323219329119, 0.027191296219825745, 0.004043563734740019, 0.015260851942002773, -0.02424030378460884, 0.015021962113678455, 0.005164238624274731, -0.0006749519379809499, 0.007560164202004671, 0.0009625859674997628, -0.030156342312693596, 0.023172324523329735, 0.006734588649123907, 0.008326017297804356, 0.018619364127516747, -0.0020902869291603565, 0.009176184423267841, 0.0026594072114676237, 0.003298789029940963, -0.032460927963256836, 0.0018584232311695814, -0.011593188159167767, -0.004236783366650343, -0.02976287715137005, -0.007121028378605843, -0.0226804930716753, -0.020699111744761467, 0.019841916859149933, 0.024071674793958664, 0.0072720907628536224, 0.004774285946041346, -0.006161955185234547, -0.014867385849356651, 0.0193500854074955, -0.03836291283369064, 0.006948886904865503, 0.005490955431014299, 0.025617433711886406, 0.04673811420798302, -0.006235730368643999, -0.007440719287842512, -0.032179880887269974, -0.01268224511295557, 0.014811176806688309, 0.03338838368654251, 0.016483405604958534, -0.034540675580501556, 0.0019146326230838895, 0.022343235090374947, 0.017200075089931488, -0.016567720100283623, -0.030381180346012115, 0.026235736906528473, 0.048621129244565964, 0.01367996260523796, -0.012724402360618114, 0.013672935776412487, -0.04075181484222412, -0.003437556093558669, 0.004876165185123682, -0.01717197149991989, -0.0020902869291603565, -0.0004782190371770412, -0.025041287764906883, 0.013630779460072517, 0.007286143489181995, 0.04246620088815689, 0.0008672934491187334, 0.008241702802479267, 0.006443002261221409, -0.01963113248348236, -0.024296512827277184, -0.0003398912085685879, -0.01138240285217762, 0.018394526094198227, -0.02633410319685936, 0.005153699312359095, 0.007177237421274185, -0.01186720933765173, 0.012070968747138977, -0.01718602329492569, -0.024338670074939728, 0.04839629307389259, -0.009689095430076122, -0.012703323736786842, 0.0036430717445909977, 0.002652381081134081, 0.016497459262609482, 0.008311964571475983, -0.015092223882675171, 0.00626734783872962, -0.007799054030328989, -0.013237313367426395, 0.003664150135591626, -0.007616373710334301, 0.02051643095910549, -0.014038297347724438, 0.0033058151602745056, -0.02565959095954895, -0.01791674643754959, -0.018394526094198227, -0.008037944324314594, -0.03695768117904663, -0.01978570781648159, -0.018338317051529884, -0.002606710884720087, 0.017087657004594803, 0.009105922654271126, -0.012619010172784328, 0.022638335824012756, 0.02855437435209751, -0.05525383725762367, 0.023073958232998848, -0.017059551551938057, 0.0016493945149704814, -0.005561217200011015, -0.0014702270273119211, -0.0020340776536613703, -0.010349555872380733, 0.04814334958791733, -0.004914809484034777, 0.0008405061671510339, 0.002074478194117546, 0.001600211369805038, 0.02328474260866642, -0.015570003539323807, 0.020642900839447975, 0.00010511816071812063, 0.00574741093441844, 0.02447919361293316, -0.01704549975693226, -0.017298443242907524, -0.022413497790694237, -0.005220447666943073, -0.025462858378887177, 0.001151414355263114, -0.024521350860595703, 0.031280528753995895, 0.0021921666339039803, 0.010897597298026085, 0.014087480492889881, -0.06194275617599487, -0.016118045896291733, -0.0014157742261886597, 5.862464604433626e-05, -0.007510981056839228, -0.006067101843655109, -0.03726683184504509, -0.03260144963860512, -0.017832431942224503, -0.010841387324035168, -0.01994028501212597, -0.011108382605016232, -0.024788344278931618, 0.034934140741825104, -0.0062708607874810696, 0.011993680149316788, -0.01369401440024376, -0.004001406487077475, -0.002764799864962697, -0.01665203459560871, -0.028174960985779762, -0.03468119725584984, 0.016904976218938828, 0.030296865850687027, 0.027191296219825745, -0.020221330225467682, -0.02477429248392582, 0.0066959448158741, -0.05117865651845932, -0.00031551916617900133, 0.011333219707012177, 0.030746540054678917, 0.032236091792583466, -0.005136133637279272, 0.002601441228762269, 0.04106096550822258, 0.007700687739998102, 0.02210434526205063, -0.04735641926527023, -0.01836642064154148, -0.023340953513979912, 0.0020551560446619987, 0.015668369829654694, 0.008831901475787163, -0.02365010417997837, 0.014754966832697392, -0.011038120836019516, 0.00789039395749569, 0.016483405604958534, 0.01822589710354805, -0.017495175823569298, -0.030015818774700165, -0.005965222604572773, -0.0167363490909338, -0.009653964079916477, 0.01227472722530365, -0.026685411110520363, -0.012443355284631252, -0.0003671176382340491, 0.016033731400966644, -0.001082909177057445, -0.009288603439927101, 0.031055692583322525, 0.012211491353809834, -0.016328830271959305, 0.02335500530898571, -0.013342705555260181, -0.013932904228568077, 0.0117196599021554, -0.021682774648070335, 0.03827860206365585, 0.0007131567690521479, 0.0119023397564888, 0.02283506840467453, 0.016497459262609482, 0.023172324523329735, -0.02908836305141449, 0.02238539233803749, -0.027430186048150063, -0.00485508656129241, -0.007243986241519451, -0.015232747420668602, 0.0005840507801622152, 0.001434217905625701, 0.01800105907022953, -0.014459867961704731, 0.006031970959156752, 0.006485159508883953, -0.02506939135491848, -0.05665907263755798, 0.015879154205322266, 0.025490961968898773, -0.008445462211966515, -0.0135745694860816, -0.0025101008359342813, -0.012710350565612316, -0.00956262368708849, -0.02461971715092659, 0.00569120142608881, -0.00015325844287872314, 0.016342882066965103, -0.015640264376997948, -0.014445815235376358, -0.0030985430348664522, 0.005659583956003189, 0.01569647528231144, -0.02106447145342827, 0.006762693170458078, 0.24597232043743134, -0.02046022191643715, -0.017382755875587463, 0.021303361281752586, -0.005332866683602333, 0.007721765898168087, 0.011916392482817173, 0.005301248747855425, 0.010497105307877064, 0.014445815235376358, 0.0009292116155847907, -0.045866869390010834, -0.010054456070065498, -0.014150716364383698, -0.013883721083402634, -0.0023168812040239573, -0.024900764226913452, -0.02328474260866642, -0.01755138486623764, 0.01138240285217762, 0.01341999415308237, -0.0304935984313488, -0.01890040934085846, 0.011396455578505993, 0.004746180959045887, -0.009471283294260502, 0.00019223174604121596, 0.027697181329131126, 0.023523632436990738, 0.03282628953456879, -0.015584055334329605, 0.02217460796236992, -0.003553487826138735, 0.009646938182413578, 0.006994557101279497, -0.006133850663900375, 0.012963292188942432, 0.014101533219218254, 0.018492892384529114, -0.007813106290996075, -0.009717199951410294, 0.010286320000886917, -0.007960655726492405, -0.020404011011123657, -0.02520991489291191, 0.007468823809176683, 0.0022255408111959696, 0.014031271450221539, 0.0016054809093475342, -0.010349555872380733, -0.01197962835431099, -0.027711233124136925, 0.04693484678864479, 0.012359041720628738, 0.003874935442581773, -0.012225544080138206, 0.016103992238640785, -0.002562797162681818, 0.021078525111079216, 0.0007513615419156849, -0.01791674643754959, 0.057024434208869934, -0.027725284919142723, 0.009239420294761658, -0.017902692779898643, 0.0022712110076099634, -0.019588975235819817, 0.014712809585034847, -0.020572640001773834, 0.0010196736548095942, -0.0010697351535782218, -0.00788336805999279, -0.035749178379774094, -0.022441603243350983, -0.010089587420225143, -0.02223081700503826, 0.025420701131224632, 0.03021255135536194, 0.0334726981818676, 0.01226770132780075, 0.012675219215452671, 0.01614614948630333, -0.012626036070287228, 0.01874583400785923, -0.014256108552217484, -0.017720011994242668, 0.0167363490909338, -0.037294935435056686, 0.002285263268277049, 0.007496928330510855, -0.021738985553383827, -0.006548394914716482, 0.00866327341645956, 0.017003342509269714, 0.011305115185678005, -0.004486212506890297, 0.0013701040297746658, 0.03212366998195648, -0.009119974449276924, 0.023973308503627777, -0.024043569341301918, 0.02357984334230423, 0.028891630470752716, 0.03175830841064453, -0.013813459314405918, -0.007651504594832659, -0.01689092442393303, -0.005937117617577314, 0.005779028870165348, -0.011501847766339779, 0.008845954202115536, -0.050335515290498734, 0.0007333569810725749, 0.0026839987840503454, 0.00043276845826767385, -0.003314597997814417, -0.016314778476953506, -0.01628667302429676, -0.014024244621396065, 0.010012298822402954, 0.0035130875185132027, -0.017368704080581665, -0.004148956388235092, -0.009211314842104912, -0.008733535185456276, -0.02224486880004406, -0.012766559608280659, 0.005174777936190367, 0.001230458845384419, -0.026151422411203384, 0.05140349641442299, -0.04210083931684494, 0.004345688968896866, -0.008536802604794502, 0.007454771548509598, -0.025533119216561317, -0.026587044820189476, -0.005887934472411871, 0.0040997727774083614, 0.03144915774464607, -0.010405764915049076, 0.014199899509549141, 0.019841916859149933, 0.013722119852900505, 0.010061481967568398, -0.010995963588356972, 0.006945373956114054, -0.007721765898168087, 0.01145969144999981, 0.019321979954838753, -0.04196031764149666, -0.015036013908684254, 0.017087657004594803, -0.026095213368535042, 0.011396455578505993, -0.004932374693453312, -0.03383805602788925, -0.0542982779443264, -0.0006450906512327492, 0.004679432604461908, -0.012309858575463295, 0.0004000528424512595, 0.0007500441861338913, -0.0039276317693293095, -0.017214128747582436, -0.01956086978316307, -0.17975765466690063, 0.022146502509713173, 0.05556299164891243, -0.01060249749571085, 0.025772009044885635, -0.00956262368708849, 0.015204641968011856, 0.012717376463115215, -0.027556657791137695, -0.000616546836681664, 0.035355713218450546, 0.022568073123693466, -0.0117196599021554, -0.016089940443634987, -0.0028174961917102337, 0.012675219215452671, -0.004693484865128994, 0.019982440397143364, 0.041763581335544586, 0.01607588864862919, 0.040639396756887436, -0.03437204658985138, 0.0045564742758870125, 0.036564212292432785, 0.022132450714707375, 0.026741622015833855, -0.016118045896291733, -0.017888640984892845, 0.012689271941781044, -0.03591780737042427, -0.001900580246001482, -0.0025575277395546436, 0.015050066635012627, 0.008375200442969799, 0.004834008403122425, -0.0075320592150092125, -0.005701740738004446, -0.0022606716956943274, -0.0011250661918893456, -0.00048700172919780016, -0.005582295823842287, 0.011691554449498653, -0.009850696660578251, 0.007335326634347439, -0.02275075390934944, 0.015120328404009342, 0.013335679657757282, 0.017944850027561188, -0.007050766609609127, -0.007616373710334301, -0.0028069568797945976, -0.03184262290596962, 0.015541899017989635, -0.018773939460515976, 0.01999649405479431, 0.0036149669904261827, -0.020221330225467682, -0.0035376790910959244, 0.019771656021475792, 0.029931504279375076, -0.019954336807131767, -0.01093975454568863, -7.196339720394462e-05, 0.028217118233442307, 0.014783071354031563, -0.010883544571697712, 8.069122850429267e-05, 0.06048131361603737, 0.0003148604591842741, -0.010314424522221088, 0.02178114280104637, 0.005086950492113829, 0.007770949508994818, -0.014909543097019196, 0.01867557317018509, 0.011298089288175106, 0.010918675921857357, 0.026671359315514565, 0.011480770073831081, -0.016567720100283623, -0.03156157582998276, 0.049351852387189865, -0.0034463386982679367, -0.004103286191821098, 0.02476024068892002, 0.009857723489403725, 0.0021078523714095354, -0.008817849680781364, -0.0032109618186950684, -0.03333217278122902, 0.026657307520508766, -0.02388899400830269, -0.020137017592787743, -0.008361147716641426, -0.001727560767903924, 0.03476551175117493, -0.015752684324979782, -0.006291939411312342, -0.0008725631050765514, -0.010377660393714905, -0.008227651007473469, 0.010328477248549461, -0.009653964079916477, 0.006014405749738216, 0.00867029931396246, 0.00852274987846613, -0.013806433416903019, 0.03310733661055565, 0.016483405604958534, 0.003298789029940963, -0.008185493759810925, 0.009892853908240795, 0.0167363490909338, 0.0067064836621284485, 0.005849290639162064, 0.005343405995517969, -0.012590905651450157, 0.0003447216877248138, 0.010138770565390587, -0.01814158260822296, -0.011164591647684574, -0.02216055616736412, 0.015752684324979782, 0.02953803911805153, -0.0031582654919475317, -0.05609697848558426, -0.02633410319685936, -0.03026876039803028, 0.010419817641377449, 0.029172677546739578, -0.0076233996078372, 0.005044793710112572, 0.00413139071315527, 0.021176891401410103, 0.01074302103370428, 0.012745480984449387, -0.01461444329470396, -0.025926584377884865, -0.034849826246500015, 0.015555950812995434, 0.009513440541923046, 0.0017451262101531029, -0.007243986241519451, -0.02158440835773945, -0.011628319509327412, 0.027837704867124557, -0.016694191843271255, -0.026418417692184448, -0.009527493268251419, -0.01443176344037056, -0.004356228280812502, -0.024001413956284523, -0.013771302998065948, 0.04232567548751831, 0.0038116998039186, 0.022258922457695007, 0.0557878278195858, 0.005034254398196936, 0.019054986536502838, -0.0019040934275835752, -0.00407166825607419, 0.005684175528585911, -0.03594591096043587, -0.0483681857585907, 0.013040580786764622, -0.02016512118279934, 0.017312495037913322, -0.010173900984227657, 0.03777271509170532, -0.011677502654492855, -0.005255578551441431, 0.00919023621827364, -0.004113825503736734, 0.029650457203388214, 0.012464433908462524, -0.004588092211633921, -0.012541721574962139, -0.012590905651450157, -0.011768843047320843, -0.028062542900443077, 0.03400668501853943, 0.015527846291661263, 0.023762522265315056, 0.0002604075998533517, -0.05609697848558426, 0.013701041229069233, 0.008761639706790447, 0.000978394877165556, -0.024141937494277954, 0.0011294576106593013, 0.0014737402088940144, -0.005645531229674816, -0.015865102410316467, 0.0038152129855006933, 0.004668893292546272, -0.010693837888538837, -0.0007276482065208256, -0.00528368353843689, -0.007208855357021093, 0.030999483540654182, -0.02321448177099228, -0.01576673611998558, -0.00496750557795167, -0.005497981794178486, 0.02671351656317711, -0.01711576245725155, -0.02395925670862198, -0.0029158624820411205, 0.0008431409951299429, 0.006822415627539158, 0.009850696660578251, 0.047721780836582184, -0.00789039395749569, 0.013384862802922726, 0.009991220198571682, -0.01859125867486, -0.012984370812773705, 0.022427549585700035, 0.01823994889855385, -0.0143123185262084, 6.005183604429476e-05, -0.0028807315975427628, 0.01056736707687378, 0.0007021783385425806, 0.00789039395749569, 0.017495175823569298, -0.03226419538259506, -0.03988057002425194, -0.10359392315149307, 0.03288249671459198, -0.0034586344845592976, -0.0016142636304721236, -7.597051444463432e-05, -0.025912532582879066, 0.022005978971719742, -0.01630072481930256, 0.004278940614312887, -0.007258038502186537, -0.00652731629088521, 0.03558054938912392, 0.01034252904355526, -0.010995963588356972, -0.020221330225467682, -0.025378543883562088, 0.04196031764149666, 0.032236091792583466, 0.004496751818805933, 0.03293870761990547, 0.0028087133541703224, 0.00689970375970006, 0.018113479018211365, 0.015485689043998718, -0.017200075089931488, 0.0015115058049559593, -0.016019677743315697, 0.03383805602788925, 0.0019199022790417075, -0.015345165506005287, 0.013996140100061893, -0.002285263268277049, -0.014642548747360706, 0.035524338483810425, 0.017368704080581665, 0.009885828010737896, 0.025125600397586823, 0.007813106290996075, 0.03889690339565277, -0.012148256413638592, -0.015893207862973213, -0.018773939460515976, 0.016750400885939598, -0.01048305258154869, -0.03971194103360176, 0.016033731400966644, -0.016174254938960075, 0.001431583077646792, 0.009646938182413578, 0.0012471460504457355, 0.022778859362006187, 0.011712633073329926, -0.010377660393714905, -0.013131920248270035, -0.011656424030661583, -0.0379132404923439, 0.015879154205322266, -0.0028649228624999523, -0.01030037272721529, -0.012106099165976048, 0.00721588172018528, -0.001442122389562428, 0.0011724928626790643, 0.008059022948145866, -0.002239593304693699, -0.03650800511240959, -0.005937117617577314, -0.0171017087996006, 0.018619364127516747, 0.005093976855278015, -0.02409978024661541, 0.008347095921635628, -0.008958373218774796, 0.014754966832697392, -0.004971018526703119, 0.014136663638055325, -0.00028038828168064356, -0.026376260444521904, -0.019813813269138336, 0.04932374879717827, 0.010672759264707565, 0.019588975235819817, -0.02914457395672798, 0.0029404540546238422, 0.045557718724012375, -0.018282106146216393, -0.0003743633860722184, 0.0040681553073227406, -0.016750400885939598, -0.009253472089767456, -0.010356581769883633, 0.0058598299510777, 0.013124894350767136, 0.01755138486623764, 0.019574923440814018, 0.04297208413481712, 0.012956266291439533, -0.01242227666079998, 0.025547171011567116, 0.008944320492446423, 0.014291239902377129, -0.019448451697826385, 0.015401375479996204, -0.02877921238541603, -0.016047783195972443, -0.004732128698378801, -0.002051643095910549, -0.033275965601205826, 0.0004336467245593667, 0.01711576245725155, -0.01278763823211193, -0.0009423856972716749, 0.015499741770327091, 0.028076594695448875, -0.015499741770327091, -0.014502025209367275, -0.013089763931930065, 0.005754437297582626, -0.028076594695448875, 0.009513440541923046, 0.0057755159214138985, 0.018324263393878937, 0.006516776978969574, -0.029369410127401352, 0.010005272924900055, -0.03262955695390701, 0.0017389783170074224, -0.04100475460290909, 0.020404011011123657, 0.020361853763461113, 0.012288779951632023, -0.006857546512037516, -0.017874589189887047, -0.038868799805641174, -0.02054453454911709, -0.020179174840450287, -0.006667839828878641, 0.009780434891581535, -0.028090646490454674, 0.08526965975761414, 0.0002397682110313326, 0.011529953218996525, -0.012464433908462524, 0.0006428950000554323, -0.00841033086180687, -0.005234500393271446, -0.006811876315623522, 0.01642719656229019, -0.01741086132824421, -0.0005770245916210115, -0.022357288748025894, -0.010623576119542122, -0.029425619170069695, -0.021598462015390396, -0.011888287961483002, -0.007440719287842512, 0.04083612933754921, -0.023453371599316597, 0.006291939411312342, 0.05261199548840523, -0.00967504270374775, 0.030634121969342232, 0.001826805411837995, -0.024212198331952095, -0.0026998077519237995, 0.007911472581326962, 0.016399091109633446, -0.0029790981207042933, -0.024872658774256706, 0.013434045948088169, -0.0007930794963613153, -0.015724578872323036, -0.02401546575129032, -0.022427549585700035, 0.013609700836241245, -0.010012298822402954, 0.001778500503860414, 0.03330406919121742, 0.014375553466379642, -0.012471460737287998, 0.01836642064154148, -0.03839102014899254, -0.024071674793958664, 0.005245039705187082, -0.013490255922079086, -0.008059022948145866, -0.003319867653772235, -0.036929573863744736], "e3ba026b-5908-4c73-9833-67cb82a75746": [-0.05576277896761894, -0.03730318695306778, 0.0021668763365596533, 0.008262930437922478, -0.017389867454767227, 0.01092352531850338, -0.0023811638820916414, -0.040183212608098984, 0.0015428707702085376, -0.012870971113443375, -0.012651540338993073, 0.010978383012115955, -0.00781721156090498, -0.008393216878175735, -0.002969169057905674, 0.004302895162254572, 0.017184151336550713, 0.015538422390818596, 0.021298473700881004, -0.02236819639801979, 0.023040203377604485, 0.012301823124289513, -0.0011742960195988417, -0.01800701580941677, -0.010621807537972927, -0.0003422173031140119, 0.014509842731058598, -0.02398649789392948, 0.002621165942400694, 0.02179219201207161, 0.026523662731051445, 0.016690433025360107, -0.00329831475391984, -0.00012482253077905625, -0.0014957274543121457, -0.009778372012078762, 0.016004713252186775, 0.0003197171026840806, 0.0046594697050750256, -0.004131465218961239, 0.007810354698449373, -0.01568928174674511, 0.006826345808804035, 0.017047006636857986, -0.015579566359519958, 0.01970760151743889, 0.026509948074817657, -0.013570405542850494, -0.001978303072974086, 0.0318448506295681, -0.010971525683999062, 0.005105188116431236, -0.03220142796635628, -0.014468698762357235, 0.008701791055500507, 0.012740683741867542, 0.004546325653791428, -0.0011768675176426768, -0.01940588466823101, -0.027565957978367805, 0.011691532097756863, 0.001320011680945754, -0.029211686924099922, 0.00108600954990834, 0.020667610689997673, 0.0008837220957502723, -0.02184705063700676, -0.0015737281646579504, -0.020489323884248734, 0.014605843462049961, 0.013412689790129662, 0.014057266525924206, -0.005849194247275591, 0.013440118171274662, 0.03102198801934719, -0.023136204108595848, -0.0006972918636165559, 0.0026160231791436672, 0.00903093721717596, 0.0006004338501952589, 0.01957045868039131, 0.01678643375635147, -0.019776174798607826, 0.007083490956574678, 0.017047006636857986, 0.008434359915554523, -0.01319325901567936, 0.013659548945724964, -0.020585324615240097, 7.816140714567155e-05, 0.000981437275186181, 0.008976079523563385, 0.011190955527126789, 0.013488118536770344, 0.005101759452372789, 0.013830979354679585, -0.01701957918703556, 0.03708375617861748, 0.0037611760199069977, -0.024027639999985695, -0.0050091869197785854, 0.01501727569848299, -0.01865159347653389, -0.0015660137869417667, -0.021751049906015396, -0.02398649789392948, 0.01824016124010086, -0.012397823855280876, -0.019680174067616463, -0.03595917299389839, -0.038619767874479294, 0.028772825375199318, 0.01036809105426073, -0.031296275556087494, -0.03829062357544899, 0.019666459411382675, 0.0195841733366251, -0.014578414149582386, -0.016128141433000565, -0.009490369819104671, 0.010800095275044441, 0.025577368214726448, 0.030199123546481133, 0.015181847847998142, 0.016813863068819046, 0.011403528973460197, -0.015085847117006779, -0.0018548734951764345, 0.015620709396898746, -0.01674528978765011, 0.040347784757614136, -0.024096213281154633, -0.0037508902605623007, -0.0010902953799813986, -0.01452355645596981, -0.01173267513513565, -0.011780675500631332, 0.005516619887202978, -0.03475230559706688, -0.008866364136338234, 0.021764762699604034, 0.01519556250423193, 0.010244661942124367, -0.021997908130288124, -0.016018427908420563, 0.026770520955324173, 0.010621807537972927, 0.007536066696047783, 0.003915463108569384, 0.003240028629079461, 0.0043748957104980946, 0.001182867563329637, -0.00842750258743763, -0.00504004443064332, 0.0021737334318459034, 0.007590923923999071, 0.02417849935591221, 0.001139152911491692, -0.009504083544015884, -0.011766960844397545, 0.023163633421063423, 0.00044228960177861154, 0.01260353997349739, -0.012740683741867542, -0.014372698031365871, 0.032448288053274155, -0.0005567191983573139, 0.004484611097723246, 0.0019114454044029117, -0.012123535387217999, -0.020941898226737976, -0.003552031237632036, -0.027264241129159927, -0.004728041589260101, -0.017170436680316925, 0.02816939167678356, 0.017403582111001015, -0.011492672376334667, 0.010621807537972927, -0.003709746990352869, -0.009243509732186794, -0.0031594564206898212, 0.0006124339997768402, 0.041225507855415344, -0.02893739752471447, -0.008530360646545887, 0.008064070716500282, 0.016635574400424957, 0.00277545303106308, -0.013776121661067009, 0.005989767145365477, 0.02731909789144993, 0.0077623543329536915, -5.108080949867144e-05, -0.5933400988578796, -0.0028457394801080227, 0.016004713252186775, -0.0034097444731742144, 0.006637773010879755, 0.017979586496949196, -0.010635522194206715, 0.04224037379026413, -0.02533050999045372, 0.03730318695306778, -0.0028234533965587616, 0.008928079158067703, 0.017458438873291016, -0.0046423268504440784, 0.004230894614011049, -0.03985406458377838, 0.006377199199050665, -0.005962338298559189, -0.030637985095381737, 0.024219641461968422, -0.019789889454841614, 0.03532830998301506, 3.383400326129049e-06, 0.010470949113368988, -0.005238903220742941, -0.007097205612808466, -0.03214656934142113, -0.0020468751899898052, -0.01829501800239086, 0.02666080743074417, -0.005520048551261425, 0.0011845818953588605, 0.007316635921597481, -0.008118928410112858, 0.0642382800579071, -0.012562396936118603, -0.00512575963512063, 0.015373850241303444, -0.0025954514276236296, 0.0639091357588768, -0.016978435218334198, -0.01121152751147747, 0.03557517006993294, -0.005609192419797182, 0.02550879679620266, 0.01240468118339777, -0.016183000057935715, -0.03033626824617386, 0.023095060139894485, -0.02730538323521614, -0.013001257553696632, -0.006078910548239946, -0.009949802421033382, -0.00859893299639225, -0.008804649114608765, 0.020201321691274643, 0.0052149030379951, -0.015058418735861778, -0.004909757524728775, -0.026976237073540688, -0.022519055753946304, -0.007590923923999071, 0.015538422390818596, 0.016923578456044197, -0.044654108583927155, -0.002148018917068839, -0.022066479548811913, 0.006387484725564718, 0.027977390214800835, -0.018953310325741768, -0.006233197636902332, -0.00269488082267344, 0.008043499663472176, -0.010868667624890804, 0.0198036041110754, 0.007488065864890814, 0.027552243322134018, -0.02247791178524494, -0.0058423373848199844, 0.026688234880566597, 0.007837783545255661, -0.025371652096509933, -0.019419599324464798, -0.010937239043414593, 0.018116731196641922, -0.003066884120926261, -0.013645834289491177, 0.00035336025757715106, -0.00019221598631702363, -0.00555090606212616, 0.0002000374806812033, 0.02816939167678356, 0.029376259073615074, 0.0006338627426885068, -0.019858460873365402, -0.00789949856698513, -0.04775356501340866, 0.010217232629656792, -0.0022645913995802402, -0.020653896033763885, -0.03044598363339901, -0.002295448910444975, 0.004501753952354193, -0.02161390520632267, 0.005585192237049341, -0.015840139240026474, -0.017417296767234802, -0.0029228830244392157, 0.036178603768348694, 0.0010542949894443154, -0.011595530435442924, -0.03897634521126747, 0.008372644893825054, 0.00020282321202103049, -0.002993169240653515, -0.027113381773233414, 0.024260785430669785, 0.005869766231626272, 0.016114428639411926, -0.0013491547433659434, 0.013145258650183678, -0.01726643741130829, 0.041280362755060196, 0.017732728272676468, -0.01171210315078497, 0.02051675319671631, 0.02782653085887432, 0.014646986499428749, -0.005739479325711727, -0.014166981913149357, -0.02457621693611145, -0.008681219071149826, 0.029705405235290527, -0.027812816202640533, 0.003569174325093627, -0.021229902282357216, 0.024548787623643875, 0.012116678059101105, -0.004162322264164686, -0.024589931592345238, -0.004309752490371466, 0.004882328677922487, 0.00694291852414608, -0.013762407004833221, -0.008742934092879295, -0.01394755207002163, -0.008969222195446491, 0.006798916961997747, -0.013186401687562466, 0.002818310633301735, 0.0046800412237644196, -0.016059570014476776, 0.01016923226416111, 0.015881283208727837, -0.014194411225616932, 0.0116503881290555, -0.018171587958931923, -0.03990892320871353, -0.012822969816625118, -0.011136097833514214, 0.027277955785393715, -0.03200942650437355, -0.0015574423596262932, 0.023863067850470543, -0.0031148847192525864, -0.03403915837407112, -0.012548682279884815, -0.01899445243179798, -0.0019594458863139153, -0.03044598363339901, -0.015894997864961624, 0.007872069254517555, -0.005540620535612106, 0.007227492518723011, 0.02475450374186039, -0.003915463108569384, -0.008790934458374977, -0.022217338904738426, -0.016649289056658745, -0.004728041589260101, 0.006524628959596157, -0.010937239043414593, -0.004786327946931124, -0.014811559580266476, 0.003737175837159157, 0.0021103043109178543, 0.03329857811331749, 0.01173267513513565, -0.03346315398812294, 0.034779734909534454, -0.004021749831736088, 0.02487793378531933, -0.026345375925302505, 0.0029537403024733067, 0.040704358369112015, 0.015058418735861778, 0.011232099495828152, 0.011753246188163757, 0.00022928773250896484, 0.019831031560897827, 0.042267803102731705, -0.006826345808804035, -0.0024788789451122284, -0.018679022789001465, 0.009168080985546112, -0.029732834547758102, 0.02736024186015129, -0.012068677693605423, 0.02962311916053295, -0.0026383090298622847, -0.007680067792534828, 0.0036068889312446117, -0.012445824220776558, 0.007426351308822632, 0.010998954065144062, 0.02405506931245327, -0.014427555724978447, -0.004104036372154951, 0.0147567018866539, 0.011053811758756638, 0.029650546610355377, -0.01243210956454277, 0.010820667259395123, -0.0007692925282754004, 0.003840033896267414, -0.013776121661067009, 0.013138401322066784, 0.0073646362870931625, 0.008557789959013462, -0.03859234228730202, -0.006459485739469528, 0.0026914523914456367, -0.006003481335937977, 0.01188353355973959, 0.016141856089234352, -0.013878979720175266, 0.017746442928910255, 0.007954356260597706, 0.015702996402978897, 0.00824921578168869, -0.009099508635699749, 0.005427476484328508, -0.01136238593608141, -0.026043659076094627, 0.016471002250909805, -0.013344117440283298, 0.013796692714095116, -0.0016457288293167949, -0.005057187285274267, 0.01969388872385025, -0.010306376963853836, -0.008701791055500507, -0.05082559213042259, 0.00765263894572854, -0.012384109199047089, -0.01766415499150753, -0.0011837247293442488, 0.009634370915591717, 0.007604638580232859, 0.03922320157289505, 0.020187607035040855, 0.020064176991581917, 0.010889238677918911, -0.027264241129159927, 0.0008674362325109541, -0.026482518762350082, 0.007837783545255661, -0.006205769255757332, 0.004368038382381201, -0.020667610689997673, 0.003709746990352869, -0.01818530261516571, 0.010594379156827927, -0.01217153575271368, 0.00028907397063449025, -0.002965740393847227, 0.012027534656226635, 0.013858407735824585, 0.010697237215936184, 0.009318939410150051, -0.021874478086829185, -0.018048159778118134, 0.029485974460840225, 0.010786380618810654, -0.002811453305184841, -0.015442421659827232, 0.00608576787635684, -0.020132748410105705, -0.007933784276247025, 0.030583126470446587, -0.004306323826313019, 0.010395520366728306, 9.332225454272702e-05, 0.025769369676709175, -0.012178393080830574, 0.036343175917863846, 0.02986997738480568, -0.0195841733366251, -0.023287063464522362, -0.018692735582590103, 0.010717809200286865, 0.005430905148386955, -0.01610071398317814, -0.03467002138495445, 0.030637985095381737, 2.1870728232897818e-05, 0.0016988720744848251, -0.01824016124010086, -0.01336468942463398, 0.02218990959227085, 0.008544075302779675, -0.03815348073840141, -0.00048643286572769284, -0.04651926830410957, -0.009689228609204292, 0.02371220849454403, 0.010114374570548534, -0.007776068523526192, 0.020818470045924187, -0.0023400206118822098, -0.03137856349349022, -0.011245813220739365, -0.022285910323262215, -0.016457287594676018, -0.019652744755148888, 0.0184184480458498, -0.008125785738229752, 0.005283475387841463, -0.03829062357544899, -0.010813809931278229, -0.0009634370799176395, -0.013597833923995495, 0.012891542166471481, -0.007542923558503389, -0.018034445121884346, 0.003884605597704649, -0.0014820130309090018, -0.0002241448382847011, -0.002931454451754689, 0.008907507173717022, 0.002754881512373686, -0.020009320229291916, 0.03335343673825264, 0.008256073109805584, 0.0208596121519804, -0.013289259746670723, 0.002094875555485487, 0.016525860875844955, -0.0011845818953588605, -0.029952263459563255, 0.007570352405309677, 0.025591082870960236, 0.012809256091713905, -0.005180617328733206, 0.0057291933335363865, 0.01922759786248207, 0.012925827875733376, 0.009024079889059067, -0.009003507904708385, 0.01321383100003004, 0.017047006636857986, 0.057545650750398636, 0.008434359915554523, -0.009284653700888157, -0.004522325471043587, 0.023959068581461906, 0.014358983375132084, -0.004289180506020784, -0.0016885863151401281, -0.034505445510149, 0.020311037078499794, 0.028964826837182045, -0.019831031560897827, -0.014036695472896099, 0.020695040002465248, -0.003025741083547473, -0.06089196726679802, -0.01423555426299572, -0.013529262505471706, 0.016237856820225716, -0.013008114881813526, -0.027291668578982353, 0.01136238593608141, 0.009058365598320961, 0.0037406045012176037, -0.024823077023029327, 0.0026023087557405233, 0.001618299982510507, -0.019323598593473434, -0.023835638538002968, 0.0014031552709639072, -0.024850504472851753, -0.022327054291963577, -0.003240028629079461, 0.02254648506641388, -0.01701957918703556, -0.0468209832906723, -0.0019114454044029117, 0.007913212291896343, 0.003956606145948172, 0.02516593597829342, -0.012562396936118603, -0.015236705541610718, 0.005705193150788546, -0.005646906793117523, -0.01362526323646307, -0.028388822451233864, 0.0019851604010909796, 0.01911788247525692, -0.006116625387221575, 0.01782872900366783, 0.016663003712892532, -0.0009531512623652816, 0.004796613939106464, 0.00894865021109581, 0.00022650200116913766, 0.050633590668439865, 0.020420752465724945, -0.007529209367930889, -0.006572629325091839, -0.007227492518723011, 0.012562396936118603, -0.0013834408018738031, -0.009922373108565807, 0.02423335611820221, -0.06259255111217499, -0.026482518762350082, 0.002804596209898591, -0.025028793141245842, -0.003330886596813798, 0.02800481766462326, 0.0147841302677989, 0.030665412545204163, 0.0024925933685153723, 0.018377304077148438, -0.015716709196567535, 0.01545613631606102, -0.005211474373936653, -0.0025594511535018682, 0.02445278689265251, -0.0053109037689864635, 0.00607205368578434, -0.021888192743062973, 0.0015994426794350147, 0.016004713252186775, -0.020256178453564644, 0.014825273305177689, -0.0023674494586884975, -0.0037714617792516947, 0.00774178234860301, -0.025371652096509933, -0.03423115983605385, -4.869685653829947e-05, 0.015360135585069656, -0.021888192743062973, 0.01834987662732601, 0.02218990959227085, -0.03272257372736931, -0.03933291882276535, 0.01586756855249405, 0.012624111026525497, -0.003548602806404233, -0.03176256641745567, -0.037330616265535355, -0.012219536118209362, -0.016073284670710564, -0.001206010696478188, -0.011142955161631107, 0.012576110661029816, -0.022861916571855545, -0.02173733524978161, 0.004693755879998207, 0.00014164410822559148, 0.0024617360904812813, 0.027511099353432655, -0.011609245091676712, -0.005338332615792751, -0.02179219201207161, -0.00476575642824173, -0.04100607708096504, -0.005598906427621841, -0.011177241802215576, 0.02893739752471447, 0.03527345508337021, 0.018665308132767677, 0.016525860875844955, 0.0050777592696249485, -0.0029040256049484015, 0.031515706330537796, 0.013988695107400417, 0.013494975864887238, 0.007645781617611647, -0.020091606304049492, -0.013062972575426102, 0.0037748904433101416, 0.016292715445160866, 0.027223097160458565, -0.028964826837182045, -0.018569307401776314, 0.01586756855249405, 0.0047246129252016544, 0.018857309594750404, -0.018157875165343285, -0.06588400900363922, 0.0017880158266052604, -0.005873194895684719, 0.008736076764762402, -0.016361286863684654, -0.0008751505520194769, -0.02417849935591221, -0.004261751659214497, -0.014852702617645264, 0.03508145362138748, 0.02213505282998085, -0.0044160387478768826, -0.016882434487342834, 0.0036068889312446117, -0.0012720111990347505, 0.004258323460817337, 0.0063189128413796425, -0.004796613939106464, -0.026359090581536293, 0.014125838875770569, -0.0015934426337480545, -0.004121179226785898, 0.011773818172514439, -0.02683909423649311, 0.005166902672499418, 0.004902900196611881, -0.005886909086257219, -0.015250420197844505, -0.007858354598283768, -0.01592242531478405, -0.015510994009673595, -0.02725052647292614, -0.013892694376409054, -0.009449225850403309, -0.001772587071172893, 0.018034445121884346, 0.03513630852103233, 0.01014180388301611, 0.014070981182157993, 0.001993731828406453, -0.021394474431872368, -0.0019114454044029117, -0.031515706330537796, 0.016841290518641472, 0.0011177241103723645, 0.050578732043504715, 0.02992483600974083, 0.008002356626093388, 0.01226067915558815, -0.03467002138495445, 0.005019472911953926, 0.032448288053274155, 0.027620814740657806, 0.021655047312378883, -0.006987490225583315, -0.0011220099404454231, 0.01610071398317814, 0.014976131729781628, -0.04001864045858383, -0.0370563268661499, 0.038318052887916565, 0.04333752393722534, -0.0008614361868239939, -0.01743101142346859, 0.021586475893855095, -0.03277743235230446, -0.0032966004218906164, 0.010745237581431866, -0.0013080115895718336, -0.006538343615829945, -0.008880078792572021, -0.02044817991554737, 0.010237804614007473, 0.00745378015562892, 0.02021503634750843, 0.007083490956574678, 0.01036809105426073, -0.015785282477736473, -0.012356680817902088, -0.033380866050720215, 0.000841293134726584, 0.00459089782088995, 0.015236705541610718, -0.010594379156827927, -0.005739479325711727, 0.001293440000154078, -0.03102198801934719, 0.006565771996974945, -0.027908816933631897, -0.02277962863445282, 0.04586097598075867, -0.015785282477736473, -0.011965819634497166, -0.0036274606827646494, -0.0041828942485153675, 0.01490756031125784, -0.00538976164534688, -0.020695040002465248, 0.018967024981975555, -0.017225295305252075, -0.006212626118212938, 0.0052526178769767284, 0.012500681914389133, 0.006493771448731422, -0.003966892138123512, 0.0011014383053407073, -0.025961371138691902, -0.005626335274428129, -0.005430905148386955, 0.034999165683984756, -0.026167087256908417, -0.032503142952919006, -0.02631794661283493, 0.0007272921502590179, 0.009133795276284218, 0.026043659076094627, 0.009099508635699749, 0.015606994740664959, 0.05035930126905441, -0.015085847117006779, 0.015318992547690868, -0.026400232687592506, 0.0002327163383597508, -0.00200401758775115, -0.0071520633064210415, -0.01592242531478405, -0.01138295792043209, 0.03464259207248688, -0.02369849383831024, -0.024219641461968422, -0.004536040127277374, 0.007110919803380966, 0.02247791178524494, -0.01504470407962799, 0.024356786161661148, 0.010176089592278004, 0.008544075302779675, 0.016457287594676018, -0.000636862765531987, -0.01696472056210041, 0.00608576787635684, -0.0026331660337746143, -0.008797791786491871, 0.016635574400424957, -0.010443520732223988, 0.019776174798607826, 0.00112629565410316, -6.0964823205722496e-05, -0.003966892138123512, -0.055570777505636215, -0.01859673485159874, 0.004937186371535063, -0.017115579918026924, -0.003449173178523779, 0.0016277286922559142, -0.04525754228234291, -0.011602387763559818, -0.02347906492650509, 0.02369849383831024, -0.014468698762357235, 0.008393216878175735, -0.014194411225616932, 0.03491687774658203, -0.005643478129059076, 0.02585165575146675, 0.0034988881088793278, -0.013755549676716328, 0.025714512914419174, -0.03911348804831505, -0.04440724849700928, -0.03807119280099869, -0.004841185640543699, 0.04191122576594353, 0.005578334908932447, -0.01824016124010086, -0.009524655528366566, 0.003857176983729005, -0.0391683466732502, -0.005489191506057978, -0.0026160231791436672, 0.021106472238898277, 0.019090455025434494, -0.0014751558192074299, 0.0035760316532105207, 0.025111079216003418, -0.021860763430595398, 0.02655109204351902, -0.034834593534469604, -0.007405779790133238, -0.029705405235290527, -0.00903093721717596, 0.0035760316532105207, 0.00792692694813013, -0.017705298960208893, 0.030226552858948708, 0.012637825682759285, 0.0320642814040184, 0.021929336711764336, 0.027524814009666443, -0.016416145488619804, -0.01426298264414072, -0.004971472546458244, -0.002547451062127948, -0.015538422390818596, 0.004278894979506731, -0.031131703406572342, -0.02213505282998085, -0.01771901361644268, 0.006397770717740059, 0.0077829258516430855, -0.023218490183353424, 0.014893845655024052, 0.009264081716537476, -0.021641334518790245, 0.007885783910751343, -0.025261936709284782, -0.00824921578168869, 0.008544075302779675, -0.019186455756425858, 0.03604146093130112, -0.004025178495794535, -0.005718907807022333, -0.0005391475860960782, 0.014070981182157993, 0.01145152933895588, -0.01269268337637186, -0.0009582941420376301, -0.03532830998301506, -0.0160321407020092, 0.009222938679158688, 0.014372698031365871, -0.0018137303413823247, -0.00955894123762846, 0.029485974460840225, -0.015360135585069656, -0.007940641604363918, -2.5326116883661598e-05, -0.03225628286600113, -0.047726135700941086, 0.022738486528396606, 0.04783584922552109, -0.024082498624920845, -0.006572629325091839, 0.015332706272602081, -0.00949722621589899, 0.009387511759996414, -0.02068132534623146, 0.002418878488242626, -0.03154313564300537, 0.006675487384200096, -0.009915515780448914, -0.006308626849204302, -0.0016534432070329785, -0.007124634459614754, 0.030939701944589615, -0.00850978959351778, -0.00012921541929244995, 0.24247071146965027, -0.031981997191905975, -0.0034200302325189114, 0.01452355645596981, -0.010032088495790958, 0.03050084039568901, -0.006905203685164452, -0.004601183347404003, -0.019392171874642372, 0.0024205928202718496, 0.010128089226782322, -0.01452355645596981, -0.017650442197918892, -0.007577209733426571, -0.016347572207450867, -0.008996650576591492, -0.004172608256340027, -0.02852596528828144, -0.006438913755118847, 0.016237856820225716, 0.024301929399371147, -0.009970373474061489, -0.020845897495746613, 0.019556744024157524, 0.013968123123049736, -0.004827470984309912, 0.0037817475385963917, 0.01981731690466404, 0.006963490042835474, 0.004313180688768625, -0.022121338173747063, 0.015373850241303444, -0.012445824220776558, 0.004892614670097828, -0.009805800393223763, 0.0010200090473517776, 0.02341049164533615, 0.002117161639034748, 0.03678203746676445, -0.01504470407962799, -0.009634370915591717, 0.019597887992858887, 0.004467467777431011, -0.015236705541610718, -0.015579566359519958, 0.020557895302772522, 0.010189804248511791, -0.009264081716537476, 0.006030910182744265, -0.01777387037873268, -0.03258543089032173, -0.02766195870935917, 0.029184257611632347, 0.010710951872169971, 0.009168080985546112, 0.003250314388424158, -0.008187500759959221, -0.0061234827153384686, 0.0018154445569962263, 0.028251677751541138, -0.026071086525917053, 0.04852157086133957, -0.02638651803135872, -0.0004945757682435215, -0.03664489462971687, 0.0026263089384883642, -0.020708754658699036, 0.0014237267896533012, -0.014098410494625568, -0.0052011888474226, -0.019776174798607826, -0.027757959440350533, -0.02904711291193962, -0.006709773559123278, -0.012987542897462845, -0.022039052098989487, 0.02852596528828144, 0.028855111449956894, 0.029897406697273254, 0.005520048551261425, 0.0009205795358866453, -0.01319325901567936, -0.0020725897047668695, 0.003829748136922717, -0.0021068756468594074, -0.00772806815803051, 0.017225295305252075, -0.013933837413787842, -0.007494923193007708, 0.00789949856698513, -0.0014785844832658768, -0.01527784951031208, 0.020708754658699036, 0.015579566359519958, 0.010148661211133003, -0.0147841302677989, 0.009051508270204067, 0.015648137778043747, -0.01638871617615223, -0.013933837413787842, -0.014880130998790264, 0.017869871109724045, 0.005753193516284227, 0.029732834547758102, -0.017581868916749954, -0.006154340226203203, 0.001923445495776832, 0.002941740211099386, 0.007693781983107328, -0.005022901576012373, 0.012912114150822163, -0.04114321991801262, 0.003915463108569384, -0.01530527789145708, 0.013501833193004131, -0.010587521828711033, -0.022820772603154182, -0.020996756851673126, -0.020845897495746613, 0.007104062475264072, 0.018610449507832527, -0.02753852866590023, 0.0011914391070604324, -0.003864034079015255, -0.020324749872088432, -0.026743093505501747, -0.006510914769023657, -0.020146463066339493, 0.0010380091844126582, -0.01754072681069374, 0.023671066388487816, -0.043721526861190796, 0.022066479548811913, 0.007090348284691572, 0.019885890185832977, -0.017033293843269348, -0.014838987961411476, -0.029184257611632347, 0.01870645023882389, -0.0035280310548841953, 0.007885783910751343, 0.03277743235230446, 0.018802450969815254, 0.02127104438841343, -0.002014303579926491, -0.0014991561183705926, 0.003990892320871353, 0.029431117698550224, -0.005173760000616312, 0.0023400206118822098, -0.03008940815925598, -0.028388822451233864, 0.01911788247525692, -0.013254974037408829, 0.022807057946920395, -0.019776174798607826, -0.01976246014237404, -0.03993635252118111, 0.0037988906260579824, -0.0011074383510276675, -0.020955612882971764, -0.004580611828714609, -0.003593174507841468, -0.0004907186375930905, -0.008468646556138992, 0.0033000290859490633, -0.17400839924812317, 0.014331554993987083, 0.04640955105423927, -0.019392171874642372, 0.02904711291193962, -0.00816007237881422, 0.016649289056658745, -0.0004907186375930905, -0.013165830634534359, 0.0005061473348177969, 0.022450484335422516, -0.0069977762177586555, -0.008262930437922478, -0.023616207763552666, 0.005184045527130365, -0.0020674467086791992, -0.010710951872169971, 0.012960114516317844, 0.02962311916053295, 0.009778372012078762, 0.0469307005405426, -0.045586686581373215, 0.010086946189403534, 0.025193365290760994, 0.004827470984309912, 0.024356786161661148, -0.003977178130298853, -0.020434465259313583, 0.037166040390729904, -0.015058418735861778, -0.005814908538013697, 0.009997802786529064, -0.000643291394226253, 0.003046312602236867, -0.014290411956608295, -0.028141962364315987, 0.006723487749695778, -0.011266385205090046, 0.004261751659214497, 0.014125838875770569, -0.0067132022231817245, 0.014537271112203598, -0.026235660538077354, 0.006387484725564718, -0.011554387398064137, 0.017705298960208893, 0.01036809105426073, -0.007275492884218693, 0.023451635614037514, -0.005064044613391161, 0.01049152109771967, -0.02295791730284691, -0.0016945863608270884, 0.004635469522327185, 0.01319325901567936, -0.0018960167653858662, -0.014893845655024052, -0.015826424583792686, 0.02213505282998085, 0.0012120107421651483, -0.005605763755738735, -0.03102198801934719, 0.006202340591698885, 0.014619557186961174, -0.0046388981863856316, -0.013378404080867767, -0.0067543452605605125, 0.06122111156582832, -0.012829827144742012, -0.0031885995995253325, 0.0026125945150852203, 0.019474457949399948, 0.020928185433149338, -0.011424100957810879, 0.027346527203917503, 0.017924729734659195, 0.013426404446363449, -0.004021749831736088, 0.018857309594750404, -0.027853960171341896, -0.0318448506295681, 0.06028853356838226, -0.02945854514837265, -0.004474325105547905, 0.03371001034975052, 0.008674362674355507, 0.016923578456044197, 0.006099482532590628, -0.00827664416283369, -0.03793404996395111, 0.02794996090233326, -0.01516813412308693, 0.005544048734009266, -0.028635680675506592, 0.0030205980874598026, 0.024370500817894936, -0.01579899713397026, -0.005616049747914076, -0.00949722621589899, 0.0014622985618188977, -0.028224248439073563, 0.012294965796172619, 0.00857150461524725, 0.02660594880580902, -0.00477947061881423, 0.025714512914419174, -0.020119033753871918, 0.024603646248579025, 0.02520707994699478, 0.016827577725052834, -0.010916667990386486, -0.005057187285274267, 0.007625210098922253, 0.013611548580229282, 0.022807057946920395, 0.01970760151743889, 0.00572576466947794, 0.0006840060232207179, 0.02445278689265251, 0.013933837413787842, -0.010902953334152699, -0.055461060255765915, -0.011856104247272015, 0.023437920957803726, 0.00589719507843256, -0.05107245221734047, -0.04594326391816139, -0.030884843319654465, 0.010964668355882168, 0.039716921746730804, 0.00425489479675889, -0.000931722519453615, -0.005417190492153168, 0.033326007425785065, 0.010073231533169746, 0.02109275758266449, -0.005931480787694454, -0.01998189091682434, -0.0049851867370307446, 0.024891648441553116, 0.02039332315325737, -0.0035091738682240248, -0.004961186554282904, -0.005907480604946613, -0.003018883755430579, 0.047780994325876236, -0.019913317635655403, -0.02016017772257328, 0.02358878031373024, -0.007810354698449373, -0.005677764303982258, -0.0009111508843488991, -0.005773765034973621, 0.033792298287153244, -0.008304073475301266, 0.017636727541685104, 0.06061767786741257, -0.006822917144745588, 0.01232239417731762, -0.0030737414490431547, 0.01608699932694435, 0.021915622055530548, -0.010121231898665428, -0.03242085874080658, 0.014441270381212234, -0.03242085874080658, 0.006120054051280022, 0.01206182036548853, 0.024192214012145996, 0.018637878820300102, 0.009942945092916489, -0.02556365355849266, 0.006236626300960779, 0.01708815060555935, -0.010731522925198078, -0.00903093721717596, -0.018802450969815254, 0.011067526414990425, -0.014742987230420113, -0.026688234880566597, 0.028745396062731743, 0.022560199722647667, 0.023753352463245392, 0.0021634476725012064, -0.05351361632347107, 0.010827523656189442, -0.002650309121236205, -0.016580717638134956, -0.03050084039568901, 0.009661799296736717, 0.01876130886375904, 0.012185250408947468, -0.032338570803403854, 0.008105214685201645, 0.012054963037371635, -0.0016105856047943234, -0.01680014841258526, 0.020544180646538734, 0.0007688639452680945, 0.035876888781785965, -0.015757853165268898, -0.0003120027540717274, 0.009942945092916489, -0.0018411590717732906, 0.017033293843269348, -9.273296018363908e-05, -0.016004713252186775, -0.005149759817868471, 0.004656041041016579, -0.008564647287130356, 0.006963490042835474, 0.01673157699406147, -0.006452628411352634, 0.016347572207450867, 0.025069935247302055, -0.001075723790563643, 4.6875415137037635e-05, 0.037385471165180206, 0.020324749872088432, -0.004926900379359722, -0.00018257304327562451, 0.0019183026161044836, 0.0077829258516430855, 0.005297189578413963, 0.018788736313581467, 0.0018840166740119457, -0.02714081108570099, -0.038894057273864746, -0.0833287313580513, 0.018212731927633286, -0.023972783237695694, 0.008496074937283993, 0.02852596528828144, -0.00833835918456316, 0.03354543820023537, 0.017389867454767227, 0.006397770717740059, -0.005472048185765743, 0.0033977441489696503, 0.03403915837407112, 0.014592128805816174, -0.025179650634527206, -0.014509842731058598, -0.014009266160428524, 0.020036747679114342, 0.00025950229610316455, 0.0031388849020004272, 0.017239009961485863, -0.010505235753953457, 0.010258376598358154, 0.008208072744309902, -0.00295545463450253, -0.023383064195513725, -0.0012377252569422126, 0.0011477244552224874, 0.016635574400424957, -0.006106339395046234, -0.014770415611565113, 0.002506307791918516, -0.00616119708865881, -0.0004292180819902569, 0.021641334518790245, -0.01730758138000965, 0.004388610366731882, 0.007892641238868237, 0.007947498932480812, 0.023095060139894485, -0.009812657721340656, -0.017047006636857986, -0.01330297440290451, 0.020077891647815704, -0.007570352405309677, -0.02050303854048252, 0.027031095698475838, -0.018391018733382225, -0.0026263089384883642, -0.0027154525741934776, 0.01592242531478405, 0.002741167088970542, 0.000613291107583791, -0.0017811586149036884, -0.00011142955190734938, -0.013165830634534359, -0.0390586294233799, 0.012768113054335117, 0.003270885907113552, -0.0044160387478768826, -0.01328240241855383, 0.029540831223130226, -0.004656041041016579, 0.019913317635655403, 0.014688129536807537, -0.0027668816037476063, -9.128652163781226e-05, -0.03154313564300537, -0.006497200112789869, 0.0020280180033296347, 0.012480109930038452, -0.009421797469258308, -0.007721210829913616, -0.008064070716500282, 0.009085793979465961, -0.006037767510861158, 0.01408469583839178, -0.013604691252112389, -0.008900649845600128, -0.01935102790594101, 0.03329857811331749, 0.03096712939441204, -0.01199324894696474, -0.036398034542798996, 0.009490369819104671, 0.03272257372736931, 0.000355288852006197, -0.0043371813371777534, 0.008804649114608765, -0.040814075618982315, 0.009456083178520203, -0.008544075302779675, -0.008873221464455128, 0.0007722925511188805, 0.03362772613763809, 0.016772719100117683, 0.04245980456471443, 0.009915515780448914, -0.01382412202656269, 0.004848042968660593, 0.013899550773203373, 0.025495082139968872, -0.007220635190606117, -0.006195483263581991, -0.006099482532590628, 0.0024685931857675314, 0.01136238593608141, -0.019611600786447525, -0.0269076656550169, 0.018377304077148438, 0.007529209367930889, 0.00022264482686296105, 0.018144160509109497, 0.00044957539648748934, 0.02393163926899433, -0.019885890185832977, 0.013426404446363449, 0.002969169057905674, -0.020064176991581917, -0.03266771510243416, 0.020146463066339493, 0.011698388494551182, 0.006174911744892597, 0.01592242531478405, -0.031296275556087494, 0.023794496431946754, -0.0394974909722805, -0.0059931958094239235, -0.04245980456471443, 0.013988695107400417, 0.01005266048014164, 0.016251571476459503, 0.003380601294338703, -0.03990892320871353, -0.016237856820225716, -0.016416145488619804, -0.0036720323842018843, 0.012774969451129436, 0.004899471998214722, 0.0020228750072419643, 0.06083710864186287, -0.0006852917722426355, 0.015318992547690868, 0.00016639432578813285, 0.012390966527163982, 0.0033000290859490633, 0.0015068703796714544, 0.01452355645596981, -0.02288934402167797, -0.02247791178524494, -0.00746749434620142, -0.0034543161746114492, -0.02811453305184841, -0.03999121114611626, -0.00999094545841217, 0.0036617466248571873, -0.01208239234983921, 0.030363695695996284, -0.01452355645596981, 0.002871453994885087, 0.0517033115029335, -0.021463045850396156, 0.02172362059354782, 0.004176036920398474, -0.015552137047052383, 0.007693781983107328, 0.01084123831242323, 0.013734978623688221, -0.003327457932755351, 0.00010001874034060165, 0.015222991816699505, -0.022107623517513275, -0.004608040675520897, -0.021860763430595398, -0.028251677751541138, 0.016128141433000565, -0.005012615583837032, -0.007673210464417934, 0.02022874914109707, 0.015126990154385567, -0.015469850972294807, 0.009860658086836338, -0.031981997191905975, -0.023314490914344788, 0.006459485739469528, 0.013261831365525723, -0.009915515780448914, -0.004916614852845669, -0.01800701580941677], "885c5a0b-2e15-4c7d-9257-d9a01c458eba": [-0.03154990077018738, -0.029426349326968193, 0.014478757046163082, -0.00971455592662096, -0.024503571912646294, 0.0250275656580925, -0.006194839254021645, -0.015678424388170242, 0.003767924150452018, -0.0025389534421265125, 0.00467801745980978, 0.03499722480773926, -0.02695806510746479, 0.03083285689353943, -0.00929398275911808, -0.0012884369352832437, 0.007825423032045364, -0.006915329955518246, 0.04092662036418915, -0.009438770823180676, 0.03519027307629585, 0.01307914312928915, 0.01089354045689106, -0.01421676017343998, -0.03725866600871086, 0.014961381442844868, 0.01737450808286667, -0.03268062323331833, -0.018436282873153687, 0.01811913028359413, 0.01245173066854477, 0.029205720871686935, 0.0030267497058957815, -0.013223931193351746, -0.003361139912158251, -0.0070015131495893, 0.013299772515892982, -0.0021597477607429028, -0.011748476885259151, -0.011603688821196556, 0.020876988768577576, 0.0018460415303707123, 0.009259509854018688, 0.023524532094597816, -0.02568945102393627, 0.017098722979426384, -0.007384166121482849, 0.0024717305786907673, 0.004643544089049101, 0.039464954286813736, -0.014988960698246956, 0.017733030021190643, -0.019842790439724922, 0.008087419904768467, 0.011417534202337265, 0.015209589153528214, 0.01862933300435543, 0.01867070235311985, -0.023441797122359276, -0.026640912517905235, 0.02174571342766285, 0.013499717228114605, -0.026599545031785965, -0.009790397249162197, 0.031053485348820686, 0.01133479829877615, -0.007639267947524786, 0.014023710042238235, -0.01645062491297722, 0.0034214681945741177, 0.00022030549007467926, 0.03411470726132393, 0.01723661459982395, 0.03171537071466446, 0.039768319576978683, -0.011252062395215034, -0.026640912517905235, -0.003223247127607465, 0.017002196982502937, 0.0032939170487225056, 0.0051296167075634, -0.0033146010246127844, 0.003816186683252454, -0.016464414075016975, 0.008514887653291225, -0.014244338497519493, -0.004657333251088858, 0.008094314485788345, 0.0076944250613451, -0.016974618658423424, -0.002931948285549879, 0.011645057238638401, -0.00016127008711919188, 0.007749582175165415, -0.018891330808401108, 0.012065630406141281, -0.01057638693600893, 0.023166010156273842, -0.008880304172635078, -0.01505790650844574, -0.01265856996178627, -0.0042367600835859776, -0.007494480349123478, -0.008921671658754349, -0.023855475708842278, -0.023951999843120575, 0.016629885882139206, -0.013154984451830387, -0.0023217720445245504, -0.01770545169711113, -0.03519027307629585, 0.02018752321600914, -0.0039023696444928646, -0.018312180414795876, -0.024889672175049782, 0.0018581071635708213, 0.027564795687794685, 0.008956145495176315, -0.03356313705444336, -0.011321009136736393, 0.03138442710042, 0.017650293186306953, 0.018781015649437904, -0.009280193597078323, 0.01631273329257965, -0.002476901514455676, -0.007129063829779625, -0.02519303746521473, 0.010390231385827065, -0.023166010156273842, 0.044346362352371216, -0.017843343317508698, 0.02835078537464142, 0.007887475192546844, -0.004812462721019983, 0.026778806000947952, -0.011024539358913898, -0.0026320312172174454, -0.028957514092326164, -0.011534743010997772, 0.006998065859079361, 0.021456139162182808, 0.01238967850804329, -0.035521216690540314, 0.023097064346075058, 0.015788739547133446, -0.002311430172994733, 0.018243232741951942, 0.007673740852624178, 0.01019718125462532, 0.011079696007072926, 0.005970763508230448, 0.008363205939531326, -0.010424705222249031, 0.01842249371111393, -0.007749582175165415, 0.0001323987526120618, 0.010803909972310066, 0.022862646728754044, -0.04600107669830322, 0.02068393863737583, 0.014616649597883224, -0.008907882496714592, -0.026902908459305763, 0.0066533335484564304, 0.03276335820555687, 0.02002205140888691, -0.0013142918469384313, -0.01737450808286667, -0.0184638611972332, -0.013072248548269272, -0.005167537368834019, -0.02073909528553486, -0.0016167944995686412, -0.009576663374900818, 0.006015578750520945, 0.010190286673605442, -0.005987999960780144, 0.003905816935002804, 0.009424980729818344, -0.007335903588682413, -0.01425812765955925, 0.00832873210310936, 0.04128514230251312, -0.024710411205887794, -0.04362931847572327, -0.004112656228244305, 0.006267233286052942, -0.0005485552828758955, 0.0030112366657704115, 0.03764476627111435, 0.04327080026268959, 0.0030888014007359743, 0.014354652725160122, -0.5767233371734619, -0.03146716579794884, 0.01368587277829647, -0.010659122839570045, 0.021056249737739563, 0.016009368002414703, -0.0023545215371996164, 0.03712077438831329, -0.016340311616659164, 0.03932706266641617, -0.0038541071116924286, 0.020752884447574615, 0.0076668462716042995, 0.006291364319622517, -0.008673464879393578, -0.04740758612751961, -0.0008622616878710687, -0.013878922909498215, -0.0010859067551791668, 0.011845001950860023, -0.023441797122359276, 0.024489782750606537, -0.007921948097646236, 0.01891890913248062, 0.012830936349928379, -0.01203115750104189, -0.01358245313167572, 0.003967868629842997, 0.004171260632574558, 0.03974074125289917, -0.02342800796031952, -0.0012556874426081777, 0.009073354303836823, -0.010273022577166557, 0.05369550362229347, -0.012079419568181038, -0.0303640216588974, 0.02728900872170925, -0.006560255773365498, 0.052840568125247955, 0.001750378287397325, -0.010817700065672398, 0.03844454512000084, 0.013279087841510773, 0.007646162528544664, -0.005146853160113096, 0.008728621527552605, -0.019498059526085854, 0.0018408704781904817, 0.005491585470736027, -0.017346929758787155, 0.005436428356915712, 0.003278404241427779, -0.014920013956725597, 0.00585700199007988, -0.0009290535817854106, 0.028819620609283447, -0.03767234459519386, 0.009942079894244671, -0.0303640216588974, -0.010928014293313026, 0.021814659237861633, 0.008397678844630718, -0.01807776279747486, -0.03218420594930649, 0.007646162528544664, -0.007315219379961491, -0.006208628881722689, 0.004836594220250845, -0.03003307804465294, -0.006498204078525305, -0.014437388628721237, -0.013051564805209637, -0.007901264354586601, 0.017002196982502937, 0.03199115768074989, 0.035852160304784775, -0.01891890913248062, -0.0046159652993083, 0.022173181176185608, 0.011086590588092804, -0.00036476986133493483, -0.046028658747673035, -0.015237167477607727, 0.03874791041016579, -0.00550882238894701, -0.03234967961907387, -0.0057949498295784, 0.021332034841179848, -0.0018339758971706033, 0.023110853508114815, 0.01569221355021, 0.007977105677127838, -0.01977384462952614, -0.022931592538952827, 2.11552523978753e-05, -0.04669054225087166, 0.0014470138121396303, 0.007218694314360619, -0.006274127867072821, -0.025179246440529823, 0.004946908447891474, 0.0002953924995381385, 0.005153747741132975, 0.017677871510386467, -0.0022890225518494844, -0.03725866600871086, 0.009935185313224792, 0.04357416182756424, -0.006084525026381016, -0.0071221692487597466, -0.052426889538764954, -0.0067981211468577385, 0.007997789420187473, 0.011624373495578766, -0.03494206443428993, 0.031274113804101944, 0.002880238462239504, 0.0179536584764719, -0.021938763558864594, 0.00689809350296855, 0.0112313786521554, 0.002980210818350315, 0.0032663384918123484, 0.0014866580022498965, 0.02330390363931656, 0.014437388628721237, 0.0002354952594032511, -0.005674293730407953, 0.003173260949552059, 0.011052117682993412, 0.013148089870810509, 0.010224760510027409, -0.011341692879796028, 0.0310810636729002, -0.01101764477789402, 0.022393809631466866, -0.0012729240115731955, 0.02859899215400219, 0.005750134587287903, -0.01791229099035263, -0.016036946326494217, -0.00019757469999603927, -0.00881135743111372, 0.00811499822884798, -0.0383618101477623, 0.002750963671132922, 0.006570597644895315, -0.023248746991157532, 0.0036438205279409885, 0.008004684001207352, -0.018698280677199364, -0.008528676815330982, 0.03339766710996628, -0.003909264225512743, 0.007680635899305344, -0.024407047778367996, 0.0020632229279726744, 0.008638991042971611, -0.026696069166064262, -0.003505927510559559, -0.011493374593555927, -0.04156092554330826, 0.005015855189412832, -0.03314945846796036, -0.024889672175049782, -0.012224207632243633, 0.0008622616878710687, -0.0019149879226461053, -0.038885802030563354, -0.013692767359316349, 0.011948421597480774, 0.008570045232772827, 0.0024803488049656153, -0.004005789291113615, -0.009466349147260189, -0.01934637688100338, -0.003283575177192688, 0.010459178127348423, -0.004626307636499405, 0.0032077340874820948, -0.0037058722227811813, 0.014071972109377384, -0.011072801426053047, 0.0037196616176515818, -0.007280746009200811, 0.009259509854018688, 0.021511295810341835, -0.02611691877245903, 0.030308863148093224, -0.017388297244906425, 0.005208904854953289, 0.0070739067159593105, 1.6495980162289925e-05, 0.030308863148093224, 0.029205720871686935, 0.040402624756097794, 0.030943172052502632, -0.006343074142932892, 0.028985092416405678, 0.022697174921631813, 0.007632373366504908, -0.010659122839570045, -0.030501913279294968, 0.007839212194085121, -0.02443462610244751, 0.012479308992624283, -0.019442901015281677, 0.0027802661061286926, -0.0015711174346506596, -0.006553361192345619, -0.002937119221314788, -0.012334521859884262, 0.022724753245711327, 0.022890225052833557, 0.010707384906709194, -0.031853266060352325, 0.004805568140000105, 0.016078313812613487, -0.006343074142932892, -0.0016874646535143256, -0.0010548807913437486, 0.009749029763042927, -0.0004895198508165777, 0.01723661459982395, 0.006918777246028185, 0.0158990528434515, -0.00012216450704727322, -0.006256891414523125, -0.012610307894647121, -0.021125195547938347, -0.012768884189426899, -0.00043242357787676156, -0.004740069154649973, 0.023731371387839317, -0.009066459722816944, 0.03935464099049568, -0.0035369533579796553, 0.021180352196097374, -0.009438770823180676, -0.00596042163670063, 0.03356313705444336, -0.006849830970168114, -0.022393809631466866, 0.011948421597480774, 0.020546045154333115, 0.0428847000002861, 0.011245167814195156, -0.009466349147260189, 0.02422778680920601, -0.023400427773594856, -0.0003132754936814308, -0.008625201880931854, 0.016850514337420464, -0.0013401468750089407, 0.0020597754046320915, 0.002501032780855894, -0.0005002927500754595, 0.02170434594154358, 0.029619399458169937, 0.0038023972883820534, 0.028378363698720932, 0.0017874370096251369, 0.008425257168710232, 0.0039230533875525, -0.01127274613827467, 0.012113893404603004, 5.0928811106132343e-05, 0.0173331405967474, -0.008135681971907616, -0.0280060525983572, -0.014016815461218357, 0.006129340268671513, -0.0018288048449903727, 0.01976005546748638, -0.018063971772789955, 0.025261983275413513, 0.013968552462756634, 0.005588110536336899, 0.017043564468622208, -0.0013522125082090497, -0.04503582790493965, 0.03502480313181877, 0.007956421934068203, -0.007804739288985729, -0.015554320998489857, -0.012355205602943897, -0.008804462850093842, -0.008501098491251469, 0.02494482882320881, -0.011203799396753311, 0.01871206983923912, -0.006019026041030884, 0.017264192923903465, -0.021263089030981064, -0.007763371337205172, 0.01577495038509369, -0.01682293601334095, 0.01707114279270172, -0.0003012098604813218, -0.007280746009200811, 0.008576939813792706, -0.021718135103583336, -0.02275233156979084, 0.027564795687794685, 0.012017368339002132, -0.00710838008671999, -0.016133472323417664, 0.000683862715959549, 0.004181602969765663, 0.030584650114178658, -0.010017920285463333, -0.005977658089250326, -0.04282953962683678, -0.019966894760727882, 0.016133472323417664, -0.0009850725764408708, -0.01963595114648342, 0.027537215501070023, 0.010404020547866821, -0.05303361639380455, -0.020339205861091614, -0.01829839125275612, 0.006636096630245447, -0.012224207632243633, 0.026337547227740288, -0.004343627020716667, -0.013920290395617485, -0.03756203129887581, -0.0015314732445403934, 0.0035714267287403345, -0.010666017420589924, 0.015843896195292473, -0.0153888501226902, -0.0004541848029475659, 0.0198979489505291, 0.007335903588682413, -0.01981521211564541, 0.018160497769713402, -0.0041402350179851055, 0.002092525130137801, -0.00043285448919050395, 0.027606163173913956, -0.017057353630661964, 0.02158024162054062, 0.009073354303836823, 0.01640925742685795, 0.011245167814195156, -0.009314666502177715, -0.0010833212872967124, 0.005429533775895834, 0.01665746420621872, 0.0208218302577734, 0.015375060960650444, -0.007611689157783985, 0.007501374930143356, 0.004257443826645613, 0.0028423178009688854, -0.012486203573644161, 0.002263167640194297, 0.03869275376200676, 0.05113069340586662, -0.003771371440961957, -0.007460006978362799, 0.025923868641257286, 0.01955321617424488, 0.021676767617464066, -0.01505790650844574, -0.014202971011400223, 0.0029715923592448235, 0.005915606394410133, 0.0033663108479231596, -0.01234141644090414, -0.01410644594579935, 0.01425812765955925, -0.018987854942679405, -0.04743516445159912, -0.01686430349946022, 0.0046538859605789185, 0.02300053834915161, -0.037534452974796295, -0.04260891303420067, 0.0114382179453969, -0.00022019776224624366, 0.01635410077869892, -0.01653336174786091, -0.001956355758011341, -0.00870793778449297, 0.011086590588092804, 0.0013298048870638013, -0.02396578900516033, -0.013996131718158722, -0.047545477747917175, -0.0057087671011686325, 0.0029112643096596003, -0.029426349326968193, -0.022724753245711327, -0.0017926079453900456, -0.002058051759377122, 0.012699938379228115, 0.01657472923398018, -0.010459178127348423, -0.0034438755828887224, 0.022269707173109055, -0.00745311239734292, -0.026254812255501747, -0.013389403000473976, -0.006029367912560701, 0.027261430397629738, 0.012913672253489494, 0.028819620609283447, 0.02158024162054062, 0.008280470035970211, 0.025096511468291283, 0.029757292941212654, -0.004526335280388594, 0.027220062911510468, 0.007204905152320862, -0.007404849864542484, 0.007928842678666115, -0.006763647776097059, 0.023607268929481506, -0.008108103647828102, 0.004478072747588158, 0.00620173430070281, -0.05719798430800438, -0.024020947515964508, 0.0051813265308737755, -0.040016524493694305, -0.011934632435441017, 0.0285162553191185, 0.026847751811146736, 0.0009092314285226166, 0.005684635601937771, 0.023359060287475586, -0.0158990528434515, -0.0024665596429258585, -0.005243378225713968, 0.0010617754887789488, 0.010266127996146679, -0.005667399149388075, 0.006284469738602638, -0.0023545215371996164, 0.00020910169405397028, 0.0039299484342336655, -0.03325977176427841, 0.029619399458169937, 0.025758396834135056, 0.01669883355498314, 0.012568939477205276, -0.024076104164123535, -0.04004410281777382, 0.0022080102935433388, 0.014285706914961338, 0.001985657960176468, 0.008273575454950333, 0.02123551070690155, -0.020159944891929626, -0.03325977176427841, 0.010466072708368301, -0.0038092918694019318, 0.018270812928676605, -0.018560387194156647, -0.016298944130539894, -0.03709319606423378, -0.008956145495176315, 0.007460006978362799, 0.005401954986155033, 0.009004407562315464, -0.026516808196902275, -0.013768607750535011, 0.02742690220475197, -0.0015685319667682052, 0.0042057340033352375, 0.01175537146627903, -0.0033973369281738997, -0.017608925700187683, -0.015471586026251316, -0.009659399278461933, -0.03764476627111435, 0.0038989223539829254, -0.009052670560777187, 0.014202971011400223, 0.0013151537859812379, 0.03342524543404579, 0.005270957015454769, 0.014451177790760994, -0.01036954764276743, 0.010217864997684956, -0.012431046925485134, -0.0289299339056015, 0.0027888843324035406, -0.02611691877245903, -0.0040437099523842335, -0.013017091900110245, 0.019084380939602852, 0.025413665920495987, -0.03902369737625122, -0.026613334193825722, 0.017677871510386467, 0.0034111260902136564, 0.014658017084002495, -0.020201312378048897, -0.06817425787448883, 0.004047157242894173, -0.00592939555644989, -0.00881135743111372, -0.016643675044178963, -0.026089340448379517, -0.0151820108294487, 0.03290124982595444, -0.004098867066204548, 0.008859620429575443, 0.022986749187111855, -0.012313838116824627, -0.02334527112543583, -0.017636504024267197, -0.009100932627916336, 0.021097617223858833, 0.006556808482855558, -0.0013625543797388673, -0.01545779686421156, 0.008942356333136559, -0.006056946702301502, -0.018615543842315674, 0.02148371748626232, -0.011948421597480774, 0.011341692879796028, -0.01817428693175316, 0.010631544515490532, -0.013996131718158722, -0.0173331405967474, -0.007659951690584421, -0.010404020547866821, -0.02490346133708954, -0.02675122581422329, 0.002545848023146391, -0.029840027913451195, 0.02884719893336296, 0.014134024269878864, 0.011562321335077286, 0.0019011986441910267, -0.02734416536986828, -0.007287641055881977, 0.020890777930617332, -0.015140642412006855, 0.03814118355512619, -0.013010197319090366, 0.022145602852106094, 0.022186970338225365, 0.023166010156273842, 0.007777160499244928, -0.04597349837422371, -0.010769437067210674, 0.014616649597883224, 0.040899042040109634, 0.04702148586511612, -0.00426778569817543, -0.006239654496312141, 0.02191118523478508, -0.012486203573644161, -0.02351074293255806, -0.030419178307056427, 0.02494482882320881, 0.02704080194234848, -0.028957514092326164, -0.017719240859150887, 0.007266956847161055, -0.006584386806935072, 0.005033091641962528, -0.02400715835392475, -0.0033421795815229416, -0.025896290317177773, -0.021304456517100334, -0.01421676017343998, -0.007301430217921734, -0.000907507783267647, 0.01622999645769596, 0.01723661459982395, 0.0017408981220796704, -0.01356176845729351, 0.005943184718489647, -0.03469385951757431, 0.010769437067210674, -0.007977105677127838, 0.015278535895049572, -0.011548532173037529, -0.015319903381168842, 0.03229452297091484, -0.002164918929338455, -0.004143682308495045, -0.01938774436712265, -0.01817428693175316, 0.0457528717815876, -0.013920290395617485, -0.010686701163649559, -0.007232483476400375, 0.005108932498842478, 0.032404836267232895, -0.0015194076113402843, -0.011638162657618523, -0.0012350034667178988, -0.01817428693175316, -0.0031991158612072468, 0.01067980658262968, -0.012217313051223755, 0.000595094112213701, -0.005264062434434891, -0.02741311304271221, -0.015747372061014175, -0.0043505216017365456, 0.0015581899788230658, 0.005891474895179272, -0.025510190054774284, -0.026820173487067223, -0.021594030782580376, 0.00043263903353363276, -0.012486203573644161, 0.015375060960650444, 0.019663531333208084, 0.022021498531103134, 0.046497493982315063, 0.006660228129476309, 0.011314114555716515, -0.006043157074600458, -0.0028940276242792606, 0.004012683872133493, -0.015609478577971458, -0.00029991709743626416, -0.013534190133213997, 0.02397957816720009, -0.006346521899104118, -0.0005834594485349953, -0.01909817010164261, 0.0024234680458903313, 0.03141200914978981, 0.006360311061143875, 0.027495848014950752, -0.002320048399269581, 0.015264746733009815, 0.011238273233175278, 0.0031353402882814407, -0.013327350839972496, -0.0023786528035998344, -0.0012815423542633653, -0.016133472323417664, 0.011727793142199516, -0.021014880388975143, 0.013444559648633003, -0.004347074311226606, 0.0007191977929323912, -0.0009083696058951318, -0.05455043911933899, -0.03450080752372742, 0.0021028670016676188, -0.014230549335479736, -0.0023493506014347076, 0.006808463018387556, -0.04120240360498428, 0.004374653100967407, -0.028543835505843163, 0.0036817409563809633, -0.0034438755828887224, 0.006267233286052942, -0.0007523782551288605, 0.037286244332790375, 0.0028785148169845343, 0.01602315716445446, 0.002440704731270671, -0.02704080194234848, 0.009438770823180676, -0.02279369905591011, -0.03381134569644928, -0.020656360313296318, -0.029757292941212654, 0.05016544461250305, -0.005270957015454769, -0.01702977530658245, -0.0467732772231102, -0.009769713506102562, -0.03996136784553528, -0.011851896531879902, -0.01486485730856657, 0.0040264734998345375, 0.05609484016895294, -0.006680911872535944, -0.005395060405135155, 0.014658017084002495, -0.012879198417067528, 0.004629754927009344, -0.023069486021995544, -0.011500269174575806, -0.008108103647828102, -0.004178155679255724, -0.028405942022800446, 0.0056605045683681965, -0.019580794498324394, -0.006736068986356258, -0.00891477707773447, -0.008611412718892097, 0.008135681971907616, 0.028488676995038986, 0.011327903717756271, -0.016712622717022896, -0.012058735825121403, -0.005219247192144394, -0.009873133152723312, 0.028709305450320244, -0.020325416699051857, -0.03847212344408035, -0.023951999843120575, 0.012644780799746513, 0.0015021710423752666, -0.024117471650242805, 0.012210418470203876, 0.02733037620782852, -0.025882501155138016, 0.003292193403467536, -0.022297285497188568, -0.021138984709978104, 0.02484830468893051, 0.011500269174575806, 0.04768337309360504, 0.0030543282628059387, 0.0022855752613395452, 0.008487309329211712, -0.00139616581145674, 0.013196352869272232, -0.01577495038509369, -0.001080735819414258, -0.03712077438831329, -0.003788607893511653, 0.01850523054599762, 0.018008815124630928, -0.0013151537859812379, -0.0044263629242777824, 0.023772738873958588, -0.006763647776097059, -0.006249996833503246, -0.0026303075719624758, -0.004674570169299841, -0.04357416182756424, 0.008832041174173355, 0.013651398941874504, -0.02906782738864422, -0.012899883091449738, -0.00828736461699009, -0.032735779881477356, 0.013803081586956978, -0.035603951662778854, 0.013934079557657242, -0.033287350088357925, 0.009362929500639439, 0.011452007107436657, 0.009900711476802826, 0.003340455936267972, 0.026461651548743248, 0.039134010672569275, -0.008480414748191833, 0.0014530466869473457, 0.24975165724754333, 0.0010669464245438576, 0.00777026591822505, -0.0006403402658179402, -0.005243378225713968, 0.03574184328317642, -0.01181742362678051, -0.021607819944620132, 0.003933395724743605, -0.012051841244101524, -0.010031710378825665, -0.013092933222651482, -0.0016478203469887376, -0.0028095683082938194, -0.0115898996591568, 0.0238003171980381, -0.014685596339404583, -0.02901267074048519, -0.010569492354989052, -0.018008815124630928, 0.010011025704443455, 0.0009299154044128954, -0.00620173430070281, 0.0004985691048204899, 0.015044117346405983, 0.008838935755193233, -0.020284049212932587, 0.009597347117960453, 0.04544950649142265, 0.0051330639980733395, -0.026847751811146736, 0.02654438652098179, -0.02060120180249214, 0.026103129610419273, -0.018491441383957863, -0.012320732697844505, 0.03731382265686989, 0.010038604959845543, 0.024737989529967308, 0.007253167685121298, -0.01698840782046318, 0.006332732271403074, 0.012334521859884262, -0.01905680075287819, -0.019167115911841393, 0.00828736461699009, 0.0044160205870866776, -0.031025907024741173, -0.0073910607025027275, -0.008997512981295586, -0.044180892407894135, -0.03940979763865471, 0.022655807435512543, 0.019746266305446625, -0.013113616965711117, 0.006143129430711269, -0.0008721727062948048, 0.005619136616587639, 0.017015986144542694, 0.03571426495909691, -0.013265298679471016, 0.03372860699892044, -0.009755924344062805, 0.017815764993429184, -0.037368983030319214, -0.0020304732024669647, -0.02431052178144455, -0.007080801296979189, 0.003630031133070588, -0.0226695965975523, -0.02170434594154358, -0.013437665067613125, -0.014988960698246956, -0.0012875751126557589, -0.034004393965005875, -0.027661319822072983, 0.04743516445159912, -0.0007760786102153361, 0.03827907517552376, 0.014920013956725597, 0.005126169417053461, 0.008549361489713192, -0.012527571991086006, -0.015995578840374947, -0.008190839551389217, -0.01549916435033083, 0.010548808611929417, -0.006422362755984068, -0.010445388965308666, 0.02166297845542431, 0.003076735883951187, -0.012527571991086006, 0.02250412479043007, -0.01618862897157669, 0.007597899995744228, -0.005022749770432711, -0.0070084077306091785, 0.0053433505818247795, -0.021924974396824837, 0.0002953924995381385, -0.027647530660033226, -0.0007148886215873063, 0.004609070718288422, 0.0035679794382303953, -0.03571426495909691, 0.016629885882139206, -0.007508269511163235, 0.02687533013522625, -0.0021269982680678368, -0.016602307558059692, 0.0006890337099321187, -0.009700766764581203, 0.006087972316890955, -0.01067980658262968, 0.000229893354116939, -0.00232349568977952, -0.028819620609283447, -0.028985092416405678, -0.013430770486593246, 0.007735793013125658, 0.03099832870066166, -0.006663675419986248, -0.015306114219129086, 0.0014504611026495695, 0.005381271243095398, -0.01469938550144434, -0.013678978197276592, -0.028378363698720932, 0.009542190469801426, -0.021249299868941307, 0.023359060287475586, -0.0457528717815876, 0.03141200914978981, -0.007087696343660355, -0.0075220586732029915, -0.00043242357787676156, 0.017015986144542694, -0.036403730511665344, 0.003292193403467536, 0.005377823952585459, 0.013720345683395863, 0.03587973862886429, 0.003926501143723726, 0.003424915485084057, -0.004657333251088858, -0.0017857133643701673, -0.0006610241835005581, 0.01127274613827467, 0.00897682923823595, -0.019567005336284637, -0.04638717696070671, -0.013692767359316349, 0.013816870748996735, 0.0017822659574449062, 0.00945945456624031, 0.008466625586152077, -0.031522322446107864, -0.040485359728336334, -0.00752895325422287, 0.031605057418346405, -0.020008262246847153, 0.0003078890440519899, -0.007460006978362799, -0.026530597358942032, 0.0034214681945741177, -0.00945945456624031, -0.17495854198932648, 0.003004342084750533, 0.04316048324108124, -0.039602845907211304, 0.03003307804465294, -0.0018322521355003119, 0.006153471767902374, 0.009238826110959053, 0.012396574020385742, -0.019691109657287598, 0.02915056422352791, 0.011782949790358543, -0.020876988768577576, 0.002825081115588546, 0.008728621527552605, 0.010252338834106922, -0.023207377642393112, 0.016202418133616447, 0.028378363698720932, 0.010762542486190796, 0.04536677151918411, -0.0235934779047966, -0.002556190127506852, 0.041147246956825256, -0.0014616649132221937, 0.020849410444498062, -0.018450072035193443, -0.030005499720573425, 0.002783713396638632, -0.019870370626449585, -0.005674293730407953, -7.648747850907966e-05, 0.023731371387839317, 0.01404439378529787, 0.01682293601334095, -0.006615412887185812, 0.0020390916615724564, -0.008418362587690353, -0.002597557846456766, 0.012755095027387142, 0.010810804553329945, 0.041698820888996124, -0.013223931193351746, -0.008604518137872219, -0.0037437928840517998, 0.02195255272090435, 0.004484967328608036, 0.015168221667408943, 0.00929398275911808, 0.010210970416665077, 0.0231797993183136, -0.01352040097117424, 0.006125892978161573, -0.0026165181770920753, 0.046442337334156036, 0.0033869948238134384, -0.0062706805765628815, -0.0117967389523983, 0.006811910308897495, -0.008087419904768467, 0.004257443826645613, -0.016753990203142166, -0.0035679794382303953, 0.02073909528553486, -0.022642018273472786, -0.007260062266141176, -0.007363481912761927, 0.05774955451488495, -0.02498619817197323, -0.00526750972494483, 0.008928566239774227, -0.006787778809666634, 0.017677871510386467, -0.004009236581623554, 0.013547979295253754, -0.015430217608809471, 0.007611689157783985, 0.005239930935204029, 0.025854922831058502, -0.01782955415546894, -0.029122984036803246, 0.051158275455236435, -0.010445388965308666, -0.004657333251088858, 0.03996136784553528, -0.005202010273933411, 0.014147813431918621, -0.018353547900915146, -0.0047159381210803986, -0.014795910567045212, 0.045063406229019165, -0.03052949346601963, 0.001565084676258266, -0.0025872159749269485, 0.0203116275370121, 0.0018667253898456693, -0.020849410444498062, -0.002940566511824727, -0.01223799679428339, 0.010486756451427937, -0.025813555344939232, -0.007818528451025486, -0.0028630017768591642, 0.010252338834106922, 0.02055983431637287, 0.02644786238670349, -0.030391599982976913, 0.02586871199309826, 0.013065353967249393, 0.02716490626335144, -0.02539987675845623, 0.014671807177364826, 0.007094590924680233, 0.036017630249261856, 0.022173181176185608, 0.012506888248026371, -0.02435188926756382, -0.0032732333056628704, -0.009431876242160797, 0.01665746420621872, -0.014837278053164482, -0.03510753810405731, 0.01938774436712265, 0.019732477143406868, -0.0006618860061280429, -0.031687792390584946, -0.061169300228357315, -0.03935464099049568, 0.012410363182425499, 0.027564795687794685, -0.011748476885259151, 0.013465243391692638, -0.0010721174767240882, 0.0257446076720953, 0.01325150951743126, 0.011672635562717915, -0.014285706914961338, -0.02283506840467453, -0.006129340268671513, 0.009218141436576843, -0.0008532124338671565, 0.0019787633791565895, 0.012630991637706757, -0.011238273233175278, -0.004467730410397053, 0.01469938550144434, -0.019291220232844353, -0.009342245757579803, -0.006870514713227749, -0.015113064087927341, -0.004343627020716667, 0.0001261504803551361, -0.023648636415600777, 0.01404439378529787, 0.0018425941234454513, 0.00891477707773447, 0.04793157801032066, -0.018022604286670685, 0.007625478319823742, -0.022697174921631813, 0.012624097056686878, 0.022683385759592056, -0.03756203129887581, -0.020849410444498062, 0.01731935143470764, -0.026516808196902275, 0.009549085050821304, -0.007260062266141176, 0.008625201880931854, -0.01715387962758541, 0.008832041174173355, -0.02498619817197323, -0.009549085050821304, 0.004595281556248665, -0.0010678082471713424, -0.02238002046942711, -0.04230554774403572, -0.01051433477550745, -0.03461112454533577, -0.013975447975099087, 0.016119683161377907, 0.02531713992357254, -0.0074875857681035995, 0.005336456000804901, -0.045311614871025085, 0.014837278053164482, 0.00013595380005426705, 0.004295364487916231, -0.019291220232844353, 0.0205184668302536, 0.0014857961796224117, 0.017733030021190643, -0.017608925700187683, -0.032487571239471436, 0.017346929758787155, -0.011086590588092804, -0.0014651123201474547, 0.03855486214160919, 0.005102037917822599, 0.028792042285203934, -0.04230554774403572, -0.013120511546730995, -0.0020132367499172688, -0.014147813431918621, 0.04043020308017731, 0.014051288366317749, -0.019360166043043137, -0.007977105677127838, 0.00571910897269845, -0.01698840782046318, 0.018105341121554375, 0.02431052178144455, 0.008887198753654957, 0.008825146593153477, 0.007611689157783985, -0.027537215501070023, 0.005632925778627396, 0.00999034196138382, 0.015126853249967098, -0.00196152669377625, -0.00585700199007988, -0.003343903226777911, 0.004626307636499405, -0.0019046459347009659, 0.009555979631841183, -0.003674846375361085, -0.030584650114178658, -0.031798105686903, -0.07937116175889969, 0.03210147097706795, -0.015664635226130486, 0.0026630570646375418, 0.011403744108974934, 0.004740069154649973, 0.02279369905591011, -0.0005033091874793172, 0.0022648912854492664, -0.01522337831556797, -0.01137616578489542, 0.035686686635017395, 0.01778818666934967, 0.011645057238638401, -0.016767779365181923, 0.0008919948595575988, 0.039602845907211304, -0.000243036265601404, -0.006484414450824261, 0.012182839214801788, -0.004826252348721027, -0.0035990052856504917, 0.013610031455755234, 0.0009350863401778042, -0.03325977176427841, 0.010659122839570045, -0.016836725175380707, 0.0011488203890621662, -0.01731935143470764, -0.03370102867484093, -0.0032818515319377184, 0.006732621695846319, -0.011238273233175278, 0.022559281438589096, -0.001053157146088779, 0.005519164260476828, 0.00475385831668973, 0.008459731005132198, 0.016974618658423424, 0.013265298679471016, -0.0117967389523983, -0.02410368248820305, 0.008335626684129238, -0.003211181377992034, -0.010583281517028809, 0.009073354303836823, -0.005674293730407953, 0.009259509854018688, 0.0016831554239615798, 0.008425257168710232, 0.010169602930545807, 0.02191118523478508, 0.0017159050330519676, -0.010969381779432297, -0.01635410077869892, -0.03709319606423378, 0.012196628376841545, 0.01089354045689106, 0.005150300450623035, -0.026337547227740288, 0.015140642412006855, -0.003964421339333057, 0.018932698294520378, -0.003271509660407901, -0.005777713377028704, -0.01778818666934967, -0.019732477143406868, -0.008832041174173355, -0.005274404305964708, -0.01731935143470764, -0.014396021142601967, -0.013610031455755234, 0.007639267947524786, 0.01762271486222744, 0.010404020547866821, 0.01383755449205637, -0.01606452465057373, -0.01425812765955925, -0.024034736678004265, 0.024572517722845078, 0.04440151900053024, -0.013754818588495255, -0.045146141201257706, -0.0026889119762927294, 0.03563152998685837, 0.004788331687450409, -0.012699938379228115, -0.00710838008671999, -0.02238002046942711, 0.004398784134536982, 0.0032904697582125664, 0.005139958579093218, 0.022366231307387352, 0.019649740308523178, 0.03532816469669342, 0.02422778680920601, 0.0015202694339677691, 0.003747240174561739, 0.016119683161377907, 0.0250275656580925, 0.015788739547133446, -0.0020546044688671827, -0.0021442349534481764, -0.03902369737625122, -0.008645886555314064, 0.0153888501226902, -0.01707114279270172, -0.012313838116824627, 0.013754818588495255, -0.0018460415303707123, -0.008652781136333942, 0.026696069166064262, -0.0008497651433572173, 0.025082722306251526, -0.0006222418160177767, 0.005939737427979708, -0.027537215501070023, -0.017774397507309914, -0.027854369953274727, 0.02410368248820305, 0.027785424143075943, 0.002618241822347045, 0.030970750376582146, -0.023951999843120575, 0.03861001878976822, -0.017898501828312874, 0.023455586284399033, -0.01598178967833519, 0.019884159788489342, -0.00291298795491457, -0.00032297108555212617, 0.00817705038934946, -0.05118585377931595, -0.029178142547607422, -0.028461098670959473, -0.000996276387013495, -0.004395336844027042, -0.0034059551544487476, 0.007129063829779625, 0.07970210909843445, 0.011748476885259151, -0.003393889404833317, -0.01758134737610817, 0.0013117063790559769, -0.00040225949487648904, 0.006946356035768986, -0.011183115653693676, -0.00408852519467473, -0.01169331930577755, -0.00422641821205616, -0.0056122420355677605, -0.006515440531075001, -0.03621068224310875, 0.002985381754115224, -0.0036093471571803093, -0.018808593973517418, 0.035135116428136826, -0.015375060960650444, 0.03132927045226097, 0.04216765612363815, 0.0016021433984860778, 0.0067981211468577385, 0.007763371337205172, -0.017677871510386467, -0.0002949615882243961, 0.018353547900915146, -0.008018473163247108, -0.01799502596259117, -0.010286811739206314, 4.053297743666917e-05, -0.005202010273933411, -0.030419178307056427, -0.023166010156273842, 0.008314942941069603, 0.012320732697844505, -0.007080801296979189, 0.0056294784881174564, 0.027937104925513268, 0.004288469906896353, 0.003392165759578347, -0.00012216450704727322, -0.011720898561179638, -0.034804172813892365, -0.00011171481310157105, -0.009686977602541447, 0.006839489098638296, 0.003093972336500883, -0.036734674125909805], "961b4e50-41d2-4353-9e78-885db2028a62": [-0.006341548636555672, -0.0012774529168382287, 0.005030455999076366, -0.016105739399790764, -0.025449000298976898, 0.007045398466289043, -0.02139151282608509, -0.0070937019772827625, -0.0020942981354892254, -0.0010169594315811992, 0.00578605942428112, 0.009750389494001865, 0.007901059463620186, 0.031107401475310326, -0.007273114752024412, -0.013393848203122616, -0.002259909873828292, 0.01145481038838625, 0.00997120514512062, -0.00469233188778162, 0.012897012755274773, 0.01225526724010706, -0.005855064373463392, -0.006234591361135244, -0.008390993811190128, 0.01769285276532173, 0.028319604694843292, -0.025117777287960052, 0.00405748700723052, 0.009840096347033978, 0.021446717903017998, -0.0034450688399374485, -0.018024075776338577, -0.02989291585981846, 0.015125870704650879, 0.002622185507789254, 0.02428971789777279, 0.008832625113427639, 0.003960880450904369, 0.010461140424013138, 0.03447483852505684, -0.010385234840214252, -0.003077617846429348, 0.006227690726518631, -0.01393208559602499, 0.00829438678920269, -0.00405748700723052, -0.0068349335342645645, -0.01251748576760292, 0.029865313321352005, 0.007769949734210968, 0.007907959632575512, -0.026083845645189285, -0.03188025578856468, 0.007259313482791185, -0.006148335058242083, -0.0034830213990062475, 0.018162084743380547, -0.007735447492450476, -0.03464045003056526, 0.023958494886755943, -0.008039068430662155, -0.012931515462696552, -0.017872264608740807, 0.008867127820849419, -0.003605505218729377, -0.014808448031544685, 0.0002827043645083904, -0.0018803830025717616, 0.013538758270442486, 0.023227043449878693, 0.031687043607234955, -0.0280021820217371, -0.00938466377556324, 0.03745584934949875, -0.010923473164439201, -0.027008511126041412, -0.013324842788279057, 0.010054011829197407, 0.018134484067559242, 0.005858514457941055, -0.011937844567000866, 0.01316613145172596, -0.011516914702951908, 0.006224240642040968, 0.010205822065472603, 0.021777940914034843, 0.036130957305431366, 0.0002466924488544464, -0.018879735842347145, -0.004516369663178921, 0.021156897768378258, 0.0327359177172184, 0.006075880024582148, -0.002603209111839533, 0.010212722234427929, 0.0009160398039966822, 0.01776185631752014, 0.0051512145437300205, -0.04868984594941139, -0.008335789665579796, 0.04341787099838257, -0.02299242652952671, -0.0005378068308345973, -0.03660019114613533, -0.005796410143375397, 0.023047631606459618, -0.00734901987016201, 0.0006150060216896236, 0.006783179938793182, -0.02028743550181389, 0.009964304976165295, -0.020701464265584946, -0.0603930726647377, -0.020466847345232964, 0.01236567460000515, 0.048055000603199005, -0.014780845493078232, -0.014711841009557247, -0.017485836520791054, 0.0008121012360788882, 0.029230467975139618, -0.0010764761827886105, -0.01305572409182787, -0.005782609339803457, 0.004026434849947691, -0.016850993037223816, -0.008632510900497437, 0.008425496518611908, -0.029644496738910675, 0.01810688152909279, -0.01414600107818842, 0.011123587377369404, -0.01798267289996147, 0.00567220151424408, 0.008715316653251648, 0.00046837065019644797, -0.009212152101099491, -0.03497167304158211, -0.009439867921173573, 0.016616376116871834, 0.02321324311196804, 0.014353015460073948, -0.019335167482495308, 0.013600862585008144, 0.007583636790513992, -0.0025756072718650103, 0.017706653103232384, -0.01222076453268528, 0.024910762906074524, 0.005844713654369116, 0.009405365213751793, -0.014629035256803036, -0.018424304202198982, -0.0006206126417964697, 0.011040781624615192, 0.0160091333091259, 0.009343260899186134, -0.004899346735328436, -0.025849228724837303, 0.008701515384018421, 0.008922331035137177, 0.01393898669630289, -0.010192020796239376, 0.0024651994463056326, 0.04170655086636543, -0.0035399505868554115, -0.005944770760834217, -0.0007042810902930796, 0.009957404807209969, 0.00691083911806345, 0.03629656881093979, -0.009916001930832863, 0.009467469528317451, -0.03141102194786072, 0.013807876966893673, -0.0004334369150456041, -0.016616376116871834, -0.020425444468855858, 0.0024720998480916023, -0.025628414005041122, -0.01411149837076664, -0.010067812167108059, 0.008963733911514282, -0.027339734137058258, -0.03141102194786072, 0.016174744814634323, -0.016036733984947205, 0.011530715972185135, -0.002939607948064804, 0.03632416948676109, 0.04112691059708595, 0.008225382305681705, 0.007142005488276482, -0.5909026265144348, -0.008239182643592358, -0.002178829163312912, -0.01273140124976635, 0.005568693857640028, 0.014670438133180141, 0.012924614362418652, 0.02655307948589325, -0.032128673046827316, -0.00024302657402586192, -0.00752843264490366, 0.0029413332231342793, 0.0004942474770359695, -0.005561793688684702, -0.019887207075953484, -0.024344922974705696, 0.005461736582219601, -0.025379996746778488, -0.009950503706932068, -0.00658306572586298, -0.018672721460461617, 0.03403320908546448, -0.017403030768036842, 0.012103456072509289, 0.02554560825228691, -0.0035088981967419386, -0.02435872331261635, 0.020756669342517853, 0.004878645297139883, 0.0400228314101696, -0.028568021953105927, 0.0008815373876132071, 0.005703253671526909, -0.01629895344376564, 0.05087039992213249, -0.015898725017905235, -0.019293764606118202, 0.02321324311196804, 0.012959117069840431, 0.034668054431676865, -0.007190308999270201, -0.01972159557044506, 0.016919996589422226, 0.002801598282530904, 0.0125519884750247, -0.004336956888437271, 0.014090796932578087, -0.015401889570057392, 0.022164369001984596, -0.008349590934813023, -0.0032432295847684145, -0.023254645988345146, -0.0024997019208967686, 0.0020477198995649815, 0.024717548862099648, 0.00811497401446104, 0.035689324140548706, -0.028347205370664597, -0.007335219066590071, -0.022247174754738808, -0.0109165720641613, 0.015967730432748795, -0.025794025510549545, -0.02807118557393551, 0.0036607091315090656, -0.009370863437652588, -0.023365052416920662, 0.002824024762958288, -0.0016526669496670365, -0.012434680014848709, -0.02086707577109337, 0.008411695249378681, -0.009481270797550678, 0.00045500093256123364, 0.019114352762699127, 0.016423162072896957, 0.023516863584518433, -0.002489351201802492, 0.007300716824829578, 0.013228235766291618, 0.017403030768036842, -0.015043064020574093, -0.0250901747494936, -0.003408841323107481, 0.031190207228064537, -0.019832003861665726, -0.003743514884263277, 0.016105739399790764, 0.0012179361656308174, 0.013911384157836437, 0.0019459377508610487, -0.005775708705186844, 0.02028743550181389, -0.015222476795315742, -0.006396752782166004, 0.02226097509264946, -0.017444433644413948, 0.013704369775950909, -0.007473228964954615, -0.005447935312986374, -0.028761235997080803, -0.004022984765470028, -0.0014085621805861592, -0.018424304202198982, 0.0013904484221711755, -0.0023099384270608425, -0.032487500458955765, 0.028540419414639473, 0.021005086600780487, -0.016174744814634323, 0.0019442125922068954, -0.021501921117305756, -0.024772752076387405, 0.023585868999361992, -0.0019045347580686212, -0.034806061536073685, 0.021474318578839302, 0.015001661144196987, 0.004388710483908653, 0.004140292759984732, 0.020687663927674294, 0.007914859801530838, 0.026939505711197853, 0.024772752076387405, 0.004009183496236801, 0.03544090688228607, 0.02735353633761406, -0.019914809614419937, -0.02059105783700943, 0.002294412348419428, -0.008522102609276772, 0.00627599423751235, 0.01287631131708622, -0.01487745251506567, 0.003978131338953972, 0.005689452402293682, 0.019017744809389114, 0.008556605316698551, 0.016326555982232094, -0.007031597662717104, -0.012027551420032978, -0.01331104151904583, -0.012476082891225815, 0.011979247443377972, -0.026718690991401672, -0.021943552419543266, -0.019528381526470184, -0.011261597275733948, -0.006476108450442553, -0.014353015460073948, -0.005447935312986374, -0.020177027210593224, -0.012924614362418652, 0.04708893224596977, 0.008715316653251648, -0.00891543086618185, 0.010033310391008854, 0.002706716535612941, -0.00674867769703269, -0.0031793999951332808, 0.005986173637211323, -0.006772829219698906, -0.03383999317884445, 0.03069337271153927, -0.024607140570878983, -0.02050825022161007, -0.0020270184613764286, 0.010357633233070374, -0.011102885939180851, -0.03334315866231918, -0.00023483224504161626, 0.006334648467600346, -0.00923975370824337, 0.00752843264490366, 0.03378479182720184, -0.012344973161816597, 0.02590443380177021, -0.007148905657231808, -0.0052961246110498905, -0.005520390812307596, -0.013290340080857277, -0.0032553053461015224, 0.0003922496398445219, -0.006931540556252003, 0.025945836678147316, -0.018313895910978317, 0.019459376111626625, 0.007224811241030693, 0.005527290981262922, 0.008128775283694267, -0.020094221457839012, 0.022247174754738808, 0.0036469080951064825, 0.0018562313634902239, 0.010116116143763065, 0.04352828115224838, 0.014284010976552963, 0.02401369996368885, -0.01476704515516758, 0.03210107237100601, 0.010702657513320446, 0.01868652179837227, 0.015953928232192993, -0.024717548862099648, 0.03163183853030205, -0.04140292853116989, 0.011296099051833153, 0.003374338848516345, 0.009805593639612198, 0.005275423172861338, 0.01723741926252842, -0.011413407512009144, -0.01761004514992237, -0.02226097509264946, 0.02466234564781189, 0.0066934735514223576, -0.022578397765755653, 0.007735447492450476, -0.012241465970873833, -0.012903912924230099, 0.008715316653251648, 0.02125350385904312, 0.0021891798824071884, -0.009805593639612198, -0.008273685351014137, -0.018796930089592934, 0.02028743550181389, 0.03188025578856468, -0.015967730432748795, -0.05302335321903229, -0.013897583819925785, -0.009929802268743515, -0.016837190836668015, -0.00029327074298635125, 0.0458468459546566, -0.014601433649659157, 0.05070478841662407, -0.020025216042995453, 0.020190829411149025, -0.011213293299078941, 0.0009876324329525232, 0.018244890496134758, 0.00454742182046175, -0.009467469528317451, 0.027298331260681152, 0.0031224710401147604, 0.040271248668432236, 0.011040781624615192, -0.018175886943936348, 0.020342638716101646, -0.022454189136624336, -0.0016940698260441422, -0.018796930089592934, -0.006372600793838501, -0.010192020796239376, -0.0027826218865811825, 0.0063622500747442245, 0.01927996426820755, 0.019624989479780197, 0.028982050716876984, -0.005558343138545752, 0.025283388793468475, -0.010785463266074657, -0.006983294151723385, 0.010750960558652878, -0.017154613509774208, -0.0020425445400178432, -0.01943177543580532, 0.0229096207767725, -0.006269093602895737, -0.009626180864870548, -0.004198946990072727, 0.01987340673804283, -0.03141102194786072, -0.016395559534430504, -0.003155248239636421, 0.03367438167333603, 0.020052818581461906, 0.031190207228064537, -0.004951100330799818, -0.025476602837443352, -0.04780658334493637, 0.02801598235964775, 0.004171345382928848, -0.013876882381737232, -0.02328224666416645, -0.012448481284081936, -0.005068408790975809, -0.028650827705860138, 0.03977441415190697, 0.01458763238042593, 0.024482931941747665, 0.010702657513320446, 0.00988839939236641, -0.00392982829362154, -0.010909671895205975, 0.010557747446000576, 0.0007995940977707505, -0.01004021055996418, 0.01638175919651985, 0.02130870707333088, 0.013538758270442486, 0.009833196178078651, 0.005941320210695267, 0.025573208928108215, 0.009853897616267204, -0.011917143128812313, -0.018465707078576088, -0.024096505716443062, -0.009184549562633038, 0.009122445248067379, -0.024055102840065956, 0.010212722234427929, -0.011510014533996582, -0.00035408130497671664, -0.006631369236856699, 0.009495072066783905, -0.021129295229911804, 0.010902771726250648, -0.0008259022142738104, -0.04932469129562378, -0.013683668337762356, -0.03383999317884445, -0.009163848124444485, 0.004661279730498791, 0.01178603433072567, -0.010971776209771633, 0.0006702099344693124, -0.029147662222385406, -0.024110306054353714, -0.013214435428380966, -0.01334554422646761, 0.014601433649659157, -0.0032691063825041056, -0.02837480790913105, -0.006010325159877539, 0.014449622482061386, -0.005275423172861338, 0.02384808659553528, 0.006293245125561953, -0.022357581183314323, -0.016312753781676292, 0.015346686355769634, -0.033149946480989456, 0.006869436241686344, 0.02641506865620613, -0.005989623721688986, 0.0008681676699779928, -0.01621614769101143, -0.0074249254539608955, -0.006310496479272842, 0.028029782697558403, 0.010067812167108059, -0.023337451741099358, 0.012634794227778912, 0.006179387215524912, -0.01552609819918871, 0.037069421261548996, -0.0003844865714199841, 0.01934896968305111, 0.017637647688388824, 0.03651738539338112, -0.02125350385904312, 0.0072317118756473064, 0.004216198343783617, 0.0059102680534124374, 0.004116141237318516, -0.012262167409062386, -0.00952957384288311, -0.021626129746437073, 0.02983771078288555, 0.009177649393677711, -0.030803779140114784, -0.0399952307343483, 0.020687663927674294, -0.013297241181135178, -0.03842191770672798, 0.0003916027199011296, 0.003674509935081005, -0.010750960558652878, -0.027105117216706276, -0.013863081112504005, 0.026539277285337448, 0.022964825853705406, -0.0054375845938920975, 0.002779171569272876, 0.009557176381349564, 0.00785275548696518, -0.004740635398775339, -0.01958358660340309, -0.008197779767215252, -0.003331210697069764, -0.017582444474101067, 0.038090694695711136, 0.03839431703090668, -0.014794646762311459, -0.010088513605296612, -0.00671417498961091, 0.031162604689598083, 0.003978131338953972, 0.01614714227616787, -0.0046060760505497456, -0.040492065250873566, 0.00328463246114552, 0.010557747446000576, -0.028761235997080803, 0.008321988396346569, -0.015760716050863266, 0.017706653103232384, 0.01334554422646761, 0.03441963717341423, 0.002953408984467387, -0.01451862696558237, 0.0163679588586092, 0.012413978576660156, 0.007066099904477596, 0.009301858022809029, 0.008052869699895382, -0.011047681793570518, -0.014987860806286335, -0.007866556756198406, 0.015457093715667725, -0.01696139946579933, -0.00906034093350172, -0.001317130750976503, -0.04708893224596977, -0.017858464270830154, 0.01084066741168499, -0.006517511326819658, -0.0007646603626199067, 0.007576736155897379, 0.020397843793034554, 0.007597437594085932, 0.025338593870401382, 0.011799834668636322, -0.012165560387074947, -0.007480129133909941, -0.013566359877586365, -0.011799834668636322, -0.004640578292310238, -0.02132250927388668, 0.013711269944906235, -0.00042955539538525045, -0.030444953590631485, 0.00938466377556324, -0.021225901320576668, 0.022813014686107635, 0.008549705147743225, -0.023972297087311745, -0.0035002727527171373, -5.628210783470422e-05, -0.046012457460165024, -0.000605086563155055, -0.02837480790913105, 0.003395040286704898, 0.0068280333653092384, -0.0027739962097257376, -0.02415170893073082, -0.01977679878473282, 0.021984955295920372, -0.0013956237817183137, 0.025200583040714264, -0.010757861658930779, -0.024579539895057678, -0.024482931941747665, -0.020549654960632324, 0.007121304050087929, -0.012903912924230099, 0.0015802117995917797, -0.024482931941747665, -0.032929129898548126, 0.014201205223798752, -4.156466093263589e-05, 0.023296048864722252, 0.01861751824617386, 0.010302429087460041, 0.0015181073686107993, 0.0009048265055753291, -0.0016681930283084512, -0.01616094261407852, -0.017071807757019997, -0.009012037888169289, -0.0012464006431400776, 0.018286293372511864, 0.027256928384304047, 0.006158685777336359, -0.022205771878361702, -0.0009350161417387426, 0.002161578042432666, 0.02328224666416645, -0.017734255641698837, 0.0006029301439411938, -0.017071807757019997, -0.0002717067254707217, -0.00015515316044911742, 0.03312234207987785, 0.0009470920194871724, -0.014711841009557247, 0.013545658439397812, 0.0001341282477369532, 0.027174122631549835, 0.02598723955452442, -0.004861393943428993, -0.04822061210870743, 0.009198350831866264, 0.01921095885336399, -0.006969493348151445, -0.014504826627671719, -0.021336309611797333, -0.00970898661762476, 0.017720453441143036, -0.010012608021497726, 0.0015845246380195022, -0.003282907186076045, 0.010957974940538406, -0.02101888693869114, 0.02050825022161007, 0.008370292373001575, 0.02575262263417244, 0.013455952517688274, 0.0008043381385505199, -0.035689324140548706, 0.026760093867778778, 0.017127010971307755, 0.008108073845505714, 0.025669816881418228, 0.021363912150263786, -0.00658651627600193, 0.004899346735328436, 0.015043064020574093, -0.014021792449057102, -0.00027364748530089855, -0.002732593333348632, -0.004495668224990368, -0.03179745003581047, -0.017513439059257507, -0.0167267844080925, -0.04043686017394066, 0.029948119074106216, 0.0067624785006046295, -0.005506589543074369, 0.008039068430662155, -0.007549134083092213, -0.012310471385717392, 0.01146171148866415, -0.004799289628863335, 0.03527529537677765, -2.8895794457639568e-05, 0.009626180864870548, 0.04697852581739426, 0.0012558888411149383, 0.004775138106197119, -0.028029782697558403, -0.034447237849235535, -0.0015060316072776914, 0.028112588450312614, 0.020273635163903236, -0.02123970352113247, -0.006527862045913935, 0.02648407407104969, 0.018382901325821877, 0.008535903878509998, -0.03552371263504028, 0.030720973387360573, 0.039111968129873276, -0.0010540495859459043, -0.02627705968916416, 0.014573831111192703, -0.013069524429738522, 0.009232853539288044, 0.01068885624408722, -0.0038815245497971773, -0.016561171039938927, -0.017058007419109344, -0.025449000298976898, 0.022316178306937218, 0.019224761053919792, 0.024206912145018578, -0.000997120514512062, -0.0028844040352851152, 0.00720410980284214, -0.02495216578245163, -0.020246032625436783, -0.009853897616267204, -0.003467495320364833, 0.023323649540543556, -0.020494449883699417, -0.0160091333091259, 0.0421757847070694, 0.006210439372807741, -0.005651500076055527, -0.015043064020574093, -0.0037469652015715837, 0.04540521278977394, -0.025048771873116493, -0.024896962568163872, 0.00019515444000717252, 0.008522102609276772, 0.03160423785448074, -0.01225526724010706, 0.015912525355815887, 0.0028464514762163162, -0.007335219066590071, -0.007128204219043255, 0.02480035461485386, 0.0033225850202143192, -0.002732593333348632, 0.0025135029572993517, -0.004526720382273197, -0.02575262263417244, -0.0392775796353817, -0.019970012828707695, -0.01759624481201172, -0.04101650044322014, -0.029810110107064247, -0.03447483852505684, -0.023075232282280922, -0.0030362147372215986, -0.0019028095994144678, -0.012848708778619766, 0.0022081562783569098, 0.03303953632712364, -0.029064856469631195, 0.03682100400328636, -0.023020029067993164, 0.022661203518509865, -0.026649685576558113, -0.01621614769101143, -0.00923975370824337, -0.019624989479780197, 0.040630076080560684, -0.020328838378190994, -0.002999987220391631, -0.00847379956394434, -0.013731971383094788, 0.03651738539338112, -0.00031052198028191924, 0.0269257053732872, -0.02074286714196205, 0.002268535550683737, 0.03579973429441452, -0.02575262263417244, -0.058681752532720566, 0.013994189910590649, -0.001345595228485763, -0.018948741257190704, -0.005254721734672785, -0.01914195530116558, -0.0017087333835661411, -0.007866556756198406, -0.007010896224528551, 0.01178603433072567, -0.03193546086549759, -0.025007368996739388, -0.0048234411515295506, -0.02423451468348503, 0.0029378829058259726, 0.012048252858221531, -0.03654498606920242, -0.02568361721932888, -0.02684289962053299, -0.027532948181033134, -0.003270831424742937, -0.023820485919713974, -0.007211010437458754, 0.016243750229477882, 0.005071858875453472, -0.0008612672099843621, -0.013242037035524845, -0.01004021055996418, -0.006786630023270845, -0.02125350385904312, -0.035330500453710556, -0.021046489477157593, -0.009474370628595352, 0.04664729908108711, 0.030030924826860428, -0.03632416948676109, -0.017113210633397102, 0.011213293299078941, -0.031466227024793625, -0.002158127725124359, 0.013863081112504005, 0.0378146767616272, 0.018134484067559242, 0.008598008193075657, -0.006897037848830223, 0.05316136032342911, 0.007728546857833862, 0.00847379956394434, -0.01425640843808651, -0.021281106397509575, -0.01803787611424923, -0.004833791870623827, 0.006531312130391598, 0.00038233018130995333, -0.021267304196953773, -0.010737159289419651, 0.01375267282128334, 0.0030396650545299053, -0.006517511326819658, 0.019390372559428215, -0.014132199808955193, -0.014932656660676003, -0.01443582121282816, 0.007107502780854702, -0.00952957384288311, -0.003750415286049247, -0.026097645983099937, -0.01738923043012619, 0.0027998730074614286, 0.009633081965148449, 0.017996473237872124, 0.0031655989587306976, 0.025186782702803612, 0.020039018243551254, -0.004019534215331078, 0.003386414609849453, -0.0017717003356665373, -0.013587061315774918, -9.396524546900764e-05, 0.016395559534430504, 0.03085898421704769, 0.0028033233247697353, -0.006679672747850418, 0.023585868999361992, 0.015539899468421936, 0.020121823996305466, -0.012013750150799751, 0.004240349866449833, -0.005133963190019131, -0.014711841009557247, 0.008342690765857697, -0.009943603537976742, 0.006148335058242083, -0.007983865216374397, 0.025504205375909805, -0.023020029067993164, 0.0009936703136190772, -0.0022116065956652164, -0.028568021953105927, -0.056501198559999466, 0.02823679894208908, 0.0015344960847869515, -0.03571692854166031, -0.006324297282844782, -0.009481270797550678, 7.612101035192609e-05, 0.011737730354070663, -0.018948741257190704, 0.00721791060641408, -0.0112753976136446, 0.022951023653149605, -0.006186287850141525, 0.0059551214799284935, -0.004481866955757141, 0.00891543086618185, -0.0004170482570771128, -0.04123731702566147, -0.0014654912520200014, 0.2510673701763153, -0.01798267289996147, 0.009212152101099491, -0.013228235766291618, 0.00912934634834528, 0.036848608404397964, -0.0022357581183314323, -0.007652641274034977, -0.0015094818081706762, 0.015001661144196987, -0.010371433570981026, -0.020839475095272064, -0.00470958324149251, -0.002767095807939768, 2.053973548754584e-05, -0.019749198108911514, -0.037290237843990326, -0.025186782702803612, -0.03268071264028549, -0.008673913776874542, 0.012117257341742516, -0.0003021119919139892, 0.004292103927582502, -0.004364558961242437, 0.018879735842347145, -0.0011773958103731275, -0.03900155797600746, 0.010447339154779911, 0.02166753262281418, 0.03557891771197319, -0.016271350905299187, 0.009881499223411083, 5.072936983196996e-05, 0.007024697028100491, -0.019459376111626625, -0.015305282548069954, 0.0160091333091259, 0.016409361734986305, 0.0225507952272892, 0.019266163930296898, -0.011799834668636322, 0.009791793301701546, 0.0033294856548309326, -0.002996537135913968, -0.027229325845837593, -0.005644599441438913, -0.007887258194386959, 0.004543971735984087, -0.0012179361656308174, -0.003985031973570585, -0.0043438575230538845, -0.020687663927674294, 0.05492788553237915, 0.04162374511361122, 0.007280014920979738, -0.012565788812935352, -0.0052961246110498905, -0.006483008619397879, 0.027670957148075104, 0.02422071434557438, -0.006862535607069731, 0.04189976304769516, -0.01956978440284729, 0.03281872346997261, -0.005206418223679066, 0.016919996589422226, -0.0070212469436228275, 0.0031949260737746954, -0.0247451514005661, -0.016174744814634323, -0.005537641700357199, 0.004737185314297676, -0.023903291672468185, -0.03414361551403999, -0.021557126194238663, -0.00360895530320704, 0.033646780997514725, 0.0134628526866436, 0.03447483852505684, 0.016423162072896957, 0.003094868967309594, 0.006382951512932777, -0.024206912145018578, 0.02721552550792694, -0.005030455999076366, -0.034226421266794205, -0.0025462801568210125, -0.024551937356591225, 0.012413978576660156, 0.012579590082168579, -0.00989530049264431, -0.0006102619227021933, 0.01157211884856224, -0.022440388798713684, -0.00734901987016201, 0.013214435428380966, 0.016533570364117622, 0.035109683871269226, -0.016712982207536697, 0.0009953954722732306, -0.010695756413042545, 0.009736589156091213, 0.021184498444199562, 0.0013757848646491766, -0.015760716050863266, -0.009819394908845425, -0.011158089153468609, 0.0021219002082943916, -0.015608904883265495, -0.01863131858408451, 0.02030123583972454, -0.045350007712841034, 0.010426637716591358, -0.017058007419109344, 0.008991336449980736, 0.016271350905299187, -0.011496213264763355, -0.017416832968592644, -0.011102885939180851, -0.0013292065123096108, -0.012241465970873833, -0.0007823428604751825, 0.015733113512396812, -0.016464564949274063, 0.0014240882592275739, -0.018824532628059387, -0.01451862696558237, -0.017513439059257507, 0.01769285276532173, -0.02408270351588726, 0.04060247167944908, -0.04670250415802002, 0.019666392356157303, 0.009612380526959896, 0.014463423751294613, -0.013876882381737232, -0.01192404329776764, -0.0026135598309338093, 0.012317371554672718, 0.025863030925393105, -0.006441605743020773, 0.027270730584859848, -0.016423162072896957, 0.004378359764814377, 0.008646312169730663, -0.011089084669947624, 0.009764190763235092, -0.0059585715644061565, 0.005706703756004572, 0.016574973240494728, -0.02159852907061577, -0.010730259120464325, -0.018934939056634903, -0.021791741251945496, 0.014049394056200981, -0.012151760049164295, -0.020177027210593224, -0.05208488553762436, 0.011723930016160011, 0.007010896224528551, -0.0046785310842096806, 0.004292103927582502, 0.006555463653057814, -0.007590536959469318, 0.0024686497636139393, 0.0035813534632325172, -0.17643168568611145, 0.022454189136624336, 0.04060247167944908, -0.023544466122984886, 0.027615753933787346, 0.00720410980284214, 0.016754385083913803, 0.017127010971307755, -0.016906196251511574, 0.004126491956412792, 0.02837480790913105, 0.02640126831829548, -0.014711841009557247, 0.006510610692203045, -0.0023961944971233606, 0.0038746241480112076, -0.013828578405082226, -0.009605479426681995, 0.037787072360515594, 0.021874547004699707, 0.044273532927036285, 0.004851043224334717, 1.2601477692442131e-06, 0.031769849359989166, -0.007190308999270201, 0.008894729427993298, -0.014615233987569809, 0.00024388913880102336, 0.01708560809493065, -0.017499638721346855, -0.006476108450442553, -0.0013369695516303182, 0.014007991179823875, 0.011889541521668434, 0.01192404329776764, -0.010060911998152733, 0.00438526039943099, -0.023682475090026855, -0.006334648467600346, -0.0027360436506569386, 0.0037055620923638344, 7.946343248477206e-05, 0.014863652177155018, 0.0032898078206926584, -0.014974059537053108, 0.0039401790127158165, 0.009812494739890099, 0.011040781624615192, -0.01494645792990923, -0.01680959016084671, 0.0026791144628077745, -0.03646218031644821, -0.007031597662717104, 0.0024048201739788055, 0.02808498777449131, 0.01585732214152813, -0.0012325997231528163, 0.0026014840696007013, 0.017955070361495018, 0.027601953595876694, -0.022578397765755653, -0.02590443380177021, -0.026208054274320602, 0.03298433497548103, 0.022095363587141037, -0.0016336905537173152, -0.009212152101099491, 0.041789356619119644, -0.004509469028562307, -0.005585945211350918, 0.0185485128313303, -0.025918234139680862, -0.0026118347886949778, -0.0218331441283226, 0.010426637716591358, 0.004523269832134247, 0.00865321233868599, 0.004951100330799818, 0.030886584892868996, -0.01007471326738596, -0.019970012828707695, 0.048855457454919815, -0.019031547009944916, -0.007901059463620186, 0.02743634209036827, 0.008756719529628754, -0.0078182527795434, -0.0019148854771628976, -0.02961689606308937, -0.01658877357840538, 0.03091418743133545, -0.03149382770061493, -0.00906034093350172, -0.026097645983099937, 0.006638269871473312, 0.01349735539406538, -0.019818201661109924, -0.017292624339461327, 0.007721646223217249, -0.008039068430662155, -0.005820561666041613, 0.014028692618012428, -0.013435251079499722, -0.0035226992331445217, -0.005485888104885817, 0.002161578042432666, -0.015277680940926075, 0.014849850907921791, 0.01934896968305111, 0.016188545152544975, 0.0056273480877280235, 0.013028121553361416, 0.03152143210172653, 0.006386402063071728, 0.00832888949662447, 0.0047026826068758965, -0.0013550834264606237, -0.01956978440284729, 0.030444953590631485, 0.005934420041739941, 0.014905055053532124, -0.011579019017517567, 0.03141102194786072, 0.03875314071774483, 0.003277731826528907, -0.03842191770672798, -0.03389519825577736, -0.021777940914034843, -0.0008962008869275451, 0.025490403175354004, 0.0010902771027758718, 0.02050825022161007, -0.002239208435639739, 0.01621614769101143, 0.0023047630675137043, 0.002530754078179598, -0.015664108097553253, -0.027560550719499588, -0.026815297082066536, 0.0072386120446026325, 0.0003473964461591095, 0.016243750229477882, -0.01331104151904583, 0.0004230861959513277, 0.0072386120446026325, 0.01958358660340309, -0.011999948881566525, -0.016340356320142746, -0.025297189131379128, -0.009143146686255932, -0.010054011829197407, -0.009005136787891388, -0.027450142428278923, 0.054237838834524155, 0.014132199808955193, 0.01616094261407852, 0.06591346114873886, -0.015581302344799042, -0.0009350161417387426, 0.018576113507151604, -0.006393302232027054, -0.01422880683094263, -0.01709941029548645, -0.03883594647049904, 0.014601433649659157, -0.00016421005420852453, 0.0025342043954879045, 0.009874599054455757, 0.009439867921173573, -0.018065478652715683, -0.006372600793838501, 0.00015569226525258273, -0.01520867645740509, 0.012262167409062386, 0.031769849359989166, -0.013952787034213543, -0.03356397524476051, -0.03163183853030205, -0.011834337376058102, -0.031825050711631775, 0.032045867294073105, 0.02605624310672283, 0.0011213293764740229, 0.00660031707957387, -0.036627791821956635, 7.013699359958991e-05, -0.0039401790127158165, 0.027229325845837593, -0.013331742957234383, -0.009426066651940346, 0.003094868967309594, 0.012869410216808319, -0.013324842788279057, -0.008936132304370403, 0.02851281687617302, -0.019003944471478462, 0.007390422746539116, 0.01408389676362276, -0.012482983060181141, 0.035827334970235825, -0.03579973429441452, -0.034447237849235535, -0.024469131603837013, -0.0070212469436228275, 0.017568642273545265, -0.006683122832328081, -0.0025669815950095654, -0.004509469028562307, -0.027601953595876694, 0.0044128624722361565, 0.02401369996368885, 0.02166753262281418, 0.018203487619757652, 0.003898775903508067, -0.000556351849809289, -0.02268880605697632, 0.002767095807939768, 0.008273685351014137, 0.037290237843990326, -0.023227043449878693, 0.009950503706932068, 0.012172461487352848, 0.001184296328574419, -0.0060965814627707005, -0.010171319358050823, 0.022288577631115913, -0.02771236002445221, -0.023323649540543556, -0.10196161270141602, 0.009626180864870548, -0.026070045307278633, 0.029451284557580948, 0.01687859371304512, -0.03607575222849846, 0.00891543086618185, -0.01621614769101143, 0.012289769947528839, -0.027919376268982887, -0.012945315800607204, 0.0203702412545681, 0.023875689134001732, -0.011068383231759071, -0.03673819825053215, -0.018300095573067665, 0.011986148543655872, 0.015277680940926075, 0.02008042111992836, 0.013262738473713398, 0.0034881967585533857, 0.007390422746539116, 0.029202867299318314, 0.01047494076192379, -0.019169555976986885, 0.016864793375134468, -0.011889541521668434, 0.020411644130945206, -0.004316255450248718, -0.014339214190840721, 0.00811497401446104, -0.012814207002520561, -0.008370292373001575, 0.03138342127203941, 0.013455952517688274, 0.0027532947715371847, 0.010081613436341286, -0.004078188445419073, 0.03660019114613533, -0.0006068116636015475, -0.02364107221364975, -0.0451015904545784, 0.014918855391442776, -0.0037021120078861713, -0.04181695729494095, -0.005658400245010853, -0.018093079328536987, 0.00014081309200264513, 0.01570551097393036, -0.005568693857640028, 0.01674058474600315, 0.0034830213990062475, -0.01083376631140709, -0.026649685576558113, 0.007549134083092213, -0.011233994737267494, 0.009805593639612198, -0.008604909293353558, -0.008170178160071373, -0.006200088653713465, 0.005927519407123327, 0.01643696241080761, 0.004247250501066446, 0.0020304687786847353, 0.002313388744369149, -0.018520910292863846, -0.01585732214152813, -0.0229096207767725, 0.0035951544996351004, -0.00859110802412033, -0.018810730427503586, 0.0010730259818956256, -0.012096555903553963, 0.022882018238306046, 0.0037814676761627197, 0.009764190763235092, -0.001861406723037362, -0.03455764427781105, -0.04112691059708595, 0.031024595722556114, 0.021998757496476173, 0.01400109101086855, -0.03359157592058182, 0.026760093867778778, 0.0443563386797905, -0.013711269944906235, -0.026373665779829025, 0.012938415631651878, -0.003905676305294037, -0.00498560257256031, -0.021805543452501297, 0.015167273581027985, 0.012186262756586075, 0.03019653633236885, 0.012096555903553963, 0.024496734142303467, 0.020701464265584946, -0.02736733667552471, 0.018175886943936348, -0.00035235617542639375, -0.011648024432361126, -0.01021962333470583, 0.008749819360673428, -0.004761336836963892, -0.011999948881566525, -0.01696139946579933, 0.0005037356168031693, -0.032929129898548126, 0.022095363587141037, 0.006938441190868616, -0.0030068878550082445, -0.01422880683094263, -0.002466924488544464, 0.021363912150263786, -0.024110306054353714, -0.004578473977744579, 0.012524385936558247, -0.004357658326625824, -0.04452195018529892, 0.007466328330338001, 0.008370292373001575, 0.014532428234815598, 0.011475511826574802, -0.01665777899324894, 0.023806683719158173, 0.005116711836308241, 0.011116686277091503, -0.02801598235964775, 0.018438104540109634, 0.016933798789978027, -0.013814777135848999, -0.015263879671692848, -0.022274775430560112, -0.038891151547431946, -0.01113048754632473, 0.006558914203196764, -0.0023737680166959763, 0.011875740252435207, -0.02030123583972454, 0.07684383541345596, -0.0017052831826731563, 0.0009177649626508355, -0.005392731633037329, 0.003916027024388313, 0.008784321136772633, 0.017485836520791054, 0.004995953291654587, 0.006752127781510353, 0.008094272576272488, 0.007062649819999933, 0.0035951544996351004, -0.017665250226855278, -0.011551417410373688, -0.012020650319755077, -0.0019407622748985887, -0.009343260899186134, 0.02415170893073082, -0.010854467749595642, 0.006734876427799463, 0.03602054715156555, -0.008315088227391243, 0.025297189131379128, 0.014325413852930069, -0.008936132304370403, -0.009695186279714108, 0.006389852147549391, 0.013814777135848999, 0.0207290668040514, -0.015539899468421936, -0.004009183496236801, -0.0025031520053744316, -0.03171464428305626, -0.02234378084540367, -0.014560029841959476, 0.014739442616701126, -0.0247313492000103, 0.0014327139360830188, 0.016326555982232094, 0.01621614769101143, -0.012531287036836147, 0.027891773730516434, -0.01725122146308422, -0.019404172897338867, -0.0021149995736777782, -0.016036733984947205, 0.016395559534430504, 0.009426066651940346, -0.028678428381681442], "a7d5cd60-d35b-43c4-ad2d-469147d85e1d": [-0.04800507798790932, -0.023561758920550346, -0.020636573433876038, 0.001209643785841763, -0.017016826197504997, -0.002227280754595995, -0.013483897782862186, -0.03766675665974617, 0.0017130359774455428, 0.00662507489323616, -0.00019722453725989908, 0.010825852863490582, -0.02380218356847763, -0.00189836451318115, 0.0021705133840441704, -0.01820559985935688, 0.015828052535653114, 0.0075333514250814915, 0.005329445470124483, -0.034006938338279724, 0.004397794138640165, 0.025792378932237625, 0.0010109583381563425, -0.014492351561784744, -0.025324882939457893, 0.009249726310372353, 0.037399616092443466, -0.041219718754291534, 0.0022523251827806234, 0.012862796895205975, 0.013837858103215694, 0.01971494033932686, -0.02310761995613575, -0.025939306244254112, -0.008648660965263844, -0.00621434673666954, 0.017577819526195526, -0.001966819167137146, 0.007807170040905476, 0.003334242617711425, 0.0066217356361448765, -0.009029336273670197, 0.0151869161054492, -0.004294277168810368, -0.023174405097961426, 0.015106773935258389, -0.0005413761246018112, 0.004728380125015974, 0.00011729120888048783, 0.03454121574759483, 0.011353454552590847, -0.00014181384176481515, -0.03635777160525322, -0.01720382273197174, -0.0010952744632959366, 0.002036943333223462, 0.007666921243071556, 0.004147350322455168, -0.0011244929628446698, -0.04023130238056183, 0.012161553837358952, 0.009630401618778706, -0.017698032781481743, -0.018673093989491463, 0.01848609559237957, -0.02090371400117874, -0.01974165439605713, 0.016829827800393105, -0.027408575639128685, -0.007172712124884129, 0.01689661294221878, 0.022399699315428734, -0.010458535514771938, 0.006985714193433523, 0.022960692644119263, -0.01556091196835041, -0.03699890524148941, 0.0018549541709944606, 0.03625091537833214, 0.024202894419431686, 0.015427341684699059, -0.002021916676312685, 0.005993956234306097, 0.003210690338164568, -0.006825429853051901, 0.006775340996682644, 0.007867276668548584, 0.033312372863292694, 0.005292713642120361, -0.000353960640495643, 0.0065716467797756195, -0.002471046056598425, 0.008274665102362633, -0.0004474596935324371, -0.005135768558830023, 0.010244823060929775, -0.008348128758370876, 0.03571663424372673, 0.0028917917516082525, -0.03884217143058777, -0.012435371987521648, 0.010471892543137074, -0.028156569227576256, 0.003406036412343383, -0.037346187978982925, -0.010832531377673149, 0.03753318637609482, 0.006197650916874409, -0.012021305039525032, -0.022346271201968193, -0.021304424852132797, 0.014919775538146496, -0.012381944805383682, -0.033392515033483505, -0.029973121359944344, 0.021277710795402527, 0.013370363041758537, -0.0011236581485718489, -0.010799138806760311, -0.01825902611017227, 0.010117932222783566, 0.037907183170318604, 0.027542145922780037, 0.0034260719548910856, 0.009490152820944786, 0.010812495835125446, 0.006404684390872717, -0.011420239694416523, 0.0029118272941559553, -0.027622288092970848, 0.05340130999684334, -0.02567216567695141, 0.016495902091264725, -0.011500381864607334, -0.007860598154366016, 0.0010919352062046528, -0.02914498746395111, 0.00779381301254034, -0.03173624724149704, -0.014024856500327587, 0.02177191898226738, 0.008515091612935066, 0.024817317724227905, -0.01990193873643875, -6.636762554990128e-05, 0.02605951763689518, 0.01923408918082714, 0.02416282333433628, 0.009089442901313305, 0.004310973454266787, -0.00010226457379758358, 0.009490152820944786, -0.002638008678331971, -0.015120130963623524, -0.0026012768503278494, 0.008354807272553444, -0.01553419791162014, -0.008020881563425064, -0.010605462826788425, -0.02511117048561573, 0.018285740166902542, 0.01075906865298748, 0.02683422528207302, -0.0011854342883452773, 0.003265787847340107, 0.03785375505685806, 0.020636573433876038, -0.000672024383675307, 0.0005927171441726387, -0.026607155799865723, -0.013811144046485424, 0.02497760020196438, -0.019113875925540924, 0.0016070147976279259, -0.035396065562963486, 0.025458453223109245, 0.005486390087753534, 0.003345930017530918, -0.0007271220092661679, 0.013096543960273266, -0.019220732152462006, -0.00552646117284894, 0.005068983882665634, 0.012355230748653412, -0.030240261927247047, -0.021090712398290634, 0.012568942271173, -0.031308822333812714, -0.017938459292054176, -0.03181638941168785, 0.006408023647964001, 0.02143799513578415, 0.006541593465954065, 0.017337393015623093, -0.603095531463623, -0.00779381301254034, 0.007072534412145615, -0.003419393440708518, -0.0012179919285699725, 0.03299180418252945, 0.010117932222783566, 0.01756446249783039, -0.03325894474983215, 0.02845042198896408, 0.007947418838739395, 0.002659713849425316, 0.01039842888712883, -0.0098841842263937, -0.0014934801729395986, -0.031442392617464066, -0.0195412989705801, -0.018472738564014435, -0.021317781880497932, 0.009917576797306538, -0.014332067221403122, 0.011647309176623821, -0.015387270599603653, -0.003676515771076083, 0.0171503946185112, 0.007065855897963047, -0.02341483160853386, -0.0005459676031023264, -0.0072728898376226425, 0.040712155401706696, -0.021023927256464958, 6.871553341625258e-05, 0.009216333739459515, 0.008755517192184925, 0.05195875093340874, -0.012134839780628681, -0.019247446209192276, 0.0227469801902771, -0.01425192505121231, 0.06747959554195404, -0.01784496009349823, -0.01773810386657715, 0.02914498746395111, 0.010531999170780182, 0.013704287819564342, 0.008648660965263844, -0.002746534300968051, -0.03780032694339752, 0.033339086920022964, -0.004908699542284012, -0.021224282681941986, -0.01558762602508068, -0.013550681993365288, 0.028530564159154892, -0.003025361802428961, 0.010852566920220852, 0.010478571057319641, -0.012695834040641785, -0.010558713227510452, 0.014706063084304333, -0.028717562556266785, -0.005219249986112118, 0.002604616107419133, -0.004087243694812059, -0.00945008173584938, 0.0002416783245280385, -0.029331983998417854, 0.005145786330103874, 0.020022151991724968, -0.017858317121863365, -0.020930428057909012, 0.002195557812228799, -0.0030303706880658865, -0.0044111511670053005, 0.020756786689162254, 0.0064280591905117035, 0.03291166201233864, -0.03590363264083862, -0.0032541004475206137, 0.012702512554824352, 0.010585427284240723, -0.03360622748732567, -0.028717562556266785, -0.00961704459041357, 0.03496864065527916, 0.005409587174654007, -0.018552880734205246, 0.008267986588180065, 0.013049794360995293, 0.021945560351014137, 0.004073886666446924, 0.01007786113768816, 0.01325014978647232, -0.01940772868692875, -0.013584074564278126, 0.00279829278588295, -0.025992732495069504, 0.018499452620744705, -0.013564039021730423, -0.0013498923508450389, -0.02511117048561573, 0.0016270502237603068, -0.005696762818843126, 0.005382873583585024, 0.019220732152462006, 0.013490576297044754, -0.041326574981212616, 0.013664216734468937, 0.046562522649765015, -0.019915295764803886, -0.013644181191921234, -0.024964243173599243, -0.004434525966644287, -0.0076268501579761505, -0.0015619348268955946, -0.03510221093893051, 0.009677150286734104, 0.037399616092443466, 0.0017464285483583808, 0.019033733755350113, 0.03969702124595642, -0.0005167491617612541, 0.035262495279312134, 0.008521770127117634, 0.006738609634339809, 0.01453242264688015, 0.016602758318185806, 0.0023858952336013317, -0.0001962853712029755, 0.01584140956401825, -0.00825462955981493, 0.025298168882727623, 0.028183281421661377, -0.006438076961785555, 0.0010243153665214777, -0.011460310779511929, 0.02583245001733303, 0.013323613442480564, 0.0031856459099799395, -0.025431739166378975, -0.02254662662744522, -0.0027882750146090984, -0.0018599630566313863, 0.006985714193433523, -0.009149548597633839, -0.02260005474090576, -0.010839209891855717, -0.009817399084568024, -0.016990112140774727, 0.011981233954429626, -0.0005818645586259663, -0.016028406098484993, 0.011179814115166664, 0.011213206686079502, 0.01617533341050148, 0.022640125826001167, 0.013076508417725563, -0.02616637386381626, -0.014038213528692722, -0.026954438537359238, 0.01792510226368904, -0.01553419791162014, -0.00974393542855978, 0.008735481649637222, -0.01648254506289959, -0.01923408918082714, -0.008989265188574791, -0.013383720070123672, 0.00062986632110551, -0.028076427057385445, -0.004992180969566107, 0.00788063369691372, -0.010905995033681393, 0.025925949215888977, 0.003866853192448616, 0.010672247968614101, -0.010358357802033424, -0.027435289695858955, 0.004120636265724897, -0.014358781278133392, 0.015427341684699059, -0.00017781513452064246, -0.004501311108469963, 0.0055164434015750885, 0.002920175436884165, -0.003229056252166629, 0.03713247552514076, 0.016108548268675804, -0.0031539229676127434, 0.015053345821797848, -0.017283964902162552, 0.005296052899211645, -0.012341873720288277, 0.012128161266446114, 0.018085386604070663, 0.007586779538542032, 0.012375266291201115, 0.009710542857646942, -0.018232312053442, 0.040605299174785614, 0.026580441743135452, 0.025071099400520325, 0.005439640488475561, -0.007266211323440075, 0.015333842486143112, -0.017911745235323906, -0.004290937911719084, -0.004681630525738001, 0.0023074226919561625, -0.008561840280890465, -0.01876659318804741, -0.020756786689162254, -0.02839699387550354, 0.010839209891855717, 0.010091218166053295, 0.00579694053158164, 0.004073886666446924, -0.009209655225276947, -0.01684318482875824, -0.01341711264103651, 0.01773810386657715, -0.018165528774261475, 0.011947841383516788, -0.018860092386603355, -0.004484614823013544, -0.009002622216939926, 0.0011019529774785042, 0.013176686130464077, -0.016295546665787697, -0.013149972073733807, -0.03301851823925972, -0.005813636817038059, -0.03197667375206947, -0.008341450244188309, 0.012869475409388542, 0.00338266184553504, 0.01779153198003769, -0.007980811409652233, 0.028343565762043, 0.005112393759191036, 0.010665569454431534, 0.008875730447471142, -0.022506555542349815, -0.004157368093729019, 0.009216333739459515, 0.0133369704708457, 0.033980224281549454, -0.009576973505318165, -0.004708344582468271, 0.03568992018699646, -0.01761789061129093, 0.008368164300918579, -0.025618737563490868, 0.03104168176651001, -0.00676532369107008, -0.024616962298750877, -0.01073235459625721, 0.008608589880168438, 0.01943444274365902, 0.03876202926039696, 0.039937447756528854, 0.014345424249768257, 0.0008335606544278562, -0.013143293559551239, -0.0077403848990798, -0.03104168176651001, 0.0034260719548910856, 0.009597009047865868, -0.019300874322652817, -0.00017165839381050318, 0.0044946325942873955, 0.0031155215110629797, 0.018365882337093353, -0.0010051146382465959, 0.004187421407550573, 0.006648449692875147, 0.013303577899932861, -0.007519994396716356, 0.02300076372921467, 0.0063278814777731895, -0.03301851823925972, -0.03435421735048294, 0.016883255913853645, 0.009523545391857624, -0.011600559577345848, -0.013016401790082455, 0.005626638885587454, -0.01241533737629652, -0.02978612296283245, 0.013303577899932861, 0.008054274134337902, 0.0290648452937603, 0.014572493731975555, 0.012842761352658272, -0.00501221651211381, 0.002467706799507141, 0.019554655998945236, -0.0009884184692054987, -0.022172629833221436, 0.006795376539230347, 0.0008406565757468343, 0.007580101024359465, -0.008535127155482769, -0.022266129031777382, 0.02898470312356949, 0.005479711573570967, -0.005459676031023264, -0.017390821129083633, 0.004561417270451784, -0.003963691648095846, -0.013577396050095558, -0.016001693904399872, -0.0036898727994412184, -0.02967926673591137, -0.01553419791162014, -0.003883549477905035, -0.004487954080104828, -0.012288445606827736, 0.014305353164672852, 0.009597009047865868, -0.03702561929821968, -0.010358357802033424, -0.03560977801680565, -0.013043115846812725, -0.00380006805062294, 0.01414506882429123, -0.0048986817710101604, 0.002626321278512478, -0.03176296129822731, 0.01455913670361042, -0.015253700315952301, -0.00380006805062294, 0.02187877520918846, -0.0033192159608006477, -0.008007525466382504, -0.003656480461359024, 0.024990957230329514, -0.017604533582925797, -0.0002608790236990899, -0.00691225053742528, -0.009309832938015461, 0.0039937449619174, 0.020422862842679024, 0.00043869417277164757, 0.00282500684261322, -0.005072323139756918, 0.009703864343464375, 0.002072005532681942, -0.007833884097635746, -0.02706129476428032, 0.01200126949697733, 0.025071099400520325, 0.0022039059549570084, -0.017497677356004715, 0.0002725663944147527, 0.008862373419106007, 0.003593034576624632, 0.011133064515888691, -0.003820103593170643, 0.015961622819304466, 0.014719420112669468, 0.06806730479001999, 0.005880421958863735, 0.0034928570967167616, -0.02040950581431389, 0.011807593517005444, 0.006261096335947514, 0.009844113141298294, -0.01578798145055771, -0.005857047159224749, 0.018619665876030922, 0.012448729015886784, -0.016308903694152832, 0.00355630274862051, 0.004174064379185438, -0.023454902693629265, -0.015961622819304466, -0.004424508195370436, -0.022092487663030624, 0.02983955107629299, -0.035983774811029434, -0.025351596996188164, 0.015240343287587166, 0.0038301213644444942, -0.009957647882401943, 0.00545633677393198, 0.009603687562048435, -0.004838575143367052, -0.008314736187458038, -0.024536820128560066, -0.0004255458479747176, -0.027074649930000305, -0.019087161868810654, -0.0014484003186225891, 0.0006056567071937025, -0.008955872617661953, -0.03627762943506241, -0.0010468553518876433, 0.005155804101377726, 0.01127331331372261, 0.019194018095731735, -0.008241272531449795, -0.017016826197504997, 0.01873987913131714, -0.0007838892634026706, -0.017390821129083633, -0.018699808046221733, -0.0133369704708457, 0.011767522431910038, -0.0035496242344379425, 0.025912592187523842, 0.0005058965762145817, -0.003003656631335616, 0.01817888580262661, 0.018085386604070663, -0.010825852863490582, 0.03707904741168022, 0.005873743444681168, -0.013811144046485424, -0.005382873583585024, -0.007486601825803518, 0.025458453223109245, -0.020142365247011185, 0.0009082764154300094, 0.011226563714444637, -0.047363944351673126, -0.008655339479446411, -0.010632176883518696, -0.018272383138537407, -0.007259532809257507, 0.015654411166906357, 0.01216823235154152, -0.007800491526722908, 0.00494209211319685, 0.015080059878528118, -0.02400253899395466, 0.0180987436324358, -0.012669119983911514, -0.011239920742809772, 0.004908699542284012, -0.028343565762043, 0.002486072713509202, -0.01956801302731037, 0.0034110452979803085, 0.006301167421042919, -0.009483474306762218, 0.013597431592643261, -0.005980599205940962, -0.01589483767747879, 0.011573845520615578, -0.014866347424685955, -0.0469365194439888, 0.009844113141298294, -0.008341450244188309, 0.004998859483748674, 0.016322260722517967, -0.013797787018120289, -0.03849489241838455, -0.041273146867752075, 0.009837434627115726, 0.00334759964607656, 0.025738950818777084, -0.0021170855034142733, -0.033419229090213776, -0.03365965560078621, -0.005362838041037321, 0.012261731550097466, -0.004548060707747936, 0.008067631162703037, -0.03227052465081215, 5.812384551973082e-05, 0.012422015890479088, -0.010672247968614101, -0.0052726780995726585, 0.018993662670254707, -0.0138779291883111, -0.009496831335127354, 0.006127526517957449, -0.02123763971030712, -0.036090631037950516, -0.0013766064075753093, -0.009730578400194645, 0.02218598686158657, 0.015881480649113655, 0.0007550882291980088, 0.024283036589622498, -0.0009408341138623655, -0.007446530740708113, 0.01170741580426693, 0.01339039858430624, -0.01594826579093933, -0.006301167421042919, -0.028557278215885162, 0.009029336273670197, 0.012976331636309624, 0.020917071029543877, 0.007940740324556828, -0.03627762943506241, -0.0027682394720613956, 0.007646885700523853, 0.008214558474719524, 0.02675408311188221, 0.009009300731122494, -0.04891335591673851, 0.00064823217689991, 0.03288494795560837, -0.004451222252100706, -0.019781725481152534, -0.009349904023110867, -0.011587202548980713, -0.006631753407418728, -0.0014884712873026729, 0.028236709535121918, 0.010064504109323025, 0.011059600859880447, -0.0033425907604396343, 0.013864572159945965, -0.00874216016381979, 0.014318710193037987, 0.01751103438436985, -0.007713670842349529, -0.02475053258240223, -0.0005146621260792017, 0.01620204746723175, 0.013784429989755154, 0.008094345219433308, -0.012889510951936245, 0.0012705852277576923, -0.008054274134337902, 0.0048986817710101604, -0.009523545391857624, 0.006775340996682644, 0.004307634197175503, -0.012041340582072735, -0.032644521445035934, -0.0055665322579443455, -0.0008097685058601201, -0.008174487389624119, 0.02436317875981331, 0.03427407518029213, -0.01974165439605713, 0.009296475909650326, -0.018726522102952003, -0.006508200895041227, -0.010832531377673149, -0.012442050501704216, 0.03376651182770729, 0.0009792355122044683, 0.009737256914377213, 0.028744276612997055, 0.012829404324293137, -0.0019150606822222471, -0.0303738322108984, -0.0035629812628030777, 0.038040753453969955, 0.016990112140774727, 0.037399616092443466, 0.0007964114774949849, -0.005666709505021572, 0.02831685170531273, 0.038681887090206146, -0.008481699042022228, -0.04009773209691048, 0.025137884542346, 0.029385412111878395, 0.005402908660471439, -0.01556091196835041, 0.015627697110176086, -0.03237738087773323, 0.009777327999472618, 0.004584792070090771, -0.035315923392772675, -0.0111931711435318, -0.01876659318804741, -0.047951649874448776, 0.00021068590285722166, -0.01023146603256464, 0.04600152745842934, -0.009189619682729244, -0.01325014978647232, -0.002811649814248085, -0.003025361802428961, -0.02541838213801384, -0.0024409927427768707, 0.01576126739382744, 0.009309832938015461, -0.014051570557057858, 0.003983727190643549, 0.03510221093893051, -0.014625921845436096, 0.019554655998945236, -0.012822725810110569, -0.010097896680235863, 0.04672280699014664, -0.019594727084040642, 0.0028400332666933537, -0.013370363041758537, -0.0012989687966182828, 0.028637420386075974, -0.009002622216939926, 0.002021916676312685, 0.005977259948849678, -0.005963902920484543, 0.0004155281058046967, 0.02171849086880684, -0.006534914951771498, 0.016348974779248238, -0.01820559985935688, -0.011507060378789902, -0.013310256414115429, -0.02708800695836544, -0.006404684390872717, -0.0005797775229439139, -0.020836928859353065, -0.021250996738672256, -0.011653987690806389, -0.014732777141034603, 0.018659736961126328, 0.03838803619146347, -0.003866853192448616, 0.025311525911092758, 0.045894671231508255, -0.013303577899932861, 0.0012163223000243306, -0.031201966106891632, -0.005730155389755964, -0.012936260551214218, -0.015520840883255005, -0.026901010423898697, -0.014519065618515015, 0.04167385771870613, -0.033980224281549454, -0.009697185829281807, -0.021932203322649002, -0.009977683424949646, 0.021892132237553596, -0.008695410564541817, 0.02837027981877327, 0.010966101661324501, -0.010812495835125446, 0.01856623776257038, -7.200260733952746e-05, -0.021892132237553596, -0.0014258603332564235, -0.027568859979510307, -0.02318776212632656, 0.02177191898226738, -0.013717644847929478, 0.016856541857123375, -0.01178755797445774, -0.01422521099448204, 0.009663794189691544, -0.03622420132160187, -0.027996284887194633, -0.008755517192184925, -0.017858317121863365, -0.023868968710303307, -0.01581469550728798, -0.028637420386075974, -0.00010523859964450821, -0.01709696836769581, -0.005402908660471439, -0.004137332551181316, 0.0001461966021452099, -0.0052225892432034016, 0.04055187106132507, -0.02519131265580654, 0.014772848226130009, -0.03518235310912132, -0.021170854568481445, 0.01485299039632082, -0.03910931199789047, -0.031308822333812714, -0.03245752304792404, -0.01776481792330742, 0.020970499143004417, 0.038681887090206146, -0.009376618079841137, -0.043917834758758545, 0.014999917708337307, -0.03320551663637161, -0.016322260722517967, -0.0054162656888365746, 0.010552034713327885, 0.044612400233745575, 0.005613281857222319, 0.001450069947168231, 0.016883255913853645, 0.0007104257238097489, 0.019621441140770912, -0.03373979777097702, -0.021304424852132797, -0.024122752249240875, -0.04041830077767372, -0.011380168609321117, 0.011627273634076118, 0.0010927700204774737, 0.005756869446486235, 0.02300076372921467, 0.0037967290263623, 0.005816976074129343, 0.023067548871040344, -0.025966018438339233, -0.0005793601158075035, -0.01270919106900692, 0.017003469169139862, -0.01578798145055771, 0.011867700144648552, -0.021371209993958473, -0.03048068657517433, 0.003279144875705242, -0.004584792070090771, 0.0005372020532377064, -0.03211024031043053, 0.04645566642284393, 0.021144140511751175, -0.021371209993958473, -0.003759997198358178, -0.04295613244175911, -0.022145915776491165, -0.004888663999736309, -0.015547554939985275, 0.04033815860748291, 0.0010485249804332852, -0.009096121415495872, 0.0160684771835804, -0.011867700144648552, 0.01753774844110012, -0.012836082838475704, 0.0010802478063851595, -0.03160267695784569, -0.014064927585422993, 0.012562263756990433, -0.002145468955859542, 0.0008990934584289789, 0.014278639107942581, 0.01034500077366829, -0.016348974779248238, -0.008014203049242496, 0.007199426181614399, -0.02783600054681301, -0.0488332137465477, 0.030266975983977318, 0.017671318724751472, -0.03117525205016136, -0.008561840280890465, -0.015267057344317436, -0.0037032298278063536, 0.0021087373606860638, -0.007753741927444935, -0.00796077586710453, -0.023935753852128983, 0.02416282333433628, -0.005626638885587454, 0.011814272031188011, -0.004387776367366314, -0.004835235886275768, 0.006187633145600557, -0.02678079716861248, 0.008214558474719524, 0.26649898290634155, -0.04803179204463959, -0.007172712124884129, 0.012348552234470844, -0.006845465395599604, 0.03854832053184509, -0.004735058639198542, -0.012301802635192871, -0.004174064379185438, -0.0079874899238348, -0.013263506814837456, -0.005663370247930288, -0.0208502858877182, 0.002950228750705719, 0.010184717364609241, -0.02321447618305683, -0.006878857966512442, -0.015373913571238518, -0.02352168783545494, -0.0264468714594841, 0.020249221473932266, -0.008889087475836277, 0.02288055047392845, 0.003265787847340107, 0.009430046193301678, -0.011994590982794762, -0.01717710867524147, 0.0008723794599063694, 0.027355147525668144, 0.021357852965593338, -0.021277710795402527, 0.0038067465648055077, -0.0042341710068285465, 0.00016581470845267177, -0.007954097352921963, -0.0036030523478984833, 0.03878874331712723, 0.02205241657793522, 0.029305269941687584, -0.0065716467797756195, -0.0011128055630251765, 0.02349497377872467, 0.021344495937228203, 0.0019284177105873823, -0.012508835643529892, 0.027275005355477333, 0.014746134169399738, -0.015053345821797848, 0.007312960922718048, -0.010919352062046528, -0.03448778763413429, -0.033419229090213776, 0.03170953318476677, 0.021958917379379272, 0.016081834211945534, 0.0026279909070581198, 0.002970264060422778, -0.009657115675508976, 0.01254222821444273, 0.027969570830464363, -0.017671318724751472, 0.03625091537833214, -0.021331138908863068, 0.012408658862113953, -0.03507549688220024, -0.0016454161377623677, 0.007620171643793583, 0.018218956887722015, 0.00455139996483922, -0.010525320656597614, -0.014572493731975555, -0.009710542857646942, -0.001432538847438991, -0.01887344941496849, -0.002417617943137884, -0.015694482252001762, 0.021985631436109543, 0.017270607873797417, 0.019007019698619843, 0.0061509013175964355, 0.0138779291883111, 0.0007008254178799689, 0.0014450610615313053, -0.005182518158107996, -0.00985747016966343, -0.02310761995613575, 0.015106773935258389, -0.010084539651870728, 0.0032874930184334517, 0.012321838177740574, -0.020783500745892525, -0.001327352481894195, 0.00782052706927061, 0.0006724417908117175, 0.014545779675245285, 0.00727956835180521, 0.015574268996715546, 0.013797787018120289, -0.011814272031188011, 0.008855694904923439, -0.004748415667563677, -0.00659836083650589, 0.014812919311225414, 0.006314524449408054, -0.014665991999208927, 0.004274242091923952, 0.008955872617661953, 0.01419849693775177, 0.011413561180233955, -0.014385495334863663, 0.01620204746723175, -0.025231383740901947, 0.0031522533390671015, -0.010865923948585987, -0.02272026613354683, -0.004327669739723206, -0.04047172889113426, -0.016722971573472023, -0.009530223906040192, -0.0007033298606984317, 0.0117341298609972, -0.008875730447471142, 0.002778257243335247, 0.01553419791162014, 0.00103516795206815, -0.02141128107905388, 4.171455657342449e-05, -0.012408658862113953, 0.017684675753116608, -0.030827969312667847, 0.029492268338799477, -0.0210773553699255, 0.035262495279312134, -0.005409587174654007, 0.0024977601133286953, -0.013717644847929478, -0.0063445777632296085, -0.00296859466470778, -0.010164681822061539, 0.004962127655744553, 0.012896189466118813, 0.015600983053445816, 0.007186069153249264, 0.014652634970843792, -0.015333842486143112, 0.0001359701418550685, 0.012522192671895027, 0.006177615374326706, 0.011320062913000584, 0.006197650916874409, -0.02416282333433628, 8.963802974903956e-05, -0.004274242091923952, -0.005092358682304621, 0.026273230090737343, -0.027488717809319496, 6.9328598328866065e-06, -0.04896678403019905, 0.0016387376235798001, 0.005933850072324276, -0.0073663885705173016, -0.006711895577609539, 0.0009024327155202627, -0.006044045090675354, -0.009403332136571407, 0.004294277168810368, -0.16893941164016724, -0.004050511866807938, 0.03745304420590401, -0.013744358904659748, 0.027942856773734093, -0.009436724707484245, 0.023949110880494118, 0.008949194103479385, -0.011820950545370579, 0.003886888734996319, 0.0221592728048563, -0.0025461793411523104, -0.01779153198003769, 0.0007621841505169868, 0.00022059929324313998, -0.0045447214506566525, -0.0014250255189836025, 0.016576044261455536, 0.04247527942061424, 0.019995437934994698, 0.050623051822185516, -0.01151373889297247, 0.016602758318185806, 0.018659736961126328, -0.011954519897699356, 0.006124187260866165, 0.009116156026721, -0.007446530740708113, 0.023281261324882507, -0.020142365247011185, 0.005319427698850632, -0.00421079620718956, 0.030026549473404884, 0.0015736222267150879, -0.010612141340970993, -0.03568992018699646, -0.008942515589296818, -0.021705133840441704, -0.004474597051739693, 8.838581561576575e-05, 0.0022005666978657246, -0.002053639618679881, -0.02552523836493492, -0.005446319002658129, 0.0014784536324441433, 0.013958071358501911, 0.0024443319998681545, -0.002551188226789236, 0.02207913063466549, -0.006741948891431093, 0.014438923448324203, -0.04715023189783096, 0.0034761608112603426, -0.003606391604989767, 0.03750647231936455, 0.0010660560801625252, -0.009216333739459515, -0.024884101003408432, 0.003192324424162507, 0.0011653987457975745, -0.013129936531186104, -0.03785375505685806, 0.0013039776822552085, 0.028129855170845985, 0.00482187932357192, -0.00635459553450346, -0.01357071753591299, 0.05286702886223793, -0.02338811755180359, -0.009997718967497349, 0.0056767272762954235, -0.03758661448955536, -0.004504650365561247, -0.0324040949344635, 0.018659736961126328, 0.008828980848193169, 0.0054830508306622505, -0.010752390138804913, 0.022760337218642235, -0.015667768195271492, -0.021304424852132797, 0.05174504220485687, -0.025284811854362488, -0.01740417815744877, 0.014933132566511631, 0.009810720570385456, 0.01002443302422762, -0.0015761266695335507, -0.021304424852132797, -0.008955872617661953, 0.02254662662744522, -0.03512892499566078, 0.010712319053709507, -0.015828052535653114, 0.02770243026316166, 0.010418464429676533, 0.005182518158107996, -0.022840479388833046, -0.0002740273193921894, 0.011453632265329361, -0.009971004910767078, -0.008027560077607632, -0.007105926983058453, 0.0052225892432034016, -0.0045447214506566525, 0.0005067313904874027, -0.0049153780564665794, 0.043330125510692596, 0.03582349047064781, 0.011720772832632065, -0.012255053035914898, 0.021985631436109543, 0.013744358904659748, 0.01759117655456066, 0.017110325396060944, 0.01982179656624794, 0.002638008678331971, 0.006818751338869333, 0.03048068657517433, 0.0178716741502285, 0.024590248242020607, -0.02672736905515194, 0.004838575143367052, 0.034648071974515915, 0.0003358034882694483, -0.029518982395529747, -0.051184047013521194, -0.023909039795398712, 0.01450570859014988, 0.04210128262639046, 0.008361485786736012, 0.017644604668021202, -0.005513104144483805, 0.025258097797632217, 0.0074999588541686535, 0.031495820730924606, -0.01622876152396202, -0.001103622606024146, -0.007446530740708113, 0.02051636017858982, 0.009576973505318165, 0.00620766868814826, -0.01187437865883112, 0.003793389769271016, 0.002517795655876398, 0.03715918958187103, -0.0013148302678018808, -0.018526166677474976, -0.0006160918856039643, -0.028263423591852188, 0.014732777141034603, -0.006177615374326706, -0.011406882666051388, 0.05006205663084984, 0.016963398084044456, 0.03625091537833214, 0.05422944203019142, 0.008267986588180065, -0.006204329431056976, -0.007586779538542032, -0.0012505496852099895, 0.000785976299084723, -0.01609519124031067, -0.0303738322108984, -0.0020803536754101515, -0.025324882939457893, -0.0008698750170879066, 0.009403332136571407, 0.04490625485777855, -0.01302975881844759, 0.004851932171732187, -0.020503003150224686, -0.010385071858763695, 0.035369351506233215, -0.00045121635776013136, -0.024884101003408432, -0.03352608531713486, 0.006825429853051901, -0.008341450244188309, -0.026179730892181396, 0.025244740769267082, 0.021304424852132797, 0.00362642714753747, 0.005269338842481375, -0.05083676427602768, 0.010278215631842613, -0.0009333207854069769, -0.021665062755346298, -0.005382873583585024, 0.006992392707616091, -0.0029936388600617647, 0.004391115624457598, -0.01907380484044552, 0.0141717828810215, 0.02675408311188221, 0.013370363041758537, -0.016642829403281212, 0.022306200116872787, 0.01242869347333908, 0.018633022904396057, -0.0032691271044313908, -0.01940772868692875, 0.0023925737477838993, 0.005476372316479683, 0.035449493676424026, 0.0037399616558104753, -0.011086314916610718, -0.013597431592643261, 0.008101023733615875, 0.002102058846503496, 0.043169841170310974, -0.0017147056059911847, -0.008902444504201412, 0.02408268116414547, -0.006795376539230347, -0.01620204746723175, -0.004998859483748674, 0.029305269941687584, 0.023788826540112495, -0.009089442901313305, -0.02249319851398468, 0.012655762955546379, 0.0022172629833221436, 0.012816047295928001, 0.011834307573735714, 0.00669519929215312, -0.017684675753116608, -0.01759117655456066, -0.08014203608036041, 0.014278639107942581, 0.0026797493919730186, 0.018272383138537407, 0.026179730892181396, 0.004264224320650101, 0.011553809978067875, 0.008301379159092903, -0.007292925380170345, -0.016696257516741753, -0.01305647287517786, 0.015413984656333923, 0.019701583310961723, -0.015240343287587166, -0.02187877520918846, 0.0011795905884355307, 0.004197439178824425, -0.005663370247930288, -0.008641982451081276, 0.009296475909650326, 0.005887100473046303, 0.008655339479446411, 0.006648449692875147, 9.162071364698932e-05, -0.016268832609057426, -0.003957013133913279, -0.01776481792330742, 0.003377652959898114, -0.02772914431989193, -0.005249303299933672, 0.02185206115245819, -0.014358781278133392, 0.018299097195267677, 0.014278639107942581, -0.005292713642120361, -0.02472381852567196, -0.02105064131319523, 0.01075906865298748, 0.025044385343790054, -0.0025962679646909237, -0.004918717313557863, -0.034033652395009995, -0.0006803724681958556, -0.0117341298609972, -0.0020118989050388336, -0.008374842815101147, -0.017631247639656067, 0.005242624785751104, 0.010264858603477478, -0.014332067221403122, 0.017724746838212013, 0.006959000136703253, 0.00036126526538282633, -0.02077014371752739, -0.027568859979510307, -0.03940316662192345, 0.015347199514508247, 0.017003469169139862, 0.01490641850978136, -0.031308822333812714, 0.03165610507130623, 0.03178967535495758, 0.01023146603256464, 0.0024309749715030193, -0.0020503003615885973, -0.0013190043391659856, -0.015467412769794464, -0.0010485249804332852, 0.014238568022847176, 0.006144222803413868, -0.008595232851803303, 0.001137015176936984, -0.020396148785948753, 0.017497677356004715, 0.015600983053445816, 0.01137349009513855, 0.008889087475836277, -0.008301379159092903, -0.027221577242016792, 0.023895682767033577, 0.015881480649113655, -0.001433373661711812, -0.02829013764858246, 0.015614340081810951, 0.050462767481803894, -0.028156569227576256, 9.600348130334169e-05, 0.013864572159945965, -0.030934825539588928, 0.010331643745303154, -0.018579594790935516, 0.004280920140445232, 0.013784429989755154, 0.022813765332102776, 0.01648254506289959, 0.01740417815744877, 0.009289797395467758, -0.004197439178824425, 0.01871316507458687, 0.02118421159684658, 0.010739033110439777, 0.009797363542020321, -0.008969229646027088, -0.0072728898376226425, -0.008708767592906952, 0.01025818008929491, -0.020142365247011185, -0.028877846896648407, 0.03349937126040459, -0.0040171192958951, -0.008000846952199936, 0.0038401391357183456, -0.007332995999604464, 0.006691860035061836, -0.024870743975043297, 0.02485738694667816, -0.015053345821797848, -0.013377041555941105, -0.02377546951174736, 0.018192242830991745, 0.0076936352998018265, 0.022426413372159004, 0.01224837452173233, -0.018993662670254707, 0.04111286252737045, -0.02962583862245083, 0.0032524308189749718, -0.017043540254235268, 0.03964359313249588, 0.028957989066839218, 0.0036498019471764565, 0.008621946908533573, -0.017644604668021202, -0.024176180362701416, -0.030747827142477036, 0.01091267354786396, -0.00510905496776104, 0.0022339592687785625, 0.0013757715933024883, 0.0665178894996643, -0.004962127655744553, 0.02269355207681656, 0.006999071221798658, -0.0013907982502132654, 0.012962974607944489, 0.01935430057346821, 0.00793406181037426, -0.011747486889362335, 0.007319638971239328, 0.016522616147994995, 2.068770663754549e-05, -0.008080988191068172, -0.023922396823763847, -0.003145574824884534, -0.012896189466118813, -0.036544766277074814, 0.024603605270385742, -0.041273146867752075, 0.0006791202467866242, 0.032697949558496475, -0.00985747016966343, 0.028824418783187866, 0.007560065481811762, -0.019835153594613075, -0.008862373419106007, 0.017444249242544174, -0.005232607014477253, 0.012308481149375439, 0.015654411166906357, -0.010244823060929775, 0.003593034576624632, -0.022987406700849533, -0.018993662670254707, -0.018699808046221733, 0.006067419890314341, -0.01184766460210085, 0.0015861444408074021, 0.005342802498489618, 0.013637502677738667, -0.0017330715199932456, -2.867060356948059e-05, -0.01871316507458687, -0.01697675511240959, 0.00029698468279093504, 0.00279829278588295, -0.0003760831896215677, 0.011921127326786518, -0.019340943545103073], "7b7444e8-5e2c-4d2b-8d41-a5c7180e5747": [-0.007139569614082575, -0.002653897274285555, -0.0035764824133366346, -0.01990506611764431, -0.01671704091131687, -0.0054216524586081505, -0.013569201342761517, -0.009644446894526482, -0.0010565357515588403, -0.012611453421413898, -0.015163213945925236, -0.0020243292674422264, 0.0018786578439176083, 0.008787162601947784, -0.006523396819829941, -0.01809673197567463, 0.0035195532254874706, 0.00982527993619442, 0.007882995530962944, 0.011419292539358139, 0.014493460766971111, 0.004591158591210842, -0.007400773465633392, -0.004835618659853935, -0.02200809121131897, 0.017212659120559692, 0.019771115854382515, -0.016047287732362747, 0.011158089153468609, 0.010160156525671482, 0.031103340908885002, 0.00836521852761507, 0.010555311106145382, -0.020039018243551254, 0.00016524067905265838, -0.020815931260585785, 0.012912842445075512, 0.002436227397993207, -0.006476514041423798, 0.016542905941605568, 0.01701173186302185, -0.022878771647810936, -0.0029904483817517757, 0.018217287957668304, -0.011325527913868427, 0.010521823540329933, -0.002208511345088482, -0.014332719147205353, -0.008639817126095295, 0.03490753844380379, 0.014493460766971111, 0.008298242464661598, -0.037532974034547806, -0.031853463500738144, 0.010421360842883587, 0.0020527937449514866, -0.012008675374090672, 0.006178473588079214, -0.015913337469100952, -0.03174630552530289, 0.012196206487715244, -0.017895806580781937, -0.003593226196244359, -0.011941700242459774, 0.016958152875304222, 0.007983459159731865, -0.028665438294410706, 0.02172679640352726, -0.0009987695375457406, 0.0030323078390210867, 0.03790803253650665, 0.023749450221657753, -0.029495934024453163, 0.004423720296472311, 0.03316618129611015, -0.002175023779273033, -0.027017846703529358, -0.008706792257726192, -0.0021247921977192163, 0.007983459159731865, -0.0012105789501219988, -0.004196004010736942, 0.02045426517724991, -0.01425234880298376, 0.012082348577678204, 0.02249031513929367, 0.005994291510432959, 0.020467659458518028, 0.008217872120440006, -0.03429136797785759, -0.0033018835820257664, 0.0157392006367445, 0.02542383410036564, 0.01806994341313839, -0.008827348239719868, 0.01809673197567463, -0.012370342388749123, 0.038872480392456055, 0.009014878422021866, -0.047230999916791916, 0.016382165253162384, 0.03801519423723221, -0.016341978684067726, -0.0034827168565243483, -0.028960131108760834, -0.008934508077800274, 0.018418215215206146, -0.015498090535402298, 0.003663550363853574, -0.0006747763836756349, -0.02224920317530632, 0.02015957236289978, -0.006905156187713146, -0.03884568810462952, -0.022155437618494034, 0.010146761313080788, 0.04216766357421875, -0.00471506267786026, 0.0012842518044635653, -0.023441363126039505, 0.009510496631264687, 0.009255990386009216, -0.0001796822325559333, -0.028156425803899765, -0.014399695210158825, -0.002158279763534665, -0.024044141173362732, 0.0026890593580901623, 0.013006608001887798, -0.03204099461436272, 0.00943012535572052, -0.006885063368827105, 0.00047678060946054757, -0.01782883144915104, 0.008599631488323212, -0.004520834423601627, 0.008847440592944622, 0.014908707700669765, -0.022918956354260445, -0.015243584290146828, 0.0162214245647192, 0.0133347874507308, 0.009919045493006706, -0.0124239232391119, 0.00165261619258672, 0.017614509910345078, 0.01232345961034298, 0.02090969681739807, -0.0008392845629714429, 0.029656674712896347, 0.015337349846959114, 0.023682475090026855, 0.0022386503405869007, -0.018659325316548347, 0.02542383410036564, 0.0055355108343064785, 0.014480065554380417, 0.01784222573041916, -0.0031227245926856995, -0.013267812319099903, 0.0351218618452549, 0.02096327766776085, 0.025021981447935104, 0.003968288190662861, 0.006262192968279123, 0.03035321831703186, -0.008606329560279846, -0.013656268827617168, 0.005059985909610987, 0.005083427298814058, -0.00018857739632949233, 0.024285253137350082, -0.008525959216058254, 0.008438890799880028, -0.020266734063625336, 0.015015867538750172, 0.004075448494404554, -0.007889693602919579, -0.01572580635547638, 0.0013688082108274102, -0.006258843932300806, -0.015846362337470055, 0.010113273747265339, -0.0022905562072992325, 0.0021532566752284765, -0.012202904559671879, 0.02751346305012703, -0.01936926320195198, 0.01910136267542839, 0.010066390968859196, 0.033353712409734726, 0.047793593257665634, 0.010347687639296055, 0.011218367144465446, -0.6095290184020996, -0.006108149886131287, 0.00017151962674688548, 0.01478815171867609, 0.021927721798419952, 0.005545557010918856, 0.025530993938446045, 0.0329250693321228, -0.0063124243170022964, 0.012919540517032146, -0.00356308720074594, -0.014480065554380417, -0.00720654521137476, -0.0038644762244075537, -0.016569696366786957, -0.033139392733573914, 0.026776734739542007, -0.027861734852194786, -0.007454353850334883, -0.000680218159686774, -0.014346114359796047, 0.027312537655234337, -0.026093587279319763, 0.00861972477287054, 0.0078361127525568, 0.022342968732118607, -0.02936198189854622, 0.007755742873996496, 0.00042006088187918067, 0.04404297471046448, -0.028692228719592094, 0.024700500071048737, 0.029147662222385406, -0.004232840612530708, 0.041256800293922424, -0.0007873786962591112, -0.027567043900489807, 0.01627500355243683, -0.006918550934642553, 0.03429136797785759, 0.004875803831964731, -0.031076550483703613, 0.019985437393188477, -0.01272531133145094, 0.013160651549696922, 0.0037941522896289825, -0.011004045605659485, -0.009651144035160542, 0.006563581991940737, -0.0014098306419327855, -0.01594012789428234, -0.020333709195256233, -0.007166359573602676, 0.0035229020286351442, 0.023950375616550446, -0.001450852956622839, 0.015123028308153152, -0.014346114359796047, -0.01644914038479328, -0.014158584177494049, -0.010059693828225136, 0.004614599980413914, -0.01022043451666832, -0.0188334621489048, -0.008438890799880028, 0.008150896988809109, -0.03619346395134926, 0.014091608114540577, -0.005625927355140448, -0.026066796854138374, -0.020628400146961212, -0.02408432774245739, -0.012410528026521206, 0.0041256798431277275, 0.015310559421777725, 0.015096237882971764, 0.03281790763139725, -0.006576976738870144, 0.011137996800243855, -0.0008790511637926102, 0.005910572595894337, -0.016167843714356422, -0.025062166154384613, -0.013863892294466496, 0.015792781487107277, -0.01206225622445345, -0.015029262751340866, 0.007648582104593515, -0.019489819183945656, 0.009510496631264687, 0.0014977357350289822, 0.03059432841837406, 0.01677062176167965, 0.005846946034580469, 0.013823707588016987, 0.011506360955536366, -0.01886025071144104, -0.008284848183393478, 0.01113129872828722, -0.009262687526643276, -0.04406976327300072, 0.007728952448815107, 0.007166359573602676, -0.009992718696594238, 0.012618151493370533, 0.0023926934227347374, -0.04219445586204529, 0.02171340025961399, 0.023950375616550446, -0.015752596780657768, 0.004865757189691067, -0.01963716559112072, -0.031103340908885002, 0.03552371263504028, 0.0025601317174732685, -0.03697038069367409, 0.01441309042274952, 0.012765496969223022, -0.006208612583577633, 0.0137299420312047, 0.012089046649634838, 0.014480065554380417, 0.026374883949756622, 0.015832966193556786, 0.009838675148785114, 0.029388772323727608, 0.025263093411922455, 0.004323257133364677, -0.040720999240875244, 0.0038242910522967577, 0.004738504067063332, 0.0005278493044897914, 0.0002720872580539435, -0.01506944838911295, 0.002466366393491626, 0.0006203589728102088, 0.021324943751096725, -2.4841043341439217e-05, 0.023910190910100937, -0.004470603074878454, -0.005609183572232723, -0.0094167310744524, -0.005100171081721783, 0.018431609496474266, -0.022610869258642197, -0.0045710657723248005, -0.012953028082847595, -0.014158584177494049, -0.027647415176033974, 0.01595352217555046, 0.0099324407055974, -0.014332719147205353, -0.014573831111192703, 0.035496924072504044, 0.02041407860815525, -0.018485190346837044, -0.0016475929878652096, 0.00800355151295662, 0.003137794090434909, 0.010923675261437893, 0.0011796029284596443, -0.025530993938446045, -0.018136918544769287, 0.036032725125551224, -0.014439879916608334, -0.02385661005973816, -0.007019014097750187, 0.017708275467157364, -0.016569696366786957, -0.019556794315576553, -0.01035438571125269, -0.004939430393278599, 0.0014290859689936042, -0.0017396840266883373, 0.03145161271095276, -0.018431609496474266, 0.0006065453053452075, 0.009075156413018703, -0.0045275320298969746, -0.018511980772018433, -0.010421360842883587, 0.002821335569024086, -0.00445385929197073, -0.017735065892338753, 0.02957630343735218, -0.015149818733334541, 0.019958646968007088, 0.013254417106509209, -0.012256484478712082, -0.008740279823541641, -0.003995078150182962, 0.03683643043041229, 0.005846946034580469, -0.0069654337130486965, 0.021043647080659866, 0.033621612936258316, 0.0009744910057634115, 0.006553535349667072, -0.017855621874332428, 0.019972041249275208, 0.018418215215206146, 0.012249787338078022, 0.0013545759720727801, -0.01468099094927311, 0.033353712409734726, -0.033112600445747375, 0.006339214742183685, -0.0007584955310449004, 0.029415562748908997, 0.017360003665089607, 0.02303951233625412, -0.023119881749153137, -0.02514253742992878, -0.0156722255051136, 0.03348766267299652, -0.0042027016170322895, -0.017145683988928795, -0.0034040207974612713, -0.006627208553254604, -0.0014885265845805407, 0.003435834078118205, 0.021619634702801704, -0.005652717314660549, -0.00890771858394146, -0.003288488369435072, -0.016047287732362747, 0.024017350748181343, 0.023762844502925873, -0.0028548231348395348, -0.027888525277376175, -0.008445588871836662, -0.006566930562257767, -0.008211174979805946, 0.0022788355126976967, 0.02616056241095066, -0.03541655093431473, 0.05111556872725487, -0.008211174979805946, 0.035711243748664856, -0.002007585484534502, -0.0001751823292579502, 0.016971547156572342, 0.012865959666669369, -0.013649571686983109, 0.017641300335526466, 0.0014182025333866477, 0.03193383663892746, 0.0199318565428257, -0.012805682606995106, 0.023200253024697304, -0.029924575239419937, -0.01805654726922512, -0.004396929871290922, 0.015136423520743847, 0.010280712507665157, -0.021016856655478477, 0.005086775869131088, 0.027808155864477158, 0.019717535004019737, 0.020239943638443947, -0.005096822045743465, 0.027312537655234337, -0.024526363238692284, -0.010347687639296055, 0.011211669072508812, -0.01678401604294777, 0.00016701972344890237, -0.038899268954992294, 0.022316178306937218, -0.01399784255772829, -0.0206551905721426, -0.00916892196983099, 0.005649368744343519, -0.01529716420918703, -0.0016559648793190718, -0.0022436734288930893, 0.027325931936502457, 0.00025597133208066225, 0.036300625652074814, -0.006499955430626869, -0.008552748709917068, -0.03903321921825409, 0.025088956579566002, 0.010146761313080788, -0.01730642467737198, -0.011653706431388855, -0.015203398652374744, -0.009550681337714195, -0.033862724900245667, 0.027888525277376175, -0.0019757722038775682, 0.019181733950972557, 0.009610959328711033, 0.007682069670408964, -0.002355857053771615, 0.004674877505749464, 0.02203488163650036, 0.0006371027557179332, -0.01935586892068386, 0.015819571912288666, 0.035202231258153915, -0.014948892407119274, 0.00861972477287054, -0.008680001832544804, 0.02933519333600998, 0.00851256400346756, -0.0029921226669102907, -0.006181822624057531, -0.008673304691910744, -0.004480649251490831, 0.01021373737603426, -0.02301272191107273, 0.001938935718499124, -0.01517660915851593, 0.0012080674059689045, 1.3682849385077134e-05, 0.011854632757604122, -0.0030055176466703415, 0.016583090648055077, -0.0003070399980060756, -0.034934330731630325, -0.017226053401827812, -0.023494943976402283, -0.01959698088467121, 0.0172528438270092, -0.005297748371958733, -0.016797412186861038, -0.0047652944922447205, -0.043346431106328964, -0.014480065554380417, -0.027915315702557564, -0.011452781036496162, 0.0019255406223237514, -0.006570279598236084, -0.01019364409148693, -0.012765496969223022, 0.019195128232240677, -0.011827842332422733, 0.0072534275241196156, 0.01348213292658329, -0.022075066342949867, -0.0013311345828697085, 0.023508338257670403, -0.016636671498417854, 0.015498090535402298, 0.029924575239419937, -0.00043701400863938034, 0.010950465686619282, -0.014600620605051517, 0.0018753091571852565, -0.012611453421413898, 0.03528260067105293, 0.00014703176566399634, -0.024512968957424164, 0.012142626568675041, 0.0019221918191760778, -0.014265744015574455, 0.04165865108370781, -0.0029033804312348366, 0.028933340683579445, 0.017654696479439735, 0.04615939408540726, -0.02196790650486946, -0.00018910063954535872, 0.019248709082603455, 0.0015119679737836123, -0.0007584955310449004, -0.01753414049744606, 0.0038477324414998293, -0.021673215553164482, 0.011305434629321098, 0.011647009290754795, -0.015149818733334541, -0.04114963859319687, 0.027352722361683846, -0.007139569614082575, -0.06118865683674812, 0.005642671138048172, 0.014078212901949883, -0.01203546579927206, -0.02381642535328865, -0.005605834536254406, 0.03482716903090477, 0.009336360730230808, -0.015283768996596336, -0.006978828925639391, 0.016301793977618217, 0.0015806176234036684, -0.007541421800851822, -0.02930840291082859, -0.02096327766776085, 0.004755248315632343, -0.02885296940803528, 0.038658156991004944, 0.03276433050632477, -0.022128647193312645, -0.015471300110220909, -0.028879759833216667, 0.04503420740365982, 0.0046480875462293625, 0.032603587955236435, -0.01492210291326046, -0.02306630276143551, 0.004480649251490831, -0.005990942940115929, -0.03255000710487366, 0.005739785265177488, -0.036086305975914, 0.026133771985769272, 0.0074476562440395355, 0.025557784363627434, 0.012082348577678204, -0.011606823652982712, 0.01137910783290863, -0.0018434958765283227, 0.006439677439630032, 0.01427913922816515, 0.014614015817642212, -0.01191491074860096, -0.012129231356084347, -0.01939605362713337, -0.01216941699385643, -0.02483445033431053, -0.015350744128227234, 0.011948398314416409, -0.024191487580537796, -0.016288399696350098, 0.0006944503984414041, -0.00017267075600102544, -0.019221918657422066, 0.003129421966150403, 0.009055064059793949, 0.003166258567944169, 0.030460378155112267, 0.02700445055961609, -0.017922597005963326, 0.01138580497354269, -0.012135928496718407, -0.00916892196983099, -0.0008568655466660857, 0.007802625186741352, 0.019556794315576553, 0.0015128051163628697, -0.010133367031812668, 0.019771115854382515, -0.01967735029757023, 0.01599370688199997, 0.005923967342823744, -0.025865871459245682, -0.004219445399940014, -0.014654201455414295, -0.03193383663892746, -0.0007434260915033519, -0.009235897101461887, 0.002424506703391671, -0.0037070843391120434, -0.011305434629321098, -0.03930111974477768, -0.011318829841911793, 0.016944756731390953, 0.0033705332316458225, 0.023454759269952774, -0.015591856092214584, -0.021097227931022644, -0.033407293260097504, -0.010307502932846546, 0.013107070699334145, -0.019998831674456596, 0.014881917275488377, -0.028477909043431282, -0.02069537527859211, -0.004500742070376873, 0.00023504153068643063, 0.009691329672932625, 0.0042797233909368515, 0.005522115621715784, -0.02176698110997677, -0.01752074435353279, 0.012537781149148941, 0.005877084564417601, -0.01938265934586525, -0.00812410656362772, 0.007996853440999985, 0.01991846226155758, 0.02066858485341072, 0.012812379747629166, -0.008244662545621395, -0.017185868695378304, 0.01046824362128973, 0.00022101857757661492, -0.031585562974214554, -0.012377040460705757, -0.020065806806087494, -0.013529015704989433, -0.002812963677570224, 0.03343408182263374, 0.00144080666359514, -0.03011210635304451, 0.002385996049270034, 0.014145188964903355, 0.020347103476524353, 0.04235519468784332, -0.018123522400856018, -0.02408432774245739, 0.011841237545013428, 0.002315671881660819, -0.003901312593370676, 0.011218367144465446, -0.029147662222385406, -0.03555050119757652, 0.0258792657405138, -0.005217378027737141, -0.0016609880840405822, -0.00888762529939413, 0.004443812649697065, -0.007655279710888863, 0.022302784025669098, 0.01021373737603426, 0.01938265934586525, 0.013756731525063515, 0.014212164096534252, -0.034666430205106735, 0.02669636532664299, 0.005920618772506714, 0.007581606972962618, 0.015819571912288666, 0.005870387423783541, 0.0030172383412718773, 0.010046298615634441, 0.006463118828833103, -0.0014131793286651373, -0.015926731750369072, 0.006144986022263765, -0.01701173186302185, -0.03798840567469597, -0.040185194462537766, -0.021673215553164482, -0.02309309132397175, 0.03694358840584755, 0.015136423520743847, -0.00995923113077879, 0.010019509121775627, -0.000611568451859057, -0.010642379522323608, 0.025490809231996536, 0.0038644762244075537, 0.014064818620681763, 0.0019037736346945167, 0.024258462712168694, 0.03431815654039383, 0.017360003665089607, 0.0032817909959703684, -0.03820272535085678, -0.017346609383821487, -0.003891266416758299, 0.022999325767159462, 0.013174046762287617, -0.033112600445747375, -0.017721671611070633, 0.022651055827736855, 0.012618151493370533, 0.0009636075119487941, -0.01729302853345871, 0.026066796854138374, 0.04264988750219345, -0.0082312673330307, -0.009845373220741749, 0.012658336199820042, -0.019154943525791168, 0.008237965404987335, 0.00826475489884615, -0.008646514266729355, -0.003573133610188961, -0.015565065667033195, -0.02516932785511017, 0.009738212451338768, 0.017962781712412834, 0.008271452970802784, 0.023896796628832817, -0.024231672286987305, 0.00044245575554668903, -0.01572580635547638, -0.016596484929323196, -0.003105980809777975, -0.010642379522323608, 0.005974199157208204, -0.029201241210103035, -0.006342563312500715, 0.039944082498550415, 0.007601699326187372, -0.008639817126095295, -0.017145683988928795, 0.008211174979805946, 0.045998651534318924, -0.033380500972270966, -0.03613988682627678, 0.007963365875184536, 0.018391424790024757, 0.02121778391301632, -0.010923675261437893, 0.0053814672864973545, 0.018753090873360634, -0.01780204102396965, -0.003633411368355155, 0.012263181619346142, 0.007581606972962618, -0.005599137395620346, -0.0074476562440395355, -0.00490929139778018, -0.024995191022753716, -0.015832966193556786, -0.01007308904081583, -0.012557873502373695, -0.045730751007795334, -0.03399667516350746, -0.03710433095693588, -0.01756093092262745, 0.015109633095562458, -0.00485236244276166, -0.010280712507665157, -0.0025852476246654987, 0.03517543897032738, -0.026240931823849678, 0.023896796628832817, -0.03434494510293007, 0.0057866680435836315, -0.021900931373238564, -5.9597576182568446e-05, -0.007802625186741352, -0.019463028758764267, 0.03198741376399994, -0.025048771873116493, -0.0015119679737836123, -0.024539759382605553, -0.023990562185645103, 0.025785500183701515, -0.001029745675623417, 0.01594012789428234, -0.01648932509124279, 0.0020628399215638638, 0.03008531592786312, -0.016395559534430504, -0.04238198697566986, 0.004025217145681381, -0.002496505156159401, -0.01492210291326046, 0.001890378538519144, -0.007749045267701149, 0.012410528026521206, 0.002047770656645298, -0.005398211069405079, -0.0002448785235174, -0.03295186161994934, -0.03228210657835007, -0.013756731525063515, -0.015109633095562458, -0.006041174288839102, 0.006720974110066891, -0.028960131108760834, -0.032362475991249084, -0.02044086903333664, -0.028719019144773483, -0.008271452970802784, -0.004196004010736942, 0.008793859742581844, 0.0112384594976902, 0.016944756731390953, 0.017226053401827812, -0.018940621986985207, -0.014774756506085396, -0.011425990611314774, -0.02309309132397175, -0.021807165816426277, -0.012618151493370533, -0.01047494076192379, 0.035711243748664856, -0.0025283184368163347, -0.009805187582969666, -0.02721877209842205, 0.0026857105549424887, -0.03230889514088631, 0.012102440930902958, 0.020025622099637985, 0.0408281572163105, 0.007534724194556475, 0.015819571912288666, 0.010287409648299217, 0.027138402685523033, -0.010300804860889912, 0.01938265934586525, -0.014721176587045193, -0.005532161798328161, -0.01232345961034298, 0.0017848924035206437, -0.004601204767823219, -0.0006726834108121693, -0.0015781060792505741, -0.013971053063869476, 0.019583584740757942, 0.004782038275152445, -0.007882995530962944, 0.031237291172146797, 0.00993913784623146, -0.023655684664845467, -0.006690835114568472, -0.012658336199820042, -0.01596691831946373, 0.005522115621715784, -0.0009736538049764931, -0.022905562072992325, -0.012410528026521206, 0.023401178419589996, 0.018270868808031082, -0.011600126512348652, 0.01308697834610939, 0.003039005445316434, -0.021673215553164482, 0.027165191248059273, -0.018163708969950676, -0.011647009290754795, 0.0022436734288930893, 0.035470131784677505, 0.01752074435353279, 0.009718120098114014, -0.0021314898040145636, 0.028424328193068504, 0.02121778391301632, 0.012852564454078674, -0.016583090648055077, -0.004477300681173801, -0.01282577496021986, -0.0078361127525568, -0.00048682690248824656, 0.002794545376673341, -0.0022453477140516043, -0.008673304691910744, 0.012464107945561409, -0.016341978684067726, -0.011178181506693363, 0.019476424902677536, -0.008298242464661598, -0.047793593257665634, 0.015216793864965439, 0.01167379878461361, -0.02669636532664299, -0.0040854946710169315, -0.004403627477586269, -0.006570279598236084, 0.00018282170640304685, -0.029978156089782715, 0.022999325767159462, -0.012330157682299614, 0.0053814672864973545, 0.012089046649634838, -0.0028732414357364178, 0.0016894525615498424, 0.006761159282177687, 0.0017413584282621741, -0.03646136820316315, -0.011533151380717754, 0.22739462554454803, -0.026897290721535683, -0.002541713649407029, 0.017694881185889244, 0.0025099003687500954, 0.02906729094684124, -0.007601699326187372, 0.005227424204349518, -0.008412101306021214, 0.01529716420918703, -0.0037104329094290733, -0.005203982815146446, -0.013281206600368023, 0.002297253580763936, -0.018190497532486916, -0.011064323596656322, -0.0340234637260437, -0.03509506955742836, -0.013113768771290779, -0.01347543578594923, 0.02013278193771839, -0.015283768996596336, 0.006911853794008493, -0.0035898773930966854, 0.022597474977374077, -0.007307007908821106, -0.038631368428468704, 0.01678401604294777, 0.01776185631752014, 0.019998831674456596, -0.018766487017273903, 0.00356308720074594, -0.004795433487743139, 0.0034224390983581543, -0.02700445055961609, 0.003871173830702901, 0.03303223103284836, 0.011091114021837711, 0.021887537091970444, 0.026575809344649315, -0.00786290317773819, 0.020199758931994438, -0.0014483414124697447, -0.01506944838911295, -0.02011938765645027, 0.00916892196983099, -0.02487463504076004, 0.02589266002178192, -0.004222794435918331, 0.006566930562257767, -0.02096327766776085, -0.02045426517724991, 0.03528260067105293, 0.013676361180841923, 0.015123028308153152, -0.019797906279563904, 0.0038041984662413597, -0.0046882727183401585, 0.03710433095693588, -0.0018133568810299039, 0.003276767674833536, 0.04366791248321533, -0.026093587279319763, 0.033648405224084854, 0.00023922749096527696, 0.02253049984574318, -0.019730931147933006, 0.015457904897630215, -0.021512474864721298, 0.006352609489113092, -0.015873152762651443, 0.0007810997194610536, -0.0172528438270092, -0.016368769109249115, -0.0133347874507308, -0.004172562621533871, 0.04583791270852089, 0.008726884610950947, 0.04589149355888367, 0.006506653036922216, -0.007340495474636555, 0.012162718921899796, -0.021124018356204033, 0.020548028871417046, -0.009410033002495766, -0.02957630343735218, 0.0052106804214417934, -0.014319324865937233, 0.01036108285188675, 0.0013135535409674048, 0.012082348577678204, -0.0008740280172787607, 0.017935991287231445, -0.006496606394648552, -0.003663550363853574, 0.029120871797204018, 0.007849507965147495, 0.041792601346969604, -0.021311547607183456, 0.0029954714700579643, -0.008244662545621395, 0.02518272213637829, 0.016074078157544136, 0.015846362337470055, -0.027593834325671196, -0.02930840291082859, -0.017641300335526466, 0.0045308806002140045, -0.020561425015330315, -0.01729302853345871, -0.00721324235200882, -0.03423778712749481, 0.00411563366651535, -0.01387728750705719, 0.0006442189333029091, 0.01962376944720745, -0.013026700355112553, -0.001513642375357449, -0.0011611847439780831, -0.018123522400856018, 0.005173843819648027, -0.0016551277367398143, -0.01192160788923502, -0.013716546818614006, 0.006530094426125288, -0.013160651549696922, -0.01271191705018282, -0.010260620154440403, 0.014185373671352863, -0.023414574563503265, 0.03396988660097122, -0.04602544382214546, 0.009456915780901909, -0.008030341938138008, 0.010963860899209976, 0.00022959978377912194, -0.017386794090270996, -0.0015923383180052042, 0.01257796585559845, 0.02358870953321457, -0.016971547156572342, 0.02117759734392166, -0.0107227498665452, 0.00721324235200882, -0.003964939154684544, -0.02070877142250538, 0.009718120098114014, -0.001900424831546843, -0.0022922304924577475, 0.01726623810827732, -0.03238926827907562, -0.031505193561315536, -0.005920618772506714, -0.029951365664601326, 0.03059432841837406, 0.012524385936558247, -0.011827842332422733, -0.04897235706448555, 0.008994786068797112, 0.017922597005963326, -0.025021981447935104, 0.017145683988928795, 0.018270868808031082, -0.023883400484919548, -0.010709354653954506, 0.003407369600608945, -0.16952794790267944, 0.025464018806815147, 0.03177309408783913, -0.023762844502925873, 0.03281790763139725, -0.0027677554171532393, 0.01377012673765421, 0.005525464192032814, -0.024245068430900574, 0.004145772662013769, 0.0301388967782259, 0.017627906054258347, -0.013957657851278782, -0.0016978244530037045, -0.00701231649145484, -0.012906145304441452, -0.01752074435353279, -0.008840742520987988, 0.02909408137202263, 0.01758771948516369, 0.049374211579561234, 0.00037317813257686794, -0.01942284405231476, 0.03506828099489212, 0.0034023465123027563, 0.0035898773930966854, -0.010669169016182423, 0.011392503045499325, 0.006583674345165491, -0.03405025601387024, -0.01698494330048561, 0.008137501776218414, -0.0001852286368375644, 0.012651639059185982, 0.0014282488264143467, -0.0003951544058509171, 0.013187441974878311, -0.027017846703529358, -0.005080078262835741, -0.009095248766243458, 0.0041223312728106976, 0.020320313051342964, 0.003028959035873413, 0.0070859892293810844, -0.011647009290754795, 0.016033893451094627, 0.015203398652374744, 0.02281179651618004, -0.004581112414598465, -0.01674383133649826, 0.01644914038479328, -0.025276487693190575, -0.01752074435353279, -0.011044231243431568, 0.035202231258153915, -8.842835813993588e-05, -0.009249292314052582, -0.018967412412166595, 0.007347193080931902, 0.013696454465389252, -0.01959698088467121, -0.018257474526762962, -0.02725895680487156, 0.03734544292092323, 0.009356453083455563, 0.008994786068797112, -0.017989572137594223, 0.0539553202688694, -0.011801051907241344, -0.009014878422021866, 0.019704140722751617, -0.015899941325187683, 0.010454848408699036, -0.008191082626581192, 0.0066774399019777775, 0.009691329672932625, 0.023722659796476364, 0.012303367257118225, 0.01938265934586525, -0.003452578093856573, -0.018498584628105164, 0.05122273042798042, -0.008854137733578682, -0.032844699919223785, 0.03171951323747635, 0.003583179786801338, -0.009865465573966503, -0.002761057810857892, -0.0330590195953846, -0.031505193561315536, 0.027567043900489807, -0.042569518089294434, -0.006848227232694626, -0.011251854710280895, 0.0017865668050944805, 0.0164625346660614, -0.024486178532242775, -0.008746977895498276, -0.005019800737500191, -0.016636671498417854, 0.008746977895498276, 0.01934247463941574, -0.021070437505841255, -0.014975682832300663, 0.012859262526035309, -0.003673596540465951, -0.012665034271776676, 0.013040095567703247, 0.02518272213637829, 0.009034971706569195, -0.0024697151966392994, -0.013408459722995758, 0.0214454997330904, 0.016850991174578667, 0.006121544633060694, 0.014747967012226582, -0.009269384667277336, -0.024794265627861023, 0.02305290661752224, 0.013147256337106228, 0.003938149195164442, 0.0003633411251939833, 0.01723944954574108, 0.0340234637260437, -0.0031947230454534292, -0.024995191022753716, -0.03528260067105293, -0.02275821566581726, -0.014989078044891357, 0.0094167310744524, 0.006352609489113092, 0.013435250148177147, 0.005193936638534069, 0.023776240646839142, 0.0002576457045506686, 0.002267114818096161, -0.008860835805535316, -0.04589149355888367, -0.027942106127738953, 0.009262687526643276, 0.0072936126962304115, 0.011988583020865917, -0.025316672399640083, 0.015511485747992992, 0.012048861011862755, 0.02199469693005085, -0.012330157682299614, -0.01963716559112072, -0.0026689667720347643, 0.0003124817449133843, 0.0036267137620598078, 0.0027761273086071014, -0.021298153325915337, 0.04578433185815811, 0.009383243508636951, 0.008284848183393478, 0.05149063095450401, -0.022423338145017624, -0.0015806176234036684, 0.006550186779350042, 0.005448442883789539, -0.014091608114540577, -0.014091608114540577, -0.029978156089782715, 0.02879939042031765, -0.0016894525615498424, 0.015404324978590012, 0.008392008021473885, -0.014185373671352863, -0.01571241207420826, -0.011559940874576569, 0.015015867538750172, -0.008592934347689152, 0.005103519652038813, 0.005431699100881815, -0.01216941699385643, -0.03790803253650665, -0.01413179375231266, -0.012162718921899796, -0.044605568051338196, 0.024821056053042412, 0.01912815310060978, 0.00967123731970787, 0.007052501663565636, -0.033675193786621094, 0.008740279823541641, 0.0094167310744524, 0.021070437505841255, -0.011600126512348652, 0.01623481884598732, 0.019436240196228027, 0.008807254955172539, -0.018672721460461617, -0.0006103126797825098, 0.0392475388944149, -0.01805654726922512, -0.00042445611325092614, 0.019811300560832024, -0.02099006623029709, 0.03648815676569939, -0.03423778712749481, -0.019061177968978882, -0.0232672281563282, -0.0006844041054137051, 0.020360499620437622, 0.001301832846365869, 0.0001964260736713186, -0.008244662545621395, -0.005579044576734304, 0.005880433600395918, 0.010059693828225136, 0.029710253700613976, 0.004443812649697065, 0.014975682832300663, -0.005937362555414438, -0.01833784393966198, -0.006731020286679268, 0.017989572137594223, 0.027567043900489807, -0.030567537993192673, 0.01322762668132782, 0.00636265566572547, 0.006697532720863819, -0.004102238453924656, -0.017105497419834137, 0.012772194109857082, -0.02253049984574318, -0.0036702477373182774, -0.09628372639417648, 0.002998820273205638, -0.03171951323747635, 0.016837596893310547, 0.017601115629076958, -0.035711243748664856, 0.028745809569954872, -0.013354879803955555, 0.003774059470742941, -0.027325931936502457, -0.000843470508698374, 0.01802975684404373, 0.02490142546594143, -0.013783521950244904, -0.035979144275188446, -0.011988583020865917, 0.03062111884355545, -0.0002833893522620201, 0.006275588180869818, 0.013287904672324657, -0.02989778481423855, 0.003566436003893614, 0.045141369104385376, 0.0005701274494640529, -0.01833784393966198, 0.02829037792980671, -0.013006608001887798, 0.016650065779685974, -0.008867532946169376, -0.02909408137202263, -0.009329662658274174, -0.006570279598236084, 0.005187239032238722, 0.02432543784379959, 0.014198768883943558, 0.0124239232391119, 0.008613026700913906, 0.005622578784823418, 0.02620074711740017, 0.015645435079932213, -0.007434261031448841, -0.0274598840624094, 0.02171340025961399, -0.007280217949301004, -0.04208729416131973, -0.0005286864470690489, -0.019007597118616104, -0.003258349606767297, 0.025008587166666985, 0.005622578784823418, 0.014560435898602009, 0.0007601699326187372, 0.00405870471149683, -0.01908796839416027, 0.013971053063869476, -0.03737223148345947, 0.02462012879550457, -0.002481435891240835, -0.031505193561315536, 0.010776329785585403, -0.0021800468675792217, -0.00018920529691968113, -0.0032918371725827456, 0.00425628200173378, 0.017172472551465034, -0.02226259745657444, -0.008351823315024376, -0.010133367031812668, 0.000402479839976877, -0.02170000597834587, -0.01296642329543829, -0.008177687413990498, -0.020065806806087494, 0.002297253580763936, -0.0060746618546545506, 0.020548028871417046, 0.012303367257118225, -0.030969390645623207, -0.043614331632852554, 0.03378235548734665, 0.01836463436484337, 0.013850497081875801, -0.027888525277376175, 0.01702512800693512, 0.030165687203407288, -0.005237470380961895, -0.026066796854138374, 0.006459770258516073, 0.006188520230352879, -0.003452578093856573, -0.035229019820690155, 0.026629390195012093, 0.02222241275012493, 0.020748956128954887, 0.015390929765999317, 0.025035375729203224, 0.015551670454442501, -0.024003956466913223, 0.007400773465633392, 0.0015488043427467346, -0.02877259999513626, 0.004035263322293758, 0.002889985218644142, -0.022664450109004974, -0.0258792657405138, -0.009724817238748074, -0.0003882476012222469, -0.04013161361217499, 0.006841529626399279, 0.012732009403407574, 0.00636265566572547, -0.013354879803955555, -0.008599631488323212, 0.019570190459489822, -0.004216096829622984, -0.0002170419174944982, 0.011566638946533203, -0.01271191705018282, -0.045436061918735504, 0.02725895680487156, 0.010173551738262177, 0.007809322793036699, 0.01648932509124279, -0.004289769567549229, 0.02620074711740017, 0.010039601475000381, 0.009189014323055744, -0.017078708857297897, -0.0071998476050794125, 0.014573831111192703, -0.013636176474392414, -0.013502225279808044, -0.01598031260073185, -0.017386794090270996, -0.003553041024133563, -0.0008108200272545218, -0.004574414808303118, 0.020079202950000763, -0.04090853035449982, 0.06595730036497116, 0.01934247463941574, 0.007728952448815107, 0.006078010890632868, 0.0012055558618158102, 0.003640108974650502, 0.028102846816182137, 0.0027878480032086372, -0.0016534533351659775, 0.0002536690444685519, 0.008813953027129173, -0.010682564228773117, -0.03289828076958656, -0.019570190459489822, -0.005431699100881815, 0.02250370942056179, -0.01908796839416027, 0.029120871797204018, -0.007916483096778393, 0.011365712620317936, 0.030835440382361412, -0.00047133886255323887, 0.018136918544769287, 0.020293522626161575, -0.006647300906479359, -0.009463613852858543, -0.011231762357056141, -0.00888762529939413, 0.010481638833880424, -0.020226547494530678, 0.0003650155267678201, -0.008311637677252293, -0.04267667606472969, -0.0074476562440395355, -0.005602485965937376, 0.017078708857297897, -0.01112460158765316, -0.005622578784823418, 0.02457994408905506, 0.01855216547846794, -0.01323432382196188, 0.013944262638688087, -0.04677556827664375, -0.037023961544036865, -0.008090618997812271, -0.013649571686983109, -0.0047652944922447205, -0.004845664836466312, -0.0269776601344347], "3454cfe3-51a9-40f2-b7d4-28efeb36b30b": [-0.03991806134581566, -0.019864115864038467, -0.020081061869859695, 0.01087441761046648, -0.0008703262428753078, 0.013830306008458138, -0.03782995417714119, -0.026114871725440025, 0.0030389386229217052, -0.0007105828262865543, 0.0015881123254075646, 0.01825058087706566, -0.010610014200210571, -0.010203240439295769, 0.0004775353881996125, -0.013226925395429134, 0.0056439852342009544, 0.010223579593002796, 0.00936935469508171, -0.0324876606464386, -0.0038202831055969, 0.005288058426231146, 0.010969331488013268, 0.0007478704210370779, -0.020704781636595726, 0.002816908061504364, 0.04165362939238548, -0.031836822628974915, -0.0028541956562548876, 0.014101488515734673, 0.022697973996400833, 0.02191154472529888, -0.006881255190819502, -0.03807402029633522, -0.00762022752314806, -0.0007571923197247088, 0.015972647815942764, -0.006437194067984819, 0.012887947261333466, -0.002230475889518857, 0.0068202391266822815, 0.007803275715559721, 0.005362633615732193, 0.016962463036179543, -0.00827784463763237, 0.0006944813649170101, 0.002859280211851001, 0.003332154592499137, 0.003928756341338158, 0.030779210850596428, -0.010454084724187851, 0.009274440817534924, -0.03631133213639259, -0.019850557669997215, 0.012338802218437195, -0.008182930760085583, 0.0030270745046436787, 0.006688037887215614, 0.005003316793590784, -0.03894180431962013, 0.01191169023513794, 0.0064032962545752525, -0.009579520672559738, -0.018155666068196297, 0.008460893295705318, -0.019592933356761932, -0.0066032931208610535, 0.004494849592447281, -0.017003141343593597, -0.0004205447039566934, 0.013762510381639004, 0.025206411257386208, -0.011721862480044365, -0.0006275331834331155, 0.018087871372699738, -0.0033999502193182707, -0.03582320362329483, 0.004538916517049074, 0.013491327874362469, 0.023619994521141052, 0.006091436371207237, -0.008603263646364212, 0.010637132450938225, 0.006938881706446409, -0.003915197215974331, -0.007389722391963005, 0.013593021780252457, 0.018901418894529343, 0.016298066824674606, -0.00819648988544941, 0.013003199361264706, 0.017423473298549652, -0.0025830131489783525, -0.003396560437977314, 0.005701611749827862, 0.01524045504629612, -0.013491327874362469, 0.004284683149307966, -0.009159187786281109, -0.024081004783511162, -0.0008639704319648445, 0.018752267584204674, -0.02523352950811386, 0.004860945977270603, -0.03189105913043022, -0.0030558875296264887, 0.023864058777689934, 0.003096564905717969, 0.0014940459514036775, -0.023891177028417587, -0.024270832538604736, 0.011674406006932259, -0.017138732597231865, -0.02492166869342327, -0.007545652333647013, 0.02592504397034645, 0.029911426827311516, -0.0013025233056396246, -0.001959293382242322, -0.012250668369233608, 0.02329457551240921, 0.026480969041585922, 0.013925219886004925, -0.001915226224809885, 0.00873885490000248, 0.0062439762987196445, -0.0068202391266822815, -0.024094562977552414, -0.007755818776786327, -0.023091187700629234, 0.05480597913265228, -0.026331817731261253, 0.013708273880183697, -0.005088061094284058, -0.0024592860136181116, 0.01381674688309431, -0.020799696445465088, 0.011342206969857216, -0.024731840938329697, -0.024718282744288445, 0.018616676330566406, 0.021613243967294693, 0.00823716726154089, -0.007911749184131622, 0.0017592962831258774, 0.028609750792384148, -0.009077833034098148, 0.019674288108944893, 0.012759135104715824, -0.0005877032526768744, 0.003745707916095853, 0.0046541690826416016, 0.013213366270065308, -0.009701552800834179, 0.002199967857450247, 0.0030847005546092987, -0.0075592114590108395, -0.007003287319093943, 0.00137879338581115, -0.004006721079349518, 0.0208946093916893, 0.01926751434803009, 0.021220028400421143, -0.0010601539397612214, 0.02452845498919487, 0.03899604082107544, 0.002894873032346368, 0.0023542027920484543, 0.008813430555164814, -0.00707786250859499, 0.0010626963339745998, 0.017843807116150856, -0.014426907524466515, 0.010182902216911316, -0.020175976678729057, 0.02196578122675419, -0.004152481444180012, 0.0024440321139991283, -0.005505004432052374, 0.020298007875680923, -0.021030200645327568, 0.01482012216001749, 0.015606551431119442, 0.011579492129385471, -0.023511521518230438, -0.03218936175107956, 0.016148917376995087, -0.005352464038878679, -0.00831852201372385, -0.024664046242833138, -0.0018982773181051016, 0.030996156856417656, 0.00543381879106164, 0.029124997556209564, -0.6104859709739685, -0.0022423400077968836, 0.020908169448375702, -0.006647360511124134, -0.005240601487457752, 0.03883333131670952, 0.0043829865753650665, 0.007498195394873619, -0.03503677621483803, 0.002608436392620206, -0.003032159060239792, -0.000989816035144031, 0.01157271210104227, -0.0027118248399347067, -0.009559182450175285, -0.020759018138051033, -0.01107102446258068, -0.0021236976608633995, -0.0023304743226617575, 0.016216712072491646, -0.019470902159810066, 0.005593138746917248, -0.018372612074017525, 0.012854048982262611, 0.029667362570762634, 0.0023982699494808912, -0.010460863821208477, 0.00046143392683006823, -0.0005232974071986973, 0.04610102251172066, -0.02700977399945259, 0.005708391312509775, -0.000270758755505085, -0.0003569863038137555, 0.04745693504810333, -0.002264373702928424, -0.009138849563896656, 0.02452845498919487, -0.015376046299934387, 0.05407378450036049, -0.022020017728209496, -0.018237020820379257, 0.026562323793768883, 0.003313510911539197, 0.005016875918954611, -0.015416723676025867, -0.0032813078723847866, -0.03305714204907417, 0.020162416622042656, -0.00599991250783205, -0.007742259651422501, -0.0065490566194057465, 0.013335398398339748, 0.016298066824674606, -0.014576057903468609, 0.0009542233310639858, 0.019904794171452522, -0.0008593094535171986, -0.006030420307070017, 0.003613506443798542, -0.028582632541656494, -0.00599991250783205, -0.011193056590855122, -0.006416855379939079, 0.003569439286366105, -0.01370149478316307, -0.022264081984758377, 0.009382913820445538, 0.0009194780723191798, -0.02607419528067112, -0.01825058087706566, 0.004762642085552216, -0.013335398398339748, -0.00920664519071579, 0.012718457728624344, 0.01726076379418373, 0.034467291086912155, -0.04387732595205307, -0.008345640264451504, 0.01571502536535263, 0.0005826185806654394, -0.017423473298549652, -0.027714848518371582, -0.008257506415247917, 0.027118247002363205, 0.013091334141790867, -0.01834549382328987, 0.004366037901490927, 0.010582895949482918, 0.017464151605963707, 0.014833681285381317, -0.003535541472956538, 0.024813195690512657, -0.03685369715094566, -0.011674406006932259, 0.0110303470864892, -0.01888785883784294, 0.02546403370797634, 0.007050744257867336, -0.001619467861019075, -0.03533507511019707, 0.01423707976937294, 0.0117964381352067, 0.01098966971039772, 0.018440408632159233, 0.010271036066114902, -0.04772811755537987, 0.025518270209431648, 0.03804690018296242, -0.007491415832191706, -0.006664309184998274, -0.024935228750109673, -0.021138673648238182, -0.0032830028794705868, 0.008508349768817425, -0.03289443254470825, 0.0018287868006154895, 0.028121622279286385, -0.0049219620414078236, 0.010501541197299957, 0.019823439419269562, -0.0034643560647964478, 0.03465712070465088, 0.02088105119764805, -0.001048289705067873, 0.02151832915842533, 0.012135416269302368, 0.020230213180184364, -0.020989524200558662, 0.005145687609910965, -0.004603322595357895, 0.021247146651148796, 0.011423561722040176, -0.009606638923287392, -0.007165996823459864, -0.005132128484547138, 0.003081310773268342, 0.02066410519182682, -0.0007775310077704489, -0.02383694052696228, -0.03118598461151123, -0.006769392639398575, -0.0042202770709991455, 0.016826871782541275, 0.003194868564605713, -0.021097997203469276, -0.0064032962545752525, -0.001619467861019075, -0.020053943619132042, 0.025287766009569168, -0.009735451079905033, -0.011511696502566338, -0.004060957580804825, 0.0035863881930708885, 0.012243889272212982, 0.016338743269443512, 0.0070914216339588165, -0.014752326533198357, 0.012006604112684727, -0.02082681469619274, 0.01632518507540226, -0.01849464513361454, -0.018928537145256996, -0.004806709475815296, -0.02191154472529888, -0.027904676273465157, -0.014806563034653664, -0.00873885490000248, 0.007349045015871525, -0.021721716970205307, -0.011748980730772018, 0.015457401052117348, -0.005050773732364178, -0.0005631273379549384, 0.0077219209633767605, 0.0013948949053883553, -0.01670484058558941, -0.011579492129385471, 0.0012389649637043476, -0.011830335482954979, 0.01726076379418373, 0.011064245365560055, -0.00831852201372385, -0.0009584605577401817, 0.01465741265565157, -0.015172659419476986, 0.036474041640758514, 0.01701669953763485, -0.016338743269443512, 0.012515070848166943, -0.029043642804026604, 0.008304962888360023, -0.0013177773216739297, 0.011010008864104748, 0.021884426474571228, 0.018833622336387634, 0.01570146530866623, 0.00045168830547481775, -0.018169226124882698, 0.03845367580652237, 0.02189798466861248, 0.019470902159810066, 0.004657559096813202, -0.019240396097302437, 0.012230330146849155, -0.02329457551240921, -0.006067708134651184, -0.01995903067290783, 0.002713519614189863, 0.009993074461817741, -0.004481290467083454, -0.03370798006653786, -0.017464151605963707, 0.0037728261668235064, 0.017138732597231865, 0.0013262517750263214, -0.009681214578449726, 0.00018061176524497569, -0.007627007085829973, -0.011647287756204605, 0.010128665715456009, -0.022779328748583794, 0.006098215933889151, -0.026643678545951843, 0.006467701867222786, -0.0036202860064804554, 0.004677897784858942, 0.003905027639120817, -0.017925161868333817, -0.011186277493834496, -0.023118305951356888, -0.01995903067290783, -0.02831145003437996, -0.00651515880599618, 0.004908402916043997, -0.015823498368263245, 0.018440408632159233, -0.006840577814728022, 0.031836822628974915, 0.012209990993142128, 0.03378933668136597, 0.015186218544840813, -0.02056919038295746, -0.006715156137943268, 0.012142195366322994, 0.015525196678936481, 0.022942038252949715, -0.0071456581354141235, -0.01207439973950386, 0.03669098764657974, -0.015267573297023773, 0.014304875396192074, -0.0305622648447752, 0.03444017469882965, -0.012962521985173225, -0.0056100874207913876, -0.006674478761851788, 0.005813474301248789, 0.0205013956874609, 0.02855551429092884, 0.02482675574719906, 0.024175917729735374, -0.009349015541374683, 0.0006016861298121512, -0.004423663951456547, -0.04233158379793167, -0.007769377902150154, -0.015498078428208828, -0.010657471604645252, -0.002130477223545313, 0.0007465992821380496, -0.005488055292516947, 0.0274707842618227, -0.00026270802482031286, 0.003023684723302722, -0.0060744876973330975, 0.024352187290787697, 0.0023270845413208008, 0.022779328748583794, 0.01021002046763897, -0.026250462979078293, -0.03620285913348198, 0.021314943209290504, 0.011145600117743015, -0.010359170846641064, -0.007830394431948662, -0.0037796057295054197, -0.029206352308392525, -0.018209902569651604, 0.009511725045740604, 0.016447216272354126, 0.03243342414498329, 0.04341631382703781, 0.005481275729835033, 0.00013283704174682498, -0.002486404264345765, 0.012128636240959167, -0.0029474145267158747, -0.02197933942079544, -0.003337239380925894, 0.02290135994553566, 0.014521821402013302, 0.0023016612976789474, -0.0239860899746418, 0.01726076379418373, 0.008711736649274826, -0.008643941022455692, -0.008698177523911, -0.008074458688497543, 0.0011194751132279634, -0.00485416641458869, -0.02885381504893303, 0.003427068470045924, -0.02460980974137783, -0.026345377787947655, -0.0068744756281375885, -0.008230388164520264, -0.01734211854636669, 0.023470843210816383, 0.0005385514232330024, -0.04067737236618996, -0.031619876623153687, -0.024664046242833138, -0.013376075774431229, -0.006227027624845505, 0.010799841955304146, -0.007498195394873619, 0.0052270423620939255, -0.045314591377973557, 0.01265744213014841, -0.012352361343801022, -0.004355868324637413, 0.023619994521141052, -0.009376133792102337, -0.009464268572628498, -0.018589558079838753, 0.031999532133340836, -0.0263046994805336, 0.009430370293557644, -0.018860740587115288, -0.011464239098131657, -0.006332110613584518, 0.02245390973985195, -0.004481290467083454, -0.0035626597236841917, 0.00217454438097775, 0.026209786534309387, 0.017979398369789124, 0.0031185983680188656, -0.0216539204120636, -0.0021372567862272263, 0.030291082337498665, 0.02004038542509079, -0.02197933942079544, -0.00924054253846407, 0.0009474437683820724, 0.0030880903359502554, 0.02212849073112011, -0.007545652333647013, 0.011165938340127468, 0.021165791898965836, 0.05214839056134224, -0.0011889656307175756, 0.00932189729064703, -0.007904969155788422, 0.02375558577477932, 0.007932087406516075, 0.013247263617813587, -0.00828462466597557, -0.006067708134651184, -0.001117780222557485, 0.012643883004784584, -0.01670484058558941, 0.0006478718714788556, 0.023267457261681557, -0.014874358661472797, -0.012311683967709541, -0.007491415832191706, -0.02204713597893715, 0.025938604027032852, -0.05114501342177391, -0.022114930674433708, 0.00928121991455555, -0.0067660026252269745, -0.0017694656271487474, -0.018670912832021713, 0.003579608630388975, -0.012108298018574715, -0.003430458251386881, -0.039646878838539124, -0.011064245365560055, -0.021152233704924583, -0.017084496095776558, 0.002122002886608243, 0.0009525284403935075, -0.008474452421069145, -0.03541643172502518, -0.018169226124882698, 0.010643912479281425, 0.007193115074187517, 0.030779210850596428, -0.020230213180184364, -0.010426966473460197, 0.027728408575057983, -0.01686755008995533, -0.018074311316013336, -0.013803187757730484, -0.016596367582678795, 0.01711161434650421, 0.0048507764004170895, 0.04837895557284355, 0.014793003909289837, 0.00011133311636513099, 0.01793872006237507, 0.019253956153988838, -0.007918528281152248, 0.02033868618309498, -0.013911660760641098, -0.01602688431739807, -0.009050714783370495, -0.021220028400421143, 0.016148917376995087, -0.00824394728988409, 0.007959205657243729, 0.011708303354680538, -0.047945063561201096, -0.008759194053709507, -0.0028880934696644545, -0.012474393472075462, -0.011274411343038082, 0.016311626881361008, 0.023728467524051666, -0.0098642623052001, 0.0035457108169794083, 0.006067708134651184, -0.019131923094391823, 0.0009635452297516167, -0.004260954447090626, -0.005827033426612616, -9.470200893701985e-05, -0.019403105601668358, -0.0024542014580219984, -0.026941979303956032, 0.01865735463798046, 0.013850645162165165, -0.014535380527377129, 0.011477798223495483, -0.012738796882331371, -0.014481144025921822, 0.01716585084795952, -0.024623367935419083, -0.05266363546252251, 0.008115136064589024, 0.018752267584204674, 0.00441010482609272, 0.0193353109061718, -0.012013384141027927, -0.03622997924685478, -0.04062313586473465, 0.014142165891826153, 0.013762510381639004, 0.014223520644009113, 0.0017694656271487474, -0.034385938197374344, -0.027064010500907898, 0.013925219886004925, 0.010182902216911316, -0.017057377845048904, 0.00272877374663949, -0.02738942950963974, -0.013511667028069496, 0.00768124358728528, -0.0036813020706176758, 0.010718487203121185, 0.0028982628136873245, 0.0026660626754164696, 0.002038953360170126, -0.006806680001318455, -0.020053943619132042, -0.03839943930506706, -0.015430282801389694, -0.01153203472495079, 0.024569131433963776, 0.021626802161335945, 0.019470902159810066, 0.034087635576725006, 0.005908388178795576, -0.020609868690371513, 0.014399789273738861, -0.0012237109476700425, -0.02151832915842533, 0.010921874083578587, -0.03435881808400154, 0.017599742859601974, 0.015972647815942764, 0.025097938254475594, 0.002499963389709592, -0.03875197470188141, 0.0098642623052001, 0.005945676006376743, -0.0017355678137391806, 0.029450416564941406, 0.019213277846574783, -0.04029771685600281, 0.01571502536535263, 0.012040502391755581, -0.006491430569440126, -0.02561318501830101, -0.017206527292728424, -0.014074370265007019, -0.009111731313169003, 0.008325302042067051, 0.017504828050732613, 0.013443871401250362, 0.011043906211853027, -0.010142224840819836, -0.006542277056723833, -0.011965926736593246, 0.009199865162372589, 0.01486079953610897, -0.020677663385868073, -0.0205013956874609, 0.00493213115260005, 0.006291433237493038, 0.009308338165283203, 0.00936257466673851, -0.0007597346557304263, 0.006949050817638636, -0.0029372451826930046, 0.011057465337216854, -0.012725237756967545, 0.008888005279004574, -0.010833740234375, -0.015308250673115253, -0.03658251464366913, -0.02219628542661667, -0.014874358661472797, -0.015389605425298214, 0.04545018449425697, 0.03359950706362724, -0.02985719032585621, 0.016772635281085968, -0.01872514933347702, -0.002793179592117667, -0.00019417089060880244, -0.01903701014816761, 0.0174099151045084, -0.011654066853225231, 0.013708273880183697, 0.041734982281923294, 0.004050788469612598, -0.01249473262578249, -0.030236845836043358, -0.006125334184616804, 0.01772177405655384, 0.02536912076175213, 0.027728408575057983, -0.016203153878450394, 1.0248791113554034e-05, 0.016189593821763992, 0.011179497465491295, -0.01037272997200489, -0.024650486186146736, 0.017301442101597786, 0.021681038662791252, -0.013226925395429134, -0.018359053879976273, 0.0036643531639128923, -0.040433306246995926, 0.009586300700902939, -0.013552344404160976, -0.019918352365493774, 0.00022351367806550115, -0.01802007481455803, -0.030589383095502853, -0.0030491079669445753, -0.023633552715182304, 0.03528083860874176, 0.006989728193730116, -0.007816835306584835, -0.008420215919613838, 0.003677912289276719, -0.039646878838539124, 0.008596484549343586, 0.024352187290787697, 0.00808801781386137, -0.003982992842793465, 0.01423707976937294, 0.03815537318587303, -0.005776186939328909, 0.014169284142553806, -0.014603176154196262, -0.021681038662791252, 0.04818912595510483, -0.009315118193626404, 0.0037931648548692465, -0.0004266886680852622, 0.010779503732919693, 0.04113838076591492, -0.0028643650002777576, -0.01435911189764738, 0.0039084176532924175, -0.010182902216911316, -0.007416840642690659, 0.02012174017727375, -0.007654125336557627, 0.011647287756204605, -0.01795228011906147, -0.013186248019337654, -0.01803363487124443, -0.02352507971227169, -0.015118422918021679, 0.010243917815387249, -0.026331817731261253, -0.016908226534724236, 0.01183711551129818, -0.02631825953722, 0.024569131433963776, 0.03186394274234772, 0.0012626934330910444, 0.020487835630774498, 0.050033167004585266, -0.028528396040201187, 0.001117780222557485, -0.018372612074017525, -0.0098710423335433, -0.005742289125919342, -0.021681038662791252, -0.03343679755926132, -0.00330842612311244, 0.02855551429092884, -0.028609750792384148, -0.005616866983473301, -0.027118247002363205, -0.0030931751243770123, 0.016962463036179543, -0.010650691576302052, 0.02097596414387226, 0.009233763441443443, 0.005247381050139666, 0.02755213901400566, -0.006684647873044014, -0.010860858485102654, -0.006227027624845505, -0.003677912289276719, -0.00553551223129034, 0.010704928077757359, -0.0305622648447752, -0.0014779445482417941, -0.02158612571656704, -0.009376133792102337, 0.005233821924775839, -0.037260472774505615, -0.019253956153988838, 0.007972764782607555, -0.01149813737720251, -0.04013500735163689, -0.009389692917466164, -0.037558771669864655, -0.006904983893036842, -0.006650750059634447, -0.002359287580475211, -0.011050686240196228, -0.011274411343038082, -0.006162621546536684, 0.024189477786421776, -0.01040662731975317, 0.025396239012479782, -0.0348198302090168, -0.016881108283996582, 0.02329457551240921, -0.03896892070770264, -0.02189798466861248, -0.03582320362329483, -0.01033205259591341, 0.02104376070201397, 0.0251521747559309, -0.006257535424083471, -0.04005365073680878, 0.00032330036628991365, -0.040351953357458115, -0.026887742802500725, 0.019457342103123665, 0.006369398441165686, 0.034846946597099304, 0.0042711240239441395, -0.00827784463763237, 0.014250638894736767, -0.009172746911644936, 0.010691368952393532, -0.039592642337083817, -0.02500302344560623, -0.033843573182821274, -0.04610102251172066, -0.008372758515179157, 0.0021592904813587666, -0.012928624637424946, -0.010359170846641064, 0.026630118489265442, 0.012040502391755581, 0.008067678660154343, 0.009389692917466164, -0.011267632246017456, 0.006742274388670921, -0.016908226534724236, 0.013382854871451855, -0.014725208282470703, 0.0018101430032402277, -0.0024508116766810417, -0.02545047551393509, -0.00983036495745182, -0.008847327902913094, 0.0070914216339588165, -0.03495541960000992, 0.026887742802500725, 0.02074545994400978, -0.02073189988732338, 0.0045999325811862946, -0.03552490472793579, -0.014955713413655758, -0.007104980759322643, 0.0015525196213275194, 0.034304581582546234, 0.003245715284720063, -0.009586300700902939, 0.01563367061316967, 0.016596367582678795, 0.017735334113240242, -0.02831145003437996, 0.016501452773809433, -0.020948845893144608, -0.03010125458240509, 0.01303709764033556, 0.00717955594882369, 0.012291345745325089, 0.027796203270554543, 0.007206674199551344, -0.03278595954179764, -0.006681258324533701, 0.018060753121972084, -0.008027001284062862, -0.04957215487957001, 0.010311713442206383, 0.024013208225369453, -0.0417621023952961, -0.008515129797160625, -0.015443841926753521, -0.021531889215111732, 0.005003316793590784, -0.0067083765752613544, -0.005271109286695719, -0.024175917729735374, 0.016881108283996582, 0.002284712390974164, -0.010426966473460197, -0.019823439419269562, -0.0059694042429327965, 0.018779385834932327, -0.010969331488013268, 0.002357592573389411, 0.25946739315986633, -0.03530795872211456, 0.0054982248693704605, 0.02538267895579338, 0.002510132733732462, 0.0440942719578743, -0.009274440817534924, -0.009979515336453915, 0.006308382377028465, 0.010264256969094276, -0.020379362627863884, -0.009518505074083805, -0.020298007875680923, 0.0005275346338748932, 0.020772578194737434, -0.003406729782000184, -0.016189593821763992, -0.0110303470864892, -0.030209727585315704, -0.015850616618990898, 0.023240339010953903, -0.005149077158421278, 0.01803363487124443, 0.0058609312400221825, 0.022616619244217873, -0.0016008240636438131, -0.03086056560277939, 0.004671118222177029, 0.017274323850870132, 0.015213336795568466, -0.021233588457107544, -0.0020321737974882126, 0.002377931261435151, 0.0020592918153852224, -0.013064215891063213, 0.00597618380561471, 0.028989406302571297, 0.019064128398895264, 0.03159276023507118, -0.003101649461314082, -0.0073422654531896114, 0.018169226124882698, 0.013965897262096405, -0.009220204316079617, -0.01764041930437088, 0.025179293006658554, 0.008677839301526546, -0.0012593036517500877, 0.006776172202080488, -0.015131982043385506, -0.03894180431962013, -0.03297578915953636, 0.036094386130571365, 0.026874182745814323, 0.006003302056342363, -0.006830408703535795, 0.012325243093073368, -0.009559182450175285, 0.02421659603714943, 0.02428439073264599, -0.01749126985669136, 0.04439257085323334, -0.03110462985932827, 0.020542072132229805, -0.015050627291202545, 0.00874563492834568, -0.008549027144908905, 0.018969213590025902, -0.018318375572562218, -0.019525138661265373, -0.01787092536687851, 0.0010618488304316998, -0.010772723704576492, -0.0052270423620939255, -0.0010957466438412666, -0.021640362218022346, 0.01879294589161873, 0.010677809827029705, 0.022942038252949715, 0.01911836490035057, 0.011769319884479046, 0.00218471372500062, -0.0023270845413208008, 0.0010406627552583814, -0.018820064142346382, -0.02793179452419281, 0.0014372671721503139, -0.0028931780252605677, 0.01757262460887432, 0.011816776357591152, -0.003160970751196146, -0.01586417481303215, 0.009132069535553455, -0.00012129059905419126, -0.0013313364470377564, 0.007064303383231163, 0.012460834346711636, 0.008562586270272732, -0.017192969098687172, 0.006071097683161497, -0.008616822771728039, -0.0023542027920484543, 0.015525196678936481, 0.0062948232516646385, -0.006216858047991991, -0.0010838824091479182, 0.007715141400694847, 0.010704928077757359, 0.014928595162928104, -0.006786341313272715, 0.012671001255512238, -0.0286368690431118, 0.0110303470864892, -0.0027355533093214035, -0.012806592509150505, 0.010833740234375, -0.02275221049785614, -0.009030376560986042, -0.013491327874362469, -0.004969418980181217, -0.003071141429245472, -0.008833768777549267, -0.004708405584096909, 0.003018599934875965, -0.001984716858714819, -0.014942154288291931, -0.00920664519071579, -0.00545754749327898, 0.01149813737720251, -0.042141757905483246, 0.01586417481303215, -0.01895565539598465, 0.0208946093916893, -0.004562645219266415, 0.006088046822696924, -0.001496588345617056, -0.009572741575539112, 0.00043728173477575183, -0.026087753474712372, -0.007837173528969288, 0.013355736620724201, 0.011484578251838684, -0.00858292542397976, -0.006227027624845505, 0.0008521061972714961, -0.011857453733682632, 0.003033854067325592, -0.0073626041412353516, 0.02622334472835064, -0.015823498368263245, -0.02909787930548191, -0.0019033619901165366, 0.004098244942724705, 0.006260925438255072, 0.030752092599868774, -0.008732075802981853, -0.01195914763957262, -0.05602629855275154, 0.007220233324915171, 0.001688958378508687, -0.020311567932367325, -0.015511637553572655, 0.002628775080665946, -0.005989742930978537, -0.011857453733682632, -0.006867696065455675, -0.1732313632965088, 0.0020847152918577194, 0.042358703911304474, -0.013477768748998642, 0.029206352308392525, -0.016515012830495834, 0.015850616618990898, 0.00812191516160965, -0.0035219823475927114, 0.002457591239362955, 0.02360643446445465, -0.002901652595028281, -0.014372671023011208, 0.005030435044318438, -0.0053897518664598465, -0.008515129797160625, -0.011098142713308334, 0.003637234913185239, 0.03465712070465088, 0.027430107817053795, 0.04927385598421097, -0.009606638923287392, 0.012277786619961262, 0.026521645486354828, -0.00017192545055877417, 0.012216771021485329, 0.0015643838560208678, 0.0028033489361405373, 0.0317554697394371, -0.013606580905616283, 0.007959205657243729, 0.007064303383231163, 0.028040267527103424, 0.00010810223466251045, -0.009843924082815647, -0.022304758429527283, -0.004830437712371349, -0.00974901020526886, -0.0011898131342604756, 0.0041626510210335255, -0.0030253794975578785, 0.01765397936105728, -0.004260954447090626, -0.012942183762788773, -0.0026355546433478594, 0.025260647758841515, 0.008182930760085583, -0.001344048185274005, -0.006650750059634447, -0.0045456960797309875, 0.007959205657243729, -0.043524786829948425, 0.028419923037290573, 0.007925308309495449, 0.05540258064866066, -0.006732104811817408, -0.0015635364688932896, -0.03243342414498329, 1.4846843896521023e-06, 0.019511578604578972, -0.012867608107626438, -0.03503677621483803, 0.005742289125919342, 0.02654876373708248, -0.00659990357235074, -0.006630411371588707, -0.017681097611784935, 0.05176873505115509, -0.024962347000837326, -0.002525386866182089, 0.006104995496571064, -0.031701233237981796, 0.01656924933195114, -0.030155491083860397, 0.016826871782541275, 0.0030796159990131855, -0.005159246735274792, -0.004206717945635319, 0.03305714204907417, -0.012325243093073368, -0.016989581286907196, 0.05277210846543312, -0.017911601811647415, -0.01747770980000496, -0.0014482839033007622, 0.001531333546154201, 0.007647345773875713, -0.009233763441443443, -0.02577589452266693, -0.008501570671796799, 0.021857308223843575, -0.032080888748168945, 0.025084378197789192, -0.02428439073264599, 0.02336237020790577, 0.010189681313931942, -0.012359141372144222, -0.006898204330354929, 0.008610043674707413, 0.004318580962717533, -0.007064303383231163, -0.0035016436595469713, -0.00497280852869153, 0.027511462569236755, -0.0019474291475489736, 0.005308397114276886, -0.00033558832365088165, 0.028582632541656494, 0.021409856155514717, 0.02909787930548191, -0.008060899563133717, 0.02105731889605522, 0.009098172187805176, 0.01415572501718998, 0.034630000591278076, 0.028501277789473534, 0.02142341621220112, -0.0036948611959815025, 0.022942038252949715, 0.014467584900557995, 0.01601332612335682, -0.02444710023701191, -0.0012287956196814775, 0.04455528035759926, -0.003525372128933668, -0.03641980513930321, -0.043063778430223465, -0.03319273516535759, 0.016447216272354126, 0.03801978379487991, 0.006321941502392292, 0.02793179452419281, -0.0018643795046955347, 0.013355736620724201, 0.0008449028828181326, 0.02136917971074581, -0.019077686592936516, -0.0096676554530859, -0.01609468087553978, 0.010738826356828213, 0.016515012830495834, 0.008528688922524452, -0.013925219886004925, 0.002423693425953388, -0.0044507822021842, 0.03294866904616356, -0.021803071722388268, -0.03528083860874176, 0.009064273908734322, -0.025545388460159302, 0.0028541956562548876, -0.008508349768817425, -0.014413348399102688, 0.04111126437783241, 0.01563367061316967, 0.029450416564941406, 0.05255516245961189, -0.007979544810950756, 0.00936257466673851, -0.010548998601734638, -0.00030783447436988354, -0.0009686299017630517, -0.00990493968129158, -0.02066410519182682, -0.001221168553456664, -0.014291316270828247, -0.0034372378140687943, -0.0034491021651774645, 0.018074311316013336, -0.012962521985173225, -0.011932029388844967, -0.015348928049206734, 0.00936935469508171, 0.03281307965517044, -0.005830423440784216, -0.025979280471801758, -0.03707064315676689, 0.003115208586677909, 0.006674478761851788, -0.024582691490650177, 0.022847123444080353, 0.01894209533929825, 0.012271006591618061, 0.0014906561700627208, -0.05673137307167053, 0.014576057903468609, -0.0108269602060318, -0.023077629506587982, -0.002260983921587467, 0.012128636240959167, -0.015430282801389694, 0.006691427435725927, -0.02073189988732338, -0.0002527505566831678, 0.0259114857763052, 0.003915197215974331, -0.01145746000111103, 0.023552197962999344, 0.003742318134754896, 0.02428439073264599, -0.02127426490187645, -0.016759077087044716, -0.014562498778104782, -0.0076676844619214535, 0.035172365605831146, -0.0024050495121628046, -0.016650604084134102, -0.025423357263207436, 0.026291141286492348, 0.008108356036245823, 0.03495541960000992, 0.006949050817638636, -0.003579608630388975, 0.005345684476196766, -0.011443900875747204, -0.007315147202461958, 0.00326944375410676, 0.03232495114207268, 0.027592817321419716, -0.021491210907697678, -0.004762642085552216, 0.007477856706827879, -0.0022220013197511435, 0.0011304919607937336, -0.0017177715199068189, 0.00447112089022994, -0.025667421519756317, -0.015023509040474892, -0.08162592351436615, 0.015077745541930199, 0.012447275221347809, 0.012887947261333466, 0.010420186445116997, 0.009226983413100243, 0.025396239012479782, 0.016501452773809433, -0.004989757668226957, -0.024745400995016098, -0.032080888748168945, 0.01632518507540226, 0.03343679755926132, -0.012087958864867687, -0.021016642451286316, -0.015525196678936481, 0.01902345009148121, 0.005467716604471207, -0.006033810321241617, 0.014793003909289837, 0.010108326561748981, 0.005681273061782122, 0.009457488544285297, -0.0022525093518197536, -0.01016934309154749, 0.005149077158421278, 0.006660919636487961, -0.014020133763551712, -0.021260706707835197, 0.001088119694031775, 0.010881196707487106, 0.0033711371943354607, 0.021233588457107544, 0.034630000591278076, 0.0013262517750263214, -0.016677722334861755, -0.015131982043385506, 0.013064215891063213, 0.007349045015871525, -0.009796466678380966, -0.0239996500313282, -0.028419923037290573, 0.001855905051343143, -0.008033781312406063, -0.017423473298549652, -0.007247351575642824, -0.02056919038295746, 0.00827784463763237, 0.016650604084134102, 0.007871071808040142, 0.018630236387252808, 0.01311167236417532, -0.004010111093521118, -0.008772753179073334, -0.021857308223843575, -0.046860333532094955, 0.016582807525992393, 0.00998629443347454, 0.024501336738467216, -0.014304875396192074, 0.017233645543456078, 0.02010818012058735, 0.01810142956674099, -0.0024948788341134787, 0.003062667092308402, -0.01252862997353077, -0.01594552956521511, 0.009308338165283203, 0.01381674688309431, -0.01257608737796545, -0.004606712143868208, 0.002525386866182089, -0.02993854507803917, 0.011287970468401909, 0.02112511545419693, 0.028989406302571297, 0.0043253605253994465, -0.0011728642275556922, -0.020623426884412766, 0.03229783475399017, 0.010318493470549583, -0.0049558598548173904, -0.042440056800842285, 0.014548939652740955, 0.032677486538887024, -0.015606551431119442, -0.0032474100589752197, 0.024311508983373642, -0.024542013183236122, 0.012264227494597435, -0.027525020763278008, 0.005705001298338175, -0.0023169151972979307, 0.020392922684550285, 0.011728642508387566, 0.03316561505198479, 0.014942154288291931, -0.005521953105926514, 0.017979398369789124, 0.016826871782541275, -0.0010347305797040462, 0.020555632188916206, -0.011199836619198322, -0.018535321578383446, 0.013226925395429134, 0.021938662976026535, -0.008447334170341492, -0.024731840938329697, 0.020162416622042656, 0.006060928571969271, -0.01207439973950386, -0.007525313645601273, -0.010996449738740921, 0.008996478281915188, -0.011782879009842873, 0.026670796796679497, -0.01469809003174305, -0.00812191516160965, -0.03677234426140785, 0.03018260933458805, 0.01040662731975317, 0.005904998630285263, 0.0073965019546449184, -0.017857365310192108, 0.03387068957090378, -0.027904676273465157, 0.007443958893418312, -0.020216653123497963, 0.023335251957178116, 0.017667537555098534, 0.0008694787975400686, 0.016759077087044716, -0.019620051607489586, -0.02058275043964386, -0.021301383152604103, 0.009552402421832085, 0.008555807173252106, 0.008637161925435066, 0.00383045244961977, 0.0688803493976593, 0.007084642071276903, 0.00593889644369483, 0.0010991364251822233, 0.007769377902150154, 0.015077745541930199, 0.03457576408982277, 0.020094621926546097, -0.019240396097302437, 0.007484636269509792, 0.014765885658562183, -0.013708273880183697, 0.005240601487457752, -0.019050568342208862, 0.0019914964213967323, -0.006321941502392292, -0.03303002566099167, 0.037721481174230576, -0.03666387125849724, -0.00379994441755116, 0.038263846188783646, -0.0017118393443524837, 0.01609468087553978, 0.007932087406516075, -0.011287970468401909, -0.024040326476097107, -0.0018423459259793162, -0.003401645226404071, -0.001860989723354578, -0.009796466678380966, -0.01377606950700283, 0.00011525255104061216, -0.021084437146782875, -0.017667537555098534, -0.0110303470864892, -0.006969389505684376, -0.0034575765021145344, 0.003796554636210203, 0.01269133947789669, 0.008169371634721756, -0.003155885962769389, 0.02885381504893303, -0.026047077029943466, -0.019403105601668358, -0.0072541311383247375, 0.003711810102686286, 0.008596484549343586, 0.0020084453281015158, -0.040270596742630005], "34002b91-014c-4697-8737-4a15527847f5": [-0.03245155140757561, 0.0005472271586768329, 0.0012346087023615837, -0.011055237613618374, -0.00884847529232502, 0.022310441359877586, -0.01909670978784561, -0.023595934733748436, 0.005316941067576408, -0.016225775703787804, -0.0006177506875246763, 0.020796416327357292, -0.025609873235225677, 0.002342453459277749, -0.0019853722769767046, -0.0313945896923542, 0.007405866868793964, 0.014354669488966465, 0.003674366744235158, -0.03519393503665924, 0.0008900252287276089, 0.010591031983494759, 0.005495481658726931, -0.023524517193436623, -0.016182925552129745, -0.015140248462557793, 0.029766298830509186, -0.024352947250008583, 0.025452757254242897, 0.0032922897953540087, 0.032137319445610046, -0.005527618806809187, -0.0010899907210841775, -0.013783339411020279, -0.011840816587209702, -0.030851826071739197, -0.0030316205229610205, -0.0027388138696551323, 0.016911370679736137, 0.003738641506060958, 0.012583545409142971, -0.01811116561293602, -0.00043876367271877825, 0.005127687938511372, -0.011040954850614071, 0.0027477408293634653, 0.004174280911684036, -0.02088211663067341, -0.022096192464232445, 0.020025121048092842, 0.0004985748091712594, 0.012854927219450474, -0.028380824252963066, -0.023295985534787178, -0.0007257678080350161, -0.00805575493723154, 0.022253308445215225, 0.015254514291882515, -0.02433866262435913, -0.003695791820064187, 0.022981753572821617, 0.002260324778035283, -0.033822741359472275, -0.00066551030613482, 0.034708306193351746, -0.009134139865636826, -0.04419238492846489, 0.023538801819086075, -0.0010766001651063561, 0.032280150800943375, -0.0023210286162793636, 0.0020282219629734755, -0.021981926634907722, 0.010055409744381905, 0.028695054352283478, -0.0013765485491603613, -0.009641195647418499, 0.010555324144661427, 0.03390844166278839, 0.0051062628626823425, 0.02238185703754425, -0.007677248679101467, 0.012462138198316097, 0.0007279995479620993, 0.009155564941465855, 0.002260324778035283, -0.00977688655257225, 0.020396485924720764, -0.02078213356435299, -0.027352429926395416, 0.01913955807685852, 0.012976335361599922, 0.01799689792096615, 0.024424362927675247, 0.010283942334353924, 0.00045974220847710967, -0.026281185448169708, 0.028466522693634033, -0.00435996288433671, -0.025538455694913864, -0.0234102513641119, -0.0027048911433666945, -0.021739110350608826, -0.011305194348096848, -0.04142143204808235, -0.0007980767404660583, 0.02089639939367771, -0.013440540991723537, -0.012083631940186024, -0.02032506838440895, -0.023367401212453842, 0.03230872005224228, 0.0010962396627292037, -0.02422439679503441, -0.038307685405015945, 0.017197037115693092, 0.031166058033704758, -0.008698500692844391, -0.02705248072743416, -0.0009293041657656431, 0.014376094564795494, -0.0059882537461817265, 0.026466866955161095, 0.02335311844944954, 0.013497673906385899, 0.007605832070112228, -0.017982615157961845, -0.003386916359886527, -0.012269314378499985, -0.012297880835831165, 0.03302288055419922, -0.001386368297971785, 0.034394074231386185, -0.0001727380877127871, -0.007184476125985384, -0.004967001266777515, -0.013162017799913883, 0.011233778670430183, -0.012712094932794571, -0.005895412527024746, 0.019353806972503662, 0.035108234733343124, 0.013026326894760132, -0.0036065212916582823, -0.03339424729347229, 0.012519271112978458, 0.014668900519609451, 0.026009803637862206, 0.005531189497560263, -0.025095675140619278, 0.004031448159366846, -0.016554290428757668, -3.953001942136325e-05, -0.015168814919888973, -0.006481025833636522, 0.005434777587652206, 0.027452412992715836, 0.014019012451171875, 0.014290394261479378, -0.00587755860760808, 0.01676853932440281, 0.021267764270305634, 0.016797104850411415, -0.009834019467234612, 0.01062673982232809, 0.031308889389038086, -0.010041126981377602, -0.008605659939348698, -0.002342453459277749, -0.010133967734873295, -0.01688280515372753, 0.030651861801743507, -0.01270495355129242, 0.007491566240787506, -0.004645627923309803, 0.028080875054001808, 0.006802399177104235, 0.005156254395842552, 0.022653238847851753, 0.0007735274266451597, -0.013447682373225689, -1.2951171811437234e-05, 0.01584012806415558, 0.009405521675944328, 0.00031668649171479046, -0.02948063425719738, 0.03913611173629761, -0.0030726848635822535, 0.007905780337750912, 0.008041471242904663, 0.02973773330450058, 0.04587780684232712, 0.02026793546974659, 0.02582412213087082, -0.5822996497154236, -0.018439680337905884, -0.014418943785130978, 0.003667225129902363, 0.006045386660844088, 0.004592065699398518, 0.0004686692263931036, 0.023895882070064545, -0.028980720788240433, 0.04824882745742798, -0.005652597174048424, 0.01157657615840435, -0.0034386932384222746, 0.008812767453491688, 0.0012765657156705856, -0.022567540407180786, -0.0018461104482412338, -0.008369985967874527, -0.02562415599822998, 0.0044528041034936905, -0.01753983460366726, 0.03350851312279701, 0.006295343860983849, 0.02788090892136097, -0.02046790160238743, 0.009319822303950787, -0.014047578908503056, -0.006281060632318258, -0.005009850952774286, 0.020096536725759506, -0.01373334787786007, 0.011490876786410809, 0.023938732221722603, -0.004956288728863001, 0.056418851017951965, -0.03796488791704178, -0.027866626158356667, -0.003917182330042124, 0.003931465558707714, 0.031880222260951996, -0.034194108098745346, -0.014397518709301949, 0.026666833087801933, -0.013083459809422493, -0.00342798070050776, 0.006402468308806419, 0.018968159332871437, -0.011669417843222618, 0.012219322845339775, -0.01805403083562851, -0.01486886665225029, -0.012740661390125751, 0.005109833553433418, -0.004467087332159281, -0.004384958650916815, 0.014404661022126675, 0.01276208646595478, -0.014333244413137436, -0.012062206864356995, -0.02216760814189911, -0.02325313538312912, 0.0036440149415284395, -0.006313197780400515, 0.011633710004389286, -0.03633659705519676, -0.007273746654391289, -0.032337285578250885, -0.006070382427424192, 0.0015309861628338695, -0.010369641706347466, -0.007123772520571947, -0.0009355530492030084, 0.01898244395852089, 0.023067453876137733, 0.03082326054573059, -0.013819047249853611, 0.03376561030745506, -0.016854237765073776, -0.012105057016015053, 0.02839510701596737, 0.02793804369866848, -0.035679567605257034, -0.010348216630518436, -0.008555668406188488, 0.022810354828834534, -0.005663309711962938, -0.002792375860735774, -0.01589726097881794, 0.010919546708464622, 0.006498880218714476, -0.0024281530641019344, 0.0030744702089577913, 0.005009850952774286, -0.0037314998917281628, 0.003044118406251073, 0.010819564573466778, -0.01360479835420847, 0.004106435459107161, 0.01056960690766573, -0.033308546990156174, -0.04224986210465431, 0.016082942485809326, 0.00792720541357994, 0.008369985967874527, 0.02679538168013096, 0.003981456626206636, -0.03225158527493477, 0.001486351015046239, 0.048020295798778534, -0.015825843438506126, -0.0020603593438863754, -0.011612284928560257, -0.018582511693239212, -0.011369469575583935, 0.002547775162383914, -0.04296402633190155, 0.029237817972898483, 0.0004539396322797984, 0.03145172446966171, 0.011997932568192482, 0.02422439679503441, -0.006059669889509678, 0.02113921381533146, 0.016639988869428635, -0.00028053202549926937, -0.004581353161484003, 0.035422466695308685, 0.030537594109773636, -0.008298570290207863, 0.001052497187629342, -0.00990543607622385, -0.03605093061923981, 0.03219445049762726, -0.013904746621847153, 0.012097915634512901, -0.014797450043261051, 0.015911543741822243, -0.0012506773928180337, 0.001869320753030479, -0.027023915201425552, -0.015411630272865295, -0.007209471892565489, 0.007484424393624067, -0.0018425396410748363, -0.009184131398797035, -0.015197381377220154, -0.0030334058683365583, -0.0019139559008181095, -0.006359618157148361, 0.01611150987446308, 0.015868693590164185, -0.007384441792964935, -0.01159800123423338, 0.03122319094836712, 0.01006255205720663, -0.00787007249891758, -0.007984338328242302, -0.005163395777344704, -0.006720270495861769, -0.005852562841027975, -0.0042706928215920925, -0.007670106831938028, 0.0037672079633921385, 0.02418154664337635, -0.008884183131158352, -0.016040092334151268, -0.02398158237338066, -0.004077868536114693, -0.025238508358597755, -0.015297363512217999, -0.011119512841105461, 0.012583545409142971, -0.010898121632635593, 0.0010551753221079707, 0.02886645495891571, -0.0042706928215920925, -0.019668038934469223, -0.007641540374606848, -0.021496295928955078, -0.005320511758327484, 0.023581650108098984, 0.008270003832876682, -0.012212181463837624, -0.02942350134253502, 0.003938606940209866, 0.01949664019048214, 0.015440196730196476, 0.019882287830114365, -0.0005485661677084863, 0.006538159213960171, -0.021167781203985214, 0.024824293330311775, -0.02566700614988804, -0.008355703204870224, 0.02803802490234375, -0.0018318272195756435, 0.01206934917718172, -0.010091118514537811, 0.0025763418525457382, 0.019939420744776726, 0.043506789952516556, 0.009134139865636826, 0.0061096614226698875, -0.0017925482243299484, 0.012340730987489223, -0.03685079142451286, 0.009848303161561489, -0.006755978800356388, 0.012469279579818249, -0.019539490342140198, -0.012876352295279503, -0.02218189276754856, -0.015597312711179256, -0.0008752956055104733, 0.031194625422358513, 0.021010665223002434, -0.007320167031139135, 0.002995912218466401, 0.003931465558707714, 0.016654273495078087, -0.004192134831100702, -0.007188047282397747, 0.019925137981772423, -0.027966609224677086, 0.0009275187621824443, 0.006659566890448332, -0.0006838107365183532, 0.05804714187979698, -0.003592238062992692, -0.02762381173670292, 0.0014256471768021584, -0.003265508683398366, -0.01842539571225643, -0.002333526499569416, 0.026095503941178322, -0.012697812169790268, 0.014333244413137436, -0.014161845669150352, 0.031166058033704758, 0.014240403659641743, -0.013311991468071938, -0.015111682005226612, 0.010391066782176495, -0.020439334213733673, 0.033937010914087296, 0.010291083715856075, 0.04342108964920044, -0.002733457600697875, -0.02825227379798889, 0.0035886673722416162, -0.04413525015115738, 0.001851466717198491, -0.031251758337020874, 0.00685596140101552, -0.01795404963195324, -0.007055927067995071, 0.02181052789092064, 0.025952670723199844, 0.011512301862239838, 0.04436378553509712, 0.02968060038983822, 0.04193563014268875, -0.006488167680799961, -0.00027361357933841646, -0.016854237765073776, -0.009691187180578709, -0.016897087916731834, -0.02968060038983822, -0.006323910318315029, -0.007270175963640213, -0.00524552445858717, -0.008727067150175571, 0.015683012083172798, -0.022310441359877586, 0.008941316045820713, -0.025838404893875122, 0.025067109614610672, -0.005584751721471548, 0.03405127674341202, -0.01146945171058178, -0.0035386758390814066, 0.005202674772590399, 0.02865220606327057, 0.011662276461720467, -0.002831654855981469, -0.01611150987446308, -0.014433227479457855, -0.014268970116972923, -0.003436907660216093, 0.01284064445644617, -0.020439334213733673, 0.004481370560824871, 0.003956460859626532, 0.010405349545180798, -0.002137131756171584, -0.00038564784335903823, 0.031051792204380035, -0.0011721194023266435, -0.03076612763106823, -0.012390721589326859, 0.003542246762663126, 0.02860935591161251, -0.01785406656563282, -0.030423328280448914, 0.03647942841053009, 0.019839437678456306, 0.011326619423925877, -0.018125448375940323, 0.012490704655647278, 0.0044706580229103565, -0.012454996816813946, -0.03796488791704178, 0.0038136285729706287, 0.00022484964574687183, 0.017939765006303787, 0.029509199783205986, 0.02093924954533577, -0.014911715872585773, 0.035736698657274246, 0.020910682156682014, -0.00876991730183363, -0.008862758055329323, -0.021596278995275497, 0.004431379027664661, -0.01386189740151167, -0.0010337504791095853, -0.0013006686931475997, -0.016182925552129745, -0.01856822893023491, 0.008120029233396053, -0.030337629839777946, -0.013954738155007362, -0.004763464909046888, -0.011647992767393589, 0.0017729087267071009, -0.004809885285794735, 0.007798656355589628, -0.008741350844502449, -0.004513507708907127, 0.011069521307945251, -0.004402812570333481, -0.03333711251616478, 0.009305539540946484, 0.001371192280203104, 0.01464033406227827, 0.006873815320432186, 0.016497157514095306, 0.015225947834551334, -0.004324255045503378, -0.011590859852731228, 0.010612457059323788, 0.002669182838872075, -0.0002588839561212808, -0.006977369077503681, -0.01789691671729088, 0.02999483048915863, 0.0011078447569161654, 0.030223364010453224, -0.015625879168510437, 0.04924865812063217, 0.008855616673827171, 0.03142315521836281, 0.009041299112141132, 0.010119684971868992, -0.00792006403207779, 0.013319133780896664, 0.001738093327730894, 0.013054893352091312, 0.007334450259804726, 0.0022067625541239977, 0.017111336812376976, 0.022496122866868973, -0.01186224166303873, -0.036250896751880646, 0.0127335200086236, -0.02279607206583023, -0.04613490775227547, 0.01172655075788498, 0.006027532741427422, 0.02680966630578041, -0.015240230597555637, -0.014854582957923412, 0.006084665656089783, -0.007227325811982155, -0.03205161914229393, -0.016954220831394196, 0.029909132048487663, -0.013026326894760132, -0.022867487743496895, -0.025424189865589142, -0.020353635773062706, -0.014940282329916954, -0.02026793546974659, 0.01355480682104826, 0.01821114681661129, -0.03545103222131729, -0.022267591208219528, 0.00799862202256918, 0.012804936617612839, 0.028423672541975975, 0.030166231095790863, -0.006402468308806419, -0.013904746621847153, 0.01765410043299198, -0.019353806972503662, -0.017939765006303787, -0.016011526808142662, -0.02526707388460636, 0.028480807319283485, -0.018839610740542412, 0.015411630272865295, 0.009126998484134674, -0.02139631286263466, 0.013540524058043957, -0.004327825736254454, 0.01381190586835146, 0.006948802620172501, 0.017154186964035034, 0.0014559990959241986, -0.01986800506711006, -0.0019603765103965998, 0.009484079666435719, -0.014054721221327782, 0.013311991468071938, 0.025809837505221367, -0.008684217929840088, -0.038621917366981506, 0.001933595398440957, -0.0045527867041528225, 0.004459945950657129, 0.02325313538312912, 0.01662570610642433, 0.00042090960778295994, 0.010790997184813023, 0.015725862234830856, 0.005159825086593628, 0.010748147964477539, -0.011226637288928032, 0.029194969683885574, 0.0024424362927675247, 0.005449060816317797, 0.01062673982232809, -0.003467259695753455, -0.0013604798587039113, 0.0008186089107766747, -0.030223364010453224, 0.026738248765468597, 0.01069815643131733, -0.023495951667428017, -0.015225947834551334, -0.014390377327799797, -0.023953014984726906, -0.0025424191262573004, 0.0019532348960638046, -0.011533726938068867, -0.0007195188663899899, -0.007134485058486462, -0.042992591857910156, -0.04276406019926071, 0.003599379677325487, -0.010091118514537811, 0.030223364010453224, -0.018139731138944626, -0.023581650108098984, -0.008512819185853004, -0.00787007249891758, 0.0031798090785741806, -0.0017479130765423179, 0.033622778952121735, -0.024195831269025803, 0.0010998104698956013, -0.019568055868148804, 0.01965375617146492, 0.014047578908503056, 0.03170882165431976, -0.008120029233396053, -0.010369641706347466, -0.01971088908612728, 0.001933595398440957, -0.0200679711997509, -0.008998448960483074, -0.02123919688165188, 0.029337801039218903, 0.02222474105656147, 0.02999483048915863, -0.017097054049372673, -0.015068831853568554, -0.024838576093316078, 0.014126136898994446, 0.002595981117337942, -0.008648510091006756, 0.0039207530207931995, -0.011098087765276432, -2.5525734599796124e-05, 0.0033744184765964746, 0.03162312135100365, 0.00794863048940897, -0.040107373148202896, -0.011876524426043034, 0.028823604807257652, 0.007470141164958477, 0.016025809571146965, -0.018339697271585464, -0.040878668427467346, -0.004024306312203407, 0.008441402576863766, -0.01625434122979641, 0.0022174750920385122, -0.021110648289322853, -0.012240747921168804, -0.0012194326845929027, -0.007941489107906818, -0.005738297011703253, 0.02181052789092064, -0.0033529936335980892, -0.008891324512660503, 0.008491394110023975, -0.0023799471091479063, 0.024967126548290253, 0.0025763418525457382, 0.0046384865418076515, -0.03347994387149811, 0.03816485032439232, 0.023795899003744125, -0.011176645755767822, 0.012012215331196785, -0.02073928341269493, -0.0014426085399463773, -0.005199104081839323, -0.0035208219196647406, 0.0016291835345327854, -0.03070899471640587, -0.006980939768254757, -0.022624673321843147, -0.017625534906983376, -0.017682667821645737, 0.0023942303378134966, -0.024195831269025803, 0.02212475799024105, 0.026352601125836372, 0.0013506601098924875, 0.010076834820210934, 0.0008346776012331247, -0.017097054049372673, 0.007720098365098238, -0.024410080164670944, 0.012126482091844082, 0.013447682373225689, 0.036965057253837585, 0.048848725855350494, 0.009512646123766899, -0.0012105057248845696, -0.04773463308811188, -0.0005601713201031089, 0.022053342312574387, 0.04047873988747597, 0.03967887535691261, 0.005302657838910818, -0.0024513632524758577, 0.03005196340382099, 0.026309752836823463, -0.009534071199595928, -0.03159455582499504, 0.016168642789125443, 0.02999483048915863, 0.008198587223887444, -0.024395795539021492, 0.014326103031635284, -0.05650454759597778, -0.009598346427083015, -0.018253996968269348, -0.014883149415254593, 0.002735242946073413, 0.010940971784293652, -0.008655651472508907, 0.04090723767876625, -0.002383517799898982, 0.020667867735028267, 0.018296847119927406, -0.011040954850614071, -0.007812939584255219, -0.015197381377220154, -0.015325930900871754, 0.007555841002613306, -0.004981284495443106, 0.023167436942458153, -0.001795226358808577, -0.017811216413974762, 0.002488856902346015, -0.011298052966594696, 0.01173369213938713, -0.01733986847102642, -0.02202477678656578, 0.043906718492507935, -0.045049380511045456, -0.013247717171907425, -0.01599724404513836, 0.003142315661534667, 0.010233950801193714, 0.016368607059121132, -0.016425741836428642, 0.006113232113420963, -0.02953776717185974, 0.006141798570752144, 0.00020297840819694102, -0.008777058683335781, -0.0007177334628067911, -0.007198759354650974, -0.0020514321513473988, -0.016525723040103912, -0.020767848938703537, -0.013190584257245064, 0.03525106981396675, -0.035622432827949524, -0.024552911520004272, -0.015925826504826546, -0.018025465309619904, 0.012562121264636517, 0.010155392810702324, 0.0010382139589637518, 0.021996209397912025, 0.021853376179933548, -0.04176423326134682, 0.010890980251133442, -0.030223364010453224, 0.009755461476743221, -0.005263378843665123, -0.021367747336626053, -0.03476543724536896, -0.01866821199655533, 0.022053342312574387, -0.020182237029075623, -0.009184131398797035, -0.00990543607622385, -0.012569262646138668, 0.024352947250008583, -0.0071737635880708694, 0.01842539571225643, 1.4136793652141932e-05, -0.004763464909046888, 0.007405866868793964, -0.03456547111272812, -0.01641145721077919, 0.014511785469949245, 0.012804936617612839, -0.0023692345712333918, 0.03005196340382099, -0.00787007249891758, 0.04193563014268875, -0.0032512254547327757, -0.0075629823841154575, 3.788409594562836e-05, -0.07353018969297409, -0.013576231896877289, -0.0058418503031134605, 0.004074297845363617, -0.024681461974978447, 0.012155048549175262, -0.04367818683385849, -0.016968505457043648, 0.005034846719354391, 0.0016872092382982373, -0.010969538241624832, 0.01165513414889574, -0.0032030194997787476, 0.03145172446966171, -0.00774152297526598, 0.018282564356923103, -0.015768710523843765, -0.013326275162398815, -0.005181250162422657, -0.013254858553409576, -0.040307339280843735, -0.023938732221722603, -0.00448851240798831, 0.018296847119927406, 0.028366539627313614, -0.023338835686445236, -0.02490999363362789, 0.016068659722805023, -0.025695571675896645, 0.004917009733617306, 0.004620632156729698, 0.03313714638352394, 0.04176423326134682, 0.006259635556489229, -0.0018014753004536033, 0.017454134300351143, -0.015583029016852379, -0.0014390377327799797, -0.026995347812771797, 0.014340385794639587, -0.035479601472616196, -0.004442091565579176, -0.005895412527024746, 0.010741006582975388, 0.0036779376678168774, 0.00895559974014759, 0.0010337504791095853, 0.007784372661262751, 0.01589726097881794, 0.007520132698118687, 0.005081267096102238, -0.01939665712416172, -0.0020460758823901415, -0.007427291478961706, -0.00025866078794933856, -0.0006521197501569986, -0.039107546210289, -0.016797104850411415, -0.008862758055329323, 0.022081909701228142, 0.010162534192204475, -0.022153325378894806, 0.030166231095790863, 0.019125275313854218, -0.027595244348049164, 0.0006561369518749416, 0.001445286674425006, -0.010576749220490456, -0.030366195365786552, -0.00685596140101552, 0.018382547423243523, -4.491413710638881e-05, -0.008012904785573483, 0.01374048925936222, 0.012712094932794571, -0.010048268362879753, -0.019382374361157417, 0.02582412213087082, -0.034794002771377563, -0.012847785837948322, 0.004395671188831329, 0.004156426526606083, -0.0062560648657381535, 0.010398208163678646, 0.017782649025321007, -0.004427808336913586, 0.003013766370713711, 0.018911026418209076, -0.031965918838977814, -0.0535050667822361, 0.012540696188807487, 0.019368091598153114, -0.01868249475955963, -0.024010147899389267, 0.0033422810956835747, 0.0043492503464221954, 0.01355480682104826, -0.02398158237338066, -0.0060096788220107555, -0.039021845906972885, 0.02973773330450058, -0.013669072650372982, 0.02443864569067955, -0.012183615006506443, 0.019425224512815475, 0.01789691671729088, -0.02556702308356762, 0.010191100649535656, 0.24727167189121246, -0.027380995452404022, -0.015254514291882515, 0.013547665439546108, 0.004317113198339939, 0.02129632979631424, -0.007138055749237537, -0.013040609657764435, -0.013212009333074093, -0.0043885293416678905, 0.005159825086593628, -0.0051705376245081425, -0.012383580207824707, -0.004499224480241537, -0.005316941067576408, 0.006238210946321487, -0.019325241446495056, -0.011983648873865604, -0.01064816489815712, -0.018768195062875748, 0.031965918838977814, -0.010155392810702324, -0.02331026829779148, 0.005731155164539814, 0.019696606323122978, -0.003101251320913434, -0.0006949695525690913, 0.018811043351888657, 0.027380995452404022, 0.011262345127761364, -0.026509717106819153, -0.010326791554689407, -1.5287543646991253e-05, 0.005591893568634987, -0.021482013165950775, -0.003151242621243, 0.03487970307469368, 0.025238508358597755, 0.022253308445215225, 0.0010462482459843159, 0.005502623040229082, 0.016739971935749054, -0.027695227414369583, -0.009898294694721699, -0.020910682156682014, 0.03399414196610451, -0.0043706754222512245, -0.0015443767188116908, -0.0064310347661376, 0.003820770187303424, -0.026738248765468597, -0.0172256026417017, 0.055390454828739166, -0.00602039135992527, -0.011319478042423725, 0.0034636887721717358, 0.012183615006506443, 0.0011971151689067483, -0.0023799471091479063, 0.0066452836617827415, -0.03256581723690033, 0.025438472628593445, -0.00802718847990036, 0.007877213880419731, -0.04193563014268875, -0.014118995517492294, 0.0005985575844533741, 0.019425224512815475, -6.020168075338006e-05, 0.007934346795082092, -0.005506194196641445, -0.008384269662201405, -0.010426774621009827, -0.012847785837948322, -0.022396139800548553, -0.0213534627109766, 0.01702563837170601, 0.029137836769223213, 0.020039403811097145, 0.018611079081892967, -0.024152981117367744, -0.023124586790800095, -0.0016122221713885665, -0.021067798137664795, -0.014011871069669724, -0.035679567605257034, 0.015625879168510437, -0.027695227414369583, -0.002790590515360236, 0.012319305911660194, -0.007134485058486462, 0.0013345914194360375, -0.00034748477628454566, -0.011590859852731228, -0.007591548841446638, -0.01193365827202797, 0.016582855954766273, 0.010762430727481842, 0.005552614573389292, -0.0055597564205527306, -0.01651144027709961, 0.004142143297940493, 0.009241264313459396, 0.01635432429611683, -0.013854755088686943, -0.014019012451171875, -0.032337285578250885, 0.003306573024019599, -0.007734381593763828, -0.01799689792096615, -0.002171054482460022, -0.03839338570833206, 0.008577093482017517, -0.009205556474626064, -0.0019121704390272498, 0.019410939887166023, -0.012790652923285961, -0.01464033406227827, 0.0019157413626089692, -0.0034476201981306076, 0.03142315521836281, -0.011062378995120525, -0.004227842669934034, -0.0012024713214486837, -0.0009525144123472273, -0.038821879774332047, -0.012462138198316097, -0.035736698657274246, -0.016997070983052254, -0.023224569857120514, 0.013104884885251522, -0.043763887137174606, 0.02232472412288189, -0.03842195123434067, -0.0015479475259780884, 0.00794863048940897, -0.008341419510543346, -0.003927894402295351, 0.00221926043741405, -0.007070210296660662, -0.003756495425477624, 0.01995370350778103, 0.008441402576863766, 0.011926515959203243, 0.003144101006910205, -0.0192966740578413, 0.014311819337308407, 0.02669540047645569, -0.006770262029021978, 0.012904918752610683, -0.034908268600702286, -0.03102322481572628, 0.029394933953881264, -0.004688477609306574, 0.014811733737587929, -0.0007846861844882369, -0.01841111294925213, -0.01836826279759407, 0.009548354893922806, -0.002660255879163742, -0.02428152970969677, 0.008398552425205708, 0.019225258380174637, -0.01651144027709961, -0.007634398527443409, -0.0051241167820990086, -0.18396830558776855, 0.02669540047645569, 0.022867487743496895, -0.026224052533507347, 0.03827911615371704, -0.013940454460680485, -0.0013479819754138589, 0.03308001533150673, -0.022881770506501198, 0.00586327537894249, -0.013133451342582703, 0.015882978215813637, -0.019253825768828392, -0.005916837602853775, -0.018496813252568245, 0.009819736704230309, 0.002392444759607315, -0.006834536325186491, 0.036765094846487045, 0.016225775703787804, 0.03322284668684006, -0.025295641273260117, 0.001272994908504188, 0.030109098181128502, -0.019668038934469223, 0.010669589973986149, 0.012440713122487068, 0.013690497726202011, 0.01186224166303873, -0.042364127933979034, -0.036707960069179535, -0.008777058683335781, -0.012869210913777351, 0.015668729320168495, -0.0172256026417017, -0.008005763404071331, -0.0013024541549384594, -0.010155392810702324, -0.007166622206568718, 0.01255497895181179, -0.021439163014292717, 0.03219445049762726, -0.006323910318315029, 0.0065595838241279125, 0.005991824436932802, 0.007691531907767057, 0.0257241390645504, -0.00799862202256918, 0.015925826504826546, -0.010091118514537811, 0.017925482243299484, -0.03056616149842739, 0.005998966284096241, -0.027281012386083603, 0.035422466695308685, 0.008427118882536888, -0.018496813252568245, -0.01615436002612114, 0.01852537877857685, 0.017368435859680176, -0.014568918384611607, -0.0013247716706246138, -0.00018378529057372361, 0.03210875391960144, 0.0034654743503779173, -0.003585096448659897, -0.02119634672999382, 0.042735494673252106, -0.002617406193166971, 3.0491397410514764e-05, 0.01289063598960638, -0.014797450043261051, -0.0018961018649861217, -0.005002709571272135, 0.023267420008778572, 0.008584234863519669, -0.0018639644840732217, 0.009326964616775513, 0.01846824586391449, -0.001372084952890873, -0.03519393503665924, 0.05053414776921272, -0.03462260589003563, -0.011669417843222618, 0.008377128280699253, 0.03216588497161865, 0.04450661689043045, 0.016525723040103912, -0.016854237765073776, -0.0270096305757761, 0.032794348895549774, -0.02201049216091633, 0.003133388701826334, -0.011669417843222618, 0.016639988869428635, 0.014418943785130978, -0.02068215049803257, -0.0016952436417341232, -0.008527101948857307, -0.00782008096575737, -0.017939765006303787, 0.002169269137084484, -0.015397346578538418, 0.001967518124729395, 0.012205040082335472, -0.02026793546974659, -0.020339353010058403, 0.006338193546980619, 0.039536044001579285, -0.008120029233396053, -0.02418154664337635, 0.005691876169294119, -0.006409609690308571, 0.015625879168510437, -0.0021121359895914793, -0.0006543515482917428, 0.005116975400596857, 0.0032119464594870806, 0.0029102128464728594, 0.0022817496210336685, 0.01995370350778103, -0.04284976050257683, -0.002513852436095476, 0.04564927518367767, -0.002735242946073413, -0.02762381173670292, -0.05187677592039108, -0.029709165915846825, -0.001052497187629342, 0.03865048289299011, 0.023367401212453842, 0.027652377262711525, -0.01909670978784561, 0.00728088803589344, -0.011797967366874218, 0.015825843438506126, -0.026681115850806236, -0.034651171416044235, -0.017211319878697395, 0.0016211492475122213, 0.025995520874857903, -0.004481370560824871, -0.012433571740984917, 0.006448888685554266, 0.014783167280256748, 0.03967887535691261, -0.008855616673827171, -0.04470658302307129, 0.011612284928560257, -0.005602606106549501, -0.007791514508426189, 0.0019407370127737522, -0.02176767773926258, 0.02345310151576996, 0.02665255032479763, 0.028223708271980286, 0.043706752359867096, -0.014726033434271812, 0.01339769084006548, 0.002146058715879917, -0.021053515374660492, -0.009391238912940025, -0.023081736639142036, -0.030994659289717674, 0.01949664019048214, -0.03539390116930008, 0.029851999133825302, 0.007712956517934799, 0.01291206106543541, 0.010155392810702324, 0.005524048116058111, -0.021224914118647575, 0.01186224166303873, 0.037479255348443985, -0.015683012083172798, -0.027152463793754578, -0.047363266348838806, -0.005034846719354391, -0.0032601524144411087, -0.02680966630578041, 0.017554117366671562, 0.017039921134710312, -0.003756495425477624, -0.008070037700235844, -0.056818779557943344, 0.02201049216091633, 0.012340730987489223, -1.4464583728113212e-05, -0.03890758007764816, -0.0004892013967037201, 0.00477060629054904, 0.0177540834993124, -0.02228187397122383, 0.004945576190948486, 0.03205161914229393, 0.026981065049767494, -0.031880222260951996, 0.030994659289717674, -0.006409609690308571, 0.02191051095724106, -0.024467213079333305, -0.00040127013926394284, -0.01661142334342003, -0.012612112797796726, 0.013483391143381596, -0.003140530316159129, -0.0010542826494202018, 0.002710247179493308, -0.01686852239072323, 0.008969882503151894, 0.016540007665753365, 0.0012435356620699167, -0.015811560675501823, 0.0025424191262573004, 0.0036350879818201065, -0.0038100576493889093, -0.008712784387171268, 0.021210631355643272, 0.016782822087407112, -0.024267246946692467, -0.018925311043858528, 0.003583311103284359, 0.0075629823841154575, 0.010226809419691563, -0.013704781420528889, 0.0032065901905298233, -0.01789691671729088, -0.015968676656484604, -0.07484424859285355, 0.016897087916731834, 0.023281702771782875, 0.01278351154178381, 0.011569434776902199, 0.000575347279664129, 0.00595611659809947, 0.008034329861402512, 0.0043742461130023, -0.02598123624920845, -0.012176473625004292, 0.018553946167230606, 0.0018318272195756435, -0.03759352117776871, -0.033051446080207825, 0.003094109706580639, 0.020096536725759506, 0.00777008943259716, 0.008727067150175571, 0.01738271862268448, -0.01167655922472477, 0.0015300934901461005, 0.017068486660718918, 0.0067059872671961784, 0.019982270896434784, -0.00889846682548523, -0.0041671390645205975, 0.015583029016852379, -0.0023620929569005966, -0.02258182317018509, 0.013083459809422493, -0.009576921351253986, 0.0032190880738198757, 0.016525723040103912, -0.0008123600273393095, -0.002579912543296814, -0.004163568373769522, 0.029366368427872658, 0.02119634672999382, 0.0020746425725519657, -0.018553946167230606, -0.019110992550849915, 0.010233950801193714, -0.024010147899389267, -0.013690497726202011, 0.023224569857120514, -0.015054549090564251, -0.011276627890765667, -0.004567069932818413, 0.008305711671710014, 0.021681977435946465, 0.004695619456470013, 0.002212118823081255, -0.03045189566910267, 0.003272650297731161, -0.05993252992630005, 0.006045386660844088, 0.010412491858005524, -0.02736671268939972, 0.003695791820064187, 0.017468418926000595, 0.021539146080613136, 0.010191100649535656, 0.008991307578980923, 0.014626051299273968, -0.00028834317345172167, -0.010505332611501217, 0.00725232157856226, 0.022781789302825928, -0.0009266260312870145, 0.009148423559963703, -0.00802718847990036, -0.00582756707444787, 0.013283425010740757, 0.003099465975537896, 0.01564016193151474, 8.335617167176679e-05, 0.00897702481597662, -0.014004729688167572, 0.028152290731668472, 0.01943950727581978, 0.010026843287050724, -0.02011081948876381, 0.03553673252463341, 0.04007880762219429, -5.495704954228131e-06, 0.01609722524881363, 0.015782995149493217, -0.016497157514095306, 0.007020218763500452, -0.04090723767876625, -0.006070382427424192, 0.0005847206921316683, 0.020853549242019653, 0.028409389778971672, 0.023167436942458153, 0.008505676873028278, -0.020182237029075623, 0.005820425692945719, 0.015383063815534115, 0.0020621446892619133, -0.005316941067576408, -0.0012301451060920954, -0.021367747336626053, 0.009655479341745377, 0.025652721524238586, -0.010526757687330246, -0.050391316413879395, 0.03350851312279701, 0.005898983683437109, 0.0058061424642801285, 0.018639644607901573, -0.003960032016038895, 0.02115349844098091, -0.001972874393686652, 0.004220701288431883, -0.011340903118252754, -0.010798139497637749, -0.029052136465907097, 0.01167655922472477, 0.021410595625638962, -0.005031276028603315, 0.024310097098350525, -0.014161845669150352, 0.023681633174419403, -0.013361983001232147, 0.014654617756605148, -0.03316571190953255, 0.008312853053212166, 0.009369813837110996, -0.01763981766998768, -0.00486344750970602, -0.0026906076818704605, -0.03193735331296921, 0.0025174233596771955, -0.0065417299047112465, -0.008627085015177727, -0.003535105148330331, -0.0231531523168087, 0.07912921905517578, 0.014140420593321323, 0.006066811736673117, 0.006977369077503681, 0.004092151764780283, -0.0055204774253070354, 0.005831138230860233, -0.0007070210413075984, -0.008127170614898205, -0.016297191381454468, -0.008198587223887444, -0.004824168514460325, -0.03422267362475395, -0.01682567223906517, 0.013940454460680485, -0.008205728605389595, -0.013333416543900967, 0.04436378553509712, -0.026309752836823463, 0.008541385643184185, 0.05099121481180191, -0.0011078447569161654, 0.02849509008228779, 0.011747975833714008, -0.006088236812502146, -0.01262639556080103, 0.03839338570833206, 0.011069521307945251, -0.007734381593763828, -0.009512646123766899, 0.012076490558683872, 0.010219667106866837, -0.013511957600712776, -0.03350851312279701, -0.017525551840662956, 0.0106767313554883, -0.013461966067552567, 0.018796760588884354, 0.012483563274145126, 0.022053342312574387, -0.0022388999350368977, -0.008270003832876682, -0.03819341957569122, -0.009755461476743221, -0.004856306128203869, -0.004642057232558727, -0.0234102513641119, 0.0018336125649511814, -0.01882532797753811], "3b6bef66-ce49-4c09-8fc7-14270f1a72db": [-0.007632012479007244, -0.02439027652144432, 0.006211480125784874, -0.013749683275818825, -0.007786126807332039, 0.008838125504553318, -0.013622371479868889, -0.03492366150021553, 0.006901644170284271, -0.01053338311612606, 0.020423507317900658, 0.005729035008698702, -0.0006554049323312938, -0.012690984643995762, -0.017890669405460358, -0.019780246540904045, -0.005591671913862228, 0.005950155667960644, 0.024859320372343063, -0.015036203898489475, -0.014526956714689732, 0.020798740908503532, -0.002703702310100198, -0.028303442522883415, -0.007196472026407719, -0.00233349297195673, 3.3424603316234425e-05, -0.023814022541046143, 0.010640593245625496, 0.006724077742546797, 0.012443061918020248, -9.416211469215341e-06, -0.006432600785046816, -0.020115278661251068, -0.00854329764842987, 0.019619431346654892, -0.004063929431140423, -0.0031258417293429375, -0.014205326326191425, -0.01403111033141613, 0.02993839420378208, -0.004623431712388992, 0.007149567361921072, 0.005025469232350588, -0.014218727126717567, 0.004258247558027506, 0.0015411438653245568, 0.007283580023795366, -0.004757444374263287, 0.012597176246345043, -0.0021676523610949516, -0.008456189185380936, -0.015022802166640759, -0.013689378276467323, -0.02311715856194496, 0.007745923008769751, -0.020088475197553635, 0.01762264594435692, -0.02784780040383339, -0.019163789227604866, -0.022192472591996193, 0.015947489067912102, -0.028705479577183723, 0.004730641841888428, 0.008824723772704601, 0.008704112842679024, -0.011873508803546429, 0.00968240387737751, -0.029402345418930054, 0.010365867987275124, 0.006596765946596861, -0.0013066219398751855, 0.021401798352599144, -0.0016424908535555005, 0.029268331825733185, 0.016979385167360306, -0.04529622942209244, 0.007116064429283142, 0.022527502849698067, 0.0016148507129400969, 0.01600109413266182, -0.00940097775310278, -0.0183597132563591, -0.0014640867011621594, 0.016724761575460434, -0.016671156510710716, -0.021656421944499016, 0.029777580872178078, -0.02116057649254799, -0.014245529659092426, 0.0011491572950035334, 0.0007739222492091358, -0.0024323270190507174, 0.03712146729230881, 0.01241625938564539, 0.016470137983560562, 0.028383849188685417, 0.013689378276467323, -0.006107620429247618, -0.05044230818748474, -0.015853680670261383, 0.012161635793745518, -0.012121431529521942, -0.0027355304919183254, -0.03985532000660896, -0.010526683181524277, 0.04092742130160332, -0.006821237038820982, -0.0030688864644616842, -0.020142080262303352, -0.024497486650943756, 0.015612457878887653, 0.0023485692217946053, -0.040150146931409836, -0.0242160614579916, -0.010721000842750072, 0.0200214684009552, -0.055105943232774734, -0.02041010558605194, 0.018600936979055405, 0.014513554982841015, 0.0050489213317632675, 0.04266958311200142, 0.0014850260922685266, 0.013414652086794376, 0.02294294163584709, -0.001929780119098723, -0.015934087336063385, -0.013126525096595287, -0.008174763061106205, 0.06325390189886093, 0.010191651061177254, 0.03213620185852051, 0.02181723713874817, -0.00775932427495718, 0.009628798812627792, -0.0030722368974238634, 0.013568766415119171, -0.010580288246273994, -0.004385559353977442, 0.026038631796836853, 0.030662063509225845, 0.0016182010294869542, -0.017381422221660614, -0.007665515877306461, 0.04055218771100044, 0.005102526396512985, -0.01880195550620556, 0.02050391398370266, 0.01132405735552311, 0.008074253797531128, -0.01862773858010769, -0.010915319435298443, -0.01727421209216118, -0.004991965834051371, -0.009340671822428703, 0.016496939584612846, 0.010158148594200611, -0.0009699155343696475, -0.013950702734291553, -0.00607746746391058, 0.022835731506347656, 0.026025230064988136, -0.0033653893042355776, 0.004291750490665436, 0.0365586131811142, 0.015880482271313667, -0.0052331886254251, 0.004811048973351717, 0.0041811903938651085, 0.017957676202058792, -0.0104663772508502, -0.012268844991922379, 0.026078835129737854, -0.011136439628899097, 0.033208299428224564, -0.012583774514496326, 0.014513554982841015, 0.005440908018499613, -0.008147960528731346, -0.019203992560505867, -0.010788007639348507, -0.019338006153702736, 0.045001402497291565, 0.0019113534362986684, -0.03511127829551697, -0.005055622197687626, 0.000494171108584851, 0.014473351649940014, -0.029134320095181465, 0.009213360026478767, 0.023666609078645706, 0.01748863235116005, 0.01274458970874548, -0.5926569104194641, -0.035432908684015274, -0.027258144691586494, -0.003233051858842373, 0.003960069734603167, 0.02133479155600071, -0.01416512206196785, 0.02958996221423149, -0.020222488790750504, 0.03444121405482292, -0.0008304587681777775, 0.02137499488890171, -0.008737615309655666, -0.006469454150646925, -0.008134559728205204, -0.013106423430144787, -0.015317630022764206, -0.011545177549123764, -0.01818549819290638, 0.012731188908219337, -0.036344192922115326, 0.013608970679342747, -0.02154921181499958, 0.002501008566468954, 0.023572800680994987, -0.002928173402324319, 0.005481111817061901, -0.013555365614593029, 0.007933540269732475, 0.0468507744371891, -0.03824717178940773, -0.006556562148034573, 0.012000820599496365, -0.011665789410471916, 0.049504220485687256, 0.006703976076096296, -0.02688290923833847, 0.020008068531751633, -0.00909274909645319, 0.06588055193424225, -0.02229968272149563, -0.01844012178480625, 0.016322724521160126, -0.011444668285548687, 0.00016228077583946288, -0.00885152630507946, 0.02264811471104622, -0.02527475915849209, 0.014567160047590733, 0.020450308918952942, -0.0013476633466780186, -0.003201223909854889, 0.014111517928540707, 0.004218043759465218, 0.01016484946012497, 0.004787596873939037, 0.026789100840687752, -0.039801716804504395, 0.0292415302246809, 0.0028042118065059185, -0.013300742022693157, 0.027472564950585365, 0.001108953496441245, 0.0026517724618315697, -0.00072827422991395, 0.015947489067912102, -0.003011931199580431, 0.002291613956913352, 0.007209873292595148, -0.025998426601290703, 0.003665242111310363, -0.004921609535813332, 0.012275545857846737, 0.008382482454180717, 0.00946798361837864, 0.034253597259521484, 0.01722060702741146, -0.03572773560881615, -0.011665789410471916, 0.01708659529685974, -0.003358688671141863, -0.02158941514790058, -0.006288537289947271, -0.009997333399951458, 0.011464769951999187, -0.0071294656954705715, -0.02116057649254799, -0.024202659726142883, 0.015317630022764206, 0.02483251877129078, 0.009836518205702305, 0.00913295242935419, 0.014446549117565155, -0.019740043208003044, -0.015411438420414925, 0.025288160890340805, -0.008422686718404293, -0.0013702779542654753, -0.012007521465420723, -0.02229968272149563, -0.021388396620750427, 0.00692844670265913, -0.0009338997188024223, -0.00850309431552887, 0.028303442522883415, -0.014057912863790989, -0.024819117039442062, 0.002722129225730896, 0.044304534792900085, -0.018547331914305687, -0.012858500704169273, 0.0060674166306853294, -0.015116611495614052, -0.019083382561802864, 0.03950688987970352, -0.033288706094026566, 0.026990119367837906, -0.006811185739934444, 0.00633879192173481, -0.012315750122070312, 0.01739482395350933, 0.0036518408451229334, 0.02985798753798008, -0.017475230619311333, 0.02361300401389599, 0.025462377816438675, 0.036344192922115326, -0.019606029614806175, 0.0033821407705545425, 0.009273665957152843, -0.019606029614806175, 0.008054152131080627, 0.01980705000460148, -0.01222194079309702, -0.005611774045974016, 0.017019588500261307, 0.01433933898806572, -0.02054411731660366, 0.01874835044145584, -0.013964103534817696, -0.023572800680994987, -0.0027723838575184345, -0.011009127832949162, -0.0029197975527495146, -0.004053878597915173, -0.034950461238622665, -0.005310245789587498, -0.0060104611329734325, -0.010258657857775688, 0.013964103534817696, 0.007209873292595148, 0.00467703677713871, -0.005296844523400068, 0.024577895179390907, 0.009782913140952587, -0.021656421944499016, -0.023720214143395424, -0.03184137120842934, 0.015612457878887653, -0.015853680670261383, -0.011069433763623238, 0.002506033983081579, -0.02361300401389599, -0.005119278095662594, -0.013749683275818825, -0.019793648272752762, 0.0009891798254102468, 0.011960616335272789, -0.012523469515144825, -0.03562052547931671, -0.007410891819745302, -0.005099175963550806, 3.6774916225112975e-05, -0.009863320738077164, -0.0039299167692661285, 0.01354866474866867, -0.02945595048367977, 0.009655601345002651, 0.00374229927547276, -0.02605203166604042, 0.013950702734291553, -0.019874054938554764, 0.02937554195523262, 0.0027841099072247744, 0.025784006342291832, -0.0006981214391998947, 0.0367998369038105, 0.013843492604792118, -0.03714826703071594, 0.0033771153539419174, -0.029697172343730927, 0.02046371065080166, 0.010385969653725624, -0.006727428175508976, 0.027740590274333954, 0.03789873793721199, 0.015063006430864334, 0.015197019092738628, -0.003233051858842373, 0.02028949372470379, 0.0038562100380659103, 0.012322450056672096, 0.01949882134795189, -0.029777580872178078, 0.015022802166640759, -0.01630932278931141, 0.006982051767408848, -0.008549998514354229, 0.01634952612221241, 0.009039144031703472, -0.014325937256217003, -0.037523504346609116, -0.013160028494894505, -0.030849680304527283, 0.008945334702730179, 0.009534990414977074, -0.006070766597986221, 0.011404464952647686, 0.0032129499595612288, 0.011411165818572044, 0.009675703011453152, 0.01608150079846382, 0.023318177089095116, -0.02684270590543747, 0.019820449873805046, 0.017475230619311333, -0.008657208643853664, 0.02307695522904396, -0.009226761758327484, -0.019726641476154327, -0.007363987620919943, -0.02527475915849209, -0.009581894613802433, -0.006580014247447252, 0.002874568337574601, -0.025408772751688957, 0.007256777491420507, -0.02958996221423149, 0.03344952315092087, -0.0013476633466780186, 0.003638439578935504, -0.002450753701850772, 0.01687217503786087, 0.007699018809944391, 0.01155857928097248, 0.005249940324574709, 0.0368802435696125, 0.011739496141672134, -0.02435007318854332, 0.0014213701942935586, -0.02212546579539776, 0.012952309101819992, -0.00970250554382801, 0.013441454619169235, 0.007565006148070097, 0.006392396986484528, 0.025341765955090523, -0.006000410299748182, 0.01967303641140461, 0.04427773505449295, 0.01909678243100643, -0.0018359713722020388, 0.001640815637074411, 0.007095962297171354, -0.005012067966163158, -0.010178250260651112, -0.009689104743301868, -0.01053338311612606, -0.01409811619669199, -0.014768178574740887, 0.0001310809893766418, 0.0047272914089262486, 0.03639779984951019, -0.0026299955788999796, 0.00990352500230074, -0.0063320910558104515, -0.006754230707883835, 0.009146354161202908, 0.04039137065410614, -0.002537861932069063, -0.01778346113860607, -0.03570093214511871, 0.03738949075341225, -0.00137697858735919, 0.022701719775795937, 0.01551864854991436, 0.004285050090402365, 0.0012588800163939595, 0.017770059406757355, -0.0032715804409235716, 0.009722608141601086, -0.008456189185380936, 0.0060674166306853294, -0.013642474077641964, -0.00549786351621151, -0.00412088492885232, 0.025958223268389702, -0.01586708053946495, -0.02444388158619404, 0.0028611670713871717, 0.002886294387280941, -0.005725684575736523, -0.027137532830238342, 0.0048546032048761845, 0.040713001042604446, -0.010084441863000393, -0.009146354161202908, -0.017555639147758484, 0.025985026732087135, -0.00472059054300189, -0.036263786256313324, -0.03344952315092087, -0.0058228434063494205, -0.013883695937693119, -0.01656394638121128, 0.010714299976825714, 0.0053940038196742535, -4.295205872040242e-05, 0.031010495498776436, 0.015706267207860947, -0.023224368691444397, -0.03146613761782646, -0.00990352500230074, 0.01077460590749979, -0.007779426407068968, 0.015666062012314796, -0.02081214264035225, 0.002227958058938384, -0.02522115409374237, -0.00944118108600378, -0.02736535482108593, -0.013883695937693119, 0.014352739788591862, -0.036960650235414505, 0.01103593036532402, -0.00233349297195673, 0.02579740807414055, -0.02311715856194496, 0.013139926828444004, -0.005745786242187023, -0.03143933415412903, -0.016764964908361435, 0.009447881951928139, -0.032672248780727386, -0.006576663814485073, -0.007920139469206333, 0.021790433675050735, -0.014674370177090168, -0.005340398754924536, -0.009253564290702343, 0.02522115409374237, 0.02889309823513031, 0.02317076362669468, -0.025502581149339676, 0.007672216277569532, 0.0035647328477352858, -0.0035814843140542507, 0.04039137065410614, 0.004241495858877897, 0.0070691597647964954, 0.015746470540761948, 0.05100516229867935, -0.0038729615043848753, 0.0133141428232193, 0.006201428826898336, 0.02443048171699047, 0.01403111033141613, -0.012355953454971313, 0.012912105768918991, -0.006673823110759258, -0.013153327628970146, 0.013066220097243786, 0.0008405097178183496, -0.016376329585909843, 0.015840278938412666, -4.994060145691037e-05, -0.05424826592206955, 0.01735462062060833, -0.010017435066401958, 0.05687490850687027, -0.02508714236319065, 0.00743099395185709, -0.014500154182314873, -0.015478445217013359, 0.009012341499328613, 0.0016441659536212683, -0.014433147385716438, 0.005461009684950113, 0.0005092475330457091, -0.02618604525923729, -0.00800054706633091, -0.028491059318184853, -0.01853393018245697, -0.003960069734603167, 0.011967317201197147, -0.05197005346417427, -0.01797107793390751, 0.026373662054538727, 0.00264004641212523, 0.009709206409752369, 0.010017435066401958, 0.0017890670569613576, -0.017193805426359177, 0.038407985121011734, -0.009414378553628922, 0.01025195699185133, -0.0005741598433814943, -0.027378756552934647, 0.017729856073856354, -0.0011466445866972208, 0.014848586171865463, -0.005886499769985676, -0.004429113585501909, 0.025033537298440933, 0.006811185739934444, -0.0038294075056910515, 0.007263478357344866, -0.001230402383953333, 0.0011809852439910173, -0.0011416190536692739, -0.002904721302911639, 0.03942647948861122, 0.011216847226023674, -0.014634165912866592, 0.016577348113059998, -0.031760964542627335, -0.01945861615240574, -0.0016433284617960453, -0.005390653386712074, -0.004864654038101435, -1.8766986613627523e-05, 0.009789614006876945, -0.022634712979197502, -0.003484325250610709, 0.016403131186962128, 0.01103593036532402, 0.023264572024345398, 0.0021961301099509, 0.012784793972969055, 0.0007567519205622375, 0.0021844038274139166, 0.0061679258942604065, 0.0024842568673193455, -0.007370688021183014, 0.030313629657030106, -0.013086321763694286, 0.024162456393241882, 0.007062459364533424, 0.02566339634358883, 0.03650500997900963, -0.012724488042294979, -0.05288133770227432, -0.005544767715036869, 0.02313056029379368, 0.011880208738148212, 0.01267758384346962, -0.024470685049891472, -0.03111770562827587, -0.03143933415412903, -0.02597162500023842, -0.005755837541073561, 0.021428599953651428, -0.026735495775938034, -0.0175690408796072, -0.026909712702035904, -0.008181463927030563, 0.0006344654830172658, -0.011873508803546429, 0.005015418399125338, -0.03082287684082985, 0.018949368968605995, 0.015545451082289219, 0.013722880743443966, 0.016470137983560562, 0.022715121507644653, -0.0043386551551520824, -0.0348968580365181, -0.008576801046729088, -0.021254384890198708, -0.025851013138890266, -0.014486752450466156, 0.016496939584612846, 0.006563262548297644, 0.014808382838964462, 0.011491572484374046, 0.01818549819290638, 0.011236948892474174, -0.015130012296140194, -0.007229974959045649, 0.014674370177090168, -0.018292708322405815, -0.0014021059032529593, -0.004780896473675966, 0.006787733640521765, 0.016939181834459305, 0.014459949918091297, 0.017997879534959793, -0.05392663553357124, 0.011123038828372955, 0.020396703854203224, -0.002985128667205572, 0.00444921525195241, 0.00358483474701643, -0.04945061728358269, -0.00021462941367644817, -0.0032615296076983213, -0.027552971616387367, -0.010158148594200611, -0.013139926828444004, -0.02854466438293457, 0.010908618569374084, 0.009166455827653408, 0.034468017518520355, 0.02417585626244545, 0.013555365614593029, -0.003889713203534484, 0.006901644170284271, -0.009588595479726791, 0.015264024958014488, -0.004271648824214935, -0.0020939453970640898, 0.008080954663455486, 0.009709206409752369, 0.009005640633404255, 0.007042357698082924, -0.011350859887897968, 0.028249837458133698, -0.009488086216151714, 0.01779686100780964, 0.03698745369911194, -0.006586715113371611, -0.01953902468085289, -0.006285186856985092, -0.023961437866091728, -0.03602256253361702, -0.03310108929872513, -0.003139242995530367, 0.006730778608471155, 0.0027774092741310596, 0.004422412719577551, 0.0062684351578354836, -0.003759050974622369, -0.009836518205702305, -0.00635889358818531, -0.010439574718475342, -0.017930874601006508, 0.029670370742678642, -0.004496119916439056, -0.005474410951137543, 0.03151974454522133, 0.004824450239539146, 0.021535810083150864, -0.040016137063503265, 0.0100107342004776, 0.005591671913862228, 0.02846425771713257, 0.030152814462780952, 0.0028628422878682613, -0.03251143544912338, 0.01762264594435692, 0.007384089287370443, -0.006750880274921656, -0.029214726760983467, 0.03151974454522133, 0.0275797750800848, -0.01385689340531826, -0.023184165358543396, 0.022138867527246475, -0.044224128127098083, 0.0258778166025877, -0.006218180526047945, -0.007853133603930473, -0.023680010810494423, -5.501841951627284e-05, -0.009937027469277382, 0.01073440257459879, -0.012449762783944607, 0.026775699108839035, 0.03441441431641579, -0.0022949641570448875, -0.004546374548226595, -0.008409284986555576, -0.009447881951928139, 0.01810508966445923, -0.010144746862351894, 0.027901405468583107, -0.017555639147758484, 0.005852996371686459, -0.0052063860930502415, 0.005045570898801088, -0.006194728426635265, -0.017863867804408073, 0.005424156319350004, 0.04760124534368515, -0.003889713203534484, 0.0008920207619667053, -0.010191651061177254, 0.010721000842750072, 0.004747393075376749, -0.003715496975928545, 0.005605073180049658, -0.006147823762148619, -0.0040237256325781345, -0.01967303641140461, 0.02910751663148403, 0.008663908578455448, 0.02071833424270153, -0.00036790623562410474, -0.00720317242667079, -0.00746449688449502, -0.04601989686489105, -0.01077460590749979, 0.016818569973111153, -0.03760391101241112, -0.01573306880891323, 0.0018527229549363256, -0.015987692400813103, 0.012114730663597584, -0.009622097946703434, 0.0005138542037457228, 0.019391611218452454, 0.055802810937166214, -0.032940275967121124, 0.003380465554073453, 0.007350586354732513, 0.0016274144873023033, -0.0018326210556551814, -0.01752883568406105, -0.0020487161818891764, -0.02268831804394722, 0.01648353971540928, -0.01884215883910656, -0.022540904581546783, -0.0350576713681221, -0.008864928036928177, 0.029831185936927795, -0.0002569271018728614, 0.024752110242843628, 0.02649427391588688, 0.0047909473069012165, 0.004586578346788883, -0.0008610303630121052, -0.029053913429379463, -0.012148234061896801, -0.02846425771713257, -0.006070766597986221, 0.023666609078645706, -0.0067140269093215466, -0.0058462959714233875, -0.019297800958156586, -0.006636969745159149, -0.006221530959010124, -0.021602816879749298, -0.04577867314219475, -0.001361902104690671, -0.002844415605068207, -0.012972410768270493, -0.027552971616387367, -0.03937287628650665, 0.013294041156768799, -0.012168335728347301, -0.008797921240329742, 0.0192709993571043, -0.002038665348663926, 0.00465358467772603, 0.02294294163584709, -0.0020420155487954617, 0.011679190210998058, -0.006546511314809322, -0.02579740807414055, 0.005330347456037998, -0.02929513528943062, -0.016496939584612846, -0.031010495498776436, -0.018024682998657227, 0.031224915757775307, 0.0022145567927509546, -0.011578680947422981, -0.04315203055739403, -0.012268844991922379, -0.023237770423293114, -0.01656394638121128, -0.010131346061825752, 0.03395877033472061, 0.02355939894914627, -0.007256777491420507, -0.01971323974430561, 0.010473078116774559, -0.011022528633475304, 0.0035881849471479654, -0.030260024592280388, -0.015853680670261383, 0.009642200544476509, 0.014821783639490604, 0.02036990225315094, -0.019284401088953018, -0.00524658989161253, -0.00915975496172905, 0.0011742846108973026, -0.010292161256074905, 0.014781580306589603, 0.024336671456694603, 0.010131346061825752, -0.017689650878310204, 0.0018275956390425563, -0.01945861615240574, 0.0026048682630062103, -0.0027924857567995787, -0.0014531981432810426, -0.016403131186962128, 0.010265358723700047, 0.013515161350369453, 0.003058835631236434, -0.010030836798250675, 0.010151447728276253, 0.017676251009106636, -0.009012341499328613, 0.005414105486124754, -0.023840826004743576, 0.0002577646810095757, -0.000438890972873196, 0.0028142626397311687, 0.027686985209584236, -0.02228628098964691, -0.0027104029431939125, 0.016550544649362564, 0.0035915353801101446, -0.014942395500838757, -0.02041010558605194, 0.008952035568654537, -0.026413865387439728, 0.007511401083320379, 0.007109363563358784, -0.005963556934148073, -0.001224539359100163, -0.011900311335921288, 0.02224607765674591, -0.03859560191631317, 0.007866534404456615, 0.011833304539322853, -0.008704112842679024, -0.04808368906378746, 0.004465966951102018, 0.022138867527246475, -0.024591295048594475, -0.026065433397889137, 0.004063929431140423, -0.017247410491108894, 0.013046118430793285, -0.030313629657030106, 0.0026735495775938034, -0.04516221582889557, 0.025060338899493217, 0.0037557005416601896, -0.019860655069351196, -0.020704932510852814, 0.0031610201112926006, -0.005920002702623606, 0.0020905951969325542, 0.0038461589720100164, 0.22685638070106506, -0.012302348390221596, 0.011129738762974739, 0.03610296919941902, 0.009407678619027138, 0.00032854004530236125, 0.019954463467001915, 0.004104133229702711, -0.0021475504618138075, 0.016496939584612846, -0.015022802166640759, -0.006030562799423933, -0.004486068617552519, -0.003748999908566475, 0.01592068560421467, -0.015063006430864334, -0.03746989741921425, -0.018064886331558228, -0.03602256253361702, 0.011853406205773354, 0.05065672844648361, 0.008315476588904858, -0.0036920446436852217, 0.0029248229693621397, 0.012014221400022507, 0.002398823853582144, -0.013079620897769928, 0.016322724521160126, 0.02875908464193344, -0.003511127782985568, -0.02574380300939083, 0.03894403576850891, -0.0037825030740350485, 0.002904721302911639, 0.005859697237610817, -0.016671156510710716, 0.045832280069589615, 0.02657468058168888, 0.022045057266950607, 0.009514888748526573, 0.0071294656954705715, 0.020075073465704918, -0.027820996940135956, -0.0054007042199373245, -0.014701172709465027, -0.00715626822784543, -0.00665707141160965, -0.028946703299880028, 0.016054699197411537, 0.0031978734768927097, -0.00944118108600378, -0.006506307516247034, 0.053042151033878326, 0.01271778717637062, -0.019525622949004173, -0.0183195099234581, 0.03352992981672287, -0.014004307799041271, 0.019029777497053146, 0.03202899172902107, -0.010278759524226189, 0.048673342913389206, -0.010432873852550983, 0.03371754661202431, -0.01967303641140461, 0.015545451082289219, -0.004660285077989101, 0.014607363380491734, 0.009293767623603344, -0.016711359843611717, -0.0021408498287200928, 0.023398583754897118, -0.006995453033596277, 0.005316946189850569, -0.01182660460472107, -0.03428040072321892, 0.006603466346859932, 0.01992766000330448, 0.025207754224538803, 0.0367194265127182, -0.001298246206715703, 0.00609756913036108, 0.0034089433029294014, 0.0002338937047170475, -0.026038631796836853, -0.01810508966445923, -0.0009171481360681355, -0.015264024958014488, -0.003936617635190487, -0.02317076362669468, 0.002564664464443922, -0.024363474920392036, -0.0015528700314462185, -0.020048271864652634, -0.016885576769709587, 0.022808929905295372, -0.013454856351017952, 0.027526170015335083, -0.015290827490389347, 0.017582440748810768, -0.035915352404117584, 0.027204539626836777, 0.007605209946632385, 0.013682677410542965, -0.007136166095733643, -0.0018812005873769522, 0.009863320738077164, 0.024323271587491035, 0.027030322700738907, -0.026909712702035904, 0.005377252120524645, -0.04269638657569885, -0.00055196403991431, -0.004643533378839493, -0.01108283456414938, 0.020919352769851685, -0.030635260045528412, -0.0382203683257103, 0.006988752633333206, 0.0003645559190772474, 0.03653180971741676, -0.015130012296140194, -0.005913302302360535, -0.008838125504553318, -0.011779699474573135, -0.021884243935346603, -0.017555639147758484, -0.027217941358685493, -0.016336124390363693, -0.02609223686158657, 0.020383302122354507, -0.009126252494752407, 0.027606576681137085, -0.015317630022764206, 0.0037020957097411156, 0.009300468489527702, 0.018158694729208946, 0.0015955864218994975, 0.013340945355594158, -0.0009238487691618502, 0.00468708761036396, 0.011236948892474174, 0.01569286547601223, -0.012637379579246044, -0.0027924857567995787, -0.0318145714700222, 0.006181327160447836, -0.01350846141576767, 0.008389183320105076, -0.01108283456414938, -0.04441174492239952, -0.02278212644159794, -0.019659634679555893, -0.01975344493985176, 0.02041010558605194, 0.004576527047902346, -0.02701692283153534, -0.055534783750772476, 0.008248469792306423, 0.007511401083320379, -0.03020641952753067, -0.011270452290773392, 0.03288666903972626, -0.01752883568406105, -0.024725308641791344, -0.015411438420414925, -0.16939181089401245, 0.01346155721694231, 0.0029566511511802673, -0.008047451265156269, 0.009488086216151714, 0.016845373436808586, 0.012382755987346172, -0.0021224231459200382, -0.014191924594342709, 0.003223000792786479, 0.030742470175027847, -0.008724214509129524, -0.02583761140704155, -0.009233461692929268, -0.0062315817922353745, 0.010278759524226189, -0.02709732949733734, 0.0076454137451946735, 0.04612710699439049, 0.019338006153702736, 0.058161430060863495, -0.02670869417488575, 0.002038665348663926, 0.03192178159952164, 0.00907264743000269, 0.013059519231319427, -0.011699291877448559, 0.011123038828372955, -0.000667549844365567, -0.03205579146742821, -0.0007081723888404667, 0.017019588500261307, 0.025542784482240677, 0.0031827972270548344, 0.0056285252794623375, -0.015411438420414925, -0.011699291877448559, -0.00024185070651583374, 0.010761205106973648, -0.0010184950660914183, 0.014366141520440578, 0.036746229976415634, 0.027820996940135956, 0.014232128858566284, -0.005708932876586914, 0.019472017884254456, 0.008925233036279678, -0.005625175312161446, 0.003996923100203276, -0.0021525758784264326, 0.025623193010687828, -0.0417851023375988, -0.03650500997900963, -0.005655327811837196, 0.03208259493112564, 0.007946942001581192, -0.025113943964242935, 0.016751563176512718, -0.024859320372343063, -0.01791747286915779, -0.0014540357515215874, -0.016228914260864258, 0.0033235102891921997, 0.0012337527005001903, -0.02015548199415207, 0.0029298486188054085, -0.01779686100780964, 0.007176369894295931, -0.009950429201126099, -0.004362107254564762, 0.009983931668102741, -0.019740043208003044, 0.013233735226094723, -0.024028442800045013, 0.013066220097243786, -0.020879149436950684, -0.008670609444379807, 0.008409284986555576, 0.00942107941955328, 0.009213360026478767, -0.0006788571481592953, 0.054703906178474426, 0.016550544649362564, -0.015934087336063385, 0.0026567981112748384, 0.024752110242843628, 0.016590749844908714, -0.03444121405482292, -0.04690437763929367, -0.013763085007667542, 0.03436080738902092, -0.024899525567889214, -0.009977231733500957, -0.007833031006157398, 0.019699839875102043, 0.012282246723771095, 0.002608218463137746, -0.003511127782985568, -0.014205326326191425, -0.021147174760699272, 0.004482718650251627, -0.020865747705101967, -0.0034340706188231707, 0.021736828610301018, 0.03572773560881615, 0.013588869012892246, -0.02614584192633629, 0.020356500521302223, 0.030394038185477257, -0.016362927854061127, -0.013106423430144787, 0.005316946189850569, 0.011618885211646557, 0.013213633559644222, 0.01079470757395029, 0.0007031469140201807, -0.013012615032494068, -0.003862910671159625, -0.019244195893406868, -0.0010695873061195016, -0.03130532428622246, -0.014017708599567413, 0.013367747887969017, 0.01267758384346962, 0.017126798629760742, -0.00606406619772315, -0.043205633759498596, 0.009916925802826881, 0.0003649746940936893, 0.011860107071697712, 0.0029097467195242643, 0.018895763903856277, -0.003243102692067623, 0.010982325300574303, -0.011464769951999187, 0.008034050464630127, -0.0007454446167685091, -0.023063553497195244, -0.002439027652144432, 0.013153327628970146, -0.0014649243094027042, 0.014500154182314873, 0.021267784759402275, -0.02993839420378208, -0.004362107254564762, 0.016094902530312538, -0.011806502006947994, -0.020972957834601402, -0.016550544649362564, -0.005501213483512402, -0.025154149159789085, 0.003799254773184657, -0.007504700683057308, 0.021053366363048553, 0.025784006342291832, 0.009983931668102741, 0.04537663608789444, 0.030179617926478386, -0.004231445025652647, -0.0183195099234581, -0.006107620429247618, 0.007524802349507809, -0.010935421101748943, -0.004271648824214935, 0.02071833424270153, -0.01222194079309702, 0.0018879012204706669, -0.013588869012892246, 0.01381669007241726, -0.001971659017726779, -0.006020511966198683, -0.0028159378562122583, -0.021978052332997322, 0.03264544904232025, -0.04744042828679085, -0.0068078357726335526, -0.02015548199415207, 0.008194864727556705, 0.00048244502977468073, -0.03055485337972641, 0.03213620185852051, 0.0008928583702072501, -0.0028360397554934025, -0.003826057305559516, -0.02527475915849209, 0.009213360026478767, 0.013803288340568542, 0.023934634402394295, -0.008201565593481064, 0.037791527807712555, 0.011230248026549816, -0.002755632158368826, -0.008362380787730217, 0.004519572015851736, 0.002797511173412204, 0.0033787903375923634, -0.0004162763652857393, 0.010586988180875778, -0.03763071447610855, 0.03650500997900963, -0.027472564950585365, -0.002271512057632208, -0.01739482395350933, 0.0036451402120292187, 0.006975351367145777, -0.01748863235116005, -0.008355679921805859, -0.021388396620750427, -0.00473399180918932, 0.006982051767408848, 0.017287613824009895, 0.015103209763765335, 0.019525622949004173, -0.005568219814449549, -0.009059245698153973, -0.025623193010687828, 0.011283853091299534, -0.0022162320092320442, 0.009749410673975945, 0.0014850260922685266, -0.02819623239338398, 0.006630268879234791, 0.039238862693309784, -0.00961539801210165, -0.005089125130325556, 0.012188438326120377, -0.021227581426501274, -0.00828197319060564, -0.09681063890457153, 0.010674096643924713, -0.00374229927547276, -0.013977505266666412, 0.011384363286197186, -0.008355679921805859, 0.0009230111609213054, -0.03288666903972626, -0.002003486966714263, 0.003491025883704424, -0.03864920884370804, 0.028866294771432877, 0.002311715856194496, -0.00608751829713583, -0.02771378681063652, 0.008730915375053883, 0.0015009401831775904, -0.0061679258942604065, -0.0002927335735876113, 0.03428040072321892, 0.012871901504695415, -0.010037536732852459, 0.012757991440594196, 0.017944274470210075, -0.018306108191609383, 0.031492941081523895, -0.01722060702741146, 0.018520528450608253, 0.00930716935545206, -0.031010495498776436, -0.013320843689143658, -0.00023870979202911258, -0.028035417199134827, 0.018721546977758408, -0.016751563176512718, -0.013555365614593029, 0.016898978501558304, -0.008080954663455486, 0.010117944329977036, 0.02465830184519291, 0.0038461589720100164, -0.00012919644359499216, -0.003604936646297574, -0.0003607867984101176, -0.025824211537837982, -0.010024135932326317, -0.0065264091826975346, 0.025207754224538803, 0.03224341198801994, 0.020570920780301094, 0.032672248780727386, 0.0099906325340271, -0.00026006801635958254, -0.004941711202263832, 0.006184677593410015, -0.06775672733783722, 0.009186557494103909, 0.023492394015192986, 0.00035680830478668213, -0.02133479155600071, 0.024323271587491035, 0.009977231733500957, 0.00442576315253973, -0.004553074948489666, 0.0030253324657678604, 0.0002973402733914554, -0.015022802166640759, -0.016470137983560562, 0.030715668573975563, -0.021267784759402275, -0.04009654372930527, 0.011840005405247211, 0.004207992926239967, 0.00029357115272432566, 0.01274458970874548, 0.0055581689812242985, -0.023840826004743576, 0.020611124113202095, -0.009340671822428703, 0.020128678530454636, -0.00854329764842987, 0.00413093576207757, -0.020182283595204353, -0.0017421626253053546, 0.025167549028992653, 0.00014584331074729562, -0.012087928131222725, -0.023264572024345398, -0.012731188908219337, 0.003157669911161065, -0.02216566912829876, -0.004549724981188774, 0.003779152873903513, 0.017997879534959793, 0.005377252120524645, 0.012382755987346172, -0.013300742022693157, -0.022983144968748093, 0.01621551439166069, 0.005863047204911709, 0.003233051858842373, 0.008958736434578896, -0.02098635956645012, -0.022018255665898323, -0.011819903738796711, -0.003264879807829857, -0.02740555815398693, -0.04304482042789459, 0.003836108138784766, 0.01193381380289793, -0.016925780102610588, 0.019431814551353455, -0.01269768550992012, 0.02400164119899273, -0.03537930175662041, 0.004144337028264999, -0.02058432251214981, -0.0400429368019104, -0.020396703854203224, 0.021535810083150864, 0.030501248314976692, 0.023720214143395424, 0.025556186214089394, 0.0006591740529984236, 0.02199145406484604, -0.0025345117319375277, 0.007504700683057308, -0.029831185936927795, 0.028651874512434006, -0.026722094044089317, -0.0053001949563622475, 0.008268572390079498, -0.012429660186171532, -0.03985532000660896, -0.008583500981330872, 0.009742709808051586, 0.022179070860147476, -0.009950429201126099, -1.0489357919141185e-05, 0.066631019115448, 0.005819493439048529, 0.0032933575566858053, -0.0004832826089113951, -0.000783135590609163, 0.000604731438215822, 0.020557519048452377, 0.037791527807712555, -0.018198899924755096, -0.015076407231390476, 0.02508714236319065, -0.023720214143395424, 0.004298451356589794, -0.005072373431175947, -0.00821496732532978, 0.023237770423293114, -0.01787726953625679, 0.034682437777519226, -0.005253290291875601, 0.013582168146967888, 0.052908141165971756, 0.003638439578935504, 0.021428599953651428, 0.01608150079846382, -0.027660181745886803, -0.01018495112657547, 0.03202899172902107, -0.0019381559686735272, -0.012838399037718773, -0.01683197170495987, 0.022179070860147476, -0.005471060983836651, 0.008228368125855923, -0.010694198310375214, 0.00468708761036396, 0.003906464669853449, -0.030233222991228104, 0.012463163584470749, 0.04055218771100044, 0.0065197087824344635, -0.0072232745587825775, 0.004298451356589794, -0.03216300159692764, -0.013421352952718735, 0.00444921525195241, 0.015465043485164642, -0.0036350893788039684, 0.0029298486188054085, 0.0018677994376048446], "2c2f9276-e991-4f8c-8ce0-bd87ea6d42bf": [-0.0033260073978453875, -0.023859236389398575, 0.025606025010347366, -0.006296563893556595, 0.0051354230381548405, 0.007840237580239773, 0.009363599121570587, -0.012166585773229599, 0.0013058598851785064, 0.015842966735363007, -0.0031144293025135994, -0.025321664288640022, -0.0255112387239933, -0.0011179785942658782, -0.020704185590147972, -0.010934355668723583, -0.004864603281021118, -0.012979045510292053, 0.0033818641677498817, 0.006198391318321228, -0.028625668957829475, -0.0004180782998446375, 0.009844304993748665, -0.017129361629486084, -0.017968904227018356, 0.00815168023109436, -0.026838256046175957, -0.027420518919825554, -0.014976343140006065, 0.015558606013655663, 0.024346712976694107, -0.01152338832616806, -0.009438075125217438, -0.016100246459245682, -0.01841575652360916, -0.0075017125345766544, -0.0005784544628113508, -0.0024119901936501265, 0.008828730322420597, -0.0062254732474684715, 0.012301996350288391, -0.005446866154670715, -0.011306732892990112, 0.024576909840106964, -0.038050200790166855, 1.9835444618365727e-05, -0.01330402959138155, -0.018524084240198135, -0.02639140374958515, 0.009912010282278061, 0.022911367937922478, -0.005704144947230816, -0.01259312778711319, -0.02181454561650753, -0.00571091566234827, 0.0036086756736040115, -0.0294652096927166, -0.0020717724692076445, -0.03016934171319008, 0.00435004523023963, 9.653250162955374e-05, 0.008138139732182026, -0.025253959000110626, 0.0050812591798603535, -0.003353089326992631, 0.004637791775166988, 0.010081272572278976, 0.01037917472422123, 0.020961463451385498, -0.010663535445928574, 0.0344482958316803, 0.02128644846379757, 0.003774553071707487, 0.0023645965848118067, 0.029356881976127625, 0.015396113507449627, -0.01737309992313385, 0.008943828754127026, -0.00643535889685154, 0.009268812835216522, 0.004932308103889227, -0.022207235917448997, -0.001266929553821683, 0.023317597806453705, 0.02077188901603222, 0.0011120544513687491, -0.0019719076808542013, 0.018578248098492622, 0.015666933730244637, -0.0044685290195047855, 0.046906013041734695, -0.007230892311781645, 0.0038185613229870796, 0.008544369600713253, -0.004945849068462849, 0.03593780845403671, -0.002408604836091399, 0.025944551452994347, -0.0026946584694087505, -0.001313476706854999, 0.004058913793414831, 0.00973597727715969, -0.005050791893154383, -0.02020316757261753, -0.02643202617764473, -0.01438053883612156, 0.027393437922000885, -0.003246454056352377, 0.014624277129769325, 0.013182160444557667, 0.011760355904698372, 0.028165273368358612, -0.0024644616059958935, -0.05481395497918129, 0.01823972351849079, -0.0021479406859725714, -0.007244433742016554, -0.03526075556874275, -0.012559275142848492, -0.003835487412288785, 0.016032541170716286, 0.021746842190623283, 0.024157138541340828, -0.020487528294324875, 0.012193667702376842, 0.015044047497212887, -0.016398146748542786, -0.014001390896737576, -0.023967565968632698, -0.01879490353167057, 0.026553895324468613, 0.02249159663915634, 0.01355453860014677, 0.004966160748153925, -0.018375134095549583, -0.0010028801625594497, -0.023642580956220627, 0.0013083989033475518, -0.020704185590147972, -0.004840906709432602, -0.0118754543364048, 0.02231556363403797, -0.012809783220291138, -0.010162518359720707, -0.007088711950927973, 0.033094197511672974, 0.017169984057545662, -0.015653392300009727, -0.0011848373105749488, -0.013879521749913692, 0.032200492918491364, -0.0026371092535555363, 0.0019228216260671616, -0.011205174960196018, -0.011022372171282768, -0.004444832447916269, -0.0008171145454980433, -0.008239696733653545, -0.015870049595832825, 0.0012830095365643501, -0.001998989610001445, -0.000612730102147907, -0.007068400736898184, -0.0006021512090228498, 0.012972275726497173, 0.020365659147500992, 0.03956679254770279, -0.020677102729678154, -0.041570860892534256, -0.003180441679432988, 0.022112447768449783, -0.007637122645974159, -0.04200417175889015, -0.0105552077293396, 0.03851059451699257, 0.01259312778711319, 0.0022190308663994074, -0.0006529299425892532, -0.02178746461868286, 0.009113091044127941, -0.0017264771740883589, -0.004441447090357542, -0.021516645327210426, 0.034989938139915466, -0.027244485914707184, -0.01534194964915514, -0.0028148347046226263, 0.002516932785511017, 0.020094839856028557, 0.010148977860808372, 0.025105008855462074, 0.013493604026734829, -0.022951990365982056, -0.014854473993182182, -0.6062033772468567, -0.018402215093374252, -0.006790810264647007, -0.010331780649721622, 0.014014932326972485, 0.005873407702893019, 0.016980409622192383, 0.014407620765268803, -0.011225487105548382, 0.01117132231593132, -0.01967506855726242, 0.03683151304721832, -0.010697388090193272, 0.0003757626691367477, 0.014583653770387173, -0.014082636684179306, 0.02232910506427288, -0.035369083285331726, -0.02819235622882843, 0.02166559547185898, -0.0219905786216259, 0.0034495689906179905, -0.002026071771979332, 0.026743469759821892, 0.026296617463231087, 0.0015868355985730886, -0.008199073374271393, 0.013507144525647163, -0.01126610953360796, 0.01983756013214588, -0.036425281316041946, 0.028111109510064125, 0.011157781817018986, 0.003926889039576054, 0.04216666519641876, 0.005541652906686068, -0.03959387540817261, 0.026513272896409035, -0.010067731142044067, 0.036994002759456635, -0.01929592154920101, -0.026919502764940262, 0.012518651783466339, 0.0008001882815733552, -0.014204505831003189, 0.001596145099028945, 0.005589046515524387, -0.014231587760150433, -0.013216013088822365, -0.008144909515976906, 0.006130686495453119, 0.0067298756912350655, -0.006445514503866434, 0.023981105536222458, 0.015883589163422585, 0.002515240339562297, 0.017075197771191597, -0.017671002075076103, 0.00781992543488741, -0.01879490353167057, -0.0118754543364048, 0.01611378602683544, -0.012965505011379719, -0.030819309875369072, -0.01018960028886795, 0.004055528435856104, -0.017874116078019142, -0.009966174140572548, -0.009702124632894993, -0.016357524320483208, 0.014434702694416046, -0.021178118884563446, 0.013595161028206348, -0.013432669453322887, 0.023439466953277588, 0.04666227474808693, 0.02693304419517517, 0.002510162303224206, -0.02605287916958332, 0.004705496598035097, 6.437263073166832e-05, -0.004678414668887854, -0.0077657620422542095, -0.007332449778914452, 0.0447123721241951, -0.0032599950209259987, -0.008835501037538052, -0.019187593832612038, 0.00027843675343319774, 0.009553173556923866, -0.0038930366281419992, 0.03563990443944931, 0.02270825207233429, -0.01240355335175991, 0.012444176711142063, 0.005429939832538366, -0.01592421345412731, -0.0015936060808598995, 0.006861900445073843, -0.03369000181555748, -0.00781315565109253, -0.014069096185266972, 0.0075897290371358395, -0.02128644846379757, 0.005392702296376228, -0.0067468020133674145, -0.0029959457460790873, 0.008937058039009571, 0.02341238409280777, -0.01611378602683544, -0.034339968115091324, -0.01599191688001156, 0.0014895097119733691, 0.0038625693414360285, 0.03916056454181671, -0.041245877742767334, -0.001431114156730473, -0.012830094434320927, 0.0012830095365643501, -0.009810452349483967, 0.013757653534412384, 0.01754913292825222, 0.009282353334128857, -0.015328409150242805, -0.000806958822067827, 0.03745439648628235, 0.03545033186674118, 0.0028317610267549753, -0.03052140772342682, 0.0011560625862330198, -0.01826680451631546, 0.020135462284088135, 0.002393371192738414, 0.0025220108218491077, 0.004306036978960037, 0.014651359058916569, 0.011997323483228683, -0.006621547508984804, 0.01860533095896244, -0.014840932562947273, 0.004014905542135239, 0.005666907411068678, -0.0038794956635683775, 0.018903231248259544, 0.02979019470512867, -0.016980409622192383, -0.03818561136722565, -0.02112395502626896, -0.011631716974079609, 0.015910672023892403, -0.010345322079956532, 0.010020337998867035, -0.015721097588539124, 0.002185178454965353, 0.009966174140572548, 0.004820595029741526, -0.012518651783466339, 0.0016037618042901158, -0.008645926602184772, -0.010297928005456924, 0.008673008531332016, 0.046878933906555176, -0.007345991209149361, -0.0157617200165987, -0.01303320936858654, -0.025985173881053925, -0.015287785790860653, 0.0244821235537529, 0.0010451957350596786, -0.030710982158780098, -0.0011814519530162215, -0.03314835950732231, -0.0001923244708450511, -0.014204505831003189, 0.002073465147987008, 0.004394053481519222, -0.021340612322092056, -0.0004527771088760346, -0.005226824898272753, -0.00016651194891892374, 0.016276279464364052, -0.001166218426078558, -0.029573537409305573, 0.022031202912330627, 0.03888974338769913, 0.0005517956451512873, 0.024942517280578613, 0.0133785055950284, -0.027230944484472275, 0.0170074924826622, -0.01880844496190548, 0.03672318533062935, 0.016046082600951195, 0.003950586076825857, 0.003906577825546265, 0.004130003973841667, -0.012809783220291138, 0.02128644846379757, 0.012525422498583794, 0.02501022256910801, -0.0011382900411263108, 0.024509204551577568, 0.033283770084381104, -0.0029180848505347967, 0.01666896790266037, -0.0032312204129993916, 0.021069791167974472, -0.008821959607303143, -0.011726503260433674, -0.012173356488347054, 0.013405587524175644, -0.013987850397825241, -0.029925603419542313, -0.03206508234143257, 0.015829425305128098, 0.002491543535143137, -0.007528794463723898, 0.003781323553994298, -0.0061002192087471485, 0.014895097352564335, -0.018564706668257713, 0.004820595029741526, 0.010690617375075817, 0.010121895000338554, -0.01791473850607872, 0.009796911850571632, -0.010575518943369389, -0.016763754189014435, 0.01665542647242546, -0.024576909840106964, -0.006790810264647007, -0.015382573008537292, -0.0027081994339823723, -0.006106989923864603, 0.024089433252811432, 0.01631690189242363, 0.021313529461622238, -0.01894385553896427, 0.017522050067782402, -0.00762358121573925, -0.010426567867398262, -0.020650019869208336, 0.01375088281929493, -0.016005458310246468, -0.004492226056754589, -0.01526070386171341, 0.03888974338769913, 0.025416452437639236, -0.01222752034664154, 0.011056223884224892, 0.0019397478317841887, 0.0021343997213989496, -0.03228173777461052, 0.014001390896737576, 0.014299293048679829, -0.028788160532712936, 0.02250513806939125, 0.0011044376296922565, 0.03228173777461052, 0.04151669889688492, 0.015910672023892403, 0.01304675079882145, 0.007488171570003033, 0.020622938871383667, -0.0021631743293255568, -0.034827444702386856, 0.01772516593337059, -0.031063048169016838, 0.005551808979362249, -0.004319577943533659, -0.03247131034731865, -0.011841601692140102, 0.010101583786308765, -0.0026015641633421183, 0.030115177854895592, -0.001136597478762269, 0.001277931616641581, 0.012471258640289307, -0.005494259763509035, -0.0003381017886567861, 0.01214627455919981, -0.020365659147500992, 0.04268122464418411, 0.00017804295930545777, 0.001963444519788027, 0.013744112104177475, -0.029004815965890884, 0.029302718117833138, -0.013710259459912777, -0.0030585727654397488, 0.02521333657205105, -0.006533531006425619, -0.007034548092633486, 0.014543031342327595, -0.005385931581258774, -0.03314835950732231, 0.03666901960968971, -0.011983782984316349, 0.00834125466644764, -0.007406925316900015, 0.001655386877246201, 0.009857846423983574, -0.030792227014899254, -0.027379896491765976, 0.021557267755270004, 0.0028893102426081896, 0.0009233267628587782, -0.023128023371100426, 0.007203810382634401, -0.0015225159004330635, 0.0037847086787223816, -0.0004265414027031511, 0.008984452113509178, -0.0266080591827631, -0.009180796332657337, -0.001785718952305615, 0.006966843269765377, 0.005629669409245253, 0.029194390401244164, 0.00771836843341589, -0.03688567504286766, -0.014800310134887695, -0.022627007216215134, 0.032010916620492935, 0.024739401414990425, 0.010054190643131733, 0.003977668005973101, 0.009681813418865204, -0.012166585773229599, 0.0014590424252673984, -0.01577526144683361, -0.0036425283178687096, -0.011990552768111229, -0.03390665724873543, -0.018199101090431213, -0.004895070567727089, 0.024346712976694107, 0.004417750518769026, 0.030413080006837845, -0.0031313556246459484, 0.002537244465202093, -0.013595161028206348, -0.019025100395083427, -0.011252569034695625, 0.002850380027666688, -0.020812513306736946, 0.016262738034129143, -0.00407584011554718, 0.03249839320778847, 0.04788096621632576, 0.03599197044968605, 0.03867308795452118, 0.013012898154556751, 0.0014708908274769783, 0.000724443350918591, 0.022911367937922478, 0.0025677115190774202, 0.011475995182991028, -0.009884928353130817, 0.028679832816123962, 0.017833493649959564, 0.018334509804844856, 0.0009749517776072025, 0.010941125452518463, 0.021164579316973686, 0.006892367731779814, 0.0085037462413311, -0.023439466953277588, 0.01118486374616623, 0.007122564595192671, -0.01578880287706852, -0.004130003973841667, -0.036425281316041946, -0.009539632126688957, 0.02197703905403614, 8.632386015960947e-05, -0.0560055635869503, -0.019092805683612823, -0.01740018092095852, 0.020270872861146927, -0.014299293048679829, -0.023290514945983887, 0.010074501857161522, -0.03423164039850235, -0.017291853204369545, 0.014529489912092686, 0.008449582383036613, -0.00259140832349658, 0.0163439828902483, 0.024170679971575737, -0.012863947078585625, 0.009092779830098152, -0.02571435458958149, 0.018551167100667953, 0.017684541642665863, -0.012139503844082355, -0.016452312469482422, 0.010121895000338554, 0.013094143941998482, 0.018212640658020973, 0.02876107767224312, 0.01983756013214588, -0.00294516677968204, 0.013439440168440342, 0.01633044332265854, -0.029708947986364365, -0.038916826248168945, -0.013744112104177475, 0.0066892527975142, -0.019715692847967148, -0.005118497181683779, 0.03634403645992279, 0.007610040251165628, 0.021584348753094673, 0.022423891350626945, -0.018524084240198135, -0.003099195659160614, -0.0244821235537529, 0.0016977025661617517, 0.008408959023654461, -0.0061713093891739845, -0.005622899159789085, 0.0008518133545294404, 0.01526070386171341, 0.00026891575544141233, -0.020988546311855316, 0.0015148990787565708, -0.03184842690825462, -0.020650019869208336, -0.03442121669650078, -0.01142183132469654, 0.014786768704652786, -0.03209216520190239, -0.007088711950927973, 0.042085420340299606, 0.00024945056065917015, 0.02303323708474636, 0.017603296786546707, 0.007907941937446594, 0.009153714403510094, 0.0005158273852430284, 0.0075355651788413525, 0.021584348753094673, 0.008131369017064571, 0.022423891350626945, 0.0022765800822526217, 0.031117212027311325, 0.02876107767224312, 0.012329078279435635, 0.03558574244379997, -0.01249834056943655, -0.04289788007736206, -0.00887612346559763, 0.030440161004662514, 0.009817223064601421, 0.014949261210858822, -0.0044143651612102985, -0.006780654191970825, -0.03174009919166565, -0.02714969962835312, -0.011239027604460716, 0.00912663247436285, -0.010121895000338554, -0.008997992612421513, -0.005751538556069136, -0.004370356909930706, 0.00611376017332077, 0.0029299333691596985, -0.020677102729678154, -0.025836221873760223, -0.008002729155123234, -0.009099550545215607, -0.007826696150004864, 0.017291853204369545, -0.00046039390144869685, 0.003909962717443705, -0.012830094434320927, -0.027948617935180664, -0.0018889690982177854, 0.005111726466566324, 0.011685880832374096, 0.003486806759610772, 0.009532862342894077, 0.04614771902561188, 0.01687208190560341, 0.01224783156067133, 0.020121922716498375, -0.0038930366281419992, 0.015057588927447796, 0.007968876510858536, 0.010088043287396431, 0.011916077695786953, -0.018524084240198135, -0.001061275601387024, 0.01703457534313202, -0.004905226174741983, 0.001843268284574151, 0.00807043444365263, 0.0018043378368020058, 0.007576188072562218, 0.0009106320794671774, 0.0007667589816264808, -0.022572841495275497, -0.010487502440810204, -0.020149003714323044, -0.003239683574065566, -0.014475326053798199, 0.029356881976127625, -0.011022372171282768, -0.0093094352632761, 0.009079238399863243, 0.007603270001709461, 0.02039274200797081, 0.02219369448721409, 0.008612073957920074, -0.033960819244384766, 0.023141564801335335, 0.013635784387588501, 0.034692034125328064, -0.012789472006261349, 0.01134735532104969, -0.016235655173659325, -0.013094143941998482, -0.020162545144557953, 0.022044744342565536, 0.014339916408061981, 0.001866964972577989, 0.023439466953277588, -0.04343951866030693, 0.029844358563423157, -0.008591762743890285, -0.032200492918491364, -0.0002638378646224737, -0.026120584458112717, -0.027759043499827385, -0.016601262614130974, -0.009654730558395386, -0.007772532291710377, -0.03347334638237953, 0.021408315747976303, -0.011299962177872658, 0.009864616207778454, -0.004038602579385042, 0.007867319509387016, -0.0017383255762979388, -0.014949261210858822, 0.052051592618227005, 0.03211924433708191, 0.01669604890048504, 0.021922875195741653, -0.02342592552304268, -0.005209898576140404, -0.01046042051166296, 0.015463818795979023, 0.005528111942112446, 0.008909976109862328, 0.046553947031497955, -0.015057588927447796, -0.008354795165359974, 0.0025609410367906094, -0.005023709964007139, -0.015694016590714455, -0.033581674098968506, 0.03263380378484726, -0.011299962177872658, -0.004583627451211214, -0.009444845840334892, 0.012037946842610836, -0.03948554769158363, 0.030385997146368027, -0.021367693319916725, -0.017968904227018356, 0.018348051235079765, 0.0059072598814964294, -0.03257963806390762, 0.001743403379805386, 0.004383897874504328, 0.015558606013655663, 0.019458413124084473, 0.003285384504124522, 0.007738680113106966, -0.01753559149801731, -0.005335153080523014, 0.020717725157737732, -0.015138834714889526, 0.04533525928854942, 0.014326374977827072, -0.003859184216707945, 0.025145631283521652, -0.0159783773124218, -0.014691982418298721, -0.017075197771191597, 0.017169984057545662, 0.03409622982144356, -0.006638473831117153, 0.010000026784837246, -0.010121895000338554, 0.010683846659958363, 0.05164536461234093, 0.01916051097214222, -0.01916051097214222, -0.01592421345412731, -0.022098908200860023, -0.02908606268465519, -0.015206540003418922, -0.01864595338702202, 0.010121895000338554, 0.004366971552371979, -0.014123260043561459, 0.011645257472991943, -0.006222088355571032, 0.010656764730811119, 0.008977681398391724, -0.03141511231660843, -0.018131395801901817, -0.005511186085641384, -0.0004917074693366885, -0.003287077182903886, -0.008984452113509178, -0.001178066711872816, -0.0029062365647405386, 0.029383964836597443, -0.01845637895166874, 0.017332475632429123, 0.007095482666045427, 0.016046082600951195, -0.02005421742796898, 0.002318895887583494, -0.031658850610256195, 0.00024691162980161607, 0.006574154365807772, -0.020270872861146927, -0.008083974942564964, -0.04333119094371796, 0.013974308967590332, 0.03084639087319374, 0.033635836094617844, -0.011178093031048775, -0.0004794359265360981, 0.021421857178211212, 0.02644556760787964, -0.02625599317252636, -0.004482069984078407, 0.014177423901855946, -0.009817223064601421, 0.012254602275788784, 0.0027081994339823723, 0.0002731473068706691, -0.013865981251001358, -0.006381195038557053, 0.002946859458461404, 0.005480718798935413, -0.025470616295933723, -0.019905265420675278, -0.01117132231593132, -0.013364964164793491, -0.021002085879445076, -0.004922152496874332, -0.006848359480500221, -0.013012898154556751, -0.02976311184465885, 0.023913400247693062, -0.011841601692140102, 0.007034548092633486, -0.000665624625980854, 0.03756272792816162, 0.03775230050086975, 0.001596145099028945, -0.013764423318207264, -0.0008683164487592876, -0.04186876490712166, -0.018659494817256927, -0.016005458310246468, -0.011035912670195103, -0.023994646966457367, 0.030792227014899254, 0.006191621068865061, -0.006987154483795166, -0.004597168415784836, -0.0053994725458323956, -0.011374437250196934, 0.0016587721183896065, -0.012180127203464508, 0.011035912670195103, 0.014096178114414215, -0.010182829573750496, -0.00948546826839447, -0.007528794463723898, 0.0030365686397999525, 0.01054166629910469, -0.021570809185504913, -0.007562647107988596, 0.0017738706665113568, -0.013290489092469215, -0.015829425305128098, -0.027691340073943138, -0.012335848063230515, -0.027555929496884346, -0.00276744132861495, -0.00040898044244386256, 0.0036560692824423313, 0.012356160208582878, -0.00628979317843914, -0.013466522097587585, -0.0061171455308794975, 0.0055348826572299, 0.004407594446092844, -0.007129334844648838, 0.01828034594655037, -0.01144214253872633, -0.02360195852816105, 0.03136095032095909, 0.0022004120983183384, -0.007725138682872057, -0.030115177854895592, 0.0018077230779454112, 0.010094813071191311, 0.007203810382634401, -0.014773228205740452, -0.042627058923244476, 0.015707556158304214, 0.012518651783466339, 0.0344482958316803, -0.019038641825318336, 0.004637791775166988, 0.026296617463231087, -0.013764423318207264, -0.0014573498629033566, -0.016195032745599747, 0.01807723194360733, -0.02218015305697918, 0.011983782984316349, 0.012234291061758995, -0.005165890324860811, -0.006939760874956846, -0.02656743675470352, 0.003493577241897583, 0.0006144227227196097, -0.007434007246047258, 0.032904624938964844, -0.009844304993748665, -0.016560640186071396, -0.0016308438498526812, 0.01348006259649992, -0.0013354808324947953, -0.000535715720616281, 0.0013761038426309824, -0.009783370420336723, -0.006828047800809145, -0.014028472825884819, 0.002667576540261507, -0.03853767737746239, 0.011178093031048775, 0.00477997213602066, 0.013459751382470131, -0.042139582335948944, 0.01989172399044037, 0.008625615388154984, 0.006354113109409809, 0.021557267755270004, 0.22662213444709778, -0.004634406417608261, 0.006167924031615257, 0.027921536937355995, 0.01791473850607872, 0.007176728453487158, 0.0020429978612810373, 0.011462453752756119, 0.01338527537882328, 0.0008331944700330496, 0.005497644655406475, -0.006543687079101801, -0.014610735699534416, -0.0011924540158361197, -0.016384607180953026, 0.007427236996591091, -0.0260935015976429, -0.056276384741067886, -0.029329799115657806, 0.008645926602184772, 0.01357484981417656, -0.023845696821808815, 0.015558606013655663, -0.025809140875935555, 0.0050474065355956554, 0.033419180661439896, -0.012897799722850323, 0.027027830481529236, 0.04950588569045067, -0.010907272808253765, -0.01028438750654459, -0.005247136577963829, -0.008199073374271393, -0.02002713456749916, -0.0060832928866147995, -0.017427263781428337, 0.02679763361811638, -0.0019702150020748377, 0.02357487566769123, 0.02285720407962799, -0.004695340991020203, 0.015463818795979023, 0.004471914377063513, -0.02041982300579548, -0.01241709478199482, -0.007582958322018385, -0.0011619868455454707, 0.009370369836688042, 0.03171301633119583, 0.030033931136131287, -0.014881555922329426, -0.024008188396692276, 0.021692678332328796, 0.014488867484033108, -0.01983756013214588, -0.002427223837003112, 0.02287074364721775, -0.007352761458605528, 0.0013761038426309824, 0.05730549991130829, -0.003429257543757558, 0.038564760237932205, 0.011394749395549297, 0.005555194336920977, -0.025416452437639236, -0.0041130781173706055, -0.03171301633119583, 0.000665624625980854, -0.010325009934604168, -0.004353430587798357, -0.021232282742857933, 0.0036425283178687096, 0.01241709478199482, 0.0079891886562109, -0.018361592665314674, -0.027420518919825554, 0.05091414973139763, 0.0014167268527671695, 0.02077188901603222, 0.03886266052722931, 0.01574818044900894, -0.011354126036167145, 0.005893718916922808, -0.016100246459245682, -0.008158450946211815, -0.03512534499168396, 0.017995985224843025, 0.002318895887583494, 0.0033598600421100855, 0.002266424475237727, 0.014475326053798199, -0.03425872325897217, 0.0075017125345766544, -0.007474630605429411, 0.01037917472422123, 0.02870691381394863, -0.021029168739914894, 0.02518625557422638, -0.021381234750151634, 0.028869405388832092, -0.027393437922000885, 0.03149636089801788, 0.017698083072900772, -0.0005187894566915929, -0.015233621932566166, -0.009275583550333977, 0.004668258596211672, 0.005243751220405102, 0.007921483367681503, -0.005660136695951223, -0.015721097588539124, -0.015883589163422585, 0.000871701689902693, -0.002650650218129158, 0.0038862661458551884, 0.03425872325897217, -0.03065681830048561, -0.02236972749233246, -0.013527456670999527, 0.02058231644332409, -0.0034969625994563103, -0.025809140875935555, 0.0029654784593731165, -0.015003425069153309, -0.00036137536517344415, -0.00540624326094985, -0.02181454561650753, 0.011076536029577255, 0.014339916408061981, -0.01205148734152317, 0.040731318295001984, -0.027054913341999054, -0.008991221897304058, -0.002032842254266143, -0.012315536849200726, 0.013080603443086147, 0.008293860591948032, -0.00973597727715969, 0.0004305613983888179, -0.0025897156447172165, -0.014719064347445965, -0.009329747408628464, 0.009343287907540798, -0.005653366446495056, 0.005514570977538824, -0.02288428507745266, -0.017630377784371376, -0.008686549961566925, -0.010880190879106522, 0.0093094352632761, -0.04801637679338455, 0.0049390788190066814, -0.007684515789151192, -0.03155052289366722, 0.016614804044365883, -0.034989938139915466, -0.02941104583442211, -0.04785388335585594, -0.006652014795690775, 0.02231556363403797, 0.007406925316900015, -0.016452312469482422, -0.007603270001709461, -0.002120858756825328, -0.025998715311288834, -0.024956058710813522, -0.17126652598381042, 0.006648629438132048, 0.01841575652360916, -0.022748874500393867, 0.023100940510630608, 0.004895070567727089, 0.02908606268465519, -0.006743416655808687, -0.016005458310246468, -0.01056197751313448, 0.01534194964915514, 0.00646582618355751, -0.020541692152619362, 0.0034631099551916122, 0.024387335404753685, 0.00036074063973501325, -0.011963470838963985, 0.013439440168440342, 0.034123312681913376, 0.019079264253377914, 0.034637872129678726, -0.030033931136131287, 0.006367654073983431, 0.011997323483228683, -0.0020836209878325462, -0.02006775699555874, 0.002444149926304817, -0.030981801450252533, -0.017075197771191597, 0.010900503024458885, -0.006828047800809145, 0.015138834714889526, 0.025091467425227165, -0.010771863162517548, 0.055220186710357666, -0.007454318925738335, 0.010406256653368473, -0.009025074541568756, 0.028138192370533943, 0.01205148734152317, 0.019945889711380005, 0.027420518919825554, 0.04891008138656616, 0.009749517776072025, -0.025497697293758392, 0.03637111932039261, 0.009966174140572548, -0.017833493649959564, 0.015910672023892403, -0.0006850898498669267, 0.016018999740481377, -0.03282337635755539, -0.02288428507745266, -0.010236994363367558, 0.03477328270673752, -0.013825357891619205, -0.010115125216543674, 0.015233621932566166, -0.002769134007394314, -0.014475326053798199, 0.01631690189242363, -0.055951401591300964, 0.022396808490157127, -0.020988546311855316, -0.045822735875844955, 0.007217351347208023, -0.017671002075076103, 0.01312799658626318, -0.029221471399068832, 0.0053283823654055595, -0.01169942133128643, -0.008287089876830578, -0.0012381549458950758, 0.01153692975640297, 0.012904570437967777, -0.005517956335097551, -0.01063645351678133, 0.0034309502225369215, 0.03266088664531708, -0.003913348075002432, 0.008815188892185688, 0.034692034125328064, 0.02819235622882843, -0.018199101090431213, 0.007278285920619965, 0.020812513306736946, 0.017630377784371376, 0.00938391126692295, -0.024739401414990425, -0.027379896491765976, 0.028679832816123962, -0.006137457210570574, 0.010067731142044067, -0.010927584953606129, 0.018700117245316505, 0.007637122645974159, 0.0014598887646570802, -0.02536228857934475, 0.004160471260547638, -0.038727253675460815, 0.024008188396692276, 0.009079238399863243, -0.033419180661439896, 0.01807723194360733, 0.04942464083433151, 0.02892356924712658, -0.031306784600019455, 0.02178746461868286, 0.03157760575413704, -0.00859853345900774, -0.025849763303995132, 0.023899860680103302, -0.006624932866543531, 0.04343951866030693, 0.0005852249450981617, 0.015558606013655663, -0.011157781817018986, 0.021394776180386543, 0.008429271169006824, -0.008808419108390808, -0.005443480797111988, 0.0028639209922403097, -0.025402911007404327, 0.026987208053469658, 0.019715692847967148, -0.014326374977827072, -0.09099549800157547, -0.010088043287396431, 0.015396113507449627, 0.00815168023109436, -0.02143539860844612, 0.0026591133791953325, -0.012796242721378803, 0.020094839856028557, -0.014190965332090855, 0.016533557325601578, -0.007007466163486242, -0.03174009919166565, 0.0003852836962323636, 0.03634403645992279, -0.009796911850571632, 0.0036899216938763857, -0.007454318925738335, -0.006719720084220171, -0.013060292229056358, -0.00264049437828362, -0.029708947986364365, -0.0023070473689585924, 0.008490204811096191, -0.009289124049246311, 0.010859879665076733, 0.005717685911804438, -0.017440805211663246, 0.008578221313655376, 0.0012059950968250632, -0.0020565390586853027, 0.0031669007148593664, 0.005880177952349186, -0.007210581097751856, -0.021029168739914894, -0.011848372407257557, 0.026147665455937386, -0.03127970173954964, -0.007156417239457369, 0.019214674830436707, -0.024238385260105133, -0.009769829921424389, -0.021597890183329582, 0.005155734717845917, 0.022951990365982056, 0.0007341759628616273, 0.0020040676463395357, -0.00870009046047926, 0.023195728659629822, -0.006777269300073385, -0.004847676958888769, -0.0076980567537248135, 0.006794195156544447, 0.000175186651176773, -0.0053114560432732105, 0.014163883402943611, -0.015396113507449627, 0.0026421870570629835, 0.007345991209149361, 0.0029079292435199022, -0.005490874405950308, -0.002838531509041786, 0.010778633877635002, 0.0020751578267663717, 0.018849067389965057, 0.010473961010575294, 0.0037914791610091925, -0.01933654397726059, -0.010785404592752457, 0.010088043287396431, 0.0037847086787223816, -0.00651660468429327, 0.0068889823742210865, -0.024035269394516945, 0.02677055075764656, -0.023466547951102257, -0.028815241530537605, 0.0017087046289816499, -0.023263433948159218, 0.02108333259820938, 0.013087374158203602, 0.00442790612578392, 0.0021987194195389748, 0.007833466865122318, -0.0006203469238243997, 0.02073126658797264, 0.010744781233370304, -0.008117827586829662, 0.005795546807348728, -0.0002928240573965013, -0.028490258380770683, -0.0034207943826913834, -0.009255271404981613, 0.008239696733653545, -0.017671002075076103, -0.021245824173092842, -0.023358220234513283, -0.00020099917310290039, -0.011997323483228683, 0.02342592552304268, 0.029302718117833138, -0.03228173777461052, -0.031117212027311325, -0.07599207758903503, 0.015233621932566166, -0.017819952219724655, -0.01828034594655037, 0.006946531590074301, -0.020108381286263466, 0.01738664135336876, -0.026459109038114548, -0.002432301640510559, -0.004136774688959122, -0.02431963011622429, 0.012268143706023693, -0.0001817455777199939, -0.021679136902093887, -0.02586330473423004, 0.004725807812064886, 0.04259997606277466, 0.020961463451385498, 0.019566740840673447, 0.010338551364839077, -0.013933686539530754, 0.0018585018115118146, 0.014407620765268803, -0.014014932326972485, -0.013344652950763702, -0.008544369600713253, -0.01320924237370491, 0.02322280965745449, -0.0058158584870398045, -0.020717725157737732, 0.02960062026977539, -0.0015106674982234836, 0.00038380263140425086, -0.016750212758779526, -0.00815168023109436, -0.022288480773568153, -0.00948546826839447, 0.015910672023892403, 0.025971632450819016, 0.005927571561187506, -0.008381877094507217, -0.020297955721616745, 0.0037440857850015163, -0.0011628331849351525, 0.025321664288640022, -0.022951990365982056, -0.0043805125169456005, 0.009079238399863243, 0.030738063156604767, 0.006570769008249044, 0.00563305476680398, 0.000394804694224149, -0.016993951052427292, 0.0062051620334386826, -0.0017721779877319932, -0.057034678757190704, -0.028436094522476196, -0.002427223837003112, -0.002562633715569973, -0.014800310134887695, 0.02591746859252453, 0.00834125466644764, 0.01152338832616806, 0.00046335600200109184, -0.004847676958888769, -0.0013270176714286208, 0.0006571615231223404, -0.021530184894800186, 0.021679136902093887, -0.044414471834897995, -0.019092805683612823, -0.008483435027301311, 0.01754913292825222, -0.007752221077680588, 0.021692678332328796, -0.011543700471520424, -0.01628981903195381, -0.00500678364187479, -0.004004749935120344, 0.025578944012522697, 0.018023068085312843, -0.017779329791665077, -0.021245824173092842, 0.0032244499307125807, 0.02092084102332592, 0.0221395306289196, -0.017088739201426506, -0.013337882235646248, -0.0029519374947994947, -0.003287077182903886, -0.017860574647784233, 0.003984438255429268, 0.007156417239457369, 0.0020396127365529537, 0.02356133423745632, 0.014705522917211056, 0.009979714639484882, -0.014962801709771156, -0.020000053569674492, -0.0034834216348826885, -0.02339884266257286, -0.01859178952872753, -0.02981727570295334, -0.028842324391007423, -0.013188931159675121, 0.0010045727249234915, -0.014976343140006065, 0.018320968374609947, 0.003557896940037608, 0.014109719544649124, -0.0068382034078240395, 0.013933686539530754, 0.004671643953770399, -0.002911314368247986, -0.012891029007732868, 0.017671002075076103, -0.0248477291315794, -0.01312799658626318, -0.046743523329496384, 0.03247131034731865, -0.00045404655975289643, 0.010582289658486843, 0.0069939251989126205, -0.014488867484033108, 0.03748147934675217, -0.003974282648414373, 0.011800979264080524, -0.009065697900950909, 0.02857150323688984, -0.005727841984480619, -0.021421857178211212, -0.00975628849118948, -0.03864600509405136, -0.01098851952701807, -0.01577526144683361, -0.01897093653678894, 0.007772532291710377, -0.004163856618106365, 0.01898447796702385, 0.08920808881521225, 0.004448217805474997, -0.019282380118966103, -0.007203810382634401, -0.005470562726259232, 0.015450277365744114, 0.00243907212279737, -0.006618162617087364, -0.006167924031615257, -0.023182187229394913, 0.02802986465394497, -0.010345322079956532, -0.01757621392607689, -0.02395402453839779, -0.013256636448204517, -0.011597864329814911, -0.005379161331802607, 0.020880218595266342, -0.04130003973841667, 0.014190965332090855, 0.030467243865132332, 0.02253221906721592, 0.003591749584302306, 0.03068389929831028, -0.017237689346075058, -0.011306732892990112, 0.02981727570295334, -0.0019752930384129286, -0.005514570977538824, -0.04092089459300041, 0.0014590424252673984, 0.007853778079152107, -0.014190965332090855, -0.014177423901855946, 0.019390707835555077, 0.03780646249651909, -0.014150341972708702, 0.01684500090777874, 0.040379252284765244, 0.0077657620422542095, 0.0019820635206997395, 0.015490900725126266, -0.032715048640966415, -0.040893811732530594, -0.009255271404981613, 0.0013058598851785064, -0.006773883942514658, -0.034312885254621506, -0.013012898154556751], "c58d2cf1-6713-4d9a-9d37-6afa53baa3fd": [0.0016307425685226917, -0.028928536921739578, 0.0028784696478396654, -0.005332109984010458, 0.009152228944003582, 0.015949498862028122, -0.0033568209037184715, 0.00635571451857686, 0.008556799031794071, -0.009700827300548553, 0.009406457655131817, 0.009286033920943737, -0.02718907780945301, -0.021355200558900833, -0.02769753523170948, -0.01365475170314312, -0.0032882459927350283, 0.004335266537964344, -0.006904313340783119, -0.004726644605398178, -0.023803824558854103, -0.006144972518086433, 0.008570179343223572, -0.036582157015800476, -0.027858100831508636, 0.006937764585018158, -0.010175833478569984, -0.026399631053209305, -0.009660686366260052, 0.019562220200896263, 0.030614474788308144, 0.0034421212039887905, -0.01637767255306244, -0.013166365213692188, -0.00567665696144104, -0.017849523574113846, -0.01135331392288208, -0.009526881389319897, 0.010744502767920494, 0.004351992160081863, 0.02587779425084591, -0.0009826269233599305, 0.0023031102027744055, 0.021796755492687225, -0.04086390137672424, 0.02495454251766205, -0.02554328367114067, -0.0018632279243320227, -0.01977630890905857, -0.004867139272391796, 0.02013758011162281, -0.02229183353483677, -0.012798402458429337, -0.016779087483882904, -0.011119155213236809, -0.017729099839925766, -0.020217863842844963, 0.01837136037647724, 0.0024486228358000517, -0.0006656774785369635, 0.00038761497125960886, 0.021676331758499146, -0.025891175493597984, -0.006957835052162409, -0.002786479191854596, 0.016230488196015358, -0.001599800307303667, 0.011942053213715553, -0.0009617200121283531, -0.004582804627716541, 0.02091364562511444, 0.012022336013615131, 0.008964902721345425, 0.012617765925824642, 0.01957560144364834, 0.013741724193096161, -0.03005249612033367, 0.007740591652691364, -0.0020923682022839785, 0.010189213789999485, 0.0005849766312167048, -0.011299791745841503, 0.012778331525623798, 0.00794798880815506, 9.068391955224797e-05, 0.0017461490351706743, 0.007071569096297026, 0.005857293028384447, 0.012316705659031868, -0.007064878474920988, 0.020298145711421967, -0.014491030015051365, -0.00023833930026739836, 0.019910112023353577, 0.00403420627117157, 0.029651081189513206, 0.008998353965580463, 0.04281744733452797, 0.0030875392258167267, -0.029918691143393517, -0.010711051523685455, 0.014544551260769367, -0.019495317712426186, -0.012999108992516994, -0.01395581103861332, -0.025944696739315987, 0.02423199824988842, -0.012095928192138672, -0.008984973654150963, -0.0007459602202288806, -0.00877088587731123, 0.032434213906526566, -0.005479295272380114, -0.048330191522836685, -0.00197528931312263, -0.00622860062867403, 0.022960856556892395, -0.042924489825963974, -0.012905445881187916, 0.002152580302208662, 0.02973136492073536, -0.0052183764055371284, 0.02362987771630287, -0.01849178411066532, 0.0005431627505458891, 0.008101863786578178, -0.035806089639663696, 0.0007225443841889501, -0.024165095761418343, -0.0185854472219944, 0.03647511079907417, 0.008978283032774925, -0.005194960627704859, 0.0173276849091053, -0.0230411384254694, -0.015481183305382729, -0.03390606492757797, -0.03048066981136799, -0.014798779971897602, -0.00790115725249052, -0.014638214372098446, 0.004184736404567957, -0.0037030400708317757, -0.017581913620233536, -0.00743284123018384, 0.024124955758452415, 0.004910625983029604, 0.0005552887450903654, 0.01030963845551014, -0.013400522992014885, 0.01914742775261402, -0.015681888908147812, -0.01257762499153614, -0.010630768723785877, -0.00978780072182417, -0.013768484815955162, -0.009660686366260052, -0.005158164072781801, -0.013888909481465816, -0.008389543741941452, -0.0007212900090962648, 0.01135331392288208, 0.0009608836844563484, 0.017287544906139374, -0.004990908782929182, 0.024218618869781494, 0.0102494265884161, -0.0017963256686925888, -0.013915670104324818, -0.006663464941084385, 0.012718119658529758, 0.01020259503275156, -0.04075685515999794, 0.0029955487698316574, 0.02682780660688877, 0.03171167150139809, -0.006098140962421894, 0.0173276849091053, -0.009319485165178776, -0.013045940548181534, -0.008563489653170109, -0.0160164013504982, -0.024820739403367043, 0.034735653549432755, 3.305912468931638e-05, -0.0031761848367750645, 0.007680379319936037, 0.011032182723283768, -0.002488764002919197, -0.024245379492640495, 0.015133291482925415, 0.02740316651761532, -0.011881841346621513, -0.020391808822751045, -0.5895962119102478, -0.0230678990483284, -0.006519625429064035, 0.001253581140190363, 0.007218753919005394, 0.023763682693243027, 0.024218618869781494, 0.028553884476423264, -0.02004391700029373, 0.03414691239595413, -0.025342576205730438, 0.03695680946111679, -0.008797647431492805, -0.004803582094609737, 0.008121934719383717, -0.03023982234299183, 0.01049027405679226, -0.02333550900220871, -0.014022713527083397, 0.027202459052205086, -0.04691186547279358, -0.0005502710700966418, -0.016350911930203438, -0.0014325446682050824, 0.005395667161792517, -0.02098054811358452, 0.013360381126403809, -0.0013472442515194416, -0.005335455294698477, 0.03923148661851883, -0.04388788342475891, 0.021489005535840988, 0.017943186685442924, -0.023268606513738632, 0.055288027971982956, -0.016297390684485435, -0.03816105052828789, 0.03615397959947586, 0.001603981712833047, 0.029142623767256737, -0.009794491343200207, -0.02871445007622242, 0.010108931921422482, -0.001950200879946351, 0.00986139290034771, -0.0013815317070111632, 0.00790115725249052, -0.030400387942790985, 5.7441862736595795e-05, 0.022720007225871086, -0.011828319169580936, 0.009286033920943737, -0.017849523574113846, 0.00024314790789503604, 0.022331973537802696, -0.007018046919256449, 0.03358493372797966, -0.025797512382268906, 0.019294612109661102, -0.01371496357023716, -0.009366316720843315, 0.023803824558854103, -0.007278965786099434, -0.0020003775134682655, -0.016123443841934204, -0.005833877250552177, -0.0016340877627953887, -0.019401654601097107, -0.0022980927024036646, -0.006589872762560844, 0.008336021564900875, -0.018799535930156708, 0.008891310542821884, -0.017889663577079773, 0.001057891990058124, 0.06310221552848816, 0.04209490120410919, 0.007606787141412497, -0.04078361764550209, -0.0044088587164878845, 0.006676845718175173, -0.0009617200121283531, 0.011152606457471848, -0.03559200093150139, 0.03746526688337326, -0.00981456134468317, -0.0017260783351957798, -0.014624834060668945, 0.015200193971395493, 0.008717364631593227, -0.007198682986199856, 0.013995952904224396, 0.01918756775557995, -0.0409977063536644, -0.00018868528422899544, -0.014557931572198868, -0.013795246370136738, -0.030641235411167145, 0.004124524537473917, -0.02190379984676838, -0.020391808822751045, 0.013079391792416573, 0.02895529754459858, 0.009078636765480042, 0.03147082403302193, 0.00394388847053051, -0.01616358570754528, -0.012651217170059681, 0.019281230866909027, -0.017769239842891693, -0.009734278544783592, -0.01667204312980175, 0.009312794543802738, -0.008041651919484138, 0.04993584752082825, -0.031122932210564613, 0.009212440811097622, -0.01613682508468628, 0.018665730953216553, -0.015146671794354916, 0.019682645797729492, 0.0056800018064677715, 0.029035581275820732, 0.00980118103325367, 0.002993876114487648, 0.028821494430303574, 0.018478404730558395, 0.0013288460904732347, -0.030560951679944992, 0.01499948650598526, -0.017769239842891693, 0.030346864834427834, 0.008249049074947834, 0.001043675234541297, -0.007747281808406115, 0.023000996559858322, 0.008155385963618755, -0.013079391792416573, 0.0015437696129083633, 0.004208152182400227, -0.009299414232373238, 0.0010779626900330186, 0.007198682986199856, 0.028928536921739578, 0.01562836766242981, -0.01257762499153614, -0.01999039575457573, -0.01846502348780632, 0.006476138718426228, -0.0008638754370622337, 0.012858614325523376, 0.005084571894258261, -0.006482828874140978, 0.02086012437939644, -0.0023415791802108288, 0.004760095849633217, -0.02214464731514454, -0.009152228944003582, 0.0026844532694667578, 0.00567665696144104, -0.0011047235457226634, 0.04667101800441742, -0.014424127526581287, -0.010610698722302914, -0.022840430960059166, -0.021649571135640144, -0.004244948271661997, 0.014196659438312054, -0.01486568246036768, -0.04455690458416939, 0.005884053651243448, -0.00814200472086668, 0.004679813049733639, -0.007546574808657169, 0.0023415791802108288, -0.0046831583604216576, -0.03751878812909126, 0.029570799320936203, -0.0061550079844892025, -0.008657152764499187, 0.014383985660970211, -0.0102761872112751, -0.0020522268023341894, 0.010162453167140484, 0.029115863144397736, 0.021315060555934906, 0.042201947420835495, 0.00814200472086668, -0.03128349781036377, 0.016872750595211983, -0.027108795940876007, 0.031417302787303925, 0.02106083184480667, -0.003074158914387226, 0.008824408054351807, 0.00033785641426220536, 0.0047132642939686775, 0.021609429270029068, -0.012142760679125786, 0.019803069531917572, 0.005947610829025507, 0.02611864171922207, 0.013106152415275574, -0.011848390102386475, 0.012136070057749748, -0.013052631169557571, 0.00046329814358614385, -0.007105019874870777, -0.007078259252011776, 0.024700313806533813, -0.005472604651004076, -0.022211549803614616, -0.031925760209560394, -0.03304971754550934, 0.008463135920464993, 0.008951522409915924, -0.0033133344259113073, 0.014397365972399712, -0.016805848106741905, 0.01586921699345112, 0.003642827970907092, 0.0018749358132481575, -0.004398823715746403, -0.0027530279476195574, -0.007760662119835615, 0.004007445182651281, -0.00580377085134387, 0.007319107186049223, -0.010155763477087021, -0.018665730953216553, -0.007653618697077036, -0.0025857724249362946, 0.004596185404807329, 0.005843912251293659, 0.004830343183130026, 0.0014944291906431317, 0.015481183305382729, -0.03227365016937256, 0.03792019933462143, -0.0061851139180362225, -0.0029336640145629644, -0.007352558430284262, -0.004214842338114977, -0.007968058809638023, 0.023402411490678787, -0.007600096985697746, 0.03765259310603142, 0.02156928926706314, 0.01718050055205822, 0.009580403566360474, -0.016685424372553825, -0.003816773882135749, -0.018919959664344788, 0.005957646295428276, 0.02207774668931961, -0.030587714165449142, 0.01580231450498104, 0.006533005740493536, 0.013186435215175152, 0.03304971754550934, 0.013755104504525661, 0.017019934952259064, -0.01664528250694275, -0.007713830564171076, -0.004000755026936531, -0.008275809697806835, 0.0023616498801857233, -0.03390606492757797, -0.0005084571894258261, 0.0010152418399229646, -0.031203214079141617, 0.008764196187257767, 0.01810375228524208, -0.029544038698077202, 0.0359666533768177, 0.0018515200354158878, -0.012524102814495564, 0.03171167150139809, 0.013487495481967926, 0.00314106117002666, -9.199060878017917e-05, -0.03355817496776581, 0.022893954068422318, 0.00744622154161334, 0.008356092497706413, 0.013393832370638847, -0.01691289059817791, 0.010931828990578651, -0.004362027160823345, 0.0007840108592063189, 0.0008964902954176068, 0.009045185521245003, -0.008275809697806835, 0.013915670104324818, -0.0009776093065738678, -0.05336124449968338, 0.03818780928850174, 0.002411826513707638, -0.01574879139661789, -0.006733712274581194, -0.005884053651243448, 0.008958213031291962, -0.022626344114542007, -0.010911758989095688, 0.04519916698336601, -0.005405702628195286, -0.011540640145540237, -0.013520946726202965, 0.008336021564900875, -0.026667241007089615, -0.002252933569252491, 0.008121934719383717, 0.02515524998307228, -0.029115863144397736, -0.028901776298880577, 0.021208016201853752, 0.02539609745144844, -0.012015646323561668, 0.01652485877275467, 0.016779087483882904, -0.025623565539717674, -0.01586921699345112, -0.006285467185080051, 0.007305726874619722, 0.006509589962661266, 0.012912136502563953, -0.004298470448702574, 0.020418569445610046, -0.02483411878347397, -0.0033300600480288267, -0.017849523574113846, -0.00918568018823862, -0.0010403301566839218, -0.01972278580069542, -0.009968436323106289, 0.004880520049482584, 0.0023532870691269636, -0.00749305309727788, 0.031203214079141617, 0.006690226029604673, -0.0008308424148708582, -0.016069922596216202, -0.002831638092175126, -0.012310015968978405, 0.018518544733524323, -0.016003020107746124, 0.02999897301197052, -0.012771641835570335, 0.019736167043447495, 0.01807698979973793, 0.02357635647058487, 0.04509212449193001, 0.014491030015051365, -0.0023800479248166084, -0.00038845124072395265, -0.02241225726902485, -0.010958590544760227, 0.011139226146042347, -0.013594538904726505, 0.01837136037647724, 0.02895529754459858, 0.04509212449193001, -0.013681512326002121, 0.02202422358095646, 0.016725564375519753, 0.03896387666463852, 0.015548084862530231, -0.029383473098278046, 0.019107285887002945, -0.007787423208355904, -0.02270662784576416, -0.014276942238211632, -0.022238310426473618, -0.014089616015553474, 0.014383985660970211, 0.025944696739315987, -0.04581466689705849, -0.0068708620965480804, 0.008824408054351807, 0.032220128923654556, 0.004251638427376747, -0.018505165353417397, 0.0075265043415129185, -0.015962880104780197, -0.004044241737574339, -0.011333242990076542, -0.028313037008047104, 0.0230411384254694, 0.015735412016510963, 0.009045185521245003, -0.013119533658027649, -0.014143138192594051, -0.013795246370136738, 0.005201650783419609, 0.024673553183674812, -0.03971318155527115, -0.017943186685442924, -0.009821251966059208, -0.00372311077080667, 0.022960856556892395, 0.028634168207645416, 0.002920283703133464, -0.0059844073839485645, 0.03746526688337326, 0.0017101890407502651, -0.019134046509861946, -0.01870587281882763, -0.0173276849091053, 0.006957835052162409, 0.0025874448474496603, 0.01135331392288208, 0.013768484815955162, 0.01574879139661789, 0.011895221658051014, 0.020753081887960434, 0.005606409627944231, -0.009352936409413815, -0.003963958937674761, -0.008670533075928688, 0.0013321912847459316, -0.002155925380066037, 0.005686691962182522, 0.006322263740003109, -0.006676845718175173, -0.0007476327591575682, -0.01645795628428459, -0.016471335664391518, -0.031229974702000618, -0.0027496828697621822, -0.019816448912024498, 0.014785399660468102, 0.0018632279243320227, -0.02650667540729046, 0.003495643148198724, 0.0423089899122715, -0.013320240192115307, 0.019522080197930336, 0.01487906277179718, 0.012109309434890747, 0.0077673522755503654, -0.0013129569124430418, -0.0038502251263707876, 0.0064058913849294186, -0.01021597534418106, 0.008041651919484138, -0.010115621611475945, 0.03904416039586067, 0.025329194962978363, 0.009520191699266434, 0.02321508340537548, -0.007198682986199856, -0.041399117559194565, -0.010195904411375523, 0.01625724881887436, 0.016618521884083748, 0.008891310542821884, 0.016658661887049675, -0.006165043450891972, -0.03355817496776581, -0.03074827790260315, 0.004934041760861874, 0.0243256613612175, -0.005479295272380114, -0.02118125557899475, 0.0013698238180950284, -0.0004980036756023765, 0.01918756775557995, 0.005422428250312805, -0.009593783877789974, -0.027135556563735008, 0.00017499121895525604, 0.0019384929910302162, 0.02243901789188385, 0.006399201229214668, 0.0004641344421543181, 0.01487906277179718, -0.029276428744196892, 0.0045426636934280396, 0.004495831672102213, -0.0010185869177803397, -0.004271709360182285, 0.011808249168097973, 0.00637244014069438, 0.018117131665349007, 0.03278210759162903, 0.007586716208606958, 0.00571345305070281, -0.004365372471511364, -0.001054546912200749, -0.0038334995042532682, -0.012985728681087494, 0.017100216820836067, 0.006138282362371683, -0.005332109984010458, 0.012584314681589603, -0.006191804073750973, 0.012417059391736984, -0.009600474499166012, -0.002115783980116248, 0.017943186685442924, -0.005362216383218765, -0.005857293028384447, -0.008717364631593227, -0.027777818962931633, -0.010389921255409718, 0.0080215809866786, -0.030186299234628677, 0.012403679080307484, -0.015681888908147812, -0.012878685258328915, 0.003060778370127082, 0.01989673264324665, 0.0198432095348835, 0.02163619175553322, -0.005128058139234781, -0.025436239317059517, 0.00685748178511858, 0.01807698979973793, 0.021716473624110222, -0.009286033920943737, 0.01030963845551014, -0.021462244912981987, 0.0010369850788265467, -0.0014300358016043901, 0.004218187648802996, 0.002828293014317751, -0.012604385614395142, 0.01372834388166666, -0.025289054960012436, 0.030373625457286835, -0.015681888908147812, -0.03104264847934246, 0.0025305780582129955, -0.03184547647833824, -0.02151576615869999, -0.029383473098278046, -0.009312794543802738, 0.0070113567635416985, -0.0002935336669906974, 0.015146671794354916, -0.0115205692127347, 0.01708683744072914, 0.005496020894497633, -0.011038873344659805, -0.008202217519283295, -0.01912066526710987, 0.05049782618880272, 0.021020689979195595, 0.015815693885087967, 0.0397934652864933, -0.02483411878347397, 0.019027002155780792, -0.029704604297876358, 0.026586957275867462, 0.003269847948104143, 0.010289567522704601, 0.03430747985839844, 0.009613854810595512, -0.0017227332573384047, 0.004582804627716541, -0.0045426636934280396, -0.026372870430350304, -0.02817923203110695, 0.020632656291127205, 0.011574091389775276, -0.005686691962182522, -0.01974954642355442, 0.011674444191157818, -0.03567228466272354, 0.02542285807430744, -0.0006556421285495162, -0.00743284123018384, 0.01425018161535263, -0.008750815875828266, -0.015949498862028122, 0.012985728681087494, -0.00022203187108971179, 0.010704361833631992, 0.028660928830504417, 0.009968436323106289, 0.0005803771200589836, -0.017849523574113846, -0.003403652459383011, 0.011868461035192013, -0.0005715962033718824, 0.04201462119817734, -0.007031427696347237, -0.0025974803138524294, 0.0262925885617733, -0.010242735967040062, 0.006713641807436943, -0.029918691143393517, 0.0115473298355937, 0.040676575154066086, -0.005141438916325569, 0.004208152182400227, -0.03452156484127045, 0.00915891956537962, 0.03337084874510765, 0.02229183353483677, 0.005291968584060669, -0.010236045345664024, -0.011065633967518806, -0.008877930231392384, -0.004867139272391796, -0.00863708183169365, 0.010142382234334946, -0.011018802411854267, -0.001563004101626575, -0.0009207423427142203, -0.005643205717206001, -0.008891310542821884, 0.01337376143783331, -0.03412015363574028, -0.03254126012325287, -0.0045326282270252705, -0.022880572825670242, -0.0023432516027241945, 0.010798024944961071, -0.008309260942041874, 0.0025657017249614, 0.050149932503700256, -0.016230488196015358, 0.013681512326002121, -0.0007978094508871436, 0.0035959964152425528, -0.012122689746320248, -0.015735412016510963, -0.016605140641331673, -0.004599530249834061, 0.011507188901305199, -0.014718497171998024, -0.01684598997235298, -0.0371708944439888, 0.009419837966561317, 0.028875015676021576, 0.00963392574340105, 0.009848012588918209, 0.013092772103846073, -0.008864549919962883, 0.017367826774716377, -0.012035716325044632, -0.0160431619733572, -0.023201704025268555, -0.01498610619455576, 0.010142382234334946, 0.015574846416711807, -0.02638625167310238, -0.010884997434914112, 0.005144783761352301, 0.019642503932118416, -0.01044344250112772, -0.03251449763774872, -0.0359666533768177, -0.013400522992014885, -0.01747487112879753, -0.010001887567341328, -0.010108931921422482, -0.00573017867282033, 0.006890933029353619, -0.04404844716191292, 0.005777010228484869, -0.009078636765480042, 0.03275534510612488, -0.0025707194581627846, 0.035779327154159546, 0.0045326282270252705, -0.007171922363340855, -0.014196659438312054, -0.008356092497706413, -0.034494806081056595, -0.012029026634991169, 0.003569235559552908, -0.01321988645941019, -0.04378083720803261, 0.04509212449193001, -0.010617388412356377, -0.016203727573156357, -0.025503141805529594, -0.01383538730442524, -0.01972278580069542, 0.0009642288205213845, -0.008162075653672218, 0.017916426062583923, 0.025971457362174988, -0.01216283068060875, -0.003532439237460494, 0.0035157138481736183, -0.02142210304737091, 0.005663276184350252, -0.023549595847725868, -0.0079948203638196, -0.008931451477110386, -0.00793460849672556, -0.015855835750699043, -0.029704604297876358, -0.008061721920967102, -0.021141113713383675, -0.01090506836771965, 0.0027128865476697683, 0.01255086436867714, 0.03021305985748768, -0.0002640548627823591, -0.0062553612515330315, 0.01204240694642067, -0.019107285887002945, 0.0019217673689126968, 0.005920850206166506, 0.01501286681741476, -0.00912546832114458, -0.0034555017482489347, 0.028901776298880577, -0.0030407076701521873, -0.01130648236721754, -0.008463135920464993, 0.019816448912024498, 0.008951522409915924, 0.01619034633040428, -0.006653429940342903, -0.026787664741277695, 0.0023399065248668194, -0.01586921699345112, 0.036073699593544006, -0.022331973537802696, 0.0032648302149027586, 0.027108795940876007, -0.025115108117461205, -0.008737435564398766, -0.0243256613612175, 0.019936872646212578, -0.0075666457414627075, 0.007171922363340855, 0.000494240433908999, -0.014611453749239445, 0.012243113480508327, -0.01383538730442524, 0.019321372732520103, -0.008041651919484138, -0.008998353965580463, 0.011988884769380093, 0.0005327092367224395, -0.036046937108039856, 0.02139534242451191, -0.0061851139180362225, -0.008857859298586845, -0.012778331525623798, 0.0036996949929744005, -0.02086012437939644, -0.017167119309306145, -0.023897487670183182, -0.004887210205197334, -0.05352180823683739, 0.02842007949948311, 0.0026576921809464693, -0.007004666607826948, -0.04469070956110954, 0.0017578569240868092, 0.013079391792416573, 0.013407212682068348, 0.0071919928304851055, 0.24705666303634644, -0.007519814185798168, -0.006626668851822615, 0.012932206504046917, 0.009981817565858364, -0.010791334323585033, 0.04174701124429703, 0.01771571859717369, -0.002831638092175126, 0.001057891990058124, 0.012002265080809593, -0.007031427696347237, -0.02718907780945301, -0.0018414846854284406, -0.005114677827805281, 0.006599907763302326, -0.03315676003694534, -0.06454730033874512, -0.034762416034936905, 0.026065120473504066, 0.010610698722302914, 0.009426528587937355, -0.0039974101819098, -0.01386214792728424, 0.0019267851021140814, 0.004288434982299805, 0.010657530277967453, 0.03280887007713318, 0.035511720925569534, 0.0008262429037131369, -0.022746767848730087, 0.02321508340537548, -0.023121420294046402, -0.01863897033035755, -0.01771571859717369, -0.003820118959993124, 0.02246577851474285, 0.01974954642355442, 0.018331218510866165, 0.015133291482925415, -0.010135692544281483, 0.00683406600728631, 0.007519814185798168, -0.00519161531701684, -0.020953787490725517, -0.010690981522202492, 0.01222304254770279, -0.00031276806839741766, 0.01759529486298561, -0.000376952433725819, 0.004629636183381081, -0.021729854866862297, 0.02025800384581089, 0.005181579850614071, -0.00871067401021719, -0.027095414698123932, 0.016270630061626434, -0.018130512908101082, 0.008523347787559032, 0.03147082403302193, -0.00510798767209053, 0.03610045835375786, -0.006526315584778786, 0.02277352847158909, -0.03428071737289429, -0.00400410033762455, -0.042710401117801666, 0.014009333215653896, -0.025462999939918518, -0.015481183305382729, -0.014009333215653896, -0.008121934719383717, -0.0009324502316303551, 0.0025857724249362946, -0.0102761872112751, -0.03200604021549225, 0.04546677693724632, 0.01696641370654106, 0.0021191290579736233, 0.054217591881752014, 0.0019251125631853938, -0.0009073619148693979, -0.012156140990555286, -0.0005812133895233274, -0.00685748178511858, -0.034735653549432755, 0.02978488616645336, 0.0019234400242567062, 0.0036261025816202164, -0.004271709360182285, 0.01434384472668171, -0.025891175493597984, 0.01540090050548315, -0.0037130755372345448, -0.008369472809135914, 0.027590492740273476, -0.016337532550096512, 0.0198432095348835, -0.017769239842891693, 0.013340311124920845, -0.027751058340072632, 0.041639965027570724, 0.010664219968020916, 0.006449378095567226, -0.019642503932118416, 0.012664597481489182, 0.02094040811061859, 0.012617765925824642, 0.010028649121522903, -0.016498098149895668, -0.010604008100926876, -0.03101588785648346, -0.01447764877229929, 0.007412770297378302, 0.014598073437809944, 0.03824133053421974, -0.023402411490678787, -0.026961611583828926, -0.002072297502309084, 0.016297390684485435, 0.03660891577601433, -0.02156928926706314, 0.004134559538215399, -0.0019267851021140814, -0.003306644270196557, -0.02079322189092636, -0.005496020894497633, 0.010617388412356377, 0.005382286850363016, -0.028259513899683952, 0.03104264847934246, -0.01819741539657116, -0.006338989362120628, -0.0001492756709922105, 0.0003186220128554851, 0.025329194962978363, 0.012778331525623798, -0.017100216820836067, -0.008476516231894493, -0.006211875006556511, -0.02471369504928589, 0.009988507255911827, 0.013888909481465816, -0.004355337005108595, 0.004515902604907751, -0.01192198321223259, -0.017341066151857376, -0.00012951859389431775, -0.0023984459694474936, -0.008844478987157345, -0.024365803226828575, 0.003606031881645322, -0.013808626681566238, -0.019013622775673866, 0.01586921699345112, -0.01897348091006279, -0.03612722083926201, -0.03436100110411644, -0.004873829428106546, 0.03254126012325287, -0.02139534242451191, -0.0006614960730075836, -0.0022914023138582706, -0.027269361540675163, -0.017622055485844612, -0.025061586871743202, -0.16784438490867615, -0.007038117852061987, 0.03545819967985153, -0.028660928830504417, 0.028928536921739578, 0.015160052105784416, 0.024566510692238808, -0.007787423208355904, -0.005536161828786135, -0.01679246686398983, 0.018478404730558395, -0.014838920906186104, -0.015226954594254494, -0.007058188319206238, -0.008215597830712795, -0.005071191117167473, -0.02898206003010273, 0.0035056783817708492, 0.041693489998579025, 0.002742992714047432, 0.05237108841538429, -0.032407455146312714, -0.007071569096297026, 0.015200193971395493, 0.013025869615375996, -0.004663087427616119, 0.00743284123018384, -0.03818780928850174, -0.014624834060668945, 0.00020697886066045612, -0.02100731059908867, 0.00962054543197155, 0.042951252311468124, 0.006676845718175173, 0.059409208595752716, -0.026867948472499847, 0.026814425364136696, -0.01395581103861332, 0.010476893745362759, -0.01822417601943016, 0.019682645797729492, 0.024365803226828575, 0.03211308643221855, 0.004341956693679094, -0.016083303838968277, 0.03620750457048416, 0.008295880630612373, -0.011212819255888462, 0.00400410033762455, 0.02362987771630287, 0.015347378328442574, -0.04206814244389534, -0.03872302919626236, 0.008871239610016346, 0.028259513899683952, -0.0013221559347584844, -0.01435722503811121, 0.01204240694642067, -0.016498098149895668, -0.016217106953263283, -0.003830154426395893, -0.04182729125022888, 0.022278452292084694, -0.016203727573156357, -0.03901739791035652, 0.021141113713383675, -0.013902289792895317, 0.027322882786393166, -0.00637244014069438, 0.007559955585747957, 0.005044430494308472, -0.015976259484887123, -0.004599530249834061, 0.022131267935037613, 0.019281230866909027, -0.01198219507932663, -0.017903044819831848, 0.014598073437809944, 0.01906714402139187, 0.017314305528998375, 0.0018097060965374112, 0.024793976917862892, 0.007299036718904972, -0.01540090050548315, 0.01200895570218563, 0.021208016201853752, 0.027376404032111168, -0.01696641370654106, -0.0346018485724926, -0.036582157015800476, 0.027831340208649635, -0.0073324874974787235, -0.018719252198934555, 0.0014074563514441252, 0.016350911930203438, -0.007713830564171076, 0.0011632631067186594, -0.006037929095327854, -0.02895529754459858, -0.02842007949948311, 0.02011081948876381, 0.011192748323082924, -0.005887398961931467, 0.012724810279905796, 0.04431605711579323, 0.01030963845551014, -0.03773287311196327, 0.015601607039570808, 0.04252307489514351, -0.012871994636952877, -0.02043195068836212, -0.000531036697793752, 0.01846502348780632, 0.029383473098278046, -0.006201839540153742, 0.025329194962978363, 0.0008864549454301596, 0.002584099769592285, 0.0014760311460122466, -0.0025188701692968607, -0.035779327154159546, 0.015200193971395493, 0.002953734714537859, 0.03508354350924492, 0.016096683219075203, -0.014410747215151787, -0.07134456932544708, -0.012396988458931446, 0.021676331758499146, -0.00012397825776133686, -0.010751193389296532, -0.008088483475148678, -0.012584314681589603, 0.03695680946111679, -0.024165095761418343, 0.013447354547679424, -0.0026961611583828926, -0.041639965027570724, 0.003529094159603119, 0.021141113713383675, -0.013574468903243542, -0.002100731013342738, -0.006660120096057653, -0.008536728098988533, -0.022934094071388245, 0.009520191699266434, -0.0262658279389143, 0.012149450369179249, -0.0008630391675978899, -0.01434384472668171, 0.000528945995029062, -0.0038134288042783737, -0.02360311709344387, 0.014517790637910366, 0.015695270150899887, -0.0026409667916595936, 0.013106152415275574, 0.02142210304737091, -0.007613477297127247, -0.008315950632095337, 0.006640049163252115, 0.02474045567214489, -0.01510652992874384, -0.011406835168600082, 0.019655883312225342, -0.009312794543802738, -0.0052183764055371284, 0.012383608147501945, 0.030641235411167145, -0.002304782858118415, -0.017234021797776222, -0.014504410326480865, -0.006957835052162409, 0.03238069266080856, -0.027751058340072632, -0.016056543216109276, -0.02650667540729046, 0.0038769859820604324, 0.011942053213715553, 0.0032681755255907774, 0.010376540943980217, -0.01140014547854662, 0.004793547093868256, -0.009975126944482327, -0.014450888149440289, 0.014664974994957447, -0.0056097544729709625, 0.013648061081767082, 0.010670910589396954, 0.0423089899122715, 0.009968436323106289, 0.0020957132801413536, -0.006362405139952898, -0.014223420061171055, 0.009761040098965168, -0.010296258144080639, 0.004465725738555193, 0.010931828990578651, -0.009165609255433083, 0.024874260649085045, -0.030587714165449142, -0.025958076119422913, 0.0033902721479535103, -0.01715373992919922, 0.022546062245965004, 0.007185302674770355, -0.012557554058730602, -0.007861015386879444, 0.0018297767965123057, -0.013601229526102543, 0.02611864171922207, 0.047366801649332047, -0.008911381475627422, 0.003502333303913474, 0.0031360434368252754, -0.04993584752082825, 0.0016048179240897298, -0.003994064871221781, -0.0017896355129778385, 0.00396730424836278, -0.009299414232373238, -0.008570179343223572, 0.006713641807436943, -0.005402357317507267, 0.0005782864172942936, 0.019495317712426186, -0.0320863239467144, -0.043700557202100754, -0.08633067458868027, 0.02413833513855934, -0.003689659759402275, -0.00045702606439590454, -0.0007907010731287301, -0.017167119309306145, 0.010209284722805023, -0.019254470244050026, 0.005031050182878971, 0.02551652118563652, -0.02444608509540558, -0.009386386722326279, 0.008115244098007679, -0.0218101367354393, -0.009881463833153248, 0.016618521884083748, 0.008750815875828266, 0.012530793435871601, 0.015119911171495914, 0.02949051558971405, 0.012664597481489182, 0.0007894466980360448, 0.009774420410394669, 0.007713830564171076, -0.015333998017013073, 0.002224500058218837, -0.01049027405679226, 0.03254126012325287, 0.01867911033332348, -0.03941881284117699, 0.013032560236752033, 0.017729099839925766, -0.022693246603012085, -0.03238069266080856, -0.00680396007373929, -0.011045563034713268, 0.017501631751656532, 0.010048719123005867, 0.01706007681787014, 0.038348376750946045, -0.005964336451143026, -0.0022997651249170303, 0.023884106427431107, 0.0049942536279559135, 0.004355337005108595, -0.02127491869032383, -0.006753783207386732, 0.024432705715298653, 0.03157786652445793, 0.014651594683527946, 0.0358596108853817, 0.001054546912200749, -0.0218101367354393, -0.004917316138744354, 0.006472793873399496, -0.05817820504307747, 0.0038334995042532682, 0.018210794776678085, -0.015186812728643417, -0.00685748178511858, 0.01395581103861332, 2.2461910702986643e-05, -0.007058188319206238, -0.010537105612456799, 0.015093149617314339, 0.0043921335600316525, -0.018237555399537086, -0.03337084874510765, 0.020846744999289513, -0.013942430727183819, -0.04086390137672424, -0.010777954012155533, 0.0115473298355937, -0.0003928416990675032, 0.024967923760414124, -0.0052049956284463406, -0.0036562085151672363, 0.0010662548011168838, -0.00853003840893507, 0.012905445881187916, 0.0027931693475693464, -0.0053689065389335155, -0.003278210759162903, -0.013480805791914463, 0.031122932210564613, 0.01870587281882763, -0.011065633967518806, -0.01325333770364523, -0.00933955516666174, 0.0064025460742414, -0.01643119566142559, 0.0036996949929744005, 0.029436994343996048, 0.014517790637910366, 0.035752568393945694, 0.02217140980064869, 0.020271385088562965, -0.0035859611816704273, -0.01101211179047823, 0.006486174184828997, 0.005559577606618404, -0.011192748323082924, -0.02004391700029373, -0.030641235411167145, -0.01897348091006279, -0.012718119658529758, -0.02607850171625614, -0.02449960820376873, -0.02073970064520836, 0.0026342764031141996, -0.016712184995412827, 0.00737931951880455, -0.004870484583079815, 0.006175078451633453, -0.031122932210564613, -0.008503276854753494, -0.014905823394656181, -0.026091881096363068, -0.028875015676021576, 0.03155110776424408, 0.014531170949339867, 0.02348269335925579, 0.017407968640327454, -0.027831340208649635, 0.03976670280098915, 0.00869729369878769, 0.004355337005108595, -0.007840944454073906, 0.03505678474903107, -0.010256116278469563, -0.012497342191636562, -0.003388599492609501, -0.009914915077388287, -0.024098193272948265, -0.012851924635469913, -0.006813995074480772, 0.013594538904726505, -0.004288434982299805, 0.015066388994455338, 0.0742882713675499, 0.01020259503275156, 0.001961908768862486, -0.019548840820789337, 0.001654994674026966, 0.03409339115023613, 0.0006853300146758556, 0.005532816983759403, -0.006496209651231766, -0.02168971300125122, 0.023121420294046402, -0.013520946726202965, 0.005014324560761452, -0.010670910589396954, -0.018036849796772003, 0.00395057862624526, 0.0016232160851359367, 0.008275809697806835, -0.021167874336242676, 0.009312794543802738, 0.03564552590250969, 0.04147940129041672, 0.011721275746822357, 0.008269119076430798, -0.03254126012325287, -0.026346109807491302, 0.030587714165449142, 0.006890933029353619, -0.003907091915607452, -0.027644013985991478, 0.026091881096363068, 0.008429684676229954, -0.021288299933075905, -0.023389030247926712, 0.01921432837843895, 0.023255225270986557, -0.02949051558971405, 0.009332865476608276, 0.05614437535405159, 0.000976772978901863, 0.00853003840893507, 0.002124146791175008, -0.011875150725245476, -0.04873160645365715, -0.0052986592054367065, 0.006593217607587576, -0.015614987351000309, -0.01831783913075924, -0.004147940315306187], "48bf9617-e70d-4329-bdd5-b63b261e0103": [-0.0072343191131949425, -0.01218086201697588, 0.033086877316236496, -0.007715232670307159, 0.01684572733938694, 0.012277044355869293, -0.0107106389477849, -0.024196838960051537, 0.014619782567024231, -0.007440424989908934, 0.041578441858291626, 0.005217915866523981, -0.016612140461802483, -0.016612140461802483, -0.005994248203933239, 0.00469921575859189, -0.004396927077323198, 0.008072483353316784, 0.02022586390376091, -0.00032075238414108753, 0.0147571861743927, -0.01411138754338026, -0.0029112466145306826, -0.014661003835499287, -0.02706858143210411, -0.004991199355572462, 0.008683931082487106, -0.02684873528778553, 0.00331143569201231, 0.013197651132941246, 0.030998336151242256, -0.015004513785243034, -0.015128176659345627, -0.023303713649511337, -0.014276272617280483, 0.008415993303060532, 0.017628928646445274, -0.03325175866484642, 0.021448759362101555, -0.006822106894105673, 0.018590757623314857, 0.004867535550147295, -0.0010605868883430958, 0.019277777522802353, -0.016694582998752594, 0.012840400449931622, -0.02111898921430111, -0.031657874584198, -0.021366316825151443, 0.0022379672154784203, 0.005973637569695711, 0.011212163604795933, -0.0019648766610771418, -0.01875564083456993, -0.011590024456381798, -0.0052007404156029224, -0.01670832186937332, 0.029239565134048462, -0.015018253587186337, 0.011720558628439903, 0.010738120414316654, 0.0047301314771175385, -0.017409082502126694, 0.00039009845932014287, 0.011232774704694748, 0.008835075423121452, 0.019222814589738846, 0.0064339409582316875, 0.01630985178053379, -0.0013723220909014344, 0.013719785958528519, 0.010387740097939968, 0.004661429673433304, -0.009054921567440033, 0.025227367877960205, 0.0038988376036286354, -0.024567829445004463, 0.011624375358223915, -0.008525916375219822, 0.01231139525771141, 0.005169824231415987, -0.01809610240161419, 0.014715964905917645, 0.003558762837201357, 0.01911289244890213, -0.008615229278802872, -0.003940058872103691, 0.007660271134227514, -0.0017656410345807672, -0.013300703838467598, 0.028662467375397682, -0.010614456608891487, 0.01038086973130703, 0.006691573187708855, -0.0031499860342592, 0.03102581575512886, -0.0207067783921957, 0.04814635217189789, -0.014372454956173897, -0.03979219123721123, 0.0025488436222076416, 0.007351112551987171, 0.0207067783921957, -0.024883858859539032, -0.011940404772758484, -0.02879987098276615, 0.02449912764132023, 0.003165443893522024, -0.003086436539888382, -0.004259523004293442, 0.020033499225974083, 0.04454636573791504, 0.004465628881007433, -0.06084247678518295, 0.0008252825937233865, -0.0013852037955075502, 0.01889304630458355, -0.02577698417007923, -0.006925160065293312, 0.006073255557566881, 0.026642629876732826, 0.025392252951860428, 0.008106834255158901, -0.012228953652083874, 0.0029936889186501503, 0.009151103906333447, -0.013286964036524296, 0.005674784071743488, -0.0130465067923069, -0.00331143569201231, 0.02555713802576065, 0.012558722868561745, 0.01486710924655199, -0.010064840316772461, -0.016323590651154518, -0.0040980735793709755, -0.01893426664173603, -0.004898451268672943, -0.011177812702953815, -0.010167893953621387, -0.014770926907658577, 0.01670832186937332, -0.0039537991397082806, -0.019841132685542107, -0.00048220204189419746, 0.047404367476701736, 0.011562543921172619, -0.0032736496068537235, -0.020033499225974083, -0.003778609214350581, -0.006296536885201931, -0.011521322652697563, 0.004943107720464468, -0.020239604637026787, -0.0012203189544379711, -0.010696899145841599, 0.015609091147780418, 0.002643308835104108, 0.016914429143071175, 0.02034952864050865, 0.006166003178805113, 0.017793813720345497, -0.01450985949486494, -0.025035003200173378, 0.007041953504085541, 0.02414187788963318, 0.03138306736946106, -0.004170210566371679, -0.013424367643892765, 0.018151063472032547, 0.029981546103954315, 0.015128176659345627, -0.02426554076373577, 0.00607669074088335, 0.029184602200984955, 0.004843489732593298, 0.0070900446735322475, 0.015471686609089375, -0.011507582850754261, 0.001514878706075251, -0.009556446224451065, 0.0023822414223104715, 0.011699947528541088, 0.03363649174571037, -0.03632960841059685, -0.044601328670978546, -0.013719785958528519, 0.010724379681050777, 0.026244157925248146, -0.023180048912763596, 0.0049568479880690575, 0.0345708392560482, -0.012002237141132355, -0.014715964905917645, -0.6146904230117798, -0.033224280923604965, -0.014963292516767979, -0.012661775574088097, 0.012854141183197498, 0.0038885322865098715, 0.0016746108885854483, -0.0016419774619862437, -0.014235051348805428, 0.017793813720345497, -0.0020490367896854877, 0.019758690148591995, -0.03654945641756058, 0.004190821200609207, 0.02871743030846119, -0.02742583304643631, 0.0017845340771600604, -0.03641205281019211, -0.013589252717792988, 0.021888451650738716, -0.014922071248292923, 0.00607669074088335, -0.006245010532438755, 0.00429043872281909, -0.005375930108129978, 0.01279918011277914, 0.012785439379513264, -0.005740050692111254, 0.007509126793593168, 0.011301476508378983, -0.003764868713915348, 0.010401480831205845, 0.048118870705366135, -0.01324574276804924, 0.04311736673116684, -0.0037236474454402924, -0.039847150444984436, 0.0327296257019043, 0.008299199864268303, 0.04938298463821411, -0.017079314216971397, -0.012414448894560337, 0.0059805079363286495, 0.00449997978284955, -0.02271287515759468, 0.019305257126688957, 0.018467092886567116, -0.02120143175125122, 0.004352270625531673, -0.0035621977876871824, 0.0038026547990739346, 0.01164498645812273, -0.014784666709601879, -0.00043776046368293464, 0.011899183504283428, -0.01166559662669897, 0.022465549409389496, 0.00272746873088181, 0.012462539598345757, -0.01879686303436756, -0.03338916599750519, 0.03605480119585991, 0.0006093007395975292, -0.014743445441126823, -0.023674704134464264, -0.0147571861743927, -0.03239985555410385, -0.004544636234641075, 0.010346518829464912, -0.02436172403395176, 0.023660963401198387, -0.011638116091489792, -0.006901114247739315, -0.005286617670208216, 0.010483922436833382, 0.03418610617518425, 0.01618618704378605, -0.010346518829464912, -0.012483150698244572, 0.010964836925268173, -0.008663319982588291, 0.004809138830751181, 0.0022225091233849525, -0.00793507881462574, 0.03245481848716736, 0.016158707439899445, 0.010593846440315247, -0.01712053455412388, -0.015279320999979973, 0.0012692691525444388, -0.01131521724164486, 0.02199837565422058, -0.008553396910429, -0.044161636382341385, 0.02165486477315426, 0.016502216458320618, -0.016790764406323433, -0.00897934939712286, 0.019992277026176453, -0.012531242333352566, -0.006883938796818256, 0.0008128303452394903, -0.0035965489223599434, 0.004816009197384119, 0.006344628054648638, 0.007011037319898605, -0.008615229278802872, -0.004867535550147295, 0.023537300527095795, -0.015073215588927269, -0.01554038841277361, -0.0019167853752151132, -0.008257978595793247, -0.01262742467224598, 0.024732714518904686, -0.0356425903737545, -0.0007050540880300105, 0.0136716952547431, 0.018618237227201462, -0.010552625171840191, 0.003182619344443083, 0.00757782906293869, 0.02995406463742256, -0.0006900255684740841, 0.018508315086364746, 0.021888451650738716, 0.03448839485645294, 0.012235823087394238, -0.02227318286895752, 0.0027102932799607515, 0.0013534290483221412, 0.004012195859104395, 0.01680450513958931, -0.01863197796046734, 0.02671133168041706, 0.03632960841059685, -0.003593113739043474, -0.013012155890464783, 0.03182275965809822, 0.03124566189944744, -0.019346479326486588, 0.0021572422701865435, -0.0013852037955075502, 0.015842678025364876, 0.028689948841929436, -0.022025857120752335, -0.035587627440690994, 0.008154925890266895, -0.022561730816960335, 0.0008553396910429001, -0.010298427194356918, -0.0019425485515967011, -0.01554038841277361, -0.018260987475514412, 0.0004366869980003685, -0.01253811176866293, -0.0053072283044457436, -0.006492337677627802, -0.006468291860073805, -0.019140372052788734, -0.01716175489127636, 0.03388381749391556, -0.007522867526859045, -0.0017828164855018258, -0.010298427194356918, -0.007303020916879177, -0.03319679945707321, 0.03369145467877388, -0.02008846029639244, -0.03355404734611511, -0.01144575048238039, -0.03432350978255272, 0.015100696124136448, -0.00652325339615345, 0.0046030329540371895, 0.015595350414514542, -0.017711371183395386, -0.004386621527373791, -0.023619743064045906, -0.00013740397116634995, -0.0014856804627925158, 0.017079314216971397, -0.015169397927820683, 0.006135086994618177, 0.00651294831186533, 0.0027102932799607515, -0.0022774708922952414, 0.019415181130170822, -0.020954106003046036, 0.002572889206930995, -0.015073215588927269, 0.009948047809302807, 0.02205333672463894, -0.007660271134227514, 0.016199927777051926, -0.0014916918007656932, 0.0005315815797075629, 0.007110655307769775, 0.021943414583802223, -0.007605309598147869, 0.016296111047267914, 0.02561209909617901, 0.02617545612156391, -0.01313581969588995, 0.0036961666774004698, -0.0215999037027359, 0.028525063768029213, -0.011596894823014736, 0.003874792018905282, -0.004163340199738741, 0.02165486477315426, -0.011466361582279205, -0.01413886807858944, -0.01746404357254505, -0.01955258473753929, 0.019057931378483772, -0.006808366626501083, -0.002258577849715948, -0.024595310911536217, 0.007550348062068224, 0.001034823595546186, 0.014180089347064495, 0.003024604870006442, 0.0010477053001523018, 0.006289666518568993, -0.008189276792109013, -0.012208342552185059, 0.0012108724331483245, 0.0038026547990739346, -0.023303713649511337, -0.01871442049741745, 0.01562283094972372, 0.02378462627530098, 0.00023551899357698858, 0.021902192384004593, -0.007783934939652681, 0.023976992815732956, -0.02084418199956417, 0.02885483391582966, 0.0014487530570477247, 0.004287004005163908, 0.005925545934587717, 0.008574008010327816, -0.0100717106834054, -0.0079144686460495, 0.004860665183514357, 0.039984554052352905, -0.00160333258099854, -0.007632790599018335, -0.018549535423517227, -0.009109883569180965, -0.019346479326486588, -0.030833451077342033, 0.0028219339437782764, 0.020830441266298294, -0.010978576727211475, 0.006080125458538532, 0.015526648610830307, 0.02280905842781067, 0.03690670430660248, 0.005492723546922207, -0.0036927317269146442, 0.03608228266239166, 0.02724720723927021, 0.010772471316158772, -0.010112931951880455, -0.01290910318493843, -0.017312899231910706, 0.0037683038972318172, -0.010683158412575722, -0.019992277026176453, 0.0020421664230525494, 0.020967844873666763, -0.025543397292494774, 0.024966301396489143, 0.015100696124136448, 0.008649580180644989, 0.04086393862962723, -0.01187170296907425, 0.0035415873862802982, 0.006035469472408295, -0.013122078962624073, 0.036027319729328156, 0.00256086653098464, 0.0006303407135419548, 0.008230498060584068, -0.02213577926158905, 0.010339648462831974, -0.005173259414732456, 0.008498435840010643, 0.003599983872845769, -0.015842678025364876, -0.0043247900903224945, 0.019896095618605614, -0.006907984614372253, -0.009501484222710133, 0.018467092886567116, -0.0006689855945296586, 0.010064840316772461, -0.008450344204902649, 0.003241016063839197, 0.01843961328268051, -0.010284687392413616, -0.002586629707366228, 0.009618277661502361, 0.012964064255356789, -0.006530123762786388, -0.013609862886369228, 0.01768389157950878, -0.019676247611641884, 0.005369060207158327, -0.015471686609089375, 0.0037408231291919947, -0.0190716702491045, -0.020610595121979713, 0.01108850073069334, 0.015471686609089375, 0.010078581050038338, 0.01982739195227623, 0.02541973441839218, -0.02901971898972988, 0.005908370483666658, 0.004726696759462357, -0.00726867001503706, 0.014839628711342812, 0.03080596961081028, 0.0035450223367661238, -0.0011164072202518582, -0.013644213788211346, -0.02515866607427597, -0.013726656325161457, -0.022795317694544792, -0.004218301735818386, -0.026079272851347923, -0.019085410982370377, -0.013568641617894173, -0.0034213587641716003, -0.007419814355671406, 0.009886215440928936, 0.0033852902706712484, -0.01049079280346632, -0.009480874054133892, 0.008951868861913681, -0.019222814589738846, -0.00853278674185276, -0.013987723737955093, 0.01515565812587738, 0.002023273380473256, 0.015114436857402325, 0.028689948841929436, 0.02943192981183529, 0.029459411278367043, 0.013637344352900982, 0.004785093013197184, -0.001003907760605216, 0.013369406573474407, 0.006729359272867441, 0.01756022684276104, -0.012345746159553528, 0.028882313519716263, 0.017807554453611374, 0.042292941361665726, -0.00535531947389245, 0.01751900650560856, -0.008965608663856983, 0.023551039397716522, 0.021036548539996147, -0.02541973441839218, 0.011301476508378983, -0.013898411765694618, -0.011205293238162994, 0.003055520821362734, -0.022781578823924065, -0.0107106389477849, 0.023001424968242645, 0.00406715739518404, -0.04886085167527199, -0.02004723995923996, 0.010085451416671276, 0.015883898362517357, 0.014990773051977158, -0.033361684530973434, 0.0224930290132761, -0.01613122597336769, -0.028662467375397682, -0.0031671614851802588, -0.029102161526679993, 0.011899183504283428, 0.005819058045744896, 0.014825887978076935, -0.0008879731758497655, 0.015416725538671017, -0.01489458978176117, 0.027851784601807594, 0.0035725031048059464, -0.010552625171840191, -0.030833451077342033, 0.013314444571733475, 0.01782129518687725, 0.01938769966363907, 0.017079314216971397, 0.008828205056488514, -0.016790764406323433, 0.017409082502126694, 0.016749544069170952, -0.017326639965176582, -0.010621326975524426, 0.0032186880707740784, -0.0021211737766861916, -0.016199927777051926, 0.004221736919134855, 0.018247246742248535, -0.0023976992815732956, 0.01804114133119583, 0.011713688261806965, -0.029624296352267265, 0.006578214932233095, -0.021407539024949074, 0.01716175489127636, -0.0015002796426415443, 0.0016754696844145656, 0.005393105559051037, 0.006901114247739315, 0.01903044991195202, -0.0021915934048593044, -0.027013620361685753, -0.016639620065689087, -0.016323590651154518, 0.004221736919134855, 0.003678991226479411, 0.010456441901624203, 0.022918982431292534, -0.015018253587186337, -0.002703423146158457, 0.05512647330760956, 0.0012082961620762944, 0.014606041833758354, 0.01986861415207386, 0.02328997291624546, -0.013390016742050648, 0.0042766984552145, 0.02454034797847271, -0.003215252887457609, -0.001285585924051702, -0.011191553436219692, -0.014825887978076935, 0.03800593689084053, -0.001238353317603469, -0.0038919674698263407, 0.02978917956352234, -0.00844347383826971, -0.030915893614292145, -0.031053297221660614, 0.005028985440731049, 0.00770149240270257, 0.029541853815317154, 0.014015205204486847, -0.021050287410616875, -0.02094036526978016, -0.0037373879458755255, -0.01742282323539257, -0.004816009197384119, -0.02058311365544796, -0.014674743637442589, -0.029129641130566597, -0.0037270826287567616, -0.0055854711681604385, -0.0007862083148211241, 0.003433381672948599, -0.019854873418807983, -0.0012890209909528494, -0.01195414550602436, 0.01813732460141182, 0.028662467375397682, 0.02400447428226471, 0.010112931951880455, -0.013877800665795803, -0.015100696124136448, -0.018549535423517227, -0.0005526216118596494, 0.003146550850942731, 0.01938769966363907, 0.02066555619239807, 0.05235091224312782, 0.03157543018460274, -0.022067077457904816, 0.0005182705936022103, -0.009075531736016273, 0.00034071889240294695, -0.008498435840010643, -0.006588520482182503, -0.00447936961427331, -0.014063295908272266, -0.012208342552185059, 0.022163260728120804, -0.007728973403573036, 0.011473231017589569, -0.01091674529016018, -0.005489288363605738, -0.003512389026582241, -0.005386235658079386, -0.004204561468213797, 0.005606081802397966, -0.0017321488121524453, -0.0036652509588748217, -0.005475548096001148, 0.009528965689241886, 0.01360299251973629, -0.006983556784689426, -0.03031131625175476, 0.013005285523831844, 0.019277777522802353, 0.032344892621040344, 0.033663973212242126, -0.0025746067985892296, -0.0052831824868917465, 0.0352853387594223, 0.002320409519597888, 0.010449571534991264, -0.007584698963910341, -0.006959510967135429, -0.022905241698026657, -0.00213319668546319, -0.011590024456381798, 0.00016767578199505806, 0.018948007375001907, -0.020651817321777344, 0.029267044737935066, -0.04193568974733353, 0.0414135567843914, 0.015375504270195961, -0.007859506644308567, -0.00395723432302475, -0.02169608697295189, -0.02102280780673027, -0.04506850242614746, -0.0016935039311647415, -0.009391561150550842, -0.0023221271112561226, -0.00864270981401205, -0.015485427342355251, 0.010325908660888672, -0.0064614214934408665, -0.0061076064594089985, 0.018013659864664078, -0.0026106752920895815, 0.0655142143368721, 0.02241058647632599, 0.01716175489127636, 0.013678564690053463, 0.0016136378981173038, 0.021709827706217766, -0.026615148410201073, 0.009329729713499546, 0.003256474155932665, 0.0035553276538848877, 0.04965779557824135, -0.013115208595991135, -0.030833451077342033, 0.00017422394012100995, 0.007948819547891617, -0.004895016551017761, -0.021668605506420135, 0.019621286541223526, -0.008546526543796062, -0.0012469410430639982, -0.009783162735402584, -0.02195715345442295, -0.049053218215703964, 0.005118297878652811, -0.011267125606536865, 0.0044518886134028435, -0.00213834922760725, 0.0026106752920895815, -0.02034952864050865, 0.012792309746146202, -0.009583926759660244, 0.026106754317879677, 0.026917437091469765, 0.016460996121168137, 0.008093093521893024, -0.027796823531389236, 0.0058293635956943035, 0.002004380337893963, -0.011823611333966255, 0.031767796725034714, 0.009480874054133892, 0.006543864030390978, 0.0167220626026392, -0.010367128998041153, -0.0050324201583862305, -0.026546446606516838, 0.013424367643892765, 0.03333420306444168, -0.014344974420964718, 0.008127444423735142, 0.008148055523633957, -0.011603765189647675, 0.012325135990977287, -0.010703769512474537, -0.011596894823014736, -0.024746455252170563, -0.013761007227003574, -0.013843449763953686, -0.0035656329710036516, -0.017409082502126694, -0.003864486701786518, 0.003847311018034816, -0.009453393518924713, -0.005733180791139603, -0.011789260432124138, -0.014303753152489662, -0.00642363540828228, -0.0338563397526741, -0.030421238392591476, 0.01622740924358368, 0.00229979888536036, -0.0005242819897830486, 0.0015509473159909248, 0.006272491067647934, 0.005633562803268433, 0.02760445699095726, -0.048256274312734604, 0.00239941687323153, 0.00895873922854662, 0.02796170674264431, -0.0009704155381768942, 0.014413676224648952, -0.02080296166241169, -0.001856671180576086, 0.009989268146455288, -0.0037064719945192337, -0.021751048043370247, -0.01184422243386507, 0.030036507174372673, 0.022877760231494904, 0.03685174509882927, -0.014386195689439774, 0.04061661288142204, 0.005506464280188084, 0.017010610550642014, -0.03514793515205383, -0.01938769966363907, -0.01497703231871128, -0.04363949969410896, 0.020157162100076675, 0.0016187905566766858, -0.02774186059832573, -0.022245703265070915, -0.0013019025791436434, 0.004159905016422272, 0.015018253587186337, -0.03044871985912323, -0.01526558119803667, 0.002497317036613822, -0.011191553436219692, -0.014688484370708466, -0.011349568143486977, -0.007605309598147869, -0.01378161832690239, -0.021283874288201332, 0.014207570813596249, -0.01875564083456993, 0.009377820417284966, -0.005815622862428427, 0.030778488144278526, 0.03894028440117836, 0.011452620849013329, -0.02432050183415413, -0.00908927246928215, -0.0100717106834054, -0.0009240416693501174, -0.014083907008171082, -0.015705274417996407, -0.019813653081655502, 0.009865605272352695, -0.008388511836528778, -0.018082361668348312, -0.0036412051413208246, -0.01933273859322071, -0.013541161082684994, 0.015609091147780418, -0.026024311780929565, 0.020954106003046036, 0.004664864856749773, -0.02221822179853916, -0.0008519046241417527, 0.026024311780929565, 0.0026759423781186342, -0.0009042898891493678, 0.02111898921430111, -0.0010185069404542446, -0.009906826540827751, -0.005911805666983128, -0.027398351579904556, -0.013857190497219563, -0.02732964977622032, -0.015856418758630753, 0.018425872549414635, 0.005949591752141714, 0.021627385169267654, 0.020280824974179268, -0.010312167927622795, -0.015567869879305363, -0.01795869879424572, -0.005403411109000444, -0.002787583041936159, -0.005746921058744192, 0.010215984657406807, -0.022341884672641754, -0.0044278427958488464, 0.02973421849310398, -0.0021503721363842487, 0.008257978595793247, -0.032344892621040344, 0.00844347383826971, 0.011803001165390015, 0.013032766059041023, -0.035587627440690994, -0.026972398161888123, 0.01554038841277361, -0.008711411617696285, 0.018151063472032547, -0.008766373619437218, 2.8339569325908087e-05, 0.023221271112561226, 0.0004671734932344407, -0.011851091869175434, -0.014908330515027046, 0.022767838090658188, -0.02048693224787712, -0.001386921270750463, 0.03253725916147232, -0.0377860926091671, 0.000582678709179163, -0.0032633442897349596, -0.0010210832115262747, -0.0023289972450584173, -0.008141185157001019, -0.005839668679982424, -0.006554169114679098, -0.02657392807304859, 0.0003465156478341669, -0.024471646174788475, -0.010696899145841599, -0.005716004874557257, -0.011418269947171211, -0.007845766842365265, 0.0011945557780563831, -0.026683850213885307, 0.011686207726597786, -0.040561649948358536, -0.00939843151718378, -0.011102240532636642, -0.00374425807967782, -0.043941788375377655, 0.0020267085637897253, 0.023578520864248276, -0.0017793814186006784, 0.016213668510317802, 0.20390748977661133, -0.005619822535663843, 0.01529306173324585, 0.05174633488059044, 0.02693117782473564, 0.004915627185255289, 0.018384650349617004, 0.0072343191131949425, -0.002471553860232234, -0.013905281201004982, 0.007818285375833511, -0.016900688409805298, 0.004788528196513653, -0.009851864539086819, -0.020885402336716652, 0.01636481285095215, -0.029047198593616486, -0.04649750143289566, -0.025625839829444885, -0.0016531414585188031, 0.03402122110128403, 0.007031647954136133, 0.001801709528081119, -0.030036507174372673, -0.014592301100492477, 0.013994594104588032, -0.009693849831819534, 0.02569454163312912, 0.03446091711521149, -0.012682386673986912, -0.01290910318493843, 0.01720297709107399, -0.00788698811084032, -0.011995366774499416, 0.003265061881393194, -0.0036652509588748217, 0.0005010950844734907, 0.01027094665914774, 0.002531668171286583, -0.0004856371378991753, -0.024705233052372932, -0.020514411851763725, 0.015128176659345627, -0.02084418199956417, -0.009673239663243294, 0.005097687244415283, -0.013877800665795803, 0.0047301314771175385, 0.028030410408973694, 0.039544861763715744, -0.0007943667005747557, -0.0027463617734611034, 0.03080596961081028, 0.02533729188144207, -0.03806089982390404, -0.0017175496323034167, 0.010944225825369358, 0.0007192239281721413, 0.0074679055251181126, 0.02289150096476078, -0.025172406807541847, 0.03698914870619774, 0.0012512349057942629, 0.0020215557888150215, 0.0019906400702893734, 0.013829709030687809, -0.014853369444608688, 0.02404569461941719, -0.009006829932332039, -0.006293101701885462, -0.014083907008171082, -0.024595310911536217, -0.0042766984552145, 0.013390016742050648, -0.03212504833936691, -0.030283834785223007, 0.041358593851327896, -0.002930139657109976, 0.044381480664014816, 0.04325477033853531, 0.020157162100076675, -0.01378161832690239, 0.015828937292099, 0.004455323796719313, -0.005740050692111254, -0.03943493962287903, 0.018164804205298424, 0.00663317646831274, 0.0024801415856927633, 0.00023358674661722034, 0.021270133554935455, -0.050921909511089325, 0.011239645071327686, -0.004974023904651403, -0.0031087647657841444, 0.016557177528738976, -0.010408350266516209, 0.020610595121979713, -0.0052316561341285706, 0.02257547155022621, -0.030036507174372673, 0.03022887371480465, 0.029706738889217377, -0.0004074886383023113, -0.02165486477315426, -0.006169438362121582, -0.0061831786297261715, -0.010861783288419247, 0.013506810180842876, -0.010641937144100666, -0.012977804988622665, -0.04504102095961571, 0.005527074448764324, 0.00047103798715397716, 0.006416765507310629, 0.03654945641756058, -0.016296111047267914, -0.01464726310223341, -0.009563316591084003, 0.023770887404680252, 0.027673158794641495, -0.0062347049824893475, -0.009474003687500954, -0.01411138754338026, -0.008635839447379112, -0.017944958060979843, -0.026422783732414246, -0.017134275287389755, -0.0009068662184290588, 0.006962946150451899, 0.020995326340198517, -0.013822839595377445, -0.000993602443486452, -0.010813692584633827, 0.006220964714884758, 0.013870930299162865, 0.0034110534470528364, -0.010964836925268173, 0.002742926822975278, 0.007605309598147869, -0.040479209274053574, -0.005369060207158327, -0.009755682200193405, 0.0003093736304435879, 0.025048743933439255, -0.01167246699333191, -0.009281638078391552, -0.016323590651154518, -0.009151103906333447, -0.038033418357372284, -0.03157543018460274, -0.013177040964365005, -0.0036205945070832968, -0.013211391866207123, 0.014606041833758354, -0.044958580285310745, -0.028827352449297905, -0.03141054883599281, 0.004572117235511541, 0.031190700829029083, 8.394524047616869e-05, -0.011830481700599194, -0.008711411617696285, -0.01795869879424572, -0.017436563968658447, -0.026560187339782715, -0.17444807291030884, 0.009838123805820942, 0.030201392248272896, -0.03325175866484642, 0.014083907008171082, -0.026065532118082047, 0.023660963401198387, -0.023180048912763596, -0.013218262232840061, -0.012716737575829029, 0.02235562540590763, 0.010250336490571499, -0.024952560663223267, -0.018686939030885696, -0.005073641426861286, -0.006035469472408295, -0.027192246168851852, 0.01933273859322071, 0.012002237141132355, 0.010951096192002296, 0.030421238392591476, -0.03534030169248581, 0.010586976073682308, -0.01569153368473053, -0.006853023078292608, -0.012641165405511856, -0.015760235488414764, -0.02471897378563881, -0.01184422243386507, -0.010923615656793118, -0.02702736109495163, 0.03402122110128403, 0.011720558628439903, 0.002804758492857218, 0.0546867810189724, 0.01442741695791483, 0.012455670163035393, -0.037538763135671616, 0.012338876724243164, 0.002023273380473256, 0.013094598427414894, 0.023523559793829918, 0.04014943912625313, -0.03154795244336128, -0.015196879394352436, 0.016831986606121063, 0.014317493885755539, -0.006354933604598045, 0.03292199224233627, 0.0016746108885854483, 0.015073215588927269, -0.023372415453195572, -0.02506248466670513, 0.00010525358811719343, 0.013596123084425926, -0.02404569461941719, 0.0014693636912852526, 0.004637383855879307, -0.004572117235511541, 0.008574008010327816, -0.015719013288617134, -0.0431998074054718, 0.0035003661178052425, -0.018343430012464523, -0.04281507804989815, -0.007227448746562004, 0.006976686418056488, 0.0076121799647808075, -0.03330672159790993, 0.01411138754338026, 0.012785439379513264, -0.011748039163649082, -0.024169357493519783, -0.013060247525572777, 0.00928850844502449, 0.0076121799647808075, -0.007570958696305752, -0.005997683387249708, 0.02901971898972988, -0.015925120562314987, -0.01038086973130703, 0.04578300192952156, 0.015306802466511726, -0.01676328480243683, -0.016172446310520172, 0.011322086676955223, 0.006533558946102858, -0.0012718455400317907, -0.023523559793829918, -0.011885443702340126, 0.01692816987633705, 0.017354121431708336, -0.023537300527095795, -0.02258921228349209, -0.004970588721334934, 0.007756453938782215, -0.011548803187906742, -0.0016102027148008347, -0.0038232654333114624, -0.033938780426979065, 0.017848774790763855, 0.028112852945923805, -0.012441929429769516, 0.009144234471023083, 0.049053218215703964, 0.040259361267089844, -0.015169397927820683, 0.006406459957361221, 0.01640603318810463, 0.003232428338378668, -0.030778488144278526, 0.03556014597415924, 0.014853369444608688, 0.021187692880630493, 0.003699601860716939, 0.03863799571990967, -0.006073255557566881, 0.012084678746759892, -0.0058808899484574795, -0.0013070552377030253, 0.008628969080746174, -0.010408350266516209, -0.0013353948015719652, 0.02724720723927021, 0.020596854388713837, -0.022465549409389496, -0.10266824811697006, -0.03325175866484642, 0.012352616526186466, 0.02133883722126484, -0.013953372836112976, -0.012675516307353973, 0.009474003687500954, 0.020569374784827232, -0.009741941466927528, 0.01411138754338026, -0.008711411617696285, -0.034598320722579956, 0.0031534209847450256, 0.03080596961081028, -0.015169397927820683, -0.028772391378879547, 0.010511403903365135, -0.0050324201583862305, -0.025639580562710762, 0.0007213708595372736, -0.023276232182979584, -0.002818498993292451, 0.016694582998752594, -0.017848774790763855, 0.010628197342157364, -0.0029816660098731518, -0.015801455825567245, -0.0016600117087364197, 0.022163260728120804, -0.010511403903365135, -0.029267044737935066, 0.019181594252586365, -0.02333119325339794, -0.00867019034922123, -0.029981546103954315, 0.016570918262004852, -0.013087728060781956, -0.02458157017827034, 0.009027441032230854, -0.02062433585524559, 0.019415181130170822, -0.019538844004273415, 0.031987644731998444, 0.022905241698026657, -0.015801455825567245, -0.022699136286973953, -0.016914429143071175, 0.010655677877366543, 0.01198162604123354, -0.00331143569201231, -0.02311134710907936, 0.011129721067845821, -0.015430465340614319, -0.009570186026394367, 0.009707590565085411, -0.0002694405848160386, 0.008429733105003834, 0.005272877402603626, 0.01209154911339283, -0.011184683069586754, 0.0005092534702271223, -0.003840440884232521, -0.00781141547486186, 0.05246083438396454, 0.028030410408973694, 0.01724419742822647, -0.02667010948061943, -0.03248229995369911, 0.012757958844304085, -0.005252266768366098, 0.025859426707029343, -0.00824423786252737, -0.01622740924358368, 0.04270515218377113, -0.02360600233078003, -0.008127444423735142, -0.004482804331928492, -0.036302126944065094, 0.006983556784689426, 0.013280093669891357, -0.0007789087248966098, -0.0006745675927959383, 0.012208342552185059, -0.00781141547486186, 0.0026845301035791636, 0.0070831747725605965, -0.007756453938782215, 0.0022173565812408924, -0.005176694598048925, -0.024609051644802094, 0.01680450513958931, 0.005788142327219248, 0.009384690783917904, -0.013637344352900982, -0.009721330367028713, -0.013719785958528519, -0.0040053254924714565, 0.015224359929561615, 0.0030881541315466166, 0.009171715006232262, -0.018549535423517227, -0.010545754805207253, -0.07474775612354279, 0.016735803335905075, -0.0130465067923069, -0.014743445441126823, 0.0050358553417027, -0.00725492974743247, 0.025392252951860428, -0.022726615890860558, 0.00114989944268018, -0.00023208389757201076, 0.003771738847717643, 0.00023251328093465418, -0.0017450304003432393, 0.002686247695237398, 0.006375544238835573, 0.006495772395282984, 0.028662467375397682, -0.0018463658634573221, 0.02342737652361393, 0.006114476826041937, -0.0028013233095407486, 0.003754563396796584, -0.005365625023841858, 0.02217700146138668, -0.023482337594032288, 0.002140066819265485, -0.006269055884331465, 0.029926585033535957, -0.008828205056488514, -0.029844142496585846, 0.014633522368967533, 0.009831254370510578, -0.007048823405057192, -0.02849758230149746, 0.0012443646555766463, -0.009103013202548027, 0.013568641617894173, -0.00864270981401205, 0.021132729947566986, 0.03454335778951645, -0.015306802466511726, -0.04520590603351593, 0.02302890457212925, -0.0018274728208780289, 0.018082361668348312, -0.016955649480223656, -0.010435831733047962, 0.009157974272966385, 0.0010004726937040687, 0.01240070816129446, 0.01380222849547863, 0.013884671032428741, -0.01724419742822647, 0.00781141547486186, -0.0020919754169881344, -0.039984554052352905, 0.0036927317269146442, -0.009013700298964977, 0.011988496407866478, -0.042430344969034195, 0.009790033102035522, -0.02320753037929535, 0.025570878759026527, 0.02390829101204872, 0.014180089347064495, 0.004101508297026157, 0.002878613071516156, -0.005612952169030905, -0.0033784201368689537, -0.038692958652973175, -0.008058742620050907, -0.03608228266239166, 0.014798407442867756, 0.016337331384420395, 0.023839589208364487, 0.01167246699333191, -0.017271678894758224, 0.011438880115747452, -0.0027205985970795155, 0.015114436857402325, 0.001882434356957674, -0.002425180049613118, -0.030915893614292145, -0.020610595121979713, 0.04262271150946617, 0.01978617161512375, -0.00197174702771008, -0.013726656325161457, 0.004719826392829418, -0.01515565812587738, -0.03305939584970474, 0.0036068542394787073, 0.022286923602223396, -0.00793507881462574, 0.011122851632535458, 0.030696047469973564, 0.004455323796719313, -0.013300703838467598, -0.0010966553818434477, -0.009577056393027306, -0.005190434865653515, -0.03160291165113449, -0.007502256892621517, -0.04751429334282875, 0.00026707895449362695, -0.04418911784887314, -0.004788528196513653, -0.015348023734986782, -0.024471646174788475, 0.02645026333630085, 0.0022122038062661886, -0.003936623688787222, 0.026944918558001518, 0.012373227626085281, -0.00545493746176362, 0.03506549447774887, -0.01578771509230137, -0.00822362769395113, -0.022946462035179138, 0.015664052218198776, 0.021943414583802223, 0.01018163375556469, 0.016460996121168137, 0.0010056253522634506, 0.05259823799133301, 0.009975528344511986, 0.002607240341603756, -0.020033499225974083, 0.044216595590114594, 0.0007535748882219195, -0.014880849979817867, 0.021173952147364616, -0.025763243436813354, -0.01676328480243683, -0.02498004212975502, -0.017573967576026917, -0.04061661288142204, 0.014922071248292923, 0.012744218111038208, 0.07678133994340897, -0.015086955390870571, -0.018425872549414635, -0.020954106003046036, 0.009130493737757206, 0.03830822557210922, 0.020322047173976898, 0.016378553584218025, -0.010662548243999481, -0.004953413270413876, -0.005008374806493521, -0.0068392823450267315, 0.005630127619951963, -0.013094598427414894, -0.013314444571733475, -0.003357809502631426, 7.339840976783307e-06, -0.010903004556894302, 0.0005706558586098254, 0.014303753152489662, 0.034735724329948425, 0.007557218428701162, 0.0018085797782987356, -0.0014856804627925158, -0.03806089982390404, -0.01670832186937332, 0.038115862756967545, 0.0008325821836479008, -0.02915712259709835, -0.03693418577313423, 0.017628928646445274, 0.008732021786272526, 0.011054148897528648, -0.014853369444608688, 0.021929673850536346, 0.028195293620228767, -0.028415141627192497, 0.001418696017935872, 0.03646701201796532, 0.001822320162318647, 0.007619049865752459, 0.018329689279198647, -0.02587316744029522, -0.03108077682554722, 0.006117911543697119, -0.014399935491383076, -0.0026914002373814583, -0.0009824383305385709, -0.00906866230070591], "cd8cbd8b-e585-4ef7-b12b-413e6b598c04": [-0.01733436807990074, -0.007169067859649658, 0.011273495852947235, -0.011574487201869488, -0.008824520744383335, 0.02897726371884346, -0.0008790317224338651, -0.015583145432174206, 2.191166095144581e-05, -0.015213747508823872, 0.018798280507326126, 0.021151486784219742, -0.012744249776005745, -0.00942650344222784, -0.02592630498111248, 0.0015280444640666246, 0.002303610322996974, -0.011567646637558937, 0.02232808992266655, -0.01377035677433014, 0.0023326834198087454, -0.011252974160015583, -0.018675148487091064, -0.018702510744333267, -0.01766272261738777, 0.024708658456802368, 0.016198810189962387, -0.03127574175596237, 3.382946670171805e-05, 0.020412689074873924, 0.028785722330212593, 0.00669705867767334, -0.010705716907978058, -0.014557038433849812, 0.007257997058331966, 0.004504609853029251, -0.017772173509001732, 0.01099302712827921, 0.03688512742519379, -0.021821876987814903, 0.018209978938102722, 0.014242365956306458, 0.024380303919315338, 0.006755204871296883, -0.031193654984235764, 0.012785294093191624, -0.023997223004698753, -0.004429362248629332, -0.0063892267644405365, 0.0277596153318882, -0.007832617498934269, 0.003933410160243511, -0.03494236618280411, -0.01863410323858261, 0.004969778470695019, 0.0424945130944252, -0.014132914133369923, 0.026405155658721924, -0.011478717438876629, -0.0003580686170607805, 0.01623985357582569, -0.008503006771206856, -0.032206080853939056, -0.006447372492402792, 0.015213747508823872, 0.0036666225641965866, 0.012333806604146957, 0.016828155145049095, 0.0035434896126389503, -0.013948215171694756, 0.01785426214337349, 0.014338135719299316, -0.0045593357644975185, -0.013941374607384205, 0.03691248968243599, -0.0035058658104389906, -0.004959517624229193, 0.010500495322048664, -0.0006840713904239237, -0.004313069861382246, -0.0007977982168085873, -0.006437111645936966, -0.009337574243545532, -0.002866259077563882, 0.01937290094792843, -0.0028542878571897745, -0.01927713118493557, 0.00572225684300065, -0.005824867635965347, -0.033382683992385864, 0.002941506914794445, 0.014789623208343983, 0.01644507609307766, 0.017348049208521843, -0.02145247720181942, -0.010897256433963776, -0.012744249776005745, 0.021288301795721054, -0.00629345653578639, -0.039265695959329605, -0.028019562363624573, 0.015979906544089317, -0.021178849041461945, -0.006146381143480539, -0.042850229889154434, -0.027910111472010612, 0.013982418924570084, -0.011615531519055367, -0.029798148199915886, -0.020426370203495026, -0.016718704253435135, 0.04279550537467003, 0.007189590018242598, -0.043069131672382355, -0.041126370429992676, -0.019017184153199196, 0.00607113353908062, -0.032069265842437744, -0.022847983986139297, -0.011095637455582619, 0.022163912653923035, 0.021151486784219742, 0.00623873108997941, -0.006621810607612133, 0.006830452475696802, 0.008892927318811417, 0.0074495370499789715, -0.010746761225163937, -0.0019547338597476482, -0.025461135432124138, 0.03789755329489708, 0.01487171184271574, 0.013866126537322998, 0.009187078103423119, -0.04148208722472191, 0.0020539243705570698, -0.018565697595477104, -0.015952544286847115, -0.03825327008962631, 0.012388532049953938, 0.005455469246953726, 0.034258294850587845, 0.00866034347563982, -0.026227295398712158, -0.00528445141389966, 0.05141480267047882, 0.012901585549116135, -0.018497290089726448, 0.007791572716087103, 0.0008452556794509292, 0.006084814667701721, -0.02309424988925457, -0.013619860634207726, 0.0016622934490442276, 0.016732385382056236, 0.00990535318851471, 0.012128585018217564, -0.001209951238706708, -0.001281778677366674, 0.0018144992645829916, 0.003615317167714238, 0.013961896300315857, 0.008632980287075043, -0.014406543225049973, -0.012053337879478931, 0.02517382614314556, 0.023367878049612045, -0.011854956857860088, -0.00352638796903193, 0.005869332235306501, 0.005414424929767847, -0.006779147312045097, -0.0015229139244183898, 0.005664111115038395, -0.008968175388872623, 0.008099405094981194, 0.017895307391881943, -0.010863053612411022, -0.0228753462433815, 0.01656820811331272, 0.006532881408929825, -0.007429014891386032, 0.0020539243705570698, 0.031522009521722794, 0.004521711729466915, -0.03179563581943512, 0.005534137133508921, -0.016828155145049095, 0.009358095936477184, -0.019441308453679085, 0.013900330290198326, 0.03669358789920807, 0.010124255903065205, -0.006963846739381552, -0.5704607963562012, -0.026637738570570946, -0.013489887118339539, 0.009009219706058502, 0.028566820546984673, 0.021055717021226883, -0.0011483847629278898, 0.0006943324115127325, -0.009501751512289047, 0.04254923760890961, -0.017785854637622833, 0.02659669518470764, -0.04213879629969597, -0.01214226707816124, 0.027527032420039177, -0.0326438844203949, 0.01926345005631447, -0.019331857562065125, 0.017402775585651398, 0.016513483598828316, -0.023983541876077652, 0.016746066510677338, -0.0018589639803394675, -7.813377305865288e-05, -0.014474949799478054, -0.015514738857746124, -0.013948215171694756, -0.0006554258870892227, 0.022847983986139297, 0.01132822223007679, -0.006608129478991032, 0.01633562333881855, 0.019632847979664803, -0.003953932318836451, 0.05053919181227684, -0.014789623208343983, -0.02699345536530018, 0.031084202229976654, 0.004053122829645872, 0.04531288892030716, -0.018346793949604034, -0.018456244841217995, 0.022300725802779198, -0.014009781181812286, 0.01926345005631447, -0.012545868754386902, 0.008756113238632679, 0.005968522746115923, 0.011622372083365917, 0.016513483598828316, 0.009200760163366795, 0.01018582284450531, -0.003312615677714348, -0.032507073134183884, 0.023573098704218864, 0.011075115762650967, 0.027691209688782692, -0.030017051845788956, 0.011902841739356518, -0.010062689892947674, -0.015377923846244812, 0.010514176450669765, -0.00751794409006834, -0.012778453528881073, 0.0028987524565309286, 0.008085723966360092, 0.0054794116877019405, 0.012409054674208164, -0.003401544876396656, -0.01885300688445568, 0.006190845742821693, -0.007634236477315426, 0.008058360777795315, -0.004665366839617491, 0.0062250494956970215, 0.023135293275117874, 0.0190582275390625, 0.001982096815481782, -0.033929940313100815, 0.017361732199788094, -0.010356840677559376, 0.007682121358811855, 0.009618042968213558, -0.004340433049947023, 0.01540528703480959, 0.005691473837941885, -0.03127574175596237, -0.017129147425293922, 0.002406221115961671, 0.01306576281785965, -0.006402907893061638, 0.031740911304950714, -0.0035913747269660234, -0.023682551458477974, 0.01110247801989317, 0.015747323632240295, -0.006272934377193451, -0.01230644341558218, 0.009330733679234982, -0.02539272978901863, -0.023614143952727318, -0.0026302544865757227, 0.01689656265079975, -0.007182749453932047, 0.06063608452677727, 0.0006438822019845247, -0.016157764941453934, -0.001616118592210114, 0.01024054829031229, -0.004785079043358564, -0.014351816847920418, 0.0027448362670838833, -0.03094738908112049, 0.006300297100096941, 0.03354686126112938, -0.029004625976085663, 0.003714507445693016, 0.0023019001819193363, 0.022820619866251945, 0.004614061210304499, 0.01763536036014557, 0.022150231525301933, 0.04224824905395508, 0.0021103601902723312, 0.009180237539112568, 0.011889160610735416, 0.008906609378755093, -0.013585656881332397, 0.007558988407254219, 0.030126502737402916, -0.00414205202832818, 0.0009671059087850153, 0.002616572892293334, -0.02146616019308567, 0.016431394964456558, -0.0021496943663805723, 0.017033377662301064, -0.014666490256786346, 0.043096497654914856, 0.006936483550816774, -0.0157883670181036, -0.015637870877981186, 0.012279081158339977, -0.005886434111744165, -0.014132914133369923, -0.033273231238126755, -0.005835128948092461, 0.02037164568901062, -0.0023053204640746117, 0.0011381236836314201, -0.012210673652589321, -0.021260937675833702, -0.018155254423618317, 0.031193654984235764, -0.022505948320031166, -0.006344761699438095, -0.03193245083093643, -0.012874223291873932, 0.00025716808158904314, -0.024325577542185783, 0.004159153904765844, 0.0012193572474643588, -0.026733508333563805, 0.014570720493793488, -0.021384071558713913, -0.013996100053191185, 0.005558080039918423, 0.0059137968346476555, -0.0018982980400323868, -0.02329947054386139, -0.008147289976477623, -0.022300725802779198, 0.011636054143309593, 0.006368704605847597, 0.01872987486422062, -0.021000990644097328, -0.014885392971336842, 0.010124255903065205, -0.006334500852972269, -0.01525479182600975, -0.008208855986595154, 0.020221149548888206, 0.010226867161691189, 0.0196054857224226, 0.020193787291646004, 0.026610376313328743, 0.023244744166731834, -0.003509286092594266, -0.03494236618280411, 0.0045080301351845264, -0.004354114178568125, 0.017361732199788094, 0.007620554883033037, 0.02037164568901062, 0.027704890817403793, 0.03726820647716522, 0.010876734741032124, 0.01099302712827921, -0.010548380203545094, 0.016404030844569206, 0.01907191053032875, 0.03289015218615532, -0.013223099522292614, -0.0158020481467247, 0.014611764810979366, -0.01177286822348833, 0.016431394964456558, -0.024352939799427986, 0.006296876817941666, 0.0029175644740462303, -0.02071368135511875, -0.016390349715948105, -0.008619299158453941, -0.007818935438990593, 0.008208855986595154, 0.021301982924342155, 0.0016007269732654095, -0.005735938437283039, -0.006543142721056938, 0.03201454132795334, 0.0027824603021144867, 0.004066804423928261, 0.01829206757247448, -0.009843787178397179, 0.006276354659348726, -0.00487400870770216, -0.006666275672614574, 0.008366192691028118, -0.008947653695940971, -0.0163493063300848, -0.020946266129612923, -7.444620132446289e-05, 0.008489325642585754, 0.01540528703480959, 0.010856212116777897, -0.03650204837322235, 0.021493522450327873, -0.008468803949654102, 0.02134302631020546, -0.00913919322192669, -0.005954841151833534, -0.006871496792882681, -0.0020060392562299967, -0.011909682303667068, 0.015665234997868538, -0.014392861165106297, 0.038307998329401016, 0.020412689074873924, -0.01340095791965723, -0.0027397058438509703, -0.024872835725545883, 0.007381130009889603, -0.0016263796715065837, 0.010014805011451244, -0.00026593272923491895, -0.01258691307157278, 0.0055991243571043015, 0.005588863044977188, 0.01502220705151558, 0.032862789928913116, 0.028183739632368088, 0.03781546652317047, 0.01686920039355755, -0.0008063490968197584, 0.008756113238632679, -0.025953667238354683, 0.006358443293720484, -0.015843093395233154, 0.004655105527490377, -0.001004729769192636, -0.026884004473686218, 0.0053220754489302635, 0.00236688693985343, -0.024216126650571823, 0.026377791538834572, -0.0025550066493451595, 0.03934778645634651, 0.022150231525301933, 0.030591672286391258, -0.0027704890817403793, -0.034477196633815765, -0.027937473729252815, 0.03094738908112049, -0.0026353849098086357, 0.0037281890399754047, 0.014037144370377064, -0.0063550230115652084, -0.013414639048278332, -0.011889160610735416, 0.014064507558941841, 0.005202362779527903, 0.022027097642421722, -0.0006699623772874475, -0.0026849801652133465, -0.023928815498948097, -0.0026182832662016153, 0.023354196920990944, 0.0005827433196827769, -0.013955055736005306, -0.029168803244829178, 0.008851883932948112, -0.008359352126717567, -0.003076610853895545, -0.01860674098134041, 0.04227561131119728, -0.00186580466106534, -0.005684633273631334, -0.026391472667455673, 0.0016092779114842415, 0.005828287918120623, -0.007223793771117926, -0.018770918250083923, 0.009508592076599598, 0.009686450473964214, 0.02525591477751732, 0.009296529926359653, 0.04334276169538498, 0.0026302544865757227, 0.0013766936026513577, 0.018976138904690742, -0.023559417575597763, -0.004207038786262274, -0.024995967745780945, 0.020891539752483368, -0.018141573294997215, 0.038171183317899704, 0.00870822835713625, -0.011150362901389599, -0.032534435391426086, -0.014078188687562943, -0.03124837949872017, 0.0074495370499789715, -0.006974107585847378, -0.008735591545701027, -0.009966920129954815, -0.004066804423928261, 0.02429821528494358, -0.028046926483511925, 0.03661150112748146, 0.003940251190215349, -0.02320370078086853, -0.008933971635997295, 0.02234177105128765, -0.0026661681476980448, 0.026747191324830055, 0.0009457286796532571, 0.01623985357582569, -0.00215140450745821, 0.018661467358469963, 0.011341903358697891, 0.0024831790942698717, 0.020412689074873924, 0.014023463241755962, -0.0013236780650913715, 0.010418406687676907, -0.012080700136721134, 0.015117976814508438, 0.026665102690458298, 0.0038581625558435917, 0.03335531800985336, -0.007873661816120148, 0.03639259561896324, -0.0206863172352314, -0.010370521806180477, 0.009084467776119709, 0.018168935552239418, 0.01632194221019745, -0.004066804423928261, 0.00623873108997941, -0.02472233958542347, 0.0018675148021429777, 0.010555220767855644, 0.0011552255600690842, -0.03800700604915619, 0.03650204837322235, 0.010267911478877068, -0.059541571885347366, -0.02060423046350479, 0.024777064099907875, 0.0686807632446289, -0.04389001801609993, -0.03127574175596237, 0.02156192995607853, -0.007340085692703724, 0.0002768351405393332, -0.005007402505725622, 0.01752590760588646, 0.00133479421492666, -0.013305188156664371, -0.012819497846066952, -0.025680039077997208, 0.008632980287075043, -0.05401427671313286, -0.0026405155658721924, -0.00010458809992996976, -0.05926794186234474, -0.03247970715165138, 0.007859979756176472, 0.013216258957982063, 0.016746066510677338, 0.02843000553548336, -0.006977527868002653, -0.003772653639316559, 0.02187660150229931, -0.021397752687335014, -0.009173396974802017, -0.030345406383275986, -0.027732253074645996, 0.019345538690686226, -0.01666397787630558, -0.0033639208413660526, -0.0044977692887187, -0.0244897548109293, 0.0051750000566244125, -0.012819497846066952, 0.009016060270369053, -0.007620554883033037, 0.01864778622984886, 0.005674371961504221, -0.008482485078275204, 0.03351949527859688, 0.03507918119430542, 0.004959517624229193, -0.00028837882564403117, 0.02002961002290249, -0.04170098900794983, -0.01788162626326084, -0.020221149548888206, -0.01841520145535469, -0.001009005238302052, 0.0359821543097496, -0.002035112353041768, -0.0034579806961119175, 0.0016041473718360066, 0.03256179764866829, -0.023053204640746117, 0.02101467177271843, 0.009816423989832401, 0.01340095791965723, -0.00047970504965633154, -0.004788499791175127, 0.006337921135127544, -0.017908988520503044, -0.010336318053305149, -0.005137376021593809, -0.023600462824106216, 0.04386265575885773, 0.010007964447140694, 0.019879113882780075, 0.01665029674768448, -0.006717580836266279, -0.03081057406961918, -0.007394811604171991, 0.020631592720746994, 0.01929081231355667, 0.017183871939778328, 0.018538333475589752, -0.02440766617655754, -0.009816423989832401, -0.00784629862755537, -0.026377791538834572, 0.02810165099799633, -0.01948235183954239, -0.015925182029604912, -0.0036461004056036472, -0.023792002350091934, -0.01654084585607052, -0.02864890918135643, 0.03037276864051819, -0.03247970715165138, 0.004398578777909279, 0.020973628386855125, 0.004723512567579746, 0.011307699605822563, 0.019085591658949852, 0.0031056839507073164, -0.040250759571790695, -0.03631050884723663, -0.0017247148789465427, -0.010281592607498169, -0.016075676307082176, 0.009713813662528992, 8.892927871784195e-05, 0.01600727066397667, 0.04966358095407486, 0.004600380081683397, 0.008345670998096466, 0.011300859041512012, -0.010035326704382896, -0.000910670030862093, 0.00615322170779109, 0.003584533929824829, 0.007764209993183613, -0.022136548534035683, 0.004641424398869276, 0.0006562809576280415, 0.025406410917639732, 0.0010072950972244143, 0.0012022553710266948, 0.03888261690735817, -0.02593998610973358, -0.006040350068360567, -0.0030971330124884844, -0.06851658970117569, -0.018251024186611176, 0.008927131071686745, 0.006549983285367489, 0.0047064111568033695, -0.02537904679775238, -0.023231063038110733, 0.018921414390206337, 0.010630468837916851, 0.036201056092977524, 0.018209978938102722, 0.008051520213484764, -0.012032815255224705, 0.013195736333727837, -0.004569596610963345, 0.011882320046424866, -0.031877726316452026, 0.026747191324830055, -0.010733080096542835, 0.028512094169855118, -0.0015314647462219, -0.006023248191922903, 0.016841836273670197, 0.006943324580788612, 0.033711038529872894, -0.009966920129954815, 0.026774553582072258, -0.010698876343667507, -0.03070112317800522, -0.017566952854394913, -0.021288301795721054, -0.028676271438598633, -0.021206213161349297, -0.01937290094792843, -0.018346793949604034, 0.02104203589260578, 0.009966920129954815, 0.013462524861097336, -0.0008029287564568222, -0.02526959590613842, -0.0067210011184215546, -0.014816985465586185, -0.006461054086685181, 0.03874580189585686, 0.004815862514078617, 0.00942650344222784, 0.04183780401945114, 0.008400396443903446, -0.0022830881644040346, -0.049034234136343, -0.015815729275345802, 0.0024079312570393085, 0.012067019008100033, 0.055163513869047165, -0.031522009521722794, -0.028183739632368088, 0.021055717021226883, 0.009132352657616138, -0.017170190811157227, -0.028703633695840836, 0.021520884707570076, 0.02745862491428852, -0.00942650344222784, -0.02376464009284973, 0.00566753139719367, -0.01507693249732256, 0.011136681772768497, -0.014762260019779205, 0.005493093281984329, 0.010021645575761795, -0.011937045492231846, -0.02559795044362545, 0.008913449943065643, 0.007914706133306026, 0.009009219706058502, -0.0015254791360348463, 0.017717448994517326, 0.001451086369343102, -0.010938300751149654, -0.03442247211933136, 0.00866034347563982, -0.003009913954883814, 0.021644018590450287, -0.006358443293720484, -0.008756113238632679, 0.029989689588546753, 0.0019752560183405876, 0.0035195471718907356, -0.02221863716840744, -0.008366192691028118, 0.0555192306637764, -0.02713027037680149, -0.006936483550816774, -0.027800660580396652, -0.02636411041021347, 0.018770918250083923, -0.01148555800318718, -0.0027704890817403793, 0.001544291153550148, -0.03179563581943512, 0.005113433580845594, 0.010979345068335533, -0.03357422351837158, 0.010350000113248825, -0.011068274267017841, -0.012853700667619705, -0.007989953272044659, -0.02971605956554413, 0.008646662347018719, 0.01611672155559063, -0.04063383862376213, -0.0250643752515316, 0.00528445141389966, -0.014775941148400307, -0.0011329931439831853, 0.015651552006602287, -0.0005040750838816166, -0.0007400797330774367, 0.05609385296702385, -0.03351949527859688, 0.014146596193313599, -0.00903658289462328, 0.007531625684350729, -0.013462524861097336, 0.0027448362670838833, -0.018579378724098206, -0.0016067125834524632, 0.009611202403903008, -0.00014974750229157507, -0.0052981325425207615, -0.02387409098446369, 0.010589424520730972, 0.026952411979436874, 0.017033377662301064, 0.047447189688682556, 0.018784599378705025, -0.002910723676905036, 0.007702643517404795, 0.008448281325399876, -0.03409411758184433, 0.009789060801267624, 0.0033639208413660526, 0.01383192278444767, 0.0025789490900933743, -0.010780964978039265, 0.011198248714208603, -0.0022933492437005043, -0.0016315102111548185, -0.0007918126066215336, -0.021657699719071388, -0.014091869816184044, 0.010322636924684048, -0.005975363310426474, -0.01841520145535469, 0.0006746653816662729, -0.02234177105128765, -0.011663416400551796, -0.04487508162856102, -0.0020231411326676607, 0.019359219819307327, -0.01753959059715271, 0.01971493661403656, 0.017156509682536125, 0.0034357483964413404, -0.010856212116777897, -0.0017033376498147845, -0.023135293275117874, 0.013031559064984322, -0.0035674322862178087, -0.0228890273720026, -0.023928815498948097, -0.0141602773219347, 0.03543489798903465, 0.012491143308579922, -0.01710178330540657, -0.015268472954630852, -0.005660690367221832, -0.019687574356794357, -0.006054031662642956, -0.006324240006506443, 0.018880369141697884, 0.011499240063130856, 0.005229725502431393, -0.0003240788064431399, 0.024530800059437752, -0.0007494856836274266, -0.004538813605904579, 0.0006387516623362899, -0.00855773314833641, -0.03072848543524742, -0.0024677873589098454, -0.022464903071522713, 0.0010466291569173336, -0.008106245659291744, -0.0012963152257725596, -0.010644150897860527, 0.012450098991394043, 0.016417711973190308, 0.025242233648896217, -0.003148438408970833, -0.03650204837322235, -0.014816985465586185, -0.02253331057727337, -0.03390257805585861, -0.0012492852983996272, -0.013442002236843109, -0.020070653408765793, -0.011519761756062508, 0.01258007250726223, -0.02201341651380062, -0.017703767865896225, 0.00509633170440793, 0.018059484660625458, 0.0016255246009677649, 0.008756113238632679, -0.05926794186234474, -0.021917646750807762, -0.010541539639234543, -0.006478155963122845, -0.002226652344688773, -0.01588413678109646, 0.0005925768055021763, 0.018100528046488762, 0.005780403036624193, 0.018456244841217995, -0.0008054940262809396, 0.021808195859193802, -0.01589781790971756, -0.007600032724440098, 0.03570852428674698, -0.005417845211923122, 0.007921546697616577, -0.0040907468646764755, 0.012320125475525856, -0.020399007946252823, 0.006809930317103863, 0.02038532681763172, -0.009104989469051361, -0.043725840747356415, 0.005677792243659496, 0.0039163087494671345, -0.040031857788562775, -0.014392861165106297, 0.0008610748336650431, -0.014584401622414589, -0.006447372492402792, -0.04758400470018387, 0.0212335754185915, -0.045477066189050674, 0.029579246416687965, 0.0004933864693157375, -0.0032732815016061068, -0.042302973568439484, -0.002165085868909955, -0.013701949268579483, -0.03538016974925995, 0.010007964447140694, 0.27406635880470276, -0.02221863716840744, -0.0022694068029522896, 0.020672636106610298, 0.015761004760861397, 0.020850494503974915, 0.0020693158730864525, 0.015514738857746124, -0.011827593669295311, 0.025885259732604027, -0.00036106142215430737, -0.010267911478877068, -0.0054281060583889484, -0.015377923846244812, 0.025433773174881935, 0.002125751692801714, -0.043397486209869385, -0.03302696719765663, -0.034805551171302795, -0.0022745372261852026, 0.0068680765107274055, 0.01688288152217865, -0.001700772438198328, -0.010281592607498169, 0.010541539639234543, 0.011629213578999043, -0.016828155145049095, 0.0062353103421628475, -0.006785987876355648, 0.007251156494021416, -0.024900197982788086, 0.009447025135159492, 0.004856906831264496, -0.004709831438958645, -0.018593059852719307, -0.013141010887920856, 0.028621545061469078, 0.02689768560230732, 0.026884004473686218, 0.0034442993346601725, 0.008872405625879765, -0.00860561802983284, 0.021206213161349297, -0.022519629448652267, -0.0019496034365147352, 0.00314330798573792, 0.007203271612524986, -0.01110931858420372, 0.00032578897662460804, 0.012162788771092892, -0.023559417575597763, -0.00457301689311862, 0.034039389342069626, 0.02971605956554413, -0.009050264023244381, 0.002308740746229887, 0.021507203578948975, -0.00936493743211031, 0.019427627325057983, 0.040907468646764755, -0.005151057615876198, 0.03324586898088455, -0.01177286822348833, 0.038718439638614655, -0.0261315256357193, -0.013209418393671513, -0.0283205546438694, -0.01502220705151558, -0.00683729350566864, -0.02027587592601776, -0.0012552709085866809, -0.01786794327199459, 7.488711162295658e-06, 0.0028542878571897745, -0.03940251097083092, -0.0337931253015995, 0.05360383167862892, -0.002519092755392194, 0.014256047084927559, 0.04326067492365837, 0.027855386957526207, 0.020973628386855125, 0.009706973098218441, 0.007271678652614355, -0.03102947771549225, -0.021644018590450287, -0.0024130616802722216, -0.0006571360281668603, -0.023012161254882812, 0.00985746830701828, 0.0008106245659291744, -0.028265828266739845, 0.00645421352237463, -0.017156509682536125, 0.0014476659707725048, 0.005458889529109001, -0.00628661597147584, 0.006300297100096941, 0.0016905113589018583, -0.018593059852719307, -0.0114445136860013, 0.02569372020661831, 0.0095222732052207, 0.007387970574200153, -0.017402775585651398, 0.002879940439015627, 0.006307138130068779, -0.005417845211923122, 0.011164044961333275, -0.014050825498998165, -0.0016050024423748255, -0.055710773915052414, 0.007531625684350729, 0.011177726089954376, -0.025898942723870277, -0.0002528926415834576, -0.019017184153199196, -0.023915134370326996, -0.00451829144731164, 0.00052032177336514, 0.03423093259334564, -0.009734335355460644, -0.004097587428987026, -0.003967613913118839, -0.013886649161577225, -0.0348602756857872, -0.009871149435639381, -0.009358095936477184, 3.8933281757635996e-05, -0.012135425582528114, 0.03072848543524742, -0.026377791538834572, 0.01755327172577381, -0.004535393323749304, -0.00016225317085627466, -0.005486252252012491, -0.004241242539137602, -0.010308955796062946, -0.0006323384586721659, 0.0030595092102885246, -0.007476900238543749, 0.01689656265079975, -0.009713813662528992, -0.0019478931790217757, 0.013975578360259533, -0.005845389794558287, -0.000429896084824577, 0.004039441235363483, 0.00865350291132927, 0.007989953272044659, -0.028402643278241158, -0.006361863575875759, -0.00990535318851471, 0.008687706664204597, 0.03880052641034126, 0.016855519264936447, -0.02732180990278721, -0.043178584426641464, -0.002272827085107565, 0.009132352657616138, -0.02941506914794445, -0.007381130009889603, 0.005503354128450155, -0.005906956270337105, -0.016267217695713043, -0.020412689074873924, -0.17282378673553467, 0.028293192386627197, 0.032862789928913116, -0.031412556767463684, 0.017074421048164368, 0.005376800894737244, 0.023449966683983803, -0.016814474016427994, 0.001959864515811205, -0.03726820647716522, 0.03237025812268257, 0.017361732199788094, -0.0014408252900466323, -0.006789408158510923, -0.013312028720974922, -0.010213185101747513, -0.03431301936507225, 0.010158459655940533, 0.04391738027334213, 8.727254316909239e-05, 0.04049702361226082, -0.021370388567447662, -0.011882320046424866, 0.032835423946380615, 0.00913919322192669, 0.006662854924798012, -0.028375281020998955, 0.004193357657641172, -0.01938658207654953, -0.022834302857518196, -0.010117415338754654, 0.013640383258461952, 0.005879593547433615, -0.002710632747039199, 0.021753469482064247, 0.008393555879592896, 0.027828022837638855, -0.01632194221019745, -0.022629080340266228, 0.001388664823025465, -0.00303556676954031, 0.03417620435357094, 0.01106143370270729, 0.003304064739495516, -0.021165167912840843, 0.022081824019551277, 0.011129841208457947, -0.006036929786205292, -0.001750367577187717, 0.015145340003073215, 0.017498545348644257, -0.05064864456653595, 0.011170885525643826, -0.00937177799642086, 0.00555465929210186, 0.015172703191637993, -0.0036666225641965866, -0.00743585592135787, -0.017772173509001732, -0.009173396974802017, -0.008933971635997295, -0.024462392553687096, 0.021384071558713913, 0.0010594555642455816, -0.01927713118493557, -0.00909130834043026, -0.024900197982788086, 0.04512134566903114, 0.00473377387970686, 0.0048295436426997185, 0.014967481605708599, -0.025228552520275116, -0.02702081948518753, -0.0087150689214468, 0.02254699170589447, 0.006447372492402792, -0.014023463241755962, 0.01503588818013668, 0.01339411735534668, -0.0065294611267745495, -0.011827593669295311, 0.05576549842953682, 0.011081956326961517, -0.001009005238302052, -0.011362425051629543, 0.007196430582553148, 0.014899074099957943, 0.004165994469076395, -0.039594050496816635, -0.018538333475589752, 0.04334276169538498, -0.005014243070036173, -0.01818261668086052, -0.0028765201568603516, -0.016253536567091942, 0.016732385382056236, 0.003464821493253112, 0.0004921038635075092, -0.006628651637583971, 0.00032771294354461133, -0.010220026597380638, 0.0011039201635867357, -0.02656933106482029, 0.013701949268579483, 0.005564920604228973, 0.021000990644097328, -0.015145340003073215, 0.024051949381828308, 0.02537904679775238, -0.012470620684325695, 0.028922537341713905, 0.0028508673422038555, 0.012887904420495033, 0.006683377083390951, 0.010083211585879326, 0.012368010357022285, -0.02113780565559864, -0.011280336417257786, -0.004590118769556284, -0.0029534781351685524, -0.01785426214337349, -0.026487242430448532, 0.03475082665681839, 0.03529808297753334, -0.01949603483080864, -0.004726933315396309, -0.058994315564632416, -0.0010141357779502869, 0.017731130123138428, 0.027308128774166107, 0.005106592550873756, 0.021069398149847984, 0.007805254310369492, 0.04848697781562805, -0.015555783174932003, 0.027595438063144684, -0.0031586994882673025, -0.01410555187612772, 0.007524785120040178, 0.011465036310255527, -0.0048295436426997185, 0.010534699074923992, -0.015528419986367226, -0.01220383308827877, -0.00036084765451960266, 0.028293192386627197, -0.010479973629117012, -0.0048295436426997185, 0.013353073038160801, -0.023340515792369843, 0.023395240306854248, -0.0005985624738968909, -0.00708013866096735, 0.01540528703480959, 0.01841520145535469, -0.004436202812939882, 0.01105459313839674, -0.03102947771549225, 0.0015263342065736651, -0.021315664052963257, 0.016855519264936447, 0.00030783211695961654, -0.04120846092700958, -0.02407931163907051, 0.01421500276774168, -0.002089838031679392, 0.018579378724098206, 0.004590118769556284, -0.00593773927539587, -0.0007340940646827221, -0.018346793949604034, -0.01138294767588377, -0.008475644513964653, 0.03472346439957619, -0.024763382971286774, -0.006898859515786171, -0.02276589535176754, 0.013127329759299755, -0.02178083173930645, 0.0012415895471349359, 0.016253536567091942, 0.009741175919771194, 0.028813086450099945, 0.017019694671034813, -0.017895307391881943, -0.005616225767880678, -0.0018367315642535686, 0.007914706133306026, -0.009549636393785477, 0.014338135719299316, 0.023272108286619186, 0.0138798076659441, -0.037979643791913986, -0.014967481605708599, 0.009966920129954815, -0.001812789123505354, -0.0014519414398819208, 0.007394811604171991, 0.00794890895485878, 0.03324586898088455, -0.03803436830639839, -0.0081746531650424, -0.029114076867699623, -0.04000449180603027, 0.03256179764866829, -0.0010184112470597029, 0.001915399800054729, -0.004887689836323261, -0.016294579952955246, -0.01994752138853073, 0.025981031358242035, 0.01970125548541546, -0.013099966570734978, -0.0007003180799074471, -0.0026439358480274677, -0.04254923760890961, -0.003793175797909498, 0.016964970156550407, 0.005493093281984329, -0.01795003190636635, -0.030126502737402916, -0.010910938493907452, 0.024010904133319855, -0.0008790317224338651, -0.006830452475696802, 0.013996100053191185, -0.027294447645545006, -0.03193245083093643, -0.07743687927722931, 0.008304626680910587, -0.01306576281785965, -0.014858029782772064, 0.01410555187612772, 0.006505518686026335, 0.03308169171214104, 0.0025550066493451595, 0.024380303919315338, -0.01340095791965723, -0.019195042550563812, 0.02201341651380062, -0.007203271612524986, 0.009440184570848942, -0.022724850103259087, -0.008783476427197456, 0.015227428637444973, 0.012559549883008003, 0.017047058790922165, 0.0036666225641965866, 0.015925182029604912, -0.000828153919428587, 0.00531181413680315, -0.002727734623476863, -0.03072848543524742, 0.02242385968565941, 0.005400743335485458, 0.019564440473914146, 0.00710750138387084, -0.011902841739356518, 0.003334847977384925, -0.004785079043358564, -0.0019478931790217757, 0.002106939908117056, -0.01301103737205267, -0.013756674714386463, 0.01181391254067421, 0.00833198893815279, 0.029168803244829178, 0.0195918045938015, -0.018442563712596893, -0.016718704253435135, 0.007045934908092022, -0.01095198281109333, -0.016964970156550407, -0.006337921135127544, 0.004969778470695019, -0.008933971635997295, 0.011123000644147396, -0.0021086500491946936, 0.031303104013204575, 0.017047058790922165, -0.0114445136860013, -0.025187507271766663, -0.005318654701113701, -0.03466873615980148, 0.02603575587272644, -0.02418876439332962, -0.0022027099039405584, 0.005616225767880678, 0.035790614783763885, -0.00397445447742939, 0.024366622790694237, 0.007579510565847158, -0.0026439358480274677, -0.006553403567522764, -0.006762045435607433, -0.007394811604171991, -0.0014519414398819208, -0.023997223004698753, -0.016486119478940964, 0.0037110871635377407, 0.006115598138421774, -0.008434600196778774, 0.031658824533224106, 0.012087540701031685, 0.00039654760621488094, -0.01264163851737976, -0.0056196460500359535, 0.021329345181584358, 0.034258294850587845, -0.0028508673422038555, -0.04085274040699005, 0.011560806073248386, 0.015774685889482498, 0.00753846624866128, -0.011519761756062508, -0.006929642986506224, -0.011622372083365917, -0.006464474368840456, -0.012012293562293053, 0.0024216126184910536, 0.013866126537322998, 0.019660210236907005, 0.014379180036485195, 0.020426370203495026, 0.018661467358469963, -0.031221017241477966, 0.030318042263388634, 0.010014805011451244, 0.027951156720519066, -0.019003503024578094, -0.0021086500491946936, -0.02886781096458435, -0.039812952280044556, -0.02702081948518753, -0.00411468930542469, -0.02778697945177555, -0.015282154083251953, 0.0047064111568033695, -0.0038957863580435514, 0.009843787178397179, -0.019537078216671944, 0.028484731912612915, -0.026500925421714783, -0.00236688693985343, -0.0070254127494990826, -0.02547481842339039, -0.028129015117883682, 0.0029620290733873844, 0.027089226990938187, 0.0037213482428342104, 0.017279643565416336, -0.001339069684036076, 0.04772081971168518, -0.0013997810892760754, -0.0020282715559005737, -0.030892662703990936, 0.014009781181812286, -0.0016255246009677649, -0.012669001705944538, 0.0018589639803394675, -0.012155948206782341, -0.02897726371884346, -0.010206344537436962, -0.003254469484090805, -0.005650429520756006, -0.006950165145099163, -0.024339258670806885, 0.07497422397136688, -0.0008375598699785769, 0.012846860103309155, 0.00039163086330518126, -0.02080945111811161, -0.0033724717795848846, -0.003598215291276574, 0.017238598316907883, 0.008482485078275204, -0.018770918250083923, -0.009501751512289047, 0.0011056303046643734, -0.0212472565472126, -0.018593059852719307, 0.007429014891386032, -0.0008935682126320899, -0.013872967101633549, 0.03548962250351906, 0.016404030844569206, 0.01774481125175953, 0.04419101029634476, 0.02462656982243061, 0.008530369959771633, 0.011506080627441406, -0.00743585592135787, -0.015938863158226013, 0.014050825498998165, -0.018770918250083923, 0.016486119478940964, -0.013414639048278332, 0.008359352126717567, 0.007264838088303804, -0.016581889241933823, -0.02396986074745655, -0.015090614557266235, 0.02027587592601776, -0.0021770570892840624, -0.005513615440577269, 0.029798148199915886, -0.007873661816120148, 0.01711546629667282, 0.004118109587579966, -0.028265828266739845, -0.015295836143195629, -0.00683729350566864, -0.0012125164503231645, -0.009166556410491467, -0.01722491718828678, -0.022464903071522713], "2842b791-dc81-4391-ae53-183965f45efb": [-0.012906248681247234, -0.018459340557456017, 0.0012996598379686475, -0.004976237658411264, -0.013649904169142246, 0.013642953708767891, -0.01212089229375124, -0.028370115906000137, -0.008235813118517399, -0.003648777725175023, 0.011863740161061287, 0.00802731141448021, -0.01305219903588295, -0.021559063345193863, -0.02168416418135166, -0.011884590610861778, -0.007499107159674168, -0.007057778537273407, 0.004580084700137377, -0.004965812899172306, 0.008548565208911896, 0.015971221029758453, 0.009980276226997375, -0.02799481339752674, 0.003968480043113232, 0.01623532362282276, 0.0020137778483331203, -0.036946482956409454, 0.0041457065381109715, 0.0014308420941233635, 0.031164037063717842, -0.009167119860649109, -0.018459340557456017, -0.03647387772798538, 0.0017036317149177194, 0.011120084673166275, 0.01542911771684885, 0.008722316473722458, 0.014581210911273956, 0.01054322998970747, 0.0313030369579792, 0.020419254899024963, 0.004392433445900679, 0.007721508853137493, -0.024895088747143745, 0.01777823455631733, -0.01693032868206501, -0.008131561800837517, -0.00021566882787737995, 0.024853389710187912, 0.023908181115984917, 0.015039914287626743, -0.016874728724360466, -0.036668479442596436, 0.007846609689295292, 0.0215451642870903, -0.02927362360060215, 0.002484643831849098, -0.010932433418929577, -0.015734920278191566, 0.012259893119335175, 0.014185057953000069, -0.018876343965530396, 0.008402613922953606, -0.015540318563580513, 0.00954937282949686, -0.010230477899312973, 0.022281870245933533, -0.0005798950442112982, -0.0068736025132238865, 0.030747033655643463, 0.0030892984941601753, 0.009326971136033535, 0.011669138446450233, 0.031219637021422386, 0.004812911618500948, -0.011398086324334145, 0.016026822850108147, -0.007513007149100304, 0.01298964861780405, -0.001973815029487014, -0.01952964812517166, 0.0025524068623781204, -0.005542667116969824, 0.012016641907393932, 0.0013717666734009981, -0.019557448104023933, 0.021586865186691284, 0.023741381242871284, -0.02681330405175686, 0.023783080279827118, 0.0073601058684289455, 0.00498666288331151, 0.0073253558948636055, 0.006081296131014824, 0.025492794811725616, -0.01852884143590927, 0.021350562572479248, 0.0013187725562602282, -0.01738903298974037, -0.013677704147994518, 0.02080845832824707, -0.0016897316090762615, -0.010237428359687328, -0.03224824368953705, -0.026729904115200043, 0.01637432537972927, 0.019835451617836952, 0.01762533374130726, 0.010188777931034565, 0.003125786315649748, 0.04909517243504524, -0.026020998135209084, -0.05048518255352974, -0.01104363426566124, -0.011133984662592411, 0.014887013472616673, -0.026034899055957794, -0.002038103062659502, 0.00940342154353857, 0.019724249839782715, 0.020586056634783745, 0.013858405873179436, -0.005688618402928114, 0.017528032884001732, 0.02842571586370468, 0.004361158236861229, -0.024742187932133675, -0.014998214319348335, -0.024867288768291473, 0.00904201902449131, 0.01505381427705288, 0.020113453269004822, 0.013184250332415104, -0.02627119980752468, -0.013962656259536743, -0.01780603639781475, -0.007839659228920937, -0.01966864988207817, 0.018598342314362526, -0.002046790672466159, 0.026438001543283463, -0.02698010578751564, -0.019029244780540466, 0.012746397405862808, 0.034944865852594376, -0.005097863730043173, -0.023935982957482338, -0.007002178113907576, -0.009535472840070724, 0.018028438091278076, -0.004906737245619297, 0.0035966522991657257, -0.014115557074546814, -0.0014438735088333488, 0.0016176247736439109, -5.739223342970945e-05, 0.01427540834993124, 0.000552963581867516, -0.007179404608905315, -0.0034802390728145838, -0.0042464821599423885, -0.022726673632860184, -0.024352984502911568, 0.012391944415867329, 0.016819128766655922, 0.023310476914048195, 0.005608692765235901, -0.009153219871222973, 0.022128967568278313, 0.0010121014202013612, 0.008173261769115925, -0.02183706685900688, 0.014442210085690022, 0.019112644717097282, 0.004917162470519543, -0.0068110516294837, 0.011717788875102997, -0.03316565230488777, 0.009841274470090866, -0.002825196599587798, -0.0034211636520922184, -0.02656310237944126, 0.010786482132971287, -0.018987543880939484, -0.023630179464817047, 0.007064728997647762, 0.0008791816653683782, 0.027522210031747818, 0.02424178458750248, 0.018681742250919342, 0.027786310762166977, -0.001330935163423419, -0.007999510504305363, -0.5902540683746338, -0.02339387871325016, 0.005806769244372845, 0.007652008440345526, 0.0059110200963914394, 0.027619510889053345, 0.002646232722327113, 0.024589287117123604, -0.016958128660917282, 0.04386873543262482, -0.020905759185552597, 0.022017767652869225, -0.01996055245399475, -0.009639723226428032, 0.005872794892638922, -0.022351369261741638, 0.013823655433952808, -0.03519506752490997, -0.029440423473715782, -0.007033453322947025, -0.03058023191988468, 0.011210435070097446, -0.011078384704887867, -0.00016756143304519355, 0.02810601331293583, 0.015262315981090069, -0.010577980428934097, -0.011787289753556252, 0.022309670224785805, 0.03069143369793892, -0.02339387871325016, 0.02899562008678913, 0.015276215970516205, -0.017124930396676064, 0.04792756587266922, -0.009737024083733559, -0.03488926589488983, 0.025617895647883415, -0.015026014298200607, 0.038503292948007584, -0.036668479442596436, -0.008173261769115925, 0.01866784133017063, -0.0008235812420025468, -0.012808947823941708, 0.005351540632545948, 0.006626875605434179, -0.0347224660217762, -0.01865394227206707, 0.009396471083164215, -0.011418936774134636, 0.02265717275440693, 0.011988840997219086, 0.003040648065507412, 0.018695643171668053, -0.002486381446942687, 0.013865355402231216, -0.013177299872040749, -0.005226439796388149, -0.005660817958414555, -0.01119653508067131, -0.0019390647066757083, -0.014831412583589554, -0.016582826152443886, -0.0019964026287198067, -0.0029711476527154446, -0.021030860021710396, -0.006109096575528383, -0.008166312240064144, -0.024297384545207024, 0.01636042445898056, -0.019126545637845993, 0.018445439636707306, 0.0041318065486848354, 0.011780339293181896, 0.05679583176970482, 0.00781880971044302, -0.02224016934633255, -0.022810073569417, 0.016985928639769554, -0.003638352733105421, -0.009500722400844097, -0.01448391005396843, 0.0073323058895766735, 0.026173898950219154, -0.014115557074546814, -0.0078257592394948, -0.007665908429771662, 0.01111313421279192, 0.008256662636995316, 0.0003620543284341693, 0.04681555554270744, 0.000825753144454211, -0.03705768287181854, -0.00531331542879343, 0.00875011645257473, -0.007380956318229437, -0.01865394227206707, 0.013100849464535713, 0.0035236768890172243, -0.03260964900255203, 0.005469691473990679, 0.014233708381652832, -0.02828671596944332, 0.024422485381364822, -0.024491986259818077, -0.020599957555532455, 0.019474048167467117, 0.021475663408637047, -0.008013411425054073, -0.030302230268716812, 0.015554218553006649, -0.0018469765782356262, -3.682034957819269e-06, 0.03158104047179222, -0.03786388784646988, 0.014720211736857891, 0.008353963494300842, 0.009709224104881287, -0.004934537690132856, 0.009181019850075245, 0.007130754180252552, 0.029218021780252457, -0.006818002089858055, 0.0018556640716269612, 0.025770796462893486, 0.02868981845676899, -0.013531752862036228, -0.020405355840921402, -0.004750361200422049, -0.012496194802224636, 0.02066945657134056, 0.01062663085758686, -0.006546949967741966, 0.01996055245399475, 0.013066099025309086, -0.00044740966404788196, -0.02470048889517784, 0.024575386196374893, 0.0020242028404027224, 0.001750544528476894, -0.011731688864529133, 0.00659560039639473, -0.014226757921278477, 0.004885887261480093, -0.026438001543283463, -0.005156939383596182, 0.0037773537915199995, 0.0004986663116142154, -0.013003548607230186, 0.008951667696237564, 0.008062060922384262, -0.018751243129372597, 0.02068335749208927, 0.01340665202587843, -0.0023595429956912994, -0.001100714667700231, -0.012704696506261826, 0.0005681668408215046, -0.0062098721973598, 0.0013300663558766246, 0.0033499253913760185, -0.019474048167467117, -0.00021175942674744874, -0.019432347267866135, -0.01484531257301569, -0.01233634352684021, 0.03071923367679119, -0.00020828440028708428, -0.049984779208898544, -0.024339085444808006, -0.01622142270207405, -0.00015952542889863253, -0.004680860787630081, -0.015748819336295128, 0.010126227512955666, -0.03069143369793892, 0.004871987272053957, 0.010369478724896908, 0.011544037610292435, 0.011328586377203465, 0.005810244008898735, -0.0055530923418700695, -0.004427183885127306, 0.02379698120057583, 0.009271370247006416, 0.028662018477916718, 0.002204904332756996, -0.012315494008362293, 0.022740572690963745, -0.018848543986678123, 0.026020998135209084, 0.005591317545622587, 0.005184739362448454, 0.017597533762454987, -0.004858086816966534, 0.0318034403026104, 0.019738150760531425, 0.011648288927972317, 0.014087757095694542, 0.025034090504050255, 0.04331272840499878, 0.008353963494300842, -0.011161784641444683, 0.01909874565899372, -0.025770796462893486, 0.02525649219751358, -0.02037755586206913, -0.014609010890126228, 0.0017192693194374442, -0.00802731141448021, -0.013761105015873909, -0.021336661651730537, -0.009479871951043606, 0.02354677952826023, -0.010438979603350163, -0.016972029581665993, -0.012795047834515572, -0.009994176216423512, 0.010160977020859718, -0.002121503697708249, -0.004910212475806475, 0.030635833740234375, -0.02969062514603138, -0.005073538515716791, 0.005723368376493454, -0.0016932066064327955, 0.0006011795485392213, 0.012767246924340725, -0.010279128327965736, -0.0157766193151474, -0.006147321779280901, 0.010202677920460701, -0.002034628065302968, 0.014331009238958359, -0.011683039367198944, 0.022865673527121544, -0.038670092821121216, 0.01751413382589817, 0.002953772433102131, 0.008576365187764168, -0.0038781294133514166, 0.013219000771641731, -0.019126545637845993, 0.01980765163898468, -0.006008320953696966, 0.05434941500425339, 0.03266524896025658, 0.0019442773191258311, 0.005355015862733126, -0.0046565355733036995, 0.0007427869131788611, -0.028147714212536812, 0.038948096334934235, 9.371712076244876e-05, -0.038503292948007584, 0.007186354603618383, 0.0034211636520922184, 0.031025035306811333, 0.03864229470491409, 0.025770796462893486, 0.049567777663469315, 0.011787289753556252, 0.007624207995831966, -0.003315175184980035, -0.03058023191988468, -0.008103761821985245, -0.035056065768003464, 0.011502337642014027, -0.014678511768579483, -0.025423293933272362, -0.002048528054729104, 0.005118714179843664, -0.0217953659594059, 0.02296297438442707, 0.007658958435058594, -0.006432273890823126, 0.017111029475927353, 0.028912220150232315, -0.024742187932133675, -0.024964589625597, -0.026201698929071426, 0.021753665059804916, 0.0067485012114048, 0.009472922421991825, 0.0018035387620329857, -0.015595918521285057, -0.0025454568676650524, -0.0009556322474963963, 0.003132736310362816, 0.021920466795563698, -0.0020050902385264635, 0.0006976115400902927, 0.0020103028509765863, -0.009382571093738079, -0.016985928639769554, 0.023338276892900467, -0.002467268845066428, 0.003301275195553899, -0.010911582969129086, 0.00695700291544199, -0.004931062459945679, 0.0006637300248257816, -0.02168416418135166, 0.026646502315998077, 0.0069153024815022945, 0.003822528989985585, -0.006536524742841721, 0.016735726967453957, -0.020725058391690254, 0.0017731322441250086, -0.013079999946057796, -0.0004159172240179032, -0.008270562626421452, 0.006300223059952259, -0.0009469446958974004, -0.006936152931302786, 0.012259893119335175, 0.019626948982477188, 0.01132163591682911, -0.014706311747431755, -0.015971221029758453, -0.02756390906870365, 0.012259893119335175, -0.0073184059001505375, 0.018459340557456017, 0.006279372610151768, 0.019696449860930443, -0.02225407026708126, -0.02522869221866131, -0.03619587421417236, 0.009604972787201405, 0.01391400583088398, -0.030663633719086647, -0.032943252474069595, 0.017319532111287117, 0.015012114308774471, -0.016694027930498123, 0.0029641976580023766, 0.005994420498609543, -0.015095515176653862, 0.0011710838880389929, 0.018501041457057, -0.011926290579140186, 0.014942613430321217, 0.006494824308902025, 0.02351897954940796, -0.007241955026984215, 0.0315532386302948, 0.0024412060156464577, 0.02969062514603138, 0.04161691665649414, 0.03372165560722351, -0.007165504619479179, 0.0014021731913089752, -0.0036696279421448708, -3.0895156669430435e-05, 0.00847211480140686, -0.008367863483726978, 0.012725546956062317, 0.033499255776405334, 0.07639498263597488, 0.016151923686265945, 0.006616450380533934, 0.009542422369122505, 0.020043952390551567, 0.011210435070097446, -0.010849032551050186, 0.005824144463986158, -0.03374945744872093, -0.018473241478204727, 0.016249224543571472, -0.02039145492017269, -0.010557129979133606, 0.035500869154930115, 0.016958128660917282, -0.04951217770576477, -0.012683846987783909, -0.014720211736857891, 0.04136671498417854, -0.01118958555161953, -0.02239307016134262, 0.016471626237034798, -0.027049606665968895, -0.00847211480140686, 0.007096004206687212, 0.009139319881796837, -0.00581719446927309, -0.00875011645257473, -0.01649942621588707, -0.005368915852159262, -0.0036904781591147184, -0.03919829800724983, -0.006984803359955549, 0.02755001001060009, -0.04292352497577667, -0.022893473505973816, 0.02479778788983822, 0.014247608371078968, 0.0019790276419371367, 0.025061890482902527, 0.0005768543924205005, -0.00138914177659899, 0.01908484473824501, 0.0013457039603963494, -0.015192816033959389, -0.003014585468918085, -0.02565959468483925, 0.012148692272603512, -0.016429925337433815, 0.015526418574154377, 0.002124978695064783, -0.017722634598612785, 0.012947948649525642, 0.017027629539370537, -0.008402613922953606, 0.02570129558444023, -0.007895260117948055, -0.008423464372754097, -0.010807332582771778, 0.0010103639215230942, 0.01923774555325508, -0.012378044426441193, 0.009535472840070724, -5.5763313866918907e-05, -0.03758588433265686, -0.0029138096142560244, -0.016527226194739342, -0.024213984608650208, -0.01822303794324398, -0.010126227512955666, 0.004423708654940128, -0.038975898176431656, 0.007624207995831966, 0.03569547086954117, -0.021892666816711426, 0.0068145268596708775, 0.005973570514470339, 0.0173612330108881, -0.000930438342038542, 0.003749553579837084, -0.001977290026843548, 0.007401806302368641, 0.0078049092553555965, 0.026924505829811096, -0.01780603639781475, 0.03947630152106285, 0.034944865852594376, 0.031330838799476624, 0.020433155819773674, -0.00606044614687562, -0.023922082036733627, -0.0156515184789896, 0.040671709924936295, 0.0007228055037558079, 0.03775268793106079, -0.0028269339818507433, -0.017277831211686134, -0.024881189689040184, -0.014609010890126228, -0.010765631683170795, 0.005535717122256756, -0.01522061601281166, -0.03352705389261246, -0.015748819336295128, -0.012537895701825619, 0.016443824395537376, -0.01522061601281166, -0.002124978695064783, -0.02525649219751358, 0.00040114836883731186, 0.012558745220303535, 0.017152730375528336, 0.0021944791078567505, 0.005386291071772575, -0.0029746226500719786, -0.02652140147984028, -0.031636640429496765, -0.013837555423378944, -0.021406162530183792, 0.0003794294607359916, -0.0032613123767077923, 0.008937767706811428, 0.032081443816423416, 0.03169224038720131, 0.003718278370797634, 0.0026340701151639223, -0.01098108384758234, 0.012662996537983418, 0.007262805476784706, -0.005970095284283161, 0.011078384704887867, -0.003725228365510702, -0.009771774522960186, 0.02036365494132042, -0.020127352327108383, -0.022851774469017982, -0.016443824395537376, -0.003037173068150878, 0.028606418520212173, -0.020335854962468147, -0.0024359936360269785, -0.0021684165112674236, -0.049289774149656296, 0.0004215641529299319, -0.0009260945371352136, -0.007617258001118898, 0.024881189689040184, -0.03172004222869873, -0.019140446558594704, -0.0035097766667604446, -0.0046982355415821075, 0.01112703513354063, 0.03691868111491203, -0.007568607572466135, -0.0205304566770792, 0.015012114308774471, 0.009083718992769718, 0.028495216742157936, -0.016527226194739342, 0.013886205852031708, -0.00198771501891315, 0.018139638006687164, -0.0005490541807375848, 0.02927362360060215, 0.001414335798472166, 0.004260382615029812, 0.03297105059027672, -0.019043145701289177, 0.05799124017357826, 0.012600446119904518, -0.025631794705986977, 0.009181019850075245, -0.01965474896132946, -0.03892029449343681, -0.03644607588648796, 0.0013430977705866098, -0.012662996537983418, -0.020919660106301308, -0.0021197660826146603, 0.008103761821985245, 0.00169407541397959, -0.0034437512513250113, 0.005507917143404484, -0.008187162689864635, 0.010272177867591381, 0.03174784034490585, 0.004819861613214016, 0.015609818510711193, 0.041088711470365524, 0.008847417309880257, 0.0006276766653172672, -0.03413866087794304, 0.0055391923524439335, -0.0025680444668978453, 0.03830869123339653, 0.04233972355723381, -0.028467416763305664, -0.023880381137132645, -0.005803294014185667, 0.01033472828567028, -0.03477806597948074, -0.028523016721010208, 0.015526418574154377, 0.012642146088182926, -0.020725058391690254, -0.009229670278728008, 0.002656657714396715, -0.0430903285741806, 0.025881996378302574, -0.020989159122109413, -0.013726354576647282, -0.021169861778616905, 0.01190544106066227, -0.005751168821007013, -0.011564888060092926, -0.0205304566770792, 0.021489564329385757, 0.02236527018249035, 0.03113623708486557, 0.0015724494587630033, -0.024992389604449272, -0.026146098971366882, 0.005653867963701487, -0.013469202443957329, 0.02855081669986248, 0.020711157470941544, -0.006109096575528383, 0.010341678746044636, 0.007930010557174683, 0.00082054064841941, -0.023421678692102432, 0.002401243196800351, 0.0404215082526207, -0.02240697108209133, -0.03099723532795906, 0.017416832968592644, -0.007016078568994999, 0.04703795909881592, 0.007916110567748547, -0.0025437192525714636, -0.003023273078724742, 0.006400998681783676, -0.021489564329385757, -0.0005034444620832801, -0.022587671875953674, 0.019293347373604774, -0.020002251490950584, -0.01819523796439171, 0.0016341311857104301, -0.025298193097114563, 0.006710276007652283, 0.012461445294320583, -0.040393706411123276, -0.01448391005396843, 0.006171646993607283, -0.007943910546600819, -0.009181019850075245, -0.0012788097374141216, 0.02236527018249035, 0.012517045252025127, 0.029384823516011238, -0.022156769409775734, 0.027911411598324776, 0.002050265669822693, 0.02397768199443817, 0.008757066912949085, -0.005657343193888664, -0.011446736752986908, -0.0020068278536200523, 0.026646502315998077, -0.012239043600857258, -0.02210116758942604, -0.03255404904484749, 0.004812911618500948, 0.03558427095413208, 0.007978660985827446, 0.017138831317424774, 0.028940020129084587, -0.0018209138652309775, 0.01636042445898056, -0.01777823455631733, -0.003937204834073782, 0.017194431275129318, -0.002152778906747699, 0.020016152411699295, 0.002753958571702242, -0.003947630058974028, -0.02297687530517578, -0.025895897299051285, -0.01089768297970295, -0.003961530048400164, -0.024728288874030113, -0.01996055245399475, 0.004364633001387119, -0.006116046570241451, -0.011710839346051216, -0.021128160879015923, -0.04192271828651428, -0.006446173880249262, -0.021920466795563698, 0.023991582915186882, -0.0027018331456929445, -0.00035488707362674177, 0.002849521581083536, 0.028189415112137794, 0.02513139136135578, 0.0005655605345964432, -0.004552284721285105, -0.029190221801400185, -0.02136446349322796, -0.01622142270207405, -0.04094971343874931, -0.0195157490670681, -0.02482558973133564, 0.029329223558306694, -0.0028234589844942093, -0.01441441010683775, 0.0045939851552248, -0.022031668573617935, 0.005841519683599472, 0.01723613031208515, -0.02265717275440693, 0.01048067957162857, 0.006651200819760561, -0.009452071972191334, -0.0025906322989612818, 0.016096321865916252, 0.006950052920728922, 0.0021962167229503393, -0.014226757921278477, -0.010466779582202435, 0.01041117962449789, -0.01062663085758686, -0.007186354603618383, -0.008249713107943535, -0.022198468446731567, -0.016429925337433815, 0.010209627449512482, 0.003223086940124631, 0.004635685123503208, 0.0005516604287549853, 0.006411423906683922, -0.03355485573410988, -0.0079508600756526, -0.022045567631721497, 0.006453124340623617, -0.004100531339645386, 0.002406455809250474, -0.029523825272917747, -0.018542740494012833, 0.023213176056742668, -0.01663842611014843, -0.010244377888739109, -0.03099723532795906, 0.0103903291746974, -0.00961887277662754, 0.006644250359386206, -0.02353287860751152, -0.02682720497250557, 0.006394048687070608, -0.014664611779153347, 0.022059468552470207, -0.01809793710708618, 0.011411987245082855, 0.010432029142975807, -0.016443824395537376, 0.011627438478171825, -0.036640677601099014, 0.007506057154387236, -0.011877640150487423, 0.0013917480828240514, 0.013816704973578453, -0.01170388888567686, -0.025715196505188942, 0.00010180741810472682, 0.008062060922384262, -0.0195157490670681, -0.013615153729915619, 0.03458346426486969, 0.01505381427705288, -0.024867288768291473, 0.0037148033734411, 0.02008565329015255, -0.01311474945396185, 0.0038816046435385942, 0.003301275195553899, -0.012308543547987938, -0.00028755844687111676, -0.02322707697749138, 0.009987225756049156, -0.04534214362502098, 0.019307246431708336, 0.011606588028371334, -0.008333113044500351, -0.025742996484041214, 0.0039128796197474, -0.008701466023921967, -0.011078384704887867, 0.012065291404724121, 0.21850965917110443, -0.007895260117948055, 0.011585738509893417, 0.02511749044060707, 0.011578788049519062, 0.002601057291030884, 0.012357193976640701, -0.011432836763560772, 0.0012206030078232288, -0.007276705466210842, -0.01836203970015049, -0.004757311195135117, 0.0009521572501398623, -0.014622910879552364, -0.007085578981786966, -0.0033586130011826754, -0.02211506851017475, -0.04375753179192543, -0.03716888278722763, 0.03241504728794098, 0.013358001597225666, 0.0015368304448202252, 0.022267969325184822, -0.01777823455631733, 0.013232900761067867, 0.02008565329015255, -0.017305631190538406, 0.03071923367679119, 0.04256212338805199, -0.006171646993607283, -0.012127842754125595, 0.023560678586363792, -0.006258522626012564, -0.004472359083592892, 0.011689988896250725, -0.013010499067604542, 0.0159017201513052, 0.013010499067604542, 0.032081443816423416, 0.021906565874814987, -0.016471626237034798, 0.024783888831734657, 0.011099234223365784, -0.011731688864529133, -0.020419254899024963, -0.0079508600756526, -0.024144483730196953, -0.006668575573712587, 0.0013439664617180824, 0.020975260064005852, -0.006588649936020374, -0.02667430229485035, 0.032943252474069595, 0.014748012647032738, -0.01456731092184782, -0.009716173633933067, 0.01822303794324398, 0.0017548883333802223, 0.018765142187476158, 0.049873579293489456, -0.004990138113498688, 0.038948096334934235, -0.015554218553006649, 0.02913462184369564, -0.01182898972183466, -0.0026271198876202106, -0.011140935122966766, 0.005949245300143957, 0.010383378714323044, -0.0034281136468052864, -0.005827619228512049, 0.014261508360505104, 0.008937767706811428, -0.002677507931366563, -0.014261508360505104, -0.03530626744031906, 0.03194244205951691, -0.0037113281432539225, 0.02667430229485035, 0.037224482744932175, 0.03247064724564552, -0.014761912636458874, 0.00015279256331268698, -0.0032369871623814106, -0.02009955234825611, -0.03160884231328964, 0.011933241039514542, -0.01794503629207611, -0.014720211736857891, -3.100375033682212e-05, 0.009424271993339062, -0.026007097214460373, 0.010953282937407494, -0.021281061694025993, 0.007756258826702833, 0.026201698929071426, 0.004524484276771545, 0.015734920278191566, -0.01722223125398159, 0.012746397405862808, -0.03719668462872505, 0.0338328592479229, -0.0016271811909973621, -0.00036639810423366725, -0.002753958571702242, -0.00911151897162199, -0.01312865037471056, -0.0050283633172512054, 0.0014812300214543939, -0.017847735434770584, -0.01866784133017063, -0.03864229470491409, 0.004368108231574297, 0.00910456944257021, -0.010188777931034565, 0.03099723532795906, -0.022059468552470207, -0.018848543986678123, 0.01084208209067583, 0.010807332582771778, 0.018334239721298218, -0.013142550364136696, -0.021586865186691284, -0.007144654169678688, -0.004521009512245655, -0.018584441393613815, -0.01098108384758234, -0.0004213469510432333, 0.006307173054665327, -0.04145011678338051, 0.03513946756720543, -0.00587974488735199, 0.01680522784590721, -0.0022066417150199413, -0.007874409668147564, 0.001648031291551888, -0.005605217535048723, 0.01047373004257679, 0.006536524742841721, 0.007057778537273407, -0.009625823237001896, -0.002658395329490304, 0.0012953161494806409, -0.011773389764130116, -0.01363600417971611, 0.0025576194748282433, 0.012857598252594471, -0.007860509678721428, -0.00781880971044302, -0.0015029489295557141, -0.03227604553103447, -0.003269999986514449, -0.012239043600857258, -0.023074176162481308, 0.04965117946267128, -0.012440594844520092, -0.038392093032598495, -0.03399965912103653, -0.006338448263704777, 0.02050265669822693, -0.02596539817750454, -0.03041343204677105, -0.012218193151056767, 0.004920637235045433, -0.02425568550825119, -0.02639630064368248, -0.17725415527820587, 0.009667523205280304, 0.014004356227815151, -0.036112476140260696, 0.017180530354380608, 0.008798766881227493, -0.0077840592712163925, 0.008430413901805878, -0.03316565230488777, -0.014831412583589554, 0.033054452389478683, 0.016888627782464027, -0.010425079613924026, 0.00011728214303730056, 0.007686758413910866, 0.026062699034810066, -0.029023420065641403, 0.0028946970123797655, 0.029218021780252457, 0.014720211736857891, 0.04734376072883606, -0.017680933699011803, -0.01680522784590721, 0.0007167242001742125, 0.01420590840280056, -0.0195157490670681, -0.0308582354336977, -0.025909796357154846, -0.01766703464090824, 0.004913687240332365, 0.0077910092659294605, 0.002496806439012289, 0.032331645488739014, 0.020752858370542526, 0.033805057406425476, -0.008492964319884777, 0.016972029581665993, -0.0010729144560173154, 0.005462741479277611, 0.02337997779250145, 0.005782444030046463, 0.030886035412549973, 0.009132369421422482, -0.014233708381652832, 0.00020003120880573988, 0.025159191340208054, 0.006473974324762821, -0.03341585397720337, 0.008937767706811428, -0.00010072146687889472, 0.020127352327108383, -0.02426958456635475, -0.033388055860996246, -0.014692411758005619, 0.04372973367571831, 0.014497810043394566, -0.01762533374130726, 0.026368500664830208, 0.010564080439507961, 0.0020120402332395315, 0.0019216896034777164, -0.03830869123339653, 0.01662452705204487, -0.004465409088879824, -0.029774026945233345, -0.001428235904313624, -0.026187799870967865, 0.026618702337145805, -0.026062699034810066, 0.0017713947454467416, -0.00904201902449131, -0.035361867398023605, 0.004097056109458208, 0.013503952883183956, 0.01934894733130932, -0.018695643171668053, 0.007241955026984215, 0.0269940048456192, 0.01894584484398365, -0.015248415991663933, 0.005271614994853735, 0.04036590829491615, 0.031219637021422386, -0.00656779995188117, 0.013629053719341755, -0.020321954041719437, 0.02383868210017681, -0.002863421803340316, -0.04948437586426735, -0.03141424059867859, 0.03889249637722969, -0.006282847840338945, -0.003638352733105421, 0.01421285793185234, 0.014289308339357376, 0.001878251787275076, -0.002201429335400462, 0.008006460964679718, 0.004500159062445164, -0.013823655433952808, 0.005417566280812025, -0.0019981402438133955, -0.023463377729058266, 0.014914813451468945, 0.030246630311012268, 0.0248394887894392, -0.02008565329015255, 0.0356120727956295, 0.02770291082561016, -0.015484717674553394, -0.014303209260106087, 0.00549054192379117, 0.005532241892069578, 0.026632603257894516, 0.010126227512955666, 0.01370550412684679, -0.002055478049442172, 0.012280743569135666, 0.004573134705424309, -0.01312865037471056, -0.02568739466369152, -0.006400998681783676, -0.02698010578751564, 0.026201698929071426, 0.009007268585264683, -0.022295769304037094, -0.05134699121117592, 0.0028234589844942093, 0.013059149496257305, 0.024992389604449272, -0.00588321965187788, 0.0056712431833148, 0.007957810536026955, 0.025006290525197983, -0.034361060708761215, 0.003026748076081276, -0.01148843765258789, -0.020141253247857094, 0.004062306135892868, 0.024172283709049225, -0.007255855016410351, -0.006950052920728922, -0.0028964346274733543, -0.004496684297919273, 0.01651332527399063, 0.004034505691379309, -0.011564888060092926, -0.014678511768579483, 0.006022220943123102, 0.0006880552391521633, -0.0015637618489563465, 0.013920956291258335, -0.014553410932421684, 0.0009512885008007288, 0.0018174388678744435, 0.0077910092659294605, 0.020182954147458076, 0.0013248538598418236, 0.005601742770522833, -0.037836089730262756, -0.0005260321195237339, 0.01505381427705288, -0.034944865852594376, -0.02269887365400791, 0.01795893721282482, -0.008103761821985245, 0.008319213055074215, -0.01663842611014843, 0.006251572631299496, 0.01421285793185234, -0.010432029142975807, 0.00695700291544199, -0.011773389764130116, 0.014317109249532223, -0.012683846987783909, -0.00021056488913018256, -0.02927362360060215, 0.0025107066612690687, 0.010925482958555222, -0.007992560975253582, 0.021850965917110443, 0.013781954534351826, 0.015192816033959389, 0.01937674731016159, -0.010994983837008476, 0.003303012577816844, -0.017750434577465057, 0.029940828680992126, -0.009521572850644588, 0.020141253247857094, -0.001026001526042819, 0.01176643930375576, -0.03183124214410782, -0.037836089730262756, 0.014261508360505104, -0.01089768297970295, -0.0007931747823022306, 0.017416832968592644, -0.012002740986645222, 0.010953282937407494, -0.024714387953281403, -0.026020998135209084, -0.0010233953362330794, 0.0018365514697507024, 0.015526418574154377, 0.008444313891232014, -0.023991582915186882, -0.0017913761548697948, -0.004534909501671791, 0.004319457802921534, 0.0036070775240659714, 0.03413866087794304, 0.004222156945616007, 0.0023352177813649178, -0.005949245300143957, -0.011655238457024097, -0.00883351732045412, -0.013107799924910069, 0.016582826152443886, -0.0041457065381109715, -0.01907094568014145, -0.02969062514603138, 0.009153219871222973, 0.0022726673632860184, -0.002380393212661147, 0.0022622421383857727, -0.03575107082724571, -0.01879294216632843, -0.09318631142377853, 0.02122546173632145, -0.02253207191824913, -0.041811518371105194, 0.020057853311300278, -0.018334239721298218, 0.02796701341867447, -0.01882074400782585, 0.017611434683203697, 0.0014073856873437762, -0.041811518371105194, 0.018723443150520325, -0.0009495510021224618, -0.023366078734397888, -0.034222058951854706, 0.009813474491238594, 0.035945672541856766, -0.007401806302368641, 0.0216702651232481, 0.019557448104023933, 0.006991753354668617, -0.006706801243126392, 0.005202114582061768, 0.009924675337970257, -0.023004675284028053, 0.012218193151056767, -0.0016654063947498798, 0.02439468540251255, -0.007269755471497774, -0.03274865075945854, 0.01864004135131836, -0.00015148943930398673, -0.004114431329071522, 0.0017401195364072919, -0.013934856280684471, -0.026952305808663368, -0.007596408016979694, -0.0034333260264247656, 0.017430732026696205, 0.033332452178001404, -0.02107256092131138, -0.033082250505685806, -0.011717788875102997, -0.02379698120057583, 0.010021976195275784, -0.013448351994156837, 0.00874316692352295, -0.0033290754072368145, 0.01620752364397049, 0.040226906538009644, 0.029301423579454422, 0.011752539314329624, -0.020627757534384727, 0.018737342208623886, -0.0032369871623814106, -0.04575914889574051, -0.008631966076791286, 0.00303022307343781, -0.006706801243126392, -0.020655557513237, 0.02811991423368454, -0.012857598252594471, 0.02785581164062023, 0.021281061694025993, 0.002585419686511159, -0.006154271773993969, -0.03658507764339447, -0.009000318124890327, 0.024644887074828148, -0.03260964900255203, -0.03702988103032112, -0.03260964900255203, 0.021058660000562668, -0.01765313372015953, 0.026340700685977936, -0.004277757368981838, -0.008555514737963676, 0.009340871125459671, -0.02068335749208927, 0.035806670784950256, 0.011085334233939648, 0.005570467561483383, -0.02668820321559906, -0.009389521554112434, 0.041533514857292175, 0.002488118829205632, -0.00982737448066473, -0.022198468446731567, -0.016555026173591614, -0.014595110900700092, -0.02282397449016571, 0.0008982943254522979, 0.013601253740489483, -0.00620639743283391, 0.01262824609875679, 0.012155642732977867, -0.0019008395029231906, -0.023435577750205994, 0.0114050367847085, 0.011356386356055737, 0.017472432926297188, 0.007499107159674168, -0.009563272818922997, -0.03313785046339035, -0.03010762855410576, -0.00889606773853302, -0.018862443044781685, -0.013802804984152317, 0.018765142187476158, -0.0068006268702447414, -0.026020998135209084, 0.02025245502591133, 0.00710642896592617, 0.01169693935662508, -0.02080845832824707, 0.01326070073992014, -0.0007510401192121208, -0.031164037063717842, -0.028092114254832268, 0.015568118542432785, 0.027577809989452362, 0.0034298510290682316, 0.008430413901805878, -0.018834643065929413, 0.050429582595825195, -0.007082103751599789, 0.02698010578751564, -0.02595149725675583, 0.02638240158557892, 0.0068353768438100815, -0.02008565329015255, 0.0008040342363528907, -0.021725865080952644, -0.0313030369579792, -0.01793113723397255, -0.0031518489122390747, -0.009848224930465221, 0.0008035998907871544, 0.02121156081557274, 0.08251103013753891, -0.015887821093201637, 0.011307735927402973, -0.01580442115664482, -0.013649904169142246, 0.0036835279315710068, -0.01421285793185234, 0.002048528054729104, 0.0073670558631420135, -0.002667082706466317, -0.0005203852197155356, 0.0008035998907871544, 0.004566184710711241, -0.026159999892115593, 0.010598830878734589, -0.0269940048456192, -0.010744782164692879, 0.04272892698645592, -0.03461126238107681, 0.03716888278722763, 0.041255515068769455, 0.022879574447870255, -0.0004591378674376756, 0.020627757534384727, -0.03797508776187897, 0.010598830878734589, 0.046426352113485336, -0.005532241892069578, 0.0045835599303245544, -0.02264327183365822, 0.026187799870967865, 0.011863740161061287, -0.021030860021710396, -0.02426958456635475, -0.014734111726284027, 0.0390314981341362, -0.0022483421489596367, 0.020697258412837982, 0.012801997363567352, 0.01262824609875679, 0.018153538927435875, 0.01691642962396145, -0.03255404904484749, -0.04464713856577873, -0.0031344739254564047, -0.0006906614871695638, -0.020572155714035034, -0.008694516494870186, -0.02350507862865925], "73ce240b-3c09-48de-99f4-0194dc1faaf2": [-0.0036133411340415478, -0.02232123166322708, 0.015041117556393147, -0.015882670879364014, -0.013358008116483688, 0.00867602601647377, -0.003776976838707924, -0.03021581470966339, -0.009510901756584644, 0.002294237958267331, 0.0073869782499969006, -0.020905282348394394, -0.028933444991707802, -0.005076042842119932, -0.010332419537007809, -0.020731627941131592, -0.0020454449113458395, -0.009337247349321842, -0.002619839273393154, -0.015562079846858978, -0.01578916609287262, -0.006304979790002108, 0.00569051131606102, -0.03416978567838669, -0.019422544166445732, 0.019569482654333115, -0.017498990520834923, -0.026542361825704575, -0.006859336979687214, 0.01449343841522932, 0.019850000739097595, 0.000501760165207088, -0.01801995374262333, -0.005994406063109636, 0.0013424798380583525, -0.004267883487045765, 0.006972880102694035, 0.0018400655826553702, -0.01103371474891901, 0.013130921870470047, 0.011127220466732979, -0.010632974095642567, -0.002217429457232356, 0.02440508082509041, -0.022601749747991562, 0.01852755807340145, -0.040180888026952744, -0.013117563910782337, -0.013758748769760132, 0.02775794081389904, 0.01110050454735756, 0.002184034325182438, -0.031150875613093376, -0.04792853444814682, 0.004284581169486046, 0.0017866336274892092, -0.03473082184791565, -0.0016947973053902388, -0.019422544166445732, -0.007113139145076275, 0.0040474762208759785, 0.012209218926727772, -0.034410227090120316, -0.006304979790002108, -0.0018383958376944065, 0.007774360477924347, 0.00045250251423567533, 0.010793270543217659, -0.00832871813327074, -0.005002574063837528, 0.013130921870470047, 0.027183545753359795, -0.0036166806239634752, 0.006294961087405682, 0.04397456347942352, 0.015001042746007442, -0.01919545792043209, 0.008642631582915783, -0.011895306408405304, 0.011848553083837032, -0.0013616819633170962, -0.015308277681469917, 0.023817328736186028, 0.0012589922407642007, 0.008529088459908962, 0.01452015433460474, -0.003907217178493738, 0.031177591532468796, 0.011614788323640823, -0.012215898372232914, 0.02027745544910431, -0.013578414916992188, 0.012162466533482075, 0.023510094732046127, -0.0033545298501849174, 0.024645524099469185, -0.006171399727463722, 0.015936102718114853, -0.013064132072031498, -0.007326867431402206, -0.0008398847421631217, 0.016056325286626816, 0.00043288295273669064, -0.006441899575293064, -0.02970821037888527, -0.02449858747422695, 0.021920491009950638, -0.0060645355843007565, 0.00014328550605569035, -0.01394576020538807, 0.006528726313263178, 0.03555901721119881, -0.001315763802267611, -0.05920269340276718, -0.0006946164066903293, 0.007340225391089916, 0.02675609104335308, -0.03702839836478233, -0.007240040227770805, 0.00664560915902257, 0.01082666590809822, 0.005082722287625074, 0.028292261064052582, 0.005967690143734217, 0.013798822648823261, 0.010392529889941216, 0.0025947929825633764, -0.001173835014924407, -0.02165333181619644, -0.005673814099282026, 0.033181291073560715, 0.0065654609352350235, 0.00022583382087759674, 0.014613660983741283, -0.017058176919817924, -0.01598953641951084, -0.009343926794826984, -0.008949865587055683, -0.011861911043524742, -0.004000723361968994, -0.007193287368863821, 0.02853270433843136, -0.01955612376332283, -0.01935575343668461, 0.015134623274207115, 0.03355531767010689, 0.01827375590801239, -0.007266756612807512, 0.00822853296995163, -0.016884522512555122, 0.028238829225301743, 0.002644885564222932, -0.00866266805678606, -0.014319784939289093, -0.00822853296995163, 0.007086423225700855, -0.006304979790002108, -0.006465275771915913, -0.013732031919062138, 0.0062181525863707066, -0.00817510113120079, 0.006582158617675304, -0.0009826484601944685, 0.0007776865386404097, -0.007273435592651367, 0.014052624814212322, 0.011901984922587872, -0.002454533940181136, -0.024031056091189384, 0.010926851071417332, 0.019369112327694893, -0.0015729054575785995, -0.025994684547185898, 0.0160696841776371, 0.022187652066349983, 0.021386170759797096, -0.008108311332762241, -0.012095676735043526, -0.027971668168902397, 0.007727607619017363, 0.00178329402115196, -0.019235530868172646, -0.027918236330151558, 0.0223479475826025, -0.012589922174811363, -0.01383889652788639, 0.01980992592871189, 0.017953163012862206, 0.028318976983428, 0.02588781900703907, 0.024952759966254234, 0.03617348521947861, -0.01426635216921568, -0.029521197080612183, -0.5975838303565979, -0.01745891571044922, 0.009938358329236507, -0.00143348122946918, 0.015241486951708794, 0.016577288508415222, 0.006635590456426144, 0.02644885517656803, -0.02655572071671486, 0.023616958409547806, -0.03649407625198364, 0.031284455209970474, -0.012650033459067345, 0.0018267076229676604, 0.006749133579432964, -0.025674091652035713, 0.015054475516080856, -0.027277052402496338, -0.010205518454313278, 0.01922217383980751, -0.01696467027068138, 0.002282549627125263, 0.0024395061191171408, 0.020905282348394394, 0.024231426417827606, 0.02232123166322708, 0.007286793552339077, -0.008655989542603493, -0.004785506520420313, 0.04114266484975815, -0.027918236330151558, 0.021159084513783455, 0.011347628198564053, -0.01329121831804514, 0.05129475146532059, -0.005920937284827232, -0.02496611699461937, 0.026662584394216537, -0.013144279830157757, 0.05476783215999603, -0.017899731174111366, -0.01684444770216942, 0.02468559890985489, 0.002454533940181136, 0.00047671390348114073, 0.0038738222792744637, -0.0006098765297792852, -0.027624361217021942, -0.008114989846944809, 0.013578414916992188, -0.0034129710402339697, 0.002397762378677726, 0.0020203986205160618, -0.012329441495239735, 0.021519750356674194, 0.01693795435130596, 0.013651884160935879, -0.029975369572639465, 0.004939123522490263, -0.01645706593990326, -0.020798418670892715, 0.014533513225615025, -0.020651480183005333, -0.016523856669664383, -0.006254887208342552, 0.007453768514096737, -0.014773956499993801, -0.02376389689743519, -0.004631889518350363, -0.018741285428404808, 0.02078505977988243, -0.020330889150500298, 0.020571332424879074, -0.017058176919817924, 0.0223479475826025, 0.03831076622009277, 0.0321393683552742, -0.0135450204834342, -0.028906729072332382, 0.009871567599475384, -0.004628549795597792, 0.007373620290309191, -0.008696063421666622, -0.01983664184808731, 0.015802523121237755, -0.0018734605982899666, -0.016670793294906616, -0.01963627152144909, 0.007981410250067711, -0.001858432893641293, -0.007220003288239241, 0.02775794081389904, 5.849346416653134e-05, -0.05508842691779137, 0.0031090762931853533, 0.009951716288924217, -0.01960955560207367, -0.016670793294906616, 0.015214771032333374, -0.0015570428222417831, -0.015548720955848694, -0.007326867431402206, 0.0003020162112079561, -0.0076474593952298164, 0.02424478530883789, -0.009176951833069324, -0.02968149445950985, -0.0018684513634070754, 0.015976177528500557, -0.01148120779544115, -0.021239232271909714, -0.020077086985111237, 0.0269163865596056, -0.02212086133658886, 0.03526514023542404, -0.0379367433488369, 0.01927560567855835, -0.004518346395343542, 0.0064919921569526196, 0.0057172272354364395, 0.022134220227599144, -0.006668985355645418, 0.01450679637491703, -0.012997342273592949, 0.0034964585211127996, 0.03296756371855736, 0.012042243964970112, 0.022802120074629784, -0.02089192532002926, 0.007774360477924347, -0.014987684786319733, -0.007053028326481581, 0.009771383367478848, -0.007553953677415848, 0.0044816117733716965, 0.01386561244726181, -0.0016714207595214248, -0.0087160998955369, 0.03032267838716507, 0.006304979790002108, -0.005560270976275206, 0.0048957099206745625, 0.004478272050619125, 0.014533513225615025, 0.021626615896821022, -0.02075834386050701, -0.02017059177160263, -0.0001754282129695639, -0.0030890393536537886, -0.0032543446868658066, 0.00567715335637331, 0.0081016318872571, -0.007006275467574596, 0.018754642456769943, 0.00011249947419855744, 0.010653011500835419, -0.019288964569568634, 0.0024445154704153538, -0.01355837844312191, -0.01393240224570036, 0.009190309792757034, 0.012910515069961548, -0.026796163991093636, 0.003069002414122224, -0.03491783142089844, -0.009611086919903755, -0.017592497169971466, 0.022468170151114464, -0.002708336105570197, -0.03983357921242714, -0.0027534193359315395, -0.0037435817066580057, -0.001935241394676268, -0.00800812616944313, 0.009497543796896935, -0.007186608389019966, -0.010539468377828598, 0.009550975635647774, 0.0030372771434485912, 4.894457742921077e-05, 0.012463021092116833, 0.0015470243524760008, -0.008515730500221252, -0.0025296728126704693, 0.01999693736433983, 0.011287516914308071, 0.03657422587275505, 0.01153463963419199, -0.014854105189442635, 0.002897018101066351, -0.011120541952550411, 0.028933444991707802, 0.015909386798739433, -0.0031174251344054937, 0.020063728094100952, -0.0072266822680830956, 0.018006594851613045, 0.010392529889941216, 0.015201413072645664, 0.01325114443898201, 0.03165847808122635, 0.01914202608168125, 0.005780677776783705, 0.006946164183318615, 0.029280753806233406, -0.011434454470872879, 0.012048923410475254, -0.008268606849014759, -0.00681258412078023, 0.00016102661902550608, -0.007393657695502043, -0.020037012174725533, -0.023082638159394264, -0.027517497539520264, 0.02019730769097805, -0.002750079846009612, -0.028078533709049225, 0.00026173348305746913, -0.01150792371481657, 0.02201399765908718, -0.0009601068450137973, 0.004909067880362272, 0.005249697249382734, -0.021359454840421677, -0.018701210618019104, 0.016029609367251396, -0.009490864351391792, 0.005680493079125881, 0.0025113055016845465, -0.028238829225301743, -0.019048519432544708, -0.019061878323554993, 0.001693962374702096, -0.006762491539120674, 0.01832718774676323, -0.0012973964912816882, 0.03203250467777252, -0.034356795251369476, 0.033154577016830444, 0.006595516577363014, 0.00820181705057621, -0.01355837844312191, -0.0011780093191191554, -0.013484909199178219, 0.01978321000933647, -0.01793980412185192, 0.05621049925684929, 0.027944952249526978, 0.009464148432016373, 0.0008290313999168575, -0.017979878932237625, -0.007988088764250278, -0.03085699863731861, 0.02719690464437008, 0.00408087158575654, -0.030803566798567772, 0.005944313481450081, -0.0018317168578505516, 0.0431196503341198, 0.030616555362939835, 0.026181695982813835, 0.02767779305577278, -0.003080690512433648, 0.018340544775128365, 0.00551017839461565, -0.02627520263195038, 0.01353166252374649, -0.026128264144062996, 0.012469700537621975, -0.020264098420739174, -0.03545215353369713, -0.005787357222288847, 0.0038237296976149082, -0.008722779341042042, 0.025447005406022072, 0.0025747560430318117, -0.012463021092116833, 0.0321393683552742, 0.0034797610715031624, -0.017766151577234268, -0.0028836599085479975, -0.02627520263195038, 0.04226473718881607, 0.01135430671274662, 0.016537213698029518, 0.01084002386778593, -0.02773122489452362, 0.007747644558548927, -0.00912351906299591, -0.010646332055330276, 0.004371408373117447, 0.0091101611033082, -2.4902770746848546e-05, 0.005693851038813591, -0.014693808741867542, -0.024445155635476112, 0.04539051279425621, -0.0013274520169943571, -0.010786591097712517, 0.004100908525288105, 0.006194776389747858, -0.025994684547185898, -0.01339140348136425, -0.03283398225903511, 0.03334158658981323, -0.019930148497223854, 0.0004005315131507814, -0.009450790472328663, 0.020103802904486656, -0.01391904428601265, -0.016283411532640457, -0.01830047182738781, 0.004284581169486046, -0.01450679637491703, -0.01104707270860672, -0.006355072371661663, 0.012389552779495716, 0.0026515645440667868, 0.04026103764772415, 0.01089345570653677, -0.03395605832338333, -0.006004424765706062, -0.023483378812670708, 0.014146130532026291, 0.004531704355031252, 0.019128667190670967, 0.0064819734543561935, 0.013511625118553638, -0.015588795766234398, -0.03358203172683716, -0.0284525565803051, 0.014814031310379505, 0.009103482589125633, -0.028238829225301743, -0.016216622665524483, 0.011441133916378021, 0.022160936146974564, -0.005399974994361401, 0.02527335099875927, 0.012129071168601513, 4.790098319062963e-05, -0.004698679316788912, -0.014747240580618382, -0.015909386798739433, 0.004722055979073048, 0.0054901414550840855, 0.021239232271909714, -0.006411843933165073, 0.025072980672121048, 0.02391083538532257, 0.03155161440372467, 0.033074427396059036, 0.019035162404179573, -0.01104707270860672, 0.009731308557093143, 0.005476783495396376, -0.011668220162391663, 0.015067833475768566, -0.0004616861406248063, 0.027651077136397362, 0.012209218926727772, 0.04993223398923874, -0.01950269192457199, 0.018006594851613045, 0.010218876414000988, 0.022802120074629784, 0.008455619215965271, -0.009978432208299637, 0.0078812250867486, -0.004692000336945057, -0.009023334830999374, -0.00824189092963934, -0.025072980672121048, -0.037562720477581024, 0.025714166462421417, 0.0064886524342000484, -0.05108102411031723, -0.0051428331062197685, 0.0015136293368414044, 0.022802120074629784, -0.019956864416599274, -0.021052220836281776, 0.003683470655232668, -0.0028485951479524374, -0.0012247624108567834, -0.0021806948352605104, 0.0021389510948210955, -0.006031140685081482, 0.004438198171555996, -0.000849903270136565, -0.0013842235784977674, -0.006211473606526852, -0.020237382501363754, -0.000873279757797718, 0.024845894426107407, -0.04060834273695946, -0.017779508605599403, 0.008302002213895321, 0.013117563910782337, 0.010659690015017986, 0.02839912474155426, 0.010873418301343918, -0.022000638768076897, 0.02022402361035347, 0.009490864351391792, -0.03099057823419571, -0.02047782577574253, -0.019569482654333115, 0.01796652004122734, -0.018727926537394524, 3.783029751502909e-05, 0.015668943524360657, -0.023897476494312286, 0.02165333181619644, 0.016978029161691666, -0.003676791675388813, 0.003317795228213072, -0.00042453419882804155, -0.008923149667680264, 0.019048519432544708, -0.005707208998501301, -0.020704912021756172, -0.0013491588179022074, 0.0010728150373324752, -0.011982133612036705, -0.024645524099469185, 0.003599983174353838, -0.03091043047606945, -0.023670390248298645, -0.015081191435456276, 0.02206742949783802, 0.010653011500835419, -0.014079340733587742, -0.005423351190984249, 0.03555901721119881, -0.016363559290766716, 0.015415141358971596, 0.025740882381796837, 0.009704592637717724, 0.0013942420482635498, -0.001646374468691647, 0.02421806938946247, 0.02580767124891281, 0.0016497139586135745, 0.01139438059180975, -0.011755047366023064, 0.028719717636704445, 0.030108951032161713, 0.01727190427482128, 0.015308277681469917, -0.026796163991093636, -0.031925641000270844, -0.021466318517923355, 0.02773122489452362, 0.027570929378271103, 0.022561674937605858, 0.010218876414000988, -0.004959160462021828, -0.03660094365477562, -0.011000319384038448, -0.006188097409904003, 0.02340323105454445, -0.012903835624456406, -0.019422544166445732, 0.0024344970006495714, -0.01999693736433983, -0.007954693399369717, -0.008863038383424282, -0.003180875675752759, -0.02371046505868435, -0.00825524888932705, -0.00441482150927186, 0.013324612751603127, 0.010519430972635746, 0.013110884465277195, -0.01994350552558899, -0.023870760574936867, -0.01773943565785885, 0.013398081995546818, -0.015455215238034725, -0.005059345625340939, -0.008822964504361153, 0.0065754796378314495, 0.030002085492014885, 0.03419649973511696, 0.0031608387362211943, -0.004334673751145601, -0.00573392491787672, 0.00839550793170929, 0.01156135555356741, -0.010813307948410511, 0.02547372132539749, -0.006859336979687214, 0.004077531863003969, 0.01088009774684906, 0.0024144600611180067, -0.010659690015017986, 0.0012172485003247857, -0.007747644558548927, 0.013064132072031498, 0.0030406166333705187, 0.007654138840734959, -0.005647097714245319, -0.03406292200088501, -0.001457692589610815, -0.015548720955848694, -0.006932806223630905, 0.019182099029421806, -0.01391904428601265, -0.021666688844561577, -0.005994406063109636, -0.0013449843972921371, 0.020825134590268135, 0.026008041575551033, 0.0016572278691455722, -0.02898687683045864, 0.011234085075557232, 0.018193606287240982, 0.0267828069627285, -0.02045110985636711, 0.008909791707992554, -0.015027758665382862, 0.0220407135784626, -0.019676346331834793, 0.004194414708763361, 0.015749091282486916, -0.01340476144105196, 0.012549848295748234, -0.03328815475106239, 0.04362725466489792, 0.01418620441108942, -0.0226551815867424, 0.014119414612650871, -0.022615106776356697, -0.03994044288992882, -0.014787315391004086, 0.007887903600931168, -0.005136154126375914, -0.02334979735314846, 0.025380214676260948, 0.020905282348394394, 0.014092698693275452, -0.004451556131243706, -0.004858975298702717, -0.01448008045554161, -0.022241083905100822, 0.05182906985282898, 0.02786480449140072, 0.013985834084451199, 0.041917428374290466, 0.003987365402281284, -0.0014192883390933275, -0.05754629895091057, -0.020077086985111237, 0.005950992461293936, 0.022521601989865303, 0.04410814121365547, -0.008448939770460129, -0.0217334795743227, -0.007507200352847576, -0.002661583013832569, -0.003853785339742899, -0.030803566798567772, 0.036974966526031494, 0.00696620112285018, -0.014025908894836903, -0.009484185837209225, 0.014106056652963161, -0.03018909879028797, 0.01740548387169838, -0.008322038687765598, -0.012890477664768696, -0.010125369764864445, 0.012843724340200424, -0.016256695613265038, 0.002684959676116705, -0.01830047182738781, 0.021546466276049614, 0.0064986711367964745, 0.009009976871311665, 0.007533916737884283, -0.03996716067194939, -0.003853785339742899, 0.014025908894836903, -0.014092698693275452, 0.0379367433488369, 0.019569482654333115, -0.012609959580004215, 0.03737570717930794, -7.024694696156075e-06, -0.008595878258347511, -0.004257865250110626, -0.004431519191712141, 0.035532303154468536, -0.006238189991563559, -0.01146784983575344, -0.0018066705670207739, -0.008288644254207611, 0.04477604478597641, 0.01180179975926876, -0.009697914123535156, -0.009250420145690441, -0.01838061958551407, -0.02301584742963314, -0.00881628505885601, -0.02165333181619644, 0.02334979735314846, 0.0026749412063509226, -0.0027884840965270996, -0.002025407971814275, -0.01645706593990326, 0.00663225119933486, 0.02485925331711769, -0.036894816905260086, -0.028719717636704445, -0.0032309682574123144, -0.023416588082909584, -0.016229979693889618, -0.0026014719624072313, 0.02268189750611782, -0.0013015709118917584, 0.03387590870261192, -0.02501954883337021, 0.02030417136847973, 0.007827792316675186, 0.026328634470701218, -0.007266756612807512, 0.002412790199741721, -0.011868590489029884, 0.002945440821349621, 0.024124562740325928, -0.016577288508415222, -0.015188055112957954, -0.018166890367865562, 0.027303768321871758, 0.03598647192120552, 0.011267479509115219, 0.015001042746007442, 0.02468559890985489, 0.018447408452630043, 0.0214262455701828, -0.005450067110359669, -0.014640376903116703, 0.00834207609295845, 0.005042647942900658, 0.011474529281258583, 0.011928700841963291, -0.0038203902076929808, -0.0015537033323198557, 0.00032184450537897646, -0.00724671920761466, 0.015054475516080856, -0.025901177898049355, -0.04905060678720474, 0.0004708697961177677, -0.03331487253308296, -0.0229624155908823, -0.012629996985197067, -0.022855551913380623, -0.0066589671187102795, -0.03473082184791565, 0.011968775652348995, -0.017111608758568764, 0.020798418670892715, 0.00574728287756443, 0.04536379501223564, 0.02547372132539749, -0.004631889518350363, 0.005720566958189011, -0.009864889085292816, -0.03614677116274834, -0.020050369203090668, -0.02839912474155426, -0.020330889150500298, -0.03093714639544487, 0.026943102478981018, 0.0027985027991235256, -0.02624848671257496, -0.0011279168538749218, -0.010639653541147709, -0.01629677042365074, -0.0034530451521277428, -0.0227887611836195, 0.02642213925719261, 0.025032907724380493, 0.009537617675960064, -0.011000319384038448, -0.012790292501449585, 0.006932806223630905, 0.018407335504889488, -0.005089401267468929, -0.003291079308837652, -0.004782166797667742, 0.0007342729950323701, -0.014747240580618382, -0.013718673959374428, -0.007567311637103558, -0.014960968866944313, -0.0006123812054283917, -0.018100101500749588, 0.012015528045594692, 0.01390568632632494, 0.0018934976542368531, -0.012696786783635616, -0.012442984618246555, -0.013231107033789158, 0.01140773855149746, -0.009497543796896935, 0.0009008306660689414, -0.02552715316414833, -0.002030417323112488, 0.03414306789636612, 0.0033194650895893574, -0.005920937284827232, -0.016376918181777, 0.006525387056171894, -0.012095676735043526, 0.014065982773900032, -0.02212086133658886, -0.0324065275490284, 0.00850905105471611, 0.0044715930707752705, 0.03286070004105568, -0.029441049322485924, 0.017766151577234268, 0.022748688235878944, -0.01645706593990326, 0.014546871185302734, -0.01679101586341858, 0.02304256334900856, 0.0030356072820723057, 0.0036567547358572483, 0.033154577016830444, 0.0019485994707792997, 0.004922425840049982, -0.010486036539077759, 0.01150792371481657, -0.011995491571724415, -0.01029234565794468, 0.030082235112786293, 0.0027100059669464827, -0.0449630543589592, -0.0081016318872571, 0.012202540412545204, 5.927616075496189e-05, 0.0057272459380328655, 0.004541722591966391, -0.010091975331306458, -0.00820181705057621, -0.03831076622009277, 0.007393657695502043, -0.055195290595293045, 0.017485633492469788, 0.01450679637491703, 0.0022925680968910456, -0.04042133316397667, 0.010051901452243328, 0.02042439393699169, -0.014653734862804413, 0.01863442175090313, 0.24771089851856232, -0.019395828247070312, 0.026956459507346153, 0.016831090673804283, 0.017779508605599403, 0.008335396647453308, 0.018033310770988464, -0.001250643515959382, 0.0018267076229676604, 0.003900538431480527, 0.0036868101451545954, -0.0075739906169474125, -0.00835543405264616, -0.0008482335251756012, -0.004772148560732603, -0.017418842762708664, -0.013384724035859108, -0.05070699751377106, -0.020731627941131592, 0.024565376341342926, 0.023256292566657066, -0.0007685028831474483, 0.020972073078155518, -0.010218876414000988, -0.015361709520220757, 0.03096386231482029, -0.019649630412459373, 0.02109229564666748, 0.04493634030222893, 0.009076766669750214, -0.003286069957539439, 0.00670238072052598, -0.0032359773758798838, -0.0229624155908823, -0.0023877439089119434, -0.018180249258875847, 0.03136460483074188, 0.01586931385099888, 0.019769851118326187, 0.0019569480791687965, -0.001958617940545082, 0.00576064083725214, 0.006044498644769192, -0.007366941310465336, -0.02906702645123005, 0.014306426979601383, -0.0005497655365616083, -0.005693851038813591, -0.00785450916737318, 0.02957463078200817, -0.017672644928097725, -0.04656601697206497, 0.016777658835053444, 0.009871567599475384, -0.014012550935149193, -0.0007872876012697816, 0.03270040452480316, -0.014319784939289093, 0.009143556468188763, 0.03772301599383354, -0.003080690512433648, 0.03780316188931465, -0.01449343841522932, 0.008168421685695648, -0.00821517501026392, -0.0005948488251306117, -0.02976164221763611, -0.015201413072645664, -0.00435804994776845, -0.012690107338130474, -0.005353221669793129, 0.001121237757615745, 0.011040393263101578, 0.0029003575909882784, -0.01578916609287262, -0.03403620421886444, 0.045043203979730606, 0.004939123522490263, 0.022721972316503525, 0.036814671009778976, 0.022575033828616142, -0.017245188355445862, -0.0002571416553109884, -0.002987184561789036, -0.004865654278546572, -0.03091043047606945, 0.01598953641951084, -0.0007067220867611468, -0.01421292033046484, -0.014359858818352222, 0.01765928603708744, -0.03101729415357113, 0.008081594482064247, -0.01676429994404316, -0.0004337178252171725, 0.027357200160622597, -0.01449343841522932, 0.022721972316503525, -0.010085295885801315, 0.016416991129517555, -0.017245188355445862, 0.03147146850824356, 0.013498267158865929, 0.013304576277732849, -0.011888626962900162, -0.008655989542603493, 0.01072648074477911, 0.009724630042910576, -0.009384000673890114, -0.017859656363725662, 0.006505350116640329, -0.029227321967482567, 0.006455257534980774, 1.2712283933069557e-05, -0.007754323538392782, 0.03347516804933548, -0.02568744868040085, -0.004942462779581547, -0.009898284450173378, 0.017231831327080727, 0.02181362733244896, -0.017058176919817924, -0.011574714444577694, -0.01978321000933647, -0.004117606207728386, -0.006291621830314398, -0.007240040227770805, -0.0023460001684725285, -0.0004579292144626379, -0.030082235112786293, 0.047020189464092255, -0.034383513033390045, 0.01045932061970234, -0.0006328356103040278, -0.013331292197108269, 0.01077991258352995, -0.010926851071417332, -0.00832871813327074, 0.009577691555023193, -0.0050660246051847935, -0.005079382564872503, -0.017846299335360527, 0.004090889822691679, -0.009090124629437923, 0.00824189092963934, 0.005546913016587496, -0.012616639025509357, -0.005039308685809374, 0.0059042396023869514, 0.01390568632632494, -0.04645915329456329, -0.012730182148516178, 0.00800812616944313, -0.01671086810529232, 0.015588795766234398, -0.01418620441108942, -0.031257737427949905, -0.04215787351131439, 0.004762129858136177, 0.03430336341261864, 0.0028703019488602877, -0.03550558537244797, 0.0024445154704153538, -0.009611086919903755, -0.011207369156181812, -0.031792059540748596, -0.16809716820716858, 0.004742092918604612, 0.01665743626654148, -0.03139131888747215, 0.01148120779544115, 0.0045550805516541, 0.010639653541147709, -0.015107907354831696, 0.0035432116128504276, -0.013144279830157757, 0.024231426417827606, -0.0056337397545576096, -0.015334993600845337, -0.014279711060225964, 0.005329845007508993, 0.008796248584985733, -0.026515645906329155, 0.009530939161777496, 0.024565376341342926, 0.019542766734957695, 0.0486498661339283, -0.022615106776356697, -0.005486801732331514, 0.022000638768076897, 0.011835195124149323, -0.010399209335446358, -0.00693948520347476, -0.0330209955573082, -0.021239232271909714, -0.00816174317151308, -0.006475294474512339, 0.01891493983566761, 0.027544213458895683, 0.01573573425412178, 0.03716197982430458, -0.00793465692549944, 0.012362836860120296, -0.004965839441865683, 0.01138102263212204, 0.0029988728929311037, 0.02178691141307354, 0.031177591532468796, 0.030135666951537132, 0.018474124372005463, -0.014426648616790771, 0.026996534317731857, 0.013284538872539997, -0.010412567295134068, 0.020638123154640198, 0.005667135119438171, 0.01117397379130125, -0.02284219302237034, -0.013297896832227707, -0.016617361456155777, 0.03139131888747215, 0.016871163621544838, -0.009764703921973705, -0.0009141886839643121, 0.0051428331062197685, -0.002785144606605172, 0.012983984313905239, -0.035665880888700485, 0.020544616505503654, 0.01707153394818306, -0.038097038865089417, 0.0018367260927334428, -0.007874545641243458, 0.015775807201862335, -0.022908983752131462, 0.0011938719544559717, 0.01922217383980751, -0.010252270847558975, -0.015655584633350372, 0.012623317539691925, 0.016670793294906616, -0.009223704226315022, -0.00867602601647377, 0.01684444770216942, 0.022441454231739044, -0.005667135119438171, -0.00670238072052598, 0.024805821478366852, 0.022895626723766327, -0.02363031543791294, 0.002219099085777998, 0.012963946908712387, 0.022000638768076897, -0.012589922174811363, -0.028105249628424644, -0.02014387585222721, 0.029254037886857986, -0.006004424765706062, -0.008582520298659801, -0.004992555361241102, 0.008642631582915783, -0.008762853220105171, -0.003987365402281284, -0.0066522881388664246, -0.019703062251210213, -0.025460364297032356, 0.008629273623228073, 0.009691234678030014, -0.01765928603708744, 0.0091101611033082, 0.046432435512542725, 0.028880013152956963, -0.021880418062210083, 0.017645929008722305, 0.006411843933165073, -0.009450790472328663, -0.021212516352534294, 0.005964350420981646, -0.0018901581643149257, 0.03237980976700783, 0.0002682037593331188, 0.0062248315662145615, 0.0020855190232396126, 0.023844044655561447, 0.004872333258390427, -0.014333142898976803, -0.026542361825704575, -0.015936102718114853, -0.0038237296976149082, 0.033742327243089676, 0.018260397017002106, -0.027076682075858116, -0.06994253396987915, 0.0008114990196190774, 0.03101729415357113, 0.02363031543791294, -0.003271042136475444, -0.007961372844874859, -0.009417396038770676, 0.03259354084730148, -0.013191033154726028, 0.006101270206272602, -0.0033779062796384096, -0.03155161440372467, 0.0023343118373304605, 0.0410090833902359, -0.025927893817424774, -0.0008515730150975287, -0.008529088459908962, -0.008054878562688828, 0.008261928334832191, 0.0013842235784977674, -0.01696467027068138, -0.0005176228005439043, 0.021386170759797096, -0.018126817420125008, -0.01757913827896118, -0.0018934976542368531, -0.009377321228384972, 0.008195137605071068, 0.009965074248611927, -0.0013608470326289535, 0.01927560567855835, -0.0037669583689421415, 0.005446727853268385, -0.000678753771353513, 0.0034146409016102552, 0.025674091652035713, -0.02050454169511795, -0.01136766467243433, 0.03144475072622299, 0.0047287349589169025, -0.00724671920761466, -0.006168060004711151, -0.01107378862798214, 0.009571013040840626, -0.012469700537621975, -0.014960968866944313, 0.017806224524974823, 0.016617361456155777, -0.022949058562517166, -0.01383889652788639, -0.020384320989251137, 0.0035498905926942825, -0.005349882412701845, -0.010145407170057297, 0.005940974224358797, 0.009884925559163094, 0.00555025227367878, 0.00392725458368659, -0.011487887240946293, 0.01054614782333374, -0.018794717267155647, 0.018487483263015747, -0.007420373614877462, 0.03742913901805878, -0.004995895083993673, 0.010138727724552155, -0.02580767124891281, -0.030082235112786293, 0.02496611699461937, 0.00536991935223341, -0.006188097409904003, 0.0003266450366936624, -0.012095676735043526, 0.028158681467175484, -0.021412886679172516, -0.020905282348394394, 0.0001776197605067864, -0.012910515069961548, 0.02421806938946247, 0.028318976983428, -0.004494969733059406, 9.37669537961483e-05, -0.006739114876836538, -0.0015094549162313342, 0.008622594177722931, 0.017899731174111366, 0.008655989542603493, -0.00040721052209846675, 0.008515730500221252, -0.033662181347608566, -0.01704481802880764, -0.015174697153270245, 0.022187652066349983, 0.0033561994787305593, -0.007607385516166687, -0.01896837167441845, -0.0029237340204417706, -0.01425299420952797, -0.014306426979601383, 0.03235309571027756, -0.02714347280561924, -0.026368707418441772, -0.0857049822807312, 0.013732031919062138, -0.021265948191285133, -0.01863442175090313, -0.0020220684818923473, -0.022254440933465958, 0.033795759081840515, -0.020998788997530937, 0.004668623674660921, -0.013364686630666256, -0.04541722685098648, 0.03291413187980652, -0.0018534236587584019, -0.036360498517751694, -0.036868102848529816, 0.020945357158780098, 0.03387590870261192, 0.016056325286626816, 0.01745891571044922, 0.012316083535552025, 0.012516453862190247, -0.004775487817823887, 0.014600303024053574, 0.00538327731192112, -0.02268189750611782, 0.01696467027068138, -0.011140578426420689, 0.00848233513534069, -0.00016060916823334992, -0.013044094666838646, 0.01604296825826168, 0.0032409867271780968, -0.004765469580888748, -0.02334979735314846, -0.005814073141664267, -0.02558058500289917, -0.005460085812956095, -0.00010832509724423289, 0.010646332055330276, 0.03972671553492546, -0.007126497104763985, -0.03831076622009277, 0.008442261256277561, -0.003923914860934019, 0.0022508243564516306, -0.03465067222714424, 0.007901261560618877, 0.0014426648849621415, 0.022254440933465958, 0.010232234373688698, 0.0339827723801136, -0.001900176634080708, -0.02499283291399479, -0.0024562038015574217, -0.0007797737489454448, -0.06315666437149048, -0.003104067174717784, 0.023283008486032486, -0.0019552784506231546, -0.013104205951094627, 0.020638123154640198, -0.00825524888932705, 0.01896837167441845, 0.0027818051166832447, -0.007053028326481581, -0.021386170759797096, -0.0214262455701828, -0.008642631582915783, 0.01955612376332283, -0.05348546430468559, -0.019903432577848434, -0.0036100016441196203, 0.01072648074477911, -0.0009985110955312848, 0.007941335439682007, -0.014146130532026291, -0.03026924654841423, -0.006618892773985863, -0.011841874569654465, 0.017539065331220627, 0.0091101611033082, 0.0014819040661677718, -0.03203250467777252, 0.002997203031554818, 0.028265545144677162, 0.003446366172283888, -0.026635868474841118, -0.015668943524360657, -0.010085295885801315, 0.005790696479380131, -0.02896016091108322, 0.00018054182874038815, 0.0042945994064211845, 0.007580669596791267, 0.022561674937605858, 0.021746836602687836, 0.01663072034716606, -0.02150639332830906, -0.0028536044992506504, 0.00143348122946918, 0.006398485973477364, -0.03422321751713753, -0.016804374754428864, -0.046966757625341415, -0.0068092443980276585, -0.017258547246456146, -0.024311574175953865, -0.02558058500289917, -0.004605173133313656, 0.010439283214509487, -0.03408963605761528, 0.01771271787583828, 0.010138727724552155, 0.004461574833840132, -0.010332419537007809, 0.008869717828929424, -0.019729778170585632, -0.017231831327080727, -0.038791656494140625, 0.018140174448490143, 0.014533513225615025, 0.01838061958551407, 0.019756494089961052, -0.023857401683926582, 0.0480353981256485, -0.011514603160321712, 0.019956864416599274, -0.017806224524974823, 0.036868102848529816, -0.0040407972410321236, -0.015001042746007442, 0.001562886987812817, -0.029547912999987602, -0.027330484241247177, -0.020972073078155518, -0.009671198204159737, 0.002873641438782215, -0.0062348502688109875, 0.014667092822492123, 0.07309502363204956, -0.015441857278347015, -0.007039670366793871, -0.007801076862961054, -0.013691958039999008, 0.002190713305026293, -0.0028886692598462105, 0.00039030431071296334, 0.009530939161777496, -0.0059142583049833775, 0.011808479204773903, -0.0010728150373324752, -0.003950630780309439, -0.011120541952550411, -0.008849680423736572, -0.0004621036059688777, -0.021412886679172516, 0.04723391681909561, -0.04175713285803795, 0.023002490401268005, 0.0388985201716423, 0.009771383367478848, -0.009323889389634132, 0.010552826337516308, -0.01740548387169838, -0.009170272387564182, 0.040100738406181335, 0.0012973964912816882, 0.0008386324625462294, -0.021493034437298775, 0.016617361456155777, 0.028666285797953606, -0.004054155666381121, -0.015281560830771923, 0.011514603160321712, 0.022254440933465958, -0.006211473606526852, 0.010238912887871265, 0.0403946153819561, -0.0054901414550840855, 0.011247443035244942, 0.012670070864260197, -0.03740242123603821, -0.03742913901805878, 0.001858432893641293, 0.005089401267468929, -0.015962820500135422, -0.021893775090575218, 0.00010936868784483522], "6d444950-9e43-4284-9d89-6948cad48e74": [-0.0015274473698809743, -0.03518488630652428, -0.001071892911568284, -0.010618438944220543, 0.004642636049538851, 0.006354315206408501, -0.012333467602729797, -0.00775112584233284, 0.019562045112252235, -0.015274474397301674, 0.00674287648871541, 0.021960405632853508, 0.010618438944220543, -0.010343766771256924, -0.025658436119556427, -0.0017803472001105547, 0.016560746356844902, -0.025658436119556427, 0.0027450507041066885, -0.040892716497182846, -0.0031151887960731983, 0.012239676900207996, 0.02926267683506012, -0.006953905336558819, -0.04038356617093086, 0.021585244685411453, 0.007710929960012436, -0.026087194681167603, 0.017002901062369347, -0.011020398698747158, 0.013572843745350838, -0.007121388800442219, -0.008802920579910278, -0.012306670658290386, 0.02159864269196987, 0.012299971655011177, 0.0035841420758515596, -0.00525227515026927, -0.0007306457846425474, 0.017364665865898132, 0.02100910060107708, 0.00023510464234277606, 0.024546347558498383, 0.0009295321651734412, -0.01918688416481018, 0.013881013728678226, -0.013974804431200027, 0.008581842295825481, -0.0034468057565391064, 0.0035104493144899607, 0.0038353668060153723, -0.01100700069218874, -0.0504593588411808, -0.024278374388813972, -0.00461583910509944, 0.0075166490860283375, -0.030575744807720184, 0.0013105565449222922, 0.0031687833834439516, -0.008079392835497856, 0.0006075455457903445, 0.02469373308122158, -0.01003559771925211, -0.000659884070046246, -0.017806820571422577, -0.0074027604423463345, -0.013499151915311813, 0.03941886126995087, -0.009908310137689114, -0.011656835675239563, 0.05321948230266571, 0.017217280343174934, 0.00558724207803607, 0.015850616618990898, 0.029691433534026146, 0.014617939479649067, -0.028967905789613724, -0.004398110788315535, 0.016815319657325745, 0.011496051214635372, 0.000525060051586479, -0.016627738252282143, -0.018744727596640587, -0.0128560159355402, 0.021236877888441086, 0.01926727592945099, -0.03510449454188347, 9.682626841822639e-05, 0.0015592692652717233, -0.01412218902260065, 0.011690332554280758, 0.008052595891058445, 0.015515649691224098, 0.009915009140968323, 0.004039696417748928, -0.0018490152433514595, 0.031647637486457825, 0.030441759154200554, -0.00953314732760191, -0.0424201637506485, -0.015689833089709282, 0.01771303080022335, -0.019562045112252235, -0.0032843470107764006, -0.04984302073717117, -0.018289173021912575, 0.030093394219875336, -0.004964204039424658, 0.023528050631284714, -0.02201400138437748, -0.018503552302718163, 0.03440776467323303, 0.008735927753150463, -0.03518488630652428, -0.03550645336508751, -0.009995401836931705, 0.011402261443436146, -0.01759244315326214, -0.008782822638750076, -0.011228078044950962, 0.01120798010379076, 0.0019712781067937613, 0.02677052654325962, 0.007503250613808632, 0.015140487812459469, 0.02784241922199726, 0.00709459139034152, -0.022107791155576706, 0.01023657713085413, -0.02450615167617798, 0.026194382458925247, -0.009419258683919907, 0.012500951066613197, 0.009479553438723087, -0.01859734207391739, -0.009774323552846909, -0.025135889649391174, -0.0028220931999385357, -0.023246677592396736, 0.0011690332321450114, 0.023742428049445152, 0.0228849146515131, -0.015649637207388878, -0.014202581718564034, -0.007757824845612049, 0.022576745599508286, 0.0008018261287361383, 0.009057494811713696, -0.0005459954845719039, -0.01851695030927658, 0.006699330639094114, -0.0390704981982708, 0.005349415820091963, -0.008045895956456661, 0.002964453771710396, 0.016145387664437294, 0.030307771638035774, -0.0025624940171837807, 0.003202280029654503, -0.016882313415408134, 0.0041803824715316296, 0.030013002455234528, 0.02067413553595543, -0.01623917743563652, 0.008173183538019657, 0.02819078415632248, 0.0015215855091810226, 0.00795210525393486, -0.02409079298377037, 0.00457899272441864, -0.0004174520436208695, -0.004230627324432135, -0.015957806259393692, 0.01978982239961624, -0.007181682623922825, 0.022670535370707512, -0.0126885324716568, 0.029771825298666954, -0.013204380869865417, -0.028753528371453285, -0.01348575297743082, -0.00503119733184576, -0.009224978275597095, 0.012500951066613197, -0.0011564720189198852, -0.03912409022450447, -0.00731566920876503, -0.007885112427175045, 0.010216479189693928, 0.004384711850434542, 0.004421558231115341, 0.04705610126256943, 0.008615339174866676, 0.004756524693220854, -0.5998312830924988, -0.01523427851498127, -0.01225307583808899, -0.0012444007443264127, -0.0003808150941040367, 0.01578362286090851, -0.0009973628912121058, 0.02670353278517723, -0.02811039239168167, 0.04475152865052223, -0.0160381980240345, 0.008856515400111675, -0.006361014675348997, -0.0006778885144740343, 0.007965504191815853, -0.01899930275976658, -0.016265975311398506, 9.389530896442011e-05, -0.01472512912005186, 0.005416409112513065, -0.018878713250160217, 0.017873814329504967, -0.03440776467323303, -0.012487552128732204, 0.0064280079677701, -0.0035171485505998135, 0.014604541473090649, -0.01851695030927658, 0.007570243906229734, 0.036203183233737946, -0.043599244207143784, 0.012460755184292793, 0.017485253512859344, 0.019039498642086983, 0.05356784909963608, -0.011496051214635372, -0.02677052654325962, 0.015368265099823475, 0.006247126031666994, 0.049494657665491104, -0.013539347797632217, -0.018034597858786583, 0.0057446761056780815, -0.0016765075270086527, -0.009278573095798492, 0.018356166779994965, 0.023916611447930336, -0.04555545002222061, 0.01665453612804413, 0.03791821375489235, -0.014537547715008259, -0.01732446998357773, -0.0016605965793132782, -0.0032910462468862534, 0.024854516610503197, 0.012440657243132591, 0.027869215235114098, -0.040356770157814026, 0.017217280343174934, -0.014537547715008259, -0.008005700074136257, 0.0012929708464071155, -0.01859734207391739, -0.007563544437289238, -0.01365323644131422, 0.023233279585838318, -0.02851235121488571, -0.004481852520257235, 0.006900310516357422, -0.014912710525095463, 0.012909610755741596, -0.018758125603199005, 0.042393364012241364, -0.013894411735236645, 0.007463054731488228, 0.042580947279930115, 0.01698950305581093, -0.019816620275378227, -0.008380862884223461, 0.015140487812459469, -0.0034803024027496576, -0.01355944573879242, 0.004207179881632328, 0.0024586543440818787, 0.025202881544828415, -0.018289173021912575, -0.031111693009734154, -0.01409539207816124, 0.010785922408103943, -0.00872922781854868, 0.015006501227617264, 0.008106190711259842, 0.010457655414938927, -0.044805124402046204, -0.005439856555312872, 0.03979402408003807, 0.0031168635468930006, -0.025336869060993195, 0.010551446117460728, -0.004773273132741451, -0.014229378663003445, 0.006618938874453306, 0.013479053974151611, -0.018771525472402573, 0.012045396491885185, -0.009827918373048306, -0.033791422843933105, 0.006052845157682896, 0.030146988108754158, -0.018021199852228165, 0.0230724960565567, 0.007905210368335247, 0.001380899571813643, -0.013619739562273026, 0.009124488569796085, -0.030790124088525772, -0.0012326769065111876, 0.01268183346837759, 0.01732446998357773, -0.012266474775969982, 0.02234896831214428, 0.0029142089188098907, 0.028297973796725273, -0.006314119324088097, -0.0030950908549129963, 0.008936907164752483, 0.009285272099077702, -0.008166484534740448, -0.004240676295012236, -0.017565645277500153, -0.0010919909691438079, 0.011770724318921566, 0.020365966483950615, -0.020312370732426643, 0.01348575297743082, 0.011335267685353756, 0.003567393636330962, -0.0013164185220375657, 0.024412361904978752, -0.0076841325499117374, -0.00856174435466528, -0.0026663336902856827, -0.005124988034367561, -0.009982002899050713, 0.004508649464696646, -0.030414961278438568, -0.03087051585316658, -0.0013122314121574163, -0.00801909901201725, 0.019093092530965805, 0.0248947124928236, -0.0022191533353179693, -0.012822519056499004, 0.02502870000898838, -0.010611739940941334, 0.007322368677705526, 0.004696230869740248, -0.02752085030078888, 0.005470003467053175, 0.001835616654716432, -0.00932546891272068, 0.00932546891272068, -0.015515649691224098, 0.007181682623922825, -0.013974804431200027, 0.0018054696265608072, 0.010638536885380745, 0.0012929708464071155, -0.014068594202399254, -0.027413660660386086, 0.010591641999781132, -0.03556004911661148, 0.017471855506300926, 0.002143785823136568, 0.01329147256910801, 0.000458485446870327, -0.030897313728928566, -0.003627687692642212, 0.003731527365744114, -0.014792121946811676, 0.006350965704768896, 0.003453504992648959, 0.01824897713959217, -0.011234777979552746, 0.026810722425580025, 0.01791401021182537, 0.021973805502057076, 0.023943407461047173, -0.023501252755522728, 0.014175783842802048, 0.004589041694998741, 0.004729727748781443, 0.003761674277484417, 0.017297672107815742, 0.03234436735510826, -0.001401835004799068, 0.02611399069428444, 0.009854715317487717, -0.001957879401743412, 0.019883614033460617, 0.02770843170583248, 0.008233477361500263, 0.003059919225051999, -0.034059397876262665, 0.026690134778618813, -0.019843418151140213, -0.02000420168042183, 0.0019394562114030123, 0.0404103621840477, 0.021290473639965057, -0.018838517367839813, -0.028673136606812477, -0.027400262653827667, 0.0010492827277630568, 0.02268393337726593, 0.02470713108778, -0.030039798468351364, 0.0033965606708079576, -0.018289173021912575, 0.017016300931572914, 0.014430358074605465, -0.006836667191237211, 0.011770724318921566, -0.025001902133226395, 0.007014199160039425, -0.024747328832745552, -0.010444256477057934, 0.013747027143836021, 0.0163731649518013, -0.01224637683480978, -0.012005200609564781, -0.011944906786084175, -0.0077980211935937405, 0.012547846883535385, 0.0008344853995367885, -0.04105350002646446, 0.010430858470499516, -0.01047105435281992, 0.014711730182170868, -0.0035305472556501627, 0.010993601754307747, 0.0010450956178829074, 0.01658754236996174, -0.001639661262743175, 0.009010599926114082, -0.012574643827974796, 0.0312188807874918, 0.018610740080475807, -0.03363063931465149, -0.012990002520382404, -0.008856515400111675, -0.02079472318291664, -0.015944406390190125, 0.014564345590770245, -0.00925847515463829, -0.01952184922993183, 0.0019294072408229113, -0.01127497386187315, 0.03941886126995087, 0.028351567685604095, 0.00013942981604486704, 0.028083594515919685, 0.014537547715008259, -0.013237877748906612, 0.016600942239165306, -0.03502410277724266, -0.005111589562147856, -0.003687981516122818, -0.020017599686980247, -0.00034941197372972965, -0.005470003467053175, 0.004110039211809635, 0.02462673932313919, -0.022067595273256302, -0.01040406059473753, 0.006414609029889107, -0.010826118290424347, 0.02819078415632248, 0.04622538387775421, 0.011315169744193554, -0.000840347318444401, -0.024613341316580772, 0.0023732378613203764, 0.010792622342705727, 0.024519551545381546, 0.00758364237844944, -0.012902910821139812, 0.012661735527217388, 0.0004777460126206279, 0.017833618447184563, 0.02851235121488571, 0.015596042387187481, 0.0035204982850700617, -7.26458674762398e-05, -0.013204380869865417, 0.006548595614731312, 0.023514650762081146, -0.0131172901019454, -0.04121428355574608, -0.02502870000898838, 0.010511250235140324, -0.03689991310238838, -0.008568444289267063, -0.0016128638526424766, 0.04877112805843353, 0.0022107791155576706, -0.004123438149690628, -0.004873763304203749, 0.020982304587960243, -0.01348575297743082, -0.01804799772799015, -0.013043597340583801, -0.009640336968004704, -0.012119089253246784, -0.03261234238743782, 0.011837717145681381, 0.0014386812690645456, 0.005761424545198679, 0.00899720098823309, 0.013184282928705215, -0.005979152861982584, -0.017284274101257324, -0.019213680177927017, 0.006458154879510403, -0.015046697109937668, 0.007999001070857048, 0.0054432060569524765, 0.010089192539453506, -0.017565645277500153, -0.005520248785614967, -0.02241596020758152, 0.0026110641192644835, -0.0028622890822589397, -0.016962705180048943, 0.0027902713045477867, -0.0072888717986643314, 0.009975303895771503, -0.0031168635468930006, 0.023568246513605118, 0.005215429235249758, -0.021223479881882668, -0.030280975624918938, 0.001258636824786663, -0.018302571028470993, -0.0026663336902856827, -0.02067413553595543, 0.015207480639219284, 0.00682661822065711, 0.008394261822104454, -0.002286146627739072, 0.008588542230427265, 0.03912409022450447, 0.0163731649518013, -0.01757904328405857, 0.0028488903772085905, 0.0043579149059951305, -0.0058585647493600845, 0.01711009070277214, 0.006900310516357422, 0.0255646463483572, -0.016480354592204094, 0.0430900938808918, 0.00546665396541357, 0.037677034735679626, -0.014979703351855278, 0.020285572856664658, 0.024264976382255554, 0.0018892112420871854, 0.010712229646742344, -0.03046855702996254, 0.003785121953114867, 0.0058083198964595795, -0.002235901542007923, -0.031513653695583344, 0.01765943504869938, 0.01650715060532093, -0.03060254268348217, -1.046116176439682e-05, 0.0058183688670396805, 0.03577442467212677, -0.02348785288631916, -0.0016404986381530762, -0.021893413737416267, 0.006347615737468004, 0.005269023589789867, -0.0013549396535381675, -0.012768924236297607, -0.018905511125922203, -0.024117590859532356, -0.021719230338931084, -0.040839120745658875, -0.01844995655119419, -0.029825421050190926, -0.0257120318710804, 0.015689833089709282, -0.04550185427069664, -0.03577442467212677, 0.009452755562961102, 0.0029862266965210438, 0.01811498962342739, 0.02167903445661068, -0.03462214022874832, -0.011824319139122963, 0.02409079298377037, -0.009492951445281506, 0.017056496813893318, -0.025993403047323227, -0.02510909177362919, -0.0007469753618352115, 0.004659384489059448, 0.003641086397692561, -0.00915798544883728, -0.02094210870563984, 0.021625440567731857, 0.00030795985367149115, 0.008132987655699253, 0.011924808844923973, 0.014242777600884438, 0.002895785728469491, -0.007597041316330433, 0.009921709075570107, 0.022067595273256302, -0.018704531714320183, -0.02529667317867279, 0.013211079873144627, -0.04008879512548447, -0.015998002141714096, 0.0027701733633875847, -0.0007440444314852357, -0.013988202437758446, -0.011630037799477577, 0.015689833089709282, -0.01925387606024742, 0.005905460100620985, 0.01543525792658329, -0.01039736159145832, -0.010625138878822327, -0.019964005798101425, 0.002453629858791828, 0.005001050420105457, -0.0061399368569254875, 0.010283472947776318, 0.00932546891272068, 0.007168284151703119, 0.011603240855038166, -0.019642438739538193, 0.043116893619298935, 0.010263375006616116, 0.01198510266840458, -0.006699330639094114, -0.010176283307373524, -0.01858394406735897, -0.036337170749902725, 0.022536547854542732, 0.004736426752060652, 0.013592942617833614, -0.02166563645005226, -0.025202881544828415, -0.027078695595264435, -0.020499952137470245, 0.024519551545381546, 0.023273475468158722, -0.03279992192983627, -0.03443456068634987, -0.012393762357532978, -0.004009549506008625, 0.009888212196528912, -0.017873814329504967, -0.01899930275976658, -0.025189483538269997, -0.006665834225714207, -0.006200230680406094, 0.02698490396142006, 0.008514849469065666, 0.021893413737416267, 0.0077243284322321415, -0.02321987971663475, -0.0027785473503172398, 0.0015525699127465487, -0.023782623931765556, -0.0025407210923731327, -0.03430057317018509, 0.008313869126141071, 0.01050455030053854, 0.02415778674185276, 0.013499151915311813, 0.00197965232655406, 0.017552247270941734, -0.0029862266965210438, 0.005352765321731567, -0.024586543440818787, 0.017605841159820557, -0.006495001260191202, -0.012186083011329174, 0.016158785670995712, 0.007885112427175045, -0.0020014250185340643, -0.010926608927547932, 0.017887212336063385, 0.01865093782544136, -0.007134787272661924, -0.002254324732348323, -0.0008520711562596262, -0.042045000940561295, -0.0019662536215037107, 0.0031470106914639473, 0.004719678312540054, -0.009251776151359081, 0.0014520799741148949, -0.023742428049445152, -0.010424158535897732, 0.009338866919279099, 0.04630577564239502, 0.017605841159820557, 0.024063996970653534, -0.02584601752460003, -0.014175783842802048, -0.011261574923992157, -0.0004015411250293255, 0.000551438657566905, 0.015555846504867077, -0.004086591769009829, 0.017485253512859344, 0.009881513193249702, 0.022938508540391922, -0.0009764274582266808, 0.021625440567731857, 0.00889671128243208, 0.004954155068844557, 0.032719530165195465, -0.0008951980853453279, -0.04373323172330856, 0.009030697867274284, -0.029503852128982544, -0.042982906103134155, -0.03403260186314583, 0.0022844718769192696, 0.005322618409991264, -0.035747628659009933, 0.008139686658978462, 0.010698831640183926, 0.013211079873144627, 0.01899930275976658, -0.0002587616618257016, -0.012829218059778214, -0.008139686658978462, 0.01638656295835972, -0.02516268566250801, 0.0167081318795681, 0.029235878959298134, -0.006216979119926691, -0.0058820126578211784, -0.06072273477911949, -0.01657414436340332, -0.012366964481770992, 0.024640139192342758, 0.05104890093207359, 0.0028220931999385357, -0.03427377715706825, 0.006615589372813702, -0.0010367213981226087, 0.010363864712417126, -0.03087051585316658, 0.020044397562742233, 0.007014199160039425, -0.008856515400111675, -0.031192084774374962, 0.00039107343764044344, -0.021652236580848694, 0.02443915791809559, -0.022241778671741486, -0.006974003277719021, -0.0035908413119614124, -0.02490811236202717, -0.010846216231584549, 0.005446556024253368, -0.028431959450244904, 0.023300273343920708, 0.00379182118922472, 0.01866433583199978, 0.004210529383271933, -0.0058920616284012794, -0.04617178812623024, -0.014015000313520432, -0.012969904579222202, 0.006049495656043291, -0.007878413423895836, 0.00216388376429677, 0.020030999556183815, 0.023595042526721954, -0.014015000313520432, -0.013566144742071629, -0.012045396491885185, 0.04552865028381348, -0.020620539784431458, -0.003379812464118004, -0.0005212916876189411, 0.02837836556136608, 0.019012700766324997, 0.004652685020118952, 0.011187882162630558, 0.00488381227478385, -0.0008445343701168895, -0.016949307173490524, 0.022710731253027916, -0.019481653347611427, 0.01818198338150978, -0.010457655414938927, -0.020633939653635025, 0.001845665625296533, -0.018155187368392944, -0.006823268253356218, 0.017270874232053757, -0.031111693009734154, -0.006521798670291901, -0.014644737355411053, -0.030709732323884964, 0.025390462949872017, 0.011851116083562374, 0.013840817846357822, 0.006193531211465597, 0.05579202622175217, -0.03478292375802994, 0.01832936890423298, -0.010491152293980122, -0.004022947978228331, -0.012500951066613197, -0.004287571646273136, -0.016212381422519684, -0.010658634826540947, 0.010450956411659718, 0.0042440262623131275, -0.03590841218829155, -0.021705832332372665, 0.012862714938819408, 0.023662036284804344, 0.006793121341615915, 0.02979862317442894, 0.0312188807874918, -0.014068594202399254, 0.019950607791543007, -0.02435876615345478, -0.009137887507677078, 0.006873513571918011, -0.014443757012486458, -0.012286572717130184, 0.03422018140554428, -0.011201281100511551, -0.010283472947776318, 0.010866314172744751, -0.0023112690541893244, -0.005657584872096777, -0.002031572163105011, -0.043652839958667755, -0.002750075189396739, -0.010196381248533726, -0.018570544198155403, -0.00856174435466528, -0.039365269243717194, -0.014162384904921055, -0.01865093782544136, 0.0029594292864203453, 0.031915612518787384, -0.009023998863995075, 0.021799622103571892, 0.015555846504867077, 0.008548346348106861, 0.011556345969438553, -0.01786041632294655, -0.025390462949872017, -0.018088193610310555, -0.03655155003070831, -0.0005133362137712538, -0.03210319206118584, -0.015033298172056675, 0.01712348870933056, -0.004729727748781443, -0.009044096805155277, -0.018892113119363785, -0.009673833847045898, -0.011315169744193554, -0.015274474397301674, -0.015341467224061489, 0.026810722425580025, 0.016413360834121704, -0.02363523840904236, 0.010089192539453506, 0.036685533821582794, 0.0008533272775821388, 0.019642438739538193, -0.019441457465291023, -0.013592942617833614, -0.0021454605739563704, -0.02275092713534832, -0.004666083957999945, -0.011877913028001785, -0.004290921147912741, -0.006227028090506792, -0.0023347167298197746, -0.004394760821014643, 0.024934908375144005, 0.015086892992258072, 0.03154044970870018, -0.003765024011954665, -0.017887212336063385, -0.027011701837182045, -0.004903910215944052, -0.008045895956456661, 0.009740826673805714, -0.022710731253027916, -0.00835406593978405, 0.013157485984265804, -0.0012293271720409393, 0.004458404611796141, -0.000844953116029501, 0.017351265996694565, -0.004702930338680744, 0.017954206094145775, -0.01664113812148571, -0.007463054731488228, -0.0029828769620507956, -0.01057154405862093, 0.0072151790373027325, -0.0374358594417572, 0.005128337536007166, 0.04032997041940689, -0.0002667171065695584, -0.016131987795233727, -0.02569863200187683, 0.0019260576227679849, -0.04796720668673515, -0.008983802981674671, -0.006377763114869595, -0.007938707247376442, -0.02181302197277546, 0.01690911129117012, 0.01898590289056301, -0.01571662910282612, 0.005155134946107864, 0.015448656864464283, 0.03706069663167, -0.02744045853614807, 0.007128087803721428, 0.016399960964918137, -0.025323471054434776, -0.016413360834121704, 0.003041496267542243, -0.003785121953114867, -0.005778172984719276, -0.031111693009734154, 0.00882971752434969, -0.02644895762205124, 0.002113638911396265, 0.004790021572262049, -0.006833317223936319, -0.015529048629105091, 0.014792121946811676, 0.006216979119926691, -0.007717628963291645, 0.010980202816426754, 0.26068437099456787, -0.02074112743139267, 0.004944106098264456, 0.03212999179959297, 0.00026127390447072685, 0.024988504126667976, 0.01093330793082714, 0.013237877748906612, 0.014269574545323849, 0.0280567966401577, -0.01153624802827835, -0.01911989040672779, -0.0006548595847561955, -0.0008893361664377153, 0.011851116083562374, -0.022925110533833504, -0.02851235121488571, -0.007898511365056038, -0.03829337656497955, 0.014336568303406239, 0.03912409022450447, -0.006669183727353811, -0.0020466456189751625, -0.014376764185726643, 0.01737806387245655, -0.004924008157104254, -0.020231978967785835, 0.027078695595264435, 0.016962705180048943, 0.00862203910946846, -0.016399960964918137, 0.02094210870563984, 0.014229378663003445, -0.013613040558993816, 0.009606840088963509, -0.02336726523935795, 0.04188421741127968, -0.018677733838558197, 0.019240478053689003, 0.01571662910282612, 0.007295571267604828, 0.01368673238903284, -0.009419258683919907, -0.002286146627739072, -0.02517608553171158, 0.015957806259393692, 0.01385421585291624, -0.01138216257095337, 0.018530348315835, -0.017418259754776955, -0.01429637148976326, -0.015542447566986084, 0.02945025824010372, 0.030307771638035774, 0.0037348768673837185, -0.004910609684884548, 0.02402380108833313, -0.0126885324716568, -0.002947705565020442, 0.006377763114869595, -0.003359714290127158, 0.025551248341798782, -0.02147805504500866, 0.020687533542513847, -0.018289173021912575, -0.017672834917902946, -0.028083594515919685, 0.02845875732600689, -0.006495001260191202, -0.005667633842676878, -0.007637237198650837, 0.009466154500842094, -0.00802579801529646, -0.008568444289267063, -0.018141787499189377, -0.018342766910791397, 0.033871814608573914, 0.016748327761888504, 0.027815621346235275, 0.056006405502557755, 0.024345368146896362, 0.015127088874578476, 0.005044596269726753, 0.018074793741106987, -0.013894411735236645, -0.02368883416056633, 0.015850616618990898, -0.008508150465786457, 0.009338866919279099, -0.017029698938131332, 0.007543446496129036, -0.011965004727244377, -0.0026244628243148327, -0.022094393149018288, 0.016359765082597733, 0.01251435000449419, -0.012902910821139812, 0.014832318760454655, -0.014390162192285061, 0.0057547250762581825, -0.03738226741552353, 0.022442758083343506, 0.021424459293484688, 0.026221180334687233, -0.004994350951164961, 0.005255625117570162, -0.013934607617557049, 0.01022987812757492, 0.02583261951804161, -0.01859734207391739, 0.006873513571918011, -0.05541686341166496, -0.0006355990190058947, -0.002669683424755931, -0.006133237387984991, 0.03510449454188347, -0.014349966309964657, -0.007878413423895836, -0.017217280343174934, 0.004518698435276747, 0.032237179577350616, -0.025068895891308784, -0.014832318760454655, -0.002227527555078268, -0.010544747114181519, -0.010725628584623337, -0.01110749039798975, -0.008675632998347282, -0.01191140990704298, -0.0578286238014698, 0.013787223026156425, -0.00214043608866632, 0.016091791912913322, 0.0031587344128638506, 0.018436558544635773, -1.5609964975737967e-05, -0.007509949617087841, -0.013961405493319035, -0.003865513950586319, 0.017605841159820557, 0.008762724697589874, 0.003202280029654503, 0.017230678349733353, -0.010638536885380745, -0.017364665865898132, -0.001607001991942525, 0.012641637586057186, 0.021491453051567078, 0.013907810673117638, -0.02094210870563984, -0.024251578375697136, -0.014403561130166054, 0.01030357088893652, -0.0009831268107518554, 0.024787524715065956, 0.0025909661781042814, -0.02106269635260105, -0.04260774329304695, -0.013036897405982018, 0.013566144742071629, -0.0360959954559803, -0.016078393906354904, 0.02248295396566391, -0.02845875732600689, -0.022442758083343506, -0.017565645277500153, -0.16978783905506134, -0.00916468445211649, 0.019508451223373413, -0.02536366693675518, 0.03644435852766037, 0.0126885324716568, -0.018892113119363785, -0.007603740319609642, -0.016815319657325745, -0.0024603293277323246, 0.02845875732600689, 0.008246876299381256, -0.01732446998357773, 0.015341467224061489, -0.00043420036672614515, 0.006809869781136513, -0.012701931409537792, 0.006987402215600014, 0.052656739950180054, 0.009848016314208508, 0.053782228380441666, -0.012675133533775806, -0.0063911615870893, -0.00014298883615992963, 0.019763026386499405, -0.0021705832332372665, -0.011938207782804966, -0.0018557145958766341, -0.011462555266916752, -0.020901912823319435, 0.007349166087806225, 0.0023347167298197746, 0.03443456068634987, 0.0013783873291686177, -0.007067793980240822, 0.0027567746583372355, -0.003537246724590659, -0.0036142889875918627, -0.0013440531911328435, 0.014979703351855278, -0.007114689331501722, 0.029423460364341736, 0.0289143119007349, -0.00511493906378746, 0.005654235370457172, 0.013974804431200027, 0.006816569250077009, -0.029959406703710556, 0.0002822093083523214, 0.0029426810797303915, 0.019414661452174187, -0.025953207165002823, -0.02166563645005226, -0.008782822638750076, 0.012802421115338802, 0.018610740080475807, -0.0018004451412707567, 0.02174602821469307, -0.02690451219677925, -0.007255375385284424, -0.004200480412691832, -0.04381362348794937, 0.013626438565552235, 0.0018691133009269834, -0.012983303517103195, 0.006116488948464394, -0.03020058386027813, 0.031031299382448196, 0.005446556024253368, -0.00044048100244253874, 0.02497510425746441, -0.032076396048069, -0.012407160364091396, 0.002306244568899274, 0.024345368146896362, -0.014256175607442856, 0.011636737734079361, 0.044429961591959, 0.031058097258210182, -0.0060561951249837875, -0.004779972601681948, 0.04702930152416229, 0.010142786428332329, -0.029986204579472542, -0.010651935823261738, 0.011435757391154766, 0.006920408923178911, -0.0039626541547477245, -0.03376462683081627, -0.009760924614965916, 0.03971363231539726, -0.029343068599700928, -0.013036897405982018, -0.004441656172275543, 0.007396060973405838, 0.005399660672992468, 0.016466954723000526, 0.0017284273635596037, -0.014349966309964657, 0.0005644186167046428, -0.01117448415607214, -0.00989491119980812, -0.016547346487641335, 0.024532949551939964, 0.032317571341991425, 0.02638196386396885, 0.010370563715696335, 0.020700931549072266, 0.030093394219875336, -0.014108791016042233, -0.00838756188750267, 0.004321068525314331, 0.030709732323884964, 0.019682634621858597, 0.01866433583199978, 0.01275552622973919, 0.0023430909495800734, 0.002585941692814231, -0.008742626756429672, -0.006548595614731312, -0.027494054287672043, -0.0011162760201841593, 0.001905959565192461, 0.012380363419651985, 0.01224637683480978, -0.018771525472402573, -0.05536327138543129, -0.0128560159355402, 0.005191981326788664, 0.023474454879760742, -0.013412060216069221, 0.025269875302910805, 0.0008009887533262372, 0.00785831455141306, -0.01792741008102894, 0.004401460289955139, 0.008320569060742855, -0.006163384299725294, -0.01851695030927658, 0.005607340019196272, 0.018503552302718163, 0.0009119464084506035, 0.012286572717130184, -0.019213680177927017, -0.008300471119582653, 0.010343766771256924, 0.002733326982706785, -0.00996190495789051, -0.013673334382474422, -0.010002100840210915, -0.007503250613808632, -0.008146386593580246, -0.02059374377131462, 0.009492951445281506, 0.010960104875266552, -0.0016656210646033287, 0.03719468414783478, -0.007416159380227327, -0.002597665414214134, -0.015877414494752884, 0.020030999556183815, -0.0027952957898378372, -0.02563164010643959, -0.02280452288687229, 0.017351265996694565, 0.0027149037923663855, 0.005898760631680489, 0.0029410063289105892, 0.015180683694779873, 0.012494252063333988, -0.015931008383631706, -0.0038487655110657215, 0.008782822638750076, 0.008307170122861862, -0.007925308309495449, 0.012226278893649578, -0.03301430121064186, 0.01644015684723854, -0.013097191229462624, -0.0058183688670396805, 0.02618098445236683, 0.011134287342429161, 0.025725429877638817, 0.025926409289240837, -0.04676133021712303, 0.01778002455830574, -0.002286146627739072, 0.014497351832687855, -0.008367463946342468, 0.029423460364341736, 0.006565344054251909, -0.0010643561836332083, -0.02985221892595291, -0.007570243906229734, -0.007034297101199627, 2.776558540062979e-05, -0.010698831640183926, 0.009613540023565292, -0.023782623931765556, 0.006719428580254316, -0.017820220440626144, -0.02276432514190674, 0.003368088509887457, -0.025685233995318413, 0.00704769603908062, -0.013398661278188229, -0.018302571028470993, -0.010986902751028538, 0.0014277949230745435, 0.00354729569517076, 0.018356166779994965, 0.0397404320538044, 0.0028723380528390408, -0.004528747405856848, 0.003527197754010558, -0.03845416009426117, -0.030414961278438568, -0.008280373178422451, 0.0027350017335265875, -0.003433407051488757, -0.023139487951993942, -0.020955506712198257, 0.023916611447930336, -0.011187882162630558, 0.014108791016042233, 0.003902360098436475, 0.005614039022475481, -0.02348785288631916, -0.08130307495594025, 0.00889671128243208, -0.004019598476588726, -0.0029326321091502905, 0.015448656864464283, 0.0041301376186311245, 0.026609741151332855, 0.0010651935590431094, 0.01873132959008217, 0.02052675001323223, -0.044054798781871796, 0.032183583825826645, 0.004836916923522949, -0.00480007054284215, -0.023045698180794716, -0.01073902752250433, 0.02610059268772602, 0.0015768549637869, 0.007275473326444626, 0.02112969011068344, -0.002420133212581277, -0.006317468825727701, -0.01181761920452118, 0.022576745599508286, -0.04260774329304695, 0.019374465569853783, -0.004247375763952732, 0.028699932619929314, -0.0035506454296410084, -0.008340667001903057, -0.01550225168466568, -0.0024251576978713274, 0.005158484913408756, -0.0014730154071003199, -0.0074027604423463345, 0.012340167537331581, 0.00962693803012371, 0.0037583245430141687, 0.006846716161817312, 0.03456854820251465, -0.026663336902856827, -0.019106490537524223, 0.008032497949898243, -0.020218580961227417, -0.002269398421049118, -0.008039196953177452, -0.009908310137689114, 0.019093092530965805, 0.0010769173968583345, 0.031701233237981796, 0.00889671128243208, 0.019213680177927017, 0.006873513571918011, -0.008514849469065666, 0.0035070995800197124, -0.02020518109202385, -0.01033036783337593, 0.002371563110500574, 0.007878413423895836, 0.011777423322200775, 0.027266277000308037, -0.013010100461542606, 0.012594741769134998, 0.006052845157682896, -0.004759874660521746, 0.004183731973171234, -0.019508451223373413, -0.013298171572387218, 0.03381822258234024, -0.018624139949679375, -0.04303650185465813, 0.008434457704424858, -0.005570493638515472, 0.005191981326788664, 0.025993403047323227, -0.0023648638743907213, 0.0031051398254930973, -0.008092791773378849, -0.014832318760454655, 0.02926267683506012, 0.009050795808434486, 0.011161085218191147, -0.027815621346235275, 0.014658135361969471, 0.02596660703420639, -0.013566144742071629, -0.007771223783493042, -0.012159285135567188, 0.0002748819242697209, -0.002413433976471424, -0.024814320728182793, -0.0028304671868681908, 0.02477412484586239, 0.01933426782488823, 0.010437557473778725, 0.029986204579472542, -0.0126885324716568, -0.0057145291939377785, 0.03641756251454353, 0.010075793601572514, 0.0075166490860283375, -0.0073290676809847355, -0.013358465395867825, -0.012762225233018398, -0.015341467224061489, 0.0035004003439098597, -0.006933807395398617, -0.02616758644580841, -0.005305869970470667, -0.0042540752328932285, -0.01826237514615059, -0.010048995725810528, 0.0062605245038867, 0.012132488191127777, -0.024211380630731583, 0.0126148397102952, 0.0038085696287453175, -0.03569403290748596, -0.014591142535209656, 0.005165183916687965, 0.019508451223373413, 0.007911909371614456, 0.016091791912913322, -0.011429058387875557, 0.022362366318702698, -0.019830018281936646, 0.006444756407290697, -0.04968223720788956, 0.02281792089343071, 0.0008311357232742012, 0.0060260482132434845, 0.020781323313713074, -0.017230678349733353, -0.022027399390935898, -0.006243776064366102, 0.009050795808434486, 0.00025792422820813954, -0.01214588712900877, -0.02529667317867279, 0.06292011588811874, 0.02099570259451866, -0.0192002821713686, 0.012896211817860603, 0.0036645338404923677, -0.01258804276585579, -0.0009052470559254289, 0.024331970140337944, -0.010819419287145138, -0.02375582605600357, 0.047082897275686264, -0.013251276686787605, 0.007181682623922825, -0.014202581718564034, -0.024814320728182793, 0.00856174435466528, -0.04550185427069664, 0.014135587960481644, -0.0016823693877086043, -0.004609139636158943, 0.031111693009734154, 0.009881513193249702, 0.025953207165002823, 0.0036243379581719637, -0.025752227753400803, -0.00441150926053524, 0.011181183159351349, -0.003193906042724848, 0.013458955101668835, -0.007972203195095062, 0.020044397562742233, 0.012916309759020805, -0.01047105435281992, -0.028807122260332108, 0.0013775498373433948, 0.027949608862400055, -0.007978903129696846, 0.015314670279622078, 0.036953508853912354, 0.00709459139034152, -0.009586742147803307, 0.01147595327347517, -0.030816921964287758, -0.010678733699023724, 0.011201281100511551, -0.0011079018004238605, -0.009720728732645512, -0.01023657713085413, 0.012728728353977203], "c672c616-984e-4cb1-8d30-e8a926d7fe1c": [0.002728404477238655, -0.013776533305644989, 0.0024527409113943577, -0.022318780422210693, -0.017310339957475662, 0.0033461565617471933, -0.030342914164066315, -0.015490296296775341, 0.03191054239869118, -0.007140681147575378, 0.0018134008860215545, -0.001239655539393425, -0.028589295223355293, 0.0116509348154068, -0.011896707117557526, 0.005214357748627663, -0.004012066405266523, -0.03185740113258362, 0.006948049180209637, -0.0350457988679409, -0.021242696791887283, 0.0003041016752831638, 0.016725800931453705, -0.008010848425328732, -0.036347728222608566, 0.03294677287340164, 0.02080429159104824, -0.022212499752640724, -0.004161522723734379, -0.006738810334354639, 0.010581493377685547, 0.007997563108801842, -0.017097780480980873, -0.004849020857363939, 0.011325452476739883, -0.005274140276014805, 0.0028413268737494946, -0.011445017531514168, -0.012932936660945415, -0.014733051881194115, 0.026795821264386177, 0.00027877718093805015, 0.009445627219974995, -0.002803132636472583, -0.02188037522137165, 0.018346568569540977, -0.03571004793047905, -0.008695024996995926, 0.0026038577780127525, 0.010242725722491741, -0.005044974386692047, 0.012095982208848, -0.05213029310107231, -0.01258088368922472, 0.0024676865432411432, -0.0046165334060788155, -0.013358055613934994, -0.004775953479111195, 0.012713734060525894, -0.003150202799588442, -0.018519273027777672, 0.01590213179588318, -0.010156373493373394, -0.011471587233245373, -0.024550657719373703, 0.019462507218122482, -0.02645041234791279, 0.015051892027258873, -0.02185380645096302, -0.0011159389978274703, 0.03390328958630562, 0.034062709659338, 0.005403669085353613, 0.0040087453089654446, 0.028270455077290535, 0.004526859614998102, -0.028297025710344315, -0.0073598837479949, -0.007506018504500389, 0.0075525157153606415, -0.0014123603468760848, -0.0058321100659668446, -0.012494531460106373, -0.0058653224259614944, 0.015782566741108894, 0.0018914502579718828, -0.0040087453089654446, 0.010720985941588879, -0.006503001786768436, 0.003278070827946067, 0.006038027349859476, 0.005612907465547323, -0.0006812707870267332, 0.01558329164981842, 0.01157122477889061, 0.006400043144822121, 0.011451659724116325, 0.012600811198353767, -0.010016880929470062, -0.03613516688346863, -0.014294647611677647, 0.009664828889071941, -0.009438984096050262, -0.0061144158244132996, -0.01679222472012043, -0.034726958721876144, 0.043043363839387894, -0.010840550996363163, -0.002044227672740817, -0.00396889029070735, -0.01986105740070343, 0.02064487151801586, 0.004882233217358589, -0.03727767616510391, 0.0008323875372298062, -0.005031689535826445, 0.02594558149576187, -0.023687133565545082, -0.008203480392694473, -0.02513519860804081, 0.009937170892953873, -0.008681739680469036, 0.025679882615804672, 0.01084719318896532, 0.0055730524472892284, 0.007021116558462381, -0.012932936660945415, 0.0008809607825241983, 0.0024510803632438183, -0.017669035121798515, 0.03903129696846008, -0.001874843961559236, 0.005656084045767784, -0.011365307494997978, -0.009830891154706478, -0.014201652258634567, -0.013145496137440205, -0.007685365621000528, -0.002705155871808529, -0.016911789774894714, 0.015782566741108894, 0.008329687640070915, 0.002798150759190321, -0.022318780422210693, 0.018160579726099968, 0.02736707590520382, 0.025573601946234703, -0.004091776441782713, 0.0030754748731851578, -0.009206497110426426, 0.006669064052402973, -0.022106220945715904, -0.009777751751244068, -0.015370731242001057, -0.003640086855739355, 0.030502334237098694, 0.03169798105955124, -0.00775843346491456, -0.0006899890722706914, 0.004105061292648315, -0.007273531053215265, 0.023540999740362167, 0.002014336409047246, -0.008781377226114273, -0.004420579876750708, 0.021415401250123978, 0.006745452992618084, 0.02117627114057541, -0.017669035121798515, -0.005928426049649715, 0.009319419041275978, 0.003493951866403222, -0.024497518315911293, 0.034381549805402756, -0.013019288890063763, 0.021920230239629745, -0.012401537038385868, 0.009804321452975273, -0.012494531460106373, -0.030741462484002113, -0.01483933161944151, -0.010003596544265747, -0.0039356779307127, 0.02114970237016678, -0.017403334379196167, -0.05061580613255501, 0.012228831648826599, 0.013544045388698578, 0.025958867743611336, 0.02319558896124363, 0.02594558149576187, 0.03515207767486572, 0.005885249935090542, 0.008150340057909489, -0.6002689003944397, -0.0353114977478981, -0.01141180470585823, 0.014945612289011478, -7.498753257095814e-05, 0.02634413167834282, -0.01006337907165289, 0.024284958839416504, -0.007486090995371342, 0.014188367873430252, -0.01660623587667942, 0.005818824749439955, 0.0011508121388033032, -0.022916605696082115, 0.005891892593353987, -0.017801884561777115, -0.0031385784968733788, -0.002542414702475071, -0.0056660473346710205, 0.02075115218758583, -0.025666598230600357, -0.004320942331105471, -0.030768033117055893, 0.006008136086165905, 0.01098004262894392, -0.005785612389445305, 0.023673849180340767, -0.03552405908703804, -0.018266858533024788, 0.020379172638058662, -0.040625493973493576, 0.004686279688030481, 0.02510862797498703, 0.0015626467065885663, 0.04761339724063873, -0.014454067684710026, -0.03722453862428665, 0.013165423646569252, 0.004672994837164879, 0.05061580613255501, 0.0015219615306705236, -0.04035979509353638, 0.019794633612036705, 0.007060971576720476, 0.000266322516836226, 0.00603470578789711, 0.023155733942985535, -0.032229382544755936, 0.008249977603554726, 0.013211920857429504, 0.013211920857429504, -0.013989092782139778, 0.001477124635130167, 0.00644654082134366, 0.026277707889676094, -0.006074560806155205, 0.03294677287340164, -0.028615865856409073, 0.007725220639258623, -0.020259607583284378, -0.009704683907330036, 0.003972211387008429, -0.02311588078737259, -0.022212499752640724, -0.04022694379091263, 0.030821172520518303, -0.020844146609306335, -0.02742021530866623, 0.020525306463241577, -0.019475793465971947, 0.02400597371160984, -0.0046530673280358315, 0.011697432026267052, -0.0058952136896550655, 0.016367105767130852, 0.03956269472837448, 0.016313966363668442, -0.0017635822296142578, 0.0011890064924955368, 0.007027758751064539, 0.009206497110426426, 0.013145496137440205, 0.028881564736366272, -0.0332656092941761, 0.006948049180209637, -0.004712849855422974, -0.02381998486816883, -0.011325452476739883, 0.0008427664288319647, 0.004835736006498337, 0.014241507276892662, 0.01652652584016323, 0.012853226624429226, -0.0473211295902729, -0.002419528551399708, 0.03496608883142471, -0.011212530545890331, -0.004038636572659016, 0.015729425475001335, 0.009963741526007652, 0.011159390211105347, -0.004563393536955118, 8.764978701947257e-05, -0.0009913922986015677, 0.038978155702352524, -0.012932936660945415, -0.04644431918859482, 0.023368295282125473, 0.018173864111304283, -0.015105031430721283, 0.010342363268136978, 0.009844176471233368, -0.016964931041002274, 0.002442777156829834, 0.025068772956728935, -0.036454007029533386, -0.0012346736621111631, 0.01477290689945221, 0.020113471895456314, -0.020870717242360115, 0.02734050527215004, -0.02702166698873043, 0.006380115635693073, 0.0032813921570777893, -0.004789238329976797, 0.0017967947060242295, 0.012899723835289478, 0.0022717330139130354, -0.017615893855690956, 0.0007518473430536687, -0.021003566682338715, -0.007466163486242294, 0.0168985053896904, -0.006576069165021181, -0.004649745766073465, 0.011305524967610836, 0.002740028779953718, -0.008183552883565426, 0.004626497160643339, -0.012614096514880657, -0.01660623587667942, -9.081535245059058e-05, 0.02613157220184803, -0.006233980879187584, 0.018319999799132347, -0.026118287816643715, -0.006855053827166557, -0.00981096364557743, -0.003749687923118472, 0.002793168881908059, 0.0017087815795093775, -0.013098998926579952, -0.0013409535167738795, 0.03392986208200455, 0.008841159753501415, 0.0061144158244132996, 0.002397940494120121, -0.010740913450717926, 0.012806728482246399, -0.014507207088172436, -0.007067613769322634, 0.008708310313522816, -0.038499895483255386, 0.0014530456392094493, -0.02395283430814743, -0.010448643006384373, 0.003756330581381917, -0.007811573334038258, -0.020551877096295357, -0.028111035004258156, -0.011119535192847252, -0.01891782321035862, -0.0006700616213493049, -0.012992718257009983, 0.015755996108055115, -0.001886468380689621, -0.010687773115932941, 0.017536183819174767, -0.010329078882932663, -0.008874372579157352, -0.00029579855618067086, -0.002648694673553109, 0.014958896674215794, -0.014520492404699326, 0.019435938447713852, 0.007260246202349663, 0.032654501497745514, 0.013949237763881683, -0.025440752506256104, 0.0012222189689055085, -0.016287395730614662, -0.0024112253449857235, 0.008349615149199963, -0.0017453153850510716, 0.03810134530067444, 0.0110066132619977, 0.026038577780127525, 0.016539810225367546, -0.009445627219974995, 0.008502393029630184, 0.05189116299152374, 0.0020326031371951103, 0.022783754393458366, -0.024457663297653198, 0.0230361707508564, -0.01652652584016323, 0.003314604517072439, -0.013816388323903084, 0.010435358621180058, 0.013896098360419273, 0.013431123457849026, -0.028403304517269135, -0.017881594598293304, 0.0012712073512375355, 0.026516836136579514, 0.010368933901190758, -0.0083828279748559, 0.009020507335662842, -0.028111035004258156, 0.00044629257172346115, 0.000468710990389809, -0.010853835381567478, 0.018824828788638115, -0.03347817063331604, -0.007047686260193586, 0.005649441387504339, 0.005838752258569002, 0.0015800832770764828, 0.020365886390209198, -0.02327529899775982, -0.014068802818655968, -0.0037530092522501945, 0.004002102650702, 0.019688352942466736, 0.01582242175936699, -0.02109656110405922, 0.020286178216338158, -0.034806668758392334, 0.03387672081589699, -0.008907584473490715, 0.01374996267259121, -0.009186569601297379, 0.01555672101676464, -0.013736678287386894, 0.005692617502063513, 0.011298882775008678, 0.042724523693323135, 0.018120724707841873, -0.011225814931094646, -0.008954082615673542, -0.00997038371860981, -0.022358635440468788, -0.018505988642573357, 0.034301839768886566, -0.0011649273801594973, -0.03191054239869118, 0.00491212448105216, 0.013225206173956394, 0.034567538648843765, 0.015888845548033714, 0.016167830675840378, 0.021269265562295914, 0.006622566841542721, -0.007134038954973221, -0.0072071063332259655, -0.034620679914951324, -0.007432951126247644, -0.007572443224489689, -0.007027758751064539, -0.007074256427586079, -0.010674487799406052, 0.014321217313408852, 0.025772877037525177, -0.026330847293138504, 0.0009664829121902585, -0.005656084045767784, 0.001966178184375167, 0.015277736820280552, 0.01361711323261261, -0.0054202754981815815, -0.014028947800397873, 0.005971602164208889, 0.02059173211455345, 0.027260797098279, 0.03733081743121147, 0.016353821381926537, -0.022704044356942177, 0.023487860336899757, 0.001179042737931013, 0.007990920916199684, 0.00785807054489851, 0.0337970107793808, 0.0015203008661046624, -0.014281362295150757, 0.005632834974676371, -0.02077772282063961, 0.030077213421463966, -0.01361711323261261, -0.0013633719645440578, -0.017190774902701378, 0.010202870704233646, -0.026490267366170883, -0.019170237705111504, -0.012408179230988026, 0.038446757942438126, -0.008176910690963268, -0.005566410254687071, -0.001851595239713788, 0.011876779608428478, -0.020419027656316757, -0.019276518374681473, -0.007492733653634787, -0.032627932727336884, -0.029731804504990578, -0.032681070268154144, 0.005327280145138502, 0.0005866152932867408, 0.003540449310094118, 0.03895158693194389, 0.004301014821976423, -0.018346568569540977, -0.015490296296775341, -0.004932051990181208, 0.01217569224536419, 0.02744678594172001, 0.019382799044251442, 0.008900942280888557, 0.01784173958003521, -0.00248927460052073, -0.005294067785143852, -0.023992689326405525, -0.01878497377038002, 0.011451659724116325, -0.0016755692195147276, 0.002668621949851513, -0.012321827001869678, 0.005971602164208889, -0.004261160269379616, 0.038925014436244965, 0.010282580740749836, -0.011053110472857952, -0.014268077909946442, 0.007698650937527418, -0.04585978016257286, 0.00873488001525402, -0.013643682934343815, 0.01991419680416584, 0.007074256427586079, 0.005187788046896458, 0.01142509002238512, 0.008123770356178284, 0.026330847293138504, -0.0007838142919354141, -0.015237881802022457, 0.0003950208192691207, 0.016672659665346146, -0.012600811198353767, 0.02269075997173786, -0.0042976937256753445, 0.03185740113258362, -0.0198344886302948, 0.05600951239466667, -0.012600811198353767, 0.025440752506256104, -0.006974618881940842, 0.023687133565545082, 0.013530761003494263, -0.002663640072569251, 0.0404660739004612, -0.021654531359672546, -0.008057345636188984, 0.012401537038385868, -0.021269265562295914, -0.02744678594172001, 0.020219752565026283, 0.00792449526488781, -0.011916634626686573, -0.0022235750220716, 0.006247265730053186, -0.001765242894180119, -0.02537432871758938, -0.01040214579552412, 0.0024925959296524525, -0.003331210929900408, -0.008130412548780441, -0.0075525157153606415, -0.004477041307836771, -0.00600149342790246, -0.03167141228914261, -0.021787380799651146, -0.0358428992331028, -0.0015219615306705236, -0.021760810166597366, -0.006742131430655718, 0.010873762890696526, -0.020166613161563873, -0.02327529899775982, 0.0034839881118386984, 0.012693806551396847, 0.002828042022883892, 0.028084466233849525, -0.01579585112631321, -0.0048456997610628605, 0.030980592593550682, -0.0005367965786717832, -0.015888845548033714, -0.004825772251933813, -0.03961583599448204, 0.005566410254687071, 0.0059583173133432865, 0.007957708090543747, -0.006346903275698423, -0.015888845548033714, 0.02906755544245243, -0.00205585197545588, 0.0026669614017009735, 0.006941406521946192, 0.0006414158269762993, 0.007592370733618736, 0.011750572361052036, 0.0034242058172822, 0.009884031489491463, 0.0038161128759384155, -0.01762918010354042, -0.0021505074109882116, -0.0370916873216629, -0.019342944025993347, 0.010953472927212715, -0.013331485912203789, -0.02639727108180523, 0.002309927251189947, 0.026038577780127525, -0.01033572107553482, 0.009850818663835526, 0.007519303355365992, -0.008595387451350689, -0.023341724649071693, -0.030927453190088272, 0.014879186637699604, 0.0021222769282758236, 0.01032243575900793, 0.012992718257009983, 0.005307353101670742, 0.030396053567528725, -0.003214967204257846, -0.015477011911571026, 0.05027039721608162, 0.04538151994347572, -0.006127701140940189, 0.009531979449093342, -0.021109847351908684, -0.032229382544755936, -0.027141232043504715, 0.0071074687875807285, 0.0171642042696476, 0.01762918010354042, -0.013085713610053062, 0.007193821016699076, -0.03568347916007042, -0.012242116965353489, 0.003196700243279338, 0.032415371388196945, -0.03403614088892937, -0.02962552383542061, 0.007353241089731455, -0.008794662542641163, -0.0073333135806024075, -0.006967976223677397, -0.002037585014477372, -0.02928011491894722, -0.017363479360938072, -0.008907584473490715, 0.004613212309777737, 0.0147861922159791, 0.01571614108979702, 0.0071074687875807285, -0.030316343531012535, -0.008117128163576126, 0.0038858591578900814, -0.02508205734193325, 0.012700448743999004, -0.021030137315392494, 0.02061830274760723, 0.005406990181654692, 0.02597215212881565, 0.02322215959429741, 0.010853835381567478, -0.005211036652326584, 0.0032066639978438616, -0.003351138439029455, -0.02174752578139305, 0.02505548857152462, -0.006483074277639389, 0.0032847134862095118, 0.023434719070792198, 0.008861087262630463, -0.004158201161772013, -0.01660623587667942, 0.020870717242360115, 0.028748715296387672, -0.007147323805838823, 0.013424481265246868, -0.005632834974676371, -0.04243225231766701, 0.0018416314851492643, 0.012421464547514915, -0.004500289913266897, 0.0016033319989219308, -0.017363479360938072, -0.01367025263607502, -0.016234256327152252, 0.014985467307269573, 0.01959535852074623, 0.022650904953479767, 0.02217264659702778, -0.02938639372587204, 0.007067613769322634, -0.000983919482678175, -0.002240181202068925, -0.0044272225350141525, 0.0023298547603189945, -0.013065786100924015, 0.021534966304898262, 0.005556446500122547, 0.0198344886302948, 0.028722144663333893, 0.021508395671844482, 0.009345989674329758, -0.008847801946103573, 0.03108687326312065, 0.01897096261382103, -0.04625833034515381, 0.002183720003813505, -0.04657717049121857, -0.027685916051268578, -0.038154486566782, 0.013710107654333115, 0.021003566682338715, -0.046736590564250946, 0.018984248861670494, 0.004686279688030481, 0.009086932055652142, 0.0018482740269973874, 0.0008701667538844049, 0.0011474909260869026, -0.016313966363668442, 0.03571004793047905, 0.0188115444034338, 0.02295646071434021, 0.029944363981485367, 0.009545263834297657, -0.01462677214294672, -0.036321159452199936, 0.0014704822096973658, 0.011225814931094646, 0.02922697365283966, 0.03310619294643402, 0.019316373392939568, -0.032149672508239746, -0.010428715497255325, 0.007824858650565147, -0.003650050610303879, -0.026490267366170883, 0.028934704139828682, 0.023208875209093094, 0.010608063079416752, -0.020432312041521072, -0.0012089340016245842, -0.01781516894698143, 0.02613157220184803, -0.009126787073910236, -0.0038692529778927565, -0.01551686692982912, -0.006164234597235918, -0.007559158373624086, 0.024019259959459305, -0.036719709634780884, 0.003932356368750334, 0.0048456997610628605, 0.022783754393458366, 0.007831500843167305, -0.018386423587799072, -0.03552405908703804, 0.006393400486558676, -0.009352631866931915, 0.03302648290991783, -0.025201622396707535, -0.009651544503867626, 0.023607423529028893, 0.03385015204548836, -0.012049484066665173, -0.02117627114057541, -0.008655169978737831, 0.03589604049921036, 0.00033274744055233896, -0.016964931041002274, -0.006383436731994152, 0.006775344256311655, 0.030927453190088272, -0.005460130050778389, 0.014135227538645267, -0.007140681147575378, -0.01808086968958378, -0.036932267248630524, 0.010933545418083668, -0.010734270326793194, 0.017615893855690956, 0.00021183329226914793, 0.004858984611928463, -0.011046468280255795, -0.016061551868915558, -0.006712240632623434, 0.018638838082551956, -0.04870276898145676, -0.03581633046269417, -0.02723422646522522, -0.05428246408700943, 0.014733051881194115, -0.001723727211356163, 0.01457363273948431, 0.021681101992726326, 0.040439505130052567, -0.023208875209093094, 0.02300960011780262, 0.010501783341169357, 0.010999970138072968, -0.017323624342679977, 0.012328469194471836, -0.017562754452228546, -0.02583930268883705, 0.019010817632079124, -0.007917853072285652, -0.005048295482993126, -0.043069932609796524, 0.0079377805814147, 0.007711935788393021, -0.01959535852074623, 0.012301899492740631, 0.014733051881194115, 0.013723392970860004, 0.016088120639324188, -0.01576928049325943, -0.02967866323888302, 0.010508425533771515, -0.010853835381567478, -0.008628600277006626, 0.02174752578139305, 0.0033013196662068367, 0.02723422646522522, 0.018665408715605736, 0.014347787946462631, -0.005466772709041834, -0.02513519860804081, -0.03935013711452484, 0.007379811257123947, -0.02686224691569805, -0.030608613044023514, -0.014214937575161457, -0.038685888051986694, -0.024431094527244568, -0.023673849180340767, -0.02004704810678959, -0.0018466133624315262, 0.019063958898186684, 0.03114001266658306, 0.018399709835648537, -0.01301264576613903, 0.019037388265132904, -0.005911819636821747, -0.026649687439203262, -0.015264451503753662, -0.03921728581190109, -0.020219752565026283, -0.010853835381567478, -0.025507178157567978, 0.030103784054517746, -0.00952533632516861, -0.020259607583284378, -0.009777751751244068, -0.005769006442278624, -0.014361072331666946, -0.00673548923805356, 0.012348396703600883, 0.018452849239110947, 0.004430543631315231, -0.005752400029450655, -0.009531979449093342, 0.034886378794908524, -0.008635242469608784, 0.011391877196729183, -0.020060332491993904, -0.014334502629935741, -0.0006767041049897671, -0.011969774961471558, -0.0016132957534864545, -0.013962523080408573, 0.022185930982232094, -0.021574821323156357, 0.01705792546272278, 0.002583930268883705, 0.01243474893271923, 0.016805510967969894, 0.017987873405218124, -0.012467961758375168, -0.007592370733618736, -0.026437126100063324, 0.010096590965986252, -0.010196228511631489, 0.009445627219974995, -0.020140042528510094, 0.0038626103196293116, 0.028828425332903862, 9.169755503535271e-05, -0.011398520320653915, -0.005915141198784113, 0.010774125345051289, -0.019063958898186684, 0.02072458155453205, -0.011371949687600136, -0.010050093755126, -0.008037418127059937, -0.004832414444535971, 0.01991419680416584, -0.028828425332903862, 0.012647309340536594, 0.02327529899775982, -0.015755996108055115, -0.013530761003494263, -0.008502393029630184, 0.011325452476739883, -0.018585698679089546, -0.021415401250123978, 0.008402755483984947, -0.0222789254039526, -0.013211920857429504, 0.00300074671395123, 0.007060971576720476, -0.003779579186812043, -0.0009274582262150943, 0.0029691949021071196, 0.026662971824407578, -0.029652094468474388, 0.03363759070634842, -0.004566714633256197, -0.016539810225367546, -0.008070630021393299, 0.015477011911571026, -0.01555672101676464, -0.020339317619800568, -0.03491295129060745, 0.004304336383938789, -0.03600231930613518, -0.002740028779953718, -0.007705293130129576, 0.0004359136801213026, -0.010827265679836273, 0.014812761917710304, 0.010614706203341484, 0.008695024996995926, 0.008137055672705173, 0.2503954768180847, -0.03135257214307785, 0.0038161128759384155, 0.022890035063028336, 0.024656938388943672, -0.01555672101676464, 0.022345351055264473, -0.003291355911642313, 0.0030970629304647446, 0.020485451444983482, 0.004540144931524992, -0.005473415367305279, -0.004540144931524992, 0.0020990280900150537, 0.01972820796072483, -0.004181450232863426, -0.020458882674574852, -0.023859839886426926, -0.028243886306881905, -0.004570036195218563, 0.026357417926192284, -0.005815503653138876, 0.006094488315284252, -0.011305524967610836, 0.0209902822971344, 0.0050017982721328735, -0.009126787073910236, 0.030156923457980156, 0.040652062743902206, 0.022571194916963577, -0.02198665589094162, 0.013218563050031662, 0.019356228411197662, -0.006645815446972847, -0.011976417154073715, -0.01639367640018463, 0.02476321905851364, -0.010986685752868652, 0.023806698620319366, 0.009365917183458805, -0.00625722948461771, 0.0007555836928077042, 0.001961196307092905, 0.007672080770134926, -0.026742681860923767, -0.000261755776591599, 0.01557000633329153, -0.007818215526640415, 0.0023813340812921524, 0.0015510224038735032, 0.001663114526309073, -0.02164124697446823, 0.030130354687571526, 0.029598955065011978, -0.009611689485609531, -0.0073997387662529945, 0.0005218509468249977, -0.012255402281880379, -0.015078461728990078, 0.023886408656835556, -0.010667845606803894, 0.02295646071434021, -0.010740913450717926, 0.017669035121798515, -0.02537432871758938, -0.020870717242360115, -0.0012105945497751236, 0.005911819636821747, -0.009266279637813568, -0.012129194103181362, 0.009485481306910515, -0.0035105582792311907, -0.023554284125566483, -0.009133429266512394, -0.01469319686293602, -0.027088090777397156, 0.04028008505702019, 0.028695575892925262, 0.023580854758620262, 0.04617862030863762, 0.03193711116909981, -0.007565801031887531, -0.020352602005004883, 0.0020060332026332617, 0.003550413064658642, -0.024550657719373703, 0.012727019377052784, -0.007373168598860502, 0.008362900465726852, -0.015051892027258873, -0.00029787435778416693, 0.0003489385126158595, -0.002273393562063575, -0.018120724707841873, 0.03342502936720848, 0.0028994486201554537, -0.009345989674329758, 0.01878497377038002, 0.006406685803085566, -0.004596605896949768, -0.029758373275399208, 0.0516786053776741, 0.013962523080408573, 0.0032481795642524958, -0.01464005745947361, 0.004407295025885105, -0.01347097847610712, -0.0049353730864822865, 0.0020624944008886814, -0.0028014718554913998, -0.004188092425465584, -0.03796849772334099, 0.013265061192214489, -0.001651490107178688, -0.0012944560730829835, 0.044292151927948, -0.009996953420341015, -0.024749932810664177, -0.012494531460106373, -0.009518694132566452, 0.02553374692797661, -0.023780129849910736, -0.001595859182998538, -0.01883811317384243, -0.01975477859377861, 0.0047360984608531, -0.009067004546523094, -0.003249840345233679, 0.008621957153081894, -0.05802882835268974, 0.03475353121757507, -0.0011416786583140492, -0.007605656050145626, -0.008602029643952847, -0.005307353101670742, 0.005941710900515318, 0.00888101477175951, -0.01353740319609642, -0.016061551868915558, 0.001277019502595067, -0.01865212433040142, -0.003596910508349538, 0.017257200554013252, 0.011212530545890331, -0.0067587378434836864, -0.026490267366170883, 0.027792196720838547, 0.0101165184751153, -0.003116990439593792, -0.003460739506408572, -0.03571004793047905, 0.005181145388633013, 0.016167830675840378, 0.030900882557034492, 0.016101406887173653, -0.016778940334916115, -0.0030156923457980156, -0.05252884328365326, -0.006791950203478336, 0.018877968192100525, -0.019435938447713852, 0.006383436731994152, 0.009691399522125721, -0.020472167059779167, -0.0121624069288373, -0.009100217372179031, -0.16770969331264496, -0.0014812762383371592, 0.030608613044023514, -0.015025322325527668, 0.04022694379091263, 0.010003596544265747, -0.0025341114960610867, -0.0037297604139894247, -0.008296474814414978, -0.0030738140922039747, 0.01883811317384243, -0.004347512498497963, -0.01449392270296812, 0.0040087453089654446, -0.0030107104685157537, 0.006868339143693447, -0.006200768519192934, -0.0025972153525799513, 0.055478110909461975, 0.012879796326160431, 0.07434279471635818, -0.013909382745623589, -0.0024527409113943577, -0.0181871484965086, 0.01558329164981842, 0.017429905012249947, -0.005443524103611708, -0.004350833594799042, -0.017137635499238968, -0.020844146609306335, 0.0014522152487188578, -0.00881459005177021, 0.014161797240376472, 0.015211312100291252, 0.002844648202881217, -0.0006542856572195888, 0.01483933161944151, 0.0061144158244132996, -0.0009091913816519082, 0.026357417926192284, -0.005961638409644365, 0.03725110739469528, 0.03568347916007042, 0.01098004262894392, 0.01770889014005661, 0.011132820509374142, 0.010375576093792915, -0.004055242519825697, 0.012169049121439457, 0.0019296446116641164, 0.002100688870996237, -0.028084466233849525, -0.036719709634780884, -0.011219172738492489, 0.017336910590529442, 0.025440752506256104, 0.003938999027013779, 0.017336910590529442, -0.002309927251189947, -0.01752289943397045, 0.016592949628829956, -0.0335313118994236, 0.011464945040643215, -0.006459825672209263, -0.01854584366083145, 0.001607483602128923, -0.027871904894709587, 0.026197997853159904, -0.002530790399760008, -0.003806149121373892, 0.01584899052977562, -0.03371730074286461, -0.010621348395943642, -0.009060362353920937, -0.0033860113471746445, -0.013723392970860004, -9.870331268757582e-05, 0.032202813774347305, 0.028429875150322914, -0.008329687640070915, -0.0066956342197954655, 0.02757963538169861, 0.015782566741108894, -0.0042246263474226, 0.015596576035022736, 0.026649687439203262, -0.026795821264386177, -0.020113471895456314, -0.02180066518485546, 0.0060214209370315075, 0.040891192853450775, -0.017429905012249947, -0.01367025263607502, 0.0036899056285619736, 0.01477290689945221, -0.008269905112683773, -0.01558329164981842, -0.012773516587913036, -0.025307903066277504, -0.01454706210643053, 0.00929949153214693, -0.009830891154706478, -0.024178678169846535, 0.028536155819892883, 0.045222099870443344, 0.03608202934265137, -0.0094721969217062, 0.004264481365680695, 0.02734050527215004, -0.007506018504500389, -0.02492263913154602, -0.002495917258784175, 0.01134537998586893, 0.0013102319790050387, 0.008821232244372368, 0.023687133565545082, -0.005184466950595379, -0.01776202954351902, 0.008269905112683773, 0.009671472012996674, -0.013145496137440205, -0.004825772251933813, 0.014454067684710026, 0.03687912970781326, -0.00975782424211502, -0.032521650195121765, -0.05223657563328743, -0.013431123457849026, 0.014294647611677647, 0.0189443938434124, 0.0010337381390854716, 0.0233018696308136, -0.013736678287386894, 0.005529876332730055, 0.004729455802589655, 0.017403334379196167, -0.010083306580781937, -0.017243914306163788, -0.003239876590669155, 0.015025322325527668, -0.008774735033512115, 0.006605960428714752, 0.016938360407948494, -0.008827874436974525, -0.0079377805814147, 0.010887048207223415, 0.005460130050778389, -0.011166032403707504, -0.016991499811410904, -0.010448643006384373, -0.008130412548780441, -0.0171642042696476, -0.017257200554013252, 0.0009440644644200802, 0.0350457988679409, 0.011943204328417778, 0.01915695331990719, 0.0012994379503652453, -0.011557940393686295, -3.0020959457033314e-05, 0.0020857432391494513, 0.003650050610303879, -0.008834517560899258, -0.034647248685359955, 0.02486949786543846, -0.016061551868915558, -0.007413023617118597, -0.009764466434717178, 0.004251196514815092, -0.0015543436165899038, -0.021973371505737305, 0.003158506006002426, -0.0005550634232349694, -0.011019897647202015, -0.007240318693220615, -0.0041980561800301075, -0.028297025710344315, -0.007957708090543747, -0.02626442164182663, -0.01303921639919281, 0.02594558149576187, 0.03507236763834953, 0.020060332491993904, 0.00042594995466060936, -0.026251137256622314, 0.011219172738492489, -0.010953472927212715, 0.0033129439689219, -0.01668594591319561, 0.016938360407948494, -0.001370014389976859, -0.009000579826533794, -0.028801854699850082, 0.012487889267504215, -0.01083390787243843, -0.006210732273757458, -0.011398520320653915, 0.025812732055783272, -0.017336910590529442, 0.012992718257009983, -0.021335691213607788, -0.021428685635328293, -0.004832414444535971, -0.006134343333542347, 0.00878801941871643, -0.006579390726983547, -0.007645511068403721, -0.0090935742482543, 0.0012969470117241144, 5.7602879678597674e-05, 0.03363759070634842, 0.034487828612327576, -0.011099607683718204, 0.002874539466574788, 0.010986685752868652, -0.06775344163179398, -0.017908165231347084, 0.010368933901190758, 0.002349782269448042, -6.990187102928758e-05, 0.006599317770451307, -0.026543406769633293, 0.002763277618214488, -0.013869527727365494, 0.025852587074041367, 0.03597574681043625, -0.004789238329976797, -0.009830891154706478, -0.08916883915662766, 0.012428106740117073, -0.01752289943397045, -0.0017137634567916393, 0.0025092021096497774, 0.005622871220111847, 0.005486700218170881, 0.006333618424832821, 0.007386453449726105, 0.018160579726099968, -0.03315933048725128, 0.024723364040255547, 0.0064697894267737865, -0.006652458105236292, -0.019608642905950546, -0.008137055672705173, 0.029891224578022957, 0.019475793465971947, 0.015490296296775341, 0.010428715497255325, -0.03717139735817909, 0.0005949183832854033, -0.006087846122682095, 0.02591901272535324, -0.03977525606751442, 0.027632776647806168, -0.005835431162267923, 0.028934704139828682, -0.0023066061548888683, -0.004493647255003452, 0.016832079738378525, 0.00011852700845338404, -0.020086903125047684, -0.0002665300853550434, -0.02053859271109104, -0.010774125345051289, 0.004118346609175205, 0.021269265562295914, -0.0004919597413390875, 0.05019068717956543, -0.004692922346293926, -0.021362261846661568, 0.02327529899775982, -0.016778940334916115, -0.006745452992618084, -0.009571834467351437, -0.01571614108979702, 0.01886468380689621, 0.012335111387073994, 0.00888101477175951, 0.02435138449072838, 0.012355038896203041, 0.003540449310094118, -0.01754947006702423, -0.005035010632127523, -0.030741462484002113, -0.025879157707095146, 0.018240289762616158, -0.007466163486242294, -0.006894908845424652, 0.026304276660084724, 0.004101740196347237, -0.005862001329660416, 0.002299963729456067, 0.0011574545642361045, -0.011631007306277752, -0.025600172579288483, -0.012720376253128052, 0.020684726536273956, -0.016074836254119873, -0.04612547904253006, 0.013896098360419273, -0.004666352178901434, -0.006326975766569376, 0.012102624401450157, -0.0021571500692516565, -0.04243225231766701, -0.0006522099138237536, -0.03717139735817909, 0.012746945954859257, 0.00013305745960678905, 0.016247540712356567, -0.030688323080539703, 0.0127403037622571, 0.03339846059679985, -0.008628600277006626, -0.027818765491247177, 0.023235443979501724, -0.013949237763881683, -0.009199854917824268, -0.04516896232962608, -0.0025390933733433485, 0.017456475645303726, 0.02392626367509365, 0.01768231950700283, 0.019661782309412956, 0.008847801946103573, -0.002216932363808155, 0.03167141228914261, -0.0018781652906909585, 0.0076189409010112286, -0.004573357291519642, -0.011205887421965599, -0.01972820796072483, -0.005822146311402321, 0.003938999027013779, 0.004184771329164505, -0.04028008505702019, -0.002622124506160617, -0.024191964417696, -0.02397940494120121, 0.0078713558614254, 0.005852037575095892, 0.00873488001525402, -0.030183494091033936, 0.0010935206664726138, 0.012866511009633541, -0.019263233989477158, -0.03390328958630562, 0.0052575343288481236, 0.014985467307269573, 0.034620679914951324, 0.019342944025993347, -0.009319419041275978, 0.03772936761379242, -0.011498157866299152, 0.009591761976480484, -0.047241419553756714, 0.030502334237098694, 0.0021521681919693947, -0.01142509002238512, 0.03355788066983223, -0.020764436572790146, -0.00795106589794159, -0.0016498294426128268, 0.007738505955785513, 0.005353850312530994, -0.007612298242747784, -0.0011084661819040775, 0.059569887816905975, 0.036427438259124756, -0.009279564023017883, 0.007970993407070637, 0.010169658809900284, 0.008256620727479458, 0.003314604517072439, 0.0019196808570995927, -0.01800115965306759, -0.008781377226114273, 0.0350457988679409, -0.0064963591285049915, -0.009771108627319336, -0.008123770356178284, -0.011631007306277752, 0.0016058229375630617, -0.030210062861442566, 0.014507207088172436, -0.022518055513501167, 0.007459520827978849, 0.027845336124300957, -0.009624973870813847, -0.007831500843167305, 0.025467323139309883, -0.015304306522011757, 0.0005006780265830457, 0.028270455077290535, 0.003779579186812043, -0.0015244524693116546, -0.0016531507717445493, 0.0189443938434124, 0.008602029643952847, -0.012620738707482815, -0.024643654003739357, 0.007904567755758762, 0.02314244955778122, -0.0066956342197954655, 0.0032830527052283287, 0.048915326595306396, 0.005629513878375292, 0.01557000633329153, 0.01902410387992859, -0.02954581379890442, -0.01962192729115486, -0.015782566741108894, -0.007187178824096918, -0.014812761917710304, -0.00564612029120326, 0.002866236260160804], "45b837a5-3b51-4f6f-9806-ce2f512426fa": [-0.0010161851532757282, -0.022349320352077484, -0.000330006965668872, -0.02021566964685917, -0.017028696835041046, 0.004348326940089464, -0.024523483589291573, -0.016245458275079727, 0.008635885082185268, -0.015043591149151325, 0.013477113097906113, 0.036245059221982956, -0.011991659179329872, 0.008433323353528976, -0.011802601628005505, -0.02781848981976509, 0.0022501242347061634, -0.016448019072413445, 0.021836163476109505, -0.039026908576488495, 0.004415847361087799, -0.0300601739436388, 0.02938496693968773, -0.005985701456665993, -0.02642756514251232, 0.004608281422406435, 0.010377917438745499, -0.01609691232442856, 0.007258465047925711, -0.009182802401483059, 0.013814715668559074, 0.0175283495336771, -0.008548108860850334, -0.01701519265770912, 0.012916691601276398, 0.021417535841464996, 0.024023830890655518, -0.0013478801120072603, -0.005769635550677776, -0.01640750654041767, 0.011134147644042969, 0.002547214739024639, 0.017231257632374763, 0.011478503234684467, -0.034516531974077225, 0.002640055725350976, -0.014084798283874989, 0.017325786873698235, 0.017541853711009026, 0.01405778992921114, -0.0061713834293186665, -5.064045399194583e-05, -0.03781154006719589, -0.005594082176685333, -0.0046217855997383595, -0.010384669527411461, -0.02058028057217598, 0.008993744850158691, 0.010668255388736725, 0.0025725350715219975, 0.026022441685199738, -0.0003705193230416626, -0.024050839245319366, -0.012741138227283955, 0.004922252148389816, 0.005661602597683668, -0.014327872544527054, 0.00915579404681921, -0.029438983649015427, 0.008345547132194042, 0.02808857150375843, 0.034489523619413376, 0.024712542071938515, -0.006424585822969675, 0.03065435402095318, -0.0021640353370457888, -0.04315917193889618, 0.00023568912001792341, -0.002326084766536951, 0.010101082734763622, 0.013362327590584755, -0.02472604624927044, 0.0007127643912099302, -0.014665475115180016, 0.007683844771236181, -0.01022937148809433, -0.020539768040180206, 0.004220037721097469, 0.0032663093879818916, 0.0025961673818528652, 0.018230563029646873, 0.012315758503973484, 0.00010449868568684906, 2.1851883502677083e-05, 0.003976963460445404, 0.021268989890813828, -0.011498759500682354, 0.010188858956098557, -0.01601588726043701, -0.041781749576330185, -0.004810843151062727, 0.0072247046045959, -0.018649190664291382, -0.007629828527569771, -0.02748088724911213, -0.0244289543479681, 0.031707677990198135, -0.010175354778766632, 0.005003276746720076, -0.015907853841781616, -0.017609374597668648, 0.014233343303203583, -0.0018348724115639925, -0.03240989148616791, -0.032463908195495605, -0.0012947076465934515, 0.027548406273126602, -0.002359845209866762, -0.009115281514823437, -0.015624267980456352, 0.017109721899032593, 0.012227981351315975, 0.01697468012571335, 0.01979704201221466, 0.03470559045672417, 0.019081322476267815, -0.0005865852581337094, -0.005870916415005922, -0.0022163637913763523, -0.01704220101237297, 0.03259894996881485, 0.012005163356661797, 0.0005401648231782019, -0.015894349664449692, -0.014354880899190903, -0.020998908206820488, -0.026981234550476074, -0.010391421616077423, -0.008710158057510853, -0.008284778334200382, 0.02294350229203701, 0.010870817117393017, 0.014341376721858978, -0.03592096269130707, 0.0023615332320332527, 0.026994738727808, 0.013112501241266727, 0.028979843482375145, -0.007508291397243738, 0.01233601476997137, 0.004473240114748478, -0.026035945862531662, -0.01136371772736311, -0.01665058173239231, -0.008061960339546204, 0.016029391437768936, 0.005519809667021036, 0.012295502237975597, 0.0073867542669177055, 0.0007507447153329849, 0.010364413261413574, 0.03343620523810387, 0.011924139223992825, -0.015786318108439445, -0.001182454638183117, 0.038513753563165665, 0.01068175956606865, 0.005486049223691225, -0.024131864309310913, -0.006458345800638199, 0.0024526859633624554, -0.002552278805524111, -0.02811557985842228, 0.025617318227887154, -0.014962566085159779, 0.01906781829893589, -0.008656141348183155, 0.006495482288300991, -0.0006511518149636686, -0.018649190664291382, -0.001134346122853458, -0.012140205129981041, -0.010702015832066536, 0.03081640414893627, -0.020769339054822922, -0.02396981418132782, 0.018365604802966118, 0.00882494356483221, 0.006927614100277424, -0.011606791988015175, 0.01904080994427204, 0.029655050486326218, 0.011782345362007618, -0.022713931277394295, -0.5842422842979431, -0.03340919688344002, -0.00883844681084156, -0.01198490709066391, 0.014489921741187572, 0.021052924916148186, 0.0007604508427903056, 0.004014099948108196, -0.027264820411801338, 0.02282196469604969, 0.007055903319269419, 0.003922947216778994, -0.02748088724911213, 0.015961870551109314, -0.011863370425999165, -0.024145368486642838, 0.007434018421918154, -0.004469864070415497, 0.0017757918685674667, 0.03213980793952942, -0.03362525999546051, 0.008061960339546204, -0.015394697897136211, 0.01309224497526884, 0.02457750029861927, -0.008169992826879025, 0.020688313990831375, -0.005827028304338455, -0.007467778865247965, 0.03419243544340134, -0.038027603179216385, -0.0011571344221010804, 0.007420514710247517, -0.005091053433716297, 0.05188283324241638, 0.001129282172769308, -0.039810147136449814, 0.016880150884389877, -0.0008549796766601503, 0.05660927668213844, -0.013949757441878319, -0.03089742921292782, 0.03502969071269035, -0.007704101037234068, -0.03767649829387665, 0.015016582794487476, 0.01967550441622734, -0.03508370742201805, 0.002030682284384966, 0.014165823347866535, 0.004523880779743195, -0.02116095833480358, 0.016542548313736916, -0.012288750149309635, 0.010188858956098557, -0.009763479232788086, 0.031977757811546326, -0.047804590314626694, 0.00476020248606801, -0.0052024624310433865, 0.011775593273341656, 0.01670459844172001, -0.01821705885231495, -0.01821705885231495, -0.029141893610358238, 0.0213635191321373, -0.03432747721672058, -0.021660611033439636, -0.005746003706008196, -0.011120643466711044, 0.001230563037097454, 0.005040413234382868, 0.016623573377728462, 0.004162645433098078, 0.029006851837038994, 0.03502969071269035, 0.00394320348277688, -0.014084798283874989, 0.0053678881376981735, 0.010317148640751839, 0.006961374543607235, -0.0050302851013839245, -0.006880349479615688, -0.01178909745067358, 0.003186972578987479, -0.0007591848261654377, -0.03894588351249695, -0.0021606592927128077, 0.007548803463578224, -0.003777777776122093, 0.022281799465417862, 0.015178631991147995, 0.013841724023222923, -0.040755435824394226, 0.013429848477244377, 0.022416841238737106, -0.018595173954963684, 0.005590706132352352, -0.0017605997854843736, 0.005428656470030546, -0.007163936272263527, -0.022997519001364708, 0.0053273756057024, 0.004547512624412775, 0.043510276824235916, -0.02421288937330246, -0.02787250652909279, 0.013868732377886772, 0.041025519371032715, -0.014773508533835411, 0.015867343172430992, -0.003673120867460966, -0.03105947934091091, -0.016934167593717575, 0.038540761917829514, -0.02862873673439026, 0.0031042597256600857, 0.024807071313261986, -0.0002154329267796129, -0.017636382952332497, 0.009695959277451038, -0.0060397181659936905, -0.006191639695316553, -0.003656240878626704, -0.0027160162571817636, 0.014017277397215366, 0.01770390197634697, -0.003161652246490121, -0.0007300665602087975, -0.0009309403249062598, -0.018028002232313156, 0.0022805084008723497, 0.020877370610833168, 0.001985105685889721, 0.02455049194395542, 0.0037912819534540176, -0.0025033263955265284, -0.009912025183439255, 0.0263600442558527, -0.002977658761665225, 0.002376725198701024, 0.00927733164280653, -0.00853460468351841, -0.005567073822021484, 0.009702711366117, -0.027791481465101242, -0.02145804837346077, -0.015232648700475693, -0.015232648700475693, 0.0032393010333180428, 0.012187468819320202, 0.004189653787761927, -0.004922252148389816, 0.014125310815870762, -0.0036056002136319876, 0.0032983815763145685, -0.009135537780821323, -0.017514845356345177, 0.011505511589348316, -0.01701519265770912, -0.010141595266759396, -0.01665058173239231, -0.026657134294509888, 0.003237613011151552, -0.03689325973391533, -0.017447324469685555, 0.011795849539339542, -0.0019243372371420264, -0.022740939632058144, -0.02606295421719551, -0.009959288872778416, 0.0008819879149086773, 0.012281998060643673, 0.004483368247747421, -0.0007676248787902296, 0.004405719693750143, -0.01994558610022068, -0.0005633750697597861, 0.0049999007023870945, 0.0008110912749543786, 0.0071504320949316025, -0.0031971007119864225, 0.01601588726043701, -0.002251812256872654, 0.016637077555060387, 0.019526958465576172, 0.03111349418759346, 0.041241586208343506, -0.03710932657122612, -0.005675106775015593, -0.008500844240188599, 0.00683308532461524, 0.025779366493225098, 0.023011023178696632, 0.025468772277235985, 0.003102571703493595, 0.0326259583234787, 0.01136371772736311, 0.0006439777789637446, 0.016029391437768936, 0.01701519265770912, 0.00444960780441761, 0.01704220101237297, -0.030141199007630348, 0.02499612793326378, -0.01601588726043701, -0.01918935589492321, -0.013760698959231377, 0.016907159239053726, 0.020512759685516357, 0.0006929301889613271, -0.03592096269130707, -0.027764473110437393, 0.00671830028295517, 0.023173071444034576, 0.01791996881365776, -0.014665475115180016, -0.006974878720939159, -0.01767689362168312, 0.009419124573469162, 0.013011220842599869, -0.012552080675959587, 0.010114586912095547, -0.011856618337333202, -0.013976764865219593, -0.0018838249379768968, 0.0325179249048233, 0.004527256824076176, -0.00909502524882555, -0.02748088724911213, -0.023011023178696632, 0.00011657854338409379, 0.004588025156408548, 0.006036342121660709, 0.009675703011453152, -0.03978314250707626, 0.023780757561326027, -0.007474530953913927, 0.011343461461365223, 0.007217952515929937, 0.02245735377073288, -0.0015622579958289862, -0.0023210207000374794, -0.015070599503815174, 0.0043280706740915775, 0.01982405036687851, 0.04737245664000511, 0.02599543333053589, -0.03818965330719948, -0.007035647053271532, -0.018784232437610626, -0.010891073383390903, -0.021255485713481903, 0.008386058732867241, 0.013571641407907009, -0.017231257632374763, -0.0016897032037377357, -0.002072882605716586, 0.013949757441878319, 0.024658525362610817, 0.02721080370247364, 0.023173071444034576, -0.0014145566383376718, 0.012693873606622219, -0.008689901791512966, -0.04745348170399666, -0.019175851717591286, -0.019526958465576172, -0.014570946805179119, -0.009189554490149021, -0.009250323288142681, 0.02021566964685917, 0.017420316115021706, -0.02179565094411373, -0.00652249064296484, -0.0018450005445629358, -0.001050789374858141, 0.011930891312658787, 0.027413366362452507, 0.005536689423024654, -0.005985701456665993, -0.013990269042551517, 0.02862873673439026, 0.004409095738083124, 0.015624267980456352, -0.021404031664133072, -0.013794459402561188, 0.024347931146621704, -0.006961374543607235, -0.0031785324681550264, 0.013504121452569962, 0.01625896245241165, -0.0023311488330364227, 0.01467897929251194, -0.024253401905298233, -0.014570946805179119, 0.017960481345653534, 0.00201211404055357, -0.02155257761478424, -0.016961175948381424, 0.02145804837346077, -0.004756826441735029, -0.03832469508051872, -0.009081521071493626, 0.03894588351249695, 0.02043173462152481, -0.032760996371507645, -0.01773091033101082, 0.016502035781741142, -0.03213980793952942, -0.012207725085318089, -0.005121437832713127, -0.010857312940061092, -0.028493694961071014, -0.0067453086376190186, -0.010830305516719818, 0.0038959388621151447, -0.013017972931265831, 0.03794658184051514, 0.022322311997413635, -0.021512065082788467, -0.027764473110437393, -0.008953232318162918, 0.006792572792619467, -0.004922252148389816, 0.011417734436690807, 0.013355575501918793, -0.002476318273693323, -0.024469466879963875, 0.012423790991306305, -0.009783735498785973, 0.008500844240188599, -0.007481283042579889, -0.017379803583025932, 0.014814021065831184, -0.0052328468300402164, 0.022119751200079918, -0.018622182309627533, 0.029249927029013634, 0.00040301360422745347, -0.007130175828933716, -0.011201668530702591, 0.011836362071335316, -0.03284202143549919, 0.00044690200593322515, -0.02372674085199833, 0.007494787219911814, 0.002334524877369404, 0.011897130869328976, -0.005833780393004417, -0.0010406613582745194, 0.016488531604409218, 0.010965346358716488, 0.005972197744995356, -0.0023665972985327244, -0.0005878512747585773, 0.001036441302858293, 0.01721775345504284, 0.002101578749716282, 0.015408202074468136, 0.005793267861008644, 0.06125469505786896, -0.00798768736422062, 0.01958097517490387, -0.0016972991870716214, 0.026535598561167717, 0.004547512624412775, -0.013537880964577198, 0.024888094514608383, 0.0015816701343283057, -0.0035347037483006716, 0.0022568763233721256, -0.0038115382194519043, -0.02409135177731514, 0.04035031422972679, -0.005003276746720076, -0.04089047759771347, -0.005590706132352352, -0.0004950104630552232, 0.031788699328899384, -0.03608301281929016, -0.01891927421092987, -0.0007068563136272132, 0.0019007050432264805, 0.009142289869487286, -0.002299076644703746, -0.006927614100277424, -0.011546023190021515, -0.026049450039863586, -0.009203058667480946, -0.01994558610022068, -0.028142588213086128, -0.025833383202552795, -0.020782843232154846, 0.019986098632216454, -0.0452117957174778, -0.03778453171253204, 0.022646410390734673, 0.0038385463412851095, 0.006941118277609348, 0.016569556668400764, -0.00898699276149273, -0.024563996121287346, 0.024766558781266212, 0.008527852594852448, -0.010134843178093433, -0.01833859644830227, -0.028223613277077675, 0.021566081792116165, -0.003544831881299615, 0.01906781829893589, -0.0001235416129929945, 0.0015158376190811396, 0.03230185806751251, 0.031194519251585007, 0.0006490418454632163, 0.018136033788323402, -0.004216661676764488, 0.005347631871700287, 0.015300169587135315, -0.003347333986312151, 0.018757224082946777, 0.002069506561383605, -0.014489921741187572, -0.00042137078708037734, -0.059310100972652435, 0.016907159239053726, -0.000468846206786111, -0.010593983344733715, -0.02445596270263195, 0.011478503234684467, 0.014516930095851421, -0.009527157060801983, 0.020539768040180206, 0.02430741861462593, 0.005715619307011366, -0.003311885753646493, -0.019756529480218887, -0.005874292459338903, -0.0033996624406427145, -0.00882494356483221, 0.0238212700933218, -0.001926025259308517, 0.025792870670557022, 0.021295998245477676, -0.010614239610731602, 0.02718379534780979, -0.0003985825751442462, 0.00572912348434329, -0.0011757025495171547, -0.018595173954963684, -0.029709067195653915, -0.020445238798856735, 0.013659418560564518, 0.013483865186572075, 0.010215867310762405, 0.0017521596746519208, -0.025171682238578796, -0.015745805576443672, 0.004888491705060005, 0.016204945743083954, -0.000404701626393944, -0.0019310893258079886, -0.027710456401109695, -0.04248396307229996, -0.01417932752519846, -0.00927733164280653, -0.019472941756248474, -0.021282494068145752, -0.021404031664133072, -0.010796545073390007, 0.007717605214565992, 0.02989812381565571, -0.001642438699491322, 0.023861782625317574, 0.01625896245241165, -0.04342925176024437, -0.001314119785092771, 0.002927018329501152, -0.04248396307229996, -0.008939728140830994, -0.008392810821533203, 0.034732598811388016, 0.006829709280282259, 0.026711151003837585, 0.02987111546099186, 0.0022112997248768806, 0.009331347420811653, 0.0150300869718194, 0.0014702611370012164, 0.0015453778905794024, -0.003198788734152913, -0.012646608985960484, 0.011437990702688694, 0.0010440374026075006, 0.01713673025369644, 0.01909482665359974, 0.007461026776582003, 0.0061409990303218365, 0.01858166977763176, -0.005280111450701952, 0.005496177356690168, -0.011579783633351326, -0.04542786255478859, -0.010702015832066536, 0.016475027427077293, -0.002606295282021165, -0.01746082864701748, 0.0018973289988934994, -0.015583755448460579, -0.00808221660554409, 0.004922252148389816, 0.03381431847810745, 0.02055327221751213, 0.017204251140356064, -0.032760996371507645, 0.0002726144448388368, -0.011390726082026958, 0.01601588726043701, 0.016839638352394104, 0.008797935210168362, -0.018325092270970345, 0.006174759473651648, -0.007231456693261862, 0.03862178698182106, 0.0055704498663544655, 0.016448019072413445, 0.016569556668400764, -0.0019074571318924427, 0.03502969071269035, -0.01060748752206564, -0.050046272575855255, -0.023011023178696632, -0.01221447717398405, -0.027548406273126602, -0.030789395794272423, -0.002940522274002433, -0.02306503802537918, -0.023294609040021896, -0.0046217855997383595, 0.004243670031428337, 0.010823553428053856, -0.0058371564373373985, -0.01133670937269926, -0.0030890677589923143, -0.02282196469604969, 0.02811557985842228, 0.0003705193230416626, 0.027980538085103035, 0.026508590206503868, 0.009783735498785973, -0.015583755448460579, -0.02935795858502388, -0.0169476717710495, -0.012477807700634003, 0.0401882641017437, 0.055285871028900146, 0.00740025844424963, -0.01597537472844124, 0.0021100188605487347, 0.0008267054217867553, 0.011667560786008835, -0.023510674014687538, 0.027251316234469414, 0.018271075561642647, -0.01652904413640499, -0.03635309264063835, 0.004351702984422445, -0.042537979781627655, 0.004773706663399935, -0.022875981405377388, -0.002881441731005907, -0.022808460518717766, 3.1043651688378304e-05, -0.0062422798946499825, 0.017541853711009026, -0.010080826468765736, 0.015934862196445465, 0.006968126632273197, 0.012700625695288181, -0.0009115281864069402, -0.0016314666718244553, -0.046805284917354584, -0.0122414855286479, 0.006154503207653761, 0.022511370480060577, -0.022889485582709312, -0.01236302312463522, 0.02642756514251232, 0.015232648700475693, 0.006903981789946556, -0.009682455100119114, -0.023807765915989876, 0.047507498413324356, -0.011478503234684467, -0.00643133744597435, -0.005050541367381811, 0.006333432625979185, 0.025657830759882927, -0.012180717661976814, 0.0065798829309642315, 0.009648694656789303, -0.0005789892165921628, -0.007366498000919819, 0.00898699276149273, -0.026279019191861153, 0.01431436836719513, -0.027075761929154396, -0.012322510592639446, -0.011998411267995834, -0.028520703315734863, 0.001654254854656756, 0.007177440449595451, -0.041538678109645844, -0.015637772157788277, -0.0288177952170372, -0.02962804213166237, 0.018149537965655327, 0.006215271539986134, 0.013193526305258274, 0.016394002363085747, 0.053044188767671585, -0.02148505672812462, 0.006468473933637142, 0.0007756429258733988, 0.0020830107387155294, -0.027534902095794678, -0.0032122929114848375, -0.0007077003247104585, -0.010897825472056866, 0.017744414508342743, -0.025468772277235985, -0.018959786742925644, -0.01828457973897457, 0.030276238918304443, 0.028466686606407166, -0.0013073676964268088, 0.016569556668400764, 0.038000598549842834, 0.002810545265674591, 0.010708767920732498, -0.011431238614022732, -0.0015133055858314037, -0.016083408147096634, -0.01704220101237297, 0.003365902230143547, -0.003246053121984005, -0.023294609040021896, -0.015462218783795834, -0.0009385364246554673, 0.002422301797196269, 0.002027306240051985, -0.028196604922413826, -0.04188978299498558, 0.0060701025649905205, -0.016758615151047707, -0.03705530986189842, 0.0004021695931442082, -0.026832688599824905, -0.02862873673439026, -0.011417734436690807, -0.020391222089529037, 0.010735776275396347, 0.00660689128562808, 0.012720881961286068, 0.03783854842185974, 0.013247543014585972, 0.010749280452728271, -0.017474332824349403, -0.03084341250360012, -0.01337583176791668, -0.018541159108281136, -0.014260351657867432, -0.009939033538103104, -0.00649210624396801, 0.03033025562763214, 0.0016466587549075484, -0.027399862185120583, -0.013247543014585972, -0.01165405660867691, -0.03254493325948715, -0.01531367376446724, -0.007231456693261862, 0.018986795097589493, 0.036245059221982956, 0.00464541744440794, 0.013011220842599869, 0.031167510896921158, -0.0008001191890798509, 0.008696653880178928, -0.005820276215672493, -0.005884420592337847, -0.012977460399270058, -0.03692026808857918, -0.01852765493094921, -0.010269884020090103, -0.012153709307312965, -0.007636580616235733, 0.01682613417506218, -0.006113990675657988, 0.00017492056940682232, 0.02618448995053768, 0.0156512763351202, -0.017028696835041046, -0.022349320352077484, -0.018662694841623306, 0.000743570679333061, 0.010512958280742168, 0.005681858863681555, -0.029465992003679276, 0.01116790808737278, 0.018662694841623306, -0.008480587974190712, -0.005425280425697565, 0.019418926909565926, 0.004469864070415497, -0.009068016894161701, -0.00954741332679987, -0.016691094264388084, 0.005199086386710405, 0.0037811538204550743, -0.004112004768103361, 0.04083646088838577, -0.017244761809706688, 0.0024442458525300026, 0.02048575133085251, 0.021633602678775787, -0.004773706663399935, -0.016110416501760483, 0.0016399066662415862, -0.05498878285288811, 0.00958117377012968, 0.01928388513624668, -0.019121835008263588, -0.011174660176038742, -0.005513057578355074, 0.002873001853004098, -0.011694569140672684, 0.00144494092091918, 0.016366994008421898, 0.009959288872778416, -0.03308509662747383, 0.026589615270495415, 0.030438289046287537, -0.019256876781582832, -0.02984410710632801, -0.020782843232154846, -0.019148843362927437, -0.0051315659657120705, -0.039810147136449814, 0.015610763803124428, -0.032977063208818436, 0.005486049223691225, -0.0017504716524854302, -0.012565584853291512, -0.004739946685731411, 0.024104855954647064, 0.037973590195178986, 0.012774898670613766, -0.0076500847935676575, 0.25668632984161377, -0.026562606915831566, -0.007805381901562214, 0.021525569260120392, -0.00041715073166415095, 0.013625658117234707, 0.01236302312463522, -0.0030772516038268805, 0.006107238586992025, 0.018230563029646873, -0.02106642909348011, -0.0046251616440713406, -0.011039619334042072, -0.005796643905341625, 0.019513454288244247, -0.004486744292080402, -0.025387747213244438, -0.029979148879647255, -0.02587389573454857, -0.022497866302728653, 0.025225698947906494, -0.02457750029861927, 0.007258465047925711, -0.01490854937583208, 0.006191639695316553, -0.0041558933444321156, -0.011930891312658787, 0.021025916561484337, 0.03281501308083534, -0.004571144934743643, -0.022686922922730446, 0.035218749195337296, 0.01403078157454729, -0.00391281908378005, 0.010411676950752735, -0.034246452152729034, 0.052585046738386154, 0.004733194597065449, 0.022443849593400955, 0.016812629997730255, 0.0022568763233721256, -0.006927614100277424, 0.0009064641199074686, -0.006137622985988855, -0.028952835127711296, 0.006806076969951391, -0.004247046075761318, -0.016988184303045273, 0.0288988184183836, -0.006714924238622189, -0.029682058840990067, -0.010411676950752735, 0.03446251526474953, 0.021323006600141525, -0.01122867688536644, -0.017501341179013252, 0.030951445922255516, -0.006941118277609348, 0.0251176655292511, 0.015691788867115974, -0.015934862196445465, 0.03105947934091091, -0.03864879533648491, 0.010263131931424141, -0.013639162294566631, 0.000976516748778522, -0.016353489831089973, 0.014719491824507713, -0.011795849539339542, -0.0019817298743873835, 0.00535776000469923, 0.015273161232471466, -0.013882236555218697, -0.005310495384037495, -0.02372674085199833, -0.03692026808857918, 0.03435448557138443, 0.006900605745613575, 0.04170072451233864, 0.045805979520082474, 0.016961175948381424, 0.007082911673933268, -0.0037136333994567394, 0.008122729137539864, 0.0035076953936368227, -0.022740939632058144, 0.010067322291433811, -0.002959090517833829, -0.00036102422745898366, 0.006303048692643642, 0.006012709811329842, -0.020269686356186867, -0.0042875586077570915, 0.00025678929523564875, 0.014611459337174892, -0.006839837413281202, 0.0035583358258008957, 0.024834077805280685, 0.0028881938196718693, 0.013423096388578415, -0.025590309873223305, 0.016988184303045273, 0.04540085420012474, 0.012896435335278511, -0.01454393845051527, 0.004601529333740473, 0.02004011534154415, 0.022781452164053917, 0.017447324469685555, -0.021741634234786034, -0.010884321294724941, -0.03856777027249336, 0.008622380904853344, -0.005286863539367914, -0.001961473608389497, 0.031491611152887344, -0.019364910200238228, -0.012963956221938133, -0.013254295103251934, 0.02675166353583336, 0.021282494068145752, -0.03192374110221863, -0.01184986624866724, 0.005516433622688055, -0.024037335067987442, -0.021998213604092598, -0.016502035781741142, -0.015273161232471466, -0.019081322476267815, -0.036001987755298615, 0.009689207188785076, 0.00170827133115381, -0.0003454101097304374, -0.004280806519091129, -0.0029033860191702843, -0.002268692245706916, 0.006535994820296764, 0.00011953257489949465, -0.0027649689000099897, 0.000274091464234516, -0.0055299378000199795, -0.010735776275396347, -0.01442240085452795, 0.02399682253599167, -0.026981234550476074, -0.022443849593400955, 0.005249727051705122, 0.006779068615287542, 0.0017234634142369032, -0.01985105872154236, -0.027953529730439186, -0.0063165524043142796, 0.0038419223856180906, 0.005864164792001247, 0.0009571046102792025, -0.014895045198500156, -0.025293217971920967, -0.03240989148616791, -0.00277678482234478, 0.023038029670715332, -0.02938496693968773, -0.017204251140356064, 0.028142588213086128, -0.023321617394685745, -0.010566974990069866, -0.01646152324974537, -0.1705840528011322, 0.01928388513624668, 0.036542151123285294, -0.014044285751879215, 0.026035945862531662, 0.0009115281864069402, -0.006390825379639864, -0.01204567588865757, -0.004810843151062727, -0.010337404906749725, 0.03713633120059967, 0.0016323106829077005, -0.012909939512610435, -0.01609691232442856, 0.003669744823127985, 0.021984709426760674, 0.001355476095341146, 0.02197120524942875, 0.05801370367407799, 0.004807467106729746, 0.06708846986293793, -0.04210584983229637, -0.0010769536020234227, 0.026319531723856926, 0.007278721313923597, 0.015840334817767143, -0.020148148760199547, -0.0038925628177821636, 0.005148446187376976, -0.0232405923306942, -0.003801410086452961, 0.004030980169773102, 0.026805680245161057, 0.020499255508184433, 0.0010735776741057634, -0.029168901965022087, 0.0049999007023870945, 0.004831099417060614, -0.020539768040180206, 0.019391918554902077, 0.005010028835386038, 0.047561515122652054, 0.03527276590466499, -0.007535299751907587, 0.007461026776582003, -0.0046926820650696754, -0.021323006600141525, -0.014949061907827854, -0.003296693554148078, -0.009108529426157475, 0.007123423740267754, -0.03008718229830265, -0.017879456281661987, -0.021012412384152412, 0.045535895973443985, 0.021228479221463203, 0.003916195128113031, 0.021147454157471657, -0.013308310881257057, 0.01015509944409132, 0.00026269734371453524, -0.02518518641591072, 0.004084996413439512, -0.004446231760084629, -0.008696653880178928, 0.0005321467760950327, -0.02033720724284649, 0.020526263862848282, -0.015138119459152222, 0.013355575501918793, -0.0029185782186686993, -0.0326799713075161, 0.006326680537313223, -0.01840611733496189, 0.0157052930444479, -0.012288750149309635, -0.008392810821533203, 0.043024130165576935, 0.01889226585626602, 0.0019783538300544024, 0.004496872425079346, 0.05817575380206108, 0.0014280608156695962, -0.016366994008421898, 0.0002542572910897434, 0.021741634234786034, -0.002359845209866762, 0.002376725198701024, -0.012963956221938133, -0.0025303347501903772, 0.02567133493721485, -0.02708926610648632, 0.0013039916520938277, -0.010924833826720715, 0.016394002363085747, 0.005502929445356131, 0.010796545073390007, 0.022025221958756447, -0.014787012711167336, -0.007926919497549534, 0.00841306708753109, -0.006465097889304161, -0.016421010717749596, 0.027534902095794678, 0.02957402542233467, 0.02499612793326378, -0.004088372457772493, 0.017447324469685555, 0.018000993877649307, -0.007346241734921932, -0.00011088149767601863, 0.010431933216750622, 0.02445596270263195, 0.03438149392604828, 0.04118756949901581, 0.019905073568224907, -0.003308509709313512, 0.009142289869487286, 0.002523582661524415, 0.013504121452569962, -0.018203554674983025, -0.027588918805122375, 0.0020391223952174187, 0.020148148760199547, 0.007528547663241625, -0.022984014824032784, -0.05968821421265602, -0.014732996001839638, -6.857561675133184e-05, 0.03686625137925148, -0.013098997063934803, 0.01633998565375805, 0.003976963460445404, 0.007015390787273645, -0.013868732377886772, 0.029276935383677483, 0.004945884458720684, -0.02048575133085251, -0.010729024186730385, -0.0066811637952923775, -0.010938338004052639, 0.002138715237379074, 0.04634614288806915, -0.007380002178251743, 0.0044901203364133835, 0.01204567588865757, -0.005452288780361414, -0.0002768344711512327, -0.005675106775015593, -0.00618151156231761, -0.016502035781741142, -0.0007199384272098541, -0.011194916442036629, 0.001797736156731844, 0.001167262438684702, 0.01255883276462555, 0.029655050486326218, 0.012653361074626446, -0.00021838695101905614, 0.011410982348024845, 0.00983775220811367, -0.013058485463261604, -0.018487142398953438, -0.01770390197634697, 0.021323006600141525, -0.0025640949606895447, 0.0010220931144431233, -0.012254989705979824, 0.0009630126296542585, 0.00572912348434329, -0.029249927029013634, -0.01184986624866724, -0.014003773219883442, -0.009831000119447708, 0.008811439387500286, 0.002015490084886551, -0.02887181006371975, 0.017366299405694008, -0.013416344299912453, 0.004523880779743195, 0.028925826773047447, 0.01555674709379673, 0.012464303523302078, 0.01643451489508152, -0.031248535960912704, 0.0013225598959252238, 0.004270678386092186, -0.005742627661675215, -0.018568165600299835, 0.020634297281503677, 0.0027818488888442516, 0.019837554544210434, -0.03583993762731552, -0.025590309873223305, -0.004665673710405827, -0.0043280706740915775, -0.021741634234786034, -0.004756826441735029, -0.01304498128592968, 0.026225002482533455, -0.01931089349091053, -0.03867580369114876, -0.016326481476426125, -0.026292523369193077, 0.04043133929371834, 0.014611459337174892, -0.02272743545472622, -0.00802144780755043, 0.0009174362057819963, -0.017258265987038612, 0.04793962836265564, 0.022052230313420296, 0.004267302341759205, -0.001824744394980371, 0.015786318108439445, -0.04772356525063515, -0.0006659219507128, -0.007042399141937494, 0.0001772415853338316, -0.01670459844172001, -0.010904577560722828, -0.010263131931424141, 0.007933671586215496, -0.013828219845890999, 0.011120643466711044, 0.03908092528581619, -0.02118796668946743, -0.035218749195337296, -0.09074769169092178, 0.018176546320319176, 0.005678482819348574, 0.0025607189163565636, 0.0036832490004599094, 0.004483368247747421, 0.01431436836719513, -0.004547512624412775, 0.004824347328394651, -0.0034806872718036175, -0.028223613277077675, 0.024280410259962082, 0.00847383588552475, -0.005800019949674606, -0.015462218783795834, -0.012653361074626446, 0.022957006469368935, 0.002263628412038088, -0.009540661238133907, 0.009614934213459492, 0.0037338894326239824, -0.0010744216851890087, -0.002624863525852561, 0.026225002482533455, -0.025104161351919174, 0.012200972996652126, -0.00189901702105999, 0.029952140524983406, -0.010040313936769962, -0.012828915379941463, -0.011964650824666023, -0.0009081521420739591, -0.017474332824349403, 0.004672425799071789, -0.0022737563122063875, 0.011066627688705921, 0.007724357303231955, 0.03132956102490425, 0.0065393708646297455, 0.021012412384152412, -0.020202165469527245, -0.020539768040180206, 0.024982623755931854, 0.009149041958153248, 0.01255883276462555, -0.01870320737361908, 0.010830305516719818, 0.008541356772184372, 0.003246053121984005, 0.020985404029488564, 0.010236123576760292, 0.017744414508342743, 0.007859398610889912, -0.020634297281503677, 0.0023328368552029133, -0.04437454044818878, -0.012173965573310852, 0.0035752160474658012, -0.0037845298647880554, -0.021539073437452316, 0.025414755567908287, 0.011870122514665127, 0.019378414377570152, -0.006532618775963783, -0.015097606927156448, -0.015462218783795834, -0.012909939512610435, -0.005134942010045052, 0.019756529480218887, -0.030168207362294197, -0.020647801458835602, 0.002380101243034005, 0.01646152324974537, 0.007042399141937494, 0.018392613157629967, -0.019081322476267815, -0.003514447482302785, -0.009263827465474606, -0.02908787690103054, 0.014503425918519497, -0.011390726082026958, 0.015745805576443672, -0.03656915947794914, -0.009601430036127567, 0.03313911333680153, 0.004854731727391481, -0.01467897929251194, 0.02781848981976509, -0.008183497004210949, -0.022146757692098618, -0.023632211610674858, -0.019013801589608192, 0.01490854937583208, 0.021809155121445656, 0.03481362387537956, 0.032977063208818436, 0.00958117377012968, -0.0033726543188095093, 0.0413496196269989, 0.0017158674309030175, 0.019229868426918983, -0.010357661172747612, -0.007380002178251743, -0.0226058978587389, -0.0027902889996767044, -0.007271969225257635, -0.0034874393604695797, -0.035758912563323975, -0.002869625808671117, -0.00714368000626564, -0.010418429039418697, -0.0024290538858622313, -0.006684539839625359, 0.014354880899190903, -0.006417833734303713, 0.013747195713222027, 0.002830801298841834, -0.010816801339387894, -0.031680669635534286, 0.006519114598631859, 0.014881541021168232, 0.018122529610991478, 0.013551385141909122, -0.004874987527728081, 0.03343620523810387, -0.001648346777074039, 0.008271274156868458, -0.01640750654041767, 0.030708370730280876, -0.005870916415005922, -0.01178909745067358, 0.01594836637377739, -0.013686426915228367, -0.032733988016843796, -0.008831694722175598, 0.02233581617474556, 0.004635289777070284, 0.006593387108296156, -0.008001191541552544, 0.08718260377645493, 0.01846013404428959, -0.010789792984724045, -0.0029725946951657534, 0.020026611164212227, 0.0003310619795229286, 0.005749379750341177, 0.026981234550476074, -0.0060093337669968605, -0.028709761798381805, 0.04337523505091667, 0.0024712542071938515, 0.0011968027101829648, -0.01894628256559372, -0.006974878720939159, -0.003445238806307316, -0.027899514883756638, 0.014638467691838741, -0.014462913386523724, -0.006981630809605122, 0.05461066588759422, 0.004236917942762375, 0.00027219243929721415, -0.010560222901403904, -0.012680369429290295, -0.01542170625180006, 0.02248436212539673, -0.004780458752065897, -0.003656240878626704, -0.017474332824349403, 0.025077152997255325, 0.0005962913273833692, -0.02587389573454857, -0.0426190048456192, 0.00856836512684822, 0.013531128875911236, -0.013186774216592312, 0.00391281908378005, 0.03519174084067345, 0.000916592194698751, 0.012943699955940247, 0.0023041407112032175, -0.031032470986247063, -0.016664085909724236, -0.0035009433049708605, 0.00023737712763249874, 0.005580577999353409, -0.014624963514506817, 0.0007439926848746836], "ab3b4ded-a0e5-4d00-94d1-2fcee1efeba3": [-0.014654004015028477, -0.02180461585521698, 0.003717775223776698, -0.02104477770626545, -0.0081275450065732, 0.004728630185127258, -0.029932159930467606, -0.022170966491103172, 0.01862958073616028, -0.007075984496623278, 0.010440978221595287, 0.011981005780398846, -0.02270013839006424, -0.00232700165361166, -0.011736772023141384, -0.02308005653321743, 0.005722524132579565, -0.01818181946873665, 0.027584806084632874, -0.02225237712264061, -1.2879496352979913e-05, -0.01281546987593174, 0.012822253629565239, -0.0162550900131464, -0.02276798151433468, 0.004009498283267021, 0.007978291250765324, -0.026553599163889885, -0.015603801235556602, -0.0014747288078069687, 0.02321574278175831, 0.018507463857531548, -0.01739484630525112, -0.019240165129303932, -0.0025474901776760817, 0.020990503951907158, 0.015766622498631477, -0.0065366355702281, 0.004552239086478949, 0.0008620251901447773, 0.015047491528093815, -0.009497965686023235, 0.01065129041671753, -0.00985074695199728, -0.02640434540808201, 0.0011592606315389276, -0.015956582501530647, 0.0072998651303350925, 0.00406716438010335, 0.008222525008022785, -0.004745590966194868, -0.002601764164865017, -0.03856173902750015, -0.021628225222229958, 0.012849390506744385, 0.015956582501530647, -0.025142472237348557, 0.016051562502980232, 0.004681140184402466, -0.0029121441766619682, 0.019145185127854347, -0.0008535448578186333, -0.03218453377485275, -0.010719132609665394, 0.0012364316498860717, 0.013826324604451656, 0.0019487789832055569, 0.005668250378221273, -0.024559026584029198, 0.01434192806482315, 0.02404342219233513, 0.029687928035855293, 0.023310720920562744, -0.0009769336320459843, 0.04455902799963951, 0.004518317990005016, -0.044396206736564636, -0.006075305864214897, -0.0009862619917839766, 0.013860246166586876, 0.0011482362169772387, -0.011010856367647648, -0.00434871157631278, -0.003292062785476446, 0.01639077439904213, 0.014654004015028477, -0.029497968032956123, -0.0013093624729663134, 0.013331073336303234, -0.012686568312346935, 0.001435719314031303, 0.017327003180980682, -0.001279681222513318, 0.011852104216814041, 0.004860923159867525, 0.0168928112834692, -0.01930800825357437, 0.015644505620002747, -0.0290095005184412, -0.05188602954149246, -0.007598372641950846, 0.009043420664966106, -0.001004070625640452, -0.008141113445162773, -0.03131614997982979, -0.022238807752728462, 0.03283582255244255, -0.019932160153985023, 0.012964723631739616, -0.01004749070852995, -0.015101765282452106, 0.023758482187986374, -0.004392809234559536, -0.04187246039509773, -0.0325101800262928, 0.016933515667915344, 0.024341929703950882, -0.023704208433628082, -0.02402985282242298, -0.004864315502345562, -0.003064790042117238, 0.012421982362866402, 0.015020354650914669, 0.00972184631973505, 0.017137043178081512, 0.01682496815919876, 0.0024813434574753046, -0.009287653490900993, 0.013419268652796745, -0.010373135097324848, 0.04407056048512459, 0.003646540455520153, 0.02204884961247444, -0.0013008820824325085, -0.01818181946873665, -0.008303935639560223, -0.024640437215566635, -0.01291044894605875, -0.008765265345573425, -0.014911806210875511, 0.022428767755627632, 0.010196744464337826, 0.0168928112834692, -0.020244235172867775, 0.0010846337536349893, 0.03386703133583069, -0.00016600239905528724, 0.014559024944901466, -0.007924017496407032, 0.006784261204302311, -0.0012355835642665625, -0.021248307079076767, -0.019348712638020515, -0.02059701643884182, 0.0019233380444347858, 0.01919945888221264, 0.02149253897368908, 0.007381276227533817, -4.85763703181874e-05, -0.004026459064334631, 0.009321575053036213, 0.024830395355820656, 0.014165537431836128, -0.035739488899707794, 0.0027747629210352898, 0.042632296681404114, 0.010766622610390186, 0.01262550987303257, -0.01708276942372322, 0.0003756784717552364, 0.004518317990005016, -0.0041248309426009655, -0.023568524047732353, 0.03142469748854637, -0.022157397121191025, 0.018602443858981133, -0.013948441483080387, 0.01765264756977558, -0.0010990502778440714, -0.014464044943451881, -0.010983718559145927, -0.01645861752331257, -0.009803257882595062, 0.030637724325060844, -0.010407056659460068, -0.020000001415610313, 0.0014798169722780585, -0.003537992248311639, 0.0084531893953681, -0.0059158760122954845, 0.02843962237238884, 0.036173682659864426, 0.005529172718524933, -0.00406716438010335, -0.6070014238357544, -0.021058347076177597, 0.009606514126062393, 0.010345998220145702, 0.0017995253438130021, 0.018412485718727112, 0.004121438600122929, 0.003622795455157757, -0.01873813010752201, 0.024179106578230858, -0.001568860374391079, 0.003018996212631464, -0.010685211047530174, 0.0030461333226412535, 0.007985075935721397, -0.016404343768954277, 0.02530529350042343, 0.004253731574863195, 0.011275442317128181, 0.036499325186014175, -0.02206241711974144, 0.02402985282242298, -0.021696068346500397, 0.02531886287033558, 0.010020353831350803, -0.0023880598600953817, 0.004701492842286825, -0.010508820414543152, 0.010183176025748253, 0.043202176690101624, -0.025915877893567085, 0.009423338808119297, 0.01383989304304123, 0.00755766686052084, 0.045943018049001694, -0.006027816329151392, -0.031207602471113205, 0.0261329747736454, -0.015291725285351276, 0.06529173254966736, 0.0028731345664709806, -0.011309363879263401, 0.038805972784757614, 0.016526460647583008, -0.018385348841547966, 0.0042401631362736225, 0.015576663427054882, -0.020257804542779922, -0.004158752039074898, 0.013100408017635345, -0.0008590570650994778, -0.01563093811273575, 0.01016960758715868, -0.015210313722491264, 0.01175712514668703, 0.007978291250765324, 0.030936231836676598, -0.02849389798939228, 0.0012567844241857529, -0.013527817092835903, -0.008548169396817684, 0.008900950662791729, -0.013819539919495583, -0.03175034373998642, -0.03275441378355026, 0.0162550900131464, -0.024056989699602127, -0.025902308523654938, -0.006879240740090609, -0.020176392048597336, 0.004640434868633747, -0.005729308817535639, 0.00975576788187027, -0.0006890265503898263, 0.03042062744498253, 0.041411131620407104, 0.024952512234449387, -0.01887381449341774, 0.011750340461730957, 0.021383991464972496, -0.001981004374101758, 0.010875171050429344, 0.004548847209662199, -0.01728629693388939, -0.0005300203920342028, -0.0016222865087911487, -0.04168250039219856, -0.012822253629565239, -0.020705565810203552, 0.013086839579045773, 0.022862959653139114, 0.010108549147844315, 0.007381276227533817, -0.037394847720861435, -0.0025661468971520662, 0.025848034769296646, -0.017774764448404312, -0.0015366352163255215, 0.014029852114617825, -0.0077951159328222275, -0.02065129205584526, -0.009375848807394505, 0.017584804445505142, -0.013744913041591644, 0.039891455322504044, -0.023188604041934013, -0.027842607349157333, 0.01090230792760849, 0.03237449377775192, -0.003110583871603012, -0.01811397820711136, -0.003297151066362858, -0.024979649111628532, -0.007265943568199873, 0.040895525366067886, -0.02595658414065838, 0.018141115084290504, 0.009267301298677921, 0.0041757128201425076, -0.013751697726547718, 0.006244912277907133, 0.007042062934488058, 0.010312076658010483, -0.0040841251611709595, 0.002876526676118374, 0.005139078013598919, 0.023622797802090645, -0.020759839564561844, -0.005790366791188717, 0.012842606753110886, -0.017706921324133873, 0.0034497969318181276, 0.009545455686748028, -0.013113977387547493, 0.015861602500081062, 0.005936228670179844, -0.005234057549387217, -0.00869742315262556, 0.022279513999819756, -0.011160110123455524, -0.005739484913647175, 0.0011762212961912155, -0.009945726953446865, -0.0007543250685557723, 0.010495251975953579, -0.03099050559103489, -0.0027730667497962713, 0.0028782228473573923, -0.019986433908343315, 0.013290368020534515, 0.0037618728820234537, 0.005257802549749613, -0.002650950103998184, 0.016987789422273636, -0.0040637725032866, 0.0011880937963724136, -0.008236093446612358, -0.007476255763322115, 0.02020353078842163, -0.004918589256703854, -0.010943013243377209, -0.011092266999185085, -0.023758482187986374, 0.02652646228671074, -0.031587518751621246, -0.01567164435982704, -0.001617198227904737, 0.01746268756687641, -0.028412485495209694, -0.03563094139099121, -0.018032565712928772, -0.003928087186068296, 0.0006037992425262928, 0.0004460651834961027, 0.0026882635429501534, -0.0011677410220727324, -0.019145185127854347, 0.004548847209662199, 0.005773406475782394, -0.0061363643035292625, 0.0005821743980050087, -0.004793080501258373, 0.02002713829278946, -0.012238807044923306, 0.023175036534667015, 0.019742200151085854, 0.03934871405363083, 0.02332429029047489, -0.034518320113420486, 0.0028341251891106367, -0.012917233631014824, 0.022781549021601677, 0.014545456506311893, 0.007767979055643082, 0.03199457749724388, -0.004640434868633747, 0.04393487423658371, 0.02409769594669342, 0.009362280368804932, 0.020949799567461014, 0.026295796036720276, 0.009864315390586853, 0.009586161002516747, -0.0290095005184412, 0.015495252795517445, -0.016553597524762154, -0.003124152310192585, -0.009803257882595062, 0.008073271252214909, 0.006024423986673355, -0.0046472190879285336, -0.04157395288348198, -0.011960652656853199, -0.004840570501983166, 0.029497968032956123, 0.006926730740815401, -0.014911806210875511, -0.006624830886721611, -0.012951154261827469, 0.008276798762381077, -9.704673720989376e-05, -0.0017435551853850484, 0.007204885594546795, -0.021248307079076767, -0.017991861328482628, -0.016363637521862984, 0.014084125868976116, 0.012605157680809498, -0.008249661885201931, -0.029633652418851852, -0.015468115918338299, 0.003748304443433881, 0.013819539919495583, 0.00333107216283679, 0.03014925681054592, -0.03590231016278267, 0.027530532330274582, -0.017801901325583458, 0.007279512472450733, 0.007747626397758722, 0.022225240245461464, 0.019009500741958618, 0.0035515606869012117, -0.014708278700709343, 0.006906378082931042, 0.017951155081391335, 0.05340570583939552, 0.01862958073616028, -0.04029851034283638, 0.0027747629210352898, -0.015156039968132973, -0.01620081625878811, -0.03557666763663292, 0.021451834589242935, 0.012293081730604172, -0.013005428947508335, -0.00269504776224494, -0.004884668160229921, 0.029090913012623787, 0.029552241787314415, 0.02065129205584526, 0.03009498305618763, 0.0008191995439119637, 0.0034938945900648832, -0.013032565824687481, -0.029362281784415245, -0.02156038209795952, -0.024966081604361534, -0.0021981005556881428, -0.01297829207032919, -0.021763909608125687, 0.0024016285315155983, 0.007829037494957447, -0.015848034992814064, 0.009945726953446865, 0.0003695302293635905, 0.006126187741756439, 0.009898236952722073, 0.023758482187986374, -0.012856175191700459, -0.019687926396727562, -0.028032567352056503, 0.035278160125017166, -0.0034769338089972734, 0.03118046373128891, -0.00918588973581791, -0.0027052240911871195, 0.011112620122730732, -0.0059396205469965935, 0.0013509159907698631, 0.019457262009382248, 0.011994574218988419, 0.016417911276221275, -0.0081275450065732, -0.03033921681344509, -0.014179105870425701, 0.0062550888396799564, -0.01727272942662239, -0.003660108894109726, -0.004464043769985437, 0.019538672640919685, 0.0012533923145383596, -0.016974221915006638, -0.001863975776359439, 0.03476255387067795, 0.008588874712586403, -0.018317505717277527, -0.017801901325583458, 0.018914520740509033, -0.01709633879363537, -0.017679784446954727, -0.007598372641950846, 0.0005991350626572967, -0.027259161695837975, -0.01637720689177513, 0.001313602551817894, 0.005400272086262703, -0.019715063273906708, 0.02671642042696476, 0.011289010755717754, -0.02014925517141819, -0.023948442190885544, -0.004810041282325983, 0.006075305864214897, 0.0023422662634402514, -0.001841926947236061, 0.00886024534702301, 0.0033208958338946104, -0.023934872820973396, -0.0028443015180528164, -0.007496608886867762, -0.002176051726564765, -0.020230667665600777, -0.009124831296503544, 0.014898237772285938, 0.002411804860457778, 0.023242879658937454, -0.011811398901045322, 0.024138402193784714, -0.005780190695077181, -0.024518320336937904, -0.012516962364315987, 0.0165807344019413, -0.010217097587883472, 0.008887382224202156, -0.014735415577888489, 0.011221167631447315, 0.006082090083509684, 0.01963365264236927, -0.0005652137915603817, 0.0027272729203104973, 0.019023068249225616, 0.02027137205004692, -0.002374491421505809, -0.0008009668672457337, 0.004684532526880503, -0.014450476504862309, 0.02504749223589897, 0.0021472186781466007, 0.020881956443190575, 0.0005461330292746425, 0.05234735831618309, -0.0009158752509392798, 0.02161465585231781, 0.00015614401490893215, 0.02971506491303444, 0.0084531893953681, -0.011343284510076046, 0.006875848863273859, -0.005837856791913509, 0.006923338398337364, 0.0018690639408305287, -0.006058345083147287, -0.016146542504429817, 0.025915877893567085, 0.00333107216283679, -0.047652650624513626, -0.010379919782280922, 0.0038975579664111137, 0.028466759249567986, -0.02881954237818718, -0.018059702590107918, 0.008066486567258835, 0.008873813785612583, 0.011662145145237446, 0.0019402987090870738, -0.003359905444085598, -0.01740841381251812, -0.021886026486754417, -0.017964724451303482, -0.01421981118619442, -0.010895523242652416, -0.03932157903909683, -0.02103121019899845, 0.019769337028265, -0.04309362918138504, -0.022537315264344215, 0.010963366366922855, 0.012184533290565014, 0.015576663427054882, 0.02104477770626545, -0.014748984016478062, -0.028982363641262054, 0.028141114860773087, -0.003975577186793089, -0.021207600831985474, -0.008690638467669487, -0.02478969097137451, 0.03497965261340141, -0.0015485076000913978, 0.017503393813967705, -0.009748983196914196, -0.016051562502980232, 0.04404342547059059, 0.00392130296677351, 0.009701493196189404, 0.012489824555814266, -0.005909091327339411, -0.006278833840042353, 0.0072998651303350925, -0.0004418250173330307, 0.01682496815919876, -0.003161465749144554, -0.01784260757267475, 0.008480326272547245, -0.054843969643116, -0.0084531893953681, 0.014626867137849331, -0.015495252795517445, -0.004023066721856594, 0.003200475126504898, 0.01151289138942957, -0.0047795120626688, 0.0063466764986515045, 0.027177751064300537, -0.010067843832075596, -0.01644505001604557, -0.0013890775153413415, -0.0019148577703163028, -0.004168928600847721, -0.0031292405910789967, 0.0261329747736454, -0.0061906385235488415, 0.024776121601462364, 0.018534602597355843, -0.012075984850525856, 0.027625512331724167, 0.00895522441715002, 0.015440978109836578, 0.0013551561860367656, -0.017951155081391335, -0.030556311830878258, -0.010542741976678371, 0.005335821304470301, 0.024830395355820656, 0.0012559363385662436, -0.00809362344443798, -0.03335142880678177, -0.02028494141995907, 0.0014263909542933106, -0.00048422664985992014, 0.011132972314953804, -0.00349050248041749, -0.024124832823872566, -0.03511533513665199, -0.011716418899595737, 0.007808684837073088, -0.009748983196914196, -0.012720489874482155, -0.023039350286126137, -0.015047491528093815, 0.006092266645282507, 0.017991861328482628, 0.008371778763830662, 0.031858891248703, 0.01013568602502346, -0.05080054700374603, -0.008493894711136818, 0.0026424697134643793, -0.035983722656965256, -0.00567503459751606, -0.008317504078149796, 0.026865674182772636, 0.03457259386777878, 0.019416555762290955, 0.020000001415610313, 0.014803257770836353, -0.006302578840404749, 0.010841249488294125, 0.017815470695495605, -0.009416555054485798, 0.017639080062508583, -0.002293080324307084, -0.0003122880298178643, 0.0005554613890126348, 0.011960652656853199, -0.0007793420227244496, 0.017489826306700706, 0.005895522888749838, 0.021071914583444595, 0.0003652900632005185, 0.02333785779774189, -0.005044098012149334, -0.04496608301997185, -0.013188604265451431, 0.003317503724247217, -0.008120760321617126, -0.01434192806482315, -0.0018368387827649713, -0.011126188561320305, 0.006733379326760769, -0.010345998220145702, 0.021845322102308273, 0.022198103368282318, 0.012455903925001621, -0.028032567352056503, 0.006377205718308687, -0.006421303376555443, 0.006879240740090609, -4.405794697959209e-06, 0.00940298568457365, -0.00753731420263648, 0.015440978109836578, 0.00283751729875803, 0.021791046485304832, 0.007157395593822002, 0.009267301298677921, 0.02887381613254547, 0.005712348036468029, 0.03715061396360397, 0.004260516259819269, -0.044396206736564636, -0.02385346218943596, -0.014911806210875511, -0.040515609085559845, -0.02447761408984661, -0.005620760377496481, -0.008405699394643307, -0.03256445378065109, 0.008873813785612583, 0.0012169268447905779, 0.010529173538088799, -0.0076662153005599976, -0.0048710997216403484, -0.011004071682691574, -0.01728629693388939, 0.03785617649555206, 0.02168249897658825, 0.029633652418851852, 0.037829041481018066, 0.01823609508574009, -0.0008811059524305165, -0.05725916475057602, -0.007910449057817459, -0.00564111303538084, 0.030393490567803383, 0.05411126837134361, -0.009138399735093117, -0.0261465422809124, 0.0005957429530099034, 0.0011338196927681565, -0.0029392812866717577, -0.028900953009724617, 0.025074629113078117, 0.013459973968565464, -0.004168928600847721, -0.02568521350622177, 0.002242198446765542, -0.0306105874478817, 0.01511533372104168, -0.026037994772195816, -0.0003474813711363822, -0.020990503951907158, -0.004436906892806292, 0.0008726256201043725, 0.020122118294239044, -0.01938941888511181, 0.01715061254799366, 0.007048847619444132, 0.007082768715918064, 0.0011109227780252695, 0.011689282022416592, -0.04952510818839073, 0.011974221095442772, -0.003086838871240616, 0.04111262410879135, -0.004219810478389263, -0.013256446458399296, 0.023161467164754868, 0.004969471134245396, -0.0013610924361273646, -0.0071438271552324295, -0.02033921517431736, 0.05552239343523979, 0.005732700694352388, -0.02161465585231781, -0.006360244937241077, 0.010434193536639214, 0.024111265316605568, -0.0081275450065732, 0.008141113445162773, 0.0051933517679572105, -0.005607191938906908, -0.0127476267516613, 0.004993216134607792, -0.012170964851975441, 0.012109906412661076, -0.022862959653139114, -0.004165536258369684, -0.00195895554497838, -0.019620083272457123, -0.006635007448494434, 0.01854817010462284, -0.033514250069856644, -0.03066486120223999, -0.017774764448404312, -0.021791046485304832, 0.012116690166294575, -0.0023812756408005953, 0.013249661773443222, 0.006902985740453005, 0.051234740763902664, -0.03750339522957802, 0.02556309662759304, 0.005763229914009571, 0.009640434756875038, -0.009077341295778751, -0.00452849455177784, -0.006017639767378569, -0.008242877200245857, 0.015888739377260208, -0.027639079838991165, -0.01708276942372322, -0.03967436030507088, 0.01720488630235195, 0.03259159252047539, 0.002045454690232873, 0.01090909168124199, 0.02537313662469387, 0.010854817926883698, 0.011696066707372665, -0.008649933151900768, -0.004589552525430918, -0.0040705567225813866, -0.006054953206330538, 0.013507463969290257, -0.0017571236239746213, -0.016743557527661324, -0.01575305499136448, -0.004077340941876173, -0.013005428947508335, 0.007544098421931267, -0.034138403832912445, -0.03373134508728981, 0.008426052518188953, -0.004748982843011618, -0.01816825196146965, -0.005447761621326208, -0.027177751064300537, -0.016105836257338524, -0.033704210072755814, -0.013948441483080387, 0.005630936939269304, -0.008052918128669262, 0.005522388499230146, 0.019552240148186684, 0.005162823013961315, 0.016024425625801086, -0.009701493196189404, -0.030556311830878258, -0.029606515541672707, -0.027530532330274582, -0.010800544172525406, -0.029986435547471046, -0.01151289138942957, 0.03875169903039932, -0.006282225716859102, -0.01599728874862194, -0.030122119933366776, -0.014355496503412724, -0.005739484913647175, -0.009843963198363781, 0.007957938127219677, 0.03948440030217171, 0.02862958237528801, 0.0035346001386642456, 0.00581750413402915, 0.030637724325060844, -0.01090909168124199, 0.012686568312346935, 0.004609905648976564, -0.013086839579045773, -0.009864315390586853, -0.010569878853857517, 0.015345999039709568, -0.0024677750188857317, -0.023500680923461914, -0.017964724451303482, 0.004314790014177561, -0.011702850461006165, 0.001361940405331552, 0.02249661087989807, 0.010230666026473045, -0.008928087539970875, -0.002057327190414071, -0.019484398886561394, -0.004497965332120657, 0.020040707662701607, -0.008941655978560448, -0.016879241913557053, 0.0010676730889827013, 0.020230667665600777, -0.0005787822883576155, 0.0020149254705756903, -0.01701492629945278, 0.005145862232893705, -0.017639080062508583, 0.011099051684141159, -0.024124832823872566, 0.01032564602792263, 0.00097947777248919, -0.004202849697321653, 0.027896882966160774, -0.006478969473391771, 0.011499322950839996, 0.016363637521862984, 0.0092401634901762, -0.0005096676177345216, -0.02257802151143551, 0.004202849697321653, -0.04819539189338684, -0.001646031392738223, 0.011777477338910103, -0.016879241913557053, 0.002335482044145465, 0.00333107216283679, -0.0040841251611709595, -0.032238807529211044, 0.012143827974796295, -0.0007246438763104379, -0.011139756999909878, -0.02601085789501667, 0.018914520740509033, 0.017137043178081512, -0.012720489874482155, -0.02442334033548832, -0.006238128058612347, -0.019009500741958618, -0.006580733228474855, -0.03373134508728981, 0.01573948562145233, -0.030583450570702553, 0.00311567191965878, -0.006173677742481232, 0.004745590966194868, -0.02556309662759304, 0.0014747288078069687, 0.017801901325583458, -0.0084531893953681, -0.00612279586493969, 0.24379920959472656, -0.03213026002049446, -0.0041757128201425076, 0.0356852151453495, 0.01262550987303257, 0.017693353816866875, -0.0018147898372262716, -0.0011685889912769198, -0.000648320943582803, 0.024843964725732803, -0.023229310289025307, -0.007808684837073088, -0.007137042935937643, -0.005125509575009346, 0.020000001415610313, 0.0029375851154327393, -0.017815470695495605, -0.0229579396545887, -0.020312078297138214, -0.013568522408604622, 0.024314792826771736, -0.008039349690079689, 0.005597015377134085, -0.005759837571531534, 0.01937584951519966, -0.018466759473085403, -0.017435550689697266, 0.02504749223589897, 0.027272731065750122, -0.0081275450065732, -0.03245590627193451, 0.013948441483080387, 0.0204070582985878, -0.007150611374527216, -0.004128222819417715, -0.01892808824777603, 0.039185892790555954, 0.017991861328482628, 0.02480325847864151, -0.004447083454579115, -0.011037993244826794, -0.008588874712586403, -0.015251019038259983, -0.012937585823237896, -0.024111265316605568, 0.010474899783730507, -0.003098711371421814, -0.01759837381541729, 0.010854817926883698, 0.000155720001203008, -0.0331614688038826, -0.022035280242562294, 0.0376119427382946, 0.025793761014938354, -0.011716418899595737, -0.016350070014595985, 0.022849392145872116, -0.016567165032029152, 0.02416553907096386, 0.03546811640262604, -0.01575305499136448, 0.03218453377485275, -0.021709635853767395, 0.03232022002339363, -0.025101765990257263, 0.01090909168124199, -0.014545456506311893, 0.022211670875549316, 0.00447761220857501, -0.01348032709211111, -0.0006288161966949701, 0.008643148466944695, -0.02104477770626545, -0.01115332543849945, -0.02066485956311226, -0.034518320113420486, 0.015088196843862534, 0.009660787880420685, 0.04151967912912369, 0.026065131649374962, 0.027299867942929268, 0.013419268652796745, 0.005868386011570692, -0.005597015377134085, -0.018317505717277527, -0.025712350383400917, 0.015644505620002747, -0.0029053599573671818, -0.0035312080290168524, -0.006485753692686558, 0.002883311128243804, -0.019715063273906708, 0.0026068524457514286, -0.0013831412652507424, 0.004623474087566137, 0.002627205103635788, -0.005267978645861149, 0.02421981282532215, 0.004016282502561808, 0.007632293738424778, -0.03487110137939453, 0.0075101773254573345, 0.023188604041934013, 0.014830394648015499, -0.02289009653031826, -0.0038907737471163273, 0.00510176457464695, 0.02811397798359394, 0.010447761975228786, -0.015223882161080837, 0.014097695238888264, -0.04729986935853958, 0.009511534124612808, -0.0012364316498860717, -0.002922320505604148, 0.02556309662759304, -0.03725916147232056, -0.020067844539880753, -0.029280871152877808, 0.01837177947163582, 0.03085481934249401, -0.018453190103173256, -0.013039350509643555, -0.011207599192857742, -0.012930802069604397, -0.010698780417442322, -0.005715739913284779, -0.015332430601119995, -0.023744914680719376, -0.03321574255824089, 0.02104477770626545, -0.018154682591557503, 0.015318862162530422, 0.007496608886867762, 0.007516961544752121, 0.0015883651794865727, -0.00047193016507662833, -0.01837177947163582, -0.007747626397758722, -0.011960652656853199, -0.0063466764986515045, -0.005932836327701807, -0.015861602500081062, -0.004860923159867525, -0.010848034173250198, -0.029090913012623787, 0.012320218607783318, -0.0006275441846810281, 0.010264587588608265, -0.002756106201559305, -0.03392130509018898, -0.009396201930940151, -0.0018385348375886679, 0.0023117370437830687, 0.00915196817368269, -0.010122117586433887, -0.03123473934829235, -0.039050206542015076, -0.009911805391311646, 0.014898237772285938, -0.020434195175766945, -0.005023745354264975, 0.025983721017837524, -0.007530529983341694, -0.009925373829901218, -0.014464044943451881, -0.17270015180110931, 0.017625510692596436, 0.03256445378065109, -0.01556309498846531, 0.020515605807304382, -0.0008247117511928082, -0.007530529983341694, -0.008900950662791729, -0.004945726599544287, 0.001753731514327228, 0.03259159252047539, -0.0009336839430034161, -0.016757125034928322, -0.013459973968565464, -0.006414519157260656, 0.009538671001791954, -0.0069877891801297665, 0.012489824555814266, 0.05666214972734451, -0.007075984496623278, 0.06029851362109184, -0.03533243387937546, 0.003302239114418626, 0.03156038373708725, -0.00010552706226008013, 0.008175035007297993, -0.03080054558813572, -0.005000000353902578, 0.0004210482002235949, -0.019592946395277977, 0.007137042935937643, 0.011621439829468727, 0.032673001289367676, 0.00494233425706625, 0.017381276935338974, -0.02468114160001278, 0.008907735347747803, -0.009959295392036438, -0.0063568525947630405, 0.008351425640285015, 0.015590231865644455, 0.04895522817969322, 0.022523747757077217, -0.007218454033136368, -0.005607191938906908, 0.011119403876364231, -0.006733379326760769, -0.0011456920765340328, 0.005033921916037798, -0.014708278700709343, 0.025210315361618996, -0.025902308523654938, -0.021316148340702057, -0.008276798762381077, 0.03367707133293152, 0.0047116694040596485, -0.010237449780106544, 0.019267302006483078, 0.0012839214177802205, 0.007957938127219677, -0.0014916894724592566, -0.015413841232657433, 0.0029630260542035103, -0.0011991182109341025, -0.02128901146352291, -0.007157395593822002, -0.006272049620747566, 0.022917235270142555, -0.024694710969924927, 0.0021607871167361736, -0.0098846685141325, -0.02339213341474533, 0.00492537347599864, -0.01818181946873665, 0.005451153963804245, -0.00553256506100297, 0.0032700139563530684, 0.03736771270632744, 0.029308008030056953, -0.0035108551383018494, 0.0092401634901762, 0.03514247387647629, -0.003883989527821541, -0.012856175191700459, 0.00391791108995676, 0.023487111553549767, 0.006526459474116564, 0.0009455563849769533, -0.031641796231269836, -0.0026119404938071966, 0.045563098043203354, -0.033948443830013275, 0.0025186568964272738, -0.014477613382041454, 0.03462686762213707, 0.017774764448404312, 0.0050780195742845535, 0.002589891664683819, -0.009538671001791954, 0.006757124327123165, 0.004155360162258148, 0.0022252376656979322, -0.00869742315262556, 0.024341929703950882, 0.02995929680764675, 0.03278154879808426, -0.017069201916456223, 0.027123477309942245, 0.029660789296030998, 0.011214383877813816, -0.018982363864779472, 0.013215741142630577, 0.01568521186709404, 0.016105836257338524, 0.032238807529211044, 0.012706921435892582, -0.0065366355702281, 0.005145862232893705, 0.011743555776774883, 0.002338874153792858, -0.03400271758437157, -0.031723205000162125, 0.011166893877089024, 0.02773405984044075, -0.0025576665066182613, -0.021194031462073326, -0.05522388592362404, -0.023826325312256813, 0.02192673273384571, 0.026689283549785614, 0.0035481685772538185, 0.014192674309015274, 0.007055631838738918, 0.0191180482506752, -0.010074627585709095, 0.032673001289367676, -0.014450476504862309, -0.012930802069604397, -0.014111263677477837, 0.005145862232893705, -0.026417912915349007, 0.01963365264236927, 0.035359568893909454, 0.003110583871603012, 0.020990503951907158, 0.009484397247433662, -0.013202172704041004, -0.00048337862244807184, -0.004263908136636019, 0.018331073224544525, -0.010447761975228786, -0.013039350509643555, -0.02059701643884182, 0.009715061634778976, 0.013378563337028027, 0.014260517433285713, 0.03932157903909683, -0.00728629669174552, -0.008236093446612358, 0.0016383990878239274, 0.005169607233256102, 0.00975576788187027, -0.01552238967269659, -0.031967438757419586, 0.039185892790555954, -0.006299186497926712, -0.001092266058549285, -0.015956582501530647, 0.00825644563883543, 0.007164179813116789, -0.022645864635705948, -0.02085481956601143, -0.01709633879363537, 0.005688603036105633, -0.020678428933024406, -0.015644505620002747, -0.04284939542412758, 0.006906378082931042, 0.003680461784824729, -0.00463704252615571, 0.02601085789501667, 0.010061059147119522, 0.0159294456243515, 0.0064755771309137344, -0.029253734275698662, 0.01765264756977558, 0.009084125980734825, -0.0026492539327591658, -0.01188602577894926, 0.015888739377260208, -0.0035854820162057877, 0.013364994898438454, -0.03294437378644943, -0.026743557304143906, 0.013812756165862083, 0.010502036660909653, -0.0036702852230519056, -0.0024881279096007347, -0.011682498268783092, 0.013948441483080387, -0.037910450249910355, -0.03142469748854637, -0.009810041636228561, 0.0019165538251399994, 0.018466759473085403, 0.010020353831350803, -0.0015561399050056934, -0.005308684427291155, -0.008805970661342144, -0.015970151871442795, 0.031533244997262955, -0.00224728649482131, -0.006587517447769642, 0.013710992410779, 0.02461330033838749, -0.03896879777312279, 0.0069877891801297665, 0.01000678539276123, 0.004830393940210342, -0.018588876351714134, -0.007347355131059885, -0.0043453192338347435, 0.0017003054963424802, -0.00422659469768405, 0.018534602597355843, 0.012489824555814266, -0.01956580951809883, -0.04233378916978836, -0.09009499102830887, 0.017896881327033043, -0.00594301288947463, -0.009090909734368324, 0.014450476504862309, 0.00787652749568224, 0.015373135916888714, -0.003904342418536544, -0.008202171884477139, -0.006872456520795822, -0.01552238967269659, 0.02052917517721653, 0.009077341295778751, -0.005176391452550888, -0.013290368020534515, -0.008751696906983852, 0.019280869513750076, 0.009294438175857067, -0.0027713708113878965, 0.012686568312346935, 0.018018998205661774, 0.001245760009624064, 0.01090230792760849, 0.007564451079815626, -0.03302578255534172, 0.011071913875639439, 0.017354140058159828, 0.021696068346500397, -0.004399593453854322, -0.03511533513665199, 0.0005376526969484985, 0.005145862232893705, -0.0036567167844623327, 0.012191317044198513, 0.012483040802180767, 0.006160109303891659, -0.002672998933121562, 0.03373134508728981, 0.007632293738424778, 0.026540029793977737, -0.021465402096509933, -0.023663504049181938, 0.019023068249225616, 0.0043860250152647495, 3.6650912079494447e-05, -0.013541385531425476, -0.01708276942372322, 0.01160108670592308, -0.0031648578587919474, 0.031587518751621246, 0.001574796624481678, 0.007435550447553396, -0.00927408505231142, -0.02232022024691105, 0.002272727433592081, -0.0465400330722332, -0.010719132609665394, 0.009016282856464386, -0.013948441483080387, -0.028656719252467155, 0.046702854335308075, 0.005162823013961315, 0.019457262009382248, -0.004267300479114056, -0.008561737835407257, -0.012808685190975666, -0.020963367074728012, -0.0232700165361166, 0.009382633492350578, -0.03221167251467705, -0.01377204991877079, -0.0009998305467888713, 0.009016282856464386, 0.000517723907250911, -0.0009141791961155832, -0.007388060446828604, -0.020949799567461014, 0.0025237451773136854, -0.024504750967025757, 0.028141114860773087, 0.0009252036106772721, 0.010766622610390186, -0.042116694152355194, -0.009518318809568882, 0.046268660575151443, -0.00018540113524068147, -0.00012487280764617026, 0.01567164435982704, -0.01278833206743002, -0.01396200992166996, -0.014029852114617825, -0.006424695253372192, 0.019742200151085854, 0.018833110108971596, 0.01478968933224678, 0.03240163251757622, -0.0005639417213387787, -0.020624153316020966, 0.02895522676408291, 0.006563772913068533, 0.019877884536981583, -0.0033887384925037622, -0.0184803269803524, -0.03199457749724388, -0.017829038202762604, -0.0028561740182340145, -0.013364994898438454, -0.050149258226156235, -0.0037075986620038748, 0.008276798762381077, -0.020067844539880753, -0.004847354721277952, -0.004952510818839073, 0.012924017384648323, -0.01217774860560894, -0.01013568602502346, -0.012069201096892357, -0.008941655978560448, -0.032293085008859634, -0.009253731928765774, 0.003714383114129305, 0.019687926396727562, 0.029090913012623787, 0.004877883940935135, 0.026743557304143906, 0.0008878901717253029, 0.030122119933366776, -0.027896882966160774, 0.010244234465062618, -0.011933515779674053, -0.014111263677477837, 0.018263231962919235, -0.028656719252467155, -0.022401630878448486, -0.0071981013752520084, -0.006916554179042578, 0.011234737001359463, -0.00031695220968686044, -0.01016960758715868, 0.08195387572050095, 0.025522390380501747, -0.007293080911040306, 0.003175034187734127, 0.003802578430622816, 0.005020353477448225, 0.016662145033478737, 0.01937584951519966, -0.00449457298964262, -0.022238807752728462, 0.028982363641262054, -0.00770013639703393, -0.011519675143063068, -0.021913163363933563, 0.004012890625745058, 0.012347355484962463, -0.017449120059609413, 0.01360922772437334, -0.015359567478299141, 0.00667571322992444, 0.037774767726659775, -0.002761194249615073, -0.004043419845402241, -0.0066723208874464035, -0.02697422355413437, 0.005308684427291155, 0.019226595759391785, -0.0031394169200211763, 0.0009743894916027784, -0.023690640926361084, 0.020040707662701607, -0.010549526661634445, -0.026309365406632423, -0.02748982608318329, -0.005987110547721386, 0.03169606998562813, -0.028548171743750572, 0.015210313722491264, 0.030909094959497452, 0.00841248407959938, -0.003507463028654456, 0.01253053080290556, -0.04672999307513237, -0.03294437378644943, -0.0035312080290168524, -0.004107870161533356, 0.012835822068154812, -0.022673001512885094, 0.012103121727705002], "62b01dae-a988-438c-8405-cc7b9e34f01c": [-0.005854015238583088, -0.019511044025421143, -0.021477598696947098, -0.016322413459420204, -0.007493982557207346, 0.011349836364388466, -0.023809371516108513, -0.02587425522506237, 0.017544487491250038, -0.01456656027585268, 0.01276856567710638, 0.0034520078916102648, 0.019974587485194206, 0.0022176429629325867, -0.007241139654070139, -0.0022913888096809387, 0.0017181026050820947, -0.0016759621212258935, 0.009966223500669003, -0.024905024096369743, 0.001352885039523244, -0.002705770079046488, 0.023402014747262, -0.007114718202501535, -0.029217401519417763, -0.002853261772543192, 0.01095652487128973, -0.022840140387415886, 0.01130067277699709, -0.011686960235238075, 0.01720736362040043, -0.01618194580078125, -0.011033782735466957, -0.03548228740692139, 0.011307695880532265, -0.0035415564198046923, 0.006858363281935453, 0.010457863099873066, 0.007613380439579487, 0.02947024442255497, 0.03194248676300049, 0.002860285108909011, 0.013456860557198524, 0.023809371516108513, -0.014833449386060238, 0.012585957534611225, -0.0233036857098341, 0.014594653621315956, 0.0018155524739995599, -0.0004828597011510283, -0.009298999793827534, -0.006661708001047373, -0.047927774488925934, -0.005411540158092976, -0.009341140277683735, -0.0031271749176084995, -0.007142811547964811, 0.005752175580710173, 0.007732778321951628, -0.025410709902644157, 0.012115388177335262, -0.0001488085836172104, -0.03306623175740242, 0.004301840905100107, -0.01062642503529787, 0.0027742483653128147, -0.00547123933210969, 0.011441140435636044, -0.014524419791996479, 0.011511375196278095, 0.03764549642801285, 0.030088303610682487, 0.003978763706982136, -0.022067565470933914, 0.038572587072849274, 0.0009586959495209157, -0.00991003680974245, 0.009053179994225502, 0.02760201506316662, 0.012817730195820332, 0.01724950410425663, -0.002233445644378662, -0.006380771286785603, -0.021983284503221512, 0.01724950410425663, 0.0028181446250528097, -0.0396401472389698, 0.030762551352381706, 0.02116856910288334, 0.00745886517688632, 0.02115452103316784, 0.01308461930602789, 0.00027698586927726865, 0.014046827331185341, 0.0073675611056387424, 0.0044914730824530125, -0.008105019107460976, 0.014110038056969643, -0.0012501676101237535, -0.034695662558078766, -0.003069231752306223, 0.019244153052568436, -0.025635460391640663, 0.0006422033766284585, -0.0539117231965065, -0.02012910321354866, 0.02907693199813366, 0.0021632113493978977, 0.028472919017076492, -0.020213384181261063, -0.03334716707468033, 0.02260134555399418, 0.0065739150159060955, -0.013878265395760536, -0.012712378986179829, -0.0010824836790561676, 0.01800803281366825, -0.015732446685433388, -0.01972174644470215, -0.01438395120203495, 0.01585886813700199, -0.004442309029400349, 0.02402007393538952, -0.004919901490211487, 0.02449766732752323, 0.010001340880990028, 0.01277558971196413, -0.0179939866065979, -0.0043264226987957954, -0.01899131014943123, 0.038263559341430664, -0.007332443725317717, 0.01904749870300293, -0.002402007579803467, -0.02125285007059574, -0.0027250845450907946, -0.02588830329477787, -0.004593312740325928, -0.022390643134713173, -0.005717058666050434, 0.014510372653603554, 0.007859200239181519, 0.0031570245046168566, -0.019904354587197304, 0.011420070193707943, 0.021407363936305046, -0.0025898837484419346, 0.012852846644818783, 0.000805497751571238, -0.0014152178773656487, 0.006240303162485361, -0.00029564183205366135, 0.0233177337795496, -0.0070971595123410225, -0.017474252730607986, 0.008336791768670082, 0.011356859467923641, 0.02083144523203373, -0.011883615516126156, -0.02949833683669567, -0.0053518409840762615, 0.015563884750008583, 0.025691647082567215, -0.028121748939156532, 0.01723545789718628, 0.028964558616280556, 0.004709199070930481, 0.011441140435636044, -0.014257529750466347, -0.0010552678722888231, -0.0015021326253190637, -0.007824082858860493, 0.0017672664253041148, 0.01060535479336977, -0.007248162757605314, 0.023837465792894363, -0.02226422168314457, 0.02045218087732792, -0.0035099510569125414, -0.020255524665117264, -0.00883545447140932, -0.0005061247502453625, -0.0009586959495209157, 0.03511706739664078, -0.018218735232949257, -0.042618073523044586, -0.01313378382474184, 2.7352903998689726e-05, 0.012761542573571205, -0.007634450681507587, 0.0001980822125915438, 0.03281338885426521, 0.0007993522449396551, -0.005232443101704121, -0.5834490060806274, -0.02262943796813488, -0.00396120548248291, -0.014468232169747353, 0.0009560621692799032, 0.003006021026521921, 0.001265092403627932, 0.023121077567338943, -0.044668909162282944, 0.015732446685433388, -0.006047158967703581, 0.0033396331127732992, -0.014257529750466347, 0.0008520278497599065, -0.0006290344754233956, -0.022840140387415886, -0.02552308514714241, -0.02045218087732792, 0.012817730195820332, 0.009980270639061928, -0.003209700109437108, 0.015086292289197445, -0.028543153777718544, -0.020185289904475212, 0.01976388692855835, -0.009102344512939453, 0.009432444348931313, 0.0003764110733754933, -0.0022193987388163805, 0.031464893370866776, -0.020985959097743034, 0.010380605235695839, -0.01691238023340702, -0.020564554259181023, 0.06169366464018822, -0.003915552981197834, -0.029217401519417763, 0.019974587485194206, 0.0017382948426529765, 0.04823680594563484, -0.016785958781838417, -0.006953179370611906, 0.013681610114872456, 0.011033782735466957, 0.016729772090911865, 0.01187659241259098, 0.022938469424843788, -0.045427437871694565, 0.007746825460344553, 0.02986355498433113, 0.012466559186577797, -0.027419406920671463, 0.02695586159825325, -0.0006040135631337762, 0.03402141481637955, 8.038516170927323e-06, 0.019553184509277344, -0.03919064998626709, 0.029919741675257683, -0.026309708133339882, -0.010457863099873066, 0.011806358583271503, 0.014594653621315956, 0.0006852218066342175, -0.023205358535051346, 0.012101341970264912, -0.01097759511321783, -0.010773916728794575, -0.020255524665117264, -0.0324200764298439, 0.00972742773592472, -0.013379602693021297, 0.003883947851136327, 0.010120739229023457, 0.017446160316467285, 0.044022757560014725, 0.015339135192334652, -0.04267426207661629, -0.004881272558122873, 0.019216060638427734, 0.0035942320246249437, -0.023275593295693398, -0.024371245875954628, -0.008175253868103027, 0.022826094180345535, -0.029975930228829384, -0.044781286269426346, -0.009846826083958149, 0.008069902658462524, 0.03197057917714119, 0.020901678130030632, -0.001963044051080942, 0.01453846599906683, -0.0233177337795496, -0.0015074001858010888, 0.03191439062356949, 0.012003013864159584, -0.015016058459877968, -0.0032395494636148214, -0.0023317732848227024, -0.0269839558750391, -0.0004189905303064734, 0.0031394658144563437, -0.010176925919950008, 0.02223612740635872, -0.016336459666490555, -0.03983680158853531, -0.002475753426551819, 0.03764549642801285, -0.0013168900040909648, 0.014819403178989887, -0.003192141419276595, -0.009144484996795654, -0.013815054669976234, -0.007501005660742521, -0.039387304335832596, 0.005042810924351215, 0.010345487855374813, -0.009165555238723755, -0.009818732738494873, 0.019679605960845947, 0.024680275470018387, 0.01494582463055849, -0.006113881710916758, 0.011686960235238075, 0.03418997675180435, 0.028332451358437538, -0.00919364858418703, 0.002858529333025217, -0.010752846486866474, -0.030622083693742752, 0.0076906378380954266, 0.013590305112302303, -0.017516393214464188, 0.01720736362040043, 0.014707027934491634, 0.006942644249647856, -0.010078598745167255, 0.008933782577514648, -0.006482610944658518, -0.016996661201119423, -0.016280272975564003, -0.007746825460344553, -0.013786961324512959, -0.003081522649154067, -0.038572587072849274, -0.02484883740544319, -0.002233445644378662, -0.023977933451533318, -0.000352048606146127, 0.01837325096130371, -0.00047188560711219907, -0.00883545447140932, 0.024216730147600174, -0.005692476872354746, -0.003761037951335311, -0.02088763192296028, -0.014222412370145321, 0.006580938585102558, -0.0006584450020454824, -0.011988966725766659, -0.008800337091088295, -0.012712378986179829, -0.009586960077285767, -0.01309164334088564, -0.017333785071969032, -0.008821407333016396, -0.020213384181261063, 0.002951589645817876, -0.03292576223611832, 0.005067392718046904, -0.0028497499879449606, 0.0026197333354502916, -0.013962546363472939, -0.003462543012574315, 0.018780607730150223, -0.020550508052110672, -0.005671406630426645, -0.014594653621315956, -0.008540471084415913, -0.007325420621782541, 0.01684214547276497, 0.005186791066080332, -0.005576590541750193, 0.00863177515566349, 0.0026408035773783922, 0.02409030869603157, 0.010387628339231014, -0.023261545225977898, 0.010008363984525204, -0.00032417444163002074, 0.021028099581599236, 0.011988966725766659, 0.016687631607055664, 0.038263559341430664, -0.008013715036213398, 0.013555188663303852, 0.013035455718636513, -0.0032009207643568516, 0.03452710062265396, 0.020410040393471718, -0.0011132110375910997, 0.02187090925872326, -0.04570837691426277, 0.031043488532304764, -0.02011505700647831, -0.007732778321951628, -0.0014117060927674174, 0.014833449386060238, 0.014341810718178749, -0.022095659747719765, -0.04820870980620384, -0.024216730147600174, 0.011237462051212788, 0.01724950410425663, 0.022404689341783524, -0.023963887244462967, 0.025804022327065468, -0.01529699470847845, 0.008568564429879189, 0.01621003821492195, -0.00637374771758914, 0.017741143703460693, -0.018050173297524452, 0.0023598670959472656, 0.003539800411090255, 0.0050989980809390545, -0.005983948241919279, 0.015156527049839497, -0.009263882413506508, -0.008961875922977924, -0.03093111328780651, -0.0007304350147023797, 0.0028321915306150913, 0.02590234950184822, -0.03666222095489502, 0.004621406085789204, -0.0017444404074922204, 0.010654518380761147, 0.004140302538871765, 0.0305658970028162, -0.01761472225189209, 0.000617182464338839, 0.0006255227490328252, 0.006468563806265593, 0.005864550359547138, 0.04635452851653099, 0.020381946116685867, -0.03621271997690201, -0.007093647960573435, -0.02157592587172985, -0.004382610321044922, -0.024160543456673622, 0.014678934589028358, -0.011953850276768208, -0.0233177337795496, 0.002094733063131571, 0.010654518380761147, 0.025635460391640663, 0.026309708133339882, 0.02196923829615116, 0.02080335095524788, -0.0021930609364062548, 0.02341606095433235, 0.003316807094961405, -0.023809371516108513, -0.014749168418347836, -0.012515722773969173, -0.014608700759708881, -0.034302353858947754, 0.015465556643903255, 0.010169902816414833, 0.028149841353297234, -0.024595994502305984, -0.015170573256909847, -0.023921746760606766, -0.010675588622689247, 0.01660335063934326, 0.03132442384958267, -0.009762545116245747, 0.005541473161429167, -0.006205185782164335, 0.01907559111714363, 0.003056940855458379, 0.00468812882900238, -0.001172032207250595, -0.010717729106545448, -0.010464886203408241, 0.004347492940723896, 0.012087294831871986, 0.02306489087641239, 0.014594653621315956, 0.012312044389545918, 0.005731105338782072, -0.009481608867645264, -0.013154854066669941, 0.02411840297281742, -0.013723750598728657, -0.045399345457553864, -0.014847496524453163, 0.01201003696769476, -0.011665889993309975, -0.013154854066669941, -0.0022457365412265062, 0.014889637008309364, -0.004073579795658588, -0.022067565470933914, -0.01326722837984562, -0.002057860139757395, -0.01974983885884285, -0.027377266436815262, 0.004305352456867695, -0.011132110841572285, -0.011504351161420345, -0.034695662558078766, -0.01543746329843998, 0.008069902658462524, -0.013365556485950947, 0.013035455718636513, 0.01458060648292303, -0.018555859103798866, -0.025396663695573807, -0.028234122321009636, 0.021772582083940506, -0.026787299662828445, 0.0269699078053236, 0.0066652195528149605, 0.018513718619942665, -0.021351177245378494, -0.004660035017877817, -0.03124014474451542, -0.022390643134713173, 0.006672243122011423, -0.02119666151702404, 0.013337462209165096, -0.00022496872406918555, 0.004779432900249958, -0.005618731025606394, 0.0023300175089389086, -0.00084017583867535, -0.015142479911446571, -0.029385963454842567, -0.003862877609208226, -0.02258729748427868, 0.006468563806265593, -0.023949841037392616, 0.018766561523079872, -0.00970635749399662, 0.003408111399039626, 0.00792241096496582, 0.004389633424580097, 0.0324200764298439, 0.009846826083958149, -0.030004022642970085, -0.0066511728800833225, 0.0035152186173945665, -0.00971338152885437, 0.02296656183898449, -0.0017145908204838634, 0.006703848484903574, 0.004242141731083393, 0.06012042239308357, -0.0019718233961611986, 0.004867225885391235, -0.005903179291635752, 0.03315051272511482, 0.0233598742634058, -0.022896328940987587, 0.01653311587870121, -0.0036205698270350695, 0.012705354951322079, 0.0033308540005236864, 0.00026688972138799727, -0.02593044377863407, 0.02261539176106453, -0.009235789068043232, -0.028107700869441032, 0.00475485110655427, -0.029301682487130165, 0.02556522563099861, -0.03489232063293457, -0.017375925555825233, -0.010514049790799618, -0.0022580274380743504, -0.005014717113226652, -0.01309164334088564, 0.007999667897820473, -0.010528096929192543, -0.00728328013792634, -0.01422943640500307, -0.006949667818844318, -0.02149164490401745, -0.022488970309495926, -0.017769236117601395, 0.0019419739255681634, -0.07012176513671875, -0.032560545951128006, 0.027447501197457314, 0.02119666151702404, 0.017347831279039383, 0.02656255103647709, -0.01185552217066288, -0.013358532451093197, 0.003358947578817606, -0.01691238023340702, -0.008119066245853901, -0.0027145494241267443, -0.005597660783678293, 0.0011764217633754015, 0.00628595519810915, 0.012993315234780312, 0.000994690926745534, 0.00264431512914598, 0.023893652483820915, 0.010022411122918129, -0.0003202237712685019, 0.02520000748336315, 0.0029533454217016697, -0.00897592306137085, 0.0038488307036459446, -0.006507192738354206, 0.023598669096827507, -0.009783615358173847, -0.012916057370603085, 0.007817059755325317, -0.043348509818315506, 0.005527426488697529, 0.0014907194999977946, -0.005934784654527903, -0.022151846438646317, 0.0003876046393997967, 0.006798664573580027, -0.022095659747719765, -0.007332443725317717, 0.021070240065455437, 0.006310536991804838, -0.005137627013027668, -0.008575588464736938, 0.007033948786556721, -0.008210370317101479, -0.019159872084856033, -0.00566789461299777, -0.013407696969807148, -0.01869632676243782, 0.006868898402899504, -0.02628161385655403, 0.01584482192993164, 0.013281275518238544, 0.009523749351501465, -0.004603847861289978, 0.0010833615669980645, -0.0322515144944191, -0.016617396846413612, 0.01689833402633667, -0.01221371628344059, 0.016013383865356445, -0.000920067192055285, -0.04239332303404808, -0.027896998450160027, -0.01004348136484623, 0.0014354101149365306, 0.013098666444420815, -0.01313378382474184, -0.03744884207844734, -0.015395322814583778, -0.004361540079116821, -0.01578863337635994, -0.015732446685433388, 0.006833781488239765, -0.027110377326607704, 0.0009762545232661068, 0.004256188869476318, 0.01026120688766241, 0.0019349504727870226, 0.010787962935864925, -0.008694985881447792, -0.04419131949543953, 0.010949501767754555, -0.00021223878138698637, -0.048742491751909256, 0.008933782577514648, -0.017516393214464188, 0.01980602741241455, 0.016659537330269814, 0.025340477004647255, 0.029301682487130165, 0.00439665699377656, 0.000543436617590487, 0.01290903426706791, 0.004435285925865173, -0.022081611678004265, 0.009123414754867554, -0.01008562184870243, 0.009622076526284218, -0.010703681968152523, -0.0039050180930644274, -0.0017233701655641198, -0.03382476046681404, 5.876621798961423e-05, 0.03553847223520279, -0.013344486244022846, -0.013499001041054726, 0.006064717657864094, -0.03708362579345703, -0.01116020418703556, -0.0010298080742359161, 0.0006496657733805478, -0.006148998625576496, -0.007725755218416452, -0.026141146197915077, 0.002691723173484206, 0.03017258457839489, 0.03657793998718262, 0.028486965224146843, 0.01755853369832039, -0.013660539872944355, -0.004617894534021616, -0.01720736362040043, 0.02800937369465828, -0.012459536083042622, 0.0038418073672801256, -0.01510033942759037, 0.0009929351508617401, 0.019848167896270752, 0.019342482089996338, 0.008407026529312134, 0.009572912938892841, 0.013765891082584858, 0.02119666151702404, 0.03017258457839489, 0.0038558540400117636, -0.018443483859300613, -0.01347090769559145, 0.0018717397470027208, -0.030622083693742752, -0.01380100753158331, 0.008034785278141499, 0.009207695722579956, -0.004249165300279856, -0.009615053422749043, -0.0031903856433928013, 0.008800337091088295, 0.00618762755766511, -0.0034976599272340536, 0.015395322814583778, -0.029751179739832878, 0.04267426207661629, -0.0008546616300009191, -0.014426091685891151, 0.019300341606140137, -0.0012211960274726152, 0.00558010209351778, -0.053012724965810776, -0.024905024096369743, -0.02366890385746956, 0.0394153967499733, 0.042899008840322495, 0.009811708703637123, -0.021084288135170937, -0.008006691932678223, 0.010429768823087215, -0.007971574552357197, -0.026660878211259842, 0.008126089349389076, -0.00789431668817997, -0.007866223342716694, -0.03640937805175781, 0.006858363281935453, -0.04211238771677017, 0.019216060638427734, -0.0058294334448874, -0.013161877170205116, -0.016406694427132607, -0.0070058549754321575, -0.015058198943734169, 0.01151839829981327, -0.03444281965494156, 0.022095659747719765, -0.01080201007425785, -0.006626590620726347, 0.010127762332558632, -0.015901008620858192, -0.030088303610682487, -0.011778264306485653, 0.002672408940270543, 0.03166154772043228, 0.019216060638427734, 0.0029498336371034384, 0.013379602693021297, 0.004336957819759846, -0.0036346164997667074, -0.014552513137459755, -0.004006857518106699, 0.05568162351846695, -0.004544148687273264, 0.02227826789021492, -0.0008704643114469945, 0.02771439030766487, 0.024146495386958122, -0.010127762332558632, 0.006693313363939524, 0.013702680356800556, -0.008947828784584999, 0.004786456469446421, 0.01576054096221924, -0.030622083693742752, 0.015872914344072342, -0.011223414912819862, -0.017038801684975624, 0.00789431668817997, -0.026478270068764687, 0.01837325096130371, 0.013056525960564613, -0.03315051272511482, -0.0089688990265131, -0.0080558555200696, -0.010809033177793026, 0.00883545447140932, -0.0021895491518080235, -0.005334282759577036, 0.011841475032269955, 0.06596390157938004, -0.034723758697509766, 0.011237462051212788, 0.014067897573113441, 0.001926171244122088, -0.005513379815965891, -0.007613380439579487, 0.00530970050022006, 0.0022176429629325867, 0.02581806853413582, -0.017727095633745193, -0.009762545116245747, -0.03093111328780651, 0.013014385476708412, 0.024666229262948036, 0.0056046838872134686, 0.012087294831871986, 0.01660335063934326, 0.009776592254638672, 0.020297665148973465, -0.003754014614969492, -0.025747833773493767, -0.010724752210080624, 0.004242141731083393, 0.011771241202950478, 0.013702680356800556, -0.012101341970264912, -0.003915552981197834, -0.005703011993318796, -0.01490368414670229, 0.010991642251610756, 0.008048832416534424, -0.030453521758317947, 0.003803178435191512, 0.0020350341219455004, -0.02736322022974491, -0.026506362482905388, -0.027124423533678055, 0.0028479942120611668, -0.017881611362099648, -0.014973917976021767, 0.03301004320383072, -0.0048321085050702095, 0.002598663093522191, 0.03688696771860123, -0.002637291792780161, 0.014664887450635433, -0.02119666151702404, -0.02521405555307865, -0.01415920164436102, -0.016800004988908768, -0.011736123822629452, -0.017404019832611084, -0.011644819751381874, 0.023907700553536415, 0.010436792857944965, -0.028655527159571648, -0.008891642093658447, -0.016238132491707802, -0.041185297071933746, -0.023458201438188553, -0.004291305784136057, 0.010324417613446712, 0.04747827723622322, -0.004681105259805918, 0.022025424987077713, -0.0017778015462681651, -0.0068267579190433025, -0.0015723666874691844, -0.014039804227650166, -0.00845619011670351, -0.0049058543518185616, -0.026436129584908485, -0.002956857206299901, -0.0075290994718670845, -0.025944489985704422, 0.003315051319077611, 0.025031445547938347, -0.0029059373773634434, 0.010099668987095356, 0.014875589869916439, 0.018106359988451004, -0.011588632129132748, -0.007627427112311125, -0.030284959822893143, -0.008477260358631611, -0.006479098927229643, 0.026829440146684647, -0.01760067418217659, 0.020199337974190712, 0.01910368539392948, 0.02337392047047615, -0.0030148003716021776, 0.013035455718636513, 0.02515786699950695, -0.0004955896292813122, 0.002061371924355626, -0.016757864505052567, -0.0058610388077795506, 0.010212043300271034, -0.004287794232368469, 0.027110377326607704, -0.021702347323298454, -0.002345820190384984, 0.027124423533678055, 0.013878265395760536, -0.014152178540825844, -0.011195321567356586, 0.017881611362099648, -0.023205358535051346, 0.0003904578916262835, 0.006637125741690397, -0.01580268144607544, 0.0036662218626588583, 0.016743818297982216, 0.017502347007393837, -0.0019489972619339824, -0.007181440480053425, -0.00015605146472807974, 0.011630772612988949, -0.0504000149667263, 0.01942676305770874, 0.03126823902130127, -0.022699672728776932, -0.023879606276750565, -0.007198999170213938, -0.0014020489761605859, 0.004466891288757324, -0.049079615622758865, 0.005945319775491953, -0.04284282401204109, -0.003316807094961405, 0.012024084106087685, -0.008013715036213398, -0.012403348460793495, 0.03152108192443848, 0.025382617488503456, -0.011546491645276546, -0.0022176429629325867, 0.26115861535072327, -0.02952643111348152, 0.008343815803527832, 0.029582617804408073, -0.0003696071507874876, 0.017389971762895584, 0.02448361925780773, 0.0067424769513309, 0.011588632129132748, 0.025663552805781364, -0.009776592254638672, -0.027939138934016228, 0.02267157845199108, 0.001469649258069694, 0.0051762559451162815, -0.019974587485194206, -0.012824753299355507, 0.014011709950864315, -0.03907827287912369, -0.016378600150346756, 0.04767493158578873, -0.012066224589943886, 0.011532445438206196, -0.014650841243565083, 0.013779937289655209, 0.01167291309684515, -0.018766561523079872, -0.002821656409651041, 0.03986489400267601, -0.004277259111404419, -0.020353851839900017, 0.036100346595048904, 0.02049432136118412, 0.003852342488244176, 0.017474252730607986, -0.02261539176106453, 0.04247760400176048, -0.0015407613245770335, 0.03188629820942879, -0.0032395494636148214, -3.61801824055874e-07, -0.0008006691350601614, -0.00395067036151886, -0.008126089349389076, -0.02378127910196781, 0.004498496651649475, 0.0011307696113362908, -0.012944151647388935, 0.022474924102425575, 0.01453846599906683, -0.0008651967509649694, -0.005120068322867155, 0.055147845298051834, 0.01543746329843998, -0.00791538693010807, -0.0025056027807295322, 0.02910502627491951, 0.0023598670959472656, 0.0057872929610311985, 0.0179518461227417, 0.002533696359023452, 0.04823680594563484, -0.021786628291010857, 0.005506356246769428, -0.013934453018009663, 0.001982358517125249, -0.012831776402890682, 0.008919735439121723, -0.012564887292683125, -0.013618399389088154, -0.006967226509004831, 0.004698663949966431, -0.0008041808614507318, 0.0065774270333349705, -0.03663412481546402, -0.03545419126749039, 0.03334716707468033, 0.019173920154571533, 0.027854857966303825, 0.056271590292453766, 0.005615219008177519, 0.015058198943734169, 0.014552513137459755, 0.013358532451093197, -0.0042386301793158054, -0.02012910321354866, 0.0009990805992856622, -0.014215389266610146, -0.022755859419703484, 0.005000670440495014, 0.009811708703637123, -0.002057860139757395, -0.0010895070154219866, 0.001648746314458549, -0.002686455613002181, 0.008519400842487812, -0.006609032396227121, -0.004631941206753254, -0.023949841037392616, 0.0023598670959472656, -0.03980870917439461, 0.032139141112565994, 0.03163345530629158, 0.02442743256688118, -0.009657193906605244, 2.799763205985073e-05, -0.0013177680084481835, -0.013274251483380795, 0.024258870631456375, -0.024961212649941444, -0.0029902183450758457, -0.028908370062708855, 0.009109367616474628, 0.014320740476250648, -0.012241809628903866, 0.02445552684366703, -0.02149164490401745, -0.004779432900249958, -0.005896155722439289, 0.01684214547276497, 0.038291651755571365, -0.03674650192260742, -0.00969231128692627, -0.008041808381676674, -0.0010043481597676873, 0.01726355031132698, -0.04747827723622322, -0.01622408628463745, 0.0016838634619489312, -0.04773112013936043, 0.021351177245378494, -0.0019051010021939874, 0.026365894824266434, -0.00511304521933198, 0.00036016941885463893, 0.015662211924791336, -0.0013511291472241282, -0.00788027048110962, -0.01344983745366335, 0.02115452103316784, 0.00620869779959321, 0.0002960807760246098, -0.016280272975564003, -0.002524917246773839, -0.011363883502781391, -0.044668909162282944, 0.0025284287985414267, 0.005488797556608915, 0.02517191506922245, -0.034723758697509766, -0.06360403448343277, -0.00825953483581543, 0.011054852977395058, 0.0026513386983424425, 0.0034783456940203905, -0.022573251277208328, -0.02084549143910408, -0.056580621749162674, 0.004336957819759846, 0.021744487807154655, -0.04573646932840347, -0.010809033177793026, 0.02123880200088024, -0.030790645629167557, -0.007156858686357737, -0.020339805632829666, -0.1799117624759674, -0.016659537330269814, 0.028206029906868935, -0.03736456111073494, 0.040707703679800034, 0.003989298827946186, -0.004898831248283386, -0.0032746666111052036, -0.018977263942360878, -0.01022609043866396, 0.01760067418217659, 0.00012894548126496375, -0.04525887593626976, 0.015353182330727577, -0.012438465841114521, 0.007044483907520771, -0.012607027776539326, 0.01275451947003603, 0.040089644491672516, 0.012705354951322079, 0.04270235449075699, -0.022334454581141472, -0.010900338180363178, 0.018612045794725418, 0.019145825877785683, 0.002191305160522461, 0.0003963838971685618, -0.01472107507288456, 0.013702680356800556, -0.00883545447140932, 4.5268094254424796e-05, 0.0034133789595216513, 0.031155863776803017, 0.018597999587655067, -0.0026091982144862413, -0.015676259994506836, 0.006454517133533955, -0.008210370317101479, -0.005509867798537016, 0.014018733985722065, 0.0010649251053109765, 0.013077596202492714, 0.03258863836526871, -0.008182276971638203, 0.009516725316643715, 0.01723545789718628, 0.002598663093522191, -0.007522075902670622, 0.006503681186586618, 0.01584482192993164, 0.014552513137459755, -0.029357869178056717, -0.03171773627400398, -0.012150505557656288, 0.014243482612073421, 0.009776592254638672, 0.011637796647846699, 0.028627434745430946, -0.021000007167458534, 0.007395654451102018, -0.00897592306137085, -0.028992651030421257, 0.01656121015548706, 0.011019735597074032, -0.008772243745625019, -0.006612543947994709, -0.007501005660742521, 0.003346656681969762, 0.004526589997112751, 0.010675588622689247, 0.016996661201119423, -0.01828896999359131, 0.0019244153518229723, -0.027573922649025917, 0.03638128191232681, -0.013590305112302303, -0.006163045298308134, 0.02473646216094494, 0.03694315627217293, 0.007465888746082783, -0.014594653621315956, 0.04700068384408951, -0.0008234952692873776, -0.013878265395760536, 0.008961875922977924, 0.01494582463055849, 0.004410703666508198, -0.008884618058800697, -0.03632509708404541, 0.00593829620629549, 0.018822748214006424, -0.03545419126749039, -0.014847496524453163, -0.009593983180820942, 0.01132174301892519, 0.005158697254955769, 0.002797074383124709, 0.01187659241259098, -0.015872914344072342, -0.0009306023130193353, -0.009004016406834126, -0.0066792662255465984, -0.018106359988451004, 0.04177526384592056, 0.02402007393538952, 0.022165892645716667, -0.010647495277225971, 0.0269418153911829, 0.02545285038650036, -0.0037259210366755724, -0.012894987128674984, 0.010127762332558632, 0.02078930474817753, 0.016308367252349854, 0.025017399340867996, 0.018569905310869217, -4.8258534661727026e-05, 0.01724950410425663, -0.01384314801543951, 0.010394652374088764, -0.017881611362099648, 0.0180361270904541, -0.017066895961761475, 0.01901940442621708, 0.004175419453531504, -0.014805356040596962, -0.058715738356113434, -0.022559205070137978, -0.0012132946867495775, 0.017516393214464188, -0.009116390720009804, 0.03163345530629158, 0.0008752929279580712, 0.01276856567710638, -0.02077525667846203, 0.010317394509911537, 0.004077091813087463, -0.018527764827013016, 0.0025775928515940905, -0.012677261605858803, -0.008926758542656898, 0.004624918103218079, 0.00917257834225893, -0.013611375354230404, 0.0031271749176084995, 0.024722415953874588, 0.0019367063650861382, -0.009762545116245747, -0.001049122423864901, -0.006668731104582548, 0.0028058537282049656, 0.005204349290579557, -0.020353851839900017, 0.014166225679218769, 0.013871242292225361, 0.01044381596148014, 0.02048027329146862, 0.005418563727289438, -0.011960873380303383, -0.004624918103218079, -0.008786290884017944, 0.002709281863644719, -0.02764415554702282, -0.020662883296608925, 0.010127762332558632, -0.016673583537340164, -0.008744150400161743, -0.003474833909422159, 0.00843511987477541, 0.018766561523079872, 0.0003671928425319493, -0.031155863776803017, -0.023261545225977898, 0.013435790315270424, -0.00014255335554480553, -0.007198999170213938, -0.03831974416971207, -0.013948499225080013, -0.004228095058351755, -0.005773245822638273, 0.018218735232949257, 0.025663552805781364, 0.010113715194165707, 0.02084549143910408, -0.02296656183898449, 0.019974587485194206, 0.02158997394144535, 0.018977263942360878, -0.00441772723570466, 0.05166422948241234, 0.02831840328872204, 0.02122475579380989, -0.022896328940987587, -0.01622408628463745, -0.0011808114359155297, 0.0028058537282049656, -0.003761037951335311, 0.01149732805788517, -0.018822748214006424, 0.028964558616280556, -0.01835920289158821, -0.019876260310411453, -0.017783284187316895, -0.0359317846596241, 0.028234122321009636, -0.0038172253407537937, -0.019904354587197304, -0.013070573098957539, 0.013548164628446102, 0.003204432548955083, 0.01757258176803589, 0.011012712493538857, -0.007957527413964272, 0.0008647578069940209, -0.002043813467025757, -0.021730441600084305, -0.006349165923893452, -0.005302677396684885, 0.0065001691691577435, -0.004410703666508198, 0.00354506797157228, -0.017516393214464188, 0.00792241096496582, -0.008526423946022987, 0.0031605360563844442, 0.047618743032217026, -0.011202344670891762, -0.02121070958673954, -0.08956257253885269, 0.017684955149888992, 0.012480606324970722, -0.0044001685455441475, 0.019342482089996338, -0.003265887266024947, 0.02515786699950695, -0.015226760879158974, 0.004983111750334501, -0.0046565234661102295, -0.044331785291433334, 0.017389971762895584, 0.003883947851136327, -0.024876931682229042, -0.02158997394144535, -0.0269699078053236, 0.02014314942061901, 0.012585957534611225, 0.00934816338121891, 0.018134454265236855, 0.00654582167044282, -0.007992644794285297, -0.004937459714710712, 0.019904354587197304, -0.021688301116228104, 0.01326722837984562, 0.00015056443226058036, 0.020339805632829666, -0.00439665699377656, -0.018485624343156815, -0.017488300800323486, -0.018780607730150223, -0.014173248782753944, 0.01938462257385254, -0.011483280919492245, 0.011525421403348446, 0.004649499896913767, -0.01272642519325018, 0.019862214103341103, 0.051917072385549545, -0.01691238023340702, -0.022474924102425575, 0.007093647960573435, -0.004702175501734018, -0.004621406085789204, -0.002907693153247237, 0.001080727786757052, 0.019328434020280838, 0.0028760877903550863, 0.021112380549311638, 0.012810706160962582, 0.017347831279039383, 0.008512377738952637, -0.002124582650139928, 0.017488300800323486, -0.023261545225977898, -0.0008195445989258587, 0.005776757840067148, 0.013175924308598042, -0.017361879348754883, -0.00184013438411057, 0.021351177245378494, 0.007139299996197224, -0.0008186666527763009, -0.0041192322969436646, -0.003992810845375061, -0.009544819593429565, -0.044331785291433334, 0.0324200764298439, -0.021309036761522293, -0.01724950410425663, 0.0034660545643419027, 0.0075150527991354465, 0.030004022642970085, 0.009818732738494873, -0.0023545995354652405, -0.011974920518696308, 0.01276856567710638, -0.013576258905231953, 0.027096329256892204, -0.013358532451093197, -0.0015574420103803277, -0.04809633642435074, 0.002530184807255864, 0.025691647082567215, -0.030818739905953407, 7.391045801341534e-05, -0.012972244992852211, 0.001222951919771731, 0.009790638461709023, 0.0003720214299391955, -0.0075290994718670845, 0.016308367252349854, -0.0014248749939724803, 0.009249836206436157, 0.022222081199288368, 0.006809199694544077, -0.00513411546126008, 0.034358538687229156, 0.004702175501734018, 0.028852183371782303, -0.00827358104288578, -0.0041332789696753025, -0.010886291041970253, 0.0024476596154272556, 0.013414720073342323, 0.009615053422749043, -0.036521751433610916, -0.009622076526284218, 0.006205185782164335, -0.01945485547184944, 0.004596824292093515, -0.006180603988468647, 0.026000676676630974, -0.013618399389088154, 0.03688696771860123, -0.007810036186128855, -0.03090302087366581, -0.026829440146684647, 0.0016004603821784258, 0.017432112246751785, 0.019314387813210487, 0.016954520717263222, -0.012108365073800087, 0.018766561523079872, -0.007206022273749113, 0.008491307497024536, -0.03888161852955818, 0.026141146197915077, -0.009404351003468037, -0.008322745561599731, 0.020634789019823074, -0.021126428619027138, -0.03275720030069351, -0.010366558097302914, 0.014552513137459755, -0.022783953696489334, 0.0034607870038598776, -0.020213384181261063, 0.07017794996500015, 0.01656121015548706, -0.011750170961022377, 0.020227430388331413, 0.011413047090172768, 0.009116390720009804, 0.01691238023340702, 0.025270242244005203, -0.02913312055170536, -0.027447501197457314, 0.04950102046132088, -0.01622408628463745, 0.005081439856439829, -0.010394652374088764, -0.023247499018907547, 0.009488631971180439, -0.029751179739832878, 0.037533123046159744, -0.016069570556282997, 0.012080271728336811, 0.04216857627034187, 0.006703848484903574, 0.011469234712421894, -0.008090972900390625, -0.021842816844582558, -0.022334454581141472, 0.028627434745430946, 0.002463462296873331, 0.018499672412872314, -0.006949667818844318, -0.0007769651128910482, -0.007732778321951628, -0.011532445438206196, -0.02798127941787243, 0.005274583585560322, -0.013808031566441059, -0.016617396846413612, 0.029919741675257683, 0.03441472724080086, 0.0018348668236285448, 0.005183279048651457, 0.027756530791521072, -0.019595324993133545, -0.01044381596148014, 0.0007308739586733282, -0.0052780951373279095, 0.001135159283876419, 0.008786290884017944, -0.014292647130787373], "63c48eac-6dd9-46ff-a6f2-e00f5dcb0e7f": [0.003687066026031971, -0.022889304906129837, 0.003991863690316677, -0.01411900483071804, -0.013751937076449394, 0.00439826026558876, -0.003936147782951593, -0.044021930545568466, 0.01849760115146637, -0.023453017696738243, 0.017370177432894707, 0.017842121422290802, -1.1214825462957378e-05, 0.0016616377979516983, -0.02197163552045822, -0.01556105725467205, 0.012447535060346127, -0.019231736660003662, 0.00378538784570992, -0.040901850908994675, -0.006092671770602465, -0.015429961495101452, 0.02745143510401249, -0.016596714034676552, -0.03628728538751602, 0.017527492716908455, 0.006823529954999685, -0.02834288589656353, 0.007151269353926182, -0.012421315535902977, 0.007839521393179893, -0.0078591862693429, -0.007229926995933056, -0.019808556884527206, 0.013987909071147442, 0.0030627227388322353, -0.000762812967877835, -0.004077075514942408, -0.01307679433375597, 0.0042016166262328625, 0.03342939913272858, -0.00018967906362377107, 0.003519919002428651, 0.005915692541748285, -0.02576030045747757, 0.012847376987338066, -0.008298357017338276, 0.0006292592734098434, -0.005443748086690903, 0.023951180279254913, -0.002726790262386203, 0.009864949621260166, -0.03298367187380791, -0.015783919021487236, -0.014931797981262207, -0.012309884652495384, -0.004526078235358, 0.023033510893583298, 0.01869424432516098, -0.005050461273640394, -0.007439679931849241, 0.004909533075988293, -0.028814829885959625, -0.00341831985861063, 0.01014025043696165, 0.007420015521347523, -0.011202125810086727, 0.018615586683154106, -0.03151540085673332, 0.0024072444066405296, 0.0036641242913901806, 0.029260555282235146, 0.0005989433848299086, 0.01178550161421299, 0.030256882309913635, 0.00010661765554687008, -0.01860247738659382, -0.009937052614986897, 0.027425216510891914, 0.005096344742923975, 0.005820648279041052, -0.022745100781321526, 0.012893260456621647, -0.041400015354156494, 0.02465909719467163, -0.0009823982836678624, -0.0168589036911726, 0.029260555282235146, -0.0143418675288558, -0.021853649988770485, 0.004591626115143299, 0.0013928916305303574, 0.0037755556404590607, 0.01233610324561596, -0.0037132850848138332, 0.009491327218711376, 0.00852777436375618, 0.015639714896678925, -0.002646493958309293, -0.035920217633247375, 0.008114822208881378, 0.022731991484761238, -0.023203935474157333, 0.0075380015186965466, -0.03405865654349327, -0.01347663626074791, 0.0077936383895576, -0.012958807870745659, 0.01369949895888567, 0.0022122396621853113, -0.03243307024240494, 0.013181670568883419, 0.012087021954357624, -0.034084875136613846, -0.0053749228827655315, -0.0020418153144419193, 0.009930497966706753, -0.04528044909238815, -0.024003619328141212, -0.0036379052326083183, 0.0050340741872787476, -0.0006227045087143779, 0.025196589529514313, 0.00857365783303976, 0.014866250567138195, 0.01695067062973976, -0.00650234567001462, -0.013220999389886856, 0.0013084987876936793, -0.024829521775245667, 0.046067021787166595, -0.01185760460793972, 0.0021106405183672905, -0.012309884652495384, 0.0016862181946635246, -0.001735379104502499, -0.010907161049544811, -0.0168589036911726, -0.017370177432894707, -0.012932589277625084, 0.03759824112057686, 0.008803075179457664, 0.005414251703768969, -0.018668025732040405, -0.0018910551443696022, 0.03023066371679306, 0.019375940784811974, 0.008357349783182144, 0.009373340755701065, 0.01944148913025856, 0.01178550161421299, 0.0034412615932524204, 0.00432615727186203, -0.009281573817133904, -0.002289258409291506, -0.004447421059012413, 0.03146296367049217, 0.020660679787397385, 0.014092785306274891, -0.023977400735020638, 0.0026792678982019424, 0.01700310967862606, 0.019231736660003662, 0.0070463926531374454, -0.002751370659098029, 0.02049025520682335, 0.00728236511349678, 0.0018910551443696022, -0.012912924401462078, 0.005273323971778154, -0.0168589036911726, -0.006053342949599028, -0.03298367187380791, 0.02212895080447197, -0.01735706813633442, 0.00519466632977128, 0.004198339302092791, 0.0065515064634382725, 0.0066301641054451466, -0.004591626115143299, 0.0022400973830372095, -0.006256541237235069, 0.006187716033309698, 0.02585206739604473, -0.007308584172278643, -0.04016771540045738, 0.012165678665041924, -0.015390632674098015, 0.024174043908715248, -0.020306721329689026, 0.008547438308596611, 0.04630299285054207, 0.007583884987980127, -0.00616805162280798, -0.6011523604393005, -0.021368596702814102, -0.019507037475705147, -0.010277901776134968, 0.025694753974676132, 0.014184552244842052, 0.003546138061210513, 0.02218138985335827, -0.03235441446304321, 0.03576290234923363, -0.008173815906047821, -0.0013592983596026897, -0.007603549398481846, -0.005152060184627771, 0.004444143734872341, -0.016098549589514732, -0.005207776091992855, -0.01999209076166153, 0.003844380844384432, 0.011942816898226738, -0.012355768121778965, 0.02665175125002861, -0.03626106679439545, -0.004113127011805773, 0.007092276122421026, -0.0032823081128299236, 0.0215259101241827, -0.005614172667264938, -0.001510877744294703, 0.04281584918498993, -0.04008905962109566, 0.008121377788484097, 0.011071030050516129, -0.004018082749098539, 0.05209742486476898, 0.0013773239916190505, -0.01969057135283947, 0.029470309615135193, 0.0011823191307485104, 0.028919707983732224, -0.0157183725386858, -0.023151496425271034, -0.00415245583280921, -0.003421597182750702, -0.011418433859944344, -0.007341357879340649, 0.008934170939028263, -0.03442572429776192, 0.009681415744125843, 0.017016218975186348, 0.0202805008739233, -0.012985027395188808, 0.015377523377537727, -0.019874105229973793, 0.009307793341577053, 0.019520146772265434, 0.01621653512120247, -0.045726172626018524, 0.004657173994928598, -0.004647342022508383, 0.008521218784153461, 0.017632368952035904, -0.009176697582006454, -0.016177207231521606, -0.027582531794905663, 0.041295140981674194, -0.007695316337049007, -0.02654687501490116, -0.018366504460573196, -0.007787083275616169, 0.004031192045658827, -0.026717299595475197, 0.013384869322180748, -0.002715319162234664, 0.000495295855216682, 0.011241454631090164, 0.021158842369914055, -0.009976381435990334, -0.013935470953583717, 0.010461435653269291, 0.004657173994928598, -0.0027808670420199633, -0.019454598426818848, -0.02431824803352356, 0.021565239876508713, -0.009910833090543747, -0.0089734997600317, -0.002880827523767948, 0.01054009236395359, 0.0016624571289867163, 0.017527492716908455, 0.0014322203351184726, 0.012814602814614773, -0.045621298253536224, 0.0001350899983663112, 0.009261909872293472, 0.01023857295513153, -0.01411900483071804, -0.010972708463668823, 0.014525401405990124, -0.011418433859944344, 0.004493304528295994, 0.025943834334611893, 0.007315138820558786, 0.018432052806019783, -0.008449116721749306, -0.02341368794441223, -0.0026514101773500443, 0.029365431517362595, -0.024331357330083847, 0.031253211200237274, -0.02670419029891491, -0.001002881908789277, -0.010992372408509254, 0.0007705967873334885, -0.033193428069353104, 0.015534837730228901, 0.0073937964625656605, 0.009189806878566742, -0.01645250804722309, 0.023846304044127464, 0.012486863881349564, -0.005499463994055986, -0.007996836677193642, 0.006354863289743662, 0.00989772379398346, 0.009537210687994957, -0.004077075514942408, -0.0072364816442132, 0.009143923409283161, -0.010526983067393303, -0.014433634467422962, 0.003755891229957342, -0.0006960361497476697, 0.008462226018309593, 0.02246979996562004, 0.00757077569141984, -0.01300469134002924, 0.022705771028995514, -0.012178788892924786, -0.01185760460793972, -0.012657287530601025, 0.002038537757471204, -0.005351981148123741, 0.0002505156444385648, -0.037519585341215134, -0.037965308874845505, -0.0013191503239795566, -0.01814364269375801, -0.0023400578647851944, 0.005876363720744848, -0.011398768983781338, -0.006617054343223572, 0.050943780690431595, -0.03348183631896973, -0.0007554388721473515, -0.04449387267231941, 0.0030184779316186905, 0.013804375194013119, -0.01958569511771202, -0.026192916557192802, 0.006771091837435961, -0.04281584918498993, 0.003945979755371809, 0.0022990903817117214, -0.020411597564816475, -0.002882466185837984, 0.012978472746908665, -0.005633837077766657, -0.030755046755075455, 0.00917014293372631, 0.013515965081751347, 0.004476917441934347, 0.002715319162234664, 0.006036955863237381, 0.01814364269375801, 0.003572357352823019, -0.00972074456512928, -0.006597389932721853, -0.00358546688221395, -0.0037231172900646925, 0.004906255751848221, 0.011851049959659576, -0.011693734675645828, 0.005086512304842472, 0.017960108816623688, 0.020503364503383636, 0.009399560280144215, -0.025235919281840324, -0.015888797119259834, -0.0008132028742693365, 0.013063684105873108, 0.0037624461110681295, 0.006394191645085812, 0.003316720714792609, 0.01414522435516119, -0.004316325299441814, 0.02724168263375759, -0.00761010404676199, 0.01168062537908554, 0.013529074378311634, 0.015390632674098015, -0.006315534468740225, -0.02009696699678898, 0.019625023007392883, -0.025301465764641762, -0.000650152622256428, -0.016321411356329918, 0.03683788701891899, 0.015167769975960255, -0.012414760887622833, -0.04729932174086571, -0.008036165498197079, -0.02123750001192093, 0.01596745476126671, 0.038515910506248474, -0.03185625001788139, 0.00875063706189394, -0.023203935474157333, 0.008999718353152275, 0.023806976154446602, -0.004106572363525629, 0.017789684236049652, -0.02576030045747757, 0.01218534354120493, 0.008894842118024826, 0.014171442948281765, 0.028578858822584152, -0.013633950613439083, -0.010887496173381805, -0.002149969106540084, -0.018969545140862465, -0.0009660113137215376, -0.004873482044786215, 0.022902416065335274, -0.017684808000922203, 0.03044041618704796, -0.018484489992260933, 0.03521230071783066, 0.013883032836019993, 0.0008013223414309323, -0.014053456485271454, 0.005630559287965298, -0.007649432867765427, -0.0024973726831376553, 0.013607732020318508, 0.057000402361154556, 0.008337684907019138, -0.02968006208539009, -0.002571114106103778, -0.02829044871032238, -0.02246979996562004, -0.022312484681606293, 0.02198474481701851, 0.0027366222348064184, -0.011123468168079853, 0.005932079628109932, 0.014525401405990124, 0.017815902829170227, 0.03256416693329811, -0.002911962801590562, 0.008776855655014515, 0.017920779064297676, 0.020765556022524834, 0.0009619145421311259, -0.03261660411953926, 0.009248800575733185, 0.002020512241870165, -0.019729899242520332, -0.008416342549026012, -0.005378200206905603, 0.010998927988111973, 0.04048234596848488, -0.015993673354387283, -0.00107170722912997, -0.003108606208115816, -0.00860643107444048, 0.004188506864011288, 0.03956467658281326, 0.0009373340872116387, -0.028709953650832176, -0.013089903630316257, 0.007341357879340649, 0.0052307178266346455, 0.006823529954999685, 0.01730462908744812, -0.024042947217822075, 0.0002880008250940591, 0.0005723146023228765, 0.025340795516967773, -0.01303091086447239, 0.02606182172894478, 0.0007517517660744488, 0.010867832228541374, -0.011477426625788212, 0.013365204446017742, 0.02944408915936947, 0.0016075607854872942, -0.024305138736963272, -0.000444905977929011, 0.01158885844051838, -0.004335989709943533, -0.010736736468970776, -0.004394982475787401, 0.033140987157821655, 1.5119530871743336e-05, -0.01721286214888096, -0.014866250567138195, 0.006197548471391201, -0.007714980747550726, -0.02337436005473137, -0.025917615741491318, -0.0027300675865262747, 0.0035494156181812286, -0.010599086061120033, -0.007361022289842367, 0.009032492525875568, 0.017527492716908455, 0.02441001497209072, 0.016033001244068146, -0.021709444001317024, -0.018917106091976166, -0.0036084086168557405, 0.006276205647736788, 0.020005200058221817, 0.01680646650493145, 0.0009996045846492052, 0.005224162712693214, -0.019926544278860092, -0.005469967145472765, -0.06423688679933548, -0.00011102165444754064, 0.01531197503209114, -0.0075052278116345406, 0.01001571025699377, -0.013162006624042988, 0.005509295966476202, -0.0065515064634382725, 0.007669097278267145, -0.020765556022524834, -0.0054568578489124775, -0.005696107167750597, 0.0035952990874648094, -0.022954853251576424, 0.017291519790887833, 0.003138102823868394, 0.010081257671117783, 0.004365486092865467, 0.001074165222235024, -0.011064475402235985, -0.004906255751848221, 0.009923943318426609, 0.0007636323571205139, -0.013325875625014305, -0.005751823075115681, 0.015993673354387283, -0.006577725987881422, 0.015429961495101452, 0.0060631753876805305, 0.017094876617193222, -0.003164321882650256, 0.06533809006214142, -0.016321411356329918, -0.004703057464212179, 0.015495509840548038, 0.03770311921834946, 0.016596714034676552, -0.011372550390660763, 0.013817484490573406, -0.0004338447761256248, 0.010572866536676884, 0.011038255877792835, 0.010697407647967339, -0.026638641953468323, 0.012696616351604462, 0.007328248582780361, -0.037414707243442535, 0.0034412615932524204, -0.007387241814285517, 0.025484999641776085, -0.03298367187380791, 0.0011774030281230807, -0.01645250804722309, 0.004018082749098539, 0.004034469369798899, -0.007675651926547289, 0.0026677970308810472, -0.004608013201504946, -0.015089113265275955, -0.03573668375611305, -0.0031577672343701124, -0.02610114961862564, -0.0070136189460754395, 0.021617677062749863, 0.018261628225445747, -0.06145765632390976, -0.016072330996394157, 0.018379613757133484, 0.028106912970542908, 0.006371249910444021, 0.014499181881546974, 0.004876759368926287, -0.004424479324370623, 0.019520146772265434, -0.014971126802265644, -0.015469290316104889, 0.01282771211117506, -0.0179469995200634, 0.015298865735530853, -0.007583884987980127, -0.006934961304068565, -0.006639996077865362, -0.002371193142607808, 0.024344468489289284, 0.012198452837765217, 0.01735706813633442, 0.03573668375611305, 0.02590450644493103, -0.0005755919846706092, 0.011398768983781338, -0.0035952990874648094, 0.021355485543608665, 0.004453975707292557, -0.022810649126768112, 0.00619099335744977, -0.03272148221731186, 0.000664491206407547, -0.005286433268338442, 0.007177488412708044, -0.013686388731002808, 0.020817993208765984, 0.007918179035186768, -0.013057129457592964, -0.008370459079742432, 0.012028028257191181, -0.009740409441292286, 0.01392236165702343, 0.005764932371675968, 0.020503364503383636, 0.014931797981262207, -0.008547438308596611, 0.03544827178120613, 0.009491327218711376, -0.017475053668022156, 0.010684298351407051, -0.005184834357351065, 0.019847886636853218, 0.010245127603411674, -0.0017042438266798854, -0.015783919021487236, -0.004434311296790838, -0.026310903951525688, -0.015980564057826996, 0.024921288713812828, 0.000535853614564985, 0.00757077569141984, -0.007701870985329151, -0.03088614158332348, -0.012028028257191181, -0.013607732020318508, -0.01052042841911316, 0.020411597564816475, -0.037572022527456284, -0.028814829885959625, 0.008062384091317654, -0.00845567137002945, -0.011031701229512691, 0.0006333559867925942, 0.002628468442708254, -0.025288356468081474, -0.0019189129816368222, -0.0015846190508455038, 0.01041555218398571, -0.0020713116973638535, 0.027110585942864418, 0.007996836677193642, -0.038253720849752426, 0.001594451256096363, -0.005096344742923975, -0.028814829885959625, -0.013856813311576843, -0.01969057135283947, 0.012998136691749096, 0.019218627363443375, 0.009012827649712563, 0.025943834334611893, -0.004034469369798899, 0.001370769226923585, -0.00952410139143467, 0.009399560280144215, -0.019520146772265434, 0.0003404390881769359, 0.004762050695717335, 0.006771091837435961, -0.008075494319200516, 0.01138565968722105, 0.017789684236049652, -0.028867268934845924, 0.003010284621268511, -0.00035969377495348454, -0.004847262986004353, 0.004670283757150173, -0.01805187575519085, -0.0361037515103817, 0.0002302367938682437, -0.0084294518455863, -0.0032577277161180973, -0.004060688894242048, -0.010173024609684944, -0.031069675460457802, -0.014197662472724915, 0.001650986261665821, 0.01988721452653408, 0.023243263363838196, 0.007931288331747055, -0.0006747330771759152, 0.005466689821332693, 0.015652824193239212, 0.021145733073353767, -0.01012058649212122, 0.02018873393535614, -0.021342376247048378, 0.027661189436912537, 0.012637623585760593, 0.01278182864189148, 0.02679595723748207, 0.016885124146938324, 0.009923943318426609, 0.008390123955905437, 0.040246374905109406, -0.015089113265275955, -0.026481326669454575, -0.008934170939028263, -0.00934712216258049, -0.027189243584871292, -0.020228063687682152, -0.01123489998281002, -0.005197943653911352, -0.005447025410830975, 0.0038247164338827133, 0.02024117298424244, 0.005397864617407322, 0.0047358316369354725, -0.006757982540875673, 0.00872441753745079, -0.025930725038051605, 0.02978493832051754, 0.0008955473895184696, 0.017514383420348167, 0.019231736660003662, 0.008553992956876755, -0.011326666921377182, -0.05201876536011696, -0.018458271399140358, -0.008023055270314217, 0.037467144429683685, 0.04150489345192909, 0.008803075179457664, -0.04302560165524483, -0.008848958648741245, 0.010068148374557495, 0.008049274794757366, -0.02222071774303913, 0.012578630819916725, 0.006669492926448584, -0.010546647943556309, -0.025865178555250168, 0.010218908078968525, -0.03571046516299248, 0.019284173846244812, -0.008711308240890503, -0.014184552244842052, -0.028028257191181183, -0.003405210329219699, 0.0007263519801199436, 0.020726226270198822, -0.02376764640212059, 0.008160705678164959, 0.007544556632637978, 0.0062925927340984344, 0.0007456066668964922, -0.025576766580343246, -0.02620602585375309, -0.0007103747338987887, -0.011477426625788212, 0.022063402459025383, -0.009294684045016766, 0.014040347188711166, 0.023453017696738243, 0.017789684236049652, -0.001370769226923585, 0.0035264738835394382, -0.004699780140072107, 0.045516420155763626, -0.00037464688648469746, 0.005332316737622023, -0.016268974170088768, 0.014014128595590591, 0.017986327409744263, -0.010776065289974213, -0.0014879360096529126, -0.003703452879562974, -0.009196361526846886, -0.015010455623269081, 0.038411036133766174, 0.0038738774601370096, 0.013148896396160126, -0.02262711524963379, -0.012434424832463264, 0.0067448727786540985, -0.02933921292424202, 0.007839521393179893, -3.9763981476426125e-05, -0.015495509840548038, -0.015403741970658302, 0.009202917106449604, -0.0228237584233284, -0.00728236511349678, -0.0005432277102954686, -0.0038804321084171534, 0.027477653697133064, 0.05558456853032112, -0.018930215388536453, -0.0021712721791118383, 0.009989490732550621, 0.008717862889170647, -0.02416093461215496, -0.021145733073353767, -0.0015035035321488976, -0.03337696194648743, 0.014826921746134758, -0.014682715758681297, 0.007531446870416403, -0.009425779804587364, 0.0070857214741408825, 0.03875188156962395, 0.009989490732550621, 0.03411109745502472, 0.021906089037656784, 0.006797310896217823, 0.002487540477886796, -0.00619099335744977, -0.01938905194401741, -0.023793866857886314, 0.0002525640302337706, -0.004037747159600258, 0.029496528208255768, -0.010684298351407051, -0.006328643765300512, 0.0006149206892587245, 0.012821157462894917, -0.005542069673538208, -0.015797030180692673, -0.05214986205101013, 0.011798610910773277, -0.011195571161806583, 0.0008996441029012203, -0.011274228803813457, -0.027818502858281136, 0.006541674491018057, -0.016295192763209343, -0.002713680500164628, 0.014197662472724915, 0.006908742245286703, -0.00223190407268703, 0.028316667303442955, 0.009353676810860634, 0.012893260456621647, -0.008671979419887066, -0.023833194747567177, 0.006581003312021494, -0.03038797900080681, 0.000988953048363328, -0.006066452711820602, -0.02467220649123192, 0.04163598641753197, 0.010435216128826141, -0.020319830626249313, -0.03673300892114639, -0.0004924281383864582, -0.03571046516299248, -0.0062630963511765, -0.00787885021418333, 0.033927563577890396, 0.01533819455653429, 0.02267955243587494, -0.004162287805229425, 0.00016141156083904207, -0.010776065289974213, 0.0025907782837748528, -0.036575693637132645, -0.010074703022837639, -0.017763463780283928, 0.0037263946142047644, -0.00013171018508728594, -0.012519637122750282, -0.0040869079530239105, 0.016426289454102516, 0.018668025732040405, -0.027870941907167435, 0.021263718605041504, 0.029077021405100822, 0.022797537967562675, -0.014525401405990124, -0.006544951815158129, -0.022863086313009262, -0.004221281036734581, -0.016373850405216217, 0.013463526032865047, -0.03012578748166561, 0.007420015521347523, 0.021014638245105743, -0.003264282364398241, -0.011398768983781338, 0.022614004090428352, 0.013607732020318508, -0.01238198671489954, 0.010972708463668823, -0.012552411295473576, -0.028421543538570404, -0.003962366841733456, -0.0007046393002383411, 0.024344468489289284, -0.02113262377679348, -0.005499463994055986, 0.03387512266635895, -0.005555179435759783, -0.01689823344349861, 4.8085486923810095e-05, 0.006751427426934242, -0.0030053684022277594, 0.01400101836770773, 0.02004452981054783, -0.018825339153409004, -0.00415245583280921, 0.0012806409504264593, 0.005414251703768969, -0.0007447873358614743, -0.0009340567048639059, 0.0012495056726038456, 0.026428889483213425, -0.0455426387488842, 0.01014680601656437, 0.012172234244644642, -0.005512573290616274, -0.013286546804010868, -0.017186643555760384, -0.02391185238957405, 0.013083348982036114, -0.048007238656282425, -0.012637623585760593, -0.019664352759718895, 0.023544784635305405, 0.0119821447879076, -0.003041419666260481, -0.024593548849225044, 0.028106912970542908, 0.03206600248813629, -0.0006866136100143194, 0.015180880203843117, 0.2770838439464569, -0.011942816898226738, 0.012237781658768654, 0.029575185850262642, 0.01595434360206127, 0.030807483941316605, 0.01215912401676178, 0.00045883486745879054, -0.0037755556404590607, 0.018733572214841843, -0.022050293162465096, -0.005155337508767843, -0.008173815906047821, -0.0016026446828618646, 0.01171339862048626, -0.02844776213169098, -0.013804375194013119, -0.015469290316104889, -0.02878861129283905, -0.017829012125730515, 0.04635543376207352, -0.015639714896678925, -0.008265582844614983, -0.0051881116814911366, -0.006174606736749411, 0.010291011072695255, -0.012513082474470139, 0.018812229856848717, 0.011778946965932846, -0.00949788186699152, -0.023099059239029884, 0.03783421218395233, 0.012847376987338066, 0.007249590940773487, -0.0017288243398070335, -0.026468217372894287, 0.05479799583554268, 0.009268464520573616, 0.009923943318426609, 0.019008873030543327, 0.0002261400513816625, 0.002812002319842577, -0.0051487828604876995, -0.01577080972492695, -0.009661751799285412, -0.016373850405216217, -0.005568289197981358, -0.027084367349743843, 0.02009696699678898, 0.023190826177597046, -0.000495295855216682, -0.019008873030543327, 0.06497102230787277, 0.0252621378749609, -0.0017468499718233943, -0.014486072584986687, 0.02839532494544983, 0.005974685773253441, 0.00615166500210762, 0.008003391325473785, -0.005079957656562328, 0.0311221145093441, -0.023151496425271034, 0.03416353464126587, 0.0013543822569772601, 0.025878287851810455, -0.01245408970862627, 0.016675369814038277, -0.02435757778584957, 0.0014772844733670354, -0.013188225217163563, 0.025039274245500565, -0.00949788186699152, -0.007675651926547289, -0.028552638366818428, -0.03515985980629921, 0.04158354923129082, 0.021552130579948425, 0.022351812571287155, 0.04276341199874878, -0.005863254424184561, 0.018825339153409004, -0.006974290125072002, 0.011254563927650452, -0.0073544676415622234, -0.007616659160703421, -0.0179469995200634, -0.014315648004412651, 0.0018877778202295303, -0.014459853991866112, 0.010533537715673447, 0.005463412497192621, 0.0006903007160872221, -0.019900323823094368, 0.0022220718674361706, -0.0026071653701364994, 0.006059897597879171, 0.01958569511771202, -0.02018873393535614, 0.004444143734872341, -0.002979149343445897, 0.025681644678115845, 0.029050802811980247, 0.022063402459025383, -0.005656778812408447, 0.0013879755279049277, 0.006895632948726416, 0.010081257671117783, -0.006259818561375141, -0.022404251620173454, 0.03038797900080681, -0.019074421375989914, 0.002782505704089999, -0.008921060711145401, -0.002864440670236945, 0.02341368794441223, -0.029968472197651863, -0.014538510702550411, -0.020975308492779732, 0.014433634467422962, 0.026612423360347748, -0.025052385404706, -0.026874614879488945, 0.0024482118897140026, -0.008154151029884815, 0.006875968538224697, -0.04320913553237915, -0.007223371881991625, -0.014092785306274891, -0.03893541544675827, 0.022102732211351395, -0.022142060101032257, 0.021565239876508713, -0.006099226418882608, -0.0013388146180659533, 0.027058148756623268, -0.017121095210313797, -0.0017222694586962461, 0.0005252020782791078, -0.004293383564800024, 0.017121095210313797, 0.00672520836815238, -0.015036674216389656, 0.02779228426516056, -0.0032397019676864147, -0.008213144727051258, -0.011910042725503445, -0.0030299487989395857, 0.023898743093013763, -0.010422106832265854, -0.043785955756902695, -0.020647570490837097, 0.018104312941432, -0.000173189677298069, 0.020464036613702774, 0.0008070577750913799, -0.03374402970075607, -0.025786520913243294, 0.0007075070170685649, 0.034189753234386444, -0.023649660870432854, -0.024593548849225044, 0.025576766580343246, -0.02684839442372322, -0.010854722000658512, -0.02784472331404686, -0.16476105153560638, 0.012683507055044174, 0.007642878219485283, -0.023885633796453476, 0.04892490804195404, 0.03489767014980316, -0.00994360726326704, -0.010114031843841076, 0.0020549248438328505, -1.993320074689109e-05, 0.002020512241870165, 0.0005292987916618586, -0.010205798782408237, 0.0008189383079297841, -0.001456800731830299, -0.007754309568554163, -0.008816184476017952, 0.03044041618704796, 0.04237012565135956, 0.007872295565903187, 0.06512833386659622, -0.011687180027365685, -0.009209471754729748, 0.0021729108411818743, 0.02316460758447647, 0.014840031042695045, -0.006620331667363644, -0.006223767530173063, -0.012047693133354187, -0.022640224546194077, 0.00621393509209156, 0.00030008621979504824, 0.013502854853868484, 0.008986609056591988, -0.01183138508349657, -0.02944408915936947, 0.004293383564800024, -0.004693225491791964, -0.012440980412065983, 0.027713626623153687, 0.013883032836019993, 0.01944148913025856, 0.03455682098865509, -0.0038869869895279408, 0.010035374201834202, 0.01615098863840103, -0.0008197576971724629, -0.01735706813633442, 0.0026776292361319065, 0.005296265706419945, 0.028421543538570404, -0.030047129839658737, -0.015128441154956818, 0.0025547270197421312, 0.039066512137651443, 0.008390123955905437, 0.004778437316417694, 0.019257955253124237, -0.02467220649123192, 0.004847262986004353, 0.006036955863237381, -0.036811668425798416, -0.006541674491018057, 0.012945698574185371, 0.013338985852897167, 0.004824321251362562, 0.0023384192027151585, 0.018458271399140358, 0.0015084196347743273, 0.009982936084270477, 0.01954636536538601, -0.010107477195560932, -0.002035260433331132, -0.030545294284820557, 0.020844213664531708, -0.01865491457283497, -0.01076295506209135, 0.044074367731809616, 0.02511793188750744, 0.011136578395962715, -0.009609313681721687, 0.026088040322065353, 0.005102899391204119, -0.03809640556573868, -0.0033724363893270493, 0.02923433668911457, 0.00021384982392191887, -0.025131041184067726, -0.031017238274216652, -0.001031559077091515, 0.012126350775361061, -0.009268464520573616, -0.012650732882320881, -0.004598180763423443, -0.003644459880888462, -0.0011765836970880628, 0.006889077834784985, 0.004293383564800024, -0.03515985980629921, -0.010671188123524189, 0.0048800366930663586, -0.015062893740832806, -0.01799943670630455, 0.012873595580458641, 0.03033553995192051, 0.01570526324212551, -0.016085440292954445, 0.007210262585431337, 0.026088040322065353, -0.013751937076449394, -0.024632878601551056, 0.004667006433010101, 0.028709953650832176, 0.03044041618704796, 0.012447535060346127, 0.015207098796963692, -0.012650732882320881, -0.014643387869000435, -0.01755371131002903, -0.015888797119259834, -0.018209189176559448, -0.014315648004412651, 0.01759304106235504, 0.015849467366933823, -0.008521218784153461, -0.023780755698680878, -0.062139350920915604, -0.028526419773697853, 0.0008041900582611561, 0.021565239876508713, -0.009904278442263603, 0.02088354155421257, -0.004811211489140987, 0.006387636996805668, -0.008442562073469162, 0.015888797119259834, 0.012670397758483887, -0.010572866536676884, -0.006387636996805668, 0.010795729234814644, -0.004470362793654203, 0.016518056392669678, 0.009733853861689568, -0.020568912848830223, -0.011195571161806583, 0.024436235427856445, 0.005699384491890669, -0.005030796863138676, -0.013188225217163563, -0.006895632948726416, -0.022168278694152832, -0.004801379516720772, -0.0070857214741408825, -0.0059419116005301476, 0.04126891866326332, 0.013437307439744473, 0.030938580632209778, -0.004031192045658827, -0.01389614213258028, -0.004703057464212179, 0.024278920143842697, 0.004024637397378683, -0.040796976536512375, -0.03083370439708233, 0.0054175290279090405, -0.015875685960054398, -3.961035326938145e-05, -0.017370177432894707, -0.010153360664844513, 0.0026317457668483257, -0.015547947958111763, 0.0022269878536462784, -0.006993954535573721, 0.013345540501177311, -0.000691529712639749, -0.014132114127278328, -0.028080694377422333, -0.0023220323491841555, -0.03725739195942879, -0.025393232703208923, 0.020516473799943924, 0.027818502858281136, 0.009537210687994957, 0.005224162712693214, -0.048662714660167694, 0.003292140318080783, 0.01145776268094778, 0.015049784444272518, -0.027477653697133064, 0.030047129839658737, 0.0032413406297564507, 0.0315416194498539, -0.02197163552045822, -0.014171442948281765, -0.01096615381538868, -0.006895632948726416, -0.01790766976773739, 0.014276319183409214, -0.039407361298799515, 0.03335073962807655, -0.028028257191181183, -0.010441770777106285, -0.02665175125002861, -0.02944408915936947, 0.02700570970773697, -0.017488162964582443, -0.012873595580458641, -0.002256484469398856, 0.011156242340803146, 0.007977171801030636, 0.015167769975960255, 0.01890399679541588, 0.007590440101921558, -0.014682715758681297, 0.005296265706419945, -0.043130479753017426, 0.0030856644734740257, -0.004280273802578449, 0.007865740917623043, 0.01491868868470192, 0.002443295670673251, -0.015849467366933823, -0.0004928378039039671, -0.029470309615135193, -0.0024236314930021763, 0.042291466146707535, -0.005414251703768969, -0.024292029440402985, -0.08557926118373871, 0.005361813120543957, -0.015193989500403404, -0.0010340171866118908, 0.013214444741606712, -0.005410974379628897, 0.02829044871032238, -0.02118506282567978, 0.011693734675645828, -0.008363904431462288, -0.041295140981674194, 0.04509691521525383, 0.009760073386132717, -0.01890399679541588, -0.04968526214361191, 0.005102899391204119, 0.01466960646212101, 0.011254563927650452, 0.010907161049544811, 0.018366504460573196, -0.007203707471489906, -0.01910063996911049, 0.01096615381538868, 0.010605640709400177, -0.020372267812490463, 0.028552638366818428, -0.024423126131296158, 0.007826412096619606, -0.0240167286247015, -0.013017800636589527, -0.007819857448339462, -0.01178550161421299, -0.019061312079429626, 0.0061778840608894825, -0.016976891085505486, -0.00319545716047287, 0.0065580615773797035, 0.004529355559498072, 0.0010905521921813488, 0.03922382742166519, -0.011018591932952404, -0.014079676009714603, -0.00017021954408846796, -0.005322484765201807, -0.006757982540875673, -0.022640224546194077, -0.0027202353812754154, 0.016400068998336792, 0.009714189916849136, 0.004329435061663389, 0.021853649988770485, 0.021316157653927803, 0.0030070070642977953, -0.021604567766189575, 0.026481326669454575, -0.03356049582362175, -0.005712494254112244, 0.01620342582464218, -0.005011132452636957, -0.001792733441106975, 0.006158219650387764, -0.00012351671466603875, 0.013201335445046425, 0.003365881508216262, 0.007623213808983564, -0.024921288713812828, -0.01919240690767765, -0.022404251620173454, 0.006679324898868799, -0.035526927560567856, -0.017566820606589317, 0.005977963097393513, 0.013070239685475826, 0.030414197593927383, 0.031148333102464676, 0.002163078635931015, -0.01849760115146637, -0.008986609056591988, -0.020319830626249313, 0.01489246916025877, 0.0021139178425073624, 0.025642314925789833, -0.04525423049926758, 0.011995255015790462, 0.023741427809000015, -0.0075380015186965466, -0.021643897518515587, 0.001454342738725245, -0.022142060101032257, 0.0074658989906311035, -0.005663333460688591, -0.027058148756623268, -0.014197662472724915, 0.017343958839774132, 0.014984236098825932, 0.005466689821332693, 0.003033226355910301, -0.0037919424939900637, 0.031751371920108795, 0.025629205629229546, -0.0038640452548861504, -0.00132652441971004, -0.01869424432516098, -0.028709953650832176, -0.02049025520682335, 0.0013904335210099816, -0.0005460954271256924, -0.04635543376207352, -0.0042409454472362995, 0.003431429388001561, -0.009104594588279724, 0.013804375194013119, -0.00550601864233613, 0.018209189176559448, -0.013765046373009682, -0.00045146074262447655, -0.006014014128595591, -0.028080694377422333, -0.030492855235934258, 0.0020598408300429583, 0.026664860546588898, 0.021840540692210197, 0.016924452036619186, -0.003080748487263918, 0.010218908078968525, 0.0002539978886488825, 0.003601853735744953, -0.03932870551943779, 0.033691588789224625, -0.0062106577679514885, -0.007852631621062756, 0.005233995150774717, -0.025865178555250168, -0.029575185850262642, -0.006902187597006559, 0.025537438690662384, 0.006440075114369392, 0.0036084086168557405, 0.0013019440229982138, 0.04530666768550873, 0.006928406655788422, -0.01600678265094757, -0.0041590104810893536, 0.010835058055818081, 0.00528315594419837, 0.004975080955773592, 0.005024241749197245, -0.01700310967862606, -0.011293892748653889, 0.02604871243238449, -0.009917388670146465, -0.00021569336240645498, -0.011798610910773277, -0.001610018778592348, 0.01138565968722105, -0.03405865654349327, 0.033036112785339355, -0.0203329399228096, 0.0042737191542983055, 0.04698469117283821, 0.007020173594355583, 0.0026235522236675024, -0.00917014293372631, -0.019126860424876213, -0.02684839442372322, 0.02043781615793705, -0.00428682891651988, 0.009419224224984646, -0.018812229856848717, 0.00432615727186203, -0.0026743519119918346, -0.011674070730805397, -0.020726226270198822, 0.03177759423851967, 0.004018082749098539, -0.02118506282567978, 0.02341368794441223, 0.019323503598570824, 0.02104085683822632, -0.0027644801884889603, 0.01168062537908554, -0.01489246916025877, -0.03348183631896973, 0.006246709264814854, 0.007931288331747055, -0.00945199839770794, 0.015888797119259834, 0.0037132850848138332], "3f83359c-54f8-428b-b1e4-a1fb21c29b8c": [-0.0011305958032608032, -0.008329818956553936, -0.004620182793587446, 0.007196693681180477, -0.007709297817200422, 0.005271055269986391, -0.023525835946202278, -0.006407552864402533, 0.013907762244343758, -0.007365313358604908, 0.014015678316354752, 0.0002156225818907842, -0.015283700078725815, -0.012093412689864635, -0.01456875167787075, -0.000251665071118623, -0.0014602475566789508, -0.01152010541409254, 0.011864090338349342, -0.01501390803605318, -0.0024905146565288305, -0.009435964748263359, 0.0021600197069346905, -0.028085315600037575, -0.018548179417848587, 0.002568079624325037, 0.015526512637734413, -0.023701200261712074, 0.009813672862946987, -0.00044262700248509645, 0.0360441692173481, 0.00023965090804267675, -0.013064662925899029, 0.008188177831470966, -0.0029154366347938776, -0.010386980138719082, -0.016781043261289597, 0.00210606143809855, -0.0022409572266042233, 0.008248881436884403, 0.03002781607210636, -0.014649689197540283, 0.0027940303552895784, -0.002200488466769457, -0.01745552197098732, 0.02062557451426983, -0.029919900000095367, -0.00037960533518344164, -0.006164740305393934, 0.0030840563122183084, -0.00832307431846857, 0.0010268946643918753, -0.023970993235707283, -0.015823282301425934, -0.02529297210276127, 0.0008683920023031533, -0.028139274567365646, 0.0055442191660404205, -0.015067866072058678, 7.108379213605076e-05, -0.005996120627969503, 0.013948231004178524, -0.0383913591504097, -0.0074395062401890755, -0.014744115993380547, 0.01501390803605318, -0.012322735972702503, 0.01078492309898138, -0.020868387073278427, -0.0035275265108793974, 0.03199729695916176, 0.010838881134986877, 0.008033047430217266, -0.0072034383192658424, 0.02704661712050438, 0.020220886915922165, -0.019357554614543915, 0.0016238087555393577, 0.006191719323396683, 0.0012241798685863614, 0.008788464590907097, 0.006151250563561916, 0.018264897167682648, -0.0018244663951918483, 0.00589832104742527, 0.013975209556519985, -0.018237918615341187, 0.02007250301539898, -0.00012256552872713655, -0.01035325601696968, 0.02652052417397499, 0.0018834832590073347, 0.003207148751243949, 0.03116094134747982, 0.009240365587174892, 0.0021920574363321066, 0.0007259082631208003, 0.001974537968635559, 0.001673551625572145, -0.04748333990573883, 0.0004280835564713925, 0.00890312623232603, -0.0053992061875760555, 0.006869571283459663, -0.0302436500787735, -0.015067866072058678, 0.02967708744108677, -0.017900679260492325, -0.01195177249610424, 6.249472062336281e-05, -0.023647243157029152, 0.023067189380526543, -0.018534690141677856, -0.013240027241408825, -0.006151250563561916, -0.02502317912876606, 0.03410166874527931, -0.031295835971832275, -0.0174690131098032, -0.010407214984297752, 0.01977573148906231, 0.008640078827738762, 0.03817552700638771, -0.011391954496502876, -0.00871427170932293, 0.006700951140373945, -0.03731219097971916, 0.006815612781792879, -0.013395157642662525, -0.018413282930850983, 0.053175944834947586, -0.005405951291322708, 0.011297527700662613, 0.005867969244718552, -0.018183959648013115, -0.010440939106047153, -0.013880782760679722, 0.01864260621368885, -0.013651459477841854, -0.02711406536400318, -0.0027114066760987043, 0.015850262716412544, -0.019964585080742836, -0.014784584753215313, 0.013718907721340656, 0.027815524488687515, 0.01918219029903412, 0.010562345385551453, 0.019344065338373184, -0.026965679600834846, 0.010656772181391716, -0.017064325511455536, 0.006033217068761587, -0.012842085212469101, -0.019033804535865784, -0.0021869989577680826, -0.00039983971510082483, -0.0004649691400118172, -0.009415729902684689, -0.007749766577035189, -0.000495320709887892, 0.015513022430241108, -0.0014695216668769717, 0.007399037480354309, 0.0021988023072481155, 0.027559222653508186, 0.0035477608907967806, 0.00828935019671917, -0.004768568091094494, -0.007304610218852758, 0.016362866386771202, 0.01918219029903412, -0.02762666903436184, 0.016376355662941933, -6.180969648994505e-05, 0.027896462008357048, -0.014622709713876247, 0.02008599229156971, -0.009901355020701885, -0.012187839485704899, -0.02795041911303997, 0.0012005730532109737, -0.013894272036850452, 0.017388075590133667, 0.0006066097412258387, -0.026722867041826248, 0.0024770249146968126, 0.016093075275421143, 0.024753388017416, 0.00012551636609714478, 0.006822357419878244, 0.020301824435591698, 0.018413282930850983, 0.005739818327128887, -0.6272117495536804, -0.014879012480378151, -0.011250313371419907, -0.007318099960684776, 0.012464376166462898, 0.02529297210276127, 0.03059437870979309, 0.030675316229462624, -0.012504844926297665, 0.0157423447817564, -0.016389844939112663, 0.02183963730931282, -0.021057242527604103, -0.01566140726208687, -0.014636199921369553, -0.023822607472538948, -0.010252084583044052, -0.01924963854253292, -0.017954638227820396, 0.021596824750304222, -0.02994687855243683, -0.012289011850953102, -0.014919481240212917, -0.022905314341187477, 0.029191462323069572, -0.009989037178456783, -0.002335384488105774, -0.01470364723354578, -0.006424414925277233, 0.03286062926054001, -0.027006149291992188, 0.043247610330581665, 0.014042657800018787, 0.0002373323804931715, 0.032482922077178955, -0.014393387362360954, -0.04713261127471924, 0.026345159858465195, -0.003272910602390766, 0.05784333869814873, -0.024335211142897606, -0.013840314000844955, -0.014879012480378151, 0.0034701956901699305, 0.015081356279551983, -0.007162969559431076, 0.026048388332128525, -0.029461253434419632, -0.003807435277849436, 0.030756253749132156, -0.008559141308069229, -0.011648256331682205, -0.00560829509049654, -0.0077295321971178055, 0.01690245047211647, 0.015432084910571575, 0.026304690167307854, -0.017630888149142265, 0.013725652359426022, -0.009058256633579731, -0.03143073245882988, 0.015863751992583275, -0.011877579614520073, -0.025711148977279663, -0.026291200891137123, 0.00706179765984416, -0.02355281449854374, -0.023107659071683884, 0.011169375851750374, -0.023148126900196075, 0.00015080934099387378, -0.009948568418622017, 0.016416825354099274, -0.021731721237301826, 0.021785680204629898, 0.04305875673890114, 0.028004378080368042, -0.009395495988428593, -0.01769833452999592, -0.0012511590030044317, -0.008033047430217266, 0.008963828906416893, 0.014663178473711014, -0.024618491530418396, 0.032159171998500824, -0.015904219821095467, -0.023728180676698685, -0.028031356632709503, 0.004313294775784016, -0.010730965062975883, -0.0025967450346797705, 0.006080430466681719, 0.00345333362929523, -0.028328128159046173, -0.0011592612136155367, 0.041763756424188614, -0.002284798538312316, 0.0035781124606728554, 0.0013616050127893686, -0.0007764942129142582, -0.0087345065549016, 0.022608544677495956, -0.014352918602526188, 0.01830536685883999, 0.024847814813256264, -0.0016980015207082033, -0.02967708744108677, -0.004687630571424961, 0.040279898792505264, -0.02507713809609413, 0.007473229896277189, 0.006073685362935066, -0.003390944330021739, -0.021030262112617493, -0.0002426017599646002, -0.035126879811286926, -0.006940391380339861, 0.009220131672918797, 0.030486462637782097, -0.03286062926054001, 0.02390354499220848, -0.008552396669983864, 0.0300008375197649, -0.006147878244519234, 0.013739142566919327, 0.022298283874988556, -0.00553072988986969, -0.008309584110975266, 0.014514793641865253, -0.006161367986351252, -0.014150574803352356, 0.003810807829722762, 0.03429052606225014, -0.007028073538094759, 0.013752631843090057, 0.0035983468405902386, -0.003252676222473383, -0.01512182503938675, 0.018197450786828995, -0.004535872954875231, -0.017900679260492325, -0.0034263546112924814, 0.02411937713623047, -0.014487814158201218, 0.019600367173552513, -0.024038439616560936, -0.006748165003955364, -0.012275522574782372, -0.004036758095026016, 0.010110443457961082, 0.02034229412674904, 0.004957422614097595, -0.01980271004140377, 0.021745210513472557, 0.00653907610103488, 0.004879857413470745, 0.0036691671703010798, -0.014622709713876247, 0.004171654116362333, 0.0004139616503380239, -0.008208412677049637, 0.024254273623228073, -0.016835002228617668, 0.0019779102876782417, -0.026007920503616333, -0.011243568733334541, 0.014676668681204319, 0.01366494968533516, -0.01634937711060047, -0.02565719000995159, 0.03442541882395744, -0.0035713675897568464, -0.0021296681370586157, -0.013030938804149628, 0.011324506253004074, -0.007230417337268591, -0.0213000550866127, 0.0011154200183227658, -0.020558128133416176, 0.012855574488639832, 0.005412695929408073, 0.002284798538312316, -0.0057802870869636536, 0.007311354856938124, 0.015917710959911346, 0.020787449553608894, 0.025994429364800453, 0.018790991976857185, -0.013894272036850452, -0.013226537965238094, -0.013462605886161327, 0.012815105728805065, 0.007358568720519543, 0.010879349894821644, 0.010542110539972782, -0.0012764519779011607, 0.006262539885938168, 0.013867293484508991, -0.0007490935386158526, 0.030486462637782097, 0.021138180047273636, 0.012471120804548264, -0.005709466990083456, -0.013051173649728298, 0.03518083691596985, -0.024362189695239067, -0.00832307431846857, -0.01104122493416071, -0.0017350978450849652, 0.010677006095647812, -0.0072911204770207405, -0.029245419427752495, -0.0030216670129448175, -0.02011297084391117, 0.035126879811286926, 0.01544557511806488, -0.015607450157403946, 0.01865609548985958, -0.017671355977654457, 0.01424500159919262, -0.003358906600624323, 0.006717813201248646, 0.01193153765052557, -0.02272995002567768, -0.004077226854860783, 0.007257396820932627, 0.0010488152038305998, 0.02243318036198616, 0.010407214984297752, -0.025198545306921005, -0.024672450497746468, -0.00255121779628098, -0.007601381279528141, 0.006346849724650383, 0.008741251192986965, -0.03183542191982269, 0.01626843959093094, -0.028328128159046173, 0.03296854719519615, 0.005716211628168821, 0.01599864847958088, 0.011607787571847439, 0.015081356279551983, -0.01920916885137558, 0.02677682600915432, 0.004232357256114483, 0.050235215574502945, 0.02355281449854374, -0.01626843959093094, -0.001135654398240149, -0.020800940692424774, -0.0016491017304360867, -0.0013084897072985768, 0.004178398754447699, 0.00712250079959631, -0.03348115086555481, 0.035693440586328506, 0.002689485903829336, 0.020274845883250237, 0.0302436500787735, 0.022325262427330017, 0.04635021463036537, -0.005115924868732691, -0.008174688555300236, -0.005908438004553318, 0.0027299546636641026, 0.011027735657989979, -0.020153440535068512, -0.03747406601905823, -0.023809118196368217, 0.0034263546112924814, 0.0076283602975308895, 0.02994687855243683, -0.010164402425289154, 0.0029322984628379345, -0.00624905014410615, 0.020139949396252632, 0.0086131002753973, 0.02414635755121708, -0.0030452737119048834, -0.015283700078725815, -0.018507709726691246, 0.014056147076189518, 0.001018463633954525, 0.009705755859613419, 0.019398022443056107, 0.0036792843602597713, -0.003409492550417781, 0.026034899055957794, 0.002004889538511634, -0.004599948413670063, 0.01830536685883999, 0.010177891701459885, -0.023471876978874207, 0.007810469716787338, -0.02325604483485222, 0.041466984897851944, -0.020247867330908775, -0.033022504299879074, -0.01659218966960907, -7.777589053148404e-05, -0.03178146108984947, -0.026601461693644524, -0.015674898400902748, 0.05681813135743141, 0.0027687372639775276, -0.017104793339967728, 0.005203607492148876, 0.026641929522156715, -0.020207397639751434, -0.009226876311004162, 0.016120053827762604, 0.008194922469556332, -0.01748250238597393, -0.02096281573176384, 0.02128656581044197, 0.025684170424938202, -0.00890312623232603, 0.028355106711387634, 0.015094845555722713, -0.007331589236855507, -0.0018396421801298857, -0.01919567957520485, 0.01597166806459427, -0.03671865165233612, 0.005031615030020475, 0.009226876311004162, 0.020558128133416176, -0.034776151180267334, -0.009139194153249264, -0.02188010700047016, -0.004094088915735483, -0.006549193523824215, -0.009213386103510857, 0.017981616780161858, -0.005625156685709953, 0.000864176545292139, -0.033022504299879074, 0.007601381279528141, -0.015162293799221516, -0.0012444142485037446, -0.014932970516383648, 0.006768399383872747, -0.047267504036426544, 0.016457293182611465, -0.018723543733358383, 0.00932804774492979, -0.00442458363249898, 0.02625073306262493, 0.00508557353168726, 0.01834583468735218, 0.010926563292741776, 0.030081775039434433, -0.02155635692179203, 0.01164151169359684, -0.010333022102713585, -0.01455526240170002, 0.021664272993803024, -0.0157423447817564, 0.03110698238015175, 0.009065001271665096, 0.05158417299389839, -0.012289011850953102, -0.009530391544103622, -0.0073383343406021595, 0.031026044860482216, 0.011587553657591343, -0.01868307590484619, 0.027262451127171516, 0.006559310480952263, -0.01065002754330635, 0.008208412677049637, -0.008113984949886799, -0.02884073182940483, 0.011857344768941402, 0.027761565521359444, -0.042950838804244995, 0.012909532524645329, -0.01121659018099308, 0.045298025012016296, 0.005733073689043522, 0.018156981095671654, -0.005260938312858343, -0.014177553355693817, -0.01162802241742611, -0.03520781546831131, -0.0031616215128451586, -0.015472553670406342, -0.013799845241010189, -0.03752802684903145, -0.019883647561073303, -0.01152010541409254, -0.019020315259695053, -0.020895367488265038, 0.01893937774002552, -0.04489333927631378, -0.026614950969815254, 0.016093075275421143, 0.011513360776007175, -0.0028884573839604855, 0.0031970315612852573, -0.008687292225658894, -0.016160523518919945, 0.023417919874191284, -0.022041982039809227, -0.005483516026288271, 0.008801953867077827, -0.013948231004178524, 0.0004889974370598793, -0.017981616780161858, 0.01036000158637762, -0.004357135854661465, 0.015162293799221516, 0.020301824435591698, 0.0019408140797168016, 0.00946968887001276, 0.006778516341000795, -0.006441276986151934, 0.01501390803605318, 0.004411094356328249, 0.006724557839334011, 0.0012924708425998688, 0.0075271883979439735, -0.0016061037313193083, -0.0006306380964815617, -0.014460834674537182, 0.007162969559431076, -0.023390939459204674, -0.009442709386348724, -0.002524238545447588, 0.006576172541826963, 0.022338751703500748, -0.014757606200873852, 0.016403336077928543, 0.01888541877269745, 0.00283281272277236, 0.003466823371127248, -0.010589323937892914, 0.006174857262521982, 0.006414297502487898, 0.004404349252581596, -0.008619844913482666, 0.006289518903940916, -0.02065255492925644, 0.018453752622008324, -0.016996877267956734, 0.043814171105623245, 0.039443545043468475, 0.008140964433550835, 0.004316667094826698, -0.030513441190123558, -0.032806672155857086, -0.018575157970190048, 0.022608544677495956, -0.0008464714628644288, 0.01718573085963726, -0.003365651471540332, -0.000596492609474808, -0.038310419768095016, -0.03183542191982269, -0.001128909643739462, 0.023633752018213272, -0.026871252804994583, -0.0291375033557415, -0.0084242457523942, -0.022325262427330017, 0.011816876009106636, -0.007608125917613506, -0.02707359753549099, -0.02011297084391117, -0.0027366995345801115, 0.0063738287426531315, 0.009442709386348724, 0.012774636968970299, 0.0008300310000777245, -0.0058814589865505695, -0.02445661649107933, 0.0011272234842181206, 0.016538230702280998, -0.035963233560323715, 0.00036548342905007303, -0.009786693379282951, 0.0023758532479405403, 0.012282267212867737, 0.022918805480003357, 0.027195002883672714, -0.014986928552389145, -0.006643620785325766, -0.0007060954812914133, 0.013293986208736897, -0.010123933665454388, 0.004350391216576099, -0.012889298610389233, 0.013320964761078358, 0.014663178473711014, 0.010697240941226482, -0.001480481936596334, -0.008909870870411396, 0.003925469238311052, 0.02150239795446396, -0.007459740620106459, 0.008235391229391098, 0.004188516177237034, -0.03526177629828453, -0.00721692806109786, -0.008242136798799038, -0.02824719063937664, -0.01470364723354578, -0.009975547902286053, 0.0008852540049701929, -0.005763425026088953, 0.0018716799095273018, 0.029488231986761093, 0.010144167579710484, 0.021488908678293228, -0.015040887519717216, 0.029623128473758698, -0.002068964997306466, -0.004097461234778166, -0.008997553028166294, 0.0022240953985601664, -0.01469015795737505, 0.0212326068431139, 0.005001263692975044, 0.009334792383015156, 0.018103022128343582, 0.007938620634377003, -0.0128083610907197, 0.002087513217702508, 0.028948649764060974, -0.01150661613792181, -0.007324844598770142, 0.005429557990282774, -0.020733492448925972, -0.01150661613792181, -0.026911722496151924, 0.001790742389857769, 0.005105807911604643, -0.007345078978687525, 0.0048629953525960445, -0.0027417580131441355, 0.018278388306498528, -0.0056487638503313065, 0.007156224921345711, 0.003918724600225687, -0.015526512637734413, 0.05034312978386879, 0.018737033009529114, 0.028139274567365646, 0.01922265812754631, 0.010602814145386219, 0.0010631479090079665, -0.039200734347105026, -0.01834583468735218, 0.007432761136442423, 0.010090209543704987, 0.028058337047696114, -0.008181433193385601, -0.01834583468735218, 0.009530391544103622, -0.0006820671260356903, -0.006940391380339861, -0.01512182503938675, 0.020787449553608894, 0.019559897482395172, -0.0077295321971178055, -0.017280157655477524, 0.0052980342879891396, -0.03380490094423294, 0.006080430466681719, 0.017253179103136063, 0.009523646906018257, 0.014932970516383648, -0.008471459150314331, -0.010022761300206184, 0.008471459150314331, 0.0004750863299705088, 0.015324168838560581, 0.0063299876637756824, 0.0007452995632775128, -0.0043369014747440815, -0.026952190324664116, 0.0010977149941027164, 0.021488908678293228, -0.018130002543330193, 0.03895791992545128, -0.004350391216576099, -0.0061714849434792995, 0.025252502411603928, 0.0037298703100532293, 0.0016634344356134534, -0.012794870883226395, -0.0025141213554888964, 0.03375094011425972, 0.0014214649563655257, -0.020180419087409973, -0.010218360461294651, 0.00989461038261652, 0.019033804535865784, 0.01769833452999592, 0.005126042291522026, 0.007169714197516441, -0.007682318799197674, -0.01544557511806488, 0.004178398754447699, -0.007925131358206272, 0.021340522915124893, 0.003100918373093009, -0.015863751992583275, -0.02479385770857334, -0.03415562957525253, 0.00254278676584363, 0.009496667422354221, -0.02761317975819111, -0.015634428709745407, -0.002082454739138484, -0.030999066308140755, -0.0013616050127893686, -0.009199896827340126, 0.011236824095249176, 0.0030452737119048834, 0.04921000450849533, -0.030108753591775894, 0.007446250878274441, 0.013867293484508991, 0.012133881449699402, -0.009867630898952484, 0.03183542191982269, -0.007500209379941225, -0.01922265812754631, 0.030972087755799294, 0.014474324882030487, -0.007574401795864105, -0.041790734976530075, 0.00799932423979044, 0.0050214980728924274, -0.008397266268730164, 0.04446167126297951, 0.018467241898179054, 0.006414297502487898, 0.01208666805177927, 0.006215326022356749, -0.019640835002064705, -0.0020537893287837505, -0.01891239732503891, -0.010623048059642315, 0.02595396153628826, 0.004505521152168512, -0.00019823366892524064, 0.0012385124573484063, 0.006572800222784281, -0.003790573449805379, -0.014730626717209816, -0.05188094452023506, 0.010744454339146614, -0.0021600197069346905, -0.017522970214486122, -0.011668491177260876, 0.011398699134588242, -0.012019219808280468, -0.018710054457187653, -0.0014248373918235302, 0.008188177831470966, 0.007311354856938124, -0.0010370118543505669, 0.03116094134747982, -0.012194585055112839, -0.003006491344422102, -0.0013093327870592475, 0.0063299876637756824, -0.0162954181432724, -0.030216669663786888, -0.012376694008708, -0.016079585999250412, -0.04362531751394272, 0.024847814813256264, -0.00772278755903244, -0.019870158284902573, -0.02156984619796276, -0.011378465220332146, -0.01633588783442974, -0.006441276986151934, -0.007156224921345711, 0.01224179845303297, 0.023755159229040146, 0.010258829221129417, -0.005652136169373989, -0.003480312880128622, -0.008498438633978367, 0.02819323167204857, -0.006141133606433868, 0.00647837296128273, 0.005308151710778475, -0.00025819908478297293, 0.01148638129234314, -0.010656772181391716, -0.004552735015749931, -0.014595731161534786, -0.01951942965388298, 0.0012671778677031398, 0.022824376821517944, 0.01381333451718092, -0.006883060559630394, 0.00386139377951622, 0.004542617592960596, -0.021704742684960365, 0.015027397312223911, 0.017064325511455536, -4.339325460023247e-05, -0.03323833644390106, 0.0021246096584945917, 0.021772190928459167, 0.003372396109625697, -0.022284794598817825, -0.011290782131254673, -0.006134388502687216, -0.010069974698126316, 0.022203857079148293, -0.011162631213665009, -0.01307815220206976, -0.010413959622383118, -8.251832332462072e-05, 0.02333698235452175, -0.032132189720869064, -0.0013000587932765484, 0.021961044520139694, -0.01601213775575161, -0.002829440403729677, -0.02009948156774044, 0.021165158599615097, -0.018534690141677856, 0.015040887519717216, 0.007284375838935375, -0.009975547902286053, -0.010670261457562447, 0.003176797181367874, -0.0027485028840601444, -0.020881878212094307, 0.0009830534690991044, 0.010967032052576542, 0.0242003146559, -0.00932804774492979, -0.0075271883979439735, 0.030756253749132156, -0.008181433193385601, -0.020504169166088104, 0.003222324652597308, -0.0015875555109232664, 0.0063198707066476345, -0.03785177692770958, 7.90932317613624e-05, -0.04311271384358406, 0.013287241570651531, -0.009543881751596928, 0.019168701022863388, -0.04273500666022301, 0.003753477009013295, 0.010501641780138016, 0.0036421879194676876, 0.008923360146582127, 0.24108585715293884, -0.017617397010326385, -0.011702215299010277, 0.018116513267159462, 0.0038310422096401453, -0.01714526303112507, 0.023822607472538948, 0.012855574488639832, -3.638499401859008e-05, 0.010677006095647812, -0.002797402674332261, 0.0014956577215343714, 0.0023775394074618816, -0.000529887736774981, 0.015067866072058678, -0.019937606528401375, -0.02824719063937664, -0.00990809965878725, -0.03779781609773636, 1.069023255695356e-05, 0.03758198395371437, 0.0023421291261911392, 0.0014383270172402263, -0.0042121228761971, -0.004178398754447699, 0.019937606528401375, -0.0033437309321016073, 0.020301824435591698, 0.0014973438810557127, 0.012896043248474598, -0.015944689512252808, 0.023755159229040146, -0.001496500801295042, -0.018480731174349785, -0.007500209379941225, -0.007270886097103357, 0.022514117881655693, 0.011466147378087044, 0.013725652359426022, 0.0006715283961966634, -0.008950339630246162, -0.013637970201671124, -0.017914168536663055, 0.0030031187925487757, -0.026574483141303062, 0.006437904201447964, 0.02414635755121708, -0.013206304050981998, -0.0012536882422864437, 0.018548179417848587, -0.000564454821869731, -0.016200991347432137, 0.012639741413295269, 0.021367503330111504, 0.001439170097000897, -0.014312449842691422, 0.0372852124273777, -0.014609220437705517, 0.010319532826542854, 0.007958855479955673, -0.008039792999625206, 0.03132281452417374, -0.02469942905008793, 0.004866367671638727, -0.027478285133838654, -0.008930104784667492, -0.044731464236974716, -0.016227969899773598, -0.02650703489780426, -0.03491104394197464, 0.006468256004154682, 0.002303346525877714, 0.0009788379538804293, 0.008795209228992462, -0.016767553985118866, -0.02331000193953514, 0.03785177692770958, 0.008377032354474068, 0.011735938489437103, 0.03296854719519615, -0.006859453860670328, 0.005287917330861092, -0.0066672274842858315, -0.027154535055160522, 0.014474324882030487, -0.03820250555872917, 0.017023855820298195, -0.0071359905414283276, -0.009672032669186592, -0.006738047581166029, 0.03232104703783989, -0.012774636968970299, 0.002055475488305092, -0.015958178788423538, -0.01866958476603031, 0.016686616465449333, -0.0206795334815979, 0.02208244986832142, -0.01036000158637762, 0.010144167579710484, -0.01062979269772768, 0.06210605055093765, 0.033616047352552414, 0.024820836260914803, -0.01976224221289158, 0.0032678518909960985, 0.0007941992953419685, 0.009692266583442688, 0.005436302628368139, -0.011324506253004074, -0.02734338864684105, -0.044353753328323364, -0.006643620785325766, 0.02359328418970108, -0.0169159397482872, 0.013624480925500393, -0.018291877582669258, -0.02097630500793457, -0.007223672699183226, 0.0016002020565792918, 0.04403000324964523, -0.006980860140174627, -0.0062288157641887665, -0.008248881436884403, -0.021016772836446762, -0.013179324567317963, -0.014892501756548882, -0.010589323937892914, -0.013206304050981998, -0.05676417425274849, 0.018197450786828995, -0.002536041894927621, 0.020436720922589302, 0.002505690325051546, 0.0009763087145984173, 0.024820836260914803, 0.01002950593829155, 0.0037467321380972862, 0.007378803100436926, -0.016416825354099274, 0.02449708618223667, 0.0043672532774508, 0.0025090628769248724, -0.016457293182611465, -0.0018699937500059605, -0.012538569048047066, 0.018453752622008324, 0.011540340259671211, -0.014164064079523087, 0.013826824724674225, -0.03612510859966278, 0.002829440403729677, 0.0049203261733055115, -0.00706179765984416, 0.01719922013580799, 0.0034314130898565054, -0.022338751703500748, -0.05266334116458893, -0.0008953711949288845, 0.013300730846822262, -0.017603907734155655, -0.02066604420542717, 0.011081693693995476, -0.023471876978874207, -0.025104116648435593, -0.029191462323069572, -0.17299044132232666, -0.013482839800417423, 0.01369192823767662, -0.026601461693644524, 0.03968635946512222, 0.007385547738522291, 0.004053620155900717, -0.012599272653460503, 0.007129245437681675, -0.007574401795864105, 0.01888541877269745, -0.005385716911405325, -0.015877241268754005, -0.010683751665055752, -0.011034480296075344, 0.014892501756548882, -0.01780625246465206, 0.003035156521946192, 0.05611667409539223, 0.004825898911803961, 0.062160007655620575, -0.00919315218925476, -0.003733242629095912, -8.951340532803442e-06, -0.01224179845303297, -0.0008650196250528097, -0.014393387362360954, 0.007979089394211769, -0.013300730846822262, -0.024240784347057343, -0.00930106919258833, 0.011607787571847439, 0.034776151180267334, 0.006255794782191515, 0.01893937774002552, -0.02156984619796276, 0.011594298295676708, 0.0021296681370586157, 0.01035325601696968, -0.0032745967619121075, -0.012855574488639832, 0.01576932519674301, 0.02062557451426983, -0.012079923413693905, 0.010865860618650913, 0.014757606200873852, 0.005193490069359541, -0.0012638054322451353, 0.008761485107243061, 0.0032982034608721733, 0.008707527071237564, -0.038903962820768356, -0.027127554640173912, -0.007041563279926777, 0.028732815757393837, 0.01482505351305008, 0.011729193851351738, 0.010157657787203789, -0.014420365914702415, -0.006174857262521982, 0.0019947723485529423, -0.0282741691917181, 0.012632995843887329, -0.012525079771876335, -0.04230333864688873, -0.009091979824006557, -0.013617736287415028, 0.012673464603722095, -0.0033825132995843887, 0.010542110539972782, 0.004805664531886578, -0.004006406757980585, -0.004384114872664213, -0.013631225563585758, 0.03415562957525253, -0.02683078497648239, -0.01860213838517666, 0.029919900000095367, 0.033643025904893875, -0.006636875681579113, -0.006289518903940916, 0.031241878867149353, 0.023741669952869415, -0.017388075590133667, -0.004927070811390877, 0.03992917016148567, 0.001326194847933948, -0.008518672548234463, -0.007196693681180477, -0.013476095162332058, 0.033966775983572006, -0.025805575773119926, -0.031889379024505615, -0.013428881764411926, 0.009071745909750462, -0.005979258567094803, -0.01923614740371704, 0.005534102208912373, -0.0157423447817564, -0.006515469402074814, 0.01210015732795, 0.008538907393813133, -0.01456875167787075, 0.015378126874566078, 0.026614950969815254, 0.013867293484508991, 0.0213000550866127, 0.021070731803774834, 0.04651208966970444, -0.000697664450854063, -0.005810638889670372, 0.006980860140174627, 0.015243231318891048, 0.008640078827738762, 0.008282605558633804, 0.030702294781804085, 0.01773880422115326, 0.006002865266054869, 0.008788464590907097, -0.005244076251983643, -0.01544557511806488, -0.007142735179513693, -0.02531995065510273, 0.0249962005764246, 0.015067866072058678, -0.0160526055842638, -0.045567817986011505, -0.010488152503967285, 0.006033217068761587, 0.021016772836446762, -0.0011820248328149319, 0.026601461693644524, 0.007007839158177376, 0.02500968985259533, 0.0026270966045558453, 0.030918128788471222, -0.006323243025690317, -0.0413590669631958, -0.0018598765600472689, 0.007021328900009394, -0.013030938804149628, 0.01895286701619625, 0.011695469729602337, -0.031349796801805496, 0.00654244888573885, 0.012477866373956203, 0.0057937768287956715, 0.0035916019696742296, -0.014096615836024284, -0.019883647561073303, -0.001891914289444685, 0.003365651471540332, -0.02270297147333622, 0.02673635631799698, 0.020018544048070908, -0.008626589551568031, 0.016700105741620064, 0.0169159397482872, 0.0015749090816825628, -0.009382006712257862, -0.00886940211057663, 0.01601213775575161, -0.013907762244343758, -0.016470782458782196, 0.019330576062202454, -0.00626591220498085, 0.0021785679273307323, 0.0025411006063222885, -0.004933815449476242, 0.0002392293536104262, -0.02676333673298359, -0.0050214980728924274, 0.004019896499812603, 0.005075456108897924, -0.013213048689067364, -0.015782814472913742, -0.019101252779364586, -0.0018126629292964935, -0.0032611072529107332, 0.007749766577035189, 0.014892501756548882, 0.015202762559056282, 0.0072371624410152435, 0.005223841872066259, -0.02387656457722187, -0.0038175524678081274, -0.02096281573176384, -0.00531489634886384, -0.021016772836446762, 0.03866115212440491, 0.021731721237301826, 0.019344065338373184, -0.006589662283658981, -0.032159171998500824, 0.013631225563585758, 0.016659637913107872, -0.011830366216599941, 0.007891407236456871, -0.01469015795737505, 0.019033804535865784, -0.019276617094874382, 0.003390944330021739, -0.01926312781870365, -0.009806928224861622, 0.02240619994699955, 0.004117695614695549, -0.015472553670406342, -0.026601461693644524, 0.012929767370223999, -0.01891239732503891, 0.019991565495729446, 0.02093583531677723, -0.005945534445345402, -0.004761823453009129, -0.006717813201248646, -0.03933563083410263, -0.0043369014747440815, 0.0056453910656273365, 0.019937606528401375, -0.00386139377951622, -0.00785768311470747, 0.006023099645972252, 0.007466485258191824, 0.0019458726746961474, -0.00902453251183033, 0.026560992002487183, -0.022271305322647095, -0.020288335159420967, -0.08773625642061234, 0.007048307918012142, -0.00430655013769865, -0.00874799583107233, 0.014406876638531685, -0.004839388653635979, 0.02476687729358673, -0.02124609611928463, -0.0031548766419291496, -0.005409323610365391, -0.04284292086958885, 0.009422475472092628, -0.01657870039343834, -0.01838630437850952, -0.023080680519342422, 0.0008460499229840934, 0.021340522915124893, 0.01892588846385479, 0.007608125917613506, 0.019627345725893974, 0.0027501890435814857, -0.007533933036029339, 0.010177891701459885, 0.018467241898179054, -0.040738545358181, 0.009213386103510857, -0.008228646591305733, 0.03167354688048363, 0.009051511064171791, -0.015040887519717216, -0.016227969899773598, -0.015796303749084473, -0.01278812624514103, -0.009779948741197586, 0.0015555177815258503, -0.017941147089004517, -0.00019412355322856456, -0.0033437309321016073, 0.009597839787602425, 0.03863416984677315, -0.01866958476603031, 0.004738216754049063, 0.014393387362360954, 0.02066604420542717, -0.0034061202313750982, -0.013509819284081459, -0.0005800521466881037, 0.01369867380708456, 0.005584687925875187, 0.011189610697329044, 0.039443545043468475, 0.017563439905643463, -0.005675742868334055, -0.021623805165290833, -0.018831459805369377, -0.0548216737806797, -0.0005387403070926666, 0.014865522272884846, -0.0008970574126578867, -0.007938620634377003, 0.02478036656975746, -0.010656772181391716, 0.012430652044713497, 0.002682741265743971, -0.001220807433128357, -0.02266250178217888, -0.033589065074920654, -0.007162969559431076, 0.03582833707332611, -0.04567573592066765, -0.04276198521256447, -0.01337492372840643, -7.002991333138198e-05, -0.005018125753849745, -0.0024584769271314144, -0.013003960251808167, 0.003777083707973361, 0.002517493674531579, -0.016781043261289597, 0.004940560553222895, 0.006829102523624897, -0.00046791997738182545, -0.02469942905008793, 0.018548179417848587, 0.019398022443056107, 0.008451225236058235, -0.027707606554031372, -0.0022561331279575825, -0.004330156836658716, 0.00886940211057663, -0.03434448316693306, 0.010737709701061249, 0.015040887519717216, 0.011897813528776169, 0.002340442966669798, 0.014811564236879349, 0.010515131056308746, 0.004208750557154417, 0.03663771227002144, -0.01664614863693714, 0.011317761614918709, -0.006259167566895485, 0.010447683744132519, -0.005112552549690008, 0.005679115187376738, 0.00991484522819519, -0.028301149606704712, -0.03205125406384468, -5.353679080144502e-05, 0.0029390433337539434, -0.014771095477044582, 0.013921251520514488, -0.032159171998500824, 0.043220631778240204, -0.024254273623228073, 0.00531489634886384, -0.009382006712257862, -0.020139949396252632, -0.028409065678715706, 0.009186407551169395, 0.01714526303112507, 0.02418682537972927, 0.024510575458407402, -0.020261356607079506, 0.03283365070819855, -0.03558552637696266, 0.010757943615317345, -0.0035781124606728554, 0.03153865039348602, 0.0029643361922353506, -0.005227214191108942, 0.028085315600037575, -0.0013759376015514135, -0.03194333612918854, -0.006397435441613197, 0.017576929181814194, 0.007823958992958069, -0.010946798138320446, -0.007156224921345711, 0.05479469522833824, 0.021677762269973755, -0.008154453709721565, 0.015243231318891048, -0.009429220110177994, 0.005014752969145775, 0.01951942965388298, -0.0007701709982939065, -0.003682656679302454, -0.0361790657043457, 0.012059688568115234, -0.009955313988029957, -0.0023067190777510405, -0.014447345398366451, -0.03661073371767998, 0.013179324567317963, -0.02674984745681286, 0.02739734761416912, -0.006643620785325766, 0.01500041875988245, 0.038903962820768356, 0.026345159858465195, 0.008808698505163193, 0.0015614194562658668, -0.022257814183831215, -0.016767553985118866, 0.03229406476020813, 0.00524070393294096, 0.010299297980964184, -0.015243231318891048, 0.031080003827810287, 0.0068560815416276455, -0.045567817986011505, -0.018183959648013115, 0.011122162453830242, 0.0018615627195686102, -0.01282185036689043, -0.01571536622941494, 0.017671355977654457, -0.0026304691564291716, -0.008586120791733265, -0.0035140367690473795, -0.01953291893005371, -0.03561250492930412, 0.026682399213314056, 0.019317084923386574, -0.011904559098184109, 0.0037467321380972862, 0.010825391858816147], "e7b19daa-0975-4df6-a2d9-19f1be4fed5c": [0.005333800334483385, -0.021322209388017654, 0.006551933940500021, -0.0035764400381594896, -0.026506584137678146, -0.0014365854440256953, -0.017216287553310394, -0.03289934992790222, 0.01928224042057991, -0.010427222587168217, 0.018788490444421768, 0.010329771786928177, -0.012226811610162258, 0.0008437604992650449, -1.3450224287225865e-05, 0.013669081963598728, 0.004684129264205694, -0.00625633355230093, -0.00035934938932769, -0.02414178103208542, 0.014435693621635437, -0.005385774187743664, -0.005171382799744606, -0.011927963234484196, -0.006834540981799364, 0.02544112503528595, 0.008380758576095104, -0.01820378750562668, 0.02993684820830822, -0.014006910845637321, 0.02155609056353569, -0.015124345198273659, -0.004729606211185455, -0.014877470210194588, 0.006139392964541912, 0.001962007023394108, -0.008718587458133698, 0.0008843649411574006, -0.0048010703176259995, 0.021101320162415504, 0.0377848781645298, 0.015592108480632305, 0.023479117080569267, 0.020854445174336433, -0.035939812660217285, -0.0043625421822071075, -0.01355214137583971, 0.02671447955071926, 0.0005229852977208793, 0.03536809980869293, -8.552312647225335e-05, -0.014656581915915012, -0.02524622343480587, -0.038382574915885925, -0.013643095269799232, -0.016800496727228165, -0.0013967930572107434, 0.011180841363966465, -0.006090667564421892, -0.010284295305609703, -0.006918998435139656, 0.020594576373696327, -0.03731711208820343, -0.018320728093385696, -0.0022738492116332054, 0.00029661550070159137, -0.0295990202575922, 0.018411681056022644, -0.01435773354023695, 0.0052006179466843605, 0.03807073086500168, 0.01564408279955387, -0.00625633355230093, -0.014032897539436817, 0.028403624892234802, -0.000592418946325779, -0.01950312964618206, -0.007627139799296856, -0.0013602491235360503, 0.0028845402412116528, 0.028377637267112732, 0.005031703505665064, 0.008608143776655197, -0.008842024952173233, 0.010894985869526863, 0.005736596882343292, -0.009628127329051495, 0.016969412565231323, -0.008315791375935078, -0.009140873327851295, 0.004014967940747738, 0.000470605562441051, 0.000673221773467958, 0.019165299832820892, 0.005317559000104666, 0.010615627281367779, 0.010427222587168217, 0.00610366091132164, 0.018047865480184555, -0.017567109316587448, -0.004284581635147333, 0.026155762374401093, -0.027650006115436554, 0.003852550173178315, -0.03453652188181877, -0.02069852501153946, 0.027416124939918518, -0.0091148866340518, 0.00995945930480957, 0.00620111171156168, -0.028845401480793953, 0.018190793693065643, 0.030534546822309494, -0.01913931407034397, -0.027390137314796448, 0.007048932369798422, 0.010933966375887394, -0.019269248470664024, 0.0012563016498461366, 0.00046126655070111156, 0.01299992110580206, 0.012545150704681873, 0.031366124749183655, 0.015800002962350845, 0.004849795717746019, 0.039655931293964386, -0.020451650023460388, -0.012213818728923798, -0.010758555494248867, -0.007152880076318979, 0.05173981562256813, 0.0028666742146015167, 0.020347701385617256, -0.01520230621099472, -0.01520230621099472, 0.011908473446965218, -0.022985367104411125, 0.008419739082455635, -0.005223356653004885, -0.013194821774959564, 0.02793586254119873, 0.013500167988240719, -0.012681582011282444, -0.014734542928636074, 0.001026480458676815, 0.026402637362480164, 0.02067253738641739, 0.026259709149599075, 0.00869909767061472, -0.015059377998113632, 0.023076321929693222, -0.024648524820804596, 7.00934324413538e-05, -0.01090148277580738, -0.008855018764734268, 0.0015218547778204083, 0.02668849378824234, -0.015864970162510872, -0.014409706927835941, -0.010758555494248867, -0.013786022551357746, 0.023427143692970276, 0.017437174916267395, -0.0006939300219528377, -0.014721549116075039, 0.03250954672694206, -0.0060744257643818855, -0.02544112503528595, -0.015903951600193977, 0.012584131211042404, -0.005583923775702715, 0.005609910935163498, -0.03292533755302429, 0.013980924151837826, -0.0019457652233541012, 0.010920972563326359, -0.002640913473442197, 0.014032897539436817, -0.008517189882695675, -0.0165926031768322, -0.009374755434691906, 0.005918504670262337, 0.003267846070230007, 0.010186844505369663, -0.014721549116075039, -0.027779940515756607, 0.0014357733307406306, -0.024791453033685684, 0.025960860773921013, -0.01700839214026928, 0.022842438891530037, 0.027208229526877403, 0.002887788461521268, -0.014526648446917534, -0.6124580502510071, -0.019814971834421158, -0.00232744705863297, 0.014409706927835941, 0.016475660726428032, 0.002701007993891835, 0.023661024868488312, 0.04267040267586708, -0.029001321643590927, 0.04007171839475632, -0.019295234233140945, 0.008588653057813644, -0.022257735952734947, 0.006077674217522144, 0.002683141967281699, -0.02710428275167942, -0.00965411402285099, -0.02147812955081463, -0.0029560038819909096, 0.014656581915915012, -0.0471661277115345, 0.029261190444231033, -0.03123619221150875, -0.015059377998113632, 0.017878951504826546, -0.009991942904889584, 0.00944621954113245, 0.0004620786348823458, 0.0067695737816393375, 0.03773290291428566, -0.04020165279507637, 0.029339151456952095, 0.025519084185361862, 0.010972946882247925, 0.04092928394675255, -0.007035939022898674, -0.029702967032790184, -0.002585691399872303, -0.00811439286917448, 0.03900625929236412, -0.028507571667432785, -0.0002803737297654152, 0.002043216023594141, -0.008517189882695675, 0.008062419481575489, 0.005788570269942284, 0.02016579359769821, -0.04235856235027313, -0.01520230621099472, 0.03580987825989723, 0.0005457238294184208, -0.021270236000418663, 0.014747535809874535, -0.020373689010739326, 0.0229203999042511, 0.0044794827699661255, 0.021374182775616646, -0.0513240247964859, -0.005986720323562622, -0.014604608528316021, -0.028091782703995705, 0.02527220919728279, -0.0017865957925096154, -0.0076336367055773735, 0.01615082658827305, 0.024986354634165764, -0.01116784755140543, -0.016852470114827156, -0.0008997946279123425, -0.0029495072085410357, 0.014045891351997852, 0.005090173799544573, 0.0007507762638852, 0.012519164010882378, 0.023985860869288445, 0.03206777200102806, 0.01847664825618267, -0.022829445078969002, -0.007204853463917971, 0.013863983564078808, -0.00210168631747365, -0.025181256234645844, -0.008926481939852238, -0.03895428404211998, 0.01725526712834835, -0.033912837505340576, -0.021543096750974655, -0.01833372190594673, 0.027208229526877403, -0.0030485820025205612, 0.004888775758445263, 0.0075491792522370815, 0.0053532905876636505, -0.028819413855671883, 0.005954236723482609, 0.021867932751774788, -0.010739064775407314, -0.01644967496395111, -0.0002874795172829181, 0.012233308516442776, -0.0153972078114748, 0.010232320986688137, 0.011921466328203678, -0.010492189787328243, 0.02072451077401638, 0.00012739645899273455, -0.0419427715241909, -0.004982978105545044, 0.006344039458781481, -0.026428624987602234, 0.013773029670119286, -0.014604608528316021, -0.005168134346604347, -0.013435200788080692, -0.0038168183527886868, -0.04669836536049843, 0.005112912505865097, 0.015280266292393208, -0.010375249199569225, -0.008354771882295609, -0.008718587458133698, 0.0047263577580451965, 0.02055559679865837, -0.005359787493944168, 0.01176554523408413, 0.017073359340429306, 0.02255658432841301, -0.014539641328155994, 0.005129154305905104, 0.009303291328251362, 0.0009647617116570473, -0.009329278022050858, 0.008088406175374985, -0.0024687505792826414, 0.007074919529259205, 0.024596551433205605, -0.0036349103320389986, -0.013233802281320095, 0.030170731246471405, -0.008738077245652676, -0.00359917851164937, 0.001715131918899715, -0.016306746751070023, -0.011616121046245098, 0.020269742235541344, -0.04053948447108269, -0.02705230936408043, -0.002843935741111636, 0.00016901602793950588, 0.009732075035572052, 0.009719081223011017, -0.0038915304467082024, -0.01247368659824133, 0.027390137314796448, -0.015267273411154747, 0.013461187481880188, -0.007295807357877493, -0.013837996870279312, 0.0010134871117770672, -0.030300665646791458, -0.013578128069639206, 0.012389229610562325, -0.024921387434005737, -0.006106909364461899, -0.012558144517242908, -0.018931418657302856, -0.0037713414058089256, -0.007627139799296856, -0.015994904562830925, -0.0231412872672081, 0.0012619863264262676, 0.0139159569516778, 0.014084871858358383, 0.0016071241116151214, 0.016501648351550102, -0.003719367552548647, 0.0032808396499603987, 0.015189312398433685, -0.015592108480632305, -0.0010890113189816475, 0.02527220919728279, 0.022322703152894974, 0.005184376146644354, -0.004664639011025429, 0.021906912326812744, 0.016579609364271164, 0.033029284328222275, 0.022595563903450966, -0.016345728188753128, -0.007848028093576431, -0.009732075035572052, 0.0105961374938488, 0.011213324964046478, 0.00027225282974541187, 0.013617108575999737, 0.009023932740092278, 0.01603388600051403, 0.025597045198082924, -0.002731867367401719, 0.028507571667432785, 0.042904287576675415, 0.008705593645572662, -0.0071593765169382095, -0.020815465599298477, 0.013669081963598728, -0.01994490623474121, -0.007640133146196604, -0.012213818728923798, 0.035472046583890915, 0.015319246798753738, -0.016111845150589943, -0.04056546837091446, -0.038408562541007996, -0.01322080846875906, 0.03531612828373909, 0.005168134346604347, -0.030924350023269653, 0.011089887470006943, -0.016631582751870155, 0.010043916292488575, 0.0012749796733260155, -0.00435604527592659, 0.016969412565231323, -0.03474441543221474, 0.013129854574799538, 0.02136118896305561, -0.008335281163454056, 0.047867774963378906, 0.0015267273411154747, -0.006964475382119417, -0.03349704667925835, -0.0015275394544005394, 0.0004352797113824636, 0.003012850182130933, 0.02590888738632202, -0.0278319139033556, 0.02421974204480648, -0.03113224357366562, 0.018515629693865776, 0.010537667199969292, 0.00496023939922452, -0.00921233743429184, 0.02796184830367565, -0.02038668282330036, 0.03934408724308014, -0.014071878045797348, 0.0410592183470726, 0.020230760797858238, -0.03729112818837166, -0.018411681056022644, -0.021647043526172638, -0.022296715527772903, -0.016956418752670288, -0.0018466904293745756, -0.008997946046292782, -0.015293260104954243, 0.00034919826430268586, 0.0038785370998084545, 0.019490135833621025, 0.024869414046406746, 0.0007044872036203742, 0.027338163927197456, -0.0009428353514522314, -0.009433225728571415, 0.01806085929274559, -0.020009873434901237, -0.001659909961745143, -0.00830929446965456, -0.027390137314796448, -0.008861514739692211, 0.004723109770566225, -0.009186350740492344, 0.02519425004720688, -0.012356746010482311, -0.004541201516985893, -0.004187130834907293, -0.002244614064693451, 0.03895428404211998, 0.024739479646086693, 0.004749096464365721, -0.00901743583381176, -0.012291778810322285, 0.02116628736257553, -0.008965462446212769, -0.0014991163043305278, 0.02138717658817768, -0.034276653081178665, 0.0018856707029044628, 0.007770067546516657, 0.013422206975519657, 0.025700991973280907, 0.01908734068274498, -0.010316778905689716, 0.0005469419411383569, -0.008257321082055569, -0.00509667070582509, 0.02868947945535183, 0.004339803475886583, -0.0139159569516778, -0.006717600394040346, 0.016475660726428032, -0.005609910935163498, -0.01767105609178543, -0.0029836150351911783, 0.02488240785896778, 0.012792025692760944, -0.017151320353150368, -0.016384707763791084, 0.009550166316330433, -0.0012002675794064999, -0.032249677926301956, -0.010427222587168217, 0.00439827423542738, -0.021673031151294708, -0.02316727489233017, 0.009745067916810513, -0.0037745896261185408, 0.000434061570558697, 0.032171718776226044, 0.019152307882905006, -0.029702967032790184, -0.02321924827992916, 0.0026490343734622, 0.004239104688167572, 0.00615238631144166, -0.0018450662028044462, 0.010953456163406372, 0.009452715516090393, -0.01240222342312336, -0.030092770233750343, -0.04396974667906761, -0.007763570640236139, -0.00880954135209322, -0.03183388710021973, -0.006188118364661932, -0.016696549952030182, 0.016462668776512146, -0.02344013750553131, 0.030170731246471405, -0.008335281163454056, -0.00579831562936306, 0.006776070687919855, 0.012389229610562325, -0.01560510229319334, -0.005470231641083956, -0.003152529476210475, 0.008634130470454693, 0.017632076516747475, -0.0025109790731221437, 0.007997452281415462, 0.015280266292393208, 0.020438656210899353, -0.0004701995349023491, 0.011882485821843147, 0.005281826946884394, 0.008029935881495476, -0.022205760702490807, 0.031755927950143814, -0.009537173435091972, 0.03128816559910774, 0.007139886263757944, 0.060601331293582916, -0.0017752265557646751, -0.0016907693352550268, -0.01698240451514721, 0.04009770601987839, 0.005301317200064659, -0.0021000620909035206, -0.004862789064645767, -0.005509211681783199, 0.011161351576447487, 0.015215299092233181, -0.014526648446917534, -0.025700991973280907, 0.02668849378824234, 0.02661053277552128, -0.032249677926301956, 0.005947739817202091, 0.006376523058861494, 0.042020734399557114, -0.025947866961359978, 0.013233802281320095, -0.018567603081464767, -0.011655101552605629, -0.02668849378824234, -0.01199942734092474, -0.016956418752670288, -0.0126101179048419, -0.01991891860961914, -0.015332240611314774, -0.008510692976415157, -0.01842467486858368, -0.014474674127995968, -0.00871209055185318, 0.007282814010977745, -0.03986382484436035, -0.019516123458743095, -0.007731087505817413, 0.031755927950143814, 0.004560691770166159, 0.02710428275167942, -0.00018678046762943268, -0.020737504586577415, 0.024713492020964622, 0.007276317570358515, -0.020906418561935425, 0.016306746751070023, -0.029858889058232307, 0.004840050358325243, 0.0033912835642695427, -0.002808203687891364, 0.009738571010529995, -0.01160962413996458, 0.011369246058166027, 0.007900001481175423, 0.011875989846885204, 0.026974348351359367, 0.0045996722765266895, 0.006737090181559324, -0.012259295210242271, -0.01169408205896616, 0.03640757501125336, -0.00409942539408803, -0.0008689352544024587, 0.018801484256982803, -0.02272549830377102, -0.011622617952525616, -0.020399674773216248, -0.0011507300660014153, -0.009303291328251362, 0.016111845150589943, 0.003235362470149994, -0.026311684399843216, 0.022569578140974045, -0.003859046846628189, -0.015384213998913765, 0.01786595769226551, 0.0006740338867530227, 0.04597073420882225, 0.0030225953087210655, -0.0073867617174983025, 0.015384213998913765, -0.013734049163758755, -0.013941943645477295, 0.006698110140860081, -0.03399079665541649, 0.033055271953344345, 0.013850989751517773, 0.002140666591003537, 0.015942931175231934, -0.023700006306171417, -0.014084871858358383, -0.01906135305762291, 0.030898362398147583, 0.016137832775712013, 0.014305760152637959, 0.00143739755731076, -0.011226318776607513, -0.0009265935514122248, -0.015683062374591827, -0.026532571762800217, 0.02477845922112465, -0.03240559995174408, -0.02516826242208481, -0.018398689106106758, -0.0016858967719599605, 0.000868123141117394, 0.031807903200387955, 0.009049919433891773, -0.0266365185379982, -0.00095014413818717, -0.006223849952220917, 0.00749720586463809, 0.013993917964398861, 0.036277640610933304, 0.019321221858263016, -0.024180762469768524, 0.0024346427526324987, 0.006564927287399769, -0.027624020352959633, -0.004840050358325243, -0.022569578140974045, -0.01416283193975687, 0.020594576373696327, 0.03931809961795807, 0.0067695737816393375, 0.0027659751940518618, -0.013201318681240082, -0.012694574892520905, 0.010907979682087898, -0.02529819682240486, -0.001705386908724904, 0.005619655828922987, 0.004161144141107798, -0.009810035116970539, 0.018411681056022644, 0.008107896894216537, 0.013786022551357746, 0.006841037888079882, 0.006938488222658634, -0.0029673732351511717, -0.0019425168866291642, -0.013123358599841595, -0.04342402145266533, 0.00023286651412490755, -0.030248690396547318, -0.03204178437590599, 0.018684543669223785, -0.012291778810322285, -0.01745016872882843, -0.03898027166724205, -0.006730593740940094, 0.03853849694132805, 0.03783684968948364, 0.009108390659093857, -0.016501648351550102, 0.018554609268903732, -0.004648397210985422, 0.004947246052324772, 0.0062270984053611755, 0.00305183045566082, -0.009400742128491402, 0.025402143597602844, 0.011427716352045536, 0.011388735845685005, 0.035524021834135056, -0.013643095269799232, 0.011005430482327938, -0.012714065611362457, 0.04189079999923706, -0.01759309694170952, -0.026896387338638306, -0.01136274915188551, -0.035887837409973145, -0.020009873434901237, -0.02160806395113468, -0.006873521488159895, -0.0005327303661033511, -0.008289804682135582, -0.0010370376985520124, 0.011947453022003174, 0.0020724511705338955, 0.005515708588063717, -0.013155842199921608, 0.011473193764686584, -0.03084638901054859, 0.029754940420389175, 0.008718587458133698, 0.03326316550374031, 0.00811439286917448, -0.002811452141031623, -0.02546711079776287, -0.03417270630598068, -0.03697928413748741, -0.005229853093624115, 0.020152799785137177, 0.023959873244166374, 0.005301317200064659, -0.031807903200387955, 0.007321794517338276, 0.0018320727394893765, -0.005262336693704128, -0.030976323410868645, 0.01667056232690811, 0.002775720087811351, -0.008452222682535648, -0.003911020699888468, 0.014344739727675915, -0.02047763578593731, 0.02568800002336502, 0.003417270490899682, -0.007295807357877493, -0.01456562802195549, -0.004940749611705542, 0.007230840623378754, -0.002811452141031623, -0.012895973399281502, 0.010888488963246346, 0.008900495246052742, 0.0059899683110415936, -0.0033393099438399076, -0.022881420329213142, -0.0307944156229496, -0.0021049347706139088, 0.0002320544299436733, 0.039655931293964386, -0.012259295210242271, -0.006373274605721235, 0.02993684820830822, 0.008400248363614082, -0.017385201528668404, -0.015488161705434322, -0.000609066744800657, 0.036771390587091446, 0.0008851769962348044, 0.007133389823138714, -0.00640900619328022, 0.010927469469606876, 0.01717730611562729, 0.003654400585219264, -0.0013383226469159126, -0.020737504586577415, 0.0012985302601009607, -0.00706192571669817, 0.01803487166762352, 0.0012351874029263854, 0.0006480470183305442, -0.015293260104954243, -0.02405082806944847, -0.013370233587920666, -0.035835862159729004, -0.005304565187543631, -0.009602140635251999, -0.032977309077978134, -0.023154281079769135, -0.013825003057718277, -0.04591875895857811, 0.002728619147092104, 0.006597410887479782, -0.001879173913039267, 0.009985445998609066, 0.03978586569428444, -0.009810035116970539, -0.003165522823110223, 0.01191496942192316, 0.0009875001851469278, -0.026922374963760376, -0.02414178103208542, -0.013980924151837826, -0.04009770601987839, 0.011817519553005695, 0.008913489058613777, 0.004781580064445734, 0.008939475752413273, 0.019542109221220016, 0.03905823081731796, -0.003469244111329317, 0.00954367034137249, -0.002804955467581749, 0.0036479036789387465, 0.016306746751070023, -0.035082243382930756, -0.024596551433205605, -0.0012124489294365048, -0.004901769105345011, 0.014305760152637959, 0.032249677926301956, 0.0021861435379832983, -0.00944621954113245, 0.020412668585777283, -0.009686597622931004, 0.007757074199616909, 0.004070190247148275, -0.043268103152513504, 0.01564408279955387, 0.00645773159340024, -0.012519164010882378, -0.028559545055031776, -0.03328915312886238, -0.006821547634899616, -0.015825990587472916, 0.01435773354023695, 0.009952962398529053, 0.0015275394544005394, 0.01820378750562668, 0.026350663974881172, -0.01583898440003395, 0.019490135833621025, -0.012259295210242271, -0.025129282847046852, -0.020633557811379433, -0.025558065623044968, -0.00595748471096158, -0.02666250616312027, -0.03082040138542652, 0.03331514075398445, 0.0008015318308025599, -0.009784048423171043, -0.010173850692808628, -0.036329612135887146, -0.02382993884384632, -0.009179853834211826, -0.015618096105754375, 0.026974348351359367, 0.021426156163215637, 0.00430731987580657, -0.012681582011282444, 8.634789992356673e-06, 0.009790545329451561, -0.005428002681583166, -0.024284709244966507, -0.01725526712834835, -0.016462668776512146, -0.0006472349050454795, 0.011538160964846611, -0.002759478520601988, 0.012876483611762524, -0.005778825376182795, -0.017242273315787315, -0.015851978212594986, 0.017385201528668404, 0.02488240785896778, 0.016696549952030182, -0.004927756264805794, -0.022270727902650833, -0.025012340396642685, 0.007425741758197546, -0.0019408926600590348, 0.01764507032930851, -0.024089807644486427, 0.012824509292840958, 0.019178293645381927, 0.0062855686992406845, -0.016631582751870155, 0.005070683546364307, 0.011063900776207447, -0.006240091752260923, 0.01625477336347103, -0.009355265647172928, -0.008023438975214958, -0.01872352324426174, 0.003612171858549118, 0.016748523339629173, -0.01216834131628275, -0.005736596882343292, 0.020399674773216248, -0.011791531927883625, 0.00011450454621808603, -0.019178293645381927, 0.019373195245862007, -0.0029040302615612745, 0.023427143692970276, 0.015514148399233818, -0.0014820623910054564, -0.031392112374305725, 0.00033681391505524516, 0.000901418796274811, -0.01416283193975687, -0.016436681151390076, 0.015890957787632942, 0.021010367199778557, -0.04308619350194931, 0.016774510964751244, -0.0028228212613612413, -0.00032828698749653995, 0.0059217531234025955, -0.0001498304191045463, 0.004950494505465031, -0.0019132817396894097, -0.042124681174755096, 0.000904667132999748, -0.016241779550909996, 0.016215793788433075, 0.023492110893130302, -0.003209375776350498, -0.02399885468184948, 0.029806913807988167, 0.004170889034867287, -0.008237830363214016, 0.01356513425707817, 0.23554478585720062, 0.013812010176479816, 0.011518670246005058, 0.03903224691748619, 0.03638158738613129, 0.008335281163454056, 0.022686518728733063, 0.02414178103208542, 0.01456562802195549, -0.001729749608784914, 0.004222862888127565, -0.013292272575199604, -0.019022373482584953, 0.005428002681583166, -0.00297874235548079, -0.02399885468184948, -0.020620563998818398, -0.029780928045511246, -0.023622045293450356, -0.0030290919821709394, 0.0406174436211586, -0.02497336082160473, 0.0008124950691126287, -0.0008421362726949155, -0.010030923411250114, 0.013129854574799538, -0.007464722264558077, 0.01778799667954445, 0.01537122018635273, 0.00039528432535007596, -0.023271221667528152, 0.015851978212594986, -0.00595748471096158, 0.0022884667851030827, -0.008517189882695675, -0.01891842484474182, 0.03781086206436157, 0.03760296851396561, 0.017684049904346466, 0.026207735762000084, 0.016605595126748085, -0.004804318305104971, 0.0033880353439599276, -0.009660610929131508, -0.011856499128043652, 0.003121670102700591, -0.01295444369316101, -0.015968918800354004, 0.025402143597602844, 0.01764507032930851, -0.015137339010834694, -0.012753046117722988, 0.05659935623407364, 0.0299108624458313, -0.011356252245604992, -0.011297781951725483, 0.021231254562735558, -0.03477040305733681, 0.00013947628031019121, 0.014266779646277428, -0.013025907799601555, 0.028091782703995705, -0.0364595465362072, 0.0008754319278523326, -0.010875496082007885, 0.01656661555171013, 0.0011020047822967172, 0.016722537577152252, -0.018190793693065643, -0.02424572966992855, -0.002938138088211417, 0.0060386937111616135, 0.024739479646086693, 0.027338163927197456, -0.013032404705882072, -0.03373092785477638, 0.03599178418517113, 0.03516020625829697, 0.029313163831830025, 0.028611520305275917, -0.00023347558453679085, 0.016826484352350235, -0.005752838682383299, 0.015800002962350845, -0.016943424940109253, -0.006847534328699112, -0.005086925346404314, -0.010758555494248867, 0.00400197459384799, 0.0029413863085210323, 0.015306253917515278, -0.023154281079769135, -0.004875782411545515, -0.014240792952477932, -0.014643589034676552, 0.010004936717450619, -0.009810035116970539, 0.018320728093385696, -0.0029430105350911617, 0.011947453022003174, -0.01116784755140543, 0.015514148399233818, 0.027338163927197456, 0.012740052305161953, 0.004794573411345482, 0.0016452922718599439, -0.01146019995212555, 0.020633557811379433, -0.010940463282167912, -0.02749408595263958, -0.010868999175727367, -0.043683890253305435, 0.008855018764734268, 0.002439515432342887, -0.018515629693865776, 0.016826484352350235, -0.018489642068743706, -0.024427637457847595, -0.03074244037270546, 0.01015436090528965, 0.03939606249332428, -0.022179774940013885, 0.00524934334680438, 0.00790649838745594, 0.0009322781697846949, 0.009647617116570473, -0.01689145155251026, -0.012122864834964275, -0.014006910845637321, -0.03214573115110397, 0.018216781318187714, -0.010635118000209332, 0.02180296555161476, -0.0011101256823167205, 0.011031417176127434, 0.010186844505369663, -0.015137339010834694, 0.003378290217369795, 0.00951768271625042, 0.004596423823386431, -0.01560510229319334, -0.002725370693951845, 0.005723603069782257, 0.023401156067848206, 0.005479976534843445, -0.005814557429403067, -0.005151892546564341, -0.001650976948440075, 0.016930431127548218, -0.008133883588016033, -0.0559236966073513, -0.02661053277552128, 0.013123358599841595, -0.008068916387856007, 0.009965956211090088, 0.0004896896425634623, -0.010108883492648602, -0.0349523089826107, 0.001544593251310289, 0.01180452574044466, -0.026506584137678146, -0.02874145470559597, 0.007347781211137772, -0.028403624892234802, -0.00665263319388032, -0.002536965999752283, -0.1630934625864029, 0.004736103117465973, 0.025142274796962738, -0.04997270926833153, 0.036329612135887146, 0.0037810862995684147, 0.0033328132703900337, -0.03445855900645256, -0.011986433528363705, 0.008107896894216537, 0.01759309694170952, -0.007685610093176365, -0.012044903822243214, -0.018216781318187714, 0.0016794000985100865, -0.009426728822290897, -0.025116289034485817, 0.018931418657302856, 0.021621057763695717, 0.010894985869526863, 0.055144090205430984, -0.014448687434196472, 0.0020367191173136234, -0.009439722634851933, 6.100818791310303e-05, 0.0013967930572107434, -0.003414022270590067, 0.006685116793960333, 0.006002962123602629, -0.03399079665541649, -0.011245808564126492, -0.0006086606881581247, -0.004200124181807041, -0.0073607745580375195, -0.0003971115220338106, -0.030144743621349335, 0.018047865480184555, 0.011759048327803612, 0.0034432574175298214, 0.013695068657398224, 0.013526154682040215, 0.010914476588368416, 0.021322209388017654, 0.001617681235074997, 0.006789064034819603, 0.03396480903029442, 0.013032404705882072, 0.01170707494020462, 0.009426728822290897, -0.0012863490264862776, 0.013155842199921608, -0.016709543764591217, -0.03237961232662201, -0.009829524904489517, 0.025285203009843826, 0.0013626853469759226, 0.007022945675998926, 0.021101320162415504, 0.0071593765169382095, -0.017242273315787315, 0.01617681235074997, -0.03412073105573654, -0.015657076612114906, 0.004531456623226404, -0.015501154586672783, -0.003420518944039941, -0.00686052767559886, 0.015877963975071907, 0.009582649916410446, 0.0032516042701900005, 0.02713026851415634, -0.044983234256505966, -0.019711025059223175, -0.0307944156229496, 0.029027309268712997, -0.0017654814291745424, -0.015800002962350845, 0.029235204681754112, 0.02214079536497593, -0.002251110738143325, -0.014019904658198357, 0.044983234256505966, 0.02169901877641678, -0.01598191075026989, 0.011070397682487965, 0.037499021738767624, 0.010004936717450619, -0.0011353003792464733, -0.036251652985811234, 0.0005449117161333561, 0.022374676540493965, -0.0029852392617613077, -0.01778799667954445, -0.01603388600051403, 0.030248690396547318, -0.013201318681240082, -0.005307813640683889, 0.008997946046292782, -0.035887837409973145, -0.008569163270294666, 0.013064887374639511, -0.007731087505817413, -0.003988981246948242, 0.019295234233140945, 0.01620279997587204, 0.021452143788337708, 0.009095396846532822, 0.01767105609178543, 0.01891842484474182, -0.016969412565231323, -0.01416283193975687, 0.005239598453044891, 0.0345105342566967, 0.03289934992790222, 0.005470231641083956, 0.015553128905594349, -0.012350249104201794, 0.003699877532199025, -0.01886645145714283, -0.014370727352797985, 0.008887502364814281, 0.00042472255881875753, -0.005311062093824148, 0.03718717768788338, 0.005415009334683418, -0.01664457656443119, -0.04464540630578995, -0.0159299373626709, -0.014695562422275543, 0.011115874163806438, -0.014682569541037083, 0.009368258528411388, -0.007854524999856949, 0.021543096750974655, -0.01066760066896677, 0.007172369863837957, -0.0004892836441285908, -0.0377848781645298, -0.020958393812179565, 0.014305760152637959, -0.021010367199778557, -0.005661884322762489, 0.022842438891530037, -0.02289441227912903, 0.019788984209299088, 0.026766452938318253, -0.0064642284996807575, -0.01537122018635273, -0.030222704634070396, -0.009270807728171349, -0.031366124749183655, -0.018216781318187714, -0.024323688820004463, 0.0061231511645019054, 0.02077648416161537, -0.0054117608815431595, 0.03412073105573654, 0.0002633198455441743, 0.0030924349557608366, 0.0018385695293545723, -0.03084638901054859, -0.009907485917210579, -0.056391458958387375, -0.028377637267112732, 0.0014544513542205095, -0.000677688280120492, 0.012213818728923798, -0.01955510303378105, 0.010004936717450619, -0.024531584233045578, -0.018710531294345856, -0.017073359340429306, -0.017580103129148483, 0.014734542928636074, -0.009641120210289955, -0.01689145155251026, -0.004346300382167101, 0.0004986226558685303, -0.0005940431146882474, -0.03471842780709267, 0.0050576901994645596, 0.017580103129148483, 0.005262336693704128, 0.014721549116075039, -0.012571137398481369, 0.010700084269046783, -5.227822839515284e-05, 0.00954367034137249, 0.0010175475617870688, 0.030664481222629547, -0.009160364046692848, 0.015890957787632942, -0.00035183754516765475, -0.04113718122243881, 0.013539147563278675, -0.00267339707352221, 0.009426728822290897, 0.011466696858406067, -0.010102387517690659, 0.012798522599041462, -0.028429612517356873, -0.007341284770518541, -0.003553701564669609, -0.026129774749279022, 0.020009873434901237, -0.005635897628962994, -0.0031785164028406143, -0.0064642284996807575, 0.0012977182632312179, 0.017749017104506493, 0.009264311753213406, 0.03354902192950249, -0.007627139799296856, 0.007744080852717161, 0.018775498494505882, -0.030612507835030556, -0.0004511154256761074, -0.007289310917258263, 0.04604869335889816, 0.0019132817396894097, -0.014097864739596844, -0.020204775035381317, 0.005502715241163969, -0.03609573096036911, -0.009602140635251999, 0.042514484375715256, -0.016332734376192093, -0.009147370234131813, -0.0794677808880806, 0.02263454534113407, -0.027675993740558624, 0.0025532077997922897, 0.0002271818957524374, -0.002428146079182625, 0.0021975128911435604, -0.015670068562030792, 0.011746055446565151, 0.02829967811703682, -0.04269639030098915, 0.021932899951934814, -0.005996465217322111, 0.010141367092728615, -0.03814869374036789, 0.015111352317035198, 0.01828174665570259, 0.02749408595263958, -0.004427509382367134, 0.02086743898689747, -0.0002933671639766544, -0.011875989846885204, 0.006834540981799364, 0.015527141280472279, -0.01722927950322628, 0.03071645461022854, -0.030872374773025513, -0.0046938746236264706, -0.008842024952173233, -0.02158207818865776, 0.012720562517642975, -0.01644967496395111, -0.006093916017562151, 0.010186844505369663, -0.008088406175374985, -0.00605493551120162, -0.011187338270246983, -0.004076686687767506, -0.006737090181559324, 0.005723603069782257, -0.0010971322190016508, 0.004287830088287592, 0.028533559292554855, -0.000369297486031428, 0.007887008599936962, -0.00986200850456953, 0.0015697680646553636, -0.005544943735003471, 0.010440216399729252, 0.021153293550014496, 0.014734542928636074, 0.022257735952734947, -0.004706867970526218, -0.02749408595263958, -0.0028309421613812447, -0.03651152178645134, -0.006938488222658634, 0.0036024267319589853, -0.003569943131878972, -0.019048359245061874, 0.008068916387856007, 0.0035082243848592043, 0.008094903081655502, -0.0005043072742410004, 0.01891842484474182, -0.002564577152952552, -0.001812582602724433, 0.0026522825937718153, 0.0023826691322028637, -0.016462668776512146, -0.04134507477283478, -0.00790649838745594, 0.026766452938318253, 0.01496842410415411, 0.04066941887140274, -0.003249980276450515, -0.0013764908071607351, -0.006136144511401653, -0.011746055446565151, 0.02358306385576725, 0.018411681056022644, 0.024908393621444702, -0.04009770601987839, 2.594878060335759e-05, 0.029625006020069122, -0.013396220281720161, -0.01886645145714283, -0.007763570640236139, -0.008530182763934135, 7.826507498975843e-05, -0.03214573115110397, -0.015748029574751854, -0.0017947166925296187, 0.01859358884394169, 0.021374182775616646, 0.016332734376192093, 0.01210987102240324, 0.003504976164549589, 0.026259709149599075, 0.024037834256887436, 0.004651645664125681, -0.004339803475886583, -0.004138405434787273, -0.020490629598498344, -0.0023290712852030993, 0.008530182763934135, -0.010388242080807686, -0.0406174436211586, 0.015903951600193977, -0.030092770233750343, 3.398085027583875e-05, 0.0016972660087049007, -0.0009858760749921203, 0.015540135093033314, -0.006259582005441189, -0.009706087410449982, -0.006880017928779125, -0.02793586254119873, -0.0401756651699543, -0.0015673317248001695, 0.01541020069271326, 0.037161193788051605, 0.007412748411297798, -0.028481585904955864, 0.01564408279955387, -0.0006261205999180675, 0.015942931175231934, -0.029053296893835068, 0.03214573115110397, -0.008770560845732689, -0.006441489793360233, 0.0003089998790528625, -0.016917437314987183, -0.023518096655607224, -0.007900001481175423, 0.01845066249370575, -0.01259712502360344, 0.0017200044821947813, 0.0002501234121154994, 0.07702501863241196, 0.01186299603432417, -0.011681088246405125, 0.00706192571669817, 0.017723029479384422, 0.0021163038909435272, -0.0006058184080757201, 0.010388242080807686, -0.011440710164606571, 0.0006098788580857217, 0.0014179074205458164, -0.017930924892425537, 0.007640133146196604, -0.0021763984113931656, -0.00940723903477192, -0.0017443671822547913, -0.03534211218357086, -0.003176892176270485, -0.006431744899600744, 0.008049426600337029, 0.04545099660754204, 0.008783554658293724, 0.025843920186161995, -0.008328785188496113, -0.025765959173440933, -0.02602582797408104, 0.032613493502140045, 0.01095995306968689, -0.011018423363566399, -0.013539147563278675, 0.017878951504826546, 0.020178787410259247, -0.015670068562030792, -0.01933421567082405, 0.030534546822309494, 0.0037745896261185408, -0.010544163174927235, 0.005434499587863684, 0.0336269810795784, -0.0051648858934640884, 0.011616121046245098, 0.00706192571669817, -0.010537667199969292, -0.021452143788337708, 0.02336217649281025, -0.004027961287647486, -0.011447206139564514, 0.024323688820004463, 0.0033181956969201565], "027179e2-6c33-43b0-b609-f76b6c776cd2": [-0.010206515900790691, -0.017575593665242195, -0.004655603785067797, 0.01329877320677042, -0.017479175701737404, 0.008353915996849537, -0.012830458581447601, -0.017341434955596924, -0.00818862859159708, -0.021005313843488693, 0.022231196984648705, -0.0019662349950522184, -0.014352482743561268, -0.004590177442878485, -0.01447644829750061, -0.005667991004884243, 0.002761682029813528, -0.009187242016196251, -0.0011406573466956615, -0.023319341242313385, 0.0010735092218965292, -0.008119759149849415, 0.005141136236488819, -0.026804156601428986, -0.017479175701737404, 0.017341434955596924, 0.014627962373197079, -0.027616821229457855, 0.019972264766693115, 0.0003234732139389962, 0.01248610857874155, -0.010571526363492012, -0.016253290697932243, 0.0004566933785099536, 0.007899374701082706, -0.009125258773565292, -0.015729879960417747, 0.0014324934454634786, 0.00596068799495697, 0.02867741696536541, 0.03628065064549446, -0.00311636202968657, 0.01273404061794281, 0.027919849380850792, -0.05669368430972099, 0.0230714101344347, -0.02271328680217266, 0.011818070895969868, -0.014228517189621925, 0.015688559040427208, -0.010929649695754051, -0.0018439909908920527, -0.027107184752821922, -0.05008217692375183, -0.006604621186852455, -0.015041181817650795, -0.0034383286256343126, 0.012623848393559456, -0.013650010339915752, -0.005172127857804298, 0.0029769004322588444, 0.00424238434061408, -0.05889752134680748, -0.02099153958261013, -0.00641178572550416, 0.004865657072514296, -0.032644324004650116, 0.007837392389774323, -0.02814023196697235, -0.013071502558887005, 0.028787609189748764, 0.01633593440055847, 0.021735332906246185, -0.0029527959413826466, 0.02999971993267536, 0.007961357943713665, -0.023098956793546677, -0.005764408968389034, 0.0011113876244053245, 0.005936583504080772, 0.021638914942741394, 0.0076514435932040215, 0.01641857996582985, -0.016928216442465782, -0.0024896461982280016, 0.004951744340360165, -0.009869053959846497, 0.019076956436038017, 0.00045841513201594353, -0.004714142996817827, 0.03468286991119385, 0.0005995983956381679, 0.004917309153825045, 0.013994359411299229, 0.021322114393115044, 0.0017733994172886014, 0.009717539884150028, 0.005791957024484873, 0.021335888653993607, -0.026266971603035927, 0.0049620745703577995, 0.022727059200406075, -0.02045435458421707, 0.0069076488725841045, -0.029889527708292007, -0.006521977484226227, 0.03581233695149422, -0.015605914406478405, 0.01327811274677515, 0.009380077011883259, -0.02546808123588562, 0.0360051728785038, 0.011521930806338787, -0.034269653260707855, -0.022823477163910866, -0.0010253003565594554, 0.022189874202013016, -0.03071596659719944, -0.0028288301546126604, -0.012320821173489094, 0.009862166829407215, 0.006663160864263773, 0.029118184000253677, 0.02510995790362358, -0.008601848036050797, 0.042864613234996796, -0.0249722171574831, 3.9196645957417786e-05, -0.008050888776779175, -0.021817978471517563, 0.03812636435031891, -0.016129326075315475, 0.020688511431217194, 0.009345642291009426, -0.028126457706093788, 0.0056404429487884045, -0.021101729944348335, 0.008691378869116306, -0.006528864614665508, -0.022506676614284515, 0.0036156687419861555, 0.03063332289457321, -0.017561819404363632, -0.01171476673334837, 0.002930413233116269, 0.02776833437383175, 0.0005522503633983433, 0.013422739692032337, 0.01732766069471836, -0.026074135676026344, 0.01917337439954281, -0.017892394214868546, 0.013195469044148922, -0.01426983904093504, -0.013057729229331017, 0.01535798329859972, 0.004052992444485426, -0.008718926459550858, -0.021680237725377083, -0.0010416569421067834, -0.013773975893855095, 0.02166646346449852, 0.01035802997648716, 0.012245064601302147, 0.015041181817650795, 0.04057813435792923, -0.007313981186598539, -0.02764436975121498, -0.02075738087296486, 0.002388063119724393, -0.0029166394378989935, 0.010530204512178898, -0.04148721322417259, 0.020192649215459824, -0.012059115804731846, 0.01873260736465454, -0.0017208860954269767, 0.019834525883197784, -0.01246544811874628, -0.011852506548166275, -0.01056463923305273, 0.00048768482520245016, 0.001533215632662177, 0.012561866082251072, -0.012637622654438019, -0.04214836657047272, 0.01490344200283289, -0.0030561008024960756, 0.01037869043648243, -0.01853977143764496, 0.022368935868144035, 0.024724286049604416, 0.011707879602909088, -0.007451721001416445, -0.5985618829727173, -0.021225696429610252, -0.006890431512147188, -0.003756851889193058, 0.02283725142478943, 0.010695491917431355, 0.025867527350783348, 0.0474100261926651, -0.02483447827398777, 0.008105984888970852, -0.036253105849027634, 0.012107324786484241, 0.0012215794995427132, -0.009256111457943916, -0.013236790895462036, -0.02668019011616707, -0.011983359232544899, -0.013284999877214432, -0.015371756628155708, 0.025771109387278557, -0.052230916917324066, 0.019214695319533348, -0.02158381976187229, -0.01429738663136959, 0.01382218487560749, -0.009221676737070084, 0.03369114547967911, -0.01655631884932518, -0.019972264766693115, 0.017451627179980278, -0.03867732360959053, 0.04404917359352112, 0.020371710881590843, 0.0035089203156530857, 0.041542310267686844, -0.02695566974580288, -0.035261377692222595, -0.007327754981815815, 0.0007343250908888876, 0.03112918511033058, -0.029145732522010803, -0.028126457706093788, -0.009772635996341705, 0.003653547028079629, -0.0024483241140842438, 0.005030944477766752, 0.020151326432824135, -0.039503760635852814, -0.0052582151256501675, 0.016928216442465782, 0.003078483510762453, -0.005767852533608675, 0.004283706657588482, -0.0069076488725841045, 0.01126022543758154, 0.006945527158677578, 0.03126692399382591, -0.0372723788022995, -0.008870440535247326, -0.017479175701737404, -0.022561771795153618, 0.013443400152027607, -0.0022761495783925056, -0.017837299033999443, -0.009318094700574875, 0.018884120509028435, -0.013918602839112282, -0.029283473268151283, 0.021005313843488693, -0.016941990703344345, 0.00046616297913715243, -0.000937491247896105, 0.022988764569163322, -0.011439287103712559, 0.009875940158963203, 0.042974803596735, 0.01980697736144066, -0.004442107398062944, -0.014242290519177914, 0.012954424135386944, -0.004380124155431986, -0.01732766069471836, 0.021060409024357796, -0.012727153487503529, 0.04129438102245331, -0.008512317202985287, -0.007451721001416445, -0.02796117030084133, 0.027534177526831627, -0.0167353805154562, -0.001825051731429994, 0.008023341186344624, 0.0031043097842484713, -0.01553704496473074, 0.02510995790362358, 0.016253290697932243, 0.0015607635723426938, -0.020233970135450363, 0.004149410407990217, 0.004328472074121237, -0.020509449765086174, 0.022699512541294098, 0.0019576263148337603, 0.010764362290501595, 0.019696785137057304, 0.01814032532274723, -0.04338802397251129, -0.024820704013109207, 0.02917328104376793, -0.01827806606888771, 0.016721606254577637, -0.006329142022877932, 0.0019662349950522184, -0.015027407556772232, -0.014696831814944744, -0.03972414508461952, 0.005606008227914572, 0.010103210806846619, 0.015771202743053436, -0.017437852919101715, 0.004245827905833721, 0.0014040846144780517, 0.014614188112318516, -0.004352576099336147, 0.009593574330210686, 0.013353869318962097, 0.01899431273341179, -0.014710606075823307, 0.005671434570103884, -0.006790569983422756, 0.005678321700543165, 0.000183904092409648, 0.009448947384953499, -0.011852506548166275, 0.02342953346669674, 0.021322114393115044, 0.0034917029552161694, -0.015509496442973614, 0.03606026992201805, -0.01840203069150448, -0.0053133112378418446, -0.0005707591190002859, -0.00032046015257947147, -0.008712039329111576, 0.02107418328523636, -0.03966905176639557, -0.014352482743561268, -0.01588139310479164, 0.003197284182533622, 0.007403512019664049, 0.03269941732287407, -0.0010674830991774797, -0.021831750869750977, 0.025716012343764305, 0.008760248310863972, -0.0006026114569976926, -0.02117060124874115, -0.030605774372816086, -0.0055095902644097805, -0.00927677284926176, -0.008939309976994991, 0.023057635873556137, -0.018388258293271065, 0.0014746763044968247, -0.01126022543758154, -0.01614310033619404, -0.020523224025964737, -0.0016898945905268192, -0.018305614590644836, -0.013643123209476471, 0.0284019373357296, 0.003324693301692605, 0.001940408837981522, 0.0008866997086443007, 0.009028840810060501, -0.005967575125396252, -0.018388258293271065, 0.022134779021143913, -0.012885554693639278, -0.003608781611546874, 0.011246451176702976, 0.0030216658487915993, -0.004173514433205128, 0.0009306042338721454, 0.020564544945955276, 0.018746381625533104, 0.03972414508461952, 0.03404926881194115, -0.0026325511280447245, -0.01796126365661621, -0.025137506425380707, 0.022244971245527267, -0.0019025304354727268, -0.0018319387454539537, 0.003135301172733307, 0.028291746973991394, 0.004039218183606863, 0.010316708125174046, -0.015495723113417625, 0.03826410323381424, 0.03862222656607628, 0.01101229339838028, -0.005141136236488819, 0.0007123728282749653, 0.029338568449020386, -0.021514950320124626, -0.017534270882606506, -0.01918714866042137, 0.02437993697822094, 0.00920101534575224, -0.007431060075759888, -0.03333302214741707, -0.028649870306253433, 0.00800267979502678, 0.026749061420559883, 0.0035123638808727264, -0.03683160990476608, 0.015991585329174995, -0.014751927927136421, 0.0022055578883737326, 0.006449664011597633, -0.000575063459109515, 0.003522694343701005, -0.03030274622142315, 0.003057822585105896, 0.022065909579396248, -0.0022623755503445864, 0.03859468176960945, 0.00374996499158442, -0.027244923636317253, -0.02075738087296486, 0.005833278875797987, 0.012995745986700058, 0.008202402852475643, 0.01282357145100832, -0.02681793086230755, 0.013381417840719223, -0.024985991418361664, 0.02695566974580288, 0.005420059431344271, -0.0038360522594302893, -0.01705218106508255, 0.013863506726920605, -0.020027359947562218, 0.040743421763181686, -0.0037671823520213366, 0.03699689731001854, 0.026707738637924194, -0.019145825877785683, -0.012052228674292564, -0.024627868086099625, -0.009194129146635532, -0.003715530037879944, 0.012968198396265507, 0.015798749402165413, -0.014132099226117134, 0.01074370089918375, 0.0021143052726984024, 0.026335841044783592, 0.027878526598215103, 0.016129326075315475, 0.03030274622142315, -0.012141759507358074, 0.005158354062587023, 0.011122485622763634, -0.009965470992028713, 0.01588139310479164, -0.012858006171882153, -0.025660917162895203, -0.007238224148750305, 0.02049567550420761, 0.005816061049699783, 0.023181600496172905, -0.014765702188014984, 0.0030922575388103724, -0.02247912809252739, 0.006997179705649614, 0.03184543177485466, 0.03176278620958328, -0.006911092437803745, -0.006442777346819639, -0.021556271240115166, 0.019930941984057426, 0.01309905108064413, -0.0031766232568770647, 0.02980688400566578, -0.021873073652386665, -0.0014436847995966673, -0.00022339666611514986, 0.006608064752072096, 0.012431013397872448, 0.03586743399500847, 0.017451627179980278, -0.015013633295893669, -0.0006478073191829026, -0.021514950320124626, 0.021914394572377205, -0.020784929394721985, -0.03429719805717468, -0.003030274761840701, 0.02347085438668728, -0.013608687557280064, -0.009083936922252178, -0.014696831814944744, 0.03311263769865036, 0.008973745629191399, -0.014572866261005402, -0.004607394803315401, 0.015440627001225948, -0.012183081358671188, -0.03280961140990257, 0.010130759328603745, 0.001967956777662039, -0.010137646459043026, -0.024214649572968483, 0.007176241371780634, 0.005275432486087084, -0.00785116571933031, 0.016611414030194283, 0.0113773038610816, -0.025660917162895203, -0.01683179847896099, -0.024228423833847046, 0.004469654988497496, 0.016184421256184578, 0.017603140324354172, 0.0025826203636825085, 0.01356736570596695, -0.020977765321731567, -0.010943423956632614, -0.041597407311201096, -0.0015926159685477614, -0.00030754704494029284, -0.02012377791106701, 0.018085230141878128, -0.023222923278808594, -0.010853893123567104, -0.021019086241722107, 0.03253412991762161, -0.011032954789698124, -0.0036363296676427126, -0.01257563941180706, -0.002642881590873003, -0.023622367531061172, 0.00038545610732398927, -0.011074276641011238, 0.01429738663136959, -0.0034675984643399715, 0.007293320260941982, 0.007141806185245514, 0.030192553997039795, 0.026804156601428986, -0.009104598313570023, -0.01606045477092266, -0.014683058485388756, -0.006480655632913113, -0.01822296902537346, 0.02325047180056572, -0.01606045477092266, 0.027492854744195938, 0.005785069894045591, 0.04311254248023033, -0.0045281946659088135, 0.008581186644732952, -0.01171476673334837, 0.023622367531061172, 0.009235450997948647, -0.00927677284926176, 0.011935150250792503, -0.005643886514008045, -0.00044334985432215035, -0.004913866054266691, -0.019572818651795387, -0.028484581038355827, 0.030192553997039795, 0.025481855496764183, -0.028374390676617622, 0.008326368406414986, -0.01958659291267395, 0.05966886132955551, -0.022906120866537094, 0.026666417717933655, -0.0202201958745718, -0.009965470992028713, -0.02741021104156971, -0.019352436065673828, -0.04060567915439606, -0.005213449709117413, -0.024352388456463814, -0.02184552513062954, -0.006074323318898678, -0.021377209573984146, -0.0180025864392519, -0.03228620067238808, 0.017479175701737404, -0.04022000730037689, -0.012444786727428436, 0.0014213020913302898, 0.01873260736465454, 0.0022640973329544067, 0.032368842512369156, -0.007444833870977163, -0.014765702188014984, 0.03203826770186424, -0.014641736634075642, -0.02931101992726326, 0.005623225588351488, -0.014848345890641212, 0.006780239753425121, 0.00854675192385912, 0.00037835389957763255, 0.009380077011883259, 0.005230667069554329, 0.006415229290723801, 0.0022795929107815027, 0.02283725142478943, 0.035536859184503555, 9.114498243434355e-05, -0.0015151373809203506, -0.008594960905611515, -0.00045927599421702325, 0.013271225616335869, -0.011404851451516151, -0.002553350757807493, 0.010874553583562374, -0.012885554693639278, -0.009669330902397633, -0.02398049086332321, -0.0037258605007082224, -0.006539194844663143, 0.010302933864295483, 0.012045341543853283, -0.03267186880111694, 0.030385389924049377, 0.005860826466232538, -0.009083936922252178, 0.0025826203636825085, 0.014779475517570972, 0.024779383093118668, 0.00240872404538095, 0.015261565335094929, -0.004059879574924707, -0.0018646519165486097, -0.021198147907853127, 0.008167967200279236, -0.02271328680217266, 0.026542451232671738, 0.015054955147206783, -0.001565928920172155, -0.002005835296586156, -0.021143052726984024, -0.033718694001436234, -0.014875893481075764, 0.0271347314119339, 0.002203836105763912, 0.024076908826828003, 0.008422786369919777, -0.00902195367962122, -0.02378765679895878, -0.025812430307269096, -0.0154681745916605, 0.02986197918653488, -0.024503903463482857, -0.028787609189748764, -0.011005406267940998, -0.008774022571742535, 0.008305707015097141, 0.011549478396773338, -0.02455899864435196, -0.032589226961135864, -0.0038050608709454536, 0.01183184515684843, 0.010970971547067165, 0.010413126088678837, 0.02253422513604164, 0.010881440714001656, -0.00041278882417827845, -0.016542544588446617, 0.022052135318517685, -0.02325047180056572, -0.0007145249983295798, -0.009008180350065231, -0.00026105987490154803, 0.009559139609336853, 0.043635956943035126, 0.0158400721848011, -0.006790569983422756, 0.005643886514008045, 0.012630735523998737, 0.012052228674292564, -0.026308294385671616, 0.012878667563199997, 0.011026067659258842, 0.017079729586839676, -0.0019128608983010054, 0.00020574875816237181, 0.01499985996633768, -0.001619303016923368, 0.014435126446187496, 0.011329094879329205, 0.005096370819956064, 0.0064599947072565556, 0.006298150401562452, -0.04429710656404495, -0.004087427165359259, -0.015234016813337803, -0.01859486661851406, 0.009669330902397633, -0.010240950621664524, -0.02641848474740982, -0.017809750512242317, -0.013773975893855095, 0.03875996917486191, 0.016762929037213326, 0.019338661804795265, -0.013773975893855095, 0.016349708661437035, -0.016074229031801224, 0.02687302604317665, -0.0009340477408841252, 0.0078029572032392025, -0.0016916163731366396, 0.020523224025964737, 0.03212090954184532, 0.025261471047997475, 0.02176288142800331, -0.008959971368312836, -0.005754078272730112, -0.017947491258382797, 0.031239377334713936, -0.029255924746394157, -0.031184280291199684, 0.001869817147962749, -0.03316773474216461, -0.028154006227850914, -0.029834430664777756, -0.01691444218158722, -0.020151326432824135, -0.004986179061233997, 0.0036569905932992697, -0.005647330079227686, 0.01072304043918848, 0.016032908111810684, -0.008532977662980556, 0.004011670593172312, -0.02641848474740982, 0.031955622136592865, 0.00999990664422512, 0.030275199562311172, 0.022878574207425117, 0.003400450339540839, -0.0059779053553938866, -0.025771109387278557, -0.03071596659719944, 0.007086710538715124, 0.017699558287858963, 0.02311273105442524, -0.0016821468016132712, -0.015399305149912834, 0.005884930957108736, 0.0045281946659088135, -0.009483382105827332, -0.04443484544754028, 0.012637622654438019, 0.019986039027571678, -0.019435079768300056, -0.015784977003932, 0.0049414136447012424, -0.0192697923630476, 0.011418625712394714, 0.018705058842897415, -0.017947491258382797, 0.015068729408085346, -0.008815344423055649, -0.006284376606345177, 0.006776796188205481, -0.0002946339373011142, 0.02004113420844078, 0.00014312021085061133, 0.007307094056159258, -0.007706539239734411, -0.026349615305662155, -0.013071502558887005, -0.0011690661776810884, 0.005320197902619839, 0.02663886919617653, -0.014531544409692287, -0.005106701515614986, 0.017603140324354172, 0.0031301360577344894, 0.0016700945561751723, -0.014779475517570972, 0.00487254373729229, 0.04134947434067726, -0.010571526363492012, 0.001816443051211536, -0.00972442701458931, 0.0205369982868433, 0.028787609189748764, 0.01553704496473074, -0.0021986709907650948, -0.005519920960068703, 0.0055440254509449005, -0.014228517189621925, 0.013257451355457306, -0.000298077444313094, 0.015633461996912956, -0.0030681530479341745, -0.01845712773501873, -0.021597594022750854, -0.023126505315303802, -0.009428285993635654, 0.026390938088297844, -0.041955530643463135, 0.0027840647380799055, -0.017024634405970573, -0.047106996178627014, 0.00587115716189146, 0.02257554605603218, -0.008236837573349476, 0.010192741639912128, 0.05509590357542038, -0.007568799890577793, 0.0017277731094509363, 0.01990339532494545, -0.0036191120743751526, -0.0028667086735367775, 0.002971735317260027, 0.007561912760138512, -0.013994359411299229, 0.01393237616866827, 0.011308434419333935, -0.0025085853412747383, -0.005189345218241215, 0.01234836969524622, 0.03592252731323242, 0.003149075200781226, 0.00984150543808937, 0.0096348961815238, 0.008464108221232891, 0.01867751032114029, -0.021253244951367378, -0.028512129560112953, 0.007059162482619286, -0.0051927887834608555, 0.008512317202985287, 0.03823655843734741, -0.0004829500103369355, 0.014407578855752945, -0.008498542942106724, 0.003083648858591914, -7.398131742775149e-07, -0.00048682396300137043, -0.06121154874563217, 0.012851119041442871, -0.0054097287356853485, 0.005123918876051903, -0.01885657198727131, -0.02026151865720749, 0.0024844808503985405, -0.018718833103775978, 0.006101871374994516, 0.0020902007818222046, 0.012355255894362926, 0.011955810710787773, 0.025041088461875916, -0.014986085705459118, 0.0062740459106862545, -0.011859392747282982, -0.003953130915760994, -0.02085379883646965, -0.030908800661563873, -0.027658144012093544, -0.01976565457880497, -0.02303008735179901, 0.02519260160624981, 0.0010123872198164463, -0.017768429592251778, -0.026046589016914368, -0.019297340884804726, -0.032231103628873825, -0.020468128845095634, -0.01614310033619404, 0.014669284224510193, 0.017975037917494774, -0.0057609654031693935, -0.015344209037721157, -0.004752021748572588, -0.014586640521883965, -0.0007618730305694044, -0.01863618940114975, -0.00619828887283802, 0.005068823229521513, 0.008629395626485348, -0.001533215632662177, -0.01727256551384926, 0.0074861557222902775, -0.009738201275467873, -0.029696691781282425, 0.0038739307783544064, 0.021459853276610374, 0.028567224740982056, 0.0033109195064753294, 0.004755465313792229, -0.012610075064003468, -0.017300114035606384, 0.006835335399955511, 0.01347783487290144, 0.006222393363714218, -0.030523130670189857, 0.01841580495238304, 0.0223827101290226, 0.004190732259303331, -0.008353915996849537, -0.001890478190034628, 0.016941990703344345, 0.022176101803779602, 0.01044756080955267, -0.0227546077221632, -0.029503855854272842, -0.01483457162976265, 0.0051927887834608555, 0.026749061420559883, -0.026721512898802757, 0.0028839262668043375, 0.009104598313570023, -0.03404926881194115, 0.010516430251300335, -0.01863618940114975, 0.014214742928743362, -0.009400738403201103, 0.017396531999111176, 0.0013128321152180433, 0.005616338457912207, -0.003514085663482547, 0.0015693723689764738, 0.011425512842833996, -0.008629395626485348, -0.0006482377066276968, -0.00313185784034431, 0.015165147371590137, -0.037382569164037704, 0.016088003292679787, 0.006776796188205481, -0.0142009686678648, -0.009194129146635532, -0.0028753173537552357, 0.0049758488312363625, 0.009662443771958351, -0.034352295100688934, -0.005289206746965647, -0.017975037917494774, 0.014145873486995697, 0.025839978829026222, 0.00993103627115488, -0.029696691781282425, 0.015385530889034271, 0.004349132999777794, 0.004314697813242674, 0.005912479013204575, 0.24308311939239502, 0.00882223155349493, 0.007375963963568211, 0.029641596600413322, 0.021680237725377083, -0.009352529421448708, 0.02683170512318611, 0.014669284224510193, 0.002207279670983553, 0.004951744340360165, 0.015234016813337803, -0.022589320316910744, -0.009249224327504635, -0.003908365499228239, 0.0001015292655210942, -0.012389691546559334, -0.03705199435353279, -0.023401984944939613, -0.040743421763181686, 0.0016124160028994083, 0.036886706948280334, -0.005430390127003193, 0.004431776702404022, -0.015137599781155586, 0.005185901653021574, 0.010826344601809978, -0.007114258594810963, 0.02157004550099373, 0.022244971245527267, 0.012499882839620113, -0.030385389924049377, 0.018429579213261604, -0.01320924237370491, -0.014559092000126839, -0.010585300624370575, -0.0088428920134902, 0.024435032159090042, 0.017245016992092133, 0.02469673939049244, 0.021969491615891457, -0.0027771778404712677, -0.021831750869750977, -0.0028735955711454153, -0.012651396915316582, -0.015936490148305893, 0.010523317381739616, -0.000735616369638592, -0.011315320618450642, 0.015330434776842594, 0.006931753363460302, 0.003939357120543718, -0.02303008735179901, 0.03848448768258095, 0.0249722171574831, -0.005809174384921789, -0.011026067659258842, 0.01645990088582039, -0.029118184000253677, -0.004418002907186747, 0.03278206288814545, -0.015688559040427208, 0.03542666509747505, -0.025536950677633286, 0.004741691052913666, -0.037795789539813995, 0.0025430202949792147, -0.033222828060388565, 0.00882223155349493, -0.02325047180056572, -0.04275441914796829, 0.0011613182723522186, 0.004607394803315401, 0.007685878314077854, 0.021749107167124748, -0.012203742749989033, -0.012506769970059395, 0.03840184584259987, 0.02081247791647911, 0.013939263299107552, 0.05008217692375183, 0.007809844333678484, 0.011542591266334057, 0.0030268311966210604, -0.01037869043648243, -0.013677557930350304, -0.022231196984648705, 0.011115598492324352, -0.013650010339915752, -0.010461334139108658, -0.012727153487503529, 0.017121052369475365, -0.01363623607903719, 0.002592950826510787, -0.0020643745083361864, -0.021101729944348335, 0.009015067480504513, -0.018264291808009148, 0.01647367514669895, -0.004400785081088543, 0.011425512842833996, 0.0031421883031725883, 0.028980445116758347, 0.036473486572504044, 0.008236837573349476, 0.0010003349743783474, 0.013161033391952515, -0.0038567131850868464, 0.01633593440055847, 0.0025757334660738707, -0.02162514254450798, -0.0131197115406394, -0.04388388618826866, 0.00041666277684271336, 0.009359416551887989, -0.0049310834147036076, 0.0154681745916605, -0.016156872734427452, -0.006422115955501795, -0.005795400124043226, 0.018250517547130585, 0.04812627285718918, -0.025068635120987892, 0.012341482564806938, 0.02004113420844078, -0.015688559040427208, -9.2974332801532e-05, -0.009187242016196251, -0.0069730752147734165, -0.01044756080955267, -0.046390749514102936, 0.0014617631677538157, -0.013319434598088264, 0.008243724703788757, -0.02356727235019207, 0.0109021021053195, 0.012582526542246342, 0.002033383119851351, 0.00909082405269146, -0.01056463923305273, -0.010640395805239677, -0.023401984944939613, -0.01044756080955267, 0.004228610545396805, -0.000417093193391338, 0.013112825341522694, -0.007527477573603392, 0.021253244951367378, 0.009152807295322418, 0.006928309798240662, -0.011838732287287712, -0.036748968064785004, -0.019738107919692993, 0.023085182532668114, -0.0028460477478802204, 0.011335982009768486, -0.010192741639912128, -0.014600413851439953, -0.03831920027732849, 0.008829118683934212, -0.001709694741293788, -0.026404712349176407, -0.02533034048974514, 0.010399351827800274, -0.045481666922569275, -0.010130759328603745, -0.01778220199048519, -0.17641708254814148, 0.012582526542246342, 0.00974508747458458, -0.05479287728667259, 0.0448756143450737, 0.002129801083356142, -0.0006447942578233778, -0.012141759507358074, -0.005857383366674185, -0.013078389689326286, 0.014559092000126839, 0.0009512652177363634, -0.0014316325541585684, -0.01174231432378292, -0.006969631649553776, 0.010055001825094223, -0.03291980177164078, 0.0176857840269804, 0.03556440398097038, 0.005936583504080772, 0.0531124509871006, -0.01490344200283289, -0.00022511841962113976, -0.0020282180048525333, 0.0012224403908476233, -0.0048105609603226185, -0.014958537183701992, -0.002429384971037507, 0.001816443051211536, -0.01877392828464508, -0.012940649874508381, -0.0028925349470227957, 0.02663886919617653, 0.0027479082345962524, 0.020729834213852882, -0.025123732164502144, 0.01940753124654293, 0.012162420898675919, -0.011721652932465076, 0.011143146082758904, 0.0001265484024770558, 0.013374530710279942, 0.0230714101344347, 0.021198147907853127, -0.0026790383271872997, 0.03206581622362137, 0.00541661586612463, -0.006098427809774876, 0.012878667563199997, -0.01614310033619404, 0.008581186644732952, -0.040412843227386475, -0.01944885402917862, -0.027616821229457855, 0.029007993638515472, 0.019503949210047722, 0.014710606075823307, 0.013994359411299229, -0.01863618940114975, -0.015633461996912956, 0.005265102256089449, -0.04239629581570625, -0.0007394903223030269, -0.006900761742144823, -0.01840203069150448, -0.004786456469446421, -0.01610177755355835, 0.006718256510794163, 0.008333255536854267, 0.006449664011597633, 0.01255497895181179, -0.023043861612677574, -0.007830505259335041, -0.02049567550420761, 0.03377378731966019, -0.0013558757491409779, -0.02510995790362358, 0.026404712349176407, 0.03944866731762886, -0.007830505259335041, -0.012878667563199997, 0.04099135100841522, 0.03217600658535957, -0.026859251782298088, 0.004121862351894379, 0.026804156601428986, -0.003691425547003746, -0.0009857001714408398, 0.0010907266987487674, -0.00984150543808937, 0.029145732522010803, 0.0007059162599034607, -0.0227546077221632, -0.016487449407577515, 0.016322162002325058, -0.018484676256775856, -0.008629395626485348, 0.008291933685541153, -0.031377118080854416, 0.0003955713764298707, 0.02093644253909588, -0.0083676902577281, -0.005347745958715677, 0.00496551813557744, 0.025165053084492683, 0.007176241371780634, -0.0022176101338118315, 0.012134872376918793, 0.04771305248141289, -0.014669284224510193, -0.01426983904093504, -0.004207949619740248, 0.014063228853046894, 0.022727059200406075, 0.0101100979372859, 0.035674598067998886, -0.01790616847574711, 0.00115012691821903, -0.013718879781663418, -0.012327708303928375, -0.011673444882035255, 0.006449664011597633, -0.014944763854146004, 0.016088003292679787, -0.002716916613280773, -0.025027314200997353, -0.06021982058882713, -0.01303018070757389, -0.014944763854146004, 0.007086710538715124, -0.008443446829915047, 0.023801429197192192, -0.005933139938861132, 0.01746540144085884, -0.0038498262874782085, 0.004831221885979176, 0.009559139609336853, -0.04030265286564827, -0.013353869318962097, 0.021542498841881752, -0.0012189968256279826, 0.01447644829750061, 0.017589367926120758, -0.02437993697822094, 0.011549478396773338, 0.026225650683045387, 0.002684203442186117, 0.005767852533608675, -0.022630641236901283, -0.01044756080955267, -0.019917169585824013, -6.106821092544124e-05, -0.023057635873556137, 0.026611320674419403, 0.023140279576182365, 0.003083648858591914, 0.02808513678610325, 0.0021074183750897646, -0.0036638774909079075, -0.011590800248086452, -0.03325037658214569, -0.0044283331371843815, -0.030523130670189857, -0.028374390676617622, 0.010847005993127823, -0.02560582011938095, 0.002832273719832301, -0.005974461790174246, 0.007885601371526718, -0.013195469044148922, -0.03763050213456154, -0.008698265999555588, 0.00927677284926176, 0.019476402550935745, 0.006497872993350029, -0.013581139966845512, -0.004090870730578899, -0.0030733183957636356, -0.008264385163784027, -0.017795976251363754, 0.016225744038820267, 0.014104550704360008, 0.00231919321231544, 0.0021883402951061726, -0.02796117030084133, -0.005602564662694931, -0.016487449407577515, 0.002403558697551489, -0.004483429249376059, 0.022547997534275055, -0.009779523126780987, 0.021294565871357918, -0.0036673210561275482, -0.03380133584141731, 0.011053615249693394, 0.008105984888970852, 0.008767135441303253, 0.03165259584784508, -0.016570093110203743, 0.004958631470799446, -0.016680285334587097, -0.005915922578424215, 0.001911139115691185, -0.024462580680847168, 0.02537166327238083, -0.005103257950395346, -0.01162523590028286, -0.026074135676026344, 0.008223063312470913, 0.01345717441290617, 0.0067423610016703606, 0.025798656046390533, 0.01336764357984066, 0.0016614858759567142, 0.016625188291072845, -0.04247894138097763, -0.0065598557703197, -0.004834665451198816, 0.03179033473134041, 0.007541251834481955, -0.02247912809252739, -0.001709694741293788, -0.013581139966845512, -0.03269941732287407, -0.016294613480567932, 0.03721728175878525, -0.02411823160946369, -0.02235516346991062, -0.09201015532016754, 0.02162514254450798, -0.011728540062904358, -0.00875336118042469, 0.014214742928743362, -0.015137599781155586, 0.0066562737338244915, -0.011866279877722263, 0.010674831457436085, 0.022038361057639122, -0.03493080288171768, 0.01490344200283289, -0.006415229290723801, 0.00956602580845356, -0.028112685307860374, -0.018760154023766518, 0.012582526542246342, 0.023222923278808594, 0.0023725673090666533, 0.015908941626548767, -0.008849779143929482, -0.019875846803188324, 0.007892488501966, 0.01736898347735405, -0.01931111328303814, 0.03545421361923218, -0.0076170084066689014, 0.014407578855752945, 0.0010778135620057583, -0.016749154776334763, 0.004259602166712284, -0.01564723625779152, -0.0060880971141159534, -0.014435126446187496, 0.0026618207339197397, -0.01056463923305273, 8.409658039454371e-05, -0.005285763181746006, 0.010530204512178898, 0.027396438643336296, -0.014448900707066059, 0.012933763675391674, 0.01741030439734459, 0.007362190168350935, -0.0010468221735209227, -0.02683170512318611, 0.013161033391952515, -0.0007489599520340562, 0.008470995351672173, 0.0045936210080981255, 0.030936349183321, 0.016349708661437035, -0.007933810353279114, -0.0303578432649374, -8.285907097160816e-05, -0.033085089176893234, -0.0006099288584664464, 0.011962697841227055, -0.019063182175159454, 0.00668382178992033, 0.028057588264346123, 0.012086663395166397, 0.017795976251363754, 0.001668372773565352, 0.012148646637797356, 0.0011518487008288503, -0.021115504205226898, 0.0032231102231889963, 0.03542666509747505, -0.02873251400887966, -0.051762599498033524, -0.025082409381866455, 0.007858052849769592, 0.0035244161263108253, 0.03305754065513611, -0.013622461818158627, 0.012747814878821373, -0.026074135676026344, -0.016446126624941826, 0.007575686555355787, 0.007727200165390968, 0.015991585329174995, -0.03633574768900871, 0.004628055728971958, 0.019063182175159454, 0.000694724905770272, -0.014820798300206661, -0.004628055728971958, -0.009125258773565292, 0.008877327665686607, -0.023057635873556137, -0.0073346421122550964, 0.001113970298320055, 0.027988718822598457, 0.026790382340550423, 0.017933716997504234, 0.00017529536853544414, 0.020054908469319344, 0.03184543177485466, 0.016928216442465782, 0.013980585150420666, 0.005375294014811516, 0.013560479506850243, 0.006260272115468979, 0.01606045477092266, 0.016886893659830093, -0.015592140145599842, -0.018525997176766396, 0.004173514433205128, -0.025895074009895325, -0.014559092000126839, 0.005733417347073555, -0.0109021021053195, 0.026859251782298088, -0.014862120151519775, -0.0031266924925148487, -0.00022490319679491222, -0.023718785494565964, -0.03297489881515503, 0.009097711183130741, 0.03619800880551338, 0.02493089623749256, 0.00168472935911268, -0.036473486572504044, 0.028236649930477142, -0.01980697736144066, 0.00984150543808937, -0.02320914901793003, 0.02994462288916111, -0.01976565457880497, -0.007444833870977163, 0.023415759205818176, -0.009731314145028591, -0.026611320674419403, 0.0048449961468577385, 0.021294565871357918, 0.005013727117329836, 0.004283706657588482, 0.005502703133970499, 0.07746484130620956, 0.006800900679081678, -0.014118324965238571, 0.00972442701458931, 0.0033401891123503447, -0.013718879781663418, 0.0158400721848011, 0.0031387447379529476, -0.018581092357635498, -0.015413078479468822, 0.01153570506721735, -0.013698219321668148, 0.013023294508457184, -0.0024896461982280016, -0.024682965129613876, 0.0019369653891772032, -0.033911529928445816, 0.02261686883866787, -0.003414224134758115, 0.006535751279443502, 0.034407392144203186, 0.01192137598991394, 0.017603140324354172, -0.022176101803779602, -0.03063332289457321, -0.01454531867057085, 0.02994462288916111, 0.019986039027571678, -0.0021883402951061726, -0.029751786962151527, 0.030027266591787338, 0.024669190868735313, -0.01705218106508255, -0.011026067659258842, -0.010433786548674107, 0.005086040589958429, -0.01225883886218071, -0.013698219321668148, 0.04884251952171326, -0.0059916796162724495, 0.010908989235758781, 0.0003406906907912344, -0.016391031444072723, -0.020867573097348213, 0.019972264766693115, -0.009145920164883137, -0.01958659291267395, 0.013918602839112282, -0.0006800900446251035], "227654cd-983d-4662-8ffd-2b2c2f3929a3": [-0.012185631319880486, -0.0280893724411726, 0.0035484882537275553, -0.004172696731984615, -0.02952776476740837, -0.0005775622557848692, -0.017966343089938164, -0.014804592356085777, -0.012233125045895576, -0.02055816352367401, 0.037805311381816864, 0.0019523471128195524, -0.0048681460320949554, -0.01715215854346752, -0.02561967819929123, -0.011127190664410591, 0.00029620208078995347, -0.005051337648183107, 0.03045050799846649, -0.028876418247818947, 0.00896960124373436, -0.01255201455205679, 0.01143929548561573, -0.0244798194617033, -0.019852537661790848, 0.009702367708086967, 0.004352495539933443, -0.02530757524073124, 0.025321144610643387, 0.002201691037043929, 0.017287855967879295, 0.0255111213773489, -0.0027326075360178947, -0.00912565365433693, 0.0009634519228711724, -0.013413692824542522, -0.01814274862408638, 0.003446715185418725, -0.0054550375789403915, 0.016772205010056496, 0.019187619909644127, 0.0009863508166745305, 0.019214758649468422, 0.011798893101513386, -0.029853438958525658, -1.3298084923007991e-05, -0.018726248294115067, 0.0016037742607295513, -0.012965891510248184, 0.01470960397273302, 0.004579789005219936, -0.010211233049631119, -0.027248049154877663, -0.024764785543084145, -0.030531926080584526, -0.018794097006320953, -0.00019018845341634005, 0.010428349487483501, -0.01772208698093891, -0.008196125738322735, 0.006079245824366808, 0.010326576419174671, -0.024086298421025276, -0.0003981871996074915, 0.013318704441189766, 0.005176857579499483, -0.008854258805513382, 0.015279533341526985, -0.027098780497908592, -0.006849328987300396, 0.013488326221704483, 0.010523336939513683, 0.0010601363610476255, -0.0013052398571744561, 0.032078877091407776, 0.010380854830145836, -0.0280893724411726, 0.004790119826793671, -0.002861520042642951, 0.019757548347115517, 0.017355704680085182, 5.1946681196568534e-05, 0.02004251442849636, -0.005190427415072918, 0.01736927404999733, 0.011798893101513386, -0.012307758443057537, 0.03818526118993759, -0.01229418907314539, -0.028469325974583626, 0.008847474120557308, 0.008562508970499039, 0.012328113429248333, 0.02536185458302498, 0.0064524137414991856, 0.008460735902190208, 0.009234211407601833, 0.007490499410778284, 0.0061640567146241665, -0.016989320516586304, 0.011513928882777691, 0.020883837714791298, 0.0064625912345945835, -0.002481567207723856, -0.04008502885699272, -0.018956933170557022, 0.0026257457211613655, -0.024751214310526848, -0.008881398476660252, -0.004009859636425972, -0.028740720823407173, 0.02308213710784912, 0.002203387441113591, -0.016460100188851357, -0.014641755260527134, -0.0012424797751009464, 0.009783785790205002, -0.038429517298936844, -0.03582412749528885, 0.02169802226126194, 0.021046673879027367, -0.006313323974609375, 0.038375239819288254, 0.015415230765938759, -0.0013425566721707582, 0.017871353775262833, -0.021711591631174088, 0.0030023062136024237, -0.012823409400880337, -0.029961997643113136, 0.05693865194916725, -0.011737830005586147, 0.020368186756968498, 0.01335262879729271, -0.017694948241114616, -0.0045763966627418995, -0.02304142713546753, 0.011507144197821617, -0.024059157818555832, -0.0112086096778512, 0.015035277232527733, 0.026216747239232063, -0.012843763455748558, 0.0057535720989108086, 0.02361135743558407, 0.023163555189967155, 0.020191781222820282, 0.026664549484848976, 0.008915322832763195, 0.0067543406039476395, 0.0025578970089554787, -0.024561239406466484, 0.02711235173046589, 0.00395558075979352, -0.012993031181395054, 0.0031278261449187994, 0.011887096799910069, 0.010815086774528027, -0.004060746170580387, 0.018305586650967598, 0.004888500552624464, 0.022091545164585114, 0.007314092479646206, 0.006659352220594883, -0.014926719479262829, 0.036095522344112396, 0.01368508767336607, -0.02438483200967312, -0.016378682106733322, -0.015917310491204262, -0.011622486636042595, 0.0018641437636688352, -0.028333628550171852, 0.00015732423344161361, 0.006659352220594883, 0.01538809109479189, -0.0038436301983892918, -0.008779625408351421, 0.0003784686850849539, -0.0027902787551283836, -0.013277995400130749, 0.007212319411337376, -0.009905913844704628, 0.02571466751396656, -0.008521799929440022, -0.009593809954822063, 0.011351091787219048, -0.012735205702483654, 0.01219241600483656, -0.010835441760718822, 0.0071716103702783585, 0.038782332092523575, 0.008189341053366661, 0.018183458596467972, -0.5988057255744934, -0.011228963732719421, -0.006717023905366659, 0.016568658873438835, 0.02952776476740837, 0.001006705453619361, 0.011798893101513386, 0.046462807804346085, -0.03308304026722908, 0.018644830211997032, -0.011663195677101612, 0.029364928603172302, -0.014397499151527882, -0.01654152013361454, -0.005061515141278505, -0.034195758402347565, -0.004077708348631859, -0.009498821571469307, 0.0024646050296723843, 0.0334901325404644, -0.024398401379585266, 0.022851450368762016, -0.021711591631174088, 0.011303598061203957, 0.00886782817542553, -0.00623529776930809, -0.005234529264271259, -0.011059341952204704, 0.00454925699159503, 0.03343585133552551, -0.04106204956769943, 0.009797356091439724, 0.01773565635085106, 0.002033765660598874, 0.04752124845981598, -0.03026053123176098, -0.017762796953320503, 0.01917405053973198, -0.025239726528525352, 0.04212049022316933, -0.027030931785702705, -0.0065168701112270355, -0.009078159928321838, -0.00927492044866085, -0.0003350030747242272, 0.008006149902939796, 0.017654238268733025, -0.03549845516681671, 0.0008578623528592288, 0.010815086774528027, -0.008521799929440022, -0.0143025116994977, 0.005828205496072769, -0.011059341952204704, 0.004861361347138882, 0.011330736801028252, 0.02871358022093773, -0.030179113149642944, 0.004959742072969675, -0.0067543406039476395, -0.015184544958174229, 0.00935633946210146, -0.0067441631108522415, -0.0061742342077195644, -0.022457927465438843, 0.026108190417289734, -0.013291565701365471, -0.016093717887997627, -0.0004919032799080014, -0.0033313725143671036, -0.0033347648568451405, -0.018671968951821327, 0.004756195470690727, -0.003718110267072916, 0.001853966386988759, 0.03571556881070137, 0.03235027194023132, -0.01242310181260109, 0.004556042142212391, 0.012904827482998371, 0.0014129497576504946, -0.0016292175278067589, -0.0026019986253231764, -0.021711591631174088, 0.01308801956474781, -0.030396228656172752, -0.027071641758084297, -0.008420026861131191, 0.015184544958174229, -0.010211233049631119, 0.008338608779013157, 0.011303598061203957, 0.016636507585644722, -0.038103844970464706, 0.01922832801938057, 0.010231588035821915, -0.0028089373372495174, -0.013196577318012714, -0.008358962833881378, 0.01074723806232214, -0.019933955743908882, 0.018264876678586006, 0.0001725901965983212, 0.015428800135850906, 0.01154106855392456, 0.01659579761326313, -0.024656226858496666, -0.0004609472816810012, 0.005322732497006655, -0.022647904232144356, 0.010292652063071728, -0.017694948241114616, 0.004172696731984615, -0.006781480275094509, 0.021223081275820732, -0.04057353734970093, 0.023421380668878555, 0.010475843213498592, 0.01685362309217453, -0.007544778287410736, 0.019418304786086082, 0.008616788312792778, -0.0038843394722789526, -0.027695849537849426, 0.014370360411703587, 0.01556449756026268, 0.02005608379840851, -0.020897407084703445, -0.0003339429385960102, 0.02030033804476261, 0.005923193879425526, -0.0076329815201461315, 0.015035277232527733, -0.010557261295616627, 0.0011686943471431732, 0.02798081375658512, 0.004596751183271408, -0.008711776696145535, 0.02422199584543705, -0.006940924562513828, -0.012233125045895576, 0.014845301397144794, 0.002188121434301138, 0.005173465237021446, 0.02751944400370121, -0.028387906029820442, -0.01823773793876171, -0.013637593947350979, -0.0022763246670365334, 0.028686441481113434, 0.009838065132498741, 0.01470960397273302, -0.00395558075979352, 0.02947348728775978, -0.022172963246703148, -0.002920887665823102, -0.015917310491204262, -0.027125921100378036, 0.009193502366542816, -0.0065270476043224335, -0.0003971270634792745, 0.029961997643113136, -0.01819702796638012, -0.009247781708836555, -0.013081233948469162, -0.013359414413571358, -0.006204765755683184, 0.01989324577152729, -0.023204263299703598, -0.014763882383704185, 0.014967428520321846, 0.016256554052233696, 0.005723040085285902, -0.010496198199689388, 0.009777001105248928, -0.010801517404615879, 0.0014977606479078531, 0.01450605783611536, -0.013793646357953548, -0.0006759429234080017, 0.015917310491204262, 0.012762345373630524, 0.010150169022381306, 0.004627283196896315, 0.015265963040292263, 0.026013201102614403, 0.020788850262761116, 0.002707164268940687, -0.02637958526611328, -0.01797991245985031, -0.012110997922718525, 0.012070287950336933, -0.0023831864818930626, 0.004542472306638956, 0.005845167674124241, 0.008338608779013157, 0.01223990973085165, 0.01665007695555687, 0.0025426310021430254, 0.03169892355799675, 0.010536907240748405, 0.034602850675582886, 0.005129363853484392, -0.024819063022732735, 0.028225069865584373, -0.015035277232527733, 0.0051124016754329205, -0.030314810574054718, 0.03335443511605263, 0.01844128407537937, -0.004735840950161219, -0.05539169907569885, -0.01002125721424818, -0.006421881727874279, 0.03487424552440643, 0.0026477964129298925, -0.01602586917579174, 0.019879676401615143, 0.00629975413903594, 0.01711144857108593, 0.00778224878013134, 0.02066672220826149, 0.012158491648733616, -0.01948615349829197, 0.019974665716290474, 0.01280305441468954, 0.017179297283291817, 0.039189424365758896, -0.02287859097123146, -0.023801332339644432, -0.01670435629785061, -0.006252259947359562, -0.005485569592565298, -0.008732130751013756, -0.001020275172777474, -0.018332725390791893, 0.029663462191820145, -0.02108738385140896, 0.012273834086954594, -0.0008073998615145683, 0.014886010438203812, -0.00783652812242508, 0.005353264510631561, -0.01257236860692501, 0.02438483200967312, 0.017599958926439285, 0.0427718348801136, 0.023014288395643234, -0.033842943608760834, -0.015184544958174229, -0.04456304386258125, -0.010998278856277466, -0.01705716922879219, -0.001945562195032835, 0.012762345373630524, -0.008230050094425678, -0.0005635684938170016, -0.0007535449112765491, -0.0011983781587332487, 0.029446346685290337, 0.013386553153395653, 0.04179481416940689, 0.00027521137963049114, 0.010557261295616627, -0.0012051629601046443, -0.017043599858880043, 0.0016631418839097023, -0.019214758649468422, -0.00715125584974885, -0.027125921100378036, -0.005580557510256767, -0.0019302963046357036, 0.02762800082564354, 0.01219241600483656, -0.016324402764439583, 0.007035912945866585, 0.026773106306791306, 0.015890171751379967, 0.026461003348231316, -0.01072009839117527, -0.01696218177676201, -0.01559163723140955, 0.02129092998802662, 0.004399989731609821, 0.022797171026468277, 0.006438843905925751, -0.013793646357953548, -0.005149718374013901, 0.0056280517019331455, 0.023489229381084442, -0.009105298668146133, 0.014723173342645168, 0.013624024577438831, -0.015645915642380714, -0.007259813603013754, -0.010353715158998966, 0.03783245012164116, -0.002503617899492383, -0.025388993322849274, -0.0010584400733932853, -0.010597971267998219, -0.026583131402730942, -0.03169892355799675, -0.014560336247086525, 0.04654422402381897, 0.004254115279763937, -0.006750948261469603, -0.022498637437820435, 0.01722000725567341, -0.017437122762203217, -0.014804592356085777, -0.012389177456498146, -0.004623890854418278, -0.00796544086188078, -0.0005177705897949636, 0.018956933170557022, 0.013176222331821918, -0.0038300605956465006, 0.02030033804476261, 0.0042676846496760845, -0.015035277232527733, -0.019391166046261787, -0.016840053722262383, 0.005407543387264013, -0.0028513427823781967, 0.024520529434084892, 0.0009235907928086817, 0.007402296178042889, -0.011927805840969086, -0.011954945512115955, -0.03940654173493385, -0.004874930717051029, 0.010353715158998966, -0.017287855967879295, 0.02009679190814495, -0.008304684422910213, 0.02464265748858452, -0.0257689468562603, 0.020503884181380272, -0.0143025116994977, 0.017342133447527885, -0.010916859842836857, 0.006778087932616472, -0.004637460224330425, -0.02304142713546753, 0.016215845942497253, 0.010292652063071728, -0.0020201958250254393, 0.0059367637149989605, 0.015035277232527733, 0.03696398437023163, 0.0140446862205863, 0.011758184060454369, 0.004091278184205294, -0.011303598061203957, 0.01593088172376156, -0.01257236860692501, 0.016297264024615288, 0.011507144197821617, 0.032078877091407776, 0.007945085875689983, 0.054604653269052505, -0.03704540431499481, -0.016215845942497253, -0.003989505115896463, 0.04103491082787514, 0.002077867276966572, -0.032024599611759186, -0.00035514566116034985, 0.006883253343403339, -0.014682464301586151, -0.0021694630850106478, 0.01533381175249815, -0.020218919962644577, 0.012457026168704033, -0.0011508839670568705, -0.05693865194916725, 0.024249134585261345, -0.013963268138468266, 0.05992399528622627, -0.02798081375658512, 0.006167449057102203, 0.0010626806179061532, -0.0030243569053709507, -0.01249773520976305, -0.026501711457967758, 0.00551270879805088, -0.0056382291950285435, 0.0042778621427714825, -0.03549845516681671, -0.013691873289644718, -0.017206436023116112, -0.030314810574054718, -0.00418626656755805, -5.252975461189635e-05, -0.0660032406449318, -0.03278450295329094, 0.007463359739631414, 0.012429886497557163, 0.03281164541840553, 0.004047176335006952, -0.0049936664290726185, -0.009939838200807571, 0.023882752284407616, -0.018644830211997032, -0.025226157158613205, 0.00966165866702795, 7.733694656053558e-05, 0.014587475918233395, -0.007300523109734058, -0.0014731654664501548, 0.008501444943249226, 0.013488326221704483, 0.008453951217234135, 0.012836978770792484, 0.0038097058422863483, 0.005709470249712467, -0.0004327476490288973, -0.012674141675233841, 0.00016845566278789192, -0.0008294506696984172, 0.01447891816496849, 0.005672153551131487, 0.013393338769674301, 0.014750313013792038, -0.03669258952140808, 0.003178712911903858, -0.022159393876791, -0.016975751146674156, -0.005777318961918354, -0.0007357346476055682, 0.013277995400130749, -0.030016276985406876, 0.012843763455748558, 0.008569293655455112, -0.026148898527026176, 0.023787762969732285, 0.019459014758467674, 0.022865019738674164, 0.016161566600203514, 0.010007686913013458, 0.023434950038790703, -0.005478784441947937, -0.011086481623351574, -0.001446025911718607, -0.02020535059273243, 0.03123755380511284, 0.02871358022093773, 0.02365206554532051, 0.01530667208135128, -0.025538260117173195, -0.021263791248202324, -0.027451595291495323, 0.03905372694134712, -0.010340145789086819, 0.00034242402762174606, -0.0024663012009114027, -0.00755156297236681, -0.024601947516202927, -0.020965255796909332, -0.030586205422878265, 0.015455939806997776, -0.021155232563614845, -0.0213859174400568, -0.003446715185418725, -0.01814274862408638, 0.015510219149291515, -0.006713631562888622, 0.009871989488601685, -0.02453409880399704, 0.011500358581542969, -0.006886645685881376, 0.01696218177676201, 0.004674777388572693, 0.02720733918249607, 0.0014137978432700038, -0.043206069618463516, -0.02464265748858452, 0.01388863380998373, -0.019852537661790848, -0.008528584614396095, -0.025945352390408516, -0.009437757544219494, 0.01694861240684986, 0.018278446048498154, 0.03416861966252327, -0.005315947812050581, -0.012273834086954594, -0.01447891816496849, 0.012185631319880486, -0.004824044182896614, 8.025232091313228e-05, 0.0059265862219035625, 0.017382843419909477, -0.013535820879042149, 0.01762709952890873, 0.009756647050380707, -0.008589648641645908, 0.006849328987300396, 0.011690335348248482, -0.010530122555792332, 0.013406908139586449, -0.006062283646315336, -0.05818706750869751, -0.005149718374013901, -0.016256554052233696, -0.023896321654319763, 0.009017095901072025, -0.009777001105248928, -0.020598873496055603, -0.015632346272468567, -0.0030243569053709507, 0.037859588861465454, 0.008399671874940395, 0.007178395055234432, -0.013271210715174675, 0.005434683058410883, 0.001510482281446457, 0.028007954359054565, -0.024452680721879005, 0.008162201382219791, -0.011853172443807125, 0.040329281240701675, 0.02206440642476082, 0.005587342660874128, 0.027763698250055313, 0.005024197977036238, 0.006058891303837299, -0.01694861240684986, 0.01773565635085106, -0.025796085596084595, -0.02324497327208519, -0.007700830232352018, -0.017871353775262833, -0.0046306755393743515, -0.010177308693528175, 0.0023865788243710995, 0.00981771107763052, -0.014967428520321846, 0.0014121015556156635, 0.010509767569601536, 0.009546315297484398, -0.004569611512124538, -0.007897591218352318, 0.00735480198636651, -0.03492852300405502, 0.01823773793876171, 0.012389177456498146, 0.015903741121292114, 0.026053911074995995, 0.013549390248954296, -0.00025082824868150055, -0.022756462916731834, -0.022295091301202774, -0.011846387758851051, 0.03305589780211449, 0.038728050887584686, 0.003173624165356159, -0.02129092998802662, -0.005366834346204996, 0.02567395754158497, 0.0018064723117277026, -0.028360767289996147, 0.0247376449406147, 0.008182556368410587, -0.002646100241690874, -0.01722000725567341, 0.02206440642476082, -0.019445445388555527, -0.003487424459308386, 0.015645915642380714, 0.004023429471999407, -0.018481992185115814, 0.01700288988649845, -0.013230501674115658, 0.02298714779317379, -0.014112534932792187, 0.028415046632289886, -0.016894333064556122, -0.008759270422160625, -0.014872441068291664, -0.02685452625155449, -0.027763698250055313, -0.011486789211630821, -0.02061244286596775, 0.05628730356693268, -0.011188254691660404, 0.004505155608057976, 0.026053911074995995, 0.009783785790205002, 0.00204224674962461, -0.02705807238817215, -0.0028496463783085346, 0.04654422402381897, 0.005550025962293148, 0.0004238425171934068, -0.006706846412271261, 0.009851635433733463, 0.010740453377366066, 0.005773926619440317, -0.008861043490469456, 0.001757281948812306, -0.017640668898820877, -0.000631841248832643, 0.02344851940870285, -0.012809839099645615, -0.003697755513712764, -0.021100953221321106, -0.00989234447479248, -0.016161566600203514, -0.03123755380511284, -0.0005712014390155673, 0.011927805840969086, -0.018644830211997032, -0.028415046632289886, -0.021942278370261192, -0.025090457871556282, 0.015781613066792488, -0.010163739323616028, 0.01348154153674841, 0.023977739736437798, 0.06670887023210526, -0.021168801933526993, 0.0012577457819133997, -0.00010770984954433516, 0.016202276572585106, -0.010407994501292706, -0.0047392332926392555, -0.0023475659545511007, -0.02479192428290844, 0.02000180445611477, 0.0043965973891317844, 0.0034178795758634806, -0.02009679190814495, -0.0061538792215287685, 0.02602677047252655, -0.0016868889797478914, 0.029147813096642494, 0.030911879613995552, 0.0065813264809548855, 0.0068798610009253025, -0.012158491648733616, -0.02941920794546604, 0.004573004320263863, 0.0015622169012203813, 0.015089556574821472, 0.02381490357220173, -0.0007289497298188508, -0.0006848480552434921, -0.015550928190350533, -0.004199835937470198, 0.0077618942596018314, -0.014994568191468716, -0.049095336347818375, 0.01751854084432125, -0.010435134172439575, -0.019621850922703743, -0.030749041587114334, -0.03129183128476143, -0.002715645357966423, -0.033110179007053375, 0.005712862592190504, 0.02061244286596775, 0.014763882383704185, -0.007985794916749, 0.030369089916348457, -0.006367602851241827, 0.009213857352733612, 0.0011754791485145688, -0.02278360165655613, 0.001872624852694571, -0.011351091787219048, -0.013780076056718826, -0.021467337384819984, -0.021670883521437645, 0.03256738930940628, 0.010156954638659954, -0.003551880829036236, -0.019079061225056648, -0.005003843456506729, -0.01968969963490963, -0.011262888088822365, -0.025592539459466934, 0.03123755380511284, 0.030857600271701813, -0.005461822263896465, -0.016093717887997627, -0.006194588728249073, -0.006822189316153526, 0.02453409880399704, -0.02009679190814495, -0.001432456192560494, -0.014329650439321995, 0.0026613662485033274, 0.004959742072969675, -0.0021219688933342695, 0.008555724285542965, -0.004573004320263863, -0.005678938236087561, -0.023516368120908737, 0.015035277232527733, 0.030477646738290787, 0.0038470227736979723, -0.0028309880290180445, -0.021915137767791748, -0.030423369258642197, 0.0034636773634701967, 0.011737830005586147, 0.028062233701348305, -0.029907718300819397, 0.008223265409469604, 0.0067441631108522415, 0.01422109268605709, -0.010034826584160328, 0.00783652812242508, 0.001853966386988759, 0.009003525599837303, -0.00553984846919775, -0.023882752284407616, -0.013183007016777992, -0.03330015391111374, 0.0019404735649004579, 0.024751214310526848, 0.0020812596194446087, -0.0010686174500733614, 0.02694951370358467, -0.014831731095910072, 0.007314092479646206, -0.0014621400041505694, 0.03560701012611389, 0.0027037716936320066, 0.02066672220826149, -0.0002022740081883967, -0.00765333604067564, -0.006449021399021149, 0.001066073076799512, 0.013549390248954296, -0.017030030488967896, -0.007537993602454662, -0.0007993428152985871, 0.006652567535638809, -0.04461732134222984, 0.019771119579672813, 0.013176222331821918, -0.011527498252689838, -0.014492487534880638, -0.00616066437214613, -0.004115025047212839, 0.0075244237668812275, -0.04315178841352463, -0.005550025962293148, -0.024208424612879753, 0.020191781222820282, 0.019866107031702995, 0.02680024690926075, -0.04524153098464012, 0.02716662921011448, 0.006384565029293299, -0.01628369465470314, -0.00788402184844017, 0.25163733959198, -0.005030983127653599, 0.013793646357953548, 0.019391166046261787, 0.02922923117876053, 0.016256554052233696, 0.03758819401264191, 0.008915322832763195, -0.0009168059332296252, 0.0011407067067921162, -0.007008773274719715, -0.005190427415072918, 0.0045763966627418995, -0.0045763966627418995, 0.00603175163269043, -0.040383562445640564, -0.021670883521437645, -0.0167450662702322, -0.03411433845758438, -0.00702234311029315, 0.046869900077581406, -0.00458657369017601, 0.00034157594200223684, -0.013800431042909622, 0.005560202989727259, 0.013318704441189766, -0.012789485044777393, -0.0048104748129844666, 0.013047309592366219, 0.0012009224155917764, -0.03009769506752491, 0.021969417110085487, -0.006238690111786127, -0.022498637437820435, 0.003268612315878272, -0.021114522591233253, 0.05335623770952225, 0.012579153291881084, 0.029772020876407623, 0.000622512074187398, -0.0022373117972165346, -0.02066672220826149, -0.010815086774528027, -0.0042134057730436325, -0.020422466099262238, 0.0005160743603482842, 0.008976386860013008, -0.02798081375658512, 0.019038353115320206, 0.01705716922879219, -0.00930206011980772, -0.01041477918624878, 0.05324767902493477, 0.007789033930748701, 0.006048713810741901, -0.02236294001340866, 0.03750677406787872, -0.030911879613995552, 0.003134611062705517, 0.004701916594058275, -0.007700830232352018, 0.030016276985406876, -0.015700194984674454, 0.00282081076875329, -0.015998730435967445, 0.018332725390791893, -0.015401660464704037, 0.00935633946210146, -0.020110363140702248, -0.012409531511366367, 1.1886778338521253e-05, 0.004952956922352314, 0.024154147133231163, 0.001327290665358305, -0.011391800828278065, -0.027953675016760826, 0.036366917192935944, 0.03107471577823162, 0.024547668173909187, 0.01978468894958496, -0.00065898074535653, 0.02963632345199585, 0.017654238268733025, -0.024059157818555832, -0.021508045494556427, -0.025321144610643387, -0.003098990535363555, 0.0009100210154429078, -0.001474013552069664, -0.015415230765938759, 0.016772205010056496, -0.007083407137542963, -0.010787947103381157, -0.023747054859995842, -0.035688430070877075, 0.0030413190834224224, -0.0009032361558638513, 0.009220642037689686, -0.02731589786708355, 0.00156560936011374, -0.016053007915616035, 0.025090457871556282, 0.02287859097123146, 0.034711409360170364, -0.013739367015659809, 0.0012289100559428334, -0.003265219973400235, 0.014261801727116108, 0.003606159705668688, -0.0213859174400568, 0.01283019408583641, -0.024710506200790405, -0.00796544086188078, 0.015211684629321098, -0.014261801727116108, 0.009682012721896172, -0.029283510521054268, -0.0044474839232862, -0.0036909705959260464, 4.9879414291353896e-05, 0.03663831204175949, -0.020748140290379524, -0.02665098011493683, 0.008426811546087265, 0.014329650439321995, -0.009858420118689537, -0.007985794916749, -0.009573454968631268, -0.026447433978319168, -0.03169892355799675, 0.020734570920467377, -0.002651188988238573, 0.02998913638293743, -0.010319790802896023, 0.007843312807381153, 0.014940289780497551, -0.00642866687849164, -0.011473219841718674, -0.004986881278455257, -0.018481992185115814, -0.010564046911895275, 0.01067260466516018, -0.01617513597011566, -0.002301767934113741, -0.004874930717051029, -0.01064546499401331, -0.005020805634558201, 0.013359414413571358, 0.00494617223739624, 0.0031515732407569885, -0.05118507891893387, -0.030830461531877518, 0.02998913638293743, -0.0005071692285127938, 0.011737830005586147, -0.0167450662702322, -0.030993297696113586, -0.022444358095526695, -0.0005856193020008504, 0.03072190284729004, -0.04773836210370064, -0.01559163723140955, 0.03305589780211449, -0.04705987498164177, -0.009030665270984173, -0.006917177699506283, -0.1726071536540985, 0.005424505565315485, 0.004179481416940689, -0.03973221406340599, 0.03004341572523117, 0.011880312114953995, 0.006231905426830053, -0.020856698974967003, 0.008467520587146282, -0.009844849817454815, 0.016324402764439583, -0.004379635211080313, -0.027234477922320366, -0.006778087932616472, -0.013074449263513088, 0.01450605783611536, -0.027845116332173347, 0.028360767289996147, 0.04885108396410942, 0.0032041561789810658, 0.048362571746110916, -0.023407811298966408, -0.003911478910595179, 0.002544327173382044, -0.006245475262403488, -0.004240545444190502, -0.016921471804380417, -0.006917177699506283, -0.0037791740614920855, -0.021603034809231758, -0.00920028705149889, -0.01814274862408638, 0.02654242143034935, -0.0072258892469108105, 0.004036999307572842, -0.010740453377366066, 0.017925633117556572, 0.004467838443815708, -0.009580239653587341, 0.01226704940199852, 0.008331823162734509, 0.019567571580410004, 0.030477646738290787, -0.00321433343924582, -0.000372107868315652, 0.00653043994680047, 0.0001416342129232362, 0.004905462730675936, 0.013698657974600792, 0.00048130188952200115, 0.0058112433180212975, -0.044318787753582, -0.02015107125043869, -0.006686491891741753, 0.02844218537211418, -0.0007005381048657, 0.0023645281326025724, 0.0013035436859354377, -0.013298350386321545, -0.01110683660954237, 0.021603034809231758, -0.03647547587752342, 0.01559163723140955, 0.009193502366542816, -0.016989320516586304, -0.00448480062186718, -0.012735205702483654, 0.0070426976308226585, 0.0007836527656763792, 0.00033606321085244417, 0.02308213710784912, -0.03699112683534622, 0.004362673033028841, -0.04282611608505249, 0.03449429199099541, -0.019879676401615143, -0.022335801273584366, 0.01814274862408638, 0.017599958926439285, 0.010604755952954292, -0.005933370906859636, 0.03338157385587692, 0.010360500775277615, -0.017491402104496956, 0.02066672220826149, 0.03547131270170212, 0.011595346964895725, -0.013339059427380562, -0.03164464607834816, -0.011988869868218899, 0.009444542229175568, -0.0034365379251539707, -0.03243169188499451, -0.01407182589173317, 0.001616495894268155, -0.014139674603939056, -0.004155734553933144, -0.0051666805520653725, -0.024452680721879005, 0.009905913844704628, -0.009851635433733463, -0.015510219149291515, -0.02365206554532051, 0.005868915002793074, 0.01876695826649666, -0.005723040085285902, -0.003680793335661292, 0.01110683660954237, 0.04657136648893356, -0.02344851940870285, -0.025497552007436752, 0.020910976454615593, 0.01875338703393936, 0.04241902381181717, 0.013101588934659958, 0.02040889672935009, -0.018929794430732727, 0.01762709952890873, -0.025891073048114777, -0.003589197527617216, 0.002120272722095251, -0.006961279083043337, 0.008284329436719418, 0.018224168568849564, 0.010319790802896023, -0.01567305624485016, -0.05221638083457947, -0.01288447342813015, -0.000920198333915323, -0.003058281261473894, -0.009023880586028099, 0.006014789454638958, 0.012219555675983429, 0.028062233701348305, 0.0020626012701541185, 0.023122845217585564, 0.0021270576398819685, -0.03538989648222923, -0.012205985374748707, -0.004718878772109747, -0.026623839512467384, -0.0014095572987571359, 0.01242310181260109, -0.02700379304587841, 0.007300523109734058, 0.0330016203224659, -0.008453951217234135, -0.01110683660954237, -0.006303146481513977, -0.009946622885763645, -0.015903741121292114, 0.002966685453429818, -0.026162467896938324, 0.019825397059321404, 0.016677217558026314, 0.019133340567350388, 0.011744614690542221, -0.01849556341767311, -0.015469509176909924, -0.012938751839101315, -0.027560152113437653, 0.005180250387638807, -0.04407453164458275, -0.02597249299287796, 0.02144019678235054, -0.007537993602454662, 0.00032906632986851037, -0.011866741813719273, 0.009146008640527725, -0.009682012721896172, -0.026501711457967758, -0.008704991079866886, -0.0023356922902166843, 0.027695849537849426, -0.03335443511605263, -0.011975300498306751, -0.010116244666278362, 0.002077867276966572, 0.0036638311576098204, -0.00937669351696968, 0.011812463402748108, 0.004491585772484541, 0.012117782607674599, 0.018319156020879745, -0.026868095621466637, 0.00679165730252862, 0.005136148538440466, 0.00181325722951442, -0.008182556368410587, 0.026718828827142715, 0.0021966025233268738, 0.025958921760320663, -0.0063438559882342815, -0.023475660011172295, 0.02108738385140896, 0.007334447465837002, -0.01844128407537937, 0.03498280420899391, -0.009966977871954441, 0.03004341572523117, -0.03286592289805412, 0.00442034425213933, 0.0018454852979630232, -0.03392436355352402, 0.02468336559832096, -0.014003977179527283, 0.0019353849347680807, -0.014356790110468864, 0.013440832495689392, 0.010441918857395649, 0.006655959878116846, 0.005712862592190504, -0.005014020949602127, -0.008467520587146282, 0.018020622432231903, -0.030179113149642944, -0.0023475659545511007, -0.006605073343962431, 0.008365747518837452, -0.011093266308307648, -0.011914236471056938, -0.006974848918616772, 0.007795818615704775, -0.005760356783866882, -0.031047577038407326, 0.01399040687829256, -0.010211233049631119, -0.024289844557642937, -0.08923464268445969, 0.012016009539365768, -0.006062283646315336, -0.023258542641997337, 0.01643296144902706, -0.01249773520976305, 0.018047761172056198, -0.027234477922320366, 0.005122578702867031, 0.004101455677300692, -0.011703905649483204, 0.024615516886115074, -0.010224803350865841, 5.8201483625452965e-05, -0.01650081016123295, -0.01388863380998373, 0.010794732719659805, 0.010754022747278214, 0.010028041899204254, 0.020327478647232056, 0.0025070104748010635, -0.014031116850674152, 0.01586303301155567, 0.0010728579945862293, -0.026773106306791306, 0.01183281745761633, -0.029907718300819397, 0.017301425337791443, -0.004722271114587784, -0.030749041587114334, -0.002622353145852685, -0.03191604092717171, -0.004501762799918652, 0.007185180205851793, 0.0023085528519004583, -0.008175771683454514, -0.00963451899588108, 0.0013569744769483805, 0.02494119107723236, 0.022159393876791, -0.02659670077264309, -0.009051020257174969, 0.011228963732719421, 0.009451327845454216, -0.004762980621308088, -0.016975751146674156, -0.01897050440311432, 0.015347382053732872, 0.013040524907410145, 0.012253480032086372, 0.013922558166086674, 0.009159578010439873, 0.0013535821344703436, -0.022756462916731834, 0.002805544761940837, -0.04288039356470108, -8.115343371173367e-05, 0.010835441760718822, -0.010014471597969532, -0.02020535059273243, 0.03278450295329094, 0.0011797196930274367, 0.018536271527409554, -0.004729056265205145, 0.001689433236606419, -0.013393338769674301, -0.005658583715558052, -0.016731495037674904, 0.014587475918233395, -0.041414860635995865, -0.02376062422990799, -0.014763882383704185, 0.01229418907314539, 0.018889084458351135, 0.025836795568466187, 0.004216798115521669, -0.00623529776930809, -0.011330736801028252, -0.019662560895085335, 0.0140446862205863, -0.0038300605956465006, 0.028007954359054565, -0.031671784818172455, 0.01054369192570448, 0.012891258113086224, 0.01489957980811596, -0.013434047810733318, -0.004182873759418726, -0.002495136810466647, 0.0029310649260878563, -0.02370634488761425, -0.011290027759969234, 0.0040505691431462765, 0.0006136069423519075, 0.013535820879042149, 0.018522702157497406, 0.009179932996630669, 0.0027716204058378935, 0.01234168279916048, 0.0062726144678890705, 0.016202276572585106, -0.00524470629170537, 0.0018929794896394014, -0.03509135916829109, 0.00038716179551556706, 0.02963632345199585, -0.015795182436704636, -0.03487424552440643, -0.00010659670806489885, -0.0034026135690510273, -0.008582863956689835, 0.006666137371212244, -0.015062416903674603, 0.01901121251285076, -0.006788264960050583, -0.003031141823157668, -0.020083222538232803, -0.04556720331311226, -0.03096615895628929, 0.008711776696145535, 0.02287859097123146, 0.025429703295230865, 0.036774009466171265, -0.024968331679701805, 0.032757364213466644, -0.029392067342996597, 0.021874429658055305, -0.017586389556527138, 0.02844218537211418, -0.021195942535996437, 0.0014078610111027956, 0.02514473721385002, -0.010292652063071728, -0.04051925987005234, 0.005716254934668541, 0.006717023905366659, -0.0026562775019556284, 0.0005983409355394542, -0.022892160341143608, 0.08353535085916519, 0.009105298668146133, -0.003253346309065819, 0.012714851647615433, 0.016012299805879593, -0.019499722868204117, 0.016039438545703888, 0.004966526757925749, -0.013162652961909771, -0.022742893546819687, 0.024181285873055458, -0.018685538321733475, -0.013135513290762901, -0.010421563871204853, -0.012531659565865993, -0.003958973102271557, -0.014329650439321995, 0.032133158296346664, -0.014913150109350681, -0.002174551598727703, 0.04670706391334534, 0.0076872603967785835, 0.026298165321350098, -0.017125017940998077, -0.01077437773346901, -0.014791022054851055, 0.03484710678458214, -0.007775464095175266, -0.01059118565171957, -0.011398585513234138, 0.01669078692793846, 0.0003619305498432368, -0.015686625614762306, -0.004210013430565596, 0.017898494377732277, 0.02490048296749592, -0.012836978770792484, 0.00018001114949584007, 0.023434950038790703, 0.005841775331646204, -0.00065898074535653, 0.00019612522737588733, -0.0016868889797478914, -0.029147813096642494, 0.03305589780211449, 0.019241899251937866, -0.00979057140648365, 0.029744882136583328, 0.011201824992895126], "ca018018-d46c-4cc7-815c-7ed899383cc8": [-0.023494860157370567, -0.015417196787893772, 0.009393766522407532, -0.002698357682675123, -0.024024086073040962, 0.01824437826871872, -0.030890101566910744, -0.015904642641544342, -0.002935116644948721, -0.02919100597500801, 0.034761808812618256, 0.0023954452481120825, -0.012346291914582253, -0.003467824775725603, -0.024553313851356506, 0.002534715225920081, 0.0038856349419802427, 0.004477532580494881, 0.021405808627605438, -0.03751935809850693, 0.007235080003738403, 0.0019358539720997214, 0.008920247666537762, -0.029943063855171204, -0.022868145257234573, 0.008850612677633762, -0.005400197114795446, -0.026642363518476486, 0.01896858401596546, 0.013550977222621441, 0.029803793877363205, 0.01061237882822752, -0.01103715319186449, -0.006524802651256323, -0.008328350260853767, -0.02428869903087616, -0.02013845182955265, -0.007158481515944004, 0.024469751864671707, 0.019929546862840652, 0.014330890029668808, -0.006674517877399921, 0.016559211537241936, -0.0025869414675980806, -0.028940320014953613, 0.007959284819662571, 0.010131897404789925, -0.011991152539849281, -0.0069112773053348064, 0.012729284353554249, -9.150478581432253e-05, -0.0016329415375366807, -0.0253750067204237, -0.018676117062568665, -0.02019415982067585, 0.009254495613276958, 0.01267357636243105, 0.01253430638462305, -0.028773196041584015, -0.004453160334378481, -0.0032745874486863613, 0.019511736929416656, -0.030750831589102745, -0.011517634615302086, -0.009888174943625927, -0.013286364264786243, -0.009804612956941128, 0.014762626960873604, -0.022701021283864975, -0.015361488796770573, 0.011991152539849281, 0.021503297612071037, 0.011622087098658085, 0.0010131897870451212, 0.014358744025230408, 0.0067685251124203205, -0.037909314036369324, -0.0020437883213162422, 0.014511941000819206, -0.004411379341036081, 0.014567648991942406, 0.0013143612304702401, 0.006340269930660725, -0.00951910950243473, 0.02034735679626465, 0.01263179536908865, -0.02022201381623745, 0.021698277443647385, -0.015361488796770573, -0.006987875793129206, 0.016475649550557137, -0.003673247992992401, 0.008384058251976967, 0.028007211163640022, -0.004327817354351282, 0.002047270070761442, 0.01916356198489666, 0.015403269790112972, 0.0017147627659142017, -0.03111293353140354, -0.015890715643763542, 0.009853357449173927, -0.02033342979848385, 0.01113464217633009, -0.022408554330468178, 0.0016277189133688807, 0.04141891747713089, -0.010396510362625122, -0.005483759101480246, -0.006176627706736326, -0.03417687490582466, 0.03022160567343235, 0.022464262321591377, -0.04754680022597313, -0.010138860903680325, 0.0019706713501363993, 0.020458772778511047, -0.030667269602417946, -0.009950846433639526, 0.013216729275882244, -0.012882481329143047, 0.01109982468187809, 0.037714336067438126, 0.0061522554606199265, -0.0029020400252193213, 0.021837547421455383, -0.03211567923426628, -0.005727481562644243, -0.013745956122875214, -0.02335559017956257, 0.06395281851291656, -0.009365912526845932, 0.029553107917308807, 0.015236145816743374, -0.013293327763676643, 0.018676117062568665, -0.02107156068086624, 0.011399255134165287, -0.004167656879872084, -0.0070052845403552055, 0.009748904965817928, 0.02921885997056961, -0.011914554052054882, 0.02437226101756096, 0.008168189786374569, 0.01623889058828354, 0.010772540234029293, 0.003293737070634961, -0.0021012371871620417, -0.01410805806517601, 0.008982919156551361, -0.03712939843535423, 0.01597427763044834, 0.0001896466565085575, -0.006684963125735521, 0.012297547422349453, 0.00911522563546896, -0.0037185107357800007, -0.01728341542184353, -0.0029002991504967213, 0.00028746211319230497, 0.04317372292280197, 8.513971260981634e-05, 0.007826977409422398, 0.02221357636153698, 0.03437185287475586, 0.002917707897722721, -0.012227912433445454, -0.01362757571041584, -0.031001517549157143, -0.013362962752580643, -0.0060129850171506405, -0.028494656085968018, 0.012791955843567848, 0.016879532486200333, 0.022909926250576973, 0.01811903528869152, 0.015347561798989773, 0.003224102081730962, -0.013745956122875214, -0.009331095032393932, 0.003913488704711199, -0.006120919715613127, 0.006695408374071121, -0.02639167755842209, -0.016378160566091537, 0.028856758028268814, 0.014957604929804802, 0.023648057132959366, -0.009463401511311531, 0.01414983905851841, 0.035903822630643845, 0.01100929919630289, 0.013181911781430244, -0.6007553935050964, -0.03818785399198532, -0.015486831776797771, 0.0010210237232968211, 0.03963626176118851, 0.013035678304731846, 0.02221357636153698, 0.038939911872148514, -0.03907918184995651, 0.04520706459879875, -0.028996028006076813, 0.020834801718592644, 0.008948101662099361, 0.0025991275906562805, -0.004331299103796482, -0.0251243207603693, -0.024581167846918106, -0.00912218913435936, 0.0057031093165278435, 0.0013735510874539614, -0.029720231890678406, 0.01931675896048546, -0.022673167288303375, -0.0019428174709901214, 0.0007986268028616905, -0.004919715225696564, -0.004251218866556883, -0.03214353322982788, 0.006500430405139923, 0.03520747274160385, -0.054955970495939255, 0.038967765867710114, 0.01722770743072033, -0.0066640726290643215, 0.049775123596191406, -0.024915415793657303, -0.031781431287527084, -0.0005205218913033605, 0.0027436204254627228, 0.04356367886066437, -0.0253471527248621, -0.016364233568310738, -0.01607176661491394, -0.01626674458384514, 0.009205751121044159, 0.006862532813102007, 0.029887355864048004, -0.02736656926572323, -0.007680744398385286, 0.007945357821881771, -0.010751648806035519, -0.014887969940900803, 0.020403064787387848, -0.01213042251765728, 0.0033720764331519604, 0.00113592145498842, 0.04428788274526596, -0.04217097535729408, 0.0003673247992992401, -0.012771065346896648, -0.00963748898357153, 0.005445459857583046, -0.006970467045903206, 0.002832405036315322, -0.021684350445866585, 0.02836931310594082, -0.008829722180962563, -0.01803547330200672, 0.022394627332687378, -0.021405808627605438, -0.02310490421950817, 0.0069112773053348064, 0.028996028006076813, -0.027101954445242882, 0.01210256852209568, 0.04774177819490433, 0.041836727410554886, -0.0037672552280128, -0.009226641617715359, 0.021517224609851837, -0.006643182132393122, -0.015848934650421143, 0.016308525577187538, -0.003286773571744561, 0.021656496450304985, -0.006507393904030323, -0.014017532579600811, -0.021921109408140182, 0.021531151607632637, -0.02210216037929058, 0.010048335418105125, 0.0062567079439759254, -0.0036175400018692017, -0.04114037752151489, 0.01069594081491232, 0.029525253921747208, 0.00113853276707232, -0.008432802744209766, -0.0038334087003022432, -0.015333634801208973, -0.009755868464708328, 0.017826568335294724, -0.004164175130426884, 0.004829189740121365, 0.0069043138064444065, 0.023467006161808968, -0.025709254667162895, -0.01404538657516241, 0.02310490421950817, -0.012408963404595852, 0.0062462626956403255, -0.001219483558088541, -0.00534448865801096, -0.012276656925678253, -0.000333595322445035, -0.03428829088807106, 0.016531357541680336, 0.013773810118436813, 0.02419121004641056, -0.015347561798989773, 0.015848934650421143, 0.007078401278704405, -0.0021447590552270412, -0.015918569639325142, 0.023870889097452164, 0.014400525018572807, 0.020974071696400642, 0.00042390325688757, -0.007541474420577288, 0.0014571130741387606, -0.0027819196693599224, 0.012903371825814247, 0.01614140160381794, -0.010953591205179691, -0.002174353925511241, -0.0019671896006911993, 0.0008173412061296403, -0.022450335323810577, 0.03119649551808834, -0.03465039283037186, -0.01623889058828354, 0.0035148283932358027, 0.014734772965312004, -0.01704665645956993, 0.01116945967078209, -0.030806539580225945, -0.008516364730894566, 0.0007168056326918304, 0.0061487737111747265, 0.025820670649409294, -0.0055951750837266445, 0.001216872246004641, -0.010883956216275692, 0.01601605862379074, -0.0077712698839604855, 0.0027610291726887226, -0.005508131347596645, -0.029887355864048004, 0.0035130875185132027, -0.017715152353048325, 0.00450886832550168, 0.024664729833602905, -0.018467210233211517, -0.024038013070821762, -0.022408554330468178, -0.005978167522698641, -0.00529226241633296, 0.008753123693168163, -0.02434440702199936, -0.00906648114323616, 0.027965430170297623, 0.004682956263422966, 0.016851678490638733, -0.0018366239964962006, -0.00056796072749421, -0.003199729835614562, -0.02637775056064129, 0.005995576269924641, -0.015403269790112972, -0.006691926624625921, -0.0017460985109210014, 0.037630774080753326, 0.02012452483177185, 0.0038334087003022432, 0.025876378640532494, 0.03244992718100548, 0.022687094286084175, 0.011768320575356483, -0.01211649551987648, -0.008349240757524967, -0.007339532487094402, 0.011197313666343689, -0.007179372012615204, 0.018620407208800316, 0.0015015053795650601, 0.005476795602589846, 0.0003399060224182904, 0.0070087662898004055, 0.01913570798933506, 0.038744933903217316, 0.02215786837041378, 0.01719985343515873, -0.013293327763676643, -0.03331340104341507, 0.02632204256951809, -0.02607135660946369, -0.01618318259716034, -0.011343547143042088, 0.03325769305229187, -9.449691424379125e-05, 0.0016747225308790803, -0.046989720314741135, -0.02426084503531456, 0.003930897451937199, 0.03426043689250946, 0.00015831089694984257, -0.013488305732607841, 0.02218572236597538, 0.0013039159821346402, 0.029970917850732803, 0.015681808814406395, 0.017464466392993927, 0.01905214600265026, -0.01561217475682497, 0.027519766241312027, -0.007868758402764797, 0.005915496032685041, 0.037630774080753326, -0.006751116365194321, -0.009714087471365929, -0.00800802931189537, -0.016378160566091537, 0.010821284726262093, -0.008495474234223366, 0.017840495333075523, 0.0018418466206640005, 0.027770452201366425, -0.023829108104109764, 0.035987384617328644, -0.003204952459782362, -0.004157211631536484, 0.0021221276838332415, -0.0017678594449535012, -0.016740262508392334, 0.027032319456338882, 0.012012043036520481, 0.0504157654941082, 0.021921109408140182, -0.02619669958949089, -0.009797649458050728, -0.026893049478530884, 0.005828452296555042, -0.0251103937625885, 0.008251751773059368, 0.025820670649409294, 0.021572934463620186, 0.02320239320397377, 0.004797853995114565, 0.013425634242594242, 0.028048992156982422, 0.013718102127313614, 0.019664933905005455, -0.009379839524626732, 0.0045993938110768795, 0.010090116411447525, -0.009296276606619358, -0.006267153192311525, -0.018759679049253464, -0.015152583830058575, -0.00915700662881136, -0.0003462166932877153, -0.0037289559841156006, 0.0040840948931872845, 0.017840495333075523, 0.0010854360880330205, 0.0029803793877363205, 0.004338262602686882, 0.02015237882733345, 0.03754721209406853, 0.01362757571041584, -0.022478189319372177, -0.014804407954216003, 0.017896203324198723, -0.006486503407359123, 0.009902101941406727, 0.016573138535022736, -0.01701880246400833, -0.009797649458050728, 0.00605476601049304, 0.013523123227059841, -0.003774218959733844, 0.015431123785674572, 0.00226139766164124, -0.006399459671229124, -0.005818007048219442, -0.003116167848929763, 0.013808627612888813, -0.02336951717734337, -0.04949658364057541, 0.0010123193496838212, -0.005062466952949762, -0.014985458925366402, -0.01715807244181633, -0.0015737517969682813, 0.04423217475414276, 0.004362634848803282, -0.010131897404789925, -0.01697702147066593, 0.029636669903993607, -0.012701430357992649, -0.006113956216722727, -0.007127145770937204, -0.01212345901876688, -0.017951911315321922, -0.015890715643763542, 0.026503093540668488, 0.024776145815849304, -0.022909926250576973, 0.02736656926572323, -0.008356204256415367, -0.006503912154585123, 0.0023275509011000395, -0.016907386481761932, 0.007792160380631685, -0.032812029123306274, 0.013871299102902412, 0.0042895181104540825, 0.0018818867392838001, -0.006228853948414326, -0.0032345473300665617, -0.04147462546825409, 0.01619710959494114, 0.007249007001519203, -0.017534101381897926, -0.0023171056527644396, -0.026739852502942085, 0.0006515227723866701, -0.033926188945770264, 0.030862247571349144, -0.007478802464902401, -0.0037602917291224003, -0.009470365010201931, 0.013349035754799843, 0.006277598440647125, -0.0031300948467105627, -0.00263046333566308, 0.013509196229279041, -0.010020481422543526, 0.014762626960873604, 0.005535985343158245, 0.001214260933920741, 0.028912466019392014, 0.015890715643763542, -0.0301380418241024, -0.0066710361279547215, 0.003927415702491999, -0.008697415702044964, 0.02924671396613121, -0.006956540048122406, 0.015932496637105942, -0.0044984230771660805, 0.043925780802965164, -6.087625297368504e-05, -0.0038055547047406435, -0.02109941467642784, 0.04214312136173248, 0.008244788274168968, -0.010299021378159523, 0.005772744305431843, -0.004192029125988483, -0.021517224609851837, 0.025792816653847694, 0.0016851677792146802, -0.00953999999910593, 0.003457379527390003, 0.02327202819287777, -0.03799287602305412, 0.013968788087368011, -0.01359275821596384, 0.049023065716028214, -0.025528203696012497, 0.02414942905306816, -0.023425225168466568, 0.0003205387620255351, -0.01254823338240385, -0.02206037938594818, -0.01813296228647232, -0.0011620345758274198, -0.003596649505198002, -0.03646090254187584, -0.020890509709715843, -0.018801460042595863, -0.020625896751880646, -0.021740058436989784, 0.00450886832550168, -0.05155777931213379, -0.025709254667162895, 0.016392087563872337, 0.008899357169866562, 0.015208291821181774, 0.013460451737046242, -0.01714414544403553, -0.008279605768620968, 0.03395404294133186, -0.028996028006076813, -0.015222218818962574, 0.006207963451743126, -0.0073256054893136024, 0.008725269697606564, 0.013892189599573612, -0.008404948748648167, 0.013850408606231213, -0.015890715643763542, 0.01100233569741249, 0.00604083901271224, 0.004251218866556883, 0.008767050690948963, 0.008460656739771366, 0.0015006349422037601, -0.0060129850171506405, 0.01715807244181633, 0.00030443567084148526, -0.004310408607125282, 0.008655634708702564, 0.03529103472828865, -0.01615532860159874, 0.00152065500151366, -0.029915209859609604, -0.00019758941198233515, 0.0023710730019956827, 0.006552656646817923, 0.012311474420130253, -0.02107156068086624, 0.0060095032677054405, 0.013056568801403046, -0.00534448865801096, 0.007583255413919687, -0.0005553393857553601, 0.019748495891690254, 0.001037562033161521, 0.021628642454743385, -0.00610002875328064, 0.01209560502320528, -0.021990744397044182, -0.00802891980856657, -0.02139188162982464, 0.02331380918622017, 0.0006741542019881308, 0.023648057132959366, 0.02118297666311264, -0.026920903474092484, -0.03662802651524544, -0.02013845182955265, 0.03643304854631424, 0.0046028755605220795, -0.015765370801091194, -0.012408963404595852, -0.006364642176777124, -0.019651006907224655, -0.015514685772359371, -0.01256216038018465, 0.03562528267502785, -0.027895795181393623, -0.02129439264535904, 0.004268627613782883, 0.0032728465739637613, 0.006925204303115606, 0.02137795463204384, -0.018508991226553917, -0.026015648618340492, 0.0001318713475484401, 0.0012490784283727407, 0.01717199943959713, 0.020444845780730247, 0.01409413106739521, 0.005675255320966244, -0.03328554704785347, -0.01809118129312992, 0.011475853621959686, -0.031085079535841942, -0.0017548028845340014, -0.003864744445309043, -0.007040102034807205, 0.01731126941740513, 0.027993284165859222, 0.01810510829091072, 0.000334030541125685, -0.01108589768409729, -0.002947302768006921, 0.033731210976839066, -0.007903576828539371, 0.007102773524820805, 0.002445930615067482, 0.006207963451743126, -0.005682218819856644, 0.012791955843567848, -0.006751116365194321, -0.00304479175247252, 0.002082087565213442, -0.004703846760094166, 0.014860115945339203, 0.014665137976408005, 0.005863269791007042, -0.03395404294133186, 1.3294578820932657e-05, -0.016740262508392334, -0.024998977780342102, 0.004205956123769283, -0.012262729927897453, -0.029692377895116806, -0.007743415888398886, 0.004279072862118483, 0.02203252539038658, 0.01068201381713152, 0.028968174010515213, -0.008892393670976162, -0.009929955936968327, 0.004912751726806164, 0.020904436707496643, -0.024971123784780502, 0.011280875653028488, -0.021851474419236183, 0.010953591205179691, 0.01924712397158146, 0.015403269790112972, 0.01725556142628193, -0.017645517364144325, 0.016531357541680336, -0.006604882888495922, 0.018829314038157463, -0.04219882935285568, -0.014985458925366402, -0.004867488984018564, -0.007095810025930405, -0.006364642176777124, -0.007868758402764797, 0.0021430181805044413, -0.02013845182955265, 0.002160426927730441, 0.005880678538233042, 0.0007920985226519406, 0.011294802650809288, 0.0062532261945307255, -0.01625281758606434, -0.013864335604012012, -0.01105804368853569, 0.04523491859436035, 0.005424569360911846, 0.03646090254187584, 0.010389546863734722, 0.012492525391280651, -0.014240364544093609, -0.05657150223851204, -0.014525867998600006, -0.006322861183434725, 0.012847663834691048, 0.048967357724905014, -0.01102322619408369, -0.015124729834496975, 0.011559415608644485, 0.0013570127775892615, -0.004192029125988483, -0.03637734055519104, 0.017408758401870728, 0.020403064787387848, -0.013112276792526245, -0.030834393575787544, 0.007283824495971203, -0.013996642082929611, 0.0021134233102202415, 0.007701634895056486, 0.0028724451549351215, 0.006242780946195126, 0.005469832103699446, -0.007057510782033205, 0.009205751121044159, -0.01069594081491232, 0.03832712396979332, 0.0017487098230049014, 0.0069112773053348064, -0.009797649458050728, -0.01359972171485424, -0.0055951750837266445, 0.005671773571521044, -0.00964445248246193, 0.03746365010738373, -0.010243313387036324, -0.0008887171279639006, -0.0015728813596069813, 0.016573138535022736, -0.01105108018964529, -0.022422481328248978, 0.0063576786778867245, 0.034873224794864655, -0.017826568335294724, -0.0019271495984867215, -0.02024986781179905, -5.450437583931489e-06, 0.02031950280070305, 0.017408758401870728, 0.0024877116084098816, 0.00915004312992096, -0.01104411669075489, 0.008885430172085762, 0.035903822630643845, 0.0038159999530762434, 0.015445050783455372, -0.011733503080904484, -0.014553721994161606, -0.026572728529572487, -0.019567444920539856, 0.0010471368441358209, 0.024720437824726105, -0.023550568148493767, -0.01596035063266754, -0.013362962752580643, -0.01810510829091072, 0.02611313760280609, 0.003864744445309043, -0.018606480211019516, 0.010347765870392323, 0.04403719678521156, -0.034678246825933456, 0.005414124112576246, -0.010758612304925919, -0.01263179536908865, -0.026920903474092484, -0.012993897311389446, 8.296361193060875e-05, -0.009386803023517132, 0.007464875467121601, -0.016503503546118736, 0.018453283235430717, -0.018731825053691864, 0.0028550364077091217, 0.026906976476311684, 0.00534100690856576, 0.019581371918320656, 0.02005488984286785, -0.0073186419904232025, 0.01594642363488674, -0.016517430543899536, -0.012868554331362247, 0.011510671116411686, -0.00016473037248943, 0.005107729695737362, 0.04239380732178688, -0.01204686053097248, 0.00047482390073128045, -0.011489780619740486, -0.010173678398132324, -0.00132741779088974, -0.01209560502320528, -0.037797898054122925, -0.0022474706638604403, -0.0030082333832979202, -0.015681808814406395, -0.01896858401596546, -0.026489166542887688, 0.0036349487490952015, -0.012784992344677448, 0.02421906404197216, 0.02728300727903843, 0.007158481515944004, 0.0039448244497179985, 0.020779093727469444, -0.017631590366363525, 0.01212345901876688, 0.012917298823595047, -0.02426084503531456, -0.024024086073040962, -0.03356408700346947, -0.011580306105315685, -0.015180437825620174, -0.0036419122479856014, 0.02215786837041378, 0.00799410231411457, -0.011942408047616482, -0.029580961912870407, -0.01713021844625473, -0.020876582711935043, -0.006441240664571524, -0.024859707802534103, 0.03041658364236355, 0.03523532673716545, -0.0006702371756546199, -0.00960267148911953, 0.005079875700175762, -0.010006554424762726, 0.02018023282289505, -0.002170872176066041, 0.00459243031218648, -0.00802891980856657, 0.017492320388555527, -0.001417943392880261, 0.015431123785674572, -0.009741941466927528, -0.0024076313711702824, -0.008509401232004166, 0.013488305732607841, 0.014846188947558403, 0.034873224794864655, 0.012304510921239853, -0.0006402070866897702, -0.011594233103096485, -0.029608815908432007, 0.01052185334265232, 0.0031562079675495625, 0.005570802837610245, -0.041892435401678085, 0.005675255320966244, 0.015041166916489601, 0.00807070080190897, -0.014665137976408005, 0.02841109409928322, 0.010493999347090721, 0.012513415887951851, 0.0029542662668973207, -0.021935036405920982, -0.022506043314933777, -0.019609225913882256, 0.004373080097138882, 0.013989678584039211, -0.018940730020403862, -0.008801868185400963, 0.016573138535022736, -0.011580306105315685, 0.011872773058712482, -0.013892189599573612, 0.033759064972400665, -0.022714948281645775, 0.023940524086356163, 0.0012499488657340407, 0.0008721788180992007, -0.0020403065718710423, -0.011510671116411686, 0.00602691201493144, -0.03155859559774399, 0.0035287553910166025, 0.005382787901908159, 0.0010741204023361206, -0.03342481702566147, 0.017854422330856323, 0.027993284165859222, -0.03258919715881348, -0.03506820276379585, 0.012339328415691853, 0.003565313760191202, 0.0013648467138409615, -0.028884612023830414, -0.013279400765895844, -0.00918486062437296, 0.011810101568698883, 0.011761357076466084, -0.0009574817377142608, -0.04339655488729477, -0.002158686053007841, 0.0008634744444862008, -0.006528284400701523, -0.008196043781936169, 0.24355550110340118, -0.012819809839129448, 0.02630811557173729, 0.029943063855171204, 0.012415926903486252, -0.008676525205373764, 0.019818130880594254, 0.0003483927866909653, -0.005549912340939045, 0.021015852689743042, 0.006298488937318325, -0.015403269790112972, 0.010083152912557125, 0.0027854014188051224, 0.006159218959510326, -0.005964240524917841, -0.03300700709223747, -0.013161021284759045, -0.05150207132101059, 0.016392087563872337, 0.040945399552583694, 0.0032589195761829615, -0.0010819543385878205, -0.032644905149936676, 0.021001925691962242, -0.0018279196228832006, -0.008189080283045769, 0.0011515893274918199, -0.00040932343108579516, 0.0037463647313416004, -0.02036128379404545, 0.009929955936968327, -0.022895999252796173, 0.0037985912058502436, -0.018843241035938263, -0.01215827651321888, 0.03111293353140354, 0.02629418857395649, 0.014651210978627205, 0.017951911315321922, -0.003906525205820799, -0.04228239133954048, -0.018634334206581116, -0.03400975093245506, -0.018439356237649918, 0.02115512266755104, -0.0025956458412110806, -0.01210256852209568, 0.003469565650448203, 0.0034538977779448032, -0.027993284165859222, -0.0077712698839604855, 0.0403047576546669, 0.006740671116858721, 0.007541474420577288, -0.011392291635274887, 0.046850450336933136, -0.013906116597354412, 0.0019358539720997214, 0.004407897591590881, 0.0014336112653836608, 0.024790072813630104, -0.019595298916101456, 4.768367944052443e-05, -0.036878712475299835, 0.018411502242088318, -0.02215786837041378, 0.0020368248224258423, -0.013745956122875214, -0.028508583083748817, 0.007645926903933287, -0.008739196695387363, 0.013084422796964645, 0.003930897451937199, -0.005375824403017759, -0.01919141598045826, 0.012882481329143047, 0.010473108850419521, 0.006500430405139923, 0.04272805526852608, 0.002432003617286682, 0.006893868558108807, -0.004359153099358082, -0.023550568148493767, -0.02311883121728897, -0.033842626959085464, 0.00300997425802052, 0.0042895181104540825, 0.016795970499515533, -0.021029779687523842, -0.0018714414909482002, -0.019442101940512657, -0.0008360556093975902, -0.011656904593110085, -0.028633926063776016, 0.02024986781179905, -0.016322452574968338, 0.01265268586575985, -0.01828615926206112, 0.0038960801903158426, -0.016907386481761932, 0.0406668595969677, 0.02735264226794243, 0.03016589768230915, -0.005201736930757761, 0.005570802837610245, -0.0021325729321688414, 0.01616925559937954, 0.014428379014134407, -0.005894605536013842, 0.009707123972475529, -0.044928524643182755, -0.00958178099244833, 0.008258715271949768, 0.0008321386412717402, 0.012750174850225449, -0.01059148833155632, -0.007471838966012001, -0.007186335511505604, -0.0007759954314678907, 0.03604309260845184, -0.017408758401870728, 0.008432802744209766, 0.01066112332046032, 0.007151518017053604, -0.0024703028611838818, -0.006106992717832327, -0.00339818955399096, -0.026767706498503685, -0.03406545892357826, 0.0065631018951535225, -0.006709335371851921, 0.0400262176990509, -0.005734445061534643, 0.016628846526145935, -0.0010680273408070207, -0.013794700615108013, -0.008425839245319366, -0.014985458925366402, 0.003079609479755163, 0.012283620424568653, 0.010027444921433926, 0.009853357449173927, -0.0052469996735453606, 0.00066066236468032, 0.008495474234223366, 0.0007259452249854803, 0.023620203137397766, 0.005873715039342642, -0.007743415888398886, -0.043842218816280365, -0.030527999624609947, 0.016670627519488335, -0.019790276885032654, 0.018439356237649918, -0.015821080654859543, -0.03531888872385025, -0.04448286071419716, 0.004348707851022482, -0.006110474467277527, -0.02807684615254402, -0.012255766429007053, 0.02416335605084896, -0.042031705379486084, -0.027923649176955223, -0.020472699776291847, -0.17915701866149902, -0.0015319708036258817, 0.00810551829636097, -0.03334125503897667, 0.016879532486200333, 0.01059148833155632, 0.009240568615496159, -0.013140130788087845, 0.006980912294238806, -0.020779093727469444, 0.022380700334906578, 0.0033703355584293604, -0.004484496079385281, -0.012471634894609451, -0.007708598393946886, 0.01415680255740881, -0.018745752051472664, 0.02440011501312256, 0.045791998505592346, 0.016573138535022736, 0.0607217513024807, -0.02022201381623745, -0.004167656879872084, 0.015055093914270401, -0.00023414779570885003, 0.003997051157057285, -0.01412198506295681, -0.003857780946418643, -0.008878466673195362, -0.029608815908432007, -0.013007824309170246, 0.00037450590752996504, 0.012924262322485447, -0.008502437733113766, -0.007896613329648972, -0.020765166729688644, -0.00801499281078577, 0.001226447056978941, -0.004136321134865284, 0.008293532766401768, -0.006371605675667524, 0.03356408700346947, 0.028021138161420822, -0.0010062262881547213, -0.017993692308664322, 0.03328554704785347, -0.010890919715166092, -0.0023971861228346825, 0.01836972124874592, -0.020806947723031044, 0.021893255412578583, -0.030834393575787544, -0.006423831917345524, -0.019762422889471054, 0.026029575616121292, 0.029051735997200012, -0.00530967116355896, 0.014428379014134407, -0.014887969940900803, -0.005201736930757761, -0.002075124066323042, -0.046042684465646744, 0.017798714339733124, 0.0013944415841251612, -0.027394423261284828, -0.0020942736882716417, -0.010863065719604492, 0.01413591206073761, 0.004477532580494881, 0.0024041496217250824, 0.02139188162982464, -0.03949699178338051, -0.006949576549232006, -0.023773400112986565, 0.047073282301425934, -0.018467210233211517, -0.020779093727469444, 0.020862655714154243, 0.03428829088807106, -0.01831401325762272, -0.012833736836910248, 0.03938557580113411, 0.0015624361112713814, -0.006469094660133123, 0.004362634848803282, 0.034956786781549454, 0.00264961295761168, -0.006218408700078726, -0.011406218633055687, -0.009971736930310726, 0.011900627054274082, -0.012353255413472652, -0.010960554704070091, -0.007057510782033205, 0.016726335510611534, 0.001598994480445981, 0.006197518203407526, -0.0021412773057818413, -0.028828904032707214, -0.0023310326505452394, 0.017784787341952324, -0.037017982453107834, -0.0033529268112033606, 0.014623356983065605, 0.01057756133377552, 0.0025939049664884806, -0.011907590553164482, 0.013641503639519215, 0.045875560492277145, -0.014428379014134407, 0.0018557736184448004, 0.004425306338816881, 0.008175153285264969, 0.018383648246526718, -0.0008608631324023008, 0.003687174990773201, -0.01611354760825634, 8.367084228666499e-05, -0.006705853622406721, -0.007064474280923605, -0.010285094380378723, -0.02224143035709858, 0.005838897544890642, 0.007179372012615204, 0.017910130321979523, -0.021656496450304985, -0.06378569453954697, -0.002184799173846841, 0.003965715412050486, 0.012729284353554249, -0.022547824308276176, 0.015361488796770573, -0.018481137230992317, 0.03141932561993599, -0.002926412271335721, 0.015640027821063995, 0.002700098557397723, -0.01213738601654768, -0.013223692774772644, 0.007673780899494886, -0.0006341140251606703, 0.004171138629317284, -0.008300496265292168, -0.015305780805647373, -0.005058985203504562, 0.026628436520695686, -0.0016459980979561806, -0.023759473115205765, 0.010786467231810093, -0.01114856917411089, -0.01203989703208208, -0.005894605536013842, -0.027965430170297623, 0.015890715643763542, 0.01715807244181633, 0.01052881684154272, 0.03935772180557251, -0.007130627520382404, -0.012826773338019848, -0.019330685958266258, -0.019790276885032654, -0.01594642363488674, -0.03139147162437439, -0.0403047576546669, 0.008481547236442566, -0.02835538610816002, -0.009428584016859531, 0.007820013910531998, 0.01412198506295681, -0.014943677932024002, -0.00813337229192257, -0.009964773431420326, 0.015291853807866573, 0.05166919529438019, -0.014860115945339203, -0.013161021284759045, -0.03829926997423172, 0.00802891980856657, 0.011622087098658085, -0.015528612770140171, 0.013028714805841446, 0.023494860157370567, 0.002444189740344882, 0.00914307963103056, -0.03434399887919426, 0.00810551829636097, -0.02018023282289505, 0.0003679776273202151, -0.0021151641849428415, 0.017743006348609924, 0.00912218913435936, 0.005560357589274645, -0.005428051110357046, -0.02027772180736065, 0.008585999719798565, -0.008397985249757767, -0.009463401511311531, 0.030890101566910744, -0.009957809932529926, 0.03022160567343235, -0.02132224664092064, 0.005939868278801441, -0.0009879471035674214, -0.013161021284759045, 0.023439152166247368, -0.013376889750361443, -0.006980912294238806, -0.016865605488419533, -0.005755335558205843, -0.0008434543269686401, 0.006535247899591923, 0.018829314038157463, -0.0007359552546404302, -0.004818744491785765, -0.004446196835488081, -0.050917137414216995, -0.004038832150399685, -0.013495269231498241, 0.01625281758606434, -0.0018314013723284006, -0.02129439264535904, -0.023411298170685768, 0.013446524739265442, -0.027018392458558083, -0.01836972124874592, -0.014303036034107208, -0.025890305638313293, -0.02321632020175457, -0.08150084316730499, 0.01615532860159874, 0.0033860034309327602, -0.023968378081917763, 0.016865605488419533, -0.00303956912830472, 0.013355999253690243, -0.013509196229279041, 0.02834145911037922, 0.011468890123069286, -0.041028961539268494, 0.03130790963768959, -0.014567648991942406, -0.016795970499515533, -0.025472495704889297, -0.00965837948024273, -0.0008756605675444007, 0.0027627700474113226, 0.008843649178743362, 0.0032780691981315613, 0.011329620145261288, -0.02721337042748928, 0.02226928435266018, -0.00025743202422745526, -0.03412116691470146, 0.03353623300790787, -0.007680744398385286, 0.006577028892934322, -0.008613853715360165, -0.027923649176955223, -0.01252037938684225, -0.023007415235042572, -0.012979970313608646, 0.0008008028962649405, 0.008739196695387363, 0.005368860904127359, -0.0032415108289569616, 0.0072141895070672035, 0.016795970499515533, 0.03927415981888771, -0.021990744397044182, -0.0005061596748419106, 0.021015852689743042, 0.00533056166023016, -0.00903166364878416, -0.014344817027449608, -0.01713021844625473, 0.012889444828033447, 0.01116945967078209, 0.01414983905851841, 0.008279605768620968, 0.006207963451743126, -0.002947302768006921, -0.0252914447337389, -0.010758612304925919, -0.03738008812069893, -0.004209437873214483, 0.0008974215015769005, 0.005574284587055445, 0.004296481609344482, 0.03125220164656639, 0.010939664207398891, 0.01355794072151184, 0.0008647801005281508, 0.013975751586258411, -0.0033564085606485605, -0.01803547330200672, -0.00225617503747344, 0.018759679049253464, -0.01057059783488512, -0.017937984317541122, -0.021865401417016983, 0.004453160334378481, 0.002343219006434083, 0.01830008625984192, 0.017673371359705925, 0.0022283210419118404, -0.007193299010396004, -0.004129357635974884, 0.02034735679626465, 0.0044984230771660805, 0.006716298870742321, -0.0402211956679821, 0.007701634895056486, 0.006124401465058327, -0.0032519560772925615, -0.023578422144055367, -0.0015659178607165813, 0.0047386642545461655, -0.0007437891908921301, -0.006573547143489122, -0.014456233009696007, -0.008363167755305767, 0.007054029032588005, 0.013892189599573612, 0.020974071696400642, -0.007854831404983997, 0.01622496359050274, 0.026670217514038086, 0.007172408513724804, 0.00019530451390892267, 0.013355999253690243, -0.00951910950243473, -0.003579240757972002, 0.01612747460603714, 0.017770860344171524, -0.02614099159836769, -0.03955269977450371, 0.011984189040958881, 0.011928481049835682, -0.00953999999910593, 0.01558432076126337, -0.029553107917308807, 0.022826364263892174, -0.0070087662898004055, 0.0011803138768300414, -0.02034735679626465, -0.024525459855794907, -0.02109941467642784, 0.012771065346896648, 0.02619669958949089, 0.0034434525296092033, 0.03517961874604225, -0.021447589620947838, 0.007242043502628803, -0.02611313760280609, 0.026976611465215683, -0.016447795554995537, 0.016851678490638733, -0.011204277165234089, -0.00963052548468113, 0.013913080096244812, 0.01259001437574625, -0.03155859559774399, -0.014358744025230408, 0.0150690209120512, 0.004115430638194084, -0.003204952459782362, -0.017910130321979523, 0.07620858401060104, 0.02130831964313984, -0.011858846060931683, 0.028884612023830414, -0.007381313480436802, -0.013070495799183846, 0.013432597741484642, 0.030611561611294746, -0.020848728716373444, -0.027464058250188828, 0.018550772219896317, -0.02029164880514145, -0.004320853855460882, -0.008585999719798565, 0.0032571787014603615, 0.0062462626956403255, -0.030722977593541145, 0.04732396826148033, 0.005643919575959444, 0.009721050970256329, 0.03548601269721985, 0.025402860715985298, 0.02440011501312256, 0.004373080097138882, -0.011907590553164482, -0.025500349700450897, 0.0403326116502285, 0.011803138069808483, -0.009665342979133129, -0.02433048002421856, 0.025639619678258896, -0.0032310655806213617, -0.018536845222115517, -0.007144554518163204, 0.0062567079439759254, 0.017394831404089928, -0.020723385736346245, -0.007917503826320171, 0.04838242009282112, 0.00918486062437296, -0.0034469342790544033, -0.017617663368582726, -0.01259001437574625, -0.02018023282289505, 0.025639619678258896, -0.012499488890171051, -0.008927211165428162, 0.006632736884057522, 0.004484496079385281], "7d9ff17a-3463-4125-a2f7-06aadcd0e118": [-0.01055407989770174, -0.012266258709132671, -0.0010202821576967835, -0.010933112353086472, -0.020088694989681244, -0.007711340207606554, -0.01772301271557808, -0.03719741478562355, -0.0006208282429724932, -0.018454935401678085, 0.007136257365345955, -0.0037935872096568346, -0.025721894577145576, -0.014795317314565182, -0.017840642482042313, -0.007469543721526861, 0.0158409234136343, -0.011253328993916512, 0.004603931680321693, -0.016102323308587074, 0.022153764963150024, 0.0010374366538599133, 0.015174348838627338, -0.03121132217347622, -0.028780290856957436, 0.017030298709869385, 0.012566870078444481, -0.030976060777902603, 0.024075064808130264, 0.007149327080696821, 0.010547544807195663, 0.00954115018248558, -0.026113996282219887, -0.01669047772884369, -0.006521963980048895, -0.008854971267282963, -0.005094059277325869, 0.007574104703962803, -0.003956963308155537, 0.021761663258075714, 0.03189096599817276, -0.005420810543000698, 0.006368390750139952, 0.03147272393107414, -0.039131782948970795, 0.022911829873919487, -0.03978528827428818, 0.01265182625502348, -0.012514590285718441, 0.009939786978065968, -0.016259165480732918, -0.00829295814037323, -0.019422121345996857, -0.021578682586550713, -0.009338563308119774, -0.03471410274505615, -0.012547265738248825, 0.011397099122405052, -0.01377585157752037, -0.004793447442352772, 0.003914485219866037, 0.014285584911704063, -0.017801431939005852, -0.016598986461758614, -0.025355931371450424, 0.022375956177711487, -0.026571448892354965, 0.014795317314565182, -0.026113996282219887, -0.005430613178759813, 0.02619241736829281, 0.012534195557236671, 0.015357330441474915, 0.0030861699488013983, 0.023696033284068108, -6.912840763106942e-05, -0.015017508529126644, -0.0026205487083643675, 0.009671850129961967, -0.0005906036822125316, 0.00929281860589981, -0.0027888258919119835, 0.023395422846078873, -0.027002761140465736, -6.136805313872173e-05, 0.006933670956641436, -0.001865752274170518, 0.01654670573771, -0.004584326408803463, -0.008966066874563694, 0.007541429251432419, -0.006613454315811396, -0.002666293876245618, 0.030662380158901215, 0.012900156900286674, 0.02488541044294834, 0.00856089498847723, 0.01679503731429577, 0.011625825427472591, -0.013070068322122097, 0.002726742997765541, 0.015148209407925606, -0.004600664135068655, 0.0021908702328801155, -0.029852036386728287, -0.017383189871907234, 0.026257766410708427, -0.0006722916150465608, 0.002798628294840455, -0.011286003515124321, -0.020951319485902786, 0.02474163845181465, 0.007711340207606554, -0.031237462535500526, -0.020310886204242706, -0.016115393489599228, 0.04007282853126526, -0.034897081553936005, 0.011769596487283707, -0.0029554690700024366, 0.001636209199205041, 0.006106989458203316, 0.038739681243896484, 0.013540590181946754, 0.002747981809079647, 0.012566870078444481, -0.01772301271557808, 0.01176306139677763, -0.009717595763504505, -0.0197488721460104, 0.04435981065034866, 0.011475520208477974, 0.003226672997698188, 0.009907111525535583, 0.0029489342123270035, -0.01730477064847946, -0.011599685065448284, 0.000791964412201196, -0.006946741137653589, -0.015291979536414146, 0.008770016022026539, 0.009469264186918736, -0.008796155452728271, -0.01929142139852047, 0.005505766253918409, 0.032047808170318604, -0.003185829147696495, 0.002527424367144704, 0.014952157624065876, -0.009959392249584198, 0.014207163825631142, -0.008966066874563694, 0.007384588476270437, -0.007489148993045092, 0.007959671318531036, -0.003953695762902498, 0.010599825531244278, 0.006286702584475279, -0.006900995969772339, 0.0027234754525125027, -0.0047248294577002525, 0.027630124241113663, 0.0024114276748150587, 0.024859270080924034, -0.0052214921452105045, 0.01505671814084053, 0.0012947536306455731, 0.0011950943153351545, -0.03756337612867355, -0.00927321333438158, 0.010599825531244278, 0.01693880744278431, -0.03398217633366585, 0.015331190079450607, 0.012860947288572788, 0.023016389459371567, -0.010024742223322392, 0.0027202079072594643, -0.005005836021155119, 0.00039475690573453903, -0.007423798553645611, -0.0034570330753922462, -0.01751389168202877, 0.025251371785998344, -0.013462170027196407, -0.028022225946187973, 0.007338843308389187, -0.008848436176776886, 0.024388747289776802, -0.012697570957243443, 0.033720776438713074, 0.01804976351559162, -0.001457312610000372, 0.009456194005906582, -0.6018505096435547, -0.01078280620276928, -0.004858797881752253, 0.015108998864889145, 0.010684780776500702, 0.02697662077844143, 0.011972182430326939, 0.036073386669158936, -0.026636797934770584, 0.02565654367208481, -0.03021799772977829, 0.003555058501660824, -0.008286423049867153, -0.019775012508034706, -0.016559775918722153, -0.033041130751371384, -0.00221537658944726, -0.0011967280879616737, -0.0076133147813379765, 0.023513052612543106, -0.034321997314691544, 0.01276292186230421, -0.03897494450211525, -0.008436729200184345, -0.005678944755345583, -0.012017928063869476, 0.014194093644618988, -0.013128883205354214, -0.012566870078444481, 0.03573356568813324, -0.036256369203329086, 0.01968352310359478, 0.019069230183959007, 0.00019676578813232481, 0.059599511325359344, -0.02292490005493164, -0.0236698929220438, 0.023513052612543106, 0.002796994522213936, 0.044150691479444504, -0.022585077211260796, -0.03050553984940052, 0.012586475349962711, 0.004469963256269693, -0.004819587804377079, -0.014677686616778374, 0.015108998864889145, -0.029747474938631058, -0.004819587804377079, 0.03680531308054924, -0.005999161396175623, -0.019134579226374626, 0.016311444342136383, -0.01875554770231247, 0.01640293560922146, -0.00237548490986228, 0.017644591629505157, -0.02844046801328659, -0.01329225953668356, -0.017108719795942307, -0.02011483535170555, 0.009475799277424812, -0.012821736745536327, -0.03249219059944153, -0.011037672869861126, 0.02146105095744133, -0.02893713116645813, -0.026924340054392815, 0.004234701860696077, -0.013076603412628174, 0.007070906925946474, -0.012370819225907326, 0.011880692094564438, -0.009207863360643387, -0.007404193747788668, 0.048097848892211914, 0.019317559897899628, 3.7780664570163935e-05, -0.003192364238202572, -0.0017889655428007245, -0.012527660466730595, -0.004469963256269693, 0.01801055297255516, -0.034531120210886, 0.023042529821395874, -0.010469124652445316, -0.01999720372259617, -0.012207443825900555, 0.008783086203038692, -0.006927136331796646, 0.0024163287598639727, 0.018559496849775314, 0.00884190108627081, -0.04438595101237297, 0.005574384238570929, 0.028884850442409515, -0.007521823979914188, -0.010769736021757126, -0.033720776438713074, -0.004767307545989752, -0.017278630286455154, 0.010129302740097046, -0.008691594935953617, 0.009769875556230545, 0.022702708840370178, 0.011730385944247246, -0.04185035824775696, -0.007018626667559147, 0.028701869770884514, -0.0188601091504097, -0.0006216451292857528, -0.0020160579588264227, 0.009508474729955196, 0.001008845865726471, 0.023852873593568802, -0.03142044320702553, 0.0004594945930875838, -0.004231434781104326, 0.021042808890342712, -0.019552821293473244, 0.010521404445171356, 0.004228167235851288, 0.007783225737512112, -0.001497339690104127, 0.00961303524672985, 0.007750550284981728, 0.02587873488664627, -0.0060971868224442005, -0.009103302843868732, 0.005051581189036369, -0.005959950853139162, 0.004450357984751463, 0.013945762999355793, -0.0025339594576507807, 0.019239140674471855, 0.039889849722385406, 0.013305329717695713, -0.00031327319447882473, 0.02565654367208481, -0.00920132827013731, -0.0059044030494987965, -0.002893386408686638, 0.010155443102121353, 0.00795313622802496, 0.01402418315410614, -0.041588958352804184, -0.011384028941392899, -0.008887646719813347, -0.012233584187924862, 0.024218836799263954, 0.010266538709402084, 2.3255532141774893e-05, -0.0027871921192854643, 0.042765263468027115, -0.00568547984585166, 0.005417543463408947, -0.012527660466730595, -0.020598426461219788, 0.003287122119218111, -0.003914485219866037, -0.0003298149968031794, 0.02836204692721367, -0.04036036878824234, -0.005705084651708603, -0.008057696744799614, 0.004332727752625942, 0.0025699022226035595, 0.0006077581783756614, -0.01302432268857956, -0.022859549149870872, 0.010645570233464241, 0.015043647959828377, 0.00010113986354554072, -0.002236615400761366, 0.009809086099267006, -0.01576250232756138, -0.011939506977796555, 0.019369840621948242, -0.014037253335118294, 0.009260143153369427, 0.024336466565728188, 0.010586755350232124, -0.0007662327261641622, -0.005561314057558775, 0.016141533851623535, 0.03565514460206032, 0.030740799382328987, 0.013187699019908905, -0.026950480416417122, -0.01893852837383747, -0.02309481054544449, 0.004773842170834541, 0.0006428839988075197, 0.0029767081141471863, 0.021369561553001404, 0.025186020880937576, 0.002078140852972865, 0.020807549357414246, -0.01112262811511755, 0.025904875248670578, 0.03332867473363876, 0.01929142139852047, -0.015331190079450607, -0.012625685892999172, 0.030740799382328987, -0.03905336186289787, 0.0028590774163603783, -0.0061723398976027966, 0.027185741811990738, 0.0007964572869241238, 0.00891378615051508, -0.021657103672623634, -0.026819780468940735, -0.014089533127844334, 0.0242057666182518, 0.012677965685725212, -0.032152365893125534, 0.017540032044053078, -0.013854272663593292, 0.007136257365345955, 0.0020438318606466055, 0.012958972714841366, 0.0036040712147951126, -0.031185181811451912, 0.0074368687346577644, 0.01016197819262743, 0.0022921632044017315, 0.013475240208208561, 0.0021124498452991247, -0.027316441759467125, -0.0210036002099514, -0.022402096539735794, 0.0012481914600357413, 0.007397658657282591, -0.001581478281877935, -0.013357609510421753, 0.026035575196146965, -0.019069230183959007, 0.03743267431855202, -0.0056005241349339485, 0.007541429251432419, -0.017030298709869385, 0.005247632507234812, -0.03191710636019707, 0.040987733751535416, -0.001307823695242405, 0.032832011580467224, 0.029747474938631058, -0.009697990491986275, -0.0076982700265944, -0.019775012508034706, -0.00982215628027916, -0.03541988506913185, -0.0008454700582660735, 0.014847597107291222, -0.015814783051609993, 0.013671291060745716, 0.003417822765186429, 0.020206324756145477, 0.03424357995390892, 0.0015006072353571653, 0.028126787394285202, -0.010939647443592548, -0.0015234798192977905, 0.004159549251198769, -0.020938249304890633, 0.001857583411037922, -0.014612335711717606, -0.016115393489599228, -0.006103721912950277, -0.009142512455582619, -0.002434300258755684, 0.025538913905620575, 0.00069067144067958, 0.0034995106980204582, -0.012514590285718441, 0.0011174908140674233, 0.02038930542767048, 0.03659619018435478, 0.0008920321706682444, -0.006789900362491608, -0.013070068322122097, 0.037145134061574936, -0.012213978916406631, 0.011651965789496899, 0.016899598762392998, -0.02071605809032917, -0.0016411104006692767, 0.013919622637331486, 0.016167674213647842, -0.0016182378167286515, 0.012697570957243443, 0.012187838554382324, -0.004688886925578117, -0.004081128630787134, -0.012664896436035633, 0.049744680523872375, -0.0021402237471193075, -0.014128743670880795, -0.010697850957512856, 0.0192260704934597, -0.029773615300655365, -0.03659619018435478, -0.010678245685994625, 0.04310508444905281, 0.0005542525905184448, -0.009684920310974121, -0.004865332972258329, 0.01030574832111597, -0.01865098811686039, -0.023539192974567413, -0.011717315763235092, 2.853971818694845e-05, -0.018768617883324623, -0.027133461087942123, 0.013880412094295025, 0.014233304187655449, 0.002805163385346532, 0.03510620445013046, 0.000197991103050299, -0.02360454387962818, -0.014599266462028027, -0.011129163205623627, 0.002573169767856598, 0.031080622225999832, 0.014795317314565182, -0.005678944755345583, 0.02131728082895279, -0.016925739124417305, -0.00954115018248558, -0.03531532362103462, -0.02412734553217888, -0.004391543101519346, -0.014494705945253372, 0.00038189106271602213, -0.015148209407925606, 0.0012155163567513227, -0.0019474402070045471, 0.02474163845181465, -0.012906691990792751, 0.015448820777237415, -0.009423519484698772, -0.009632640518248081, -0.0185072161257267, 0.004692154470831156, -0.0036334788892418146, 0.0011052376357838511, -0.0008262733463197947, 0.020520007237792015, -0.0010619430104270577, 0.020206324756145477, 0.03139430284500122, -0.011619290336966515, 0.00017634380492381752, 0.008966066874563694, 0.004986231215298176, 0.00527703994885087, 0.034687962383031845, -0.0022692906204611063, 0.03651776909828186, 0.0033851475454866886, 0.05139150843024254, -0.015383469872176647, 0.006309575401246548, -0.012939367443323135, 0.04046493023633957, 0.006423938553780317, -0.015291979536414146, 0.02833590842783451, -0.02427111566066742, -0.008266817778348923, 0.013592870905995369, -0.005152874160557985, -0.014795317314565182, 0.01986650377511978, 0.019199930131435394, -0.056149013340473175, 0.017605381086468697, -0.010279608890414238, 0.04221631959080696, -0.028388187289237976, -0.0014033985789865255, -0.00014050323807168752, -0.00443075317889452, -0.00870466511696577, -0.024088134989142418, -0.0020291281398385763, -0.007828970439732075, -0.010155443102121353, -0.029878174886107445, -0.00918172299861908, -0.013409890234470367, -0.011841481551527977, -0.006322645582258701, 0.023499982431530952, -0.03570742532610893, -0.01594548299908638, 0.01761845126748085, 0.012900156900286674, 3.122329417237779e-06, 0.012436170130968094, -0.0008536388049833477, -0.01875554770231247, 0.014546985737979412, -0.022506657987833023, -0.02623162604868412, -0.0021010134369134903, -0.013867341913282871, 0.00984176155179739, -0.0022643893025815487, 0.001996452920138836, 0.012691035866737366, 0.0034799056593328714, 0.0069402060471475124, 0.013645150698721409, 0.014141813851892948, 0.027107320725917816, 0.004832657519727945, -0.007691734936088324, 0.00838444847613573, 0.0045059057883918285, 0.012854412198066711, 0.009809086099267006, -0.008567430078983307, 0.004718294367194176, -0.02726416289806366, -0.003394950181245804, -0.03186482563614845, -0.023395422846078873, -0.013553660362958908, 0.0015904639149084687, 0.02018018439412117, -0.03191710636019707, 0.026310047134757042, 0.01804976351559162, -0.007168932352215052, 0.009338563308119774, -0.014285584911704063, 0.007783225737512112, 0.0025323256850242615, 0.02075526863336563, 0.011089952662587166, 0.0153050497174263, -0.02082061767578125, 0.0013748077908530831, -0.029773615300655365, 0.02488541044294834, 0.026179347187280655, 0.024584798142313957, 0.012560335919260979, -0.028231346979737282, -0.030348697677254677, -0.02972133457660675, 0.00989404134452343, 0.004401345271617174, 0.01615460403263569, 0.014429355040192604, -0.011109557934105396, -0.02053307741880417, -0.03534146398305893, -0.009325494058430195, 0.02387901395559311, -0.01910843886435032, -0.02953835390508175, -0.012527660466730595, -0.013285724446177483, 0.013553660362958908, -0.005567849148064852, -0.008966066874563694, -0.020702987909317017, 9.736179345054552e-05, 0.003411287674680352, 0.011874157004058361, 0.003986370749771595, 0.02565654367208481, 0.005342390388250351, -0.031446583569049835, -0.010737060569226742, 0.00765252485871315, -0.029878174886107445, -0.00925360806286335, -0.012573405168950558, 0.00033328673453070223, 0.022127624601125717, 0.010998462326824665, 0.022754987701773643, -0.008985672146081924, -0.009051022119820118, -0.022519728168845177, -0.004443823359906673, -0.006750690285116434, 0.013128883205354214, 0.00447649834677577, 0.017082579433918, -0.00022362069285009056, 0.02972133457660675, -0.00026548575260676444, -0.015122069045901299, 0.00838444847613573, 0.019592031836509705, -0.010011672042310238, 0.0012138825841248035, -0.02018018439412117, -0.029486073181033134, -0.001449143746867776, -0.014546985737979412, -0.018886247649788857, 0.0052378298714756966, -0.0004950288566760719, -0.021722452715039253, -0.02195771411061287, 0.00041477044578641653, 0.03868740051984787, 0.013788921758532524, 0.009599965065717697, -0.017605381086468697, 0.017056439071893692, -0.009769875556230545, 0.008181862533092499, -0.0061984797939658165, 0.013671291060745716, -0.01846800558269024, 0.038426000624895096, 0.016860388219356537, 0.018088974058628082, 0.011619290336966515, -0.015239699743688107, -0.015814783051609993, -0.017004158347845078, 0.031054481863975525, -0.022807268425822258, -0.025212161242961884, 0.005005836021155119, -0.02776082418859005, -0.006133129354566336, -0.031132902950048447, 0.0005746745737269521, -0.002654857700690627, -0.016259165480732918, 0.021121229976415634, 0.027316441759467125, 0.009103302843868732, 0.011161837726831436, -0.012109418399631977, -0.003907950595021248, -0.04232088103890419, 0.04566681757569313, 0.014390145428478718, 0.03711899369955063, 0.019879573956131935, 0.02082061767578125, -0.01757924072444439, -0.03698829188942909, -0.0005869277520105243, 0.0018085706979036331, 0.011148768477141857, 0.043863147497177124, 0.01576250232756138, -0.022872619330883026, 0.009469264186918736, -0.003236475633457303, -0.014586196281015873, -0.03526304289698601, 0.03965458646416664, 0.012775992043316364, 0.00026691530365496874, -0.003285488346591592, 0.0011812073644250631, -0.03983756899833679, 0.008129582740366459, 0.006456613540649414, -0.006682072300463915, -0.0032805870287120342, -0.006802970543503761, -0.02114737033843994, 0.017147928476333618, -0.00829295814037323, 0.01176306139677763, 0.015318119898438454, 0.020454656332731247, -0.013409890234470367, -0.022859549149870872, -0.02445409819483757, -0.0025895072612911463, -0.0008912152843549848, 0.04085703194141388, -0.010423379018902779, -0.01436400506645441, 0.018167395144701004, 0.013004717417061329, -0.0020029880106449127, -0.023055600002408028, 0.008338703773915768, 0.03939318656921387, -0.011436309665441513, -0.0028884850908070803, -0.0009271579328924417, 0.013880412094295025, 0.02063763700425625, 0.01947440207004547, 0.003228306770324707, 0.00014622138405684382, -0.010037812404334545, -0.0034014852717518806, 0.0013927791733294725, 0.0019245675066486, 0.01801055297255516, -0.015082858502864838, -0.006564441602677107, -0.013449099846184254, -0.026283906772732735, -0.01633758470416069, 0.02755170315504074, -0.050136782228946686, -0.011580080725252628, -0.011749991215765476, -0.049065034836530685, 0.015122069045901299, 0.0015896470285952091, 0.013128883205354214, 0.016821177676320076, 0.05578305199742317, -0.01238388940691948, -0.005192084703594446, 0.018036693334579468, 0.02498997002840042, -0.009848296642303467, 0.0031302813440561295, 0.004414415452629328, -0.02726416289806366, 0.006874855607748032, -0.000947579916100949, 0.0049372180365026, -0.03181254491209984, -0.010828551836311817, 0.020297816023230553, -0.006946741137653589, 0.02474163845181465, 0.011776131577789783, 0.009737201035022736, 0.020402375608682632, -0.011919901706278324, -0.041379835456609726, 2.5476421797065996e-05, 0.008038091473281384, -0.0059370785020291805, 0.02406199462711811, 0.0033132622484117746, -0.0010627598967403173, -0.011736921034753323, 0.022833408787846565, 0.0025470296386629343, -0.0014728333335369825, -0.06712786853313446, 0.03257060796022415, -0.011756526306271553, -0.01910843886435032, -0.022480517625808716, -0.03392989560961723, -0.00284273992292583, -0.03649162873625755, -0.009286283515393734, 0.00142790493555367, 0.01918685995042324, 0.010364564135670662, 0.03081922046840191, -0.016533635556697845, 0.022715779021382332, 0.009475799277424812, -0.011638895608484745, -0.018285024911165237, -0.027917666360735893, -0.01039070449769497, -0.014285584911704063, -0.02342156134545803, 0.045536115765571594, -0.012769456952810287, -0.015148209407925606, -0.03761565685272217, -0.013854272663593292, -0.028100647032260895, -0.00024118360306601971, -0.018847038969397545, 0.012089813128113747, 0.020559217780828476, 0.007580639328807592, -0.010344958864152431, 0.003623676486313343, -0.011978717520833015, 0.013553660362958908, -0.017801431939005852, -0.014599266462028027, -0.001111772726289928, 0.001815105671994388, -0.008789620362222195, -0.010717456229031086, 0.0121028833091259, -0.0004059890052303672, -0.017461610957980156, 0.0005857024225406349, 0.013801991939544678, 0.036674611270427704, 0.0074368687346577644, 0.004414415452629328, -0.010220793075859547, -0.02953835390508175, 0.002697335323318839, 0.011037672869861126, 0.011789201758801937, -0.0541100837290287, 0.00888111162930727, 0.0008462868863716722, 0.006267097778618336, -0.010808946564793587, 0.024754708632826805, 0.004149746615439653, -0.001726882765069604, 0.006731085013598204, -0.026362327858805656, -0.020520007237792015, -0.027238022536039352, 0.010737060569226742, 0.029067831113934517, -0.0028917526360601187, -0.004146479070186615, 0.014847597107291222, -0.02053307741880417, -0.029669053852558136, -0.020402375608682632, 0.014795317314565182, 0.0004586777067743242, 0.01989264413714409, 0.016781967133283615, -0.013194234110414982, -0.0021696314215660095, -0.007162397261708975, 0.00959342997521162, -0.002520889276638627, -0.0046660141088068485, 0.017461610957980156, 0.015488030388951302, -0.057142339646816254, 0.013070068322122097, 0.012194373644888401, 0.008730805478990078, -0.013645150698721409, 0.010612895712256432, -0.03306727111339569, 0.00023424012761097401, -0.04216403886675835, -0.011710780672729015, -0.024963829666376114, 0.0002560916473157704, 0.01114223338663578, 0.00984176155179739, -0.030949920415878296, 0.022911829873919487, 0.011011532507836819, 0.0035158484242856503, -0.014899877831339836, 0.24969057738780975, -0.006564441602677107, 0.011671571061015129, 0.03189096599817276, 0.02765626460313797, -0.0015398174291476607, 0.0313158817589283, 0.011390564031898975, -0.00013325343024916947, -0.0013609208399429917, 0.009606500156223774, -0.016808107495307922, -0.003577931085601449, -0.0026123798452317715, 0.015344260260462761, -0.02925081178545952, -0.016677407547831535, -0.032832011580467224, -0.016729686409235, 0.005165944341570139, 0.02904169075191021, -0.008136117830872536, -0.008417123928666115, -0.016572846099734306, -0.0032626157626509666, 0.019121509045362473, -0.013828132301568985, 0.029799755662679672, 0.012246653437614441, 0.017095649614930153, -0.021134300157427788, 0.015566451475024223, 0.0029603703878819942, -0.012645291164517403, -0.014612335711717606, -0.020938249304890633, 0.04260842129588127, -0.006642862223088741, 0.0051626767963171005, 0.017030298709869385, -0.008005416952073574, -8.878456719685346e-05, -0.004280447494238615, -0.016363725066184998, -0.015566451475024223, 0.0037935872096568346, 0.017174068838357925, -0.015474960207939148, 0.0072342827916145325, -0.0017399528296664357, 0.003344303695484996, -0.0505550242960453, 0.044542793184518814, 0.011906832456588745, -0.01612846367061138, -0.032518330961465836, 0.027813104912638664, -0.022937970235943794, -0.006057976745069027, 0.025970226153731346, -0.008495544083416462, 0.03787705674767494, -0.015122069045901299, -0.0031384502071887255, -0.025081461295485497, 0.009907111525535583, -0.017213279381394386, 0.01619381457567215, -0.014821457676589489, -0.011665035970509052, -0.012579940259456635, 0.004368670284748077, -0.008155722171068192, 0.010103162378072739, -0.002796994522213936, -0.027238022536039352, 0.05016292259097099, 0.03139430284500122, 0.019801152870059013, 0.03100220113992691, 0.019957993179559708, 0.0041236067190766335, 0.008671990595757961, 0.0013503014342859387, -0.011665035970509052, -0.01757924072444439, 0.01590627245604992, -0.0026123798452317715, 0.010488729923963547, -0.003476638114079833, 0.007358448579907417, -0.00632591312751174, -0.004313122481107712, -0.0051201991736888885, -0.009443123824894428, 0.005241097416728735, -0.02342156134545803, 0.008580499328672886, -0.013762781396508217, -0.002025860594585538, -0.013828132301568985, 0.03777249529957771, 0.02501611039042473, 0.015461890958249569, -0.019957993179559708, 0.013089673593640327, 0.00900527648627758, 0.003930822946131229, -0.0021810675971210003, -0.01393269281834364, -0.0011681372998282313, -0.022415166720747948, -0.0036334788892418146, -0.0006714747287333012, 0.010737060569226742, 0.025369001552462578, -0.020010273903608322, -0.019513612613081932, -0.01687345840036869, 0.018454935401678085, 0.036177948117256165, -0.01757924072444439, -0.008776551112532616, -0.010900436900556087, -0.004257574677467346, -0.016520565375685692, -0.03178640455007553, -0.009416984394192696, -0.014285584911704063, -0.04161509871482849, 0.0002057514648186043, -0.011338284239172935, 0.03800775855779648, -0.009397379122674465, 0.004071325995028019, 0.009390844032168388, 0.0018020356073975563, -0.004198759328573942, -0.006355320569127798, -0.016180744394659996, -0.012416564859449863, -0.01249498501420021, -0.003004482015967369, -0.007221212610602379, -0.001482635852880776, -0.007325773127377033, 0.0183242354542017, 0.008966066874563694, 0.004515708424150944, 0.0004309038049541414, -0.04880363494157791, -0.023330071941018105, 0.02783924527466297, 0.01644214615225792, 0.011403634212911129, -0.0030714659951627254, -0.031080622225999832, -0.024728568270802498, -0.0038425999227911234, 0.034165158867836, 0.009671850129961967, -0.025721894577145576, 0.013945762999355793, -0.033119551837444305, -0.013109277933835983, -0.022702708840370178, -0.1637418121099472, 0.0015193953877314925, 0.015723291784524918, -0.024676289409399033, 0.04953555762767792, 0.016572846099734306, -0.005662607029080391, -0.029773615300655365, 0.01372357178479433, -0.021578682586550713, 0.020729128271341324, -0.002377118682488799, -0.008737340569496155, 0.0029048225842416286, -0.0011305608786642551, -0.001712178927846253, -0.01297204289585352, 0.009796015918254852, 0.05745602026581764, -0.004398077726364136, 0.06414789706468582, -0.02092517912387848, -0.005564581602811813, 0.0058194478042423725, 0.01407646294683218, 0.00737805338576436, -0.008162257261574268, -0.004656211938709021, 0.0010366197675466537, -0.019879573956131935, -0.01658591628074646, -0.010619430802762508, 0.018768617883324623, 0.0013699064729735255, 0.01576250232756138, -0.03345937281847, 0.023761384189128876, 0.019487472251057625, -0.009972462430596352, 0.023107880726456642, 0.013096208684146404, 0.020232465118169785, 0.02488541044294834, -0.0035975363571196795, 0.015644870698451996, 0.03207394853234291, 0.008822295814752579, -0.006835645530372858, 0.015566451475024223, 0.0020291281398385763, 0.01148205529898405, -0.02063763700425625, -0.02356533333659172, -0.006548104342073202, 0.027891525998711586, 0.022624287754297256, -0.005548243876546621, 0.0028215008787810802, -0.0018477808916941285, -0.012462309561669827, 0.02815292589366436, -0.02441488765180111, 4.822140545002185e-05, -0.01718713901937008, -0.023539192974567413, 0.018977738916873932, -0.008534754626452923, 0.02651916816830635, 0.013422960415482521, 0.00989404134452343, 0.014207163825631142, -0.030139576643705368, -0.017174068838357925, -0.02160482294857502, 0.039236344397068024, -0.028388187289237976, -0.021578682586550713, 0.012854412198066711, 0.03327639400959015, -0.01605004444718361, -0.007005556486546993, 0.03285815194249153, 0.008894181810319424, -0.01627223566174507, -0.003274052171036601, 0.022768057882785797, 0.005054848734289408, -0.016350654885172844, -0.001133011537604034, 0.0018412458011880517, 0.017213279381394386, -0.005453485995531082, -0.01712178997695446, -0.021905433386564255, 0.0023820200003683567, -0.01691266894340515, 0.013076603412628174, -0.005590721499174833, -0.040987733751535416, -0.0012212344445288181, 0.009214398451149464, -0.011338284239172935, -0.009920181706547737, 0.0186901967972517, 0.03798161819577217, 0.02195771411061287, -0.025107601657509804, 0.005538441240787506, 0.019304489716887474, -0.00019390671513974667, -0.03871354088187218, 0.0015643237857148051, 0.006231154780834913, 0.023408491164445877, 0.0023869210854172707, 0.03040097840130329, -0.012181303463876247, 0.006776830181479454, -0.011841481551527977, -0.006044906564056873, -0.023434631526470184, -0.0002556832041591406, -0.006495824083685875, 0.019984133541584015, 0.016324514523148537, -0.035681284964084625, -0.058606185019016266, -0.003790319664403796, 0.008920321241021156, 0.019709663465619087, -0.0030404245480895042, 0.004747702274471521, -0.00316295656375587, 0.01691266894340515, -0.016507495194673538, 0.023447701707482338, -0.006466416176408529, -0.028022225946187973, -0.0011893762275576591, 0.01662512682378292, -0.013155023567378521, 0.009469264186918736, 0.027238022536039352, -0.02156561240553856, -0.00324301072396338, 0.01989264413714409, -0.008495544083416462, 0.0013208937598392367, -0.004215097054839134, -0.01982729323208332, -0.02139570191502571, -0.014651546254754066, -0.01627223566174507, 0.006391263101249933, 0.031943246722221375, 0.01432479452341795, 0.028074506670236588, 0.004845727700740099, -0.008626244962215424, -0.00950193963944912, -0.01972273364663124, 0.0034276254009455442, -0.03317183256149292, -0.01982729323208332, 0.023970505222678185, -0.02363068237900734, -0.006142931990325451, -0.005283575039356947, 0.008214537985622883, -0.020885968580842018, -0.029642915353178978, -0.014181023463606834, 0.008959531784057617, 0.011606220155954361, -0.016063114628195763, -0.01801055297255516, -0.03638707101345062, 0.006048174109309912, -0.008796155452728271, -0.000878145219758153, 0.02309481054544449, 0.02893713116645813, 0.009848296642303467, 0.016219954937696457, -0.03811232000589371, 0.0009925082558766007, -0.004999300930649042, -0.00123430450912565, -0.019605102017521858, 0.030583959072828293, 0.018062833696603775, 0.016951877623796463, -0.003344303695484996, -0.008345238864421844, -0.0005571116344071925, 0.0067964354529976845, -0.002726742997765541, 0.015474960207939148, -0.018964668735861778, 0.029303092509508133, -0.021330351009964943, -0.0057344925589859486, 0.009443123824894428, -0.004525511059910059, 0.04101387411355972, 0.012508055195212364, -0.011377493850886822, -0.01436400506645441, 0.01103113777935505, 0.003947160672396421, 0.005884798243641853, 0.015671011060476303, -0.00402231328189373, -0.005012371111661196, 0.004685619380325079, -0.05709005892276764, -0.006057976745069027, 0.007070906925946474, 0.010344958864152431, 0.005754097364842892, -0.008900715969502926, -0.005143071990460157, -0.007325773127377033, -0.012958972714841366, -0.024088134989142418, 0.01776222325861454, -0.02629697695374489, -0.014952157624065876, -0.08495544642210007, 0.013279189355671406, 0.0047411671839654446, -0.008351773954927921, -0.003731504548341036, -0.01640293560922146, 0.010050882585346699, -0.012854412198066711, 0.0031368164345622063, -0.0020618033595383167, -0.02815292589366436, 0.015017508529126644, -0.0012498252326622605, -0.021042808890342712, -0.03790319710969925, 0.015357330441474915, 0.005312982480973005, -0.0038360650651156902, 0.009044487029314041, 0.0011452647158876061, -0.0030567622743546963, -0.00028100647614337504, 0.008822295814752579, 0.020206324756145477, -0.026754429563879967, 0.030636239796876907, -0.021931573748588562, 0.018964668735861778, 0.0027071379590779543, -0.023251650854945183, -0.0018788223387673497, -0.0067114802077412605, -0.0153965400531888, -0.01563180238008499, -0.0054240780882537365, -0.027734683826565742, -0.0029538352973759174, 0.009691455401480198, 0.028701869770884514, 0.05264623463153839, -0.028388187289237976, 0.0058357855305075645, 0.018729407340288162, 0.004054988734424114, 0.01737011969089508, -0.012514590285718441, -0.0024882142897695303, 0.015135139226913452, 0.010292679071426392, 0.006335715297609568, 0.02914625220000744, 0.006551371421664953, -0.01112262811511755, -0.01957896165549755, -0.014089533127844334, -0.03670075163245201, -0.01757924072444439, 0.021343421190977097, -0.007528359070420265, -0.005054848734289408, 0.025865664705634117, -0.0030616633594036102, 0.019957993179559708, 0.009247072972357273, -0.005564581602811813, -0.010155443102121353, -0.03476637974381447, -0.0060383714735507965, 0.0222452562302351, -0.03474023938179016, -0.03136816248297691, -0.01265182625502348, -0.00042763628880493343, 0.0010562249226495624, 0.021879294887185097, 0.009064092300832272, 0.0050711864605546, 0.0021255197934806347, -0.013854272663593292, 0.015357330441474915, 0.0020716057624667883, 0.018807828426361084, -0.030061157420277596, 0.0007968657300807536, 0.02932923287153244, -0.0033557401038706303, -0.0017758954782038927, 0.00923400279134512, -0.027603983879089355, 0.0017170802457258105, -0.03505392372608185, 0.010220793075859547, 0.003564861137419939, 0.02786538563668728, 0.021840084344148636, 0.03385147824883461, -0.006028568837791681, 0.017500821501016617, 0.02515988051891327, 0.016703547909855843, 0.015540311112999916, -0.013011252507567406, -0.004280447494238615, -0.0033050933852791786, -0.0013110912404954433, 0.01953975111246109, -0.020546147599816322, -0.03267516940832138, 0.011795736849308014, -0.008090372197329998, -0.021382631734013557, 0.007855110801756382, -0.0064762188121676445, 0.009416984394192696, -0.021238861605525017, -0.008979137055575848, -0.0016337585402652621, -0.03939318656921387, -0.03826915845274925, 0.005489428527653217, 0.01331186480820179, 0.01871633715927601, 0.02063763700425625, -0.031629566103219986, 0.020702987909317017, -0.008155722171068192, 0.0060056964866817, -0.02501611039042473, 0.02427111566066742, -0.0010611261241137981, -0.00824067834764719, 0.032047808170318604, -0.009965927340090275, -0.0186901967972517, 0.0009802550775930285, 0.022585077211260796, 0.013324934057891369, -0.010423379018902779, 0.008926856331527233, 0.07523131370544434, 0.014233304187655449, -0.003600803669542074, 0.000852821918670088, 0.018990809097886086, -0.010619430802762508, 0.0018379783723503351, 0.0016460117185488343, -0.01999720372259617, -0.010991927236318588, 0.018624847754836082, -0.01900387927889824, 0.010795876383781433, -0.01505671814084053, -0.021617893129587173, 0.026179347187280655, -0.02972133457660675, 0.03521076217293739, -0.004473230801522732, 0.003630211343988776, 0.04357560724020004, -0.005796574987471104, 0.00653176661580801, -0.0076133147813379765, -0.011932971887290478, -0.02373524382710457, 0.022362885996699333, 0.00959342997521162, 0.004633339121937752, -0.007463009096682072, 0.02836204692721367, 0.016729686409235, -0.0229641105979681, -0.0027528831269592047, 0.010168513283133507, 0.008848436176776886, -0.013749711215496063, 0.0102338632568717, 0.03928862512111664, -0.006570976693183184, 0.021082019433379173, 0.0005432246834971011, -0.006185409612953663, -0.016063114628195763, 0.01693880744278431, 0.006979416590183973, -0.02150026150047779, 0.015893202275037766, 0.016350654885172844], "a9cdbcc2-2f08-45ad-9dbe-141195027deb": [-0.023494860157370567, -0.015417196787893772, 0.009393766522407532, -0.002698357682675123, -0.024024086073040962, 0.01824437826871872, -0.030890101566910744, -0.015904642641544342, -0.002935116644948721, -0.02919100597500801, 0.034761808812618256, 0.0023954452481120825, -0.012346291914582253, -0.003467824775725603, -0.024553313851356506, 0.002534715225920081, 0.0038856349419802427, 0.004477532580494881, 0.021405808627605438, -0.03751935809850693, 0.007235080003738403, 0.0019358539720997214, 0.008920247666537762, -0.029943063855171204, -0.022868145257234573, 0.008850612677633762, -0.005400197114795446, -0.026642363518476486, 0.01896858401596546, 0.013550977222621441, 0.029803793877363205, 0.01061237882822752, -0.01103715319186449, -0.006524802651256323, -0.008328350260853767, -0.02428869903087616, -0.02013845182955265, -0.007158481515944004, 0.024469751864671707, 0.019929546862840652, 0.014330890029668808, -0.006674517877399921, 0.016559211537241936, -0.0025869414675980806, -0.028940320014953613, 0.007959284819662571, 0.010131897404789925, -0.011991152539849281, -0.0069112773053348064, 0.012729284353554249, -9.150478581432253e-05, -0.0016329415375366807, -0.0253750067204237, -0.018676117062568665, -0.02019415982067585, 0.009254495613276958, 0.01267357636243105, 0.01253430638462305, -0.028773196041584015, -0.004453160334378481, -0.0032745874486863613, 0.019511736929416656, -0.030750831589102745, -0.011517634615302086, -0.009888174943625927, -0.013286364264786243, -0.009804612956941128, 0.014762626960873604, -0.022701021283864975, -0.015361488796770573, 0.011991152539849281, 0.021503297612071037, 0.011622087098658085, 0.0010131897870451212, 0.014358744025230408, 0.0067685251124203205, -0.037909314036369324, -0.0020437883213162422, 0.014511941000819206, -0.004411379341036081, 0.014567648991942406, 0.0013143612304702401, 0.006340269930660725, -0.00951910950243473, 0.02034735679626465, 0.01263179536908865, -0.02022201381623745, 0.021698277443647385, -0.015361488796770573, -0.006987875793129206, 0.016475649550557137, -0.003673247992992401, 0.008384058251976967, 0.028007211163640022, -0.004327817354351282, 0.002047270070761442, 0.01916356198489666, 0.015403269790112972, 0.0017147627659142017, -0.03111293353140354, -0.015890715643763542, 0.009853357449173927, -0.02033342979848385, 0.01113464217633009, -0.022408554330468178, 0.0016277189133688807, 0.04141891747713089, -0.010396510362625122, -0.005483759101480246, -0.006176627706736326, -0.03417687490582466, 0.03022160567343235, 0.022464262321591377, -0.04754680022597313, -0.010138860903680325, 0.0019706713501363993, 0.020458772778511047, -0.030667269602417946, -0.009950846433639526, 0.013216729275882244, -0.012882481329143047, 0.01109982468187809, 0.037714336067438126, 0.0061522554606199265, -0.0029020400252193213, 0.021837547421455383, -0.03211567923426628, -0.005727481562644243, -0.013745956122875214, -0.02335559017956257, 0.06395281851291656, -0.009365912526845932, 0.029553107917308807, 0.015236145816743374, -0.013293327763676643, 0.018676117062568665, -0.02107156068086624, 0.011399255134165287, -0.004167656879872084, -0.0070052845403552055, 0.009748904965817928, 0.02921885997056961, -0.011914554052054882, 0.02437226101756096, 0.008168189786374569, 0.01623889058828354, 0.010772540234029293, 0.003293737070634961, -0.0021012371871620417, -0.01410805806517601, 0.008982919156551361, -0.03712939843535423, 0.01597427763044834, 0.0001896466565085575, -0.006684963125735521, 0.012297547422349453, 0.00911522563546896, -0.0037185107357800007, -0.01728341542184353, -0.0029002991504967213, 0.00028746211319230497, 0.04317372292280197, 8.513971260981634e-05, 0.007826977409422398, 0.02221357636153698, 0.03437185287475586, 0.002917707897722721, -0.012227912433445454, -0.01362757571041584, -0.031001517549157143, -0.013362962752580643, -0.0060129850171506405, -0.028494656085968018, 0.012791955843567848, 0.016879532486200333, 0.022909926250576973, 0.01811903528869152, 0.015347561798989773, 0.003224102081730962, -0.013745956122875214, -0.009331095032393932, 0.003913488704711199, -0.006120919715613127, 0.006695408374071121, -0.02639167755842209, -0.016378160566091537, 0.028856758028268814, 0.014957604929804802, 0.023648057132959366, -0.009463401511311531, 0.01414983905851841, 0.035903822630643845, 0.01100929919630289, 0.013181911781430244, -0.6007553935050964, -0.03818785399198532, -0.015486831776797771, 0.0010210237232968211, 0.03963626176118851, 0.013035678304731846, 0.02221357636153698, 0.038939911872148514, -0.03907918184995651, 0.04520706459879875, -0.028996028006076813, 0.020834801718592644, 0.008948101662099361, 0.0025991275906562805, -0.004331299103796482, -0.0251243207603693, -0.024581167846918106, -0.00912218913435936, 0.0057031093165278435, 0.0013735510874539614, -0.029720231890678406, 0.01931675896048546, -0.022673167288303375, -0.0019428174709901214, 0.0007986268028616905, -0.004919715225696564, -0.004251218866556883, -0.03214353322982788, 0.006500430405139923, 0.03520747274160385, -0.054955970495939255, 0.038967765867710114, 0.01722770743072033, -0.0066640726290643215, 0.049775123596191406, -0.024915415793657303, -0.031781431287527084, -0.0005205218913033605, 0.0027436204254627228, 0.04356367886066437, -0.0253471527248621, -0.016364233568310738, -0.01607176661491394, -0.01626674458384514, 0.009205751121044159, 0.006862532813102007, 0.029887355864048004, -0.02736656926572323, -0.007680744398385286, 0.007945357821881771, -0.010751648806035519, -0.014887969940900803, 0.020403064787387848, -0.01213042251765728, 0.0033720764331519604, 0.00113592145498842, 0.04428788274526596, -0.04217097535729408, 0.0003673247992992401, -0.012771065346896648, -0.00963748898357153, 0.005445459857583046, -0.006970467045903206, 0.002832405036315322, -0.021684350445866585, 0.02836931310594082, -0.008829722180962563, -0.01803547330200672, 0.022394627332687378, -0.021405808627605438, -0.02310490421950817, 0.0069112773053348064, 0.028996028006076813, -0.027101954445242882, 0.01210256852209568, 0.04774177819490433, 0.041836727410554886, -0.0037672552280128, -0.009226641617715359, 0.021517224609851837, -0.006643182132393122, -0.015848934650421143, 0.016308525577187538, -0.003286773571744561, 0.021656496450304985, -0.006507393904030323, -0.014017532579600811, -0.021921109408140182, 0.021531151607632637, -0.02210216037929058, 0.010048335418105125, 0.0062567079439759254, -0.0036175400018692017, -0.04114037752151489, 0.01069594081491232, 0.029525253921747208, 0.00113853276707232, -0.008432802744209766, -0.0038334087003022432, -0.015333634801208973, -0.009755868464708328, 0.017826568335294724, -0.004164175130426884, 0.004829189740121365, 0.0069043138064444065, 0.023467006161808968, -0.025709254667162895, -0.01404538657516241, 0.02310490421950817, -0.012408963404595852, 0.0062462626956403255, -0.001219483558088541, -0.00534448865801096, -0.012276656925678253, -0.000333595322445035, -0.03428829088807106, 0.016531357541680336, 0.013773810118436813, 0.02419121004641056, -0.015347561798989773, 0.015848934650421143, 0.007078401278704405, -0.0021447590552270412, -0.015918569639325142, 0.023870889097452164, 0.014400525018572807, 0.020974071696400642, 0.00042390325688757, -0.007541474420577288, 0.0014571130741387606, -0.0027819196693599224, 0.012903371825814247, 0.01614140160381794, -0.010953591205179691, -0.002174353925511241, -0.0019671896006911993, 0.0008173412061296403, -0.022450335323810577, 0.03119649551808834, -0.03465039283037186, -0.01623889058828354, 0.0035148283932358027, 0.014734772965312004, -0.01704665645956993, 0.01116945967078209, -0.030806539580225945, -0.008516364730894566, 0.0007168056326918304, 0.0061487737111747265, 0.025820670649409294, -0.0055951750837266445, 0.001216872246004641, -0.010883956216275692, 0.01601605862379074, -0.0077712698839604855, 0.0027610291726887226, -0.005508131347596645, -0.029887355864048004, 0.0035130875185132027, -0.017715152353048325, 0.00450886832550168, 0.024664729833602905, -0.018467210233211517, -0.024038013070821762, -0.022408554330468178, -0.005978167522698641, -0.00529226241633296, 0.008753123693168163, -0.02434440702199936, -0.00906648114323616, 0.027965430170297623, 0.004682956263422966, 0.016851678490638733, -0.0018366239964962006, -0.00056796072749421, -0.003199729835614562, -0.02637775056064129, 0.005995576269924641, -0.015403269790112972, -0.006691926624625921, -0.0017460985109210014, 0.037630774080753326, 0.02012452483177185, 0.0038334087003022432, 0.025876378640532494, 0.03244992718100548, 0.022687094286084175, 0.011768320575356483, -0.01211649551987648, -0.008349240757524967, -0.007339532487094402, 0.011197313666343689, -0.007179372012615204, 0.018620407208800316, 0.0015015053795650601, 0.005476795602589846, 0.0003399060224182904, 0.0070087662898004055, 0.01913570798933506, 0.038744933903217316, 0.02215786837041378, 0.01719985343515873, -0.013293327763676643, -0.03331340104341507, 0.02632204256951809, -0.02607135660946369, -0.01618318259716034, -0.011343547143042088, 0.03325769305229187, -9.449691424379125e-05, 0.0016747225308790803, -0.046989720314741135, -0.02426084503531456, 0.003930897451937199, 0.03426043689250946, 0.00015831089694984257, -0.013488305732607841, 0.02218572236597538, 0.0013039159821346402, 0.029970917850732803, 0.015681808814406395, 0.017464466392993927, 0.01905214600265026, -0.01561217475682497, 0.027519766241312027, -0.007868758402764797, 0.005915496032685041, 0.037630774080753326, -0.006751116365194321, -0.009714087471365929, -0.00800802931189537, -0.016378160566091537, 0.010821284726262093, -0.008495474234223366, 0.017840495333075523, 0.0018418466206640005, 0.027770452201366425, -0.023829108104109764, 0.035987384617328644, -0.003204952459782362, -0.004157211631536484, 0.0021221276838332415, -0.0017678594449535012, -0.016740262508392334, 0.027032319456338882, 0.012012043036520481, 0.0504157654941082, 0.021921109408140182, -0.02619669958949089, -0.009797649458050728, -0.026893049478530884, 0.005828452296555042, -0.0251103937625885, 0.008251751773059368, 0.025820670649409294, 0.021572934463620186, 0.02320239320397377, 0.004797853995114565, 0.013425634242594242, 0.028048992156982422, 0.013718102127313614, 0.019664933905005455, -0.009379839524626732, 0.0045993938110768795, 0.010090116411447525, -0.009296276606619358, -0.006267153192311525, -0.018759679049253464, -0.015152583830058575, -0.00915700662881136, -0.0003462166932877153, -0.0037289559841156006, 0.0040840948931872845, 0.017840495333075523, 0.0010854360880330205, 0.0029803793877363205, 0.004338262602686882, 0.02015237882733345, 0.03754721209406853, 0.01362757571041584, -0.022478189319372177, -0.014804407954216003, 0.017896203324198723, -0.006486503407359123, 0.009902101941406727, 0.016573138535022736, -0.01701880246400833, -0.009797649458050728, 0.00605476601049304, 0.013523123227059841, -0.003774218959733844, 0.015431123785674572, 0.00226139766164124, -0.006399459671229124, -0.005818007048219442, -0.003116167848929763, 0.013808627612888813, -0.02336951717734337, -0.04949658364057541, 0.0010123193496838212, -0.005062466952949762, -0.014985458925366402, -0.01715807244181633, -0.0015737517969682813, 0.04423217475414276, 0.004362634848803282, -0.010131897404789925, -0.01697702147066593, 0.029636669903993607, -0.012701430357992649, -0.006113956216722727, -0.007127145770937204, -0.01212345901876688, -0.017951911315321922, -0.015890715643763542, 0.026503093540668488, 0.024776145815849304, -0.022909926250576973, 0.02736656926572323, -0.008356204256415367, -0.006503912154585123, 0.0023275509011000395, -0.016907386481761932, 0.007792160380631685, -0.032812029123306274, 0.013871299102902412, 0.0042895181104540825, 0.0018818867392838001, -0.006228853948414326, -0.0032345473300665617, -0.04147462546825409, 0.01619710959494114, 0.007249007001519203, -0.017534101381897926, -0.0023171056527644396, -0.026739852502942085, 0.0006515227723866701, -0.033926188945770264, 0.030862247571349144, -0.007478802464902401, -0.0037602917291224003, -0.009470365010201931, 0.013349035754799843, 0.006277598440647125, -0.0031300948467105627, -0.00263046333566308, 0.013509196229279041, -0.010020481422543526, 0.014762626960873604, 0.005535985343158245, 0.001214260933920741, 0.028912466019392014, 0.015890715643763542, -0.0301380418241024, -0.0066710361279547215, 0.003927415702491999, -0.008697415702044964, 0.02924671396613121, -0.006956540048122406, 0.015932496637105942, -0.0044984230771660805, 0.043925780802965164, -6.087625297368504e-05, -0.0038055547047406435, -0.02109941467642784, 0.04214312136173248, 0.008244788274168968, -0.010299021378159523, 0.005772744305431843, -0.004192029125988483, -0.021517224609851837, 0.025792816653847694, 0.0016851677792146802, -0.00953999999910593, 0.003457379527390003, 0.02327202819287777, -0.03799287602305412, 0.013968788087368011, -0.01359275821596384, 0.049023065716028214, -0.025528203696012497, 0.02414942905306816, -0.023425225168466568, 0.0003205387620255351, -0.01254823338240385, -0.02206037938594818, -0.01813296228647232, -0.0011620345758274198, -0.003596649505198002, -0.03646090254187584, -0.020890509709715843, -0.018801460042595863, -0.020625896751880646, -0.021740058436989784, 0.00450886832550168, -0.05155777931213379, -0.025709254667162895, 0.016392087563872337, 0.008899357169866562, 0.015208291821181774, 0.013460451737046242, -0.01714414544403553, -0.008279605768620968, 0.03395404294133186, -0.028996028006076813, -0.015222218818962574, 0.006207963451743126, -0.0073256054893136024, 0.008725269697606564, 0.013892189599573612, -0.008404948748648167, 0.013850408606231213, -0.015890715643763542, 0.01100233569741249, 0.00604083901271224, 0.004251218866556883, 0.008767050690948963, 0.008460656739771366, 0.0015006349422037601, -0.0060129850171506405, 0.01715807244181633, 0.00030443567084148526, -0.004310408607125282, 0.008655634708702564, 0.03529103472828865, -0.01615532860159874, 0.00152065500151366, -0.029915209859609604, -0.00019758941198233515, 0.0023710730019956827, 0.006552656646817923, 0.012311474420130253, -0.02107156068086624, 0.0060095032677054405, 0.013056568801403046, -0.00534448865801096, 0.007583255413919687, -0.0005553393857553601, 0.019748495891690254, 0.001037562033161521, 0.021628642454743385, -0.00610002875328064, 0.01209560502320528, -0.021990744397044182, -0.00802891980856657, -0.02139188162982464, 0.02331380918622017, 0.0006741542019881308, 0.023648057132959366, 0.02118297666311264, -0.026920903474092484, -0.03662802651524544, -0.02013845182955265, 0.03643304854631424, 0.0046028755605220795, -0.015765370801091194, -0.012408963404595852, -0.006364642176777124, -0.019651006907224655, -0.015514685772359371, -0.01256216038018465, 0.03562528267502785, -0.027895795181393623, -0.02129439264535904, 0.004268627613782883, 0.0032728465739637613, 0.006925204303115606, 0.02137795463204384, -0.018508991226553917, -0.026015648618340492, 0.0001318713475484401, 0.0012490784283727407, 0.01717199943959713, 0.020444845780730247, 0.01409413106739521, 0.005675255320966244, -0.03328554704785347, -0.01809118129312992, 0.011475853621959686, -0.031085079535841942, -0.0017548028845340014, -0.003864744445309043, -0.007040102034807205, 0.01731126941740513, 0.027993284165859222, 0.01810510829091072, 0.000334030541125685, -0.01108589768409729, -0.002947302768006921, 0.033731210976839066, -0.007903576828539371, 0.007102773524820805, 0.002445930615067482, 0.006207963451743126, -0.005682218819856644, 0.012791955843567848, -0.006751116365194321, -0.00304479175247252, 0.002082087565213442, -0.004703846760094166, 0.014860115945339203, 0.014665137976408005, 0.005863269791007042, -0.03395404294133186, 1.3294578820932657e-05, -0.016740262508392334, -0.024998977780342102, 0.004205956123769283, -0.012262729927897453, -0.029692377895116806, -0.007743415888398886, 0.004279072862118483, 0.02203252539038658, 0.01068201381713152, 0.028968174010515213, -0.008892393670976162, -0.009929955936968327, 0.004912751726806164, 0.020904436707496643, -0.024971123784780502, 0.011280875653028488, -0.021851474419236183, 0.010953591205179691, 0.01924712397158146, 0.015403269790112972, 0.01725556142628193, -0.017645517364144325, 0.016531357541680336, -0.006604882888495922, 0.018829314038157463, -0.04219882935285568, -0.014985458925366402, -0.004867488984018564, -0.007095810025930405, -0.006364642176777124, -0.007868758402764797, 0.0021430181805044413, -0.02013845182955265, 0.002160426927730441, 0.005880678538233042, 0.0007920985226519406, 0.011294802650809288, 0.0062532261945307255, -0.01625281758606434, -0.013864335604012012, -0.01105804368853569, 0.04523491859436035, 0.005424569360911846, 0.03646090254187584, 0.010389546863734722, 0.012492525391280651, -0.014240364544093609, -0.05657150223851204, -0.014525867998600006, -0.006322861183434725, 0.012847663834691048, 0.048967357724905014, -0.01102322619408369, -0.015124729834496975, 0.011559415608644485, 0.0013570127775892615, -0.004192029125988483, -0.03637734055519104, 0.017408758401870728, 0.020403064787387848, -0.013112276792526245, -0.030834393575787544, 0.007283824495971203, -0.013996642082929611, 0.0021134233102202415, 0.007701634895056486, 0.0028724451549351215, 0.006242780946195126, 0.005469832103699446, -0.007057510782033205, 0.009205751121044159, -0.01069594081491232, 0.03832712396979332, 0.0017487098230049014, 0.0069112773053348064, -0.009797649458050728, -0.01359972171485424, -0.0055951750837266445, 0.005671773571521044, -0.00964445248246193, 0.03746365010738373, -0.010243313387036324, -0.0008887171279639006, -0.0015728813596069813, 0.016573138535022736, -0.01105108018964529, -0.022422481328248978, 0.0063576786778867245, 0.034873224794864655, -0.017826568335294724, -0.0019271495984867215, -0.02024986781179905, -5.450437583931489e-06, 0.02031950280070305, 0.017408758401870728, 0.0024877116084098816, 0.00915004312992096, -0.01104411669075489, 0.008885430172085762, 0.035903822630643845, 0.0038159999530762434, 0.015445050783455372, -0.011733503080904484, -0.014553721994161606, -0.026572728529572487, -0.019567444920539856, 0.0010471368441358209, 0.024720437824726105, -0.023550568148493767, -0.01596035063266754, -0.013362962752580643, -0.01810510829091072, 0.02611313760280609, 0.003864744445309043, -0.018606480211019516, 0.010347765870392323, 0.04403719678521156, -0.034678246825933456, 0.005414124112576246, -0.010758612304925919, -0.01263179536908865, -0.026920903474092484, -0.012993897311389446, 8.296361193060875e-05, -0.009386803023517132, 0.007464875467121601, -0.016503503546118736, 0.018453283235430717, -0.018731825053691864, 0.0028550364077091217, 0.026906976476311684, 0.00534100690856576, 0.019581371918320656, 0.02005488984286785, -0.0073186419904232025, 0.01594642363488674, -0.016517430543899536, -0.012868554331362247, 0.011510671116411686, -0.00016473037248943, 0.005107729695737362, 0.04239380732178688, -0.01204686053097248, 0.00047482390073128045, -0.011489780619740486, -0.010173678398132324, -0.00132741779088974, -0.01209560502320528, -0.037797898054122925, -0.0022474706638604403, -0.0030082333832979202, -0.015681808814406395, -0.01896858401596546, -0.026489166542887688, 0.0036349487490952015, -0.012784992344677448, 0.02421906404197216, 0.02728300727903843, 0.007158481515944004, 0.0039448244497179985, 0.020779093727469444, -0.017631590366363525, 0.01212345901876688, 0.012917298823595047, -0.02426084503531456, -0.024024086073040962, -0.03356408700346947, -0.011580306105315685, -0.015180437825620174, -0.0036419122479856014, 0.02215786837041378, 0.00799410231411457, -0.011942408047616482, -0.029580961912870407, -0.01713021844625473, -0.020876582711935043, -0.006441240664571524, -0.024859707802534103, 0.03041658364236355, 0.03523532673716545, -0.0006702371756546199, -0.00960267148911953, 0.005079875700175762, -0.010006554424762726, 0.02018023282289505, -0.002170872176066041, 0.00459243031218648, -0.00802891980856657, 0.017492320388555527, -0.001417943392880261, 0.015431123785674572, -0.009741941466927528, -0.0024076313711702824, -0.008509401232004166, 0.013488305732607841, 0.014846188947558403, 0.034873224794864655, 0.012304510921239853, -0.0006402070866897702, -0.011594233103096485, -0.029608815908432007, 0.01052185334265232, 0.0031562079675495625, 0.005570802837610245, -0.041892435401678085, 0.005675255320966244, 0.015041166916489601, 0.00807070080190897, -0.014665137976408005, 0.02841109409928322, 0.010493999347090721, 0.012513415887951851, 0.0029542662668973207, -0.021935036405920982, -0.022506043314933777, -0.019609225913882256, 0.004373080097138882, 0.013989678584039211, -0.018940730020403862, -0.008801868185400963, 0.016573138535022736, -0.011580306105315685, 0.011872773058712482, -0.013892189599573612, 0.033759064972400665, -0.022714948281645775, 0.023940524086356163, 0.0012499488657340407, 0.0008721788180992007, -0.0020403065718710423, -0.011510671116411686, 0.00602691201493144, -0.03155859559774399, 0.0035287553910166025, 0.005382787901908159, 0.0010741204023361206, -0.03342481702566147, 0.017854422330856323, 0.027993284165859222, -0.03258919715881348, -0.03506820276379585, 0.012339328415691853, 0.003565313760191202, 0.0013648467138409615, -0.028884612023830414, -0.013279400765895844, -0.00918486062437296, 0.011810101568698883, 0.011761357076466084, -0.0009574817377142608, -0.04339655488729477, -0.002158686053007841, 0.0008634744444862008, -0.006528284400701523, -0.008196043781936169, 0.24355550110340118, -0.012819809839129448, 0.02630811557173729, 0.029943063855171204, 0.012415926903486252, -0.008676525205373764, 0.019818130880594254, 0.0003483927866909653, -0.005549912340939045, 0.021015852689743042, 0.006298488937318325, -0.015403269790112972, 0.010083152912557125, 0.0027854014188051224, 0.006159218959510326, -0.005964240524917841, -0.03300700709223747, -0.013161021284759045, -0.05150207132101059, 0.016392087563872337, 0.040945399552583694, 0.0032589195761829615, -0.0010819543385878205, -0.032644905149936676, 0.021001925691962242, -0.0018279196228832006, -0.008189080283045769, 0.0011515893274918199, -0.00040932343108579516, 0.0037463647313416004, -0.02036128379404545, 0.009929955936968327, -0.022895999252796173, 0.0037985912058502436, -0.018843241035938263, -0.01215827651321888, 0.03111293353140354, 0.02629418857395649, 0.014651210978627205, 0.017951911315321922, -0.003906525205820799, -0.04228239133954048, -0.018634334206581116, -0.03400975093245506, -0.018439356237649918, 0.02115512266755104, -0.0025956458412110806, -0.01210256852209568, 0.003469565650448203, 0.0034538977779448032, -0.027993284165859222, -0.0077712698839604855, 0.0403047576546669, 0.006740671116858721, 0.007541474420577288, -0.011392291635274887, 0.046850450336933136, -0.013906116597354412, 0.0019358539720997214, 0.004407897591590881, 0.0014336112653836608, 0.024790072813630104, -0.019595298916101456, 4.768367944052443e-05, -0.036878712475299835, 0.018411502242088318, -0.02215786837041378, 0.0020368248224258423, -0.013745956122875214, -0.028508583083748817, 0.007645926903933287, -0.008739196695387363, 0.013084422796964645, 0.003930897451937199, -0.005375824403017759, -0.01919141598045826, 0.012882481329143047, 0.010473108850419521, 0.006500430405139923, 0.04272805526852608, 0.002432003617286682, 0.006893868558108807, -0.004359153099358082, -0.023550568148493767, -0.02311883121728897, -0.033842626959085464, 0.00300997425802052, 0.0042895181104540825, 0.016795970499515533, -0.021029779687523842, -0.0018714414909482002, -0.019442101940512657, -0.0008360556093975902, -0.011656904593110085, -0.028633926063776016, 0.02024986781179905, -0.016322452574968338, 0.01265268586575985, -0.01828615926206112, 0.0038960801903158426, -0.016907386481761932, 0.0406668595969677, 0.02735264226794243, 0.03016589768230915, -0.005201736930757761, 0.005570802837610245, -0.0021325729321688414, 0.01616925559937954, 0.014428379014134407, -0.005894605536013842, 0.009707123972475529, -0.044928524643182755, -0.00958178099244833, 0.008258715271949768, 0.0008321386412717402, 0.012750174850225449, -0.01059148833155632, -0.007471838966012001, -0.007186335511505604, -0.0007759954314678907, 0.03604309260845184, -0.017408758401870728, 0.008432802744209766, 0.01066112332046032, 0.007151518017053604, -0.0024703028611838818, -0.006106992717832327, -0.00339818955399096, -0.026767706498503685, -0.03406545892357826, 0.0065631018951535225, -0.006709335371851921, 0.0400262176990509, -0.005734445061534643, 0.016628846526145935, -0.0010680273408070207, -0.013794700615108013, -0.008425839245319366, -0.014985458925366402, 0.003079609479755163, 0.012283620424568653, 0.010027444921433926, 0.009853357449173927, -0.0052469996735453606, 0.00066066236468032, 0.008495474234223366, 0.0007259452249854803, 0.023620203137397766, 0.005873715039342642, -0.007743415888398886, -0.043842218816280365, -0.030527999624609947, 0.016670627519488335, -0.019790276885032654, 0.018439356237649918, -0.015821080654859543, -0.03531888872385025, -0.04448286071419716, 0.004348707851022482, -0.006110474467277527, -0.02807684615254402, -0.012255766429007053, 0.02416335605084896, -0.042031705379486084, -0.027923649176955223, -0.020472699776291847, -0.17915701866149902, -0.0015319708036258817, 0.00810551829636097, -0.03334125503897667, 0.016879532486200333, 0.01059148833155632, 0.009240568615496159, -0.013140130788087845, 0.006980912294238806, -0.020779093727469444, 0.022380700334906578, 0.0033703355584293604, -0.004484496079385281, -0.012471634894609451, -0.007708598393946886, 0.01415680255740881, -0.018745752051472664, 0.02440011501312256, 0.045791998505592346, 0.016573138535022736, 0.0607217513024807, -0.02022201381623745, -0.004167656879872084, 0.015055093914270401, -0.00023414779570885003, 0.003997051157057285, -0.01412198506295681, -0.003857780946418643, -0.008878466673195362, -0.029608815908432007, -0.013007824309170246, 0.00037450590752996504, 0.012924262322485447, -0.008502437733113766, -0.007896613329648972, -0.020765166729688644, -0.00801499281078577, 0.001226447056978941, -0.004136321134865284, 0.008293532766401768, -0.006371605675667524, 0.03356408700346947, 0.028021138161420822, -0.0010062262881547213, -0.017993692308664322, 0.03328554704785347, -0.010890919715166092, -0.0023971861228346825, 0.01836972124874592, -0.020806947723031044, 0.021893255412578583, -0.030834393575787544, -0.006423831917345524, -0.019762422889471054, 0.026029575616121292, 0.029051735997200012, -0.00530967116355896, 0.014428379014134407, -0.014887969940900803, -0.005201736930757761, -0.002075124066323042, -0.046042684465646744, 0.017798714339733124, 0.0013944415841251612, -0.027394423261284828, -0.0020942736882716417, -0.010863065719604492, 0.01413591206073761, 0.004477532580494881, 0.0024041496217250824, 0.02139188162982464, -0.03949699178338051, -0.006949576549232006, -0.023773400112986565, 0.047073282301425934, -0.018467210233211517, -0.020779093727469444, 0.020862655714154243, 0.03428829088807106, -0.01831401325762272, -0.012833736836910248, 0.03938557580113411, 0.0015624361112713814, -0.006469094660133123, 0.004362634848803282, 0.034956786781549454, 0.00264961295761168, -0.006218408700078726, -0.011406218633055687, -0.009971736930310726, 0.011900627054274082, -0.012353255413472652, -0.010960554704070091, -0.007057510782033205, 0.016726335510611534, 0.001598994480445981, 0.006197518203407526, -0.0021412773057818413, -0.028828904032707214, -0.0023310326505452394, 0.017784787341952324, -0.037017982453107834, -0.0033529268112033606, 0.014623356983065605, 0.01057756133377552, 0.0025939049664884806, -0.011907590553164482, 0.013641503639519215, 0.045875560492277145, -0.014428379014134407, 0.0018557736184448004, 0.004425306338816881, 0.008175153285264969, 0.018383648246526718, -0.0008608631324023008, 0.003687174990773201, -0.01611354760825634, 8.367084228666499e-05, -0.006705853622406721, -0.007064474280923605, -0.010285094380378723, -0.02224143035709858, 0.005838897544890642, 0.007179372012615204, 0.017910130321979523, -0.021656496450304985, -0.06378569453954697, -0.002184799173846841, 0.003965715412050486, 0.012729284353554249, -0.022547824308276176, 0.015361488796770573, -0.018481137230992317, 0.03141932561993599, -0.002926412271335721, 0.015640027821063995, 0.002700098557397723, -0.01213738601654768, -0.013223692774772644, 0.007673780899494886, -0.0006341140251606703, 0.004171138629317284, -0.008300496265292168, -0.015305780805647373, -0.005058985203504562, 0.026628436520695686, -0.0016459980979561806, -0.023759473115205765, 0.010786467231810093, -0.01114856917411089, -0.01203989703208208, -0.005894605536013842, -0.027965430170297623, 0.015890715643763542, 0.01715807244181633, 0.01052881684154272, 0.03935772180557251, -0.007130627520382404, -0.012826773338019848, -0.019330685958266258, -0.019790276885032654, -0.01594642363488674, -0.03139147162437439, -0.0403047576546669, 0.008481547236442566, -0.02835538610816002, -0.009428584016859531, 0.007820013910531998, 0.01412198506295681, -0.014943677932024002, -0.00813337229192257, -0.009964773431420326, 0.015291853807866573, 0.05166919529438019, -0.014860115945339203, -0.013161021284759045, -0.03829926997423172, 0.00802891980856657, 0.011622087098658085, -0.015528612770140171, 0.013028714805841446, 0.023494860157370567, 0.002444189740344882, 0.00914307963103056, -0.03434399887919426, 0.00810551829636097, -0.02018023282289505, 0.0003679776273202151, -0.0021151641849428415, 0.017743006348609924, 0.00912218913435936, 0.005560357589274645, -0.005428051110357046, -0.02027772180736065, 0.008585999719798565, -0.008397985249757767, -0.009463401511311531, 0.030890101566910744, -0.009957809932529926, 0.03022160567343235, -0.02132224664092064, 0.005939868278801441, -0.0009879471035674214, -0.013161021284759045, 0.023439152166247368, -0.013376889750361443, -0.006980912294238806, -0.016865605488419533, -0.005755335558205843, -0.0008434543269686401, 0.006535247899591923, 0.018829314038157463, -0.0007359552546404302, -0.004818744491785765, -0.004446196835488081, -0.050917137414216995, -0.004038832150399685, -0.013495269231498241, 0.01625281758606434, -0.0018314013723284006, -0.02129439264535904, -0.023411298170685768, 0.013446524739265442, -0.027018392458558083, -0.01836972124874592, -0.014303036034107208, -0.025890305638313293, -0.02321632020175457, -0.08150084316730499, 0.01615532860159874, 0.0033860034309327602, -0.023968378081917763, 0.016865605488419533, -0.00303956912830472, 0.013355999253690243, -0.013509196229279041, 0.02834145911037922, 0.011468890123069286, -0.041028961539268494, 0.03130790963768959, -0.014567648991942406, -0.016795970499515533, -0.025472495704889297, -0.00965837948024273, -0.0008756605675444007, 0.0027627700474113226, 0.008843649178743362, 0.0032780691981315613, 0.011329620145261288, -0.02721337042748928, 0.02226928435266018, -0.00025743202422745526, -0.03412116691470146, 0.03353623300790787, -0.007680744398385286, 0.006577028892934322, -0.008613853715360165, -0.027923649176955223, -0.01252037938684225, -0.023007415235042572, -0.012979970313608646, 0.0008008028962649405, 0.008739196695387363, 0.005368860904127359, -0.0032415108289569616, 0.0072141895070672035, 0.016795970499515533, 0.03927415981888771, -0.021990744397044182, -0.0005061596748419106, 0.021015852689743042, 0.00533056166023016, -0.00903166364878416, -0.014344817027449608, -0.01713021844625473, 0.012889444828033447, 0.01116945967078209, 0.01414983905851841, 0.008279605768620968, 0.006207963451743126, -0.002947302768006921, -0.0252914447337389, -0.010758612304925919, -0.03738008812069893, -0.004209437873214483, 0.0008974215015769005, 0.005574284587055445, 0.004296481609344482, 0.03125220164656639, 0.010939664207398891, 0.01355794072151184, 0.0008647801005281508, 0.013975751586258411, -0.0033564085606485605, -0.01803547330200672, -0.00225617503747344, 0.018759679049253464, -0.01057059783488512, -0.017937984317541122, -0.021865401417016983, 0.004453160334378481, 0.002343219006434083, 0.01830008625984192, 0.017673371359705925, 0.0022283210419118404, -0.007193299010396004, -0.004129357635974884, 0.02034735679626465, 0.0044984230771660805, 0.006716298870742321, -0.0402211956679821, 0.007701634895056486, 0.006124401465058327, -0.0032519560772925615, -0.023578422144055367, -0.0015659178607165813, 0.0047386642545461655, -0.0007437891908921301, -0.006573547143489122, -0.014456233009696007, -0.008363167755305767, 0.007054029032588005, 0.013892189599573612, 0.020974071696400642, -0.007854831404983997, 0.01622496359050274, 0.026670217514038086, 0.007172408513724804, 0.00019530451390892267, 0.013355999253690243, -0.00951910950243473, -0.003579240757972002, 0.01612747460603714, 0.017770860344171524, -0.02614099159836769, -0.03955269977450371, 0.011984189040958881, 0.011928481049835682, -0.00953999999910593, 0.01558432076126337, -0.029553107917308807, 0.022826364263892174, -0.0070087662898004055, 0.0011803138768300414, -0.02034735679626465, -0.024525459855794907, -0.02109941467642784, 0.012771065346896648, 0.02619669958949089, 0.0034434525296092033, 0.03517961874604225, -0.021447589620947838, 0.007242043502628803, -0.02611313760280609, 0.026976611465215683, -0.016447795554995537, 0.016851678490638733, -0.011204277165234089, -0.00963052548468113, 0.013913080096244812, 0.01259001437574625, -0.03155859559774399, -0.014358744025230408, 0.0150690209120512, 0.004115430638194084, -0.003204952459782362, -0.017910130321979523, 0.07620858401060104, 0.02130831964313984, -0.011858846060931683, 0.028884612023830414, -0.007381313480436802, -0.013070495799183846, 0.013432597741484642, 0.030611561611294746, -0.020848728716373444, -0.027464058250188828, 0.018550772219896317, -0.02029164880514145, -0.004320853855460882, -0.008585999719798565, 0.0032571787014603615, 0.0062462626956403255, -0.030722977593541145, 0.04732396826148033, 0.005643919575959444, 0.009721050970256329, 0.03548601269721985, 0.025402860715985298, 0.02440011501312256, 0.004373080097138882, -0.011907590553164482, -0.025500349700450897, 0.0403326116502285, 0.011803138069808483, -0.009665342979133129, -0.02433048002421856, 0.025639619678258896, -0.0032310655806213617, -0.018536845222115517, -0.007144554518163204, 0.0062567079439759254, 0.017394831404089928, -0.020723385736346245, -0.007917503826320171, 0.04838242009282112, 0.00918486062437296, -0.0034469342790544033, -0.017617663368582726, -0.01259001437574625, -0.02018023282289505, 0.025639619678258896, -0.012499488890171051, -0.008927211165428162, 0.006632736884057522, 0.004484496079385281], "f33c9b34-17e2-471c-8474-f72b8cb2cae8": [0.0013300211867317557, -0.008743084967136383, -0.011794916354119778, -0.002888586139306426, 0.0026445770636200905, 0.01554784458130598, -0.015877772122621536, -0.024565869942307472, 0.03664947301149368, -0.0039625694043934345, -0.0023146492894738913, 0.005598461255431175, -0.006010870914906263, -0.002879994222894311, -0.010798259638249874, -0.008378789760172367, 0.0009141747723333538, -0.01112818717956543, 0.027301520109176636, 0.00802824180573225, 0.0006482564494945109, 0.007340892218053341, 0.001137563376687467, -0.01802230253815651, -0.022971218451857567, 0.010165898129343987, 0.003089635632932186, -0.025858085602521896, 0.009244849905371666, 0.000576514343265444, 0.04434778541326523, -0.013403314165771008, -0.016826314851641655, -0.004625861532986164, -0.008557500317692757, -0.005540036596357822, -0.0011994247324764729, 0.006296121049672365, 0.0114237479865551, 0.012585368007421494, 0.03590713441371918, -0.004612114746123552, 0.004560563713312149, -0.0006714544724673033, -0.01575404964387417, 0.005179177969694138, -0.01530039869248867, -0.0008243897464126348, -0.009464802220463753, 0.015176675282418728, -0.012214199639856815, 0.0009485422051511705, -0.026407966390252113, -0.01782984472811222, -0.012214199639856815, 0.0027322140522301197, -0.031343135982751846, -0.0018455332610756159, -0.012331048958003521, -0.003897271351888776, 0.009066139347851276, 0.014695530757308006, -0.03348766639828682, -0.006162087898701429, -0.029308579862117767, 0.023631073534488678, -0.005856217350810766, 0.013533910736441612, 0.004127533175051212, -0.004526196047663689, 0.03310275077819824, 0.01413190457969904, -0.01026212703436613, -0.013128374703228474, 0.046767257153987885, 0.01851719431579113, -0.011416873894631863, 0.007389006670564413, -0.00815883744508028, -0.0026789444964379072, -0.0017011899035423994, -0.016441399231553078, 0.007045331876724958, -0.005320084746927023, 0.016853807494044304, 0.014351855963468552, -0.03513730317354202, 0.01596025377511978, -0.006777265574783087, -0.013300212100148201, 0.03024337626993656, 0.008722464554011822, -0.014351855963468552, 0.03348766639828682, 0.006519509479403496, 0.008090103045105934, -0.0005498795653693378, 0.014819254167377949, -0.010866994969546795, -0.039838772267103195, -0.020276809111237526, 0.00914174783974886, -0.0008849623845890164, -0.0013936009490862489, -0.030738266184926033, -0.015506603755056858, 0.02353484556078911, -0.005735930986702442, 0.00037890137173235416, 0.0105576878413558, -0.013073386624455452, 0.03554971143603325, -0.0025844338815659285, -0.03043583407998085, -0.016922542825341225, -0.008083229884505272, 0.021362820640206337, -0.03258036449551582, -0.02055174857378006, -0.00015819777036085725, 0.008000747300684452, 0.00894929002970457, 0.018860869109630585, -0.0038560302928090096, 0.014723025262355804, -0.003959132824093103, -0.014571808278560638, -0.016991278156638145, -0.018201014026999474, -0.0075196027755737305, 0.0380241721868515, 0.0048870546743273735, 0.024469640105962753, -5.281313860905357e-05, -0.005684379953891039, 0.009396066889166832, -0.027329014614224434, 0.003070733742788434, -0.016235193237662315, -0.011843031272292137, 0.004945479333400726, 0.015135434456169605, -0.016523880884051323, -0.014406844042241573, 0.011705560609698296, 0.03854655846953392, 0.019479483366012573, -0.004165337421000004, 0.0005833878531120718, -0.014021928422152996, 0.011616205796599388, -0.02225637435913086, 0.000992360757663846, -0.01655137538909912, -0.016028989106416702, 0.0008527428726665676, 0.009925326332449913, 0.00884618703275919, 0.0029813782311975956, -0.028153833001852036, -6.508339720312506e-05, 0.013066512532532215, -0.011856777593493462, -0.013258970342576504, -0.005883711390197277, 0.01726621761918068, 0.025170736014842987, 0.011794916354119778, -0.012269187718629837, 0.005423187278211117, 0.00756084406748414, 0.017087507992982864, -0.00319273816421628, 0.023136181756854057, 0.016125217080116272, 0.012269187718629837, -0.010578308254480362, 0.016015242785215378, -0.00038104935083538294, 0.0026755076833069324, -0.032250434160232544, -0.015864025801420212, -0.019259531050920486, 0.012001121416687965, -0.006818506401032209, -0.01747242361307144, -0.005254786461591721, 0.006945665925741196, 0.02551441080868244, 0.0054369340650737286, 0.008413157425820827, 0.03535725548863411, 0.012317301705479622, -0.0021857712417840958, -0.6193843483924866, -0.020496759563684464, -0.001289639389142394, -0.005533162970095873, 0.009794729761779308, 0.011650573462247849, 0.015616578981280327, 0.02331489324569702, -0.003680756315588951, 0.021953940391540527, -0.012784699909389019, 0.014956723898649216, -0.017183735966682434, 0.0026755076833069324, 0.007938886061310768, -0.00659855455160141, 0.006364855915307999, -0.03186551854014397, -0.027026580646634102, 0.014668037183582783, -0.018970845267176628, -0.001623863005079329, -0.014585555531084538, -0.010138404555618763, 0.024318423122167587, 0.00591807859018445, -0.015259157866239548, -0.01799480803310871, 0.013980687595903873, 0.038161639124155045, -0.020331796258687973, 0.04836190491914749, 0.015974000096321106, -0.013513290323317051, 0.0296110138297081, 0.007409627083688974, -0.04330301657319069, 0.030903231352567673, 0.0001534722396172583, 0.04533756896853447, -0.01740368828177452, -0.0056500122882425785, 0.0008501653210259974, 0.025390688329935074, 0.012056109495460987, -0.012605988420546055, 0.010392723605036736, -0.02114286832511425, 0.0070144012570381165, 0.01512168813496828, -0.0021685874089598656, -0.0057702986523509026, 0.0015121687902137637, -0.027356507256627083, 0.026944098994135857, 0.030408339574933052, 0.02554190531373024, -0.03181053325533867, 0.015492856502532959, -0.022118905559182167, -0.03060079738497734, 0.016276434063911438, 5.7941408158512786e-05, -0.027370255440473557, -0.027590205892920494, 0.005375072825700045, -0.026779133826494217, -0.011368759907782078, 0.006000560708343983, -0.022861242294311523, 0.013430807739496231, -0.017018772661685944, 0.01714249514043331, -0.01077076606452465, 0.02724653109908104, 0.036621976643800735, 0.027095314115285873, -0.018393471837043762, -0.01631767489016056, 0.009272344410419464, -0.009774109348654747, 0.013506416231393814, 0.0018524067709222436, -0.02249007299542427, 0.025830591097474098, -0.030875736847519875, -0.0313156396150589, -0.018228506669402122, 0.00039737389306537807, 0.012351669371128082, 0.0038079158402979374, 0.00010670025949366391, -0.00015583500498905778, -0.029033640399575233, -0.012447898276150227, 0.041350942105054855, -0.008220699615776539, -0.0036463888827711344, 0.012172958813607693, -0.004285623785108328, -0.007725807838141918, 0.0003889968211296946, -0.0009683035314083099, -0.016235193237662315, 0.02807135134935379, -0.006684473250061274, -0.021486543118953705, 0.005268533248454332, 0.035962123423814774, -0.023493604734539986, 0.011526850052177906, -0.00018440296116750687, -0.016138965263962746, -0.027109062299132347, 0.03315773606300354, -0.03076576068997383, 0.0051035694777965546, -0.0038044792599976063, 0.010722651146352291, -0.012111097574234009, 0.018957097083330154, 0.012750332243740559, 0.028153833001852036, -0.006550440099090338, 0.0039935000240802765, 0.0422307513654232, -0.009939072653651237, -0.014833000488579273, -0.009320458397269249, -0.004416220355778933, -0.011629952117800713, 0.006052111741155386, 0.02130783349275589, -0.003680756315588951, 0.01989189349114895, -0.0020809504203498363, 0.008358169347047806, -0.019823158159852028, 0.014970471151173115, 0.0061655244790017605, -0.023218663409352303, -0.007828909903764725, 0.018242254853248596, -0.017788603901863098, 0.016262687742710114, -0.021775230765342712, -0.01674383319914341, -0.008303181268274784, -0.018737146630883217, 0.0021445301827043295, 0.011568090878427029, -0.0043577952310442924, -0.028016362339258194, 0.022105157375335693, 0.005409440025687218, 0.010385850444436073, 0.012076729908585548, 0.014173145405948162, 0.011726181022822857, 0.0076089585199952126, -0.006694783456623554, -0.004247819539159536, -0.02350735105574131, 0.0006624330417253077, -0.02416720613837242, -0.01109381951391697, 0.005017650779336691, 0.025431929156184196, -0.01411815732717514, -0.045749977231025696, 0.006711967289447784, -0.011966753751039505, 0.015451615676283836, -0.0013910233974456787, 0.009279217571020126, 0.005976503249257803, -0.017348699271678925, -0.00021221913630142808, -0.014090663753449917, 0.005406003445386887, 0.001893647713586688, 0.01530039869248867, -0.010138404555618763, -0.004787388723343611, 0.0173349529504776, -0.0027476793620735407, 0.017774855718016624, 0.012269187718629837, -0.018077289685606956, -0.003058705013245344, -0.020098097622394562, 0.02170649543404579, 0.019919386133551598, 0.015355386771261692, 0.021747736260294914, -0.019781917333602905, 0.017981061711907387, 0.022311363369226456, -0.0020895423367619514, 0.027438988909125328, 0.025225725024938583, 0.022902483120560646, -0.005062328651547432, -0.019025832414627075, 0.035577207803726196, -0.01828349567949772, -0.0009133155690506101, 0.008365042507648468, 0.0037529279943555593, -0.0037426177877932787, -0.011746802367269993, -0.02353484556078911, -0.00436810590326786, -0.0338725820183754, 0.02705407328903675, 0.02471708506345749, -0.016455145552754402, 0.0026256749406456947, -0.016592616215348244, 0.021981434896588326, -0.0034367472399026155, 0.0028645286802202463, 0.010138404555618763, -0.017087507992982864, 0.001665963209234178, -0.00705907866358757, -0.004893927834928036, 0.022531313821673393, 0.01825600117444992, -0.019548218697309494, -0.03076576068997383, -0.021266590803861618, 0.0031824279576539993, 0.0033181793987751007, 0.018269747495651245, -0.04753708839416504, 0.023686062544584274, -0.030518315732479095, 0.03368012234568596, 0.021445302292704582, 0.02166525460779667, 0.001729543088003993, 0.009561031125485897, -0.0015027177287265658, 0.007856404408812523, -0.003429873613640666, 0.05611521005630493, 0.01963070034980774, -0.018998337909579277, 0.01411815732717514, -0.010330862365663052, -0.023658568039536476, -0.01370574813336134, 0.020166832953691483, 0.00019965352839790285, -0.03293778374791145, 0.03236041218042374, 0.012922169640660286, 0.024662097916007042, 0.03843658044934273, 0.012241693213582039, 0.031893014907836914, 0.011568090878427029, 0.016427651047706604, -0.0022545061074197292, -0.007801416330039501, 0.0017553186044096947, -0.04162588343024254, -0.01462679635733366, -0.019479483366012573, -0.02596806176006794, -0.018984591588377953, 0.02012559212744236, -0.013066512532532215, 0.009595397859811783, -0.009224229492247105, 0.01766488142311573, 0.011987374164164066, 0.024414652958512306, -0.004443713929504156, -0.020826688036322594, -0.024057229980826378, 0.011286278255283833, 0.010083416476845741, 0.006636358797550201, 0.010399596765637398, 1.6673593563609757e-05, 0.009643512777984142, 0.012124843895435333, 0.004722090438008308, -0.002606772817671299, 0.012317301705479622, -0.014942976646125317, -0.011334392242133617, -0.007987000048160553, -0.00820695236325264, 0.037639256566762924, -0.016798820346593857, -0.024579616263508797, -0.017307458445429802, 0.001657371292822063, -0.017939820885658264, -0.02530820667743683, 0.004258129745721817, 0.061971426010131836, 0.00905926525592804, -0.004155027214437723, 0.0016109752468764782, 0.01323147676885128, -0.015616578981280327, 0.00019030987459700555, 0.00705907866358757, 0.0044780815951526165, -0.021775230765342712, -0.03623706102371216, 0.014640542678534985, 0.02750772424042225, -0.00848876591771841, 0.025294460356235504, 0.006856310646981001, -0.012214199639856815, -0.008268813602626324, 0.007691440172493458, 0.020015615969896317, -0.0295835193246603, -0.0017836717888712883, 0.02715030312538147, 0.01487424224615097, -0.025665627792477608, -0.00873621180653572, -0.012117970734834671, 0.014042548835277557, 0.0008613347890786827, -0.010007807984948158, -0.006052111741155386, 0.011300024576485157, 0.01272283773869276, -0.014063169248402119, 0.00295044737868011, -0.0015894955722615123, -0.007437121123075485, -0.007217169273644686, 0.020235568284988403, -0.02655918151140213, 0.01956196501851082, -0.009313585236668587, 0.0177611093968153, -0.0024624294601380825, 0.015561590902507305, 0.002570686861872673, 0.017981061711907387, 0.018269747495651245, 0.029473543167114258, -0.01930077187716961, 0.0228474959731102, -0.004244382958859205, -0.006990343797951937, 0.024964531883597374, -0.0007792824180796742, 0.03664947301149368, -0.0032649098429828882, 0.05141373723745346, -0.003407534910365939, 0.010537066496908665, 0.015369133092463017, 0.029693495482206345, 0.011238163337111473, -0.01480550691485405, 0.018077289685606956, -0.010509572923183441, -0.011891145259141922, 0.012117970734834671, -0.014516820199787617, -0.016620108857750893, 0.01045458484441042, 0.019850652664899826, -0.04418282210826874, 0.0060589853674173355, 0.0002463718119543046, 0.029556026682257652, 0.00016582304670009762, -0.013128374703228474, 0.00481831980869174, -0.0010207139421254396, -0.007134687155485153, -0.012530379928648472, -0.002240759087726474, -0.029885953292250633, -0.017389940097928047, -0.0224213395267725, -0.00842003058642149, 0.01667509786784649, -0.020826688036322594, -0.0038491568993777037, 0.03761176019906998, -0.0465473048388958, -0.025363193824887276, 0.010461458936333656, 0.022146398201584816, 0.0030088722705841064, 0.011265656910836697, -0.012551000341773033, -0.027493977919220924, 0.0019795664120465517, -0.0052788439206779, -0.013836344704031944, 0.0011332674184814095, -0.026930350810289383, -0.008138217031955719, -0.01323147676885128, 0.007210295647382736, -0.009657260030508041, -0.00481831980869174, 0.021912699565291405, -0.001611834391951561, 0.002134219976142049, -0.002745961071923375, 0.007691440172493458, 0.03348766639828682, 0.004230635706335306, -0.01337581966072321, -0.002290592063218355, 0.01700502447783947, -0.00956790428608656, 0.010131530463695526, -0.02275126613676548, -0.0090936329215765, -0.013678253628313541, -0.016070229932665825, 0.009279217571020126, 0.018819628283381462, 0.024992026388645172, -0.0064232805743813515, 0.012413530610501766, 0.02478582039475441, -0.00409660255536437, 0.014929229393601418, -0.010571434162557125, 0.020263060927391052, 0.0017175143584609032, -0.019190795719623566, -0.012076729908585548, 0.008887427859008312, -0.01283968798816204, 0.035274773836135864, -0.019878145307302475, 0.031178170815110207, 0.0278788935393095, 0.013740114867687225, -0.0016685407608747482, -0.023727303370833397, -0.033075254410505295, -0.004945479333400726, 0.01877838745713234, 0.011629952117800713, 0.0049523524940013885, 0.0005176600534468889, 0.0006203328957781196, -0.025363193824887276, -0.02064797654747963, -0.0027837653178721666, 0.016688844189047813, -0.026614170521497726, -0.006203328724950552, -0.014819254167377949, -0.025858085602521896, -0.000723864883184433, -0.019451988860964775, -0.014296868816018105, -0.019122062250971794, -0.00863310880959034, 0.0060589853674173355, 0.010784512385725975, 0.014819254167377949, 0.014736771583557129, -0.002452119020745158, -0.04077357053756714, -0.0005279703182168305, 0.01301839854568243, -0.010681410320103168, 0.01714249514043331, -0.013582024723291397, 0.0016676816157996655, 0.0211153756827116, 0.023644819855690002, 0.024249687790870667, -0.014640542678534985, -0.02074420638382435, 0.0035157923121005297, 0.018984591588377953, -0.018077289685606956, 0.0063923499546945095, -0.017307458445429802, -0.0006774687790311873, 0.015506603755056858, 0.007856404408812523, -0.015107940882444382, -0.0038250996731221676, 0.0031961749773472548, 0.016427651047706604, 0.002446963917464018, 0.007718934211879969, -0.01068828348070383, -0.02944605052471161, -0.017651133239269257, -0.0022596612107008696, -0.017458675429224968, -0.008495639078319073, 0.005464428104460239, 0.0014949850738048553, -0.0003978034947067499, -0.011712434701621532, 0.0031824279576539993, 0.028538748621940613, 0.010550813749432564, -0.011540597304701805, 0.02426343597471714, 0.001663385657593608, -0.0059077683836221695, 0.0019451988628134131, 0.011643699370324612, -0.010502699762582779, 0.03464241325855255, -0.0013515008613467216, -0.00176648807246238, 0.0211153756827116, 0.0012062982423231006, 0.013767609372735023, -0.0034006612841039896, 0.033762603998184204, 0.005454117897897959, -0.012551000341773033, 0.010818880051374435, -0.022902483120560646, -0.02360357902944088, -0.03942636400461197, -0.005186051595956087, 0.002539756242185831, -0.03554971143603325, 0.004938605707138777, 0.0035982744302600622, 0.021527783945202827, -0.006110536400228739, -0.006492015440016985, 0.007952633313834667, -0.016372663900256157, 0.06235634163022041, 0.02275126613676548, 0.03181053325533867, 0.03161807358264923, 0.017651133239269257, 0.0011521695414558053, -0.06406097114086151, -0.014104410074651241, -0.003381759161129594, 0.015369133092463017, 0.031563084572553635, -0.006732587702572346, -0.014406844042241573, 0.0008222417673096061, -0.00407941872254014, -0.0037219971418380737, -0.021459050476551056, 0.02587183378636837, 0.004773641936480999, -0.005127626936882734, -0.019163303077220917, 0.011650573462247849, -0.04027867689728737, 0.02856624312698841, -0.012764079496264458, -0.0010946040274575353, -0.013025271706283092, -0.0025139804929494858, -0.008344422094523907, -0.0012252003652974963, 0.011678067035973072, 0.009224229492247105, 0.01766488142311573, -0.003587963990867138, -0.011863651685416698, -0.020538000389933586, -0.002123909769579768, 0.014448084868490696, -0.02022182010114193, 0.03752927854657173, 0.0012947944924235344, -0.003177272854372859, 0.02682037465274334, 0.005268533248454332, -0.014228133484721184, 0.01001468114554882, -0.007925138808786869, 0.03851906210184097, -0.006193018518388271, -0.019713182002305984, -0.010433964431285858, 0.013733241707086563, 0.024400904774665833, 0.01112818717956543, -0.0013850091490894556, 0.008282560855150223, -0.01858592964708805, -0.005825286731123924, 0.010214013047516346, -0.015341639518737793, 0.007911392487585545, 0.0028301612474024296, -0.016661349684000015, -0.003996937070041895, -0.016922542825341225, 0.01144436839967966, 0.002446963917464018, -0.01411815732717514, -0.010722651146352291, -0.01305276621133089, -0.038134146481752396, -0.0073821330443024635, -0.014283121563494205, 0.01832473650574684, 0.001128971460275352, 0.03769424185156822, -0.028318796306848526, 0.008227572776377201, 0.01002842839807272, 0.021912699565291405, -0.0008841032395139337, 0.013733241707086563, -0.01123129017651081, -0.022146398201584816, 0.04311055690050125, 0.012124843895435333, -0.010860120877623558, -0.04410034045577049, 0.009100507013499737, 0.015575338155031204, -0.002579278778284788, 0.04014120623469353, 0.01480550691485405, 0.006584807764738798, 0.004742711316794157, -0.007828909903764725, -0.01273658499121666, 0.003711686935275793, -0.007753301877528429, 0.0278788935393095, 0.004935169126838446, 0.0006852014921605587, -0.006808196194469929, 0.004773641936480999, -0.005749678239226341, -0.010605801828205585, -0.017458675429224968, -0.03431248292326927, -0.00239713117480278, 0.001493266667239368, -0.018365977331995964, -0.011898018419742584, -0.0019297335529699922, -0.016276434063911438, -0.017252471297979355, 0.007292777765542269, -0.0033783225808292627, -0.0014271092368289828, 0.00848876591771841, 0.024964531883597374, 0.006217075511813164, -0.0034333104267716408, -0.013176488690078259, -0.021349074319005013, -0.012042362242937088, -0.025074508041143417, -0.02045551873743534, -0.016455145552754402, -0.03335019573569298, 0.032112967222929, -0.013100880198180676, -0.018297242000699043, -0.02459336258471012, -0.017884831875562668, 0.009100507013499737, 0.004625861532986164, -0.004289060365408659, 0.02291622944176197, 0.023988494649529457, 0.01894335076212883, 0.0075952112674713135, 0.0033731674775481224, -0.012915295548737049, 0.016826314851641655, -0.00478395214304328, -0.0010705468012019992, -0.007265283726155758, -0.011568090878427029, 0.0030483948066830635, 0.004636172205209732, -0.009884084574878216, -0.00981535017490387, -0.0055091059766709805, -0.00955415703356266, 0.021651508286595345, 0.0009949383093044162, -0.0011195203987881541, -0.02090916968882084, -0.0031377500854432583, -0.030545808374881744, 0.014516820199787617, 0.0007956069894134998, -0.01344455499202013, -0.03010590560734272, -0.006340798456221819, 0.011904892511665821, -0.003074170323088765, -0.018269747495651245, -0.023617327213287354, 0.0003449635114520788, -0.016125217080116272, 0.027301520109176636, -0.016565121710300446, -0.01547910925000906, 0.002977941418066621, -0.006007434334605932, 0.034752387553453445, -0.021252844482660294, 0.011925512924790382, 0.019025832414627075, -0.006227385718375444, 0.003587963990867138, -0.028373785316944122, 0.018008556216955185, -0.02095041051506996, 0.0014778012409806252, 0.017554905265569687, 0.00820695236325264, -0.010104036889970303, -0.008138217031955719, 0.007629578933119774, -0.039811279624700546, 3.7159828934818506e-05, 0.017651133239269257, 0.011781169101595879, -0.006237696390599012, -0.006254879757761955, 0.0236723143607378, -0.028648724779486656, -0.01088074129074812, 0.00317555433139205, 0.00013306655455380678, -0.0008119315025396645, -0.044237811118364334, -0.009182988665997982, -0.03233291953802109, 0.014214386232197285, -0.0023936943616718054, 0.02475832775235176, -0.024937037378549576, 0.00040897290455177426, 0.0018214760348200798, -0.010626422241330147, 0.015286651439964771, 0.22809003293514252, -0.025665627792477608, 0.010921983048319817, 0.029803471639752388, 0.01657886803150177, 0.00705907866358757, 0.021459050476551056, 0.005117316730320454, 0.006543566472828388, 0.009863464161753654, -0.014778013341128826, -0.0035398495383560658, 0.005234166048467159, -0.0010301650036126375, 0.006694783456623554, -0.004388726316392422, -0.00798012688755989, -0.018462205305695534, -0.04533756896853447, -0.0053578889928758144, 0.01546536199748516, 0.00295044737868011, 0.0027786102145910263, -0.006725714076310396, -0.0030965092591941357, 0.023383628576993942, -0.01480550691485405, 0.02288873679935932, 0.002092979149892926, -0.014049422927200794, -0.004464334808290005, 0.022668784484267235, 0.002819851040840149, -0.015382880344986916, -0.018269747495651245, -0.003160089021548629, 0.031178170815110207, 0.01629018224775791, 0.025624386966228485, 0.0022201386746019125, -0.007292777765542269, -0.002245914191007614, -0.016757579520344734, 0.005598461255431175, -0.02842877246439457, -0.005790919065475464, 0.010482079349458218, -0.010090289637446404, -0.014070043340325356, 0.03282780945301056, 0.002730495762079954, -0.009939072653651237, 0.02022182010114193, 0.030518315732479095, -0.005368199199438095, -0.013169615529477596, 0.029830966144800186, -0.003983189817517996, 0.004694596864283085, 0.01505295280367136, -0.011059452779591084, 0.03868402540683746, -0.023988494649529457, 0.003739180974662304, -0.026435459032654762, -0.005395693238824606, -0.026352977380156517, -0.01546536199748516, -0.03755677491426468, -0.03873901441693306, -0.0009536973666399717, -0.00614834064617753, 0.000895272649358958, 0.0022441959008574486, -0.04437527805566788, -0.030408339574933052, 0.024043483659625053, 0.010921983048319817, 0.017788603901863098, 0.02376854419708252, -0.01608397625386715, -0.0002635555574670434, 0.005804665852338076, -0.006797885987907648, -0.004880181048065424, -0.03208547085523605, 0.025913074612617493, -0.01498421747237444, -0.0127022173255682, -0.004082855768501759, 0.03145311027765274, -0.028978653252124786, 0.0064542111940681934, -0.014173145405948162, -0.016798820346593857, 0.013210856355726719, -0.04041614755988121, 0.026902856305241585, -0.021788977086544037, 0.007175927981734276, -0.03194800019264221, 0.05630766600370407, 0.03161807358264923, 0.015451615676283836, -0.018792133778333664, -0.011506229639053345, 0.0070144012570381165, 0.012743459083139896, 0.030188387259840965, -0.012303555384278297, -0.023287398740649223, -0.043055567890405655, 0.008076355792582035, 0.024414652958512306, -0.009918452240526676, 0.005076075438410044, -0.023823531344532967, -0.02793388068675995, -0.0018369413446635008, 0.00848876591771841, 0.03167306259274483, -0.013561404310166836, -0.0241259653121233, -0.00479426234960556, -0.021775230765342712, -0.012399784289300442, -0.028181327506899834, -0.017211230471730232, 0.0023524535354226828, -0.04165337607264519, 0.0232736524194479, -0.0169362910091877, 0.01953447051346302, 0.011018211953341961, 0.008310054428875446, 0.023232411593198776, 0.001344627351500094, -0.007547096814960241, 0.026339231058955193, -0.02104664035141468, 0.014241880737245083, -0.0036945033352822065, 0.0027837653178721666, -0.013272717595100403, 0.011368759907782078, -0.0007603802951052785, 0.01009716372936964, 0.009018024429678917, 0.01347892265766859, 0.008660603314638138, -0.04044364020228386, -0.00412066001445055, 0.011856777593493462, -0.01835222914814949, 0.015135434456169605, -0.004808009136468172, -0.025335701182484627, -0.05801229178905487, -0.014104410074651241, 0.03200298920273781, -0.024730833247303963, -0.006564187351614237, -7.695092062931508e-05, -0.01719748228788376, -0.0329652801156044, -0.03741930425167084, -0.17662131786346436, -0.02140406146645546, 0.008351295255124569, -0.044045351445674896, 0.02521197684109211, 0.002431498607620597, -0.010076542384922504, -0.01462679635733366, 0.005354451946914196, -0.0053613255731761456, 0.026119278743863106, -0.0004072545561939478, -0.014076916500926018, -0.0036704461090266705, -0.005577840842306614, 0.018544688820838928, -0.01710125431418419, 0.003584527410566807, 0.0473446287214756, -0.0019555091857910156, 0.06527069956064224, -0.0048114461824297905, -0.0054369340650737286, 0.007028148043900728, -0.008729337714612484, -0.011251910589635372, -0.01972692832350731, 0.004512449260801077, -0.02308119460940361, -0.021885206922888756, 0.00079818454105407, 0.037831712514162064, 0.02402973733842373, 0.010110910050570965, 0.031205665320158005, -0.020249314606189728, 0.014434338547289371, -0.0059077683836221695, 0.014599301852285862, -0.0008080651750788093, 0.003314742585644126, 0.020373037084937096, 0.03161807358264923, -0.01707375980913639, -0.0024297803174704313, 0.02672414667904377, 0.0033027140889316797, -0.00409660255536437, 0.005464428104460239, 0.008997404016554356, 0.025816844776272774, -0.03681443631649017, -0.026641665026545525, -0.013128374703228474, 0.018475953489542007, 0.0046911598183214664, -0.01936950720846653, 0.014076916500926018, -0.0009210482239723206, 0.012138591147959232, 0.006502325646579266, -0.03043583407998085, 0.020854182541370392, -0.010172771289944649, -0.049791593104600906, -0.011767422780394554, -0.006584807764738798, 0.020496759563684464, -0.017884831875562668, 0.012035489082336426, 0.007464614696800709, 0.0037598013877868652, -0.0007367526995949447, -0.00499703036621213, 0.025569399818778038, -0.01851719431579113, 0.01066766306757927, 0.0321679525077343, 0.027823904529213905, -0.01837972365319729, -0.012056109495460987, 0.028648724779486656, 0.01802230253815651, -0.014929229393601418, 0.004945479333400726, 0.03335019573569298, 0.012042362242937088, -0.006918172352015972, -0.02350735105574131, -0.01596025377511978, 0.039508845657110214, -0.04434778541326523, -0.023521097376942635, -0.01323147676885128, 0.026902856305241585, 0.0122760608792305, -0.011753675527870655, 0.01844845898449421, -0.006536693312227726, -0.010406470857560635, 0.006856310646981001, 0.01345830224454403, -0.017321206629276276, 0.027301520109176636, 0.01759614609181881, 0.02353484556078911, 0.014448084868490696, 0.029556026682257652, 0.024662097916007042, 0.002364482032135129, 0.020263060927391052, 0.011430621147155762, 0.011348139494657516, 0.00048415176570415497, 0.010695157572627068, 0.02616051957011223, 0.008694970048964024, 0.0031635258346796036, 0.017582397907972336, -0.015355386771261692, -0.030050918459892273, -0.017486169934272766, -0.007224042434245348, 0.029363568872213364, 0.007498982362449169, -0.013650760054588318, -0.040663592517375946, -0.02048301324248314, 0.020098097622394562, 0.024387158453464508, -0.0044471509754657745, 0.023947253823280334, 0.005124189890921116, 0.03774923086166382, -0.011190049350261688, 0.028043856844305992, -0.011031958274543285, -0.019287025555968285, 0.006364855915307999, 0.016798820346593857, -0.00023906872957013547, 0.012124843895435333, 0.002288873540237546, -0.014942976646125317, 0.004618988372385502, -0.0024693028535693884, 0.00376323820091784, 0.008481891825795174, -0.0047805155627429485, -0.010372103191912174, -0.016991278156638145, 0.00363607844337821, -0.02594056725502014, 0.01572655513882637, 0.011987374164164066, -0.0029298269655555487, 0.022902483120560646, 0.015162928961217403, -0.01480550691485405, -0.00873621180653572, -0.005577840842306614, 0.021060386672616005, -0.03587964177131653, -0.01638641022145748, 0.028456266969442368, -0.012386037036776543, 0.012269187718629837, -0.011602458544075489, 0.00013220736582297832, 0.019080819562077522, -0.024442145600914955, -0.008557500317692757, -0.02064797654747963, -0.01638641022145748, 0.004148154053837061, -0.029885953292250633, -0.043742917478084564, -0.0023696371354162693, -0.003739180974662304, -8.343509762198664e-06, 0.012427277863025665, 0.0025672500487416983, 0.015974000096321106, 0.012997778132557869, -0.001499280915595591, 0.017128748819231987, -0.01455806102603674, 0.006251443177461624, -0.019575711339712143, 0.029528532177209854, 0.018544688820838928, 0.020441772416234016, -0.013485795818269253, -0.03659448400139809, 0.027920134365558624, 0.001972692785784602, -0.018242254853248596, 0.01825600117444992, -0.012867181561887264, 0.027590205892920494, -0.029226098209619522, 0.006660416256636381, -0.01277095265686512, 0.007650199346244335, 0.018654663115739822, 0.01316274143755436, -0.018888361752033234, -0.011492482386529446, -0.00030715929460711777, -0.027686435729265213, 0.013850091025233269, 0.018572181463241577, -0.005746241193264723, -0.00306557840667665, 0.016798820346593857, -0.022050170227885246, -0.005997123662382364, 0.008784325793385506, 0.03664947301149368, -0.0011401409283280373, 0.0020878238137811422, -0.007615831680595875, 0.008942415937781334, -0.010234633460640907, 0.0033577019348740578, 0.018489699810743332, -0.018489699810743332, -0.0236723143607378, -0.09353451430797577, 0.007189675234258175, -0.005639702081680298, -0.026009302586317062, 0.013169615529477596, -0.011478736065328121, 0.024400904774665833, -0.019383253529667854, -0.01248913910239935, -0.021184109151363373, -0.052156075835227966, 0.0014339827466756105, -0.022929977625608444, -0.02353484556078911, -0.030710773542523384, -0.0017853901954367757, 0.009114253334701061, 0.011953006498515606, 0.017348699271678925, 0.014393097721040249, 0.009251723065972328, -0.011045705527067184, 0.02275126613676548, 0.0012346514267846942, -0.05295339971780777, 0.009884084574878216, 0.0026961280964314938, 0.023479856550693512, 0.0009683035314083099, -0.003704813541844487, -0.004873307421803474, 0.00041820917977020144, -0.013114627450704575, -0.011224416084587574, -0.009959693066775799, -0.026902856305241585, 0.011595585383474827, -0.009952819906175137, 0.01001468114554882, 0.023919761180877686, -0.005409440025687218, -0.002158277202397585, 0.012990904040634632, 0.005787482485175133, 0.006701657082885504, -0.0164826400578022, -0.001726965419948101, 0.0025500664487481117, 0.0045536900870501995, 0.007932012900710106, 0.02173398993909359, 0.006079605780541897, 0.0023301145993173122, -0.007299650926142931, -0.007588337641209364, -0.053558267652988434, -0.00544037064537406, 0.004484955221414566, 5.415561827248894e-05, -0.020510507747530937, 0.008743084967136383, -0.025156989693641663, 0.019823158159852028, 0.02005685679614544, 0.0007603802951052785, -0.02088167518377304, -0.03810665383934975, -0.03236041218042374, 0.010420217178761959, -0.0313156396150589, -0.028043856844305992, 0.0010877305176109076, 0.014668037183582783, -0.0015491137746721506, -0.007450867909938097, -0.0020465829875320196, -0.01341018732637167, 0.00019406882347539067, -0.018503446131944656, 0.016303928568959236, 0.016097724437713623, -0.00016700442938599735, -0.03810665383934975, 0.009121127426624298, 0.03343267738819122, -0.0018592802807688713, -0.017444929108023643, -0.012922169640660286, -0.00727903051301837, 0.00010911672143265605, -0.01505295280367136, 0.005546909756958485, 0.023466110229492188, 0.0045536900870501995, 0.0063476720824837685, 0.015286651439964771, 0.0023936943616718054, -0.021362820640206337, 0.0169087965041399, -0.01917704939842224, 0.0024693028535693884, -0.022407591342926025, -0.0009571341215632856, -0.026875363662838936, -0.017981061711907387, -0.010447711683809757, -0.025390688329935074, -0.03277282044291496, 0.005110443104058504, 0.020166832953691483, -0.010805132798850536, 0.017871085554361343, -0.022077664732933044, 0.035412244498729706, -0.0228200014680624, 0.0017767982790246606, -0.01960320584475994, -0.011760548688471317, -0.0228474959731102, 0.0022115467581897974, 0.004000373650342226, 0.03060079738497734, 0.031535591930150986, -0.010214013047516346, 0.042533181607723236, -0.024249687790870667, 0.0015396627131849527, -0.013726368546485901, 0.022435085847973824, 0.008715590462088585, -0.024387158453464508, 0.01799480803310871, -0.017156241461634636, -0.022668784484267235, 0.002318086102604866, -0.007863277569413185, -0.007987000048160553, -0.002190926345065236, 0.013210856355726719, 0.050176508724689484, 0.0013583743711933494, -0.006990343797951937, 0.0015216198517009616, -0.01437935046851635, 0.005794355645775795, 0.010619549080729485, 0.007636452093720436, 0.0038319730665534735, -0.02859373763203621, 0.003134313505142927, -0.01832473650574684, -0.0006070154486224055, -0.01634516939520836, -0.026971591636538506, 0.011313771829009056, -0.021843966096639633, 0.03379010036587715, -0.02944605052471161, 0.036786943674087524, 0.037281833589076996, 0.044540245085954666, 0.010042175650596619, 0.01411815732717514, -0.023397374898195267, 0.007175927981734276, 0.03970130532979965, -0.0010129812872037292, 0.023053700104355812, -0.030380845069885254, 0.008069482631981373, 0.014599301852285862, -0.04030616953969002, -0.022545062005519867, 0.022338856011629105, 0.017444929108023643, -0.004588057287037373, -0.005082949064671993, 0.013863838277757168, 0.0038766509387642145, -0.012867181561887264, 0.007210295647382736, -0.05196361616253853, -0.047619570046663284, 0.005873401183634996, 0.011334392242133617, -0.010647042654454708, -0.008798073045909405, 0.0007539364160038531], "2285791b-bcd9-4594-8a59-e3111636859e": [0.002247990109026432, -0.013703297823667526, 0.0027797550428658724, -0.019985079765319824, -0.024477748200297356, 0.003498714417219162, -0.011662380769848824, -0.03535822033882141, 0.01941521465778351, -0.007408262696117163, 0.012046709656715393, 0.006354672368615866, -0.018606798723340034, -0.004267371259629726, -0.00500620948150754, -0.004340261220932007, 0.011046130210161209, -0.014949052594602108, 0.02124408818781376, -0.029977619647979736, 0.01345149613916874, -0.010443132370710373, 0.002894059522077441, -0.015691203996539116, -0.019295940175652504, 0.012112973257899284, 0.004853803664445877, -0.023338014259934425, 0.031594451516866684, -0.0011314497096464038, 0.022503094747662544, -0.009747365489602089, -0.017533330246806145, -0.0294210072606802, -0.005294456146657467, 0.005019462201744318, -0.0037339499685913324, 0.00687815435230732, 0.003899608738720417, 0.0026406017132103443, 0.029818588867783546, 0.004857116844505072, -0.001374139916151762, 0.013265958055853844, -0.030136652290821075, -0.0034125717356801033, -0.02704877220094204, -0.00020469218725338578, 0.0010279129492118955, 0.03117036446928978, 0.005668845027685165, -0.009025092236697674, -0.016022522002458572, -0.023125970736145973, -0.00483392458409071, -0.01565144583582878, -0.016473112627863884, 0.0036113623064011335, -0.014829778112471104, -0.005002896301448345, -0.0003818435943685472, 0.0038333451375365257, -0.027830682694911957, -0.008720280602574348, -0.0011397326597943902, 0.01924292929470539, -0.018394755199551582, 0.003806839697062969, -0.015770720317959785, 0.0070239342749118805, 0.02521989867091179, 0.016393596306443214, -0.003285014536231756, -0.0034854616969823837, 0.03554375842213631, 0.0012424411252140999, -0.002446780912578106, 0.008892565965652466, 0.019812794402241707, -0.003328085644170642, 0.017665857449173927, -0.015068326145410538, 0.017387550324201584, -0.004131530877202749, 0.018686315044760704, 0.018394755199551582, -0.01880558952689171, 0.01317981630563736, -0.023404277861118317, -0.005347466561943293, 0.009382915683090687, 0.004946572240442038, -0.01925618201494217, 0.02162841521203518, -0.004191168118268251, 0.021111560985445976, -0.002662137383595109, 0.02665119059383869, 0.0044794147834181786, -0.025763260200619698, 0.005900767166167498, 0.00767994299530983, -0.008614258840680122, -0.0033960058353841305, -0.03435101360082626, -0.01802367903292179, 0.006029981188476086, -0.008978708647191525, 0.006898033432662487, 0.0018686315743252635, -0.022052502259612083, 0.04185204580426216, 0.0188718531280756, -0.034271497279405594, -0.028546327725052834, 0.019759783521294594, 0.0017377610784024, -0.04919404536485672, -0.015770720317959785, 0.0053938510827720165, -0.00030584761407226324, 0.000560755142942071, 0.023099465295672417, 0.022105513140559196, 0.016155049204826355, 0.004562243819236755, -0.013491254299879074, -0.01375630870461464, -0.02435847371816635, -0.016486365348100662, 0.06313589215278625, -0.0032170943450182676, 0.009767244569957256, -0.009296773001551628, -0.01160936988890171, 0.006119437050074339, -0.013199695385992527, 0.00017166395264212042, -0.01994532160460949, -0.019004380330443382, 0.008316072635352612, 0.011172031052410603, 0.0023275064304471016, -0.006036607548594475, -0.0005880888202227652, 0.03989064320921898, 0.01505507342517376, 0.006043233908712864, -0.010569033212959766, -0.0015124650672078133, 0.019812794402241707, -0.0314619243144989, -0.0032038416247814894, -0.010860592126846313, 0.0008146272739395499, 0.007918491959571838, 0.018885105848312378, -0.0004655013035517186, 0.006126063410192728, -0.005768240429461002, 0.015836983919143677, 0.025153635069727898, -0.0038333451375365257, 0.005695350468158722, -0.0048272982239723206, 0.026611432433128357, 0.03185950592160225, 0.000720615906175226, -0.03771720081567764, 0.00037790919304825366, -0.004211047198623419, -0.004267371259629726, -0.028784876689314842, 0.020647715777158737, -0.0007583032711409032, -0.00042698561446741223, -0.004264058079570532, 0.006937791593372822, -0.0050161490216851234, -0.0030348696745932102, 0.005304395686835051, -0.0016466487431898713, -0.006526957731693983, 0.012981025502085686, -0.00021432110224850476, -0.023722343146800995, 0.008335951715707779, -0.0050691599026322365, 0.01832849159836769, -0.004694771021604538, 0.01149009633809328, 0.03761117905378342, -0.001095833140425384, -0.012424411252140999, -0.5954175591468811, -0.025034360587596893, -0.011576238088309765, 0.017003221437335014, 0.0139020886272192, 0.023947639390826225, 0.012358148582279682, 0.036869026720523834, -0.026068072766065598, 0.030295684933662415, -0.008799796923995018, 0.02313922345638275, -0.029845094308257103, 0.0030530921649187803, 0.003584856865927577, -0.010993119329214096, 0.0271945521235466, -0.015081578865647316, -0.004684831481426954, 0.018275480717420578, -0.026836728677153587, 0.026399390771985054, -0.022741643711924553, 0.005695350468158722, 0.009177498519420624, -0.0011347628897055984, -0.012603322975337505, -0.005973657127469778, 0.024769308045506477, 0.04529774934053421, -0.022344062104821205, 0.0278041772544384, 0.030428212136030197, 0.00687815435230732, 0.045403771102428436, -0.009647970087826252, -0.02567049115896225, 0.019309192895889282, -0.023351266980171204, 0.04057978466153145, -0.032734181731939316, -0.0008647390641272068, 0.0019133593887090683, -0.010787702165544033, 0.012464169412851334, -0.005062533542513847, 0.004290563520044088, -0.045880869030952454, 0.012238874100148678, 0.02093927562236786, 0.009555201046168804, -0.006016728468239307, 0.006450754590332508, -0.029977619647979736, 0.021827206015586853, 0.015346633270382881, 0.016446607187390327, -0.05043979734182358, 0.01587674207985401, -0.018699567764997482, -0.022953687235713005, 0.012603322975337505, -0.0003418783890083432, -0.02116457186639309, -0.023351266980171204, 0.02926197461783886, 0.005254697985947132, -0.015492413192987442, -0.0032585090957581997, -0.016102038323879242, 0.015770720317959785, -0.016671903431415558, -0.008958829566836357, -0.010628670454025269, 0.004336948040872812, 0.02955353446304798, 0.014312922023236752, -0.00942930020391941, -0.002938787452876568, 0.0235368050634861, 0.009502190165221691, 0.004078519996255636, 0.00655346317216754, -0.033661872148513794, 0.015081578865647316, -0.012596696615219116, -0.04850490391254425, -0.018315238878130913, 0.009913023561239243, 0.019574247300624847, 0.011940687894821167, -0.0025892474222928286, 0.028837887570261955, -0.05210964009165764, 0.010794328525662422, 0.02841380052268505, 0.008037766441702843, -0.02054169401526451, -0.006354672368615866, 0.009873265400528908, -0.02490183338522911, 0.00376376835629344, 0.013358727097511292, -0.017228517681360245, 0.03970510512590408, -0.001045307144522667, -0.029049931094050407, -0.005138736683875322, 0.01432617474347353, -0.025988556444644928, 0.02084650658071041, -0.01271597109735012, -0.012252126820385456, 0.0006357157253660262, 0.036630477756261826, -0.03771720081567764, 0.0022049190010875463, 0.003863163758069277, 0.0017211951781064272, -0.001522404607385397, 0.014233405701816082, 0.0147105036303401, 0.006079678889364004, -0.014418943785130978, 0.012848498299717903, 0.02613433636724949, 0.017003221437335014, -0.019309192895889282, -0.015465907752513885, 0.024239199236035347, 0.002074048388749361, 0.004525798838585615, 0.009243762120604515, 0.0006460694130510092, 0.008077524602413177, 0.02291392907500267, 0.001066014519892633, -0.010025671683251858, 0.017228517681360245, 0.0038035265170037746, -0.02032965049147606, -0.0039724987000226974, -0.004366766661405563, -0.015903247520327568, 0.02023688144981861, -0.04776275157928467, -0.023404277861118317, 0.0006253620376810431, -0.014153889380395412, -0.0011397326597943902, 0.011702138930559158, 0.0004617739759851247, -0.010410000570118427, 0.02955353446304798, -0.029500523582100868, -0.000973245594650507, -0.01463098730891943, 0.0068715279921889305, 0.01214610505849123, -0.0009889831999316812, -0.013888835906982422, 0.016764672473073006, -0.02666444331407547, 0.0006593221332877874, -0.026372885331511497, -0.011244921013712883, -0.017016474157571793, 0.024345220997929573, -0.010946734808385372, -0.03623289614915848, 0.0032104679848998785, 0.004042075481265783, 0.00127888610586524, -0.002688642591238022, 0.013716550543904305, -0.010800954885780811, -0.021668173372745514, 0.022860918194055557, -0.013285837136209011, -0.01053590141236782, 0.018659809604287148, 0.02971256710588932, -0.0013898775214329362, 0.0022513032890856266, 0.00519506074488163, 0.028360789641737938, 0.017983920872211456, 0.010655175894498825, -0.03758467361330986, -0.00727573549374938, 0.0007545759435743093, 0.03124988079071045, 0.03400644287467003, 3.8127414882183075e-05, 0.015903247520327568, 0.004201107658445835, 0.009263641200959682, 0.02751261740922928, 0.0018918237183243036, 0.01505507342517376, 0.023271750658750534, 0.025617480278015137, 0.0037902737967669964, -0.01885860040783882, 0.021270593628287315, -0.004684831481426954, 0.002219828311353922, -0.012026830576360226, 0.017612846568226814, 0.012974399141967297, -0.009336531162261963, -0.04429054260253906, -0.014511712826788425, -0.014087626710534096, 0.023815112188458443, 0.013994857668876648, -0.0225296001881361, 0.009349783882498741, -0.010635296814143658, 0.005151989404112101, 0.015293622389435768, 0.020501935854554176, 0.015783973038196564, -0.018845347687602043, 0.01871282048523426, 0.00847510527819395, 0.00912448763847351, 0.030295684933662415, -0.009674475528299809, -0.018222469836473465, -0.01911040209233761, -0.018209217116236687, 0.013259331695735455, -0.0158237311989069, 0.033741388469934464, -0.02170793153345585, 0.029845094308257103, -0.031514935195446014, 0.017811637371778488, 0.027618639171123505, 0.0294210072606802, -0.011324437335133553, 0.00676219305023551, -0.01168888621032238, 0.025803018361330032, 0.0036975049879401922, 0.04792178422212601, 0.0025875908322632313, -0.026849981397390366, 0.00239542662166059, -0.018394755199551582, -0.01550566591322422, -0.02817525342106819, 0.010443132370710373, 0.009641343727707863, -0.0014453731710091233, 0.0005404619150795043, 0.002764845732599497, 0.0039261141791939735, 0.03909548372030258, -0.009807002730667591, 0.019362203776836395, 0.028148747980594635, 0.0175598356872797, -0.008077524602413177, -0.02560422755777836, -0.004148096777498722, -0.028387295082211494, -0.003068001475185156, -0.022330809384584427, -0.0219199750572443, -0.01133769005537033, 0.02926197461783886, -0.005347466561943293, -0.009939529001712799, -0.009992539882659912, -0.0025196706410497427, 0.02284766547381878, 0.03162095695734024, -0.018514029681682587, -0.020899517461657524, -0.009700980968773365, 0.024968096986413002, -0.011861171573400497, 0.007487778551876545, -0.0013376949355006218, -0.03172697871923447, 0.0049399458803236485, -0.010800954885780811, 0.023934386670589447, 0.007341999094933271, 0.008349204435944557, -0.014803272671997547, -0.0061989533714950085, -0.009462432004511356, -0.014617734588682652, 0.044264037162065506, 0.004976390860974789, -0.008832928724586964, 0.003306550206616521, 0.0016408506780862808, -0.005089038982987404, -0.0328667089343071, -0.01215273141860962, 0.04010268673300743, -0.0012739163357764482, 0.006596534512937069, -0.030428212136030197, 0.005615834146738052, -0.021734436973929405, -0.02590904012322426, -0.010363616049289703, -0.006752253510057926, -0.008872686885297298, -0.015002062544226646, 0.006632979027926922, 0.017467066645622253, 0.0019017632585018873, 0.033873915672302246, 0.01811644807457924, -0.024411484599113464, -0.022198282182216644, 0.0017344478983432055, 0.0025776512920856476, 0.00014588329941034317, 0.007898612879216671, 0.01031060516834259, 0.009919649921357632, -0.009310025721788406, -0.029235469177365303, -0.0308522991836071, 0.005572762805968523, 0.0010535900946706533, -0.019203171133995056, -0.00679863803088665, -0.0037737078964710236, 0.012616575695574284, -0.008799796923995018, 0.027830682694911957, -0.008799796923995018, 0.0069245388731360435, 0.013531012460589409, 0.012205742299556732, -0.005648965947329998, 0.013186442665755749, 0.0008137989789247513, 0.019216423854231834, 0.010350363329052925, 0.01096661388874054, 0.006460694130510092, 0.009290146641433239, 0.019998332485556602, -0.0031806493643671274, -0.0011546419700607657, -0.010131693445146084, 0.012325016781687737, -0.003429137635976076, 0.03967859968543053, 0.0020210377406328917, 0.04903501272201538, -0.0054037906229496, 0.05937212333083153, -0.007010681554675102, 0.010933482088148594, 0.0182622279971838, 0.024689791724085808, -0.003452329896390438, -0.007785964757204056, 0.015399644151329994, -0.014763514511287212, -0.00687815435230732, 0.01149672269821167, -0.00531102204695344, -0.012258753180503845, 0.023841617628932, 0.008985334075987339, -0.03941354528069496, 0.011801534332334995, -0.0008962142164818943, 0.04611941799521446, -0.032045044004917145, -0.00624865060672164, -0.003714070888236165, -0.013140058144927025, -0.009594959206879139, -0.016552628949284554, -0.012841871939599514, 0.004661639221012592, -0.011331063695251942, -0.024080166593194008, -0.0015489100478589535, -0.003707444528117776, -0.02368258498609066, 0.011019624769687653, 0.030507728457450867, -0.06117448955774307, -0.02459702268242836, 0.008276314474642277, 0.023364519700407982, 0.014273163862526417, 0.00921063032001257, 0.00992627628147602, -0.01286837738007307, 0.02032965049147606, -0.012013577856123447, -0.014140636660158634, 0.015611687675118446, -0.007454647216945887, 0.0005524721927940845, 0.0021187763195484877, -0.0031226687133312225, 0.009349783882498741, -0.009893144480884075, 0.01941521465778351, -0.0008340921485796571, 0.015518918633460999, 0.01000579260289669, 0.00703056063503027, 0.004217673558741808, 0.00886606052517891, -0.018845347687602043, 0.0012855124659836292, 0.0038366583175957203, -0.006116123870015144, 0.012636454775929451, -0.044873662292957306, -0.009541948325932026, -0.020501935854554176, -0.019057391211390495, -0.0011339345946907997, 0.01895136944949627, 0.017506824806332588, -0.015240611508488655, 0.002968606073409319, 0.030348695814609528, -0.015836983919143677, 0.027592133730649948, 0.001362543785944581, 0.03270767629146576, -0.000653524068184197, -0.0038432846777141094, 0.010781075805425644, -0.007660063914954662, -0.011145525611937046, 0.006092931609600782, -0.018354997038841248, 0.020077848806977272, 0.013623781502246857, 0.008607632480561733, 0.01406112127006054, -0.01787790097296238, -0.02009110152721405, -0.020607957616448402, 0.012815366499125957, 0.008760038763284683, 0.013226200826466084, 0.004164662677794695, -0.016844188794493675, -0.020289892330765724, -0.020912770181894302, -0.03315826877951622, 0.016314079985022545, -0.028970414772629738, -0.009946155361831188, -0.00950881652534008, -0.006715808529406786, -0.006977549754083157, 0.012318390421569347, -0.005383911542594433, -0.026611432433128357, -0.010562406852841377, 0.0025528024416416883, 0.015479160472750664, 0.011225041933357716, 0.03276068717241287, 0.005692037288099527, -0.03814128786325455, -0.005827877204865217, 0.002150251530110836, -0.017692362889647484, 0.000800546258687973, -0.0055462573654949665, 0.015717709437012672, 0.02223804034292698, 0.03790273889899254, 0.01757308840751648, 0.0073486254550516605, -0.02535242587327957, -0.0021005538292229176, 2.2972219085204415e-05, -0.011715391650795937, 0.0058941408060491085, 0.014922547154128551, -0.0029421006329357624, -0.008223303593695164, 0.008912445046007633, 0.008991960436105728, -0.005228192545473576, 0.002282778499647975, 0.016791177913546562, -0.015028567984700203, 0.009190751239657402, -0.033290795981884, -0.02184045873582363, -0.02085975930094719, -0.01367679238319397, -0.010979866608977318, 0.00760042667388916, -0.008793170563876629, -0.028387295082211494, -0.013411737978458405, -0.0031823059543967247, 0.014100879430770874, 0.040526773780584335, -7.713488594163209e-05, -0.020303145051002502, 0.007057065609842539, 0.00033048936165869236, -0.0008763351943343878, -0.025763260200619698, 0.014538218267261982, -0.018606798723340034, 0.033953431993722916, -0.0032452563755214214, 0.013272584415972233, 0.02751261740922928, 0.0017543269786983728, 0.029129447415471077, -0.005566136445850134, 0.034404024481773376, 0.006825143471360207, -0.02352355234324932, -0.018461018800735474, -0.02812224254012108, -0.013782814145088196, -0.0185670405626297, -0.008541368879377842, -0.0046980842016637325, -0.022132018581032753, 0.01095998752862215, 0.029235469177365303, 0.010946734808385372, -0.00032365592778660357, -0.014869536273181438, 0.00206245225854218, -0.020581452175974846, 0.04368091747164726, 0.013511133380234241, 0.03321127966046333, 0.03056073933839798, 0.01842126064002514, 0.0030017378740012646, -0.04550979286432266, -0.02062121033668518, -0.015002062544226646, 0.022410325706005096, 0.0489024855196476, 0.00022819502919446677, -0.0345100462436676, -0.012676212936639786, -0.003026586724445224, 0.0034755221568048, -0.0328667089343071, 0.023338014259934425, 0.014220152981579304, -0.014843030832707882, -0.025272909551858902, 0.004582122899591923, -0.03156794607639313, 0.014829778112471104, -0.016552628949284554, -0.013809319585561752, -0.012662960216403008, 0.007520910352468491, -0.015943005681037903, 0.014153889380395412, 0.004499293398112059, 0.01317318994551897, 0.014432196505367756, 0.006275156047195196, -0.006984176114201546, -0.028996920213103294, -0.027406595647335052, 0.004114964976906776, -0.0033429949544370174, 0.044953178614377975, -0.005089038982987404, -0.00871365424245596, 0.02788369357585907, -0.0049399458803236485, -0.007136581931263208, -0.02361632138490677, -0.014988809823989868, 0.04299177601933479, -0.0066462317481637, -0.0008978708065114915, -0.023735595867037773, 0.00966122280806303, 0.009555201046168804, -0.013358727097511292, -0.007607053034007549, 0.014273163862526417, -0.008223303593695164, -0.0031640834640711546, 0.018474271520972252, -0.018964622169733047, 0.0028277961537241936, -0.009078103117644787, -0.0072956145741045475, 0.005715229548513889, -0.004757721442729235, 0.02115131914615631, 0.006752253510057926, -0.027539122849702835, -0.03299923613667488, -0.0182622279971838, -0.03400644287467003, 0.0016168301226571202, 0.0012855124659836292, 0.01962725818157196, 0.01819596439599991, 0.04471462965011597, -0.01733453944325447, -0.004081833176314831, 0.005082412622869015, 0.02070072665810585, -0.013133431784808636, -0.0035815436858683825, -0.0011985416058450937, -0.015227358788251877, 0.016685156151652336, 0.019958574324846268, 0.00840884167701006, -0.027088530361652374, 0.00296197971329093, 0.0316474623978138, 0.011715391650795937, 0.02305970899760723, 0.013968352228403091, 0.0006808577454648912, 0.023046456277370453, -0.003492088057100773, -0.02857283316552639, 0.01096661388874054, 0.00027996342396363616, 0.011543107219040394, 0.011019624769687653, -0.004943259060382843, -0.008236556313931942, -0.004784226883202791, -0.00463844696059823, 0.007209471892565489, -0.026240358129143715, -0.03352934494614601, -0.007964876480400562, 0.002970262663438916, -0.014047868549823761, -0.015850236639380455, -0.04452909156680107, -0.006722434889525175, -0.029235469177365303, 0.0010742974700406194, 0.013994857668876648, -0.0023142537102103233, -0.015214106068015099, 0.04423753172159195, 0.027936704456806183, 0.004214360378682613, -0.0015381422126665711, -0.02017061784863472, -0.009197377599775791, -0.03093181550502777, -0.010178077965974808, -0.023801859468221664, -0.027088530361652374, 0.04386645555496216, 0.0018553788540884852, -0.003661060007289052, -0.02889089845120907, -0.03040170669555664, -0.017003221437335014, 0.0005847756401635706, -0.009449179284274578, 0.022436831146478653, 0.031886011362075806, 0.014352680183947086, -0.026081325486302376, -0.009376289322972298, -0.0008456882787868381, -0.0033777833450585604, -0.016751419752836227, 0.005861009005457163, -0.004767660982906818, -0.012199115939438343, -0.005039341282099485, 0.01587674207985401, 0.0059173330664634705, -0.007554042153060436, -0.0023738909512758255, -0.019892310723662376, 0.03093181550502777, 0.02673070691525936, 0.012583443894982338, -0.007070318330079317, -0.015108084306120872, -0.03260165452957153, 0.006695929449051619, -0.007931744679808617, 0.0056754713878035545, -0.027486111968755722, 0.005224879365414381, 0.015068326145410538, 0.009541948325932026, -0.010224462486803532, 0.010747944004833698, 0.0015348290326073766, -0.001258178730495274, 0.008660643361508846, -0.012523806653916836, -0.01972002536058426, -0.0060697393491864204, -0.000583947345148772, 0.042912259697914124, -0.013955099508166313, 0.0007698994013480842, 0.011324437335133553, -0.02453075908124447, -0.004227613098919392, -0.03276068717241287, 0.030825793743133545, 0.00012144862557761371, 0.011814787052571774, 0.019507983699440956, -0.006487199570983648, 0.0025892474222928286, 0.0013724833261221647, -0.0025113876909017563, -0.004731216002255678, 0.0035517250653356314, 0.002011098200455308, 0.005688724108040333, -0.04277973249554634, 0.008183545432984829, 0.010303978808224201, -0.002532923361286521, -0.0032452563755214214, 0.002741653472185135, -0.005738421808928251, -0.004674891941249371, -0.03827381506562233, -0.01810319535434246, -0.03321127966046333, 0.011947314254939556, 0.024119924753904343, 0.013557517901062965, -0.040685806423425674, 0.03564978018403053, 0.0052745770663022995, -0.021721184253692627, 0.01696346327662468, 0.2362162321805954, -0.007315493654459715, 0.01088709756731987, 0.0357292965054512, 0.03779671713709831, 0.01375630870461464, 0.015333380550146103, 0.012338269501924515, 0.008216677233576775, -0.004651699680835009, -0.00580799812451005, -0.012696092016994953, -0.01046301145106554, 0.0005243101622909307, 0.011582864448428154, -0.013491254299879074, -0.011291305534541607, -0.02751261740922928, -0.026028314605355263, 0.0006203922675922513, 0.03260165452957153, -0.012006951496005058, 0.005218253005295992, -0.01455147098749876, -0.004933319520205259, 0.021177824586629868, -0.007991381920874119, 0.030984826385974884, 0.007693195715546608, -0.010913603007793427, -0.009223883040249348, 0.03623289614915848, 0.010489516891539097, -0.011582864448428154, -0.014458701945841312, -0.012391280382871628, 0.052904803305864334, 0.024689791724085808, 0.026558421552181244, 0.012835245579481125, -0.006964297033846378, -0.012119599618017673, -0.009416047483682632, -0.00360142276622355, -0.02971256710588932, 0.00632154056802392, -0.004595375619828701, -0.021575404331088066, 0.0271945521235466, 0.016221312806010246, -0.015982763841748238, -0.03254864364862442, 0.05629749596118927, 0.010350363329052925, -0.017692362889647484, -0.02642589621245861, 0.02458376996219158, -0.01455147098749876, 0.009078103117644787, 0.02344403602182865, -0.012305137701332569, 0.041454464197158813, -0.014869536273181438, 0.021217582747340202, -0.026876486837863922, 0.015240611508488655, -0.014299669302999973, 0.0003275903291068971, -0.05240119993686676, -0.0007160602835938334, -0.001964713679626584, -0.010562406852841377, 0.01073469128459692, -0.00936303660273552, -0.007149834651499987, -0.02971256710588932, 0.04447608068585396, 0.02536567859351635, 0.02751261740922928, 0.04683506116271019, -0.005151989404112101, -0.0019365516491234303, 0.006016728468239307, 0.013743055984377861, -0.020568199455738068, -0.012941267341375351, 0.013610528782010078, -0.005476680584251881, 0.013610528782010078, 0.005595955066382885, 0.00412490451708436, -0.009614838287234306, 0.007633558474481106, -0.017215264961123466, -0.013239453546702862, 0.0055230651050806046, -0.009303399361670017, 0.017811637371778488, -0.03864489123225212, 0.00790523923933506, -0.017361044883728027, 0.017612846568226814, 0.03093181550502777, 0.013464748859405518, -0.015214106068015099, -0.014034615829586983, 0.006477260030806065, 0.011158778332173824, 0.0009550231043249369, -0.007626932114362717, 0.008229929953813553, -0.03771720081567764, 0.00893895048648119, 0.008428720757365227, -0.013080420903861523, 0.026306621730327606, -0.027075277641415596, -0.030746277421712875, -0.009535321965813637, 0.017003221437335014, 0.024888580664992332, -0.010747944004833698, -0.029076436534523964, -0.011066009290516376, -0.0031475175637751818, -0.006722434889525175, -0.03056073933839798, -0.005980283487588167, -0.0028046038933098316, -0.036179885268211365, 0.018620051443576813, -0.02076699025928974, 0.02735358476638794, 0.0014751917915418744, -0.010973240248858929, 0.020435672253370285, -0.00832932535558939, -0.010211209766566753, 0.008587753400206566, -0.02453075908124447, -0.012079841457307339, -0.001543111982755363, -0.004495980218052864, 0.006348046008497477, -0.012656333856284618, -0.0017808323027566075, 0.0006982519407756627, 0.014829778112471104, 0.010933482088148594, 0.01398160494863987, -0.059690188616514206, -0.033343806862831116, 0.014100879430770874, -0.012484048493206501, 0.029845094308257103, -0.022171776741743088, -0.026001809164881706, -0.044794145971536636, 4.493495725910179e-05, 0.02695600315928459, -0.0064706336706876755, -0.021177824586629868, 0.0010916916653513908, -0.026757212355732918, -0.018673062324523926, -0.018765831366181374, -0.16624194383621216, 0.011403953656554222, 0.024504253640770912, -0.04352188482880592, 0.03132939711213112, 0.011317810975015163, -0.00496313814073801, -0.02743310108780861, 0.016247818246483803, -0.008011261001229286, 0.023510299623012543, 0.006984176114201546, -0.004413151182234287, -0.006073052529245615, -0.004943259060382843, 0.0012689465656876564, -0.012006951496005058, 0.018686315044760704, 0.03575580194592476, -0.009310025721788406, 0.0681719183921814, -0.02605482004582882, 0.00042056632810272276, 0.006884780712425709, 0.0024020529817789793, -0.005731795448809862, -0.027168046683073044, -0.014763514511287212, -0.015002062544226646, -0.009873265400528908, -0.0034788353368639946, 0.017440561205148697, -0.0037670815363526344, 0.009078103117644787, 0.017135748639702797, -0.02865234948694706, 0.02284766547381878, -0.014737009070813656, -0.006825143471360207, 0.018434513360261917, 0.015373138710856438, 0.013928594067692757, 0.045668825507164, -0.01176840253174305, -0.0007268280605785549, 0.02108505554497242, 0.00825643539428711, -0.00928352028131485, 0.007660063914954662, 0.0009773870697245002, 0.02032965049147606, -0.03132939711213112, -0.02772466093301773, -0.0025842776522040367, 0.034191980957984924, 0.005576075986027718, -0.0015439402777701616, 0.01038349512964487, -0.004370079841464758, -0.011920808814466, 0.015041820704936981, -0.04110989347100258, 0.0034722089767456055, -0.0050161490216851234, -0.03867139667272568, -0.0005516438977792859, 0.003700818167999387, 0.02560422755777836, -0.00265551102347672, 0.002029320690780878, 0.019044138491153717, -0.04270021989941597, -0.01367679238319397, -0.019189918413758278, 0.0351196713745594, -0.011350942775607109, 0.006073052529245615, 0.037081070244312286, 0.02430546283721924, -0.002085644518956542, -0.01710924319922924, 0.02788369357585907, -0.002562741981819272, -0.006792011670768261, 0.01406112127006054, 0.03819429874420166, 0.019348951056599617, -0.011244921013712883, -0.033582355827093124, -0.0035450987052172422, 0.015717709437012672, -0.014697250910103321, -0.019282687455415726, -0.01911040209233761, 0.02001158520579338, 0.007494404911994934, 0.00265551102347672, 0.010423253290355206, -0.026015061885118484, -0.006374551448971033, 0.0015058387070894241, 0.004724589642137289, -0.030428212136030197, 0.017692362889647484, 0.02169467881321907, 0.012961146421730518, -0.003714070888236165, 0.00022239696409087628, 0.018620051443576813, -0.02010435424745083, -0.014021363109350204, 0.014657492749392986, 0.01803693175315857, 0.02017061784863472, 0.010144946165382862, 0.026081325486302376, 0.007706448435783386, 0.003328085644170642, -0.02788369357585907, 0.0034191980957984924, -0.024411484599113464, -0.02597530372440815, 0.008428720757365227, 0.0316474623978138, 0.0058179376646876335, -0.024477748200297356, -0.051897596567869186, -0.02276814915239811, 0.00662635313346982, 0.002950383583083749, -0.014286416582763195, 0.0033098633866757154, -0.008203424513339996, 0.013438243418931961, 0.011311184614896774, 0.012901509180665016, 0.011410580016672611, -0.030216168612241745, -0.008885939605534077, 0.020660968497395515, -0.01651287078857422, -0.0018437827238813043, 0.015704456716775894, -0.015691203996539116, 0.008879313245415688, -0.0019547741394490004, -0.004101712256669998, -0.005910706706345081, -0.01741405576467514, -0.0071432082913815975, -0.011384074576199055, -0.005662218667566776, -0.026796970516443253, 0.007944997400045395, 0.028440305963158607, 0.014392438344657421, 0.010800954885780811, 0.004012256860733032, -0.01734779216349125, 0.003747202455997467, -0.018620051443576813, 0.015028567984700203, -0.04317731410264969, -0.017612846568226814, 0.014803272671997547, -0.0061989533714950085, 0.0033032370265573263, -0.03496063873171806, -0.00519506074488163, 0.005877574905753136, -0.035782307386398315, -0.011596117168664932, -0.013411737978458405, -0.005595955066382885, 0.0013791096862405539, -0.012059962376952171, -0.025180140510201454, 0.015253864228725433, -0.003010020824149251, -0.023338014259934425, 0.006331480108201504, 0.008090777322649956, -0.0036411809269338846, 0.01535988599061966, -0.012484048493206501, 0.004108338616788387, 0.006457380950450897, 0.016698408871889114, -0.03641843423247337, 0.03941354528069496, -0.003271761815994978, 0.03925451636314392, -0.015306875109672546, -0.019136907532811165, 0.013398485258221626, -0.005317648407071829, -0.0059471516869962215, 0.028837887570261955, -0.008210050873458385, 0.031355902552604675, -0.058258894830942154, 0.010363616049289703, 0.0006141801131889224, -0.02284766547381878, 0.01573096215724945, -0.012729223817586899, 0.0028112302534282207, 0.0066429185681045055, 0.002074048388749361, 0.0022860916797071695, 0.004936632700264454, 0.014949052594602108, -0.013212948106229305, 0.009773870930075645, 0.02535242587327957, -0.0576227642595768, 0.005228192545473576, -0.007686569355428219, 0.016870694234967232, 0.009376289322972298, -0.002677046461030841, -0.0047974796034395695, 0.0051751816645264626, -0.025948798283934593, -0.0065236445516347885, 0.02023688144981861, -0.026876486837863922, -0.025683743879199028, -0.09557851403951645, 0.00920400395989418, -0.014869536273181438, -0.01704297959804535, 0.013888835906982422, -0.02560422755777836, 0.02453075908124447, -0.011602743528783321, 0.02458376996219158, 0.007176340091973543, -0.02071397937834263, 0.01702972687780857, -0.010794328525662422, -0.01367679238319397, -0.017294781282544136, 0.013358727097511292, 0.011430459097027779, 0.02002483792603016, 0.008355830796062946, 0.012318390421569347, 0.004857116844505072, -0.019879058003425598, 0.013637034222483635, -0.008229929953813553, -0.02560422755777836, 0.0278041772544384, -0.013279210776090622, 0.01819596439599991, -0.027221057564020157, -0.03535822033882141, -0.002730057341977954, 0.0026124396827071905, -0.01520085334777832, -0.0027101782616227865, -0.015333380550146103, -0.01604902744293213, 0.0006841709255240858, 0.0014702220214530826, 0.008793170563876629, 0.004976390860974789, -0.02575000748038292, -0.0035815436858683825, 0.025180140510201454, -0.00935641024261713, 0.013378606177866459, -0.026001809164881706, 0.0020342902280390263, 0.015545424073934555, 0.008435347117483616, 0.012344895862042904, 0.017440561205148697, 0.021336857229471207, -0.016300827264785767, -0.01710924319922924, 0.009230509400367737, -0.04659651219844818, -0.0005334214074537158, 0.008375709876418114, -0.009323278442025185, -0.007375130895525217, 0.00958170648664236, -0.009157619439065456, 0.014988809823989868, 0.01160936988890171, 0.01710924319922924, -0.02002483792603016, -0.014988809823989868, -0.02491508610546589, 0.006811890751123428, -0.014949052594602108, -0.02039591409265995, -0.004340261220932007, 0.01581047847867012, 0.01672491431236267, 0.021350109949707985, 0.003102789632976055, -0.02873186580836773, -0.016552628949284554, -0.013623781502246857, 0.03018966317176819, 0.0012068245559930801, 0.03493413329124451, -0.055184267461299896, 0.016300827264785767, 0.035782307386398315, 0.012252126820385456, -0.018540535122156143, -0.01367679238319397, -0.009025092236697674, -0.01680443063378334, -0.007116702850908041, -0.01819596439599991, 0.009879891760647297, 0.01742730848491192, 0.027936704456806183, 0.014087626710534096, 0.01978628896176815, -0.011092514730989933, 0.019507983699440956, -0.00031061028130352497, 0.014114131219685078, -0.016632145270705223, -0.015717709437012672, -0.04317731410264969, -0.02015736512839794, 0.013126805424690247, 0.001959743909537792, -0.0474976971745491, 0.003149174153804779, 0.0017278215382248163, -0.02047543041408062, 0.02596205100417137, -0.009992539882659912, 0.013835825026035309, -0.030958320945501328, -0.013272584415972233, -0.011794907972216606, -0.018991127610206604, -0.03071977198123932, 0.0037240104284137487, 0.010840713046491146, 0.02345728874206543, 0.032522138208150864, -0.02039591409265995, 0.02459702268242836, -0.007554042153060436, 0.005748361349105835, -0.028970414772629738, 0.022503094747662544, -0.009647970087826252, -0.017533330246806145, 0.006792011670768261, -0.02873186580836773, -0.031064342707395554, -0.011370821855962276, 0.013272584415972233, -0.019295940175652504, 0.0016996595077216625, 0.008296193554997444, 0.08529441803693771, -0.0047742873430252075, -0.002569368341937661, -0.008601006120443344, 0.006348046008497477, -0.006977549754083157, -0.00435682712122798, 0.009787123650312424, -0.01566469855606556, -0.008813049644231796, 0.023192234337329865, -0.0037902737967669964, 0.004489354323595762, -0.02430546283721924, -0.016393596306443214, 0.004303816240280867, -0.03477510064840317, 0.02017061784863472, -0.024093419313430786, 0.025564469397068024, 0.04818683862686157, 0.006845022551715374, 0.011755149811506271, -0.020979033783078194, -0.01126480009406805, -0.0004539051733445376, 0.03355585038661957, 0.0036279282066971064, 0.009389542043209076, -0.02352355234324932, 0.01565144583582878, 0.02025013417005539, -0.023192234337329865, -0.007898612879216671, 0.026770465075969696, 0.013378606177866459, -0.022834412753582, 0.023894628509879112, 0.014577976427972317, 0.0030762844253331423, 0.007129955571144819, 0.007746206596493721, -0.023019950836896896, -0.027141541242599487, 0.011072635650634766, 0.006155882030725479, -0.0012341581750661135, 0.02131035178899765, 0.008733533322811127], "228c06bb-f645-4014-b659-023b13b7411f": [-0.020620282739400864, -0.033959511667490005, 0.007962774485349655, -0.013528984971344471, -0.008869391866028309, 0.030529825016856194, -0.031710535287857056, -0.04154979810118675, -0.004810696467757225, -0.008686662651598454, 0.040228527039289474, -0.001632263301871717, -0.0016832166584208608, -0.009979822672903538, -0.02407808043062687, -0.015208687633275986, -0.00519021088257432, -0.007168604992330074, 0.017907457426190376, -0.009326214902102947, 0.020339161157608032, 0.01134326308965683, 0.0038197420071810484, -0.008300120010972023, -0.0249776691198349, 0.013908499851822853, -0.013191639445722103, -0.02530095912516117, 0.021224694326519966, 0.00520075298845768, 0.05195130407810211, -0.0005837669596076012, -0.00912942923605442, -0.011807114817202091, -0.009312158450484276, -0.01185631100088358, -0.011476796120405197, -0.0006290099699981511, 0.021224694326519966, 0.006420118268579245, 0.021674487739801407, 0.004020041320472956, 0.013957696035504341, -0.0016656465595588088, -0.019664468243718147, 0.011982815340161324, 0.008208755403757095, -0.026228660717606544, -0.01564442738890648, 0.022208619862794876, 0.01994558982551098, 0.004898546729236841, -0.01764039136469364, -0.03308803215622902, 0.002233161125332117, 0.0014934594510123134, 0.003538620425388217, 0.011272982694208622, -0.015953660011291504, -0.014463715255260468, 0.009614364244043827, 0.0013379639713093638, -0.009895486757159233, -0.0060968282632529736, -0.0025125257670879364, -0.003000974887982011, -0.013578181155025959, 0.01506812684237957, 0.006135482806712389, -0.017218708992004395, 0.012362330220639706, 0.010310141369700432, 0.001576917478814721, -0.001597123104147613, 0.020339161157608032, 0.009354326874017715, -0.02157609537243843, 0.002927180379629135, 0.013831190764904022, 0.003025572979822755, -0.003299666801467538, -0.013374368660151958, 0.0004212433996144682, -0.005878958851099014, 0.04036908596754074, 0.01246775034815073, -0.03812011331319809, 0.01667052134871483, -0.012671563774347305, -0.018694598227739334, 0.024021854624152184, 0.000674252980388701, 0.008279035799205303, 0.02570858597755432, -0.0011894964845851064, -1.304031684412621e-06, 0.00804711040109396, 0.03424063324928284, -0.01248883455991745, -0.04351764917373657, -0.02345961146056652, 0.028435466811060905, -0.01949579454958439, 0.008953728713095188, -0.023515835404396057, -0.015166519209742546, 0.027465596795082092, 0.006908567622303963, 0.005970323458313942, -0.008693690411746502, -0.02797161601483822, 0.03615225851535797, 0.019664468243718147, -0.057180169969797134, -0.032160330563783646, 0.016515905037522316, 0.024865221232175827, -0.04025663807988167, -0.01222176942974329, 0.012256909161806107, 0.0043503595516085625, 0.020817067474126816, 0.013978780247271061, 0.0017192353261634707, 0.0008705990039743483, 0.012249881401658058, -0.02251785434782505, -0.021351197734475136, -0.007723820861428976, -0.01466049998998642, 0.046666212379932404, 0.00022928994440007955, 0.037445418536663055, 0.014112313278019428, -0.005555668845772743, 0.029011767357587814, -0.02412024885416031, 0.0050074816681444645, -0.01428801380097866, -0.00773787684738636, 0.016600240021944046, 0.02525879070162773, 0.001679702545516193, 0.013852274976670742, 0.0024492733646184206, 0.013156498782336712, 0.014112313278019428, -0.01838536374270916, -0.01809018664062023, -0.004308191128075123, 0.018413476645946503, -0.01609422080218792, 0.0049477433785796165, 0.01686730608344078, 0.001295795664191246, 0.002971105743199587, 0.027831055223941803, -0.008665578439831734, 0.009438663721084595, -0.008250923827290535, 0.01071073953062296, 0.026228660717606544, 0.006177650764584541, -0.007899521850049496, 0.007681652437895536, 0.030108142644166946, 0.02099979668855667, -0.003505237167701125, -0.014519939199090004, -0.0008938793907873333, -0.022222675383090973, -0.003963816910982132, -0.005348341539502144, 0.014744836837053299, 0.013233807869255543, 0.011736834421753883, 0.027170419692993164, -0.00200650654733181, 0.008033054880797863, -0.006342810112982988, -0.006659071892499924, -0.014252874068915844, -0.0002945189771708101, 0.006511482875794172, -0.0114627406001091, -0.005647033452987671, 0.013585209846496582, -0.002684712875634432, 0.02178693749010563, 0.0047579859383404255, 0.013170555233955383, 0.03750164434313774, -0.014646444469690323, -0.002855143044143915, -0.5982271432876587, -0.04672243818640709, -0.011603301391005516, 0.008707746863365173, 0.03854179382324219, 0.010773992165923119, 0.017795007675886154, 0.03140130266547203, -0.03559001535177231, 0.033678390085697174, -0.010598290711641312, 0.040228527039289474, 0.00201704865321517, -0.006001949775964022, 0.01172980573028326, -0.009417579509317875, -0.0007129072328098118, -0.02247568592429161, -0.013465733267366886, 0.00512695824727416, -0.005488902796059847, 0.010085243731737137, -0.020072095096111298, 0.006444716826081276, -0.005692715756595135, 0.010099299252033234, 0.01224285364151001, -0.03578680008649826, 0.020901404321193695, 0.01437235064804554, -0.03598358854651451, 0.018371308222413063, 0.010387449525296688, -0.03272257372736931, 0.046863000839948654, -0.0066801561042666435, -0.024457594379782677, 0.006065202411264181, -0.00387948052957654, 0.03353782743215561, -0.033594053238630295, -0.007892494089901447, -0.01588338054716587, -0.009326214902102947, -0.0024317032657563686, 0.003904078621417284, 0.014927566051483154, -0.03185109794139862, 0.010921580716967583, -0.001962581416592002, -0.00192919815890491, -0.012053095735609531, 0.016965698450803757, -0.020901404321193695, -0.005063706077635288, 0.025582080706954002, 0.03820445016026497, -0.03570246696472168, 0.00022314040688797832, -0.03176676109433174, -0.015869323164224625, -0.0006083651096560061, -0.008988868445158005, 0.003633498912677169, -0.01896166428923607, 0.022250788286328316, -0.002626731526106596, -0.013915527611970901, 0.021997779607772827, -0.030923394486308098, -0.0010278514819219708, 0.0036897233221679926, 0.02615838125348091, -0.032329004257917404, 0.008665578439831734, 0.040959443897008896, 0.0462726429104805, -0.02063433825969696, -0.012277993373572826, 0.022292956709861755, -0.003347106045112014, 0.0011051599867641926, 0.013219751417636871, -0.011427599936723709, 0.013381396420300007, -0.005984379909932613, -0.019959645345807076, -0.004961799364537001, 0.018722709268331528, -0.006388492416590452, 0.016529960557818413, -0.009002924896776676, 0.02202589064836502, -0.03286313638091087, 0.02367045357823372, 0.001987179508432746, -0.006100342608988285, -0.020114263519644737, 0.004234396852552891, -0.015180575661361217, -0.008637466467916965, -0.002937722485512495, 0.01471672486513853, -0.011322179809212685, 0.010619374923408031, 0.011863338761031628, -0.013458704575896263, 0.0028410868253558874, 0.01551792211830616, -0.008700719103217125, 0.003998957108706236, -0.009417579509317875, -0.01620667055249214, -0.008588270284235477, 0.028435466811060905, -0.0327506847679615, 0.020465664565563202, -0.0007546362467110157, 0.009565168060362339, -0.0048177242279052734, 0.032778799533843994, 0.009853318333625793, 0.015714706853032112, -0.0066801561042666435, 0.010204720310866833, 0.030023805797100067, 0.03570246696472168, -0.005102360155433416, -0.023726677522063255, 0.018525924533605576, 0.006328754127025604, -0.002245460171252489, 0.009312158450484276, -0.019017888233065605, -0.008602325804531574, 0.004736901726573706, 0.006529053207486868, -0.02166043221950531, 0.03882291540503502, -0.004079779610037804, -0.006012491881847382, -0.007660568226128817, -0.004603369161486626, -0.017541998997330666, 0.005629463586956263, -0.022672470659017563, -0.018849214538931847, 0.00856015831232071, 0.004765014164149761, 0.025188511237502098, -0.002331553725525737, 0.0029746198561042547, -0.009066177532076836, 0.02861819602549076, -0.014899454079568386, 0.0030659842304885387, 0.0005473089404404163, -0.002897311234846711, -0.00514804245904088, -0.005362397991120815, 0.004592827055603266, 0.009452719241380692, -0.03553379327058792, -0.012720759958028793, -0.01866648532450199, -0.015208687633275986, -0.011265954934060574, 0.02846357971429825, -0.02239134907722473, -0.015222744084894657, -0.00047746775089763105, -0.005805164575576782, 0.005991407670080662, 0.000480103277368471, -0.000336247991072014, 0.006950736045837402, -0.03379083797335625, 0.025736698880791664, 0.005165612790733576, -0.015040014870464802, 0.004642023239284754, 0.027943504974246025, -0.001271197572350502, -0.006261987611651421, 0.02161826379597187, 0.024302978068590164, 0.017738783732056618, 0.024949558079242706, 0.01363440603017807, -0.006037089973688126, -0.01748577505350113, 0.02277086302638054, -0.0050812759436666965, 0.01365549024194479, 0.011490852572023869, -0.006771520711481571, 0.005249949172139168, 0.005524042993783951, 0.011666553094983101, 0.035027772188186646, 0.017598222941160202, 0.03204788267612457, -0.011898479424417019, -0.02653789520263672, 0.009494887664914131, -0.014210705645382404, 0.010738851502537727, -0.012411526404321194, 0.019594186916947365, 0.010197692550718784, 0.0005512622301466763, -0.0372486338019371, -0.015756875276565552, -0.017584167420864105, 0.015180575661361217, 0.013346255756914616, -0.0027602643240243196, -0.0003538181190378964, 0.004318733233958483, 0.027648326009511948, 0.018933551385998726, 0.004905574955046177, 0.027451541274785995, -0.01875082217156887, 0.018582148477435112, -0.023572061210870743, 0.007302138023078442, 0.04233694076538086, -0.005921127274632454, -0.022349180653691292, -0.010556122288107872, -0.0053167156875133514, 0.020606225356459618, 0.00202231970615685, 0.024092135950922966, -0.004916117060929537, 0.04062209650874138, -0.03210410475730896, 0.027831055223941803, 0.01480106171220541, -0.009136457927525043, -0.01945362612605095, -0.006174136884510517, -0.008792083710432053, 0.0072388858534395695, 0.009178625419735909, 0.06522025167942047, 0.025863202288746834, -0.0040446394123137, -0.0020363759249448776, -0.032778799533843994, -0.008426625281572342, -0.026214605197310448, 0.014280986040830612, 0.0249776691198349, 0.0037881159223616123, 0.005900043062865734, 0.015096238814294338, 0.02322065830230713, 0.04281484708189964, 0.0056892018765211105, 0.01367657445371151, 0.007003446109592915, 0.011722777970135212, 0.038963478058576584, -0.012299077585339546, -0.011146478354930878, -0.029124215245246887, 0.0051164161413908005, -0.00812441948801279, -0.040846992284059525, -0.012931601144373417, -0.010556122288107872, -0.008897503837943077, -0.0006149538676254451, -0.0070139882154762745, -0.01392255537211895, 0.015588202513754368, 0.02792944759130478, 0.0005789351416751742, -0.0319354347884655, -0.03176676109433174, 0.013500872999429703, -0.004283593036234379, 0.008117390796542168, 0.019425515085458755, -0.02236323617398739, 0.014674556441605091, 0.0025072547141462564, 0.0327506847679615, -0.006075744517147541, 0.013641433790326118, -0.0011429357109591365, -0.0026706568896770477, -0.012910517863929272, 0.0028217597864568233, 0.008960756473243237, -0.00587544497102499, -0.04438912868499756, -0.0011833469616249204, -0.0027549932710826397, -0.006659071892499924, -0.01250991877168417, -0.00841256882995367, 0.04613208398222923, -0.000961085082963109, -0.0043152193538844585, -0.02395157516002655, 0.009501916356384754, -0.011308123357594013, 0.0030273301526904106, -0.010366365313529968, -0.025736698880791664, 0.0044838921166956425, 0.003550919471308589, 0.026228660717606544, 0.017471717670559883, -0.008728831075131893, 0.023529892787337303, 0.0035017230547964573, -0.0167829692363739, 0.002572264289483428, -0.00064614083385095, 0.01142057217657566, -0.01404203288257122, -0.004599854815751314, 0.01707814820110798, -0.010816160589456558, -0.01834319531917572, 0.00256875017657876, -0.029630234465003014, 0.025694530457258224, 0.03814822435379028, -0.01896166428923607, -0.00806819461286068, -0.00713346479460597, -0.004227368626743555, -0.0132056949660182, 0.007059670519083738, -0.005587295163422823, -0.00267241382971406, -0.002614432480186224, 0.02465437911450863, -0.01026094425469637, -0.003608900820836425, 0.005534585099667311, 0.01103402953594923, -0.0031028816010802984, -0.0027549932710826397, 0.004866920877248049, 0.013142443262040615, 0.016023941338062286, 0.024949558079242706, -0.025806978344917297, -0.0002595983969513327, 0.005130472127348185, -0.00534482765942812, 0.034943435341119766, 0.008813167922198772, 0.04107189178466797, -0.0037600037176162004, 0.040762655436992645, 0.014273958280682564, 0.0037108073011040688, -0.008700719103217125, 0.02403591200709343, 0.007969802245497704, -0.0021769367158412933, -0.0054397061467170715, 0.0005077762180007994, -0.0323571152985096, 0.034212518483400345, -0.008173615671694279, -0.0012518704170361161, 0.005186696536839008, 0.009045093320310116, -0.051895078271627426, 0.014147453010082245, -0.0028041896875947714, 0.04034097492694855, -0.010984833352267742, -0.0010665056761354208, -0.009677616879343987, -0.019299009814858437, -0.015011902898550034, 0.005425650160759687, -0.017513886094093323, -0.01062640268355608, -0.012453694827854633, -0.020296992734074593, -0.013479788787662983, -0.0006782062700949609, -0.03471853956580162, 0.002709310967475176, 0.006230361294001341, -0.047481466084718704, -0.026074044406414032, 0.019889365881681442, -0.002937722485512495, 0.011048085987567902, 0.027648326009511948, -0.01613638922572136, -0.012130404822528362, 0.02239134907722473, -0.009895486757159233, -0.009305130690336227, 0.0010665056761354208, -0.02489333227276802, 0.0034156295005232096, 0.021112244576215744, -0.005657575558871031, -0.006240903399884701, -0.004951257258653641, 0.02174476906657219, -0.002697011921554804, 0.008834252133965492, -0.007477839011698961, 0.019678523764014244, -0.0018589177634567022, -0.010731823742389679, 0.0067293522879481316, 0.02407808043062687, -0.0011517207603901625, -0.004599854815751314, 0.026804961264133453, -0.011891450732946396, -0.02476682886481285, -0.014927566051483154, -0.005362397991120815, 0.014421546831727028, 2.5298213586211205e-05, 0.026031875982880592, -0.005394023843109608, 0.00458579882979393, 0.039610058069229126, -0.016150446608662605, 0.028758756816387177, 0.010478814132511616, 0.0182166900485754, 0.000329219939885661, 0.014632388018071651, 0.0021312544122338295, 0.0027690494898706675, -0.015278968028724194, -0.02161826379597187, -0.015489809215068817, 0.03156997635960579, 0.0020890862215310335, 0.026228660717606544, 0.011490852572023869, -0.016164502128958702, -0.02767643891274929, -0.006669613998383284, 0.029349112883210182, 0.01298079825937748, 0.005256976932287216, -0.0030167880468070507, -0.0155600905418396, -0.022039946168661118, -0.011701693758368492, -0.01990342140197754, 0.026847129687666893, -0.01772472821176052, -0.014604276046156883, 0.009818177670240402, 0.003283853642642498, 0.003939218819141388, 0.012460722588002682, -0.017457662150263786, -0.028041897341609, 0.0016076650936156511, 0.00530265923589468, 0.02178693749010563, 0.023853182792663574, 0.027043914422392845, -0.008581242524087429, -0.0339876227080822, -0.024148359894752502, 0.0020750300027430058, -0.01318461075425148, 0.012538030743598938, -0.013254891149699688, -0.006750436499714851, 0.025764809921383858, 0.021955611184239388, -0.0036545831244438887, -0.0034823960158973932, -0.011645469814538956, 0.0020767871756106615, 0.024710603058338165, -0.0023895350750535727, 0.008257952518761158, 0.00132830033544451, -0.015630370005965233, -0.003231143346056342, 0.011111337691545486, -0.02095762826502323, -0.016600240021944046, 0.014365322887897491, 0.004898546729236841, 0.008651522919535637, 0.013950668275356293, -0.015784988179802895, -0.0356181301176548, -0.004118434153497219, -0.023150378838181496, -0.00257929228246212, 0.01723276451230049, -0.015503865666687489, -0.022616246715188026, -0.0034823960158973932, 0.008096306584775448, -0.006722324527800083, 0.014941622503101826, 0.006722324527800083, -0.00037380409776233137, -0.005555668845772743, 0.011511936783790588, 0.006824231240898371, -0.012559114955365658, 0.010731823742389679, -0.016965698450803757, 0.005678659770637751, -0.002603890374302864, 0.012755900621414185, 0.029349112883210182, 0.0033646761439740658, 0.033509716391563416, -0.011568160727620125, 0.0429835207760334, -0.006290099583566189, -0.023796958848834038, 0.000661953934468329, -0.016529960557818413, -0.010190663859248161, -0.023473668843507767, -0.007934661582112312, -0.02407808043062687, -0.01361332181841135, 0.0080892788246274, -0.0037108073011040688, 0.007281053811311722, -0.005495930556207895, -0.005531070753931999, -0.01665646582841873, 0.01748577505350113, 0.04205581545829773, -0.0003252666792832315, 0.013198667205870152, 0.025849146768450737, 0.009747897274792194, 0.0004792247782461345, -0.07033666968345642, -0.02382506988942623, -0.02133714221417904, 0.0206765066832304, 0.03660205379128456, -0.009684644639492035, -0.01097077690064907, 0.006943707820028067, 0.007667596451938152, -0.018160466104745865, -0.03308803215622902, 0.04132490232586861, 0.022658415138721466, -0.01720465160906315, -0.01707814820110798, 0.006423632614314556, -0.02403591200709343, 0.01952390745282173, -0.005502958782017231, -0.0018132354598492384, -0.007583259604871273, -0.0012281507952138782, -0.00444172415882349, -0.005738398060202599, 0.0024703575763851404, 0.02673467993736267, 0.017598222941160202, -3.9779828512109816e-05, -0.012657508254051208, -0.023066041991114616, -0.009438663721084595, -0.0024123762268573046, -0.0235439483076334, 0.03227277845144272, 0.0026460587978363037, 0.0020451608579605818, 0.006743408739566803, 0.013107302598655224, -0.011610329151153564, -0.0161785576492548, -0.005176154430955648, 0.034943435341119766, -0.02521662227809429, 0.0010375150013715029, -0.00662393169477582, -0.01175088994204998, 0.013711714185774326, 0.007470811251550913, -0.0020820582285523415, 0.0010708982590585947, -0.03246956318616867, 0.001985422568395734, 0.0376703180372715, -0.005376453977078199, 0.022039946168661118, -0.014091229066252708, -0.01748577505350113, -0.01911628060042858, -0.02337527461349964, 0.0075621758587658405, 0.01624883897602558, -0.017556054517626762, -0.010752907954156399, -0.017696615308523178, -0.00715454900637269, 0.026636287569999695, -0.014829173684120178, -0.018118297681212425, 0.015096238814294338, 0.030276814475655556, -0.039160262793302536, 0.005467818584293127, -0.001966095296666026, -0.004680677317082882, -0.006564193405210972, -0.011638441123068333, -0.01568659581243992, -0.01541952881962061, 0.028112176805734634, -0.001981908455491066, 0.010921580716967583, -0.03668639063835144, 0.0023614228703081608, 0.040228527039289474, 0.006205763202160597, 0.020282935351133347, 0.037529755383729935, -0.011448684148490429, 0.008279035799205303, -0.00984628964215517, -0.016684576869010925, 0.009178625419735909, -0.001908114063553512, 0.02198372222483158, 0.02309415303170681, -0.0073372782208025455, -0.00919268187135458, -0.03022059053182602, -0.019172504544258118, -0.00646931491792202, -0.03148563951253891, -0.047931261360645294, 0.0040411255322396755, 0.006279557477682829, -0.022630302235484123, -0.02812623418867588, -0.03772654011845589, -0.0014846744015812874, -0.00839148461818695, 0.01637534238398075, 0.016712689772248268, -0.0073724184185266495, 0.008616382256150246, 0.04295540601015091, 0.012643451802432537, 0.0002585002512205392, 0.005692715756595135, -0.02636922150850296, -0.002914881333708763, -0.0056400056928396225, -0.010443673469126225, -0.017780952155590057, -0.00804711040109396, 0.022250788286328316, -0.0036686391104012728, -0.012144460342824459, -0.035561904311180115, -0.008447709493339062, 0.00025125258252955973, 0.0025406379718333483, -0.034043844789266586, 0.04967421665787697, 0.04171847179532051, 0.00642714649438858, -0.011280011385679245, 0.017218708992004395, -0.004269537050276995, 0.0013695901725441217, -0.012039040215313435, 0.002941236598417163, -0.00534482765942812, 0.004884490743279457, -0.004244938958436251, -0.0010656272061169147, -0.012664536014199257, 0.003932190593332052, 0.022981705144047737, -0.005155070684850216, 0.018483756110072136, 0.01577093079686165, 0.016684576869010925, -0.008510961197316647, -0.038345009088516235, -0.03148563951253891, -0.0075973160564899445, 0.0002657479199115187, -0.011842254549264908, -0.03663016855716705, -0.003515779273584485, 0.02613026835024357, 0.0056154076009988785, -0.0051164161413908005, 0.0024211611598730087, 0.004533088766038418, -0.001259776996448636, 0.0063463239930570126, -0.029742684215307236, -0.03550567850470543, -0.025652362033724785, -0.0024773855693638325, 0.023881293833255768, -0.0011657768627628684, -0.008250923827290535, 0.007773017045110464, -0.013444649055600166, 0.007611372042447329, -0.017780952155590057, 0.0356181301176548, -0.025118229910731316, 0.01731710135936737, 0.015405473299324512, 0.0044346959330141544, -0.0012307862052693963, -0.02137931063771248, 0.0037002654280513525, -0.02277086302638054, -0.006866399198770523, 0.012460722588002682, -0.012341246008872986, -0.024541931226849556, 0.013711714185774326, 0.019313065335154533, -0.015096238814294338, -0.009515971876680851, 0.009101317264139652, -0.012418554164469242, 0.011547076515853405, -0.029208552092313766, -0.018160466104745865, -0.02943344973027706, -0.003970845136791468, 0.013149471022188663, -0.015995828434824944, -0.05175451934337616, 9.67454252531752e-05, 0.006883969530463219, -0.008328232914209366, -0.02026887983083725, 0.23771657049655914, -0.019031943753361702, 0.006089800503104925, 0.031232628971338272, 0.023796958848834038, 0.024668434634804726, 0.007829241454601288, -0.0031345076858997345, -0.006413090508431196, 0.02350177988409996, 0.0005530192283913493, -0.0176122784614563, 0.006388492416590452, 0.0010375150013715029, 0.0017324129585176706, -0.007091296836733818, -0.013543041422963142, -0.018202634528279305, -0.04897141456604004, 0.015503865666687489, 0.01932712271809578, 0.004294135142117739, 0.004202770534902811, -0.023164434358477592, 0.010942664928734303, 0.008665578439831734, -0.0034086015075445175, 0.020465664565563202, -0.0024527874775230885, 0.006588791497051716, -0.01793556846678257, -0.00816658791154623, -0.027816999703645706, 0.001668281969614327, -0.013275975361466408, -0.021027907729148865, 0.03393139690160751, 0.023206602782011032, 0.014562107622623444, 0.026523839682340622, -0.012924573384225368, -0.0429835207760334, 0.0001045421595335938, -0.03499966114759445, -0.014477771706879139, 0.01949579454958439, -0.008988868445158005, 0.004687705542892218, -0.0009408794576302171, 0.008778027258813381, -0.02296764962375164, -0.015616314485669136, 0.052344873547554016, 0.006174136884510517, 0.0008073466015048325, -0.024668434634804726, 0.028843093663454056, 0.0006180286291055381, -0.0029974610079079866, 0.010064159519970417, 0.00392164895310998, 0.027662381529808044, -0.009804122149944305, 0.013683602213859558, -0.02898365445435047, 0.018596205860376358, -0.023923462256789207, 0.010176608338952065, -0.013781994581222534, -0.020535945892333984, 0.010464757680892944, 0.02362828515470028, 0.014646444469690323, -0.003552676411345601, -0.03415629640221596, -0.033228594809770584, 0.027296924963593483, -0.0020609740167856216, 0.013725770637392998, 0.03668639063835144, 0.00806819461286068, 0.0004256359243299812, 0.01723276451230049, -0.005443220492452383, -0.027606157585978508, -0.03831689804792404, 0.0010788048384711146, -0.013789023272693157, 0.001618207199499011, -0.00882019568234682, -0.007172119338065386, -0.01212337613105774, -0.006553651299327612, -0.016558071598410606, -0.022335125133395195, 0.02358611673116684, -0.019144393503665924, 0.019144393503665924, -0.024963613599538803, 0.00533428555354476, -0.015124351717531681, 0.04942120611667633, 0.020690562203526497, 0.01650184765458107, -0.009705728851258755, -0.010289057157933712, 0.002338581718504429, 0.004072751849889755, 0.023937519639730453, -0.0319354347884655, 0.00990954227745533, -0.039778731763362885, 0.010050103068351746, 0.004378471523523331, 0.008398513309657574, 0.01703597977757454, -0.01997370272874832, -0.009790065698325634, -0.010851300321519375, -0.012889433652162552, 0.022447573021054268, -0.022869255393743515, -0.014316126704216003, 0.0015514408005401492, -0.004118434153497219, -0.012734816409647465, 0.0031731619965285063, -0.01072479598224163, -0.028224626556038857, -0.00812441948801279, 0.025090118870139122, -0.022869255393743515, 0.027662381529808044, -0.0027303951792418957, -0.008778027258813381, 0.011322179809212685, -0.020282935351133347, -0.011891450732946396, 0.012327189557254314, 0.0020539460238069296, 0.011912534944713116, -6.506431964226067e-05, 0.02055000141263008, -0.013901472091674805, -0.014449658803641796, 0.005784080363810062, -0.005657575558871031, 0.014449658803641796, 0.02137931063771248, 0.0015848239418119192, -0.05389104411005974, -0.03803577646613121, -0.008749915286898613, -0.023248771205544472, 0.03058604896068573, -0.01592554897069931, -0.022798975929617882, -0.042477499693632126, 0.006659071892499924, 0.006163594778627157, -0.03783899173140526, -0.007583259604871273, 0.019144393503665924, -0.04568228870630264, -0.025188511237502098, -0.017738783732056618, -0.18115487694740295, 0.015377361327409744, 0.004308191128075123, -0.03983495384454727, 0.015138407237827778, 0.004919630941003561, 0.01466049998998642, -0.01908816769719124, 0.0038197420071810484, -0.0184275321662426, 0.024865221232175827, 0.014955678023397923, -0.015405473299324512, -0.006030062213540077, -0.0059632956981658936, 0.002598619321361184, -0.019509851932525635, 0.02014237456023693, 0.03336915373802185, 0.02043755352497101, 0.052794668823480606, -0.03345349058508873, -0.004301162902265787, 0.02142147906124592, -0.003217087360098958, 0.010478814132511616, -0.032778799533843994, -0.001667403499595821, -0.019509851932525635, -0.022742751985788345, -0.019959645345807076, 0.022264843806624413, 0.009305130690336227, -0.009776009246706963, 0.0006733745103701949, -0.009248906746506691, 0.007358362432569265, -0.017457662150263786, 0.006444716826081276, 0.011821170337498188, 0.00717563321813941, 0.0356181301176548, 0.039244599640369415, -0.007003446109592915, -0.026762792840600014, 0.03393139690160751, 0.004118434153497219, -0.0008517111418768764, 0.017429549247026443, -0.010057131759822369, 0.030529825016856194, -0.04975855350494385, 0.012931601144373417, -0.010478814132511616, 0.01148382481187582, -0.0001975539344130084, -0.019552018493413925, 0.011954703368246555, -0.010893468745052814, 0.008342288434505463, -0.0005890379543416202, -0.05535287782549858, 0.017710670828819275, 0.004466322250664234, -0.03227277845144272, 0.006149538792669773, -0.01224285364151001, 0.03679883852601051, -0.0155600905418396, 0.0005020659300498664, 0.023066041991114616, -0.036461494863033295, -0.009431635029613972, -0.008623410016298294, 0.022630302235484123, -0.016403455287218094, 0.00953705608844757, 0.023122265934944153, 0.03325670585036278, -0.012256909161806107, 0.0036791812162846327, 0.03589925169944763, 0.018989775329828262, -0.004093835595995188, 0.007885465398430824, 0.018202634528279305, 0.009164569899439812, 0.006708268076181412, -0.03856990858912468, -0.019102225080132484, 0.010830216109752655, -0.01765444688498974, -0.008489877916872501, 0.00841256882995367, 0.008419597521424294, 0.024457594379782677, -0.010809131897985935, 0.015377361327409744, -0.015869323164224625, -0.0021154412534087896, 0.01719059608876705, -0.011701693758368492, -0.006392006296664476, 0.01365549024194479, 0.031063955277204514, 0.006560679525136948, -0.014175564981997013, 0.012629395350813866, 0.044698361307382584, -0.014941622503101826, 0.00701047433540225, 0.0017113287467509508, 0.0046244533732533455, 0.010464757680892944, 0.0021224694792181253, 0.007948718033730984, -0.011722777970135212, -0.0014750107657164335, 0.00025059370091184974, -0.011132421903312206, -0.011322179809212685, -0.022981705144047737, 0.0023965630680322647, 0.015784988179802895, -0.0018571607070043683, -0.025722641497850418, -0.057264506816864014, 0.001641048351302743, -0.006507968995720148, 0.002937722485512495, -0.01316352654248476, 0.0064482307061553, -0.00037929476820863783, 0.0462726429104805, -0.016965698450803757, 0.021562039852142334, 0.013121359050273895, -0.017710670828819275, -0.014829173684120178, 0.00571028608828783, 0.0037143214140087366, -0.02268652617931366, -0.009691673330962658, 0.0033734613098204136, 0.0010796833084896207, 0.01851186901330948, -0.007252941839396954, -0.017879344522953033, 0.02538529597222805, 0.006441202480345964, -0.01257317140698433, -0.001633141771890223, -0.021140357479453087, 0.0037459477316588163, 0.014070144854485989, 0.013929584063589573, 0.024218641221523285, 0.0006874306127429008, -0.030923394486308098, -0.021351197734475136, -0.006124940700829029, -0.00034459380549378693, -0.03165431320667267, -0.02726881206035614, 0.02264435961842537, -0.02932099997997284, 0.017696615308523178, 0.004547144751995802, 0.011736834421753883, 0.0007656175876036286, 0.002544152084738016, -0.01359223760664463, -0.0050918180495500565, 0.049280647188425064, -0.00915051344782114, -0.008384456858038902, -0.06595116853713989, 0.003601872595027089, -0.00011310759145999327, -0.024471649900078773, 0.008855335414409637, 0.00990954227745533, 0.010457729920744896, 0.002702282974496484, -0.013599265366792679, 0.012404498644173145, -0.02161826379597187, 0.002549423137679696, -0.0073724184185266495, 0.02288331277668476, -0.0002839769294951111, 0.026059988886117935, -0.0003151638666167855, -0.02923666499555111, 0.03325670585036278, 0.0034560407511889935, -0.0067890905775129795, 0.02337527461349964, -0.02223673276603222, 0.0470878966152668, -0.017780952155590057, 0.008574213832616806, -0.009979822672903538, -0.0046841916628181934, 0.016192613169550896, 0.0011183375027030706, -0.010071187280118465, -0.006648529786616564, -0.020859235897660255, -0.0026952549815177917, -0.0004555051273200661, 0.027831055223941803, -0.007836269214749336, -0.007512979209423065, 0.007906549610197544, -0.027985671535134315, 0.0024281893856823444, -0.013346255756914616, 0.018441587686538696, 0.00011881787213496864, -0.003499966114759445, -0.016319118440151215, 0.02710013836622238, -0.032160330563783646, -0.00515858456492424, -0.009586252272129059, -0.0323571152985096, -0.024021854624152184, -0.09164569526910782, 0.016305062919855118, -0.00533428555354476, -0.025047950446605682, 0.010310141369700432, -0.014231789857149124, 0.017429549247026443, -0.02710013836622238, 0.024963613599538803, -0.007885465398430824, -0.04655376449227333, 0.017541998997330666, -0.01572876237332821, -0.018610261380672455, -0.02412024885416031, 0.0062725297175347805, 0.001937983208335936, -0.019748805090785027, 0.015869323164224625, 0.01224285364151001, 0.01256614364683628, -0.020296992734074593, 0.010492870584130287, -0.008813167922198772, -0.056364916265010834, 0.024134304374456406, -0.012369357980787754, 0.008264980278909206, -0.015278968028724194, -0.03103584423661232, -0.0054748463444411755, -0.01674080081284046, -9.147438686341047e-05, 0.02653789520263672, -0.0024703575763851404, 0.001655982923693955, -0.00024993481929413974, 0.004199256654828787, 0.018315084278583527, 0.022166451439261436, -0.01185631100088358, -0.023614229634404182, 0.007126437034457922, -0.007927633821964264, 0.003252227557823062, -0.022827088832855225, -0.01813235506415367, 0.01620667055249214, 0.00442063994705677, 0.019664468243718147, 0.013142443262040615, 0.005878958851099014, -0.008300120010972023, -0.003304937854409218, -0.0033717043697834015, -0.048662178218364716, 0.015293024480342865, -0.0009136457811109722, 0.003579031676054001, -0.0007937297341413796, 0.022503796964883804, 0.003647554898634553, 0.02043755352497101, 0.016698632389307022, 0.012306105345487595, 0.004933686926960945, -0.012081208638846874, -0.02739531733095646, -0.019931534305214882, -0.009635448455810547, -0.0076957084238529205, -0.004255480598658323, 0.010900496505200863, 0.025722641497850418, 0.015278968028724194, 0.015180575661361217, -0.006901539396494627, 0.0038021719083189964, -0.007140493020415306, 0.030445488169789314, 0.01113945059478283, 0.01977691613137722, -0.04289918392896652, -0.0040165274403989315, 0.010408533737063408, 0.0037564896047115326, -0.023656398057937622, -0.03218844160437584, -0.015714706853032112, 0.0041254619136452675, -0.011399487964808941, 0.002222619019448757, -0.010113355703651905, -0.0017086932202801108, 0.004765014164149761, 0.01740143820643425, -0.006005463656038046, -0.0030466571915894747, 0.011905507184565067, -0.006124940700829029, -0.00401301309466362, -0.015082183293998241, -0.0144356032833457, -0.007723820861428976, -0.012608311139047146, -0.014126368798315525, -0.018582148477435112, -0.03185109794139862, 0.010113355703651905, 0.025244735181331635, -0.016122333705425262, 0.014604276046156883, -0.01515246368944645, 0.020043982192873955, 0.0026583578437566757, 0.011870366521179676, -0.020774899050593376, -0.010464757680892944, -0.0272266436368227, 0.018033960834145546, 0.031345076858997345, 0.004234396852552891, 0.02731098048388958, -0.0169938113540411, 0.03325670585036278, -0.018413476645946503, 0.028477635234594345, -0.026341110467910767, 0.015363304875791073, -0.0028164887335151434, -0.0103382533416152, -0.008995897136628628, -0.002345609711483121, -0.0343811921775341, -0.01740143820643425, -0.011575189419090748, -0.006683669984340668, 0.02551180124282837, 0.008595298044383526, 0.07067401707172394, 0.009122401475906372, 0.0036194429267197847, 0.017795007675886154, 0.005478360690176487, 0.003589573549106717, 0.005144528578966856, 0.017626335844397545, -0.00515858456492424, -0.021927498281002045, 0.003243442391976714, -0.017288988456130028, -0.01772472821176052, -0.0286603644490242, 0.018933551385998726, 0.003584302496165037, -0.02005803771317005, 0.031626198440790176, -0.012776984833180904, 0.023319050669670105, 0.036714501678943634, 0.026833072304725647, 0.025989707559347153, -0.004220340400934219, -0.01712031662464142, -0.013873359188437462, 0.03390328586101532, 0.0016893661813810468, 0.005162098444998264, -0.041830919682979584, 0.00462796725332737, -0.0018132354598492384, 0.0007375053828582168, -0.021027907729148865, 0.011195674538612366, 0.023600172251462936, -0.019256841391324997, 0.00589652918279171, 0.042730510234832764, 0.017499830573797226, -0.010900496505200863, -0.007045614533126354, -0.02153392694890499, -0.025933483615517616, 0.021280918270349503, -0.016797026619315147, -0.0001943693496286869, 0.0030449002515524626, -0.0176122784614563], "51d4d8a9-2dc7-41a8-b8e1-69681f8e3f98": [-0.01253779511898756, -0.02391764149069786, 0.0032226259354501963, 0.001472392352297902, -0.014108346775174141, 0.004914629273116589, -0.011905581690371037, -0.025009041652083397, 0.01072766724973917, -0.0038132464978843927, 0.008944159373641014, 0.014268063940107822, -0.01597171276807785, 0.002731828484684229, -0.014946862123906612, -0.012391387484967709, 0.016397625207901, -0.008039095439016819, 0.017489025369286537, -0.01299032662063837, -0.006921075750142336, 0.006355410907417536, 0.015599040314555168, -0.03889112174510956, -0.03226286172866821, 0.021561812609434128, -0.0006842049187980592, -0.030745549127459526, 0.019711757078766823, 0.007912652567029, 0.0064751990139484406, -0.007247164845466614, -0.02479608543217182, -0.028669225051999092, -0.009416655637323856, -0.007779555395245552, -0.003254236653447151, -0.007267129607498646, 0.006781323347240686, 0.014986790716648102, 0.02824331261217594, 0.000726213853340596, 0.011186853982508183, 0.01650410331785679, -0.009436620399355888, 0.014148276299238205, -0.02721846103668213, -0.005140895489603281, 0.001669543213211, 0.02504897117614746, 0.019245915114879608, 0.0018617028836160898, -0.033487360924482346, -0.025488192215561867, 0.003789954585954547, -0.0166771300137043, -0.029414571821689606, 0.016064882278442383, -0.01167266070842743, -0.0008468335727229714, 0.011027136817574501, 0.027950499206781387, -0.018167823553085327, -0.004794841632246971, -0.014414471574127674, 0.024463340640068054, -0.008917540311813354, 0.007912652567029, -4.453050860320218e-05, -0.0061424546875059605, 0.028855562210083008, 0.020510341972112656, -0.009183735586702824, 0.016291147097945213, 0.020217526704072952, 0.020417174324393272, -0.011306642554700375, 0.017489025369286537, 0.015146507881581783, 0.006328791379928589, 0.007493395358324051, -0.010155348107218742, 0.028642605990171432, -0.029787246137857437, 0.017848389223217964, 0.015412703156471252, -0.02447665110230446, 0.00875116791576147, -0.005849639885127544, -0.01738254725933075, 0.00661495141685009, 0.0004687531618401408, 0.0012486219638958573, 0.028083596378564835, 0.018380779772996902, -0.00313444877974689, 0.005350524093955755, 0.029840484261512756, -0.009336797520518303, -0.0292548555880785, -0.008318601176142693, 0.012457936070859432, -0.016983255743980408, 0.006352083757519722, -0.03157075494527817, -0.007786210160702467, 0.022799620404839516, -0.013096804730594158, -0.017901629209518433, -0.002873244695365429, -0.02196110598742962, 0.04610501229763031, 0.022400328889489174, -0.046823740005493164, -0.03103836253285408, 0.009356762282550335, 0.016583962365984917, -0.022280540317296982, -0.03644212707877159, 0.008671309798955917, -0.003077882342040539, -0.009496514685451984, 0.018407398834824562, 0.004701673053205013, 0.008857646025717258, 0.030399493873119354, -0.014401162043213844, -0.006382030434906483, -0.03322116285562515, -0.004022875335067511, 0.05025765672326088, -0.004878027364611626, 0.014068417251110077, 0.001276905182749033, -0.019312463700771332, 0.005234063602983952, -0.019751684740185738, -0.025488192215561867, -0.016717059537768364, -0.0025604653637856245, 0.01547925267368555, 0.010774252004921436, -0.010754287242889404, -0.012378077954053879, -0.004498699214309454, 0.04807485640048981, 0.0010972234886139631, -0.0064153047278523445, -0.0016512422589585185, -0.009396691806614399, 0.012870538979768753, -0.008511592634022236, 0.004721637815237045, -0.03143765777349472, -8.464176062261686e-05, -0.0008376830955967307, 0.017249450087547302, -0.008218777365982533, 0.0022044291254132986, -0.005849639885127544, -0.0033374226186424494, 0.020004570484161377, 0.017435787245631218, -0.008358529768884182, 0.008944159373641014, 0.02651304379105568, -0.00017884992121253163, 0.0021844645962119102, -0.0032675464171916246, -0.010328374803066254, -0.013056876137852669, -0.0017269415548071265, -0.029840484261512756, 0.016810229048132896, -0.005407090298831463, -0.0026503060944378376, -0.006814597640186548, 0.010787561535835266, -0.009922427125275135, 0.012091917917132378, -0.023638136684894562, -0.01760881394147873, -0.017941558733582497, 0.006089215632528067, -0.01070104818791151, -0.02298595756292343, 0.002553810365498066, 0.005160859785974026, 0.03340750187635422, -0.013249867595732212, 0.020709987729787827, 0.045466143637895584, -0.007386917248368263, 0.012045334093272686, -0.6056473851203918, -0.03055921196937561, -0.014254754409193993, 0.013070185668766499, 0.02920161560177803, 0.02208089455962181, 0.009077257476747036, 0.028056977316737175, -0.027577824890613556, 0.02789725922048092, -0.026499735191464424, 0.014134966768324375, -0.020510341972112656, 0.010062179528176785, 0.0070275538600981236, -0.02001788094639778, 0.009576372802257538, -0.022573355585336685, -0.008957468904554844, 0.007965891622006893, 0.004082769155502319, 0.016890086233615875, -0.026539664715528488, 0.010468127205967903, 0.017142971977591515, 0.013196628540754318, -0.00027700941427610815, -0.02792387828230858, 0.0003685140109155327, 0.036282408982515335, -0.01989809237420559, 0.019951332360506058, 0.026552973315119743, -0.012770716100931168, 0.05920181795954704, 0.004026202950626612, -0.01891317032277584, 0.012910468503832817, 0.007386917248368263, 0.028536127880215645, -0.01854049786925316, -0.012005404569208622, 0.003643547184765339, 0.009935736656188965, 0.0093301422894001, 0.005633356515318155, -0.005969427991658449, -0.034871574491262436, 0.02343848906457424, 0.00449537206441164, 0.01732930913567543, -0.008831026963889599, -0.01198543980717659, -0.01888655126094818, 0.02829655259847641, 0.012364768423140049, 0.02608713135123253, -0.045040231198072433, 0.014214824885129929, -0.033993128687143326, -0.01778184063732624, 0.015958404168486595, 0.0046218144707381725, -0.0027301646769046783, -0.019964640960097313, 0.017568884417414665, -0.01464073732495308, -0.005916188936680555, 0.008611415512859821, -0.0233187023550272, 0.019179366528987885, -0.01412165630608797, 0.009995630942285061, -0.012444626539945602, 0.0064352694898843765, 0.02311905473470688, 0.018154514953494072, -0.01602495275437832, -0.012823955155909061, 0.015572420321404934, 0.00331413047388196, -0.0013775603147223592, 0.011413120664656162, -0.011725899763405323, 0.026579592376947403, -0.012750751338899136, -0.03319454565644264, -0.00043007166823372245, 0.0234651081264019, 0.011067066341638565, 0.0030595813877880573, -0.005440365057438612, 0.02470291592180729, -0.04501361399888992, -0.008691273629665375, 0.041260261088609695, -0.012996981851756573, -0.011992095038294792, 0.005187479313462973, 0.0006255587795749307, -0.012165121734142303, -0.006032649427652359, 0.010814180597662926, -0.027977118268609047, 0.018793383613228798, 0.014241444878280163, -0.004408858250826597, -0.011892271228134632, 0.025767697021365166, -0.026726000010967255, 0.012584378942847252, -0.006704792380332947, -0.003124466398730874, -0.01125340349972248, 0.03527086600661278, -0.028163455426692963, 0.022852860391139984, 0.00278839492239058, -0.0049212840385735035, -0.005663303192704916, 0.015612349845468998, 0.007879378274083138, -0.0016362688038498163, -0.007812829688191414, 0.019272534176707268, 0.024277005344629288, 0.017662053927779198, 0.015159818343818188, -0.028030356392264366, 0.00831194594502449, -0.003670166712254286, -0.0006459393189288676, 0.01730269007384777, -0.003923051990568638, -0.005623374134302139, 0.012544450350105762, 0.00146490556653589, -0.005387126002460718, 0.014108346775174141, -0.004934594035148621, -0.0061125080101192, -0.01253779511898756, 0.004502026829868555, -0.0007557448698207736, 0.00520078931003809, -0.02366475574672222, -0.04064800962805748, -0.00047540804371237755, -0.017422476783394814, 0.03609607368707657, 0.02547488361597061, -0.014321302995085716, -0.0319434255361557, 0.03779972344636917, -0.026845788583159447, 0.008950814604759216, -0.0021977743599563837, -0.0004074034804943949, -0.007693042047321796, 1.4544553778250702e-05, -0.0005070187035016716, 0.013602576218545437, -0.03606945276260376, -0.004265778232365847, -0.01619797945022583, -0.0015772066544741392, -0.01834085024893284, 0.004182592500001192, -0.025701148435473442, -0.04416178911924362, -0.0005777268088422716, -0.0018234372837468982, 0.010647809132933617, 0.0036102726589888334, 0.006738066673278809, 0.0030662361532449722, -0.015239676460623741, 0.005916188936680555, -0.0038232288789004087, -0.01028844527900219, 0.019685136154294014, 0.02100280299782753, 0.018394090235233307, -0.012770716100931168, 0.018221063539385796, 0.01826099306344986, 0.007706351578235626, 0.006312154233455658, -0.01665051095187664, -0.000999063951894641, -0.0070941029116511345, 0.01412165630608797, 0.010354993864893913, 0.0015772066544741392, 0.011825722642242908, -0.002983050188049674, 0.02314567379653454, 0.02917499653995037, -0.0036934586241841316, 0.02741810865700245, 0.024356862530112267, 0.012418007478117943, -0.0036402198020368814, -0.02411728724837303, 0.023225532844662666, -0.02379785291850567, 0.013762293383479118, -0.007446811534464359, 0.020763227716088295, -0.0029065189883112907, -0.012996981851756573, -0.026699380949139595, -0.016690440475940704, -0.03005344048142433, 0.025621289387345314, 0.024210454896092415, -0.034419041126966476, 0.019685136154294014, 0.0075998734682798386, 0.023704685270786285, -0.007639802992343903, 0.0009474886464886367, 0.01896641030907631, -0.02679254859685898, 0.009410001337528229, -0.017648743465542793, 0.005749817006289959, 0.020962873473763466, 0.014880312606692314, -0.011273367330431938, -0.012544450350105762, -0.03101174347102642, -0.0035570336040109396, 0.020031191408634186, 0.027151912450790405, -0.023877711966633797, 0.038172394037246704, -0.02776416204869747, 0.03465861827135086, 0.0061923665925860405, 0.002715191338211298, -0.020536961033940315, -0.011286677792668343, 0.01550587173551321, 0.02001788094639778, 0.0025970670394599438, 0.06633584946393967, 0.009795984253287315, -0.040408436208963394, 0.0005694082356058061, -0.02532847598195076, -0.03457875922322273, -0.014667356386780739, 0.023278772830963135, -0.008504937402904034, -0.013828841969370842, 0.019232604652643204, 0.006065923720598221, 0.025248616933822632, 0.03383341431617737, 0.00831194594502449, 5.4070904297987e-05, 0.01173255406320095, 0.01436123251914978, 0.00913049653172493, -0.033061448484659195, -0.001274409587495029, -0.02492918260395527, 0.0005760631174780428, -0.008079024963080883, -0.02968076802790165, -0.03109160251915455, 0.041260261088609695, -0.014693976379930973, 0.006731411907821894, -0.010634499602019787, -0.016810229048132896, 0.019631898030638695, 0.04229842126369476, -0.005430382676422596, -0.01209857314825058, -0.020310696214437485, 0.028908802196383476, -0.010228551924228668, 0.013349690474569798, -0.00697431480512023, -0.022999268025159836, 0.0016021624905988574, 0.0034671928733587265, 0.03239595890045166, 0.0058629498817026615, 0.011898926459252834, -0.001415825798176229, -0.005130913108587265, -0.01324321236461401, -0.010255170986056328, 0.0255813617259264, 0.007726316340267658, -0.03231609985232353, -0.019498800858855247, 0.004541955888271332, -0.005586772225797176, -0.00857814121991396, 0.010900694876909256, 0.031650610268116, 0.0016204634448513389, 0.011685970239341259, 0.004977850709110498, 0.001459914376027882, -0.01919267512857914, -0.01128002256155014, -0.013376309536397457, 0.007300403900444508, -0.022493496537208557, -0.03572339937090874, 0.007852759212255478, 0.014587498269975185, 0.002924819942563772, 0.03154413402080536, 0.019605278968811035, -0.009103876538574696, -0.010408232919871807, -0.0025704477448016405, 0.0005286470986902714, 0.00788603350520134, 0.012431317009031773, 0.006980969570577145, 0.014015178196132183, -0.021242378279566765, -0.008272016420960426, -0.031277939677238464, -0.016610581427812576, 0.01956534944474697, -0.024583129212260246, -0.0008156388066709042, 0.006355410907417536, 0.0253018569201231, 0.0017934903735294938, 0.027737542986869812, 0.002107933396473527, -0.00197816314175725, 0.0030629087705165148, 0.012471246533095837, -0.028828943148255348, -0.002808359684422612, -0.00214453530497849, 0.004784859251230955, 0.006328791379928589, 0.004026202950626612, 0.00394301675260067, 0.014614117331802845, 0.02250680699944496, 0.0008593114325776696, -0.0024972439277917147, -0.0061357999220490456, 0.010268480516970158, -0.006335446145385504, 0.033593837171792984, 0.01806134544312954, 0.021641671657562256, -0.02213413268327713, 0.05978744849562645, -0.0061224899254739285, 0.026473114266991615, 0.017063112929463387, 0.03588311746716499, 0.014973481185734272, -0.005317249801009893, -0.0005939481197856367, -0.018726833164691925, 0.0033873342908918858, 0.013788912445306778, -0.013056876137852669, 0.0005748153198510408, 0.021615052595734596, 0.00032650507637299597, -0.04716979339718819, 0.006794632878154516, -0.008737858384847641, 0.020177597180008888, -0.0028482889756560326, -0.016770299524068832, -0.013802221976220608, 0.010248515754938126, -0.0015098260482773185, -0.014174895361065865, 0.0009499841835349798, -0.004994487855583429, 0.012145156972110271, -0.028083596378564835, -0.0014832065207883716, -0.010128728114068508, -0.012065298855304718, 0.0017635433468967676, 0.0356169193983078, -0.055900998413562775, -0.012138502672314644, -0.008065715432167053, 0.005417072679847479, 0.012045334093272686, 0.02504897117614746, -0.01941894181072712, -0.029441190883517265, 0.008944159373641014, 0.01086741965264082, -0.021894557401537895, -0.01690339669585228, -0.026819169521331787, 0.012191740795969963, -0.0026403239462524652, -0.01229821890592575, 0.005630028899759054, -0.025288546457886696, 0.02230715937912464, 0.009403346106410027, 0.0021528538782149553, 0.010494746267795563, 0.035856496542692184, -0.0009150460828095675, 0.0032059887889772654, -0.0026752620469778776, -0.003453883109614253, 0.01325652189552784, -0.0244500320404768, 0.018926480785012245, -0.015426013618707657, -0.013509407639503479, -0.013363000005483627, -0.03527086600661278, 0.0036136002745479345, 0.01947217993438244, 0.02434355393052101, 0.0031544133089482784, 0.009802639484405518, 0.02620691992342472, -0.008984088897705078, 0.022094203159213066, 0.00753997964784503, 0.023371940478682518, -0.0028266606386750937, 6.036184640834108e-05, 0.009303523227572441, 0.02560798078775406, -0.012344803661108017, 0.017688672989606857, -0.021668290719389915, 0.01506664976477623, 0.014174895361065865, 0.0052407183684408665, -0.006149109452962875, -0.02912175841629505, -0.03183694928884506, -6.613287405343726e-05, 0.02538171410560608, 0.008418424054980278, 0.018154514953494072, 0.007679732050746679, -0.016756989061832428, -0.01763543300330639, -0.007559944409877062, -0.007380262482911348, 0.01687677763402462, -0.024942493066191673, -0.02391764149069786, 0.006199021358042955, -0.020310696214437485, -0.006411977577954531, 0.0038498484063893557, 0.006894456222653389, -0.019099507480859756, -0.006644898094236851, 0.0023192258086055517, 0.0017934903735294938, 0.007852759212255478, 0.03274201229214668, 0.010647809132933617, -0.028403030708432198, -0.006728084292262793, 0.0021694910246878862, -0.008445043116807938, 0.019538728520274162, 0.008405114524066448, 0.01690339669585228, 0.028482889756560326, 0.016264528036117554, 0.003204324981197715, -0.018247682601213455, -0.011246748268604279, 0.0020729952957481146, 0.012724131345748901, -0.018114585429430008, 0.029920343309640884, 0.009343452751636505, 0.004515336360782385, 0.008558176457881927, 0.008651345036923885, 0.008079024963080883, -0.011805757880210876, 0.00927024893462658, 0.007693042047321796, 0.00271020014770329, 0.015133198350667953, -0.01715628243982792, -0.030213158577680588, -0.009489859454333782, -0.01354268193244934, -0.009376727044582367, -0.0026552972849458456, -0.0014840384246781468, -0.011779138818383217, -0.024077357724308968, 0.0038332112599164248, 0.011213473975658417, 0.02826993353664875, -0.0018317558569833636, -0.0020064464770257473, 0.01256441418081522, 0.016038261353969574, -0.003962981514632702, -0.005490276496857405, 0.007200581021606922, -0.021295618265867233, 0.030213158577680588, -0.002232712460681796, 0.0013958611525595188, 0.009543098509311676, -0.037134233862161636, 0.01116688922047615, -0.015359464101493359, 0.032183002680540085, -0.009642922319471836, -0.017276069149374962, -0.0058230203576385975, -0.016237908974289894, -0.0469302162528038, -0.019578658044338226, -0.015958404168486595, -0.006814597640186548, -0.015665588900446892, 0.018899861723184586, 0.025900796055793762, 0.021468644961714745, 0.0028749085031449795, -0.017688672989606857, -0.01818113401532173, -0.014520949684083462, 0.04533304646611214, 0.016078190878033638, 0.022320469841361046, 0.051854830235242844, 0.014787144958972931, -0.011073721572756767, -0.07267129421234131, 0.0040095653384923935, -0.00870458409190178, 0.032662153244018555, 0.02880232408642769, 0.0087644774466753, -0.04139335826039314, 0.012358113192021847, 0.01013538334518671, -0.014028488658368587, -0.03641550615429878, 0.032183002680540085, 0.0004878859326709062, -0.020443793386220932, -0.006252260413020849, -0.009935736656188965, -0.018473949283361435, 0.03412622585892677, -0.01959196850657463, -0.004838098306208849, -0.005247373133897781, 0.0070541733875870705, -0.009303523227572441, -0.0017835079925134778, -0.01622459851205349, -0.0010839137248694897, 0.01027513574808836, 0.005886241793632507, -0.006661535706371069, -0.024330243468284607, -0.006861181929707527, 0.03276863321661949, -0.0035171043127775192, 0.03109160251915455, -0.01041488815099001, -0.019285844638943672, 0.010528021492064, 0.0029414573218673468, -0.009090567007660866, -0.008917540311813354, -0.016836848109960556, 0.044960372149944305, 0.00028636783827096224, -0.005460329353809357, -0.0221873726695776, 0.011799103580415249, 0.02241363748908043, 0.006867836695164442, -0.0015564102213829756, 0.009097222238779068, -0.002444004872813821, -0.0028066958766430616, 0.027604443952441216, 0.011646040715277195, -0.006518455687910318, -0.0033840066753327847, -0.01614473946392536, 0.009656231850385666, -0.015399393625557423, 0.004848080687224865, 0.002805032068863511, -0.03931703418493271, -0.015279605984687805, -0.020510341972112656, -0.025594670325517654, 0.007453466299921274, -0.007313713897019625, 0.002899864222854376, 0.019352393224835396, 0.03330102190375328, -0.021069351583719254, 0.007213890552520752, 0.011333261616528034, 0.009576372802257538, 0.0018899861024692655, -0.0016346049960702658, -0.006901110988110304, -0.009682850912213326, 0.030772168189287186, 0.00942996609956026, 0.008837681263685226, -0.005407090298831463, -0.0016337732085958123, 0.022453567013144493, 0.021388785913586617, 0.020616820082068443, 0.012670892290771008, -0.01085411012172699, 0.01480045448988676, -0.0006708951550535858, -0.045785579830408096, 0.006458561401814222, -0.002522199647501111, 0.014201515354216099, 0.0023491729516535997, -0.008285325951874256, 0.0032991571351885796, -0.014228134416043758, -0.005706560332328081, 0.009343452751636505, -0.02618030086159706, -0.04756908491253853, -0.018048036843538284, 0.012764060869812965, -0.013476133346557617, -0.022799620404839516, -0.03346074000000954, -0.016863467171788216, -0.018700214102864265, 0.0038099191151559353, 0.016078190878033638, 0.02012435905635357, -0.003946344368159771, 0.01944556087255478, 0.010614534839987755, -0.00719392579048872, -0.01085411012172699, -0.006731411907821894, 0.0012070289812982082, -0.021974416449666023, -0.02482270449399948, -0.013642504811286926, -0.04416178911924362, 0.036814797669649124, -0.0006708951550535858, -0.019725065678358078, -0.019245915114879608, -0.026446495205163956, -0.004455442540347576, -0.00021877919789403677, -0.009449930861592293, 0.020031191408634186, 0.037666622549295425, 0.006781323347240686, -0.01229821890592575, -0.005057709291577339, -0.008717893622815609, 0.011912235990166664, 0.0007416032603941858, -0.00039305389509536326, -0.027737542986869812, 0.0030911921057850122, -0.019072888419032097, 0.00788603350520134, 0.0011629404034465551, -0.009543098509311676, -0.009862532839179039, -0.01349609810858965, 0.027604443952441216, 0.006401995196938515, 0.01715628243982792, 0.004991160240024328, -0.013170008547604084, -0.011286677792668343, 0.02012435905635357, -0.020337315276265144, 0.009915771894156933, -0.025661218911409378, -0.0005685763899236917, 0.020709987729787827, 0.008691273629665375, -0.01899302937090397, 0.003443900728598237, 0.00017635434051044285, -0.00959633756428957, 0.002412394154816866, 0.007579909171909094, -0.039929281920194626, -0.02082977630198002, -0.011752518825232983, 0.039476752281188965, -0.018447328358888626, 0.008152228780090809, 0.017196211963891983, -0.009729435667395592, -0.0010306746698915958, -0.025168757885694504, 0.004535301122814417, -0.00959633756428957, -0.007965891622006893, 0.02082977630198002, -0.0032459180802106857, -0.012271599844098091, -0.012744096107780933, 0.013110115192830563, -0.03149089589715004, 0.016264528036117554, 0.010368304327130318, 0.011299987323582172, -0.06798625737428665, 0.023052506148815155, 0.024489959701895714, -0.012165121734142303, 0.00463512446731329, 0.007340333424508572, -0.010082144290208817, -0.01394862961024046, -0.050896525382995605, -0.012437972240149975, -0.02552812173962593, 0.033034827560186386, 0.02419714629650116, 0.005403763148933649, -0.02575438842177391, 0.03013329952955246, -0.0011047101579606533, -0.016317768022418022, 0.012304874137043953, 0.26129722595214844, -0.003966308664530516, 0.024316933006048203, 0.015332845039665699, 0.02490256354212761, 0.031703852117061615, 0.01778184063732624, 0.002605385845527053, -0.00741353677585721, 0.00577976368367672, -0.0064618890173733234, -0.016038261353969574, 0.004675053525716066, -0.004229176789522171, -0.002101278631016612, -0.01828761212527752, -0.0020613493397831917, -0.022972647100687027, -0.03729395195841789, -0.006758031435310841, 0.021495264023542404, 0.011925546452403069, 0.020284075289964676, -0.012770716100931168, 0.017475716769695282, 0.004977850709110498, -0.005526878405362368, 0.020204218104481697, 0.00870458409190178, -0.00942996609956026, -0.005466984584927559, 0.003112820442765951, -0.005140895489603281, -0.002463969634845853, -0.030825406312942505, -0.011606112122535706, 0.0186602845788002, 0.01482707355171442, 0.02334532141685486, 0.008811062201857567, -0.012996981851756573, -0.0005386294214986265, -0.008085680194199085, -0.00788603350520134, -0.020230837166309357, -0.006069251336157322, 0.010567950084805489, -0.03189018741250038, 0.008478318341076374, -0.0030911921057850122, -0.004545283503830433, -0.019285844638943672, 0.03468523919582367, 0.02626015804708004, -0.003249245462939143, -0.029441190883517265, 0.03098512440919876, -0.004608504939824343, -0.008518246933817863, 0.02374461479485035, -0.016610581427812576, 0.03412622585892677, -0.017236141487956047, 0.017568884417414665, -0.008970779366791248, 0.025434954091906548, -0.013629195280373096, 0.006604969035834074, -0.009875842370092869, -0.016064882278442383, 0.005440365057438612, 0.006887801457196474, -0.007213890552520752, 0.002432358916848898, -0.0014956843806430697, -0.036335647106170654, 0.03756014630198479, 0.02479608543217182, 0.0313844159245491, 0.029813865199685097, -0.005307267419993877, 0.00741353677585721, -0.009523133747279644, 0.0257277674973011, -0.013788912445306778, -0.023624826222658157, 0.029361333698034286, -0.009449930861592293, 0.0012760733952745795, -0.011106995865702629, 0.018354160711169243, -0.010461471974849701, 0.00032234578975476325, -0.02077653631567955, -0.007440156303346157, 0.030426114797592163, -0.025208687409758568, 0.026273468509316444, -0.01911281794309616, 0.02349172905087471, -0.006421959958970547, 0.03274201229214668, 0.016237908974289894, 0.018327541649341583, -0.007187271025031805, -0.0066881547681987286, 0.020616820082068443, 0.004428823012858629, 0.011353226378560066, -7.590722816530615e-05, 0.008970779366791248, -0.025221997871994972, 0.005217426456511021, -0.007287094369530678, -0.0032891747541725636, 0.012351457960903645, -0.017542265355587006, -0.02479608543217182, -0.015426013618707657, 0.021668290719389915, 0.02281293086707592, -0.024516580626368523, -0.020563581958413124, -0.009390036575496197, -0.0008509928593412042, 0.001825100975111127, -0.024503270164132118, -0.0010972234886139631, -0.011479669250547886, -0.04112716391682625, 0.008118954487144947, -0.05100300535559654, 0.007633148226886988, -0.006728084292262793, -0.015758756548166275, -0.009543098509311676, -0.030479352921247482, -0.020164288580417633, 0.02148195542395115, 0.0031361125875264406, 0.00774628110229969, 0.013476133346557617, 0.02035062573850155, 0.0036635117139667273, -0.0058130379766225815, 0.01715628243982792, 0.0024922527372837067, 0.00012103564222343266, 0.011679315008223057, 0.023837782442569733, -0.04440136253833771, -0.03415284678339958, 0.01396193914115429, -0.022373707965016365, 0.024077357724308968, -0.011592801660299301, -0.021894557401537895, -0.044108547270298004, 0.012877194210886955, 0.03319454565644264, -0.021322237327694893, -0.013908700086176395, 0.004082769155502319, -0.03481833636760712, -0.02100280299782753, -0.03388665243983269, -0.16759651899337769, 0.002488925354555249, 0.0019482163479551673, -0.035856496542692184, 0.02369137480854988, 0.0036934586241841316, 0.008777787908911705, -0.04610501229763031, -0.0012053652899339795, -0.0006725588464178145, 0.00015586978406645358, 0.0006367889000102878, -0.018420709297060966, -0.008039095439016819, -0.00022896948212292045, -0.008039095439016819, -0.007992511615157127, 0.022280540317296982, 0.038491830229759216, -0.0017751894192770123, 0.05606071278452873, -0.0011987104080617428, 0.006594986654818058, 0.004771549254655838, 0.005786418449133635, -0.001596339512616396, -0.0309585053473711, 0.0038431936409324408, -0.00403618486598134, -0.013575956225395203, -0.005403763148933649, 0.027977118268609047, 0.016890086233615875, 0.002221066504716873, 0.01139315590262413, -0.022546734660863876, 0.022626593708992004, -0.006578349508345127, -0.02301257662475109, -0.0003038368886336684, 0.012877194210886955, 0.02379785291850567, 0.03790619969367981, 0.0049312664195895195, -0.024010809138417244, 0.010115418583154678, 0.007160651497542858, -0.011492978781461716, 0.012943742796778679, 0.016331076622009277, 0.0166771300137043, -0.03412622585892677, -0.005476966500282288, -0.005526878405362368, 0.030266396701335907, 0.014560879208147526, 0.005403763148933649, -0.0004916292964480817, -0.007486740592867136, -0.0003350316546857357, 0.01834085024893284, -0.03556368127465248, 0.013209938071668148, 0.004595194943249226, -0.025993963703513145, 0.025488192215561867, -0.004089423920959234, 0.027072053402662277, 0.010281790979206562, 0.0006509305094368756, 0.010907349176704884, -0.009303523227572441, 0.0036136002745479345, 0.0021561812609434128, 0.023332010954618454, -0.009496514685451984, 0.0040694596245884895, 0.03244919702410698, 0.01707642339169979, -0.005919516086578369, -0.0233187023550272, 0.025661218911409378, -0.0014274718705564737, -0.01366912480443716, 0.0009716125787235796, 0.03889112174510956, 0.01758219487965107, -0.02114921063184738, -0.04940583184361458, -0.01956534944474697, 0.019232604652643204, -0.025701148435473442, -0.02880232408642769, -0.008265362121164799, 0.003786626970395446, 0.009769364260137081, -0.008584795519709587, 0.0055235507898032665, -0.014268063940107822, -0.01763543300330639, 0.014041798189282417, -0.019804924726486206, -0.016291147097945213, 0.017675362527370453, 0.0073469881899654865, 0.004974523093551397, 0.0043789115734398365, 0.017542265355587006, 0.02708536386489868, -0.006797960493713617, -0.0013484451919794083, -0.0033257766626775265, 0.005287302657961845, 0.01712966337800026, 0.0021312255412340164, -0.0014782153302803636, 0.008132264018058777, 0.002590412274003029, 0.0007815325516276062, -0.0008139750570990145, -0.02665945142507553, -0.02230715937912464, 0.010654463432729244, 0.035430584102869034, 0.019272534176707268, -0.02190786600112915, -0.06372713297605515, -0.02575438842177391, 0.016490794718265533, -0.00026744301430881023, 0.008365185000002384, 0.02080315724015236, 0.0058230203576385975, 0.027657683938741684, -0.019205985590815544, 0.0003697618085425347, -0.011020482517778873, 0.00562670174986124, -0.01823437213897705, 0.002831651596352458, -0.00683456240221858, 9.280438825953752e-05, 0.0036036178935319185, -0.0004991160240024328, -0.01509326882660389, 0.0020264112390577793, -0.010028905235230923, -0.003156077116727829, -0.0028000411111861467, -0.0027850675396621227, -0.028456268832087517, -0.004575230181217194, -0.020443793386220932, 0.00802578590810299, 0.017901629209518433, 0.010248515754938126, 0.03937027230858803, 0.013802221976220608, -0.026925647631287575, -0.01434792298823595, -0.011007172055542469, 0.008671309798955917, -0.03785296157002449, -0.016118120402097702, 0.008385149762034416, -0.020843086764216423, 0.008498282171785831, -0.020590201020240784, 0.012005404569208622, 0.0024989077355712652, -0.009622957557439804, -0.015758756548166275, -0.013269832357764244, 0.018633665516972542, -0.01366912480443716, -0.015811996534466743, -0.039423514157533646, 0.008737858384847641, -0.013516062870621681, -0.042191941291093826, 0.011140270158648491, 0.0313844159245491, 0.01125340349972248, 0.01434792298823595, -0.024782774969935417, 0.017622124403715134, -0.013509407639503479, 0.011326606385409832, -0.02696557529270649, 0.011313296854496002, -0.0032958295196294785, 0.012737441807985306, 0.014095037244260311, -0.017888318747282028, 0.01369574386626482, -0.023158984258770943, -0.013908700086176395, 0.01750233583152294, -0.018527187407016754, 0.03777310252189636, -0.0325024351477623, 0.01299032662063837, 0.012264944612979889, -0.0007861077901907265, 0.00859145075082779, 0.010554640553891659, 0.003606945276260376, 0.00899074412882328, -0.01569220796227455, 0.004385566338896751, -0.006029321812093258, 0.005623374134302139, 0.0016903396463021636, -0.0186602845788002, 0.015599040314555168, -0.03966308757662773, -0.014134966768324375, 0.012950398027896881, 0.0006446915795095265, 0.0025621289387345314, 0.004645106848329306, 0.0012328166048973799, 0.008039095439016819, -0.03332764282822609, -0.010780906304717064, 0.015239676460623741, -0.02437017299234867, -0.01223832555115223, -0.08571486175060272, 0.017795151099562645, -0.014001868665218353, 0.010614534839987755, 0.0020147650502622128, 0.006022667046636343, 0.03332764282822609, -0.004112716298550367, -0.014960171654820442, 0.0014515958027914166, -0.032555676996707916, 0.023877711966633797, 0.0018866586033254862, -0.02004450000822544, -0.025860866531729698, 0.015532491728663445, 0.011346571147441864, 0.004924611654132605, 0.02009773999452591, 0.0004999479278922081, 0.004392221104353666, -0.022773001343011856, 0.011339916847646236, -0.005041072145104408, -0.03300820663571358, 0.021615052595734596, -0.007679732050746679, 0.01800810731947422, -0.011878961697220802, -0.0022842877078801394, 0.002899864222854376, -0.00313444877974689, -0.006458561401814222, -0.017795151099562645, -0.019764995202422142, -0.005876259412616491, 0.0011779138585552573, 0.001923260511830449, 0.016118120402097702, 0.037879578769207, -0.03614931181073189, -0.00857814121991396, 0.025421643629670143, -0.027577824890613556, 0.001564728794619441, -0.012198396027088165, -0.0186602845788002, 0.00969616137444973, 0.0067147742956876755, -0.002112924586981535, 0.024290313944220543, 0.012005404569208622, 0.019059577956795692, -0.018127894029021263, 0.011100340634584427, -0.036788180470466614, -0.022946028038859367, -0.0025038989260792732, 0.0019482163479551673, -0.005879587028175592, 3.1298735848395154e-05, -0.0025621289387345314, -0.006901110988110304, 0.008651345036923885, 0.018367471173405647, -0.030878646299242973, -0.02872246503829956, -0.030878646299242973, 0.009802639484405518, -0.0036102726589888334, -0.009509824216365814, 0.0008909221505746245, 0.008331910707056522, 0.008405114524066448, 0.025182068347930908, 0.013236557133495808, -0.01800810731947422, -0.011865652166306973, -0.030905265361070633, 0.026712691411376, 0.017089733853936195, 0.013855461031198502, -0.046743880957365036, -0.005996047519147396, 0.028828943148255348, -0.010335029102861881, -0.02374461479485035, -0.012391387484967709, -0.03332764282822609, 0.006987624801695347, 0.0027118639554828405, -0.012258290313184261, -0.016663821414113045, 0.012830609455704689, 0.013775602914392948, 0.01772860251367092, 0.002829988021403551, -0.004462097305804491, 0.008411768823862076, 0.010335029102861881, -0.011872307397425175, -0.013289796188473701, -0.020763227716088295, -0.010514711029827595, -0.03181032836437225, 0.004109388682991266, 0.009310177527368069, -0.019738376140594482, 0.009529788978397846, 0.009390036575496197, -0.01710304245352745, 0.02049703150987625, -0.013296451419591904, 0.009250284172594547, -0.025714458897709846, 0.0018800037214532495, -0.028828943148255348, -0.021841317415237427, -0.032236240804195404, -0.01242466177791357, 0.031251318752765656, 0.019711757078766823, 0.04181927070021629, -0.01823437213897705, 0.021122591570019722, -0.016544032841920853, 0.018300920724868774, -0.054144106805324554, 0.029813865199685097, -0.0006891960510984063, -0.01891317032277584, 0.01369574386626482, -0.018394090235233307, -0.025208687409758568, 0.0005294789443723857, 0.0031910152174532413, 0.011353226378560066, 0.006941040512174368, 0.013868771493434906, 0.05797731876373291, -0.00029323066701181233, -0.008664654567837715, -0.01602495275437832, -0.0028865544591099024, -0.0034139538183808327, 0.021335547789931297, 0.00870458409190178, -0.0027867313474416733, -0.004844753071665764, 0.01597171276807785, -0.007000934332609177, -0.002044711960479617, -0.006431941874325275, -0.011140270158648491, 0.021109281107783318, -0.04844753071665764, 0.01854049786925316, -0.022453567013144493, 0.032662153244018555, 0.04075448960065842, -0.001452427706681192, 0.023891020566225052, -0.013456168584525585, -0.028163455426692963, 0.00831194594502449, 0.023757923394441605, -0.0027667665854096413, 0.0008106476161628962, -0.021801389753818512, 0.018926480785012245, 0.013562646694481373, -0.01184568740427494, -0.010474782437086105, 0.009702815674245358, 0.013748982921242714, -0.010188622400164604, 0.007826139219105244, 0.014188205823302269, 0.011140270158648491, -0.0016836847644299269, 0.005363833624869585, -0.022426947951316833, -0.03322116285562515, -0.0016054899897426367, -0.009423310868442059, -0.007939272560179234, -0.004788186401128769, 0.018127894029021263], "660c68c6-21fc-4598-a6ea-c3f54b19cabf": [-0.0035732085816562176, -0.015840550884604454, -0.0006720794481225312, -0.01178956963121891, -0.02164112776517868, -0.0011666761711239815, -0.007408855948597193, -0.0545065701007843, 0.011863590218126774, -4.452842040336691e-05, 0.010228393599390984, 0.0035967607982456684, -0.00991212110966444, -0.0024847593158483505, -0.01929936371743679, -0.007893359288573265, 0.017253683879971504, -0.011096460744738579, 0.007906816899776459, 0.005834221839904785, 0.03563787788152695, 0.010167830623686314, -0.0024931710213422775, -0.024453936144709587, -0.020725954324007034, 0.024615436792373657, -0.0030651534907519817, -0.01651347242295742, 0.03814114257693291, -0.006746029015630484, 0.025584442541003227, -0.0014728549867868423, -0.015329131856560707, -0.02410401590168476, -0.013222889974713326, -0.005921701434999704, -0.005168030504137278, -0.005417011212557554, 0.0016705254092812538, 0.013774685561656952, 0.028612585738301277, 0.0018724016845226288, 0.01176938135176897, 0.025786317884922028, -0.030308345332741737, 0.007691482547670603, -0.014844628982245922, 0.0008218043367378414, -0.009373784065246582, 0.026351571083068848, 0.0008773202425800264, -0.015477173961699009, -0.0089834900572896, -0.024157850071787834, -0.002156710484996438, -0.024252058938145638, -0.007368480786681175, 0.007503064814954996, -0.012617262080311775, -0.009239200502634048, 0.010006329976022243, 0.004686892032623291, -0.017738187685608864, -0.0011162071023136377, -0.01635197177529335, 0.020658662542700768, -0.013095035217702389, 0.01051774900406599, -0.003812095383182168, 0.004397536162286997, 0.030308345332741737, 0.018276523798704147, 0.007927005179226398, -0.010026517324149609, 0.03588012605905533, 0.007536711171269417, 0.0022862479090690613, 0.007395397871732712, 0.001816885662265122, -0.0071127708069980145, 0.0023703628685325384, -0.02083362266421318, 0.010975335724651814, -0.001223033177666366, 0.03151960298418999, 0.004912320524454117, -0.01558484137058258, 0.002442701952531934, 0.004195659887045622, -0.022663965821266174, 0.011513671837747097, -0.005783752538263798, -0.0012878018897026777, 0.024198224768042564, 0.011930882930755615, 0.0302814282476902, -0.0014535085065290332, 0.038814060389995575, 0.014467793516814709, -0.03378061577677727, 0.0033713323064148426, 0.010262039490044117, -0.0057568359188735485, 2.25533549382817e-05, -0.054560404270887375, -0.03507262468338013, 0.020376035943627357, -0.001291166408918798, 0.01273838710039854, -0.003182914573699236, -0.03684913367033005, 0.03867947682738304, 0.015652133151888847, -0.03181568533182144, -0.03192335367202759, 0.00027526658959686756, 0.020376035943627357, -0.04990379512310028, 0.0014745373046025634, 0.013660288415849209, 0.009501638822257519, 0.006517236120998859, 0.007765504065901041, 0.010120726190507412, 0.004919049795717001, -0.0014728549867868423, -0.011029168963432312, -0.010113997384905815, -0.01122431643307209, -0.011136836372315884, 0.029447006061673164, -0.002072595525532961, 0.007402126677334309, 0.0037279801908880472, 0.0003766252484638244, -0.004370619542896748, -0.013969832099974155, -0.012200050987303257, -0.019730033352971077, -0.015490632504224777, 0.013586267828941345, 0.010214935056865215, -0.0032300190068781376, -0.0167557243257761, 0.003334321780130267, 0.04557018354535103, -0.0013878988102078438, -0.020254909992218018, -0.009683327749371529, -0.011567505076527596, 0.024292433634400368, -0.00392649183049798, 0.0014829487772658467, 0.006106754764914513, -0.0034184367395937443, 0.0011969575425609946, 0.01623084582388401, -0.0013273359509184957, 0.017738187685608864, -0.0066450913436710835, 0.008714322000741959, 0.02099512331187725, -0.013747768476605415, 0.005053633823990822, -0.012348093092441559, 0.022260213270783424, -0.0008558708941563964, -0.005588605999946594, -0.03722596913576126, 0.0005850203451700509, 0.0025739213451743126, 0.010322602465748787, -0.015073422342538834, 0.025221064686775208, 0.013660288415849209, 0.012671095319092274, -0.016849933192133904, 0.013808331452310085, -0.006560976151376963, 0.005840951111167669, -0.0033999313600361347, -0.0018858599942177534, -0.008902739733457565, 0.016365429386496544, -0.022919677197933197, -0.027670495212078094, -0.013875623233616352, -0.02200450375676155, 0.022179463878273964, 0.0003547553496900946, 0.035503290593624115, 0.03596087917685509, -0.003406660631299019, -0.011022440157830715, -0.581834077835083, -0.02022799476981163, -0.02555752545595169, 0.017428644001483917, 0.010383165441453457, 0.017024891451001167, 0.010214935056865215, 0.029366256669163704, -0.030900515615940094, 0.029124004766345024, -0.018384192138910294, 0.03068518079817295, -0.01780547946691513, -0.008727780543267727, 0.0013878988102078438, -0.01756322756409645, 0.010262039490044117, -0.016284679993987083, -0.0012852783547714353, 0.010928231291472912, -0.007220438215881586, 0.016890307888388634, -0.03625696152448654, 0.0021096060518175364, 0.0016940776258707047, -0.012846054509282112, 0.0067258416675031185, -0.012408656068146229, 0.026230445131659508, 0.03442661836743355, -0.01938011310994625, 0.015638675540685654, -0.002578968182206154, -0.035018790513277054, 0.05434507131576538, -0.02022799476981163, -0.0062716202810406685, 0.01651347242295742, -0.0075232526287436485, 0.02834341675043106, -0.026028569787740707, -0.006776310503482819, 0.0035395624581724405, 0.017455561086535454, 0.010053434409201145, -0.017657436430454254, -0.0006619856576435268, -0.04040215536952019, 0.009878474287688732, 0.0013550939038395882, -0.0016570669831708074, -0.019191695377230644, 0.008330757729709148, -0.04392825812101364, 0.028370333835482597, 0.010342789813876152, 0.006056285463273525, -0.03345761448144913, -0.008754697628319263, -0.049957625567913055, -0.01800735667347908, 0.015800176188349724, 0.002197085879743099, -0.014212084002792835, -0.021143166348338127, 0.023646431043744087, -0.02115662395954132, -0.0047272671945393085, 0.004794559441506863, -0.01627122052013874, 0.016082802787423134, -0.028370333835482597, -0.008041401393711567, -0.011809756979346275, 0.001720153377391398, 0.030819764360785484, 0.012085654772818089, -0.015329131856560707, -0.019407030194997787, 0.00757035706192255, -0.008552821353077888, 0.010564853437244892, 0.01370739284902811, -0.041182741522789, 0.015692509710788727, -0.004797923844307661, -0.025745943188667297, 0.0020961477421224117, 0.014763878658413887, 0.02317538671195507, 0.0028834647964686155, 0.006964728236198425, 0.026418862864375114, -0.03499187156558037, 0.023888682946562767, 0.024924980476498604, -0.007314647082239389, -0.027185993269085884, -0.01631159521639347, 0.001265931874513626, -0.022623591125011444, -0.004801288712769747, 0.0004344543849583715, -0.018276523798704147, 0.025449857115745544, 0.010928231291472912, -0.022381339222192764, 0.002708505606278777, 0.01582709327340126, -0.020618287846446037, -0.00024540573940612376, -0.005669356323778629, -0.00853936281055212, 0.003802001476287842, 0.038168057799339294, -0.036956802010536194, 0.009427618235349655, 0.0012129393871873617, -0.004384078085422516, 0.0002769489074125886, 0.007200250867754221, 0.015598299913108349, 0.002728693187236786, -0.015463716350495815, 0.017590144649147987, 0.031115850433707237, 0.037360552698373795, 0.002701776335015893, -0.02442701905965805, 0.006910894997417927, -0.006705653853714466, -0.004135097377002239, 0.01132525410503149, -0.014602377079427242, 0.012126029469072819, 0.03208485618233681, 0.018115023151040077, -0.005548230372369289, 0.01092150155454874, -0.0019464228535071015, -0.0021533460821956396, -0.002506629331037402, 0.005380000453442335, -0.0143332090228796, 0.011977987363934517, -0.04174799472093582, -0.020806705579161644, 0.0125163234770298, -0.011628068052232265, 0.01635197177529335, 0.00763092003762722, -0.004939237143844366, -0.014373584650456905, 0.05684833601117134, -0.017105642706155777, 0.010551395826041698, -0.01643272116780281, -0.008727780543267727, 0.007711670361459255, 0.0012255567125976086, -0.011392545886337757, 0.019756948575377464, -0.03060442954301834, -0.002582332817837596, -0.011089731939136982, -0.012623990885913372, -0.007220438215881586, 0.009050782769918442, -0.015719424933195114, -0.031223516911268234, -0.0036909696646034718, 0.013411307707428932, -0.0028313135262578726, -0.01092150155454874, 0.005665991455316544, -0.010834022425115108, -0.016742264851927757, 0.022017963230609894, -0.009144991636276245, 0.007429043762385845, 0.016944142058491707, 0.010181289166212082, -0.0009471357916481793, -0.008956573903560638, 0.027912747114896774, 0.025019189342856407, 0.023242678493261337, 0.008996948599815369, -0.021869920194149017, 0.0011591057991608977, -0.009932308457791805, 0.0008449359447695315, 0.02063174545764923, 0.006984916049987078, 0.03052368015050888, 0.012987367808818817, 0.018397649750113487, 0.035907045006752014, 0.003376379143446684, 0.030416011810302734, 0.027643579989671707, 0.017657436430454254, -0.0010590088786557317, -0.02022799476981163, 0.02317538671195507, -0.02636503055691719, 0.022704342380166054, -0.002962533151730895, 0.027912747114896774, -0.00256382767111063, -0.0037448033690452576, -0.025328733026981354, -0.025099938735365868, -0.010268768295645714, 0.014588919468224049, 0.02688990719616413, -0.02761666290462017, 0.011695360764861107, -0.017738187685608864, 0.013276724144816399, 0.002247554948553443, 0.008626841939985752, 0.010659062303602695, -0.016823016107082367, 0.015813633799552917, -0.01570596732199192, 0.00932667963206768, 0.01663459837436676, -0.002101194579154253, -0.024696186184883118, -0.019730033352971077, -0.025328733026981354, 0.01473696157336235, 0.014494710601866245, 0.01784585416316986, -0.02971617504954338, 0.04928470775485039, -0.024480851367115974, 0.024817312136292458, 0.0072540841065347195, 0.010827292688190937, -0.017792021855711937, -0.000645583204459399, -0.020120326429605484, 0.021816086024045944, -0.007893359288573265, 0.0355302095413208, 0.023565679788589478, -0.02539602480828762, 0.009097887203097343, -0.0042427643202245235, -0.01901673711836338, -0.038975562900304794, 0.008949844166636467, 0.01029568538069725, -0.016136636957526207, -0.002841407433152199, 0.007301188539713621, 0.015759801492094994, 0.026674574241042137, -0.004340338055044413, 0.010874397121369839, 0.011742465198040009, 0.024238601326942444, 0.010793646797537804, -0.029904592782258987, -0.02333688735961914, -0.03410361707210541, -0.006345641333609819, -0.010228393599390984, -0.025167230516672134, -0.02588052675127983, 0.023767556995153427, -0.0088825523853302, -0.000556000682990998, -0.020241452381014824, 0.001961563713848591, 0.020376035943627357, 0.04371292516589165, -0.022300589829683304, -0.018141940236091614, -0.019003277644515038, 0.029285505414009094, -0.015679050236940384, 0.007758774794638157, 0.0009631176362745464, -0.02055099606513977, 0.0018538963049650192, 0.0070993127301335335, 0.04110199213027954, 0.00016391926328651607, 0.0035294685512781143, -0.02042987011373043, 2.592453029137687e-06, -0.0001384744537062943, 0.016971057280898094, 0.0379527248442173, 0.0080750472843647, -0.01245576050132513, -0.0060394625179469585, 0.02644577994942665, -0.007873171009123325, -0.025207607075572014, -0.012704741209745407, 0.03892172873020172, 0.0042595877312123775, -0.004993070848286152, -0.012408656068146229, 0.013182515278458595, -0.0133238285779953, -0.007651107385754585, -0.019447406753897667, 0.0031778677366673946, -0.008855635300278664, -0.017374809831380844, 0.016984516754746437, 0.023242678493261337, -0.007052208296954632, 0.045354850590229034, 0.01051774900406599, -0.01974349096417427, -0.012623990885913372, -0.0046465168707072735, -0.002669812645763159, 0.014535085298120975, 0.0037616263143718243, 0.016526930034160614, 0.007778962608426809, -0.014373584650456905, -0.02414439246058464, -0.030739014968276024, -0.00021018255210947245, 0.0015081833116710186, -0.013344015926122665, -0.0014779019402340055, 0.0016234209761023521, -0.008243277668952942, 0.0003680034715216607, 0.026634197682142258, -0.008371132425963879, -0.0026967294979840517, -0.013330557383596897, 0.006517236120998859, -0.02228713035583496, 0.006187505088746548, -0.010928231291472912, 0.008310569450259209, 0.009138261899352074, 0.00557178258895874, 0.001561175798997283, 0.0025705567095428705, 0.017267143353819847, 0.007328105624765158, -0.001019474701024592, 0.0012566793011501431, 0.0031980553176254034, 0.010100538842380047, 0.043416839092969894, -0.0063153598457574844, 0.025611359626054764, 0.002896923338994384, 0.04433200880885124, 0.0009681645315140486, 0.020281827077269554, 0.005353083368390799, 0.042367082089185715, 0.015450257807970047, -0.014440876431763172, 0.011392545886337757, -0.030416011810302734, -0.01808810606598854, 0.011836674064397812, -0.0064734965562820435, 0.002612614305689931, 0.03415745124220848, 0.021977586671710014, -0.05781733989715576, 0.012085654772818089, -0.0007465213420800865, 0.032031022012233734, -0.0159482192248106, -0.010470644570887089, -0.003184596775099635, 0.005329531151801348, -0.017334435135126114, -0.007980838418006897, -0.006493683904409409, -0.02071249671280384, -0.010706166736781597, -0.010127454996109009, -0.007355022244155407, 0.015531008131802082, -0.02705140970647335, 0.015208005905151367, 0.03197718784213066, -0.04578552022576332, -0.014844628982245922, 0.013862164691090584, 0.018074648454785347, 0.011513671837747097, 0.015046505257487297, -0.0014316386077553034, -0.008788343518972397, 0.013438224792480469, 0.007967379875481129, -0.022421715781092644, -0.006386016495525837, -0.012213509529829025, 0.012368281371891499, 0.007361751515418291, -0.003007955150678754, 0.015692509710788727, -0.007745316252112389, 0.02418476715683937, 0.009239200502634048, 0.020847080275416374, 0.010100538842380047, 0.015436799265444279, -0.005605428945273161, -0.0009547061054036021, -0.01861298456788063, 0.002472983207553625, 0.02579977735877037, -0.00018431716307532042, 0.008054859936237335, -0.046485356986522675, -0.04190949723124504, -0.017334435135126114, -0.015934759750962257, -0.007839525118470192, 0.00013752815721090883, 0.023000426590442657, -0.011614609509706497, 0.008573008701205254, 0.0343189500272274, -0.015504091046750546, 0.016163554042577744, -0.003241795115172863, 0.008398049511015415, 0.014844628982245922, 0.011648256331682205, 0.010181289166212082, -0.0068974364548921585, -0.015033046714961529, 0.004629693925380707, -0.009521827101707458, 0.019878074526786804, 0.010753271169960499, 0.021223915740847588, 0.004532120190560818, -0.010046704672276974, -0.013969832099974155, -0.015557925216853619, 0.019353197887539864, 0.01990499161183834, 0.024278976023197174, 0.025328733026981354, -0.017778562381863594, -0.02018761821091175, -0.019918451085686684, -0.014885004609823227, 0.015611758455634117, -0.028478000313043594, -0.019716573879122734, -0.0005837586359120905, -0.011406004428863525, -0.0023501752875745296, -0.005679449997842312, -0.007476148195564747, -0.024359727278351784, -0.0034789997152984142, -0.0012120982864871621, 0.016823016107082367, -0.006248068064451218, 0.037118300795555115, 6.639833736699075e-05, -0.040671322494745255, -0.00920555368065834, -0.0011717230081558228, -0.019084028899669647, 0.019232071936130524, 0.0022458725143224, 0.0012642496731132269, 0.01824960671365261, 0.006015910301357508, -0.0037986368406563997, -0.009259387850761414, -0.005312708206474781, -0.007960651069879532, -0.00831729918718338, -0.018020814284682274, 0.014992671087384224, 0.01651347242295742, -0.0031341277062892914, -0.015571382828056812, 0.029500840231776237, -0.004000512883067131, -0.015921302139759064, 0.020537536591291428, 0.015840550884604454, -0.016217386350035667, -0.003182914573699236, -0.03846414387226105, -0.028774086385965347, -0.0032165604643523693, -0.020174160599708557, -0.0073213763535022736, 0.011527130380272865, -0.006470131687819958, -0.010066892951726913, -0.008754697628319263, -0.0014139744453132153, 0.0061303069815039635, 0.016769181936979294, -0.008068318478763103, -0.01554446667432785, 0.021654585376381874, 0.0001697021652944386, -0.007906816899776459, 0.0038861166685819626, 0.018841776996850967, -0.02507302165031433, 0.05534099042415619, -0.01132525410503149, 0.004683527629822493, 0.0167557243257761, -0.018599525094032288, 0.018747568130493164, -0.00660135131329298, 0.0415864959359169, 0.010558124631643295, -0.03585321083664894, 0.009144991636276245, -0.03092743270099163, -0.004246129188686609, -0.039379313588142395, -0.00512765534222126, -0.018747568130493164, -0.011062814854085445, -0.00517812417820096, 0.03617621213197708, 0.008855635300278664, 0.011183940805494785, -0.007550169248133898, 0.00801448430866003, -0.010019788518548012, 0.043255336582660675, 0.02067212201654911, 0.038894813507795334, 0.036472298204898834, 0.0159482192248106, -0.013794872909784317, -0.05550249293446541, -0.02236788161098957, -0.021331584081053734, 0.022986968979239464, 0.03625696152448654, -0.0038726581260561943, -0.010894584469497204, -0.00960930623114109, -0.004222576972097158, -0.00591497216373682, -0.016163554042577744, 0.0464315228164196, -0.00241746730171144, 0.0014291151892393827, -0.01497921347618103, -0.0043336087837815285, -0.030496763065457344, 0.010087080299854279, -0.00381546001881361, -0.004394171759486198, -0.021089332178235054, -0.008465341292321682, -0.009817912243306637, 0.012805679813027382, -0.001956516643986106, 0.014212084002792835, 0.0314926840364933, 0.01108300220221281, -0.014144791290163994, -0.033484529703855515, -0.0399714857339859, 0.004720538388937712, -0.012718199752271175, 0.044466596096754074, 0.0063019017688930035, -0.012462490238249302, 0.017213309183716774, 0.008391319774091244, -0.02450776845216751, -0.02608240395784378, -0.008586467243731022, 0.044385842978954315, -0.0019767042249441147, 0.008714322000741959, -0.005541501101106405, -0.0028481364715844393, 0.015275297686457634, 0.013680476695299149, 0.0008567120530642569, 0.007826066575944424, -0.012906617484986782, 0.004202389158308506, 0.01205200795084238, -0.009723703376948833, 0.005342989694327116, -0.013613183982670307, -0.014656211249530315, 0.013599725440144539, -0.016015511006116867, 0.0038255536928772926, 0.005528043024241924, -0.02208525501191616, -0.0062581617385149, -0.026916824281215668, -0.025705568492412567, 0.007765504065901041, -0.013586267828941345, 0.015436799265444279, 0.012671095319092274, 0.05273006111383438, -0.018464941531419754, -0.00700510386377573, 0.003073564963415265, 0.03491112217307091, -0.0009732114267535508, -0.013559350743889809, 0.006056285463273525, -0.013054660521447659, 0.024978812783956528, 0.01869373582303524, -0.0078058792278170586, -0.033646032214164734, -0.0062581617385149, 0.03789889067411423, 0.015961676836013794, 0.019770408049225807, 0.02672840654850006, 0.0042427643202245235, 0.015100338496267796, -0.010968605987727642, -0.03762971982359886, -0.0005122608272358775, 0.0062110573053359985, 0.025409482419490814, 0.0036842403933405876, 0.0019952096045017242, -0.003014684421941638, -0.005790481809526682, 0.020860539749264717, 0.0018824954750016332, 0.0014190213987603784, -0.04457426071166992, 0.004888768307864666, 0.019447406753897667, -0.005312708206474781, -0.034938037395477295, -0.03407670184969902, -0.012926804833114147, -0.039217814803123474, 0.011123377829790115, 0.021937211975455284, -0.0024914885871112347, 0.002498217858374119, 0.03787197172641754, -0.0015838869148865342, 0.011991445906460285, 0.005406917072832584, -0.02898942120373249, -0.008896010927855968, -0.024655811488628387, -0.008424966596066952, -0.01659422181546688, -0.023834848776459694, 0.04597393795847893, -0.015356048941612244, -0.011836674064397812, -0.013317098841071129, -0.031465768814086914, -0.008896010927855968, 0.008976761251688004, -0.023148469626903534, 0.02466926909983158, 0.028935587033629417, 0.013956373557448387, -0.01098206453025341, 0.009764078073203564, 0.001707536051981151, 0.003633771324530244, -0.01057831197977066, -0.009239200502634048, -2.2934502794669243e-06, -0.012031820602715015, -0.01820923201739788, 0.004313420969992876, 0.004599412437528372, 0.00597553513944149, -0.0026075674686580896, 0.0008790025603957474, 0.027024492621421814, 0.015356048941612244, 0.010908043012022972, -0.015113797038793564, -0.0250326469540596, -0.04080590605735779, -0.00602600397542119, 0.0011994809610769153, 0.0025756037794053555, -0.042690083384513855, 0.009764078073203564, 0.01247594878077507, 0.01748247817158699, -0.001761369756422937, -0.004000512883067131, -0.014723503030836582, -0.01679609902203083, 0.012159675359725952, -0.0015241651562973857, -0.02075287140905857, -0.016002051532268524, -0.007947192527353764, 0.027320576831698418, -0.006971457507461309, -0.001731088268570602, 0.022677425295114517, -0.014952296391129494, -0.0258401520550251, -0.03353836387395859, 0.0310889333486557, -0.015598299913108349, 0.021425792947411537, 0.03636462986469269, -0.0007810085080564022, 0.002213908825069666, -0.0013281770516186953, 0.0022845654748380184, -0.007590544410049915, 0.0031173047609627247, 0.019366655498743057, 0.0062110573053359985, -0.04901553690433502, 0.013438224792480469, 0.0079741096124053, -0.015975136309862137, 0.002558780601248145, 0.004680162761360407, -0.021304666996002197, 0.014319750480353832, -0.047696612775325775, -0.021533459424972534, -0.03652613237500191, 0.005171394906938076, 0.01606934517621994, 0.010410081595182419, -0.03975614905357361, 0.035503290593624115, 0.00932667963206768, -0.003073564963415265, -0.004767642822116613, 0.24462009966373444, -0.009589118883013725, 0.0044143591076135635, 0.029581591486930847, 0.03499187156558037, 0.03814114257693291, 0.021129706874489784, 0.014360126107931137, 0.0017680989112704992, 0.010188017971813679, 0.002326623070985079, -0.02103549800813198, -0.001548558590002358, -0.005965441465377808, 0.011641526594758034, -0.010436998680233955, -0.018101565539836884, -0.046081602573394775, -0.017455561086535454, 0.00803467258810997, 0.023283053189516068, -0.0002681167970877141, -0.00018936407286673784, -0.019393572583794594, 0.009373784065246582, 0.015813633799552917, -0.01082056388258934, 0.029124004766345024, -0.002368680667132139, -0.0022845654748380184, -0.02317538671195507, 0.00728773046284914, 0.0019178237998858094, -0.013357474468648434, -0.03238093852996826, -0.027347493916749954, 0.0379527248442173, -0.0007932051667012274, 0.01590784266591072, 0.02426551841199398, -0.020483704283833504, -0.009898662567138672, -0.0029793560970574617, -0.021573835983872414, -0.01780547946691513, 0.002732057822868228, 0.008041401393711567, -0.006937811616808176, 0.0061303069815039635, 0.032919276505708694, 0.005403552670031786, -0.05216480791568756, 0.03935239836573601, 0.0052420515567064285, -0.025853609666228294, -0.024857688695192337, 0.040832825005054474, -0.010585041716694832, -0.009138261899352074, 0.03975614905357361, 0.0031711384654045105, 0.04756202921271324, -0.011453108862042427, 0.012388468720018864, -0.031223516911268234, 0.014535085298120975, -0.007476148195564747, 0.001902683055959642, -0.033565279096364975, -0.007469418924301863, -0.0016436086734756827, 0.0002317370381206274, -0.013848706148564816, -0.004276410676538944, -0.024561602622270584, -0.038087308406829834, 0.048665620386600494, 0.01772473007440567, 0.036149296909570694, 0.03698371723294258, 0.009219012223184109, 0.0004567448631860316, 0.004077898804098368, 0.014790795743465424, -0.02115662395954132, -0.020214535295963287, 0.028316499665379524, -0.00932667963206768, 0.005837586242705584, -0.0011860226513817906, 0.02345801331102848, -0.0002283724315930158, 0.0017546404851600528, -0.012422114610671997, -0.01683647371828556, 0.006978186778724194, -0.014225541613996029, 0.001505659893155098, -0.03911014646291733, -0.0005000641103833914, -0.009488181211054325, 0.02693028375506401, 0.02527489885687828, 0.0006148812244646251, -0.019312821328639984, -0.016863390803337097, 0.007711670361459255, 0.014629294164478779, 0.01405058242380619, -0.03644537925720215, 0.009481451474130154, -0.02729365974664688, 0.003218242898583412, -7.622928933415096e-06, 0.021654585376381874, 0.02802041545510292, -0.02495189756155014, -0.029285505414009094, -0.005083915311843157, 0.005834221839904785, 0.028208833187818527, -0.026136236265301704, -0.010127454996109009, -0.03666071593761444, -0.00011271420225966722, -0.00785298366099596, -0.0387602262198925, -0.009636223316192627, -0.004589318763464689, -0.02014724351465702, 0.017697812989354134, -0.022219838574528694, 0.025544065982103348, -0.0019716573879122734, -0.006291807629168034, 0.033807530999183655, -0.0016015510773286223, -0.02079324796795845, 0.025745943188667297, -0.007947192527353764, -0.02357913926243782, -0.0026664480101317167, 0.0015737931244075298, -0.0033141339663416147, -0.003154315520077944, -0.018384192138910294, 0.015382965095341206, -0.014588919468224049, 0.017253683879971504, -0.007132958620786667, -0.04694294184446335, -0.026593822985887527, 0.026513071730732918, -0.005208405666053295, 0.018236149102449417, -0.03456120193004608, -0.02531527355313301, -0.05517949163913727, 0.004289868753403425, 0.04347067326307297, -0.0071127708069980145, -0.007752045523375273, 0.003630406688898802, -0.031546518206596375, -0.021210458129644394, -0.016823016107082367, -0.16860699653625488, -6.497889989987016e-05, 0.016486555337905884, -0.04153266176581383, 0.03383444994688034, -0.00950836855918169, 0.0016856661532074213, -0.03294619545340538, 0.00403752364218235, -0.02313501015305519, 0.022314047440886497, 0.01707872562110424, -0.0042595877312123775, -0.0016940776258707047, 0.006544153206050396, -0.002358586760237813, -0.007590544410049915, 0.013653559610247612, 0.04505876451730728, -0.003014684421941638, 0.053429897874593735, -0.03143884986639023, -0.006483590230345726, 0.004135097377002239, 0.013747768476605415, -0.005672720726579428, -0.02733403630554676, -0.016688430681824684, -0.014481252059340477, -0.011271420866250992, -0.010463915765285492, 0.015652133151888847, 0.016042428091168404, 0.0005837586359120905, 0.01970311626791954, -0.018061188980937004, 0.025584442541003227, -0.006237974390387535, -0.01205200795084238, 0.019447406753897667, 0.024965355172753334, 0.01748247817158699, 0.042447831481695175, -0.02095474861562252, -0.0036001254338771105, 0.027831997722387314, 0.0098919328302145, 0.005205040797591209, 0.014131332747638226, 0.001378646120429039, 0.013000826351344585, -0.030496763065457344, -0.02087399736046791, 0.0017024892149493098, 0.035664793103933334, 0.013660288415849209, -0.007186792325228453, 0.012502864934504032, 0.006631632801145315, 0.0009151720441877842, 0.017670895904302597, -0.026822615414857864, 0.006776310503482819, -0.0005101579590700567, -0.025624817237257957, 0.011540588922798634, 0.009932308457791805, 0.028854835778474808, 0.002991132205352187, 0.00900367833673954, 0.020120326429605484, -0.02075287140905857, -0.025584442541003227, -0.015073422342538834, 0.04225941374897957, -0.03256935998797417, 0.0004369778325781226, 0.024400101974606514, 0.03870639577507973, -0.010887855663895607, -0.006978186778724194, 0.02200450375676155, 0.01122431643307209, -0.030712097883224487, 0.0051613012328743935, 0.027831997722387314, 0.01273838710039854, -0.019312821328639984, -0.030981265008449554, -0.003130763303488493, 0.02361951395869255, -0.017213309183716774, -0.010571583174169064, -0.01881485991179943, 0.0008340009953826666, 0.007072395645081997, 0.0007940463256090879, 0.014669669792056084, -0.05151880159974098, -0.014319750480353832, 0.006783039774745703, -0.013539162464439869, 0.0013475235318765044, 0.020968206226825714, 0.02898942120373249, 0.019043654203414917, -0.023606056347489357, 0.0010733084054663777, 0.02721291035413742, -0.014131332747638226, -0.009353596717119217, -0.011278149671852589, 0.015800176188349724, 0.011432921513915062, -0.006167317274957895, 0.015800176188349724, -0.007718399632722139, 0.012657636776566505, -0.014602377079427242, -0.0061000254936516285, -0.04290542006492615, -0.020564453676342964, 0.008552821353077888, 0.03762971982359886, 0.0014997718390077353, -0.037279803305864334, -0.0532953143119812, -0.011796298436820507, 0.0019817512948065996, 0.015100338496267796, -0.01429283432662487, -0.013862164691090584, 0.011971257627010345, 0.01828998327255249, -0.019783865660429, 0.012778762727975845, 0.0036505942698568106, -0.018034271895885468, 0.0005475891521200538, 0.00791354663670063, -0.0031156225595623255, 0.0028010320384055376, 0.03003917634487152, -0.003966866992413998, 0.001652020146138966, 0.011574234813451767, -0.012617262080311775, 0.0045354850590229034, 0.006402839906513691, -0.009030594490468502, -0.006476860959082842, 0.010443728417158127, -0.016378888860344887, -0.010066892951726913, 0.010908043012022972, 0.011379087343811989, 0.010336061008274555, 0.008498987182974815, -0.02095474861562252, -0.01800735667347908, -0.012765304185450077, 0.013754497282207012, -0.042286332696676254, -0.017347892746329308, 0.027347493916749954, -0.013640101067721844, 0.0021398875396698713, -0.016338512301445007, 0.004851757548749447, 0.009521827101707458, -0.022354423999786377, -0.03668763116002083, -0.01354589220136404, 0.005861138459295034, -0.008431695401668549, -0.009158449247479439, -0.04670068994164467, 0.010214935056865215, -0.0008054018835537136, -0.006153859198093414, 0.0062581617385149, 0.01606934517621994, 0.02826266549527645, 0.014346667565405369, -0.021102791652083397, -0.0041620139963924885, -0.009656410664319992, 0.008586467243731022, -0.012004903517663479, 0.029581591486930847, 0.022314047440886497, 0.024776937440037727, 0.0006148812244646251, -0.01728060096502304, 0.014481252059340477, 0.007711670361459255, -0.004515297245234251, 0.008364403620362282, -0.025221064686775208, 0.05178797245025635, -0.04675452411174774, 0.008485528640449047, 0.010430269874632359, -0.008324027992784977, 0.028208833187818527, 0.017549769952893257, -0.017253683879971504, -0.0045052035711705685, -0.007462689653038979, 0.0045859538950026035, 0.0015048187924548984, 0.02741478569805622, 0.0019447406521067023, -0.0014509850880131125, 0.024117475375533104, -0.045920103788375854, 0.0025184054393321276, 0.002987767569720745, 0.0327039435505867, 0.009454534389078617, 0.005628981161862612, -0.014346667565405369, 0.010463915765285492, -0.02164112776517868, -0.027226367965340614, 0.01679609902203083, -0.029043253511190414, -0.022017963230609894, -0.09393972158432007, 0.015342590399086475, -0.01812848076224327, -0.010544666089117527, -0.001253314665518701, -0.025099938735365868, 0.031708020716905594, -0.0302814282476902, 0.01217313390225172, -0.019716573879122734, -0.012711470946669579, 0.010154372081160545, -0.014925379306077957, -0.01647309772670269, -0.01623084582388401, 0.02147962711751461, 0.013377661816775799, 0.00864030048251152, 0.012872971594333649, -0.00864030048251152, 0.016984516754746437, -0.010066892951726913, 0.012960451655089855, 0.0007107724086381495, -0.03480345383286476, 0.024278976023197174, -0.012650907970964909, 0.013754497282207012, -0.0088825523853302, -0.03789889067411423, -0.003936585504561663, -0.0016049157129600644, -0.015113797038793564, -0.002124746795743704, -0.008768156170845032, -0.003781813895329833, 0.011977987363934517, 0.012879700399935246, 0.015329131856560707, 0.036553047597408295, -0.016580764204263687, -0.00586450332775712, -0.0030315073672682047, -0.007079124916344881, 0.0179669801145792, -0.009535285644233227, -0.006715747993439436, 0.0025099939666688442, -0.0026344843208789825, 0.013613183982670307, 0.010975335724651814, 0.009642952121794224, -0.01457546092569828, 0.00261429650709033, 0.006083202548325062, -0.042124830186367035, -0.0025419576559215784, 0.02010686881840229, -0.019191695377230644, -0.006234609521925449, 0.013088306412100792, -0.010773459449410439, 0.0008764790836721659, 0.009077698923647404, 0.0022357788402587175, -0.0073819393292069435, -0.029204754158854485, -0.031869519501924515, -0.017657436430454254, -0.020927831530570984, -0.023484930396080017, 0.0015864103334024549, 0.017657436430454254, 0.011358899995684624, 0.03036217764019966, 0.006749393884092569, -0.013848706148564816, 0.011331982910633087, -0.02010686881840229, 0.026984116062521935, -0.00677294610068202, 0.019326280802488327, -0.051734138280153275, 0.00038629848859272897, 0.023229219019412994, 0.0062110573053359985, -0.017065266147255898, -0.007422314491122961, -0.03450736775994301, 0.007301188539713621, -0.01623084582388401, 0.004565766546875238, 0.009151720441877842, 0.026230445131659508, 0.025301815941929817, 0.028531834483146667, 0.0007339040748775005, 0.0035160102415829897, 0.012038550339639187, -0.0032283365726470947, 0.014750420115888119, -0.025732483714818954, -0.007274271920323372, -0.02281200885772705, -0.01526184007525444, -0.0002407794090686366, -0.014279375784099102, -0.04005223512649536, -0.010093809105455875, 0.0016570669831708074, -0.018599525094032288, 0.007469418924301863, -0.004141826648265123, 0.017051808536052704, -0.03539562597870827, 0.006396110635250807, -0.0008129722555167973, -0.008949844166636467, -0.031304266303777695, 0.004814747255295515, 0.010376435704529285, 0.025544065982103348, 0.009393972344696522, -0.023000426590442657, 0.030739014968276024, -0.005454021506011486, 0.006991645321249962, -0.045435599982738495, 0.008768156170845032, 0.006285078823566437, -0.011473296210169792, 0.020497161895036697, -0.018034271895885468, -0.028881752863526344, 0.0005067933234386146, -0.001151535427197814, -0.0014922014670446515, 0.001137235900387168, 0.015800176188349724, 0.05808650702238083, -0.008990219794213772, 0.004464828409254551, -0.000951341527979821, 0.028962504118680954, 0.012287530116736889, 0.005181488581001759, -0.0005942730349488556, -0.016123177483677864, -0.017092183232307434, 0.002673177281394601, -0.02434626780450344, 0.004754184279590845, -0.02668803185224533, -0.0031728206668049097, 0.025705568492412567, -0.027037950232625008, 0.030308345332741737, -0.011251232586801052, 0.03652613237500191, 0.06040135398507118, 0.0055852411314845085, 0.011035897769033909, -0.002853183541446924, -0.030954347923398018, -0.005810669623315334, 0.025813234969973564, 0.017630521208047867, 0.001737817539833486, -0.023552222177386284, 0.006675372365862131, 0.021735336631536484, -0.009212283417582512, -0.011305066756904125, 0.009858286939561367, 0.005016623064875603, -0.009030594490468502, 0.012368281371891499, 0.030819764360785484, -0.0026042028330266476, 0.008512445725500584, 0.008815260604023933, -0.022354423999786377, -0.03843722492456436, -0.0022340964060276747, 0.010591770522296429, -0.0069579994305968285, 0.016002051532268524, -0.007429043762385845], "1036624e-f299-4634-8358-ea02d80ebfdb": [-0.020620282739400864, -0.033959511667490005, 0.007962774485349655, -0.013528984971344471, -0.008869391866028309, 0.030529825016856194, -0.031710535287857056, -0.04154979810118675, -0.004810696467757225, -0.008686662651598454, 0.040228527039289474, -0.001632263301871717, -0.0016832166584208608, -0.009979822672903538, -0.02407808043062687, -0.015208687633275986, -0.00519021088257432, -0.007168604992330074, 0.017907457426190376, -0.009326214902102947, 0.020339161157608032, 0.01134326308965683, 0.0038197420071810484, -0.008300120010972023, -0.0249776691198349, 0.013908499851822853, -0.013191639445722103, -0.02530095912516117, 0.021224694326519966, 0.00520075298845768, 0.05195130407810211, -0.0005837669596076012, -0.00912942923605442, -0.011807114817202091, -0.009312158450484276, -0.01185631100088358, -0.011476796120405197, -0.0006290099699981511, 0.021224694326519966, 0.006420118268579245, 0.021674487739801407, 0.004020041320472956, 0.013957696035504341, -0.0016656465595588088, -0.019664468243718147, 0.011982815340161324, 0.008208755403757095, -0.026228660717606544, -0.01564442738890648, 0.022208619862794876, 0.01994558982551098, 0.004898546729236841, -0.01764039136469364, -0.03308803215622902, 0.002233161125332117, 0.0014934594510123134, 0.003538620425388217, 0.011272982694208622, -0.015953660011291504, -0.014463715255260468, 0.009614364244043827, 0.0013379639713093638, -0.009895486757159233, -0.0060968282632529736, -0.0025125257670879364, -0.003000974887982011, -0.013578181155025959, 0.01506812684237957, 0.006135482806712389, -0.017218708992004395, 0.012362330220639706, 0.010310141369700432, 0.001576917478814721, -0.001597123104147613, 0.020339161157608032, 0.009354326874017715, -0.02157609537243843, 0.002927180379629135, 0.013831190764904022, 0.003025572979822755, -0.003299666801467538, -0.013374368660151958, 0.0004212433996144682, -0.005878958851099014, 0.04036908596754074, 0.01246775034815073, -0.03812011331319809, 0.01667052134871483, -0.012671563774347305, -0.018694598227739334, 0.024021854624152184, 0.000674252980388701, 0.008279035799205303, 0.02570858597755432, -0.0011894964845851064, -1.304031684412621e-06, 0.00804711040109396, 0.03424063324928284, -0.01248883455991745, -0.04351764917373657, -0.02345961146056652, 0.028435466811060905, -0.01949579454958439, 0.008953728713095188, -0.023515835404396057, -0.015166519209742546, 0.027465596795082092, 0.006908567622303963, 0.005970323458313942, -0.008693690411746502, -0.02797161601483822, 0.03615225851535797, 0.019664468243718147, -0.057180169969797134, -0.032160330563783646, 0.016515905037522316, 0.024865221232175827, -0.04025663807988167, -0.01222176942974329, 0.012256909161806107, 0.0043503595516085625, 0.020817067474126816, 0.013978780247271061, 0.0017192353261634707, 0.0008705990039743483, 0.012249881401658058, -0.02251785434782505, -0.021351197734475136, -0.007723820861428976, -0.01466049998998642, 0.046666212379932404, 0.00022928994440007955, 0.037445418536663055, 0.014112313278019428, -0.005555668845772743, 0.029011767357587814, -0.02412024885416031, 0.0050074816681444645, -0.01428801380097866, -0.00773787684738636, 0.016600240021944046, 0.02525879070162773, 0.001679702545516193, 0.013852274976670742, 0.0024492733646184206, 0.013156498782336712, 0.014112313278019428, -0.01838536374270916, -0.01809018664062023, -0.004308191128075123, 0.018413476645946503, -0.01609422080218792, 0.0049477433785796165, 0.01686730608344078, 0.001295795664191246, 0.002971105743199587, 0.027831055223941803, -0.008665578439831734, 0.009438663721084595, -0.008250923827290535, 0.01071073953062296, 0.026228660717606544, 0.006177650764584541, -0.007899521850049496, 0.007681652437895536, 0.030108142644166946, 0.02099979668855667, -0.003505237167701125, -0.014519939199090004, -0.0008938793907873333, -0.022222675383090973, -0.003963816910982132, -0.005348341539502144, 0.014744836837053299, 0.013233807869255543, 0.011736834421753883, 0.027170419692993164, -0.00200650654733181, 0.008033054880797863, -0.006342810112982988, -0.006659071892499924, -0.014252874068915844, -0.0002945189771708101, 0.006511482875794172, -0.0114627406001091, -0.005647033452987671, 0.013585209846496582, -0.002684712875634432, 0.02178693749010563, 0.0047579859383404255, 0.013170555233955383, 0.03750164434313774, -0.014646444469690323, -0.002855143044143915, -0.5982271432876587, -0.04672243818640709, -0.011603301391005516, 0.008707746863365173, 0.03854179382324219, 0.010773992165923119, 0.017795007675886154, 0.03140130266547203, -0.03559001535177231, 0.033678390085697174, -0.010598290711641312, 0.040228527039289474, 0.00201704865321517, -0.006001949775964022, 0.01172980573028326, -0.009417579509317875, -0.0007129072328098118, -0.02247568592429161, -0.013465733267366886, 0.00512695824727416, -0.005488902796059847, 0.010085243731737137, -0.020072095096111298, 0.006444716826081276, -0.005692715756595135, 0.010099299252033234, 0.01224285364151001, -0.03578680008649826, 0.020901404321193695, 0.01437235064804554, -0.03598358854651451, 0.018371308222413063, 0.010387449525296688, -0.03272257372736931, 0.046863000839948654, -0.0066801561042666435, -0.024457594379782677, 0.006065202411264181, -0.00387948052957654, 0.03353782743215561, -0.033594053238630295, -0.007892494089901447, -0.01588338054716587, -0.009326214902102947, -0.0024317032657563686, 0.003904078621417284, 0.014927566051483154, -0.03185109794139862, 0.010921580716967583, -0.001962581416592002, -0.00192919815890491, -0.012053095735609531, 0.016965698450803757, -0.020901404321193695, -0.005063706077635288, 0.025582080706954002, 0.03820445016026497, -0.03570246696472168, 0.00022314040688797832, -0.03176676109433174, -0.015869323164224625, -0.0006083651096560061, -0.008988868445158005, 0.003633498912677169, -0.01896166428923607, 0.022250788286328316, -0.002626731526106596, -0.013915527611970901, 0.021997779607772827, -0.030923394486308098, -0.0010278514819219708, 0.0036897233221679926, 0.02615838125348091, -0.032329004257917404, 0.008665578439831734, 0.040959443897008896, 0.0462726429104805, -0.02063433825969696, -0.012277993373572826, 0.022292956709861755, -0.003347106045112014, 0.0011051599867641926, 0.013219751417636871, -0.011427599936723709, 0.013381396420300007, -0.005984379909932613, -0.019959645345807076, -0.004961799364537001, 0.018722709268331528, -0.006388492416590452, 0.016529960557818413, -0.009002924896776676, 0.02202589064836502, -0.03286313638091087, 0.02367045357823372, 0.001987179508432746, -0.006100342608988285, -0.020114263519644737, 0.004234396852552891, -0.015180575661361217, -0.008637466467916965, -0.002937722485512495, 0.01471672486513853, -0.011322179809212685, 0.010619374923408031, 0.011863338761031628, -0.013458704575896263, 0.0028410868253558874, 0.01551792211830616, -0.008700719103217125, 0.003998957108706236, -0.009417579509317875, -0.01620667055249214, -0.008588270284235477, 0.028435466811060905, -0.0327506847679615, 0.020465664565563202, -0.0007546362467110157, 0.009565168060362339, -0.0048177242279052734, 0.032778799533843994, 0.009853318333625793, 0.015714706853032112, -0.0066801561042666435, 0.010204720310866833, 0.030023805797100067, 0.03570246696472168, -0.005102360155433416, -0.023726677522063255, 0.018525924533605576, 0.006328754127025604, -0.002245460171252489, 0.009312158450484276, -0.019017888233065605, -0.008602325804531574, 0.004736901726573706, 0.006529053207486868, -0.02166043221950531, 0.03882291540503502, -0.004079779610037804, -0.006012491881847382, -0.007660568226128817, -0.004603369161486626, -0.017541998997330666, 0.005629463586956263, -0.022672470659017563, -0.018849214538931847, 0.00856015831232071, 0.004765014164149761, 0.025188511237502098, -0.002331553725525737, 0.0029746198561042547, -0.009066177532076836, 0.02861819602549076, -0.014899454079568386, 0.0030659842304885387, 0.0005473089404404163, -0.002897311234846711, -0.00514804245904088, -0.005362397991120815, 0.004592827055603266, 0.009452719241380692, -0.03553379327058792, -0.012720759958028793, -0.01866648532450199, -0.015208687633275986, -0.011265954934060574, 0.02846357971429825, -0.02239134907722473, -0.015222744084894657, -0.00047746775089763105, -0.005805164575576782, 0.005991407670080662, 0.000480103277368471, -0.000336247991072014, 0.006950736045837402, -0.03379083797335625, 0.025736698880791664, 0.005165612790733576, -0.015040014870464802, 0.004642023239284754, 0.027943504974246025, -0.001271197572350502, -0.006261987611651421, 0.02161826379597187, 0.024302978068590164, 0.017738783732056618, 0.024949558079242706, 0.01363440603017807, -0.006037089973688126, -0.01748577505350113, 0.02277086302638054, -0.0050812759436666965, 0.01365549024194479, 0.011490852572023869, -0.006771520711481571, 0.005249949172139168, 0.005524042993783951, 0.011666553094983101, 0.035027772188186646, 0.017598222941160202, 0.03204788267612457, -0.011898479424417019, -0.02653789520263672, 0.009494887664914131, -0.014210705645382404, 0.010738851502537727, -0.012411526404321194, 0.019594186916947365, 0.010197692550718784, 0.0005512622301466763, -0.0372486338019371, -0.015756875276565552, -0.017584167420864105, 0.015180575661361217, 0.013346255756914616, -0.0027602643240243196, -0.0003538181190378964, 0.004318733233958483, 0.027648326009511948, 0.018933551385998726, 0.004905574955046177, 0.027451541274785995, -0.01875082217156887, 0.018582148477435112, -0.023572061210870743, 0.007302138023078442, 0.04233694076538086, -0.005921127274632454, -0.022349180653691292, -0.010556122288107872, -0.0053167156875133514, 0.020606225356459618, 0.00202231970615685, 0.024092135950922966, -0.004916117060929537, 0.04062209650874138, -0.03210410475730896, 0.027831055223941803, 0.01480106171220541, -0.009136457927525043, -0.01945362612605095, -0.006174136884510517, -0.008792083710432053, 0.0072388858534395695, 0.009178625419735909, 0.06522025167942047, 0.025863202288746834, -0.0040446394123137, -0.0020363759249448776, -0.032778799533843994, -0.008426625281572342, -0.026214605197310448, 0.014280986040830612, 0.0249776691198349, 0.0037881159223616123, 0.005900043062865734, 0.015096238814294338, 0.02322065830230713, 0.04281484708189964, 0.0056892018765211105, 0.01367657445371151, 0.007003446109592915, 0.011722777970135212, 0.038963478058576584, -0.012299077585339546, -0.011146478354930878, -0.029124215245246887, 0.0051164161413908005, -0.00812441948801279, -0.040846992284059525, -0.012931601144373417, -0.010556122288107872, -0.008897503837943077, -0.0006149538676254451, -0.0070139882154762745, -0.01392255537211895, 0.015588202513754368, 0.02792944759130478, 0.0005789351416751742, -0.0319354347884655, -0.03176676109433174, 0.013500872999429703, -0.004283593036234379, 0.008117390796542168, 0.019425515085458755, -0.02236323617398739, 0.014674556441605091, 0.0025072547141462564, 0.0327506847679615, -0.006075744517147541, 0.013641433790326118, -0.0011429357109591365, -0.0026706568896770477, -0.012910517863929272, 0.0028217597864568233, 0.008960756473243237, -0.00587544497102499, -0.04438912868499756, -0.0011833469616249204, -0.0027549932710826397, -0.006659071892499924, -0.01250991877168417, -0.00841256882995367, 0.04613208398222923, -0.000961085082963109, -0.0043152193538844585, -0.02395157516002655, 0.009501916356384754, -0.011308123357594013, 0.0030273301526904106, -0.010366365313529968, -0.025736698880791664, 0.0044838921166956425, 0.003550919471308589, 0.026228660717606544, 0.017471717670559883, -0.008728831075131893, 0.023529892787337303, 0.0035017230547964573, -0.0167829692363739, 0.002572264289483428, -0.00064614083385095, 0.01142057217657566, -0.01404203288257122, -0.004599854815751314, 0.01707814820110798, -0.010816160589456558, -0.01834319531917572, 0.00256875017657876, -0.029630234465003014, 0.025694530457258224, 0.03814822435379028, -0.01896166428923607, -0.00806819461286068, -0.00713346479460597, -0.004227368626743555, -0.0132056949660182, 0.007059670519083738, -0.005587295163422823, -0.00267241382971406, -0.002614432480186224, 0.02465437911450863, -0.01026094425469637, -0.003608900820836425, 0.005534585099667311, 0.01103402953594923, -0.0031028816010802984, -0.0027549932710826397, 0.004866920877248049, 0.013142443262040615, 0.016023941338062286, 0.024949558079242706, -0.025806978344917297, -0.0002595983969513327, 0.005130472127348185, -0.00534482765942812, 0.034943435341119766, 0.008813167922198772, 0.04107189178466797, -0.0037600037176162004, 0.040762655436992645, 0.014273958280682564, 0.0037108073011040688, -0.008700719103217125, 0.02403591200709343, 0.007969802245497704, -0.0021769367158412933, -0.0054397061467170715, 0.0005077762180007994, -0.0323571152985096, 0.034212518483400345, -0.008173615671694279, -0.0012518704170361161, 0.005186696536839008, 0.009045093320310116, -0.051895078271627426, 0.014147453010082245, -0.0028041896875947714, 0.04034097492694855, -0.010984833352267742, -0.0010665056761354208, -0.009677616879343987, -0.019299009814858437, -0.015011902898550034, 0.005425650160759687, -0.017513886094093323, -0.01062640268355608, -0.012453694827854633, -0.020296992734074593, -0.013479788787662983, -0.0006782062700949609, -0.03471853956580162, 0.002709310967475176, 0.006230361294001341, -0.047481466084718704, -0.026074044406414032, 0.019889365881681442, -0.002937722485512495, 0.011048085987567902, 0.027648326009511948, -0.01613638922572136, -0.012130404822528362, 0.02239134907722473, -0.009895486757159233, -0.009305130690336227, 0.0010665056761354208, -0.02489333227276802, 0.0034156295005232096, 0.021112244576215744, -0.005657575558871031, -0.006240903399884701, -0.004951257258653641, 0.02174476906657219, -0.002697011921554804, 0.008834252133965492, -0.007477839011698961, 0.019678523764014244, -0.0018589177634567022, -0.010731823742389679, 0.0067293522879481316, 0.02407808043062687, -0.0011517207603901625, -0.004599854815751314, 0.026804961264133453, -0.011891450732946396, -0.02476682886481285, -0.014927566051483154, -0.005362397991120815, 0.014421546831727028, 2.5298213586211205e-05, 0.026031875982880592, -0.005394023843109608, 0.00458579882979393, 0.039610058069229126, -0.016150446608662605, 0.028758756816387177, 0.010478814132511616, 0.0182166900485754, 0.000329219939885661, 0.014632388018071651, 0.0021312544122338295, 0.0027690494898706675, -0.015278968028724194, -0.02161826379597187, -0.015489809215068817, 0.03156997635960579, 0.0020890862215310335, 0.026228660717606544, 0.011490852572023869, -0.016164502128958702, -0.02767643891274929, -0.006669613998383284, 0.029349112883210182, 0.01298079825937748, 0.005256976932287216, -0.0030167880468070507, -0.0155600905418396, -0.022039946168661118, -0.011701693758368492, -0.01990342140197754, 0.026847129687666893, -0.01772472821176052, -0.014604276046156883, 0.009818177670240402, 0.003283853642642498, 0.003939218819141388, 0.012460722588002682, -0.017457662150263786, -0.028041897341609, 0.0016076650936156511, 0.00530265923589468, 0.02178693749010563, 0.023853182792663574, 0.027043914422392845, -0.008581242524087429, -0.0339876227080822, -0.024148359894752502, 0.0020750300027430058, -0.01318461075425148, 0.012538030743598938, -0.013254891149699688, -0.006750436499714851, 0.025764809921383858, 0.021955611184239388, -0.0036545831244438887, -0.0034823960158973932, -0.011645469814538956, 0.0020767871756106615, 0.024710603058338165, -0.0023895350750535727, 0.008257952518761158, 0.00132830033544451, -0.015630370005965233, -0.003231143346056342, 0.011111337691545486, -0.02095762826502323, -0.016600240021944046, 0.014365322887897491, 0.004898546729236841, 0.008651522919535637, 0.013950668275356293, -0.015784988179802895, -0.0356181301176548, -0.004118434153497219, -0.023150378838181496, -0.00257929228246212, 0.01723276451230049, -0.015503865666687489, -0.022616246715188026, -0.0034823960158973932, 0.008096306584775448, -0.006722324527800083, 0.014941622503101826, 0.006722324527800083, -0.00037380409776233137, -0.005555668845772743, 0.011511936783790588, 0.006824231240898371, -0.012559114955365658, 0.010731823742389679, -0.016965698450803757, 0.005678659770637751, -0.002603890374302864, 0.012755900621414185, 0.029349112883210182, 0.0033646761439740658, 0.033509716391563416, -0.011568160727620125, 0.0429835207760334, -0.006290099583566189, -0.023796958848834038, 0.000661953934468329, -0.016529960557818413, -0.010190663859248161, -0.023473668843507767, -0.007934661582112312, -0.02407808043062687, -0.01361332181841135, 0.0080892788246274, -0.0037108073011040688, 0.007281053811311722, -0.005495930556207895, -0.005531070753931999, -0.01665646582841873, 0.01748577505350113, 0.04205581545829773, -0.0003252666792832315, 0.013198667205870152, 0.025849146768450737, 0.009747897274792194, 0.0004792247782461345, -0.07033666968345642, -0.02382506988942623, -0.02133714221417904, 0.0206765066832304, 0.03660205379128456, -0.009684644639492035, -0.01097077690064907, 0.006943707820028067, 0.007667596451938152, -0.018160466104745865, -0.03308803215622902, 0.04132490232586861, 0.022658415138721466, -0.01720465160906315, -0.01707814820110798, 0.006423632614314556, -0.02403591200709343, 0.01952390745282173, -0.005502958782017231, -0.0018132354598492384, -0.007583259604871273, -0.0012281507952138782, -0.00444172415882349, -0.005738398060202599, 0.0024703575763851404, 0.02673467993736267, 0.017598222941160202, -3.9779828512109816e-05, -0.012657508254051208, -0.023066041991114616, -0.009438663721084595, -0.0024123762268573046, -0.0235439483076334, 0.03227277845144272, 0.0026460587978363037, 0.0020451608579605818, 0.006743408739566803, 0.013107302598655224, -0.011610329151153564, -0.0161785576492548, -0.005176154430955648, 0.034943435341119766, -0.02521662227809429, 0.0010375150013715029, -0.00662393169477582, -0.01175088994204998, 0.013711714185774326, 0.007470811251550913, -0.0020820582285523415, 0.0010708982590585947, -0.03246956318616867, 0.001985422568395734, 0.0376703180372715, -0.005376453977078199, 0.022039946168661118, -0.014091229066252708, -0.01748577505350113, -0.01911628060042858, -0.02337527461349964, 0.0075621758587658405, 0.01624883897602558, -0.017556054517626762, -0.010752907954156399, -0.017696615308523178, -0.00715454900637269, 0.026636287569999695, -0.014829173684120178, -0.018118297681212425, 0.015096238814294338, 0.030276814475655556, -0.039160262793302536, 0.005467818584293127, -0.001966095296666026, -0.004680677317082882, -0.006564193405210972, -0.011638441123068333, -0.01568659581243992, -0.01541952881962061, 0.028112176805734634, -0.001981908455491066, 0.010921580716967583, -0.03668639063835144, 0.0023614228703081608, 0.040228527039289474, 0.006205763202160597, 0.020282935351133347, 0.037529755383729935, -0.011448684148490429, 0.008279035799205303, -0.00984628964215517, -0.016684576869010925, 0.009178625419735909, -0.001908114063553512, 0.02198372222483158, 0.02309415303170681, -0.0073372782208025455, -0.00919268187135458, -0.03022059053182602, -0.019172504544258118, -0.00646931491792202, -0.03148563951253891, -0.047931261360645294, 0.0040411255322396755, 0.006279557477682829, -0.022630302235484123, -0.02812623418867588, -0.03772654011845589, -0.0014846744015812874, -0.00839148461818695, 0.01637534238398075, 0.016712689772248268, -0.0073724184185266495, 0.008616382256150246, 0.04295540601015091, 0.012643451802432537, 0.0002585002512205392, 0.005692715756595135, -0.02636922150850296, -0.002914881333708763, -0.0056400056928396225, -0.010443673469126225, -0.017780952155590057, -0.00804711040109396, 0.022250788286328316, -0.0036686391104012728, -0.012144460342824459, -0.035561904311180115, -0.008447709493339062, 0.00025125258252955973, 0.0025406379718333483, -0.034043844789266586, 0.04967421665787697, 0.04171847179532051, 0.00642714649438858, -0.011280011385679245, 0.017218708992004395, -0.004269537050276995, 0.0013695901725441217, -0.012039040215313435, 0.002941236598417163, -0.00534482765942812, 0.004884490743279457, -0.004244938958436251, -0.0010656272061169147, -0.012664536014199257, 0.003932190593332052, 0.022981705144047737, -0.005155070684850216, 0.018483756110072136, 0.01577093079686165, 0.016684576869010925, -0.008510961197316647, -0.038345009088516235, -0.03148563951253891, -0.0075973160564899445, 0.0002657479199115187, -0.011842254549264908, -0.03663016855716705, -0.003515779273584485, 0.02613026835024357, 0.0056154076009988785, -0.0051164161413908005, 0.0024211611598730087, 0.004533088766038418, -0.001259776996448636, 0.0063463239930570126, -0.029742684215307236, -0.03550567850470543, -0.025652362033724785, -0.0024773855693638325, 0.023881293833255768, -0.0011657768627628684, -0.008250923827290535, 0.007773017045110464, -0.013444649055600166, 0.007611372042447329, -0.017780952155590057, 0.0356181301176548, -0.025118229910731316, 0.01731710135936737, 0.015405473299324512, 0.0044346959330141544, -0.0012307862052693963, -0.02137931063771248, 0.0037002654280513525, -0.02277086302638054, -0.006866399198770523, 0.012460722588002682, -0.012341246008872986, -0.024541931226849556, 0.013711714185774326, 0.019313065335154533, -0.015096238814294338, -0.009515971876680851, 0.009101317264139652, -0.012418554164469242, 0.011547076515853405, -0.029208552092313766, -0.018160466104745865, -0.02943344973027706, -0.003970845136791468, 0.013149471022188663, -0.015995828434824944, -0.05175451934337616, 9.67454252531752e-05, 0.006883969530463219, -0.008328232914209366, -0.02026887983083725, 0.23771657049655914, -0.019031943753361702, 0.006089800503104925, 0.031232628971338272, 0.023796958848834038, 0.024668434634804726, 0.007829241454601288, -0.0031345076858997345, -0.006413090508431196, 0.02350177988409996, 0.0005530192283913493, -0.0176122784614563, 0.006388492416590452, 0.0010375150013715029, 0.0017324129585176706, -0.007091296836733818, -0.013543041422963142, -0.018202634528279305, -0.04897141456604004, 0.015503865666687489, 0.01932712271809578, 0.004294135142117739, 0.004202770534902811, -0.023164434358477592, 0.010942664928734303, 0.008665578439831734, -0.0034086015075445175, 0.020465664565563202, -0.0024527874775230885, 0.006588791497051716, -0.01793556846678257, -0.00816658791154623, -0.027816999703645706, 0.001668281969614327, -0.013275975361466408, -0.021027907729148865, 0.03393139690160751, 0.023206602782011032, 0.014562107622623444, 0.026523839682340622, -0.012924573384225368, -0.0429835207760334, 0.0001045421595335938, -0.03499966114759445, -0.014477771706879139, 0.01949579454958439, -0.008988868445158005, 0.004687705542892218, -0.0009408794576302171, 0.008778027258813381, -0.02296764962375164, -0.015616314485669136, 0.052344873547554016, 0.006174136884510517, 0.0008073466015048325, -0.024668434634804726, 0.028843093663454056, 0.0006180286291055381, -0.0029974610079079866, 0.010064159519970417, 0.00392164895310998, 0.027662381529808044, -0.009804122149944305, 0.013683602213859558, -0.02898365445435047, 0.018596205860376358, -0.023923462256789207, 0.010176608338952065, -0.013781994581222534, -0.020535945892333984, 0.010464757680892944, 0.02362828515470028, 0.014646444469690323, -0.003552676411345601, -0.03415629640221596, -0.033228594809770584, 0.027296924963593483, -0.0020609740167856216, 0.013725770637392998, 0.03668639063835144, 0.00806819461286068, 0.0004256359243299812, 0.01723276451230049, -0.005443220492452383, -0.027606157585978508, -0.03831689804792404, 0.0010788048384711146, -0.013789023272693157, 0.001618207199499011, -0.00882019568234682, -0.007172119338065386, -0.01212337613105774, -0.006553651299327612, -0.016558071598410606, -0.022335125133395195, 0.02358611673116684, -0.019144393503665924, 0.019144393503665924, -0.024963613599538803, 0.00533428555354476, -0.015124351717531681, 0.04942120611667633, 0.020690562203526497, 0.01650184765458107, -0.009705728851258755, -0.010289057157933712, 0.002338581718504429, 0.004072751849889755, 0.023937519639730453, -0.0319354347884655, 0.00990954227745533, -0.039778731763362885, 0.010050103068351746, 0.004378471523523331, 0.008398513309657574, 0.01703597977757454, -0.01997370272874832, -0.009790065698325634, -0.010851300321519375, -0.012889433652162552, 0.022447573021054268, -0.022869255393743515, -0.014316126704216003, 0.0015514408005401492, -0.004118434153497219, -0.012734816409647465, 0.0031731619965285063, -0.01072479598224163, -0.028224626556038857, -0.00812441948801279, 0.025090118870139122, -0.022869255393743515, 0.027662381529808044, -0.0027303951792418957, -0.008778027258813381, 0.011322179809212685, -0.020282935351133347, -0.011891450732946396, 0.012327189557254314, 0.0020539460238069296, 0.011912534944713116, -6.506431964226067e-05, 0.02055000141263008, -0.013901472091674805, -0.014449658803641796, 0.005784080363810062, -0.005657575558871031, 0.014449658803641796, 0.02137931063771248, 0.0015848239418119192, -0.05389104411005974, -0.03803577646613121, -0.008749915286898613, -0.023248771205544472, 0.03058604896068573, -0.01592554897069931, -0.022798975929617882, -0.042477499693632126, 0.006659071892499924, 0.006163594778627157, -0.03783899173140526, -0.007583259604871273, 0.019144393503665924, -0.04568228870630264, -0.025188511237502098, -0.017738783732056618, -0.18115487694740295, 0.015377361327409744, 0.004308191128075123, -0.03983495384454727, 0.015138407237827778, 0.004919630941003561, 0.01466049998998642, -0.01908816769719124, 0.0038197420071810484, -0.0184275321662426, 0.024865221232175827, 0.014955678023397923, -0.015405473299324512, -0.006030062213540077, -0.0059632956981658936, 0.002598619321361184, -0.019509851932525635, 0.02014237456023693, 0.03336915373802185, 0.02043755352497101, 0.052794668823480606, -0.03345349058508873, -0.004301162902265787, 0.02142147906124592, -0.003217087360098958, 0.010478814132511616, -0.032778799533843994, -0.001667403499595821, -0.019509851932525635, -0.022742751985788345, -0.019959645345807076, 0.022264843806624413, 0.009305130690336227, -0.009776009246706963, 0.0006733745103701949, -0.009248906746506691, 0.007358362432569265, -0.017457662150263786, 0.006444716826081276, 0.011821170337498188, 0.00717563321813941, 0.0356181301176548, 0.039244599640369415, -0.007003446109592915, -0.026762792840600014, 0.03393139690160751, 0.004118434153497219, -0.0008517111418768764, 0.017429549247026443, -0.010057131759822369, 0.030529825016856194, -0.04975855350494385, 0.012931601144373417, -0.010478814132511616, 0.01148382481187582, -0.0001975539344130084, -0.019552018493413925, 0.011954703368246555, -0.010893468745052814, 0.008342288434505463, -0.0005890379543416202, -0.05535287782549858, 0.017710670828819275, 0.004466322250664234, -0.03227277845144272, 0.006149538792669773, -0.01224285364151001, 0.03679883852601051, -0.0155600905418396, 0.0005020659300498664, 0.023066041991114616, -0.036461494863033295, -0.009431635029613972, -0.008623410016298294, 0.022630302235484123, -0.016403455287218094, 0.00953705608844757, 0.023122265934944153, 0.03325670585036278, -0.012256909161806107, 0.0036791812162846327, 0.03589925169944763, 0.018989775329828262, -0.004093835595995188, 0.007885465398430824, 0.018202634528279305, 0.009164569899439812, 0.006708268076181412, -0.03856990858912468, -0.019102225080132484, 0.010830216109752655, -0.01765444688498974, -0.008489877916872501, 0.00841256882995367, 0.008419597521424294, 0.024457594379782677, -0.010809131897985935, 0.015377361327409744, -0.015869323164224625, -0.0021154412534087896, 0.01719059608876705, -0.011701693758368492, -0.006392006296664476, 0.01365549024194479, 0.031063955277204514, 0.006560679525136948, -0.014175564981997013, 0.012629395350813866, 0.044698361307382584, -0.014941622503101826, 0.00701047433540225, 0.0017113287467509508, 0.0046244533732533455, 0.010464757680892944, 0.0021224694792181253, 0.007948718033730984, -0.011722777970135212, -0.0014750107657164335, 0.00025059370091184974, -0.011132421903312206, -0.011322179809212685, -0.022981705144047737, 0.0023965630680322647, 0.015784988179802895, -0.0018571607070043683, -0.025722641497850418, -0.057264506816864014, 0.001641048351302743, -0.006507968995720148, 0.002937722485512495, -0.01316352654248476, 0.0064482307061553, -0.00037929476820863783, 0.0462726429104805, -0.016965698450803757, 0.021562039852142334, 0.013121359050273895, -0.017710670828819275, -0.014829173684120178, 0.00571028608828783, 0.0037143214140087366, -0.02268652617931366, -0.009691673330962658, 0.0033734613098204136, 0.0010796833084896207, 0.01851186901330948, -0.007252941839396954, -0.017879344522953033, 0.02538529597222805, 0.006441202480345964, -0.01257317140698433, -0.001633141771890223, -0.021140357479453087, 0.0037459477316588163, 0.014070144854485989, 0.013929584063589573, 0.024218641221523285, 0.0006874306127429008, -0.030923394486308098, -0.021351197734475136, -0.006124940700829029, -0.00034459380549378693, -0.03165431320667267, -0.02726881206035614, 0.02264435961842537, -0.02932099997997284, 0.017696615308523178, 0.004547144751995802, 0.011736834421753883, 0.0007656175876036286, 0.002544152084738016, -0.01359223760664463, -0.0050918180495500565, 0.049280647188425064, -0.00915051344782114, -0.008384456858038902, -0.06595116853713989, 0.003601872595027089, -0.00011310759145999327, -0.024471649900078773, 0.008855335414409637, 0.00990954227745533, 0.010457729920744896, 0.002702282974496484, -0.013599265366792679, 0.012404498644173145, -0.02161826379597187, 0.002549423137679696, -0.0073724184185266495, 0.02288331277668476, -0.0002839769294951111, 0.026059988886117935, -0.0003151638666167855, -0.02923666499555111, 0.03325670585036278, 0.0034560407511889935, -0.0067890905775129795, 0.02337527461349964, -0.02223673276603222, 0.0470878966152668, -0.017780952155590057, 0.008574213832616806, -0.009979822672903538, -0.0046841916628181934, 0.016192613169550896, 0.0011183375027030706, -0.010071187280118465, -0.006648529786616564, -0.020859235897660255, -0.0026952549815177917, -0.0004555051273200661, 0.027831055223941803, -0.007836269214749336, -0.007512979209423065, 0.007906549610197544, -0.027985671535134315, 0.0024281893856823444, -0.013346255756914616, 0.018441587686538696, 0.00011881787213496864, -0.003499966114759445, -0.016319118440151215, 0.02710013836622238, -0.032160330563783646, -0.00515858456492424, -0.009586252272129059, -0.0323571152985096, -0.024021854624152184, -0.09164569526910782, 0.016305062919855118, -0.00533428555354476, -0.025047950446605682, 0.010310141369700432, -0.014231789857149124, 0.017429549247026443, -0.02710013836622238, 0.024963613599538803, -0.007885465398430824, -0.04655376449227333, 0.017541998997330666, -0.01572876237332821, -0.018610261380672455, -0.02412024885416031, 0.0062725297175347805, 0.001937983208335936, -0.019748805090785027, 0.015869323164224625, 0.01224285364151001, 0.01256614364683628, -0.020296992734074593, 0.010492870584130287, -0.008813167922198772, -0.056364916265010834, 0.024134304374456406, -0.012369357980787754, 0.008264980278909206, -0.015278968028724194, -0.03103584423661232, -0.0054748463444411755, -0.01674080081284046, -9.147438686341047e-05, 0.02653789520263672, -0.0024703575763851404, 0.001655982923693955, -0.00024993481929413974, 0.004199256654828787, 0.018315084278583527, 0.022166451439261436, -0.01185631100088358, -0.023614229634404182, 0.007126437034457922, -0.007927633821964264, 0.003252227557823062, -0.022827088832855225, -0.01813235506415367, 0.01620667055249214, 0.00442063994705677, 0.019664468243718147, 0.013142443262040615, 0.005878958851099014, -0.008300120010972023, -0.003304937854409218, -0.0033717043697834015, -0.048662178218364716, 0.015293024480342865, -0.0009136457811109722, 0.003579031676054001, -0.0007937297341413796, 0.022503796964883804, 0.003647554898634553, 0.02043755352497101, 0.016698632389307022, 0.012306105345487595, 0.004933686926960945, -0.012081208638846874, -0.02739531733095646, -0.019931534305214882, -0.009635448455810547, -0.0076957084238529205, -0.004255480598658323, 0.010900496505200863, 0.025722641497850418, 0.015278968028724194, 0.015180575661361217, -0.006901539396494627, 0.0038021719083189964, -0.007140493020415306, 0.030445488169789314, 0.01113945059478283, 0.01977691613137722, -0.04289918392896652, -0.0040165274403989315, 0.010408533737063408, 0.0037564896047115326, -0.023656398057937622, -0.03218844160437584, -0.015714706853032112, 0.0041254619136452675, -0.011399487964808941, 0.002222619019448757, -0.010113355703651905, -0.0017086932202801108, 0.004765014164149761, 0.01740143820643425, -0.006005463656038046, -0.0030466571915894747, 0.011905507184565067, -0.006124940700829029, -0.00401301309466362, -0.015082183293998241, -0.0144356032833457, -0.007723820861428976, -0.012608311139047146, -0.014126368798315525, -0.018582148477435112, -0.03185109794139862, 0.010113355703651905, 0.025244735181331635, -0.016122333705425262, 0.014604276046156883, -0.01515246368944645, 0.020043982192873955, 0.0026583578437566757, 0.011870366521179676, -0.020774899050593376, -0.010464757680892944, -0.0272266436368227, 0.018033960834145546, 0.031345076858997345, 0.004234396852552891, 0.02731098048388958, -0.0169938113540411, 0.03325670585036278, -0.018413476645946503, 0.028477635234594345, -0.026341110467910767, 0.015363304875791073, -0.0028164887335151434, -0.0103382533416152, -0.008995897136628628, -0.002345609711483121, -0.0343811921775341, -0.01740143820643425, -0.011575189419090748, -0.006683669984340668, 0.02551180124282837, 0.008595298044383526, 0.07067401707172394, 0.009122401475906372, 0.0036194429267197847, 0.017795007675886154, 0.005478360690176487, 0.003589573549106717, 0.005144528578966856, 0.017626335844397545, -0.00515858456492424, -0.021927498281002045, 0.003243442391976714, -0.017288988456130028, -0.01772472821176052, -0.0286603644490242, 0.018933551385998726, 0.003584302496165037, -0.02005803771317005, 0.031626198440790176, -0.012776984833180904, 0.023319050669670105, 0.036714501678943634, 0.026833072304725647, 0.025989707559347153, -0.004220340400934219, -0.01712031662464142, -0.013873359188437462, 0.03390328586101532, 0.0016893661813810468, 0.005162098444998264, -0.041830919682979584, 0.00462796725332737, -0.0018132354598492384, 0.0007375053828582168, -0.021027907729148865, 0.011195674538612366, 0.023600172251462936, -0.019256841391324997, 0.00589652918279171, 0.042730510234832764, 0.017499830573797226, -0.010900496505200863, -0.007045614533126354, -0.02153392694890499, -0.025933483615517616, 0.021280918270349503, -0.016797026619315147, -0.0001943693496286869, 0.0030449002515524626, -0.0176122784614563], "efbff208-3cc2-4169-adc8-1aadfd164458": [-0.011334202252328396, -0.013900811783969402, -0.0048181964084506035, -0.005352077540010214, -0.021567480638623238, -0.006360151804983616, -0.03077278845012188, -0.03621108457446098, 0.009331317618489265, -0.017283165827393532, 0.02250923402607441, -0.0015477585839107633, -0.013204444199800491, -0.018463673070073128, -0.003985872026532888, -0.004645762499421835, 0.004503173287957907, 0.0030209063552320004, 0.017561713233590126, -0.026117078959941864, 0.009848618879914284, -0.02292042225599289, 0.02617013454437256, -0.02142157591879368, -0.026753757148981094, 0.009589968249201775, 0.011175032705068588, -0.021819498389959335, 0.03385006636381149, 0.007043254561722279, 0.016726072877645493, 0.02041350118815899, -0.02639562450349331, -0.02014821767807007, 0.0037305373698472977, -0.008714535273611546, -0.0016406074864789844, 0.008999714627861977, -0.0021438156254589558, 0.009125723503530025, 0.0212093498557806, -0.0007204082212410867, 0.014033452607691288, 0.01469665952026844, -0.031011544167995453, 0.01039908081293106, -0.021514425054192543, 0.004274366889148951, 0.005232700612396002, -0.0014607126358896494, -0.010889853350818157, 0.01226269081234932, -0.04265745356678963, -0.0073947543278336525, -0.01866263523697853, -0.01488235779106617, -0.009397638030350208, 0.005262544844299555, -0.008230394683778286, -0.007361594121903181, 0.00443022046238184, -0.002659458667039871, -0.027403699234128, -0.008973185904324055, 0.014457905665040016, 0.004536333493888378, -0.016619959846138954, 0.007494235411286354, -0.026767021045088768, 0.008833913132548332, -0.0013048590626567602, 0.02176644280552864, 0.0071162073872983456, -0.004542965441942215, 0.03138294070959091, 0.003926183562725782, -0.03671512007713318, 0.00944406259804964, 0.009185411967337132, 0.008091120980679989, 0.005972175858914852, -0.0009019610588438809, 0.0018205023370683193, -0.009311421774327755, 0.015452715568244457, 0.012965690344572067, -0.018569786101579666, 0.023676477372646332, 0.008515573106706142, -0.018742220476269722, 0.00908593088388443, 0.0016107631381601095, -0.0018287923885509372, 0.02232353575527668, 0.0018735588528215885, 0.02883622609078884, -0.0054880352690815926, 0.0015535616548731923, -0.005574251990765333, -0.03522953763604164, 0.011466843076050282, 0.015532299876213074, -0.011606116779148579, 0.003173443954437971, -0.03544176369905472, -0.01971050165593624, 0.03207267448306084, -0.005358709953725338, -0.0031668117735534906, -0.014524226076900959, -0.02643541805446148, 0.019989049062132835, 0.006579010281711817, -0.03204614669084549, -0.006877453066408634, 0.007885526865720749, 0.03156863898038864, -0.0244192685931921, -0.013104964047670364, 0.00017999843112193048, 0.014444640837609768, -0.0038631788920611143, 0.03538870811462402, 0.011659173294901848, 0.010823532938957214, 0.02505594678223133, -0.007766149938106537, 0.002740701427683234, -0.018012693151831627, -0.02187255583703518, 0.04727337136864662, -0.01177855022251606, 0.014139565639197826, -0.004261102993041277, -0.021076707169413567, -0.017097467556595802, -0.010292967781424522, -0.00036890871706418693, -0.009676185436546803, -0.017667826265096664, 0.010412344709038734, 0.013211077079176903, 0.009225204586982727, -0.004443484824150801, 0.014192622154951096, 0.025865059345960617, 0.010418976657092571, 0.013297293335199356, 0.01428547129034996, 0.000287665898213163, -0.0007220662664622068, -0.016699543222784996, 0.0073947543278336525, -0.002656142693012953, -0.010578146204352379, -0.002031070413067937, 0.008674743585288525, 0.00762024475261569, -0.005640572868287563, -0.006758075673133135, -0.007328433450311422, 0.03183392062783241, 0.011281145736575127, 0.009841986931860447, 0.009397638030350208, 0.02867705561220646, 0.010173589922487736, -0.0025284753646701574, -0.019113615155220032, -0.010153694078326225, 0.008004904724657536, -0.007925319485366344, -0.028279131278395653, 0.01510784775018692, -0.017230108380317688, 0.02606402151286602, -0.009875147603452206, 0.010949541814625263, -0.010962805710732937, -0.0070565189234912395, -0.004834776744246483, 0.0194054264575243, 0.013151387684047222, 0.03406229242682457, -0.01351615134626627, -0.032444071024656296, 0.0068641891703009605, -0.005219436250627041, 0.02370300702750683, -0.017707617953419685, 0.016049601137638092, 0.035203009843826294, 0.001805580104701221, 0.0055609880946576595, -0.6022977828979492, -0.018529994413256645, -0.0051862760446965694, 0.00599207216873765, 0.0314890518784523, 0.010458769276738167, 0.008402828127145767, 0.028650527819991112, -0.04095964506268501, 0.03931489214301109, -0.00623414246365428, 0.009165516123175621, -0.012527973391115665, -0.0037338535767048597, -0.005607412196695805, -0.035653989762067795, 0.011453579179942608, -0.0021836080122739077, 0.00432742340490222, 0.02265513874590397, -0.026342568919062614, 0.01851673051714897, -0.01730969361960888, -0.00811764970421791, 0.0207848958671093, 0.008389564231038094, -0.0005173012032173574, -0.004088669084012508, 0.00011264150816714391, 0.0524994395673275, -0.034831613302230835, 0.021885819733142853, 0.005547723732888699, -0.003294479101896286, 0.047352954745292664, -0.011917823925614357, -0.034460216760635376, 0.014086509123444557, -0.016168978065252304, 0.045946959406137466, -0.02018801122903824, -0.016739336773753166, 0.005846166517585516, 0.003846598556265235, 0.014113037846982479, 0.015877166762948036, 0.021288933232426643, -0.039925042539834976, -0.0019564596004784107, 0.02703230269253254, -0.010697523131966591, -0.014736452139914036, 0.02804037742316723, -0.012023936957120895, 0.004645762499421835, 0.009311421774327755, 0.02774856612086296, -0.029870828613638878, 0.006492793094366789, -0.021381782367825508, -0.01131430547684431, 0.011201560497283936, 0.005219436250627041, -0.00346857076510787, -0.034009236842393875, 0.022164367139339447, -0.012607558630406857, -0.012567766010761261, -0.002697593066841364, -0.029791243374347687, -0.0002499460242688656, -0.013662056997418404, -0.0020907591097056866, -0.009357846342027187, 0.011247985064983368, 0.04005768150091171, 0.026117078959941864, -0.012972322292625904, -0.003428778378292918, 0.01329066138714552, 0.014258943498134613, -0.0008198892464861274, -0.004602654371410608, -0.030454449355602264, 0.013270765542984009, -0.00031813193345442414, -0.03223184496164322, -0.0012227873085066676, 0.0027639137115329504, 0.010843428783118725, 0.021408310160040855, 0.008495677262544632, 0.005905855447053909, -0.032099202275276184, 0.019246257841587067, 0.0159700158983469, 0.004801616072654724, -0.006045128684490919, -0.010007788427174091, 0.006884085014462471, -0.027960792183876038, 0.02273472398519516, -1.334185253654141e-05, 0.004735295660793781, 0.004025664646178484, 0.0004051778232678771, -0.02168685756623745, -0.019193200394511223, 0.026793548837304115, -0.011997408233582973, 0.0023212232626974583, -0.01557209249585867, -0.009430798701941967, -0.0034420425072312355, 0.013330454006791115, -0.03339908644556999, 0.006741495802998543, 0.011844870634377003, 0.008303347043693066, -0.017256638035178185, 0.011957616545259953, 0.0035581036936491728, -0.006472897250205278, -0.013688585720956326, 0.009895043447613716, 0.013741642236709595, 0.036741647869348526, -0.01492214947938919, 0.0035149953328073025, 0.007633508648723364, -0.00613134540617466, 0.0021288932766765356, 0.02187255583703518, -0.0010171931935474277, 0.014802772551774979, 0.011460211127996445, 0.007408018223941326, -0.00302919652312994, 0.018052484840154648, 0.0010536696063354611, -0.0021885819733142853, 0.0019017450977116823, 0.006021916400641203, 0.001765787717886269, 0.01557209249585867, -0.035282593220472336, -0.018967710435390472, -0.012441757135093212, -0.01538639422506094, 0.009861882776021957, 0.012176474556326866, 0.020241066813468933, -0.0037504336796700954, 0.022230686619877815, -0.027244528755545616, 0.003324323333799839, -0.020333915948867798, -0.01794637180864811, 0.005020474549382925, -0.025307966396212578, -0.009530279785394669, 0.015320073813199997, -0.023981552571058273, -0.004383795894682407, -0.015771053731441498, -0.02719147317111492, 0.0034121982753276825, -0.004911045543849468, -0.01538639422506094, -0.024406004697084427, 0.005892591085284948, 0.015054791234433651, 0.004058824852108955, -0.008973185904324055, 0.0058428505435585976, 0.003088884986937046, -0.017110731452703476, 0.0034453587140887976, -0.009596600197255611, 0.004048876464366913, 0.0061346618458628654, 0.014497697353363037, 0.0069968304596841335, 0.0010312863159924746, 0.014908885583281517, 0.029234150424599648, 0.02487025037407875, 0.010233278386294842, -0.029074979946017265, -0.007447810843586922, -0.005362025927752256, 0.010332759469747543, 0.011493371799588203, 0.007779414299875498, 0.016049601137638092, 0.017283165827393532, 0.015996545553207397, 0.026408888399600983, -0.005998704116791487, 0.030878901481628418, 0.021925611421465874, 0.011513267643749714, -0.006910613272339106, -0.024260099977254868, 0.02250923402607441, -0.0253477580845356, -4.652809366234578e-05, -0.010830164887011051, 0.023092856630682945, 0.01872895658016205, -0.004363900050520897, -0.03796194866299629, -0.02292042225599289, 0.0027174893766641617, 0.032550182193517685, 0.010160326026380062, -0.025944644585251808, 0.007898791693150997, -0.01447116956114769, 0.009550175629556179, 0.0021836080122739077, 0.006804500240832567, 0.019869672134518623, -0.014391584321856499, 0.019087087363004684, 0.0006188547122292221, 0.01258103083819151, 0.01441811304539442, -0.0037404855247586966, -0.023623421788215637, -0.015001734718680382, -0.006665227003395557, 0.005942331627011299, -0.0035249434877187014, 0.027881208807229996, -0.030427921563386917, 0.033452145755290985, -0.015359866432845592, 0.010239911265671253, 0.0023643318563699722, 0.02086448110640049, 0.003919551149010658, -0.011340834200382233, -0.00791205558925867, 0.024127459153532982, 0.007328433450311422, 0.05170359089970589, 0.027987321838736534, -0.025639569386839867, 0.006363467779010534, -0.039951570332050323, -0.019272785633802414, -0.0415167361497879, 0.013118227943778038, 0.017773939296603203, 0.005667101126164198, 0.0020891008898615837, 0.007998272776603699, 0.009689449332654476, 0.02038697339594364, 0.018914654850959778, 0.02142157591879368, 0.0023676478303968906, 0.010724051855504513, -0.006897349376231432, -0.024432534351944923, -0.006943773943930864, -0.00865484680980444, -0.00985525082796812, -0.015452715568244457, -0.001227761385962367, 0.006943773943930864, 0.03249712660908699, -0.017455600202083588, -0.005000578239560127, -0.007520763669162989, 0.0015485875774174929, 0.015638412907719612, 0.019232993945479393, -0.008104385808110237, -0.00865484680980444, -0.01220963429659605, 0.03788236528635025, -0.010777108371257782, 0.014723188243806362, 0.009822091087698936, -0.01724337413907051, 0.0027987321373075247, 0.0044202725403010845, 0.0207848958671093, -0.008727800101041794, 0.014232414774596691, 0.010982702486217022, 0.0036012122873216867, -0.012249426916241646, -0.015452715568244457, 0.021673593670129776, -0.0059290677309036255, -0.020970594137907028, -0.0092384684830904, 0.00901297852396965, -0.006903981324285269, -0.029446376487612724, -0.013914075680077076, 0.052074987441301346, 0.013489623554050922, -0.012680510990321636, -0.008535469882190228, 0.017044411972165108, -0.02154095284640789, -0.011201560497283936, 0.0006677662022411823, -0.011473475024104118, -0.00970271322876215, -0.028093434870243073, 0.011155135929584503, 0.022893894463777542, -0.01260092668235302, 0.03780277818441391, 0.028173018246889114, -0.020479822531342506, -0.015996545553207397, -0.0014971890486776829, 0.009377742186188698, -0.0008837228524498641, 0.02127566933631897, 0.003956027794629335, -0.004513121210038662, -0.015306809917092323, -0.015346602536737919, -0.044063448905944824, -0.010923014022409916, 0.001271698740310967, -0.0264752097427845, 0.014762979932129383, -0.019060559570789337, 0.017561713233590126, -0.028226075693964958, 0.020519614219665527, -0.02012168988585472, 0.002462154719978571, 0.002584847854450345, 0.013456462882459164, -0.019153408706188202, 0.007474339101463556, 0.000448908016551286, 0.004645762499421835, 0.00914562027901411, 0.01786678656935692, -0.0007668327307328582, 0.005866062827408314, 0.023504044860601425, 0.018529994413256645, 0.0007817548466846347, -0.021832764148712158, 0.011234721168875694, -0.012700407765805721, 0.030905431136488914, 0.011433682404458523, 0.02292042225599289, 0.005985440220683813, 0.060378335416316986, -0.02164706587791443, -0.006844292860478163, -0.00679786829277873, 0.04982008412480354, 0.011559692211449146, -0.023212233558297157, 0.005557671654969454, 0.0022250583861023188, -0.006787920370697975, -0.005335497669875622, 0.009550175629556179, -0.02306632697582245, 0.015479243360459805, 0.012587662786245346, -0.05507268011569977, 0.02520185336470604, -0.013038642704486847, 0.03270935267210007, -0.03549481928348541, 0.005315601360052824, -0.005391870159655809, -0.012269323691725731, 0.005637256428599358, -0.025002891197800636, -0.008369668386876583, -0.008237026631832123, -0.004748559556901455, -0.026528267189860344, 0.0007054861052893102, -0.025029418990015984, -0.03889044001698494, -0.0071162073872983456, 0.002157079754397273, -0.06159863620996475, -0.02273472398519516, 0.022602083161473274, 0.022615347057580948, 0.016129186376929283, 0.020771631971001625, 0.009503751061856747, -0.012992218136787415, 0.03196655958890915, -0.01742907054722309, -0.018198391422629356, 0.02232353575527668, 0.0006735692732036114, 0.019909463822841644, -0.021434839814901352, 0.011891295202076435, 0.005869378801435232, 0.004350635688751936, 0.033637840300798416, 0.011407154612243176, 0.011606116779148579, 0.013980396091938019, 0.017826994881033897, -0.002062572631984949, -0.0022549026180058718, -0.003398934146389365, 0.007434546481817961, 0.011957616545259953, -0.0009301473619416356, 0.006360151804983616, -0.044965412467718124, 0.010564882308244705, -0.020201275125145912, -0.013522784225642681, -0.009941468015313148, 0.008608422242105007, 0.009848618879914284, -0.026634380221366882, 0.017734145745635033, 0.021753178909420967, -0.0020592566579580307, 0.018782012164592743, 0.005259228870272636, 0.021633801981806755, -0.004605970345437527, 0.002685986924916506, 0.008343139663338661, -0.013350349850952625, -0.010054212994873524, 0.009994524531066418, -0.020015576854348183, 0.019246257841587067, 0.02000231295824051, 0.014232414774596691, 0.0006412379443645477, -0.01405998133122921, -0.03223184496164322, -0.018039220944046974, 0.030083054676651955, 0.0017608136404305696, 0.0023726217914372683, -0.0015834058867767453, -0.014378320425748825, -0.0180259570479393, 0.0005015500355511904, -0.017933107912540436, 0.016513846814632416, -0.01788005232810974, -0.029817771166563034, -0.028544414788484573, -0.007858999073505402, -0.0060617090202867985, -0.004794984124600887, -0.024618230760097504, -0.022031724452972412, -0.01712399534881115, 0.00472203129902482, 0.01720358058810234, 0.013343717902898788, 0.021819498389959335, 0.0003883904137182981, -0.04398386552929878, -0.007580452132970095, 0.010173589922487736, -0.04005768150091171, -0.013330454006791115, -0.00990830734372139, 0.010438872501254082, 0.0253477580845356, 0.027987321838736534, 0.030507506802678108, -0.005139851476997137, -0.011334202252328396, -0.003122045425698161, 0.010425608605146408, -0.006469580810517073, 0.01675260066986084, 0.008051329292356968, 0.02300000749528408, -0.016885241493582726, 0.009841986931860447, 0.013741642236709595, -0.001765787717886269, -0.005255912896245718, 0.032178785651922226, -0.015611885115504265, 0.004254470579326153, -0.0075406599789857864, -0.04117187112569809, -0.01765456050634384, -0.021567480638623238, -0.0106046749278903, 0.0038764430209994316, -0.005766581743955612, -0.019206464290618896, -0.009709345176815987, -0.00242070434615016, 0.02984429895877838, 0.03297463431954384, 0.015465979464352131, -0.011175032705068588, -0.005876011215150356, -0.0036177923902869225, 0.012793256901204586, -0.011871399357914925, 0.0030441186390817165, -0.016845449805259705, 0.02729758620262146, 0.01578431949019432, 0.009185411967337132, 0.014617075212299824, -0.0030457766260951757, 0.01593022421002388, -0.007520763669162989, 0.03032180853188038, -0.014842565171420574, -0.01701788231730461, -0.013993660919368267, -0.012680510990321636, -0.019047295674681664, -0.017150525003671646, 0.0018022641306743026, 0.004204730037599802, 0.002301327185705304, 0.007494235411286354, 0.01497520599514246, 0.007991639897227287, 0.0076600369065999985, -0.010850060731172562, 0.0022698247339576483, -0.034088823944330215, 0.04300231859087944, 0.01578431949019432, 0.024100929498672485, 0.005597464274615049, 0.014205886982381344, -0.002599770203232765, -0.026528267189860344, -0.013807962648570538, -0.004576126113533974, 0.030242223292589188, 0.0566113218665123, -0.00755392387509346, -0.02624971978366375, -0.005153115838766098, 0.007626876700669527, -0.013768170028924942, -0.02886275388300419, 0.012070361524820328, 0.0041549899615347385, -0.013536048121750355, -0.028783168643712997, 0.0023444355465471745, -0.037113044410943985, 0.007805942557752132, -0.01967070996761322, -0.00150713708717376, -0.015877166762948036, -0.005182960070669651, -0.011831606738269329, 0.014219150878489017, -0.01557209249585867, 0.013701849617064, 0.0061346618458628654, 0.002135525457561016, -0.004118513315916061, -0.002062572631984949, -0.034274518489837646, 0.00901297852396965, -0.0025914800353348255, 0.04525722190737724, -0.015001734718680382, -0.01179844606667757, 0.018529994413256645, -0.0003535720461513847, -0.0024240203201770782, -0.02307959273457527, -0.002019464271143079, 0.049156878143548965, 0.00504700280725956, 0.0021902399603277445, -0.007275376934558153, 0.01226269081234932, 0.017787203192710876, 0.004937573801726103, 0.0044501167722046375, 0.008707903325557709, -0.02026759646832943, -0.009457327425479889, 0.021965404972434044, -0.021487895399332047, 0.019100351259112358, -0.019312577322125435, -0.01693829894065857, -0.015903696417808533, -0.032258372753858566, 0.005653836764395237, 0.010054212994873524, -0.041861604899168015, -0.014524226076900959, -0.001908377162180841, -0.02674049325287342, 0.005587516352534294, 0.00640326039865613, 0.0014839249197393656, 0.010763844475150108, 0.05714188516139984, -0.0210103876888752, -0.01047203317284584, 0.0061645060777664185, 0.005491351243108511, -0.022641874849796295, -0.01730969361960888, -0.0035348914097994566, -0.027271058410406113, 0.012017305009067059, -0.02086448110640049, 0.010578146204352379, -0.02491004206240177, 0.007925319485366344, 0.020731840282678604, 0.005222752690315247, 0.011884663254022598, 0.037749722599983215, 0.012229531072080135, 0.009696081280708313, -0.000401447294279933, -0.035282593220472336, -0.006562429945915937, 0.017734145745635033, -0.007547291927039623, 0.015041527338325977, -0.008422724902629852, -0.0009649656713008881, -0.009331317618489265, 0.004556229803711176, 0.00794521626085043, -0.016500581055879593, -0.048812009394168854, 0.006257354747503996, -0.012455021031200886, -0.03002999722957611, -0.01656690239906311, -0.026647644117474556, -0.015054791234433651, -0.030348336324095726, -0.0033591417595744133, 0.018158597871661186, -0.0013438224559649825, -0.014895621687173843, 0.04753865301609039, -0.006088237278163433, 0.014431376941502094, 0.003956027794629335, -0.0305870920419693, -0.015651676803827286, -0.025599777698516846, -0.019020767882466316, -0.019100351259112358, -0.030056525021791458, 0.047352954745292664, -0.0011896269861608744, -0.017813730984926224, -0.020572669804096222, -0.02281430922448635, -0.02528143860399723, -0.014842565171420574, -0.007819206453859806, 0.015147640369832516, 0.05175664648413658, 0.008833913132548332, -0.010976070538163185, -0.0013040300691500306, -0.01675260066986084, 0.0015228883130475879, -0.007235584780573845, 0.0016522136284038424, -0.006552482023835182, -0.017415806651115417, -0.011148503981530666, -0.011533163487911224, -0.004297579172998667, 0.004665658809244633, 0.0073218015022575855, -0.011924455873668194, 0.006668542977422476, 0.02123587764799595, 0.012322380207479, 0.011990776285529137, -0.014935414306819439, -0.029048452153801918, -0.0048613050021231174, 0.010558250360190868, 0.027350643649697304, -0.03448674827814102, 0.013542680069804192, 0.01660669408738613, 0.005063582677394152, -0.008336507715284824, 0.015147640369832516, -0.007228952832520008, -0.0070565189234912395, 0.015253753401339054, -0.028809698298573494, -0.011566324159502983, -0.013662056997418404, -0.013847755268216133, 0.029817771166563034, -0.004257786553353071, -0.007905423641204834, 0.01730969361960888, -0.009019610472023487, 0.0015659966738894582, -0.008568629622459412, 0.017097467556595802, -0.011267880909144878, 0.01712399534881115, 0.00893339328467846, -0.008959922008216381, -0.005909171421080828, 0.012746832333505154, -0.007076415233314037, -0.003839966608211398, -0.007374858018010855, 0.01136736199259758, 0.005902539473026991, -0.05777856335043907, 0.014988470822572708, 0.02427336387336254, 0.0020973910577595234, -0.02045329287648201, -0.011858135461807251, -0.014272207394242287, 0.00906603503972292, -0.03276240825653076, -0.010631202720105648, -0.0369538739323616, 0.024472326040267944, 0.013754906132817268, 0.012441757135093212, -0.03899655118584633, 0.03002999722957611, 0.030189167708158493, -0.007036622613668442, -0.002790441969409585, 0.2491534799337387, -0.011029127053916454, 0.00970271322876215, 0.031542107462882996, 0.020479822531342506, 0.007825838401913643, 0.02240312099456787, 0.0006171967252157629, -0.012315747328102589, 0.0017525235889479518, 0.0028385245241224766, -0.00962976086884737, -0.01054498553276062, -0.008920129388570786, 0.0130121149122715, -0.029791243374347687, -0.021700121462345123, -0.021739915013313293, -0.03613149747252464, -0.009205308742821217, 0.04464707151055336, -0.00640326039865613, -0.006957037840038538, -0.01734948717057705, -0.0035216272808611393, 0.001318952301517129, -0.005425030365586281, 0.01246828492730856, 0.015068055130541325, -0.016460789367556572, -0.029632072895765305, 0.027987321838736534, -0.004705451428890228, -0.011155135929584503, -0.0015204012161120772, -0.02662111632525921, 0.0593702606856823, 0.021395046263933182, 0.021036915481090546, 0.006462948862463236, -0.01170559786260128, -0.010306231677532196, -0.016805656254291534, -0.01973702944815159, -0.01829124055802822, 0.02236332930624485, -0.0006437249830923975, -0.0194054264575243, 0.027324113994836807, 0.013993660919368267, -0.028358716517686844, -0.019962521269917488, 0.04830797389149666, 0.016102658584713936, -0.008920129388570786, -0.01705767586827278, 0.054913513362407684, -0.007023358717560768, 0.01786678656935692, 0.02246944233775139, -0.010166957974433899, 0.03353172913193703, -0.022827573120594025, 0.023013271391391754, -0.01205709669739008, 0.012256058864295483, -0.02075836807489395, 0.028968866914510727, -0.018370823934674263, -0.0036575847771018744, -0.0017458915244787931, -0.0015204012161120772, -0.002185265999287367, -0.0005624821642413735, -0.013900811783969402, -0.03398270905017853, 0.044249147176742554, 0.02162053808569908, 0.020174747332930565, 0.039102666079998016, 0.015200696885585785, 0.006582326255738735, 0.0048778848722577095, -0.002531791338697076, -0.007673301268368959, -0.028358716517686844, 0.012521341443061829, -0.004967418033629656, -0.006764708086848259, 0.0017376014729961753, 0.011878031305968761, -0.01405998133122921, 0.0046722907572984695, -0.011015862226486206, -0.012123418040573597, 0.016248563304543495, 0.010286334902048111, 0.013993660919368267, -0.016765864565968513, 0.0037902260664850473, -0.0244192685931921, 0.02875664085149765, 0.025414079427719116, 0.026382360607385635, -0.016805656254291534, -0.0007602006080560386, 0.014245678670704365, 0.0014897279907017946, -0.01226269081234932, -0.013224340975284576, 0.013337085954844952, -0.0410657562315464, -0.008157442323863506, 0.005965543910861015, -0.005282441154122353, 0.036476366221904755, -0.027350643649697304, -0.0230397991836071, -0.005242648534476757, 0.009762401692569256, 0.03698040172457695, -0.01004094909876585, -0.014484433457255363, -0.002392518101260066, -0.006618802435696125, -0.012554502114653587, -0.02400808036327362, -0.01724337413907051, -0.02505594678223133, -0.035203009843826294, 0.0021438156254589558, -0.00824365857988596, 0.02598443627357483, -0.008767591789364815, 0.00860179029405117, 0.009205308742821217, -0.0003446602204348892, 0.009875147603452206, -0.008157442323863506, -0.00575000187382102, 0.0017724197823554277, 0.01071078795939684, -0.02415398694574833, 0.005925751756876707, -0.015253753401339054, -0.027695510536432266, -0.0026959350798279047, -0.005587516352534294, 0.00024269218556582928, -0.009769034571945667, -0.04663669317960739, -0.019126880913972855, 0.016765864565968513, 0.01724337413907051, 0.016222035512328148, -0.012050464749336243, -0.022204158827662468, -0.047167256474494934, 0.0032580026891082525, 0.024512117728590965, -0.01730969361960888, -0.01765456050634384, 0.019564596936106682, -0.033823538571596146, -0.012355539947748184, -0.018636107444763184, -0.1670219600200653, 0.0019465115619823337, 0.02666090801358223, -0.03156863898038864, 0.032364483922719955, 0.0013239262625575066, 0.005604096222668886, -0.02014821767807007, 0.008051329292356968, -0.009656288661062717, 0.01052508968859911, 0.002679354976862669, -0.018331032246351242, -0.012070361524820328, -0.007195792160928249, 0.006585642229765654, -0.006698387209326029, 0.021633801981806755, 0.05029759183526039, -0.0018917970592156053, 0.06234142556786537, -0.02318570576608181, -0.007228952832520008, 0.014855829067528248, -0.00045056603266857564, 0.0045694936998188496, -0.012269323691725731, -0.02135525457561016, -0.005076847039163113, -0.030109582468867302, -0.014603810384869576, -0.007010094355791807, 0.00308059505186975, -0.009318053722381592, -0.00015274478937499225, -0.022031724452972412, 0.010664363391697407, 0.0017392594600096345, -0.02300000749528408, 0.00412182928994298, -0.0028252603951841593, 0.03713957220315933, 0.026647644117474556, -0.014404849149286747, 0.019790086895227432, 0.016500581055879593, -0.012985586188733578, -0.00852883793413639, 0.005623992532491684, -0.006804500240832567, 8.652774704387411e-05, -0.02355710044503212, -0.023915233090519905, 0.0005628966609947383, 0.05486045405268669, 0.007726357784122229, 0.01510784775018692, 0.009802194312214851, -0.006831028498709202, -0.011732125654816628, 0.004363900050520897, -0.02620992809534073, 0.006496109068393707, -0.0016663067508488894, -0.02404787391424179, 0.001969723729416728, 0.01039244793355465, 0.017442334443330765, -0.0043174754828214645, 0.014564018696546555, 0.002629614435136318, -0.022986743599176407, -0.00700346240773797, -0.025400815531611443, 0.028968866914510727, -0.023530572652816772, -0.0228408370167017, 0.03278893604874611, 0.026117078959941864, 0.0047883521765470505, -0.014537489973008633, 0.03719262778759003, -0.0014010240556672215, -0.034380633383989334, 0.011274512857198715, 0.02680681273341179, -0.002811996266245842, -0.006976934149861336, -0.026024229824543, -0.01936563476920128, 0.01196424849331379, -0.0028783169109374285, -0.017402542755007744, -0.01652711071074009, 0.01619550585746765, -0.010704155080020428, -0.004294263198971748, -0.001825476298108697, -0.030242223292589188, -0.018185127526521683, 0.002301327185705304, -0.007905423641204834, -0.011201560497283936, 0.028597470372915268, 0.025891589000821114, 0.022495970129966736, -0.015983279794454575, 0.018835069611668587, 0.03196655958890915, -0.004924309439957142, -0.030560562387108803, 0.022204158827662468, 0.019644182175397873, 0.03347867354750633, 0.022893894463777542, 0.031621694564819336, 0.0004916019388474524, 0.011102079413831234, -0.011387258768081665, 0.01697809062898159, -0.00012165697262389585, -0.014630339108407497, -0.0005993730155751109, 0.03201961889863014, 0.024021346122026443, -0.020055368542671204, -0.0656839907169342, -0.01944522000849247, -0.01047203317284584, 0.02493656985461712, -0.0023759377654641867, 0.023570364341139793, -0.0017574976664036512, 0.00453301751986146, -0.0031270193867385387, 0.021103236824274063, 0.0053487615659832954, -0.028464829549193382, 0.0015668257838115096, 0.0005745027447119355, -0.018649371340870857, 0.012076993472874165, 0.020917538553476334, -0.009284893050789833, 0.008628319017589092, 0.009609864093363285, -0.009815458208322525, 0.00030818383675068617, -0.012521341443061829, -0.013376878574490547, 0.0024538645520806313, -0.010412344709038734, -0.022986743599176407, 0.006045128684490919, 0.021779706701636314, 0.009994524531066418, 0.026382360607385635, 0.017681090161204338, -0.01876874826848507, -0.009105827659368515, -0.01239533256739378, 0.013967132195830345, -0.02415398694574833, -0.033186860382556915, 0.026302775368094444, -0.018649371340870857, -0.012554502114653587, -0.015983279794454575, -0.013350349850952625, -0.004211362451314926, -0.01753518357872963, -0.02355710044503212, -0.010578146204352379, 0.026687435805797577, -0.003614476416260004, -0.013967132195830345, -0.03897002339363098, 0.0050105261616408825, -0.006476213224232197, -0.006320359650999308, 0.013522784225642681, 0.036847762763500214, 0.007573820184916258, 0.020466556772589684, -0.021302197128534317, 0.0027804940473288298, 0.026727229356765747, 0.0013910760171711445, -0.02246944233775139, 0.031913504004478455, -0.002893239026889205, 0.021448103711009026, -0.016474053263664246, -0.02411419339478016, 0.014099773950874805, 0.002094075083732605, -0.004453432746231556, 0.020466556772589684, -0.02427336387336254, 0.02449885383248329, -0.025414079427719116, 0.0033724058885127306, -0.013456462882459164, -0.02883622609078884, 0.04565514624118805, -0.003992503974586725, -0.012866209261119366, -0.013429935090243816, 0.017442334443330765, 0.002667748834937811, 0.026528267189860344, 0.005007210187613964, -0.006811132188886404, -0.009046139195561409, 0.010763844475150108, -0.04600001499056816, 0.0024090982042253017, 0.004576126113533974, 0.002676038770005107, -0.013635529205203056, 0.0041848341934382915, -0.0030606987420469522, -0.014908885583281517, -0.014232414774596691, -0.019657446071505547, 0.019723765552043915, -0.02857094258069992, -0.03568051755428314, -0.09162863343954086, 0.015187432989478111, -0.004602654371410608, -0.016208771616220474, 0.019989049062132835, -0.004344003740698099, 0.011320937424898148, -0.012501445598900318, 0.006482845172286034, -0.008004904724657536, -0.019166672602295876, 0.012222899124026299, -0.0009981259936466813, -0.013277397491037846, -0.0296586025506258, -0.00012041346053592861, 0.016314884647727013, 0.018039220944046974, 0.0045529138296842575, 0.00886044092476368, 0.0031883660703897476, -0.0159700158983469, 0.0016397784929722548, 0.012275955639779568, -0.006877453066408634, 0.01839735358953476, -0.0014748057583346963, 0.01524048950523138, -0.008648214861750603, -0.03032180853188038, -0.006343571934849024, -0.0004741927550639957, -0.002636246383190155, -0.0013023720821365714, -0.010869957506656647, 0.002813654253259301, -0.009039507247507572, 0.007739621680229902, 0.010233278386294842, 0.03331950306892395, -0.019975785166025162, -0.016275091096758842, 0.014895621687173843, -0.00523601658642292, 0.005803058389574289, -0.023543836548924446, 0.00231790728867054, 0.014258943498134613, 0.0021206033416092396, 0.03607844188809395, 0.009536911733448505, 0.025639569386839867, -0.012514709495007992, -0.028517886996269226, -0.0017691038083285093, -0.05133219435811043, 0.0023676478303968906, 0.014497697353363037, -0.005106691271066666, -0.024220306426286697, 0.021249141544103622, 0.009503751061856747, 0.0028667107690125704, -0.001817186246626079, 0.006273935083299875, -0.013509519398212433, -0.023994816467165947, -0.011247985064983368, 0.02094406634569168, -0.04318801686167717, -0.01720358058810234, -0.025639569386839867, 0.014762979932129383, 0.018079014495015144, 0.017734145745635033, 0.003272924805060029, -0.003364115720614791, 0.008741063997149467, -0.016925033181905746, 0.021328726783394814, -0.013569207862019539, 0.021965404972434044, -0.04854672774672508, 0.008767591789364815, 0.020174747332930565, -0.012912633828818798, -0.0002119152486557141, 0.011924455873668194, -0.009848618879914284, -0.006708335597068071, -0.010797004215419292, -0.015412922948598862, -0.0014391584554687142, -0.0018520045559853315, 0.021594008430838585, 0.03743138536810875, 0.01019348669797182, 0.001550245564430952, 0.03759055212140083, 0.009337949566543102, 0.010518457740545273, -0.009576704353094101, -0.0008737747557461262, -0.02636909671127796, 0.003284530946984887, 0.011181664653122425, -0.0064894771203398705, -0.04355941340327263, 0.003005984239280224, -0.011480106972157955, -0.010087373666465282, 0.017004618421196938, -0.021222613751888275, 0.015611885115504265, -0.010631202720105648, 0.013343717902898788, -0.012647351250052452, -0.034274518489837646, -0.0401637963950634, 0.001735943485982716, 0.026262983679771423, 0.015147640369832516, 0.028889281675219536, -0.022522497922182083, 0.023915233090519905, -0.014484433457255363, 0.015943488106131554, -0.02314591221511364, 0.027456756681203842, -0.005604096222668886, -0.01357584074139595, 0.03788236528635025, -0.013861019164323807, -0.03048097901046276, -0.012892737053334713, 0.028173018246889114, -0.0102664390578866, -0.00408535310998559, 0.006555797997862101, 0.07703808695077896, 0.011307673528790474, -0.004914361517876387, 0.008760959841310978, 0.008502309210598469, -0.01029959972947836, 0.024127459153532982, 0.011380625888705254, -0.011844870634377003, -0.022482706233859062, 0.03504383936524391, -0.012667247094213963, -0.006184401921927929, -0.016845449805259705, -0.006111449562013149, 0.007301905192434788, -0.04403692111372948, 0.020028840750455856, -0.02857094258069992, 0.017681090161204338, 0.04273703694343567, 0.014510962180793285, 0.01383449137210846, -0.01720358058810234, -0.00798500794917345, -0.007401386275887489, 0.0415167361497879, 0.004307527095079422, -0.0007282838341780007, -0.012050464749336243, 0.01652711071074009, -0.005415082443505526, -0.020015576854348183, -0.01829124055802822, 0.009324685670435429, -0.0024157301522791386, -0.015081319957971573, 0.018238183110952377, 0.030083054676651955, 0.01510784775018692, 0.005521195475012064, -0.00045885611325502396, -0.006615486461669207, -0.034088823944330215, 0.02112976461648941, 0.01708420366048813, -0.0033840120304375887, 0.00558088393881917, 0.01821165531873703], "bcd5627d-3241-4022-9659-0a39c43d1017": [-0.01269571017473936, -0.020456887781620026, 0.019931642338633537, -0.0028024553321301937, -0.00793395470827818, 0.01445804350078106, -0.02450679801404476, -0.0175956878811121, 0.007816465571522713, -0.01892262138426304, 0.029026664793491364, 0.0023290442768484354, -0.014983287081122398, -0.007059699390083551, -0.028335552662611008, 0.0012319054221734405, 0.008970621041953564, -0.0007023416110314429, 0.03259279578924179, -0.006105965934693813, 0.0068592773750424385, 0.010021110065281391, 0.005027832929044962, -0.023027820512652397, -0.017623331397771835, 0.013317709788680077, -0.008583598770201206, -0.02613781951367855, 0.02193586528301239, 0.005546166095882654, 0.022295242175459862, 0.013905154541134834, -0.0064169662073254585, -0.013981176540255547, -0.013303888030350208, -0.018286798149347305, -0.017319243401288986, -0.007837199606001377, 0.028667286038398743, 0.01648990996181965, 0.010408132337033749, -0.007325777318328619, 0.015342664904892445, 0.012115176767110825, -0.030353596433997154, -0.0032965997233986855, 0.004395466297864914, -0.010463421232998371, -0.017167197540402412, 0.01584026589989662, -0.0006941346800886095, -0.0036352442111819983, -0.026953330263495445, -0.02658013068139553, -0.013269332237541676, 0.011845643632113934, -0.002083699917420745, 0.013815309852361679, -0.0426277294754982, -0.0007386249490082264, 0.0012699165381491184, 0.018687643110752106, -0.028584353625774384, -0.005466688424348831, -0.007422532886266708, -0.006634666118770838, -0.0027661719359457493, 0.02219848707318306, 0.0038529441226273775, -0.01251602079719305, 0.02396773174405098, 0.01525973156094551, 0.003607599763199687, 0.0005140138673596084, 0.032039906829595566, 0.012764820829033852, -0.03306275233626366, 0.002392972121015191, 0.00836244411766529, 0.005411399528384209, 0.00329487188719213, -0.011424065567553043, 0.017222486436367035, -0.00722902175039053, 0.03737528622150421, 0.004098288714885712, -0.03228870779275894, 0.021106531843543053, -0.006721055135130882, -0.017402175813913345, 0.012156642973423004, 0.002833555219694972, 0.006081777159124613, 0.030547108501195908, -0.008756376802921295, 0.004689188674092293, 0.027920886874198914, 0.01781684346497059, -0.0113618653267622, -0.03665652871131897, -0.015549998730421066, 0.0158817321062088, -0.002216738648712635, 0.006803988479077816, -0.02702244184911251, -0.0019903997890651226, 0.03300746530294418, -0.0037078107707202435, -0.0014020915841683745, 0.002266844268888235, -0.03508079797029495, 0.03895101696252823, 0.026428086683154106, -0.059767283499240875, -0.009419843554496765, 5.11921598445042e-06, 0.009571888484060764, -0.025059686973690987, -0.016393154859542847, 0.008839310146868229, -0.0028473774436861277, 0.009696288034319878, 0.028777863830327988, 0.0039980774745345116, 0.0024707219563424587, 0.02237817645072937, -0.0254328865557909, -0.010732954367995262, -0.020318664610385895, -0.02145208604633808, 0.052247993648052216, -0.01853559911251068, 0.02604106441140175, 0.011189088225364685, -0.007298132870346308, 0.010933376848697662, -0.019572265446186066, -0.0010867720702663064, -0.005694754887372255, -0.0028594720643013716, 0.009233243763446808, 0.019862530753016472, -0.00745017733424902, 0.020263375714421272, -0.00372508866712451, 0.026151642203330994, 0.004364366177469492, 0.00356613309122622, -0.004972544033080339, -0.0015437692636623979, 0.01592319831252098, -0.028072930872440338, 0.010712221264839172, 0.004049910698086023, -0.005366477183997631, 0.018231509253382683, 0.010152420960366726, -0.004447299521416426, -0.01091955415904522, -0.0021251665893942118, -0.0007481276988983154, 0.026289863511919975, -0.006620843894779682, 0.010276821441948414, 0.014513332396745682, 0.03463848680257797, 0.006188899278640747, -0.00793395470827818, -0.020332487300038338, -0.013725465163588524, -0.008818577043712139, -0.003367438679561019, -0.01742982119321823, 0.006316754966974258, 0.022875776514410973, 0.013193310238420963, 0.008832398802042007, 0.006537910550832748, 0.007139177061617374, -0.009143399074673653, -0.00555998831987381, -0.004920710809528828, -0.013193310238420963, 0.006154343951493502, -0.025363774970173836, -0.023055464029312134, 0.009537332691252232, 0.010891909711062908, 0.024658842012286186, -0.00473065534606576, 0.012391621246933937, 0.044203463941812515, 0.004906888585537672, 0.011244377121329308, -0.6033123135566711, -0.02666306495666504, -0.016254931688308716, 0.011997687630355358, 0.04367821663618088, 0.009129577316343784, 0.02539142034947872, 0.03427910804748535, -0.03828755393624306, 0.04611092805862427, -0.02441004291176796, 0.03162524104118347, 0.005062388256192207, -0.0005338832852430642, -0.0031445552594959736, -0.022170841693878174, -0.018742932006716728, -0.009205599315464497, -0.0017130915075540543, 0.009599532000720501, -0.026068707928061485, 0.015494709834456444, -0.013787665404379368, 0.0038598552346229553, -0.005014010705053806, -0.010981754399836063, -0.003804566338658333, -0.022322887554764748, 0.015784977003932, 0.04721670597791672, -0.04298710823059082, 0.033145684748888016, 0.017388353124260902, -0.022143198177218437, 0.049815285950899124, -0.020843910053372383, -0.0245344415307045, 0.011776532046496868, -0.0070182327181100845, 0.04613857343792915, -0.021410619840025902, -0.009115754626691341, -0.011956221424043179, -0.008148198947310448, 0.011354954913258553, 0.014762132428586483, 0.023940086364746094, -0.0199039988219738, -0.005839888472110033, 0.004233055282384157, -0.017982710152864456, -0.014402754604816437, 0.019641375169157982, -0.01972430944442749, 0.01220502145588398, 0.01207370962947607, 0.03367093205451965, -0.030989419668912888, 0.0008682082407176495, -0.023414842784404755, -0.011195998638868332, 0.012550576590001583, -0.0017061803955584764, 0.0031704718712717295, -0.026566307991743088, 0.02839084155857563, -0.006313299294561148, -0.013525043614208698, 0.01972430944442749, -0.029468975961208344, -0.012522932142019272, -0.0044507551938295364, 0.02374657616019249, -0.031072352081537247, 0.016158176586031914, 0.05454248562455177, 0.0325651541352272, -0.007111532613635063, -0.010159332305192947, 0.02551582083106041, -0.005580721888691187, -0.0030495275277644396, 0.013455932028591633, -0.01203224342316389, 0.022405819967389107, -0.010829710401594639, -0.01430599857121706, -0.012522932142019272, 0.02215702086687088, -0.005808788351714611, 0.01751275360584259, 0.015632931143045425, 0.007788821589201689, -0.032924529165029526, 0.013435198925435543, 0.030630040913820267, -0.01023535430431366, -0.012377798557281494, -0.0021493553649634123, -0.02183910831809044, -0.020816264674067497, 0.01248837634921074, 0.0013485304079949856, -0.008763288147747517, 0.014375110156834126, 0.018452664837241173, -0.026248397305607796, -0.0038494884502142668, 0.013815309852361679, -0.01220502145588398, -0.002745438599959016, -0.005788055248558521, 7.375450513791293e-05, -0.014361287467181683, 0.017167197540402412, -0.03485964238643646, 0.014623910188674927, 0.021120354533195496, 0.015467065386474133, -0.008175843395292759, 0.01666959933936596, 0.014292176812887192, 0.004913799464702606, -0.016379332169890404, 0.013165665790438652, 0.01653137616813183, 0.01848031021654606, -0.008473021909594536, -0.013967353850603104, 0.0029804164078086615, -0.0047997660003602505, 0.010408132337033749, 0.013020532205700874, -0.006219999399036169, 9.686353587312624e-05, 0.00681089935824275, 0.013027443550527096, -0.014831243082880974, 0.016254931688308716, -0.01606142148375511, -0.03151466324925423, -0.00511767715215683, 0.010940288193523884, -0.023718930780887604, 0.023953909054398537, -0.03828755393624306, -0.009592621587216854, 0.004157032817602158, 0.0027056997641921043, 0.02268226444721222, 0.0006453249370679259, -0.0034607385750859976, -0.014209243468940258, 0.02374657616019249, -0.008763288147747517, 0.011672865599393845, -0.0099519994109869, -0.017761554569005966, 0.007906310260295868, -0.01001419872045517, -0.00244826078414917, 0.024216530844569206, -0.006924932822585106, -0.011921665631234646, -0.01932346448302269, -0.005024377256631851, -0.018231509253382683, 0.016337865963578224, -0.022309064865112305, -0.017581865191459656, 0.007104621734470129, -0.001767516485415399, 0.01799653097987175, 7.984222065715585e-06, 0.0016552109736949205, -0.002351505449041724, -0.02604106441140175, 0.0009640998905524611, -0.02105124294757843, -0.014568621292710304, -0.0052420771680772305, 0.032261062413454056, 0.01474830973893404, -0.001034074928611517, 0.03284159675240517, 0.023677464574575424, 0.021687064319849014, 0.005003644153475761, -0.020083686336874962, -0.0011852554744109511, -0.017015153542160988, 0.015605287626385689, 0.002754077548161149, 0.020069865509867668, 0.00531809963285923, 0.004042999818921089, 0.009482043795287609, 0.032703373581171036, 0.018231509253382683, 0.05072754994034767, 0.023815685883164406, 0.012896131724119186, -0.005411399528384209, -0.029081953689455986, 0.029468975961208344, -0.02839084155857563, -0.00924015510827303, -0.0068281772546470165, 0.039725061506032944, 0.0011247831862419844, -0.008873865939676762, -0.05161217227578163, -0.023096932098269463, -0.015674399212002754, 0.036684174090623856, 0.012239576317369938, -0.01644844375550747, 0.0253361314535141, -0.00210616085678339, 0.02776884101331234, 0.016476087272167206, 0.016572842374444008, 0.01883968710899353, -0.015508531592786312, 0.03245457634329796, -0.004243421833962202, 0.004616621881723404, 0.03112764097750187, 0.002823188668116927, -0.012453821487724781, -0.016959864646196365, -0.02521173097193241, 0.006361677311360836, -0.0052628107368946075, 0.03372621908783913, -0.0046408106572926044, 0.037568796426057816, -0.023511597886681557, 0.026469552889466286, 0.006655399221926928, -0.00017558540275786072, 0.012218843214213848, 0.00910884328186512, -0.019655197858810425, 0.025640219449996948, 0.01320022065192461, 0.05722399428486824, 0.017899775877594948, -0.03502550721168518, -0.00622345507144928, -0.016462264582514763, 0.002914760960265994, -0.030657686293125153, 0.01470684353262186, 0.017581865191459656, 0.01795506477355957, 0.024023020640015602, 0.0008720957557670772, 0.010981754399836063, 0.023373376578092575, 0.007505465764552355, 0.016379332169890404, 0.0023756942246109247, 0.008991355076432228, 0.006441154982894659, -0.008970621041953564, 0.0007990971207618713, -0.024161241948604584, -0.01158302091062069, -0.009938176721334457, -0.01781684346497059, -0.015798797830939293, 0.002487999852746725, 0.017844486981630325, -0.0017381443176418543, -0.0016802637837827206, 0.0006651944131590426, 0.03140408545732498, 0.028363198041915894, 0.004347088281065226, -0.02237817645072937, -0.018245331943035126, 0.03215048462152481, -0.01980724185705185, 0.009385287761688232, 0.004481855314224958, -0.03328390792012215, -0.0055634439922869205, -0.006289110518991947, 0.020622754469513893, -0.008790932595729828, 0.009537332691252232, -0.00019329512724652886, -0.011645221151411533, -0.009101932868361473, -0.0018452665535733104, 0.03038124181330204, -0.028335552662611008, -0.03939332813024521, 0.011016310192644596, -0.0016621220856904984, -0.015038575977087021, -0.011576110497117043, -0.0035212107468396425, 0.04815661907196045, 0.007857932709157467, -0.009965821169316769, -0.028639642521739006, 0.022765198722481728, -0.015605287626385689, 0.002703971927985549, -0.0037008996587246656, -0.014734487980604172, -0.022806664928793907, -0.019005553796887398, 0.02153502032160759, 0.02547435276210308, -0.01879822090268135, 0.02919253148138523, -0.006755610462278128, -0.007733532693237066, -0.0006785846780985594, -0.01799653097987175, 0.004588977433741093, -0.030104797333478928, 0.014983287081122398, 0.009039732627570629, -0.0026262220926582813, -0.015107687562704086, -0.012287954799830914, -0.044065240770578384, 0.010795154608786106, 0.0042295996099710464, -0.01932346448302269, -0.005546166095882654, -0.00155586376786232, 0.008922243490815163, -0.018646176904439926, 0.03002186305820942, 0.0002111128269461915, -0.004924166016280651, -0.0073810662142932415, 0.024866174906492233, 0.007878665812313557, -0.006603565998375416, -0.002064694184809923, 0.017042798921465874, -0.0033225163351744413, 0.009468221105635166, 0.00818275474011898, -0.006099055055528879, 0.03060239739716053, 0.005960832815617323, -0.025889020413160324, -0.010643110610544682, 0.008168932981789112, -0.015784977003932, 0.029330752789974213, 0.008168932981789112, 0.02507350966334343, -0.00418813293799758, 0.04271066188812256, -0.0011429248843342066, -0.0013277970720082521, -0.0075883991084992886, 0.03596542030572891, 0.012557487934827805, -0.01496946532279253, -0.004430021625012159, -0.006133610382676125, -0.01843884214758873, 0.013939709402620792, -0.009074288420379162, -0.00610251072794199, 0.006067954935133457, 0.015757331624627113, -0.05050639435648918, 0.016517553478479385, -0.00475484412163496, 0.04821190610527992, -0.014098665677011013, 0.009537332691252232, -0.011189088225364685, 0.0004170423198956996, -0.01672488823533058, -0.014623910188674927, -0.011735065840184689, -0.00025635899510234594, -0.003139371983706951, -0.034997861832380295, -0.02069186419248581, -0.007408710662275553, -0.01839737594127655, -0.012128998525440693, 0.005725855007767677, -0.05794275179505348, -0.02515644207596779, 0.0016180637758225203, 0.018825864419341087, 0.020498353987932205, 0.004944899585098028, -0.012868487276136875, -0.014008820988237858, 0.027409464120864868, -0.023290442302823067, -0.017706265673041344, 7.866787200327963e-05, -0.01335917692631483, 0.008687266148626804, 0.01765097677707672, -0.014181599020957947, 0.01158993225544691, -0.019959287717938423, 0.024617375805974007, -0.01094719860702753, -0.00040106038795784116, 0.00350393308326602, 0.007394888438284397, 0.01474830973893404, 0.001950660953298211, -0.0013321165461093187, 1.3751355254498776e-06, 0.01116835419088602, 0.011748887598514557, 0.04611092805862427, -0.026455730199813843, -0.002899210900068283, -0.026676885783672333, 0.0037078107707202435, 0.003953155130147934, 0.00614743260666728, 0.0076505993492901325, -0.011672865599393845, 0.009765398688614368, 0.022972531616687775, -0.010712221264839172, 0.015674399212002754, 0.002634860808029771, 0.027036264538764954, 0.003956610802561045, 0.0064653437584638596, 0.006866188254207373, 0.010760598815977573, -0.013455932028591633, 0.0002792520681396127, -0.023801865056157112, 0.02458973042666912, 0.014444220811128616, 0.024175064638257027, 0.016171999275684357, -0.012585132382810116, -0.03002186305820942, -0.015397953800857067, 0.028155863285064697, 0.014623910188674927, -0.01204606518149376, 0.005497788544744253, -0.013974265195429325, -0.017927421256899834, -0.005877899471670389, -0.022806664928793907, 0.038453418761491776, -0.031376440078020096, -0.011244377121329308, 0.011444798670709133, 0.0027264331001788378, 0.016393154859542847, 0.011679776944220066, -0.015135332010686398, -0.021065065637230873, -0.014195420779287815, -0.008763288147747517, 0.006921477150171995, 0.010732954367995262, 0.016462264582514763, 0.007830288261175156, -0.035716619342565536, -0.02334573119878769, 0.004398921970278025, -0.021769998595118523, 0.009813777171075344, 0.0052939108572900295, -0.0011973498621955514, 0.023290442302823067, 0.02476941980421543, 0.015080043114721775, 0.012287954799830914, -0.02078862115740776, -0.0026745996437966824, 0.023248976096510887, -0.0033380663953721523, 0.0076505993492901325, -0.002087155357003212, -0.005442499648779631, -0.0028473774436861277, 0.002232288708910346, -0.003377805231139064, 0.008970621041953564, 0.006703777238726616, -0.001688902615569532, 0.013925887644290924, 0.02012515440583229, -0.007553843781352043, -0.025349954143166542, -0.0030909941997379065, -0.01689075492322445, -0.008466110564768314, 0.016517553478479385, -0.006040310487151146, -0.021521197631955147, 0.012184287421405315, 0.0008358124177902937, 0.019212886691093445, 0.006296021863818169, 0.0191023088991642, -0.006838543806225061, 0.0029717774596065283, 0.00316183315590024, 0.014036465436220169, -0.029468975961208344, 0.011500087566673756, -0.02259933203458786, 0.019738132134079933, 0.01063619926571846, 0.01564675383269787, 0.020083686336874962, -0.015425598248839378, 0.02852906472980976, -0.015052398666739464, 0.011665954254567623, -0.02547435276210308, -0.008770199492573738, -0.0007900263299234211, -0.018936442211270332, -0.015577643178403378, -0.006375499535351992, 0.0029233996756374836, -0.023221330717206, 7.494235615013167e-05, -0.0010167971486225724, 0.010518710128962994, 0.0231245756149292, 0.005159143824130297, -0.008348621428012848, -0.007795732468366623, -0.004322899505496025, 0.05163981765508652, 0.011230554431676865, 0.036241862922906876, 0.024396220222115517, 0.018853509798645973, -0.012322509661316872, -0.061094217002391815, -0.013531954027712345, -0.017526576295495033, 0.012999799102544785, 0.05036817491054535, -0.00012612776481546462, -0.018590888008475304, 0.010055665858089924, 0.0068281772546470165, -0.007705888245254755, -0.04298710823059082, 0.021590309217572212, -4.62180505564902e-05, -0.009703199379146099, -0.026248397305607796, 0.0030668051913380623, -0.012674977071583271, 0.009737754240632057, -0.004744477570056915, -0.004623532760888338, 0.0033346107229590416, 0.007678243797272444, -0.012308687902987003, 0.008417733013629913, -0.002166633028537035, 0.02993893064558506, 0.010048754513263702, 0.007754265796393156, -0.017899775877594948, -0.021811464801430702, -0.02738182060420513, 0.007367243990302086, -0.024244176223874092, 0.044424619525671005, -0.004267610609531403, 0.0038183885626494884, 0.004153577610850334, 0.014444220811128616, -0.011963131837546825, -0.02189439721405506, 0.002358416561037302, 0.042655374854803085, -0.01888115331530571, -0.01158993225544691, -0.012149732559919357, -0.0018107109935954213, 0.02569550834596157, 0.01707044243812561, 0.007256666198372841, 0.008721821010112762, -0.020042220130562782, 0.00249836640432477, 0.030187729746103287, -0.008058355189859867, -0.002394699724391103, -0.011313487775623798, -0.013504309579730034, -0.021037420257925987, -0.0027592608239501715, 0.010145510546863079, 0.021479731425642967, -0.013103465549647808, -0.016213465481996536, -0.01914377696812153, -0.018936442211270332, 0.014292176812887192, 0.0008738235337659717, -0.014513332396745682, 0.006410054862499237, 0.046940263360738754, -0.03555075079202652, 0.008452287875115871, -0.0009900166187435389, 0.0005131499492563307, -0.012972154654562473, -0.008251866325736046, 0.005736221559345722, -0.0045302328653633595, 0.01906084269285202, -0.002052599797025323, 0.021189464256167412, -0.01448568794876337, -0.002695332979783416, 0.032703373581171036, 0.015107687562704086, 0.018079465255141258, 0.02648337557911873, 0.0031255497597157955, 0.014596265740692616, -0.017747731879353523, -0.02648337557911873, 0.02012515440583229, -0.006251099519431591, 0.004315988626331091, 0.03463848680257797, -0.0021338053047657013, -0.004022266250103712, -0.005207521840929985, -0.008030710741877556, 0.0017096359515562654, -0.0015074859838932753, -0.029994219541549683, -0.0041984994895756245, -0.0027091552037745714, -0.005055477377027273, -0.017402175813913345, -0.027575330808758736, -0.0016362053574994206, -0.02750621922314167, 0.025142619386315346, 0.02891608700156212, 0.0069387550465762615, -0.000336916622472927, 0.02223995327949524, 0.0003822708094958216, 0.007774999365210533, 0.007795732468366623, -0.029745420441031456, -0.028059108182787895, -0.027229774743318558, -0.01320022065192461, -0.010967932641506195, -0.0028767497278749943, 0.0353848859667778, 0.015784977003932, -0.007567666005343199, -0.0361865758895874, -0.015038575977087021, -0.009634087793529034, -0.009924354963004589, -0.021258575841784477, 0.037430573254823685, 0.03510843962430954, 0.009896710515022278, -0.014554798603057861, -0.007864844053983688, -0.005138410720974207, 0.021728530526161194, -0.003522938583046198, -0.007526199333369732, -0.009965821169316769, 0.013670176267623901, -0.0024171608965843916, 0.013656354509294033, -0.007553843781352043, -0.016835466027259827, -0.007954687811434269, -0.0011463804403319955, 0.02264079824090004, 0.02565404213964939, 0.013663265854120255, -0.005677477456629276, -0.016697242856025696, -0.03190168738365173, 0.012612776830792427, 0.00833479966968298, 0.0064653437584638596, -0.03773466497659683, -0.0039185998030006886, 0.01671106554567814, 0.008873865939676762, -0.020138975232839584, 0.009101932868361473, -0.0006755610229447484, 0.00509694404900074, 0.00908811017870903, -0.01423688791692257, -0.023138398304581642, -0.025349954143166542, -0.002722977427765727, 0.016835466027259827, -0.01244691014289856, 0.0019990387372672558, 0.005007099360227585, -0.022184664383530617, 0.0017778831534087658, -0.01741599850356579, 0.02957955375313759, -0.02776884101331234, 0.021949686110019684, -0.003526394022628665, 4.5084198063705117e-05, -0.002574388636276126, -0.004844688344746828, 0.004468033090233803, -0.03643537312746048, 0.01183182094246149, 0.002762716496363282, -0.001274236012250185, -0.027437109500169754, 0.021438265219330788, 0.03126586228609085, -0.03516373038291931, -0.018120931461453438, 0.013732376508414745, -0.006869643926620483, 0.0013753109378740191, -0.03541253134608269, -0.01452715415507555, -0.02957955375313759, 0.010553265921771526, 0.008853132836520672, 0.012398532591760159, -0.04033324122428894, 0.0031773829832673073, 0.005169510841369629, -0.020415419712662697, -0.004588977433741093, 0.23199215531349182, -0.02591666392982006, 0.03295217454433441, 0.03353270888328552, 0.013974265195429325, 0.00866653211414814, 0.024575909599661827, 0.000521788839250803, -0.0029458608478307724, 0.02591666392982006, 0.0022806664928793907, -0.013808398507535458, 0.0073810662142932415, 0.0036905331071466208, 0.011769620701670647, 0.007505465764552355, -0.02436857484281063, -0.0176924429833889, -0.053796082735061646, 0.006949121598154306, 0.025460531935095787, 0.006593199446797371, 0.0023981553968042135, -0.03701590746641159, 0.019268175587058067, 0.008196577429771423, -0.0072082881815731525, 0.006520632654428482, -0.00027968399808742106, 0.0012275859480723739, -0.01737453229725361, 0.011071599088609219, -0.02295870892703533, 0.0008280374458990991, -0.026082530617713928, -0.009689376689493656, 0.035661328583955765, 0.03132115304470062, 0.022585509344935417, 0.006427332758903503, -0.019088488072156906, -0.040969062596559525, -0.012405443005263805, -0.03790052980184555, -0.02565404213964939, 0.0025657496880739927, -0.008341710083186626, -0.00815511029213667, 0.017222486436367035, 0.019157597795128822, -0.022309064865112305, -0.009157221764326096, 0.04696790501475334, 0.0067970771342515945, 0.005922821816056967, -0.005546166095882654, 0.0500640831887722, -0.015328843146562576, 0.0006867916090413928, 0.012868487276136875, 0.0046615442261099815, 0.02768590860068798, -0.012999799102544785, 0.008652710355818272, -0.02830790914595127, 0.011513910256326199, -0.03474906459450722, 0.0037941995542496443, -0.02825262024998665, -0.026690708473324776, 0.0018884609453380108, -0.010145510546863079, 0.012875398620963097, 0.0014219610020518303, -0.021300042048096657, -0.021161820739507675, 0.021300042048096657, 0.017941242083907127, 0.004046455025672913, 0.035495463758707047, -0.0012725081760436296, -0.005276632960885763, -0.0007191874319687486, 0.0003703923139255494, -0.03369857370853424, -0.021175643429160118, 0.009426754899322987, 0.004709921777248383, 0.0035799553152173758, -0.014375110156834126, 0.005311188288033009, -0.01857706531882286, 0.007222110405564308, -0.021700887009501457, -0.03090648539364338, 0.021258575841784477, -0.028114397078752518, 0.009903620928525925, -0.016296397894620895, -0.003573044203221798, -0.02565404213964939, 0.029855996370315552, 0.020456887781620026, 0.02617928571999073, -0.0033587997313588858, -0.005159143824130297, 0.000622863823082298, 0.016296397894620895, 0.011866376735270023, -0.00973084382712841, -0.006973310373723507, -0.0442311055958271, 0.0017476470675319433, 0.011645221151411533, 0.004523321986198425, 0.009454399347305298, -0.016434621065855026, -0.0213138647377491, 0.0013874054420739412, -0.0011584749445319176, 0.04179839789867401, -0.02250257506966591, -0.006403143983334303, -0.0030754441395401955, 0.015467065386474133, -0.004464577417820692, -0.006831632927060127, -0.015992309898138046, -0.018853509798645973, -0.01936493068933487, 0.006486077327281237, -0.020581286400556564, 0.036103639751672745, 0.0037492774426937103, 0.008721821010112762, -0.001230177702382207, -0.016199642792344093, -0.025184087455272675, -0.015384132042527199, -0.004934533033519983, -0.0022616609930992126, 0.01958608627319336, 0.00399116612970829, -0.01227413211017847, 0.015052398666739464, 0.004195044282823801, -0.002175271976739168, 0.00930926576256752, 0.011451710015535355, -0.0060644992627203465, -0.055565327405929565, -0.034776706248521805, 0.021922042593359947, -0.02396773174405098, 0.016171999275684357, -0.017222486436367035, -0.03405795246362686, -0.045392174273729324, 0.006852366030216217, 0.013234776444733143, -0.03024301864206791, -0.0011999415000900626, 0.019503153860569, -0.03751350939273834, -0.03220577538013458, -0.01358033251017332, -0.17703500390052795, -0.015798797830939293, 0.0028439220041036606, -0.0398079976439476, 0.01445804350078106, -0.003317333059385419, 0.0019800332374870777, -0.011334220878779888, 0.011050865985453129, -0.027879418805241585, 0.016697242856025696, 0.005114221945405006, -0.007422532886266708, -0.01264733262360096, -0.005166055168956518, 0.016130531206727028, -0.018894976004958153, 0.03190168738365173, 0.043401774019002914, 0.01566057652235031, 0.060596615076065063, -0.02223995327949524, -0.00209406646899879, 0.018742932006716728, 0.001388269360177219, -0.006942210253328085, -0.017968887463212013, -0.009696288034319878, -0.016199642792344093, -0.025709331035614014, -0.015812620520591736, 0.013186398893594742, 0.00930926576256752, -0.011900932528078556, 0.0072082881815731525, -0.013013620860874653, 0.005027832929044962, -0.00859742145985365, -0.002394699724391103, 0.011838732287287712, 0.0009692832245491445, 0.038398128002882004, 0.036020707339048386, -0.009364554658532143, -0.02891608700156212, 0.037264708429574966, -0.001919560949318111, 0.002970049623399973, 0.020443065091967583, -0.01089882105588913, 0.02431328594684601, -0.03361564129590988, -0.010359754785895348, -0.02366364188492298, 0.037043552845716476, 0.023456308990716934, -0.005604910664260387, 0.008037621155381203, -0.0029199442360550165, -0.0032551330514252186, 0.015218265354633331, -0.042572442442178726, 0.019959287717938423, 0.005411399528384209, -0.03502550721168518, -0.01224648766219616, -0.013918976299464703, 0.012723354622721672, -0.004094833042472601, -0.00012817949755117297, 0.018549419939517975, -0.03162524104118347, -0.002883660839870572, -0.03151466324925423, 0.03701590746641159, -0.01803799904882908, -0.002472449792549014, 0.02485235407948494, 0.03148701786994934, -0.02551582083106041, -0.01932346448302269, 0.03126586228609085, -0.0022443830966949463, -0.02197733148932457, 0.015342664904892445, 0.0359930619597435, 0.002289305441081524, -0.0026210385840386152, -0.016863109543919563, -0.021189464256167412, 0.024700308218598366, -0.020553642883896828, -0.015715865418314934, -0.018742932006716728, 0.023760396987199783, 0.007394888438284397, 0.0013416192959994078, -0.007367243990302086, -0.024879997596144676, -0.01861853152513504, 0.004371277522295713, -0.022889597341418266, 0.0012077165301889181, 0.015384132042527199, 0.007035510614514351, 0.014568621292710304, -0.010940288193523884, 0.01861853152513504, 0.03474906459450722, -0.007885577157139778, 0.006973310373723507, 0.007678243797272444, 0.0115622878074646, 0.029690131545066833, -0.007996154949069023, 0.005428677424788475, -0.02034630998969078, 0.0026987886521965265, 0.0046304441057145596, -0.006582832895219326, -0.025723153725266457, -0.019199064001441002, 0.01564675383269787, 0.01545324269682169, 0.013836042955517769, -0.012585132382810116, -0.05960141867399216, -0.013483576476573944, 0.009737754240632057, 0.003362255170941353, -0.014983287081122398, 0.022129375487565994, -0.004713377449661493, 0.04011208564043045, -0.00857668835669756, 0.014133220538496971, 0.013165665790438652, -0.019793421030044556, -0.01264733262360096, 0.0037458217702805996, -0.014817421324551105, -0.004848144017159939, -0.008092910051345825, -0.010228443890810013, 0.008680354803800583, 0.021286221221089363, -0.009164132177829742, -0.016655776649713516, 0.01998693123459816, -0.006779799237847328, -0.005086577497422695, -0.0019143775571137667, -0.03803875297307968, 0.01843884214758873, 0.0158817321062088, 0.0026296775322407484, 0.04130079597234726, -0.006855821702629328, -0.008003066293895245, -0.025584930554032326, -0.019917819648981094, 0.0015549998497590423, -0.04232364147901535, -0.0456409752368927, 0.019848709926009178, -0.00973084382712841, -0.013220954686403275, 0.0031687442678958178, -0.0014884803676977754, -0.00428834417834878, 0.0031531942076981068, -0.015315020456910133, 0.012391621246933937, 0.035136085003614426, -0.01592319831252098, -0.011914754286408424, -0.040664974600076675, 0.0016707609174773097, -0.00035527427098713815, -0.011092332191765308, 0.0005179013242013752, 0.015798797830939293, 0.004004988353699446, 0.004827410448342562, -0.023428665474057198, 0.008314065635204315, -0.016462264582514763, 0.006631210446357727, -0.005000188481062651, 0.020512176677584648, -0.0017346887616440654, 0.014278354123234749, -0.0097515769302845, -0.02334573119878769, 0.026206931099295616, 0.004706466104835272, -0.019295820966362953, 0.029828352853655815, -0.014540976844727993, 0.041024353355169296, -0.029828352853655815, 0.015674399212002754, 0.012585132382810116, -0.0017899776576086879, 0.01610288769006729, -0.010891909711062908, 0.004416199401021004, -0.003614510875195265, -0.00886695459485054, -0.006361677311360836, 0.008410821668803692, 0.016876932233572006, -0.0061958106234669685, -0.007256666198372841, 0.0005999707500450313, -0.036241862922906876, -0.0044991327449679375, -0.011970043182373047, 0.01632404327392578, -0.006482621654868126, -0.013055087998509407, -0.029026664793491364, 0.016434621065855026, -0.022571686655282974, -0.01720866560935974, -0.00511767715215683, -0.030436530709266663, -0.020056042820215225, -0.08011358976364136, 0.01423688791692257, 0.0022340165451169014, -0.026732174679636955, 0.01273717638105154, -0.010553265921771526, 0.029220174998044968, -0.018452664837241173, 0.020760975778102875, 0.002944133011624217, -0.03264808654785156, 0.02565404213964939, -0.01388442050665617, -0.01570204272866249, -0.02316604182124138, -0.010650021024048328, 0.008473021909594536, 0.006890377029776573, 0.016476087272167206, 0.0017899776576086879, 0.018010353669524193, -0.022364353761076927, 0.019171420484781265, -0.012730265967547894, -0.047382574528455734, 0.02913724258542061, -0.017637154087424278, 0.014540976844727993, -0.014209243468940258, -0.02957955375313759, -0.013435198925435543, -0.013932798989117146, -0.009723932482302189, -0.0004518138593994081, 0.004523321986198425, 0.0013303888263180852, 0.0005770777352154255, 0.006727966014295816, 0.022101731970906258, 0.026856575161218643, -0.03168053179979324, 0.004350543953478336, 0.018107108771800995, 0.013248599134385586, -0.005311188288033009, -0.012108265422284603, -0.023331908509135246, 0.007235932629555464, 0.01039431057870388, 0.010988665744662285, -0.014734487980604172, 0.005521977320313454, -0.0011265110224485397, -0.020415419712662697, -0.005981565918773413, -0.030408885329961777, -0.01180417649447918, -0.0009174499427899718, 0.001347666489891708, -0.007740443572402, 0.02738182060420513, -0.00237742206081748, 0.01653137616813183, 0.005110766272991896, 0.00901899952441454, -0.00840391032397747, -0.015771154314279556, -0.025944309309124947, 0.011714332737028599, -0.013455932028591633, -0.017844486981630325, -0.02671835385262966, 0.022433465346693993, 0.011182176880538464, 0.02732653170824051, 0.004675366450101137, -0.011292754672467709, -0.010186976753175259, -0.01865999773144722, 0.023290442302823067, 0.009357643313705921, 0.021424442529678345, -0.051142215728759766, 0.0016370692756026983, -0.0007295540999621153, -0.004233055282384157, -0.03546781837940216, -0.01582644321024418, -0.005801877472549677, -0.0016059692716225982, -0.015066220425069332, -0.020000753924250603, -0.00979304313659668, 0.008659621700644493, 0.005978110712021589, 0.030768264085054398, 0.0014470138121396303, 0.007498554885387421, 0.004782488569617271, -0.006624299567192793, -0.00311172753572464, -0.007339599542319775, -0.012827021069824696, -0.012039154767990112, 0.008714910596609116, 0.015287376008927822, -0.019738132134079933, -0.0404161736369133, 0.0018539053853601217, 0.02423035353422165, -0.01132039912045002, 0.014513332396745682, -0.02078862115740776, 0.010719132609665394, -0.005528888199478388, -0.005967743694782257, -0.029551908373832703, -0.023801865056157112, -0.027174485847353935, 0.007457088213413954, 0.022004975005984306, 0.006320210639387369, 0.03803875297307968, -0.0191023088991642, 0.02330426499247551, -0.020539820194244385, 0.033366840332746506, -0.022834308445453644, 0.01707044243812561, -0.0030184274073690176, -0.004454210866242647, 0.0097515769302845, 0.006714143790304661, -0.029468975961208344, -0.014845065772533417, -0.00443347729742527, 9.508176299277693e-05, 0.0008621610468253493, -0.017443642020225525, 0.08392852544784546, 0.010967932641506195, -0.005732766352593899, 0.015978487208485603, 0.0026607776526361704, -0.008390088565647602, 0.01490035466849804, 0.025764619931578636, -0.016655776649713516, -0.020194264128804207, 0.015066220425069332, -0.021037420257925987, -0.012640421278774738, -0.031155286356806755, 0.0022633885964751244, -0.005031288601458073, -0.019821064546704292, 0.03328390792012215, -0.005546166095882654, 0.012744087725877762, 0.036822397261857986, 0.021175643429160118, 0.019212886691093445, -0.0009114026906900108, -0.01787213236093521, -0.020899198949337006, 0.036158930510282516, 0.011990776285529137, -0.006292566191405058, -0.028335552662611008, 0.015287376008927822, 0.0005023513222113252, -0.015397953800857067, -0.0058640772476792336, 0.006105965934693813, 0.02219848707318306, -0.01848031021654606, -0.0017917053773999214, 0.03195697441697121, 0.005107310600578785, -0.008009976707398891, -0.01295833196491003, -0.02499057538807392, -0.028418486937880516, 0.021258575841784477, -0.01445804350078106, -0.002494910964742303, 0.006676132790744305, 0.00428834417834878], "2d5d975a-c3d1-4c28-ba1f-ff97bb1fc7c2": [-0.018134403973817825, -0.024270309135317802, 0.010905240662395954, -0.01253829337656498, -0.011800345033407211, 0.010693421587347984, -0.015496920794248581, -0.030611202120780945, -0.005896755959838629, 0.0057805972173810005, 0.01780642569065094, -0.009566000662744045, -0.018380386754870415, 0.0046839239075779915, -0.027058115229010582, -0.020853880792856216, -0.0051895552314817905, 0.005456036422401667, 0.02543189562857151, -0.013535890728235245, 0.015483254566788673, -0.01292776595801115, 0.011574860662221909, -0.033453669399023056, -0.029517944902181625, 0.005643940065056086, -0.0016638007946312428, -0.02968193218111992, 0.010522600263357162, 0.00329172913916409, 0.03859197720885277, 0.002058398211374879, -0.010932572185993195, -0.026388496160507202, -0.001709068426862359, -0.007857786491513252, 0.00944300927221775, 0.00690118595957756, 0.003052579006180167, 0.01803874410688877, 0.023450367152690887, -0.00404163496568799, 0.012497296556830406, 0.021414175629615784, -0.03268839046359062, 0.0037375730462372303, -0.02198813483119011, -0.018366720527410507, -0.012428967282176018, 0.018257394433021545, 0.011684185825288296, 0.009156028740108013, -0.02918996661901474, -0.03107583522796631, 0.0005090478807687759, -0.007598137483000755, -0.027085447683930397, 0.018995342776179314, -0.012367472052574158, -0.011342543177306652, 0.019514640793204308, -0.0016023050993680954, -0.028725333511829376, -0.00865723006427288, -0.0001473334850743413, 0.013406066223978996, -0.003819567384198308, 0.012859437614679337, 0.0006709012086503208, -0.0017432327149435878, 0.0010146793210878968, 0.02495359443128109, -0.015278269536793232, 0.00600949814543128, 0.03266105800867081, 0.003976723179221153, -0.02664814330637455, 0.012504128739237785, -0.002721185563132167, 0.010358612053096294, -0.009244856424629688, -0.005073396489024162, -0.0033463919535279274, -0.0025315736420452595, 0.00835658423602581, 0.013289907947182655, -0.015250938013195992, 0.021099863573908806, 0.019473643973469734, -0.014881963841617107, 0.01546958927065134, -0.0010206580627709627, -0.0002950940397568047, 0.021291183307766914, -0.0015980345197021961, 0.03154046833515167, -0.0051383087411522865, 0.029927914962172508, -0.015319266356527805, -0.037334732711315155, -0.000706773716956377, 0.025951191782951355, -0.022493766620755196, 0.0026204008609056473, -0.030255893245339394, -0.021291183307766914, 0.03779936581850052, -0.006515129469335079, -0.002854426158592105, 0.0020874380134046078, -0.004595096688717604, 0.038427989929914474, 0.004742003045976162, -0.057614654302597046, -0.01604354940354824, 0.01805240847170353, 0.036788105964660645, -0.030365217477083206, -0.016439855098724365, 0.019063672050833702, 0.013002927415072918, 0.010242452844977379, 0.01883135549724102, 0.015250938013195992, 0.008923712186515331, 0.02258942648768425, -0.006299894768744707, -0.011205886490643024, -0.009736821986734867, -0.03728007152676582, 0.03397296741604805, -0.00048812225577421486, 0.010310782119631767, 0.020935874432325363, -0.02101786993443966, -0.010679756291210651, -0.012278644368052483, -0.011069228872656822, -0.006802109535783529, 0.0020447326824069023, -0.005910421721637249, 0.008254092186689377, 0.0025093669537454844, -0.026607146486639977, 0.009279020130634308, 0.019528307020664215, 0.005339878145605326, -0.008199429139494896, -0.004417442250996828, -0.004704422317445278, 0.014130349270999432, -0.002039607847109437, -0.011369874700903893, -0.006692783907055855, 0.0014613773673772812, 0.00036043321597389877, 0.00020060842507518828, -0.009046703577041626, -0.001441732863895595, -0.0025349901989102364, 0.0018277893541380763, 0.01604354940354824, -0.003096992615610361, -0.013781873509287834, 0.0003258418873883784, 0.026497820392251015, 0.020990537479519844, 0.0028441769536584616, -0.028861990198493004, 0.013693045824766159, 0.008889547549188137, 0.005756682250648737, -0.019091004505753517, 0.008691394701600075, 0.015346597880125046, 0.013542723841965199, 0.009695824235677719, -0.00043772993376478553, -0.023669017478823662, -0.0015604537911713123, 0.009238023310899734, -0.009675325825810432, -0.004936739336699247, 0.027290431782603264, -0.018544375896453857, -0.030611202120780945, 0.009736821986734867, 0.008281422778964043, 0.018148070201277733, 0.001416109735146165, 0.022206787019968033, 0.03555819019675255, -0.00541845615953207, -0.02070355787873268, -0.5899215936660767, -0.020799217745661736, 0.011076061986386776, 6.774137727916241e-05, 0.02253476344048977, 0.019760623574256897, 0.01511428039520979, 0.04263703152537346, -0.030310556292533875, 0.02578720450401306, -0.017177803441882133, 0.022056464105844498, -0.01574290357530117, 0.01020828913897276, 0.010795914568006992, -0.03681543469429016, 0.03233307972550392, -0.025513889268040657, -0.011465534567832947, 0.03156780079007149, -0.012196650728583336, 0.003768320893868804, -0.007365820463746786, 0.01313958503305912, 0.009634329006075859, 0.020115932449698448, 0.010112629272043705, -0.01973329298198223, 0.01404835470020771, 0.046299442648887634, -0.027591077610850334, 0.01622120290994644, -0.0012435800163075328, -0.004065549932420254, 0.05130109190940857, -0.010105796158313751, -0.024365969002246857, 0.029217299073934555, -0.0036145816557109356, 0.035339538007974625, -0.018872352316975594, -0.01105556357651949, 0.01144503615796566, -0.005124642979353666, 0.0030594118870794773, 0.01235380582511425, 0.005199804436415434, -0.03359032794833183, 0.0037854029797017574, 0.017246132716536522, -0.004113380331546068, -0.007898783311247826, 0.007768958806991577, -0.01847604662179947, 0.00037730185431428254, 0.024393301457166672, 0.019295988604426384, -0.03837332874536514, -0.006234982516616583, -0.03919326886534691, -0.007031010463833809, 0.0018739111255854368, -0.020566901192069054, -0.008254092186689377, -0.02156449854373932, 0.006726948078721762, -0.005360376555472612, -0.018995342776179314, -0.00372390728443861, -0.02767307311296463, 0.010338113643229008, -0.007536641787737608, 0.012299143709242344, -0.020498571917414665, 0.02779606357216835, 0.06215167045593262, 0.026743803173303604, -0.006532211787998676, -0.013453896157443523, 0.011759347282350063, 0.013351403176784515, 0.005838676821440458, 0.014854632318019867, -0.018763026222586632, 0.01344023086130619, 0.007878284901380539, -0.025513889268040657, -0.003296853741630912, 0.01546958927065134, 0.01201899629086256, 0.0022480101324617863, 0.016562845557928085, 0.02701711840927601, -0.044905539602041245, 0.02191980741918087, 0.001721880049444735, -0.00808326993137598, -0.010010136291384697, -0.0017509197350591421, 0.0038503152318298817, -0.017095809802412987, -0.0022582593373954296, 0.00817893072962761, -0.008370250463485718, 0.005090478807687759, -0.0038639807607978582, -0.017970414832234383, 0.009039870463311672, 0.026210840791463852, -0.004045051522552967, -0.030501876026391983, -0.03244240581989288, -0.014745306223630905, -0.0035018394701182842, 0.038182009011507034, -0.03482023999094963, 0.004970903974026442, 0.010105796158313751, 0.017150472849607468, 0.0024068739730864763, 0.016439855098724365, -0.007837287150323391, 0.01144503615796566, -0.001537392963655293, 0.0017227341886609793, 0.012005330063402653, 0.033754315227270126, -0.003973306622356176, -0.029463281854987144, 0.020853880792856216, 0.0017850840231403708, 0.003325893310829997, 0.0017611690564081073, -0.009429343044757843, 0.01768343523144722, -0.007885117083787918, 0.006252064369618893, -0.013638383708894253, 0.020758220925927162, -0.004834246821701527, -0.0006384451407939196, 0.000766988261602819, 0.0037785700988024473, 0.011957500129938126, 0.016316862776875496, -0.025718875229358673, -0.01859903708100319, 0.002326587913557887, -0.0058010960929095745, 0.004205623641610146, 0.006487797945737839, 0.01023562066257, -0.007304324768483639, 0.032907042652368546, -0.0007191582699306309, 0.005380875431001186, -0.016562845557928085, -0.003915227483958006, -0.004345697350800037, -0.011977999471127987, 0.0003751665644813329, -0.004697589669376612, -0.02416098304092884, 0.0034232614561915398, -0.030255893245339394, -0.02537723258137703, -0.008042273111641407, 0.009367847815155983, -0.007762126158922911, -0.04602612927556038, -0.005476535297930241, -0.005869424436241388, 0.0006008644122630358, -0.007215497549623251, 0.008698227815330029, -0.0012119780294597149, -0.018612703308463097, 0.019664963707327843, 0.002628941787406802, -0.01399369165301323, 0.01720513589680195, 0.0012939723674207926, 0.0004522497474681586, -0.0011624398175626993, 0.019241325557231903, 0.01377504039555788, 0.035940829664468765, 0.023409370332956314, -0.006703033111989498, -0.0022377606946974993, -0.01872202940285206, 0.02477594092488289, 0.0060709938406944275, 0.007871451787650585, 0.02580086886882782, 0.00881438609212637, 0.008254092186689377, 0.02023892290890217, 0.00122222735080868, 0.031349148601293564, 0.025541221722960472, 0.02278074622154236, -0.00135546806268394, -0.012941432185471058, 0.0188860185444355, -0.007037843111902475, 0.015647243708372116, -0.02968193218111992, 0.010310782119631767, 0.00804910622537136, 0.0033139358274638653, -0.01604354940354824, -0.029818588867783546, -0.01541492622345686, 0.02779606357216835, -0.0012299143709242344, -0.004970903974026442, 0.0014152555959299207, -0.007078840397298336, 0.018681032583117485, 0.003363474039360881, 0.011021398939192295, 0.014198677614331245, -0.01404835470020771, -0.0006773070199415088, -0.017724432051181793, 0.007379486225545406, 0.011834508739411831, -0.01829839125275612, -0.03807268291711807, -0.030747858807444572, -0.015674574300646782, 8.765274833422154e-05, -0.0003869105421472341, 0.01999294012784958, -0.014950292184948921, 0.028479348868131638, -0.025841867551207542, 0.020621564239263535, 0.0029039643704891205, 0.007044676225632429, -0.004936739336699247, -0.0096616605296731, -0.015879560261964798, 0.012750111520290375, 0.0038229837082326412, 0.07062441110610962, 0.035940829664468765, -0.016986483708024025, 0.009880311787128448, -0.022261450067162514, -0.010905240662395954, -0.04936056211590767, 0.01671316847205162, 0.01344023086130619, -0.01858537271618843, 0.005329628940671682, 0.00972315575927496, 0.03058386966586113, 0.029217299073934555, 0.01973329298198223, 0.0219744686037302, 0.0010941112414002419, 0.009217524901032448, 0.0008412955794483423, -0.02578720450401306, 0.006334058940410614, -0.03831866383552551, 0.0005090478807687759, -0.01029711589217186, -0.031950440257787704, -0.020266255363821983, -0.003167029470205307, -0.011820843443274498, 0.023231714963912964, -0.007850953377783298, -0.00017413109890185297, 0.025281572714447975, 0.0039903889410197735, -0.012230814434587955, -0.014909294433891773, -0.027331430464982986, 0.04512419179081917, -0.008377083577215672, 0.009798317216336727, 0.006747446488589048, -0.01895434595644474, 0.0012649326818063855, -0.008165264502167702, 0.01083691231906414, 0.0005043502897024155, 0.002618692582473159, 0.004338864237070084, 0.010686589404940605, -0.023409370332956314, -0.03022856079041958, 0.02191980741918087, 0.0006529649253934622, -0.01889968290925026, -0.01001696940511465, 0.022452769801020622, -0.001861953642219305, -0.017218800261616707, -0.011779846623539925, 0.04118846356868744, 0.01105556357651949, 0.010119461454451084, -0.0033395590726286173, 0.0030884514562785625, -0.02308139204978943, 0.009374679997563362, -0.010898407548666, -0.01265445165336132, -0.014786303043365479, -0.007529808674007654, -0.0010556764900684357, 0.008370250463485718, -0.014212343841791153, 0.028370024636387825, 0.0076118032447993755, -0.01635786145925522, -0.012182984501123428, -0.008923712186515331, 0.01546958927065134, 0.004591680131852627, -0.007304324768483639, 0.00688752019777894, 0.0052749658934772015, -0.04055984318256378, -0.02331370860338211, -0.026689141988754272, 0.004075799603015184, 0.01593422330915928, -0.03528487682342529, -0.005503866821527481, -0.0021403925493359566, 0.005825011059641838, -0.01056359801441431, 0.0297365952283144, 0.00626914668828249, 0.004926490131765604, 0.004109963774681091, 0.009156028740108013, -0.02506292052567005, 0.012763777747750282, 0.0022428855299949646, 0.01635786145925522, -0.011506532318890095, 0.0222341176122427, -0.002721185563132167, 0.03189577907323837, 0.0393572598695755, 0.02694878913462162, -0.012435800395905972, 0.0016603843541815877, -0.006265730131417513, -0.014157680794596672, 0.037088751792907715, 0.012141987681388855, 0.026019521057605743, 0.010898407548666, 0.06302627921104431, -0.01853070966899395, 0.007167667616158724, 0.005497033707797527, 0.026976121589541435, 0.003781986655667424, -0.024898933246731758, -0.0017680018208920956, -0.0013571763411164284, -0.005076813045889139, -0.0033822644036263227, -0.011253716424107552, -0.023942332714796066, 0.02543189562857151, 0.010939404368400574, -0.05239434912800789, 0.001600596820935607, -0.0008263486670330167, 0.03307102993130684, -0.018981678411364555, -0.009928141720592976, 0.01007846463471651, -0.022862741723656654, 0.007680131588131189, 0.0015092074172571301, 0.0018021661089733243, -0.015182608738541603, -0.003860564436763525, -0.011889171786606312, 0.0020857297349721193, 0.0036624115891754627, -0.03566751629114151, 0.009347349405288696, 0.021796815097332, -0.056904036551713943, -0.029299292713403702, -0.0021660157945007086, 0.009887144900858402, 0.0024939929135143757, 0.03296170383691788, 0.004243204370141029, -0.00685677258297801, 0.02604685164988041, 0.003932309336960316, -0.03719807416200638, -0.011322044767439365, -0.02125018648803234, 0.01514161191880703, -0.007563973311334848, 0.013023425824940205, 0.0032421909272670746, 0.004800082184374332, 0.038127344101667404, 0.0315951332449913, 0.0009813691722229123, -0.0014280672185122967, 0.0066620358265936375, -0.014649646356701851, 0.02252109721302986, -0.013030258938670158, 0.007092506159096956, 0.0064946310594677925, 0.0002731007698457688, -0.0025759872514754534, -0.03495689854025841, -0.004410609602928162, -0.024133652448654175, -0.01986994966864586, -0.01634419523179531, 0.012722780928015709, 0.02786439284682274, -0.009654827415943146, 0.016398858278989792, 0.038427989929914474, -0.011609024368226528, 0.009572832845151424, 0.011376707814633846, 0.017587775364518166, 0.012408468872308731, 0.0018072908278554678, -0.002820261986926198, 0.013515392318367958, -0.006979763973504305, 0.011609024368226528, -0.024078989401459694, 0.033153023570775986, 0.015496920794248581, 0.007352154701948166, 0.001123150927014649, -0.011896004900336266, -0.04107913747429848, -0.023996995761990547, 0.029025977477431297, 0.01918666437268257, 0.02185147814452648, 0.012859437614679337, -0.011937001720070839, -0.018366720527410507, 0.00631356006488204, -0.002160891192033887, 0.014540320262312889, -0.011301546357572079, -0.01653551496565342, -0.00401088735088706, -0.012715947814285755, 0.016754167154431343, -0.006996845826506615, -0.023532360792160034, -0.030720526352524757, 0.0014758971519768238, 0.008691394701600075, 0.002816845430061221, 0.013242078013718128, 0.02894398383796215, 0.006634704768657684, -0.031048504635691643, -0.027577413246035576, 0.007768958806991577, -0.011766180396080017, -0.010823246091604233, 0.0023214633110910654, 0.009046703577041626, 0.029955247417092323, 0.03039254993200302, 0.006655203178524971, -0.010399608872830868, -0.010652424767613411, 0.021291183307766914, 0.01190283801406622, -0.0011974582448601723, 0.010618260130286217, 0.004127046093344688, -0.0053262123838067055, 0.0038434823509305716, 0.012825272977352142, -0.00914919562637806, 0.0020225257612764835, -0.008964709006249905, 0.02027992159128189, -0.002644315827637911, 0.029572606086730957, -0.0020156928803771734, -0.040423184633255005, -0.011684185825288296, 0.007140336092561483, -0.014813634566962719, 0.019815286621451378, -0.010447438806295395, -0.0035223381128162146, 0.011998497880995274, 0.0003444187168497592, 0.01377504039555788, 0.026087850332260132, 0.009313184767961502, -0.02899864688515663, -0.0019268657779321074, 0.014034689404070377, 0.02058056741952896, -0.011677353642880917, 0.010187790729105473, -0.027222104370594025, 0.02361435443162918, -0.003055995563045144, 0.0240926556289196, 0.008377083577215672, -0.005777181126177311, 0.022903738543391228, -0.02265775576233864, 0.032797716557979584, 0.0008908337913453579, -0.021482503041625023, 0.0011820843210443854, -0.014649646356701851, -0.02984592132270336, -0.014977623708546162, 0.0010505517711862922, -0.007598137483000755, -0.01180717721581459, 0.004000638145953417, 0.0009711198508739471, 0.007119837217032909, -0.011834508739411831, 0.006559543311595917, 0.00016484268417116255, -0.019036341458559036, 0.05963717773556709, 0.0142943374812603, 0.028452018275856972, 0.03063853271305561, 0.015674574300646782, 0.009340516291558743, -0.049087248742580414, -0.014034689404070377, -0.0007533225580118597, 0.022726083174347878, 0.050235167145729065, -0.017300795763731003, -0.016603844240307808, -0.004905991721898317, 0.014157680794596672, -0.02324538119137287, -0.036132149398326874, 0.0444682352244854, 0.015086948871612549, -0.009914476424455643, -0.018749359995126724, 0.014034689404070377, -0.04088781774044037, 0.013857034966349602, -0.009039870463311672, -0.03154046833515167, -0.005790846887975931, -0.003676077350974083, -0.01119905337691307, -0.015291934832930565, -0.007345321588218212, 0.014553986489772797, 0.03378164768218994, 0.002304381225258112, 0.0015331223839893937, -0.010584096424281597, -0.02756374701857567, 0.021168192848563194, 0.0019012425327673554, 0.04039585217833519, -0.0035701680462807417, -0.013754541985690594, 0.04031385853886604, 0.0011726891389116645, 0.01026978436857462, -0.022124791517853737, -0.008554737083613873, 0.044249583035707474, -0.006303310859948397, -0.010946237482130527, 0.0009335391223430634, -0.01725979708135128, 0.047447361052036285, 0.018435049802064896, 0.00037751536001451313, 0.004168042913079262, -0.017587775364518166, -0.015428592450916767, 0.003908394370228052, -0.037635378539562225, 0.017041146755218506, -0.015045952051877975, -0.007454647216945887, -0.012059993110597134, -0.006771361920982599, 0.008998873643577099, 0.025281572714447975, -0.027659406885504723, -0.01889968290925026, -0.013542723841965199, -0.020375581458210945, -0.0091765271499753, 0.0051383087411522865, 0.008951042778789997, 0.007686964701861143, 0.04293767735362053, -0.022193120792508125, 0.006115407217293978, -0.0006824316224083304, 0.011786678805947304, -0.006142738740891218, -0.002037899801507592, -0.02591019496321678, -0.008035439997911453, 0.028233366087079048, -0.011622690595686436, -0.00343692721799016, -0.03640546277165413, 0.01092573907226324, 0.03886529430747032, 0.004793249536305666, 0.011028232052922249, 0.017396455630660057, 0.00012864988821092993, 0.013781873509287834, 0.00744781456887722, -0.009859813377261162, -0.0063101439736783504, 0.019213994964957237, 0.012066826224327087, 0.004185125231742859, -0.01634419523179531, -0.00972315575927496, -0.011957500129938126, -0.01002380158752203, 0.001527997781522572, -0.03605015575885773, -0.05837993323802948, -8.694543794263154e-06, -0.017095809802412987, -0.028916653245687485, -0.011602192185819149, -0.03077518939971924, -0.005572195164859295, -0.027522750198841095, 0.011943834833800793, 0.0023026729468256235, -0.000639726291410625, 0.0063921380788087845, 0.05553746595978737, 0.012210316024720669, -0.0059889997355639935, -0.0068465229123830795, -0.010754917748272419, -0.026019521057605743, -0.006457050330936909, -0.01489562913775444, -0.015756569802761078, -0.036487460136413574, 0.03646012768149376, -0.009613830596208572, -0.036132149398326874, -0.0179157517850399, -0.016125543043017387, -0.02574620582163334, 0.0014622315065935254, -0.014116683043539524, 0.02149616926908493, 0.029025977477431297, -0.003928893245756626, -0.012920933775603771, 0.016016216948628426, -0.017724432051181793, 0.0029705846682190895, -0.015496920794248581, -0.0019593217875808477, -0.016672171652317047, -0.012661284767091274, -0.019227661192417145, -0.008151599206030369, -0.017341792583465576, -0.01574290357530117, -0.00012971753312740475, -0.00993497483432293, -0.005760098807513714, 0.029408618807792664, 0.011779846623539925, -0.011595359072089195, -0.015004955232143402, -0.021660158410668373, -0.01317374873906374, 0.008554737083613873, -0.00862989854067564, -0.019364317879080772, -0.0024837437085807323, 0.012586123310029507, 0.0026631061919033527, -0.0037478222511708736, -0.01231964211910963, 0.0066107893362641335, -0.0033276015892624855, 0.010912072844803333, -0.026238173246383667, -0.0308845154941082, -0.00540479039773345, -0.00799444317817688, 0.03492956608533859, 0.003093576291576028, 0.0034727996680885553, 0.005196387879550457, -0.014991289004683495, 0.011301546357572079, -0.02530890330672264, 0.02495359443128109, -0.0200339388102293, 0.00017231612582691014, 0.013761375099420547, 0.0009924725163727999, -0.01171835046261549, 0.0016595302149653435, 0.011923336423933506, -0.014007357880473137, -0.00631356006488204, 0.04069649800658226, -0.006211067549884319, -0.029654601588845253, -0.002750225132331252, 0.016877157613635063, 0.003023539436981082, 0.0027228936087340117, -0.0026169843040406704, -0.01956930384039879, -0.006638120859861374, -0.03227841854095459, 0.007782624568790197, -0.051683735102415085, 0.0043935272842645645, 0.01316691655665636, 0.008151599206030369, -0.027331430464982986, -0.0018192483112215996, 0.02362802065908909, -0.01235380582511425, 0.0006820045528002083, 0.2479507327079773, -0.005818177945911884, 0.010481603443622589, 0.015756569802761078, 0.006580041721463203, 0.017423786222934723, 0.008124267682433128, -0.006689367350190878, -0.00395280821248889, -0.006357973907142878, -0.008424913510680199, -0.013966360129415989, -0.006880687549710274, -0.005370625760406256, 0.00458484748378396, -0.0043627796694636345, -0.019528307020664215, -0.04244571179151535, -0.027509083971381187, 0.02100420370697975, 0.019104668870568275, -0.00884171761572361, 0.0034967148676514626, -0.021332180127501488, -0.0019200328970327973, 0.011588525958359241, -0.012709114700555801, 0.040423184633255005, 0.032251086086034775, -0.015647243708372116, -0.025021923705935478, 0.009887144900858402, -0.020484905689954758, -0.012449466623365879, -0.011602192185819149, -0.0097504872828722, 0.0390019491314888, 0.02689412608742714, 0.019596634432673454, 0.010317614302039146, -0.02034824900329113, 0.0010906949173659086, 0.001587785198353231, -0.021783148869872093, -0.028861990198493004, 0.020881211385130882, -0.006057328078895807, -0.012135154567658901, 0.011656854301691055, 0.0016415939899161458, -0.016385192051529884, -0.029927914962172508, 0.041762422770261765, 0.009818816557526588, -0.01646718569099903, -0.016016216948628426, 0.017601441591978073, -0.010488436557352543, 0.0222341176122427, 0.041762422770261765, -0.006908019073307514, 0.03268839046359062, -0.009190193377435207, 0.005903588607907295, -0.020990537479519844, 0.006791860330849886, -0.03219642490148544, 0.012476797215640545, -0.009975971654057503, -0.0005837822682224214, 0.0012521211756393313, 0.008090103045105934, -0.003761488012969494, -0.010638758540153503, -0.021810481324791908, -0.030201230198144913, 0.0563027448952198, 0.0014477117219939828, 0.021236520260572433, 0.04124312847852707, 0.022739749401807785, 0.0012469964567571878, -0.0016219494864344597, 0.018503377214074135, -0.012128321453928947, -0.039821892976760864, 0.01792941801249981, -0.0016877157613635063, -0.013016593642532825, 0.003358349436894059, 0.00013195956125855446, -0.029627269133925438, 0.015182608738541603, -0.010686589404940605, 0.009914476424455643, 0.027905389666557312, -0.01199166476726532, 0.02119552344083786, -0.012374305166304111, 0.001645864569582045, -0.01664484106004238, 0.03328968212008476, 0.012736446224153042, 0.009108198806643486, -0.024174649268388748, -0.003665827913209796, 0.009702657349407673, 0.009702657349407673, 0.010850577615201473, -0.024119986221194267, 0.0007332509849220514, -0.03883796185255051, 0.0043115331791341305, 0.0011538987746462226, 0.00461559509858489, 0.030365217477083206, -0.03495689854025841, -0.01720513589680195, -0.00920385867357254, 0.018148070201277733, 0.007837287150323391, -0.01516894344240427, -0.007181333377957344, -0.018093407154083252, -0.009859813377261162, -0.017888421192765236, -0.003590666688978672, -0.011663687415421009, -0.004567765165120363, -0.008479575626552105, 0.032551731914281845, -0.03107583522796631, 0.011158056557178497, 0.015606245957314968, -0.003045746125280857, 0.008158431388437748, -0.012285477481782436, -0.006084659602493048, -0.0012640786590054631, -0.0017133390065282583, -0.01877669245004654, -0.0005936044617556036, 0.001661238493397832, -0.008418080396950245, 0.0009753903723321855, -0.009627495892345905, -0.004106547217816114, -0.006761112250387669, 0.009975971654057503, 0.005401373840868473, -0.04509685933589935, -0.01805240847170353, -0.003963057417422533, -0.013303573243319988, 0.009859813377261162, -0.015100615099072456, -0.028069378808140755, -0.04228172078728676, -0.0031191993039101362, 0.03495689854025841, -0.024024326354265213, -0.021168192848563194, 0.005315963178873062, -0.020361915230751038, -0.01859903708100319, -0.025349900126457214, -0.17339059710502625, 0.011520197615027428, 0.025705209001898766, -0.04736536741256714, 0.018093407154083252, -0.003922060132026672, -7.1264566940953955e-06, -0.00862989854067564, -0.0014588150661438704, -0.025035589933395386, 0.021605495363473892, -0.005971917416900396, -0.0023675851989537477, -0.0009267062996514142, 0.0006260605878196657, 0.01616653986275196, -0.02519957907497883, 0.008766556158661842, 0.03916594013571739, 0.01598888635635376, 0.04047784581780434, -0.025295238941907883, -0.0061734868213534355, 0.023054061457514763, 0.0061222403310239315, 0.0036145816557109356, -0.013467562384903431, -0.04146178066730499, -0.011875506490468979, -0.01628953218460083, -0.0023795426823198795, 0.017601441591978073, 0.021892474964261055, 0.00032883125822991133, 0.034738246351480484, -0.013050757348537445, 0.02809670940041542, -0.017587775364518166, -0.0069831800647079945, 0.00043196469778195024, 0.009463507682085037, 0.04075116291642189, 0.02308139204978943, -0.016795163974165916, -0.020758220925927162, 0.02724943496286869, 0.0012495587579905987, -0.011089727282524109, 0.0038878959603607655, -0.006323809735476971, 0.017656102776527405, -0.03826400265097618, -0.00804910622537136, -0.012401635758578777, 0.032797716557979584, 0.0035155052319169044, -0.018558040261268616, 0.001766293658874929, 0.0069182682782411575, -0.0070856730453670025, -0.00713350297883153, -0.028452018275856972, 0.01132887788116932, 0.009019372053444386, -0.036241475492715836, -0.0029517943039536476, -0.009374679997563362, 0.03665144741535187, -0.02488526701927185, 0.009914476424455643, 0.018913349136710167, -0.03561285138130188, -0.006081243045628071, -0.007297491654753685, 0.004376444965600967, 0.01050893496721983, 0.0027263101655989885, 0.028725333511829376, 0.02574620582163334, -0.014089352451264858, -0.004742003045976162, 0.03039254993200302, 0.03222375735640526, -0.014909294433891773, 0.020211592316627502, 0.005739600397646427, 0.005661022383719683, 0.0013605927815660834, -0.04083315655589104, -0.022480100393295288, 0.034000299870967865, -0.005121226422488689, 0.002953502582386136, -0.004369612317532301, 0.010379110462963581, 0.008609400130808353, -0.006641537416726351, -0.0034523012582212687, -0.031212491914629936, -0.02507658675312996, 0.01404835470020771, 0.005948002450168133, 0.0025981939397752285, 0.014526654966175556, 0.04752935469150543, 0.022849075496196747, -0.017164137214422226, 0.033808980137109756, 0.011000900529325008, -0.007331655826419592, -0.0014613773673772812, 0.01492296066135168, 0.0029705846682190895, 0.024611951783299446, 0.025937527418136597, 0.02082655020058155, -0.005862591788172722, 0.017656102776527405, 0.009975971654057503, -0.009764153510332108, -0.022452769801020622, -0.029517944902181625, 0.0016373234102502465, 0.038427989929914474, 0.025882864370942116, -0.02022525854408741, -0.06007448211312294, -0.0017321293707937002, 0.011363041587173939, 0.01962396688759327, -0.01738278940320015, 0.005397957284003496, -0.006272563245147467, 0.03550352528691292, -0.0070856730453670025, 0.020635228604078293, 0.001365717384032905, -0.03462892025709152, -0.013043925166130066, 0.001609992003068328, -0.03626880794763565, -0.014909294433891773, 0.0045438501983881, -0.004796666093170643, -0.002454704139381647, 0.006511712912470102, -0.019405314698815346, 0.00911503192037344, 0.025828201323747635, -0.003676077350974083, -0.002259967615827918, -0.009846147149801254, -0.023450367152690887, 0.011103393509984016, 0.01119905337691307, 0.011574860662221909, 0.034546926617622375, 0.0024734942708164454, -0.015660909935832024, -0.012606621719896793, 0.0019200328970327973, 0.012340140528976917, -0.02804204635322094, -0.017341792583465576, 0.026566149666905403, -0.010672923177480698, 0.001469918410293758, -0.0024615367874503136, 0.008096936158835888, 0.003826400265097618, -0.004246620927006006, -0.01634419523179531, -0.002927879337221384, 0.020361915230751038, 0.0007456355378963053, -0.015319266356527805, -0.05575611814856529, -0.014335335232317448, -0.002639191225171089, -0.009620662778615952, 0.012449466623365879, 0.03003724105656147, 0.01087107602506876, -0.001120588625781238, -0.00865723006427288, -0.00023872296151239425, -0.003665827913209796, 0.003462550463154912, 0.0036350800655782223, 0.03077518939971924, -0.0009104782366193831, 0.022152123972773552, -0.016918154433369637, -0.034601591527462006, 0.0245299581438303, 0.0020703556947410107, 3.234930773032829e-05, 0.02899864688515663, -0.01341289933770895, 0.030419880524277687, -0.02518591284751892, -0.019719626754522324, -0.0004906845861114562, -0.02058056741952896, 0.044112928211688995, 0.026060517877340317, -0.012483630329370499, -0.005548280198127031, -0.017287129536271095, 0.0017107767052948475, 0.015906892716884613, 0.019473643973469734, -0.019582970067858696, -0.0008664917550049722, 0.005230552516877651, -0.03523021191358566, 0.006265730131417513, -0.004772751126438379, -0.011185387149453163, -0.007352154701948166, 0.008137932978570461, -0.02047124132514, -0.005760098807513714, -0.01616653986275196, -0.0013264284934848547, 0.030911846086382866, -0.0340549610555172, -0.04116113483905792, -0.08817119151353836, 0.013057590462267399, -0.016631174832582474, -0.016986483708024025, 0.020635228604078293, -0.004854745231568813, 0.02774140052497387, -0.018694698810577393, 0.015223606489598751, -0.009736821986734867, -0.039931219071149826, 0.014362666755914688, 0.004803498741239309, -0.019350651651620865, -0.031704459339380264, 0.01779276132583618, 0.02114086039364338, 0.008192596025764942, -0.0014963957946747541, 0.004567765165120363, 0.015018620528280735, -0.0045438501983881, 0.018134403973817825, 0.003720490960404277, -0.03107583522796631, 0.013624717481434345, -0.0017594607779756188, 0.013153250329196453, -0.000993326655589044, -0.032005105167627335, 0.013672547414898872, -0.0015220190398395061, 0.004748835694044828, -0.002482035430148244, 0.0006807234021835029, 0.008964709006249905, 0.011752515099942684, 0.00632722582668066, 0.019213994964957237, 0.026443157345056534, -0.023887669667601585, -0.024270309135317802, 0.020361915230751038, -0.004205623641610146, -0.0008331815479323268, -0.025035589933395386, 0.0018482878804206848, -0.0003508245281409472, 0.0154422577470541, 0.03162246569991112, 0.02119552344083786, 0.005958251655101776, -0.03348100185394287, -0.011882338672876358, -0.006337475031614304, -0.0532962866127491, 0.01174568198621273, 0.005790846887975931, -0.008664063178002834, -0.01847604662179947, 0.028178704902529716, 0.006624455098062754, 0.017341792583465576, 0.012073659338057041, -0.0011931877816095948, -0.011663687415421009, -0.030310556292533875, -0.01803874410688877, 0.017956748604774475, -0.02748175337910652, -0.025459226220846176, -0.03222375735640526, 0.00031964961090125144, -0.002195055363699794, 0.019910946488380432, -0.0020156928803771734, -0.004748835694044828, -0.0019490725826472044, -0.01695915125310421, 0.030857184901833534, -0.0015476421685889363, 0.020457575097680092, -0.04263703152537346, -0.011923336423933506, 0.027700403705239296, 0.005643940065056086, -0.009593332186341286, -0.0015484963078051805, -0.023149721324443817, -0.0027673072181642056, -0.01725979708135128, 0.0019268657779321074, 0.005466286092996597, 0.006265730131417513, 0.02834269218146801, 0.03722540661692619, 0.006679118145257235, -0.012087324634194374, 0.017601441591978073, -0.0075093102641403675, 0.020853880792856216, -0.02979125827550888, -0.0027587662916630507, -0.024748610332608223, -0.010502101853489876, -0.009873478673398495, -0.022753415629267693, -0.027222104370594025, -0.00455751596018672, 0.015961555764079094, -0.0240926556289196, 0.029353955760598183, -0.000598302052821964, 0.002835635794326663, -0.01829839125275612, 0.016453521326184273, -0.009641162119805813, -0.015319266356527805, -0.04293767735362053, 0.014335335232317448, 0.020908543840050697, 0.024598287418484688, 0.021291183307766914, -0.014950292184948921, 0.04075116291642189, -0.015565249137580395, 0.017369123175740242, -0.007823621854186058, 0.015291934832930565, -0.005333045031875372, -0.025404563173651695, 0.008766556158661842, -0.016207538545131683, -0.02015692926943302, -0.012408468872308731, -0.0075093102641403675, -0.005227135960012674, -0.010167291387915611, 0.010789081454277039, 0.08248625695705414, -0.0069695147685706615, -0.004595096688717604, 0.005777181126177311, -0.0035018394701182842, -0.004762501455843449, 0.005196387879550457, 0.00030085924663580954, 0.007235995959490538, -0.011349376291036606, 0.003928893245756626, -0.0022633839398622513, 0.00714716874063015, -0.02211112715303898, 0.003768320893868804, -0.01586589403450489, -0.026962455362081528, 0.01883135549724102, -0.03867397457361221, 0.037881363183259964, 0.03815467655658722, 0.025049256160855293, -0.010980402119457722, -0.0024734942708164454, -0.013433397747576237, -0.009395179338753223, 0.03941192105412483, 0.005128059536218643, -0.008711893111467361, -0.026361163705587387, 0.025527555495500565, 0.01380237191915512, -0.0035189215559512377, -0.028752664104104042, -0.005397957284003496, 0.028014715760946274, -0.004287618212401867, 0.009928141720592976, 0.03227841854095459, 0.003826400265097618, -0.0025589051656425, 0.007598137483000755, -0.03408229351043701, -0.04463222622871399, -0.01111022662371397, 0.004038218874484301, -0.008131099864840508, -0.02029358595609665, -0.023450367152690887], "9dea7fe1-20f0-4f2b-9256-e5ccf033967c": [-0.010108647868037224, -0.009604559279978275, 0.002330567454919219, -0.009187846444547176, -0.014356430619955063, 0.005104732699692249, -0.024814579635858536, -0.04562333971261978, 0.028497783467173576, -0.016910476610064507, 0.025311946868896484, 0.008683758787810802, -0.02720731869339943, -0.01963927410542965, -0.016628187149763107, 0.007467225659638643, 0.008085574023425579, -0.0038848393596708775, 0.008576219901442528, -0.03408979997038841, -0.008139343000948429, 0.01580820418894291, -0.016937362030148506, -0.007359687238931656, -0.0038545941933989525, 0.022394957020878792, 0.0013677591923624277, -0.024357540532946587, 0.010572409257292747, -0.01607705093920231, 0.029465632513165474, -0.01595607027411461, 0.008703921921551228, -0.017018016427755356, -0.012272866442799568, 0.015310837887227535, -0.00673797819763422, -0.003409316297620535, 0.006546424701809883, 0.010760601609945297, 0.0390365868806839, 0.0032345657236874104, -0.005397103726863861, 0.021023835986852646, -0.017609478905797005, 0.005333252716809511, -0.022489052265882492, 0.0031152646988630295, -0.018362252041697502, 0.026105044409632683, -0.0016030003316700459, 0.014289218932390213, -0.028659092262387276, -0.0063447896391153336, 0.004919900558888912, -0.018402578309178352, -0.00949702039361, 0.017515383660793304, 0.01123780570924282, -0.023981153964996338, 0.0007351285312324762, -0.002061720471829176, -0.024263443425297737, -0.007352965883910656, -0.009228173643350601, 0.019034368917346, 0.001838241470977664, 0.006526261102408171, -0.01962583139538765, 0.004721625708043575, 0.03443930298089981, 0.024250000715255737, -0.017018016427755356, -0.004254504106938839, 0.025043100118637085, -0.003180796280503273, -0.005020718090236187, 0.010404379107058048, 0.0049030976369977, -0.008966048248112202, 0.013657428324222565, -0.007057234179228544, -0.010061599314212799, -0.005138338543474674, 0.006798468995839357, -0.008509008213877678, -0.0008510688203386962, 0.025406042113900185, -0.021911032497882843, -0.014531181193888187, 0.01560656912624836, 0.017421286553144455, -0.0031623130198568106, 0.0191687922924757, 0.0037806611508131027, 0.014181680046021938, 0.0189133882522583, 0.02359132654964924, 0.003938608802855015, -0.002076843287795782, -0.00082628452219069, 0.03540715202689171, -0.032853104174137115, -0.004795558750629425, -0.01982746832072735, -0.0027792060282081366, 0.020486142486333847, 0.0011711647966876626, 0.014853797852993011, 0.0096650505438447, -0.022394957020878792, 0.05089274048805237, -2.8617505449801683e-05, -0.0191822350025177, -0.004604005254805088, 0.0024213034193962812, 0.03067544475197792, -0.0384451225399971, -0.01513608731329441, 0.009234894998371601, 0.0006788386963307858, 0.012696300633251667, 0.03513830527663231, 0.016547534614801407, -0.004382206592708826, 0.011883038096129894, -0.01142599806189537, -0.0001833620626712218, -0.007406735327094793, -0.009275222197175026, 0.07242738455533981, -0.015095760114490986, 0.01982746832072735, -0.01158058550208807, -0.0019054532749578357, 0.012911378405988216, -0.013912833295762539, 0.013529726304113865, -0.0038075458724051714, -0.011130266822874546, 0.01555280014872551, 0.020781874656677246, -0.013509562239050865, -0.012340078130364418, -0.01553935743868351, 0.0372353121638298, 0.0188999455422163, 0.013086128048598766, 0.01525706797838211, -0.008300651796162128, 0.017071785405278206, -0.010874861851334572, 0.024061808362603188, 0.004983751568943262, -0.00047384286881424487, -0.009624723345041275, 0.03419734165072441, -0.007211821153759956, -0.014410199597477913, -0.008065410889685154, -0.001069506979547441, 0.016722284257411957, 0.016332456842064857, 0.0011257969308644533, 0.002866581315174699, 0.011130266822874546, 0.006990022491663694, 0.004120080731809139, -0.007467225659638643, 0.0001084839750546962, -0.005874307360500097, 0.036885809153318405, -0.028255822136998177, 0.00931554939597845, -0.0010997523786500096, 0.036240577697753906, -0.0018550443928688765, 0.02630668133497238, -0.01576787792146206, 0.005292925518006086, -0.009187846444547176, 0.0097994739189744, 0.012225817888975143, 0.01552591472864151, -0.009006375446915627, -0.028927939012646675, 0.010370773263275623, -0.001692055957391858, 0.017246536910533905, -0.01560656912624836, 0.02265036106109619, 0.02318805456161499, 0.007836890406906605, -0.007507552858442068, -0.6151219606399536, -0.029519401490688324, -0.00971881952136755, -0.003918445203453302, 0.022247090935707092, 0.009416366927325726, 0.016789495944976807, 0.029492517933249474, -0.029976442456245422, 0.017192766070365906, -0.022085782140493393, 0.00999438762664795, -0.018227826803922653, -0.00403606565669179, -0.0038512335158884525, -0.024599501863121986, 0.016480322927236557, -0.02337624877691269, -0.0033202606718987226, -0.002154136775061488, -0.017421286553144455, 0.001950821140781045, -0.027771897614002228, -0.010148975066840649, 0.036805156618356705, -0.0038478728383779526, -0.012259423732757568, -0.0012476182309910655, -0.0006431324873119593, 0.02723420225083828, -0.0378536581993103, 0.017380960285663605, -0.002984201768413186, -0.0010980720398947597, 0.05704933777451515, 0.016359340399503708, -0.01912846602499485, 0.016050167381763458, 0.008885393850505352, 0.033175721764564514, -0.017192766070365906, 0.0036596800200641155, -0.010437984950840473, -0.001960902940481901, 0.006529621779918671, -0.010774044319987297, 0.01342218741774559, -0.04280044510960579, -0.0005981845897622406, 0.020835643634200096, 0.013442350551486015, -0.011311737820506096, 0.013724640011787415, -0.025392601266503334, 0.015230183489620686, -0.008858509361743927, 0.012985310517251492, -0.056027717888355255, 0.004133522976189852, -0.017313748598098755, -0.021023835986852646, 0.018348809331655502, -0.016829824075102806, -0.03575665131211281, 0.004462860524654388, 0.004133522976189852, -0.011661238968372345, -0.03556846082210541, -0.006203644908964634, -0.01525706797838211, 0.0008128421613946557, 0.0018281596712768078, 0.005192107986658812, 0.00390836363658309, 0.004318355116993189, 0.047854769974946976, 0.021816935390233994, -0.02752993442118168, -0.011210920289158821, 0.013106292113661766, 0.004513269290328026, -0.021359896287322044, -0.008401469327509403, -0.016923919320106506, 0.005655868910253048, -0.012575319036841393, -0.007991477847099304, -0.019007483497262, 0.01982746832072735, -0.003103502793237567, 0.014773143455386162, 0.01572754979133606, 0.008562777191400528, -0.032799337059259415, -0.00497030932456255, 0.01178222056478262, 0.005481118336319923, 0.0021238913759589195, 0.013980044983327389, 0.010780765675008297, -0.03478880226612091, -0.006052418611943722, 0.001145120244473219, -0.022045455873012543, -0.0022163076791912317, 0.014302661642432213, -0.036482539027929306, -0.008482123725116253, 0.00786377489566803, -0.032799337059259415, 0.016466880217194557, -0.01348267775028944, -0.0192897729575634, -0.007547880057245493, 0.01525706797838211, -0.029734479263424873, -0.02005598694086075, 0.014033813960850239, -0.020539911463856697, -0.008986211381852627, -0.004358682315796614, -0.008764413185417652, -0.007124445866793394, 0.00482916459441185, -0.0029354733414947987, 0.01135878637433052, 0.008388026617467403, -0.0069833011366426945, -0.00681191124022007, 0.012924820184707642, -0.0009644886595197022, 0.009510463103652, 0.032476719468832016, 0.013993486762046814, -0.01579476147890091, 0.02341657504439354, 0.0098061952739954, 0.0008149425266310573, 0.013731361366808414, 0.001492100884206593, -0.01143944077193737, 0.02274445816874504, 0.01346923504024744, -0.004197373986244202, -0.000382686936063692, -0.04726330563426018, -0.024317212402820587, 0.006801829673349857, 0.008031805045902729, 0.014759700745344162, 0.013321369886398315, -0.0011930086184293032, -0.022139551118016243, 0.020835643634200096, -0.010021272115409374, -0.0009073586552403867, -0.00031316475360654294, -0.007084118667989969, 0.002717035124078393, -0.01148648839443922, -0.0097793098539114, 0.01981402561068535, -0.024491963908076286, 0.002683429280295968, -0.024169346317648888, -0.01513608731329441, -0.007090840023010969, -0.0026195780374109745, 0.0048728520050644875, -0.013032359071075916, 0.022072339430451393, 0.016843264922499657, 0.014396757818758488, 0.011755336076021194, 0.02310740016400814, -0.018456347286701202, -0.014316103421151638, 0.0096448864787817, -0.005655868910253048, 0.0010232989443466067, 0.003552141133695841, 0.006637160666286945, -0.0193301010876894, -0.020217295736074448, 0.005840701516717672, 0.011069775559008121, 0.009523905813694, 0.02680404670536518, -0.0047518708743155, -0.007447062525898218, 0.01602328196167946, 0.010720274411141872, -0.012528270483016968, -0.00027052732184529305, 0.022408397868275642, 0.003451323602348566, 0.003797464072704315, 0.014369873329997063, -0.017085228115320206, 0.025432927533984184, 0.0388483926653862, -0.004257864784449339, -0.018442904576659203, -0.0018483232706785202, 0.019047811627388, -0.03164329379796982, -0.004916539881378412, -0.014853797852993011, 0.006220447830855846, 0.004466221202164888, -0.0032362460624426603, -0.028094513341784477, -0.03446618840098381, 0.001610561623238027, 0.0197199285030365, -0.005696196109056473, -0.040999170392751694, 0.0038041851948946714, -0.01375824585556984, -0.00985996425151825, 0.008361142128705978, -0.014584950171411037, 0.006277577951550484, -0.03548780456185341, 0.00044695817632600665, 0.02672339417040348, 0.0005969243939034641, 0.010814371518790722, -0.0024397866800427437, -0.04126801714301109, -0.017421286553144455, -0.005360137205570936, 0.007473947014659643, 0.006166678387671709, 0.0099338972941041, -0.007910823449492455, 0.0033941934816539288, -0.016251802444458008, 0.03540715202689171, 0.008051968179643154, 0.0036260741762816906, -0.01149320974946022, 0.002530522644519806, -0.009947340004146099, 0.02266380377113819, 0.004583841655403376, 0.052371397614479065, 0.004378845915198326, -0.03089052252471447, -0.02383328787982464, -0.03113248385488987, -0.011688124388456345, -0.0019995495676994324, 0.005998649168759584, 0.0014257293660193682, -0.026387333869934082, 0.017690133303403854, 0.005847422406077385, 0.020217295736074448, 0.05347367003560066, -0.025540467351675034, 0.014571508392691612, 0.0007237865938805044, -0.0031236661598086357, 0.001298026996664703, -0.021924473345279694, -0.004089835099875927, -0.028551552444696426, -0.02357788383960724, -0.032100334763526917, -0.017354074865579605, -0.025849640369415283, 0.02661585435271263, -0.0009132397244684398, 0.008791297674179077, -0.01598295569419861, -0.005810456350445747, 0.030110865831375122, 0.01584853231906891, 0.009490299969911575, -0.004167128819972277, -0.013395302928984165, 0.02730141393840313, 0.002643102314323187, 0.01328104268759489, 0.0383375845849514, -0.027771897614002228, 0.004718265030533075, 0.017394401133060455, 0.00789066031575203, 0.020405488088726997, 0.021561531350016594, 0.012931541539728642, 0.0032312050461769104, -0.014101025648415089, 0.00482244323939085, 0.044628605246543884, 0.0020869248546659946, -0.006425443571060896, -0.005975124891847372, 0.013160061091184616, -0.009080307558178902, -0.02724764496088028, -0.0096381651237607, 0.036939579993486404, 0.005534887779504061, -0.012185490690171719, -0.012602203525602818, 0.001952501479536295, -0.01137222908437252, -0.03204656392335892, -0.01354316808283329, 0.007910823449492455, -0.020351719111204147, -0.016399668529629707, -0.0019289773190394044, 0.0191822350025177, -0.008959326893091202, 0.029250554740428925, 0.020378604531288147, -0.017636364325881004, -0.013724640011787415, -0.0010451427660882473, 0.0194241963326931, 0.025889968499541283, 0.025271618738770485, 0.012434174306690693, 0.016117379069328308, -0.00766213983297348, -0.026037832722067833, -0.04401025548577309, 0.01582164689898491, 0.016345897689461708, -0.020230738446116447, -0.013926275074481964, -0.021064164116978645, 0.0002514139632694423, -0.013106292113661766, 0.02347034402191639, -0.012024182826280594, -0.004328437149524689, -0.013166782446205616, 0.0018281596712768078, -0.036751385778188705, 0.0018920109141618013, 0.006852238439023495, 0.0188865028321743, -0.013193666934967041, 0.020445816218852997, -0.0018096765270456672, 0.01172173023223877, 0.03430487960577011, 0.00998766627162695, -0.008717364631593227, 0.0196930430829525, 0.028148282319307327, -0.011278131976723671, 0.02360476739704609, 0.0035151748452335596, 0.01513608731329441, -0.0007204259745776653, 0.06984645128250122, 0.004876212682574987, -0.0018315203487873077, 0.009013095870614052, 0.02380640245974064, 0.0097927525639534, -0.009907012805342674, 0.003868036437779665, -0.012111557647585869, -0.0028161725495010614, 0.025997506454586983, -0.0194241963326931, -0.03322949260473251, 0.02258314937353134, 0.017596038058400154, -0.0376654677093029, 0.016171148046851158, -0.0013249117182567716, 0.0196930430829525, -0.02258314937353134, -0.011983855627477169, -0.014074141159653664, -0.016413111239671707, -0.021507760509848595, 0.0006376715027727187, -0.012770233675837517, -0.01334153302013874, -0.021185144782066345, -0.03478880226612091, 0.011163872666656971, -0.025016214698553085, -0.013260878622531891, -0.013092849403619766, 0.029169900342822075, -0.027825666591525078, -0.00674133887514472, 0.010821091942489147, -0.000956927367951721, 0.014342987909913063, 0.02297297678887844, 0.012548434548079967, -0.0006494335830211639, 0.017354074865579605, -0.0034748476464301348, -0.0015467104967683554, 0.00481908256188035, -0.032853104174137115, -0.002139013959094882, -0.008105737157166004, -0.005544969812035561, 0.006032255012542009, 0.010780765675008297, 0.0010039756307378411, 0.007897380739450455, 0.00482916459441185, 0.014316103421151638, -0.0022818390280008316, -0.006398559082299471, -0.0035386988893151283, -0.007292475085705519, 0.013254158198833466, 0.007447062525898218, -0.021306125447154045, 0.01920911855995655, -0.021548088639974594, -0.016386225819587708, -0.02680404670536518, -0.0016744128661230206, -0.012084673158824444, 0.028739746659994125, 0.026252910494804382, -0.011594027280807495, 0.014759700745344162, 0.010115369223058224, -0.011116824112832546, 0.005403825081884861, -0.0031572722364217043, 0.037074003368616104, 0.01938387006521225, -0.008213276043534279, 0.0015441901050508022, -0.0033219410106539726, -0.007608370389789343, 0.016937362030148506, -0.04282733052968979, 0.03543403744697571, 0.009362597018480301, 0.00973898358643055, 0.001996189123019576, -0.02293265052139759, -0.021628743037581444, -0.016453437507152557, 0.036509424448013306, 0.005343334283679724, 0.02718043327331543, -0.0011417596833780408, -0.008623268455266953, -0.025137195363640785, -0.01566033810377121, 0.011822547763586044, 0.010444706305861473, -0.025446370244026184, -0.025970621034502983, -0.003985656891018152, -0.009759146720170975, -0.00971881952136755, -0.0003660940274130553, -0.008099016733467579, -0.032557372003793716, 0.008918999694287777, 0.008159507066011429, -0.0002111919311573729, 0.010599293746054173, 0.03365964815020561, -0.008146064355969429, -0.012528270483016968, 0.002102047670632601, 0.0006292700418271124, -0.02726108767092228, 0.0001792663533706218, -0.021548088639974594, 0.008878672495484352, 0.02722075954079628, 0.040246397256851196, 0.015579684637486935, -0.016426552087068558, -0.014692489057779312, 0.008482123725116253, 0.00789066031575203, -0.021333010867238045, -0.00034151971340179443, 0.023967711254954338, 0.024384424090385437, 0.011217641644179821, 0.014853797852993011, -0.006482573691755533, -0.010740438476204872, -0.001115715131163597, 0.024693598970770836, -0.018590770661830902, 0.012064510025084019, 0.0018079961882904172, -0.055705100297927856, -0.01564689725637436, 0.004728347063064575, -0.012595483101904392, 0.003790742950513959, -0.012434174306690693, 0.00283633591607213, -0.032826222479343414, -0.007346244528889656, 0.0388483926653862, 0.03540715202689171, -0.004530072212219238, -0.012272866442799568, 0.04535449296236038, -0.00589447095990181, -0.010236349888145924, -0.014074141159653664, -0.0031068632379174232, -0.01355661079287529, 0.01356333214789629, 0.02724764496088028, 0.033148836344480515, 0.036133039742708206, -0.007252148352563381, 0.01172173023223877, 0.004523350857198238, 0.04755903780460358, -0.01868486776947975, -0.008058689534664154, -0.0099406186491251, -0.03419734165072441, -0.0390097014605999, -0.033283259719610214, 0.0027724849060177803, -0.0015601528575643897, 0.0015517513966187835, 0.012071231380105019, 0.01610393635928631, 0.0062137264758348465, 0.0010073361918330193, 0.0023524113930761814, 0.003531977767124772, -0.04161751642823219, 0.017730461433529854, 0.0196930430829525, 0.024881791323423386, 0.01614426262676716, 0.008871951140463352, -0.036159925162792206, -0.0377192348241806, -0.021171702072024345, 0.0016492083668708801, 0.024935560300946236, 0.04624168574810028, 0.005212271586060524, -0.014947894029319286, 0.006294380873441696, -3.1531762942904606e-05, -0.018348809331655502, -0.016722284257411957, 0.03476192057132721, 0.024196231737732887, -0.004775395151227713, -0.021131375804543495, 0.002792648272588849, -0.024182789027690887, 0.018348809331655502, 0.00030455325031653047, -0.010390937328338623, -0.005760047119110823, 0.0010006149532273412, 0.0012803839053958654, 0.008811460807919502, -0.008697200566530228, 0.0025473255664110184, -0.006653963588178158, 0.014692489057779312, -0.01580820418894291, -0.039493627846241, -0.013025637716054916, -0.003061495488509536, -0.0027237562462687492, 0.0385257788002491, -0.008845066651701927, 0.018120288848876953, 0.04126801714301109, 0.01610393635928631, 0.002412901958450675, -0.02267724648118019, -0.004553596489131451, 0.03201967850327492, 0.009954060427844524, 0.00035370184923522174, -0.006398559082299471, -0.008905556984245777, 0.012131721712648869, 0.003925166558474302, -0.01178894191980362, -0.02740895375609398, -0.0006036455743014812, -0.01381873618811369, 0.006895925849676132, -0.014033813960850239, 0.0016391266835853457, -0.005380300804972649, -0.005534887779504061, -0.012797118164598942, -0.028954824432730675, -0.004304912872612476, 0.020607123151421547, -0.029707595705986023, -0.008509008213877678, -0.01191664393991232, -0.051887474954128265, -0.003518535289913416, 0.008441796526312828, 0.0198812372982502, 0.006361592561006546, 0.0391710102558136, -0.017918653786182404, 0.005440791603177786, -0.0034647658467292786, 0.012125000357627869, 0.00027808864251710474, 0.0038613153155893087, -0.020123198628425598, -0.028820399194955826, 0.009483578614890575, 0.010612735524773598, -0.004516629967838526, -0.009483578614890575, -0.004933342803269625, 0.017596038058400154, 0.007541158702224493, 0.03363276273012161, -0.01342218741774559, 0.001996189123019576, 0.015512472949922085, -0.030030211433768272, -0.04761280491948128, -0.024841465055942535, -0.006250692997127771, -0.003451323602348566, 0.009255058132112026, 0.008273767307400703, 0.0007334482506848872, -0.000882994441781193, 0.011809105053544044, -0.011076496914029121, -0.02719387598335743, -0.05272090062499046, -0.0033521861769258976, 0.001269462052732706, -0.011546979658305645, -0.037047117948532104, -0.017569152638316154, 0.0036529588978737593, -0.013872506096959114, -0.004032705444842577, 0.007225263398140669, 0.007030349690467119, 0.014692489057779312, 0.033041298389434814, -0.0010896705789491534, -0.003101822454482317, -0.009214731864631176, -0.017932096496224403, -0.03486945852637291, -0.02325526624917984, -0.029600055888295174, -0.02312084287405014, -0.029922673478722572, 0.028927939012646675, 0.017461612820625305, -0.020445816218852997, -0.020647451281547546, -0.011815826408565044, -0.025150638073682785, -0.010814371518790722, -0.01926288940012455, 0.01136550772935152, 0.043902717530727386, -0.010653062723577023, -0.0029321126639842987, -0.003945330157876015, -0.002184381941333413, 0.014867239631712437, -0.04113359376788139, -0.0032664912287145853, -0.01602328196167946, -0.0001114244878408499, -0.0005750805721618235, 0.0034614054020494223, -0.0052223531529307365, 0.0030850195325911045, -0.006203644908964634, -0.011036169715225697, 0.029626941308379173, 0.017757344990968704, -0.018335366621613503, -0.006291020195931196, -0.0096583291888237, -0.0004326756752561778, 0.0018970518140122294, -0.008260324597358704, 0.008549335412681103, -0.037208426743745804, -7.319779979297891e-05, 0.03102494589984417, -0.01578132063150406, -0.010464870370924473, 0.0008905557333491743, -0.004415812436491251, -0.013744804076850414, 0.004916539881378412, -0.01335497573018074, 3.617882612161338e-05, 0.003787382273003459, 0.005460955202579498, 0.03556846082210541, -0.011076496914029121, 0.002641421975567937, 0.03618680685758591, -0.007756236474961042, 0.002268396783620119, -0.0187655221670866, 0.01922256126999855, -0.03486945852637291, 0.012219096533954144, 0.013395302928984165, -0.007830169051885605, -0.008139343000948429, -0.006371674127876759, 0.020862529054284096, -0.002616217592731118, -0.010417821817100048, 0.008179670199751854, 0.007198378909379244, -0.03193902596831322, 0.004671216942369938, 0.0004856049199588597, -0.016977688297629356, -0.004348600283265114, 0.008240161463618279, 0.022260533645749092, -0.0023591325152665377, -0.040676552802324295, 0.001308948965743184, -0.02685781754553318, 0.01136550772935152, 0.012051067315042019, 0.014342987909913063, -0.01178222056478262, 0.012965147383511066, 0.006412001326680183, 0.008058689534664154, 0.0005973444785922766, 0.235079824924469, 0.00567939318716526, 0.00045367932762019336, 0.036805156618356705, 0.0382031612098217, 0.002594373654574156, 0.023846730589866638, 0.014504296705126762, 0.008132622577250004, 0.009053423069417477, -0.007124445866793394, -0.02004254423081875, -0.012313193641602993, -0.006008730735629797, 0.0013728000922128558, -0.03067544475197792, -0.020593682304024696, -0.024155903607606888, -0.0382838137447834, -0.0015912383096292615, 0.033417683094739914, -0.0065665883012115955, -0.010182580910623074, -0.0006620357744395733, -0.0031186253763735294, 0.00574996555224061, 0.007924266159534454, 0.03110560029745102, 0.02290576510131359, -0.010706832632422447, -0.017945539206266403, 0.032611142843961716, 0.005175305064767599, 0.008636710233986378, -0.004761952906847, -0.017649807035923004, 0.028766630217432976, 0.003056454472243786, 0.0023944186978042126, 0.03242294862866402, 0.020956624299287796, -0.005696196109056473, -0.003249688306823373, -0.010881583206355572, -0.021064164116978645, 0.008952605538070202, 0.013993486762046814, 0.005269401706755161, -0.010001108981668949, 0.017138997092843056, -0.0050072758458554745, -0.016991131007671356, 0.056565411388874054, 0.006895925849676132, 0.004835885483771563, -0.01363054383546114, 0.016762610524892807, 0.0032681715674698353, -0.014558065682649612, 0.03497699648141861, -0.021924473345279694, 0.04113359376788139, -0.032906875014305115, -0.011284853331744671, -0.0002337708865525201, 0.005373579915612936, -0.007164773065596819, -0.005917994771152735, -0.0093760397285223, -0.008932442404329777, 9.908482752507553e-05, 0.01896715722978115, -0.004526711534708738, -0.008401469327509403, -0.010733717121183872, -0.032664913684129715, 0.02676372043788433, 0.029761364683508873, 0.021521203219890594, 0.04384894669055939, 0.008784576319158077, 0.011466325260698795, 0.011741893365979195, 0.002953956602141261, 0.010021272115409374, -0.012534991838037968, -0.010196022689342499, -0.021803492680191994, -0.0026884700637310743, 0.004230979830026627, 0.0027119943406432867, -0.017259977757930756, -0.010558966547250748, 0.003521895967423916, -0.006028894335031509, 0.002187742618843913, -0.003405955620110035, 0.011399113573133945, -0.028121398761868477, 0.014074141159653664, -0.029680710285902023, 0.03336391597986221, 0.03105182945728302, 0.010921910405158997, 0.0038377910386770964, 0.018227826803922653, -0.017448171973228455, 0.01178222056478262, 0.001722301240079105, -0.018577327951788902, 0.007648697588592768, -0.024680156260728836, 0.0067883869633078575, 0.006916089449077845, -0.009752425365149975, 0.000822923902887851, -0.012857608497142792, -0.015579684637486935, -0.02669650875031948, 0.0029169900808483362, 0.029250554740428925, -0.040138859301805496, -0.01615770533680916, -0.005723081063479185, 0.006438885815441608, 0.01383217889815569, -0.04207455739378929, -0.012098115868866444, -0.010075042024254799, -0.03099806047976017, 0.03449307382106781, 0.0055785756558179855, 0.028309591114521027, -0.008972769603133202, -0.003179115941748023, -0.0044527784921228886, 0.00168365438003093, -0.010720274411141872, 0.021453991532325745, -0.008495565503835678, -0.024465078487992287, -0.026172256097197533, 0.007413456682115793, 0.009416366927325726, 0.0005444152047857642, -0.0002547745534684509, -0.005192107986658812, -0.004721625708043575, 0.024330655112862587, -0.0007246267050504684, -0.04250471293926239, -0.009752425365149975, 0.028202051296830177, -0.0015567922964692116, 0.01123108435422182, -0.01598295569419861, -0.0038075458724051714, -0.037074003368616104, -0.005628984421491623, 0.008105737157166004, -0.01911502331495285, -0.012561877258121967, 0.01923600398004055, -0.03118625469505787, -0.014033813960850239, -0.02368542179465294, -0.17120178043842316, 0.0032043203245848417, -0.009819637052714825, -0.03524584323167801, 0.025701774284243584, 0.010767322964966297, -0.008267045952379704, -0.03382095322012901, -0.02683093212544918, 0.007279032841324806, 0.014813470654189587, 0.0015492308884859085, -0.017932096496224403, 0.012911378405988216, 0.011950249783694744, 0.025634562596678734, -0.02312084287405014, 0.01965271681547165, 0.03091740608215332, -0.0012921459274366498, 0.06581375002861023, -0.003871397115290165, -0.006136433221399784, 0.012440895661711693, 0.013845621608197689, 0.001532427966594696, -0.008051968179643154, -0.006963137537240982, 0.008986211381852627, -0.022045455873012543, 0.004546875134110451, 0.011170593090355396, 0.01356333214789629, 0.008441796526312828, 0.010048157535493374, -0.023994596675038338, 0.028874170035123825, 0.012387126684188843, 0.004358682315796614, 0.022314302623271942, 0.017542267218232155, 0.01895371451973915, 0.0012106517096981406, 0.021238913759589195, 0.020862529054284096, 0.017179325222969055, 0.011956971138715744, 0.007836890406906605, -0.004335158038884401, 0.011278131976723671, 0.021521203219890594, -0.01328776404261589, -0.04530072212219238, -0.0014845395926386118, 0.02771812677383423, 0.004980390891432762, 0.002592693315818906, 0.0021188505925238132, -0.009759146720170975, -0.0194107536226511, 0.008394747972488403, -0.04271979257464409, -0.006412001326680183, -0.009557511657476425, -0.01935698464512825, -0.008784576319158077, -0.013738082721829414, 0.017985865473747253, -0.0050072758458554745, -0.004499827045947313, 0.013106292113661766, -0.008609825745224953, -0.021561531350016594, -0.024975888431072235, 0.03607926890254021, -0.010303561575710773, -0.021050721406936646, 0.03132067620754242, 0.016668515279889107, -0.0005150100914761424, -0.021480876952409744, 0.026091603562235832, 0.017569152638316154, -0.010868140496313572, -0.0013996848138049245, 0.04602660983800888, 0.008979490026831627, -0.007010186091065407, -0.00237929611466825, -0.006643882021307945, 0.02730141393840313, -0.02709977887570858, -0.02305363118648529, -0.007447062525898218, 0.003338743932545185, -0.0010081763612106442, 0.004644331987947226, 0.017098670825362206, -0.036643847823143005, 0.0038982818368822336, 0.02687125839293003, -0.011278131976723671, -0.00999438762664795, 0.011997298337519169, 0.016305571421980858, 0.02265036106109619, -0.004530072212219238, 0.02381984516978264, 0.0382031612098217, -0.014611835591495037, -0.010942073538899422, 0.03462749719619751, 0.01880584843456745, 0.007971313782036304, 0.017582595348358154, 0.01347595639526844, -0.005366858560591936, 0.010209465399384499, -0.0033101788721978664, -0.017233094200491905, -0.0069228108040988445, -0.018577327951788902, 0.005373579915612936, -0.00013694395602215081, 0.007695745676755905, -0.0402195118367672, -0.06291019916534424, -0.01572754979133606, 0.016776053234934807, 0.02306707389652729, -0.009423088282346725, 0.009234894998371601, -0.01136550772935152, 0.020365161821246147, 0.001720620901323855, 0.010619456879794598, -0.012427452951669693, -0.0191687922924757, -0.020660893991589546, 0.014262334443628788, -0.015055432915687561, -0.00984652154147625, 0.006778305396437645, -0.024411309510469437, -0.011977134272456169, 0.02707289531826973, -0.0014517739182338119, -0.011594027280807495, -0.0186310987919569, -0.025473255664110184, -0.01912846602499485, 0.009113913401961327, -0.01327432133257389, 0.008125901222229004, 0.022179879248142242, -0.023913942277431488, 0.03492322564125061, -0.005313089117407799, 0.010753880254924297, 0.008804739452898502, -0.02665618248283863, -0.006005370058119297, -0.013791851699352264, -0.009221452288329601, 0.00795787200331688, -0.03115936927497387, 0.0025506860110908747, -0.011163872666656971, 0.008730806410312653, 2.158127426810097e-05, -0.013442350551486015, -0.000707823783159256, -0.018079962581396103, 0.00561890285462141, 0.004345240071415901, 0.013133176602423191, -0.018053077161312103, 0.008428353816270828, -0.014786586165428162, -0.02658897079527378, 0.01361710112541914, 0.021185144782066345, 0.016749169677495956, 0.0019340182188898325, -0.024021480232477188, 0.02287888154387474, -0.01177549920976162, 0.015001663938164711, -0.0187655221670866, 0.028954824432730675, 0.013065964914858341, 0.01566033810377121, -0.036805156618356705, -0.020768431946635246, 0.010041436180472374, -0.02258314937353134, -0.01144616212695837, 0.0197199285030365, -0.025311946868896484, 0.02365853823721409, -0.036912694573402405, -0.007124445866793394, 0.0066304393112659454, -0.009564233012497425, 0.029895788058638573, 0.0032379261683672667, -0.02289232425391674, -0.012434174306690693, 0.013328091241419315, -0.01190320122987032, 0.002189422957599163, 0.028712861239910126, 0.0006019652937538922, -0.0006481733289547265, 0.00970537681132555, -0.060060422867536545, 0.0002537243708502501, -0.008744249120354652, 0.023792961612343788, 0.012877771630883217, 0.003360587637871504, -0.006936253048479557, 0.0062137264758348465, -0.02324182540178299, 0.001303908065892756, 0.028981707990169525, 0.0024465078022331, -0.018604213371872902, -0.0763525515794754, 0.0186176560819149, -0.01518985629081726, 0.0035857469774782658, 0.011331901885569096, -0.016386225819587708, -0.01600983925163746, -0.008918999694287777, 0.0024868350010365248, 0.01348939910531044, -0.03169706463813782, 0.006324626039713621, -0.006556506734341383, -0.014168237335979939, -0.04371452331542969, -0.010236349888145924, 0.016117379069328308, 0.012595483101904392, -0.013025637716054916, 0.03605238348245621, -0.01575443521142006, -0.01567378081381321, 0.013079407624900341, 0.013583495281636715, -0.026347007602453232, 0.017999308183789253, -0.009026538580656052, -0.0016744128661230206, -0.016345897689461708, -0.029304325580596924, -0.0021675790194422007, -0.011661238968372345, -0.0030715770553797483, -0.009174404665827751, -0.008146064355969429, -0.010888304561376572, -0.010014551691710949, 0.014598392881453037, 0.001303908065892756, 0.02313428558409214, -0.01562001183629036, -0.024586059153079987, 0.022421840578317642, -0.01527051068842411, -0.0017575874226167798, -0.010088484734296799, -0.008952605538070202, 0.0035588624887168407, 0.0048459675163030624, 0.00970537681132555, 0.032691795378923416, 0.009322269819676876, 0.004563678056001663, -0.017300305888056755, 0.004933342803269625, -0.04247782751917839, -0.012219096533954144, 0.016776053234934807, 0.004385566804558039, 0.001187967718578875, 0.02316117100417614, -0.020338276401162148, 0.014719374477863312, 0.001069506979547441, 0.002144054975360632, -0.019034368917346, -0.018227826803922653, -0.0016156025230884552, 0.0379611998796463, 0.0005662590265274048, -0.044225335121154785, -0.004291470628231764, 0.010558966547250748, 0.016198033466935158, 0.028632206842303276, -9.388641774421558e-05, 0.00595496129244566, -0.010384215973317623, -0.020351719111204147, 0.03110560029745102, -0.005592017900198698, 0.0196930430829525, -0.016372783109545708, 0.03505765274167061, 0.0373697355389595, 0.0034345206804573536, -0.017784230411052704, -0.01615770533680916, -0.024344097822904587, 0.005020718090236187, -0.029384978115558624, 0.0028833842370659113, -0.014087583869695663, 0.03099806047976017, 0.0379343144595623, -0.01129829604178667, 0.008986211381852627, 0.0006498536677099764, 0.018416021019220352, 0.017407843843102455, 0.01920911855995655, -0.00681191124022007, 0.00040180026553571224, -0.010807650163769722, -0.020459257066249847, 0.032664913684129715, -0.02274445816874504, -0.025768985971808434, 0.012252702377736568, -0.0016433274140581489, -0.025016214698553085, -0.0023927383590489626, -0.012165327556431293, 0.018174057826399803, -0.011177314445376396, 0.008609825745224953, 0.006280938629060984, -0.0377461202442646, -0.025311946868896484, 0.0035050930455327034, 0.028632206842303276, 0.03392849490046501, 0.017004573717713356, -0.01191664393991232, 0.021333010867238045, -0.0061532361432909966, -0.0054475124925374985, -0.04567710682749748, 0.025930294767022133, -0.005427349358797073, 0.004933342803269625, 0.010108647868037224, -0.0201097559183836, -0.027771897614002228, -0.004835885483771563, 0.014544623903930187, -0.015162971802055836, 0.007635255344212055, -0.006832074839621782, 0.0780731737613678, 0.025728659704327583, -0.02290576510131359, -0.013449071906507015, -0.014181680046021938, 0.009302106685936451, 0.0022146273404359818, 0.009839801117777824, 0.004180571064352989, -0.0035588624887168407, 0.007836890406906605, -0.009839801117777824, 0.0013921234058216214, 0.017138997092843056, -0.021816935390233994, -0.007137888111174107, -0.03102494589984417, 0.02732829935848713, -0.009826358407735825, 0.012004019692540169, 0.0377192348241806, 0.018268154934048653, 0.0186176560819149, -0.015243626199662685, -0.01533772237598896, 0.006858959328383207, 0.021642183884978294, 0.007252148352563381, -0.017340632155537605, -0.0187520794570446, 0.000918280566111207, 0.015230183489620686, -0.022408397868275642, -0.01899404078722, -0.006038975901901722, -0.0004961067461408675, -0.003066536271944642, -0.010599293746054173, 0.025190966203808784, 0.02371230721473694, 0.008455238305032253, 0.008757691830396652, -0.020795317366719246, -0.032853104174137115, 0.011614191345870495, 0.007299196440726519, -0.028470899909734726, 0.01923600398004055, -0.008690480142831802], "22b13e1d-dad8-43f3-ad56-a2ce9d179da3": [-0.011416913010179996, -0.010038895532488823, 0.006447393912822008, -0.005488772410899401, -0.01773449406027794, 0.006114539224654436, -0.015444453805685043, -0.04244561865925789, 0.015857193619012833, -0.027107680216431618, 0.021555664017796516, 0.003658072091639042, -0.012209107168018818, -0.007955225184559822, -0.005828284192830324, -0.004476894624531269, 0.007542485371232033, -0.014312747865915298, 0.010817774571478367, -0.059700801968574524, 0.0034716736990958452, 0.008674191311001778, -0.015404511243104935, -0.010491576977074146, -0.014579031616449356, 0.015763994306325912, 0.010311835445463657, -0.02166217751801014, 0.00933324359357357, -0.013214328326284885, 0.021821947768330574, -0.023126738145947456, 0.003754599951207638, -0.016602788120508194, 0.015870507806539536, 0.008434535935521126, -0.003931012935936451, -0.0036281151697039604, 0.006004697177559137, -0.000555451144464314, 0.0383448526263237, 0.00947304256260395, -0.005914826411753893, 0.024551356211304665, -0.031661130487918854, 0.0205570999532938, -0.02642865665256977, 0.013167728669941425, -0.0035282589960843325, 0.02886515110731125, -0.012288992293179035, -0.007136402651667595, -0.03914370387792587, -0.014099721796810627, -0.012109250761568546, -0.00024797668447718024, -0.009586213156580925, 0.02244771458208561, 0.012741674669086933, -0.02383239008486271, -0.0026828080881386995, 0.002270068507641554, -0.0369601771235466, -0.018307004123926163, -0.009206758812069893, -0.00035012143780477345, -0.02605585940182209, -0.008228166028857231, -0.020823383703827858, 0.00042251733248122036, 0.024870896711945534, 0.02323325164616108, 0.0018556644208729267, -0.00012086782953701913, 0.02688133902847767, -0.0006024668691679835, -0.003694686107337475, 0.004753164015710354, 0.015923764556646347, 0.008108338341116905, 0.024737754836678505, -0.01644301787018776, -0.004217267967760563, -0.0023449608124792576, 0.0031238405499607325, 0.00028583890525624156, -0.00873410515487194, 0.02891840785741806, -0.02452472783625126, -0.0003492893010843545, 0.01913248375058174, 0.012055994011461735, -0.01686907187104225, 0.007768826559185982, 0.0009012038353830576, 0.009086931124329567, 0.003391788573935628, 0.011649911291897297, 0.010198664851486683, -0.012535304762423038, -0.0032569824252277613, 0.029850400984287262, -0.03230021148920059, 0.003608143888413906, -0.02568306215107441, -0.013553840108215809, 0.01898602768778801, 0.0030605981592088938, 0.008980417624115944, -0.013547183014452457, -0.023432964459061623, 0.04457588866353035, 0.008414564654231071, -0.0021785334683954716, -0.01885288581252098, 0.013953265734016895, 0.011243828572332859, -0.026628369465470314, -0.009493013843894005, -0.002161890733987093, 0.008860589936375618, 0.010105466470122337, 0.016789186745882034, 0.014126350171864033, 0.015178170055150986, 0.019105855375528336, -0.009706040844321251, 0.0020620343275368214, -0.001898935530334711, -0.01982482150197029, 0.06300272047519684, -0.0008745755185373127, 0.014951828867197037, -0.02854561060667038, -0.00864090584218502, 0.008967103436589241, -0.01931888237595558, 0.006167795974761248, 0.0024514743126928806, -0.021129610016942024, 0.011809681542217731, 0.0121292220428586, -0.003107197815552354, -0.02166217751801014, -0.014525774866342545, 0.024844268336892128, 0.02268736995756626, 0.019531909376382828, 0.006404122803360224, -0.003544901730492711, 0.006487336475402117, -0.019558537751436234, 0.005814970005303621, -0.025523291900753975, -0.0006844322779215872, 0.0024198531173169613, 0.02162223495543003, -0.01221576426178217, -0.004037526436150074, -0.00956624187529087, -0.0011175593826919794, 0.022208059206604958, 0.010258578695356846, -0.002960741752758622, -0.011084058322012424, 0.020676927641034126, 0.005725099239498377, -0.0024830955080688, -0.019838135689496994, -0.0036048153415322304, -0.006720334757119417, 0.01277496013790369, -0.033099062740802765, 0.024697812274098396, -0.013473954983055592, 0.016416389495134354, 0.010864374227821827, 0.021955089643597603, -0.010578119195997715, -0.005119303707033396, -0.0030905550811439753, 0.0007580763776786625, 0.004200625233352184, 0.006267652381211519, 0.0012465405743569136, -0.019105855375528336, 0.011556711979210377, -0.009446414187550545, 0.005502086598426104, -0.01483200117945671, 0.00965944118797779, 0.03150136023759842, 0.006350866053253412, -0.009046988561749458, -0.6075528860092163, -0.025696376338601112, 0.005488772410899401, -0.0003592749417293817, 0.013939951546490192, 0.019145797938108444, 0.006047968287020922, 0.03733297437429428, -0.031714387238025665, 0.04412320628762245, -0.022713998332619667, 0.009865811094641685, -0.03578852862119675, 0.0008704148349352181, -0.005052733235061169, -0.014539089053869247, -0.008008481934666634, -0.014725487679243088, -0.008720790967345238, 0.019332196563482285, -0.02383239008486271, 0.025376835837960243, -0.04329772666096687, 0.009779268875718117, 0.028439098969101906, -0.012968015857040882, 0.004909605719149113, -0.0028958350885659456, 0.001349725411273539, 0.032220326364040375, -0.04689255729317665, 0.025509977713227272, 0.0032070542220026255, 0.02010441944003105, 0.05778355896472931, 0.005199188832193613, -0.023179994896054268, 0.00822150893509388, -0.00937984324991703, 0.03685366362333298, -0.032539866864681244, -0.0020620343275368214, -0.0004859677283093333, -0.0006390808266587555, -0.0002496409579180181, -0.0017092084744945168, 0.01427280530333519, -0.05288394168019295, -0.013074529357254505, 0.02300691045820713, 0.012994644232094288, -0.003261975245550275, 0.006334223318845034, -0.023219937458634377, 0.026122430339455605, 0.0033352032769471407, 0.015417825430631638, -0.060126855969429016, 0.016229990869760513, -0.010251921601593494, -0.013101157732307911, 0.02083669789135456, 0.0025097238831222057, -0.031155191361904144, 0.010198664851486683, 0.024191873148083687, -0.0011832981836050749, -0.04606707766652107, -0.011683196760714054, -0.013806809671223164, 0.009373186156153679, -0.016509588807821274, -0.0077355410903692245, 0.0034317311365157366, 0.01087768841534853, 0.03275289386510849, 0.020889954641461372, -0.03174101561307907, -0.010478262789547443, 0.021089667454361916, -0.005914826411753893, -0.012781617231667042, -0.010291864164173603, -0.016509588807821274, 0.016988899558782578, -0.014299433678388596, -0.026575112715363503, -0.01244876254349947, 0.02706773765385151, -0.002100312616676092, 0.00956624187529087, 0.004347081296145916, 0.009466385468840599, -0.0374128594994545, 0.0017641294980421662, 0.040262095630168915, 0.02010441944003105, -0.015098284929990768, 0.002724414924159646, 0.004726535640656948, -0.023912275210022926, 0.010358435101807117, 0.008261451497673988, -0.015923764556646347, 0.015124913305044174, 0.005295716691762209, -0.0499015636742115, -0.011503455229103565, 0.012974672950804234, -0.03131496161222458, 0.022700684145092964, -0.01420623529702425, -0.014485832303762436, -0.006766934413462877, 0.0014162963489070535, -0.039436616003513336, -0.013527211733162403, 0.0029357776511460543, -0.019065912812948227, -6.625887181144208e-05, 0.00025047309463843703, -0.004606707952916622, -0.005548686254769564, -0.006081253755837679, -0.005748399067670107, 0.00762237049639225, 0.019372139126062393, -0.01644301787018776, 0.006211067084223032, 0.023179994896054268, -0.012042679823935032, 0.005951440427452326, 0.01907922700047493, -0.0014595674583688378, 0.0049362340942025185, 0.007895311340689659, -0.0062876236625015736, 0.009299958124756813, 0.0080817099660635, -0.019052598625421524, -0.01612347736954689, 0.008328022435307503, 0.002091991249471903, -0.0010676311794668436, 0.02175537683069706, -0.020956525579094887, -0.03264638036489487, -0.0012498691212385893, -0.0026944580022245646, 0.004746506921947002, 0.010145409032702446, 0.002556323306635022, -0.011996080167591572, 0.020530471578240395, -0.008208194747567177, 0.000627014902420342, -0.007848711684346199, -0.007216287776827812, -0.0024431529454886913, -0.02027750387787819, -0.017521467059850693, 0.009113559499382973, -0.026268886402249336, -0.016988899558782578, -0.028492355719208717, -0.004220596514642239, -0.0032403396908193827, 0.011723139323294163, -0.00265118689276278, -0.021688805893063545, 0.012002737261354923, 0.007409343495965004, 0.010571462102234364, 0.008075052872300148, 0.008993731811642647, -0.005345644894987345, -0.024231815710663795, 0.019332196563482285, -0.010704603977501392, 0.0037812283262610435, 0.01305455807596445, 0.01930556818842888, -0.0037346286699175835, 0.004536808468401432, -0.002007113303989172, 0.02184857614338398, 0.036614008247852325, 0.015670794993638992, -0.008474478498101234, -0.026601741090416908, -0.004726535640656948, 0.024591298773884773, 0.0102785499766469, 0.0002912477939389646, 0.018679801374673843, 0.0022168117575347424, -0.004190639592707157, 0.020197618752717972, -0.020623670890927315, 0.008414564654231071, 0.04633336141705513, 0.012854845263063908, -0.010425006039440632, 0.004796435125172138, 0.010052209720015526, -0.011410255916416645, -0.009845839813351631, -0.018679801374673843, 0.010098809376358986, 0.017201926559209824, -0.009226730093359947, -0.011104029603302479, -0.01505834236741066, 0.008274765685200691, 0.02276725508272648, -0.001182466046884656, -0.017801064997911453, 0.007509199902415276, -0.013127786107361317, -0.006923376116901636, 0.003658072091639042, -0.013167728669941425, 0.019744936376810074, -0.02328650839626789, 0.0007418497116304934, 0.028838522732257843, -0.007096460554748774, 0.018213804811239243, -0.014698859304189682, -0.030090056359767914, -0.009759297594428062, 0.0013405719073489308, 0.0004131557943765074, -0.010764517821371555, 0.02179531939327717, -0.01505834236741066, 0.002504731062799692, -0.015511024743318558, 0.02846572734415531, 0.022301258519291878, 0.018586602061986923, -0.009186787530779839, 0.021955089643597603, -0.020344074815511703, 0.026362085714936256, 0.0013963250676169991, 0.04494868591427803, -0.003138819010928273, -0.03493642061948776, -0.01445920392870903, -0.017068784683942795, -0.021675491705536842, -0.014925200492143631, 0.012901444919407368, 0.009433100000023842, -0.009639469906687737, 0.0031255048234015703, 0.006061282474547625, 0.018187176436185837, 0.0452682264149189, -0.0012348906602710485, 0.0030988764483481646, 0.0007896975730545819, -0.00198547774925828, -0.004300481639802456, -0.006726991850882769, -0.004220596514642239, -0.02106303907930851, -0.029344461858272552, -0.032326839864254, -0.010431663133203983, -0.007256230339407921, 0.0224077720195055, -0.009040331467986107, 0.013633725233376026, -0.017588037997484207, -0.001804071944206953, 0.03664063662290573, 0.036747150123119354, 0.012315620668232441, -0.013979894109070301, -0.010664661414921284, 0.011869595386087894, -0.003857784904539585, 0.009439757093787193, 0.041646767407655716, -0.024564670398831367, -0.009060302749276161, 0.009173473343253136, 0.027427220717072487, 0.016043592244386673, 0.01958516612648964, -0.000823815178591758, -0.008001824840903282, -0.008394593372941017, -0.004307138733565807, 0.03672052174806595, 0.0017524795839563012, -0.0046865930780768394, -0.0009744318667799234, 0.022713998332619667, 0.012302306480705738, -0.03608144074678421, -0.004553451202809811, 0.04103431478142738, 0.005225817207247019, -0.022274630144238472, -0.011496798135340214, -0.006171124521642923, -0.0025879445020109415, -0.037679143249988556, -0.012894787825644016, -0.0015103277983143926, -0.014326062053442001, -0.011283771134912968, -0.004263867624104023, -0.002569637494161725, 0.005225817207247019, 0.022647427394986153, 0.028013044968247414, -0.01935882493853569, -0.02235451526939869, 0.01370029617100954, 0.012941387481987476, 0.0016418054001405835, 0.0041573541238904, 0.012388848699629307, 0.011743110604584217, -0.004533479921519756, -0.01982482150197029, -0.039702899754047394, 0.010917630977928638, 0.014499146491289139, -0.03400442749261856, -0.006141167599707842, -0.018213804811239243, 0.006563893053680658, -0.012435448355972767, 0.03751937299966812, -9.491557284491137e-05, 0.004716550000011921, 0.002937441924586892, 0.00668704928830266, -0.027227507904171944, 0.001754143857397139, -0.0001982565299840644, 0.018280375748872757, 0.0029457632917910814, 0.013726924546062946, -0.0018573286943137646, 0.011676539666950703, 0.030942164361476898, 0.0025663089472800493, -0.016323190182447433, -0.011050772853195667, 0.0028758638072758913, 0.009845839813351631, 0.037865541875362396, 0.0027277434710413218, 0.026535170152783394, -0.000609123962931335, 0.06438739597797394, -0.0033867957536131144, -0.00010952997399726883, 0.004024212248623371, 0.027959788218140602, -0.008767390623688698, 0.0003143395879305899, 0.011470169760286808, -0.008201537653803825, 0.011243828572332859, 0.01879962906241417, -0.010851060040295124, -0.026814768090844154, 0.02495078183710575, 0.012721703387796879, -0.007975196465849876, -0.006580535788089037, -0.007409343495965004, 0.03506956249475479, -0.0351228192448616, -0.007655655965209007, -0.0021186196245253086, -0.020570414140820503, -0.026082487776875496, -0.01718861237168312, -0.02355279214680195, -0.0047698067501187325, -0.01473880186676979, -0.02065029926598072, 0.0077355410903692245, -0.038371481001377106, -0.0006765269790776074, -0.005149260628968477, 0.026295514777302742, -0.041646767407655716, -0.010258578695356846, 0.016283247619867325, 0.007016575429588556, -0.0024298387579619884, 0.023113423958420753, 0.003917698748409748, 0.0035682013258337975, 0.0166294164955616, -0.01436600461602211, -0.007276201620697975, 0.00965278409421444, -0.026135744526982307, -0.001204933738335967, -0.009013703092932701, 0.017588037997484207, 0.01543113961815834, 0.009106902405619621, 0.0031571260187774897, 0.008234823122620583, 0.017841007560491562, 0.02096983976662159, -0.0017108727479353547, 0.016229990869760513, 0.010045552626252174, -0.003694686107337475, 0.012435448355972767, -0.013979894109070301, -0.01170982513576746, 0.0019155782647430897, -0.020290818065404892, -0.006317580584436655, -0.021635549142956734, -0.0237924475222826, 0.0002560900175012648, 0.026308828964829445, 0.02573631890118122, -0.027014480903744698, 0.006627135444432497, 0.015178170055150986, -0.012708389200270176, 0.011649911291897297, 0.011956137605011463, 0.034989677369594574, 0.001742493943311274, -0.005755056161433458, 0.01007218100130558, -0.008114995434880257, -0.024085359647870064, 0.007968539372086525, -0.023619363084435463, 0.031714387238025665, 0.008993731811642647, 0.001792422030121088, 0.020064476877450943, -0.012368877418339252, -0.017814379185438156, -0.016842443495988846, 0.027200879529118538, 0.0025230380706489086, 0.020437272265553474, -0.00804176740348339, -0.019385453313589096, -0.026348771527409554, -0.019145797938108444, -0.010917630977928638, -0.003611472435295582, -0.028945036232471466, -0.02328650839626789, -0.01420623529702425, -0.016243305057287216, -0.016229990869760513, 0.008461164310574532, 0.0047698067501187325, -0.030489481985569, 0.0004947051638737321, 0.014073093421757221, 0.00401755515486002, 0.013660353608429432, 0.04217933490872383, -0.0007414336432702839, -0.015324626117944717, -0.0007505871471948922, -0.0019155782647430897, -0.03482990711927414, -0.010198664851486683, -0.021835261955857277, 0.007382715120911598, 0.016416389495134354, 0.05104658380150795, 0.026481913402676582, -0.015351254492998123, -0.021369265392422676, 0.009293301030993462, 0.00217187637463212, -0.01694895699620247, 0.00757577084004879, 0.005628571379929781, 0.015417825430631638, -0.0021785334683954716, 0.008660877123475075, 0.016709301620721817, -0.004639993421733379, -0.0017890934832394123, 0.02226131595671177, -0.021595606580376625, -0.005861569661647081, -0.010824431665241718, -0.05506746843457222, -0.016003649681806564, 0.004323781467974186, -0.023499535396695137, -0.016003649681806564, -0.01111068669706583, -0.020304132252931595, -0.022141488268971443, -0.009646127000451088, 0.02383239008486271, 0.035362474620342255, 0.015284683555364609, -0.019332196563482285, 0.017441581934690475, 0.0005591957597061992, 0.006364180240780115, -0.0030522767920047045, 0.00882730446755886, -0.01797414943575859, 0.018586602061986923, 0.02180863358080387, 0.027014480903744698, 0.01935882493853569, -0.0008537721005268395, 0.005462144035845995, 0.0039609698578715324, 0.05480118468403816, -0.015644166618585587, -0.017774436622858047, -0.025257008150219917, -0.04004906862974167, -0.022208059206604958, -0.038504622876644135, -0.01810729131102562, 0.005641885567456484, -0.015471082180738449, 0.021515721455216408, 0.015311311930418015, 0.004783120937645435, 0.0001662192662479356, -0.011982765980064869, 0.0036847004666924477, -0.03283277899026871, 0.020823383703827858, 0.010065523907542229, 0.022114859893918037, 0.03206055611371994, 0.010618061758577824, -0.018559973686933517, -0.03773240000009537, -0.0337381437420845, -0.01552433893084526, 0.02110298164188862, 0.049129340797662735, 0.003225361229851842, -0.011536740697920322, 0.005938126239925623, -0.00659384997561574, -0.003751271404325962, -0.024964096024632454, 0.011124000884592533, 0.022980282083153725, -0.014126350171864033, -0.024271758273243904, -0.0024165245704352856, -0.03299254924058914, 0.019891392439603806, 0.006387480068951845, -0.0261091161519289, -0.003072248073294759, 0.0030605981592088938, 0.009260015562176704, 0.010265235789120197, -0.0041273972019553185, 0.015324626117944717, 0.0034417167771607637, 0.027041109278798103, -0.016456332057714462, -0.02734733559191227, -0.011490141041576862, 0.0032153755892068148, 0.010132094845175743, 0.030942164361476898, -0.011982765980064869, 0.001589380786754191, 0.043164584785699844, 0.0035615444649010897, -0.002508059609681368, -0.024191873148083687, -0.010391720570623875, 0.03584178537130356, -0.004313795827329159, -0.0005462976405397058, -0.02785327471792698, 0.005548686254769564, 0.009027017280459404, -0.0062044099904596806, -0.006660420913249254, 0.002161890733987093, 0.003950984217226505, -0.0026029229629784822, 0.015271369367837906, -0.016376446932554245, 0.01700221374630928, -0.005751727614551783, 0.0007847047527320683, 0.0032569824252277613, -0.02268736995756626, -0.012994644232094288, 0.015763994306325912, -0.021449150517582893, -0.019438710063695908, -0.011809681542217731, -0.03482990711927414, 0.0037912139669060707, 0.0076290275901556015, 0.009546270594000816, 0.03336534649133682, 0.04694581404328346, -0.009832525625824928, 0.005914826411753893, 0.0003047700156457722, 0.019052598625421524, -0.0135138975456357, 0.008321365341544151, -0.009812554344534874, -0.032406724989414215, 0.007655655965209007, 0.013806809671223164, -0.0077355410903692245, -0.018599916249513626, 0.011137315072119236, 0.023938903585076332, 0.014339376240968704, 0.018639858812093735, 0.00532567361369729, -0.0021901833824813366, 0.021462464705109596, -0.017681237310171127, -0.03198067098855972, -0.021489093080163002, -0.014192921109497547, 0.004992819391191006, 0.018586602061986923, -0.021316008642315865, -0.013780181296169758, 0.004882977344095707, -0.00015072073438204825, 0.001314775669015944, -0.03174101561307907, -0.05184543505311012, 0.00960618443787098, -6.168211984913796e-05, -0.014685545116662979, -0.030595995485782623, -0.03099542111158371, -0.009299958124756813, -0.02254091389477253, -0.00738937221467495, 0.002456467133015394, -0.004669950343668461, 0.014099721796810627, 0.02523037977516651, -0.0023249895311892033, 0.008587649092078209, -0.00043146280222572386, -0.022367829456925392, 0.004689921624958515, -0.028172815218567848, -0.022327886894345284, -0.016842443495988846, -0.029024921357631683, 0.03301917761564255, 0.006450722459703684, -0.02693459577858448, -0.015630852431058884, -0.02966400235891342, -0.02867875248193741, -0.001229065703228116, -0.0028292641509324312, 0.013360784389078617, 0.04375040903687477, -0.0034217454958707094, -0.018679801374673843, -0.0016384768532589078, -0.008967103436589241, -0.002817614236846566, -0.030143313109874725, 0.0050194477662444115, -0.009066959843039513, -0.004616693593561649, -0.00573841342702508, -0.0026578439865261316, 0.012861502356827259, 0.003321889089420438, -0.005072704516351223, -0.0008679184247739613, 0.025110552087426186, 0.015684109181165695, -0.007822083309292793, 0.002771014580503106, -0.02600260265171528, -0.01870642974972725, -0.007921939715743065, -0.01436600461602211, -0.007063175085932016, -0.040448494255542755, 0.01902597025036812, 0.028119558468461037, -0.005285731051117182, -0.009373186156153679, 0.020131047815084457, 0.007149716839194298, 0.002940770471468568, 0.00822150893509388, -0.020357389003038406, -0.014339376240968704, 0.0003946407523471862, 0.0032053899485617876, 0.041087571531534195, -0.029877029359340668, -0.004177325405180454, 0.03400442749261856, -0.009719355031847954, 0.007449286058545113, -0.030835650861263275, 0.023632677271962166, -0.008061738684773445, 0.018559973686933517, 0.01898602768778801, -0.002662836806848645, -0.0064307511784136295, -0.005239131394773722, 0.019838135689496994, -0.0038145137950778008, 0.0015194813022390008, 0.0015186491655185819, 0.011842967011034489, -0.04002244025468826, 0.017108727246522903, 0.004034197889268398, 0.007489228621125221, -0.011729796417057514, -0.006197752896696329, 0.010717918165028095, -0.011743110604584217, -0.040768031030893326, -0.008574334904551506, -0.015870507806539536, 0.00601801136508584, 0.02489752508699894, 0.006713677663356066, -0.02867875248193741, 0.020077791064977646, 0.00804176740348339, -0.018719743937253952, 0.00965944118797779, 0.24498099088668823, 0.009419785812497139, -0.004074140451848507, 0.03672052174806595, 0.03490979224443436, -0.00038964793202467263, 0.016016963869333267, 0.0062410240061581135, 0.016323190182447433, -0.007475914433598518, -0.005974740255624056, -0.006533936131745577, -0.009140187874436378, -0.0035182733554393053, 0.004170668311417103, -0.030516110360622406, -0.006244352553039789, -0.030489481985569, -0.02993028610944748, -0.014525774866342545, 0.041966307908296585, -0.009692726656794548, 0.01825374737381935, 0.0014878601068630815, -0.01198942307382822, 0.01337409857660532, -0.0013164399424567819, 0.03421745449304581, 0.028811894357204437, 0.005046076141297817, -0.011030801571905613, 0.03496304899454117, 0.00021531533275265247, 0.0026561797130852938, -0.017241869121789932, -0.019105855375528336, 0.04731861129403114, 0.020903268828988075, 0.022327886894345284, 0.02790653146803379, 0.023406336084008217, -0.020756812766194344, -0.0028109571430832148, 0.0014770423294976354, -0.01603027805685997, 0.0006731984321959317, 0.008481135591864586, -0.015071656554937363, 0.03331208974123001, 0.02304685302078724, -0.004323781467974186, -0.013726924546062946, 0.04670615866780281, 0.023060167208313942, -0.012242392636835575, -0.013240956701338291, 0.03011668473482132, -0.013334156014025211, 0.002456467133015394, 0.01773449406027794, -0.008461164310574532, 0.04505519941449165, -0.025523291900753975, 0.008048424497246742, -0.0032569824252277613, 0.0083147082477808, 0.021861890330910683, 0.00043895203270949423, -0.018546659499406815, 0.003428402589634061, 0.0087807048112154, 0.01505834236741066, 0.0002968647168017924, 0.009546270594000816, -0.016096848994493484, -0.024870896711945534, 0.019558537751436234, 0.014232863672077656, 0.023539477959275246, 0.05964754521846771, -0.01134368497878313, -0.003521601902320981, 0.008088367059826851, 0.006277638021856546, -0.007036546710878611, -0.01672261580824852, 0.007895311340689659, -0.007535828277468681, -0.004024212248623371, -0.0011366985272616148, 0.0014162963489070535, -0.00523247430101037, -0.010564805008471012, -0.008194880560040474, -0.012888130731880665, 0.005175889004021883, 0.0037446143105626106, 0.023712562397122383, -0.020437272265553474, 0.010531519539654255, -0.025190437212586403, 0.037492744624614716, 0.0256431195884943, 0.01722855493426323, 0.008620934560894966, 0.021595606580376625, -0.00882730446755886, 0.010591433383524418, -0.009086931124329567, -0.01565748080611229, 0.0069300332106649876, -0.027014480903744698, 0.0175480954349041, 0.005655199754983187, -0.013713610358536243, 0.023020224645733833, -0.011976108886301517, -0.014445889741182327, -0.01694895699620247, 0.021236123517155647, 0.028891779482364655, -0.029131434857845306, -0.009120216593146324, -0.00205537723377347, -0.008767390623688698, 0.003990926779806614, -0.038744278252124786, -0.019065912812948227, -0.009393157437443733, -0.0369601771235466, 0.029850400984287262, -0.007056517992168665, 0.020823383703827858, -0.009433100000023842, -0.005505415145307779, 0.011150629259645939, 0.009073616936802864, 0.011350342072546482, 0.006863462273031473, -0.010910973884165287, -0.00594811188057065, -0.014192921109497547, 0.007489228621125221, 0.029690630733966827, 0.0014712173724547029, -0.008028453215956688, -0.0035915011540055275, 0.0007884493679739535, 0.013647039420902729, -0.025110552087426186, -0.048809800297021866, -0.018027406185865402, 0.012202450074255466, -0.002784328768029809, 0.02199503220617771, -0.021821947768330574, 0.002255090046674013, -0.044922057539224625, -0.0002425677957944572, -0.002679479541257024, -0.023672619834542274, -0.021542349830269814, 0.014525774866342545, -0.03264638036489487, -0.008048424497246742, -0.023259880021214485, -0.16839779913425446, 0.013440669514238834, 0.0033618316520005465, -0.036241210997104645, 0.04263201728463173, 0.033418603241443634, -0.007009918335825205, -0.02023756131529808, -0.01765460893511772, 0.013207671232521534, 0.011190571822226048, -0.0002579623251222074, -0.014951828867197037, 0.018733058124780655, -0.005069375969469547, 0.012581904418766499, -0.023393021896481514, 0.010225293226540089, 0.021555664017796516, 0.006117867771536112, 0.05922149121761322, -0.018320318311452866, -0.0005833277245983481, -0.0005891526816412807, 0.002243440132588148, -0.005585300270467997, -0.025376835837960243, -0.008674191311001778, 0.0026844723615795374, -0.006923376116901636, 0.0034450453240424395, 0.015484396368265152, 0.004789778031408787, 0.009419785812497139, 0.013320841826498508, -0.02420518733561039, 0.026481913402676582, 0.01212256494909525, -2.3156799215939827e-05, 0.018999341875314713, 0.019558537751436234, 0.006397465709596872, 0.011070744134485722, 0.0010251922067254782, 0.011217200197279453, 0.0247111264616251, -0.002504731062799692, -0.006613821256905794, 0.005072704516351223, 0.014951828867197037, 0.01931888237595558, -0.025350207462906837, -0.02966400235891342, -0.015164855867624283, 0.02180863358080387, 0.00028188625583425164, -0.0014071428449824452, 0.012608532793819904, -0.009712697938084602, -0.015497710555791855, 0.016203362494707108, -0.05895520746707916, -0.010345120914280415, 0.005006133578717709, -0.01737501099705696, -0.00738937221467495, -0.008108338341116905, 0.009233387187123299, -0.00845450721681118, -0.014232863672077656, 0.026907967403531075, -0.03301917761564255, -0.01092428807169199, -0.01455240324139595, 0.031527988612651825, 0.005818298552185297, -0.013886694796383381, 0.030835650861263275, 0.0337115153670311, 0.006424094084650278, -0.016482960432767868, 0.030516110360622406, 0.011010830290615559, -0.0003103869385086, 0.005914826411753893, 0.04444274678826332, 0.018679801374673843, -0.013820123858749866, -0.015031713992357254, 7.281194848474115e-05, 0.01722855493426323, -0.018626544624567032, -0.025576548650860786, -0.0023083467967808247, 0.01295470166951418, -0.008487792685627937, 0.013520554639399052, 0.021502407267689705, -0.030382968485355377, 0.005259102676063776, 0.02254091389477253, -0.017774436622858047, -0.023206623271107674, 0.018546659499406815, 0.019345510751008987, 0.02835921384394169, -0.006377494428306818, 0.028013044968247414, 0.013447326608002186, -0.01630987599492073, -0.025629805400967598, 0.030276454985141754, 0.013101157732307911, 0.009719355031847954, 0.019478652626276016, 0.028945036232471466, -0.011456855572760105, 0.003033969784155488, -0.014565717428922653, -0.021608920767903328, -0.007642341777682304, -0.0015710737789049745, 0.0025014025159180164, 0.018932770937681198, 0.005319016519933939, -0.029504232108592987, -0.053709421306848526, -0.014512460678815842, 0.015644166618585587, 0.0066337925381958485, -0.016110163182020187, 0.0012598547618836164, -0.020903268828988075, 0.02042395807802677, -0.004743178375065327, 0.004486880265176296, -0.0035815155133605003, -0.024285072460770607, -0.012442105449736118, 0.017028842121362686, -0.020224247127771378, -0.011976108886301517, 0.02674819715321064, -0.021915147081017494, -0.00882730446755886, 0.033605001866817474, 0.01360709685832262, 0.004383695311844349, -0.027014480903744698, -0.010478262789547443, -0.031847529113292694, -0.0069300332106649876, -0.017201926559209824, 0.008427878841757774, 0.03842473775148392, -0.0006761109107173979, 0.032353468239307404, 0.0031471403781324625, 0.003634772263467312, 0.005688485223799944, -0.032273583114147186, -0.009306615218520164, -0.02859886735677719, -0.009013703092932701, 0.001995463389903307, -0.020543785765767097, -0.00054296909365803, -0.0132808992639184, 0.006207738537341356, -0.0018390216864645481, -0.04292492941021919, 0.0006286791758611798, -0.01653621718287468, 0.010844402946531773, 0.006723663304001093, 0.0003998416068498045, -0.010684632696211338, 0.0028226070571690798, -0.009959010407328606, -0.02276725508272648, 0.026681626215577126, 0.031101934611797333, -0.0015186491655185819, -0.011636597104370594, -0.03206055611371994, 0.018506716936826706, -0.015071656554937363, 0.014858629554510117, -0.031847529113292694, 0.035602129995822906, 0.006114539224654436, 0.03128833323717117, -0.02203497476875782, -0.02873200923204422, 2.9202790756244212e-05, -0.004829720593988895, 0.0035282589960843325, 0.020663613453507423, -0.009639469906687737, 0.013434012420475483, -0.0383448526263237, -0.002136926632374525, 0.007868682965636253, -0.02878526598215103, 0.02216811664402485, -0.009852496907114983, -0.010771174915134907, -0.0060146828182041645, 0.019611794501543045, -0.013580468483269215, 0.011962794698774815, 0.014845315366983414, 0.001960513647645712, 0.016429703682661057, 0.010977544821798801, -0.05203183367848396, -0.002548001939430833, -0.011263799853622913, 0.02846572734415531, 0.008075052872300148, -0.003821170888841152, -0.009080274030566216, -0.008754076436161995, -0.03632109612226486, -0.005818298552185297, 0.049262482672929764, -0.0034350596833974123, -0.018453460186719894, -0.07775484025478363, 0.0037446143105626106, -0.011070744134485722, -0.012209107168018818, 0.009872468188405037, -0.020210932940244675, -0.005778355989605188, 0.005838269833475351, 0.01589713618159294, 0.009180130437016487, -0.04138048365712166, 0.0166294164955616, -0.006950004491955042, -0.005585300270467997, -0.0337381437420845, 0.008574334904551506, 0.00505939032882452, 0.0010526527184993029, -0.009759297594428062, 0.01852003112435341, -0.0020137703977525234, -0.025896089151501656, 0.0029091492760926485, 0.015763994306325912, -0.023845704272389412, 0.046679530292749405, -0.017348382622003555, 0.018773000687360764, -0.015164855867624283, -0.03312569111585617, 0.0002361187362112105, -0.012901444919407368, -0.025350207462906837, -0.004164011217653751, -0.00836130790412426, -0.008674191311001778, 0.0031920757610350847, 0.0037446143105626106, 0.009899096563458443, 0.014539089053869247, -0.013939951546490192, -0.0032436682377010584, 0.025802889838814735, -0.026202315464615822, -0.004646650515496731, -0.026268886402249336, 0.005512072239071131, 0.01064469013363123, -0.003521601902320981, 0.009166816249489784, 0.015577595680952072, 0.0059547689743340015, -0.0010692954529076815, -0.03264638036489487, 0.009486356750130653, -0.04867665842175484, -0.007216287776827812, 0.015071656554937363, -0.004996147938072681, -0.00012211603461764753, 0.011703168042004108, -0.0065139648504555225, 0.02001122012734413, 0.0023932247422635555, 0.010624718852341175, -0.010498234070837498, -0.02259417064487934, 0.0003241171652916819, 0.02878526598215103, -0.005641885567456484, -0.039436616003513336, 0.004573422484099865, 0.0052557741291821, 0.023353079333901405, 0.023486221209168434, 0.0012581904884427786, -0.01728181168437004, 0.0005350637948140502, -0.014059779234230518, 0.03368488699197769, -0.002904156455770135, 0.016416389495134354, -0.025696376338601112, 0.027986416593194008, 0.02753373421728611, 0.01829368993639946, -0.019784878939390182, -0.002543009351938963, -0.014179606921970844, -0.006563893053680658, -0.017721179872751236, -0.012555276043713093, 0.0029241277370601892, 0.033099062740802765, 0.04827723279595375, -0.007222944870591164, 0.007076489273458719, 0.009992295876145363, 0.03501630574464798, 0.012561933137476444, 0.010145409032702446, -0.005135946441441774, -0.0066337925381958485, -0.02005116268992424, -0.006653763819485903, 0.03264638036489487, -0.006071268115192652, -0.040315352380275726, 0.005016119219362736, -0.001087602460756898, -0.01885288581252098, 0.01588382199406624, -0.013460640795528889, 0.010285207070410252, -0.002504731062799692, -0.006843490991741419, -0.003475002245977521, -0.030382968485355377, -0.0397295281291008, 0.013620411045849323, 0.02527032233774662, 0.020397329702973366, 0.009040331467986107, -0.02180863358080387, 0.014685545116662979, -0.005458815488964319, 0.006996604148298502, -0.029450975358486176, 0.02267405577003956, -0.012328934855759144, -0.007582427933812141, -0.00163681257981807, -0.035735271871089935, -0.020330760627985, 0.0003070583916269243, 0.028146186843514442, -0.012488705106079578, 0.00689674774184823, 0.004137382842600346, 0.06129850447177887, 0.006936690304428339, -0.008234823122620583, -0.006061282474547625, -0.010058866813778877, 0.014312747865915298, -0.009160159155726433, 0.00576171325519681, -0.0009985638316720724, -0.006460708100348711, -0.0009852496441453695, -0.010411691851913929, 0.019478652626276016, 0.0008446185966022313, -0.016056906431913376, -0.012888130731880665, -0.03770577162504196, 0.01203602273017168, -0.025203751400113106, 0.02618900127708912, 0.049502138048410416, 0.00951964221894741, 0.02254091389477253, -0.016269933432340622, -0.01788095012307167, 0.0024880883283913136, 0.02531026490032673, 0.01746821030974388, -0.00900704599916935, -0.008181566372513771, -0.0023466250859200954, 0.01083108875900507, -0.029317833483219147, -0.01778775081038475, 0.016962271183729172, -0.007216287776827812, -0.018972713500261307, 0.01374023873358965, 0.0242584440857172, 0.010132094845175743, 0.015045028179883957, 0.01194282341748476, -0.016522902995347977, -0.025842832401394844, 0.015258055180311203, 0.0242584440857172, -0.012695075012743473, 0.014672230929136276, -0.017108727246522903], "9cab7fb6-4610-46eb-bd11-bb7ec3eede56": [-0.0343954972922802, -0.036769550293684006, -0.011354470625519753, -0.015756359323859215, -0.019698981195688248, 0.018907630816102028, -0.028870172798633575, -0.00809014867991209, -0.0033491095528006554, -0.012188214808702469, 0.011312076821923256, -0.0013733821688219905, 0.0050413282588124275, 0.016194429248571396, 0.0025860213208943605, -0.014583464711904526, 0.005751424469053745, -0.011064779944717884, 0.01343176607042551, -0.029732178896665573, 0.018314117565751076, 0.015812885016202927, 0.010584317147731781, -0.04459827020764351, -0.021790409460663795, -0.011446324177086353, 0.01126968301832676, -0.023189404979348183, 0.007263469509780407, 0.015092190355062485, 0.030834417790174484, -0.02111210860311985, 0.007510766852647066, -0.034875959157943726, -0.03450854495167732, -0.00830918364226818, 0.013997017405927181, -0.006994975730776787, 0.007228141650557518, 0.006641693878918886, 0.002031369134783745, 0.002177980961278081, -0.0018582611810415983, -0.0004027410177513957, -0.029449554160237312, 0.021309945732355118, -0.021917590871453285, -0.015558521263301373, -0.0024464749731123447, 0.02762662060558796, -0.014710646122694016, 0.03199318051338196, -0.029308240860700607, -0.007440110668540001, -0.0076803420670330524, 0.010881072841584682, -0.013933426700532436, 0.0030152583494782448, 0.00018205042579211295, -0.009185321629047394, 0.03236059471964836, -0.022171953693032265, -0.02366986684501171, -0.0101462472230196, 0.015501996502280235, 0.015841146931052208, 0.0013133243191987276, -0.003903761738911271, 0.007546095177531242, 0.004186387173831463, 0.02566237561404705, 0.030777892097830772, -0.005002467427402735, -0.006832465995103121, 0.04725494608283043, 0.0010686768218874931, -0.027852721512317657, 0.009376093745231628, -0.0032925845589488745, 0.030297430232167244, 0.009679915383458138, -0.011276748962700367, -0.0019077206961810589, -0.00012696057092398405, 0.00936902780085802, 0.007277600932866335, -0.006457987707108259, 0.020970795303583145, 0.001558855059556663, -0.011736014857888222, 0.011184895411133766, 0.025930870324373245, 0.025450406596064568, 0.01110717374831438, 0.0005749657866545022, 0.007871113717556, -0.032473646104335785, 0.019388094544410706, -9.461322770221159e-05, -0.04115024209022522, 0.009015746414661407, 0.024885155260562897, -0.023457897827029228, -0.00734119163826108, -0.0430438295006752, -0.03125835582613945, 0.04250684380531311, -0.018384775146842003, -0.010513660497963428, -0.0076662106439471245, -0.020151183009147644, 0.024984074756503105, -0.021437127143144608, -0.05884258449077606, -0.026807008311152458, 0.015855278819799423, 0.02990175411105156, 0.0021603170316666365, -0.029816966503858566, -0.002206243574619293, 0.01899241842329502, 0.023302454501390457, 0.014837827533483505, -0.008909761905670166, 0.0074683730490505695, 0.014710646122694016, -0.015713965520262718, 0.00397441815584898, -0.0026990713085979223, -0.02936476655304432, 0.03507379814982414, -0.005225034896284342, 0.02993001788854599, 0.003773047588765621, -0.03069310449063778, -0.0014290240360423923, 0.006659358274191618, -0.005931598134338856, -0.0029887622222304344, 0.0026531447656452656, -0.0011773109436035156, 0.014265511184930801, 0.005783219821751118, -0.009015746414661407, 0.0062071578577160835, 0.009453815408051014, 0.0005709913675673306, 0.003478057449683547, 0.01750863529741764, 0.006549840793013573, -0.002342256950214505, -0.015728097409009933, 0.0016498250188305974, -0.014244314283132553, 0.002815654268488288, 0.0076308827847242355, 0.01668902300298214, 0.011326207779347897, -0.005232100374996662, 7.341633317992091e-05, 0.0017619919963181019, 0.03094746731221676, 0.007327060215175152, -0.01909133791923523, 0.013120878487825394, 0.03761742636561394, 0.012273002415895462, 0.005966925993561745, -0.02215782180428505, 0.010174510069191456, -0.0019713114015758038, -0.0034356636460870504, -0.032219283282756805, 0.01852608658373356, -0.03922838717699051, 0.03532816097140312, -0.003903761738911271, 0.015290027484297752, -0.019430488348007202, 0.004659784492105246, -0.029477816075086594, -0.010612579062581062, 0.026538513600826263, 0.02793750911951065, 0.007531963754445314, -0.03286932036280632, 0.008669530041515827, 0.00043497796286828816, 0.003755383426323533, 0.01646292209625244, 0.03416939452290535, 0.024503611028194427, 0.005097853485494852, -0.002202710835263133, -0.567059338092804, -0.011114238761365414, 0.0017575760139152408, -0.01456933282315731, 0.013368175365030766, 0.03922838717699051, 0.021225158125162125, 0.026877664029598236, -0.042648155242204666, 0.02203064039349556, -0.013537750579416752, 0.019797900691628456, -0.00799829512834549, 0.017565160989761353, -0.010188641026616096, -0.024673186242580414, 0.03284105658531189, -0.018215199932456017, 0.004302969668060541, 0.013092615641653538, -0.006966713350266218, 0.01433616690337658, -0.005468799266964197, 0.002481803297996521, 0.021154502406716347, 0.02044793963432312, -0.0005038678646087646, 0.0004663317231461406, 0.021253421902656555, 0.03518684580922127, -0.01307141873985529, 0.007196346297860146, -0.0051190503872931, -0.0074825044721364975, 0.05189000070095062, -0.0012612153077498078, -0.017720604315400124, 0.0030170248355716467, 0.014993270859122276, 0.0521443635225296, 0.007743932772427797, -0.019571799784898758, 0.031484454870224, 0.023500291630625725, 0.006857195869088173, 0.003183067310601473, 0.01586940884590149, -0.018384775146842003, 0.0006685854168608785, 0.018625006079673767, -0.00029234052635729313, -0.015162846073508263, 0.00807601772248745, -0.002476504072546959, -0.010188641026616096, 0.009524472057819366, 0.024913419038057327, -0.02000986970961094, 0.02282199077308178, -0.020518595352768898, -0.012159952893853188, 0.017141222953796387, -0.01763581670820713, -0.007256404031068087, -0.008408102206885815, -0.002976397518068552, 0.004366560373455286, -0.009771768935024738, -0.012817056849598885, -0.02911040373146534, -0.001340703689493239, -0.011905590072274208, -0.005754957441240549, -0.0020296028815209866, 0.02443295530974865, 0.03897402435541153, 0.012386052869260311, -0.039680588990449905, 0.019995737820863724, 0.003748317714780569, 0.0069879102520644665, -0.0054758647456765175, -0.007298797834664583, -0.004582062363624573, 0.01586940884590149, 0.0027962238527834415, -0.017960837110877037, -0.007828719913959503, 0.011594702489674091, -0.0036423332057893276, 0.01779126189649105, 0.010231034830212593, 0.017494505271315575, -0.02041967585682869, 0.008259723894298077, 0.031710557639598846, -0.023316586390137672, 0.0060305166989564896, 0.020391413941979408, -0.01858261227607727, -0.027640752494335175, 0.02550693228840828, -0.015233502723276615, -0.01338230725377798, 0.012004508636891842, -0.00524623179808259, -0.02361334301531315, 0.018243461847305298, 0.025210175663232803, -0.0073199947364628315, -0.01814454235136509, -0.019981607794761658, -0.01079628523439169, 0.01288064755499363, 0.024475349113345146, -0.04027410224080086, 0.005995188839733601, 0.02215782180428505, 0.026312412694096565, -0.016491185873746872, 0.015374815091490746, 0.0029940614476799965, 0.008104279637336731, 0.027725540101528168, 0.026496119797229767, 0.014216051436960697, 0.04623749479651451, -0.017932573333382607, -0.006853662896901369, 0.002619583159685135, -0.009029877372086048, 0.014025279320776463, 0.009715244174003601, -0.03125835582613945, 0.004253510385751724, -0.008280920796096325, 0.006673489231616259, -0.015600915066897869, 0.014314970001578331, -0.006754744332283735, -0.02026423253118992, -0.000602786720264703, -0.005765555892139673, 0.0027149689849466085, -0.0030788490548729897, -0.021536046639084816, -0.00747543852776289, -0.008662465028464794, -0.015176977962255478, -0.012032771483063698, 0.0078004575334489346, 0.018766319379210472, -0.013410569168627262, -0.004589127842336893, 0.006150632631033659, -0.012174083851277828, 0.0054758647456765175, -0.019444618374109268, -0.004285305738449097, -0.021437127143144608, -0.001206456683576107, -0.018610874190926552, -0.014011148363351822, 0.00874018669128418, -0.012760531157255173, -0.01376385148614645, -0.0017505103023722768, 0.0007167200674302876, -0.017452111467719078, -0.03524337336421013, -0.017155354842543602, -0.004730440676212311, -2.8773131361958804e-06, -0.00415459182113409, 0.02136647142469883, -0.012061033397912979, -0.01653357967734337, -0.004009746015071869, 0.009792965836822987, -0.0004862037894781679, -0.006744145881384611, 0.001126968301832676, 0.0036388004664331675, 0.006567504722625017, 0.03631734848022461, 0.002766194986179471, 0.011714817956089973, 0.010725629515945911, -0.015261765569448471, 0.005444069392979145, 0.0034338971599936485, 0.028502758592367172, 0.00922771543264389, -0.010329954326152802, 0.039171863347291946, 0.02300569787621498, 0.01839890517294407, 0.01960006356239319, -0.0023616875987499952, 0.027457045391201973, 0.016787942498922348, 0.033575884997844696, 0.007277600932866335, -0.030862679705023766, 0.018116280436515808, -0.048498496413230896, 0.007185747846961021, -0.002958733355626464, -0.0010077357292175293, 0.003960286732763052, -0.0033579415176063776, -0.006302543915808201, -0.00037381608854047954, 0.0028439168818295, 0.01911959983408451, -0.0026460792869329453, -0.041037190705537796, 0.003992082085460424, -0.007146886549890041, 0.007765129674226046, 0.005037795752286911, 0.008810843341052532, 0.005270961672067642, -0.014074739068746567, -0.0010068526025861502, -0.02655264548957348, 0.021733883768320084, 0.003751850686967373, -0.024136198684573174, -0.03094746731221676, -0.010895204730331898, 0.0025913205463439226, -0.010987057350575924, 0.009277175180613995, 0.01880871318280697, -0.03156924247741699, 0.01855435036122799, -0.012287134304642677, 0.013092615641653538, -0.0006875743274576962, 0.010916401632130146, 0.011036517098546028, -0.003935556858778, -0.006585169117897749, 0.003448028350248933, 0.015685703605413437, 0.0583338588476181, 0.014237248338758945, -0.029025616124272346, 0.047707147896289825, -0.04827239736914635, -0.021762145683169365, -0.02133820950984955, 0.019204387441277504, 0.006595767568796873, 0.02376878634095192, -0.0029446021653711796, 0.01978376880288124, 0.04437216743826866, 0.03015611693263054, 0.009072271175682545, 0.03306715935468674, -0.02816361002624035, 0.003612304339185357, 0.002612517448142171, -0.024955812841653824, -0.01659010350704193, -0.022680679336190224, 0.019063076004385948, -0.013219797052443027, -0.012993697077035904, 0.014894352294504642, -0.0057125636376440525, -0.011064779944717884, 0.005995188839733601, -0.008401036262512207, 0.01330458465963602, -0.008457561954855919, 0.01643466018140316, -0.027711408212780952, -0.005889204330742359, -0.04629402235150337, 0.02740052156150341, 0.008782580494880676, -0.005087255034595728, 0.008287986740469933, -0.016392266377806664, 0.010337019339203835, 0.0054899961687624454, 0.02085774578154087, 0.005518258549273014, 0.005839745048433542, 0.0073058633133769035, 0.019416356459259987, -0.02879951521754265, -0.008888565003871918, -0.007030304055660963, -0.0260721817612648, -0.007291732355952263, -0.004900015890598297, -0.007192813325673342, 0.017678210511803627, -0.0352151095867157, 0.0007096544140949845, 0.057062044739723206, 0.01786191761493683, 0.010831614024937153, -0.0008116645039990544, 0.005853876005858183, -0.02550693228840828, -0.011043583042919636, -0.0007286433246918023, 0.0004195219080429524, -0.015403077937662601, 0.004313568118959665, -0.005627776030451059, 0.004239379428327084, -0.024913419038057327, 0.02879951521754265, 0.004991868976503611, -0.03295410796999931, -0.03343456983566284, -0.02535148710012436, -0.007595554459840059, -0.02581781893968582, 0.014187788590788841, 0.005571250803768635, -0.02006639540195465, -0.039934951812028885, -0.012668678537011147, -0.014392692595720291, -0.013770916499197483, -0.0002737932372838259, -0.02964739128947258, -0.0030717835761606693, -0.015049796551465988, 0.010181576013565063, -0.024800367653369904, 0.01329045370221138, 0.005175575613975525, 0.0051155174151062965, -0.0034568605478852987, 0.014420954510569572, -0.03043874353170395, 0.022482840344309807, 0.02044793963432312, -0.0046951123513281345, 0.0004219507100060582, 0.0006818334804847836, -0.012075165286660194, 0.025040600448846817, 0.03739132359623909, 0.0124213807284832, -0.02162083424627781, -0.0101462472230196, 0.012760531157255173, -0.011969180777668953, 0.04985509812831879, 0.014399757608771324, 0.005885671358555555, 0.0039284913800656796, 0.06359069049358368, -0.0008964520529843867, 0.012004508636891842, 0.017466241493821144, 0.028460364788770676, 0.009531538002192974, -0.027174420654773712, 0.020179444923996925, -0.01184906531125307, 0.007164550945162773, 0.011834933422505856, -0.01153817679733038, -0.051974788308143616, 0.03959580138325691, -0.002624882385134697, -0.06342111527919769, -0.01050659455358982, 0.017522767186164856, 0.03100399300456047, -0.025718901306390762, -0.017367323860526085, 0.031484454870224, 0.006072910502552986, 0.01166535820811987, -0.015233502723276615, -0.005341617856174707, -0.005172042641788721, 0.0063166748732328415, -0.02427751198410988, 0.0005334552261047065, 0.0038154413923621178, -0.022426316514611244, 0.006521578412503004, 0.014060608111321926, -0.021196896210312843, -0.024899287149310112, -0.01148871798068285, 0.031371407210826874, 0.012859450653195381, 0.034565072506666183, -0.007440110668540001, -0.015883540734648705, 0.028841909021139145, -0.010923466645181179, -0.01612377166748047, 0.01674554869532585, 0.00142195844091475, 0.003932024352252483, 0.0027185019571334124, 0.04245031625032425, -0.004514938686043024, -0.015275896526873112, 0.02471558004617691, 0.036741286516189575, 0.012202346697449684, 0.016929253935813904, 0.011248486116528511, -0.018610874190926552, 0.008895630948245525, -0.004794031381607056, 0.02171975187957287, -0.011453389190137386, 0.017932573333382607, 0.0019236182561144233, -0.02800816483795643, -0.015275896526873112, 0.009291306138038635, -0.00843636505305767, -0.019487012177705765, 0.02366986684501171, 0.024517742916941643, 0.009701112285256386, 0.025139518082141876, 0.04086761549115181, 0.003048820188269019, 0.0016233290079981089, -0.01319860015064478, 0.027796195819973946, -0.0011419827351346612, 0.00480462983250618, -0.009757637977600098, -0.0036352677270770073, -0.0023016296327114105, 0.0215219147503376, -0.03397155925631523, 0.035893410444259644, 0.013488291762769222, 0.007849916815757751, 0.00011211170931346714, 0.0054016755893826485, -0.04301556572318077, -0.0405849888920784, 0.006415593903511763, -0.002757362788543105, 0.0217480156570673, 0.0024394094944000244, -0.03798483684659004, -0.008669530041515827, -0.0037765803281217813, 0.0331236831843853, 0.00888149905949831, -0.017974967136979103, -0.02162083424627781, -0.01330458465963602, -0.0033650072291493416, 0.012541497126221657, -0.01661836728453636, 0.0019395159324631095, -0.035130321979522705, -0.011474586091935635, -0.0003300975076854229, 0.0035928739234805107, 0.02844623476266861, 0.028107084333896637, -0.004045074339956045, -0.03470638394355774, -0.009870687499642372, 0.010739760473370552, -0.030664842575788498, -0.03985016420483589, -0.013332847505807877, 0.018625006079673767, 0.012944238260388374, 0.038606613874435425, 0.011552308686077595, -0.010534857399761677, 0.001405177521519363, 0.02788098342716694, 0.008146673440933228, -0.001967778429389, 0.025521062314510345, -0.017056435346603394, 0.00669115362688899, -0.004514938686043024, 0.026368938386440277, 0.010520726442337036, -0.014272576197981834, -0.0237970482558012, 0.03069310449063778, -0.0012338359374552965, 0.01707056723535061, 0.010570185258984566, -0.04041541367769241, -0.015558521263301373, 0.0014007615391165018, -0.0008867367869243026, -0.009651653468608856, -0.021126240491867065, -0.028488628566265106, 0.023938361555337906, -0.004423085600137711, 0.030806155875325203, 0.019868556410074234, 0.016378134489059448, -0.021832803264260292, 0.005465266294777393, -0.011085976846516132, 0.030919205397367477, -0.0030912139918655157, 0.029590867459774017, -0.028488628566265106, -0.0002797548659145832, 0.004921212792396545, 0.008379839360713959, 0.00310181244276464, 0.004380691796541214, -0.0011923253769055009, 0.01763581670820713, 0.029279978945851326, -0.014449217356741428, -0.009044009260833263, -0.01817280612885952, -0.016802072525024414, -0.012760531157255173, -0.038550086319446564, 0.0022557030897587538, -0.005588914733380079, 0.00922771543264389, 0.023316586390137672, -0.009566865861415863, 0.004878818988800049, 0.00036807527067139745, -0.02819187194108963, 0.0006813918589614332, 0.008245592936873436, 0.03250190615653992, 0.0031265420839190483, 0.02300569787621498, 0.03072136826813221, 0.0020331356208771467, 0.007125689648091793, -0.049515947699546814, -0.018370643258094788, -0.001686919596977532, 0.023217666894197464, 0.043976493179798126, -0.031371407210826874, -0.018441298976540565, -0.012046902440488338, 0.00011923254351131618, -0.02282199077308178, -0.022935042157769203, 0.024757973849773407, 0.02415033057332039, -0.002389949979260564, -0.010859875939786434, 0.0058362120762467384, -0.017522767186164856, -0.0021603170316666365, -0.014166591688990593, -0.008097214624285698, 0.000992721295915544, -0.01216701790690422, -0.01175721175968647, 0.0022786662448197603, -0.0005449368618428707, 0.009630456566810608, 0.0059563275426626205, -0.00042835393105633557, 0.004013278987258673, -0.013820376247167587, -0.014993270859122276, 0.036515187472105026, -0.000669910223223269, 0.02737225778400898, -0.026637433096766472, -0.033264994621276855, 0.03018438071012497, -0.011856130324304104, -0.009241846390068531, -0.029760442674160004, -0.008810843341052532, 0.04782019555568695, -0.014753039926290512, -0.015219371765851974, -0.013679063878953457, -0.002259235829114914, 0.030777892097830772, 0.015699833631515503, 0.00875431764870882, -0.008174936287105083, -0.004822293762117624, -0.008047754876315594, 0.0052780271507799625, -0.0008584742899984121, -0.0013566013658419251, -0.0028015230782330036, 0.0007688290788792074, -0.014979139901697636, -0.030636580660939217, -0.013898097909986973, 0.0008381605730392039, -0.044513482600450516, -0.0161520354449749, -0.020207706838846207, -0.004221715033054352, -0.0011879093945026398, -0.008690726943314075, 0.002264535054564476, 0.00833038054406643, 0.04945942386984825, -0.025309093296527863, 0.028022296726703644, -0.021041452884674072, 0.010443003848195076, -0.007567292079329491, 0.018088018521666527, -0.004313568118959665, -0.022115428000688553, 0.022228477522730827, -0.022751335054636, -0.013947557657957077, -0.019585931673645973, 0.005917466711252928, 0.02241218462586403, 0.003755383426323533, 0.004041541367769241, 0.010110919363796711, 0.0015906504122540355, 0.020462069660425186, -0.01666076108813286, -0.03419765830039978, -0.011856130324304104, -0.014350298792123795, 0.006468586158007383, 0.0024994672276079655, 0.009093468077480793, -0.007055033463984728, -0.015261765569448471, -0.023472029715776443, 0.020363152027130127, -0.039454489946365356, -0.04007626324892044, 0.0064650531858205795, -0.005592447705566883, -0.014484545215964317, -0.009602193720638752, -0.016519447788596153, -0.02822013385593891, -0.01079628523439169, -0.018950024619698524, 0.014378560706973076, -0.015063927508890629, -0.01123435515910387, 0.04194159060716629, -0.013332847505807877, 0.012598021887242794, -0.005938663613051176, -0.00338973687030375, -0.014979139901697636, -0.02386770397424698, -0.03905881196260452, -0.018695661798119545, -0.02300569787621498, 0.020334888249635696, -0.0003599056217353791, -0.023782916367053986, -0.0017195981927216053, -0.014011148363351822, -0.03261495754122734, -0.007531963754445314, 0.02415033057332039, 0.03546947240829468, 0.03744785115122795, -0.013961688615381718, -0.007892310619354248, 0.008733120746910572, -0.014237248338758945, 0.024418823421001434, -0.00010201006080023944, -0.001194974989630282, -0.011962114833295345, 0.002550693228840828, -0.011594702489674091, 0.008182002231478691, -0.020391413941979408, -0.010697366669774055, -0.005006000399589539, 0.012159952893853188, -0.012209411710500717, 0.027259208261966705, 0.0015014468226581812, -0.0028686465229839087, -0.01215288694947958, 0.003317314200103283, -0.005083722062408924, 0.01177134271711111, -0.024220986291766167, -0.010845744982361794, 0.0074683730490505695, 0.03546947240829468, 0.03309541940689087, 0.010979992337524891, -0.006563972216099501, 0.008846171200275421, 0.0031530382111668587, 0.007609685882925987, -0.03928491473197937, -0.010153313167393208, 0.012463774532079697, -0.0030965132173150778, 0.03182360529899597, -0.00021351456234697253, 0.001692218822427094, 0.007864048704504967, 0.01656184159219265, 0.0071716164238750935, -0.012202346697449684, -0.0070620994083583355, -0.03467812016606331, -0.0047693015076220036, -0.0090086804702878, 0.008118411526083946, 0.0018600276671350002, -0.010344085283577442, 0.01203983649611473, -0.03569557145237923, 0.001277112984098494, 0.007743932772427797, -0.021861065179109573, -0.02164909616112709, 0.022200215607881546, 0.020772958174347878, -0.021889327093958855, -0.012590955942869186, -0.0018865237943828106, 0.011036517098546028, 0.01141099538654089, -0.04148939251899719, 0.025139518082141876, -0.024701450020074844, 0.0031336077954620123, 0.014908483251929283, -0.005020131357014179, -0.015487865544855595, -0.010831614024937153, 0.01909133791923523, 0.0022345061879605055, -0.012442577630281448, 0.25368446111679077, 0.000263857189565897, -0.02246871031820774, 0.02781032770872116, -0.01047833263874054, 0.004299437161535025, 0.00773686682805419, -0.00284038414247334, -0.0343954972922802, 0.012859450653195381, -0.012124624103307724, -0.007899376563727856, 0.0078004575334489346, -0.013339913450181484, -0.00467744842171669, 0.0034904221538454294, -0.04278946667909622, -0.02781032770872116, -0.02034902013838291, 0.013318716548383236, 0.025337357074022293, -0.003601705888286233, -0.007786326576024294, -0.011834933422505856, -0.006224821787327528, -0.020391413941979408, -0.01577049121260643, 0.025167781859636307, 0.029336504638195038, -0.00020700093591585755, -0.045248307287693024, 0.023090485483407974, -0.007687407545745373, 0.006415593903511763, 0.008817908354103565, -0.007185747846961021, 0.028488628566265106, 0.01456933282315731, 0.01960006356239319, -0.0013716157991439104, -0.010951729491353035, -0.002474737586453557, -0.03213449567556381, -0.017904311418533325, -0.04171549156308174, 0.0229774359613657, -0.0028774787206202745, -0.0229774359613657, 0.025026468560099602, 0.003617603564634919, -0.03015611693263054, -0.019048944115638733, 0.01674554869532585, 0.013240993954241276, 0.0017248974181711674, -0.013481225818395615, 0.03829572722315788, -0.012181149795651436, 0.030919205397367477, 0.03614777326583862, 0.0050731236115098, 0.028234265744686127, -0.023401373997330666, -0.007104492746293545, -0.02749943919479847, 0.023839442059397697, -0.010012000799179077, 0.009001615457236767, 0.031060518696904182, -0.030071329325437546, 0.007284666411578655, -0.011340339668095112, -0.0006226588157005608, 0.005578316282480955, -0.014131263829767704, -0.021465390920639038, 0.049035485833883286, -0.015699833631515503, 0.036232560873031616, 0.03657171130180359, -0.003402101807296276, 0.008676595985889435, 0.014216051436960697, -0.009708178229629993, -0.001845896360464394, -0.04479610547423363, 0.021182764321565628, -0.0037977772299200296, -0.027640752494335175, 0.016915123909711838, -0.0056383744813501835, -0.025973264127969742, 0.009792965836822987, 0.0017593423835933208, 0.0008544998709112406, 0.021790409460663795, -0.0017743568168953061, 0.007906442508101463, -0.009538603015244007, -0.006362601649016142, -0.029336504638195038, -0.0020296028815209866, 0.009906016290187836, 0.007489569950848818, -0.03744785115122795, 0.004847023636102676, 0.022864384576678276, 0.006422659382224083, 0.022200215607881546, -0.00651097996160388, -0.00067167665110901, -0.05776860564947128, -0.00747543852776289, 0.000248180323978886, 0.007920573465526104, 0.025393880903720856, -0.01599659025669098, -0.012590955942869186, -0.004161657299846411, 0.008443430066108704, 0.016477053984999657, -0.01829998753964901, 0.01829998753964901, -0.002776793437078595, 0.0036741285584867, 0.0039002287667244673, -0.011926786974072456, -0.02778206579387188, 0.0031671696342527866, -0.02203064039349556, 0.009390224702656269, -0.03428244590759277, 0.027315733954310417, 0.00875431764870882, 0.0008809959981590509, 0.01633574068546295, 0.013269256800413132, -0.020518595352768898, 0.00875431764870882, 0.016067247837781906, -0.0027449980843812227, 0.012930106371641159, 0.01577049121260643, -0.024065542966127396, -0.009884819388389587, -0.027739671990275383, -0.008478758856654167, 0.01605311594903469, -0.013029024936258793, -0.015007402747869492, -0.039115339517593384, -0.018610874190926552, -0.017084697261452675, -0.0035822754725813866, 0.003970885183662176, -0.024630792438983917, -0.030664842575788498, -0.03843703866004944, -0.004412487149238586, 0.016830336302518845, -0.03787178918719292, -0.006821867544203997, 0.015459602698683739, -0.016575973480939865, 0.00211792322807014, -0.033575884997844696, -0.1809932291507721, 0.01893589459359646, 0.029732178896665573, -0.025196043774485588, 0.031173568218946457, -0.005422872491180897, 0.003889630315825343, -0.014265511184930801, -0.025436274707317352, -0.0018865237943828106, 0.041545916348695755, 0.006571037694811821, -0.025054730474948883, 0.005857408978044987, -0.004991868976503611, 0.003988549113273621, -0.042874254286289215, -0.01175721175968647, 0.04038715362548828, 0.013191535137593746, 0.03366067260503769, -0.03422592207789421, -0.013919294811785221, 0.0347629077732563, 0.0016162632964551449, 0.010153313167393208, -0.012343659065663815, -0.022327397018671036, 0.001831765053793788, -0.022143689915537834, -0.001270930515602231, 0.011524045839905739, 0.010654972866177559, 0.009503275156021118, 0.021945852786302567, -0.012364855967462063, 0.002105558291077614, -0.020278364419937134, 0.004666849970817566, -0.004896482918411493, -0.009948410093784332, 0.05398142710328102, -0.0006849247147329152, -6.303868576651439e-05, -0.019416356459259987, 0.020970795303583145, 0.009552734903991222, -0.002123222453519702, -0.0065392423421144485, -0.0011940918629989028, -0.003041754476726055, -0.009531538002192974, -0.012492037378251553, -0.004189919680356979, 0.01899241842329502, 0.011601767502725124, 0.001695751678198576, 0.00039854581700637937, -0.01468238327652216, 0.0009944876655936241, -0.012258871458470821, -0.025846082717180252, 0.010909335687756538, 0.01602485403418541, -0.017084697261452675, -0.02060338295996189, -0.009347830899059772, 0.03159750625491142, -0.0389457643032074, -0.009347830899059772, 0.013029024936258793, -0.030664842575788498, 0.02942129224538803, -0.0146965142339468, 0.01577049121260643, 0.021465390920639038, -0.01013211626559496, 0.03074963018298149, 0.025450406596064568, -0.0032855188474059105, -0.014124198816716671, 0.07167377322912216, -0.010570185258984566, -0.01480956468731165, 0.019190257415175438, -0.0028633472975343466, -0.0032007312402129173, 0.010958795435726643, -0.032699745148420334, -0.03408460691571236, 0.023853573948144913, -0.02366986684501171, -0.006910188123583794, -0.0010430639376863837, 7.391313556581736e-05, 0.012124624103307724, -0.006238953210413456, -0.013679063878953457, -0.02003813162446022, -0.016166165471076965, 0.010866941884160042, -0.0003928049700334668, -0.013912229798734188, 0.02448948100209236, 0.029845230281352997, 0.02003813162446022, -0.02711789496243, 0.028149478137493134, 0.0035063198301941156, -0.0031035789288580418, -0.0161520354449749, 0.006747678387910128, 0.010626710951328278, 0.004186387173831463, 0.031399667263031006, 0.01921851933002472, -0.011601767502725124, -0.004698645323514938, 0.020024001598358154, 0.02287851646542549, -0.020758826285600662, -0.03046700544655323, -0.0008633318939246237, 0.014654120430350304, 0.0028562818188220263, -0.01618029735982418, -0.059973083436489105, -0.009255978278815746, -0.0017028172733262181, 0.013170338235795498, -0.015558521263301373, 0.018921762704849243, -0.017056435346603394, 0.03281279653310776, -0.014724777080118656, 0.025846082717180252, 0.01166535820811987, -0.03156924247741699, -0.008966286666691303, 0.0073341261595487595, -0.016236823052167892, 0.008817908354103565, 0.0010315822437405586, -0.02364160493016243, 0.006850130390375853, 0.016674891114234924, -0.01201157458126545, -0.0084858238697052, 0.022299135103821754, -0.010117985308170319, -0.010626710951328278, -0.0029852294828742743, -0.02686353214085102, 0.02778206579387188, 0.00807601772248745, 0.011524045839905739, 0.051720425486564636, -0.0026496120262891054, 0.005210903473198414, 0.00973644107580185, 0.0015429573832079768, 0.003773047588765621, -0.02019357681274414, -0.010209837928414345, 0.026100443676114082, -0.010817482136189938, -0.018031492829322815, -0.0006164764054119587, -0.0078004575334489346, 0.014004082418978214, -0.027457045391201973, -0.008945089764893055, -0.014166591688990593, 0.006037582643330097, -0.009545668959617615, -0.01618029735982418, -0.04872459918260574, 0.0017787727992981672, 0.01725427247583866, -0.0018105681519955397, 0.029845230281352997, 0.014364429749548435, 0.02203064039349556, 0.002389949979260564, -0.017423847690224648, 0.020151183009147644, 0.007588488981127739, -0.004338297992944717, -0.003315547714009881, 0.006786539684981108, 0.015360684134066105, 0.01027342863380909, -0.02019357681274414, -0.029562603682279587, 0.021097976714372635, 0.013099681586027145, -0.009757637977600098, 0.0283473152667284, -0.030353955924510956, 0.005482930224388838, -0.03236059471964836, -0.03956753760576248, -0.0061682965606451035, -0.025492800399661064, 0.02655264548957348, -0.0070620994083583355, -0.021069714799523354, -0.0019200855167582631, -0.006754744332283735, -0.005620710086077452, 0.019487012177705765, 0.004158124327659607, -0.007235207129269838, 0.018413037061691284, -0.002898675622418523, -0.03411287069320679, 0.009425553493201733, 0.010782154276967049, -0.012901844456791878, -0.029816966503858566, 0.008287986740469933, 0.00468451390042901, -0.006270748563110828, 0.014110066927969456, -0.0005815898184664547, 0.010450069792568684, -0.028375577181577682, -0.03411287069320679, -0.0856354609131813, 0.028304921463131905, -0.025902606546878815, -0.018780449405312538, 0.023472029715776443, -0.014420954510569572, 0.022426316514611244, -0.0016780876321718097, 0.006606366019695997, -0.010485397651791573, -0.008259723894298077, 0.00809014867991209, 0.0021638497710227966, -0.015304158441722393, -0.02341550402343273, -0.0194728821516037, 0.006680555175989866, -0.003924958407878876, -0.01454107090830803, 0.00946794729679823, 0.006790072191506624, 0.009475012309849262, 0.03422592207789421, 0.005648972932249308, -0.012181149795651436, 0.041800279170274734, 0.01203983649611473, 0.029760442674160004, 0.0063908640295267105, -0.040471941232681274, -0.015247633680701256, -0.006104705855250359, 0.010231034830212593, 0.020843613892793655, 0.015388946048915386, 0.013947557657957077, -0.005147312767803669, 0.0019607129506766796, 0.026312412694096565, 0.03043874353170395, -0.016703154891729355, -0.012979566119611263, 0.021281683817505836, -0.014484545215964317, -0.019614193588495255, -0.0031459727324545383, -0.013120878487825394, 0.007242272607982159, 0.014406823553144932, 0.01852608658373356, 0.024729711934924126, 0.014795433729887009, -0.02032075822353363, -0.011439258232712746, -0.01618029735982418, -0.040726304054260254, 0.007175149396061897, 0.007065631914883852, -0.02619936317205429, -0.012393118813633919, 0.03043874353170395, -0.013841573148965836, 0.01975550688803196, 0.004267641808837652, 0.0018723924877122045, -0.00525329727679491, -0.0028686465229839087, -0.009142927825450897, 0.007991230115294456, -0.028206003829836845, -0.025690637528896332, -0.030664842575788498, 0.0019483480136841536, 0.0038437037728726864, -0.03151271864771843, 0.004182854201644659, -0.0017195981927216053, -0.0048187607899308205, -0.009679915383458138, 0.02740052156150341, -0.006454454734921455, -0.01063377596437931, -0.04165896773338318, -0.013707325793802738, 0.03428244590759277, 0.02200237847864628, -0.003765981877222657, 0.010859875939786434, -0.025181911885738373, 0.005726694595068693, -0.013841573148965836, 0.010393545031547546, 0.010782154276967049, -0.009114664979279041, 0.017211878672242165, 0.04937463626265526, 0.005631308536976576, -0.008747252635657787, 0.026340676471590996, 0.0005771738360635936, 0.009849490597844124, -0.010845744982361794, 0.0068395319394767284, -0.02006639540195465, -0.008464626967906952, 0.014329101890325546, -0.013968754559755325, -0.045022208243608475, -0.011199026368558407, 0.015092190355062485, 0.01640639826655388, 0.019275043159723282, 0.00028328769258223474, 0.018907630816102028, -0.016505315899848938, 0.005345150828361511, 0.007362388540059328, -0.01661836728453636, -0.04505046829581261, 0.02057512104511261, 0.031117042526602745, 0.012357790023088455, 0.012032771483063698, -0.008641268126666546, 0.02591673843562603, 0.0023669868241995573, 0.004627989139407873, -0.02111210860311985, -0.003089447505772114, 0.010810417123138905, -0.01184906531125307, 0.02187519706785679, -0.01640639826655388, -0.025803688913583755, -0.03131487965583801, -0.004310035612434149, -0.0078004575334489346, -0.005740826018154621, -0.02142299711704254, 0.08665291219949722, 0.004122796468436718, -0.010570185258984566, 0.011637096293270588, -0.015685703605413437, 0.007991230115294456, 0.02228500321507454, 0.0033561752643436193, -0.0070479679852724075, -0.01216701790690422, 0.013191535137593746, -1.3351560482988134e-05, 0.009072271175682545, -0.007454241625964642, -0.01036528218537569, -0.003181300824508071, -0.026368938386440277, 0.02942129224538803, -0.0014625858748331666, 0.030636580660939217, 0.0318518690764904, 0.004080402664840221, -0.010845744982361794, 0.006924319546669722, -0.015516127459704876, -0.005302757024765015, 0.01495087705552578, 0.0026372470892965794, -0.01659010350704193, -0.006366134621202946, 0.011912655085325241, -0.019642457365989685, -0.012739334255456924, -0.014484545215964317, -0.026510251685976982, 0.029279978945851326, -0.01327632274478674, 0.01589767262339592, 0.04352429136633873, 0.013749719597399235, -0.005963393487036228, 0.01368612889200449, -0.029562603682279587, -0.04083935171365738, 0.020080525428056717, -0.003744784975424409, 0.00297463103197515, -0.0023669868241995573, -0.020490333437919617], "30108c3b-c684-4ff2-964f-5b5eae299db8": [-0.02199050411581993, -0.02021266520023346, 0.00910800788551569, -0.014099633321166039, -0.007815655320882797, 0.00402407068759203, -0.0027197522576898336, -0.02488975040614605, -0.0025094884913414717, 0.007138708606362343, 0.019282719120383263, 0.0005970292259007692, -0.009887522086501122, 0.0012273929314687848, -0.017997203394770622, -0.018147636204957962, 0.004492463078349829, -0.007972925901412964, 0.02956683561205864, -0.001429963973350823, 0.007692574057728052, -0.0005948923644609749, 0.009497764520347118, -0.014373146928846836, -0.015644986182451248, 0.010509765706956387, 0.004745463375002146, -0.0192416924983263, 0.0019949409179389477, 0.018694663420319557, 0.016698013991117477, 0.00593182910233736, -0.006468600127846003, -0.015932176262140274, -0.005723275244235992, 0.004595031030476093, -0.005562585778534412, 0.007063492201268673, 0.029676241800189018, 0.0038052599411457777, 0.025067534297704697, 0.01463298499584198, 0.02209991030395031, 0.02527266927063465, -0.0381004624068737, 0.015453526750206947, -0.013662011362612247, 0.016834771260619164, -0.012711551040410995, 0.021771693602204323, 0.032684892416000366, -0.011829469352960587, -0.04050738364458084, -0.006919897627085447, 0.012355983257293701, 0.012773091904819012, -0.022222992032766342, 0.01522103976458311, -0.008020790293812752, -0.026202617213129997, 0.03435332700610161, -0.004208692815154791, -0.03186435252428055, -0.013819281943142414, 0.0009786663576960564, 0.009333656169474125, -0.008013952523469925, 0.001472700503654778, 0.009087493643164635, 0.007822493091225624, 0.010865333490073681, 0.020527206361293793, -0.00658142426982522, -0.003921503201127052, 0.022674288600683212, 0.0020462246611714363, -0.03164554014801979, 0.027665914967656136, -0.0005145477480255067, 0.0035317461006343365, -0.006547234952449799, -0.0021966572385281324, -0.01795617677271366, -0.0016786905471235514, 0.036486733704805374, 0.007590006105601788, -0.015754392370581627, 0.014031254686415195, 0.00897808838635683, -0.026708615943789482, -0.012075631879270077, 0.013614146038889885, 0.007829330861568451, 0.009046467021107674, 0.001950494828633964, -0.0020667382050305605, -0.019583584740757942, 0.02553250826895237, -0.024233317002654076, -0.0467708483338356, -0.010584982112050056, 0.014892823062837124, -0.013627822510898113, 0.0012889335630461574, -0.052405234426259995, -0.012923524715006351, 0.03900305926799774, 0.007343844044953585, 0.006957505829632282, -0.035091813653707504, -0.03273959457874298, 0.04570414498448372, -0.010489252395927906, -0.022181963548064232, -0.03684230148792267, 0.008622520603239536, 0.03366954252123833, -0.016205688938498497, -0.03257548809051514, 0.007877196185290813, 0.022537533193826675, -0.001945366500876844, 0.008102844469249249, 0.003918084315955639, 0.009525115601718426, 0.03025062009692192, 0.005046328529715538, 0.0026069278828799725, -0.02885570004582405, -0.024205965921282768, 0.03096175566315651, -0.01825704239308834, 0.01905023120343685, 0.0011188421631231904, -0.027146238833665848, -0.015740714967250824, -0.009231088683009148, -0.01935109682381153, -0.0011598692508414388, 0.0019949409179389477, 0.009668710641562939, 0.01306711882352829, 0.009928548708558083, -0.011925199069082737, -0.013744065538048744, 0.02390510030090809, -0.006383127067238092, 0.011357658542692661, -0.0071523841470479965, 0.012608983553946018, 0.00756265502423048, -0.022346071898937225, -0.02059558406472206, -0.022838396951556206, -0.009162710048258305, 0.01591849885880947, -0.007473763078451157, -0.0024445289745926857, -0.0025761574506759644, -0.027966780588030815, 0.017586933448910713, 0.03161818906664848, -0.0035625165328383446, -0.029047159478068352, 0.009675548411905766, 0.05068209767341614, 0.015289418399333954, 0.002765907673165202, -0.012027766555547714, 0.001515437033958733, -0.013928687199950218, -0.000777804700192064, -0.01765531115233898, 0.007938736118376255, -0.01576806791126728, 0.006916478741914034, -0.008820817805826664, 0.010434549301862717, -0.018079258501529694, 0.003760813968256116, -0.006434410810470581, 0.0032719080336391926, -0.0035146516747772694, 0.02467093989253044, -0.018694663420319557, -0.013819281943142414, 0.011904685758054256, -0.009921710938215256, 0.018339095637202263, 0.014168011955916882, 0.009593494236469269, 0.04398100823163986, -0.0037676517385989428, -0.0032975501380860806, -0.5811619758605957, -0.030195917934179306, -0.006755789276212454, 0.007938736118376255, 0.027843698859214783, 0.020281044766306877, 0.0032018201891332865, 0.030195917934179306, -0.038373976945877075, 0.031235268339514732, 0.005056585185229778, 0.010208900086581707, -0.012492740526795387, 0.00895757507532835, 0.009675548411905766, -0.011118333786725998, 0.015193688683211803, -0.01231495663523674, -0.009135358966886997, 0.03572089597582817, -0.0006628434639424086, 0.027200940996408463, -0.006930154282599688, -0.002788130659610033, -0.009778115898370743, 0.01020206231623888, -0.006540397182106972, -0.010024278424680233, 0.012903010472655296, 0.06980070471763611, -0.03161818906664848, -5.758746192441322e-05, 0.012061956338584423, -0.009894359856843948, 0.05358134210109711, -0.0008256696164608002, -0.033286623656749725, 0.01776471734046936, -0.0023624750319868326, 0.046032361686229706, -0.02025369182229042, -0.005230950191617012, 0.029922403395175934, 0.010017440654337406, -0.0007162641268223524, 0.013285930268466473, 0.0008743892540223897, -0.04310576617717743, 0.00995589978992939, 0.013764578849077225, 0.0009658454218879342, -0.0006666897679679096, -0.0023470898158848286, 0.001988102914765477, 0.021730666980147362, 0.004960855469107628, 0.02312558703124523, -0.039276573807001114, 0.0006991695263423026, -0.034599486738443375, -0.021224666386842728, 0.01881774514913559, 0.00993538647890091, 0.004878801293671131, -0.015426174737513065, 0.007439573761075735, 0.0006196795729920268, -0.0218810997903347, 0.003836030140519142, -0.02530002035200596, 0.018243366852402687, -0.02179904468357563, 0.011357658542692661, 0.0055796802043914795, 0.022346071898937225, 0.05049063637852669, 0.006595100276172161, -0.014017579145729542, 0.027433428913354874, 0.011706388555467129, -0.000226930933422409, 0.007213925011456013, -0.014550930820405483, -0.012171361595392227, 0.0003138997417408973, -0.026298345997929573, -0.0350644625723362, -0.00739170890301466, -0.014058606699109077, 0.014345795847475529, 0.010017440654337406, 0.00526172062382102, 0.010646522045135498, -0.03342337906360626, 0.030414728447794914, 0.01583644561469555, -0.02836337499320507, 0.02424699254333973, -0.009162710048258305, -0.009668710641562939, -0.038264572620391846, 0.007966088131070137, -0.004960855469107628, -0.0005017267540097237, 0.021183639764785767, -0.01165168546140194, -0.011945712380111217, -0.01429109275341034, 0.03875689581036568, -0.017368122935295105, -0.001012855558656156, -0.027365049347281456, -0.018995529040694237, -0.027788996696472168, 0.04417246952652931, -0.037471383810043335, 0.017668988555669785, 0.00021272103185765445, 0.01931007020175457, 0.016766391694545746, -0.0014692816184833646, 0.009682386182248592, 0.004807003773748875, -0.0002683853672351688, 0.010489252395927906, 0.03208316117525101, 0.03624057024717331, -0.005969437304884195, -0.022619586437940598, 0.019433151930570602, -0.018010878935456276, 0.005295909941196442, 0.025217967107892036, -0.009490926750004292, -0.004383057821542025, -0.015193688683211803, 0.007261789869517088, -0.004301003646105528, 0.015549256466329098, 0.006776303052902222, -0.021935801953077316, 0.003555678529664874, -0.006499370094388723, 0.004461693111807108, -0.007289141416549683, -0.019665637984871864, -0.0167800672352314, 0.006605356931686401, -0.017751041799783707, 0.017135635018348694, 0.014222714118659496, -0.00682758679613471, -0.013832957483828068, 0.012171361595392227, -0.023016180843114853, 0.010509765706956387, -0.011152522638440132, -0.007774628233164549, 0.004041165579110384, -0.01941947638988495, -0.003203529631718993, -0.012937200255692005, -0.015658661723136902, 0.007931898348033428, -0.034790948033332825, -0.03265754133462906, -0.02175801806151867, 0.0016684337751939893, -0.013224389404058456, -0.02937537617981434, -0.00511128781363368, 0.01125509012490511, 0.01346371416002512, 0.014851796440780163, -0.011077306233346462, 0.00741222221404314, -0.006701086647808552, 0.002092380076646805, -0.00027885581948794425, -0.009559305384755135, 0.006533559411764145, 0.011159360408782959, 0.00527197727933526, -0.010208900086581707, 0.014195363037288189, 0.015084282495081425, 0.023358073085546494, 0.0011162779992446303, -0.006543816067278385, 0.0002057763485936448, -0.019556231796741486, 0.014646660536527634, -0.005610450636595488, 0.017039906233549118, 0.005692504812031984, -0.0010632846970111132, 0.02482137270271778, 0.03930392488837242, -0.00922425091266632, 0.030414728447794914, 0.015603958629071712, 0.0339430570602417, 0.01738179847598076, -0.026380401104688644, 0.011029441840946674, -0.012909848242998123, 0.012075631879270077, -0.012485901825129986, 0.01117987371981144, -0.00995589978992939, -0.007268627639859915, -0.010564467869699001, -0.016424499452114105, 0.004307841416448355, 0.009607169777154922, 0.012540604919195175, -0.008273790590465069, 0.011220901273190975, -0.0011051665060222149, 0.011815793812274933, -0.012697875499725342, -0.009962738491594791, 0.004625800997018814, -0.027857374399900436, 0.011309793218970299, -0.016164662316441536, 0.0044206660240888596, -0.0004309978394303471, 0.009313142858445644, -0.01920066401362419, -0.0028086442034691572, 0.014099633321166039, 0.007425898220390081, 0.00295052956789732, 0.017491204664111137, -0.023809371516108513, 0.03993300721049309, -0.025587210431694984, 0.0026941103860735893, -0.0017692920519039035, -0.005295909941196442, 0.015439850278198719, -0.011480739340186119, 0.0008166949264705181, 0.01795617677271366, 0.018106609582901, 0.06208761781454086, 0.022127261385321617, -0.0271599143743515, 0.03164554014801979, -0.000838917912915349, -0.00014412892051041126, -0.03492770344018936, 0.024807697162032127, 0.012615821324288845, -0.0038599625695496798, 0.0014094505459070206, 0.012602145783603191, 0.032985758036375046, 0.022797370329499245, 0.02504018321633339, 0.02051353082060814, 0.014181687496602535, 0.009025953710079193, -0.010215737856924534, -0.02937537617981434, -0.01308763213455677, -0.02776164561510086, 0.01905023120343685, -0.01125509012490511, -0.0307429451495409, -0.013497903011739254, -0.0013641497353091836, -0.02855483442544937, 0.008697737008333206, -0.00968922395259142, 0.028691591694951057, 0.031180566176772118, 0.02530002035200596, -0.036787599325180054, -0.007952411659061909, -0.029594186693429947, 0.047153767198324203, -0.010660198517143726, 0.010161035694181919, -0.018886124715209007, -0.021552883088588715, -0.0005320697091519833, -0.0006671171286143363, 0.01184314489364624, -0.012718388810753822, -0.02051353082060814, 0.008301141671836376, 0.004646314773708582, 0.0027710360009223223, -0.011815793812274933, 0.014605633914470673, 0.005819004960358143, 0.014154336415231228, -0.02304353192448616, 0.011097820475697517, 0.01325857825577259, -0.0059625995345413685, 0.0024872655048966408, 0.038866303861141205, 0.015631310641765594, 0.018010878935456276, -0.01274573989212513, 0.0059386673383414745, -0.022564884275197983, 0.0013256869278848171, -0.009942224249243736, -0.010263603180646896, -0.02602483332157135, -0.026120562106370926, 0.01448255218565464, 0.028937753289937973, -0.010393521748483181, 0.00876611564308405, 0.035091813653707504, 0.0008021645480766892, -0.015631310641765594, 0.00048249532119370997, -0.012130334042012691, -0.029129212722182274, 0.016656987369060516, 0.018680987879633904, -0.006119870115071535, -0.0448836050927639, -0.01174741517752409, -0.01325857825577259, -0.004909571725875139, 0.019679313525557518, -0.02757018432021141, -0.008800304494798183, 0.0008914838545024395, 0.032712243497371674, -0.005138639360666275, 0.026900077238678932, 0.016260391101241112, -0.001998359803110361, -0.01397655252367258, 0.027406075969338417, -0.013771416619420052, 0.0026291508693248034, 0.011432874016463757, 0.008301141671836376, 0.00863619614392519, -0.014920174144208431, 0.0002596243575681001, 0.013450038619339466, 0.0207460168749094, 0.016164662316441536, -0.01274573989212513, -0.006919897627085447, 0.01742282509803772, 0.0006239532376639545, 0.03872954472899437, 0.029402727261185646, 0.014838120900094509, 0.008232763968408108, 0.038456030189991, -0.003565935418009758, 0.014468876644968987, 0.02040412463247776, 0.031508784741163254, 0.009217413142323494, -0.009627684019505978, -0.006366032175719738, -0.020048556849360466, -0.011063630692660809, 0.010755928233265877, -0.0022684545256197453, -0.016574932262301445, 0.030277971178293228, -3.8623133150395006e-05, -0.05018977075815201, -0.0006406204774975777, 0.009928548708558083, 0.010967900976538658, -0.03864749148488045, -0.02066396363079548, 0.002155630150809884, 0.019091259688138962, 0.010626008734107018, -0.003863381687551737, -0.017450176179409027, -0.013190200552344322, -0.013470551930367947, -0.026845373213291168, -0.004810423124581575, -0.006513046100735664, -0.032001107931137085, -0.00698827626183629, 0.02504018321633339, -0.05576945096254349, -0.041054412722587585, -0.004755720030516386, 0.01870834082365036, 0.025614561513066292, 0.018530555069446564, -0.006889127194881439, -0.027652239426970482, 0.025108560919761658, -0.004810423124581575, -0.03323191776871681, -0.023932453244924545, -0.019214339554309845, 0.018612610176205635, -0.0008496020454913378, 0.006000207737088203, -0.012636334635317326, -0.01798352785408497, 0.02190845087170601, 0.013641498051583767, 0.011289279907941818, -0.005439504515379667, 0.01991179957985878, 0.013956038281321526, -0.014209038577973843, -0.016082607209682465, 0.017518555745482445, 0.01836644858121872, -0.011699549853801727, -0.005706180352717638, -0.05494891107082367, -0.009019115939736366, -0.008102844469249249, -0.05155733972787857, 0.008013952523469925, 0.002846252406015992, 0.018270717933773994, -0.014988552778959274, 0.022496504709124565, 0.0369517058134079, -0.0177236907184124, 0.005918153561651707, 0.026599211618304253, 0.01813396066427231, 0.01388082280755043, 0.003111218800768256, 0.002897536149248481, 0.0005705325747840106, 0.004690760746598244, -0.0011897847289219499, -0.009607169777154922, 0.023672614246606827, 0.016725365072488785, 0.037963707000017166, 0.006919897627085447, -0.00040044120396487415, -0.048220474272966385, -0.03703375905752182, 0.028418077155947685, -0.011795280501246452, 0.020951151847839355, 0.01780574396252632, -0.030277971178293228, -0.010058468207716942, 0.022988829761743546, -0.012732064351439476, 0.01067387405782938, -0.011022604070603848, -0.03257548809051514, -0.007692574057728052, -0.00402749003842473, -0.00756265502423048, -0.021976828575134277, -0.013826119713485241, -0.024862399324774742, -0.003613800276070833, -0.005289072170853615, 0.011289279907941818, 0.010639684274792671, 0.029812997207045555, 0.00937468372285366, -0.05571474879980087, -0.024903425946831703, 0.02482137270271778, -0.026462454348802567, -0.01641082391142845, 0.003918084315955639, 0.014427850022912025, 0.00722076278179884, 0.011514928191900253, 0.0044445982202887535, 0.01338849775493145, -0.012205550447106361, -0.0013034639414399862, 0.008458412252366543, -0.021771693602204323, 0.031207917258143425, 0.001010291394777596, -0.0035351652186363935, -0.010167873464524746, 0.0030069416388869286, 0.009121683426201344, -0.007070330437272787, -0.013094469904899597, 0.042066413909196854, -0.009340493939816952, 0.013436362147331238, 0.00714554637670517, -0.04726317524909973, -0.028117213398218155, 0.019173312932252884, 0.007008789572864771, 0.016547581180930138, 0.010174711234867573, -0.0077199251390993595, 0.008314818143844604, -0.010113170370459557, 0.007856681942939758, 0.010311468504369259, 0.01159698236733675, -0.01258163247257471, 0.013361146673560143, 0.0006030123331584036, 0.0077336011454463005, -0.002280420856550336, 0.0083900336176157, -0.0071523841470479965, 0.004092449322342873, -0.011302955448627472, 0.020992180332541466, 0.009962738491594791, -0.01708093285560608, 0.020431475713849068, -0.015439850278198719, 0.036787599325180054, 0.0008158402051776648, -0.03164554014801979, -0.007713087368756533, -0.027652239426970482, -0.04657939076423645, -0.024862399324774742, 0.0059386673383414745, -0.01482444442808628, 0.005097612272948027, -0.0009470413206145167, 0.0010068725096061826, -0.003518070559948683, -0.004181341268122196, -0.02044515125453472, -0.010099494829773903, -0.01682109571993351, 0.043351929634809494, 0.016875797882676125, 0.013525254093110561, 0.0433792807161808, 0.004724950063973665, 0.0008149854838848114, -0.05136588215827942, 0.004564260598272085, -0.012355983257293701, 0.0258333720266819, 0.03323191776871681, -0.04154673591256142, -0.005822423845529556, -0.01316284853965044, 0.008868683129549026, -0.015617634169757366, -0.038373976945877075, 0.03755343705415726, 0.012438037432730198, -0.010550792329013348, -0.023699965327978134, 0.004728368949145079, -0.02353585697710514, 0.0016171500319615006, -0.03156348690390587, 0.0005854903720319271, -0.022455478087067604, -0.016875797882676125, -0.030907053500413895, 0.0017385217361152172, -0.025847049430012703, 0.02096482738852501, 0.0011196968844160438, 0.016793744638562202, -0.020335746929049492, -0.004386476706713438, -0.035392679274082184, 0.028910402208566666, 0.002027420559898019, 0.018147636204957962, -0.008082331158220768, -0.006683992221951485, 0.023809371516108513, 0.007015627343207598, -0.00599678885191679, -0.03025062009692192, -0.011207225732505322, 0.046825554221868515, -0.007644709199666977, 0.0009299467201344669, 0.012533767148852348, -0.007193411234766245, 0.03227462247014046, -0.004690760746598244, 0.005842937156558037, 0.01003111619502306, -0.009114845655858517, -0.0031214754562824965, 0.02270163968205452, -0.004673665855079889, 0.021443476900458336, -0.024575209245085716, -0.008848169818520546, -0.00033035330125130713, -0.016684338450431824, -0.004800166003406048, 0.011282442137598991, -0.01602790504693985, -0.025395750999450684, -0.02160758525133133, -0.00022265728330239654, 0.007261789869517088, 0.002847961848601699, 0.001420562039129436, 0.0032445567194372416, 0.04020652174949646, -0.027241969481110573, 0.019775044173002243, -0.018284393474459648, 0.01133030652999878, -0.012957713566720486, 0.001907758298330009, 0.0026445360854268074, -0.021634936332702637, 0.034681543707847595, -0.013798768632113934, -0.009778115898370743, -0.013908173888921738, 0.009607169777154922, 0.025464128702878952, 0.02179904468357563, 0.006201924290508032, 0.03681495040655136, 0.0020957989618182182, 0.014619309455156326, 0.004010395146906376, -0.01641082391142845, -0.0021744342520833015, 0.006793397478759289, -0.0017120250267907977, -0.005531815346330404, -0.006277140229940414, -0.015467202290892601, -0.01101576630026102, 0.0022889680694788694, -0.006984857376664877, -0.04556738957762718, -0.018612610176205635, -0.009805467911064625, -0.029430078342556953, -0.020718665793538094, -0.013429524376988411, -0.02160758525133133, -0.025354724377393723, -0.024602560326457024, -0.008116520009934902, -0.007179735694080591, -0.002523164264857769, 0.004820679780095816, 0.03913981467485428, -0.02334439754486084, 0.023959804326295853, 0.003702692221850157, -0.02621629275381565, -0.008349006995558739, 0.0054224100895226, -0.020267367362976074, -0.03842867910861969, -0.021963153034448624, 0.04657939076423645, -0.004147151950746775, -0.0177236907184124, -0.02549147978425026, -0.01453725527971983, -0.01092003658413887, -0.0013966294936835766, 0.007473763078451157, 0.021963153034448624, 0.055878859013319016, -0.008813980035483837, -0.0046052876859903336, 0.034380678087472916, -0.024123912677168846, 0.0033266108948737383, 0.02255120873451233, -0.00452665239572525, -0.021703315898776054, -0.0049198283813893795, -0.023699965327978134, -0.006632708013057709, -0.02266061305999756, -0.0128209562972188, 0.014414174482226372, -0.003198401303961873, -0.006389964837580919, 0.01059865765273571, 0.03596705570816994, -0.015617634169757366, -0.019706664606928825, -0.030496781691908836, -0.0038599625695496798, -0.0039146654307842255, -0.022181963548064232, -0.027966780588030815, 0.015084282495081425, 0.014838120900094509, -0.0002024642744800076, -0.007945573888719082, 0.00598653219640255, 0.0005470275063998997, 0.002543677808716893, -0.004424084909260273, -0.02647612988948822, -0.0046668280847370625, -0.022865748032927513, -0.01935109682381153, 0.03405246138572693, 0.0008461831603199244, 0.005398477427661419, 0.013662011362612247, 0.003032583510503173, 0.0015410790219902992, -0.027501806616783142, 0.005418991204351187, -0.02259223535656929, 0.011220901273190975, 0.02040412463247776, -0.001832542009651661, -0.02063661254942417, 0.006909640971571207, 0.0005068551399745047, -0.019433151930570602, -0.014906498603522778, 0.021894775331020355, -0.0008478926029056311, -0.034079812467098236, 0.03096175566315651, 0.019487854093313217, -0.017299743369221687, 0.010981576517224312, 0.01289617270231247, -0.02568294107913971, 0.009073818102478981, -0.03156348690390587, -0.0040992870926856995, -0.048712797462940216, 0.016766391694545746, -0.0051420582458376884, 0.017586933448910713, 0.0019419476157054305, -0.013176524080336094, 0.009169547818601131, -0.03829192370176315, 0.012116658501327038, 0.22034266591072083, -0.007849844172596931, 0.016684338450431824, 0.03566619008779526, -0.010133683681488037, 0.009142196737229824, -0.00821908749639988, -0.015945851802825928, -0.02609321102499962, 0.018270717933773994, -0.026038508862257004, -0.000575233600102365, 0.002863347064703703, -0.009572980925440788, 8.013097976800054e-05, -0.005812167190015316, -0.022017857059836388, -0.04589560627937317, -0.04770079627633095, -0.012349145486950874, 0.01001060288399458, -0.0019539138302206993, -0.007822493091225624, -0.0233854241669178, 0.025409426540136337, 0.0001221196143887937, 0.0018171569099649787, 0.01323806494474411, 0.0269684549421072, 0.0034975570160895586, -0.02926596999168396, 0.0030889958143234253, -0.013169686309993267, -0.0035317461006343365, -0.0012726936256513, -0.011603820137679577, 0.03254813700914383, 0.027857374399900436, 0.02722829207777977, 0.012301280163228512, -0.025559859350323677, 0.004622382111847401, 0.010133683681488037, -0.017928825691342354, -0.021429801359772682, 0.0011667070211842656, -0.01291668601334095, -0.02029472030699253, 0.018585259094834328, 0.00890287198126316, -0.024465804919600487, -0.019884448498487473, 0.0414920337498188, 0.014168011955916882, -0.0035761920735239983, -0.01821601577103138, 0.030715594068169594, 0.0035830300766974688, 4.837239976041019e-05, 0.026202617213129997, -0.01817498728632927, 0.04143733158707619, -0.0042052739299833775, 0.007590006105601788, -0.03126262128353119, 0.01133030652999878, -0.015562932007014751, 0.03044207952916622, -0.004564260598272085, -0.006950668059289455, 0.010639684274792671, 0.006301072891801596, -0.012533767148852348, 0.0016445013461634517, -0.02907451055943966, -0.03801840916275978, 0.041574086993932724, 0.00016143721586558968, 0.030086511746048927, 0.03550208359956741, 0.030688241124153137, 0.0009060142911039293, 0.007829330861568451, 0.016260391101241112, -0.04099971055984497, -0.007330168038606644, 0.022578559815883636, 0.0006183974910527468, -0.0014769742265343666, 0.01067387405782938, 0.009231088683009148, -0.020226340740919113, 0.01289617270231247, -0.015945851802825928, -0.0033385769929736853, 0.019487854093313217, -0.011097820475697517, 0.006396802607923746, 0.014168011955916882, -0.0044822064228355885, -0.03645938262343407, 0.01738179847598076, 0.022605910897254944, 0.008670385926961899, -0.039057761430740356, -0.014414174482226372, 0.003283874364569783, 0.012034604325890541, 0.0033642190974205732, -0.015863796696066856, -0.012704713270068169, -0.03643203154206276, 0.006027559284120798, 0.0047728149220347404, -0.0031043810304254293, 0.023139262571930885, -0.022838396951556206, -0.01340901106595993, 0.008266952820122242, 0.012923524715006351, 0.026489805430173874, -0.01935109682381153, -0.01595952734351158, -0.01920066401362419, -0.00534719368442893, -0.010790117084980011, -0.01896817795932293, -0.017026230692863464, 0.008602007292211056, -0.022017857059836388, 0.02274266816675663, -0.03580294921994209, 0.009901197627186775, -0.007384871132671833, 0.00714554637670517, -0.010646522045135498, 0.013306443579494953, -0.00527197727933526, 0.01591849885880947, 0.0201716385781765, -0.016424499452114105, 0.030578836798667908, 0.0016863831551745534, -0.002005197573453188, 0.0013538929633796215, -0.009709738194942474, 0.007364357355982065, -0.004950598813593388, 0.003651408478617668, -0.0076036821119487286, -0.026599211618304253, -0.005654896609485149, 0.01133030652999878, -0.004492463078349829, 0.011118333786725998, -0.015781743451952934, -0.016274068504571915, -0.0569455623626709, -0.011043117381632328, 0.04967009648680687, -0.038073111325502396, -0.0017026230925694108, 0.023262344300746918, -0.02997710555791855, -0.01189784798771143, -0.005771140102297068, -0.17209485173225403, 0.006219018716365099, 0.003227462060749531, -0.039276573807001114, 0.03276694566011429, 0.0019043394131585956, -0.001407740986905992, -0.006212180946022272, -0.026530832052230835, -0.016985204070806503, 0.01061917096376419, -0.0032736174762248993, -0.019405800849199295, 0.010475575923919678, -0.0165886078029871, 0.024219641461968422, -0.015330445021390915, 0.014113308861851692, 0.05492155998945236, 0.01363466028124094, 0.040562089532613754, -0.04690760746598244, 0.003386442083865404, 0.03790900483727455, -0.0017624541651457548, 0.005292491056025028, -0.03197375684976578, -0.02244180254638195, 0.001297480775974691, -0.008745602332055569, -0.0034052461851388216, 0.027556508779525757, 0.010680711828172207, -0.010414035990834236, 0.016656987369060516, -0.01851687952876091, 0.009121683426201344, -0.016451852396130562, -0.022715317085385323, 0.00378132751211524, 0.017149312421679497, 0.0316728912293911, 0.0028069347608834505, -0.018462177366018295, -0.021621260792016983, 0.025313695892691612, -0.019487854093313217, 0.008752440102398396, 0.005285652820020914, 0.015330445021390915, 0.02240077592432499, -0.03219256550073624, -0.015850121155381203, -0.010817468166351318, 0.023754669353365898, 0.0006115596042945981, 0.010906360112130642, 0.005354031454771757, 0.006831005681306124, -0.005952342879027128, 0.0027419752441346645, -0.026612887158989906, -0.006663478445261717, 0.015576607547700405, -0.021744342520833015, -0.0003976633306592703, -0.005343774799257517, 0.040562089532613754, -0.0175322312861681, 0.02145715244114399, 0.006389964837580919, -0.04756404086947441, 0.006048072595149279, 0.004147151950746775, 0.003993300721049309, -0.001340217306278646, -0.004909571725875139, 0.021293044090270996, 0.011761090718209743, -0.009538792073726654, -0.004673665855079889, 0.04570414498448372, 0.011166198179125786, -0.0004859142645727843, 0.021826395764946938, -0.006612194702029228, 0.018694663420319557, 0.007275465410202742, -0.05125647410750389, -0.03257548809051514, 0.033778946846723557, -0.010926874354481697, -0.0010573015315458179, 0.0022120424546301365, 0.010858495719730854, 0.020322071388363838, -0.006266883574426174, -0.002335123484954238, -0.015234715305268764, -0.027665914967656136, 0.004232625011354685, 0.0029009550344198942, -0.012451712973415852, 0.008321655914187431, 0.01802455633878708, 0.021033206954598427, -0.020267367362976074, 0.017491204664111137, 0.03749873489141464, -0.010441387072205544, -0.019036555662751198, 0.008581493981182575, 0.0056480588391423225, 0.03872954472899437, 0.0019846840295940638, 0.003111218800768256, -0.025395750999450684, 0.012526929378509521, -0.0003502258041407913, 0.010400360450148582, -0.01522103976458311, -0.0307429451495409, 0.01701255515217781, 0.017217690125107765, 0.0103730084374547, -0.02308456040918827, -0.06613562256097794, -0.020828071981668472, 0.009805467911064625, -0.000546600145753473, 0.009060142561793327, 0.018653636798262596, 0.006923316512256861, 0.04031592607498169, -0.00968922395259142, 0.01976136863231659, -0.0026445360854268074, -0.005979693960398436, -0.00255051557905972, -0.01133030652999878, -0.020650288090109825, -0.010154197923839092, -0.0002619748702272773, 0.020417800173163414, -0.010926874354481697, 0.011227739043533802, -0.01738179847598076, -0.00526172062382102, 0.006013883277773857, 0.0013889370020478964, -0.008232763968408108, 0.0014504775172099471, -0.021675964817404747, 0.0021795625798404217, 0.007275465410202742, 0.012301280163228512, 0.03224727138876915, 0.011774766258895397, -0.012513253837823868, -0.006389964837580919, 0.027898401021957397, 0.019597260281443596, -0.0203630980104208, -0.029895052313804626, 0.012082469649612904, -0.015549256466329098, 0.019104935228824615, 0.0007252387586049736, 0.01920066401362419, 0.007863519713282585, -0.006526721641421318, -0.012226064689457417, -0.02791207656264305, 0.03301310911774635, -0.00927895400673151, -0.007685736287385225, -0.05546858534216881, -0.0241375882178545, -0.003993300721049309, -0.011186712421476841, 0.03495505452156067, 0.014017579145729542, 0.01397655252367258, 0.02387774921953678, -0.014400498941540718, 0.028527483344078064, 0.008643033914268017, 0.004899315070360899, -0.0023915357887744904, 0.025409426540136337, -0.0018957920838147402, 0.029785646125674248, -0.016998879611492157, -0.019337421283125877, 0.03276694566011429, 0.0013573119649663568, -0.006448086351156235, 0.015344120562076569, -0.00063634681282565, 0.023207640275359154, -0.03134467452764511, -0.010147360153496265, 0.013894498348236084, -0.017751041799783707, 0.01522103976458311, 0.012157686054706573, -0.008492602035403252, 0.003921503201127052, -0.007931898348033428, -0.003420631168410182, 0.02579234540462494, 0.024219641461968422, -0.0020171639043837786, 0.008225926198065281, 0.012451712973415852, -0.015576607547700405, -0.01059865765273571, -0.0004534345061983913, 0.0012812409549951553, -0.0167800672352314, -0.00724127609282732, -0.008212249726057053, 0.004878801293671131, -0.01355944387614727, -0.004123219754546881, 0.014359471388161182, -0.03446273133158684, -0.04630587622523308, -0.08063185214996338, 0.02836337499320507, -0.0010444805957376957, -0.01487914752215147, 0.012526929378509521, -0.003111218800768256, 0.020034881308674812, -0.013778254389762878, -0.009066980332136154, -0.029512133449316025, -0.011077306233346462, 0.008567817509174347, 0.013272254727780819, 0.00609251856803894, -0.006800235249102116, 0.0048822201788425446, 0.01067387405782938, 0.006567748729139566, 0.007795141544193029, 0.003962530288845301, 0.02572396770119667, -0.011398685164749622, 0.009586656466126442, -0.0004307841300033033, -0.025217967107892036, 0.006461762357503176, 0.006000207737088203, -0.0018718596547842026, -0.009750764816999435, -0.03982359915971756, 0.015398823656141758, 0.0013581666862592101, 0.0052343690767884254, -0.004530071280896664, 0.004841193091124296, 0.019337421283125877, 0.0008453283808194101, 0.01152176596224308, 0.02259223535656929, 0.03610381484031677, -0.02233239635825157, -0.016274068504571915, 0.03312251344323158, -0.01652023009955883, -0.008253277279436588, -6.725660205120221e-05, -0.015248390845954418, -0.007938736118376255, -0.0008666966459713876, 0.04121851921081543, 0.0041676657274365425, 0.016848446801304817, -0.004540327936410904, 0.008314818143844604, 0.003198401303961873, -0.04879485070705414, 0.0058019100688397884, -0.003242847276851535, 0.0119730643928051, -0.01636979728937149, 0.023180289193987846, 0.006205343175679445, -0.0009419129346497357, -0.004940342158079147, 0.0167800672352314, -0.0006230985163711011, -0.02437007427215576, -0.007337006274610758, -0.01832542009651661, 0.0030736105982214212, -0.0003581320634111762, -0.00968922395259142, 0.025354724377393723, 0.005890802014619112, 0.016123635694384575, 0.016205688938498497, -0.015344120562076569, 0.006841262336820364, -0.003140279557555914, 0.034079812467098236, -0.0066361273638904095, 0.007877196185290813, -0.048275176435709, -0.004003557376563549, 0.027652239426970482, -0.010092657059431076, -0.00681733014062047, -0.0012744030682370067, -0.018147636204957962, -0.008697737008333206, -0.016944175586104393, -0.012711551040410995, -0.007596844341605902, 0.017340771853923798, 0.008574656210839748, 0.05535918101668358, -0.003996719606220722, -0.020937476307153702, 0.019583584740757942, 0.01180211827158928, 0.028226617723703384, -0.009990089572966099, -0.013887660577893257, -0.03894835710525513, -0.02617526426911354, 0.0014521870762109756, -0.019829746335744858, -0.03785430267453194, 0.002728299470618367, 0.0003256523050367832, -0.03681495040655136, 0.013525254093110561, -0.014961201697587967, 0.013108146376907825, -0.00935417041182518, 0.003918084315955639, -0.01323806494474411, -0.03372424468398094, -0.031071161851286888, 0.0023846980184316635, 0.02885570004582405, 0.013757741078734398, 0.02636672556400299, -0.02673596888780594, 0.04608706384897232, -0.01027727872133255, 0.02293412759900093, -0.03487300127744675, 0.015015904791653156, -0.009716575965285301, -0.027898401021957397, 0.0018598934402689338, -0.024014506489038467, -0.03574824705719948, -0.02469829097390175, 0.015262066386640072, 0.008554141968488693, -0.0029727525543421507, -0.007200249470770359, 0.07734968513250351, -0.005856613162904978, 0.00937468372285366, -0.010044791735708714, -0.013176524080336094, 0.0033197731245309114, 0.02229136973619461, 0.03366954252123833, 0.004400152247399092, -0.030633538961410522, 0.01231495663523674, -0.027091536670923233, -0.0021761436946690083, -0.015603958629071712, -0.008102844469249249, 0.001072686747647822, -0.017518555745482445, 0.0243290476500988, -0.0015385147416964173, 0.04359808936715126, 0.04357073828577995, 0.006513046100735664, 0.020951151847839355, 0.00829430390149355, -0.008916547521948814, 0.003685597563162446, 0.03391570225358009, 0.009696061722934246, -0.003959111403673887, 0.0013308152556419373, 0.012807280756533146, -0.008759277872741222, 0.007863519713282585, -0.023699965327978134, -0.007760952226817608, 0.027556508779525757, -0.0116927120834589, 0.00600704550743103, 0.041355278342962265, 0.005316423252224922, -0.0044206660240888596, -0.0030120699666440487, -0.026571860536932945, -0.04132792726159096, 0.005497626028954983, 0.007439573761075735, 0.0030274551827460527, -0.0028941172640770674, -0.025327373296022415], "d4901a71-eb19-4e06-8bce-ca8451429be1": [-0.013773567043244839, -0.017345521599054337, 0.008102916181087494, -0.027727818116545677, -0.026907796040177345, 0.010639420710504055, -0.0024774353951215744, -0.018902171403169632, 0.001174436416476965, -0.02164020575582981, 0.03032686561346054, 0.014968851581215858, -0.0056741260923445225, 0.0019232264021411538, -0.020097455009818077, 0.004263412673026323, 0.008777000941336155, 0.0005164219182915986, 0.020458821207284927, -0.004343329928815365, 0.013954250141978264, -0.008123763836920261, -0.014607486315071583, -0.025823701173067093, -0.01449629757553339, 0.013419151306152344, 0.011765211820602417, -0.01174436416476965, 0.02935395948588848, 0.02536504529416561, 0.020903578028082848, 0.009034126065671444, -0.0031654187478125095, -0.018818778917193413, 1.977572355826851e-05, 0.012390650808811188, -0.018665894865989685, 0.007150858175009489, 0.01869369111955166, 0.021945977583527565, 0.02357211895287037, 0.01781807653605938, 0.018068252131342888, 0.009590072557330132, -0.037359584122896194, 0.008290547877550125, -0.02296057902276516, -0.0070083970203995705, -0.013162026181817055, 0.014329513534903526, 0.013287114910781384, 0.002715449780225754, -0.04016711562871933, -0.0037630610167980194, 0.012939647771418095, 0.012057083658874035, -0.015844468027353287, 0.019444217905402184, -0.016539400443434715, -0.017234332859516144, 0.02782510779798031, -0.010368396528065205, -0.033912718296051025, 0.011806908063590527, 0.007401033770292997, 0.0028665976133197546, -0.005156401079148054, -0.003087238874286413, 0.011779109947383404, -0.0006636608159169555, 0.019346928223967552, 0.03146655485033989, -0.0088603924959898, -0.012487941421568394, 0.015983453020453453, -0.00487842783331871, -0.03085501492023468, 0.026115573942661285, -0.004690796136856079, 0.0025677764788269997, 0.006997973192483187, -0.015371913090348244, -0.023335842415690422, -0.004249514080584049, 0.021515117958188057, 0.010430940426886082, -0.027644425630569458, -0.008763101883232594, 0.009562274441123009, -0.02899259515106678, -0.008262750692665577, 0.014371209777891636, 0.003731789067387581, 0.020764591172337532, 0.0008738779579289258, 0.004958345089107752, -0.02180699072778225, 0.03313439339399338, -0.014468500390648842, -0.04416992515325546, -0.010528231039643288, 0.0005937331588938832, -0.01791536621749401, 0.005660227499902248, -0.060764919966459274, -0.023349741473793983, 0.030271271243691444, -0.00047081694356165826, 0.005924301687628031, -0.0335235558450222, -0.02454502508044243, 0.03202250227332115, -0.011195367202162743, -0.026754911988973618, -0.043502792716026306, 0.00480893487110734, 0.04400314390659332, -0.004332905635237694, -0.049701590090990067, -0.006198800168931484, 0.021320536732673645, 0.019346928223967552, 0.016469907015562057, 0.012786762788891792, 0.02492028847336769, 0.01940252259373665, 0.002256794134154916, -0.0006289141601882875, 0.006789492908865213, -0.02093137428164482, 0.031160784885287285, -0.001999669009819627, 0.020681198686361313, -0.014183578081429005, -0.033912718296051025, 0.016442108899354935, -0.024072470143437386, -0.013919503428041935, 0.004391975235193968, 0.0049027507193386555, 0.008179359138011932, 0.01879098266363144, -0.005128603894263506, -0.005350982304662466, -0.009423288516700268, 0.02714407444000244, 0.013141178525984287, 0.010799255222082138, -0.007956979796290398, -0.0011518510291352868, 0.011118924245238304, -0.02216835506260395, -0.006063288543373346, -0.0038673009257763624, 0.0016938985791057348, 0.02472570724785328, 0.029103783890604973, 0.007887487299740314, 0.01844351552426815, -0.01538581121712923, 0.009527528658509254, 0.042335305362939835, -0.006532367784529924, -0.03663685545325279, 0.000423257501097396, 0.045531995594501495, 0.028492243960499763, 0.0005972078652121127, -0.011341302655637264, -0.007783247157931328, -0.008505976758897305, -0.013252368196845055, -0.015052244067192078, 0.010111271403729916, -0.010972988791763783, 0.0107228122651577, 0.008665811270475388, 0.001292574917897582, -0.008790899068117142, 0.007289844565093517, -0.005340558476746082, -1.1957729839195963e-05, -0.005337083712220192, 0.0164004135876894, -0.020695097744464874, -0.012821509502828121, 0.011118924245238304, 0.0005885211867280304, 0.017748583108186722, 0.022140558809041977, 0.018374022096395493, 0.051008064299821854, -0.004440620541572571, -0.00988194439560175, -0.5790735483169556, -0.030299069359898567, -0.026977289468050003, -0.0029656256083399057, 0.023030072450637817, 0.024586720392107964, 0.00024040330026764423, 0.027018986642360687, -0.03154994919896126, 0.024239255115389824, -0.005778365768492222, 0.023877890780568123, -0.008325294591486454, 0.016539400443434715, 0.008610216900706291, -0.019791685044765472, 0.008394788019359112, -0.018651995807886124, -0.021959874778985977, 0.015830568969249725, -0.0272135678678751, 0.002807528479024768, -0.0033200413454324007, 0.005767941940575838, -0.011647073552012444, 0.013433050364255905, 0.0019405997591093183, -0.012161323800683022, 0.016344819217920303, 0.04114001989364624, -0.01595565676689148, -0.013551188632845879, 0.01355813816189766, -0.004284260328859091, 0.05720686540007591, -0.00789443589746952, -0.034079503268003464, 0.01915234699845314, -0.007831891998648643, 0.037804342806339264, -0.014815966598689556, -0.008228003978729248, 0.008457331918179989, 0.015580392442643642, -0.007679007016122341, 0.014468500390648842, 0.00819325726479292, -0.02004186064004898, 0.011028583161532879, 0.018749285489320755, 0.0022463700734078884, -0.003933319356292486, 0.008346142247319221, -0.012057083658874035, 0.005840910132974386, 0.015747176483273506, 0.021167652681469917, -0.039583370089530945, 0.01577497459948063, -0.03396831452846527, -0.02119544893503189, 0.020806286484003067, 0.009701261296868324, -0.003340889234095812, -0.027338655665516853, 0.012508790008723736, 0.004367652349174023, -0.021167652681469917, 0.004141799174249172, -0.03838808462023735, 0.011674870736896992, -0.012321158312261105, 0.023377537727355957, -0.0037213650066405535, 0.031522151082754135, 0.03077162243425846, 0.03230047598481178, -0.01719263754785061, -0.004798510577529669, 0.01684517040848732, 0.012036235071718693, 0.0002873112680390477, -0.012557434849441051, -0.010827052406966686, 0.0041452739387750626, -0.015802770853042603, -0.02182088978588581, 0.0012752016773447394, 0.012529637664556503, -0.0021021715365350246, 0.005267590284347534, 0.011952843517065048, 0.01834622584283352, -0.02829766273498535, 0.011098076589405537, 0.015135635621845722, -0.02729695849120617, 0.004892326891422272, -0.0031463080085814, -0.015913959592580795, -0.04244649410247803, -0.00837393943220377, -7.264219311764464e-05, 0.006111933849751949, 0.026893898844718933, 0.005291913170367479, 0.006417704280465841, -0.01125791110098362, 0.027811208739876747, -0.015844468027353287, -0.01719263754785061, 0.00979160238057375, -0.0257125124335289, -0.018221138045191765, 0.03255065158009529, -0.03513580188155174, 0.011160620488226414, 0.004826308228075504, 0.022404631599783897, -0.002308914205059409, 0.01502444688230753, -0.0029482522513717413, 0.026741012930870056, 0.005403102375566959, 0.012717269361019135, 0.01915234699845314, 0.045003846287727356, -0.010403143242001534, -0.011612326838076115, 0.017845872789621353, -0.009298200719058514, -0.014162729494273663, 0.017692988738417625, -0.023335842415690422, -0.0015375387156382203, -0.013731871731579304, 0.012439296580851078, -0.007769348565489054, 0.03024347312748432, 0.006011168472468853, -0.004954870790243149, 0.008624115958809853, 0.005326659884303808, -0.003441654611378908, -0.011070279404520988, -0.03154994919896126, -0.00677906908094883, 0.00596599793061614, -0.005820062011480331, 0.012230816297233105, 0.009430238045752048, -0.002446163445711136, -0.02073679305613041, 0.004940972197800875, -0.02093137428164482, -0.001785977161489427, -0.01995846815407276, -0.015941757708787918, 0.009187011048197746, -0.02057000994682312, -0.007574767339974642, -0.015594291500747204, -0.03016008250415325, 0.0025590898003429174, -0.027533236891031265, -0.030827216804027557, -0.026393545791506767, 0.014635284431278706, -0.02030593529343605, -0.02694949321448803, -0.009729058481752872, 0.007852740585803986, 0.005903454031795263, -0.0004289038188289851, 0.013356607407331467, 0.004301633685827255, -0.01880487985908985, -0.01720653474330902, -0.005215470213443041, -0.006372533272951841, -0.009965335950255394, 0.028214270249009132, 0.005750568583607674, 0.0036727197002619505, 0.012619978748261929, 0.025948788970708847, 0.028061384335160255, 0.0029916856437921524, -0.022627010941505432, -0.0016904239309951663, -0.01836012303829193, 0.02233514003455639, 0.002175139496102929, 0.017859771847724915, 0.005552512593567371, 0.010159917175769806, 0.016608893871307373, 0.01334270928055048, -0.010368396528065205, 0.025156566873192787, 0.018387921154499054, 0.03655346482992172, 0.00016721819702070206, -0.0272135678678751, 0.007727652322500944, -0.008012575097382069, 0.020959172397851944, -0.010701964609324932, 0.018318427726626396, -0.006111933849751949, -0.0040827300399541855, -0.00760256452485919, -0.030660433694720268, 0.004944446496665478, 0.010118220932781696, 0.0012456669937819242, -0.010639420710504055, 0.002513919258490205, 0.001435904880054295, 0.013815263286232948, 0.0024861220736056566, -0.010173815302550793, 0.005392678081989288, -0.02632405236363411, 0.0034555532038211823, -0.01623362861573696, -0.0009989658137783408, 0.024489430710673332, 0.007046618033200502, -0.00988194439560175, 0.01727602817118168, 0.014357310719788074, 0.01596955582499504, -0.00028275075601413846, 0.03246725723147392, -0.02731085754930973, 0.03583073243498802, -0.018999461084604263, 0.003787383669987321, 0.0034989865962415934, -0.021028665825724602, -0.007018820848315954, -0.009187011048197746, -0.007428831420838833, 0.0033791104797273874, 0.006212698761373758, 0.0752195194363594, 0.007797145750373602, -0.025559626519680023, 0.007317642215639353, -0.026713214814662933, -0.0037491621915251017, -0.0234887283295393, 0.012432347051799297, 0.024002978578209877, 0.014788169413805008, -0.00046994828153401613, 0.016636690124869347, 0.02554572932422161, 0.03385712578892708, 0.018665894865989685, 0.02668541856110096, 0.018415717408061028, 0.01745671033859253, -0.0025034951977431774, -0.027338655665516853, -0.018651995807886124, -0.01824893429875374, 0.01476037222892046, -0.018818778917193413, -0.028686825186014175, 0.019207941368222237, -0.006174477748572826, -0.0013307962799444795, -0.001327321631833911, -0.004475366789847612, 0.030354663729667664, 0.03402390703558922, 0.019972367212176323, -0.03369034081697464, -0.00798477791249752, -0.011167570017278194, 0.03127197548747063, 0.0002844881091732532, 0.008519875817000866, -0.024058572947978973, -0.008283598348498344, -0.007672057952731848, -0.0177207849919796, 0.010201613418757915, -0.00292740436270833, 0.013370506465435028, 0.014183578081429005, 0.008492078632116318, -0.011855552904307842, 0.006685253232717514, 0.0038256049156188965, -0.015288520604372025, -0.02429484948515892, -0.014857662841677666, -0.005302336998283863, 0.003606701036915183, -0.021918179467320442, -0.00584785919636488, 0.025643019005656242, 0.008394788019359112, 0.003912471700459719, -0.016066845506429672, 0.015358014032244682, -0.005177249200642109, -0.0015722854295745492, -0.005774891469627619, -0.010159917175769806, -0.017873670905828476, -0.006737373303622007, 0.01765129156410694, 0.03624769300222397, -0.002050051698461175, 0.014551891945302486, 0.017345521599054337, -0.01799875870347023, -0.00487842783331871, -0.0016209307359531522, -0.00042673214920796454, -0.03491342067718506, 0.0148993581533432, 0.014579689130187035, -0.018513008952140808, -0.0388050451874733, -0.014399006962776184, -0.026824405416846275, 0.0145379938185215, 0.010166866704821587, -0.007519172504544258, -0.006264818832278252, -0.00016993278404697776, 0.021251043304800987, -0.0137874661013484, 0.01241844892501831, -0.0008669286035001278, -0.010875698179006577, -0.009986183606088161, 0.021834786981344223, -0.004485791083425283, -0.0035180971026420593, -0.003995863255113363, 0.007734601851552725, 0.010451789014041424, -0.004683847073465586, 0.011278758756816387, 0.008109865710139275, 0.02572641149163246, 0.003995863255113363, -0.021153753623366356, -0.0012039709836244583, 0.025226060301065445, -0.0032071147579699755, 0.03619209676980972, 0.02058390900492668, 0.01897166483104229, 0.004819358699023724, 0.04380856081843376, -0.008978531695902348, 0.021139854565262794, -0.0039228955283761024, 0.019749989733099937, -3.219493373762816e-05, -0.011146721430122852, 0.006570589262992144, -0.019124548882246017, -0.0009920165175572038, 0.00975685566663742, -0.022627010941505432, -0.026921695098280907, 0.026171168312430382, -0.006205749697983265, -0.06154324486851692, -0.02643524296581745, 7.106773409759626e-05, 0.019263535737991333, -0.040667466819286346, -0.018499109894037247, 0.015260723419487476, 0.016205832362174988, 0.01143859326839447, -0.014746473170816898, -0.004881902597844601, -0.004722068086266518, -0.024169761687517166, -0.01659499481320381, -0.017845872789621353, 0.0031515201553702354, -0.045337412506341934, 0.01449629757553339, 0.025212161242961884, -0.0425298847258091, -0.0544271357357502, -0.011230113916099072, 0.023738903924822807, 0.027269162237644196, 0.015149534679949284, -0.018943866714835167, -0.021862585097551346, 0.01842961646616459, -0.011056380346417427, -0.02482299879193306, -0.015497000887989998, -0.003738738363608718, 0.02073679305613041, -0.0003900310257449746, 0.0008065563160926104, -0.005747093819081783, -0.021584611386060715, 0.01649770326912403, 0.0006923267501406372, 0.01674787886440754, -0.010368396528065205, 0.026185067370533943, -0.0028648602310568094, -0.003592802444472909, -0.012425397522747517, 0.006997973192483187, 0.018568603321909904, -0.008957683108747005, 0.023516524583101273, -0.054121363908052444, -0.024892492219805717, -0.012821509502828121, -0.010896545834839344, 0.004468417726457119, 0.00930514931678772, 0.006045915186405182, -0.008554622530937195, 0.009277352131903172, 0.041612572968006134, -0.00797782838344574, 0.01577497459948063, 0.00837393943220377, 0.024975882843136787, -0.005708872806280851, -0.005726246163249016, -0.00043802481377497315, -0.005156401079148054, -0.012175221927464008, -0.0070222956128418446, -0.01667838729918003, 0.04308583214879036, 0.010667217895388603, 0.033912718296051025, 0.008228003978729248, 0.0010988623835146427, -0.049868375062942505, -0.04619913175702095, 0.034440867602825165, 0.0010754084214568138, 0.01728992722928524, 0.0017347258981317282, -0.027964094653725624, 0.0003274870687164366, 0.00024366080469917506, -0.0032470733858644962, 0.012932699173688889, -0.010868748649954796, -0.023335842415690422, -0.012717269361019135, -0.02429484948515892, 0.005893029738217592, -0.004795036278665066, -0.00010950620344374329, -0.03057704120874405, -0.008610216900706291, 0.0037978074979037046, 0.01798485964536667, 0.02126494236290455, 0.024586720392107964, 0.0046942709013819695, -0.059263866394758224, -0.028603432700037956, 0.0010476111201569438, -0.02714407444000244, -0.014183578081429005, 0.010000082664191723, 0.01095214020460844, 0.01148723904043436, 0.01419052667915821, 0.008888189680874348, 0.011751312762498856, -0.010319751687347889, 0.015761075541377068, 0.012772864662110806, 0.00013214581122156233, 0.008499028161168098, -0.004624777473509312, -0.015524798072874546, -0.010840951465070248, 0.023266348987817764, 0.012383702211081982, -0.010847900062799454, -0.018777083605527878, 0.020458821207284927, 0.005118179600685835, 0.014023743569850922, -0.003842978272587061, -0.02871462143957615, -0.011341302655637264, 0.003453815821558237, 0.011313505470752716, 0.011195367202162743, -0.025114869698882103, -0.033551353961229324, 0.014412906020879745, 0.003036856185644865, 0.0037283143028616905, 0.008450382389128208, 0.002361034043133259, -0.030549244955182076, -0.0024270527064800262, 0.009478882886469364, 0.017943164333701134, 0.0021282315719872713, 0.02454502508044243, -0.015761075541377068, 0.0050625852309167385, -0.008339193649590015, 0.004385025706142187, 0.011827755719423294, -0.00837393943220377, 0.01605294644832611, -0.002557352650910616, 0.04086204618215561, -0.01560818962752819, -0.035246990621089935, -0.012064033187925816, -0.018304528668522835, -0.034357476979494095, -0.014072388410568237, 0.008172409608960152, -0.018763184547424316, 0.007727652322500944, -0.0019162771059200168, -0.005827011074870825, -0.007359337992966175, 0.0020187797490507364, -0.016914663836359978, -0.024169761687517166, -0.0008456463110633194, 0.043752968311309814, 0.005493443459272385, 0.0034920370671898127, 0.041890546679496765, 0.008853443898260593, 0.0028249016031622887, -0.06248835474252701, -0.014788169413805008, -0.008756153285503387, 0.03494121879339218, 0.04922903701663017, -0.0365256667137146, -0.01719263754785061, 0.02277989685535431, 0.009430238045752048, 0.002006618306040764, -0.02200157195329666, 0.027866803109645844, 0.02490639127790928, -0.015344115905463696, -0.02686610072851181, 0.009541426785290241, -0.01845741458237171, 0.0010041778441518545, -0.020069658756256104, 0.0029430403374135494, -0.01122316438704729, -0.01077840756624937, -0.014016794040799141, 0.027435945346951485, 0.0026859152130782604, 0.031049596145749092, 0.005455222446471453, 0.007435780484229326, -0.017262129113078117, 0.002501758048310876, -0.04183495417237282, 0.0026980764232575893, -0.012474043294787407, 0.020361529663205147, -0.012870155274868011, -0.0004362874897196889, 0.010632471181452274, -0.0005238055600784719, -0.005531664937734604, -0.020514415577054024, -0.005573360715061426, 0.05203656479716301, -0.012348955497145653, 0.006733898539096117, -0.013099482282996178, -0.006949327886104584, 0.02871462143957615, 0.011237062513828278, 0.004527486860752106, 0.005795739125460386, -0.009388541802763939, 0.006045915186405182, 0.01685906946659088, -0.011862502433359623, 0.024614518508315086, -0.0018241985235363245, -0.013328810222446918, -0.02129274047911167, -0.007866638712584972, -0.002823164453729987, 0.005656752735376358, -0.027713919058442116, -0.02792239934206009, -0.027324756607413292, -0.00037786969915032387, 0.007220351602882147, -0.001966659678146243, -0.011410796083509922, 0.023516524583101273, 0.03902742266654968, -0.0462547242641449, 0.0011935470392927527, -0.01834622584283352, 0.003516359720379114, -0.01692856289446354, -0.006904156878590584, -0.010792305693030357, -0.014114084653556347, 0.034969016909599304, -0.00891598779708147, -0.018624197691679, -0.01623362861573696, 0.019624901935458183, 0.03872165456414223, 0.011772161349654198, 0.011063329875469208, 0.0462547242641449, 0.005125129129737616, 0.004857580177485943, 0.010938242077827454, -0.010340599343180656, -0.016025150194764137, 0.006761695723980665, 5.6626162404427305e-05, 0.012717269361019135, 0.0005476938677020371, -0.0007679007248952985, -0.013321860693395138, -0.00022607031860388815, 0.01546920370310545, -0.05317625403404236, -0.018374022096395493, 0.00700144749134779, -0.016261426731944084, -0.01710924506187439, 0.004954870790243149, -0.023738903924822807, -0.03193911164999008, -0.015358014032244682, 0.0015801034169271588, 0.005107755772769451, -0.022390734404325485, 0.00029208892374299467, 0.038527071475982666, 0.009784653782844543, 0.014927156269550323, 0.010423991829156876, -0.0248090997338295, -0.0032679212745279074, -0.02118154987692833, -0.03068823181092739, -0.02826986461877823, -0.0013603308470919728, 0.04984057694673538, -0.0018537332070991397, -0.018318427726626396, -0.019110651686787605, -0.01355813816189766, -0.01103553269058466, 0.008950733579695225, -0.014023743569850922, 0.04558758810162544, 0.035524964332580566, -0.006733898539096117, -0.008408686146140099, 0.01382916234433651, -0.021153753623366356, 0.008582419715821743, 0.004913174547255039, -0.024628417566418648, -0.015538697130978107, -0.00562895555049181, -0.012647775933146477, -0.01218912098556757, -0.0013116855407133698, -0.021570712327957153, 0.003252285299822688, -0.01605294644832611, -0.0002799275971483439, 0.011897249147295952, 0.015913959592580795, -0.017484508454799652, -0.019180145114660263, -0.03944438323378563, -0.009944488294422626, 0.002416628645732999, -0.017484508454799652, -0.011237062513828278, -0.0030959255527704954, 0.02454502508044243, 0.0018745810957625508, 0.0021907754708081484, 0.00503478804603219, 0.02615726925432682, 0.00019588417490012944, 0.00027428127941675484, -0.03697042167186737, -0.004256463143974543, -0.008749203756451607, -0.0013325335457921028, 0.041001033037900925, 0.001957972999662161, -0.006098035257309675, 0.016469907015562057, 0.004722068086266518, 0.0032766079530119896, -0.021028665825724602, 0.03149435296654701, -0.030632635578513145, -0.00210390891879797, 0.005118179600685835, -0.003940268885344267, -0.0007479214109480381, -0.0007479214109480381, 0.01148723904043436, -0.023460930213332176, -0.020055759698152542, 0.008714457042515278, -0.005969472695142031, -0.03032686561346054, 0.01520512904971838, 0.010979937389492989, -0.014426804147660732, 0.005917352624237537, 0.0007887486717663705, -0.01050738338381052, 0.013738821260631084, -0.02457282319664955, -0.00726899690926075, -0.03102179802954197, 0.017331622540950775, -0.009180061519145966, 0.007067466154694557, -0.017164839431643486, 0.01214047521352768, 0.032578449696302414, -0.033217787742614746, 0.007025770377367735, 0.26173949241638184, -0.02597658708691597, -0.001236980315297842, 0.018040454015135765, -0.0059312512166798115, 0.004385025706142187, 0.01002093032002449, 0.003398221218958497, -0.016789576038718224, 0.014218324795365334, -0.011584529653191566, 0.004795036278665066, 0.004343329928815365, -0.010152967646718025, 0.004888852126896381, -0.0008816959452815354, -0.030465852469205856, -0.02800578996539116, -0.0309384074062109, -0.017512306571006775, 0.024864694103598595, -0.0034659772645682096, -0.006018117535859346, -0.017957063391804695, 0.00979160238057375, 0.0018502584425732493, -0.0011692243861034513, 0.01210572849959135, 0.02208496257662773, 0.002772781765088439, -0.021237146109342575, 0.007595614995807409, -0.01264082733541727, -0.0017269079107791185, 0.00016265769954770803, -0.021223247051239014, 0.029659731313586235, 0.020417124032974243, 0.021779192611575127, 0.000868665985763073, -0.002856173785403371, -0.009645666927099228, 0.01196674257516861, -0.03827689588069916, -0.024711810052394867, 0.015455304645001888, -0.004881902597844601, -0.013961199671030045, 0.016344819217920303, 0.013252368196845055, -0.024517228826880455, -0.004628252238035202, 0.04311363026499748, 0.011827755719423294, 0.0012500103330239654, 0.006424653343856335, 0.030382459983229637, -0.010361447930335999, 0.020000165328383446, 0.02047271840274334, -0.009715160354971886, 0.035858530551195145, -0.00454138545319438, 0.017428914085030556, -0.029909906908869743, 0.0014254808193072677, -0.0328008271753788, 0.010660268366336823, -0.012335056439042091, -0.006539317313581705, 0.008818697184324265, 0.00022911065025255084, -0.005382254254072905, -0.00794308166950941, -0.038082316517829895, -0.03102179802954197, 0.03891623392701149, 0.0002501757990103215, 0.022904984652996063, 0.023711105808615685, 0.02614337019622326, -0.004944446496665478, 0.025142667815089226, 0.011834705248475075, -0.03947218134999275, -0.019722191616892815, 0.016539400443434715, 0.0025191311724483967, -0.003432967932894826, 0.007588665932416916, -0.006442026700824499, -0.015080041252076626, 0.005312760826200247, -0.00733848987147212, -0.005205046385526657, 0.010604673996567726, -0.021390030160546303, 0.0056254807859659195, -0.001487156143411994, -0.006834663916379213, -0.02457282319664955, 0.021584611386060715, 0.021834786981344223, 0.02826986461877823, -0.03777654469013214, -0.015719378367066383, 0.004590030759572983, 0.012383702211081982, 0.006824239622801542, -0.01498275063931942, 0.02173749729990959, -0.044642481952905655, -0.00421476736664772, 0.00031250258325599134, -0.01400984451174736, 0.006334312260150909, -0.021487321704626083, -0.018846577033400536, 0.0013264529407024384, 0.00868665985763073, 0.03049365058541298, -0.02127884142100811, -0.019444217905402184, 0.009200910106301308, -0.014968851581215858, -0.02182088978588581, -0.009451085701584816, -0.021570712327957153, -0.007407983299344778, -0.008519875817000866, 0.017804177477955818, -0.01969439536333084, 0.016011251136660576, -0.0007001447374932468, 0.007755449507385492, 0.0002794932806864381, -0.015997352078557014, 0.0017147465841844678, 0.006382957566529512, 0.017178738489747047, 0.003085501492023468, 0.02261311188340187, 0.00618142681196332, -0.004760289564728737, 0.0005681075272150338, -0.007310692686587572, -0.017526203766465187, 0.02429484948515892, -0.001904115779325366, -0.01880487985908985, -0.05414916202425957, -0.02332194335758686, -0.0033652118872851133, 0.002619896549731493, 0.011598427779972553, -0.012335056439042091, -0.03405170515179634, -0.044114332646131516, -0.012606080621480942, 0.01728992722928524, -0.038971830159425735, -0.0036171250976622105, 0.01674787886440754, -0.021765293553471565, -0.0017216958804056048, -0.019458116963505745, -0.17712447047233582, 0.011341302655637264, 0.019972367212176323, -0.034718841314315796, 0.027269162237644196, -0.0051598758436739445, -0.0010754084214568138, -0.008790899068117142, -0.013245418667793274, -0.011195367202162743, 0.025198262184858322, 0.0017946638399735093, -0.02854783833026886, -0.0026042605750262737, -0.013773567043244839, 0.020708996802568436, -0.01836012303829193, 0.004524012096226215, 0.047394413501024246, 0.022752098739147186, 0.03491342067718506, -0.03716500476002693, -0.006796442437916994, 0.046588294208049774, 0.0006640951032750309, 0.006455925293266773, -0.014260020107030869, -0.00287180976010859, -3.118375161648146e-06, -0.016094643622636795, -0.0031862666364759207, 0.04275226220488548, -0.00525021692737937, 0.005688024684786797, -0.007015346083790064, -0.005191147793084383, 0.015371913090348244, -0.004993091803044081, -0.013850010000169277, 0.003933319356292486, 0.010514332912862301, 0.042863454669713974, 0.018582502380013466, -0.01121621485799551, -0.014399006962776184, 0.015719378367066383, 0.007804094813764095, 0.005378779489547014, 0.0173038262873888, 0.007512223441153765, 0.029492946341633797, -0.03049365058541298, -0.011598427779972553, -0.01357203722000122, 0.022904984652996063, 0.01959710381925106, 0.013099482282996178, 0.005886080674827099, -0.010854849591851234, -0.009944488294422626, 0.01941642165184021, -0.031188583001494408, 0.014913257211446762, 0.02173749729990959, 0.0006514994893223047, -0.012070981785655022, -0.019305232912302017, 0.034802231937646866, -0.020806286484003067, 0.011132823303341866, 0.002251582220196724, -0.0547885000705719, 0.016178034245967865, 0.0020882729440927505, 0.017317725345492363, 0.0027571457903832197, 0.0031028748489916325, 0.024002978578209877, 0.028575634583830833, -0.010347548872232437, -0.009541426785290241, 0.04689406231045723, -0.004715119022876024, -0.01898556388914585, 0.0038047567941248417, -0.00297952420078218, 0.01923573948442936, 0.015635987743735313, -0.0595974326133728, -0.044809263199567795, 0.03566395118832588, -0.0049027507193386555, -0.0066539812833070755, 0.005649803206324577, 0.0019492864375934005, 0.015441406518220901, -0.004239089787006378, 0.0037630610167980194, -0.03235606849193573, -0.0025312926154583693, 0.0004428024694789201, 0.008339193649590015, -0.009200910106301308, 0.016817372292280197, 0.02029203623533249, 0.005608107428997755, -0.014579689130187035, 0.029048189520835876, 0.03722059726715088, -0.004405873827636242, -0.016428209841251373, 0.013620682060718536, 0.0007609513704665005, 0.036664653569459915, -0.006320413667708635, 0.021487321704626083, -0.03182791918516159, 0.00015321095997933298, 0.007574767339974642, -0.0049166493117809296, -0.00953447725623846, -0.035775139927864075, 0.009937538765370846, 0.032133691012859344, 0.007776297628879547, -0.020695097744464874, -0.0525091215968132, -0.017359420657157898, 0.0036032265052199364, 0.011376049369573593, 0.01046568714082241, 0.0062926160171628, 0.008742254227399826, 0.043502792716026306, -0.005778365768492222, 0.020444922149181366, -0.0004590899625327438, -0.018137745559215546, -0.00841563567519188, 0.012091830372810364, 0.007553919218480587, 0.002993422793224454, -0.0025052325800061226, 0.013029989786446095, 0.00667135464027524, 0.030187878757715225, -0.036053113639354706, -0.009034126065671444, -0.0008265356882475317, -0.006810341030359268, -0.006216173525899649, -0.00042608065996319056, -0.02172359824180603, 0.006098035257309675, -0.00026494311168789864, 0.021084260195493698, 0.03658125922083855, 0.0014254808193072677, -0.005010465160012245, 0.0011127610923722386, 0.009666514582931995, 0.017081446945667267, -0.042085129767656326, -0.0243921410292387, 0.006410754751414061, -0.004683847073465586, 0.011563681066036224, 0.00010717166151152924, 0.010792305693030357, 0.013641530647873878, -0.015497000887989998, -0.012321158312261105, -0.027700020000338554, 0.0195832047611475, -0.010695015080273151, -0.008255801163613796, -0.056511931121349335, -0.0014741261256858706, 0.010257207788527012, 0.006984074134379625, 0.017401115968823433, 0.0214456245303154, 0.008068169467151165, 0.01578887179493904, -0.01405154075473547, 0.014343412593007088, -0.014802067540585995, 0.020375428721308708, -0.008999379351735115, 0.03485782817006111, 0.007783247157931328, 0.023266348987817764, -0.015941757708787918, -0.02472570724785328, 0.022321240976452827, 0.006869410630315542, -0.01072976179420948, 0.022376835346221924, -0.013439999893307686, 0.03858266770839691, -0.028255965560674667, -0.019194042310118675, -0.00934684555977583, -0.010000082664191723, 0.026101674884557724, -0.030299069359898567, 0.0052571664564311504, -0.001063247094862163, -0.022640909999608994, -0.0019788211211562157, 0.01659499481320381, 0.013822212815284729, -0.004732491914182901, -0.004871478769928217, -0.0002462668053340167, -0.03288421779870987, -0.005774891469627619, -0.003551106434315443, -0.009930589236319065, -0.02394738234579563, -0.0038603516295552254, -0.020611705258488655, 0.02022254280745983, 0.0002655946300365031, -0.004517063032835722, 0.005347507540136576, -0.024864694103598595, -0.029909906908869743, -0.08845104277133942, 0.03252285346388817, -0.0082002067938447, -0.001709534553810954, 0.03077162243425846, -0.01720653474330902, 0.026727113872766495, -0.008575470186769962, 0.016094643622636795, -0.02226564660668373, -0.0013629369204863906, 0.019986266270279884, 0.007873588241636753, -0.007442730013281107, -0.018485210835933685, -0.01712314411997795, 0.017706887796521187, 0.01214047521352768, -0.0020378902554512024, 0.010264157317578793, 0.019972367212176323, -0.005330134183168411, 0.01880487985908985, 0.003396483836695552, -0.028492243960499763, 0.0133357597514987, 0.010966039262712002, 0.014016794040799141, -0.006726949010044336, -0.04364177957177162, 0.0042425645515322685, -0.007310692686587572, 9.168497854261659e-06, 0.012182171456515789, 0.001737331971526146, 0.01546920370310545, 0.004909699782729149, 0.00409662863239646, 0.015566494315862656, 0.039777953177690506, -0.019708292558789253, -0.030021095648407936, 0.019277434796094894, -0.016025150194764137, 0.014871560968458652, 0.011278758756816387, -0.008485129103064537, 0.013891706243157387, 4.411194458953105e-05, 0.027171870693564415, -0.018846577033400536, 0.016886865720152855, 0.008033422753214836, -0.007734601851552725, 0.0032627093605697155, -0.03277302905917168, 0.0019927197135984898, 0.0024426886811852455, -0.011723515577614307, -0.008054270409047604, 0.018832677975296974, -0.011786059476435184, 0.019305232912302017, 0.0004115304909646511, -0.0032262252643704414, -0.009603970684111118, -0.010847900062799454, -0.0131272803992033, -0.013933401554822922, 0.008929885923862457, -0.001204839674755931, -0.031049596145749092, 0.007206453010439873, 0.02740814909338951, 0.0031185108236968517, 0.015524798072874546, -0.007741550914943218, 0.004259937908500433, -0.010604673996567726, 0.036470070481300354, 0.009339896030724049, 0.006852037273347378, -0.046504899859428406, -0.01334965880960226, 0.022807693108916283, -0.007685956545174122, -0.01431561540812254, -0.013731871731579304, -0.014246121980249882, -0.018499109894037247, -0.019013360142707825, -0.005093857180327177, 0.005806163419038057, 0.008485129103064537, 0.01799875870347023, 0.03805451840162277, 0.008526825346052647, -0.017873670905828476, 0.028089182451367378, 0.002117807511240244, 0.008922936394810677, -0.01169571839272976, -0.008554622530937195, -0.039166409522295, -0.0233080442994833, -0.011313505470752716, -0.017150940373539925, -0.0409732349216938, -0.003822130151093006, 0.020347630605101585, -0.01656719669699669, 0.029381757602095604, -0.01516343280673027, 0.024670112878084183, -0.01685906946659088, 0.011834705248475075, -0.02633795142173767, -0.017081446945667267, -0.04122341051697731, 0.00481240963563323, 0.03446866571903229, -0.0037839089054614305, 0.016261426731944084, -0.018860476091504097, 0.054927486926317215, -2.9317476219148375e-05, 0.030716028064489365, -0.03193911164999008, 0.0032835572492331266, -0.005795739125460386, -0.02189038135111332, 0.005177249200642109, -0.009951436892151833, -0.030966203659772873, -0.022029368206858635, -0.002937828190624714, -0.003377373330295086, 0.011007734574377537, -0.011452492326498032, 0.06893733143806458, -0.013530340977013111, 0.012668624520301819, 0.013592884875833988, 0.0069597517140209675, 0.006122357677668333, 0.014732575044035912, 0.028853608295321465, -0.00584785919636488, -0.01844351552426815, 0.008360041305422783, -0.024684011936187744, -0.009548376314342022, -0.022849390283226967, -0.005997269880026579, -0.006876359693706036, -0.01542750746011734, 0.03722059726715088, -0.013426100835204124, 0.026935594156384468, 0.03972235694527626, 0.005430899560451508, 0.012168272398412228, 0.007963929325342178, -0.016178034245967865, -0.007540020626038313, 0.0279362965375185, 0.0013568561989814043, -0.0024843846913427114, -0.02572641149163246, 0.02030593529343605, 0.003080289578065276, -0.006240496411919594, -0.02801968902349472, -0.001653939951211214, 0.020597808063030243, -0.009902792051434517, -0.0031602068338543177, 0.03263404220342636, 0.019096752628684044, -0.004416297655552626, -0.0044023990631103516, -0.037276193499565125, -0.0294373519718647, 0.003954167477786541, -0.0028474871069192886, 0.001285625621676445, -0.0033269906416535378, -0.028255965560674667], "10bcde16-c549-4dc8-b38c-13526db9e2ec": [0.0043500084429979324, -0.006081404630094767, 0.01090481597930193, -0.010222851298749447, -0.0045486390590667725, -0.012613038532435894, -0.006243619602173567, -0.025159865617752075, 1.4483475752058439e-05, -0.026550279930233955, -0.0011595056857913733, 0.004270556382834911, -0.016195008531212807, -0.007243392989039421, -0.01987629383802414, -0.0016651859041303396, 0.012229019775986671, -0.01913474127650261, -0.015201856382191181, -0.013745232485234737, 0.005545102059841156, -0.014937015250325203, 0.012864637188613415, -0.025941146537661552, -0.019465791061520576, 0.02647082880139351, 0.006435628980398178, -0.03474710136651993, 0.005015420727431774, -0.006558117922395468, 0.024471281096339226, -0.005449097603559494, 0.0008052812772803009, -0.008137230761349201, 0.0038931583985686302, -0.018221039324998856, -0.005558344069868326, 0.0055550336837768555, 0.004998868331313133, 0.006568049546331167, 0.022392280399799347, 0.0063164508901536465, 0.0035025181714445353, 0.02717265672981739, -0.029317865148186684, 0.008845679461956024, -0.040388207882642746, -0.006680606864392757, -0.0010982613312080503, 0.022180408239364624, 0.007342708297073841, 0.00018062963499687612, -0.025345254689455032, -0.013851168565452099, -0.0004340904706623405, 0.008077641017735004, -0.0057040066458284855, 0.02567630633711815, -0.0039361948147416115, -0.0009699790389277041, 0.0038070851005613804, 0.015850715339183807, -0.019346613436937332, -0.017333824187517166, -0.01839318685233593, 0.022670364007353783, -0.031012846156954765, 0.00687923701480031, -0.009143625386059284, -0.004820100963115692, 0.02955622225999832, 0.011825136840343475, 0.007991568185389042, -0.0034065134823322296, 0.022935204207897186, 0.001834021881222725, -0.033184539526700974, -0.012526964768767357, 0.0047439588233828545, 0.0035654178354889154, -0.0010676390957087278, 0.00175953540019691, 0.013361213728785515, -0.02538498118519783, 0.010845226235687733, 0.011196140199899673, -0.004009026102721691, 0.023027898743748665, -0.013295003212988377, -0.014632448554039001, 0.016327429562807083, 0.001526144566014409, 0.006041678600013256, 0.03148955851793289, 0.005280261393636465, 0.016327429562807083, -0.0020111340563744307, 0.018949352204799652, -0.00014535202353727072, -0.03138362243771553, 0.0056841433979570866, 0.009726274758577347, -0.0021882462315261364, -0.0026467517018318176, -0.020405976101756096, -0.024166714400053024, 0.0353827178478241, -0.016923321411013603, 0.008984720334410667, -0.001320892944931984, -0.03429687023162842, 0.020167618989944458, 0.0030837389640510082, -0.0580001138150692, 0.0057040066458284855, 0.007011657580733299, 0.034190934151411057, -0.02146533876657486, -0.015109161846339703, -0.00991166289895773, 0.011606643907725811, -0.0074022975750267506, 0.03654801845550537, 0.005889395251870155, 0.01056052278727293, 0.012725595384836197, -0.006475355010479689, 0.012917605228722095, -0.010328787378966808, -0.02439182810485363, 0.03985852375626564, 0.005465649999678135, -0.0063462452962994576, -0.0059986417181789875, -0.0070050363428890705, -0.0022246618755161762, -0.01740003377199173, -0.0004614021454472095, -0.008263030089437962, -0.01338107604533434, 0.015003225766122341, 0.018816931173205376, -0.012308471836149693, -0.014314640313386917, 0.004995557479560375, 0.030112387612462044, 0.010527417995035648, 0.005667591001838446, 0.031330656260252, -0.008613944053649902, 0.000531336641870439, -0.011460981331765652, 0.006021815352141857, -0.010474449954926968, -0.002729514380916953, -0.009898421354591846, 0.021226981654763222, 0.005233914125710726, -0.0058033219538629055, -0.007819421589374542, 0.0035422444343566895, 0.018472637981176376, 0.007753211539238691, 0.009415087290108204, -0.020935656502842903, 0.02702699415385723, 0.013943863101303577, 0.0023802558425813913, -0.02876169979572296, -0.010494313202798367, 0.012811669148504734, -0.006971931550651789, -0.03458819538354874, 0.025000961497426033, -0.0023934978526085615, 0.02493475191295147, -0.011408013291656971, 0.008388829417526722, -0.01642012409865856, -0.009779242798686028, -0.008077641017735004, -0.012381303124129772, -0.0038766057696193457, 0.02955622225999832, -0.019359854981303215, -0.02870873175561428, 0.004601607099175453, -0.0008822506060823798, 0.014711900614202023, 0.0006136855809018016, 0.020909173414111137, 0.03697176277637482, 0.007865768857300282, 0.00395605806261301, -0.6084979772567749, -0.007197046186774969, 0.00016242184210568666, 0.002335564000532031, 0.013334729708731174, 0.013361213728785515, 0.02092241495847702, 0.023862147703766823, -0.0333169586956501, 0.03453522548079491, -0.02365027368068695, 0.005280261393636465, -0.004522155039012432, -0.02509365603327751, 0.003525691805407405, -0.01844615489244461, -0.005882774014025927, -0.001442554173991084, -0.00017762948118615896, 0.03154252842068672, -0.01770460046827793, 0.007071246858686209, -0.033396411687135696, -0.0071639409288764, 0.013261898420751095, -0.005200809333473444, 0.012950710020959377, 0.008216682821512222, -0.007581064943224192, 0.05177635699510574, -0.024921510368585587, 0.01378495804965496, 0.020856205374002457, -0.008249787613749504, 0.0559343546628952, -0.005929121281951666, -0.026364890858530998, 0.02751694805920124, -0.0039361948147416115, 0.03257540613412857, -0.013096372596919537, -0.026537038385868073, 0.01943930797278881, 0.009481296874582767, -0.005273640621453524, -0.009315771982073784, 0.018565332517027855, -0.04086491838097572, -0.009322392754256725, 0.01953200250864029, 0.015532907098531723, -0.0009012860246002674, -0.006650811992585659, -0.028179051354527473, 0.026113292202353477, 0.003817016491666436, 0.01167947519570589, -0.029079508036375046, 4.6295397623907775e-05, -0.002557368017733097, -0.02121374011039734, 0.010183124803006649, -0.0037706694565713406, -0.031198235228657722, -0.029291382059454918, 0.027331560850143433, -0.016817385330796242, -0.018512364476919174, 0.013447286561131477, -0.02379593625664711, 0.0016072520520538092, -0.018260765820741653, 0.015930168330669403, -0.007653896231204271, 0.004545328672975302, 0.05344485491514206, 0.023027898743748665, -0.01734706573188305, -0.014486785978078842, 5.44682152394671e-05, -0.013500254601240158, 0.004353318829089403, 0.004780374467372894, -0.027649369090795517, 0.028973571956157684, -0.009415087290108204, -0.02692105807363987, -0.004588365089148283, 0.022829268127679825, 0.0019730632193386555, 0.008428554981946945, 0.01953200250864029, -0.00803129468113184, -0.03628317639231682, 0.003866674145683646, 0.01774432696402073, 0.0028188982978463173, -0.013692264445126057, -0.008726500906050205, -0.008799332194030285, -0.012116461992263794, -0.0031598806381225586, 0.00993814691901207, -0.011957557871937752, 0.009673306718468666, -0.0072235302068293095, -0.03093339316546917, -0.009474676102399826, 0.020141135901212692, -0.020856205374002457, -0.006223756354302168, -0.012871257960796356, 0.014910531230270863, 0.0035621074493974447, 0.014036556705832481, -0.03302563354372978, -0.002353771822527051, -0.005843047983944416, 0.017585422843694687, -0.011573538184165955, 0.008501386269927025, -0.004277177155017853, 0.0009873592061921954, -0.0004080201906617731, 0.0038203271105885506, 0.006333003286272287, 0.014817837625741959, 0.0025970940478146076, -0.021107804030179977, 0.010653217323124409, -0.005571586079895496, 0.010593627579510212, 0.015731537714600563, -0.00338333984836936, -0.0050419047474861145, 0.02314707636833191, 0.015572633594274521, -0.010944541543722153, 0.00734932953491807, -0.012440891936421394, -0.009468055330216885, -0.007117593660950661, 0.013328108005225658, -0.004621470347046852, 0.0136790219694376, -0.03808409348130226, -0.023173561319708824, -0.0013631019974127412, -0.0034296871162950993, 0.013824684545397758, 0.00734932953491807, -0.012149566784501076, -0.019174465909600258, 0.03781925141811371, -0.00744864484295249, -0.0016295979730784893, -0.028073113411664963, -0.0048929317854344845, -0.0005329918931238353, 0.006409144960343838, -0.010964404791593552, 0.026351649314165115, -0.03268134221434593, 0.007144077681005001, -0.017360307276248932, 0.004081857390701771, 0.0032873351592570543, 0.024524249136447906, -0.024206440895795822, -0.018379945307970047, 0.0072036669589579105, 0.015493180602788925, 0.005184256937354803, 0.0054391659796237946, 0.011666232720017433, -0.002885108347982168, -0.010798879899084568, 0.012109841220080853, -0.01685710996389389, 0.0022345934994518757, 0.01824752427637577, 0.006154235918074846, -0.00723677221685648, -0.0035985230933874846, 0.018154829740524292, 0.019558485597372055, 0.026788637042045593, 0.0054557183757424355, -0.035223811864852905, -0.028337955474853516, -0.011414634063839912, 0.00986531563103199, -0.004052062518894672, 0.01040823943912983, 0.007620790973305702, 0.026484070345759392, -0.003229401307180524, 0.018724236637353897, -0.009534264914691448, 0.03977907449007034, 0.025067172944545746, 0.005012110341340303, -0.002562333829700947, 0.0025358498096466064, 0.03911697119474411, -0.03371421992778778, -0.009176730178296566, -0.012937468476593494, 0.008693396113812923, 0.017426518723368645, 0.005230603739619255, -0.015943409875035286, -0.016698205843567848, -0.006918963510543108, 0.020604606717824936, -0.00744864484295249, -0.054557185620069504, 0.006028436589986086, -0.02276305854320526, 0.01040823943912983, -0.0004696784308180213, -0.006101267412304878, 0.0015666983090341091, -0.03885212913155556, 0.0002340115897823125, 0.01172582246363163, 0.005204119719564915, 0.013162583112716675, 0.006650811992585659, -0.026497311890125275, -0.020842963829636574, 0.002810621866956353, 0.012593175284564495, -0.010116915218532085, 0.0008896992076188326, -0.02910599298775196, 0.02047218568623066, -0.039990946650505066, 0.048863109201192856, 0.011222624219954014, 0.010222851298749447, -0.016645237803459167, 0.00723677221685648, -0.008441797457635403, 0.010845226235687733, 0.007541338913142681, 0.06202569231390953, 0.019916020333766937, -0.024908266961574554, -0.0017330513801425695, -0.03657450154423714, -0.0022213514894247055, -0.014433817937970161, 0.030959878116846085, 0.003087049350142479, -0.026748910546302795, 0.005267019383609295, 0.008938373997807503, 0.02860279567539692, 0.0372895710170269, -0.0021915568504482508, 0.015188613906502724, 0.0018869900377467275, 0.014486785978078842, 0.0002251145924674347, -0.028443891555070877, -0.004300350788980722, -0.01430139783769846, -0.009931526146829128, -0.005462339613586664, -0.024179955944418907, -0.0052603986114263535, 0.034323353320360184, 0.008673532865941525, 0.005502065643668175, -0.004369871690869331, 0.009924905374646187, 0.008944994769990444, 0.04542018100619316, 0.003303887788206339, -0.002804000861942768, -0.009322392754256725, 0.016870353370904922, 0.00803129468113184, 0.0037839114665985107, 0.02553064376115799, -0.015082677826285362, 0.00747512886300683, -0.005939052905887365, 0.01929364539682865, 0.006697159260511398, 0.02459045872092247, 0.013281760737299919, -0.009143625386059284, -0.007759832311421633, -0.014791352674365044, 0.04091788828372955, -0.009176730178296566, -0.005174325313419104, -0.001896921545267105, 0.006177409552037716, -0.035170845687389374, -0.03779276832938194, 0.004303661175072193, 0.05275626853108406, 0.005147841293364763, -0.011070340871810913, -0.012791805900633335, 0.01028906088322401, -0.023875389248132706, -0.011672853492200375, 0.0005954777589067817, 0.0037110804114490747, -0.016539301723241806, -0.02003519982099533, 0.008229924365878105, 0.01928040385246277, 0.002247835509479046, 0.029529737308621407, 0.009084035642445087, -0.028973571956157684, -0.011222624219954014, -0.024126987904310226, 0.008269650861620903, 0.04690328985452652, 0.025371739640831947, 0.005829805973917246, 0.017082225531339645, -0.021875841543078423, -0.02320004627108574, -0.043407391756772995, 0.008421934209764004, 0.0005445787101052701, -0.0206708163022995, 0.007733348291367292, -0.005968847312033176, -0.00785914808511734, -0.007130835670977831, 0.04210967198014259, -0.010474449954926968, -0.011222624219954014, -0.016380397602915764, -0.002317356178537011, -0.05445124953985214, 0.01575802080333233, -0.01457948051393032, 0.01330824475735426, -0.012063493952155113, 0.006971931550651789, 0.00693882629275322, 0.018856657668948174, 0.018777206540107727, -0.0014243463519960642, -0.015294549986720085, 0.005773527082055807, 0.01691007800400257, 0.0007750728400424123, 0.03718363493680954, -0.007197046186774969, 0.020300040021538734, 0.0019432686967775226, 0.05561654642224312, -0.007918736897408962, 0.004906173795461655, 0.0017264302587136626, 0.0372895710170269, 0.014394092373549938, -0.013824684545397758, 0.022816026583313942, -0.01407628320157528, -0.008640428073704243, 0.014261671341955662, -0.008090883493423462, -0.03151604160666466, 0.009593854658305645, 0.0035554864443838596, -0.02572927437722683, 0.009772622026503086, 0.004121583420783281, 0.032495953142642975, -0.02543794922530651, 0.0025656442157924175, 0.003396582091227174, -0.002074033720418811, -0.009626959450542927, -0.0016064243391156197, 0.004263935144990683, -0.004737338051199913, -0.00371770141646266, -0.020141135901212692, 0.0034131344873458147, -0.008521249517798424, -0.025861693546175957, -0.009931526146829128, 0.027252107858657837, -0.054663121700286865, -0.01070618536323309, 0.009375360794365406, 0.028232019394636154, 0.01655254326760769, 0.017969440668821335, 0.003317129798233509, -0.007965084165334702, 0.008448418229818344, -0.01600961945950985, -0.01824752427637577, -0.00686599500477314, -0.002650062320753932, 0.008964858017861843, -0.014645691029727459, 0.0036117651034146547, 0.03008590266108513, -0.007031520362943411, 0.008123988285660744, 0.011838379316031933, 0.005578207317739725, 0.01978360116481781, -0.005108114797621965, 0.006352866068482399, 0.008613944053649902, -0.0063661085441708565, 0.013824684545397758, 0.0033320270013064146, -0.0035720388405025005, 0.010779016651213169, -0.026550279930233955, -0.010222851298749447, -0.015943409875035286, -0.014685416594147682, -0.01506943628191948, 0.0067600589245557785, 0.029079508036375046, -0.017929716035723686, 0.01435436587780714, 0.03429687023162842, -0.019902778789401054, 0.005846358370035887, 0.0032343671191483736, 0.03694527596235275, -0.0033121639862656593, 0.014023315161466599, 0.019002320244908333, 0.008448418229818344, -0.02637813426554203, 0.011566917411983013, -0.026590006425976753, 0.036759890615940094, 0.03013887256383896, 0.002741101197898388, 0.005843047983944416, -0.03074800595641136, -0.034323353320360184, -0.021054835990071297, 0.007283119484782219, -0.009971252642571926, 0.019253918901085854, 0.0038137061055749655, -0.012414407916367054, -0.017174920067191124, -0.012983815744519234, -0.004515533801168203, 0.032946184277534485, -0.03474710136651993, -0.03138362243771553, -0.011222624219954014, -0.005720559041947126, 0.007408918812870979, -0.011871484108269215, 0.0011545398738235235, -0.04030875489115715, 8.188336505554616e-05, -0.007018278352916241, 0.010103672742843628, 0.012381303124129772, 0.03771331533789635, -0.003260851139202714, -0.03389960899949074, -0.007826042361557484, -0.00715069891884923, -0.013169203884899616, 1.8544022168498486e-05, -0.016195008531212807, 0.014804595150053501, 0.02647082880139351, 0.011043856851756573, 0.017214644700288773, 0.003396582091227174, -0.0017380170756950974, -1.9833955775538925e-06, -0.00013893791765440255, -0.011672853492200375, 0.008845679461956024, 0.01330824475735426, 0.0012604761868715286, 0.0014756593154743314, 0.018525607883930206, 0.002242869697511196, -0.020498670637607574, 0.010520797222852707, 0.01107696257531643, -0.011321939527988434, 0.001402000430971384, -0.0034859657753258944, -0.03244298696517944, -0.010057325474917889, 0.0033932714723050594, -0.011441118083894253, -0.0010411549592390656, -0.008759606629610062, -0.034243904054164886, 0.0016742898151278496, -0.005220672115683556, 0.0366804376244545, 0.013970347121357918, 0.006872616242617369, -0.011494086124002934, 0.024272650480270386, 0.011434497311711311, 0.012765321880578995, -0.01765163242816925, 0.022617395967245102, -0.04123569652438164, 0.017029257491230965, 0.012818289920687675, 0.004664506763219833, 0.018419669941067696, 0.0033403034321963787, -0.0012306816643103957, -0.015241581946611404, 0.045632053166627884, 0.0021071387454867363, -0.027040235698223114, 0.010381755419075489, -0.019796842709183693, -0.02711968682706356, -0.026444343850016594, -0.011858242563903332, 0.005061767995357513, -0.01128221396356821, 0.012950710020959377, -0.0018671269062906504, 0.01390413660556078, 0.005108114797621965, 0.0024034292437136173, 0.002828829688951373, -0.03151604160666466, 0.05720559135079384, 0.023517854511737823, 0.01770460046827793, 0.030165355652570724, 0.01873748004436493, -0.013520117849111557, -0.02815256640315056, -0.01987629383802414, 0.000811902282293886, 0.021359402686357498, 0.04075898230075836, 0.009348876774311066, -0.03514436259865761, 0.0033320270013064146, 0.011136551387608051, -0.001915129367262125, -0.025914663448929787, 0.028179051354527473, 0.008951615542173386, 0.00045105681056156754, -0.027079962193965912, 0.0053564030677080154, -0.04491698369383812, 0.010924679227173328, 0.012056873179972172, -0.007700243499130011, -5.7261455367552117e-05, -0.023027898743748665, -0.009236318990588188, 0.011043856851756573, -0.01370550598949194, 0.009858694858849049, 0.0013324797619134188, 0.014989983290433884, 0.009415087290108204, -0.03382015600800514, -0.026682700961828232, 0.01135504525154829, -0.01828725077211857, 0.038640256971120834, -0.009461433626711369, -0.009501160122454166, 0.03228408098220825, 0.020551638677716255, 0.011394770815968513, -0.0209753829985857, 0.017161676660180092, 0.03771331533789635, 0.008269650861620903, -0.001978029031306505, -0.009401844814419746, -0.004419529344886541, 0.031012846156954765, 0.017241129651665688, 0.009276045486330986, -0.013851168565452099, -0.011997283436357975, -0.015572633594274521, 0.013374455273151398, 0.0003823637671303004, 0.016684964299201965, -0.005770216695964336, -0.012745458632707596, -0.0014392436714842916, -0.022988172248005867, -0.015599117614328861, 0.017333824187517166, -0.03281376138329506, -0.011891347356140614, -0.013096372596919537, -0.042559899389743805, 0.007653896231204271, 0.014831079170107841, 0.02018086053431034, 0.010083809494972229, 0.05789417773485184, -0.024312376976013184, 0.007700243499130011, 0.026020599529147148, 0.008567596785724163, -0.003080428345128894, 0.00777307478711009, -0.0049425894394516945, -0.023584064096212387, 0.02176990546286106, 0.0028387613128870726, -0.0063959029503166676, -0.029926998540759087, 0.01635391265153885, 0.01909501478075981, 0.0064455606043338776, 0.024775847792625427, 0.020962141454219818, 0.010176504030823708, 0.012884500436484814, -0.013142719864845276, -0.043513327836990356, 0.005621243733912706, 0.0016511162975803018, -0.015850715339183807, 0.01849912293255329, -0.011408013291656971, 0.0141557352617383, -0.0042341407388448715, 0.02488178387284279, -0.011222624219954014, -0.008441797457635403, -0.05095535144209862, 0.002668270142748952, -0.0076605174690485, -0.005237224977463484, -0.007739969529211521, -0.013016920536756516, -0.01095778401941061, -0.03771331533789635, -0.0066110859625041485, 0.023014657199382782, 0.024206440895795822, 0.010911436751484871, 0.025504158809781075, 0.0015236616600304842, 0.017333824187517166, -0.00791211612522602, -0.008752984926104546, -0.024378586560487747, -0.011023994535207748, -0.017135193571448326, -0.010792258195579052, -0.026934299618005753, 0.03564755991101265, 0.00981234759092331, -0.027490464970469475, -0.02489502541720867, -0.002347150817513466, -0.02603384107351303, -0.007945220917463303, 0.006872616242617369, 0.019545244053006172, 0.03916994109749794, 0.01714843511581421, -0.012613038532435894, 0.008362345397472382, 0.00036663885111920536, 0.01853884942829609, -0.017227888107299805, 0.008560976013541222, 5.460399734147359e-06, -0.001390413730405271, -0.01160002313554287, -0.01606258936226368, 0.0007647275342606008, -0.004336766432970762, -0.004949210677295923, -0.01982332579791546, 0.007713485509157181, 0.008342482149600983, 0.0028751769568771124, -0.0002575989637989551, -0.002367013832554221, -0.03241650015115738, 0.001426829257979989, -0.0043831137008965015, 0.012460755184292793, -0.04303661361336708, 0.005171014461666346, 0.02488178387284279, 0.01085846871137619, -0.01924067735671997, 0.005975468084216118, 0.00736257154494524, -0.0016014586435630918, 0.016830626875162125, -0.02661648951470852, -0.022617395967245102, -0.004760511685162783, -0.005084941629320383, 0.02836443856358528, -0.013268519192934036, -0.010865089483559132, 0.020988626405596733, -0.01595665141940117, -0.015426971018314362, -0.021240225061774254, 0.010454586707055569, -0.0047472696751356125, 0.012758701108396053, 0.019518759101629257, -0.014208703301846981, -0.0010585351847112179, 0.0005350610008463264, 0.011288834735751152, -0.0046777487732470036, 0.006677296012639999, -0.019320128485560417, 0.003384995274245739, -0.04825397580862045, 0.009944768622517586, 0.01006394624710083, -0.009428328834474087, -0.0030407023150473833, 0.008481523022055626, -0.0066408803686499596, -0.005343161057680845, -0.04621470347046852, -0.011646369472146034, -0.029238414019346237, 0.012573312036693096, 0.0021584515925496817, 0.019968988373875618, -0.013526738621294498, 0.01110344659537077, 0.010673080570995808, -0.019055288285017014, -0.001933337072841823, 0.24640779197216034, -0.022524701431393623, 0.011222624219954014, 0.0290000569075346, 0.02374296821653843, -0.005353092681616545, 0.03705121576786041, -0.0008313514990732074, -0.004502291791141033, 0.004777064081281424, 0.005379576701670885, -0.01924067735671997, -0.008276271633803844, -0.006773300934582949, 0.00351907080039382, -0.017333824187517166, -0.012944089248776436, -0.023729726672172546, -0.026987267658114433, -0.00371770141646266, 0.023928357288241386, -0.0014996604295447469, 0.002204798860475421, -0.019942505285143852, -0.014010072685778141, 0.01078563742339611, -0.01577126421034336, 0.027940694242715836, 0.028417406603693962, 0.013255276717245579, -0.013771716505289078, 0.01765163242816925, -0.005187567323446274, -0.008752984926104546, -0.018062135204672813, -0.014989983290433884, 0.04020281881093979, 0.01158015988767147, 0.022140681743621826, 0.004604917485266924, -0.008481523022055626, -0.007528096903115511, -0.013573085889220238, -0.002125346567481756, -0.01108358334749937, 0.0010337063577026129, 0.020644333213567734, -0.021584516391158104, 0.016976289451122284, -7.407263183267787e-05, -0.006558117922395468, -0.04322200268507004, 0.045579083263874054, 0.020101409405469894, -0.010183124803006649, -0.019955746829509735, 0.026338407769799232, 0.011368286795914173, -0.008997962810099125, 0.03188681975007057, 0.006233687978237867, 0.038242995738983154, -0.0143278818577528, 0.025106897577643394, -0.017519213259220123, -0.0053100562654435635, -0.030165355652570724, 0.001920095062814653, -0.01512240432202816, -0.01645984873175621, -0.0035654178354889154, 0.002297493163496256, -0.002858624327927828, -0.0007163113332353532, -0.024272650480270386, -0.02081647887825966, 0.05879463627934456, 0.023186802864074707, 0.009441571310162544, 0.0499754399061203, 0.012679248116910458, 0.010898195207118988, -0.007971704937517643, -0.004985626321285963, 0.00723677221685648, -0.024947993457317352, 0.019995473325252533, -0.007839284837245941, 0.0013837926089763641, -0.008997962810099125, 0.005025352351367474, 0.0020856205374002457, -0.0030903599690645933, -0.006723643280565739, -0.0012985470239073038, 0.007991568185389042, -0.01992926187813282, -0.004356629680842161, -0.013520117849111557, -0.007693622261285782, -0.008044536225497723, 0.04740648716688156, 0.040229301899671555, 0.014486785978078842, -0.0210151094943285, -0.01050755474716425, 0.0032906457781791687, 0.004571812693029642, -0.0002226317155873403, -0.0014053109334781766, 0.004995557479560375, -0.024074019864201546, -0.0027013751678168774, 0.005515307653695345, -0.00697855232283473, 0.02955622225999832, -0.01729409769177437, -0.02329273894429207, -0.00037388058262877166, 0.005164393689483404, 0.01622149348258972, -0.023372191935777664, -0.008488144725561142, -0.02112104557454586, -0.008839058689773083, 0.015413728542625904, -0.04502291977405548, -0.016036104410886765, -0.005386197939515114, -0.046770866960287094, 0.027305075898766518, -0.019849810749292374, 0.020313281565904617, -0.02775530517101288, 0.0019730632193386555, 0.03281376138329506, 0.00042664181091822684, -0.009461433626711369, -0.008296134881675243, 0.007832664065063, -0.010891573503613472, 0.007018278352916241, -0.007971704937517643, 0.002815587678924203, 0.006826268974691629, 0.0008483178680762649, 0.024458039551973343, 0.005349782295525074, 0.006336313672363758, -0.002699719974771142, -0.0566229410469532, -0.02939731813967228, 0.01023609284311533, 0.008805952966213226, 0.012308471836149693, -0.006918963510543108, -0.02314707636833191, -0.03962016850709915, 0.004555259831249714, 0.012977194041013718, -0.010275819338858128, -0.00791211612522602, 0.023981325328350067, -0.03604482114315033, -0.010699564591050148, -0.0286557637155056, -0.16737931966781616, -0.013970347121357918, 0.0074221608228981495, -0.045340728014707565, 0.040282271802425385, 0.0076671382412314415, 0.002024376066401601, -0.00747512886300683, -0.006107888650149107, -0.011917831376194954, 0.013116235844790936, -0.003020839300006628, -0.027940694242715836, 0.004171241074800491, 0.0022213514894247055, -0.008302755653858185, -0.005392818711698055, 0.011897968128323555, 0.036415595561265945, -0.010871711187064648, 0.05651700496673584, -0.004111651796847582, -0.002027686685323715, 0.007071246858686209, -0.0007593479240313172, 0.005829805973917246, 0.0008342482033185661, -0.0143278818577528, -0.015996377915143967, -0.021240225061774254, 0.009560748934745789, 0.01635391265153885, 0.02786124125123024, 0.0035985230933874846, 0.009454812854528427, -0.008726500906050205, 0.02271009050309658, 0.006498528644442558, -0.006872616242617369, 0.006184030324220657, 0.006667364854365587, 0.017757568508386612, 0.03532974794507027, 0.0022081092465668917, 0.009276045486330986, 0.020895931869745255, 0.016989530995488167, -0.008355723693966866, 0.010348650626838207, 0.004171241074800491, 0.012983815744519234, -0.018750721588730812, -0.025808725506067276, -0.004157999064773321, 0.018724236637353897, 0.0156256016343832, 0.0041844830848276615, 0.006806406192481518, -0.008481523022055626, -0.00983883161097765, 0.03458819538354874, -0.017135193571448326, -0.003002631478011608, 0.0011702647898346186, -0.031357139348983765, 0.009309150278568268, -0.017413275316357613, 0.009216456674039364, -0.003358511021360755, 0.004935968667268753, 0.024802330881357193, -0.011705959215760231, -0.027146171778440475, -0.028284987434744835, 0.03159549459815025, -0.0290000569075346, -0.014036556705832481, 0.025663064792752266, 0.031463075429201126, -0.005015420727431774, -0.008547733537852764, 0.024007810279726982, 0.0024315686896443367, -0.03366125375032425, 0.013420802541077137, 0.028814667835831642, 0.0006298242951743305, -0.033290475606918335, -0.012573312036693096, -0.0019664422143250704, 0.024206440895795822, -0.008786090649664402, -0.017519213259220123, -0.010375134646892548, 0.004959142301231623, 0.0017777432221919298, 0.007594306953251362, -0.010500933974981308, -0.026219230145215988, -0.008700016885995865, 0.011308697983622551, -0.0027460670098662376, -0.018777206540107727, 0.00754796015098691, 0.03898455202579498, 0.0219685360789299, -0.024272650480270386, 0.02008816786110401, 0.04640009254217148, 0.0028983503580093384, -0.0312512032687664, 0.011686095967888832, 0.010772395879030228, 0.018816931173205376, 0.00676667969673872, 0.028390923514962196, -0.002077344339340925, -0.002246180083602667, -0.01824752427637577, -0.003037391696125269, -0.01830049231648445, -0.0027990350499749184, 0.0008334206067956984, 0.012215777300298214, 0.008395450189709663, -0.02950325421988964, -0.06562752276659012, -0.016684964299201965, 0.004495671018958092, 0.008541112765669823, 0.0005458201048895717, 0.01924067735671997, -0.011586780659854412, 0.016936562955379486, -0.006349555682390928, 0.00777307478711009, 0.011262350715696812, -0.02043245919048786, 0.004704232793301344, 0.018922867253422737, -0.0067104012705385685, 0.016036104410886765, 0.005627864971756935, -0.016645237803459167, -0.015453455038368702, 0.0156256016343832, 0.015652084723114967, -0.004856516141444445, -0.01410276722162962, -0.008355723693966866, -0.006289966404438019, 0.0034793447703123093, -0.02309410832822323, 0.014486785978078842, 0.028020145371556282, 0.0015319379745051265, 0.014261671341955662, 0.006743506528437138, -0.015678569674491882, -0.01477811112999916, -0.00756120216101408, -0.0008764571975916624, -0.035117875784635544, -0.04150053858757019, 0.015334276482462883, -0.030959878116846085, -0.0062965876422822475, 0.0025110209826380014, 0.008488144725561142, -0.002155141206458211, -0.032893214374780655, -0.010143399238586426, 0.0038699847646057606, -0.005710627418011427, 0.01060687005519867, -0.022432006895542145, -0.03191330283880234, 0.01056052278727293, -0.002562333829700947, -0.012844773940742016, 0.021134287118911743, 0.016579028218984604, -0.005372955929487944, 0.009521023370325565, -0.02404753491282463, 0.0006877582054585218, -0.008481523022055626, 0.004045441746711731, -0.02269684709608555, 0.037898704409599304, 0.015996377915143967, 0.01651281677186489, -0.0074022975750267506, -0.011023994535207748, 0.01051417551934719, -0.013539981096982956, -0.011970799416303635, 0.023531096056103706, -0.022074472159147263, 0.02428589202463627, -0.0290000569075346, -0.009554128162562847, -0.0003116016450803727, -0.01140139251947403, 0.025570370256900787, -0.0051610833033919334, -0.014605964533984661, -0.018671268597245216, 0.00993814691901207, -0.005478892009705305, 0.010355271399021149, 0.04446675255894661, -0.002433223882690072, 0.00744864484295249, -0.011884726583957672, -0.035621073096990585, -0.009123762138187885, 0.005578207317739725, 0.017784053459763527, 0.012401165440678596, 0.0028735215310007334, -0.013341350480914116, -0.012997057288885117, -0.021531548351049423, 0.004148067440837622, 0.03697176277637482, -0.012202534824609756, -0.017532454803586006, -0.09613717347383499, 0.0070580048486590385, -0.011447738856077194, -0.006207203958183527, 0.016671722754836082, -0.018062135204672813, 0.01869775354862213, -0.012646143324673176, 0.0014632449019700289, -0.0014806250110268593, -0.02984754741191864, 0.01412925124168396, 0.0010113604366779327, -0.029264897108078003, -0.030165355652570724, -0.01175230648368597, 0.008488144725561142, 0.0151488883420825, 0.0061178202740848064, 0.008719880133867264, -0.008461660705506802, -0.022829268127679825, 0.02077675238251686, 0.0040785470046103, -0.026020599529147148, 0.040626563131809235, -0.03252243623137474, 0.01509592030197382, 0.0022147302515804768, -0.027252107858657837, -0.0019101635552942753, -0.01769135892391205, -0.018274009227752686, -0.028099598363041878, -0.008872163482010365, -0.009428328834474087, 0.0034296871162950993, 0.003371753264218569, 0.025821968913078308, 0.0547160878777504, -0.012010525912046432, -0.002557368017733097, 0.010580386035144329, -0.012427649460732937, 0.004955831449478865, -0.018658027052879333, 0.012401165440678596, 0.022590911015868187, 0.012050251476466656, 0.006270103622227907, 0.032548923045396805, 0.015003225766122341, -0.008607322350144386, -0.011315318755805492, 0.017929716035723686, -0.03837541863322258, -0.02276305854320526, 0.015890441834926605, -0.002688133157789707, -0.001040327362716198, 0.01978360116481781, 0.015877200290560722, 0.009342256002128124, -0.006826268974691629, -0.002787448465824127, -0.011871484108269215, -0.019770357757806778, -0.03570052608847618, 0.021584516391158104, -0.030509648844599724, -0.03731605410575867, -0.00685275299474597, 0.01495025772601366, 0.013288382440805435, 0.016181766986846924, -0.002419981872662902, -0.02309410832822323, -0.0032774037681519985, -0.013943863101303577, 0.013586328364908695, -0.0037839114665985107, 0.016234735026955605, -0.04745945334434509, 0.018353460356593132, 0.02141237072646618, -0.005369645077735186, -0.007554580923169851, 0.005108114797621965, -0.03816354647278786, -0.00012714423064608127, -0.02598087303340435, -0.015413728542625904, 0.01138152927160263, 0.029079508036375046, 0.01375847402960062, 0.035515137016773224, 0.009110519662499428, -0.0003962265036534518, 0.01888314262032509, 0.006551496684551239, 0.017267612740397453, -0.023213287815451622, -0.003376718843355775, -0.008759606629610062, -0.016684964299201965, 0.020445702597498894, -0.01873748004436493, -0.03604482114315033, -0.0012869603233411908, -0.007819421589374542, -0.006985173560678959, 0.010169883258640766, -0.030800973996520042, 0.008044536225497723, -0.026801878586411476, 0.015930168330669403, -0.010971025563776493, -0.02225986123085022, -0.02876169979572296, 0.016870353370904922, 0.017227888107299805, 0.031012846156954765, 0.02702699415385723, -0.02697402611374855, 0.008819195441901684, -0.021253466606140137, 0.004720785655081272, -0.017757568508386612, 0.035515137016773224, -0.0022809405345469713, -0.011593401432037354, 0.015334276482462883, -0.016102313995361328, -0.0359918512403965, -0.009024446830153465, 0.01705574057996273, -0.0008508007740601897, -0.009977873414754868, 0.0018075377447530627, 0.05498092994093895, 0.01734706573188305, -0.017016014084219933, 0.0048465849831700325, 0.002267698524519801, -0.0026517175137996674, 0.023041140288114548, 0.0004481601354200393, -0.016247976571321487, -0.010851847939193249, 0.020538397133350372, -0.022537942975759506, -0.008898647502064705, -0.030668552964925766, -0.03427038714289665, 0.015930168330669403, -0.034879520535469055, 0.03699824586510658, -0.007945220917463303, 0.009653443470597267, 0.0332375094294548, 0.0029993208590894938, 0.01600961945950985, 0.007481749635189772, -0.013771716505289078, -0.005300124641507864, 0.031145267188549042, 0.0011222624452784657, 0.003810395486652851, -0.010123535990715027, 0.02469639480113983, 0.0008557665278203785, -0.01343404408544302, -0.005333229433745146, -0.0009931526146829128, 0.007488370873034, -0.004734027665108442, 0.008137230761349201, 0.045579083263874054, -0.002433223882690072, 0.010666458867490292, 0.014420576393604279, -0.021134287118911743, -0.03159549459815025, -0.008905268274247646, 0.005452407989650965, -0.030615584924817085, 0.005660969763994217, 0.0039361948147416115], "bbe0cfa1-9266-4314-8cb6-65172eead885": [0.011846167966723442, -0.0068358429707586765, 0.018754243850708008, -0.019213907420635223, -0.0209868922829628, -0.005630869884043932, -0.013671685941517353, -0.021065691486001015, -0.0016941858921200037, -0.021932484582066536, 0.017007526010274887, 0.01333678886294365, -0.011517837643623352, 0.00453424546867609, -0.02021203190088272, -0.007000008597970009, 0.012437162920832634, -0.013776752166450024, 0.0044751460663974285, -0.015536604449152946, -0.0048822760581970215, -0.02321954071521759, 0.015155740082263947, -0.011379938572645187, -0.024217665195465088, 0.027947500348091125, 0.021551620215177536, -0.01585180126130581, 0.019739234820008278, -0.02836776338517666, 0.020448429509997368, -0.0026824609376490116, -0.01125517301261425, -0.013415588065981865, 0.02688371017575264, -0.005407604854553938, -0.001128636416979134, -0.01583866775035858, -0.008904325775802135, 0.010788943618535995, 0.0206060279160738, 0.016981258988380432, 0.021827418357133865, 0.012666994705796242, -0.01715199090540409, 0.01939777098596096, -0.023889334872364998, 0.020251430571079254, 0.01008631568402052, 0.01951597072184086, 0.006934342440217733, 0.005532370414584875, -0.04607135057449341, -0.024611661210656166, -0.006274397950619459, 0.012108832597732544, -0.03157227113842964, 0.01322515681385994, 0.006461546290665865, -0.01962103694677353, -0.000714939902536571, 0.03125707432627678, -0.016574129462242126, -0.010486879386007786, -0.009022524580359459, 0.005867267958819866, -0.03446158021688461, 0.03383118659257889, -0.011682002805173397, -0.0007465417147614062, 0.05610513314604759, 0.01984430104494095, 0.01621953211724758, 0.009501887485384941, 0.02491372637450695, 0.014078816398978233, -0.03651036322116852, 0.002203098265454173, 0.007380872033536434, 0.008188565261662006, -0.004842876456677914, -0.006241564638912678, 0.00017688810476101935, -0.021985016763210297, 0.013047858141362667, 0.01891184225678444, -0.016626661643385887, 0.008247665129601955, -0.005217173136770725, -0.0073743052780628204, -0.0020504246931523085, 0.0104934461414814, 0.011432471685111523, 0.01168856956064701, 0.011327405460178852, -0.013205456547439098, 0.023810535669326782, 0.016035666689276695, -0.015155740082263947, -0.06088562682271004, -0.015917466953396797, 0.017309589311480522, -0.024243932217359543, -0.0023393556475639343, -0.035328373312950134, -0.020093832165002823, 0.03414638340473175, -0.0029451255686581135, 0.022103216499090195, -0.010657611303031445, -0.021459687501192093, 0.022116350010037422, -0.006500945892184973, -0.03409384936094284, -0.023587269708514214, -0.0012813102221116424, 0.02508445829153061, -0.010014083236455917, 0.006251414772123098, 0.0066716778092086315, 0.023784268647432327, 0.0021144491620361805, 0.02005443349480629, 0.0016859776806086302, 0.013231723569333553, 0.01616699807345867, 0.0016030741389840841, 0.002992733381688595, 0.004484996199607849, -0.03490810841321945, 0.024795526638627052, 0.002559337066486478, 0.006822709925472736, 0.002014308236539364, -0.013711085543036461, 0.0010925200767815113, 0.007032841444015503, -0.0034474714193493128, -0.0031240656971931458, -0.0006652798620052636, 0.03075801022350788, 0.002132507273927331, -0.011865868233144283, -0.027500970289111137, -0.009416521526873112, 0.027185773476958275, 0.021499088034033775, 0.011209206655621529, 0.003151973709464073, -0.0040154834277927876, 0.008681060746312141, -0.03643156215548515, 0.0120168998837471, -0.0012394479708746076, 0.02332460507750511, 0.005821301601827145, 0.031388405710458755, 0.011353672482073307, -0.007991567254066467, -0.016298331320285797, 0.01780865155160427, 0.023258939385414124, 0.005873834248632193, -0.000570884847547859, -0.01355348713696003, 0.03246533125638962, 0.0032915142364799976, 0.024401530623435974, -0.0032603228464722633, 0.017296455800533295, 0.012561928480863571, 0.010815209709107876, -0.03622143343091011, 0.027185773476958275, -0.009823651984333992, 0.024716727435588837, -0.014774876646697521, 0.023639803752303123, -0.02863042801618576, -0.02507132478058338, -0.0035032874438911676, -0.00862852856516838, -0.012194198556244373, 0.029970016330480576, -0.016206398606300354, -0.03987246751785278, 0.00768950255587697, 0.010204515419900417, 0.01010601595044136, 0.019108841195702553, 6.58200224279426e-05, 0.04722707346081734, -0.0052697062492370605, 0.0005532370414584875, -0.6081207990646362, -0.015168873593211174, 0.0018993925768882036, 0.015562870539724827, -7.26944490452297e-05, 0.00945592112839222, 0.00937055516988039, 0.02459852769970894, -0.022444680333137512, 0.03222893178462982, -0.010073183104395866, 0.004590061958879232, -0.017388388514518738, -0.01158350333571434, 0.011957800947129726, -0.016810527071356773, -0.01459101215004921, -0.013172623701393604, -0.008149165660142899, 0.0024296464398503304, -0.031440939754247665, 0.02923455648124218, -0.04733213782310486, -0.01753285340964794, -0.009009392000734806, -0.006816143169999123, 0.005197473336011171, 0.006051132921129465, -0.00684240972623229, 0.033962517976760864, -0.03874301165342331, 0.010480312630534172, 0.010309580713510513, 0.009659485891461372, 0.0632496103644371, -0.004951225593686104, -0.025150123983621597, 0.0241519995033741, -0.004744376987218857, 0.04699067398905754, -0.015523470938205719, -0.016324598342180252, 0.003454037941992283, -0.0004941375809721649, -0.012410896830260754, -0.0031913735438138247, 0.01595686748623848, -0.019962500780820847, 0.004192781634628773, 0.007879934273660183, -0.004150098655372858, -0.021157624199986458, 0.0020340080372989178, -0.006169332191348076, 0.030180148780345917, -0.0015324830310419202, 0.020697960630059242, -0.029050691053271294, 0.012469995766878128, -0.002963183680549264, -0.0006070011877454817, 0.015812402591109276, -0.00901595875620842, -0.021118223667144775, -0.03283305838704109, 0.014577878639101982, -0.028262699022889137, -0.016915593296289444, -0.0005651390529237688, -0.009022524580359459, 0.010440913029015064, -0.018557244911789894, 0.025557253509759903, -0.009232656098902225, 0.013087257742881775, 0.04431149736046791, 0.0226285457611084, -0.016915593296289444, 0.007571303751319647, 0.003841468133032322, 0.004028616473078728, -0.006901509128510952, -0.0032077899668365717, -0.02059289440512657, 0.01589120179414749, -0.023784268647432327, -0.012542229145765305, -0.018727976828813553, 0.0035459704231470823, 0.010007516480982304, 0.002542920410633087, 0.037561021745204926, 0.003097799140959978, -0.05731339007616043, 0.019529104232788086, 0.04596628248691559, -0.006973742041736841, -0.0074859377928078175, 0.006261264439672232, 0.005079274531453848, -0.0252945888787508, -0.010204515419900417, 0.012417463585734367, -0.013343355618417263, 0.02852536179125309, 0.006609295029193163, -0.041395921260118484, 0.011478438042104244, 0.02863042801618576, -0.014735477045178413, 0.009075057692825794, 0.01616699807345867, -0.004094282630831003, 0.004173081833869219, 0.002913934178650379, -0.022773010656237602, 0.013737352564930916, 0.023298339918255806, 0.01344185508787632, -0.014288947917521, 0.015182007104158401, -0.002536353887990117, 0.027737369760870934, 0.0014602503506466746, -0.01574673503637314, -0.003562387079000473, 0.01815011538565159, 0.01357975322753191, -0.003897284157574177, -0.00210952409543097, -0.01106474082916975, 0.0054699876345694065, 0.021788017824292183, -0.013500954024493694, 0.010788943618535995, 0.007006574887782335, 0.011268306523561478, -0.011833034455776215, -0.001253402093425393, -0.01884617656469345, -0.01292309258133173, -0.012765494175255299, -0.007039408199489117, -0.0165609959512949, -0.004918392281979322, -0.04420643299818039, -0.021380888298153877, 0.005450287833809853, -0.003897284157574177, 0.00652721244841814, 0.008727027103304863, -0.013474687933921814, -0.016626661643385887, 0.019437171518802643, 0.0002770289429463446, 0.010414646938443184, 0.004810043144971132, -0.02076362632215023, -0.008838660083711147, -0.006077399477362633, -0.018071316182613373, 0.002831851365044713, -0.010749544017016888, -0.01000094972550869, -0.018754243850708008, 0.0009242506348527968, 0.013087257742881775, -0.006701227743178606, -0.010861176066100597, -0.02088182605803013, -0.007183873560279608, 0.006037999875843525, 0.009377121925354004, 0.004297847393900156, 0.014499079436063766, -0.0007650103070773184, -0.028210164979100227, 0.009107890538871288, -0.012358363717794418, -0.003414638340473175, 0.016810527071356773, 0.0007879934273660183, 0.021118223667144775, -0.015694202855229378, 0.006333497352898121, 0.012062866240739822, 0.01765105314552784, 0.009396822191774845, -0.022155748680233955, 0.0021210156846791506, 0.0071904403157532215, 0.003877584356814623, -0.004143532365560532, 0.017506588250398636, 0.01906944066286087, 0.014407146722078323, 0.02256287820637226, 0.01116980705410242, 0.006934342440217733, 0.015825534239411354, 0.02103942446410656, 0.00022839497250970453, -0.003532837377861142, -0.015300205908715725, 0.022273948416113853, -0.03217639774084091, -0.0014356255996972322, -0.0027629020623862743, 0.021985016763210297, 0.00314869056455791, -0.018780510872602463, -0.020671695470809937, -0.026857443153858185, 0.005016891751438379, 0.013028157874941826, 0.017611652612686157, -0.02807883359491825, -0.0037429688964039087, -0.011110707186162472, 0.011708268895745277, 0.010598511435091496, -0.026200782507658005, 0.007334905676543713, -0.05022144690155983, -0.0033752385061234236, -0.005627586506307125, -0.0033850884065032005, -0.005204040091484785, 0.015208273194730282, -0.03180866688489914, -0.009462487883865833, -0.006192314904183149, 0.0017598520498722792, -0.003104365896433592, 0.02497939206659794, -0.03044281341135502, 0.016521595418453217, -0.03351598605513573, 0.031073208898305893, -0.01704692468047142, 0.009311456233263016, -0.010263614356517792, 0.010211081244051456, -0.011984067037701607, 0.02235274761915207, 0.007085374556481838, 0.049853719770908356, 0.015326471999287605, -0.035433437675237656, -0.022694211453199387, -0.007663235999643803, -0.007958733476698399, -0.01502440869808197, 0.030915608629584312, 0.000679644348565489, -0.03498690947890282, -0.011629469692707062, -0.008227964863181114, 0.026410913094878197, 0.012831159867346287, 0.012056299485266209, 0.03398878499865532, -0.001269818632863462, 0.003746252041310072, -0.014669811353087425, -0.030022550374269485, -0.020093832165002823, -0.016101332381367683, -0.014341481029987335, -0.014958742074668407, -0.004537528846412897, -0.0041993483901023865, 0.018701711669564247, -0.02185368537902832, -0.011879000812768936, 0.011701703071594238, 0.013448421843349934, 0.03611636534333229, 0.04649161174893379, -0.004636028315871954, -0.00672092754393816, -0.01060507819056511, 0.012581628747284412, 0.024834927171468735, 0.01901690848171711, 0.0034934375435113907, -0.012765494175255299, 0.006415579933673143, 0.018977507948875427, 0.012135098688304424, 0.009186690673232079, -0.004806759767234325, 0.007564736995846033, 0.0016432947013527155, -0.002787526696920395, 0.002825284842401743, 0.03377865254878998, -0.01967356912791729, -0.021669819951057434, -0.01988370157778263, 0.006166048813611269, -0.026266448199748993, 0.0020225164480507374, -0.004731243941932917, 0.0444953627884388, 6.46913904347457e-05, -0.01993623375892639, -0.009744851849973202, -0.00121236068662256, -0.03987246751785278, -0.0254127886146307, -0.022641677409410477, -0.0032668893691152334, -0.01134053897112608, -0.014026283286511898, 0.007925900630652905, 0.02643718011677265, 0.0038020682986825705, 0.010815209709107876, 0.028105098754167557, -0.007380872033536434, -0.01115010678768158, -0.008963425643742085, 0.000746952136978507, 0.015536604449152946, 0.0035262706223875284, -0.0004370901151560247, 0.025058191269636154, -0.010421213693916798, -0.019581636413931847, -0.03278052806854248, 0.003864451078698039, 0.0026955942157655954, -0.016810527071356773, 0.005167923867702484, -0.00934428907930851, 0.013973750174045563, -0.0069474754855036736, 0.01335648912936449, 0.005522520747035742, -0.022063815966248512, -0.021446553990244865, -0.009423088282346725, -0.022379014641046524, 0.009416521526873112, -0.01585180126130581, 0.013185757212340832, 0.008615395054221153, 0.004721394274383783, 0.008359297178685665, 0.007262672763317823, 0.03207133337855339, 0.0022195149213075638, -0.018071316182613373, 0.003238981356844306, 0.0016145657282322645, 0.009436221793293953, 0.020251430571079254, 0.0036313363816589117, 0.02048783004283905, -0.009849918074905872, 0.05163983628153801, 0.0018205931410193443, 0.031020674854516983, -0.01250939629971981, 0.025123856961727142, 0.019712969660758972, -0.0015398705145344138, 0.007840534672141075, -0.03580116853117943, 0.008050666190683842, 0.026949375867843628, -0.008464362472295761, -0.03393625095486641, 0.015641670674085617, 0.006057699676603079, -0.03784995153546333, 0.005512670613825321, 0.015615403652191162, 0.018557244911789894, -0.028105098754167557, 0.0005704744253307581, -0.01322515681385994, -0.005108823999762535, -0.005371488630771637, -0.004343813750892878, 0.0007949704886414111, -0.0074859377928078175, -0.011701703071594238, -0.028315231204032898, -0.027527237311005592, -0.00453424546867609, -0.03700942546129227, -0.028919359669089317, 0.02361353673040867, -0.048435330390930176, -0.025859318673610687, 0.011997200548648834, 0.005000474862754345, 0.015326471999287605, 0.022694211453199387, -0.022142615169286728, -0.03207133337855339, 0.004416046664118767, -0.007039408199489117, 0.0004953687894158065, -0.01918764039874077, -0.025872452184557915, -0.0006525570643134415, 0.0006784130819141865, -0.0018419346306473017, 0.008030966855585575, -0.018504712730646133, 0.020671695470809937, -0.0029484087135642767, 0.005873834248632193, 0.020093832165002823, 0.013947484083473682, 0.003450754564255476, 0.004655728116631508, 0.006349913775920868, 0.018701711669564247, 0.0055487873032689095, -0.023797402158379555, 0.006921208929270506, -0.0344090461730957, -0.01759852096438408, 0.009639786556363106, 0.0026315697468817234, -0.01144560519605875, -5.509797847480513e-05, 0.008569428697228432, 0.003440904663875699, 0.010559111833572388, 0.025320855900645256, -0.01645592972636223, -0.0074859377928078175, -0.021433422341942787, 0.0022753311786800623, 0.014341481029987335, 0.005250006448477507, 0.016153866425156593, 0.013737352564930916, 0.007577870041131973, 0.02792123518884182, -0.031178273260593414, 0.03490810841321945, 0.032045066356658936, 0.00044160467223264277, 0.010585378855466843, -0.00282856822013855, -0.01847844570875168, -0.022549746558070183, 0.0014742043567821383, -0.005328805651515722, 0.028604162856936455, -0.008674494922161102, -0.01956850290298462, -0.025491587817668915, 0.0005085020093247294, 0.006763610523194075, 0.0310994740575552, -0.016035666689276695, -0.04131712391972542, -0.011399638839066029, -0.006474679335951805, 0.004688560962677002, -0.024664195254445076, 0.01388181746006012, -0.030232680961489677, -0.007426838390529156, -0.012135098688304424, 0.0068358429707586765, -0.005722802598029375, 0.02534712292253971, 0.002061916282400489, -0.04901319369673729, -0.010158549062907696, 0.010020649991929531, -0.01951597072184086, 0.006471395958214998, -0.038217682391405106, 0.007288939319550991, 0.01612759940326214, 0.00937055516988039, 0.009554420597851276, 0.013632286339998245, -0.0015850160270929337, -0.0054010385647416115, -0.004143532365560532, -0.03987246751785278, 0.013212023302912712, 0.010907142423093319, -0.0006082324543967843, 0.00891089253127575, 0.01578613556921482, -0.012798327021300793, -0.00568011961877346, 0.00956098735332489, 0.022812409326434135, -0.01197093352675438, -0.0020257998257875443, -0.004159948788583279, -0.04016139730811119, -0.007111640647053719, -0.0020225164480507374, 0.009508454240858555, 0.0033883717842400074, -0.012745793908834457, -0.01737525500357151, -0.02508445829153061, -0.0029910916928201914, 0.025938117876648903, 0.004668861161917448, 0.009928717277944088, -0.01273266039788723, 0.007367738522589207, -0.0007050899439491332, -0.010598511435091496, -0.0023426387924700975, 0.030075082555413246, -0.020120099186897278, 0.023626670241355896, 0.031125741079449654, 0.002350847003981471, 0.008326464332640171, 0.026857443153858185, -0.007124774158000946, -0.000836832623463124, 0.029970016330480576, 0.0013863759813830256, -0.04360230267047882, 0.00715760700404644, -0.023561004549264908, -0.029681086540222168, -0.04265671223402023, -0.005502820946276188, 0.005814734846353531, -0.03485557809472084, -0.0012985474895685911, 0.021761752665042877, 0.008897759020328522, 0.01134053897112608, -0.013126657344400883, -0.005108823999762535, -0.022641677409410477, 0.025045057758688927, -0.0016572487074881792, 0.023744869977235794, 0.0212495569139719, 0.009574119932949543, -0.029155757278203964, -0.05074677616357803, -0.007295506075024605, -0.012555361725389957, 0.035643570125103, 0.04877679422497749, -0.012936226092278957, -0.014367747120559216, -0.00558490352705121, 0.01863604411482811, -0.007262672763317823, -0.02736963890492916, 0.005312389228492975, 0.013159490190446377, -0.0031322739087045193, -0.020960625261068344, 0.005007041618227959, -0.014157615602016449, 0.005460137967020273, -0.016902459785342216, 0.0024230799172073603, -0.02033023163676262, -0.010808642953634262, 0.007282372564077377, 0.015129473991692066, -0.03170360252261162, 0.02121015638113022, -0.0020799743942916393, 0.028499096632003784, 0.0010892368154600263, -0.030311480164527893, -0.06130588799715042, -0.0004559691296890378, -0.007643536198884249, 0.020737361162900925, -0.013461554422974586, -0.009954983368515968, 0.014985008165240288, 0.02233961410820484, -0.0005027562147006392, -0.013172623701393604, -0.00043667969293892384, 0.0452570915222168, -0.00872046034783125, -0.008411830291152, 0.007952166721224785, -0.0016022532945498824, 0.017559120431542397, 0.006195598281919956, 0.011353672482073307, -0.017335856333374977, -0.0005848389118909836, -0.003081382717937231, 0.026686711236834526, -0.005831151269376278, 0.010197948664426804, -0.03451411426067352, -0.012305830605328083, 0.006862109526991844, -0.027684835717082024, -0.01398688368499279, 0.030075082555413246, -0.034015052020549774, -0.027527237311005592, -0.01797938346862793, -0.04572988674044609, 0.020527228713035583, -0.0005889430176466703, 0.006701227743178606, 0.0039005675353109837, 0.06130588799715042, -0.03243906423449516, 0.013159490190446377, 0.0013453346909955144, 0.008667928166687489, -0.00411069905385375, 0.006238281261175871, -0.008858359418809414, -0.02813136577606201, 0.01720452308654785, -0.005955917295068502, -0.031046941876411438, -0.03595876693725586, 0.017716718837618828, 0.025478454306721687, -0.0006443487945944071, 0.020133232697844505, 0.02398126758635044, -0.004494845867156982, 0.014262680895626545, -0.0174409206956625, -0.03354225307703018, -0.0045703621581196785, -0.009981250390410423, -0.009830217808485031, 0.008963425643742085, -0.00251993746496737, -0.004688560962677002, -0.007308639120310545, 0.014866809360682964, -0.020080698654055595, -0.0047509437426924706, -0.03784995153546333, 0.006041283253580332, -0.014407146722078323, -0.006743910722434521, -0.014197015203535557, -0.049538519233465195, -0.012660427950322628, -0.020461563020944595, -0.010046916082501411, 0.030863076448440552, -0.014341481029987335, 0.04026646539568901, 0.0018550679087638855, 0.003460604464635253, 0.011865868233144283, -0.006386029999703169, -0.015076940879225731, -0.0193452388048172, -0.03916327282786369, -0.005154790356755257, -0.01711259037256241, -0.02736963890492916, 0.038112614303827286, -0.003204506589099765, -0.012712961062788963, -0.013619153760373592, 0.0039038509130477905, -0.016482196748256683, -0.00978425145149231, 0.018228914588689804, 0.008595694787800312, 0.02574111893773079, 0.0014093591598793864, 0.028499096632003784, 0.03653663024306297, 0.007617270108312368, 0.003828334854915738, -0.02235274761915207, -0.00882552657276392, -0.005187623668462038, -0.007827401161193848, 0.018333980813622475, -0.01568106934428215, 0.005144940689206123, 0.002035649726167321, 0.0012115399586036801, -0.008057232946157455, 0.003601786680519581, 0.011156673543155193, 0.013842417858541012, -0.007413704879581928, -0.009652920067310333, -0.01720452308654785, -0.015615403652191162, -0.01989683508872986, -0.008477495983242989, -0.018924975767731667, 0.004859292879700661, 0.02639777958393097, -0.017348989844322205, 0.009416521526873112, -0.006973742041736841, 0.011353672482073307, -0.016035666689276695, 0.00956098735332489, -0.011248606257140636, -0.012174498289823532, -0.003851318033412099, -0.01344185508787632, 0.013606020249426365, -0.022195149213075638, 0.010250481776893139, 0.044941890984773636, -0.012982191517949104, -0.014091948978602886, -0.015063808299601078, -0.004901975858956575, -0.02563605271279812, 0.0002770289429463446, -0.00047566895955242217, -0.006041283253580332, -0.023574138060212135, 0.006868676282465458, 0.0061003826558589935, -0.00028708408353850245, -0.007840534672141075, 0.003559103701263666, 0.039373405277729034, -0.04331337288022041, 0.01623266562819481, 0.013842417858541012, -0.013198889791965485, -0.005515953991562128, 0.006789876613765955, -0.00969888549298048, -0.0044258963316679, -0.04680681228637695, 0.007348038721829653, -0.027606036514043808, 0.011550670489668846, -0.008648227900266647, -0.012634161859750748, -0.013487821444869041, 0.01585180126130581, -0.0020405747927725315, -0.007722335867583752, 0.00023721886100247502, 0.27506223320961, -0.009318022057414055, -0.0005840180674567819, 0.020960625261068344, 0.0006049491348676383, -0.0018435763195157051, 0.013290822505950928, 0.002331147203221917, 0.0035262706223875284, 0.022168882191181183, -0.013606020249426365, -0.01136680506169796, -0.008536595851182938, -0.00347045436501503, 0.020343363285064697, -0.03498690947890282, -0.03721955791115761, -0.02792123518884182, -0.02316700667142868, 0.002787526696920395, 0.030469080433249474, -0.0036346197593957186, -0.01210226584225893, -0.008162299171090126, 0.00819513201713562, 0.0174409206956625, -0.022654810920357704, 0.025504721328616142, 0.03433024883270264, 0.01352722104638815, -0.02973361872136593, 0.009547853842377663, 0.0004329859802965075, 0.002595453290268779, -0.0077748685143888, -0.027658570557832718, 0.044127631932497025, -0.012673561461269855, 0.01040808018296957, 0.006510796025395393, 0.003114215796813369, 0.009350855834782124, 0.019660435616970062, 0.001587478443980217, -0.0052894060499966145, 0.00692777568474412, -0.000519583176355809, -0.015195140615105629, 0.028315231204032898, -0.013192323967814445, -0.010539412498474121, -0.016363997012376785, 0.02813136577606201, 0.012364930473268032, 0.008641661144793034, -0.006340064108371735, 0.02776363492012024, 0.0046064783819019794, -0.00715760700404644, 0.028341498225927353, -0.011754235252737999, 0.04016139730811119, -0.019529104232788086, 0.02530772238969803, -0.009659485891461372, -0.02633211389183998, -0.010992508381605148, 0.02928709052503109, -0.004970925394445658, -0.006789876613765955, -0.012108832597732544, -0.0010465538362041116, -0.0136585533618927, -0.0023262223694473505, -0.015392138622701168, -0.018767377361655235, 0.03220266476273537, 0.020251430571079254, 0.02792123518884182, 0.05957230553030968, 0.02349533699452877, -0.0016991108423098922, -0.0052697062492370605, 0.0010843118652701378, 0.010486879386007786, -0.01720452308654785, 0.02562291920185089, -0.0354071706533432, 5.196857819100842e-05, -0.013238289393484592, 0.00789306778460741, -0.017191389575600624, 0.004455446265637875, -0.03233399614691734, 0.011938100680708885, 0.010092882439494133, 0.007256106473505497, 0.011196073144674301, 0.008149165660142899, -0.006399163510650396, -0.03383118659257889, 0.05684059485793114, 0.027606036514043808, 0.018425913527607918, -0.010171681642532349, 0.006070832721889019, -0.013789885677397251, 0.013402455486357212, 0.0021407154854387045, -0.01103847473859787, 0.022878076881170273, -0.04318204149603844, 0.0028745343443006277, 0.001067895325832069, -0.0019765503238886595, 0.03304319083690643, -0.006717644166201353, -0.025833051651716232, -0.017125723883509636, -0.007045974489301443, 0.018452180549502373, -0.02578051947057247, -0.018373381346464157, -0.018701711669564247, -0.0012320606037974358, 0.0032012234441936016, -0.012338664382696152, -0.009134157560765743, -0.01649533025920391, -0.040844324976205826, 0.01950283721089363, -0.003953100647777319, 0.007164173759520054, 0.002231006510555744, 0.009061924181878567, 0.0032800226472318172, -0.001147515489719808, -0.007039408199489117, -0.003114215796813369, -0.0033588220831006765, -0.006386029999703169, 0.002139073796570301, 0.0047181108966469765, -0.003078099340200424, -0.008234531618654728, 0.007118207402527332, 0.02076362632215023, 0.014879942871630192, 0.01494560856372118, -0.012410896830260754, -0.04444282874464989, 0.0031158574856817722, 0.011327405460178852, 0.0037758019752800465, 0.02747470512986183, -0.012588195502758026, -0.009081624448299408, -0.03060041181743145, 0.0023327888920903206, 0.00504315784201026, -0.02907695807516575, -0.00863509438931942, 0.0237711351364851, -0.02306194230914116, -0.0053058224730193615, -0.02497939206659794, -0.16516342759132385, -0.010578812099993229, 0.021499088034033775, -0.025819918140769005, 0.038060083985328674, 0.016954991966485977, -0.014380880631506443, 0.007013141643255949, -0.031335871666669846, 0.0044258963316679, 0.007216706406325102, 0.007860234938561916, -0.00828049797564745, 0.008904325775802135, -0.020146366208791733, 0.018452180549502373, 0.009318022057414055, -0.002913934178650379, 0.05203383415937424, 0.007072241045534611, 0.04956478625535965, -0.011609770357608795, -0.0062842476181685925, 0.010138848796486855, 0.006642127875238657, 0.01027674786746502, 0.00019751137006096542, -0.0010531203588470817, -0.004287997726351023, -0.022523479536175728, 0.00041000283090397716, -0.00013081922952551395, 0.024125732481479645, -0.006159482058137655, 0.010125715285539627, -0.007505637593567371, 0.009357422590255737, 0.002304880879819393, -0.009620086289942265, 0.010972809046506882, -0.007748601958155632, 0.019529104232788086, 0.012660427950322628, 0.0030961574520915747, 0.013303956016898155, 0.019634170457720757, 0.005932934116572142, -0.022365881130099297, 0.008556295186281204, 0.007860234938561916, 0.023902468383312225, -0.025767385959625244, -0.04108072444796562, -0.004609761759638786, 0.007939034141600132, 0.008260797709226608, -0.005827868357300758, 0.018491579219698906, -0.020566629245877266, -0.012719527818262577, 0.01147187128663063, -0.030416546389460564, -0.013500954024493694, 0.008983124978840351, -0.003342405427247286, -0.004484996199607849, -0.03545970469713211, 0.006290814373642206, -0.0018485012697055936, 0.006238281261175871, 0.0221294816583395, -0.025885583832859993, -0.019752368330955505, 0.005926367361098528, 0.0029270672239363194, -0.007394005078822374, 0.002093107672408223, 0.026870576664805412, 0.03703569248318672, 0.007531904149800539, -6.294072136370232e-06, 0.015970000997185707, 0.016705460846424103, -0.02710697427392006, -0.015694202855229378, 0.01912197470664978, -0.011517837643623352, -0.011196073144674301, -0.035643570125103, 0.006336780730634928, 0.04260417819023132, -0.025333989411592484, -0.013205456547439098, -7.577254291391e-05, 0.005604603327810764, 0.010243915021419525, 0.004708260763436556, 0.0033538970164954662, -0.01562853716313839, -0.0024509879294782877, 0.01687619276344776, -0.0030994408298283815, -0.017401522025465965, 0.005640719551593065, 0.02321954071521759, 0.022825542837381363, -0.020697960630059242, 0.004222331568598747, 0.03065294399857521, -0.011879000812768936, -0.02409946545958519, 0.00035603350261226296, 0.020947491750121117, 0.015497203916311264, 0.006244848016649485, 0.01858351193368435, 0.004859292879700661, 0.002158773597329855, -0.0074662379920482635, -0.02230021357536316, -0.028945626690983772, -0.005906667560338974, -0.006730777211487293, 0.01562853716313839, 0.009160423651337624, -0.024769259616732597, -0.06645411252975464, -0.032491594552993774, -0.00016785901971161366, 0.015103207901120186, -0.008484062738716602, 0.028157632797956467, -0.003350613871589303, 0.028998158872127533, -0.005959200207144022, 0.007269239518791437, 0.00022531687864102423, -0.0069474754855036736, -0.006908075883984566, 0.009311456233263016, 0.0060839662328362465, -0.003861167933791876, 0.008313330821692944, 0.005535653792321682, -0.008864926174283028, 0.024545995518565178, 0.023574138060212135, -0.0003166338137816638, -0.016981258988380432, -0.005171206779778004, -0.0068949428386986256, -0.0031913735438138247, -0.015260806307196617, 0.0034277713857591152, 0.0020028166472911835, 0.012568495236337185, 0.010237348265945911, -0.004133682232350111, -0.004721394274383783, -0.013402455486357212, 0.025767385959625244, 0.009593820199370384, -0.0209868922829628, -0.04184245318174362, 0.030153881758451462, -0.0017811935395002365, -0.003979366738349199, 0.008681060746312141, 0.015273939818143845, 0.00506614102050662, -0.0082213981077075, -0.004251881502568722, -0.00862852856516838, -0.0007424375507980585, -0.012364930473268032, -0.005197473336011171, -0.055054474622011185, 0.0065436288714408875, -0.014394013211131096, -0.003424488240852952, 0.015273939818143845, 0.021223289892077446, 0.007387438323348761, 0.012227031402289867, -0.028446562588214874, 0.016521595418453217, 0.001237806398421526, 0.018439047038555145, -0.012666994705796242, 0.017138857394456863, 0.010828343220055103, -0.0037561021745204926, -0.014853676781058311, 0.009705452248454094, 0.0020438579376786947, -0.0017680602613836527, -0.01846531219780445, 0.011373371817171574, -0.03459291160106659, 0.010473745875060558, -0.01912197470664978, -0.015011275187134743, 0.0077617354691028595, -0.0016523237572982907, -0.0004136965435463935, -0.00473781069740653, -0.012903392314910889, -0.007170740514993668, 0.00839213002473116, -0.007400571834295988, 0.02163041941821575, 0.03175613656640053, 0.0005507745663635433, 0.002918859012424946, -0.0016597112407907844, -0.03724582493305206, -0.033909983932971954, -0.005177773535251617, 0.004018766339868307, -0.005358355585485697, -0.002603661734610796, -0.016298331320285797, 0.012332097627222538, -0.02469046041369438, 0.019870568066835403, 0.023258939385414124, 0.007932467386126518, -0.008648227900266647, -0.08137345314025879, 0.010073183104395866, 0.003729835618287325, 0.00136585533618927, 0.011130407452583313, -0.0048986924812197685, 0.01459101215004921, -0.005181056912988424, -0.0036313363816589117, 0.014774876646697521, -0.04052912816405296, 0.01780865155160427, 0.011879000812768936, -0.013172623701393604, -0.022195149213075638, -0.02021203190088272, 0.025281455367803574, 0.0030895909294486046, 0.005519237369298935, 0.007288939319550991, -0.0032603228464722633, -0.027343371883034706, -0.005640719551593065, 0.027448438107967377, -0.03180866688489914, 0.010598511435091496, -0.012049732729792595, 0.01863604411482811, 0.005387905053794384, -0.026791777461767197, 0.008136032149195671, -0.011333972215652466, 0.001715527381747961, -0.005538937170058489, -0.010362113825976849, 0.01583866775035858, -0.0010703577427193522, 0.025557253509759903, 0.017677320167422295, 0.05442408099770546, -0.02989121712744236, -0.006435279734432697, 0.018215781077742577, -0.001227956498041749, -0.020015032961964607, -0.019082574173808098, 0.009449354372918606, 0.01578613556921482, 0.015457804314792156, 0.03435651585459709, 0.03433024883270264, 0.03404131531715393, 0.00923922285437584, -0.00661257840692997, 0.007833967916667461, -0.028236432000994682, -0.01357975322753191, 0.004613045137375593, 0.0009759627282619476, 0.006743910722434521, 0.04572988674044609, 0.007420271635055542, -0.0013420513132587075, 0.009941850788891315, -5.7868270232575014e-05, 0.006156198680400848, -0.01633772999048233, -0.005374772008508444, 0.00651736231520772, -0.007091940846294165, -0.03837528079748154, 0.00891089253127575, 0.002290105912834406, 0.0010777452262118459, 0.02999628335237503, -0.005085840821266174, -0.0070788078010082245, -0.0010908783879131079, -0.015011275187134743, 0.03075801022350788, 0.009639786556363106, 0.021774886175990105, -0.02989121712744236, 0.022221414372324944, 0.03448784723877907, -0.014564745128154755, 0.0019502837676554918, -0.0029582586139440536, -0.01573360152542591, 0.003023924771696329, -0.025491587817668915, -0.005358355585485697, 0.009718585759401321, 0.02677864395081997, 0.00839213002473116, 0.025530988350510597, 0.008037532679736614, -0.0004752585373353213, 0.0376923531293869, 0.0012722810497507453, 0.017506588250398636, -0.01016511581838131, -0.010828343220055103, -0.013172623701393604, -0.0047870599664747715, 4.5889330067439005e-05, -0.011235472746193409, -0.03246533125638962, -0.002851551165804267, 0.0029549754690378904, -0.021814284846186638, -0.011176373809576035, -0.008122898638248444, 0.0035065708216279745, -0.013763618655502796, 0.00028811010997742414, 0.013474687933921814, -0.021985016763210297, -0.01216136571019888, 0.004645877983421087, 0.018780510872602463, 0.024519728496670723, 0.01357975322753191, -0.01896437630057335, 0.017086325213313103, -0.0033144974149763584, 0.00910132471472025, -0.045703619718551636, 0.014380880631506443, 0.001401150831952691, -0.006848976481705904, 0.006015016697347164, -0.02272047847509384, -0.03327959030866623, 0.004409479908645153, 0.014131349511444569, 0.008924026042222977, 0.004307697527110577, -0.015615403652191162, 0.058994442224502563, 0.03485557809472084, 0.00047361687757074833, 0.004954508971422911, 0.0011951234191656113, 0.0022441395558416843, 0.014801143668591976, 0.01967356912791729, -0.0005064499564468861, -0.014236414805054665, 0.0376923531293869, -0.008044099435210228, -0.0017040357924997807, -0.008273931220173836, -0.007702636066824198, -0.0001464149245293811, -0.03354225307703018, 0.019305840134620667, -0.000497010420076549, 0.010907142423093319, 0.03677302598953247, 0.0006492737447842956, 0.02055349573493004, 0.010145415551960468, -0.030258947983384132, -0.004544095601886511, 0.03186120092868805, 0.006461546290665865, 0.0180844496935606, -0.006051132921129465, 0.02370546944439411, 0.013323655351996422, -0.014971875585615635, -0.010539412498474121, -0.007039408199489117, 0.017007526010274887, -0.0021013158839195967, 0.017230790108442307, 0.02425706572830677, -0.0044915624894201756, 0.008897759020328522, 0.005460137967020273, -0.024848060682415962, -0.025163257494568825, -0.0032077899668365717, -0.00504315784201026, -0.014604144729673862, -0.012542229145765305, 0.0023869634605944157], "69b8f82f-50a6-4828-8968-c1466952a5cd": [0.020654065534472466, -0.011516601778566837, 0.004650432616472244, -0.004006627015769482, 0.005578558426350355, -0.002869346411898732, -0.03158241882920265, -0.02488945610821247, 0.03738647326827049, -0.032575905323028564, 0.002725552301853895, 0.005036062560975552, -0.024196630343794823, 0.007274675648659468, -0.0006352268974296749, -0.012451264075934887, -0.006238704081624746, -0.00944465957581997, 0.010817239992320538, -0.016941562294960022, -0.022719470784068108, -0.0005584277678281069, 0.015346754342317581, -0.018654020503163338, -0.021856706589460373, 0.022039717063307762, 0.013300956226885319, -0.02086322009563446, 0.013699658215045929, -0.019072329625487328, 0.006516488268971443, -0.020588703453540802, -0.01979129947721958, 0.0071897064335644245, 0.005156980361789465, -0.0004156548820901662, -0.007405397482216358, 0.0024069175124168396, -0.010581940412521362, -0.0064641996286809444, 0.03302035853266716, 0.0069740149192512035, 0.013895741663873196, 0.009366226382553577, -0.012764996849000454, 0.02563457004725933, -0.04669387266039848, 0.003895513480529189, -0.004656968638300896, 0.015477476641535759, -0.014131040312349796, 0.007196242455393076, -0.030144477263092995, -0.02623589150607586, -0.011529674753546715, -0.007281211670488119, -0.02160833589732647, 0.012451264075934887, 0.014300979673862457, -0.005140639841556549, -0.017333727329969406, 0.0035752449184656143, -0.024824094027280807, -0.01698077842593193, -0.010823776014149189, 0.009640742093324661, -0.02441885694861412, 0.017386017367243767, -0.024667227640748024, -0.0023889432195574045, 0.040523797273635864, 0.0045229787938296795, 0.01683698408305645, 0.003093207720667124, 0.023033203557133675, 0.005245217587798834, -0.04018392041325569, -0.01890239119529724, 0.016680117696523666, -0.0051994649693369865, 0.0010604816488921642, 0.0035458323545753956, -0.0001311304367845878, -0.0009787804447114468, 0.007098200730979443, 0.008261625654995441, -0.0010972472373396158, 0.02155604586005211, -0.01890239119529724, -0.018418719992041588, 0.01543826051056385, -0.007634160574525595, -0.01167346816509962, 0.016941562294960022, 0.016497107222676277, 0.01511145569384098, -0.0010261671850457788, -0.016575541347265244, -0.00035111093893647194, -0.03764791786670685, -0.006091642193496227, 0.004722329787909985, -0.00818319246172905, 0.0010081928921863437, -0.03673286363482475, -0.03333409130573273, 0.02193514071404934, -0.01108521968126297, 0.013340173289179802, -0.002650387119501829, -0.006496880203485489, 0.009346618317067623, -0.0017091892659664154, -0.047687359154224396, 0.0015662121586501598, 0.00016115563630592078, 0.04041922092437744, -0.02333386428654194, 0.0030294808093458414, -0.027477750554680824, 0.022105079144239426, -0.01024206355214119, 0.025699932128190994, 0.02231423370540142, 0.014026463031768799, 0.0013382657198235393, -0.022654110565781593, -0.004699453245848417, -0.008418492041528225, -0.018484080210328102, 0.044550035148859024, 0.011196332983672619, 0.0036046572495251894, 4.848455864703283e-05, 0.011130972765386105, -0.007104736752808094, -0.002508227014914155, 0.004241926595568657, -0.009346618317067623, -0.007947893813252449, 0.02576529234647751, 0.007692985702306032, -0.0050001139752566814, -0.026157459244132042, 0.011614643968641758, 0.02721630595624447, 0.021948212757706642, -0.016209520399570465, -0.012941471301019192, -0.02104623056948185, 0.008117832243442535, -0.020941654220223427, 0.00468964921310544, -0.021778274327516556, -0.0019297825638204813, 0.016902346163988113, 0.02558228187263012, 0.01366044208407402, -0.005771373398602009, -0.008039399050176144, 0.014771577902138233, 0.016954634338617325, 0.006565508898347616, 0.00545110460370779, -0.01749059371650219, 0.025046322494745255, 0.01870630867779255, 0.019765155389904976, -0.022706398740410805, 0.006326941307634115, 0.015582053922116756, -0.007666841149330139, -0.04334739223122597, 0.033229514956474304, -0.0030458210967481136, 0.02343844249844551, -0.010921817272901535, 0.019203051924705505, -0.006405374500900507, -0.027294740080833435, -0.015477476641535759, -0.015019949525594711, -0.004241926595568657, 0.008856411091983318, -0.009045957587659359, -0.037674061954021454, 0.011372808367013931, 0.01372580323368311, 0.03498118743300438, 0.015516693703830242, 0.03158241882920265, 0.037961650639772415, 0.016810839995741844, 0.005238681565970182, -0.617425799369812, -0.018980825319886208, -0.007320428267121315, 0.0017304315697401762, -0.0003694937040563673, 0.02356916479766369, 0.014575495384633541, 0.015843497589230537, -0.001526995562016964, 0.0122813256457448, -0.02732088416814804, 0.00023734199930913746, -0.020745569840073586, -0.017189934849739075, 0.019386062398552895, -0.02483716607093811, -0.020314188674092293, -0.014523206278681755, -0.016614757478237152, 0.019216123968362808, -0.01567355915904045, -0.006552436854690313, -0.03623611852526665, -0.009862969629466534, 0.011758437380194664, 0.005196196958422661, 0.01089567318558693, -0.031268686056137085, -0.01810498721897602, 0.03584395349025726, -0.02713787369430065, 0.01758209988474846, 0.025882942602038383, 0.0019003701163455844, 0.036837439984083176, -0.019961239770054817, -0.04980505630373955, 0.008163584396243095, 0.013281348161399364, 0.04980505630373955, -0.0036994307301938534, -0.03824923560023308, -0.004003359004855156, -0.022065861150622368, -0.0014183329185470939, -0.0018415452213957906, 0.009823753498494625, -0.015660487115383148, -0.011934912763535976, -0.00019853393314406276, 0.009542700834572315, -0.016758551821112633, 0.022510316222906113, -0.008444637060165405, 0.0308765210211277, 0.005833466071635485, 0.018640946596860886, -0.02213122323155403, 0.020706353709101677, -0.0019559268839657307, -0.027477750554680824, 0.00681714853271842, -0.0161441583186388, -0.025516921654343605, -0.04528207704424858, 0.03445830196142197, -0.012902254238724709, -0.01964750699698925, 0.0048857321962714195, -0.013255204074084759, 0.012843430042266846, -0.00802632700651884, 0.0009264916880056262, -0.011771510355174541, 0.010000227950513363, 0.03848453611135483, 0.005882486701011658, -0.006732179317623377, -0.012150603346526623, -0.00186768954154104, 0.009372762404382229, 0.019425278529524803, 0.00918975193053484, -0.037961650639772415, 0.005039330571889877, -0.005444568581879139, 0.0013701292918995023, -0.02721630595624447, 0.009313937276601791, 0.013908813707530499, 0.006421715021133423, 0.013647370040416718, -0.0077648828737437725, -0.03247132897377014, -0.003790935967117548, 0.03035363182425499, -0.0005277898162603378, -0.00035580876283347607, 0.009699567221105099, 0.014327123761177063, -0.012804212979972363, 0.01160157099366188, -0.009876041673123837, -0.005330186802893877, 0.03610539808869362, -0.018039627000689507, -0.050354089587926865, 0.006039353087544441, 0.03053664229810238, -0.004176565911620855, 0.0056504555977880955, 0.02015732228755951, -0.024261990562081337, 0.004081792198121548, 0.008085151202976704, -0.034118425101041794, -0.0013701292918995023, 0.0014755238080397248, 0.028366658836603165, -0.005898827221244574, 0.027347028255462646, -0.0012884280877187848, 0.0006499331211671233, -0.003513152012601495, -0.010601548478007317, 0.006340013816952705, 0.01777818240225315, -0.00027431180933490396, 0.00017667886277195066, -0.0062256320379674435, -0.004379184916615486, -0.0071635618805885315, 0.0269025731831789, -0.0005171686643734574, -0.0011438168585300446, 0.007875996641814709, 0.011078683659434319, -0.01345128659158945, 0.0006409459747374058, 0.00675832387059927, -0.022288089618086815, -0.0015490548685193062, 0.023137781769037247, -0.025987520813941956, 0.009882577694952488, -0.01870630867779255, -0.026366613805294037, -0.008013254031538963, -0.005941311828792095, 0.015451332554221153, 0.015843497589230537, -0.024575723335146904, -0.008496925234794617, 0.03100724145770073, 0.0024101855233311653, 0.0029150990303605795, -0.002604634501039982, -0.013503575697541237, -0.005323650781065226, -0.00494455685839057, -0.005238681565970182, 0.009764928370714188, -0.02844509296119213, -0.004856319632381201, -0.02169984020292759, -0.0071897064335644245, 0.022157367318868637, 0.006987087428569794, -0.022889411076903343, -0.02488945610821247, 0.02207893505692482, 0.009228968061506748, -0.0008047568844631314, -0.00839888397604227, 0.025595353916287422, 0.0012916960986331105, -0.008647255599498749, 0.013372853398323059, -0.029150990769267082, 0.0005502576241269708, 0.011477385647594929, 0.0025033249985426664, 0.008666863664984703, -0.010797631926834583, 0.015791209414601326, 0.02240573987364769, 0.032575905323028564, -0.000866849790327251, -0.015738921239972115, 0.00019230421457905322, -0.010091733187437057, 0.0113401273265481, 0.012307469733059406, 0.002098086988553405, 0.02193514071404934, 0.01979129947721958, 0.014483990147709846, -0.0004853051796089858, 0.004634092561900616, 0.01772589422762394, 0.052968528121709824, 0.0040719881653785706, -0.010150558315217495, -0.005983796436339617, 0.02258875034749508, -0.023216215893626213, 0.003562172641977668, -0.006094910204410553, 0.0058236620388925076, 0.004830175545066595, 0.01894160732626915, -0.042589206248521805, -0.013124481774866581, -0.018837030977010727, 0.036183830350637436, 0.00991525873541832, -0.014366339892148972, 0.013385925441980362, -0.027843771502375603, 0.012130995281040668, -0.002021287800744176, -0.0038595651276409626, 0.022575678303837776, -0.05038023367524147, -0.025804508477449417, 0.024026690050959587, -0.011202869936823845, 0.018627874553203583, 0.013738875277340412, -0.020078888162970543, -0.015699703246355057, -0.006058961618691683, 0.004065452143549919, 0.007647233083844185, 0.011320519261062145, -0.021033158525824547, 0.020889364182949066, -0.03971332311630249, 0.03947802260518074, -0.001923246425576508, -0.003214125521481037, -0.017895832657814026, 0.008248553611338139, -0.023843679577112198, 0.012895718216896057, 0.016026508063077927, 0.061909906566143036, 0.012222500517964363, -0.02343844249844551, -0.0032026872504502535, -0.030850375071167946, -0.0031160840298980474, -0.0065622408874332905, 0.025882942602038383, -0.013137553818523884, -0.039870187640190125, 0.0018268389394506812, 0.020549487322568893, 0.008104760199785233, 0.02891569212079048, 0.018954679369926453, 0.021399179473519325, 0.013974174857139587, 0.006692962720990181, -0.018457936123013496, -0.020379548892378807, -0.00045385019620880485, -0.010745342820882797, -0.00956230890005827, -0.022614894434809685, -0.016118014231324196, 0.0045491233468055725, 0.020824003964662552, -0.025320837274193764, -0.00468964921310544, -0.01017016638070345, 0.018170349299907684, 0.011065611615777016, 0.017804326489567757, 0.00603281706571579, -0.008902163244783878, 0.002385675208643079, 0.00879104994237423, 0.022980915382504463, 0.011967592872679234, 0.015882713720202446, -0.016287952661514282, 0.019516784697771072, 0.016993850469589233, -0.004176565911620855, 0.01323559507727623, 0.011202869936823845, 0.0028775164391845465, -0.014026463031768799, -0.007601480465382338, -0.007627624552696943, 0.05641958490014076, -0.024013618007302284, 0.0010343373287469149, -0.015935003757476807, 0.009699567221105099, -0.01637945882976055, -0.030693508684635162, -0.006575312931090593, 0.044079434126615524, 0.0006948687369003892, -0.017281439155340195, 0.012928399257361889, 0.01955600082874298, -0.022484172135591507, -0.016196446493268013, -0.008869483135640621, -0.013856524601578712, -0.003233733819797635, -0.012836894020438194, -0.004143885336816311, 0.001633207080885768, -0.0030686974059790373, 0.03587009757757187, 0.011046003550291061, -0.010451218113303185, -0.015425187535583973, -0.011032930575311184, 0.002317046280950308, 0.01580428145825863, 0.01293493527919054, 0.008764905855059624, 0.01410489622503519, -0.02282404899597168, 0.00229743798263371, -0.04844554886221886, -0.023425370454788208, -0.004271339159458876, -0.004251730628311634, 0.004973969422280788, -0.0034870074596256018, 0.007889068685472012, 0.00036479588015936315, 0.01543826051056385, -0.009529628790915012, -0.009614598006010056, -0.009974082931876183, 0.013791163451969624, -0.042876794934272766, 0.016261808574199677, -0.0038040082436054945, -0.0017304315697401762, 0.002241881098598242, 0.01431405171751976, 0.00708512868732214, 0.012130995281040668, 0.01935991831123829, -0.003464131150394678, -0.025830654427409172, 0.0011340127093717456, -0.0019461227348074317, 0.0005825295811519027, 0.025137826800346375, 0.0029232692904770374, 0.04360883682966232, -0.017137644812464714, 0.05317768082022667, 0.007202778477221727, 0.014078752137720585, -0.0031634706538170576, 0.030484354123473167, 0.013078729622066021, -0.002803985495120287, 0.022510316222906113, -0.012568913400173187, -0.005542609840631485, 0.010961034335196018, -0.009686495177447796, -0.03437986969947815, 0.004807299003005028, 0.009405442513525486, -0.009470803663134575, -0.0037974719889461994, -0.018065771088004112, 0.024967888370156288, -0.0159088596701622, 0.012647346593439579, 0.01108521968126297, -0.005274630151689053, -0.014078752137720585, -0.006552436854690313, 0.0038366885855793953, -0.008974060416221619, -0.019438350573182106, -0.008170120418071747, -0.039504166692495346, 0.004134081304073334, -0.008784513920545578, -0.021725984290242195, 0.022275017574429512, -0.0226802546530962, -0.030562788248062134, 0.01188262365758419, 0.016222592443227768, 0.0015939906006678939, 0.018601730465888977, -0.0003976806183345616, -0.01908540166914463, 0.015582053922116756, -0.012497016228735447, -0.007202778477221727, 0.005885755177587271, -0.02356916479766369, 0.009313937276601791, -0.0011846674606204033, 0.0057746414095163345, -4.30207910540048e-05, -0.018654020503163338, 0.012340150773525238, -0.004679845180362463, 0.009464267641305923, 0.020222682505846024, 0.0039706784300506115, 0.01781739853322506, 0.020837076008319855, -0.0019069061381742358, 0.009163607843220234, 0.005892291199415922, -0.01973901130259037, -0.01010480523109436, -0.010438146069645882, -0.029150990769267082, 0.0077648828737437725, -0.004274607170373201, -0.02188285067677498, 0.010889137163758278, 0.021085446700453758, -0.017948120832443237, 0.010699589736759663, 0.018693236634135246, 0.004738669842481613, 0.013804235495626926, -0.011967592872679234, 0.014954589307308197, 0.007869460619986057, 0.012287861667573452, 0.0035817809402942657, 0.017647460103034973, 0.0018203029176220298, 0.00945119559764862, -0.027242450043559074, 0.05218419432640076, 0.037726350128650665, -0.019843589514493942, 0.01339899841696024, -0.03736032918095589, -0.013895741663873196, -0.018627874553203583, 0.001552322879433632, 0.008098223246634007, 0.018444864079356194, 0.00669949920848012, -0.006804076489061117, -0.028654247522354126, -0.01735987327992916, -0.005300774239003658, 0.02745160646736622, -0.033464815467596054, -0.03526877611875534, 0.00649034371599555, -0.01167346816509962, -0.0029249032959342003, -0.004601411987096071, -0.007032840047031641, -0.021072374656796455, -0.00905249360948801, -0.016209520399570465, 0.0003268048167228699, 0.009745320305228233, 0.010261671617627144, -0.0027435265947133303, -0.04598797485232353, -0.009248577058315277, 0.014261762611567974, -0.02213122323155403, 0.0019461227348074317, -0.021621407940983772, 0.015869641676545143, 0.009353154338896275, 0.015738921239972115, 0.0016814108239486814, -0.005702744238078594, -0.00930740125477314, -0.007366180885583162, -0.004683113191276789, -0.0259613748639822, 0.004457617644220591, -0.0011944716097787023, 0.0027059440035372972, 0.018274925649166107, 0.008660327643156052, 0.0047844224609434605, -0.011849942617118359, 0.03383083641529083, 0.035111911594867706, -0.009411979466676712, 0.011261694133281708, 0.0029902642127126455, -0.030615076422691345, 0.0028644443955272436, -0.006784468423575163, 0.012052562087774277, 0.010862992145121098, -0.012444728054106236, -0.02398747391998768, -0.022980915382504463, 0.0010972472373396158, 0.01475850585848093, 0.009549236856400967, 0.010693053714931011, -0.009745320305228233, 0.03325565904378891, -0.007719130255281925, -0.0015515058767050505, -0.015935003757476807, 0.011144044809043407, -0.009967546910047531, 0.035948529839515686, 0.004924948792904615, 0.014039535075426102, 0.028967980295419693, 0.006908654235303402, 0.0006119420286267996, 0.007947893813252449, 0.04002705588936806, 0.008457709103822708, -0.03294192627072334, 0.00508835120126605, -0.04088982194662094, -0.016157230362296104, -0.04232776165008545, 0.009438123553991318, 0.019294556230306625, -0.02558228187263012, -0.008529606275260448, 0.009993691928684711, 0.02253646031022072, -0.008941380307078362, -0.017895832657814026, 0.01103946752846241, -0.009202823974192142, 0.0500665009021759, 0.023412298411130905, 0.010137485340237617, 0.017189934849739075, 0.01810498721897602, -0.003513152012601495, -0.032445184886455536, -0.005562218371778727, 0.012189820408821106, 0.019006969407200813, 0.03466745465993881, 0.00649034371599555, -0.04998806491494179, -0.001584186451509595, 0.0018464472377672791, -0.00429094722494483, -0.023360008373856544, 0.03573937714099884, 0.015503620728850365, 0.0014616346452385187, -0.008666863664984703, 0.01410489622503519, -0.03147784247994423, 0.017948120832443237, 0.01318984292447567, 0.00031230287277139723, -0.0021422056015580893, 0.005418424028903246, 0.020967798307538033, 0.0042615351267158985, -0.03419685736298561, 0.007150489836931229, 0.0003155709127895534, 0.018745524808764458, 0.009575381875038147, -0.01734679937362671, -0.031164107844233513, 0.01127476617693901, -0.010706125758588314, 0.04360883682966232, -0.014693144708871841, -0.003562172641977668, 0.004895536229014397, 0.027713049203157425, 0.011144044809043407, -0.016719335690140724, 0.0033187030348926783, 0.034955043345689774, -0.0025507116224616766, -0.009000204503536224, -0.02329464815557003, 0.015202960930764675, 0.01555590983480215, -0.00033252392313443124, 0.005928239785134792, -0.01311794575303793, -0.012248644605278969, -0.018863175064325333, 0.016392530873417854, -0.00027206502272747457, 0.008287770673632622, -0.0016054287552833557, -0.008627647534012794, -0.0006556521984748542, -0.03644527494907379, -0.017529811710119247, 0.014000318944454193, -0.04091596603393555, -0.020314188674092293, -0.017738966271281242, -0.05777909234166145, 0.021765202283859253, 0.0038334205746650696, 0.02081093192100525, 0.01945142261683941, 0.0430336594581604, -0.027007151395082474, -0.008268162608146667, 0.02721630595624447, 0.017882760614156723, 0.004833443555980921, 0.003217393532395363, -0.016248736530542374, -0.029830744490027428, 0.019137689843773842, 0.01068651769310236, -0.010601548478007317, -0.05221033841371536, 0.022980915382504463, 0.000468964921310544, -0.010836848057806492, 0.006532828323543072, 0.00905249360948801, 0.021399179473519325, 0.012895718216896057, 0.002673263428732753, -0.010510043241083622, -1.0595625099085737e-05, -0.01028781570494175, -0.01351664774119854, 0.01141202449798584, -0.00455892737954855, 0.02015732228755951, 0.009242040105164051, 0.014144113287329674, -0.009679959155619144, -0.013751947320997715, -0.04889000207185745, 0.015974219888448715, -0.024824094027280807, -0.01992202177643776, -0.019987383857369423, -0.01396110188215971, -0.0033856979571282864, -0.031320974230766296, -0.02010503225028515, 0.00394126633182168, -0.002803985495120287, 0.012961079366505146, 0.019072329625487328, 0.0024167217779904604, 0.00802632700651884, -0.015006877481937408, -0.015242177061736584, -0.0046471646055579185, -0.03194843977689743, -0.02180441841483116, -0.024732589721679688, -0.03913814574480057, 0.04308594763278961, -0.008157048374414444, -0.02002659998834133, -0.014366339892148972, -0.004277875181287527, -0.02558228187263012, 0.0092355040833354, 0.005326918791979551, 0.015019949525594711, 0.012490480206906796, 0.014667000621557236, 0.00397721491754055, 0.013215987011790276, -0.004457617644220591, -0.010307424701750278, -0.01632716879248619, 0.004003359004855156, 0.008032863028347492, 0.0059118992649018764, -0.004768082406371832, -0.0036340695805847645, 0.006294261198490858, -0.025098610669374466, 0.004588339943438768, -0.012124459259212017, 0.007862924598157406, 0.01475850585848093, 0.0062746526673436165, -0.016118014231324196, -0.0007120260270312428, -0.015359827317297459, 0.010045980103313923, 0.0019281484419479966, -0.005085083190351725, -0.03615768626332283, 0.010516579262912273, 0.03584395349025726, -0.002250051125884056, -0.009974082931876183, -0.01220942847430706, 0.0027418925892561674, -0.01351664774119854, 0.020274970680475235, -0.007202778477221727, -0.009647278115153313, -0.00021385290892794728, -0.003483739448711276, 0.03728189319372177, -0.014797722920775414, -0.002679799683392048, 0.021974356845021248, -0.011235550045967102, -0.008699544705450535, -0.0085361422970891, 0.002709212014451623, -0.030615076422691345, 0.014091824181377888, 0.020562559366226196, 0.005810589995235205, -0.017791254445910454, 0.009163607843220234, -0.009137462824583054, -0.0034020382445305586, 0.008915235288441181, 0.014483990147709846, 0.04316437989473343, -0.027190161868929863, 0.01973901130259037, 0.01781739853322506, -0.03806622698903084, -0.016876202076673508, -0.00825508963316679, -0.016078798100352287, 0.001779452315531671, -0.03736032918095589, -0.0032222955487668514, -0.02881111390888691, 0.000175861845491454, 0.01024206355214119, -0.005869414657354355, -0.0071897064335644245, 0.009196287952363491, 0.013791163451969624, 0.007660305127501488, -0.008804121986031532, 0.23509031534194946, -0.020941654220223427, 0.0027418925892561674, 0.033700112253427505, 0.011438168585300446, -0.019725939258933067, 0.031320974230766296, 0.014274834655225277, 0.008549214340746403, -0.0020457981154322624, -0.011046003550291061, -0.003513152012601495, 0.015778137370944023, 0.0020539683755487204, 0.003473935415968299, -0.023843679577112198, -0.027634616941213608, -0.01861480250954628, -0.04013163223862648, -0.0035817809402942657, 0.02792220376431942, -0.003282754449173808, 0.007568799890577793, -0.02558228187263012, 0.019908949732780457, 0.023020131513476372, -0.0018905659671872854, 0.01885010302066803, 0.041883308440446854, 0.016026508063077927, -0.024288134649395943, 0.03142555058002472, -0.008242017589509487, -0.013791163451969624, -0.02109852060675621, -0.023843679577112198, 0.03427528962492943, 0.003359553636983037, 0.0245495792478323, 0.013791163451969624, -0.02146454155445099, 0.003140594344586134, -0.01678469590842724, 0.00600994098931551, -0.030196765437722206, 0.00010896898311330006, 0.0010988812427967787, -0.015072238631546497, 0.004745206329971552, 0.021529901772737503, 0.006075301673263311, -0.03333409130573273, 0.037072740495204926, 0.032262172549963, -0.002709212014451623, -0.01603958010673523, 0.0341445691883564, -0.0044739581644535065, -0.01431405171751976, 0.03160856291651726, -0.01562127098441124, 0.021059302613139153, -0.019255340099334717, 0.021739056333899498, -0.006264848634600639, -0.018261853605508804, -0.00721585052087903, -0.0019363185856491327, -0.0289941243827343, -0.013608152978122234, 0.013274812139570713, -0.0076406970620155334, -0.013882668688893318, 0.014418628998100758, -0.027399316430091858, -0.03492889925837517, 0.04760892689228058, 0.026170531287789345, 0.021359963342547417, 0.05511236563324928, -0.00106374965980649, -0.013176770880818367, -0.003454327117651701, -0.0012769898166880012, 0.011006786487996578, -0.013856524601578712, 0.004663505125790834, -0.008568822406232357, 0.001355423009954393, -0.008568822406232357, 0.016549397259950638, 0.007601480465382338, 0.0019199784146621823, -0.024902528151869774, 0.01155581884086132, 0.002439598087221384, -0.007320428267121315, 0.013242132030427456, 0.007562263868749142, -0.00021017635299358517, -0.018444864079356194, 0.046563152223825455, 0.03469359874725342, 0.00499357795342803, -0.01585656963288784, -0.002086648717522621, 0.002173252170905471, 0.00266019138507545, 0.0038791734259575605, -0.00635962188243866, -0.016497107222676277, -0.04719061776995659, 0.010157094337046146, -0.000663005281239748, -0.010928353294730186, 0.0269025731831789, -0.017974264919757843, -0.011764973402023315, -0.012477408163249493, -0.0032974607311189175, 0.02460186742246151, -0.024379640817642212, -0.003990286961197853, -0.021948212757706642, -0.020183466374874115, 0.0024265258107334375, -0.014719289727509022, -0.005150443874299526, 0.0010114609031006694, -0.058301981538534164, 0.02502017840743065, 0.005866146646440029, -0.003866101149469614, -0.019399134442210197, 0.006072033662348986, 0.0041863699443638325, -0.005121031776070595, 0.016104942187666893, -0.0005747679970227182, -0.014575495384633541, 0.0009501850581727922, 0.0010670177871361375, 0.003052357118576765, -0.0035654406528919935, -0.0058236620388925076, -0.022392665967345238, 0.026458118110895157, 0.0026471191085875034, -0.014732361771166325, -8.828836871543899e-05, -0.04151728376746178, 0.00086113071301952, 0.011418560519814491, 0.00748383067548275, 0.024719517678022385, -0.004421669524163008, -0.007045912090688944, -0.04873313754796982, 0.006804076489061117, 0.005176588427275419, -0.01122901402413845, 0.01195452082902193, 0.01232054177671671, -0.01955600082874298, -0.0161441583186388, -0.015216032974421978, -0.16491879522800446, -0.01852329820394516, 0.022013572975993156, -0.03142555058002472, 0.0407068096101284, 0.020824003964662552, -0.0025719539262354374, -0.015163743868470192, -0.003379161935299635, 0.013287884183228016, 0.009137462824583054, -0.005585094448179007, -0.02507246658205986, 0.008130904287099838, -0.012483944185078144, 0.0016577175119891763, 9.610104461899027e-05, -0.007830243557691574, 0.03479817882180214, 0.011183260940015316, 0.06677275896072388, -0.01701999455690384, -0.0006401289720088243, -0.004637360572814941, 0.003330141305923462, 0.007268139161169529, -0.0224580280482769, 4.0876133425626904e-05, -0.017752038314938545, -0.02333386428654194, 0.005081815179437399, 0.0027435265947133303, 0.011248622089624405, -0.004375916440039873, 0.010013299994170666, -0.01857558637857437, 0.005026258062571287, 0.0017745501827448606, -0.0008362118387594819, 0.02988303266465664, 0.001147084985859692, 0.006862901616841555, 0.0247848778963089, 0.0028595421463251114, 0.0021569118835031986, 0.026170531287789345, 0.0049118767492473125, -0.004156957380473614, 0.01964750699698925, 0.0012859769631177187, 0.01003290805965662, -0.020091960206627846, -0.03652370721101761, -0.010477363131940365, 0.022771760821342468, 0.01377809140831232, 0.004656968638300896, 0.010098269209265709, -0.01805269904434681, -0.010451218113303185, 0.011523137800395489, -0.02193514071404934, -0.015961147844791412, -0.010327032767236233, -0.040340788662433624, 0.013791163451969624, -0.020745569840073586, 0.003741915337741375, -0.01511145569384098, 0.0019755351822823286, 0.014653928577899933, -0.028654247522354126, -0.02713787369430065, -0.022627966478466988, 0.022000500932335854, -0.021542973816394806, -0.008784513920545578, 0.026275107637047768, 0.028706535696983337, 0.01206563413143158, -0.006804076489061117, 0.0205756314098835, 0.022235799580812454, -0.006960942875593901, 0.011503529734909534, 0.030327487736940384, -0.017386017367243767, -0.004640628583729267, -0.009934866800904274, 0.0015204594237729907, 0.037203460931777954, -0.0048105670139193535, -0.02988303266465664, -0.012117923237383366, 0.021765202283859253, -0.0025719539262354374, -0.002653655130416155, -0.010771486908197403, -0.032628193497657776, -0.011000250466167927, 0.020405692979693413, -0.007745274342596531, -0.03343867138028145, 0.019255340099334717, 0.050406377762556076, 0.017621316015720367, -0.007843315601348877, 0.02474566176533699, 0.027399316430091858, 0.0025229332968592644, -0.027059439569711685, 0.013026440516114235, 0.008143976330757141, -0.005483785178512335, 0.0004142251273151487, 0.022797904908657074, -0.004702721256762743, -0.01745137758553028, 0.004562195390462875, 0.005728888791054487, -0.027111727744340897, -0.017268367111682892, 0.016301024705171585, 0.009947938844561577, -0.01311794575303793, -0.01959521695971489, -0.0318177193403244, -0.01529446616768837, 0.009091710671782494, 0.028732679784297943, -0.004343236330896616, 0.0292294230312109, -0.0056733316741883755, 0.0015874544624239206, 0.020745569840073586, 0.02558228187263012, -0.001330095692537725, -0.016078798100352287, 0.014980733394622803, 0.0019444887293502688, -0.0044478136114776134, 0.013529719784855843, 0.014117968268692493, -0.019569072872400284, 0.005313846282660961, 0.011510065756738186, 0.020745569840073586, -0.004709257744252682, -0.01926841214299202, -0.02334693633019924, -0.006310601253062487, -0.0091178547590971, -0.019869733601808548, 0.01010480523109436, 0.026641130447387695, 0.002184690209105611, 0.005215805023908615, 0.005382475443184376, -0.003513152012601495, 0.008490389212965965, 0.01200027298182249, -0.008346594870090485, -0.02329464815557003, -0.021673696115612984, 0.029020268470048904, -0.00124512636102736, 0.001387286465615034, -0.005532805807888508, -0.0003795021038968116, -0.0005706829251721501, -0.02956930175423622, 0.01428790669888258, -0.003722307039424777, -0.0010122779058292508, -0.009817217476665974, -0.024797949939966202, -0.02100701443850994, -0.003503347747027874, -0.03563479706645012, -0.007013231515884399, 0.014117968268692493, 0.013830380514264107, 0.002238613087683916, 0.01428790669888258, -0.034876611083745956, 0.016667045652866364, -0.018131131306290627, 0.008228945545852184, -0.016484035179018974, 0.03798779472708702, 0.004287679214030504, 0.005225609056651592, -0.007104736752808094, 0.009941402822732925, -0.0007639062823727727, -0.002067040652036667, 0.0005702744238078594, 0.018314141780138016, -0.0458311103284359, 0.017843544483184814, -0.032392892986536026, -0.0033268730621784925, 0.0016830448294058442, 0.0032419038470834494, 0.016013436019420624, -0.009346618317067623, -0.025242405012249947, -0.01992202177643776, 0.004705989733338356, -0.009313937276601791, 0.01969979517161846, 0.023412298411130905, -0.00010753921378636733, 0.011300911195576191, 0.002421623794361949, -0.06285110116004944, -0.003044186858460307, 0.01692849025130272, 0.020235754549503326, -0.001388920471072197, -0.012398974969983101, -0.013366317376494408, 0.00017596397083252668, -0.0008407054119743407, 0.0077387383207678795, 0.043530404567718506, -0.015974219888448715, -0.0005139005952514708, -0.08721767365932465, 0.013065656647086143, -0.01651017926633358, -0.012215964496135712, 0.011562354862689972, 0.02160833589732647, 0.014902300201356411, 0.01405260805040598, -0.004415133036673069, 0.007294283714145422, -0.023843679577112198, 0.02975231222808361, 0.00430401973426342, -0.0085361422970891, -0.0074511501006782055, 0.008242017589509487, 0.024497289210557938, 0.02142532542347908, 0.0030262127984315157, 0.010934889316558838, -0.0170722845941782, -0.010379320941865444, -0.007313892245292664, 0.02207893505692482, -0.03492889925837517, 0.027582326903939247, -0.011464313603937626, 0.028183648362755775, -0.00867993663996458, -0.010130949318408966, -0.0015245445538312197, 0.004604679998010397, -0.01945142261683941, 0.0075426553376019, -0.01428790669888258, -0.02389596961438656, 0.0024428660981357098, -0.004637360572814941, 0.0048595876432955265, 0.03153013065457344, -0.01932070218026638, 0.001544969854876399, 0.009457731619477272, -0.0022827317006886005, -0.010111341252923012, -0.0055752904154360294, 0.006895581725984812, 0.01300029642879963, 0.01749059371650219, 0.02732088416814804, 0.02844509296119213, 0.0022843657061457634, 0.005398815963417292, -0.004601411987096071, -0.004794226959347725, -0.03858911246061325, -0.019804373383522034, 0.007974037900567055, -0.0030311148148030043, -0.002058870391920209, 0.04813181608915329, -0.003908585757017136, 0.014274834655225277, 0.012215964496135712, 0.004219050519168377, -0.007660305127501488, -0.015529765747487545, -0.007608016487210989, 0.019490640610456467, -0.0203403327614069, -0.04224932938814163, 0.012686563655734062, 0.0013766653137281537, 0.0030311148148030043, -0.003398770233616233, 0.0054347640834748745, -0.024261990562081337, -0.006771395914256573, -0.036785151809453964, -0.002161813899874687, 0.021542973816394806, 0.023516874760389328, -0.03545178845524788, 0.009320473298430443, 0.03377854824066162, 0.005562218371778727, -0.02773919329047203, 0.007523047272115946, 0.0011805824469774961, -0.005490321200340986, -0.03848453611135483, -0.00425499863922596, 0.02006581611931324, 0.0149676613509655, 0.018823958933353424, 0.01725529506802559, 0.006474003661423922, 0.00761455250903964, 0.025203188881278038, -0.019046185538172722, -0.0022859997116029263, -0.01763438805937767, -0.020824003964662552, -0.01300029642879963, -0.017843544483184814, -0.002710846019908786, 0.001741869724355638, -0.03445830196142197, -0.003290924709290266, -0.02844509296119213, -0.026301251724362373, 0.004879196174442768, -0.006408642511814833, 0.01754288375377655, -0.015098382718861103, 0.0034249145537614822, 0.007509974762797356, -0.00926164910197258, -0.0301706213504076, 0.018823958933353424, 0.016667045652866364, 0.0318177193403244, 0.018118059262633324, -0.016536325216293335, 0.030562788248062134, -0.01656246930360794, 0.021163880825042725, -0.035896241664886475, 0.032575905323028564, -0.0149676613509655, -0.012961079366505146, 0.014667000621557236, -0.02376524731516838, -0.014274834655225277, -0.004163493402302265, 0.019490640610456467, 0.002472278429195285, -0.014039535075426102, -0.0025490776170045137, 0.06441976875066757, 0.034876611083745956, -0.0076406970620155334, 1.9812543541775085e-05, 0.00397721491754055, 0.009085174649953842, 0.015176815912127495, -0.0047354018315672874, -0.008562286384403706, -0.010091733187437057, 0.010451218113303185, -0.007235459052026272, -0.0161310862749815, 0.0010629326570779085, -0.026654202491044998, 0.002821959787979722, -0.01894160732626915, 0.006313869263976812, -0.02460186742246151, 0.013425142504274845, 0.04920373484492302, 0.012817285023629665, 0.0016470963601022959, 0.029830744490027428, -0.013248668052256107, -0.003053991124033928, 0.03657599538564682, -0.0016618025256320834, -0.0030556251294910908, -0.004153689369559288, 0.008457709103822708, -0.00024530786322429776, -0.036131542176008224, -0.02095472626388073, -0.00681714853271842, 0.008987132459878922, -0.0056733316741883755, -0.006405374500900507, 0.036968160420656204, 0.006764859892427921, 0.023608380928635597, -0.001205909764394164, -0.0037680596578866243, -0.021817490458488464, -0.01475850585848093, 0.0014436603523790836, -0.026654202491044998, -0.0010408733505755663, 0.008425028063356876], "e831b8c2-60e6-405d-87f7-121747e5b6d7": [0.009409293532371521, -0.015161586925387383, 0.013300551101565361, -0.010847367346286774, -0.015187615528702736, 0.009012360125780106, -0.03456581383943558, -0.014979387633502483, 0.014250590465962887, -0.01930011436343193, 0.002641890197992325, 0.006019085180014372, -0.03422744572162628, 0.0052187093533575535, -0.023256443440914154, -0.0032682004384696484, 0.013469736091792583, -0.01794663444161415, 0.009259629994630814, -0.016827410086989403, 0.008869202807545662, -0.005804350133985281, 0.0014657285064458847, -0.03768923133611679, -0.04297301173210144, 0.02431059628725052, 0.008329112082719803, -0.0025133746676146984, 0.011810421012341976, -0.004532208200544119, 0.015512971207499504, -0.003552886890247464, -0.02065359614789486, -0.00015210390847641975, 0.007593807764351368, -0.0070081669837236404, -0.003914032131433487, -0.019482314586639404, -0.007743471302092075, 0.0073660584166646, 0.02188994735479355, 0.009090445004403591, 0.004880339372903109, -0.005130863282829523, 0.0052805268205702305, 0.02315232902765274, -0.031390342861413956, 0.017426064237952232, 0.006207791622728109, 0.020952923223376274, -0.014758145436644554, 0.0020432353485375643, -0.04109896346926689, -0.01668425276875496, -0.014667046256363392, -0.00037334594526328146, -0.03245750814676285, 0.01612464152276516, 0.0060743954963982105, -0.010125077329576015, -0.0022693576756864786, 0.025768190622329712, -0.024180453270673752, -0.004219866823405027, -0.012103240936994553, 0.012526203878223896, 0.0012192714493721724, 0.021161150187253952, -0.008973317220807076, -0.0032551861368119717, 0.04289492592215538, 0.003009542590007186, 0.010268233716487885, 0.004281684290617704, 0.02876146510243416, -0.0027150954119861126, -0.038704343140125275, -0.01736099272966385, 0.006455061957240105, -0.009051402099430561, -0.0067674038000404835, -0.013020744547247887, 0.008016770705580711, -0.0007625530124641955, -0.005212202202528715, -0.0012314722407609224, -0.003744846908375621, 0.01930011436343193, -0.03638780862092972, -0.009129487909376621, 0.0065949647687375546, -0.0029233230743557215, 0.02168172039091587, 0.02001589722931385, 0.0032275309786200523, 0.009077430702745914, -0.0034748015459626913, 0.008960302919149399, -0.003439012449234724, -0.026470959186553955, -0.014289633370935917, 0.019365185871720314, -0.017556207254529, 0.006139466539025307, -0.030088918283581734, -0.027824440971016884, 0.02065359614789486, 0.006416019052267075, 0.013690978288650513, -0.0011013299226760864, -0.025768190622329712, 0.01664520986378193, 0.021746791899204254, -0.04921984672546387, -0.016580138355493546, -0.01104258093982935, 0.042244214564561844, -0.019117916002869606, 0.010997030884027481, -0.006022338755428791, 0.020523453131318092, -0.015604071319103241, 0.011270330287516117, 0.001882184180431068, 0.02779841236770153, 0.00923360139131546, -0.021356364712119102, 0.008316097781062126, -0.008446239866316319, -0.03487815707921982, 0.043831951916217804, 0.014367718249559402, 0.0025914600118994713, 0.002246582880616188, 0.012695388868451118, -0.002275864826515317, -0.010775788687169552, -0.008407197892665863, -0.017608264461159706, -0.009624028578400612, 0.038626257330179214, 0.007476679515093565, -0.002316534286364913, -0.01596846990287304, 0.011999127455055714, 0.026314789429306984, 0.012454625219106674, -0.019885756075382233, -0.015864355489611626, -0.013001223094761372, 0.003940060269087553, -0.01592942699790001, 0.012740938924252987, -0.0181158185005188, 0.014536903239786625, 0.014927330426871777, 0.03188488259911537, 0.016267796978354454, -0.0067934319376945496, 0.0009012359660118818, 0.008784610778093338, 0.023503713309764862, -0.004818521440029144, -0.0017927112057805061, -0.00541066937148571, 0.020705651491880417, 0.01930011436343193, 0.01672329567372799, -0.02239750325679779, 0.011452529579401016, 0.0054594725370407104, 0.0019033323042094707, -0.02951629087328911, 0.021057037636637688, 0.003666761564090848, 0.00011001098027918488, -0.023087257519364357, 0.006819460541009903, -0.018493231385946274, -0.005384640768170357, -0.010307276621460915, 0.0020351014100015163, -0.014133462682366371, 0.004109245724976063, -0.02561202086508274, -0.020159054547548294, 0.008348633535206318, 0.01767333410680294, 0.016463011503219604, 0.0075677791610360146, 0.01635889708995819, 0.03565901145339012, 0.007112280931323767, 0.010040484368801117, -0.6117733120918274, -0.03118211403489113, 0.004701393190771341, -0.003196622245013714, 0.012200848199427128, 0.03058345802128315, 0.01167377084493637, 0.030999913811683655, -0.004102738574147224, 0.02243654616177082, -0.008010263554751873, 0.01225290447473526, -0.025924362242221832, -0.012259411625564098, 0.007860600017011166, -0.03344659134745598, -0.018324047327041626, 0.004190584644675255, -0.0187014602124691, 0.01521364413201809, -0.022931087762117386, -0.0017520417459309101, -0.02863132394850254, 0.003621211741119623, 0.02049742452800274, -7.910216663731262e-05, -0.002648397348821163, -0.0434415265917778, -0.027225784957408905, 0.02967246249318123, -0.02363385632634163, 0.03722072020173073, 0.026757271960377693, -0.003897764254361391, 0.05476391315460205, -0.015265701338648796, -0.052213121205568314, -0.0058954497799277306, 0.016788367182016373, 0.051614467054605484, -0.02485719323158264, -0.02204611897468567, 0.006689317990094423, -0.005492008291184902, 0.00025032073608599603, 0.006728360895067453, 0.00544971227645874, -0.012064198032021523, 0.004538715351372957, 0.007340030279010534, 0.013196436688303947, -0.021304307505488396, 0.01993781141936779, -0.02450580894947052, 0.01316390186548233, -0.004990960005670786, 0.026106560602784157, -0.0294642336666584, 0.0012526203645393252, -0.01034631859511137, -0.025638047605752945, 0.030869772657752037, -0.010697703808546066, -0.03193693980574608, -0.04221818596124649, 0.026757271960377693, -0.026119574904441833, -0.035528868436813354, 0.01790759153664112, 0.007645864505320787, 0.013677963986992836, 0.002313280710950494, 0.012955673970282078, -0.026223689317703247, 0.017504150047898293, 0.04229627177119255, 0.022098176181316376, -0.013612892478704453, -0.01020966935902834, -0.0031901150941848755, -0.002158736577257514, 0.002770405961200595, 0.024336624890565872, -0.031598567962646484, 0.018818587064743042, 0.0010004695504903793, 0.005508276168256998, -0.013202943839132786, 0.015083502046763897, 0.0012583141215145588, 0.005989803001284599, 0.0120772123336792, 0.001521039055660367, -0.05903258174657822, 0.0012827158207073808, 0.035294611006975174, 0.004890099633485079, -0.023386584594845772, 0.011862477287650108, 0.001979790860787034, -0.01635889708995819, 0.014549917541444302, -0.008166434243321419, -0.013730021193623543, 0.04893353581428528, -0.0029395909514278173, -0.048282820731401443, -0.013378635980188847, 0.021837890148162842, -0.01419853325933218, 0.013547821901738644, 0.015669142827391624, -0.012545725330710411, 0.0017162526492029428, 0.022618744522333145, -0.024479780346155167, -0.0026923203840851784, 0.011231287382543087, 0.02605450339615345, -0.019091887399554253, 0.03539872542023659, 0.006917067337781191, 0.015187615528702736, -0.01356083620339632, -0.009728142991662025, 0.013144380412995815, 0.0031266706064343452, -0.002028594259172678, 0.006061381194740534, -0.016033541411161423, -0.002441796474158764, 0.003969342447817326, 0.012975195422768593, 0.0035040834918618202, 0.0019082126673310995, 0.017374007031321526, 0.017009608447551727, 0.0017471613828092813, 0.012753953225910664, 0.0008581263246014714, -0.025351734831929207, -0.011849463917315006, 0.01092545222491026, -0.02326945774257183, 0.008491789922118187, -0.03165062516927719, -0.0251044649630785, 0.009448336437344551, -0.011348415166139603, 0.014706088230013847, 0.01740003563463688, -0.006461569108068943, -0.008634946309030056, 0.03563298285007477, -0.020822780206799507, 0.0045257010497152805, 0.01032679807394743, -0.03232736513018608, -0.01647602580487728, -0.0015893637901172042, 0.0005018615629523993, 0.0008792744483798742, -0.031077999621629715, -0.004275177139788866, -0.012337497435510159, -0.004255655687302351, 0.018597345799207687, -0.006279369816184044, -0.016306839883327484, -0.05497214198112488, -0.0028907875530421734, 0.008133898489177227, 0.015838326886296272, 0.019560398533940315, -0.00202046032063663, -0.012962181121110916, -0.011127172969281673, 0.02578120492398739, -0.010840860195457935, 0.004681872203946114, 0.005316316150128841, 0.007606822066009045, 0.005069045815616846, -0.013912220485508442, 0.01114018727093935, 0.027538126334547997, 0.01264983881264925, -0.0058759283274412155, -0.021577605977654457, -0.013469736091792583, 0.016593152657151222, 0.009604507125914097, 0.010001441463828087, 0.016293825581669807, 0.0232304148375988, 0.020237140357494354, 0.021746791899204254, 0.004808760713785887, 0.006812953390181065, 0.014445804059505463, 0.04253052920103073, 0.02816281095147133, -0.0049584247171878815, -0.019274085760116577, 0.02673124521970749, -0.03066154383122921, -0.001290036365389824, -0.006282623391598463, 0.024688009172677994, 0.02343864180147648, -0.005667700432240963, -0.02628876082599163, 0.014029348269104958, -0.03563298285007477, 0.02653603069484234, 0.0051991879008710384, -0.02009398303925991, 0.002970499685034156, -0.010717225261032581, 0.010971002280712128, 0.009031880646944046, -0.009806227870285511, 0.024922264739871025, -0.03867831453680992, -0.015096515417098999, 0.004522447474300861, -0.00931168720126152, 0.018102804198861122, 0.025013364851474762, -0.018961744382977486, -0.012773474678397179, -0.004480151459574699, 0.02133033610880375, 0.002580072730779648, 0.026119574904441833, -0.019950825721025467, 0.027980610728263855, -0.035086385905742645, 0.0294642336666584, -0.005472486838698387, 0.015538999810814857, -0.006682811304926872, 0.008726046420633793, -0.0072879730723798275, 0.04310315474867821, 0.015330771915614605, 0.04586217552423477, 0.01121827308088541, -0.01699659414589405, -0.026275746524333954, -0.014927330426871777, -0.0016495545860379934, -0.022215303033590317, 0.03982356935739517, 0.0077044288627803326, -0.02109607867896557, 0.0022368221543729305, 0.003302362747490406, 0.027512099593877792, 0.02235846035182476, 0.022176261991262436, 0.034617871046066284, 0.0016479279147461057, 0.001939121400937438, -0.014406761154532433, -0.028943665325641632, -0.007418115623295307, -0.007476679515093565, -0.0033316449262201786, -0.026562059298157692, -0.007079745177179575, 0.008791117928922176, 0.021343350410461426, -0.020211111754179, -0.0018480217549949884, -0.00661123264580965, -0.0038522144313901663, 0.0116152074187994, 0.02442772500216961, 0.0002901768311858177, -0.021876933053135872, -0.0020139534026384354, 0.010333305224776268, 0.016345882788300514, 0.01362590678036213, 0.01779046282172203, -0.025273649021983147, 0.010450433008372784, 0.010957987979054451, -0.011647743172943592, 0.011777885258197784, 0.010307276621460915, -0.00292983022518456, -0.003354419721290469, -0.008862695656716824, 0.00558961508795619, 0.047319769859313965, -0.021109092980623245, -0.01684042438864708, -0.01930011436343193, 0.012877588160336018, -0.024037297815084457, -0.017504150047898293, -0.01954738423228264, 0.05627356469631195, -0.007795528508722782, -0.01945628598332405, -0.007710936013609171, 0.005036510061472654, -0.01850624568760395, -0.004935649689286947, -0.00909695215523243, -0.016541095450520515, -0.005313062574714422, -0.006363962311297655, -0.004548476077616215, 0.006923574488610029, 0.007112280931323767, 0.029177920892834663, 0.0040474277921020985, -0.006019085180014372, 0.00030542787862941623, -1.1527259630383924e-05, -0.0038392001297324896, -0.0028127022087574005, 0.011810421012341976, 0.018480217084288597, 0.03217119723558426, -0.009793213568627834, -0.021187178790569305, -0.045263517647981644, -0.005452965851873159, -0.004249148536473513, 0.0010549667058512568, -0.011908027343451977, -0.0058564068749547005, 0.003598436713218689, -0.009643550030887127, 0.02255367487668991, -0.00010624904825817794, -0.001963523216545582, -0.00913599506020546, 0.014211547560989857, -0.02133033610880375, 0.017269892618060112, -0.01620272547006607, 0.017087694257497787, -0.00815992709249258, 0.021148135885596275, -0.004929142538458109, 0.020445367321372032, 0.025390777736902237, 0.003042078111320734, -0.023503713309764862, 0.004906367510557175, 0.0027085882611572742, -0.0025654316414147615, 0.014510875567793846, 0.012038170360028744, 0.019560398533940315, -0.006923574488610029, 0.04823076352477074, 0.013834134675562382, 0.008680496364831924, -0.001979790860787034, 0.024180453270673752, 0.011563150212168694, 0.005765307229012251, 0.013430693186819553, -0.02351672761142254, -0.0003532145346980542, 0.025091450661420822, -0.00847877562046051, -0.02938614971935749, 0.01592942699790001, 0.016983579844236374, -0.044664863497018814, -0.009363744407892227, -0.019807670265436172, 0.013281029649078846, -0.012779981829226017, 0.011589178815484047, 0.0018561556935310364, -0.016098612919449806, -0.011120665818452835, -0.007320508826524019, -0.003959581721574068, 0.004008385352790356, -0.013730021193623543, -0.013235479593276978, -0.020393310114741325, 0.006982138380408287, -0.008368154987692833, -0.0035236049443483353, 0.026861386373639107, -0.03578915446996689, -0.026991529390215874, 0.020523453131318092, 0.00959149282425642, 0.005127609707415104, 0.013912220485508442, 0.011764870956540108, -0.02152554877102375, 0.016905494034290314, -0.016905494034290314, 0.005247991532087326, -0.002824089489877224, -0.03646589443087578, -0.0020123266149312258, 0.009702114388346672, 0.003191741881892085, 0.0011940563563257456, -0.023620842024683952, -0.003910778556019068, -0.008179448544979095, 0.012753953225910664, 0.03558092564344406, 0.0017406543483957648, 0.004652590025216341, 0.02410236746072769, 0.025911347940564156, 0.009487379342317581, 0.006995152682065964, -0.018206918612122536, 0.00917503796517849, -0.020900866016745567, -0.028449123725295067, -0.003988863900303841, 0.004281684290617704, -0.006825967691838741, 0.009682592935860157, 0.017972663044929504, -0.006663289852440357, -0.010229190811514854, 0.008843174204230309, 0.007613329216837883, 0.01370399259030819, -0.010365840047597885, 0.017204822972416878, 0.02411538176238537, 0.006695825140923262, 0.01898777298629284, 0.04063044860959053, 0.010281248018145561, 0.00798423495143652, -0.0362316370010376, 0.03776731714606285, 0.03381098806858063, -0.019794655963778496, 0.02732989937067032, -0.030947856605052948, -0.019807670265436172, -0.011198751628398895, 0.004675365053117275, 0.0196254700422287, 0.023256443440914154, 0.023620842024683952, -0.005661193281412125, -0.011784392409026623, -0.007053717039525509, -0.0068910387344658375, 0.023503713309764862, -0.040422223508358, -0.022293388843536377, -0.001748788170516491, -0.0005136557156220078, 0.0042979521676898, -0.004112499300390482, -0.004001878201961517, -0.027095643803477287, -0.008192462846636772, 0.000584013934712857, -0.00017599723651073873, 0.014628003351390362, 0.013001223094761372, 0.0008451120811514556, -0.034695956856012344, -0.011511093005537987, 0.01564311422407627, -0.009858285076916218, -0.005117848981171846, -0.034930214285850525, 0.007086252328008413, 0.02526063472032547, 0.01763429306447506, 0.013092323206365108, -0.006936588790267706, -0.0030811207834631205, 0.0024352893233299255, -0.015942441299557686, -0.032353393733501434, 0.005221962928771973, 0.013183423317968845, 0.005827125161886215, 0.026028474792838097, 0.011380950920283794, 0.004919381812214851, 0.004798999987542629, 0.019287100061774254, 0.0226447731256485, -0.019078873097896576, 0.0032600664999336004, 0.0033153770491480827, -0.042114075273275375, 0.017413049936294556, -0.021994061768054962, 0.014575946144759655, -0.0023181610740721226, -0.02779841236770153, -0.012747446075081825, -0.0077825142070651054, -0.013573849573731422, 0.01949532888829708, 0.036205608397722244, 0.005296794697642326, -0.00025947135873138905, 0.015630099922418594, 0.00335116614587605, -0.01525268703699112, -0.01140047237277031, 0.004532208200544119, -0.016072584316134453, 0.03677823767066002, 0.017699362710118294, 0.005261005833745003, 0.015669142827391624, -0.0027720327489078045, 0.010151105932891369, 0.0018447681795805693, 0.03029714524745941, 0.019287100061774254, -0.028527209535241127, 0.006009324453771114, -0.016293825581669807, -0.013281029649078846, -0.03935505449771881, 0.002637009834870696, 0.0059377457946538925, -0.031234171241521835, 0.00678041810169816, 0.014250590465962887, 0.013899206183850765, -0.0006909747025929391, -0.015734214335680008, 0.00851781852543354, -0.02725181356072426, 0.035372696816921234, 0.00842021219432354, 0.008823652751743793, 0.026705216616392136, 0.010665168054401875, -0.021265264600515366, -0.0543995127081871, -0.01431566197425127, 0.0065949647687375546, 0.030193030834197998, 0.05762704461812973, 0.008582890033721924, -0.02326945774257183, -0.004727421794086695, 0.01445881836116314, -0.00012455032265279442, -0.024831166490912437, 0.013098830357193947, 0.019885756075382233, -0.004763211123645306, 0.006376976612955332, 0.0011704680509865284, -0.023451656103134155, 0.02204611897468567, -0.006988645531237125, -0.0217207632958889, -0.007613329216837883, 0.0015763496048748493, 0.011641236022114754, 0.016176696866750717, -0.015200629830360413, -0.006084156222641468, -0.015460914932191372, 0.0196254700422287, -0.003969342447817326, -0.026991529390215874, -0.026028474792838097, 4.8600042646285146e-05, -0.01577325537800789, 0.04705948382616043, 0.0002875333302654326, 0.002223807852715254, -0.003102269023656845, 0.03641383722424507, 0.01223338395357132, -0.025950390845537186, -0.02268381603062153, 0.03487815707921982, 0.004083217121660709, -0.007958206348121166, -0.003601690288633108, 0.0034585336688905954, 0.005215455777943134, 0.013912220485508442, 0.008628440089523792, -0.015109529718756676, -0.01803773269057274, -0.004808760713785887, 0.014341689646244049, 0.001675583072938025, 0.0008825280237942934, -0.016970565542578697, -0.015317757613956928, -0.0017813238082453609, -0.03029714524745941, -0.01668425276875496, 0.016254782676696777, -0.03204105421900749, -0.02204611897468567, -0.01970355585217476, -0.06080251932144165, 0.020640581846237183, 0.014888288453221321, 0.026523016393184662, 0.000855686143040657, 0.051093898713588715, -0.03649192303419113, 0.003647240111604333, 0.030167004093527794, 0.01771237701177597, 0.0006869077333249152, 0.008459254167973995, 1.8707967683440074e-05, -0.029646433889865875, 0.022774916142225266, 0.016254782676696777, -0.008016770705580711, -0.04380592331290245, 0.023777011781930923, -0.005485501140356064, 0.01415949035435915, 0.02133033610880375, 0.03948519751429558, 0.011589178815484047, 0.023777011781930923, -0.010320290923118591, -0.03375893458724022, -0.013352608308196068, -0.018480217084288597, -0.0025995939504355192, 0.015656128525733948, -0.0019212268525734544, 0.023737968876957893, 0.004805507138371468, 0.005505022592842579, -0.006324919406324625, -0.005111341830343008, -0.05450362712144852, 0.000628750363830477, -0.017334964126348495, -0.013964276760816574, -0.018376104533672333, -0.02870940789580345, 0.005000720731914043, -0.032353393733501434, -0.003943313844501972, 0.0003320664109196514, -0.0040474277921020985, 0.011842956766486168, 0.014432789757847786, -0.011595685966312885, 0.0017862041713669896, -0.006298891268670559, -0.018597345799207687, -0.03820980340242386, -0.032743822783231735, -0.012884095311164856, -0.029854660853743553, -0.042114075273275375, 0.0445607490837574, -0.009044894948601723, -0.009201066568493843, -0.009162023663520813, -0.008986331522464752, -0.015369814820587635, 0.008205477148294449, 0.0020090730395168066, 0.005804350133985281, 0.010131584480404854, 0.017413049936294556, 0.0056351651437580585, 0.00226447731256485, -0.014966373331844807, 0.007112280931323767, -0.013040265999734402, 0.0048412964679300785, -0.005771814379841089, 0.003598436713218689, -0.015786269679665565, -0.0017536685336381197, -0.021863918751478195, 0.0037415933329612017, 0.010808324441313744, -0.022488603368401527, 0.008621932938694954, 0.00550176901742816, -0.01423757616430521, 0.0101055558770895, 0.007951699197292328, -0.010886410251259804, 0.00753524387255311, -2.1809015379403718e-05, -0.013391650281846523, -0.04765813797712326, 0.012981702573597431, 0.04817871004343033, -0.008244520053267479, -0.0008011889876797795, -0.01930011436343193, -0.0054366979748010635, -0.01423757616430521, 0.012975195422768593, -0.00753524387255311, -0.02824089676141739, -0.0017146258614957333, -0.004789239726960659, 0.0389125719666481, -0.010411390103399754, 0.0008825280237942934, 0.022931087762117386, -0.013352608308196068, -0.0007828877423889935, -0.01676233857870102, 0.006445301230996847, -0.010196655057370663, -0.002731363056227565, 0.008524325676262379, -0.0002338495833100751, -0.022931087762117386, 0.019729584455490112, 0.008752075023949146, -0.011647743172943592, 0.004418333526700735, -0.011842956766486168, 0.0190658587962389, -0.04554983228445053, 0.01193405594676733, 0.029854660853743553, -0.030791686847805977, -0.019651498645544052, -0.013690978288650513, -0.020393310114741325, -0.007515722420066595, -0.03815774619579315, 0.0027899271808564663, -0.015200629830360413, 0.010151105932891369, 0.006093916948884726, -0.012038170360028744, -0.013821120373904705, 0.014055376872420311, 0.02080976590514183, 0.009910342283546925, 0.005056031513959169, 0.25195565819740295, -0.014211547560989857, 0.011244301684200764, 0.026588087901473045, 0.003533365670591593, -0.015565028414130211, 0.04151541739702225, 0.008687003515660763, 0.0014356330502778292, 0.0039042714051902294, -0.01223338395357132, -0.013339594006538391, -0.014133462682366371, -0.008693510666489601, 0.007320508826524019, -0.014588960446417332, -0.02613258920609951, -0.020302211865782738, -0.02336055599153042, -0.0032161434646695852, 0.01564311422407627, -0.0039042714051902294, -0.009025373496115208, -0.01747812144458294, -0.003191741881892085, 0.029646433889865875, -0.022983143106102943, 0.020913880318403244, 0.030999913811683655, 0.020471395924687386, -0.008537339977920055, 0.01201214175671339, -0.003367434022948146, -0.0134046645835042, -0.015994498506188393, -0.028501180931925774, 0.016449997201561928, 0.013808106072247028, 0.020146040245890617, 0.005823871586471796, -0.017894577234983444, -0.00873906072229147, 0.0019570160657167435, 0.006949603091925383, -0.02704358659684658, 0.015578042715787888, 0.01032679807394743, -0.009383265860378742, -0.0005156892002560198, 0.009266137145459652, 0.005472486838698387, -0.021382393315434456, 0.030557429417967796, 0.019573412835597992, -0.007157830987125635, -0.02251463197171688, 0.022748887538909912, -0.006607979070395231, -0.007333523128181696, 0.026861386373639107, -0.024961307644844055, 0.0196254700422287, -0.02696550078690052, 0.0192610714584589, 0.008244520053267479, 0.015044459141790867, -0.011517600156366825, 0.00749620096758008, -0.008316097781062126, -0.020237140357494354, -0.00019287507166154683, -0.010717225261032581, -0.004652590025216341, 0.004167809616774321, -0.021421436220407486, -0.027928553521633148, 0.03984959423542023, 0.005485501140356064, 0.015200629830360413, 0.06481090188026428, 0.0027281094808131456, -0.007658878806978464, -0.006585204508155584, -0.0033576732967048883, 0.006201284471899271, -0.02041933871805668, 0.026223689317703247, -0.010990523733198643, -0.005475740414112806, -0.011660757474601269, 0.014263604767620564, -0.007613329216837883, 0.002627249341458082, -0.025468863546848297, 0.004737182520329952, 0.0007353044347837567, -0.00395307457074523, 0.003289348678663373, 0.00959149282425642, -0.02336055599153042, -0.019508343189954758, 0.07303590327501297, 0.04117704927921295, 0.015317757613956928, -0.01647602580487728, 0.0075417510233819485, 0.0047046467661857605, -0.003452026518061757, 0.015343786217272282, 0.00576856080442667, -0.00038107315776869655, -0.05039113014936447, 0.012220369651913643, -0.010795310139656067, -0.012031663209199905, 0.011491571553051472, -0.013677963986992836, -0.025755176320672035, -0.020679624751210213, -0.0031592061277478933, 0.02382906898856163, -0.024076340720057487, 0.004366276785731316, -0.0049226353876292706, 0.002911935793235898, 0.008615425787866116, -0.03482609987258911, -0.003666761564090848, -0.019052844494581223, -0.03880845755338669, 0.026483973488211632, 0.009064416401088238, -0.007958206348121166, 0.006350948009639978, -0.00794519204646349, 0.01034631859511137, -0.006988645531237125, -0.010814831592142582, -0.0005669327219948173, -0.013255001045763493, -0.0006503051845356822, -0.0073660584166646, 0.010886410251259804, 0.0023149074986577034, -0.0024401696864515543, -0.007203380577266216, 0.011016552336513996, 0.016736309975385666, -0.0025914600118994713, 0.007658878806978464, -0.03558092564344406, -0.012259411625564098, 0.031754739582538605, 0.003995371051132679, 0.015760241076350212, 0.004320726729929447, -0.013183423317968845, -0.03646589443087578, 0.0037546076346188784, 0.021616648882627487, -0.015109529718756676, -0.010073020122945309, 0.013241986744105816, -0.030791686847805977, -0.005160145461559296, -0.01652808114886284, -0.16335470974445343, -0.009734650142490864, 0.011823435313999653, -0.01707467995584011, 0.034175388514995575, 0.0004799000162165612, -0.00018423280562274158, -0.026939472183585167, -0.019430257380008698, -0.00018413113139104098, 0.01838911883533001, -0.014601974748075008, -0.022215303033590317, 0.004554983228445053, -0.02787649817764759, 0.017816491425037384, -0.020002882927656174, 0.013612892478704453, 0.033498648554086685, -0.00883666705340147, 0.052681636065244675, -0.037428949028253555, -0.014875274151563644, -0.010014455765485764, -0.0028826536145061255, 0.008465761318802834, -0.008530832827091217, -0.004333741031587124, -0.041489388793706894, -0.013821120373904705, 0.0007942751981317997, 0.02431059628725052, 0.015330771915614605, -0.01197309885174036, 0.0251044649630785, -0.005407415796071291, -0.001708118710666895, 0.012656345963478088, 0.0019456285517662764, 0.036517951637506485, 0.019924797117710114, 0.010795310139656067, 0.01612464152276516, 0.008791117928922176, 0.010879903100430965, 0.026939472183585167, 0.010730238631367683, -0.00974766444414854, 0.01223338395357132, 0.011842956766486168, 0.004938903264701366, -0.017816491425037384, -0.013990305364131927, -0.0009508527582511306, 0.016345882788300514, 0.015356800518929958, -0.0013071175199002028, 0.014445804059505463, -0.012623810209333897, 0.007880120538175106, 0.009220587089657784, -0.03331644833087921, 0.023777011781930923, -0.00891475286334753, -0.022488603368401527, 0.0017666828352957964, -0.00945484358817339, 0.0010858754394575953, -0.0075677791610360146, -0.0034748015459626913, 0.017387021332979202, -0.018974758684635162, -0.023998254910111427, 0.004428094252943993, 0.016489040106534958, -0.0012282186653465033, 0.014797188341617584, 0.009214079938828945, 0.021434450522065163, -0.0059377457946538925, -0.01763429306447506, 0.015695171430706978, 0.02287903055548668, -0.01283203810453415, -0.014875274151563644, 0.02930806390941143, -0.0037903967313468456, -0.027017557993531227, -0.00510483467951417, -0.005365119315683842, 0.03654398024082184, -0.0026662920136004686, -0.02565106190741062, -0.012773474678397179, 0.005592868663370609, -0.016267796978354454, -0.01982068456709385, 0.003647240111604333, -0.03573709726333618, -0.003829439403489232, -0.0015641486970707774, -0.014133462682366371, -0.021772820502519608, 0.02406332641839981, 0.039979737251996994, 0.02764224074780941, -0.012096733786165714, 0.020185083150863647, 0.027928553521633148, 0.009513407945632935, -0.0027394969947636127, 0.014927330426871777, 0.007606822066009045, 0.002007446251809597, 0.0038359465543180704, 0.009994934312999249, 0.015955455601215363, -0.002990021137520671, 0.007281465921550989, -0.0018707966664806008, -0.024037297815084457, -0.008439733646810055, -0.00469488650560379, 0.013287536799907684, 0.007678400259464979, -0.022826973348855972, -0.05013084411621094, -0.010060005821287632, -0.014068391174077988, 0.028136782348155975, -0.01970355585217476, 0.013834134675562382, 0.0018480217549949884, 0.013326579704880714, -0.012923138216137886, 0.007463665213435888, -0.003897764254361391, -0.020757708698511124, -0.0005827938439324498, 0.001602377975359559, 0.005212202202528715, 0.0008654468110762537, 0.016931522637605667, 0.001930987578816712, 0.006526640150696039, 0.020991966128349304, 0.012962181121110916, -0.0010289382189512253, -0.02231941744685173, -0.021551577374339104, -0.01894873008131981, -0.027095643803477287, -0.021655691787600517, 0.01242859661579132, 0.02025015465915203, 0.006419272627681494, 0.003943313844501972, 0.0012192714493721724, -0.002340936101973057, 0.000969560700468719, 0.00830308347940445, -0.013235479593276978, -0.03157253935933113, -0.01703563705086708, 0.020666610449552536, -0.010528518818318844, 0.011628221720457077, -0.006624246947467327, 0.009721635840833187, -0.014901301823556423, -0.022410517558455467, -0.005914971232414246, 0.007606822066009045, -0.002025340683758259, -0.014354703947901726, -0.034852128475904465, -0.041957903653383255, -0.0010110435541719198, -0.016515066847205162, -0.0030811207834631205, 0.019052844494581223, 0.02800663933157921, 0.002189645543694496, 0.012480653822422028, -0.03638780862092972, 0.019091887399554253, -0.022254345938563347, 0.01427661906927824, -0.019078873097896576, 0.019235042855143547, 0.012799503281712532, 0.01883160136640072, -0.0006425780011340976, -0.009864792227745056, -0.000657219032291323, 0.01441977545619011, -0.01143951527774334, 0.012064198032021523, -0.012812516652047634, 0.016072584316134453, -0.018493231385946274, -0.0026581580750644207, -0.00959149282425642, -0.004733928944915533, 0.003998624626547098, 0.007242423482239246, -0.020861823111772537, -0.004571251105517149, 0.008088348433375359, -0.023737968876957893, 0.014979387633502483, 0.007652371656149626, -0.018337061628699303, -0.0035301120951771736, 0.018324047327041626, -0.05164049565792084, -0.017920605838298798, 0.02487020753324032, 0.028345009312033653, -0.0012461132137104869, -0.0033771947491914034, -0.028449123725295067, 0.006224059034138918, -0.014549917541444302, 0.0032275309786200523, 0.022306403145194054, -0.01684042438864708, 0.010788802988827229, -0.08563368767499924, 0.01356083620339632, -0.015708185732364655, -0.020952923223376274, -0.004825028590857983, 0.019651498645544052, 0.010814831592142582, 0.00019409516244195402, -0.012402568943798542, 0.018558302894234657, -0.04370180889964104, 0.015460914932191372, 2.86211561615346e-05, -0.01046344731003046, -0.0294642336666584, 0.011504585854709148, 0.03180679678916931, 0.005869421176612377, 0.013131366111338139, 0.016983579844236374, -0.018050746992230415, -0.017256880179047585, -0.013059787452220917, 0.015695171430706978, -0.033576734364032745, 0.008524325676262379, -0.019989868625998497, 0.010522011667490005, 0.0064713298343122005, -0.010710718110203743, 8.60159780131653e-05, 0.0001473252341384068, -0.023009171709418297, -0.003302362747490406, -0.008270547725260258, -0.017881562933325768, 0.008296576328575611, 0.003744846908375621, 0.006113438401371241, 0.045810118317604065, -0.015382829122245312, 0.0004168623127043247, 0.008615425787866116, 0.002373471623286605, 0.017334964126348495, -0.0006498984876088798, -0.004717661067843437, 0.02185090444982052, 0.016697267070412636, 0.005391147918999195, 0.017087694257497787, 0.008133898489177227, 0.008413705043494701, 0.0050592850893735886, -0.0029721264727413654, -0.03917285427451134, -0.016749324277043343, 0.00571975763887167, 0.017530178651213646, 0.0065689366310834885, 0.019248057156801224, -0.011029566638171673, 0.017842520028352737, 0.010834353044629097, -0.004502926487475634, -0.018519259989261627, 0.004096231423318386, -0.00015108716615941375, 0.0013502271613106132, -0.01431566197425127, -0.0294642336666584, 0.009936370886862278, -0.0012989835813641548, 0.021668706089258194, 0.01743907853960991, 0.013150887563824654, -0.01680138148367405, -0.010007948614656925, -0.02899572253227234, 0.006969124544411898, 0.013365622609853745, 0.002275864826515317, -0.04440457746386528, 0.011472051031887531, 0.027902524918317795, -0.012051183730363846, -0.019274085760116577, 0.013847148977220058, -0.021278278902173042, -0.005043017212301493, -0.023386584594845772, -0.0035919295623898506, 0.008133898489177227, 0.022944102063775063, 0.016541095450520515, 0.004141781013458967, 0.012890602461993694, 0.0030241834465414286, 0.018454188480973244, 9.547163790557534e-05, 0.006363962311297655, -0.018128832802176476, -0.0017536685336381197, -0.024076340720057487, -0.011335400864481926, 0.013573849573731422, -0.025325706228613853, -0.03232736513018608, -0.012389554642140865, -0.02938614971935749, -0.018493231385946274, -0.0017569221090525389, -0.007255437783896923, 0.00989082083106041, -0.0053000482730567455, 0.006943095941096544, -0.002523135393857956, -0.016970565542578697, -0.02870940789580345, 0.014706088230013847, 0.02069263719022274, 0.027746355161070824, 0.026158617809414864, -0.02891763672232628, 0.035450782626867294, -0.02477910928428173, 0.03412333130836487, -0.03737689182162285, 0.04206201806664467, -0.015369814820587635, -0.011315879411995411, 0.019885756075382233, -0.01272792462259531, -0.019716570153832436, -0.00959149282425642, 0.0012485533952713013, 0.001229032059200108, -0.004223119933158159, -0.005862914025783539, 0.06699729710817337, 0.037637174129486084, -0.007196873426437378, 0.0006442047888413072, 0.0026256225537508726, 0.0007690601050853729, 0.001221711514517665, 0.0027069614734500647, 0.007867107167840004, -0.014328675344586372, 0.01225290447473526, -0.005326076876372099, -0.00332676456309855, -0.0006116691511124372, -0.02609354630112648, -0.000626716879196465, -0.040656477212905884, 0.005443205125629902, -0.023256443440914154, 0.0027980611193925142, 0.03792348876595497, 0.011010045185685158, 0.004177570343017578, 0.012578261084854603, -0.010307276621460915, -0.013092323206365108, 0.026835357770323753, -0.004307712893933058, 0.005124356132000685, -0.008960302919149399, 0.015395843423902988, 0.01300773024559021, -0.029203949496150017, -0.0166061669588089, -4.750705193146132e-05, 0.012884095311164856, 0.0007698734989389777, 0.004789239726960659, 0.032587651163339615, -0.008979824371635914, 0.01552598550915718, 0.007437637075781822, -0.012448118068277836, -0.0266141165047884, 0.0162417683750391, -0.008986331522464752, -0.022254345938563347, 0.0049584247171878815, 0.013873177580535412], "de710693-42f0-4cef-acc8-412ce43ecf84": [0.013235225342214108, -0.021515587344765663, 0.0005087581812404096, -0.010771149769425392, -0.009789525531232357, 0.005078400019556284, -0.026363607496023178, -0.01150569785386324, 0.005085077602416277, -0.029755884781479836, 0.008834612555801868, 0.0012211865978315473, -0.025255106389522552, 0.005936486180871725, -0.0231315940618515, -0.005846336949616671, 0.016133353114128113, 6.834221130702645e-05, 0.012807851657271385, -0.007933122105896473, 0.001802982296794653, -0.008333784528076649, -0.009482351131737232, -0.03624662011861801, -0.0298360176384449, 0.0163336843252182, -0.0011468970915302634, -0.019966358318924904, 0.024707535281777382, -0.01123191136866808, 0.03862388804554939, -0.0008422264363616705, -0.017749357968568802, -0.006050006952136755, 0.006023296155035496, -0.016053220257163048, 0.0003167739778291434, -0.019058190286159515, -0.007759501226246357, 0.01366259902715683, 0.026176631450653076, 0.006594240665435791, 0.014383791945874691, 0.0023221743758767843, -0.010904703289270401, 0.022797709330916405, -0.02383943274617195, 0.014717677608132362, 0.001092640683054924, 0.019766027107834816, -0.012594165280461311, 0.013549077324569225, -0.034617260098457336, -0.02013997919857502, -0.010450619272887707, 0.0049748956225812435, -0.03298789635300636, 0.004377240315079689, 0.0004824647039640695, -0.009876335971057415, 0.005318797659128904, 0.02890113741159439, -0.022303558886051178, -0.008567504584789276, -0.01100486982613802, 0.013468945398926735, -0.005702766124159098, 0.033815935254096985, -0.013956418260931969, -0.004413967486470938, 0.033655669540166855, 0.006524124648422003, 0.007245317567139864, 0.014156749472022057, 0.031598933041095734, 0.0030483754817396402, -0.04500778019428253, -0.018897924572229385, -0.006944820284843445, -0.0009916402632370591, 0.0012387156020849943, -0.02593623287975788, -0.002689448418095708, -0.013609177432954311, 0.007565847598016262, 0.00039210691465996206, -0.011031580157577991, 0.00953577272593975, -0.030209969729185104, -0.019311944022774696, -0.004951523616909981, -0.002893118653446436, 0.025402016937732697, 0.012039914727210999, -0.016413815319538116, -0.01145227625966072, 0.009101721458137035, 0.0021952977403998375, -0.015051563270390034, -0.03322829678654671, -0.001616006251424551, 0.025188330560922623, -0.015933020040392876, 0.0010250287596136332, -0.037875983864068985, -0.013689309358596802, 0.010804537683725357, 0.007078374736011028, 0.021181702613830566, -0.009916402399539948, -0.03846362233161926, 0.021061504259705544, 0.03218657150864601, -0.06058020517230034, -0.013796153478324413, -0.016413815319538116, 0.033335138112306595, -0.011946426704525948, 0.019285231828689575, 0.007231961935758591, 0.017215142026543617, -0.00980955921113491, 0.01895134709775448, -0.010670984163880348, 0.016587436199188232, 0.021114924922585487, -0.027204997837543488, 0.0010701033752411604, -0.01824350841343403, -0.02442707121372223, 0.034563835710287094, 0.021382033824920654, 0.008400561287999153, 0.0010425577638670802, 0.0030099786818027496, 0.0005976552492938936, 0.0030951194930821657, -0.004247024655342102, -0.00019574043108150363, -0.01506491843611002, 0.03541858494281769, 0.016907967627048492, -0.003766229609027505, 0.007432293612509966, -0.015705978497862816, 0.025722546502947807, 0.021742630749940872, -0.015839532017707825, -0.014744387939572334, -0.005529145710170269, 0.015051563270390034, -0.01374273095279932, 0.01724185235798359, -0.01961911842226982, 0.01491800881922245, -0.002175264758989215, 0.02938193269073963, 0.0077928900718688965, -0.0270046666264534, -0.009455639868974686, 0.012473965995013714, 0.011251945048570633, -0.004921473562717438, 0.0076927244663238525, -0.004237008281052113, 0.022824419662356377, 0.009782847948372364, 0.03905126079916954, -0.012507354840636253, 0.016347039490938187, -0.010150122456252575, 0.00863428134471178, -0.025642413645982742, 0.026964601129293442, 0.019124967977404594, 0.009208564646542072, -0.020767685025930405, 0.008754480630159378, -0.01991293765604496, -0.0124873211607337, -0.0026376962196081877, -0.015185116790235043, -0.003004970494657755, 0.006297082640230656, -0.008727769367396832, -0.015478936024010181, 0.017709292471408844, 0.012413866817951202, 0.029141535982489586, 0.0012737736105918884, 0.014210171066224575, 0.04134839400649071, 0.00433383509516716, -0.007251995149999857, -0.6188369393348694, -0.031171560287475586, 0.0016794445691630244, 0.002325513167306781, 0.029435355216264725, 0.026470450684428215, 0.021408744156360626, 0.03875743970274925, -0.021114924922585487, 0.018991412594914436, -0.002752886852249503, 0.010390520095825195, -0.023866143077611923, -0.014931363984942436, 0.005318797659128904, -0.032239992171525955, -0.02258402295410633, -0.00687136547639966, -0.021836118772625923, 0.013348746113479137, -0.03138524666428566, 0.017068231478333473, -0.03151880204677582, -0.036166489124298096, -0.0009415574022568762, 0.009769492782652378, 0.0035492039751261473, -0.032720789313316345, -0.008360495790839195, 0.04057377949357033, -0.028954559937119484, 0.047064512968063354, 0.019712606444954872, -0.006924787536263466, 0.04901440441608429, -0.0049314904026687145, -0.03784927353262901, -0.0001379364839522168, 0.03264065459370613, 0.04604950174689293, -0.019632473587989807, -0.019258521497249603, 0.0023472157772630453, -0.015612490475177765, -0.004263719078153372, 0.007225284352898598, 0.003983255010098219, 0.011766128242015839, -0.015999797731637955, -0.0072052511386573315, -0.0028797632548958063, -0.012587486766278744, 0.016360394656658173, -0.03280092030763626, 0.012093336321413517, -0.012166791595518589, 0.03213315084576607, -0.03167906403541565, -0.0021185041405260563, -0.004594265948981047, -0.013836218975484371, 0.030370233580470085, -0.022089870646595955, -0.022210070863366127, -0.02107485942542553, 0.012186824344098568, -0.0145173454657197, -0.03995942696928978, 0.028447052463889122, 0.00044490257278084755, 0.006360520608723164, 0.0101968664675951, 0.02458733506500721, -0.038169801235198975, 0.021181702613830566, 0.04423316568136215, 0.01829693093895912, -0.014450568705797195, -0.009996535256505013, 0.02052728645503521, 0.011512375436723232, -0.017362050712108612, 0.0117794843390584, -0.019084900617599487, 0.02668413706123829, -0.025241751223802567, 0.00714515196159482, -0.012393833138048649, 0.005028317216783762, 0.006821282673627138, 0.0033572197426110506, 0.03157222270965576, -0.003242029109969735, -0.06907425075769424, 0.0035592205822467804, 0.04073404148221016, -0.005412285681813955, -0.025629058480262756, 0.015519002452492714, 0.004627654328942299, -0.015933020040392876, 0.008787869475781918, 0.002709481632336974, -0.012026559561491013, 0.030957872048020363, -0.005646005738526583, -0.040653910487890244, 0.001523353043012321, 0.017188429832458496, -0.018096599727869034, 0.00879454705864191, -0.006644323468208313, -0.01100486982613802, -0.006163528189063072, 0.048346634954214096, -0.03141195699572563, 0.011926393955945969, 0.007405582815408707, 0.0244537815451622, -0.024533914402127266, 0.03181261941790581, 0.020380377769470215, 0.004297107458114624, 0.0006034982507117093, -0.009889691136777401, 0.012380477972328663, 0.00803996529430151, -0.00027023867005482316, 0.008574182167649269, -0.011125068180263042, -0.007365516386926174, 0.004063387867063284, 0.013402167707681656, -0.011832905933260918, -0.0025675802025943995, 0.004073404241353273, 0.017749357968568802, -0.0038463622331619263, 0.012360445223748684, -0.01246728841215372, -0.03464397042989731, -0.010984836146235466, 0.020901238545775414, -0.020740972831845284, 0.00431714067235589, -0.03774242848157883, -0.02303810603916645, 0.011706029064953327, -0.011625896207988262, 0.004510794300585985, 0.0231315940618515, -0.0026710848324000835, -0.009689359925687313, 0.034109752625226974, -0.011592508293688297, 0.0007420607726089656, 0.01287462841719389, -0.02645709551870823, -0.01762915961444378, -0.006220288574695587, -0.009549127891659737, 0.00021055660909041762, -0.020193401724100113, 0.0014448899310082197, -0.013488978147506714, -0.003519154153764248, 0.001608493854291737, 0.00016569072613492608, -0.017215142026543617, -0.024787666276097298, -0.013675954192876816, 0.007118441164493561, 0.017989756539463997, 0.010170155204832554, -0.005779559724032879, -0.024533914402127266, -0.008500727824866772, 0.0338960662484169, -0.0188845694065094, 0.005362202879041433, 0.0060900733806192875, -0.00789305567741394, 0.013415523804724216, -0.01824350841343403, 0.015999797731637955, 0.029462065547704697, 0.018804436549544334, -0.006076717749238014, -0.012587486766278744, -0.013428878970444202, 0.014236882328987122, 0.009121754206717014, -0.0028814326506108046, 0.012841240502893925, 0.018096599727869034, 0.012240245938301086, 0.01968589425086975, 0.005415624473243952, 0.017028165981173515, 0.01467761117964983, 0.03611306846141815, 0.018150020390748978, -0.025922877714037895, -0.02452055923640728, 0.01672099158167839, -0.03261394426226616, -0.00421363627538085, -0.0027879448607563972, 0.011772806756198406, 0.021221768110990524, -0.0181767325848341, -0.028233366087079048, 0.002938193269073963, -0.01923181116580963, 0.02625676430761814, 0.008968167006969452, -0.018604105338454247, 0.004056710284203291, 0.0014882950345054269, 0.01891127973794937, 0.011585830710828304, -0.0044239843264222145, 0.01856403984129429, -0.02178269624710083, -0.011412209831178188, -0.0037395188119262457, -0.007832956500351429, 0.019766027107834816, 0.014490635134279728, -0.0107644721865654, -0.017375405877828598, -0.006924787536263466, 0.019004767760634422, 0.010797860100865364, 0.021996382623910904, -0.024921221658587456, 0.03173248842358589, -0.02326514944434166, 0.03931836783885956, -0.006393909454345703, 0.009435607120394707, -0.00021848638425581157, 0.0050249784253537655, 0.00738554960116744, 0.04417974129319191, 0.012320378795266151, 0.060954153537750244, 0.016774412244558334, -0.025188330560922623, -0.026189986616373062, -0.01740211807191372, -0.011906360276043415, -0.021822763606905937, 0.04340512678027153, 0.00650075264275074, -0.02265079878270626, -0.001193640986457467, 0.011772806756198406, 0.028553897514939308, 0.017909623682498932, 0.017215142026543617, 0.028687451034784317, -0.015519002452492714, 0.011979815550148487, 0.001158582977950573, -0.0175623819231987, -0.0163336843252182, -0.005876386538147926, 0.00947567354887724, -0.011338754557073116, -0.013382134959101677, -0.003479087958112359, 0.0011627565836533904, -0.021609075367450714, -0.009255308657884598, 0.021408744156360626, -0.012961438857018948, 0.023078173398971558, 0.02114163711667061, 0.0012345419963821769, -0.012841240502893925, -0.0135023333132267, 0.005846336949616671, 0.01342220138758421, 0.013175126165151596, 0.005175226833671331, -0.02317166142165661, -0.007004919927567244, 0.00446405028924346, -0.001201988197863102, 0.0066977450624108315, 0.003328839549794793, -0.0003522493061609566, -0.011592508293688297, -0.003766229609027505, 0.008380528539419174, 0.05187246575951576, -0.011432242579758167, -0.02132861129939556, -0.011906360276043415, 0.007672691252082586, -0.01820344291627407, 0.005345508456230164, -0.0030283425003290176, 0.054089467972517014, -0.010924736969172955, -0.02509484253823757, -0.015051563270390034, 0.016801122575998306, -0.019993070513010025, -0.0009524086490273476, -0.021382033824920654, -0.014210171066224575, -0.012540742754936218, -0.012574131600558758, 0.0011076654773205519, 0.02342541329562664, 0.005449012853205204, 0.02812652289867401, 0.007686046417802572, -0.004510794300585985, 0.014904653653502464, -0.008347139693796635, -0.008847968652844429, 0.0145173454657197, 0.008453983813524246, 0.009836269542574883, 0.028660740703344345, -0.0025124892126768827, -0.01156579703092575, -0.03696781396865845, 0.011345433071255684, 0.011298689059913158, -0.0016193451592698693, -0.009969823993742466, -0.01366259902715683, 0.008046642877161503, -0.014263592660427094, 0.013542399741709232, -0.007472359575331211, -0.0020951321348547935, -0.024467136710882187, 0.016587436199188232, -0.01778942532837391, 0.02500135451555252, -0.008574182167649269, 0.023786010220646858, 0.008620926178991795, -0.0032487069256603718, -0.006417281460016966, 0.022063160315155983, 0.027859413996338844, 0.007312094792723656, -0.030984584242105484, -0.004724481143057346, 0.006657679099589586, -0.002858060644939542, 0.020740972831845284, 0.014397147111594677, 0.03480423614382744, -0.018737660720944405, 0.055665407329797745, 0.01055078487843275, 0.00789305567741394, 0.0038697340060025454, 0.037555452436208725, 0.007726112846285105, -0.0039164782501757145, 0.008333784528076649, -0.02552221529185772, -0.021088214591145515, 0.030583921819925308, -0.01082457136362791, -0.024961287155747414, 0.010637595318257809, 0.021595720201730728, -0.029916150495409966, 0.0013664268190041184, -0.023505546152591705, 0.010911381803452969, -0.0224237572401762, 0.0072920615784823895, -0.007332128006964922, -0.02383943274617195, -0.0043304963037371635, -0.019124967977404594, -0.012701008468866348, 0.010610884055495262, -0.011158457025885582, -0.026056433096528053, -0.015358737669885159, -0.002410653978586197, -0.025562280789017677, -0.016587436199188232, 0.021702563390135765, -0.03760887309908867, -0.02233026921749115, 0.016867900267243385, 0.021248480305075645, 0.013943063095211983, 0.01749560609459877, -0.0019031479023396969, -0.01338881254196167, 0.03237354755401611, -0.010524074546992779, -0.007318772375583649, 0.0019482225179672241, -0.04516804590821266, -0.006577546242624521, 0.00509175518527627, -0.021435456350445747, 0.005906436126679182, -0.02671084739267826, -0.003080094698816538, 0.0023722571786493063, 0.008527438156306744, 0.018991412594914436, 0.007933122105896473, 0.007512426003813744, 0.009549127891659737, 0.027151577174663544, 0.02542872726917267, 0.012540742754936218, -0.02233026921749115, -0.0007387218647636473, 0.00420361990109086, -0.026764269918203354, 0.010043279267847538, -0.0001763333275448531, 0.014063261449337006, 0.012994827702641487, 0.0015634193550795317, -0.004784580785781145, -0.002672754228115082, 0.009101721458137035, -0.0006823787116445601, 0.006073378957808018, -0.00765265803784132, 0.01211337000131607, 0.02281106449663639, 0.007645980454981327, 0.020113268867135048, 0.02148887701332569, -0.0002310070995008573, -0.004691092763096094, -0.0278059933334589, 0.02513490803539753, 0.01598644256591797, -0.006467364262789488, 0.020340310409665108, -0.0215289443731308, -0.023465480655431747, -0.005555856507271528, 0.004971556831151247, 0.009282019920647144, 0.031171560287475586, 0.02084781602025032, -0.01100486982613802, -0.024707535281777382, -0.006163528189063072, 0.0004766217025462538, 0.02410653978586197, -0.03170577809214592, -0.02306481823325157, 0.007645980454981327, -0.005392252467572689, 0.005398930050432682, -0.008734446950256824, -0.00863428134471178, -0.031438667327165604, -0.009996535256505013, -0.0005150185315869749, 0.003011648077517748, 0.012166791595518589, 0.008961489424109459, 0.009615905582904816, -0.03664728254079819, -0.013522366993129253, 0.017308630049228668, -0.019165033474564552, -0.006470703054219484, -0.040814176201820374, 0.00546904606744647, 0.024867799133062363, 0.007405582815408707, 0.006514108274132013, -0.0022620749659836292, -0.004447356332093477, -0.005749510135501623, 0.00447072833776474, -0.03312145173549652, 0.01630697213113308, 0.0036760803777724504, -0.005666038487106562, 0.023051461204886436, 0.012253601104021072, -0.006246999371796846, 0.007445648778229952, 0.021822763606905937, 0.026590649038553238, -0.011812872253358364, -0.008961489424109459, -0.0005809609428979456, -0.042229849845170975, 0.012881306931376457, -0.026897823438048363, 0.012861273251473904, -0.009489028714597225, -0.015999797731637955, -0.008200230076909065, -0.005759526509791613, -0.0027795976493507624, -0.0017562382854521275, 0.025348594412207603, 0.016387104988098145, 0.011338754557073116, 0.011178489774465561, 0.002833019243553281, -0.006313776597380638, -0.009428929537534714, 0.0071918959729373455, -0.0019231811165809631, 0.034777525812387466, 0.01569262333214283, 0.00803996529430151, 0.02278435416519642, 0.014490635134279728, 0.00473783677443862, -0.0017211802769452333, 0.039131391793489456, 0.002903135260567069, -0.024600690230727196, -0.005809609312564135, -0.02586945705115795, -0.006594240665435791, -0.023639099672436714, -0.00140398892108351, -0.0013088315026834607, -0.01933865435421467, -0.006958175916224718, 0.009282019920647144, 0.016026508063077927, 0.000109034517663531, -0.015131695196032524, 0.0018497261917218566, -0.01840377412736416, 0.04217642918229103, 0.005004945211112499, 0.007038308307528496, 0.030664052814245224, 0.01366259902715683, -0.023665811866521835, -0.06415946036577225, -0.009562483988702297, 8.718848221178632e-06, 0.02919495664536953, 0.046770695596933365, -0.012033237144351006, -0.012460610829293728, -0.019832804799079895, 0.01865752786397934, -0.0013472284190356731, -0.012801174074411392, 0.00650075264275074, 0.018417129293084145, -0.009282019920647144, 0.007332128006964922, 0.011579152196645737, -0.031011294573545456, 0.01897805742919445, -0.013281969353556633, -0.021702563390135765, -0.033655669540166855, -0.004357207100838423, 0.02442707121372223, 0.014036551117897034, -0.02565576881170273, 0.007031630724668503, -0.01388964056968689, 0.0209145937114954, 0.00534884724766016, -0.02184947393834591, -0.025922877714037895, -0.00331548391841352, -0.008841291069984436, 0.04292433336377144, -0.014744387939572334, -0.006827960722148418, 0.006433975417166948, 0.03061063215136528, 0.011739417910575867, -0.008741125464439392, -0.01868423819541931, 0.03357553482055664, -0.0010625909781083465, -0.01021689921617508, 0.011305366642773151, -0.004784580785781145, 0.00269111804664135, -0.00211516534909606, 0.008894712664186954, -0.011672640219330788, -0.024600690230727196, 0.007125118747353554, 0.02319837175309658, 0.0009332102490589023, 0.015171761624515057, -0.017321985214948654, -0.009916402399539948, -0.012861273251473904, -0.028634028509259224, -0.01453070156276226, 0.01788291335105896, -0.013615855015814304, -0.019832804799079895, -0.0122268907725811, -0.05828307196497917, 0.032239992171525955, 0.0031268387101590633, 0.009095043875277042, -0.021969672292470932, 0.04158879071474075, -0.03934507817029953, 0.00012687653361354023, 0.015358737669885159, -0.001480782637372613, -0.015051563270390034, 0.005883064121007919, -0.001319682807661593, -0.029275089502334595, 0.023946275934576988, 0.0027061428409069777, -0.017922978848218918, -0.0337090902030468, 0.031492091715335846, 0.006210272200405598, 0.020273534581065178, 0.018604105338454247, 0.03659386187791824, 0.0029498792719095945, 0.019993070513010025, -0.016614148393273354, -0.041294969618320465, -0.0017462216783314943, -0.007058341521769762, 0.0004774564004037529, 0.02481437847018242, -0.01585288904607296, 0.01708158664405346, -0.007312094792723656, 0.006377215031534433, -0.004440678283572197, -0.015385448932647705, -0.03659386187791824, 0.005128482822328806, -0.01772264763712883, -0.024854443967342377, -0.024013051763176918, -0.02365245670080185, 0.004554199520498514, -0.01859075017273426, -0.005268714856356382, 0.007352160755544901, -0.004757869988679886, 0.01621348410844803, -0.0014332039281725883, -0.012347089126706123, -0.0035091377794742584, -0.0013472284190356731, -0.030877741053700447, -0.02709815464913845, -0.024921221658587456, -0.02609649859368801, -0.0249746423214674, -0.02203644998371601, 0.04639674350619316, -0.00041881774086505175, -0.009816236793994904, -0.005759526509791613, 0.008193552494049072, -0.028153233230113983, -0.0010859628673642874, -0.0021051487419754267, 0.016453882679343224, 0.029782595112919807, 0.025695836171507835, 0.0021902895532548428, 0.01920509897172451, -0.004500777926295996, 0.011492342688143253, -0.014023195020854473, 0.0008017427753657103, -0.022824419662356377, -0.0032136489171534777, -0.011138423345983028, -0.006223627831786871, -0.027592306956648827, -0.00018666291725821793, 0.010610884055495262, -0.0181767325848341, 0.006367198191583157, -0.0015241877408698201, 0.0004196524678263813, -0.000711176311597228, -0.0065541742369532585, -0.013956418260931969, -0.0009465657058171928, 0.0008242800831794739, -0.030690765008330345, -0.040333379060029984, 0.035525426268577576, 0.04885414242744446, -0.01692132279276848, 0.0062269666232168674, -0.005101772025227547, 0.0010943100787699223, 0.0003522493061609566, 0.011024902574717999, -0.005121805239468813, -0.009702716022729874, -0.005649344529956579, -0.01006998959928751, 0.004166892264038324, -0.015879599377512932, 0.0025525554083287716, 0.023572323843836784, -0.019645828753709793, 0.001260418095625937, -0.024547269567847252, -0.0036527083721011877, -0.011946426704525948, -0.0013413854176178575, 0.0074122603982687, -0.0035492039751261473, -0.01975267194211483, 0.004514133557677269, 0.005462368484586477, -0.014463923871517181, 1.5729141523479484e-05, -0.0022971329744905233, -0.003919817041605711, -0.05213957652449608, 0.015211828052997589, 0.04263051226735115, -0.018443841487169266, -0.029942860826849937, -0.00890806782990694, -0.0017746019875630736, -0.0077995676547288895, -0.0338960662484169, 0.004831324797123671, -0.02207651548087597, 0.012787818908691406, 0.00890806782990694, -0.0020934627391397953, -0.01582617685198784, 0.010236932896077633, 0.006347165443003178, -0.0138095086440444, -0.004247024655342102, 0.24873141944408417, -0.009028267115354538, 0.023919563740491867, 0.02609649859368801, 0.010791182518005371, -0.019165033474564552, 0.04105457291007042, 0.0019098256016150117, -1.2677219274337403e-05, 0.027859413996338844, -0.009883013553917408, -0.004290429875254631, -0.012540742754936218, -0.002707812236621976, 0.009368830360472202, -0.008888035081326962, -0.038944415748119354, -0.018537327647209167, -0.024387003853917122, 0.00533215282484889, 0.01582617685198784, -0.0001472226867917925, 0.007599236443638802, -0.013475622981786728, 0.0005196094862185419, 0.03213315084576607, -0.013729375787079334, 0.011933071538805962, 0.0067411502823233604, 0.019739316776394844, -0.015372092835605145, -0.0005592583911493421, -0.010911381803452969, 0.0024624064099043608, -0.00789305567741394, -0.021996382623910904, 0.013255258090794086, 0.016387104988098145, 0.01872430369257927, 0.004303785506635904, -0.0017879573861137033, -0.011198523454368114, 0.013488978147506714, 0.0033121451269835234, -0.02522839605808258, 0.02625676430761814, -0.003996610641479492, -0.003469071350991726, 0.003393947146832943, 0.016614148393273354, -0.006106767803430557, -0.017482250928878784, 0.026537228375673294, 0.02274428680539131, 0.0049314904026687145, -0.013415523804724216, 0.026510516181588173, 0.0058897421695292, -0.014103327877819538, 0.007392227184027433, -0.020994726568460464, 0.022370334714651108, -0.018831148743629456, 0.028233366087079048, 0.002003313507884741, 0.008146808482706547, -0.00725867273285985, 0.006577546242624521, -0.01335542369633913, -0.012473965995013714, 0.010964803397655487, -0.004727819934487343, -0.008013254031538963, 0.00045158027205616236, -0.016841189935803413, -0.017135009169578552, 0.03889099508523941, 0.010170155204832554, -0.001090971170924604, 0.05390249192714691, 0.006951498333364725, -0.010290354490280151, -0.0072853839956223965, 0.00022599881049245596, -0.0021952977403998375, -0.010564140044152737, 0.01688125543296337, -0.0038497010245919228, -0.0011811202857643366, -0.016039865091443062, 0.010637595318257809, -0.012186824344098568, 0.010150122456252575, -0.017963046208024025, -0.0020283551421016455, -0.010657628066837788, 0.0038964450359344482, 0.010570818558335304, -0.009976501576602459, -0.024707535281777382, -0.009689359925687313, 0.05235326290130615, 0.03376251086592674, 0.010163477621972561, -0.006924787536263466, 0.004791258368641138, 0.012934728525578976, -0.00035913570900447667, 0.015665913000702858, 0.002979929093271494, -0.013101670891046524, -0.05304774269461632, 0.00018447179172653705, -0.007358838804066181, 0.004033338278532028, 0.023932920768857002, -0.011145100928843021, -0.0006018287967890501, -0.02194296196103096, -0.013782797381281853, 0.03517818823456764, -0.0242668054997921, 0.014317014254629612, -0.005165210459381342, 0.009041622281074524, 0.010083344765007496, -0.022250136360526085, -0.013288646936416626, -0.02207651548087597, -0.03835677728056908, 0.03846362233161926, -0.01621348410844803, -0.0022136615589261055, 0.004393934737890959, -0.011345433071255684, 0.00313017750158906, -0.008767835795879364, -0.015332026407122612, -0.006153511814773083, -0.00956916157156229, -0.0049949283711612225, -0.0016193451592698693, 0.007165185175836086, 0.003285434329882264, 0.004687753971666098, 0.010297032073140144, 0.006761183496564627, 0.01562584564089775, 0.0013956418260931969, -0.008059998042881489, -0.03183932974934578, -0.017348695546388626, 0.026563938707113266, 0.0007145151612348855, 0.005893080960959196, 0.0032019629143178463, -0.015572424046695232, -0.030396945774555206, -0.009241953492164612, 0.018323641270399094, -0.03109142743051052, -0.015532358549535275, 0.02239704690873623, -0.02725842036306858, -0.0022053143475204706, -0.007666013203561306, -0.17009468376636505, -0.008066676557064056, -0.01069769449532032, -0.016667569056153297, 0.036166489124298096, -0.015185116790235043, -0.008807902224361897, -0.01701481081545353, -0.019031479954719543, -0.0070984079502522945, 0.015532358549535275, -0.014690966345369816, -0.026443740352988243, 0.011706029064953327, -0.017669225111603737, 0.00287642446346581, -0.004941506776958704, 0.020193401724100113, 0.0335221141576767, 0.007078374736011028, 0.05187246575951576, -0.02536194957792759, -0.026443740352988243, 0.004540844354778528, 0.014103327877819538, 0.01530531607568264, -0.007298739161342382, 0.0101968664675951, -0.030183257535099983, -0.02023346722126007, -0.01617341861128807, 0.019832804799079895, 0.023932920768857002, -0.009655972011387348, 0.0183637086302042, -0.008013254031538963, -0.016360394656658173, -0.011999848298728466, 0.0032036323100328445, 0.025882812216877937, 0.016934677958488464, 0.012667619623243809, 0.014784454368054867, -0.004921473562717438, -0.004130165092647076, 0.02874087169766426, 0.019725961610674858, -0.00197827210649848, 0.009509061463177204, 0.004307124298065901, 0.003267070511355996, -0.01375608704984188, -0.010991513729095459, -0.013195158913731575, 0.0007341309683397412, 0.03205301612615585, -0.01311502605676651, 0.02345212548971176, 0.0002725341182667762, -0.005148516036570072, 0.01042390801012516, -0.04594266042113304, 0.020246822386980057, 0.00482464674860239, -0.030076414346694946, -0.0002239120367448777, -0.0011861285893246531, 0.02043379843235016, -0.0027044734451919794, -0.017281917855143547, 0.028821004554629326, -0.026897823438048363, -0.01662750355899334, -0.010918059386312962, 0.02043379843235016, 0.007165185175836086, 0.014624189585447311, 0.014423858374357224, 0.014156749472022057, -0.022049805149435997, -0.007632624823600054, 0.0203937329351902, 0.018323641270399094, -0.013796153478324413, -0.028313498944044113, 0.008400561287999153, -0.005145177245140076, -0.011378820985555649, -0.004968217574059963, -0.01991293765604496, 0.04548857361078262, -0.007879700511693954, -0.009889691136777401, -0.010096700862050056, 0.007459004409611225, -0.009241953492164612, -0.01929858699440956, 0.008954811841249466, -0.025562280789017677, 0.0031084748916327953, 0.0021101569291204214, -0.011285332962870598, -0.018617460504174232, 0.015585780143737793, 0.03846362233161926, 0.02255731076002121, -0.015091628767549992, 0.017508961260318756, 0.019632473587989807, -0.005919791758060455, 0.001227864297106862, 0.007438971195369959, 0.01135878823697567, 0.008327106945216656, -0.009368830360472202, -0.005322136450558901, 0.011332076974213123, -0.01364924293011427, 0.02764572761952877, -0.010243610478937626, -0.014490635134279728, 0.0028914492577314377, 0.010777827352285385, 0.0195924062281847, 8.602771413279697e-05, -0.015492292121052742, -0.05502434819936752, -0.02777928113937378, -0.00267442362383008, 0.027432041242718697, -0.017228497192263603, 0.02545543760061264, 0.00636385940015316, 0.04172234609723091, -0.011913037858903408, 0.016934677958488464, 0.02285112999379635, -0.020113268867135048, -0.012894662097096443, 0.0027629034593701363, 0.01461083348840475, -0.0043805791065096855, 0.007886378094553947, -0.0009265325497835875, 0.001379782217554748, 0.02442707121372223, 0.01765586994588375, -0.0034156497567892075, -0.0027896142564713955, -0.021275190636515617, -0.02461404725909233, -0.01929858699440956, -0.028073102235794067, 0.007672691252082586, 0.01865752786397934, 0.006671034265309572, 0.009862980805337429, -0.007078374736011028, 0.008587537333369255, -0.00165941147133708, 0.014303659088909626, -0.009048299863934517, -0.02796625718474388, -0.022503890097141266, 0.0203937329351902, -1.644647454668302e-05, 0.0027228370308876038, 0.006313776597380638, -0.0028897798620164394, -0.02084781602025032, -0.028847716748714447, 0.0013605838175863028, -0.002108487533405423, 0.013796153478324413, 0.010203544050455093, -0.020220112055540085, -0.03595280274748802, -0.0032036323100328445, -0.008961489424109459, -0.004497439134865999, 0.013328713364899158, 0.011893005110323429, 0.0006005767500028014, 0.009355474263429642, -0.029729174450039864, 0.028607318177819252, -0.012674297206103802, 0.010684339329600334, -0.02623005211353302, 0.012473965995013714, 0.006377215031534433, 0.013201836496591568, 0.0028463746421039104, -0.01404990628361702, 0.021862829104065895, -0.009014911018311977, -0.006527463439851999, 0.005298764444887638, -0.01843048445880413, 0.016453882679343224, -0.02632354013621807, -0.00042111321818083525, -0.016026508063077927, -0.018056534230709076, 0.020260177552700043, 0.003350541926920414, -0.017842845991253853, -0.003582592587918043, 0.004156875889748335, -0.022664153948426247, 0.010370486415922642, 0.01594637706875801, -0.016026508063077927, -0.009435607120394707, 0.024760955944657326, -0.03346869349479675, -0.0027862752322107553, 0.01037716493010521, 0.025241751223802567, -0.004794597160071135, 0.0018747675931081176, -0.040386803448200226, 0.011752773076295853, -0.020099913701415062, 0.008660992607474327, 0.02162243239581585, -0.004216975066810846, 0.0076192691922187805, -0.07495064288377762, 0.015225183218717575, -0.011886327527463436, -0.012734396383166313, 0.005111788399517536, 0.016413815319538116, 0.023185016587376595, -0.01366259902715683, -0.019699251279234886, 0.01061756256967783, -0.05462368577718735, 0.021929606795310974, -0.005492418073117733, -0.014196815900504589, -0.02287784218788147, 0.00992307998239994, 0.03688768297433853, 0.013248580507934093, 0.015225183218717575, 0.020580708980560303, -0.00407674303278327, -0.022984685376286507, -0.0036159809678792953, -0.0011477317893877625, -0.04196274280548096, 0.013575788587331772, -0.0235589686781168, -0.009869658388197422, 0.002123512327671051, -0.02087452821433544, 0.00585635332390666, -0.016360394656658173, -0.004577571526169777, -0.008560827001929283, -0.014063261449337006, -0.016867900267243385, 0.0017328662797808647, -0.00038062958628870547, 0.0022203391417860985, 0.03905126079916954, -0.018604105338454247, -0.01724185235798359, 0.012861273251473904, -0.0072920615784823895, -0.0054323188960552216, -0.01788291335105896, -0.021034792065620422, 0.01258080918341875, 0.018350353464484215, 0.008387206122279167, 0.02114163711667061, 0.014984785579144955, 0.00878119096159935, -0.013135059736669064, -0.00043196449405513704, -0.03718150034546852, -0.007058341521769762, 0.0010934753809124231, 0.009161820635199547, 0.013622532598674297, 0.03320158272981644, -0.004871390759944916, 0.016547370702028275, 0.016133353114128113, 0.004103453829884529, -0.004761208780109882, -0.0037795850075781345, 0.003876411821693182, 0.009362151846289635, -0.012560776434838772, -0.0202067568898201, 2.7571646569413133e-05, 0.010711049661040306, 0.008821257390081882, 0.00725867273285985, -0.004821307957172394, -0.012928050011396408, -0.019191743806004524, -0.020794395357370377, 0.012801174074411392, 0.01762915961444378, 0.006494075059890747, -0.035525426268577576, 0.01374273095279932, 0.026016365736722946, -0.010029923170804977, -0.02146216668188572, -0.006544157862663269, -0.013622532598674297, 0.011826228350400925, -0.012861273251473904, 0.013822863809764385, 0.005255359224975109, 0.021181702613830566, 0.007065019104629755, 0.00920188706368208, 0.010577496141195297, 9.201417924487032e-06, 0.015278604812920094, 0.009068332612514496, -0.0049748956225812435, -0.01185961626470089, -0.010110056027770042, -0.04353868216276169, -0.014156749472022057, 0.018029822036623955, -0.039772454649209976, -0.031492091715335846, 0.015318671241402626, -0.0036794194020330906, -0.015104984864592552, 0.010711049661040306, -0.0010792851680889726, 0.010470652021467686, 0.0024523898027837276, -0.0010550784645602107, 0.010804537683725357, -0.016547370702028275, -0.02403976395726204, 0.0067845555022358894, 0.02329185977578163, 0.039585478603839874, 0.01694803312420845, -0.020500576123595238, 0.03261394426226616, -0.019538985565304756, 0.028500474989414215, -0.027725860476493835, 0.025922877714037895, -0.0061468337662518024, -0.005198598839342594, -0.00815348606556654, -0.011372143402695656, -0.020487220957875252, 0.0025575635954737663, -0.009983179159462452, 0.003816312411800027, 0.011258622631430626, -0.0081668421626091, 0.05109785124659538, 0.030103126540780067, -0.007966510020196438, 0.00828036293387413, 0.0008697719895280898, -0.004898101557046175, 0.0077995676547288895, 0.006357181817293167, 0.021836118772625923, -0.018190087750554085, -0.004040015861392021, 0.002040040912106633, 0.004170231055468321, -0.0008384702377952635, -0.0024974641855806112, 0.0054323188960552216, -0.03250710293650627, 0.0027311842422932386, -0.017909623682498932, 0.009135110303759575, 0.04086759686470032, 0.01274107489734888, 0.008480694144964218, 0.009929757565259933, -0.015732688829302788, -0.016907967627048492, 0.033655669540166855, -0.006761183496564627, 0.01021689921617508, -0.004527488723397255, 0.018283575773239136, 0.014597478322684765, -0.02148887701332569, -0.026924535632133484, 0.006971531547605991, 0.012253601104021072, 0.005792915355414152, 0.020927948877215385, 0.04391263425350189, -0.0032887731213122606, 0.0170415211468935, -0.006236982997506857, -0.010624240152537823, -0.034109752625226974, 0.030477076768875122, -0.025028064846992493, -0.027538884431123734, 0.011171812191605568, 0.0190715454518795], "727acea5-6cc9-4807-b68d-cc9314661756": [0.015178064815700054, -0.003678809152916074, 0.013360781595110893, -0.006203948985785246, -0.0055845752358436584, -0.0017798494081944227, -0.03484829142689705, -0.0042539420537650585, 0.05028499662876129, -0.023985426872968674, 0.0009503306355327368, 0.020160282030701637, -0.009229352697730064, -0.018268128857016563, -0.0009120451868511736, -0.009971240535378456, 0.0002720395859796554, -0.002276709768921137, 0.030492257326841354, -0.014184344559907913, -0.011563915759325027, 6.572340498678386e-05, 0.005863633938133717, -0.030846184119582176, -0.017029380425810814, 0.006721228361129761, 0.005557349883019924, -0.006186933256685734, 0.01372832152992487, 0.012544024735689163, 0.016444038599729538, -0.023563435301184654, -0.005676460452377796, -0.00794296059757471, 0.003869385691359639, -0.0008201600285246968, 0.003101974492892623, 0.008916262537240982, -0.01999692991375923, 0.002521736780181527, 0.03585562855005264, 0.006084838882088661, 0.010944542475044727, 0.013340362347662449, 0.005652638152241707, 0.017805300652980804, -0.019901642575860023, 0.002547260606661439, -0.016525713726878166, 0.013687483966350555, -0.012720988132059574, 0.007514163386076689, -0.04255303367972374, -0.008712072856724262, -0.014864974655210972, -0.008045054972171783, -0.02414877898991108, -0.013517326675355434, 0.005853424314409494, -0.01312256045639515, 0.008657623082399368, 0.00778641551733017, -0.014715236611664295, -0.009828307665884495, -0.033378131687641144, 0.013864448294043541, -0.011407370679080486, -0.01329271774739027, -0.037053536623716354, -0.0014378323685377836, 0.029593823477625847, 0.03163571655750275, 0.010420456528663635, -0.006217561662197113, 0.02333202213048935, 0.000444111559772864, -0.02665349841117859, -0.030900634825229645, -0.005764942150563002, -0.001767938258126378, 0.0076094516552984715, -0.014007380232214928, 0.0057411203160882, -0.004145041108131409, 0.022596940398216248, -0.0008112267241813242, 0.00582619896158576, -0.01408905629068613, -0.021181227639317513, 0.0022324686869978905, 0.05265359207987785, 0.007384843192994595, 0.0023175475653260946, 0.037380240857601166, -0.015749795362353325, 0.013415231369435787, 0.017356082797050476, 0.0005891709588468075, 0.004362842999398708, -0.04655514284968376, -0.01671629026532173, 0.019466038793325424, -0.0002788458950817585, -0.00800421740859747, -0.03198964521288872, -0.013020466081798077, 0.020568661391735077, -0.01329271774739027, 0.015845082700252533, 0.0033861377742141485, -0.017083831131458282, 0.00581939285621047, 0.0006619133637286723, -0.028967643156647682, -0.02255610190331936, -0.01225135289132595, 0.05077505111694336, -0.025101661682128906, 0.005676460452377796, -0.004359439946711063, 0.019084885716438293, -0.015858696773648262, 0.01836341619491577, 0.009549248963594437, 0.010542970150709152, -0.016552940011024475, -0.014715236611664295, -0.006904998794198036, -0.004335617646574974, -0.01551838032901287, 0.041491247713565826, 0.010998992249369621, -0.00034605819382704794, -0.008106311783194542, -0.0031257965601980686, -0.009338253177702427, -0.003098571440204978, 0.010645064525306225, 0.008793748915195465, -0.021017877385020256, 0.016158172860741615, 0.001881944015622139, -0.0042573451064527035, -0.02212049812078476, 0.004839284345507622, 0.01760111004114151, -0.002370296511799097, -0.0005934248911216855, -0.01844509318470955, -0.02734774351119995, 0.006881176494061947, -0.023168670013546944, 0.012618893757462502, -0.03855092450976372, 0.0058704400435090065, 0.00978747010231018, -0.006210755556821823, 0.04620121419429779, -0.006629343144595623, -0.011121505871415138, -0.022297462448477745, 0.013299524784088135, 0.004730383399873972, -0.00794976670295, -0.002016368554905057, 0.03558337315917015, 0.005877246148884296, 0.02256971411406994, -0.01712466962635517, 0.005775151774287224, -3.948189987568185e-05, 0.014619948342442513, -0.03324200585484505, 0.028341462835669518, 0.01165239792317152, 0.021140391007065773, 0.0009664956596679986, -0.004087187349796295, 0.0006151199922896922, -0.012843501754105091, -0.023454535752534866, -0.028395913541316986, -0.004352633375674486, -0.00034754705848172307, -0.021113164722919464, -0.01229219138622284, 0.002491108374670148, 0.006901595741510391, 0.02047337219119072, 0.013313136994838715, 0.03030168078839779, 0.032534148544073105, 0.026081768795847893, 0.004730383399873972, -0.6163792014122009, -0.014402146451175213, -0.007309974171221256, 0.002137180417776108, 0.01672990247607231, 0.013803191483020782, 0.023822074756026268, 0.022678615525364876, -0.0012217321200296283, 0.01957494020462036, -0.01558644324541092, 0.015777019783854485, -0.02213411219418049, -0.010066528804600239, 0.02500637248158455, -0.04307031258940697, -0.02126290462911129, 0.006721228361129761, -0.018907921388745308, 0.02009221911430359, -0.02011944353580475, 0.0138916727155447, -0.004168863408267498, 0.01185658760368824, 0.019520489498972893, -0.004594257567077875, 0.0007116845226846635, -0.019357137382030487, -0.016471263021230698, 0.02621789649128914, -0.028967643156647682, 0.03653625771403313, 0.010175429284572601, 0.016158172860741615, 0.04916876554489136, -0.001999352825805545, -0.05180961266160011, -0.0016905165975913405, 0.010658676736056805, 0.0711667463183403, -0.020963426679372787, -0.012122033163905144, -0.004274360835552216, -0.007895315997302532, -0.006602118257433176, 0.001069441088475287, 0.005080908536911011, -0.01930268667638302, -0.03261582553386688, -0.001009885803796351, -0.004100800026208162, -0.01393931731581688, 0.0064251539297401905, -0.029321571812033653, 0.022596940398216248, 0.01312256045639515, 0.024284904822707176, -0.013701096177101135, -0.003370823571458459, 0.0016862626653164625, -0.02575506642460823, 0.013844029046595097, -0.022283850237727165, -0.02206604741513729, -0.024638831615447998, 0.005713894963264465, -0.04671849310398102, -0.012843501754105091, 0.009889564476907253, 0.013571776449680328, 0.009256578050553799, 0.004366246052086353, 0.007800028193742037, 0.005768345203250647, -0.003321477910503745, 0.03857814893126488, -0.006554474122822285, -0.006329865660518408, -0.0003196837496943772, 0.0022716049570590258, -0.008487464860081673, -0.0031802470330148935, 0.0012761825928464532, -0.008800555020570755, 0.010767578147351742, -0.01839064247906208, -0.01927546225488186, -0.030002202838659286, 0.00296414690092206, -0.016866030171513557, 0.00674505066126585, 0.01757388561964035, -0.003127498086541891, -0.04473105072975159, -0.010794803500175476, 0.05521276593208313, 0.008678041398525238, -0.005764942150563002, 0.013605807907879353, -0.004138235002756119, -0.01430685818195343, 0.007255523465573788, -0.017056606709957123, -0.008201600052416325, 0.0408378429710865, -0.0077523840591311455, -0.06011330708861351, -0.010978573933243752, 0.03394985944032669, -0.037761393934488297, 0.014075443148612976, 0.020187508314847946, -0.025496426969766617, -0.0061597079038619995, 0.023018931970000267, -0.03111843764781952, 0.005097924266010523, 0.008079086430370808, 0.015872308984398842, -0.0188126340508461, 0.024815795943140984, -0.004553419537842274, 0.011761299334466457, 0.002681685145944357, 0.009719407185912132, -0.0014574005035683513, 0.014987488277256489, -0.011808943003416061, -0.006663374602794647, -0.010502132587134838, -0.011911037378013134, -0.006615730468183756, 0.026272345334291458, -0.009324640966951847, 0.016920479014515877, -0.0191801730543375, 0.009923595935106277, -0.007595838978886604, -0.007412068545818329, 0.0027378371451050043, -0.020800074562430382, 0.016621002927422523, 0.006619133986532688, -0.004920959938317537, 0.024815795943140984, 0.0010549776488915086, -0.026354022324085236, -0.013238267973065376, -0.017478596419095993, 0.004318601917475462, 0.023209508508443832, -0.00767751457169652, -0.002113358350470662, 0.011625172570347786, -0.011026217602193356, 0.004825671669095755, 0.021589607000350952, -0.013803191483020782, 0.005945309530943632, 0.009338253177702427, 0.01207438949495554, 0.01000527199357748, -0.010726740583777428, -0.014824137091636658, -0.013374393805861473, -0.0061563048511743546, -0.0049345726147294044, 0.010944542475044727, -0.025550877675414085, -0.021616831421852112, 0.010740352794528008, -0.004328811541199684, -0.0075073568150401115, 0.0041076065972447395, 0.004961797967553139, 0.010890091769397259, 0.006826726254075766, 0.004563629161566496, -0.006840338930487633, 0.0023975216317921877, 0.02167128212749958, -0.000955435389187187, -0.00037945163785479963, -0.006850548088550568, 0.020255571231245995, -0.004226716700941324, 0.03424933925271034, 0.014456596225500107, -0.03321477770805359, -0.019084885716438293, -0.015545605681836605, 0.021997984498739243, 0.00800421740859747, 0.009242964908480644, 0.035365574061870575, 0.008678041398525238, 0.017070218920707703, 0.012509992346167564, 0.00033691219869069755, 0.012884339317679405, 0.0368901863694191, 0.007030915468931198, 0.00165903742890805, -0.009317834861576557, 0.03234357386827469, -0.03678128495812416, -0.0002950108901131898, -0.004910750780254602, 0.010577001608908176, -0.000224182746023871, 0.007085365708917379, -0.03310588002204895, -0.005904471501708031, -0.024366579949855804, 0.048433683812618256, 0.007759190164506435, 0.006581699009984732, -0.007214685901999474, -0.019915254786610603, 0.013551358133554459, -0.008957100100815296, -0.011073862202465534, 0.035447247326374054, -0.0225288774818182, -0.002770167076960206, 0.008412595838308334, -0.011359727010130882, 0.019711066037416458, 0.018948759883642197, -0.021058714017271996, -0.030764508992433548, -0.013299524784088135, -0.00021684469538740814, -0.009556055068969727, 0.014715236611664295, -0.037788618355989456, 0.02011944353580475, -0.007813640870153904, 0.014211569912731647, -0.004230119753628969, 0.019003210589289665, -0.0013816803693771362, 0.01874457113444805, -0.01885347068309784, 0.028967643156647682, 0.006850548088550568, 0.04701796919107437, 0.016920479014515877, -0.03296975418925285, 0.001208119560033083, -0.011625172570347786, -0.005914681125432253, -0.004383261781185865, 0.005809183232486248, 0.013980154879391193, -0.032479699701070786, 0.0106110330671072, -0.0024400611873716116, 0.013415231369435787, 0.026721563190221786, 0.024312129244208336, 0.03073728457093239, -0.0021831230260431767, 0.006026985123753548, -0.016621002927422523, -0.0012778842356055975, -0.01845870539546013, -0.01877179555594921, -0.0062583996914327145, -0.026707949116826057, -0.01247596088796854, -0.011693235486745834, 0.028831517323851585, -0.0086031723767519, -0.0031887548975646496, 0.0028484396170824766, 0.013462875969707966, 0.007936154492199421, 0.013966542668640614, -0.007888509891927242, 0.004104203078895807, -0.012659731321036816, 0.014225182123482227, -0.008698460645973682, 0.01555921882390976, 0.009535636752843857, -0.00794296059757471, 0.0027140150777995586, 0.02378123812377453, 0.0066871969029307365, 0.00593509990721941, -0.02003776840865612, 0.009018356911838055, -0.004655514378100634, -0.00531232263892889, 0.004369649104773998, 0.05518553778529167, -0.029321571812033653, -0.01875818334519863, 0.0012727794237434864, -0.00140975636895746, 0.010304749011993408, -0.010808415710926056, -0.02410794049501419, 0.0507478266954422, -0.013639839366078377, -0.008664429187774658, -0.009617311879992485, 0.018921533599495888, -0.030927861109375954, -0.01600843481719494, -0.012612087652087212, -0.0020316827576607466, -0.024774959310889244, -0.031227337196469307, -0.0038285478949546814, -0.008929874747991562, -0.021603219211101532, 0.029321571812033653, 0.0032295926939696074, 0.0020810284186154604, -0.03228912129998207, -0.002244379837065935, -0.006459185387939215, 0.000646173779387027, 0.004767818376421928, 0.00980108231306076, 0.009086419828236103, -0.021916309371590614, -0.003044120967388153, -0.024761345237493515, -0.017859749495983124, -0.009331447072327137, 0.00861678458750248, -0.0049311695620417595, 0.0024604799691587687, 0.01491942536085844, -0.009569668211042881, 0.025673391297459602, 0.004842687398195267, -0.016661839559674263, -0.03234357386827469, 0.014184344559907913, -0.021031489595770836, 8.066537702688947e-05, -0.00767751457169652, 0.020214732736349106, 0.0024009249173104763, 0.009317834861576557, 0.005622009746730328, 0.018132003024220467, 0.01877179555594921, 0.0019976512994617224, -0.023985426872968674, -0.0001196421217173338, 0.0007010496337898076, -0.013299524784088135, 0.01958855241537094, 0.010883285664021969, 0.037434689700603485, -0.01246915478259325, 0.04821588099002838, -0.007003690116107464, 0.03188074380159378, -0.007398455869406462, 0.01717912033200264, -0.0009188514668494463, -0.012870727106928825, 0.021126776933670044, -0.02866816706955433, 0.0026068156585097313, 0.01721995696425438, -0.008507884107530117, -0.016144560649991035, 0.010563388466835022, 0.015777019783854485, -0.02531946264207363, 0.002273306716233492, -0.016580164432525635, 0.02376762591302395, -0.017464984208345413, -2.796966873575002e-05, 0.0037570816930383444, -0.02331840805709362, -0.02904932014644146, -0.009760244749486446, -0.01592675969004631, -0.01291837077587843, -0.02248803898692131, -0.03182629123330116, -0.0334053561091423, -0.013633033260703087, -0.011836168356239796, -0.03228912129998207, 0.02940324693918228, -0.026095382869243622, -0.026830462738871574, 0.0049073477275669575, 0.01291837077587843, 0.003978286404162645, 0.019901642575860023, 0.0008933278149925172, -0.03607342764735222, 0.013142979703843594, -0.023849301040172577, 0.017818912863731384, -0.0016216026851907372, -0.012829889543354511, 0.011679623275995255, -0.00408378429710865, -0.007725158706307411, 0.01267334446310997, -0.011625172570347786, -0.01455188449472189, -0.007262330036610365, 0.0047848341055214405, -0.0020010543521493673, -0.03190796822309494, 0.009106839075684547, 0.014143506065011024, 0.017410533502697945, -0.00940631702542305, 0.00511153694242239, -0.020350858569145203, -0.00978066399693489, -0.020963426679372787, -0.018622057512402534, -0.01885347068309784, -0.009692181833088398, 0.0028739632107317448, 0.00794296059757471, 0.00919532123953104, -0.010951348580420017, 0.0017696399008855224, 0.013456069864332676, 0.005084311589598656, 0.003421870991587639, -0.022202175110578537, 0.004100800026208162, 0.013149785809218884, 0.011924650520086288, 0.010270717553794384, 0.0160356592386961, 0.008637203834950924, 0.025469202548265457, -0.029729949310421944, 0.02981162630021572, 0.01760111004114151, -0.0220932736992836, 0.015014713630080223, -0.016879642382264137, -0.020228344947099686, 0.0008984325686469674, 0.011366533115506172, -0.005012845154851675, 0.018295353278517723, -0.013864448294043541, 0.009120451286435127, -0.015001101419329643, -0.0077728028409183025, 0.00897751934826374, 0.028777066618204117, -0.01598121039569378, -0.03362315893173218, -0.00767070846632123, -0.0006215009489096701, 0.0075073568150401115, -0.009515217505395412, -0.003018597373738885, -0.02416239120066166, -0.02779695950448513, -0.0003532898845151067, 0.01268695667386055, -0.0037740974221378565, 0.0023771028500050306, -0.003995302598923445, -0.03220744431018829, 0.002693596063181758, -0.0045193880796432495, -0.025156112387776375, -0.007371230982244015, -0.026694336906075478, 0.01001888420432806, 0.015218903310596943, 0.00958328042179346, 0.012659731321036816, -0.011209988035261631, -0.016076497733592987, -0.004761011805385351, -0.003164932830259204, -0.03109121136367321, 0.008433015085756779, -0.01679796725511551, 0.01045448798686266, 0.015695344656705856, 0.016130948439240456, -0.002811004873365164, 0.005958922207355499, 0.022392751649022102, 0.0010558284120634198, -0.004628289025276899, -0.006054210476577282, -0.015082776546478271, -0.044322673231363297, 0.0057275076396763325, 0.008324113674461842, 0.0002013178018387407, 0.008079086430370808, -0.0014667592477053404, -0.008623591624200344, -0.01225815899670124, -0.001229389221407473, 0.03024723008275032, 0.011842974461615086, 0.03479384258389473, -0.004995829425752163, 0.03177184239029884, -0.00745971268042922, 0.0036720028147101402, 0.004444518592208624, 0.0005836408236064017, -0.011829362250864506, 0.03917710483074188, 0.018975984305143356, 0.010386425070464611, 0.030818959698081017, 0.003515457734465599, 0.01044768188148737, 0.0016343644820153713, 0.011244019493460655, -0.0006087390938773751, -0.020228344947099686, -0.004696351941674948, -0.03438546508550644, -0.038305897265672684, -0.037053536623716354, 0.005570962559431791, 0.00918851513415575, -0.01883985847234726, -0.009515217505395412, -0.0039646741934120655, 0.026776012033224106, -0.012142452411353588, -0.01957494020462036, 0.033840958029031754, -0.014783299528062344, 0.037434689700603485, -0.001120488392189145, 0.041954077780246735, 0.024679670110344887, 0.0026663709431886673, -0.00511834304779768, -0.035365574061870575, 0.009950821287930012, 0.007316780276596546, 0.008364951238036156, 0.057499684393405914, 0.005594784393906593, -0.01598121039569378, -0.007405262440443039, -0.0047814310528337955, -0.007493744138628244, -0.019724678248167038, 0.01591314561665058, 0.008085893467068672, -0.010148203931748867, -0.0072214920073747635, 0.009698987938463688, -0.04380539432168007, 0.025523651391267776, 0.019030435010790825, -0.015668120235204697, 0.012707375921308994, 0.015804246068000793, 0.021997984498739243, -0.0009018357377499342, -0.0023413696326315403, 0.01267334446310997, -0.008364951238036156, 0.010134591720998287, 0.005574365612119436, -0.017410533502697945, 0.0011791926808655262, 0.010311555117368698, -0.007133009843528271, 0.060331106185913086, 0.0114822406321764, -0.010379618965089321, 0.001056679175235331, 0.009767050854861736, 0.004168863408267498, -0.012666537426412106, -0.002244379837065935, 0.03571949899196625, 0.009276996366679668, -0.015804246068000793, -0.009365478530526161, 0.002550663659349084, 0.03198964521288872, 0.004461534321308136, 0.011985907331109047, 0.010903703980147839, -0.00745290657505393, -0.018880696967244148, 0.003750275354832411, -0.009617311879992485, -0.01760111004114151, -0.009161289781332016, -0.010202654637396336, -0.005843214690685272, -0.03237079828977585, -0.00777960941195488, 0.03109121136367321, -0.039068203419446945, -0.01795503869652748, -0.0114822406321764, -0.04742635041475296, 0.021902697160840034, 0.00039497853140346706, 0.023481760174036026, 0.015246128663420677, 0.0393676795065403, -0.01926185004413128, 0.009106839075684547, 0.03035612963140011, 0.006295834202319384, -0.007936154492199421, 0.0032176817767322063, -0.0025387525092810392, -0.017886975780129433, 0.030165553092956543, 0.008140343241393566, -0.02044614776968956, -0.07089449465274811, 0.019152948632836342, -0.007010496687144041, -0.012544024735689163, 0.021616831421852112, 0.003535876516252756, 0.019969705492258072, 0.00815395638346672, -0.004029334057122469, 0.008732492104172707, -0.00653405487537384, -0.000644046813249588, -0.010590613819658756, -0.004209700971841812, -0.02621789649128914, 0.017083831131458282, 0.0183770302683115, 0.0005023905541747808, 0.0010949646821245551, -0.020269183441996574, -0.029239896684885025, 0.013149785809218884, -0.0022869191598147154, -0.028532039374113083, -0.01512361504137516, -0.00876652356237173, -0.012938790023326874, -0.030165553092956543, -0.011713654734194279, 0.011468627490103245, -0.005853424314409494, 0.01588592119514942, 0.019833579659461975, -0.0022511861752718687, 0.012115227058529854, -0.026462921872735023, -0.014511046931147575, -0.018690120428800583, -0.03767971694469452, -0.011026217602193356, -0.01430685818195343, -0.026095382869243622, 0.039912186563014984, -0.011101087555289268, -0.02448909357190132, -0.011822556145489216, -0.025101661682128906, -0.020173894241452217, 0.0209225881844759, 0.00779322162270546, 0.012959209270775318, 0.01715189404785633, 0.00918851513415575, 0.007058140821754932, 0.012407897971570492, -0.007003690116107464, 0.001169834053143859, -0.013966542668640614, 0.008051861077547073, -0.017356082797050476, -0.011883812956511974, 0.01596759632229805, 0.015110001899302006, -0.021807407960295677, -0.01328591164201498, -0.00342697580344975, 0.011237213388085365, 0.01470162346959114, 0.004087187349796295, 0.019003210589289665, -0.017260795459151268, -0.013483294285833836, -0.012176483869552612, 0.008555528707802296, -0.0033912425860762596, -0.01142098382115364, -0.05167348310351372, -0.0065238457173109055, 0.024774959310889244, -0.011897425167262554, -0.00767070846632123, -0.0018172840354964137, -0.00604400085285306, -0.006438766606152058, 0.009093226864933968, 0.012108420953154564, 0.00430839229375124, 0.021875470876693726, 0.01044087577611208, 0.026816850528120995, -0.003937448840588331, 0.02201159857213497, 0.014116281643509865, 0.010161817073822021, 0.018322579562664032, -0.005274888128042221, 0.010318362154066563, -0.03773416578769684, 0.0062822215259075165, 0.015286966226994991, -0.0007159384549595416, -0.016566552221775055, 0.005938502959907055, -0.008650816977024078, -0.02368594892323017, -0.007160235196352005, 0.012135646305978298, -0.0008244139607995749, -0.015205290168523788, 0.013844029046595097, 0.028450364246964455, -0.020282795652747154, -0.024216841906309128, 0.003624358680099249, -0.008024636656045914, -0.005213631317019463, -0.031309012323617935, -0.011577528901398182, -0.0022971287835389376, 0.009290609508752823, -0.012006325647234917, 0.007418875116854906, -0.029675500467419624, -0.00130510947201401, 0.013197429478168488, 0.006445573177188635, 0.00302200042642653, 0.2391464114189148, 6.3244156081054825e-06, 0.006659971550107002, 0.016484877094626427, 0.004709964618086815, -0.013864448294043541, 0.03512054681777954, 0.008031442761421204, 0.01186339370906353, 0.013952929526567459, 0.005574365612119436, -0.01408905629068613, 0.004550016485154629, 0.0041076065972447395, -0.0030322098173201084, -0.02451631799340248, -0.031690165400505066, -0.028123661875724792, -0.009331447072327137, -4.081125734956004e-05, 0.0417090505361557, -0.0015645999228581786, 0.01225135289132595, -0.025482814759016037, 0.00470656156539917, -0.0003235123003832996, -0.02250165119767189, 0.03653625771403313, 0.020527822896838188, 0.011339307762682438, -0.001953410217538476, 0.02334563434123993, 0.0034422900062054396, 0.005839811637997627, -0.009324640966951847, -0.011734073981642723, 0.03645458072423935, 0.0054654646664857864, 0.018322579562664032, 0.013020466081798077, -0.0026034126058220863, -0.010120978578925133, -0.020677560940384865, 0.01638958789408207, -0.024802183732390404, -0.002196735702455044, -0.004675933159887791, -0.007405262440443039, 0.0043798587284982204, 0.01956132799386978, -0.009909983724355698, -0.00337592838332057, 0.025591716170310974, 0.04919598996639252, -0.005431433208286762, -0.01683880388736725, 0.016988543793559074, -0.015858696773648262, -0.017451371997594833, 0.01841786690056324, -0.005979340989142656, 0.02007860690355301, -0.03158126398921013, 0.013217848725616932, -0.0001380404137307778, 0.0035392798017710447, -0.002370296511799097, -0.010917317122220993, -0.014973876066505909, -0.01761472411453724, -0.004029334057122469, 0.012482767924666405, 0.0019857401493936777, -0.005707088857889175, -0.02864094078540802, -0.026912139728665352, 0.03716243803501129, 0.0013952930457890034, 0.017301633954048157, 0.041164547204971313, -0.010536164045333862, 0.01877179555594921, -0.0027633607387542725, -0.005237453617155552, 0.009018356911838055, -0.015205290168523788, 0.01103983074426651, -0.015014713630080223, -0.025033598765730858, -0.01350371353328228, 0.02500637248158455, 0.001169834053143859, 0.0009545845678076148, -0.029621049761772156, 0.009937209077179432, 0.005131955724209547, -0.0160356592386961, 0.009106839075684547, -0.01223774068057537, 0.0015731077874079347, -0.032098546624183655, 0.05080227926373482, 0.026721563190221786, 0.007051334250718355, -0.003961270675063133, 0.003358912654221058, 9.411846986040473e-05, 0.007697933353483677, 0.005914681125432253, -0.009174901992082596, -0.025183336809277534, -0.05494051054120064, -0.009896370582282543, -0.012441929429769516, -0.006619133986532688, 0.017274407669901848, 0.007201073225587606, -0.009134064428508282, -0.007167041767388582, 0.023141445592045784, 0.012333028949797153, -0.014824137091636658, -0.01312256045639515, 0.003654987085610628, 0.008848199620842934, -0.03261582553386688, -0.02447548136115074, -0.009181708097457886, -0.01455188449472189, -0.051346782594919205, 0.04252580925822258, -0.012190096080303192, 0.002744643483310938, -0.007105784956365824, 0.020650336518883705, 0.018567606806755066, 0.018690120428800583, 0.004155250731855631, 0.007119397632777691, -0.01127124484628439, -0.00326702743768692, 0.0019023629138246179, 0.015450317412614822, 0.018717344850301743, -0.004890331998467445, -0.004502372350543737, 0.0026000093203037977, 0.018240902572870255, -0.021575994789600372, -0.003654987085610628, -0.04383261874318123, -0.008446627296507359, 0.02368594892323017, -0.0009103436022996902, 0.010651870630681515, -0.0029062931425869465, -0.011584335006773472, -0.059949953109025955, 0.0006768021848984063, 0.021902697160840034, -0.010685902088880539, -0.007037721574306488, 0.019084885716438293, -0.018703732639551163, -0.019969705492258072, -0.02326395735144615, -0.17424146831035614, -0.024407418444752693, 0.0014471911126747727, -0.024720508605241776, 0.015763407573103905, 0.011005799286067486, 0.021453481167554855, -0.007391649764031172, -0.024461869150400162, 0.03277917578816414, 0.013353974558413029, 0.016539325937628746, -0.026354022324085236, 0.0044104871340096, -0.017260795459151268, 0.01225135289132595, -0.031662940979003906, 0.012407897971570492, 0.034167662262916565, 0.0012259860523045063, 0.048460908234119415, -0.014266019687056541, -0.01679796725511551, -0.0028603505343198776, 0.004447921644896269, 0.014238795265555382, -0.02330479584634304, 0.012013132683932781, -0.02331840805709362, -0.012217321433126926, -0.005982744041830301, 0.010474907234311104, 0.018526768311858177, -0.01875818334519863, 0.025074435397982597, -0.030465031042695045, -0.014565497636795044, 0.004720174241811037, -0.0002771443105302751, 0.0158995334059, 0.0003745596040971577, 0.018308967351913452, 0.011352920904755592, 0.017505822703242302, -0.006758663337677717, 0.022801129147410393, -0.009297415614128113, -0.0018615250010043383, 0.01919378712773323, -0.008541915565729141, 0.001140907290391624, -0.02368594892323017, -0.03394985944032669, -0.001186849782243371, 0.02742941863834858, 0.01022307388484478, 0.001721995766274631, 0.02823256328701973, -0.009549248963594437, 0.01956132799386978, 0.022583328187465668, -0.03816977143287659, 0.005332741886377335, -0.011904231272637844, -0.03068283386528492, -0.009855533018708229, 0.0016275582602247596, 0.01024349220097065, -0.028314238414168358, -0.0025966062676161528, 0.005996356718242168, -0.006765469443053007, -0.01834980398416519, -0.03024723008275032, 0.019724678248167038, 0.0002728903782553971, -0.010366005823016167, 0.013605807907879353, 0.021004265174269676, -0.02163044363260269, -0.004287973511964083, 0.02457076869904995, 0.020337246358394623, 0.0017526241717860103, -0.003641374409198761, 0.035828400403261185, -0.013530938886106014, 0.0058704400435090065, -0.005598187912255526, -0.001967022893950343, 0.035420022904872894, -0.015395866706967354, -0.024298517033457756, -0.02496553584933281, 0.012033551000058651, 0.0009707495919428766, 0.005707088857889175, 0.01022987999022007, -0.014973876066505909, -0.004413890186697245, 0.016144560649991035, 0.0013365886406973004, -0.03242524713277817, 0.0051932125352323055, 0.03032890520989895, 0.029621049761772156, 0.016552940011024475, 0.0351477712392807, 0.02571422979235649, -0.014633560553193092, -0.015423092059791088, 0.03310588002204895, 0.020241957157850266, -0.003644777461886406, 0.03857814893126488, 0.019765516743063927, 0.00490054115653038, 0.00025693810312077403, 0.020282795652747154, 0.007861284539103508, -0.024720508605241776, -0.016280686482787132, -0.004270957782864571, 0.008950293995440006, 0.006908401846885681, -0.020555047318339348, -0.05265359207987785, 0.0061597079038619995, 0.020228344947099686, 0.02945769764482975, -0.004383261781185865, 0.030818959698081017, 0.004812059458345175, 0.023917363956570625, 0.002411134308204055, 0.0277833454310894, -0.012612087652087212, -0.01551838032901287, 0.013626227155327797, 0.006489813793450594, 0.0041144127026200294, 0.009909983724355698, 0.009120451286435127, -0.02501998469233513, -0.0023175475653260946, 0.023195894435048103, 0.02133096754550934, 0.013639839366078377, -0.02864094078540802, -0.023141445592045784, -0.019738290458917618, 0.0031972627621144056, -0.013551358133554459, 0.03669960796833038, 0.010699515230953693, -0.0053361449390649796, 0.015300578437745571, -0.00448875967413187, 0.00021620660845655948, 0.0036141490563750267, -0.015463930554687977, -0.010291136801242828, -0.024352967739105225, -0.03808809444308281, 0.015300578437745571, 0.005587978288531303, 0.01084244716912508, -0.01128485705703497, 0.007139816414564848, -0.0023498774971812963, -0.04660959169268608, -0.003695824882015586, -0.016512101516127586, 0.00978066399693489, 0.004944782238453627, -0.011325695551931858, -0.04821588099002838, -0.0063979290425777435, -0.016130948439240456, -0.018526768311858177, 0.021399030461907387, 0.004413890186697245, 0.0034286773297935724, 0.01805032603442669, -0.03645458072423935, 0.03953103348612785, 0.009059195406734943, -0.0007342303870245814, -0.02333202213048935, 0.030029427260160446, 0.007235104683786631, 0.010086947120726109, 0.002373699564486742, 0.0017798494081944227, 0.006649762392044067, -0.0033435984514653683, -0.02783779613673687, -0.0024009249173104763, -0.025564489886164665, 0.019738290458917618, -0.020201120525598526, 0.0011706848163157701, -0.0027412401977926493, -0.012863921001553535, 0.02040530927479267, 0.013639839366078377, -0.01919378712773323, -0.021875470876693726, 0.021358191967010498, -0.024284904822707176, 0.012176483869552612, 0.005533528048545122, -0.0022001387551426888, -0.0006019328138791025, 0.004291376564651728, -0.03596452623605728, -0.007303167600184679, 0.014511046931147575, 0.025632552802562714, -0.01723356917500496, -0.012632505968213081, -0.02578229270875454, -0.0032653259113430977, 0.001591825159266591, 0.0037026312202215195, 0.01678435318171978, -0.014864974655210972, 0.0007818745216354728, -0.07813640683889389, 0.004029334057122469, 0.009297415614128113, -0.007071753032505512, -0.02501998469233513, 0.003025403479114175, 0.01267334446310997, -0.007262330036610365, -0.020677560940384865, -0.001229389221407473, -0.03751636669039726, 0.02447548136115074, -0.006881176494061947, -0.004216507542878389, -0.027551932260394096, 0.0019517085747793317, 0.03027445450425148, 0.01144140213727951, 0.013469682075083256, 0.010359199717640877, -0.009487992152571678, -1.2250024155946448e-05, 0.006088241934776306, 0.023495372384786606, -0.025632552802562714, 0.021099552512168884, -0.013333556242287159, 0.025550877675414085, -0.006023582071065903, -0.011509465985000134, 0.00674505066126585, -0.0060133724473416805, -0.001784954103641212, 0.017873363569378853, -0.011386952362954617, -0.032534148544073105, -0.0023005318362265825, 0.006659971550107002, 0.014987488277256489, 0.04051114246249199, -0.03852370008826256, -0.01310894824564457, 0.03201686963438988, 0.021916309371590614, 0.0031717391684651375, 0.006765469443053007, -0.007160235196352005, 0.005846617743372917, 0.01712466962635517, -0.002303935121744871, 0.036155104637145996, -0.014007380232214928, 0.006605521310120821, -0.012659731321036816, -0.02168489433825016, -0.046419017016887665, -0.0065680863335728645, -0.011080668307840824, -0.0049277665093541145, -0.009392703883349895, 0.04091951996088028, 0.013047691434621811, 0.02295086905360222, 0.0032227865885943174, -0.003709437558427453, -0.012816276401281357, -0.026326796039938927, -0.011536690406501293, 0.032915301620960236, -0.03893207758665085, -0.02212049812078476, 0.01588592119514942, 0.010093754157423973, 0.018690120428800583, -0.03283362463116646, 0.02003776840865612, 0.010114172473549843, -0.014892200008034706, -0.017396921291947365, 0.006700809579342604, 0.004723577294498682, -0.007010496687144041, -0.028096435591578484, 0.027102716267108917, 0.025224175304174423, 0.01762833632528782, -0.02244720049202442, 0.009875952266156673, 0.0011732372222468257, -0.017260795459151268, -0.013537744991481304, 0.010924123227596283, 0.0179414264857769, 0.018254516646265984, 0.03814254701137543, 0.02040530927479267, -0.0004496416659094393, -0.008698460645973682, 0.031281787902116776, -0.012836695648729801, -0.0011230406817048788, -0.0007657095557078719, 0.0004049752897117287, -0.027089102193713188, -0.0012634207960218191, -0.00794976670295, -0.006186933256685734, -0.02126290462911129, 0.009542442858219147, 2.9794211968692252e-06, -0.022311074659228325, -0.0016820087330415845, 0.0005742821958847344, 0.022760290652513504, -0.0028637538198381662, -0.004437712486833334, -0.0010320063447579741, -0.030519481748342514, -0.03324200585484505, 0.005948712583631277, 0.007085365708917379, 0.02828701213002205, 0.0037604847457259893, -0.023059768602252007, 0.014061830937862396, -0.019534101709723473, 0.014388533309102058, -0.006898192223161459, 0.025972869247198105, -0.008072280324995518, -0.007725158706307411, 0.017519434913992882, 0.0024485690519213676, -0.004199491813778877, 0.006333268713206053, 0.029348796233534813, -0.005036667454987764, -0.01207438949495554, -0.008895843289792538, 0.06294473260641098, 0.035447247326374054, 7.774079131195322e-05, -0.007548194844275713, -0.0028773664962500334, 0.003910223487764597, 0.012564443051815033, 0.01711105741560459, -0.008228825405240059, -0.029947752133011818, 0.011808943003416061, 0.001477819518186152, -0.001898959744721651, -0.0049515883438289165, -0.026776012033224106, 0.008739298209547997, -0.016444038599729538, 0.014061830937862396, -0.008201600052416325, 0.01753304712474346, 0.054178204387426376, 0.00553012453019619, 0.0450577549636364, 0.015218903310596943, -0.006898192223161459, -0.012537217698991299, 0.030846184119582176, -0.003329985775053501, 0.0029522357508540154, -0.0022375734988600016, 0.011897425167262554, 0.00794976670295, -0.04051114246249199, -0.02612260729074478, 0.00021588755771517754, 0.009086419828236103, -0.011012605391442776, -0.014048217795789242, 0.024244066327810287, -0.006608924362808466, 0.006367300637066364, -0.0013969945721328259, -0.021426254883408546, -0.030982309952378273, -0.021058714017271996, -0.011720460839569569, -0.021412642672657967, -0.003600536612793803, 0.02489747293293476], "ba7d40e1-7292-480b-818c-c15a39187f6c": [0.005812993273139, 0.002813700819388032, -0.008610122837126255, -0.02025599405169487, -0.02692403458058834, -0.016279032453894615, -0.01845310442149639, -0.012030310928821564, 0.03807278349995613, -0.038656070828437805, 0.016027158126235008, 0.0014913608320057392, -0.0033936745021492243, -0.010823965072631836, -0.008391390554606915, 8.979235281003639e-05, 0.002193957567214966, 0.0012709707953035831, 0.024299239739775658, -0.022681940346956253, -0.009710416197776794, -0.006658097729086876, 0.013090834021568298, -0.0374629832804203, -0.021117668598890305, 0.011142122559249401, 0.015138969756662846, -0.011115609668195248, 0.01769748143851757, 0.0008649892988614738, 0.009915892034769058, -0.020865794271230698, -0.014038676396012306, -0.011500049382448196, 0.009538081474602222, 0.0038775382563471794, 0.00015783568960614502, -0.0002466959413141012, -0.023676181212067604, -0.0017399209318682551, 0.024789731949567795, 0.013720519840717316, 0.00792741123586893, 0.01646462269127369, -0.011877860873937607, 0.014343577437102795, -0.034254901111125946, 0.02493555285036564, 0.0003291350440122187, 0.02477647364139557, -0.01817471720278263, 0.008596866391599178, -0.038496993482112885, -0.027175908908247948, -0.01845310442149639, 0.011857975274324417, -0.023106150329113007, -0.002972779329866171, 0.008318479172885418, -0.020070401951670647, -0.009292835369706154, 0.02160816080868244, -0.035978250205516815, -0.01108909584581852, -0.00703259464353323, 0.010306959971785545, -0.029190901666879654, -0.002046478446573019, -0.022841019555926323, -0.011162007227540016, 0.020799512043595314, 0.01638508401811123, 0.00425534974783659, 0.006190804298967123, 0.02384851686656475, -0.006860259920358658, -0.02196608856320381, -0.026513081043958664, 0.015311304479837418, -0.007476688828319311, 0.009743557311594486, -0.010459410957992077, 0.00689340103417635, -0.017564916983246803, 0.011367483995854855, 0.007907526567578316, -0.008172657340765, 0.0012345153372734785, -0.019407575950026512, -0.013382477685809135, 0.006744265090674162, -0.002271839650347829, 0.011957399547100067, 0.004967888817191124, -0.00012283014075364918, 0.0018194601871073246, -0.0026877636555582285, 0.012931755743920803, -0.004099585115909576, -0.040618039667606354, 0.003592522582039237, 0.01422426849603653, -0.015324560925364494, 0.0018592298729345202, -0.03791370615363121, -0.007708678487688303, 0.027149396017193794, -0.004908234346657991, 0.007337495218962431, -0.009942405857145786, -0.020362045615911484, 0.014211012050509453, 0.023397793993353844, -0.015748770907521248, -0.04382612183690071, -0.007291097193956375, 0.03292924538254738, -0.026738442480564117, 0.0003720116801559925, 0.006306799128651619, 0.017392581328749657, -0.012898613698780537, 0.02321220189332962, 0.030304452404379845, 0.0001260407007066533, 0.018466360867023468, -0.0425800085067749, -0.005511406809091568, -0.00835162028670311, -0.023556873202323914, 0.06925217062234879, 0.0038543392438441515, 0.010790823958814144, 0.0019387691281735897, -0.012812446802854538, -0.004855208098888397, -0.0011268059024587274, -0.004619904328137636, -0.004265292081981897, -0.016729753464460373, 0.01474127359688282, 0.006979568861424923, -0.0030142059549689293, -0.012978153303265572, 0.005100454203784466, 0.020839281380176544, 0.01406518928706646, -0.0051137106493115425, -0.009836353361606598, -0.006200747098773718, 0.005494836252182722, -0.03783416748046875, -0.0060085272416472435, -0.01946060173213482, 0.005421925336122513, -0.00026036673807539046, 0.02900531142950058, 0.02767965756356716, -0.006270343903452158, -0.014834068715572357, -0.005564433056861162, -0.005368899088352919, 0.012931755743920803, -0.014979890547692776, -0.012626854702830315, 0.045841116458177567, -0.003973647952079773, 0.022880788892507553, -0.014330320060253143, 0.006548731122165918, -0.00039376068161800504, 0.010035200975835323, -0.04043244943022728, 0.02456437051296234, -0.00484526576474309, 0.010837222449481487, -0.014913608320057392, 0.015841566026210785, 0.00010936646140180528, -0.013196886517107487, -0.015576435253024101, -0.025783970952033997, -0.015231764875352383, 0.003927250392735004, -0.010234049521386623, -0.03552752733230591, 0.021117668598890305, 0.009087358601391315, 0.013203514739871025, -0.012573828920722008, 0.015324560925364494, 0.033777665346860886, 0.010916761122643948, 0.0008575324900448322, -0.612982451915741, -0.01176518015563488, 0.0026910777669399977, -0.00025083860964514315, 0.024034108966588974, 0.03311483934521675, 0.013283053413033485, 0.028103865683078766, -0.006744265090674162, 0.021077899262309074, -0.019712476059794426, 0.002790501806885004, -0.03131194785237312, -0.0036256639286875725, 0.011838090606033802, -0.034732136875391006, -0.0051634227856993675, 0.00939225871115923, 0.0054848939180374146, 0.018439847975969315, -0.04666302353143692, 0.019288266077637672, -0.014621964655816555, -0.013614467345178127, 0.008762573823332787, 0.012388236820697784, 0.00812625978142023, -0.024312496185302734, -0.018042152747511864, 0.0421823114156723, -0.04064455255866051, 0.03163010627031326, 0.029747677966952324, 0.02980070374906063, 0.04663651064038277, -0.01184471882879734, -0.06188153102993965, 0.017326299101114273, -0.004918176680803299, 0.0319482646882534, -0.046371378004550934, -0.0114271380007267, -0.014873838983476162, -0.01829402521252632, 0.010101484134793282, 0.014926864765584469, 0.019606424495577812, -0.014648477546870708, -0.007463432382792234, 0.007178416941314936, 0.011917630210518837, -0.007774961180984974, 0.018917083740234375, -0.013017922639846802, 0.024909039959311485, 0.016027158126235008, 0.02852807566523552, -0.033220890909433365, -0.0014466199791058898, -0.003967019729316235, -0.020600663498044014, 0.008596866391599178, -0.023715950548648834, -0.01785656064748764, -0.01906290464103222, 0.031789183616638184, -0.028793206438422203, -0.015894591808319092, 0.003821197897195816, 0.003907365258783102, 0.012215902097523212, 0.0177372507750988, -0.0016305545577779412, 0.0016189550515264273, 0.004838637541979551, 0.04077712073922157, 0.010903504677116871, -0.011891117319464684, -0.010472667403519154, 0.007847871631383896, 0.016650214791297913, -0.010658258572220802, 0.015841566026210785, -0.03367161378264427, 0.01726001687347889, -0.02553209662437439, -0.01873149164021015, -0.019195470958948135, 0.009213295765221119, 0.00741040613502264, 0.004613276105374098, 0.012958268634974957, 0.011639242991805077, -0.038974229246377945, 0.0067873490042984486, 0.03823186457157135, -0.0036985748447477818, 0.008278709836304188, 0.010678143240511417, -0.007145275361835957, -0.0204946119338274, 0.0010406384244561195, 0.013349336571991444, -0.008437788113951683, 0.0484924241900444, -0.0016686670714989305, -0.05050741881132126, -0.0013281396823003888, 0.025836998596787453, -0.03279668092727661, 0.006744265090674162, 0.00477566896006465, -0.012931755743920803, -0.02469693496823311, 0.010399756021797657, -0.02767965756356716, -0.008172657340765, -0.0073109823279082775, 0.016027158126235008, -0.018506130203604698, 0.022827763110399246, -0.004484024830162525, 0.013070949353277683, 0.0017100936966016889, -0.006489076651632786, 0.0019404261838644743, 0.006800605449825525, 0.0008140344289131463, 0.0028236431535333395, 0.010413012467324734, 0.00024048193881753832, -0.008484185673296452, 0.029827216640114784, -0.008576981723308563, 0.012759420089423656, 0.007430291268974543, 0.012116477824747562, -0.0071253906935453415, 0.027626629918813705, -0.006525532342493534, -0.02704334259033203, -0.007078992668539286, 0.006866888143122196, -0.016279032453894615, 0.0073109823279082775, -0.02733498625457287, -0.015218508429825306, -0.002096190582960844, -0.013919367454946041, 0.0031915120780467987, 0.01356144156306982, -0.018121691420674324, -0.004192381165921688, 0.02773268334567547, -0.007238071411848068, -0.0018144890200346708, 0.00032664946047589183, -0.005130281206220388, -0.01525827869772911, -0.004871778655797243, -0.006200747098773718, -0.001995109487324953, -0.022549375891685486, -0.007324238773435354, -0.014714759774506092, -0.022045627236366272, -0.011831462383270264, -0.00616429140791297, -0.024617396295070648, -0.03727739304304123, 0.007940667681396008, 0.0024756588973104954, -0.011055954732000828, 0.019566653296351433, 0.007755076512694359, -0.007516458630561829, -0.007085620891302824, 0.0157752837985754, -0.002500514965504408, 0.005740081891417503, 0.0034400722943246365, 0.009180154651403427, 0.002425946993753314, -0.003007577732205391, 0.005438495893031359, 0.03351253643631935, 0.01934129372239113, 0.010989672504365444, -0.025624893605709076, -0.01965945027768612, 0.0034400722943246365, 0.03552752733230591, 0.00944528542459011, 0.005186621565371752, 0.014250781387090683, 0.01777702197432518, 0.009511567652225494, 0.006866888143122196, -0.007688793819397688, 0.01010811235755682, 0.03807278349995613, -0.002006708877161145, 0.003950449172407389, -0.0028236431535333395, 0.02309289388358593, -0.02273496799170971, -0.008113003335893154, -0.013230027630925179, 0.001809517852962017, 0.014078446663916111, -0.02041507326066494, -0.04053850099444389, 0.0027358185034245253, -0.012679881416261196, 0.030251426622271538, 0.006184176076203585, -0.018081922084093094, 0.0014507626183331013, -0.010187651962041855, 0.012414750643074512, 0.014396603219211102, -0.0010986358392983675, 0.023225458338856697, -0.027653144672513008, -0.014317063614726067, 0.02565140649676323, -0.013998907059431076, 0.027997814118862152, 0.0179360993206501, -0.022549375891685486, -0.020839281380176544, -0.016279032453894615, 0.00803346373140812, 0.016398340463638306, 0.027918275445699692, -0.04037942364811897, 0.020640434697270393, -0.018466360867023468, 0.02460413984954357, 0.004659674130380154, 0.028315970674157143, -0.01977875828742981, -0.00036766187986359, -0.004898292012512684, 0.03576614707708359, 0.00996891874819994, 0.0661766529083252, 0.00689340103417635, -0.03184220939874649, 0.013760289177298546, -0.018121691420674324, -0.009915892034769058, -0.013760289177298546, 0.015072686597704887, 0.006260401103645563, -0.018068665638566017, 0.005004344042390585, 0.012010426260530949, 0.009677275083959103, 0.038258377462625504, 0.01422426849603653, 0.02733498625457287, 0.014476142823696136, -0.002729190280660987, -0.015138969756662846, -0.02001737616956234, 0.0010157824726775289, -0.0014317063614726067, -0.008987934328615665, -0.01817471720278263, -0.010499180294573307, 0.005862704943865538, 0.028024327009916306, -0.020110171288251877, -0.005978699773550034, 0.008557097055017948, 0.015072686597704887, 0.02001737616956234, 0.020348789170384407, 0.004759097937494516, -0.0074833170510828495, -0.008338363841176033, 0.008457672782242298, -0.0035096690990030766, -0.006068181712180376, 0.009372374042868614, -0.01922198385000229, -0.0003177426988258958, 0.007708678487688303, 0.001597413094714284, 0.012766048312187195, 0.011367483995854855, -0.0026479940861463547, -0.0034135591704398394, -0.0002912296331487596, -0.017206989228725433, 0.04067106544971466, -0.028634127229452133, -0.013773545622825623, -0.0016371827805414796, 0.007629139348864555, -0.0001908734702738002, -0.021846778690814972, -0.006296856794506311, 0.05864693596959114, 0.001143376575782895, -0.01997760683298111, -0.021343030035495758, 0.014237524941563606, -0.010320217348635197, -0.018280768766999245, -0.019712476059794426, -0.007881013676524162, -0.01950037106871605, -0.008623379282653332, 0.0034433864057064056, 0.005050742067396641, -0.001661210204474628, 0.016080183908343315, 0.011340970173478127, -0.01753840409219265, -0.022403553128242493, 0.0018343738047406077, -0.005319186951965094, 0.015748770907521248, 0.005832877941429615, 0.014157985337078571, 0.022270988672971725, -0.011029441840946674, -0.004149297252297401, -0.02884623222053051, -0.005382155533879995, -0.01544386986643076, -3.176909376634285e-05, -0.0033157921861857176, -0.003890794701874256, -0.0028816405683755875, -0.011195148341357708, 0.03160359337925911, -0.013481901958584785, -0.00792741123586893, -0.014900351874530315, 0.012779304757714272, -0.00959110725671053, 0.023119406774640083, -0.006336626596748829, 0.016769524663686752, 0.011175263673067093, -0.011771808378398418, 0.0003210568393114954, 0.015695743262767792, 0.007529715076088905, 0.004189067054539919, -0.012852216139435768, -0.005978699773550034, 0.0016752952942624688, -0.016915345564484596, 0.03844396770000458, 0.025558609515428543, 0.03709179908037186, -0.010399756021797657, 0.04719328507781029, 0.009557966142892838, 0.028819719329476357, 0.0008906738366931677, 0.008881881833076477, 0.004023360088467598, -0.0036157213617116213, 0.010353358462452888, -0.037171341478824615, 0.013680749572813511, 0.006784034892916679, -0.008258825168013573, -0.02652633748948574, 0.022867532446980476, 0.02293381467461586, -0.022085396572947502, 0.0033207633532583714, -0.002972779329866171, 0.018439847975969315, -0.024219699203968048, 0.017366068437695503, -0.0012428007321432233, -0.02380874752998352, -0.0008550468483008444, -0.008915023878216743, -0.014940121211111546, 0.009942405857145786, -0.021647930145263672, -0.03131194785237312, -0.01454242505133152, -0.009856238029897213, -0.01166575588285923, -0.010545577853918076, 0.024909039959311485, -0.03828489035367966, -0.02160816080868244, 0.0005721026100218296, 0.011082467623054981, 0.016477879136800766, 0.013210142962634563, 0.02121046558022499, -0.030304452404379845, 0.033141352236270905, -0.004918176680803299, -0.0036024649161845446, 0.007755076512694359, -0.026155155152082443, 0.020123429596424103, 0.0013480244670063257, -0.01646462269127369, 0.014860582537949085, -0.028395509347319603, 0.0025203998666256666, -0.0017962612910196185, 0.013249912299215794, -0.002193957567214966, -0.008424531668424606, 0.01544386986643076, 0.011632614769041538, 0.01294501218944788, 0.005925673525780439, 0.013879598118364811, -0.007635767571628094, -0.002972779329866171, -0.023782234638929367, -0.01885080151259899, -0.017843304201960564, -0.023715950548648834, 0.010167766362428665, 0.021382799372076988, 0.02093207836151123, 0.010220793075859547, 0.02313266322016716, 0.008948164992034435, -0.004586763214319944, 0.012686509639024734, -0.018638696521520615, 0.005266160704195499, 0.008417903445661068, 0.018824288621544838, 0.0017299785977229476, 0.019076162949204445, -0.013694006949663162, 0.003960391506552696, -0.0433754026889801, 0.031179383397102356, 0.01938106305897236, -0.01076431106775999, 0.005869333166629076, -0.026738442480564117, -0.036773644387722015, -0.037330418825149536, -0.0028634127229452133, 0.008755944669246674, 0.017909586429595947, -0.011002928949892521, -0.008861997164785862, -0.029456034302711487, -0.01364098023623228, -0.026751698926091194, 0.037171341478824615, -0.021422570571303368, -0.034732136875391006, -0.009935777634382248, 0.0012452863156795502, 0.0020531066693365574, 0.0027838735841214657, 0.0007415377185679972, -0.025664662942290306, -0.010658258572220802, -0.018042152747511864, 0.008769202046096325, 0.007357379887253046, 0.012938383966684341, 0.007642395794391632, -0.031418003141880035, -0.007065736223012209, 0.010459410957992077, -0.02172747068107128, -0.00782798696309328, -0.026234693825244904, 0.017843304201960564, 0.003980276174843311, 0.036137331277132034, 0.011142122559249401, 0.010459410957992077, -0.0031981405336409807, 0.004848579876124859, 0.0029396379832178354, -0.03104681894183159, 0.004659674130380154, -0.0020746486261487007, 0.013196886517107487, 0.017233502119779587, 0.0055710612796247005, 0.0254127886146307, 0.0028899258468300104, 0.0036985748447477818, 0.0202957633882761, -0.020826024934649467, 0.02237704023718834, -0.007821358740329742, -0.041333895176649094, -0.006933170836418867, -0.0022353841923177242, -0.009670646861195564, -0.0056870561093091965, -0.01902313530445099, -0.014621964655816555, 0.0013206828152760863, 0.005266160704195499, 0.017790278419852257, 0.01729978621006012, 0.03383069112896919, -0.010611861012876034, 0.02160816080868244, -0.0009337575756944716, -0.016159722581505775, -0.0035560671240091324, -0.0033124780748039484, -0.010837222449481487, 0.03223990648984909, -0.0046563600189983845, 0.006134464405477047, 0.017432350665330887, -0.004281862638890743, 0.004073072224855423, 0.0021326460409909487, 0.0362698957324028, -0.020640434697270393, -0.030543070286512375, -0.011261431500315666, -0.05018926411867142, -0.012176132760941982, -0.01926175318658352, 0.0008649892988614738, 0.0016835806891322136, -0.006436050403863192, 0.00011288772657280788, 0.014714759774506092, 0.011340970173478127, -0.004719328600913286, -0.016239263117313385, 0.024551114067435265, -0.0048419516533613205, 0.03592522442340851, -0.002298352774232626, 0.022589145228266716, 0.010532321408390999, 0.009286207146942616, -0.013170373626053333, -0.046556971967220306, -0.021183952689170837, -0.0025137714110314846, 0.014555681496858597, 0.0508255772292614, 0.006515589542686939, -0.03823186457157135, -0.015801796689629555, -0.00017885972920339555, -0.007430291268974543, -0.024153416976332664, 0.022324014455080032, 0.04143994674086571, -0.019447345286607742, -0.018320539966225624, 0.001791290007531643, -0.03788719326257706, 0.029747677966952324, -0.004271920304745436, -0.010611861012876034, -0.009710416197776794, -0.00323625304736197, 0.02176724001765251, 0.008179285563528538, 0.005160108674317598, 0.005799736361950636, 0.0022502976935356855, 0.03576614707708359, 0.013342708349227905, -0.020441586151719093, -0.029853729531168938, 0.01737932488322258, 0.0023464076220989227, 0.03682667016983032, -0.007503202185034752, -0.008610122837126255, 0.009034332819283009, 0.015364330261945724, -0.0027341614477336407, -0.01298478152602911, 0.005408668424934149, 0.03475864976644516, -0.01906290464103222, -0.0020365361124277115, -0.0015178739558905363, 0.011155379004776478, 0.012958268634974957, -0.0065023330971598625, 0.005083883181214333, 0.006190804298967123, -0.005660542752593756, -0.016796037554740906, 0.018307283520698547, -0.02420644275844097, 0.0013819943415001035, -0.009571222588419914, -0.0011591187212616205, 4.6812157961539924e-05, -0.021714214235544205, -0.005491522140800953, 0.02404736541211605, -0.031577080488204956, -0.019831784069538116, -0.015138969756662846, -0.05376853048801422, 0.0040830145590007305, 0.012096593156456947, -0.0011044355342164636, 0.01581505313515663, 0.037940219044685364, -0.020759742707014084, 0.005796422250568867, 0.02073322981595993, 0.011433766223490238, -0.0016189550515264273, 0.024431804195046425, 0.002628109185025096, -0.03520937263965607, 0.023039868101477623, -0.004467454273253679, -0.007098877336829901, -0.04159902408719063, 0.009292835369706154, -0.0029976351652294397, -0.006731008645147085, 0.022430066019296646, 0.01214299164712429, 0.004361401777714491, 0.013382477685809135, -0.0035096690990030766, -0.03147102892398834, -0.00949168298393488, -0.008265453390777111, -0.011460279114544392, 0.020189711824059486, -0.005001029931008816, 0.025903280824422836, 0.007774961180984974, 0.008232311345636845, -0.012640111148357391, -0.019434088841080666, -0.02868715487420559, -0.0011756893945857882, -0.017286529764533043, -0.020799512043595314, -0.008305222727358341, -0.025611637160182, -0.0005107910837978125, -0.019712476059794426, -0.004855208098888397, 0.007450175937265158, -0.0052993022836744785, 0.014568937942385674, 0.014330320060253143, -0.006515589542686939, 0.008795714937150478, -0.022960327565670013, -0.0159476175904274, -0.026314232498407364, -0.02357012964785099, -0.003390360390767455, -0.004911548458039761, -0.019990863278508186, 0.043481454253196716, -0.018227742984890938, -0.012381608597934246, -0.03674713149666786, -0.006886772811412811, -0.028899258002638817, 0.0002796301560010761, -0.0034268158487975597, 0.012872100807726383, 0.014038676396012306, 0.025028347969055176, -0.00578316580504179, 0.013408990576863289, -0.009584479033946991, -0.028422024101018906, -0.015298048034310341, -0.005027542822062969, -0.01993783749639988, -0.011579588055610657, 0.00633331248536706, 0.020428329706192017, -0.01094990223646164, -0.005030857399106026, 0.003940506838262081, -0.013853085227310658, 0.018758004531264305, 0.02368943765759468, 0.009975546970963478, 0.010704657062888145, -0.012713022530078888, -0.01138736866414547, -0.005349013954401016, -0.010883620008826256, -0.00762251066043973, -0.03372463956475258, 0.012911871075630188, 0.02908485010266304, -0.0027076483238488436, -0.006310113240033388, 0.012547316029667854, 0.005985327996313572, -0.016517650336027145, 0.009809840470552444, 0.005266160704195499, -0.016080183908343315, -0.00798706617206335, 0.007993694394826889, 0.029747677966952324, -0.012951640412211418, 0.005378841422498226, 0.017233502119779587, -0.010691399686038494, 0.0012254015309736133, -0.009876122698187828, 0.00644267862662673, -0.024829501286149025, 0.01520525198429823, 0.0031451142858713865, -0.0017465492710471153, -0.020587407052516937, 0.0015087600331753492, -0.0047624120488762856, -0.005398726090788841, -0.0019470544066280127, -0.006674668285995722, 0.013057692907750607, -0.03783416748046875, 0.012189389206469059, 0.014330320060253143, -0.016000645235180855, -0.004716014489531517, 0.014171241782605648, -0.003503040876239538, 0.009425400756299496, -0.03915981948375702, -0.008205798454582691, -0.007238071411848068, 0.010989672504365444, 0.004281862638890743, 0.01081070862710476, -0.025996075943112373, 0.025266965851187706, 0.017405837774276733, -0.002049792557954788, 0.01922198385000229, 0.26364606618881226, 0.0018824287690222263, 0.00882885605096817, 0.026221437379717827, 0.0074965739622712135, -0.0023712636902928352, 0.033698126673698425, 0.012898613698780537, -0.001354652806185186, 0.00835162028670311, -0.023079637438058853, -0.013773545622825623, -0.009736929088830948, 0.0018890569917857647, 0.0005397897912189364, -0.01108909584581852, -0.041731588542461395, -0.034652598202228546, -0.030940765514969826, 0.0045204805210232735, 0.032664116472005844, 0.0006317570223473012, -0.0077351913787424564, -0.03056958317756653, 0.00043000903679057956, 0.020202968269586563, -0.014847325161099434, 0.021356286481022835, 0.026937291026115417, 0.010466039180755615, -0.002926381304860115, 0.019845040515065193, 0.008981306105852127, -0.0035626953467726707, 0.0024541171733289957, -0.006157663185149431, 0.02900531142950058, 0.01184471882879734, 0.01942083239555359, 0.022841019555926323, -0.013654236681759357, 0.00713201891630888, -0.015695743262767792, 0.005312558729201555, -0.013349336571991444, 0.0015187024837359786, -0.00647250609472394, -0.008179285563528538, 0.03041050396859646, 0.008437788113951683, -0.014436372555792332, -0.014476142823696136, 0.05058695748448372, 0.03231944516301155, 0.0021906434558331966, -0.010943274013698101, 0.018386822193861008, -0.005769909359514713, -0.009299463592469692, 0.019155701622366905, -0.015046173706650734, 0.03804627060890198, -0.01981852762401104, 0.022960327565670013, -0.008404647000133991, 0.009889379143714905, 0.0015013032825663686, 0.02017645537853241, -0.022986842319369316, -0.008298594504594803, -0.008000322617590427, 0.016292288899421692, -0.009955662302672863, 0.011407253332436085, -0.03515634685754776, -0.020401816815137863, 0.04841288551688194, 0.016955114901065826, 0.005541233811527491, 0.05334432050585747, -0.014290550723671913, 0.01761794276535511, 0.004798867739737034, -0.010366614907979965, -0.005027542822062969, -0.020998360589146614, 0.0015385872684419155, -0.013521671295166016, -0.002174072666093707, -0.002596624894067645, 0.01505943015217781, 0.003890794701874256, 0.0040863286703825, -0.015563178807497025, -0.005027542822062969, 0.0023513787891715765, -0.0063664535991847515, 0.012196017429232597, -0.013389105908572674, 0.0030672322027385235, -0.01284558791667223, 0.025624893605709076, 0.04053850099444389, 0.00481543829664588, -0.014979890547692776, 0.021263491362333298, 0.009915892034769058, 0.0066382125951349735, 0.01010811235755682, 0.0027358185034245253, 0.003388703102245927, -0.05785154178738594, 0.015894591808319092, -0.005796422250568867, -0.01942083239555359, 0.01406518928706646, 0.002089562127366662, -0.012215902097523212, -0.021846778690814972, 0.025704432278871536, 0.022642171010375023, -0.01938106305897236, -0.0018625439843162894, -0.008020207285881042, -0.012659996747970581, -0.010439525358378887, -0.02257588878273964, -0.02158164791762829, -0.022483093664050102, -0.0630481094121933, 0.02805083990097046, -0.014051932841539383, 0.0014383347006514668, -0.02037530392408371, -0.00571356900036335, 0.008431159891188145, 0.007244699634611607, -0.011897745542228222, 0.0005352328298613429, -0.014197754673659801, 0.005753338802605867, -0.001137576880864799, 0.007900898344814777, 0.005408668424934149, 0.004822066519409418, 0.0023165803868323565, -0.005126967094838619, 0.01981852762401104, -0.006336626596748829, 0.008643264882266521, -0.02449808642268181, -0.020600663498044014, 0.010081599466502666, 0.0023828630801290274, 0.02357012964785099, -0.001424249610863626, -0.03444049134850502, -0.050003670156002045, 0.004192381165921688, 0.027997814118862152, -0.015709001570940018, -0.026155155152082443, 0.024193186312913895, -0.036932721734046936, -0.0036985748447477818, -0.017352811992168427, -0.16851714253425598, 0.003990218974649906, 0.005070626735687256, -0.02600933238863945, 0.03634943440556526, 0.01548363920301199, -0.006054924800992012, -0.011307829059660435, -0.008948164992034435, 0.0008173485985025764, 0.006111265160143375, 0.018638696521520615, -0.016729753464460373, -0.003310821019113064, -0.01878451742231846, 0.013349336571991444, -0.011453650891780853, 0.01585482247173786, 0.041572511196136475, -0.013521671295166016, 0.05748036131262779, -0.02529347874224186, -0.013813314959406853, 0.0137868020683527, -0.018002381548285484, 0.013203514739871025, -0.004822066519409418, 0.013720519840717316, -0.017710737884044647, -0.021316517144441605, 0.0017316356534138322, 0.011685640551149845, 0.009385630488395691, -0.011738666333258152, 0.019208727404475212, -0.02608887292444706, -0.013130603358149529, -0.0016172979958355427, 0.004338202998042107, 0.041572511196136475, -0.010021944530308247, 0.017286529764533043, 0.009816468693315983, 0.017525147646665573, 0.005759967025369406, 0.02241680957376957, -0.001131777185946703, -0.004096271004527807, 0.0068536316975951195, -0.0002253611892228946, 0.008358248509466648, -0.03595173731446266, -0.035819172859191895, -0.006505647208541632, 0.017644455656409264, 0.01801563799381256, 0.004921490792185068, 0.02257588878273964, -0.013296309858560562, -0.014555681496858597, 0.016875576227903366, -0.023424306884407997, 0.002888268791139126, 0.0004324946494307369, -0.021356286481022835, 0.015722258016467094, -0.01228218525648117, 0.01706116832792759, -0.012017054483294487, -0.0009022732847370207, 0.009113871492445469, -0.02136954292654991, -0.011533190496265888, -0.017962612211704254, 0.022748224437236786, 0.00363560626283288, 0.01821448653936386, 0.024710191413760185, 0.03035747818648815, -0.012494289316236973, -0.015032917261123657, 0.027971301227808, 0.019632937386631966, 0.00046853587264195085, -0.0044541978277266026, 0.014356833882629871, 0.002333151176571846, -0.014144728891551495, -0.00977007020264864, -0.01166575588285923, 0.045443423092365265, 0.007191673386842012, -0.02892577089369297, -0.011347598396241665, 0.025147657841444016, -0.002578397048637271, 0.0044343126937747, -0.002155844820663333, -0.014595450833439827, 0.004500595387071371, 0.008656521327793598, -0.016968371346592903, -0.032425496727228165, 0.014237524941563606, 0.04971202835440636, 0.013203514739871025, 0.01094990223646164, 0.019725732505321503, 0.005226391367614269, -0.011818205937743187, -0.011307829059660435, 0.015072686597704887, 0.02321220189332962, 0.011069211177527905, -0.0018940282752737403, 0.022986842319369316, 0.0004246235766913742, -0.008437788113951683, -0.010757682844996452, -0.02201911434531212, -0.024988578632473946, -0.01298478152602911, 0.013654236681759357, 0.005766595248132944, 0.010326845571398735, 0.004411113914102316, -0.041890669614076614, -0.017366068437695503, 0.005153479985892773, 0.011970655992627144, -0.007251327857375145, 0.03284970670938492, 0.004832008853554726, 0.023066380992531776, -0.0003123572387266904, 0.019434088841080666, -0.0023480646777898073, -0.021462339907884598, 0.0005116196116432548, 0.007330866996198893, -0.0003305849968455732, -0.004444255493581295, 0.022920558229088783, -0.01922198385000229, -0.01052569318562746, 0.012129734270274639, 0.018267512321472168, 0.002019965322688222, -0.042129285633563995, -0.007814730517566204, -0.030437016859650612, -0.02553209662437439, -0.012766048312187195, 0.019275009632110596, 0.02664564736187458, 0.010976416058838367, 0.02109115570783615, 0.0021028188057243824, -0.007291097193956375, -0.009432028979063034, 0.007443547714501619, -0.02364966832101345, -0.017949355766177177, -0.02469693496823311, 0.01474127359688282, -0.0029992922209203243, 0.022549375891685486, -0.003675375832244754, 0.008199170231819153, -0.0007962209638208151, -0.028581101447343826, -0.008086489513516426, -0.017326299101114273, 0.017830047756433487, 0.012891985476016998, -0.018996622413396835, -0.030463529750704765, 0.002376234857365489, -0.019275009632110596, -0.022681940346956253, 0.010770939290523529, 0.024418547749519348, -0.005866019055247307, 0.008987934328615665, -0.03807278349995613, 0.02005714550614357, -0.003811255330219865, 0.00992914941161871, -0.029456034302711487, 0.023026611655950546, 0.0043846010230481625, 0.03404279798269272, -0.023198945447802544, -0.011911001987755299, -0.00896804966032505, 0.0024756588973104954, -0.00691991439089179, 0.018466360867023468, -0.022324014455080032, 0.008742688223719597, -0.016597189009189606, 0.003108658827841282, 0.009710416197776794, -0.002561826491728425, 0.019354550167918205, -0.010353358462452888, -0.010499180294573307, -0.012832331471145153, 0.00264633703045547, -0.01678278110921383, 0.008954793214797974, 0.019288266077637672, -0.0011756893945857882, 0.007569484878331423, 0.01360121089965105, -0.04541691020131111, -0.0007871070993132889, 0.004566878080368042, 0.016994884237647057, -0.006267029792070389, -0.01520525198429823, -0.02577071450650692, -0.00783461518585682, -0.005982013884931803, 0.04554947465658188, 0.01797586865723133, -0.005179993342608213, -0.005975385662168264, -0.09056868404150009, 0.015894591808319092, -0.007284468971192837, 0.003685318399220705, -0.013959137722849846, 0.007801474072039127, 0.014926864765584469, 0.0035196116659790277, 0.0027490751817822456, -0.015072686597704887, -0.03152405470609665, 0.024948809295892715, -0.008563725277781487, -0.00841127522289753, -0.012050195597112179, 0.011493421159684658, 0.022111909464001656, 0.01857241429388523, 0.020547637715935707, 0.023159176111221313, -0.021674444898962975, -0.020521124824881554, -0.011612729169428349, 0.012129734270274639, -0.02125023491680622, 0.01733955554664135, -0.020149942487478256, 0.0015849851770326495, -0.008437788113951683, -0.012388236820697784, -0.0029628367628902197, 0.002553541213274002, -0.0020713345147669315, -0.0028004441410303116, -0.014873838983476162, -0.024723447859287262, 0.002558512380346656, 0.017405837774276733, 0.004712700378149748, 0.030543070286512375, -0.035580556839704514, -0.005468322895467281, 0.02828945778310299, 0.024259468540549278, 0.0007974637555889785, -0.012414750643074512, 0.014979890547692776, 1.2499209333327599e-05, 0.018625440075993538, 0.009584479033946991, 0.02908485010266304, 0.004729270935058594, 0.0023281800094991922, -0.015762027353048325, 0.0036687476094812155, -0.055200234055519104, -0.014317063614726067, 0.006293542683124542, -0.014913608320057392, 0.0033936745021492243, 0.028183406218886375, 0.015125713311135769, 0.030702147632837296, 0.008775830268859863, 0.011480163782835007, -0.011420509777963161, -0.010187651962041855, -0.005942244548350573, 0.025240452960133553, -0.02781222201883793, -0.022907301783561707, 0.005236333701759577, 0.011877860873937607, 0.0063664535991847515, 0.007854500785470009, -0.004165867809206247, -0.01406518928706646, -0.03756903484463692, -0.017008142545819283, 0.035050295293331146, 0.016796037554740906, 0.010857107117772102, -0.03510332107543945, 0.025028347969055176, 0.025346506386995316, 0.016517650336027145, -0.01662370190024376, -0.0034698995295912027, -0.01360121089965105, -0.003430129960179329, -0.013985650613904, -0.0002166615886380896, 0.010545577853918076, 0.015921104699373245, 0.027175908908247948, 0.014144728891551495, -0.0006566130323335528, 0.004729270935058594, 0.03133846074342728, -0.012401494197547436, 0.011347598396241665, -0.013694006949663162, 0.0019089418929070234, -0.022284245118498802, -0.01540410052984953, 0.0204946119338274, -0.031974777579307556, -0.022867532446980476, 0.0061609772965312, -0.017114194110035896, -0.017246758565306664, 0.016636958345770836, -0.003569323569536209, 0.01610669679939747, -0.013813314959406853, -0.006933170836418867, 0.011818205937743187, -0.030012808740139008, -0.03483818843960762, -0.009922520257532597, 0.019566653296351433, 0.029933268204331398, 0.00018610940605867654, -0.002802101196721196, 0.025505583733320236, -0.01573551446199417, 0.014767786487936974, -0.035580556839704514, 0.03499726578593254, -0.02205888368189335, -0.017047911882400513, 0.004368030000478029, -0.00578316580504179, -0.028342483565211296, 0.0005207334761507809, 0.030993791297078133, -0.007463432382792234, 0.00337544665671885, -0.0183337964117527, 0.055518392473459244, 0.032345958054065704, 0.008344992063939571, -0.015841566026210785, 0.0020879050716757774, 0.0031848838552832603, 0.015960875898599625, 0.010538949631154537, -0.004381286911666393, -0.027030086144804955, 0.007589369546622038, -0.002425946993753314, 0.009425400756299496, -0.009524824097752571, -0.020918821915984154, -0.010492552071809769, -0.03170964494347572, 0.012593713589012623, -0.03277016803622246, 0.01214299164712429, 0.04067106544971466, 0.01038649957627058, 0.019513627514243126, -0.0036488627083599567, -0.01364098023623228, -0.0046265325509011745, 0.018811030313372612, -0.0034897844307124615, 0.014873838983476162, -0.013680749572813511, 0.030304452404379845, 0.015788540244102478, -0.02493555285036564, -0.022602401673793793, 0.00772193493321538, 0.01777702197432518, -0.005378841422498226, -0.00012127663649152964, 0.03184220939874649, -0.007463432382792234, -0.000932100520003587, -0.011321085505187511, 0.000862503657117486, -0.018068665638566017, -0.006770777981728315, -0.0088686253875494, -0.022642171010375023, 0.012673253193497658, 0.0037482869811356068], "f8c4152e-64b9-4488-b0f1-093f8bd58377": [0.017552273347973824, -0.009669557213783264, 0.01322949305176735, -0.007724649738520384, -0.005439555272459984, 0.007539093028753996, -0.022417977452278137, -0.025304412469267845, 0.04043757915496826, -0.0019414711277931929, 0.02343510277569294, 0.004955046344548464, -0.001162305474281311, -0.02542811632156372, -0.017992110922932625, -0.022321762517094612, 0.0024139529559761286, -0.02493329904973507, 0.023393867537379265, -0.034527260810136795, 0.010885982774198055, 0.023998644202947617, 0.0006425753817893565, -0.030018923804163933, -0.026294047012925148, 0.018899276852607727, 0.006253942381590605, -0.01931162364780903, 0.013366942293941975, 0.006759068462997675, 0.019820185378193855, 0.003982592839747667, -0.013607478700578213, -0.019022980704903603, 0.0052711800672113895, 0.004199075512588024, 0.0027232139836996794, -0.00504095247015357, -0.01986142061650753, -0.009765771217644215, 0.04106984660029411, -0.009477128274738789, -0.0010832721600309014, 0.015518023632466793, -0.0008023601840250194, 0.013078299351036549, -0.012920232489705086, 0.0001798652665456757, 0.007573455572128296, 0.014885757118463516, 0.0010952989105135202, 0.0006606156239286065, -0.04643036797642708, 0.00026351603446528316, 0.0009569906396791339, -0.007539093028753996, -0.023256417363882065, -0.016768813133239746, -0.0054498640820384026, -0.029716534540057182, 0.01953154243528843, 0.019050469622015953, -0.03257548063993454, -0.008645559661090374, -0.030843619257211685, 0.015339340083301067, 0.009264081716537476, 0.013538754545152187, -0.034637220203876495, -0.011696933768689632, 0.027187468484044075, 0.024919554591178894, 0.011586974374949932, -0.0031063538044691086, 0.03939296305179596, 0.007539093028753996, -0.03881567716598511, -0.007264194544404745, -0.0014835931360721588, -0.008453130722045898, -0.001790276844985783, -0.011353310197591782, -0.007511603180319071, -0.008700539357960224, 0.020369984209537506, 0.01249413937330246, -0.0031063538044691086, 0.00962832197546959, -0.02834204211831093, 0.0003470594238024205, 0.044945914298295975, 0.008700539357960224, 0.006662853993475437, 0.030101392418146133, -0.009580214507877827, 0.011112774722278118, 0.019009236246347427, 0.031365927308797836, 0.003039347240701318, -0.0350770577788353, -0.0012353253550827503, 0.027888458222150803, -0.0061714728362858295, -0.0038795059081166983, -0.034307342022657394, -0.026307791471481323, 0.016920005902647972, -0.006119929254055023, 0.0067521957680583, -0.0179233867675066, -0.037771061062812805, 0.02346259169280529, -0.008624942041933537, -0.034637220203876495, -0.013270728290081024, -0.01419851090759039, 0.048629555851221085, -0.019847676157951355, 0.007305429317057133, 0.001931162434630096, 0.016933752223849297, 0.003869197331368923, 0.0009157558088190854, -0.004834778606891632, 0.012336072511970997, 0.013930484652519226, -0.006851846817880869, 0.010150629095733166, 0.003506674664095044, -0.026266558095812798, 0.04381883144378662, 0.023613786324858665, -0.0012533656554296613, -0.0028348914347589016, -0.012501012533903122, -0.009264081716537476, 0.004618295934051275, 0.006089003290981054, 0.012411669827997684, -0.01412978582084179, 0.022211803123354912, 0.00680717546492815, -0.01670008711516857, -0.03680891916155815, -0.009676429443061352, 0.02850698120892048, -0.007422260940074921, -0.004367450717836618, -0.01672757789492607, -0.015421809628605843, 0.012425415217876434, -0.017799681052565575, -0.009868858382105827, -0.04090490564703941, 0.0034173326566815376, 0.002242141403257847, 0.006006533745676279, 0.02564803510904312, -0.003178514540195465, -0.009037289768457413, -0.02016380988061428, 0.012872125022113323, 0.009820750914514065, 0.0005811527371406555, 0.007704032119363546, 0.03757863491773605, 0.00298093119636178, 0.0045495713129639626, -0.011360183358192444, 0.004027263727039099, -0.009319061413407326, 0.037990979850292206, -0.034169889986515045, 0.022349253296852112, -0.0017103845020756125, 0.016974985599517822, -0.02149706706404686, -0.002202624687924981, -0.01830824464559555, -0.004205948207527399, -0.027682285755872726, -0.012610971927642822, 0.0012585199438035488, 0.012995829805731773, -0.011263968423008919, -0.017442313954234123, 0.021428342908620834, -0.008432513102889061, 0.010556104592978954, -0.009339679032564163, 0.02335263229906559, 0.02043870836496353, -0.002200906630605459, -0.00832255370914936, -0.5951004028320312, -0.029661554843187332, -0.019462818279862404, -0.007635307498276234, 0.02021878957748413, 0.0267063956707716, 0.010006307624280453, 0.022720366716384888, -0.01980644091963768, 0.01418476551771164, -0.01839071325957775, 0.026692651212215424, -0.012844635173678398, -0.021345872431993484, -0.0016820356249809265, -0.03285037726163864, -0.0136830760166049, 0.0002295832528034225, -0.008734901435673237, 0.011298330500721931, -0.025002025067806244, 0.02537313662469387, -0.025496842339634895, 0.015091931447386742, 0.01795087568461895, -0.007889588363468647, 0.02010883018374443, -0.012789655476808548, -0.0070442757569253445, 0.02935916557908058, -0.009284699335694313, 0.041592150926589966, 0.01839071325957775, -0.0016700087580829859, 0.04225190728902817, 0.003496366087347269, -0.0361766517162323, 0.01419851090759039, -0.002341792220249772, 0.06168723851442337, -0.024026134982705116, -0.024727124720811844, 0.017662232741713524, -0.001255942857824266, -0.012349817901849747, 0.006683471146970987, 0.005126858130097389, -0.03188823163509369, -0.012150516733527184, -0.0024637782480567694, -0.0077933743596076965, -0.014067933894693851, 0.007649052422493696, -0.025249432772397995, 0.018404459580779076, -0.002951723290607333, 0.03188823163509369, -0.029991433024406433, -0.0180058553814888, 0.008721156977117062, -0.012968339957296848, 0.04084992781281471, 0.0022455775178968906, -0.016988731920719147, 0.0019328804919496179, 0.01103717740625143, -0.0177859365940094, -0.0364515483379364, 0.01462460309267044, -0.00197067903354764, 0.013373815454542637, -0.005405193194746971, 0.003721439279615879, -0.023613786324858665, 0.008480620570480824, 0.03986028954386711, 0.00023710001551080495, -0.018019599840044975, -0.01098219770938158, 0.004752309061586857, 0.001461257692426443, -0.021153444424271584, -0.010164374485611916, 0.0016837536823004484, 0.024520952254533768, -0.009518362581729889, -0.03331770747900009, -0.017662232741713524, -0.009133504703640938, -0.022211803123354912, -0.006576947867870331, 0.030018923804163933, 0.0064669884741306305, -0.05344028025865555, -0.010755405761301517, 0.05833347514271736, -0.004044445231556892, -0.014775797724723816, 0.004996281582862139, -0.0001080265428754501, -0.015229380689561367, 0.007490986026823521, -0.012645334005355835, -0.018212029710412025, 0.021950650960206985, -0.020315004512667656, -0.033922482281923294, 0.004807288758456707, 0.03986028954386711, -0.04423118010163307, 0.0006069244700483978, -0.0024225434754043818, -0.011133391410112381, 0.0026081001851707697, 0.023971155285835266, -0.034334830939769745, 0.008343171328306198, 0.008810498751699924, 0.010892855934798717, -0.021400852128863335, 0.008652431890368462, -0.007923951372504234, 0.012226113118231297, 0.004587369970977306, 0.02365502156317234, 0.011071539483964443, 0.01944907382130623, -0.013861759565770626, -0.0024139529559761286, -0.034389808773994446, -0.025661781430244446, 0.0038107812870293856, 0.01841820403933525, -0.009999435395002365, 0.003797036362811923, 0.0021356181241571903, 0.011442652903497219, -0.009944455698132515, -0.005999661050736904, -0.004326215945184231, -0.020150065422058105, 0.0076146903447806835, 0.015256870537996292, 0.015435554087162018, 0.008755519054830074, -0.01797836646437645, -0.019490307196974754, -0.01250788476318121, -0.001368479453958571, 0.02902928739786148, 0.012219240888953209, -0.011655699461698532, 0.005398320499807596, 0.01689251698553562, -0.012741548009216785, -0.0072229597717523575, 0.0038210900966078043, -0.024397246539592743, 0.0009741717949509621, 0.008844860829412937, 0.008638687431812286, 0.006305485963821411, -0.025606801733374596, 0.004559879656881094, -0.009133504703640938, 1.1020103556802496e-05, 0.008686794899404049, 0.014762052334845066, -0.024685891345143318, -0.023833705112338066, 0.00021025445312261581, -0.009758898988366127, -0.0043433974497020245, 0.012253602966666222, -0.0023039935622364283, 0.0022180876694619656, -0.019737716764211655, 0.009188484400510788, -0.011002815328538418, -0.0038004727102816105, 0.010377421043813229, -0.006872463971376419, 0.002015350153669715, -0.0013384124031290412, 0.026692651212215424, 0.00828131940215826, 0.009841368533670902, 0.007264194544404745, -0.009587087668478489, -0.017772192135453224, -0.018321989104151726, 0.00489663053303957, -0.003913868218660355, 0.02403987944126129, 0.03859575837850571, -0.0017464648699387908, 0.01920166425406933, 0.02329765260219574, 0.006463552359491587, 0.012095537036657333, 0.03180576488375664, 0.011298330500721931, 0.010226226411759853, -0.009477128274738789, 0.021455831825733185, -0.05137854069471359, -0.009243464097380638, -0.014858267270028591, 0.00680717546492815, 0.02035623788833618, -0.016219014301896095, -0.015119421295821667, 0.013531881384551525, -0.030706169083714485, 0.030651189386844635, 0.011690061539411545, 0.009820750914514065, 0.009442765265703201, -0.014926991425454617, 0.01751103810966015, -0.02390242926776409, -0.007436005864292383, 0.03647903725504875, -0.014968226663768291, 0.00799267552793026, -0.0007147362339310348, -0.014322214759886265, 0.015105675905942917, 0.006958369631320238, -0.023311398923397064, -0.024383502081036568, 0.00019350281218066812, -0.004116605967283249, -0.007903333753347397, 0.04035510867834091, -0.024493461474776268, 0.025084493681788445, -0.012995829805731773, 0.02021878957748413, 0.01238417997956276, 0.02564803510904312, 0.002252449980005622, 0.011119646951556206, -0.00455644354224205, 0.0029757770244032145, 0.02177196554839611, 0.04291166365146637, 0.023173948749899864, -0.022899050265550613, 0.0007254744996316731, -0.02880936861038208, 0.0033692254219204187, 0.005920627620071173, 0.009305316023528576, 0.015270614996552467, 0.0004888040130026639, 0.016768813133239746, 0.013538754545152187, 0.02831455133855343, 0.026995038613677025, 0.017469802871346474, 0.02739364095032215, -0.0025359392166137695, 0.010446145199239254, -0.014872011728584766, 0.0054498640820384026, -0.02210184372961521, -0.012026811949908733, -0.007518475875258446, -0.03210815042257309, -0.018899276852607727, -0.006903389934450388, 0.0185831431299448, -0.008556217886507511, 0.009923838078975677, -0.014040444046258926, -0.012927104718983173, 0.018349479883909225, 0.034857138991355896, -0.0013083453522995114, -0.014940736815333366, -0.02338012307882309, 0.017153671011328697, -0.027104998007416725, 0.027297427877783775, 0.021263403818011284, -0.012102409265935421, 0.00806140061467886, 0.024575931951403618, 0.006879336666315794, 0.011573228985071182, -0.009559597820043564, 0.005896574351936579, -0.016273993998765945, -0.008356916718184948, -0.017208650708198547, 0.041784580796957016, -0.03202568367123604, -0.023146457970142365, 0.013545626774430275, 0.0009896347764879465, -0.010315568186342716, -0.013834269717335701, -0.009669557213783264, 0.05739881843328476, -0.01642518863081932, -0.026239067316055298, -0.009154122322797775, 0.019572777673602104, -0.02122216857969761, -0.003759237937629223, 0.00010743593884399161, -0.007463495712727308, -0.03364758566021919, -0.03351013362407684, -0.003515265416353941, -0.0012430569622665644, 0.0013375532580539584, 0.02825957164168358, 0.012074919417500496, -0.012961466796696186, -0.016438933089375496, -0.007621562574058771, 0.01096845231950283, -0.0045495713129639626, -0.0025067313108593225, 0.0066869077272713184, 0.007676542270928621, -0.017016220837831497, -0.015091931447386742, -0.02379246987402439, -0.03576430305838585, -0.00202565873041749, -0.0137930354103446, 0.012700313702225685, -0.017662232741713524, 0.0006623337394557893, -0.009813878685235977, 0.01667259819805622, 0.00979326106607914, -0.0015926935011520982, 0.005467045120894909, 0.006223015952855349, -0.038128431886434555, -0.014913246966898441, -0.011765658855438232, 0.02144208736717701, -0.010714171454310417, 0.021043485030531883, -0.016136545687913895, 0.037633612751960754, 0.03958539292216301, 0.022266782820224762, -0.03268544003367424, 0.003965411800891161, -0.006494478322565556, -0.010879110544919968, 0.024273542687296867, -0.01425349060446024, 0.020067594945430756, -0.02390242926776409, 0.05706894025206566, -0.0040719350799918175, 0.026417750865221024, -0.007470368407666683, 0.03183325380086899, 0.006570075638592243, 0.0038073451723903418, 0.015229380689561367, -0.022198058664798737, -0.016246505081653595, 0.003841707482933998, -0.0009458228596486151, -0.027957184240221977, 0.019119195640087128, 0.01598535105586052, -0.01975146122276783, 0.002221524016931653, -0.013696820475161076, 0.022253038361668587, -0.0070442757569253445, 0.004958482924848795, -0.016219014301896095, -0.01637020893394947, -0.023421358317136765, -0.006834665313363075, -0.024452226236462593, -0.005535769741982222, -0.01571045257151127, -0.015050696209073067, -0.009484000504016876, -0.02310522459447384, -0.015174400992691517, -0.007339791394770145, 0.034059930592775345, -0.04106984660029411, -0.019284134730696678, 0.010184992104768753, 0.0268163550645113, 0.011140264570713043, 0.018926765769720078, -0.007027094252407551, -0.0063226670026779175, 0.0267888642847538, -0.0180058553814888, -0.013964846730232239, -0.021263403818011284, -0.03870571777224541, 0.0036802045069634914, 0.007566582877188921, -0.003573681227862835, 0.006638800259679556, -0.005463609006255865, 0.002876126207411289, -0.0019002363551408052, 0.00583128584548831, 0.022170569747686386, -0.041894540190696716, 0.005625111982226372, -0.004078807309269905, 0.00012091241660527885, -0.008308809250593185, 0.011401417665183544, -0.007752139586955309, 0.011312075890600681, -0.02498827874660492, 0.005463609006255865, -0.01828075386583805, 0.0040650623850524426, 0.006284868344664574, 0.013064553961157799, 0.006082130596041679, -0.009160994552075863, 0.010487380437552929, 0.015834156423807144, -0.008556217886507511, -0.001865873928181827, -0.012590354308485985, 0.018294500187039375, 0.0056938366033136845, 0.008411896415054798, 0.0035032385494560003, 0.024259798228740692, 0.01412978582084179, 0.027819734066724777, -0.018830550834536552, 0.01988891139626503, 0.0028108377009630203, -0.0045804972760379314, 0.014102295972406864, -0.0025840464513748884, -0.027489855885505676, 0.00644637132063508, 0.0088929682970047, 0.005164656788110733, 0.03265794739127159, -0.00788271613419056, -0.008432513102889061, -0.037908513098955154, -0.03194321319460869, 0.015284360386431217, 0.029579084366559982, -0.005408629309386015, -0.03243802860379219, -0.0185556523501873, -0.004563316237181425, 0.011896234937012196, -0.0017610689392313361, 0.0004061196814291179, -0.03257548063993454, 0.000637421035207808, -0.00010432185808895156, 0.0066869077272713184, -0.0071885972283780575, -0.001377929002046585, -0.008295063860714436, -0.0022335508838295937, 0.0068587190471589565, 0.006257378496229649, -0.04412122070789337, -0.026115363463759422, -0.019682737067341805, 0.020479943603277206, 0.0029362603090703487, 0.011470142751932144, 0.010501124896109104, -0.017634741961956024, -0.009284699335694313, 0.015146911144256592, -0.0002733952132984996, -0.03482964634895325, 0.010569849982857704, -0.024356013163924217, 0.01080351322889328, 0.0181158147752285, 0.033730052411556244, 0.004350269678980112, -0.019627757370471954, 0.01920166425406933, 0.010329313576221466, -0.012013067491352558, -0.002523912349715829, -0.0063157943077385426, -0.05294546112418175, 0.019627757370471954, 0.007848354056477547, -0.007154235150665045, -0.0022112152073532343, -0.016823792830109596, -0.008013293147087097, 0.008886096067726612, -0.004188766703009605, 0.0268988236784935, 0.031365927308797836, 0.02144208736717701, 0.0016090156277641654, 0.022445468232035637, -0.022706620395183563, 0.002472369000315666, 0.00538113946095109, 0.01076227892190218, -0.0018916457192972302, 0.04291166365146637, 0.03139341622591019, 0.025139473378658295, 0.017442313954234123, 0.020603647455573082, 0.003872633446007967, -0.001874464564025402, 0.0359017513692379, 0.013112661428749561, -0.03142090514302254, -0.0026081001851707697, -0.01659012772142887, -0.03906308487057686, -0.038183409720659256, -0.009209102019667625, -0.0032678565476089716, -0.007470368407666683, -0.014913246966898441, -0.005628548096865416, 0.01474830787628889, -0.015696708112955093, -0.01008190494030714, 0.013373815454542637, -0.012411669827997684, 0.026005404070019722, -0.01659012772142887, 0.027957184240221977, 0.0367264486849308, -0.001650250400416553, -0.005817540921270847, -0.041839562356472015, 0.006834665313363075, -0.000909742433577776, 0.0136143509298563, 0.05739881843328476, 0.0033228362444788218, -0.018376968801021576, 0.0026184087619185448, -0.004542698618024588, -0.03249301016330719, -0.020342493429780006, 0.012755293399095535, 0.025744250044226646, -0.0002901468542404473, -0.0040650623850524426, -0.0014037007931619883, -0.027998417615890503, 0.025496842339634895, 0.003638969734311104, -0.020713606849312782, 0.01623276062309742, -0.003460285719484091, 0.018679358065128326, 0.011105901561677456, -0.0089616933837533, -0.00046990474220365286, 0.013490647077560425, 0.019119195640087128, -0.015545513480901718, -0.01423974521458149, -0.008927330374717712, 0.012287965975701809, -0.01434970460832119, 0.04579810053110123, 0.020603647455573082, 0.007786501664668322, -0.005683527793735266, 0.015284360386431217, 0.0003502808976918459, -0.024947045370936394, -0.02160702645778656, 0.04376384988427162, 0.018129559233784676, -0.008288191631436348, -0.017043711617588997, 0.0068003032356500626, 0.007738394662737846, 0.007903333753347397, 0.0006412867805920541, 2.4375771317863837e-05, -0.028149612247943878, -0.026170343160629272, 0.022569172084331512, -0.00493099307641387, -0.005893137771636248, -0.0070442757569253445, 0.002027376787737012, 0.003742056665942073, -0.04030013084411621, -0.01182751078158617, 0.029551595449447632, -0.04362640157341957, -0.003742056665942073, -0.025414371863007545, -0.0356818325817585, 0.012624716386198997, 0.0020101957488805056, 0.011195244267582893, 0.005333031993359327, 0.04049255698919296, -0.028177103027701378, 0.027984673157334328, 0.023861195892095566, 0.020851055160164833, -0.015119421295821667, 0.014102295972406864, 0.009855112992227077, -0.017263630405068398, 0.034747179597616196, 0.008693667128682137, -0.033949971199035645, -0.059762947261333466, 0.013222620822489262, 0.015160655602812767, 0.013188258744776249, 0.01065231952816248, 0.01642518863081932, 0.02373749017715454, 0.013490647077560425, -0.004941301420331001, -0.017071200534701347, 0.00034276413498446345, 0.0008440244710072875, -0.014885757118463516, 0.012219240888953209, -0.026802610605955124, 0.00018824108701664954, -0.005168092902749777, 0.002673388458788395, -0.001508505898527801, -0.02105722948908806, -0.033922482281923294, -0.0004106297274120152, -0.011257096193730831, -0.024479717016220093, -0.021510811522603035, -0.037743572145700455, -0.020287513732910156, -0.03309778496623039, 0.00040075054857879877, 0.007930823601782322, -0.0034173326566815376, 0.016947496682405472, 0.016109054908156395, -0.009786388836801052, 0.013236365281045437, -0.019490307196974754, -0.005604494363069534, -0.027269937098026276, -0.045303281396627426, 0.014762052334845066, -0.0178134273737669, -0.03353762626647949, 0.02662392519414425, -0.01452838908880949, -0.01612280122935772, 0.000194576641661115, -0.021813200786709785, -0.03895312547683716, 0.02496078982949257, 0.013483774848282337, 0.021538302302360535, 0.024782104417681694, -0.004023827612400055, 0.007545965723693371, 0.013016446493566036, -0.014665838330984116, 0.016920005902647972, -0.0006129379034973681, 0.014542133547365665, -0.012665951624512672, 0.01092721801251173, 0.001724129426293075, 0.008542472496628761, -0.025950424373149872, -0.015188145451247692, 0.008246956393122673, 0.012267348356544971, 0.00017331495473627, 0.023971155285835266, 0.0040959883481264114, 0.0020497124642133713, 0.00912663247436285, -0.01243915967643261, -0.0019844239577651024, -0.016796302050352097, -0.018596887588500977, -0.04401126131415367, -0.01458336878567934, 0.018679358065128326, 0.015559258870780468, -0.0025840464513748884, -0.01474830787628889, -0.013360070064663887, -0.021923160180449486, 2.1395913790911436e-05, 0.00799267552793026, -0.009910092689096928, 0.02019129879772663, 0.01467958278954029, 0.02504325844347477, -0.0022112152073532343, 0.007490986026823521, 0.021565791219472885, 0.0030152935069054365, 0.0027541399467736483, -0.008315681479871273, 0.023091478273272514, -0.019215408712625504, 0.024232307448983192, 0.010824130848050117, -0.0035874261520802975, -0.008143870159983635, 0.00990322045981884, 0.018157050013542175, -0.007360409013926983, 0.01272780355066061, 0.008020165376365185, 0.015064441598951817, -0.02111220918595791, 0.009875730611383915, 0.03208066150546074, -0.006700652651488781, -0.013147023506462574, 0.0069171348586678505, -0.015627983957529068, -0.015215635299682617, -0.022747855633497238, 0.001294600428082049, -0.017016220837831497, 0.016301484778523445, 0.009325933642685413, 0.004006646573543549, -0.052670564502477646, -0.0026132543571293354, -0.00022163696121424437, -0.0018263573292642832, -0.008068272843956947, 0.22805584967136383, 0.023861195892095566, -0.005611367058008909, 0.03972284123301506, -0.001444076537154615, 0.010384293273091316, 0.037936002016067505, 0.007064892910420895, 0.011456397362053394, 0.022280529141426086, -0.006508223246783018, -0.01977895200252533, -0.000726333528291434, 0.00028649583691731095, 0.0041647134348750114, -0.012013067491352558, -0.030183862894773483, -0.04321405291557312, -0.025551822036504745, -0.001975833438336849, 0.030128883197903633, -0.011422035284340382, 0.02338012307882309, -0.023998644202947617, 0.005814104340970516, 0.003245521103963256, -0.0009329369640909135, 0.031091026961803436, 0.034637220203876495, 0.017483549192547798, -0.009600832127034664, 0.016713833436369896, -0.004467101767659187, 0.007490986026823521, -0.013442539609968662, -0.011277713812887669, 0.038568269461393356, 0.009051035158336163, 0.0180058553814888, 0.006563202943652868, -0.0072504496201872826, -0.024864574894309044, -0.026087872684001923, 0.01620526984333992, -0.03219062089920044, 0.004676711745560169, 0.010171246714890003, -0.019435327500104904, -0.0007907628896646202, 0.01425349060446024, -0.021730732172727585, 0.012054301798343658, 0.034362319856882095, 0.03298782557249069, -0.007339791394770145, -0.022500447928905487, 0.018143305554986, 0.000605206354521215, 0.009978817775845528, 0.015353084541857243, 0.006250506266951561, 0.04763992130756378, -0.019627757370471954, 0.016768813133239746, -0.0029104885179549456, 0.0044258669950068, 0.0013951101573184133, -0.009085397236049175, -0.0007301993318833411, -0.019105449318885803, -0.015243125148117542, 0.010226226411759853, 0.012851507402956486, 0.006260814610868692, -0.018844297155737877, -0.024410992860794067, 0.025002025067806244, 0.014597113244235516, 0.011600718833506107, 0.04733753204345703, -0.003986028954386711, 0.006851846817880869, -0.001481875078752637, -0.013243238441646099, 0.016796302050352097, -0.04467101767659187, 0.011889362707734108, -0.014926991425454617, -0.012315455824136734, -0.021208424121141434, 0.01863812282681465, -0.012129899114370346, -0.01170380599796772, -0.031228477135300636, 0.0047007654793560505, 0.0010557823115959764, -0.002626999281346798, 0.019490307196974754, -0.0013203721027821302, 0.01689251698553562, -0.01991640031337738, 0.04967416822910309, 0.02302275411784649, 0.006219579838216305, 0.0033108096104115248, 0.013751800172030926, 0.0033623529598116875, 0.013098916038870811, 0.001340989489108324, -0.011559484526515007, -0.012734675779938698, -0.041372232139110565, 0.0034070240799337626, -0.011559484526515007, -0.010645446367561817, 0.018954256549477577, -0.018047090619802475, -0.04263676702976227, 0.010205608792603016, 0.03147588670253754, 0.027957184240221977, -0.019462818279862404, -0.009573342278599739, -0.010851620696485043, -0.001508505898527801, -0.02853447012603283, -0.019297879189252853, -0.0014801569050177932, -0.009889476001262665, -0.044918425381183624, 0.03309778496623039, -0.00551171600818634, 0.014322214759886265, -0.003972284030169249, 0.00927782617509365, 0.017373589798808098, 0.011435779742896557, -0.0018693101592361927, 0.016548892483115196, -0.018019599840044975, 0.0017662232276052237, -0.01351813692599535, 0.03675393760204315, 0.004154404625296593, -0.006700652651488781, -0.00712674530223012, 0.018294500187039375, 0.0004353276453912258, -0.008755519054830074, -0.001790276844985783, -0.04288417473435402, -0.0014397811610251665, 0.02878187969326973, 0.010453017428517342, 0.014390939846634865, 0.009305316023528576, -0.030211351811885834, -0.04610048979520798, 0.005418938118964434, 0.02351757138967514, -0.03889814764261246, -0.015036951750516891, 0.02944163605570793, -0.011916852556169033, -0.026912569999694824, -0.04291166365146637, -0.1754952371120453, -0.015119421295821667, 0.0007692864164710045, -0.02922171726822853, 0.011263968423008919, 0.010624829679727554, 0.018816806375980377, -0.013964846730232239, -0.019655246287584305, 0.0036595871206372976, 0.015229380689561367, 0.006827793084084988, -0.01939409412443638, -0.0018899276619777083, 4.63891337858513e-05, 0.012817145325243473, -0.020424963906407356, 0.00782773643732071, 0.05712392181158066, 0.0014303316129371524, 0.06454618275165558, -0.0177859365940094, -0.01276903785765171, -0.012906487099826336, 0.005054697394371033, 0.013263855129480362, -0.011415163055062294, 0.01340817753225565, -0.0273661520332098, -0.034279849380254745, 0.0014518080279231071, 0.019435327500104904, 0.03158584609627724, -0.025084493681788445, 0.036286611109972, -0.04629291594028473, -0.006484169978648424, 0.01109215710312128, 0.02124965935945511, -0.0024225434754043818, -0.007167980074882507, 0.02313271351158619, 0.026417750865221024, 0.012775911018252373, -0.006566639523953199, 0.01265907846391201, 0.005054697394371033, -0.03249301016330719, 0.016823792830109596, 0.013037064112722874, 0.011415163055062294, -0.03364758566021919, -0.026637671515345573, -0.006937752477824688, 0.01645267941057682, 0.01830824464559555, 0.0009475409751757979, 0.023063989356160164, -0.010288078337907791, 0.021290892735123634, 0.002474087057635188, -0.04236186668276787, 0.005470481235533953, -0.004298726096749306, -0.022308018058538437, -0.01351813692599535, -0.009937582537531853, 0.015311850234866142, -0.019765205681324005, 0.007862098515033722, 0.001348721096292138, -0.008219466544687748, -0.007917078211903572, -0.0027111871168017387, 0.00028026767540723085, 0.0009277826175093651, -0.006631927564740181, 0.013600606471300125, 0.010109394788742065, -0.01972397230565548, 0.003852016059681773, 0.018748082220554352, 0.026170343160629272, -0.011903108097612858, 0.002542811678722501, 0.008652431890368462, 0.010604212060570717, -0.026280302554368973, -0.0059309364296495914, -0.013621224090456963, 0.017249884083867073, -0.03702883794903755, -0.010233098641037941, -0.01469332817941904, 0.010150629095733166, -0.00833629909902811, 0.006515095941722393, 0.01634272001683712, -0.008652431890368462, 0.0014896065695211291, -0.0006442934973165393, -0.017263630405068398, -0.029991433024406433, 0.0180333461612463, 0.03554438427090645, 0.018830550834536552, 0.002316020429134369, 0.04043757915496826, 0.009882602840662003, -0.011600718833506107, -0.023971155285835266, 0.015435554087162018, 0.03329021483659744, 0.005587313324213028, 0.013641840778291225, 0.0024242617655545473, 0.00356337265111506, -0.006491042207926512, 0.002166544320061803, -0.003422487061470747, -0.019064215943217278, 0.0009698764770291746, -0.00817136000841856, 0.0032214676029980183, 0.02111220918595791, -0.014226000756025314, -0.04392879083752632, 0.01670008711516857, 0.009841368533670902, 0.02188192494213581, -0.01430847030133009, 0.03832085803151131, 0.010556104592978954, 0.024452226236462593, -0.011909980326890945, 0.01623276062309742, -0.020205045118927956, -0.034169889986515045, 0.01664510741829872, -0.008508110418915749, 0.017442313954234123, 0.005188710521906614, 0.007683414965867996, -0.015133165754377842, 0.0023795906454324722, 0.030981067568063736, 0.02548309601843357, 0.0059309364296495914, -0.013765545561909676, -0.01667259819805622, -0.02665141597390175, 0.007779629435390234, -0.016411444172263145, 0.018940510228276253, 0.021538302302360535, -0.000412347842939198, 0.022417977452278137, 0.0012172851711511612, -0.009353423491120338, -0.012315455824136734, -0.007422260940074921, -0.002297121100127697, -0.010391165502369404, -0.03636907786130905, 0.011318948119878769, -0.0181158147752285, -0.0002624422195367515, -0.011559484526515007, 0.010776023380458355, -0.015050696209073067, -0.03301531821489334, -0.001874464564025402, -0.007649052422493696, 0.005666346754878759, 0.005037516355514526, -0.009325933642685413, -0.029689043760299683, 0.0016897671157494187, -0.017016220837831497, -0.02545560710132122, 0.027269937098026276, 0.008528728038072586, -0.005109677091240883, -0.0016657134983688593, -0.041674621403217316, 0.000946681946516037, -0.006150855217128992, -0.010569849982857704, -0.027297427877783775, 0.03213564306497574, -0.0088929682970047, 0.0041303508915007114, 0.006707524880766869, -0.01689251698553562, -0.006573511753231287, 0.0034327958710491657, -0.01377929002046585, 0.0019191355677321553, -0.027489855885505676, 0.01601284183561802, -0.021290892735123634, -0.006989296060055494, -0.00883798860013485, 0.003130407305434346, 0.010233098641037941, 0.022706620395183563, -0.021868180483579636, -0.01667259819805622, 0.016081565991044044, -0.010459890589118004, -0.019187919795513153, 0.017579762265086174, 0.01656263880431652, 0.010398037731647491, 0.004817597102373838, -0.04310409352183342, 0.017181159928441048, 0.0074016437865793705, 0.011731295846402645, 0.003396715270355344, -0.022582916542887688, -0.014885757118463516, 0.022734111174941063, 0.01969648152589798, -0.008528728038072586, 0.020232534036040306, -0.024630911648273468, -0.01019186433404684, -0.08763766288757324, 0.00039516668766736984, 0.01975146122276783, -0.017579762265086174, -0.012336072511970997, 0.007449750788509846, 0.021084720268845558, -0.027434876188635826, -0.022734111174941063, 0.011559484526515007, -0.05154348164796829, 0.0091128870844841, -0.013057681731879711, 0.006250506266951561, -0.03268544003367424, 0.004690456669777632, 0.03625911846756935, -0.013105789199471474, 0.009133504703640938, 0.018239518627524376, -0.00022120743233244866, -0.009910092689096928, 0.0017318609170615673, 0.022211803123354912, -0.03964037075638771, 0.034527260810136795, -0.0014586804900318384, 0.03675393760204315, 0.0011588692432269454, -0.025166964158415794, -0.0006305485730990767, -0.006267687305808067, -0.004075371194630861, 0.005666346754878759, -0.011745041236281395, -0.011628208681941032, -0.00680717546492815, 0.0023194565437734127, 0.01634272001683712, 0.051900848746299744, -0.04563315957784653, -0.012287965975701809, 0.010143756866455078, 0.005697272717952728, -0.006058076862245798, 0.0008573398808948696, -0.014377194456756115, 0.010700426064431667, 0.006363901775330305, 0.01265907846391201, 0.020988505333662033, -0.003704258007928729, -0.016081565991044044, 0.0024345703423023224, -0.0038829422555863857, -0.073672816157341, 0.005700708832591772, 0.005171529017388821, -0.001874464564025402, -0.006260814610868692, 0.027654794976115227, 0.009676429443061352, 0.003893250832334161, 0.007704032119363546, -0.010349931195378304, -0.005071878433227539, -0.007298556622117758, -0.0030427833553403616, 0.031255967915058136, -0.038100939244031906, -0.04563315957784653, 0.00394135806709528, 0.019462818279862404, 0.004707637708634138, -0.0004194350622128695, 0.0012593790888786316, 0.0011227887589484453, -0.018459439277648926, -0.009319061413407326, 0.0135043915361166, 0.003216313198208809, -0.01839071325957775, -0.011174626648426056, 0.02302275411784649, 0.03969535231590271, 0.012665951624512672, -0.017607253044843674, 0.013531881384551525, 0.0015128011582419276, -6.657699850620702e-05, -0.03208066150546074, -0.011435779742896557, 0.01672757789492607, 0.013071426190435886, 0.01582041196525097, 0.01579292304813862, -0.0065941293723881245, 0.013744927942752838, 0.005418938118964434, -0.003590862499549985, 0.0017610689392313361, 0.0003337440430186689, 0.01786840707063675, -0.029963944107294083, -0.013827397488057613, 0.0010892855934798717, -0.01322949305176735, -0.025002025067806244, -0.005707581527531147, 0.005226508714258671, -0.0019569341093301773, 0.018954256549477577, 0.004783235024660826, 0.02496078982949257, -0.015105675905942917, 0.0019827059004455805, 0.015545513480901718, -0.03636907786130905, -0.030128883197903633, -0.0008083735592663288, 0.022211803123354912, 0.026830099523067474, 0.01091347262263298, -0.013992336578667164, 0.010535486973822117, -0.02379246987402439, 0.020796075463294983, -0.034499768167734146, 0.008748646825551987, -0.004669839516282082, 0.0017275656573474407, 0.015366829931735992, -0.012858380563557148, -0.017854660749435425, -0.002467214595526457, 0.0029482871759682894, 0.0015703580575063825, -0.009415275417268276, -0.010906600393354893, 0.06619556993246078, 0.03238305076956749, 0.010384293273091316, -0.004532389808446169, -0.01070729922503233, -0.00729168439283967, 0.024314777925610542, 0.020961014553904533, 0.004869140684604645, -0.02185443602502346, 0.028287062421441078, 0.016136545687913895, 0.001322090276516974, -0.028135867789387703, -0.012095537036657333, 0.009030417539179325, -0.011318948119878769, 0.0046457857824862, -0.015944115817546844, 0.008405023254454136, 0.04395627975463867, -0.0032833197619765997, 0.017937131226062775, -0.0018349478486925364, -0.02584046497941017, -0.0033984335605055094, 0.02764105051755905, -0.01582041196525097, -0.012940850108861923, -0.01944907382130623, 0.024479717016220093, 0.00709238275885582, -0.03351013362407684, -0.015518023632466793, 0.007662797346711159, 0.004020391497761011, -0.010521742515265942, 0.002477523172274232, 0.022679131478071213, -0.003573681227862835, 0.00180058553814888, 0.01650765910744667, -0.017071200534701347, -0.01102343201637268, 0.011312075890600681, -0.014074806123971939, -0.01085849292576313, -0.0025084493681788445, 0.01817079447209835], "d83b7aea-8abd-462f-b03b-f68ebd2bb9e4": [0.016077052801847458, -0.013536824844777584, -0.006035527214407921, -0.016302555799484253, -0.01862391270697117, 0.010293558239936829, -0.023810485377907753, -0.017390277236700058, 0.02257685177028179, -0.024473730474710464, 0.013623046688735485, 0.0132317328825593, -0.00970327015966177, -0.016276026144623756, -0.011454236693680286, -0.016939271241426468, 0.000308823335217312, -0.012210335582494736, 0.022842148318886757, -0.0023711000103503466, -0.0152015695348382, -0.013755695894360542, 0.007627314422279596, -0.02724609337747097, -0.015307688154280186, 0.01528115849941969, -0.01370263658463955, -0.016196437180042267, 0.012866947799921036, -0.021077917888760567, 0.021767692640423775, -0.013861815445125103, -0.010844051837921143, 0.016886211931705475, -0.0011225417256355286, 0.0007797271246090531, -0.008065056055784225, 0.004513380583375692, -0.011188938282430172, -0.0018653757870197296, 0.018730031326413155, 0.014777093194425106, 0.025548188015818596, 0.01854432374238968, -0.038760021328926086, 0.008098218590021133, -0.02897053025662899, 0.015267893671989441, -0.008423208259046078, 0.01989734172821045, -0.006274295039474964, 0.006436790339648724, -0.032392874360084534, -0.00953745935112238, -0.0043641505762934685, 0.009053290821611881, -0.018849415704607964, 0.011261895298957825, 0.0031852328684180975, -0.011673107743263245, 0.003813657211139798, -0.006380414590239525, -0.02297479845583439, -0.00280552520416677, 0.010253763757646084, 0.0033311466686427593, -0.022178903222084045, -0.0016398726729676127, -0.006048792041838169, -0.004646029323339462, 0.04422516003251076, -0.0026844830717891455, 0.0076339468359947205, -0.006261030212044716, 0.032923467457294464, 0.01595766842365265, -0.03998039290308952, -0.018517792224884033, 0.017708634957671165, -0.006018945947289467, 0.0031587029807269573, -0.012508795596659184, -0.008721668273210526, -0.005617682822048664, 0.02912970818579197, -0.0020311870612204075, -0.023080917075276375, 0.013808755204081535, -0.0034322915598750114, -0.024964531883597374, 0.030005192384123802, 0.002475560875609517, 0.00316036120057106, 0.014472000300884247, 0.004132014699280262, -0.015108714811503887, 0.005737067200243473, -0.013729166239500046, -0.0003716243081726134, -0.048443395644426346, -0.01817290671169758, 0.009835919365286827, -0.01764230988919735, -0.004437107127159834, -0.04722302407026291, -0.016435204073786736, 0.015692370012402534, -0.0052230521105229855, 0.022709500044584274, -0.01122210081666708, -0.008436473086476326, 0.011719534173607826, -0.004516696557402611, -0.02052079141139984, -0.020693235099315643, -0.028015457093715668, 0.03287040814757347, -0.012614915147423744, -0.0006284244009293616, -0.01887594535946846, 0.019632045179605484, 0.023492129519581795, 0.03289693966507912, 0.012276659719645977, -0.000512771075591445, -0.004490166902542114, -0.023372745141386986, -0.0069839670322835445, 0.0010172516340389848, -0.010339985601603985, 0.04239460453391075, 0.0026811668649315834, 0.009205836802721024, -0.009225734509527683, -0.02457984909415245, 0.02228502370417118, -0.01218380592763424, 0.0015030783833935857, -0.012329719960689545, -0.01481688767671585, 0.017960667610168457, 0.015214834362268448, -0.00935838371515274, -0.02642367035150528, 0.0017924188869073987, 0.019592249765992165, 0.03289693966507912, -0.007952304556965828, -0.027803219854831696, -0.0078063905239105225, -0.004115433432161808, -0.02753792144358158, 0.01035988237708807, -0.0281481072306633, -0.012303190305829048, 0.010180806741118431, 0.009245631285011768, 0.02310744673013687, 0.004705721512436867, -0.027352213859558105, 0.016222966834902763, 0.026649173349142075, 0.008303823880851269, -0.00933185312896967, 0.005070506129413843, 0.026768557727336884, 0.017217833548784256, 0.01571889966726303, -0.012608282268047333, 0.004971019458025694, 0.011069554835557938, 0.011566988192498684, -0.030535787343978882, 0.020958533510565758, -0.0009666791884228587, 0.02030855417251587, 0.0034090778790414333, 0.008210970088839531, -0.004370782990008593, -0.02897053025662899, -0.035762157291173935, -0.021847281605005264, -0.0028619009535759687, 0.0034986159298568964, -0.010883846320211887, -0.014392410404980183, 0.012223600409924984, -0.011533825658261776, 0.023067651316523552, 0.006144962273538113, 0.00925226416438818, 0.025707365944981575, 0.00941807497292757, -0.0006093560950830579, -0.599361002445221, -0.011540458537638187, -0.013795490376651287, 0.0078063905239105225, 0.02310744673013687, 0.011905242688953876, 0.012197070755064487, 0.009371648542582989, -0.0016688895411789417, 0.01114251185208559, -0.013039391487836838, 0.011261895298957825, -0.02056058682501316, -0.007905877195298672, 0.01920756697654724, -0.024261493235826492, -0.02420843206346035, -0.010446104221045971, -0.007229367736726999, 0.018982063978910446, -0.024884942919015884, 0.001663086237385869, -0.025216564536094666, 0.0009409784688614309, -0.012462368234992027, 0.007846185006201267, -0.01085068378597498, -0.02359824813902378, -0.018982063978910446, 0.010903743095695972, -0.005727118346840143, 0.011082819662988186, 0.00012104216148145497, 0.009205836802721024, 0.049424998462200165, -0.025455333292484283, -0.0427660197019577, 0.0300317220389843, -0.008569122292101383, 0.04783321171998978, -0.005703904666006565, -0.026941001415252686, -0.004082271363586187, 0.0019930503331124783, -0.0014458735240623355, 0.011129247024655342, 0.02322683110833168, -0.01481688767671585, -0.027193034067749977, 0.01370263658463955, 0.005471769254654646, -0.003399129258468747, 0.028705231845378876, 0.0010139354271814227, 0.034568317234516144, 0.014538324438035488, 0.011434338986873627, -0.025097180157899857, 0.017204567790031433, 0.002394313458353281, -0.0322602242231369, 0.019313687458634377, -0.0061714923940598965, -0.036955997347831726, -0.03470096364617348, 0.02125036157667637, -0.0270073264837265, -0.01501586101949215, 0.0073752813041210175, -0.011706269346177578, 0.0005799246137030423, -0.012409308925271034, 0.007567622233182192, -0.005640896502882242, 0.016116846352815628, 0.046055715531110764, 0.009258896112442017, -0.006857950706034899, 0.011838918551802635, -0.0060521080158650875, -0.003627948695793748, -0.0036014190409332514, -0.019472865387797356, -0.031411271542310715, 0.005859767086803913, -0.0341438390314579, -0.0315173901617527, -0.021767692640423775, 0.02093200385570526, 0.012071054428815842, 0.008509430103003979, 0.013967934064567089, -0.00015638067270629108, -0.02309418097138405, -0.0017459917580708861, 0.03873349353671074, -0.003385864431038499, -0.002226844197139144, 0.009006863459944725, -0.006108484230935574, -0.00908645335584879, 0.002566757146269083, -0.02293500304222107, -0.0049345409497618675, 0.03207451477646828, -0.003992733545601368, -0.03814983740448952, 0.005000865552574396, 0.026702232658863068, -0.02052079141139984, 0.009026761166751385, 0.03287040814757347, -0.01628929004073143, -0.02934194728732109, 0.0024225013330578804, -0.02568083629012108, 0.01735048182308674, -0.003324514254927635, 0.011182306334376335, -0.014060788787901402, 0.031119443476200104, -0.0008041842374950647, 0.018239229917526245, -0.000319808314088732, -0.010512429289519787, 0.0041751256212592125, 0.02436761185526848, 0.004062374122440815, 0.0011275160359218717, -0.0017045389395207167, -0.00561105040833354, -0.003130515106022358, 0.039211027324199677, -0.004871532786637545, 0.004808524157851934, 0.0022251862101256847, 0.007468135561794043, -0.013165407814085484, 0.007481400854885578, 0.01883614994585514, -0.03788454085588455, 0.007627314422279596, -0.006360516883432865, -0.005120249465107918, 0.0006064543849788606, -0.01999019645154476, -0.013105715624988079, -0.005995732266455889, -0.01093690562993288, 0.011440971866250038, 0.005315906368196011, -0.012959802523255348, -0.006337303668260574, 0.006460003554821014, 0.0007540263468399644, 0.008336986415088177, 0.02038814313709736, -0.013304689899086952, 0.0046592941507697105, -0.010008363053202629, -0.014166907407343388, 0.004682507831603289, -0.00429782597348094, 0.007083453703671694, -0.023279890418052673, -0.018398409709334373, 0.014166907407343388, -0.0013961301883682609, -0.011706269346177578, -0.026529788970947266, 0.012807255610823631, 0.005163360387086868, -0.0038435033056885004, 0.006937540136277676, 0.003992733545601368, 0.008005363866686821, -0.006032210774719715, 0.006718669086694717, -0.0031918652821332216, 0.016939271241426468, 0.006380414590239525, 0.006751831620931625, 0.00960378348827362, -0.009683373384177685, 0.015440337359905243, 0.010830787010490894, 0.03297652676701546, 0.0033427535090595484, -0.01632908545434475, -0.015440337359905243, -0.00019462087948340923, 0.024433936923742294, 0.013875080272555351, 0.0012974725104868412, 0.030429668724536896, -0.0020378194749355316, 0.018929004669189453, 0.010963435284793377, 0.02638387493789196, 0.0066722421906888485, 0.01707191951572895, 0.030827615410089493, -0.010353250429034233, -0.01433935109525919, 0.028015457093715668, -0.03581521660089493, 0.0008261542534455657, -0.008217602036893368, -0.0072426325641572475, 0.013556722551584244, -0.00026612693909555674, -0.012236865237355232, -0.017695369198918343, -0.011891977861523628, 0.027113445103168488, 0.02158198319375515, -0.018026992678642273, -0.02211258001625538, -0.018491262570023537, 0.014538324438035488, 0.005869715940207243, -0.02699406072497368, 0.012953169643878937, -0.040272220969200134, -0.017164774239063263, 0.020335083827376366, 0.013099083676934242, 0.012866947799921036, 0.02248399704694748, -0.01952592469751835, -0.02679508738219738, -0.0004120407975278795, -0.001360480790026486, 0.009318588301539421, 0.02491147257387638, -0.04846992716193199, 0.004732251167297363, -0.017828019335865974, 0.022125843912363052, -0.015493396669626236, 0.01603725738823414, -0.003661110997200012, 0.007607417181134224, -0.01883614994585514, 0.0044868504628539085, 0.0032830615527927876, 0.08266682177782059, 0.01830555498600006, -0.021024858579039574, -0.009285426698625088, -0.018332084640860558, -0.010081320069730282, -0.008429840207099915, 0.02002999186515808, -4.134916525799781e-05, -0.041015055030584335, 0.006035527214407921, -0.004457004833966494, -0.001739359344355762, 0.028784820809960365, 0.0152015695348382, 0.0457904152572155, 0.0020278708543628454, 0.010744565166532993, -0.013729166239500046, -0.032843880355358124, -0.01030019111931324, -0.0030227378010749817, 0.0011358066694810987, -0.04682507738471031, -0.02412884309887886, 0.011732799001038074, 0.007660476956516504, -0.021157506853342056, -0.012071054428815842, -0.0019416490104049444, 0.01243583858013153, 0.013371014036238194, 0.009311956353485584, 0.0004953609313815832, -0.01095680333673954, -0.010930273681879044, 0.0036014190409332514, 0.007216102909296751, -0.005564623512327671, 0.013981198891997337, -0.002810499630868435, 0.024155372753739357, 0.00831045676022768, 0.009040025994181633, -0.023624777793884277, -0.013755695894360542, 0.0015868130140006542, -0.004781994502991438, 0.003913144115358591, 0.0022467414382845163, 0.04045793041586876, -0.03024395927786827, -0.017217833548784256, -0.022218698635697365, 0.003130515106022358, 0.0022550320718437433, -0.022616645321249962, -0.011089451611042023, 0.05443912744522095, 0.00026488336152397096, -0.022550320252776146, -0.005322539247572422, 0.008821154944598675, -0.023279890418052673, -0.02026875875890255, -0.006937540136277676, -0.007560989819467068, 0.0044337911531329155, -0.007434973493218422, 0.003641213523223996, 0.021064652130007744, 0.003230001777410507, 0.03451525792479515, 0.018040256574749947, -0.005677375011146069, -0.020427938550710678, 0.0004986771382391453, -6.476999260485172e-05, -0.03188880532979965, 0.011288425885140896, 0.020613646134734154, 0.01965857483446598, 0.0016100265784189105, 0.024380875751376152, -0.02154218964278698, -0.007713536266237497, -0.009590518660843372, 0.006824788171797991, 0.0016655733343213797, 0.0010678240796551108, 0.03525809198617935, -0.007892612367868423, 0.010333352722227573, -0.00561105040833354, -0.015254628844559193, -0.027299152687191963, 0.013430706225335598, -0.03302958980202675, 0.026436936110258102, -0.01227002777159214, -0.001820606761611998, 0.01169300451874733, -0.006871215533465147, 0.005538093391805887, -0.009464502334594727, 0.022125843912363052, 0.01169300451874733, -0.012236865237355232, 0.024473730474710464, 0.016342351213097572, -0.009610416367650032, 0.034409135580062866, 0.025176770985126495, 0.030509257689118385, -0.01785454899072647, 0.04846992716193199, 0.026941001415252686, 0.022868677973747253, -0.0022102631628513336, 0.027020590379834175, 0.005737067200243473, -0.011414442211389542, 0.009477767162024975, -0.014365880750119686, 0.0014069079188629985, 0.017058653756976128, -0.015546456910669804, -0.02215237356722355, 0.018637176603078842, 0.007441605906933546, -0.040855877101421356, -0.01077109482139349, -0.01263481192290783, 0.036955997347831726, -0.02179422229528427, 0.00915277749300003, 0.03056231699883938, -0.027723630890250206, -0.010180806741118431, 0.0034488725941628218, 0.006804890930652618, -0.015612781047821045, -0.021290156990289688, -0.015904609113931656, -0.016116846352815628, -0.0277766901999712, -0.02034834772348404, -0.012356249615550041, 0.015480131842195988, -0.02359824813902378, -0.031862277537584305, 0.019552454352378845, 0.00839004572480917, 0.0285195242613554, 0.002968020271509886, -0.009869081899523735, -0.01772189885377884, 0.02396966516971588, -0.0016572828171774745, -0.009139512665569782, 0.0051932064816355705, -0.014405676163733006, 0.014392410404980183, -0.0023860230576246977, 0.015095449984073639, 0.002289852360263467, -0.012150643393397331, 0.0013223441783338785, -0.0074150762520730495, 0.010698137804865837, -0.002376074204221368, 0.004732251167297363, 0.02211258001625538, -0.003384206211194396, 0.01928715780377388, 0.02605225332081318, 0.007163043133914471, 0.0014019336085766554, 0.02881135232746601, -0.029925603419542313, -0.023624777793884277, 0.014405676163733006, -0.007647211663424969, -0.008436473086476326, 0.015068920329213142, -0.004878165200352669, -0.011553723365068436, 0.027153240516781807, 0.045233290642499924, 0.006307457573711872, 0.008443105965852737, -0.002906670095399022, 0.0036113676615059376, 0.016143376007676125, -0.0032681385055184364, 0.009106350131332874, 0.002313066041097045, -0.01313224621117115, 0.011653210036456585, -0.02034834772348404, 0.04817809909582138, 0.03228675201535225, 0.014856682159006596, 0.017337217926979065, -0.025707365944981575, -0.012568487785756588, -0.03093373402953148, 0.02071976475417614, 0.0038501357194036245, 0.02995213307440281, -0.006804890930652618, -0.01944633573293686, -0.011931773275136948, -0.007136513479053974, -0.005955937784165144, 0.02658284828066826, -0.021966665983200073, -0.021979929879307747, -0.01723109744489193, -0.005803391337394714, 0.011454236693680286, -0.008489532396197319, -0.006178124807775021, -0.02305438742041588, 0.0021936818957328796, 0.003075797576457262, 0.005667426157742739, -0.0015271210577338934, -0.001663086237385869, -0.02420843206346035, -0.04610877484083176, -0.01895553432404995, 0.004148595966398716, -0.030827615410089493, 0.001243583858013153, -0.023571718484163284, 0.0072890594601631165, 0.020175904035568237, 0.010711402632296085, 0.015241364017128944, 0.016607647761702538, -0.007687006611377001, -0.004069006536155939, -0.001741017447784543, -0.020958533510565758, 5.59612744837068e-05, 0.0031553867738693953, 0.01928715780377388, 0.00778649328276515, 0.0004134916525799781, 0.013085818849503994, -0.0026960899122059345, 0.023279890418052673, 0.029156237840652466, -0.012442471459507942, -0.010519061237573624, 0.0013795490376651287, -0.04308437928557396, 0.004845002666115761, -0.01899532973766327, 0.002223527990281582, 0.0023744162172079086, -0.012256762944161892, -0.013596517033874989, -0.014233232475817204, 0.0007946501136757433, 0.012236865237355232, 0.009139512665569782, 0.0260920487344265, -0.018080051988363266, 0.03308264911174774, -0.00896706897765398, -0.009981833398342133, -0.011566988192498684, 0.01973816379904747, 6.6227316892764065e-06, 0.024513525888323784, 0.012628179974853992, 0.008827787823975086, 0.01347713265568018, 0.030827615410089493, 0.010558856651186943, 0.002729252213612199, 0.040564049035310745, 0.0060852705501019955, -0.03783148154616356, -0.00547840166836977, -0.02416863851249218, -0.005604417994618416, -0.033374473452568054, -0.0034356077667325735, -0.0017741796327754855, -0.03878655284643173, -0.008370148949325085, 0.0006130868569016457, 0.021887077018618584, -0.004427158739417791, 0.004062374122440815, 0.023372745141386986, 0.005936040543019772, 0.02179422229528427, 0.01609031669795513, 0.030005192384123802, 0.016554588451981544, 0.02408904954791069, -0.009683373384177685, -0.047541383653879166, -0.030986793339252472, -0.00954409223049879, 0.019552454352378845, 0.05836553871631622, -0.010538958944380283, -0.017337217926979065, -0.002145596779882908, 0.02622469700872898, -0.008569122292101383, -0.00793903972953558, 0.035470329225063324, 0.016010727733373642, 0.008734933100640774, -0.00145167694427073, 0.020573852583765984, -0.02971336431801319, 0.039821214973926544, -0.003976152278482914, 0.0018471366493031383, -0.01122210081666708, 0.0013696004170924425, 0.0296337753534317, 0.001111763995140791, -0.013198570348322392, 0.004055741708725691, -0.003150412579998374, 0.020733030512928963, 0.007832920178771019, -0.005574571900069714, -0.03061537630856037, 0.005916142836213112, -0.0296337753534317, 0.04353538528084755, -0.0010048158001154661, -0.007620682008564472, 0.008841052651405334, 0.023452334105968475, 0.0026761924382299185, 0.007216102909296751, 0.01292663998901844, 0.037194766104221344, -0.009816022589802742, -0.00951756164431572, -0.0029116442892700434, 0.009318588301539421, 0.029209299013018608, 0.017947401851415634, 0.0027673887088894844, 0.00320513010956347, -0.009258896112442017, -0.0031620191875845194, 0.014883211813867092, -0.02026875875890255, 0.009172674268484116, -0.033056117594242096, -0.007176307961344719, -0.005644212942570448, -0.03451525792479515, -0.0035052483435720205, 0.0018952218815684319, -0.03334794566035271, -0.014299556612968445, -0.022391142323613167, -0.03297652676701546, 0.014312821440398693, -0.0031852328684180975, 0.005485034082084894, 0.022802354767918587, 0.03424995765089989, -0.03475402295589447, 0.0029613878577947617, 0.013928139582276344, 0.024155372753739357, 0.010804256424307823, 0.0021887077018618584, -0.005216419696807861, -0.03639887273311615, 0.029527654871344566, 0.007978834211826324, -0.021515659987926483, -0.04528634995222092, 0.016236230731010437, 0.019764693453907967, -0.006436790339648724, 0.02424822747707367, 0.024181902408599854, 0.008529326878488064, -0.003651162376627326, -0.002813815837725997, -0.0018769826274365187, 0.006324038375169039, -0.02187381125986576, 0.0042779287323355675, 0.006244449410587549, -0.00022467414964921772, 0.025097180157899857, -0.01756272092461586, -0.010512429289519787, -0.0017575985984876752, -0.020772825926542282, -0.03289693966507912, 0.019552454352378845, -0.003326172474771738, -0.015599516220390797, -0.02367783710360527, -0.0068977451883256435, -0.013636311516165733, -0.020056521520018578, -0.0281481072306633, 0.025044120848178864, -0.023783955723047256, 0.02297479845583439, 0.03032355010509491, 0.0015544798225164413, 0.01452505961060524, -0.00960378348827362, -0.03631928190588951, 0.0030310284346342087, -0.026158371940255165, -0.014485265128314495, -0.017217833548784256, -0.023704366758465767, 0.0341438390314579, 0.0016465050866827369, -0.000289340503513813, -0.03085414506494999, 0.008741565980017185, 0.0003927652433048934, 0.018637176603078842, -0.007899245247244835, 0.008768095634877682, 0.018026992678642273, -0.0041917068883776665, -0.01670050248503685, 0.015228099189698696, -0.012449103407561779, -0.02256358601152897, -0.0063969953916966915, -0.01711171492934227, 0.001961546251550317, -0.005203154869377613, 0.003972835838794708, 0.018358614295721054, -0.0041917068883776665, 0.005972519051283598, 0.012893477454781532, -0.009245631285011768, 0.008118115365505219, -0.012601650319993496, 0.004009314347058535, -0.029209299013018608, -0.01944633573293686, -0.03422342985868454, -0.01481688767671585, 0.009245631285011768, -0.0028370292857289314, -0.04939846694469452, 0.0076737417839467525, 0.03783148154616356, -0.013185305520892143, -0.005846502259373665, 0.001727752503938973, 0.004171809181571007, -0.01711171492934227, 0.011175673454999924, -0.026476729661226273, -0.0036843244452029467, -0.018982063978910446, 0.0026546369772404432, 0.04854951426386833, -0.02228502370417118, 0.011838918551802635, 0.041545651853084564, -0.0025452016852796078, -4.909565541311167e-05, -0.0050041815266013145, 0.0064832172356545925, -0.0405375175178051, 0.013364381156861782, 0.008628814481198788, -0.00448353448882699, -0.014617914333939552, 0.003326172474771738, -0.013410808518528938, -0.021237095817923546, -0.003627948695793748, 0.0020228964276611805, 0.01481688767671585, -0.03902532160282135, 0.014246497303247452, 0.023173771798610687, -0.0311459731310606, -0.014352615922689438, -0.005249582231044769, -0.01744333654642105, 0.014140377752482891, -0.037645772099494934, 0.007017129100859165, -0.024858413264155388, -0.0024258175399154425, -0.014458735473453999, 0.002972994465380907, -0.0029414903838187456, 0.01907491870224476, 0.009510929696261883, 0.006178124807775021, -0.0011001571547240019, 0.25914299488067627, -0.033135708421468735, -0.014511794783174992, 0.024142108857631683, 0.013225100003182888, -0.012541958130896091, 0.03382548317313194, 0.011772594414651394, 0.005856451112776995, 0.02121056616306305, -0.010240498930215836, -0.013178672641515732, 0.01384854968637228, 0.004224868956953287, 0.01662091352045536, -0.014551589265465736, -0.019578984007239342, -0.01263481192290783, -0.028492994606494904, -0.02391660585999489, 0.024566585198044777, -0.006201338488608599, -0.005322539247572422, -0.016010727733373642, 0.008900744840502739, 0.015652576461434364, -0.011255263350903988, 0.024407407268881798, 0.02881135232746601, 0.014365880750119686, -0.01944633573293686, 0.036955997347831726, 0.00041722238529473543, 0.006904377602040768, 0.00047712167724967003, -0.020494261756539345, 0.01887594535946846, 0.023439068347215652, 0.028625642880797386, 0.008648711256682873, -0.017098449170589447, 0.0050738221034407616, -0.005315906368196011, -0.0007225222652778029, -0.016939271241426468, -0.009583886712789536, 0.005299325566738844, -0.001653137500397861, 0.027590980753302574, 0.02117077261209488, 0.003304617013782263, -0.00019368818902876228, 0.025296153500676155, 0.03310917690396309, -0.00481184059754014, -0.00033929114579223096, 0.038839612156152725, 0.009736432693898678, 0.0015602832427248359, 0.028386874124407768, -0.01206442154943943, 0.024394141510128975, -0.018411673605442047, 0.014909741468727589, -0.005037343595176935, -0.014962801709771156, 0.00527279544621706, 0.0288909412920475, -0.010101217776536942, -0.009305323474109173, -0.008655344136059284, -0.001064507756382227, -0.017788223922252655, -0.0054120770655572414, -0.03424995765089989, -0.02075956016778946, 0.054226890206336975, 0.011460868641734123, 0.014830152504146099, 0.04857604578137398, -0.00868187379091978, -0.00707682128995657, 0.026742028072476387, -0.012701136991381645, 0.0018786407308652997, -0.02113097719848156, 0.0003935942950192839, -0.01501586101949215, -0.01813311129808426, 0.0013347800122573972, 0.009802756831049919, -0.013994463719427586, 0.009285426698625088, -0.026317551732063293, 0.004772046115249395, 0.014233232475817204, -0.01030019111931324, 0.017867812886834145, 0.00320513010956347, 0.003070823149755597, -0.029978662729263306, 0.045657768845558167, 0.03257858008146286, 0.013105715624988079, -0.01067160815000534, 0.0021058020647615194, -0.002230160403996706, -0.00033866934245452285, 0.01017417386174202, -0.019393276423215866, -0.010638445615768433, -0.05990426614880562, 0.008277294225990772, 0.02207278460264206, -0.004085587803274393, -0.0006056253332644701, -0.022590115666389465, -0.008907376788556576, -0.005561307072639465, -0.008960436098277569, 0.033056117594242096, -0.017469866201281548, -0.00645337114110589, 0.0009368332102894783, 0.010645078495144844, 0.0010935247410088778, -0.014352615922689438, -0.02867870219051838, -0.011354750022292137, -0.04624142497777939, 0.04655978083610535, 0.023279890418052673, -0.00010611915786284953, -0.004835054278373718, -0.0022948267869651318, 0.002142280573025346, -0.009822654537856579, 0.012614915147423744, 0.019300421699881554, 0.010598651133477688, 0.005299325566738844, -0.004496799316257238, -0.006048792041838169, 0.0001750344381434843, -0.007355384062975645, -0.012097584083676338, 0.0073155895806849, 0.006128381472080946, -0.010499164462089539, -0.01616990752518177, -0.05194532871246338, 0.0013919848715886474, -0.005322539247572422, -0.007096718531101942, 0.01875656098127365, -0.009059922769665718, -0.01736374758183956, -0.02785627916455269, -0.013676106929779053, 0.025614511221647263, -0.013284792192280293, 0.0004642713174689561, 0.011905242688953876, -0.03302958980202675, -0.014047523960471153, -0.02067997120320797, -0.16724379360675812, -0.015970934182405472, 0.005544725805521011, -0.014578118920326233, 0.04422516003251076, 0.009782860055565834, -0.0011407809797674417, -0.0027673887088894844, -0.02224522829055786, 0.008078320883214474, 0.01809331588447094, 0.009404810145497322, -0.04759444296360016, -0.0009011838119477034, -0.015931138768792152, 0.007740065921097994, -0.004075638949871063, 0.014803622849285603, 0.039131440222263336, 0.004957754630595446, 0.04682507738471031, -0.01567910611629486, -0.007189572788774967, 0.008986965753138065, -0.007527827750891447, 0.004971019458025694, -0.02195340022444725, -0.007169675547629595, -0.005010813940316439, -0.007030394393950701, 0.010353250429034233, 0.00612506503239274, 0.005249582231044769, 0.013443971052765846, 0.009709903039038181, -0.02704712003469467, -0.011673107743263245, 0.005418709479272366, 0.008827787823975086, 0.026370611041784286, -0.0028370292857289314, 0.016395410522818565, 0.025720631703734398, -0.005226368550211191, -0.0063107735477387905, 0.014856682159006596, -0.02079935558140278, 0.022616645321249962, 0.006871215533465147, 0.01037978008389473, -0.002886772621423006, -0.03860084339976311, -0.04849645495414734, 0.006891112774610519, 0.01227002777159214, -0.001204618252813816, -0.00515009555965662, 0.024155372753739357, -0.020255494862794876, -0.0008249106467701495, 0.009683373384177685, -0.02034834772348404, 0.003165335627272725, -0.004241450224071741, -0.03255205228924751, 0.009311956353485584, -0.00781965535134077, 0.017841283231973648, -0.025587981566786766, 0.002798892790451646, 0.006877847947180271, -0.03348059579730034, -0.018106581643223763, -0.02859911322593689, 0.006513063330203295, -0.018159640952944756, 0.0031703098211437464, 0.03796412795782089, 0.022762559354305267, 0.009371648542582989, -0.003571572946384549, 0.04082934558391571, -0.0015909583307802677, -0.01977795735001564, -0.018252495676279068, 0.03228675201535225, -0.0018620595801621675, 0.00697733461856842, -0.030350079759955406, -0.008277294225990772, 0.027378743514418602, -0.019552454352378845, -0.03499279171228409, -0.01292663998901844, 0.014246497303247452, -0.001475719502195716, 0.005760280415415764, 6.0106554883532226e-05, -0.031172502785921097, -0.0035151971969753504, 0.0072890594601631165, -0.008635446429252625, -0.03814983740448952, 0.02195340022444725, 0.03377242386341095, 0.032764289528131485, -0.02060038223862648, 0.03692946583032608, 0.024924736469984055, -0.0018421622226014733, -0.020772825926542282, 0.017469866201281548, 0.01678009144961834, 0.005531460978090763, 0.016727032139897346, -0.004951121751219034, -0.0029166187159717083, -0.0013729166239500046, 0.011314955540001392, 0.005863083526492119, -0.015493396669626236, -0.004211604129523039, 0.0026314235292375088, 0.0028552685398608446, -0.010499164462089539, -0.00857575424015522, -0.051971856504678726, -0.030535787343978882, -0.012966434471309185, 0.03722129389643669, -0.003548359265550971, 0.03653151914477348, 0.0019333583768457174, 0.02038814313709736, 0.0059128268621861935, 0.025243094190955162, 0.002092537237331271, -0.018040256574749947, 0.0034952997229993343, 0.005475085228681564, 0.014418940991163254, 0.016926005482673645, 0.027564451098442078, -0.01140780933201313, 0.0041751256212592125, 0.022828884422779083, -0.010207336395978928, -0.000913619645871222, -0.012933271937072277, -0.013596517033874989, -0.013105715624988079, 1.8200367776444182e-05, -0.023704366758465767, 0.01805352233350277, 0.00434093689545989, 0.002883456414565444, 0.00810485053807497, 0.006002364680171013, -0.0044337911531329155, 0.0010462686186656356, 0.005952621344476938, 0.006317405961453915, -0.04292519763112068, -0.032313283532857895, 0.022457467392086983, -0.0009923799661919475, 0.021276891231536865, -0.008920641615986824, -0.018186170607805252, -0.014538324438035488, -0.03852125257253647, 0.009451237507164478, -0.01616990752518177, 0.015586251392960548, -0.018332084640860558, -0.015294423326849937, -0.04480881616473198, 0.01247563399374485, -0.016634177416563034, -0.005859767086803913, 0.013782225549221039, -0.003394155064597726, -0.007554357405751944, 0.017323952168226242, -0.04812503978610039, 0.013928139582276344, 0.006784993689507246, 0.01132822036743164, -0.010943538509309292, 0.02383701503276825, 0.014273026958107948, 0.019592249765992165, -0.029156237840652466, -0.011235365644097328, 0.01973816379904747, 0.014405676163733006, -0.004052425269037485, 0.008622181601822376, -0.021555453538894653, 0.031411271542310715, -0.015493396669626236, 0.008695138618350029, 0.008244131691753864, -0.012508795596659184, 0.007401811424642801, -0.006247765384614468, -0.02346559800207615, -0.013569987379014492, 0.008774727582931519, -0.023200301453471184, 0.012920007109642029, 0.009013496339321136, -0.012561854906380177, 0.0011789174750447273, -0.005849818699061871, -0.030986793339252472, -0.0032498992513865232, 0.00529269315302372, 0.024593114852905273, -0.007282427046447992, -0.023651307448744774, -0.026848146691918373, 0.009802756831049919, 0.0051534115336835384, 0.017774958163499832, 0.02806851640343666, -0.006118432618677616, -0.0016423597699031234, -0.08908703178167343, 0.009882346726953983, -0.008821154944598675, -0.0315173901617527, 0.0033278304617851973, 0.00330295879393816, 0.00011285523942206055, -0.008940539322793484, -0.013729166239500046, -0.01924736239016056, -0.01603725738823414, 0.018743297085165977, -0.001477377605624497, -0.008867582306265831, -0.014007728546857834, -0.02650325931608677, 0.041333410888910294, 0.011971567757427692, 0.014949535951018333, 0.010167541913688183, 0.0006537106237374246, -0.037115175276994705, -0.004423842299729586, 0.002211921149864793, -0.03541726991534233, 0.013914874754846096, -0.01274093147367239, 0.029607245698571205, -0.004403945058584213, -0.01850452832877636, -0.005000865552574396, -0.01658111810684204, -0.023492129519581795, 0.0022583482787013054, -0.011049657128751278, -0.005352384876459837, -0.006460003554821014, 0.022099314257502556, 0.00030799428350292146, 0.026025723665952682, -0.019300421699881554, -0.009583886712789536, 0.018637176603078842, 0.009942038916051388, 0.010459369979798794, 0.0008530985214747488, 0.01075119711458683, -0.0007788980146870017, 0.0017194619867950678, 0.025959398597478867, 0.02785627916455269, 0.014299556612968445, 0.006489849649369717, -0.009855817072093487, -0.022258494049310684, -0.03382548317313194, -0.020653441548347473, -0.0007473939331248403, -0.005186574067920446, -0.02220543473958969, 0.04181094840168953, 0.009119614958763123, 0.02125036157667637, 0.014962801709771156, -0.009225734509527683, 0.0019598882645368576, 0.004556491505354643, -0.02519003488123417, 0.005183257628232241, -0.026198167353868484, -0.01644846983253956, 0.014790358021855354, 0.01501586101949215, 0.004649345763027668, -0.017244363203644753, 0.009729800745844841, -0.018690235912799835, -0.0016896160086616874, -0.02745833247900009, 0.01319193746894598, 0.021754426881670952, 0.01284705102443695, -0.043031319975852966, 0.011719534173607826, 0.02875829115509987, 0.014180172234773636, -0.022908473387360573, -0.005083770956844091, -0.01801372691988945, -0.009942038916051388, -0.023478863760828972, 0.00039193619159050286, 0.02581348456442356, 0.02918276935815811, 0.019141243770718575, 0.020295288413763046, 0.02248399704694748, -0.003064190736040473, 0.03732741251587868, -0.024115579202771187, -0.01489647664129734, -0.011368014849722385, -0.016979064792394638, -0.03578868508338928, -0.017920872196555138, -0.00048043791321106255, -0.01636888086795807, -0.04173135757446289, -0.007322221994400024, 0.0014243180630728602, -0.023943135514855385, -0.0031669936142861843, -0.011208835989236832, 0.034568317234516144, -0.01039967779070139, -0.00041038269409909844, -0.021595248952507973, -0.013390910811722279, -0.03146433085203171, 0.01093690562993288, 0.010532326065003872, 0.03655805066227913, 0.007395179010927677, 0.0003842674195766449, 0.003634581109508872, -0.016528058797121048, 0.027352213859558105, -0.034780554473400116, 0.021688103675842285, -0.009550724178552628, 0.0018686919938772917, 0.004881481174379587, -0.012502163648605347, -0.021290156990289688, -0.013032759539783001, 0.015241364017128944, -0.017960667610168457, 0.008084953762590885, -0.019181037321686745, 0.06123075261712074, 0.029448065906763077, 0.005418709479272366, -0.00481184059754014, 0.00992877408862114, 0.011049657128751278, 0.011447603814303875, -0.00448353448882699, 0.0020278708543628454, -0.011467501521110535, 0.02199319563806057, -0.01867697201669216, -0.014923006296157837, 0.006652344949543476, -0.012694504112005234, -0.002661269623786211, -0.018637176603078842, 0.024301286786794662, -0.00048043791321106255, 0.0020278708543628454, 0.07513236254453659, 0.00886094942688942, 0.026821617037057877, 0.029527654871344566, -0.00913287978619337, -0.018982063978910446, 0.031570449471473694, -0.006871215533465147, 0.01105629000812769, -5.9070232964586467e-05, 0.01703212410211563, 0.004496799316257238, -0.040033452212810516, -0.02716650441288948, -0.0023661255836486816, 0.008197705261409283, -0.011414442211389542, 0.0010073028970509768, 0.0334010049700737, 0.017469866201281548, 0.005952621344476938, -0.020202435553073883, -0.00297465268522501, -0.02408904954791069, 0.0073752813041210175, -0.004168493207544088, 0.0019350164802744985, -0.010028260760009289, 0.01140780933201313], "9e0fad21-aa28-466a-9c2f-38571c907bbc": [0.015515967272222042, -0.027224654331803322, 0.0010927999392151833, -0.019114628434181213, -0.002135075395926833, 0.021096499636769295, -0.026859574019908905, -0.021605005487799644, 0.009733336046338081, -0.01771949604153633, 0.008305605500936508, 0.013664482161402702, -0.04114991053938866, -0.020444568246603012, -0.022217821329832077, -0.022465554997324944, 0.005492521915584803, -0.0001861060445662588, 0.013886138796806335, -0.01788899675011635, -0.017536954954266548, -0.006252021994441748, 0.009198752231895924, -0.026481453329324722, -0.020392414182424545, 0.017745573073625565, 0.023404337465763092, -0.010339631699025631, 0.011148027144372463, 0.00119792390614748, 6.529500387841836e-05, 0.003924626857042313, -0.010385267436504364, -0.010313554666936398, -0.0013054925948381424, 0.007810138165950775, 0.007229919079691172, 0.0063856677152216434, 0.0001521852391306311, -0.011115429922938347, 0.020509760826826096, -0.004847109783440828, 0.0173022598028183, -0.0036247384268790483, -0.0004755024565383792, 0.017902035266160965, -0.013977409340441227, 0.015020499005913734, 0.004201697651296854, 0.01756303198635578, -0.013019070029258728, 0.011389241553843021, -0.047278065234422684, -0.003357446752488613, -0.0179281122982502, 0.0034943523351103067, -0.0341351293027401, 0.002492007799446583, -0.0012231862638145685, 0.0019720925483852625, -0.012158520519733429, 0.01073079090565443, -0.032779108732938766, -0.011852112598717213, 0.005176335107535124, 0.024356156587600708, -0.018514851108193398, 0.020744455978274345, -0.03906372934579849, 0.005476223770529032, 0.02153981290757656, 0.011069795116782188, 0.01826711744070053, -0.00659428583458066, 0.020209873095154762, 0.012204155325889587, -0.020079486072063446, -0.0151900015771389, 0.008507704362273216, -0.0034584959503263235, 0.009987588971853256, -0.007751464378088713, 0.012608353048563004, -0.009166155010461807, 0.013064704835414886, -0.02087484300136566, -0.0007053082808852196, 0.004433133639395237, 0.01007234025746584, -0.02373030222952366, 0.0030901548452675343, -0.003425899427384138, 0.009948473423719406, 0.027120346203446388, -0.011500069871544838, -0.004772137850522995, -0.0030412599444389343, -0.009694219566881657, -0.009602949023246765, -0.03888118639588356, -0.015868009999394417, 0.019231975078582764, -0.004201697651296854, -0.001325050601735711, -0.03517821803689003, -0.013169013895094395, 0.027224654331803322, -0.01404260192066431, 0.0071777645498514175, -0.023208757862448692, -0.017771650105714798, 0.007901408709585667, -0.0167155209928751, -0.0345262847840786, -0.002910873619839549, -0.007725386880338192, 0.0335875041782856, -0.01209984626621008, 0.00012631170102395117, 0.0007040859200060368, 0.031736019998788834, 0.004710204433649778, 0.019218936562538147, 0.030249616131186485, 0.008690245449543, 0.031136242672801018, 8.550233360438142e-06, -0.0038692126981914043, -0.005186113994568586, -0.008096987381577492, 0.043653324246406555, 0.008501185104250908, 0.00806439109146595, 0.006434562616050243, -0.015124808065593243, 0.002056843601167202, -6.570245750481263e-05, 0.013716636225581169, -0.015216078609228134, -0.009068365208804607, 0.03027569316327572, 0.012047692202031612, -0.013599288649857044, -0.019140705466270447, 0.011884708888828754, 0.027120346203446388, 0.014290335588157177, -0.018958164379000664, -0.0038170581683516502, 0.0005162481684237719, 0.0035073908511549234, -0.00973985530436039, -0.00027116271667182446, -0.03736870735883713, 0.004129985347390175, 0.005381693597882986, 0.0041495431214571, 0.021409425884485245, 0.010646039620041847, 0.012966915033757687, 0.004853629041463137, 0.027876585721969604, 0.008533782325685024, -0.01846269704401493, -0.0013291251379996538, 0.027016036212444305, 0.027355041354894638, 0.015281272120773792, -0.009100962430238724, 0.017002370208501816, 0.0026468413416296244, 0.015203040093183517, -0.03898549824953079, 0.032544415444135666, -0.011676090769469738, 0.014459838159382343, -0.027172500267624855, -0.000666192383505404, -0.01353409606963396, -0.012080288492143154, -0.005160036962479353, -0.015750661492347717, 0.004847109783440828, 0.02461692877113819, -0.012536640278995037, -0.027328964322805405, 0.01125885546207428, 0.032857343554496765, 0.007614558562636375, 0.006675777491182089, 0.01788899675011635, 0.04258415848016739, 0.036560311913490295, 0.016611211001873016, -0.6241852045059204, -0.022843675687909126, -0.005495781544595957, 0.0036508156917989254, 0.010228803381323814, 0.007366824895143509, 0.0057598138228058815, 0.03004099801182747, -0.01494226697832346, 0.012419292703270912, -0.010750348679721355, -0.007438537199050188, 0.005293682683259249, -0.013677520677447319, -0.0024007372558116913, -0.026272835209965706, -0.023352181538939476, -0.01106327585875988, -0.018214963376522064, 0.028737135231494904, -0.005981470458209515, 0.010430902242660522, -0.012008575722575188, 0.003993079531937838, 0.01182603556662798, 0.007562404032796621, 0.0015915274852886796, -0.006754009053111076, -0.02200920321047306, 0.02590775303542614, -0.02267417311668396, 0.01309078186750412, 0.04328824579715729, 0.0018139990279451013, 0.04250592738389969, -0.008566378615796566, -0.05836089700460434, 0.006330253556370735, -0.016493864357471466, 0.051867660135030746, -0.007314670365303755, -0.017745573073625565, 0.011936863884329796, -0.016663366928696632, -0.014186026528477669, -0.01861916109919548, 0.01380790676921606, -0.024082345888018608, 0.0015850082272663713, 0.007555884774774313, 0.013899177312850952, -0.006092298775911331, 0.009765932336449623, -0.005714178550988436, 0.0032091322354972363, 0.008768477477133274, 0.04566127434372902, -0.028267744928598404, -0.0051698158495128155, -0.006597545463591814, -0.020940035581588745, 0.021513735875487328, -0.019466672092676163, -0.015568121336400509, -0.021292079240083694, 0.011376203037798405, -0.007699309848248959, -0.025764329358935356, 0.014498953707516193, -0.02114865370094776, 0.011219738982617855, 0.015555082820355892, 0.017823804169893265, 0.003908328711986542, 0.01987086795270443, 0.03353535011410713, 0.013175533153116703, -0.021213848143815994, 0.0014326191740110517, 0.018567005172371864, 0.0159332025796175, -0.005515339318662882, -0.001003974350169301, -0.0326487235724926, 0.018567005172371864, -0.003794240765273571, -0.01384702231734991, -0.019271092489361763, 0.020157719030976295, 0.01490315143018961, 0.002007948700338602, 0.011956421658396721, -0.0074972109869122505, -0.039011575281620026, -0.01889297179877758, 0.021292079240083694, -0.011773880571126938, -0.008181738667190075, 0.011043718084692955, 0.01466845627874136, -0.023404337465763092, 0.0002469190221745521, -0.001066722790710628, -0.010756867937743664, 0.04174968600273132, -0.01749783754348755, -0.04203653708100319, 0.008227374404668808, 0.03322242200374603, -0.010593884624540806, -0.0065193139016628265, 0.015789778903126717, -0.005538157187402248, -0.02477339282631874, 0.03384827822446823, -0.030953701585531235, 0.014603262767195702, -0.0026745484210550785, 0.028502440080046654, -0.012432331219315529, 0.021878818050026894, -0.011506589129567146, 0.01702844724059105, -0.014955306425690651, -0.0007134574116207659, 0.019453631713986397, 0.01201509591192007, -0.0032400989439338446, 0.001145769376307726, 0.008853227831423283, -0.014551108703017235, 0.006467159371823072, 0.019414516165852547, -0.001758584869094193, -0.007412459701299667, 0.017367452383041382, 0.008012237027287483, -0.010919850319623947, 0.021526774391531944, -0.0016664996510371566, -0.01157178170979023, -0.014146910980343819, 0.0157767403870821, -0.014212104491889477, -0.005280644167214632, -0.0327269546687603, 0.0046319724060595036, 0.0027951558586210012, -0.012510563246905804, 0.019336285069584846, 0.011148027144372463, -0.0059097581543028355, -0.021787546575069427, 0.02910221740603447, 0.006701854523271322, 0.001149029121734202, -0.010287477634847164, -0.021057384088635445, -0.004863407928496599, -0.003976781386882067, -0.003254767507314682, 0.010822061449289322, -0.041280295699834824, 0.008951017633080482, -0.030327847227454185, -0.006424783729016781, 0.01011145580559969, -0.010652558878064156, -0.03259656950831413, -0.02730288729071617, -0.007484172470867634, 0.00036752631422132254, -0.0020649926736950874, 0.0028994649183005095, 0.000692269648425281, -0.012393215671181679, -0.014381606131792068, 0.013990447856485844, -0.006897434126585722, 0.00029622131842188537, 0.0048503694124519825, -0.004227775149047375, 0.020809650421142578, -0.0028016751166433096, 0.021396387368440628, 0.02902398444712162, 0.023704225197434425, 0.005648985505104065, -0.006111856549978256, -0.0074646142311394215, -0.020587993785738945, 0.018162809312343597, 0.02863282710313797, 0.006082519888877869, 0.024525659158825874, 0.010267918929457664, 0.024982010945677757, 0.01268006581813097, 0.011219738982617855, -0.00116125273052603, 0.0319446362555027, 0.007614558562636375, -0.000927372369915247, -0.021096499636769295, 0.019818713888525963, -0.01301255077123642, 0.010007146745920181, -0.012256310321390629, 0.003771423129364848, 0.009466043673455715, 0.0036997105926275253, -0.04023720696568489, -0.01419906597584486, -0.01176736131310463, 0.018593084067106247, 0.006701854523271322, -0.010900292545557022, -0.0024333340115845203, 0.0006894174148328602, 0.017132757231593132, 0.002762559335678816, 0.0073472666554152966, 0.00371600897051394, -0.038046713918447495, -0.007855772972106934, 0.011943383142352104, -0.00586412288248539, 0.017967229709029198, 0.009765932336449623, -0.025229744613170624, -0.00674097053706646, -0.006085779517889023, 0.0009730075835250318, 0.006340032909065485, 0.030223539099097252, -0.0353868342936039, 0.02279152162373066, -0.025464439764618874, 0.03116231970489025, 0.0001722524903016165, 0.026833495125174522, -0.004051753785461187, 0.013351554982364178, -0.013129898346960545, 0.021122576668858528, 0.02173539251089096, 0.056744106113910675, 0.015881048515439034, -0.035699762403964996, -0.01846269704401493, -0.013129898346960545, -0.011069795116782188, -0.0033362589310854673, 0.007986159063875675, 0.0017814025050029159, -0.020705340430140495, -0.0031749058980494738, 0.014916189946234226, 0.020327219739556313, 0.034969598054885864, -0.0002689216926228255, 0.026911728084087372, 0.0008499555406160653, 0.015946241095662117, -0.0023110967595130205, -0.02341737598180771, -0.02902398444712162, 0.010065820999443531, -0.013032108545303345, -0.021761469542980194, -0.013899177312850952, 0.008116546086966991, 0.0171066801995039, -0.008449031040072441, -0.011265374720096588, -0.009987588971853256, -0.0026745484210550785, 0.015594198368489742, 0.024864662438631058, -0.007014781702309847, -0.014303375035524368, -0.024760354310274124, 0.030666852369904518, -0.0006364480359479785, 0.012823490425944328, -9.193251025862992e-05, -0.010241841897368431, 0.002832641825079918, -0.0022622018586844206, -0.0018710431177169085, -0.004309266339987516, 0.010039743036031723, -0.0018417062237858772, -0.010691674426198006, -0.012458409182727337, -0.004863407928496599, 0.05403207242488861, -0.03259656950831413, -0.0007093828171491623, -0.006916991900652647, 0.0019932801369577646, -0.010326593182981014, -0.001269636326469481, -0.023000139743089676, 0.04328824579715729, -0.006956107914447784, -0.020288104191422462, -0.010176649317145348, 0.022856714203953743, -0.02030114270746708, 0.003689931705594063, -0.016311323270201683, -0.0083968760445714, -0.01542469672858715, -0.006708373781293631, -0.004860148299485445, 0.006574728060513735, -0.008370799012482166, 0.04203653708100319, 0.021644122898578644, -0.009342176839709282, -0.0037486054934561253, -0.009759413078427315, 0.01581585593521595, 0.02504720352590084, 0.005195893347263336, 0.014981383457779884, 0.010991563089191914, -0.026677032932639122, -0.006760528311133385, -0.0358562245965004, -0.017041485756635666, -0.002909243805333972, 0.0028505700174719095, -0.0031863145995885134, -0.005140479188412428, 0.008194777183234692, -0.016585133969783783, 0.0172631423920393, -0.00558053283020854, -0.013195090927183628, -0.002032396150752902, 0.024369195103645325, -0.036560311913490295, 0.015242155641317368, -0.004697165451943874, 0.007484172470867634, -0.005577273201197386, 0.014016524888575077, -0.00690395338460803, 0.02430400252342224, 0.019544903188943863, 0.017432644963264465, -0.015685468912124634, -0.00034735718509182334, 0.0061477129347622395, -0.008579417131841183, 0.019544903188943863, 0.0172631423920393, 0.01873650774359703, -0.018475735560059547, 0.04584381356835365, -0.013279842212796211, 0.0024577812291681767, 0.012028134427964687, 0.02602510154247284, 0.010743829421699047, 0.000376694108126685, 0.00816218089312315, -0.015020499005913734, 0.002047064481303096, -0.0031651267781853676, -0.009726815856993198, -0.01380790676921606, 0.00602710573002696, 0.018866894766688347, -0.0659233033657074, 0.009120520204305649, -0.013136417604982853, 0.05356268212199211, -0.008540301583707333, 0.006235723849385977, -0.0084946658462286, -0.014890112914144993, -0.010515653528273106, -0.021761469542980194, -0.007269035093486309, -0.015633314847946167, -0.029701994732022285, -0.035934459418058395, -0.029754148796200752, -0.021631082519888878, -0.02400411292910576, 0.00796660128980875, 0.01706756465137005, -0.047617070376873016, -0.02706819213926792, 0.01451199222356081, 0.009140077978372574, 0.010848138481378555, 0.0041234660893678665, 0.023639032617211342, -0.013364593498408794, 0.047825686633586884, -0.01714579574763775, 0.004120206460356712, -0.0001998577208723873, -0.04748668149113655, 0.010776425711810589, 0.0004335343837738037, 0.0018025903264060616, -0.002179080620408058, -0.023482568562030792, 0.007373344153165817, -0.0016599802765995264, 0.004354901611804962, 0.0341351293027401, -0.010835099965333939, -0.004922082182019949, 0.021591966971755028, 0.01466845627874136, -0.003543247003108263, 0.005378433968871832, -0.01419906597584486, -0.007562404032796621, -0.01881474070250988, -0.02232213132083416, -7.746778283035383e-05, -0.004465729929506779, -0.004807993769645691, 0.01761518605053425, 0.010665597394108772, -0.0011156175751239061, -0.0058282664977014065, 0.028293821960687637, 0.007810138165950775, -0.009172674268484116, 0.004638491664081812, 0.0010911701247096062, 0.018123691901564598, -0.00216115266084671, 0.014342490583658218, 0.013195090927183628, 0.00396374287083745, -0.005987989716231823, -0.014655417762696743, 0.029988843947649002, 0.029675915837287903, 0.0037323071155697107, 0.028893599286675453, -0.017732534557580948, -0.019936062395572662, -0.015072654001414776, 0.006183569319546223, 0.0080252755433321, 0.013351554982364178, -0.002787006786093116, -0.02310444787144661, -0.03392650932073593, -0.020392414182424545, -0.01877562329173088, 0.017041485756635666, -0.026351066306233406, -0.03596053645014763, -0.033092036843299866, 0.02446046657860279, -0.003497611964121461, -0.006832241080701351, -0.024251848459243774, -0.02512543648481369, -0.01779772713780403, 0.01215200126171112, 0.014459838159382343, 0.009453005157411098, 0.015411658212542534, 0.02941514365375042, -0.03950704261660576, -0.012771335430443287, 0.004423354286700487, -0.03820317983627319, -0.004002858884632587, -0.012060730718076229, -0.0029157630633562803, 0.013899177312850952, 0.016689443960785866, 0.00464501092210412, -0.0011514738434925675, -0.005655504763126373, -0.005368655081838369, -0.006102077662944794, -0.004133244976401329, 0.004201697651296854, 0.006574728060513735, 0.013260284438729286, 0.00934869609773159, -0.004827552009373903, 0.0026712887920439243, -0.011454434134066105, 0.003078745910897851, 0.013058185577392578, -0.02041849121451378, 0.004944899585098028, 0.002126926090568304, -0.04999009892344475, -0.01001366600394249, -0.023273950442671776, 0.004257111810147762, -0.004240813665091991, -0.01904943585395813, -0.0026973660569638014, -0.008077429607510567, -0.022739367559552193, 0.020235950127243996, 0.025803444907069206, 0.015163923613727093, -0.016767675057053566, 0.021565889939665794, 0.00075338821625337, -0.004856888670474291, -0.006799644324928522, -0.0076667130924761295, -0.012784374877810478, 0.03929842263460159, 0.014368567615747452, 0.019453631713986397, 0.015489889308810234, -0.007764502894133329, 0.013494979590177536, -8.067650924203917e-05, 0.0322575643658638, 0.01787595823407173, -0.015515967272222042, -0.001344608492217958, -0.010430902242660522, -0.022113513201475143, -0.034813135862350464, -0.0003771015617530793, -0.003031481057405472, -0.00865112990140915, -0.007621077820658684, 0.01979263685643673, 0.010737310163676739, -0.013195090927183628, 0.0014692903496325016, 0.011943383142352104, -0.019505787640810013, 0.034734904766082764, 0.01522911712527275, 0.0165199413895607, 0.03614307567477226, 0.011467472650110722, -0.02060103230178356, -0.042401619255542755, -0.0017471761675551534, 0.0049188220873475075, 0.03165778890252113, 0.04266238957643509, 0.014329452067613602, -0.024277925491333008, 0.007960082031786442, 0.0017797726904973388, -0.00796660128980875, -0.017197949811816216, 0.009413889609277248, 0.016389554366469383, -0.0015255194157361984, -0.010430902242660522, 0.0048308116383850574, -0.023560799658298492, 0.018593084067106247, -0.004677607677876949, -0.0021187770180404186, -0.00878151599317789, -0.001330754952505231, 0.00882715079933405, 0.007392901927232742, -0.0169893316924572, 0.022700250148773193, -0.0005015797214582562, 0.0033900432754307985, 0.0020910699386149645, -0.007542846258729696, -0.01904943585395813, -0.012693104334175587, -0.018241040408611298, 0.03875080123543739, 0.0046808673068881035, 0.01334503572434187, 0.0061477129347622395, 0.023704225197434425, 0.0005284718936309218, -0.024864662438631058, -0.011350125074386597, 0.04000250995159149, -0.007953562773764133, -0.02200920321047306, 0.004169101361185312, 0.020627109333872795, 0.011702168732881546, 0.007269035093486309, 0.00676704803481698, 0.008103507570922375, -0.008761958219110966, -0.034265514463186264, 0.0006987889646552503, -0.012125924229621887, 0.0153855811804533, -0.025138475000858307, -0.009831124916672707, -0.008612013421952724, -0.03572583943605423, -0.013403709046542645, 0.008748918771743774, -0.038933344185352325, -0.014107795432209969, -0.017002370208501816, -0.04967717081308365, 0.016585133969783783, 0.00878151599317789, 0.013820945285260677, -0.012419292703270912, 0.05009440705180168, -0.03191855922341347, -0.003497611964121461, 0.005456665530800819, 0.01034615095704794, -0.013964369893074036, -0.0004909858107566833, -0.005763073451817036, -0.004002858884632587, 0.017367452383041382, 0.00938781164586544, 0.008364279754459858, -0.034760981798172, 0.023639032617211342, 0.022139590233564377, 0.014551108703017235, 0.021944010630249977, 0.020861804485321045, 0.0011742913629859686, 0.004892745055258274, 0.0025311235804110765, -0.026520568877458572, 0.005368655081838369, -0.015633314847946167, 0.003357446752488613, 0.003478053957223892, 0.0004408686072565615, 0.01830623298883438, -0.013292880728840828, -0.008070910349488258, -0.0066562192514538765, -0.028502440080046654, -0.039089806377887726, 0.006529092788696289, -0.018527889624238014, -0.017862919718027115, -0.01076990645378828, -0.029389066621661186, -0.0023762898053973913, -0.02910221740603447, 0.00025160476798191667, 0.007973120547831059, 0.007771022152155638, 0.005652245134115219, 0.03074508346617222, 0.009635546244680882, 0.016624249517917633, -0.0021155173890292645, -0.015216078609228134, -0.016415633261203766, -0.018475735560059547, -0.012034653685986996, -0.027589736506342888, -0.03846395015716553, 0.05278036370873451, 0.009185712784528732, -0.016233092173933983, -0.01924501545727253, -0.013019070029258728, -0.017328336834907532, 0.013338516466319561, -0.0009510049130767584, 0.01799330674111843, -0.0022459037136286497, 0.009759413078427315, -0.006219425238668919, 0.00911400094628334, -0.01015057135373354, -0.008331683464348316, -0.013182052411139011, 0.00217256136238575, -0.002522974507883191, -0.009179193526506424, -0.016963254660367966, 0.0008866266580298543, -0.02847636304795742, -0.03322242200374603, -0.013494979590177536, -0.003308551851660013, 0.00940737035125494, 0.014342490583658218, -0.014159949496388435, -0.010978524573147297, 0.008155661635100842, -0.031866405159235, 0.0037486054934561253, 0.007771022152155638, -0.0004995424533262849, -0.039402734488248825, 0.010717752389609814, 0.0320228710770607, -0.010652558878064156, -0.014251220040023327, -0.0023127265740185976, -5.0015361921396106e-05, 0.0007794654811732471, 0.02980630286037922, -0.009602949023246765, 0.007405940443277359, -0.0080252755433321, -0.011663052253425121, 0.03330065682530403, 0.0011253965785726905, 0.017810765653848648, 0.0017015408957377076, -0.012862605974078178, 0.005841305013746023, -0.030823316425085068, 0.0066692582331597805, -0.02037937566637993, -0.009061845950782299, 0.0026826977264136076, -0.022608980536460876, -0.011278413236141205, 0.006082519888877869, -0.0014578815316781402, -0.007190803065896034, 0.00954427570104599, 0.0074972109869122505, -0.00581522798165679, -0.05538808926939964, 0.005798929836601019, 0.03669069707393646, -0.02369118668138981, -0.013703597709536552, -0.009674661792814732, -0.01044394075870514, 0.010717752389609814, -0.038072794675827026, 0.024512620642781258, -0.03958527371287346, 0.024564774706959724, -0.015555082820355892, -0.006832241080701351, -0.015711545944213867, 0.009759413078427315, 0.006916991900652647, -0.003373744897544384, 0.005111142061650753, 0.2513847351074219, -0.02150069735944271, -0.009883279912173748, 0.017536954954266548, 0.012901722453534603, -0.007021300960332155, 0.042871009558439255, -0.0045439619570970535, 0.0012077029095962644, 0.0056587643921375275, -0.019140705466270447, -0.020640147849917412, 0.007255996111780405, -0.003934405744075775, 0.005838045384734869, -0.02267417311668396, -0.025620903819799423, -0.01320813037455082, -0.025999024510383606, 0.004182139877229929, 0.036403849720954895, -0.009127039462327957, 0.008807593025267124, -0.010059301741421223, 0.01248448621481657, 0.02777227759361267, -0.020640147849917412, 0.032700877636671066, 0.03611699864268303, 0.0014318042667582631, -0.02504720352590084, 0.010059301741421223, 0.004821032751351595, 0.0031618671491742134, 0.011441395618021488, -0.00553163792937994, 0.020470645278692245, 0.030014920979738235, 0.026364104822278023, 0.009329138323664665, -0.008038314059376717, 0.006535612046718597, -8.403803076362237e-05, -0.017132757231593132, -0.01818888634443283, 0.008442511782050133, -0.009968031197786331, -0.012614872306585312, 0.0006103707710281014, 0.01979263685643673, -0.020327219739556313, -0.013781829737126827, 0.04221907630562782, 0.029232602566480637, -0.013455864042043686, -0.01096548605710268, 0.02618156373500824, -0.005352356471121311, 0.022191744297742844, 0.019218936562538147, -0.01376879122108221, 0.03958527371287346, -0.028997907415032387, 0.018358387053012848, -0.005437107756733894, 0.012451889924705029, -0.013416747562587261, 0.004961197730153799, -0.0005525118322111666, -0.005016611889004707, -0.00216115266084671, 0.020548878237605095, -0.009035768918693066, -0.008475108072161674, -0.02555571123957634, -0.042088691145181656, 0.03223148733377457, 0.00016400149615947157, 0.022348208352923393, 0.04691298305988312, 0.006646440364420414, -0.005789150949567556, -0.003888770705088973, 0.0008332498255185783, -0.008057871833443642, -0.005114401690661907, -0.0002909243921749294, -0.009120520204305649, 0.0007982084644027054, -0.0011759212939068675, 0.00690395338460803, -0.026833495125174522, 0.013664482161402702, -0.022061357274651527, 0.01589408703148365, 0.010717752389609814, 0.004807993769645691, 0.022309092804789543, -0.004358161240816116, 0.013925254344940186, -0.020392414182424545, 0.039089806377887726, 0.023430414497852325, 0.007203842047601938, -0.02333914302289486, 0.014785803854465485, -0.014407684095203876, 0.005798929836601019, 0.009329138323664665, -0.013873100280761719, 0.0029499896336346865, -0.040185049176216125, 0.018136730417609215, -0.0082208551466465, -0.015907125547528267, 0.026546645909547806, -0.024225769564509392, -0.019414516165852547, -0.0019672028720378876, 0.004299487452954054, 0.03674285113811493, -0.012464928440749645, -0.017080603167414665, -0.01667640544474125, -0.0017928113229572773, 0.00562942773103714, -0.0012517082504928112, -0.01447287667542696, -0.014225143007934093, -0.02481250837445259, 0.020718378946185112, -0.0033167009241878986, 0.014303375035524368, -0.004775397479534149, -0.001396763022057712, -0.008735880255699158, 0.003693191334605217, -0.0041006482206285, 0.011187142692506313, -0.00713864853605628, 0.007999198511242867, 0.01380790676921606, 0.0021709315478801727, -0.008070910349488258, -0.024056268855929375, -0.035621531307697296, 0.021239925175905228, 0.003347667632624507, -0.01971440576016903, 0.006701854523271322, -0.03455236181616783, -0.018827779218554497, 0.009602949023246765, 0.0038235776592046022, 0.010958966799080372, 0.012640949338674545, -0.017197949811816216, -0.03486528992652893, -0.0016070108395069838, 0.01959705725312233, -0.01842358149588108, -0.04589597135782242, 0.014172988012433052, -0.011832554824650288, -0.004188659135252237, -0.007282073609530926, -0.16532979905605316, 0.00596191268414259, 0.017576070502400398, -0.01344282552599907, 0.035465069115161896, -0.00938781164586544, 0.005710918921977282, -0.02345649152994156, -0.023313065990805626, 0.012934318743646145, 0.02279152162373066, -0.006401966325938702, -0.03611699864268303, -0.0011033938499167562, -0.003269435837864876, 0.00882715079933405, -0.012334541417658329, 0.013403709046542645, 0.04693906009197235, -0.0002652545808814466, 0.04581773653626442, -0.030406080186367035, -0.020040370523929596, -0.004860148299485445, -0.005499041173607111, 0.01830623298883438, -0.01581585593521595, 0.006682296749204397, -0.01277785561978817, -0.008768477477133274, -0.01057432685047388, -0.0012492635287344456, 0.02719857729971409, 0.0004119391378480941, 0.03416120633482933, -0.02041849121451378, -0.0023648811038583517, -0.0014375087339431047, -0.0013877989258617163, 0.01268006581813097, 0.007229919079691172, 0.03684716299176216, 0.01928413100540638, 0.0009966400684788823, 0.013873100280761719, -0.002808194374665618, 0.004299487452954054, -0.004107167944312096, 0.011206700466573238, -0.0020649926736950874, 0.016376515850424767, -0.028893599286675453, -0.018906010314822197, -0.00709953298792243, 0.03669069707393646, -0.00015585235087201, 0.0049318610690534115, 0.02181362360715866, -0.002959768520668149, -0.009687700308859348, -0.002073141746222973, -0.014551108703017235, 0.002831012010574341, 0.00042253301944583654, -0.018371425569057465, 0.014212104491889477, 0.003178165527060628, 0.02434311807155609, -0.022765444591641426, 0.0005895904614590108, 0.019688328728079796, -0.024525659158825874, -0.005694620776921511, -0.016806790605187416, -0.005505560431629419, 0.0006148527609184384, 0.005746775306761265, 0.020809650421142578, 0.023599917069077492, -0.0036377771757543087, -0.029701994732022285, 0.039089806377887726, 0.023978035897016525, -0.003996339626610279, -0.010528692044317722, 0.024330079555511475, -0.00533605832606554, -0.0062813591212034225, -0.032805185765028, -0.01675463654100895, 0.03935057669878006, -0.022765444591641426, -0.018475735560059547, 0.0039018094539642334, 0.015294310636818409, -0.010978524573147297, -0.013494979590177536, -0.004905783571302891, -0.014981383457779884, 0.006209646351635456, -0.009127039462327957, 0.004048493690788746, -0.01423818152397871, 0.02571217343211174, 0.03692539408802986, 0.0169111005961895, -0.015203040093183517, 0.027667967602610588, 0.0153855811804533, 0.018449658527970314, -0.02153981290757656, -0.001145769376307726, 0.0029141332488507032, 0.013899177312850952, 0.00010583698895061389, 0.008136103861033916, -0.01133708655834198, -0.018866894766688347, 0.019779598340392113, 0.017549993470311165, -0.01285608671605587, -0.019896946847438812, 0.013977409340441227, 0.013664482161402702, -0.021018268540501595, -0.030640775337815285, -0.03705577924847603, -0.026012063026428223, 0.019492749124765396, 0.016180936247110367, -0.014329452067613602, 0.0159332025796175, 0.008937979117035866, 0.013599288649857044, -0.0008198037394322455, 0.014212104491889477, -0.010841619223356247, -0.031892482191324234, 0.006036884617060423, 0.004455951042473316, -0.0057924105785787106, 0.008768477477133274, 0.018671315163373947, -0.0023746599908918142, 0.012334541417658329, 0.01979263685643673, -0.002570239594206214, -0.00968118105083704, -0.004397277254611254, -0.0016787233762443066, -0.015946241095662117, -0.005577273201197386, -0.02824166789650917, 0.021409425884485245, 0.013703597709536552, -0.002650101203471422, 0.004217996262013912, -0.00503617012873292, 0.0021888597402721643, -0.0018270376604050398, 0.004847109783440828, 0.0033802641555666924, -0.025959907099604607, 0.004338603466749191, 0.01904943585395813, -0.013820945285260677, 0.001807479769922793, -0.0161287821829319, -0.003768163500353694, -0.024747315794229507, -0.016220053657889366, -0.016819829121232033, -0.010541730560362339, 0.005632687360048294, -0.02704211324453354, -0.012712662108242512, -0.02142246626317501, -0.002294798381626606, -0.029832379892468452, -0.025334054604172707, 0.027250731363892555, 0.02949337661266327, 0.0039018094539642334, 0.0173022598028183, -0.042714543640613556, -0.0027201836928725243, -0.007308150641620159, 0.008090468123555183, -0.03830748796463013, 0.04417487233877182, -0.0034878328442573547, 0.026859574019908905, -0.011441395618021488, -0.0027462609577924013, 0.012875644490122795, 0.006225944962352514, 0.004980755969882011, -0.0038431354332715273, -0.019101589918136597, 0.01215200126171112, -0.02839813195168972, -0.018710430711507797, -0.022491632029414177, -0.005453405901789665, 0.03541291132569313, -0.01166957151144743, -0.0172631423920393, -0.02087484300136566, 0.015124808065593243, -0.005378433968871832, 0.009329138323664665, 0.02096611261367798, -0.007438537199050188, -0.010600404813885689, 0.02376941777765751, -0.029519453644752502, 0.014772765338420868, 0.016819829121232033, 0.003422639798372984, 0.001880822004750371, -0.029988843947649002, -0.017237065359950066, 0.02110953815281391, 0.004576558247208595, -0.005789150949567556, 0.033248499035835266, -0.02761581353843212, 0.007810138165950775, -0.08735880255699158, 0.021005230024456978, -0.012627910822629929, -0.0012810451444238424, -0.004599376115947962, 0.019375400617718697, 0.018514851108193398, -0.005665283650159836, -0.003088525030761957, 0.006441082339733839, -0.02563394233584404, 0.0345262847840786, -0.0004877261817455292, 0.00507528567686677, -0.019375400617718697, -0.0024365936405956745, 0.03723832219839096, 0.021644122898578644, 0.002241014037281275, 0.02290886826813221, -0.0073472666554152966, -0.029545530676841736, 0.005723957438021898, 0.017380490899086, -0.02453869767487049, 0.0319446362555027, -0.010932889766991138, 0.013338516466319561, 0.0014252850087359548, -0.006395447067916393, -0.0013519426574930549, 0.0020014294423162937, -0.00406153267249465, 0.027094269171357155, -0.011219738982617855, -0.022739367559552193, -0.008005717769265175, 4.564793016470503e-06, 0.009850683622062206, 0.03822925686836243, -0.012627910822629929, -0.029545530676841736, 0.0025294937659054995, -0.0032498780637979507, -0.004051753785461187, -0.009837644174695015, 0.002933691255748272, -0.004794955253601074, 0.01775861158967018, 0.013364593498408794, 0.028763212263584137, 0.0025148254353553057, -0.00039339985232800245, -0.006069481372833252, 0.005922796670347452, -0.037029702216386795, 0.0001537131902296096, 0.00538495322689414, 0.0007729461649432778, -0.013416747562587261, 0.031814251095056534, 0.0013576471246778965, -0.0029190226923674345, 0.01057432685047388, 0.0037029702216386795, -0.01509873103350401, -0.02418665401637554, 0.00013812795805279166, 0.024786431342363358, -0.03775986656546593, -0.01803242228925228, 0.004289708565920591, 0.0016836128197610378, 0.0015589309623464942, 0.00973985530436039, -0.0036279980558902025, -0.021292079240083694, -0.019271092489361763, -0.025881676003336906, 0.021904895082116127, 0.011760842055082321, 0.03228364139795303, -0.03549114614725113, 0.008859748020768166, 0.02672918699681759, 0.01734137535095215, -0.0015548563096672297, -0.001980241620913148, -0.0007941339281387627, -0.01328636147081852, -0.03290949761867523, 0.0005203227628953755, 0.020131641998887062, 0.02236124686896801, 0.010561288334429264, 0.014733649790287018, 0.012073769234120846, -0.015802817419171333, 0.022348208352923393, -0.0002102478756569326, 0.005583792459219694, -0.011643494479358196, -0.016728559508919716, -0.04281885176897049, -0.017158834263682365, 0.004182139877229929, -0.001761844614520669, -0.04221907630562782, 0.01620701514184475, 0.0015735994093120098, -0.019062474370002747, 0.023743340745568275, 0.002844050759449601, 0.027798354625701904, -0.017354413866996765, -0.016441710293293, -0.013860060833394527, -0.009003172628581524, -0.02629891224205494, 0.005808708723634481, 0.02208743616938591, 0.023717263713479042, 0.024408310651779175, -0.012184597551822662, 0.032700877636671066, -0.02189185656607151, 0.0314752459526062, -0.028137357905507088, 0.024760354310274124, -0.013599288649857044, -0.020483683794736862, 0.02114865370094776, -0.013214649632573128, -0.02361295558512211, 0.004455951042473316, 0.021800585091114044, 0.009003172628581524, -0.0042473329231143, -0.009042288176715374, 0.07661497592926025, 0.020392414182424545, -0.014955306425690651, -0.009694219566881657, 0.0002074975345749408, 0.00901621114462614, 0.016063589602708817, 0.010046262294054031, -0.010274439118802547, -0.010822061449289322, 0.0083186449483037, 0.007171245291829109, -0.01447287667542696, 8.123676525428891e-05, 0.0012508933432400227, -0.0036475560627877712, -0.024277925491333008, 0.004834071267396212, -0.021292079240083694, 0.005688101518899202, 0.03575191646814346, 0.0006344107096083462, -0.006558429915457964, 0.004723242949694395, -0.03191855922341347, 0.00498727522790432, 0.033404964953660965, 0.009948473423719406, -0.002521344693377614, -0.021800585091114044, 0.033952586352825165, 0.007405940443277359, -0.02996276691555977, -0.02941514365375042, -0.012562718242406845, 0.02878928929567337, -0.006431302987039089, 0.004873187281191349, 0.043418630957603455, -0.0027006256859749556, 0.013925254344940186, 0.008905382826924324, -0.01873650774359703, -0.030301770195364952, -0.002373030176386237, -0.007816657423973083, -0.011428357101976871, 0.005029650870710611, 0.01756303198635578], "cdad89c0-2a46-4638-a097-bc4323c75f5d": [-0.006924503482878208, -0.01044329535216093, 0.025556141510605812, -0.018185967579483986, -0.013157221488654613, 0.012997578829526901, -0.0019672641064971685, -0.042438358068466187, 0.005334727931767702, -0.001066779252141714, 0.011813562363386154, -0.020913198590278625, -0.017693735659122467, -0.009112939238548279, -0.02298855409026146, -0.01905069872736931, -0.004057586193084717, -0.012139499187469482, 0.014647221192717552, -0.02254953607916832, -0.007436690852046013, 0.0027638147585093975, 0.0012230961583554745, -0.02211051806807518, -0.010303608141839504, -0.01080914307385683, -0.003754930105060339, -0.02892194129526615, 0.0055908216163516045, -0.00625599967315793, 0.025290070101618767, -0.003204495180398226, -0.00895994808524847, -0.015458738431334496, -0.004456692840903997, 0.0037283229175955057, 0.00908633228391409, -0.010769233107566833, -0.007716065272688866, 0.0006751557230018079, 0.019223645329475403, -0.0075630745850503445, 0.0070907981134951115, 0.01952962763607502, -0.018039628863334656, 0.020221412181854248, -0.03208819031715393, -0.008494324050843716, 0.0009453843231312931, 0.023361053317785263, 0.016576237976551056, -0.007855752483010292, -0.022376589477062225, -0.043130144476890564, -0.003984416369348764, 0.0026341050397604704, -0.038739968091249466, 0.0008672258700244129, -0.01972918026149273, -0.01161400880664587, 0.015937665477395058, 0.019995251670479774, -0.03693068400025368, -0.003292631357908249, -0.0016138883074745536, 0.007849100977182388, -0.0036717827897518873, 0.015033024363219738, -0.012585168704390526, 0.005644035991281271, 0.017667129635810852, 0.020075073465704918, 0.005015442613512278, -0.0008888441952876747, 0.04584407061338425, 0.025822212919592857, -0.025143729522824287, 0.02342757023870945, -0.004240510053932667, 0.0030431896448135376, 0.0097914207726717, -0.014833470806479454, 0.00945218000560999, 0.0014866729034110904, 0.0073568690568208694, 0.0025426431093364954, 0.0013644464779645205, 0.012059678323566914, 0.013416641391813755, 0.006984369363635778, 0.032700154930353165, -0.007842449471354485, 0.006305887829512358, 0.01899748481810093, -0.004559795372188091, 0.02833658456802368, -0.014979809522628784, 0.0320349745452404, -0.008780349977314472, -0.045072466135025024, 0.002948401728644967, 0.02167150005698204, -0.007456645835191011, -0.006478834431618452, -0.02833658456802368, -0.027698013931512833, 0.027006229385733604, -0.007476601283997297, -0.0004369388334453106, -0.02231007255613804, -0.00579370092600584, 0.032513901591300964, -0.0028619286604225636, -0.025502925738692284, -0.010250394232571125, 0.012472088448703289, 0.03067801147699356, -0.03214140236377716, -0.011115125380456448, 0.00973820686340332, 0.014806863851845264, 0.007104101590812206, 0.006495463661849499, -0.004011023789644241, 0.005075308494269848, 0.018239181488752365, -0.01022378634661436, -0.009199412539601326, -0.00461633550003171, -0.02196417935192585, 0.021698107942938805, 0.007343565579503775, 0.008321377448737621, 0.016536327078938484, -0.01947641372680664, -0.018385522067546844, -0.011334634386003017, -0.010383429005742073, -0.01402195356786251, -0.0023231343366205692, -0.0060364906676113605, 0.027538372203707695, -0.004097496625036001, -0.041134610772132874, 0.016296861693263054, 0.0439283587038517, 0.010516464710235596, -0.019077306613326073, 0.008288118988275528, -0.0010850717080757022, 0.012611775659024715, 0.0052914912812411785, -0.014993113465607166, -0.01942319981753826, -0.005777071230113506, -0.004396826960146427, 0.001942319911904633, 0.008939992636442184, 0.016177130863070488, 0.010363474488258362, 0.006442249286919832, 0.004915665835142136, -0.0015257521299645305, 0.0021285698749125004, -0.007310306653380394, 0.015405523590743542, 0.009352403692901134, -0.0036185686476528645, -0.023640427738428116, 0.030518369749188423, 0.020327841863036156, 0.005161781795322895, -0.021325608715415, 0.02571578323841095, 0.014979809522628784, 0.013090703636407852, -0.012245927937328815, 0.00018593805725686252, -0.03285979479551315, -0.0029949641320854425, -0.009252626448869705, -0.008853520266711712, -0.031156940385699272, 0.02172471582889557, -0.011906687170267105, -0.018784627318382263, -0.004230532329529524, 0.0028120402712374926, 0.01407516747713089, 0.006798119749873877, 0.019369984045624733, 0.036105863749980927, 0.0008913385681807995, -0.015126149170100689, -0.5934452414512634, -0.018638288602232933, 0.0020786814857274294, -0.003227776614949107, 0.014208203181624413, 0.024864355102181435, 0.006089705042541027, 0.032700154930353165, -0.01142110675573349, 0.013755882158875465, -0.016536327078938484, 0.036105863749980927, -0.0227889996021986, -0.0011549154296517372, 0.015658291056752205, -0.0360526517033577, 0.030039440840482712, -0.03232765197753906, -0.004596380516886711, 0.016735879704356194, -0.012658338062465191, -0.00018230035493616015, -0.027431942522525787, 0.0031163592357188463, 0.011607357300817966, 0.002910153940320015, 0.013070749118924141, -0.018718110397458076, -0.0016554618487134576, 0.0360526517033577, -0.017467575147747993, 0.015299094840884209, 0.021205876022577286, -0.0017976437229663134, 0.04579085856676102, -0.004456692840903997, -0.03376443684101105, 0.027059443295001984, -0.01996864564716816, 0.05757781118154526, -0.030890868976712227, 0.002205065218731761, 0.012359008193016052, 0.008733787573873997, -0.0025210247840732336, 0.007177271414548159, -0.016323469579219818, -0.03488193824887276, 0.005188388749957085, 0.014993113465607166, -0.0072637442499399185, 0.0090597253292799, 0.006751557346433401, -0.014447667635977268, 0.033817652612924576, 0.00961847510188818, 0.0061528971418738365, -0.016336772590875626, -0.006432271562516689, -0.021325608715415, -0.0067914677783846855, 0.020367752760648727, -0.02435882017016411, -0.008893430233001709, -0.015352309681475163, 0.006059771869331598, -0.013822400011122227, -0.022815607488155365, 0.00032074053888209164, -0.015605077147483826, 0.016775790601968765, -0.01933007501065731, 0.006957762409001589, 0.000916282762773335, 0.02152516134083271, 0.04363568127155304, 0.01713498681783676, -0.01645650528371334, -0.017840076237916946, -0.007257092744112015, 0.00637905765324831, 0.016044095158576965, -0.005474415607750416, -0.0071639674715697765, 0.021791232749819756, -0.02231007255613804, -0.013090703636407852, -0.021259089931845665, 0.012212669476866722, 0.0063291690312325954, -0.008115172386169434, 0.019848912954330444, 2.5126060791080818e-05, -0.051937103271484375, 0.006538700312376022, 0.018425432965159416, -0.008268163539469242, -0.014860077761113644, 0.018332306295633316, 0.021219179034233093, -0.029054976999759674, -0.01219936553388834, 0.0025176990311592817, 0.001870813313871622, 0.029640333727002144, -0.01905069872736931, -0.027086051180958748, 0.007057539187371731, 0.023148195818066597, -0.0069976733066141605, -0.021711410954594612, 0.0008194161928258836, 0.002768803620710969, -0.016922129318118095, 0.025689177215099335, -0.03573336452245712, 0.013543025590479374, 0.008234904147684574, 0.01475364901125431, 0.014288024976849556, 0.015232576988637447, -0.01287784706801176, 0.01563168503344059, -0.028469620272517204, 0.014128382317721844, 0.02181784063577652, 0.010190527886152267, -0.0018242507940158248, -0.011913338676095009, 0.018132753670215607, -0.007769279647618532, 0.023094981908798218, 0.008374591358006, -0.009678340516984463, 0.011441062204539776, 0.0044367373920977116, 0.00895994808524847, -0.01275811530649662, 0.022655963897705078, 0.011115125380456448, -0.007622940465807915, 0.002798736561089754, 0.00468617957085371, 0.01627025566995144, 0.008966600522398949, -0.02284221351146698, -0.002998290117830038, -0.004769326653331518, -0.0035387473180890083, 0.021099448204040527, 0.0006676724879071116, 0.0009811376221477985, -0.0027538370341062546, 0.03988407552242279, 0.003472229465842247, -0.0031862028408795595, -0.008181690238416195, -0.00042197233415208757, -0.006156222894787788, -0.0037782113067805767, -0.0035819837357848883, 0.0040642376989126205, -0.022616053000092506, -0.009073028340935707, -0.025675872340798378, -0.0027937479317188263, -0.00634247250854969, 0.013283605687320232, -0.0028037254232913256, -0.04749371483922005, -0.010576331056654453, -0.0013444911455735564, -0.00951869785785675, -0.004366893786936998, -0.0016529674176126719, -0.0037216711789369583, -0.031928546726703644, 0.0071639674715697765, -0.002675678813830018, -0.0018641614587977529, 0.018638288602232933, -0.01661614701151848, 0.0017003613756969571, -0.007403431925922632, 0.025157034397125244, 0.02551623061299324, 0.031635869294404984, 0.008906734175980091, -0.018199272453784943, -0.0052914912812411785, -0.025063909590244293, 0.030571583658456802, 0.01894427090883255, -0.007682806346565485, 0.01753409393131733, 0.00563738401979208, 0.016203736886382103, 0.025782302021980286, 0.021365519613027573, 0.02207060717046261, 0.025236856192350388, 0.030571583658456802, 0.014833470806479454, -0.007649547420442104, 0.023853285238146782, -0.030172476544976234, 0.010270348750054836, -0.017401058226823807, -0.01573811285197735, 0.013582935556769371, -0.0026989600155502558, -0.024664802476763725, -0.014381149783730507, -0.02079346589744091, 0.016137219965457916, 0.003512140130624175, -0.01063619740307331, 0.008421153761446476, -0.030837655067443848, 0.01952962763607502, 0.005427852738648653, -0.0006331663462333381, 0.0024711363948881626, -0.026713550090789795, -0.009611822664737701, -0.006315865553915501, 0.004110800568014383, -0.0017660477897152305, -0.0031479550525546074, -0.034163545817136765, -0.03461586683988571, -0.015711504966020584, -0.00354207307100296, 0.009871242567896843, 0.02648738957941532, -0.00893334113061428, 0.017454272136092186, -0.015990881249308586, 0.019369984045624733, 0.002105288440361619, 0.0058568925596773624, -0.012704900465905666, 0.017121683806180954, -0.007343565579503775, 0.005467763636261225, -0.009146198630332947, 0.04826531931757927, 0.02298855409026146, -0.03272676095366478, 0.014793559908866882, -0.006864637602120638, -0.011547490954399109, -0.020820073783397675, 0.02454506978392601, 0.014647221192717552, -0.03219461813569069, 0.0023131566122174263, 0.0005163444438949227, 0.026327747851610184, 0.03283318877220154, 0.012305794283747673, 0.029560511931777, 0.011188294738531113, 0.014141685329377651, -0.008022047579288483, -0.021059537306427956, -0.006611869670450687, -0.022483017295598984, -0.00495557626709342, -0.035387471318244934, -0.01918373443186283, -0.009598519653081894, 0.005727183073759079, -0.01460731029510498, 0.004293724428862333, -0.012645035050809383, -0.014966506510972977, 0.01689552329480648, 0.015112845227122307, -0.005274862051010132, -0.0039012692868709564, -0.021884357556700706, 0.04834514111280441, -0.010476554743945599, 0.016922129318118095, 0.010795840062201023, -0.02157837525010109, 0.0006726612919010222, 0.01142110675573349, -0.0011590727372094989, 0.013968738727271557, 0.006016535684466362, 0.024997390806674957, -0.010084099136292934, 0.004696156829595566, -0.026992924511432648, 0.033285509794950485, -0.011041956022381783, 0.0021302327513694763, -0.00607307581230998, 0.011660571210086346, -0.013449899852275848, -0.0293742623180151, -0.024704713374376297, 0.03307265415787697, 0.000584109453484416, 0.0064056646078825, -0.006206111051142216, 0.01967596635222435, -0.02868247777223587, -0.017068468034267426, -0.012738159857690334, -0.009498742409050465, -0.015711504966020584, -0.0062360442243516445, 0.006049794610589743, 0.016469808295369148, 0.009532001800835133, 0.032168012112379074, 0.008999858982861042, -0.03464247286319733, -0.012359008193016052, -0.03139640390872955, 0.015112845227122307, -0.0010800828458741307, -0.0017444294644519687, 0.0006452227244153619, 0.010390081442892551, -0.016004184260964394, -0.043316394090652466, -0.026580514386296272, -0.005973299033939838, 0.002472799504175782, -0.03389747440814972, -0.0006319191306829453, 0.019981948658823967, 0.012046374380588531, 0.002113603288307786, 0.026859890669584274, 0.0026507345028221607, -0.007795886602252722, -0.0007832471746951342, 4.7264020395232365e-05, -0.030837655067443848, 0.0009512046235613525, 0.010383429005742073, 0.02429230324923992, -0.008514279499650002, 0.028123728930950165, 0.005876848008483648, 0.029720155522227287, 0.0314762257039547, 0.024957479909062386, -0.008234904147684574, 0.013509766198694706, -0.0014218180440366268, -0.01290445402264595, 0.02902837097644806, -0.001590606989338994, 0.026314442977309227, 0.019263556227087975, 0.0744999423623085, -0.01572480984032154, 0.017707040533423424, 0.00830807350575924, 0.03780872002243996, 0.009212716482579708, -0.005983276758342981, 0.010942178778350353, -0.011880080215632915, -0.005850241053849459, -0.013157221488654613, -0.014846773818135262, -0.028655869886279106, 0.023879891261458397, 0.021804535761475563, -0.04182639718055725, 0.008534234017133713, 0.0032577095553278923, 0.028123728930950165, -0.008806957863271236, -0.03262033313512802, 0.009172805584967136, -0.006209437269717455, -0.006884593050926924, -0.006844682153314352, 0.0030066047329455614, 0.0029234576504677534, -0.009159501641988754, -0.022922035306692123, 0.0009038106654770672, 0.005351357627660036, -0.01894427090883255, 0.006272628903388977, 0.02376016043126583, -0.05167103186249733, -0.02820354886353016, 0.002141873352229595, -0.0032959573436528444, 0.005098589695990086, 0.03794175758957863, 0.0039910683408379555, -0.014993113465607166, 0.024904265999794006, 0.0062360442243516445, -0.02921462059020996, -0.01451418548822403, -0.015498648397624493, 0.020194806158542633, -0.0036218944005668163, 0.010749277658760548, 0.013130614534020424, -0.00903311837464571, 0.019809002056717873, 0.02362712472677231, -0.0034156893379986286, 0.007702761795371771, -0.0065187448635697365, -0.004922317806631327, 0.013622846454381943, -0.009578564204275608, 0.007602985017001629, 0.008454413153231144, -0.006498789414763451, -0.008993207477033138, -0.030598189681768417, -0.02372024953365326, -0.029134798794984818, -0.01001092977821827, -0.006754883099347353, 0.003320901421830058, 0.01831900328397751, -0.018984181806445122, 0.004849147982895374, 0.028602655977010727, -0.019263556227087975, 0.005777071230113506, 0.010829098522663116, 0.019024092704057693, 0.00668503949418664, -0.011913338676095009, 0.016762487590312958, 0.003937853965908289, -0.0013735926477238536, 0.02381337434053421, -0.0060464683920145035, 0.02820354886353016, 0.015817934647202492, 0.02688649669289589, 0.03256711736321449, -0.005783723201602697, -0.03400390222668648, -0.013390034437179565, 0.022682571783661842, 0.021072840318083763, 0.029054976999759674, 0.013902220875024796, -0.016749182716012, -0.030411940068006516, -0.003294294234365225, 0.001358626177534461, 0.01607070118188858, -0.021751321852207184, -0.03607925772666931, -0.0046628983691334724, -0.017121683806180954, 0.012651686556637287, -0.001569820218719542, 0.004696156829595566, -0.02517033740878105, 0.014008649624884129, -0.022429803386330605, 0.016589540988206863, 0.005268210079520941, 0.03706372156739235, -0.0023896521888673306, -0.03583979234099388, -0.011660571210086346, 0.006272628903388977, -0.024997390806674957, 0.007922270335257053, -0.007150663994252682, -0.004872429184615612, 0.039910681545734406, 0.022389892488718033, -0.004326983354985714, -0.0010834087152034044, -0.016695968806743622, 0.012957668863236904, 0.018784627318382263, -0.006202785298228264, 0.005640709772706032, 0.002052074298262596, 0.008574144914746284, -0.005906781181693077, 0.01416829228401184, 0.008081912994384766, -0.008194993250072002, -0.0031728993635624647, 0.017813468351960182, -0.014221507124602795, 0.00961847510188818, -0.005853566806763411, -0.02498408779501915, 0.0027222412172704935, -0.007197226397693157, -0.0013145580887794495, 0.019742485135793686, -0.00786240492016077, -0.006911200005561113, -0.0147802559658885, 0.0007400105823762715, 0.03419015184044838, 0.01758730784058571, 0.01231909729540348, -0.03852711245417595, 0.029241226613521576, 0.004709460772573948, 0.010336866602301598, -0.005224973428994417, 0.014354542829096317, -0.013183829374611378, 0.02921462059020996, -0.00702428026124835, 0.010649500414729118, 0.019303467124700546, -0.012378963641822338, 0.014154989272356033, -0.01410177443176508, 0.03940514847636223, 0.013383382000029087, -0.02995961904525757, 0.004629639443010092, -0.01943650282919407, -0.03866015002131462, -0.037915147840976715, -0.007104101590812206, -0.003502162406221032, -0.017667129635810852, 0.001086734700948, 0.012605124153196812, 0.011500928550958633, -0.0028935244772583246, -0.025449711829423904, -0.009092983789741993, -0.016629451885819435, 0.03336533159017563, 0.012472088448703289, 0.01894427090883255, 0.031183546409010887, 0.010915571823716164, 0.008767046965658665, -0.04070889577269554, -0.011773651465773582, 0.0117603475227952, 0.024624891579151154, 0.03964461013674736, -0.012412222102284431, -0.0360526517033577, 0.00820164568722248, 0.005304794758558273, -0.023480786010622978, -0.03144961968064308, 0.04414121434092522, 0.010190527886152267, -0.019542930647730827, -0.005973299033939838, 0.015325702726840973, -0.030012832954525948, 0.013875613920390606, -0.007656199391931295, -0.027139265090227127, -4.027445174870081e-05, 0.012798026204109192, -0.015086238272488117, -0.011115125380456448, -0.00964508205652237, 0.019503019750118256, 0.02030123397707939, 0.01991543173789978, -0.0015648313565179706, -0.028868727385997772, -0.02630113996565342, 0.0036318721249699593, -0.003605264937505126, 0.03919228911399841, 0.017401058226823807, 0.0038414031732827425, 0.010503161698579788, 0.0029134799260646105, -0.009079680778086185, -0.027405336499214172, -0.00464959442615509, 0.04001711308956146, 0.006528722587972879, -0.029001763090491295, 0.00046188299893401563, -0.007064191158860922, 0.04621656984090805, 0.014913291670382023, -0.00561077706515789, 0.00010840323375305161, -0.019010789692401886, -0.03160925954580307, 0.004682853352278471, -0.022509625181555748, 0.01641659438610077, -0.008953296579420567, 6.911615491844714e-05, 0.003858032636344433, -0.025848818942904472, 0.00597662478685379, 0.008534234017133713, -0.04555139318108559, -0.01777355745434761, -0.009651733562350273, -0.021884357556700706, 0.0033757786732167006, -0.004822541028261185, 0.01942319981753826, 0.019556235522031784, 0.03631872311234474, -0.028283370658755302, 0.004656246397644281, 0.006309214048087597, 0.03400390222668648, 0.0022616053465753794, -0.011846820823848248, -0.009771465323865414, 0.0018342285184189677, 0.029533905908465385, -0.008913385681807995, -0.003412363352254033, -0.03344515338540077, 0.015019720420241356, 0.027112657204270363, 0.013662757351994514, 0.012871195562183857, 0.03280658274888992, -0.0003743705165106803, 0.014367845840752125, -0.0023131566122174263, -0.009445528499782085, -0.011341285891830921, 1.740895640978124e-05, 0.014953202567994595, -0.003472229465842247, -0.013383382000029087, -0.004679527599364519, 0.017307933419942856, 0.0038014925085008144, 0.013888917863368988, -0.022243553772568703, -0.03573336452245712, -0.01621704176068306, -0.02693971060216427, -0.02089989371597767, -0.01714828982949257, -0.03693068400025368, 0.00410082284361124, -0.030465153977274895, 0.01416829228401184, -1.99813257495407e-05, 0.023786766454577446, -0.004416782408952713, 0.04605692997574806, 0.02064712718129158, 0.0008140116697177291, -0.0018907686462625861, -0.0004697820113506168, -0.04193282499909401, -0.027644800022244453, -0.030518369749188423, -0.02493087388575077, -0.032886404544115067, 0.020367752760648727, -0.00031325730378739536, -0.025396497920155525, -0.012398919090628624, -0.034216757863759995, -0.026261229068040848, 0.004320331383496523, -0.023879891261458397, 0.019263556227087975, 0.02556944452226162, -0.008161734789609909, -0.01645650528371334, -0.008886778727173805, 0.003048178507015109, 0.012571864761412144, -0.012585168704390526, -0.003432318801060319, -0.0003685502160806209, 0.0048291925340890884, -0.01865159347653389, -0.0035187918692827225, 0.0022183686960488558, -0.006751557346433401, -0.0005604125326499343, -0.0010551386512815952, 0.015950970351696014, 0.018199272453784943, 0.0077360207214951515, -0.017055165022611618, -0.006877941079437733, -0.013190480880439281, 0.005205018445849419, 0.013170525431632996, -0.02357391081750393, -0.007237137295305729, -0.008999858982861042, 0.030518369749188423, 0.00037707280716858804, -0.019064003601670265, -0.020035162568092346, 0.009538653306663036, -0.006122963968664408, 0.014993113465607166, -0.03583979234099388, -0.029108190909028053, 0.009066376835107803, -0.0019406569190323353, 0.0366114005446434, -0.02785765752196312, 0.008727136068046093, 0.02469140850007534, -0.0072637442499399185, 0.013795793056488037, -0.019197039306163788, 0.02328123152256012, -0.009465483948588371, 0.010396732948720455, 0.01971587724983692, -0.025968551635742188, -0.00830807350575924, 0.001588944112882018, 0.008042003028094769, -0.015671594068408012, -0.0053081209771335125, 0.02346748113632202, 0.0094255730509758, -0.04680192843079567, 0.006372405681759119, 0.009937760420143604, -0.008441109210252762, 0.007044235710054636, 0.01572480984032154, -0.01704186201095581, -0.013296909630298615, -0.04060246795415878, 0.00047061347868293524, -0.055928170680999756, 0.0263543538749218, 0.0009528675582259893, -0.007589681539684534, -0.04839835688471794, 0.011022000573575497, 0.003244405845180154, 0.007602985017001629, 0.010769233107566833, 0.2524483799934387, -0.01943650282919407, 0.0094255730509758, 0.0005404571420513093, 0.003911247011274099, -0.0018957575084641576, 0.01801302097737789, 0.005743812303990126, 0.011534187011420727, -0.0034556000027805567, -0.004719438496977091, -0.014274721033871174, -0.011121776886284351, -0.01044329535216093, -0.011341285891830921, -0.01713498681783676, -0.01815936155617237, -0.046961572021245956, -0.03355158120393753, 0.005411223508417606, 0.016735879704356194, 0.0031878657173365355, 0.01850525289773941, -0.01621704176068306, -0.007749324198812246, 0.0195828415453434, -0.0004718606942333281, 0.02820354886353016, 0.04004371911287308, 0.003412363352254033, -0.0032460689544677734, 0.00754977110773325, -0.006156222894787788, -0.02590203285217285, -0.006086379289627075, -0.013915524818003178, 0.02820354886353016, 0.010463250800967216, 0.013549677096307278, 0.008175038732588291, -0.009951063431799412, 0.0014060201356187463, 0.00995771586894989, -0.02546301670372486, -0.019902126863598824, 0.002767140744253993, 0.003435644553974271, -0.024478552863001823, -0.008727136068046093, 0.027644800022244453, -0.003475555218756199, -0.02990640513598919, 0.03033212013542652, 0.016323469579219818, -0.01694873720407486, -0.01186012476682663, 0.01942319981753826, -0.01768043264746666, 0.004679527599364519, 0.026913104578852654, 0.004014349542558193, 0.04493942856788635, -0.012239276431500912, 0.014288024976849556, -0.011161687783896923, -0.0032760018948465586, -0.02030123397707939, 0.0014708749949932098, -0.018518557772040367, -0.005268210079520941, -0.005813656374812126, -0.0013561317464336753, -0.00803535059094429, -0.002968357177451253, -0.030411940068006516, -0.030465153977274895, 0.04592389240860939, 0.016137219965457916, 0.027006229385733604, 0.04344943165779114, 0.02439873106777668, -0.014899988658726215, -0.002002185909077525, -0.013622846454381943, -0.01410177443176508, -0.026327747851610184, 0.014500881545245647, -0.004965553991496563, -0.016110612079501152, -0.009359055198729038, 0.021405430510640144, -0.022509625181555748, 0.00591675890609622, -0.006904548034071922, -0.0026939711533486843, 0.02756497822701931, -0.011773651465773582, 0.02346748113632202, -0.016842307522892952, 0.020141592249274254, -0.006645128596574068, 0.021405430510640144, 0.012219320982694626, 0.011008696630597115, -0.03067801147699356, -0.0002090114139718935, 0.013782489113509655, 0.010755929164588451, 0.008999858982861042, -0.015405523590743542, -0.009897849522531033, -0.03206158056855202, 0.010456599295139313, -0.0013802445027977228, -0.018092842772603035, 0.041134610772132874, -0.022416500374674797, -0.020567305386066437, -0.002083670347929001, 0.02108614519238472, 0.03490854427218437, -0.011254812590777874, 0.0005591653170995414, -0.01054307259619236, -0.013649453409016132, -0.01010405458509922, -0.006089705042541027, 0.0077360207214951515, 0.002738870680332184, -0.026460783556103706, 0.030225690454244614, -0.026168104261159897, 0.005890151485800743, -0.005959995556622744, 0.004343612585216761, 0.004233858082443476, 0.007503208238631487, -0.0034888589289039373, 0.02196417935192585, -0.008534234017133713, 0.0037682335823774338, -0.009997625835239887, 0.01475364901125431, -0.011268116533756256, -0.006122963968664408, -0.007469949312508106, 0.003099729772657156, -0.011946598067879677, 0.005238277371972799, 0.011334634386003017, -0.043609071522951126, -0.0113944998010993, 0.0035054883919656277, -0.019409894943237305, 0.02469140850007534, -0.022137125954031944, -0.028522834181785583, -0.046003714203834534, 0.001238894066773355, 0.05026085302233696, -0.0055908216163516045, -0.023853285238146782, 0.01826578937470913, -0.011766999959945679, -0.017387755215168, -0.033631402999162674, -0.16719914972782135, 0.0002775039756670594, 0.0188511461019516, -0.03948497027158737, 0.008900082670152187, 0.0012305794516578317, -0.01188673172146082, -0.014899988658726215, -0.008121823891997337, -0.009798072278499603, 0.021591680124402046, 0.004513232968747616, -0.009292537346482277, -0.02502399869263172, -0.002575902035459876, 0.019409894943237305, -0.027964085340499878, -0.00499216141179204, 0.029933013021945953, 0.011753696016967297, 0.05060674622654915, -0.0266337301582098, 0.0008002923568710685, 0.005404571536928415, -0.007988788187503815, -0.013044141232967377, -0.01410177443176508, -0.026221318170428276, -0.02780444175004959, -0.006695017218589783, -0.011208250187337399, 0.002599183237180114, 0.03097069077193737, 0.016376683488488197, 0.03951157629489899, -0.01587114855647087, 0.013084052130579948, -0.009678340516984463, -0.0023114937357604504, 0.0014625602634623647, 0.012698248960077763, 0.029241226613521576, 0.02683328278362751, 0.003917898517102003, -0.004523210693150759, 0.025157034397125244, 0.022576143965125084, -0.017613915726542473, 0.00014727457892149687, 0.017746949568390846, 0.0218710545450449, -0.029454084113240242, -0.01905069872736931, 0.005836937576532364, 0.033046044409275055, 0.011527535505592823, -0.010243741795420647, 0.013715971261262894, 0.0035786579828709364, -0.02450515888631344, -0.00486910343170166, -0.029533905908465385, 0.029826583340764046, 0.006944458931684494, -0.030225690454244614, 0.011214901693165302, 0.00449327751994133, 0.0188511461019516, -0.0028220179956406355, 0.015458738431334496, 0.010789187625050545, -0.023347750306129456, -0.008301421999931335, 0.0014226495986804366, 0.00705088721588254, -0.013596239499747753, -0.017347844317555428, 0.023094981908798218, 0.0318487249314785, -0.005807004403322935, 0.005344705656170845, 0.014181596226990223, 0.0172946285456419, -0.005411223508417606, 0.005940040107816458, 0.008973252028226852, 0.0010418351739645004, -0.006122963968664408, -0.04573764279484749, -0.017813468351960182, 0.027698013931512833, -0.014421059750020504, -0.013296909630298615, -0.000784910109359771, -0.0015373927308246493, -0.005524303764104843, -0.00788901187479496, -0.009166153147816658, -0.021498555317521095, -0.010303608141839504, 0.010869009420275688, 0.0058568925596773624, -0.0147802559658885, 0.017081772908568382, 0.04305032268166542, 0.03126337006688118, -0.02000855654478073, 0.031343188136816025, 0.0054078977555036545, -0.01670927181839943, -0.022336678579449654, 0.0018957575084641576, 0.00207701837643981, 0.022083912044763565, -0.011048607528209686, 0.013862310908734798, -0.008314725942909718, 0.02591533772647381, 0.006096357014030218, -0.01402195356786251, -0.03493515029549599, -0.025529533624649048, -0.0014459308004006743, 0.029533905908465385, 0.004892384633421898, -0.020913198590278625, -0.0649745911359787, -0.005667317193001509, 0.015964273363351822, 0.012618428096175194, -0.003917898517102003, 0.0005803678650408983, 0.006362427957355976, 0.02185775153338909, -0.019556235522031784, -0.003384093288332224, 0.005557562690228224, -0.027591586112976074, 0.013795793056488037, 0.023094981908798218, -0.027671407908201218, -0.009119590744376183, 0.00047144494601525366, -0.0006759872194379568, -0.0005242434563115239, 0.00658858846873045, -0.0150995422154665, 0.005597473122179508, 0.006432271562516689, -0.011693830601871014, -0.016044095158576965, -0.007217181846499443, -0.011061911471188068, 0.011919991113245487, 0.0147802559658885, 0.002828669734299183, 0.0211393591016531, 0.00730365514755249, -0.0011607357300817966, 0.008314725942909718, 0.004762674681842327, 0.024185873568058014, -0.03144961968064308, -0.01709507592022419, 0.02897515520453453, -0.009245974943041801, 0.009199412539601326, -0.011740393005311489, -0.0005192545941099524, 0.0012771418550983071, -0.022376589477062225, -0.007423386909067631, 0.00541787501424551, 0.032168012112379074, -0.013429945334792137, -0.011254812590777874, -0.024278998374938965, 0.0110286520794034, -0.013602891005575657, -0.003310923697426915, 0.009964367374777794, 0.024039534851908684, 0.011241508647799492, -0.006884593050926924, -0.016483111307024956, -0.014394452795386314, -0.015033024363219738, 0.013602891005575657, -0.015525255352258682, 0.030757833272218704, -0.004679527599364519, 0.009551957249641418, -0.03014586865901947, -0.026274533942341805, 0.006864637602120638, -0.00733026210218668, -0.005537607241421938, 0.014221507124602795, -0.01519266702234745, 0.026181407272815704, -0.02200409024953842, -0.01962275244295597, 0.007988788187503815, -0.00786240492016077, 0.03014586865901947, 0.0303853340446949, -0.008155083283782005, -0.01782677136361599, 0.01650971919298172, 0.008115172386169434, 0.007722717244178057, 0.013782489113509655, -0.011740393005311489, 0.011567446403205395, 0.0012023093877360225, -0.03884639963507652, -0.014873381704092026, -0.0023181454744189978, 0.009265930391848087, 0.012997578829526901, -0.004393501207232475, -0.019742485135793686, 0.00862070731818676, -0.011181643232703209, -0.0018109472002834082, 0.03195515275001526, -0.0220573041588068, -0.019596144556999207, -0.09855277836322784, 0.00022449759126175195, -0.023254625499248505, -0.013323516584932804, 0.01572480984032154, -0.02532998099923134, 0.03629211336374283, -0.03520122170448303, 0.011567446403205395, -0.017547396942973137, -0.03671782836318016, 0.01694873720407486, 0.010582982562482357, -0.025822212919592857, -0.0410015769302845, 0.02289542928338051, 0.03717014938592911, 0.008953296579420567, 0.006661758292466402, 0.005520978011190891, 0.014234810136258602, 0.013336819596588612, 0.007815842516720295, 0.012086285278201103, -0.026128193363547325, 0.014673828147351742, 0.0031546070240437984, 0.019356681033968925, -0.002921794541180134, -0.01943650282919407, 0.0033957338891923428, 0.010290304198861122, -0.002669026842340827, -0.0016853949055075645, -0.0005720531335100532, -0.007396779954433441, -0.006721624173223972, -0.00027313875034451485, 0.0117603475227952, 0.03256711736321449, -0.015139452181756496, -0.03482872247695923, 0.012026418931782246, -0.009465483948588371, 0.014740345999598503, -0.019662663340568542, 0.007077494636178017, -0.007257092744112015, 0.013862310908734798, 0.006026512943208218, 0.01899748481810093, 0.018611682578921318, -0.019489716738462448, 0.013170525431632996, 0.002888535615056753, -0.060025665909051895, 0.010955482721328735, 0.015232576988637447, -0.002234998159110546, -0.03307265415787697, 0.036159079521894455, 0.003422341076657176, 0.009438876993954182, 0.007869056425988674, -0.0010027559474110603, -0.007882360368967056, -0.017959807068109512, -0.0060630980879068375, 0.024412034079432487, -0.042252108454704285, -0.03743622079491615, -0.015378916636109352, 0.007722717244178057, 0.002062052022665739, 0.027724621817469597, -0.005693924147635698, -0.02377346344292164, 0.012704900465905666, -0.01987552084028721, 0.013715971261262894, 0.0002465316210873425, 0.02055400237441063, -0.03144961968064308, 0.009119590744376183, 0.03913907706737518, 0.011793606914579868, -0.009591867215931416, -0.023839982226490974, -0.014288024976849556, -0.0021817840170115232, -0.05044710263609886, -0.0029733458068221807, 0.022283464670181274, 0.019316770136356354, 0.03219461813569069, 0.03344515338540077, 0.003452274017035961, -0.02074025198817253, 0.014261417090892792, 0.0013112322194501758, 0.009272581897675991, -0.024811141192913055, -0.003127999836578965, -0.03717014938592911, -0.015990881249308586, -0.009724902920424938, -0.018545163795351982, -0.033524975180625916, -0.011800258420407772, 0.027485156431794167, -0.023839982226490974, 0.013729275204241276, 0.007569726090878248, 0.01744096912443638, -0.015472041442990303, 0.018079539760947227, 0.0006768186576664448, -0.015565166249871254, -0.025968551635742188, 0.012285838834941387, 0.021312305703759193, 0.025436408817768097, 0.00964508205652237, -0.017760254442691803, 0.05100585147738457, -0.01146767009049654, 0.011673875153064728, -0.029427476227283478, 0.03283318877220154, 0.012458784505724907, -0.028602655977010727, 0.004862451460212469, -0.017374450340867043, -0.018372217193245888, -0.0280971210449934, 0.008454413153231144, -0.007489904761314392, -0.01309735607355833, 0.0006568633252754807, 0.07630922645330429, -0.009478786960244179, 0.006345798727124929, -0.0020587260369211435, -0.003734974656254053, 0.004403478931635618, 0.0032577095553278923, 0.008953296579420567, -0.0030465153977274895, -0.003113033249974251, 0.009724902920424938, -0.009578564204275608, -0.0004026405804324895, -0.02979997731745243, -0.015325702726840973, -0.007237137295305729, -0.011913338676095009, 0.02892194129526615, -0.0360526517033577, 0.031343188136816025, 0.05010120943188667, 0.010143965482711792, -0.006754883099347353, 0.02026132307946682, -0.024624891579151154, 0.0011033640475943685, 0.045657820999622345, 0.007350217550992966, -0.00029745930805802345, -0.009837983176112175, 0.03283318877220154, 0.026660336181521416, -0.0211393591016531, -0.017667129635810852, 0.008820260874927044, 0.018478646874427795, -0.006272628903388977, -0.0014409419381991029, 0.025848818942904472, 0.0004448378167580813, 0.019795699045062065, 0.024132659658789635, -0.03198176249861717, -0.029560511931777, 0.0013918851036578417, 0.0027521741576492786, -0.016935432329773903, -0.012412222102284431, 0.011354589834809303], "667ae363-e738-48ce-80e9-03ee7261b5ce": [0.025486115366220474, -0.016425563022494316, 0.011583996005356312, -0.01524663157761097, -0.005139611661434174, -0.003129467135295272, -0.03716946020722389, -0.007947852835059166, 0.027314120903611183, -0.009994424879550934, 0.0014215066330507398, 0.011338937096297741, -0.003973926417529583, -0.03173842653632164, -0.006855023093521595, -0.022532163187861443, 0.005401228554546833, -0.0007115812040865421, 0.028744734823703766, -0.013531220145523548, -0.01447833888232708, -0.0015581103507429361, 0.0025913312565535307, -0.021922828629612923, -0.018306555226445198, 0.003954056650400162, 0.007338517811149359, -0.017286580055952072, 0.008113433606922626, 0.010617006570100784, 0.0021078367717564106, -0.015233384445309639, -0.010756094008684158, 0.003685816889628768, 0.00411632563918829, -0.0034241999965161085, -0.012868898920714855, 0.007398126646876335, -0.009491060860455036, -0.011570748873054981, 0.033354490995407104, -2.3349404727923684e-05, 0.016147388145327568, 0.004699168261140585, 0.00743786571547389, 0.015763241797685623, -0.016558026894927025, 0.0021111485548317432, -0.01630634441971779, 0.02078363485634327, -0.00900756660848856, 0.004960784688591957, -0.03846760839223862, 0.00033943954622372985, -0.011968142352998257, -0.013564336113631725, -0.02850629948079586, -0.010974660515785217, 0.004324956797063351, -0.0004979826626367867, 0.011107124388217926, 0.009762613102793694, -0.014968456700444221, -0.0006345863803289831, -0.011458154767751694, 0.01769721880555153, -0.006712624337524176, 0.000676395429763943, -0.03078468330204487, 0.0003295047499705106, 0.021604914218187332, 0.01555129885673523, 0.008815493434667587, -0.015908952802419662, 0.02139297127723694, 0.030307812616229057, -0.028267864137887955, -0.030599234625697136, 0.0031576156616210938, 0.007835258729755878, 0.014359121210873127, -0.01940600760281086, 0.0003785578883253038, -0.0073318942449986935, 0.02081012912094593, -0.016425563022494316, -0.00523564824834466, -0.01123958919197321, 9.919293370330706e-05, 0.0028065855149179697, 0.035050030797719955, 0.013378885574638844, 0.009504307061433792, 0.03589780256152153, -0.02050545997917652, 0.009060552343726158, 0.0224924236536026, 0.013537842780351639, 0.007365010213106871, -0.0462300106883049, -0.018717193976044655, 0.020677663385868073, -0.016200372949242592, -0.0029605752788484097, -0.034440696239471436, -0.011749575845897198, 0.015220138244330883, -0.015604284591972828, 0.011809185147285461, -0.007351764012128115, -0.01678321696817875, 0.016995158046483994, -0.0034241999965161085, -0.04156726971268654, -0.023671355098485947, -0.02201555296778679, 0.04005717858672142, -0.02663855440914631, 0.007484228350222111, -0.009199639782309532, 0.01385575719177723, -0.004172622691839933, 0.004338202998042107, 0.009597032330930233, 0.008173041976988316, 9.784759458852932e-05, -0.006464253645390272, -0.029804449528455734, 0.010179875418543816, -0.019220557063817978, 0.035977281630039215, -0.002339649247005582, 0.00840485468506813, 0.004394500516355038, -0.007073589134961367, 0.004407746717333794, 0.005725765600800514, 0.01346498727798462, 0.011928402818739414, -0.027234643697738647, 0.02879772149026394, 0.006149651017040014, 0.00846446305513382, -0.013193435966968536, 0.005825113970786333, 0.02575104311108589, 0.005921150557696819, -0.0052919453009963036, -0.006080107297748327, -0.007848504930734634, -0.008047200739383698, -0.012040996924042702, 0.0009487749775871634, -0.055846914649009705, 0.007000733632594347, 0.011444908566772938, -0.00708683580160141, 0.02821487747132778, 8.123782026814297e-05, -0.01569700986146927, -0.0008858544752001762, 0.03420225903391838, 0.007153067737817764, -0.027790993452072144, 0.006908008828759193, 0.038732536137104034, 0.023936284705996513, 0.01680970937013626, -0.012842405587434769, 0.005334996152669191, -0.0010804112534970045, 0.009948062710464, -0.02421445958316326, 0.037831779569387436, 0.013617321848869324, 0.024280691519379616, -0.012550984509289265, 0.0005898796953260899, 0.0027271071448922157, -0.0023081889376044273, -0.010802457109093666, -0.02771151438355446, 0.004490537103265524, 0.009563916362822056, -0.013193435966968536, -0.0008982729632407427, 0.007656431756913662, 0.004993901122361422, 0.026280900463461876, 0.020902853459119797, 0.025075476616621017, 0.030307812616229057, 0.01665075123310089, 0.014120685867965221, -0.6137862205505371, -0.006292050238698721, -0.009669887833297253, -0.0010472951689735055, 0.0056694685481488705, 0.020863113924860954, 0.015749994665384293, 0.01878342591226101, 0.0011019366793334484, 0.017922408878803253, -0.0007061998476274312, -0.0003700719098560512, 0.00423223152756691, -0.01662425883114338, 0.023048773407936096, -0.04143480584025383, -0.023764081299304962, -0.005344931036233902, -0.031950369477272034, 0.007888244464993477, -0.0019058289472013712, 0.030440276488661766, -0.019326528534293175, 0.017498522996902466, 0.01094154454767704, -0.017207100987434387, -0.01316031999886036, -0.014650542289018631, -0.01831980049610138, 0.025459622964262962, -0.02620142139494419, 0.014835991896688938, 0.029062649235129356, 0.012815913185477257, 0.04434901848435402, -0.002763534663245082, -0.060615625232458115, 0.016518287360668182, -0.019511979073286057, 0.06999409198760986, -0.003359623719006777, -0.011988011188805103, 0.016452055424451828, -0.011994634754955769, -0.010391817428171635, -0.009034059941768646, -0.0032122572883963585, -0.02230697311460972, -0.014756513759493828, 0.007378256879746914, -0.009934816509485245, -0.004050093237310648, 0.012458259239792824, -0.023075265809893608, 0.01393523532897234, 0.019631197676062584, 0.023300455883145332, -0.018068119883537292, -0.0009893421083688736, 0.008060447871685028, -0.017326319590210915, 0.005056821275502443, -0.012849029153585434, -0.01988287828862667, -0.03989822044968605, 0.010749471373856068, -0.03775230050086975, -0.022161263972520828, 0.018240323290228844, 0.010557398200035095, 0.0018925825133919716, 0.004526964388787746, -0.004483913537114859, 0.018372787162661552, 0.0008618453284725547, 0.021459203213453293, -0.003271866124123335, -0.009219509549438953, 0.0026194797828793526, 0.006841776892542839, -0.009438075125217438, -0.010133512318134308, -0.012537738308310509, -0.024691330268979073, 0.014531324617564678, -0.01678321696817875, -0.03020184114575386, -0.032427240163087845, 0.00470247957855463, -0.004705791361629963, 0.014610802754759789, -0.006835153792053461, -0.008577058091759682, -0.03624220937490463, 0.0034506928641349077, 0.04728972539305687, -0.006619899068027735, -0.0031642389949411154, 0.0007252416107803583, 0.0004959129146300256, -0.014147178269922733, 0.009544046595692635, -0.01178931538015604, -0.00340764201246202, 0.04387214779853821, -0.006556978914886713, -0.050124458968639374, -0.002559870947152376, 0.03995120897889137, -0.04079897701740265, -0.0009520865278318524, -0.0022204313427209854, -0.023313701152801514, -0.006881515961140394, 0.010524282231926918, -0.035341452807188034, 0.024731069803237915, 0.008139926008880138, 0.005950954742729664, -0.014663788489997387, 0.02649284340441227, -0.013604074716567993, 0.01487573143094778, -0.010120266117155552, -0.0025615268386900425, 0.008722769096493721, 0.029539519920945168, -0.01631959155201912, 0.00458657369017601, -0.007530590519309044, -0.019286789000034332, 0.005480707157403231, 0.020134560763835907, 0.0009305611019954085, 0.013372262939810753, -0.003788476577028632, 0.018439019098877907, -0.008524072356522083, 0.010054034180939198, 2.228865741926711e-05, -0.02710217796266079, 0.011425038799643517, -0.0007173765334300697, -0.011974764987826347, 0.013080840930342674, 0.0005356521578505635, 0.0008204502519220114, -0.010862065479159355, -0.019366268068552017, 0.016730230301618576, 0.006513928063213825, 0.008398231118917465, -0.00793460663408041, 0.019763661548495293, -0.005474083591252565, 0.0033778375945985317, 0.006947748363018036, -0.009742743335664272, 0.008643290027976036, -0.008828739635646343, 0.009663264267146587, 0.02095583826303482, -0.021777117624878883, 0.008093563839793205, -0.02311500534415245, -0.010736225172877312, -0.0029373939614742994, 0.012471506372094154, -0.023843558505177498, -0.030307812616229057, 0.006427825894206762, -0.003203978296369314, -0.005033640190958977, 0.0009603655780665576, 0.0027039258275181055, 0.006960994563996792, 0.00962352566421032, -0.006321854889392853, 0.015286370180547237, 0.0076166922226548195, 0.017326319590210915, 0.011054138652980328, 0.017140869051218033, 0.0012004569871351123, 0.02728762850165367, 0.0038050345610827208, 0.049091238528490067, -0.002390979090705514, -0.049859531223773956, -0.02742009237408638, -0.023048773407936096, 0.027817485854029655, 0.03200335428118706, 0.014743267558515072, 0.03279814124107361, -0.0013875627191737294, 0.012213200330734253, 0.01647854782640934, 0.018280060961842537, 0.00043382029980421066, 0.012180084362626076, 0.0015076083363965154, 0.01737930439412594, -0.017472030594944954, 0.022081784904003143, -0.0314205102622509, 0.008908218704164028, -0.013186812400817871, 0.004334891680628061, 0.003573222318664193, 0.00383152742870152, -0.035659365355968475, -0.0029109010938555002, -0.038441114127635956, 0.04064002260565758, 0.014345875009894371, 0.0030301189981400967, -0.005633040796965361, -0.01433262787759304, 0.017485275864601135, -0.012252939864993095, -0.002248580101877451, 0.028426820412278175, -0.01895562931895256, 0.020094821229577065, 0.005334996152669191, 0.00454021105542779, 0.007219299674034119, 0.016716983169317245, -0.024240951985120773, -0.0428389273583889, -0.012948377057909966, -0.00654373224824667, -0.006431137677282095, 0.01555129885673523, -0.04607105627655983, 0.022876570001244545, -0.012769550085067749, 0.017180608585476875, 0.0013511349679902196, 0.023009033873677254, 0.00103156513068825, 0.017445538192987442, -0.016571274027228355, 0.006927878595888615, 0.012988116592168808, 0.04866735264658928, 0.012517868541181087, -0.019180819392204285, 0.0012807634193450212, -0.02420121245086193, -0.019313283264636993, 0.0007343484903685749, 0.01524663157761097, 0.010822326876223087, -0.03147349879145622, 0.009371843189001083, 0.0024340299423784018, 0.0058714766055345535, 0.033672403544187546, 0.022148016840219498, 0.030466768890619278, 0.005907903891056776, 0.0032370942644774914, -0.011524386703968048, -0.012643709778785706, -0.02050545997917652, -0.020584939047694206, -0.017008405178785324, -0.04008367285132408, -0.020690910518169403, 0.0016516632167622447, 0.024267444387078285, -0.005474083591252565, -0.009246001951396465, 0.009696380235254765, 0.0059410203248262405, -0.0024224394001066685, 0.014624049887061119, -0.007212676573544741, -0.01323979813605547, -0.0195517186075449, 0.01969742961227894, -0.012153591960668564, 0.019313283264636993, 0.01569700986146927, -0.0031129091512411833, 0.008769131265580654, 0.01478300616145134, 0.002621135674417019, -0.011140240356326103, -0.017803190276026726, 0.004579950124025345, -0.0067556751891970634, -0.004334891680628061, -0.004818385932594538, 0.06268206983804703, -0.03634818270802498, -0.003616273170337081, -0.008166419342160225, 0.0034606277476996183, 0.006603341083973646, -0.015087674371898174, -0.02975146286189556, 0.05748946964740753, -0.010126889683306217, 0.0012087359791621566, -0.006606652867048979, 0.019909372553229332, -0.018121104687452316, -0.014239903539419174, -0.009212885983288288, 0.005096560809761286, -0.025035737082362175, -0.026771018281579018, -0.0055933017283678055, -0.005775440018624067, -0.012902014888823032, 0.04395162686705589, 0.013723292388021946, -0.003824904328212142, -0.02975146286189556, -0.005689338315278292, 0.01502144243568182, 4.698340126196854e-05, 0.00014891875616740435, 0.015908952802419662, -7.973724859766662e-05, -0.02262488752603531, 0.00512636499479413, -0.013789525255560875, -0.010875312611460686, -0.01069648563861847, 0.01256423071026802, 0.0048548136837780476, 0.003917629364877939, 0.027658527716994286, -0.009974555112421513, 0.010822326876223087, 0.0011400202056393027, -0.014610802754759789, -0.01846551150083542, 0.01804162561893463, -0.01755150780081749, 0.001089518191292882, -0.007417995948344469, 0.011855547316372395, -0.001323814271017909, 0.015233384445309639, 0.0022154641337692738, 0.024386662989854813, 0.017776697874069214, 0.00743786571547389, -0.03433472663164139, 0.02032001130282879, 0.002554903505370021, -0.01880991831421852, 0.01256423071026802, 0.0195517186075449, 0.024903273209929466, -0.015577792190015316, 0.054151371121406555, -0.017352811992168427, 0.026744525879621506, -0.009093668311834335, 0.016107648611068726, 0.0023280587047338486, -0.006861646194010973, 0.019286789000034332, -0.01831980049610138, -0.005209155380725861, 0.0075968229211866856, -0.013054348528385162, -0.027234643697738647, 0.017498522996902466, 0.017472030594944954, -0.04387214779853821, 0.00252344342879951, -0.01741904392838478, 0.03634818270802498, -0.027022700756788254, -0.001546519692055881, -0.00019879981118720025, 0.0031758295372128487, -0.014067700132727623, -0.0006656326586380601, -0.002273417077958584, -0.01892913691699505, -0.02202880010008812, -0.022253988310694695, -0.03343396633863449, -0.02773800678551197, -0.02310176007449627, -0.031208569183945656, 0.016822954639792442, -0.028930185362696648, -0.02943354845046997, 0.018240323290228844, 0.007967722602188587, 0.02524768002331257, 0.008120056241750717, 0.003940810449421406, -0.036109745502471924, 0.012829159386456013, -0.028108906000852585, 0.01896887645125389, -0.011438285000622272, -0.017803190276026726, 0.013802771456539631, 0.005679403431713581, -0.006600029766559601, -0.014756513759493828, 0.00986858457326889, -0.006080107297748327, 0.005553562194108963, -0.008318752981722355, 0.003937498666346073, -0.018412526696920395, 0.005311815068125725, 0.013763031922280788, 0.015617530792951584, 0.000846529146656394, -0.0001971440069610253, -0.021604914218187332, -0.004454109352082014, -0.02343291975557804, -0.003152648452669382, -0.00723916944116354, -0.022876570001244545, 0.005305191967636347, 0.018399279564619064, -0.002851292258128524, -0.018664207309484482, -0.019366268068552017, 0.02123401314020157, 0.006341724190860987, 0.0045832619071006775, -0.008822117000818253, 0.013657060451805592, 0.02371109463274479, 0.005639663897454739, 0.013080840930342674, 0.010742847807705402, 0.011352183297276497, 0.02555234730243683, -0.009053928777575493, 0.0342552475631237, 0.01569700986146927, -0.0075968229211866856, 0.016544779762625694, -0.011524386703968048, -0.023843558505177498, -0.01788266934454441, 0.016849448904395103, -0.01635933108627796, 0.011372053064405918, -0.02389654517173767, -0.007020603399723768, -0.032109327614307404, 0.012431766837835312, -0.0004160204262007028, 0.02263813465833664, -0.004639558959752321, -0.024678083136677742, -0.01302785612642765, 0.013696799986064434, 0.015220138244330883, -0.0033480331767350435, -0.007219299674034119, -0.02495625801384449, -0.037222445011138916, 0.007974346168339252, 0.01988287828862667, -0.004377942532300949, 0.009683134034276009, -0.008226027712225914, -0.03648064658045769, 0.0021955943666398525, -0.012378781102597713, -0.025618579238653183, -0.00815979577600956, -0.012703318148851395, -0.0006494885892607272, 0.020399488508701324, -0.0020333256106823683, 0.022267235442996025, -0.0045070950873196125, -0.02621466852724552, -0.005606547929346561, -0.0007446972886100411, -0.012981493026018143, -0.00647087674587965, -0.004215673543512821, 0.0043746307492256165, 0.006623210851103067, 0.009716250002384186, -0.0013875627191737294, -0.017472030594944954, 0.020730650052428246, 0.006341724190860987, -0.011974764987826347, -0.005537004210054874, -0.007689547725021839, -0.05208493024110794, 0.004987277556210756, -0.0028926872182637453, -0.008020708337426186, 0.0019472240237519145, 0.0013718325644731522, -0.011809185147285461, -0.018425771966576576, -0.0029821007046848536, 0.037354908883571625, 0.012504622340202332, 0.03560638055205345, -0.0039275637827813625, 0.02281033806502819, -0.0009429796482436359, -0.011206472292542458, -0.006649703718721867, 0.00523564824834466, -0.008590304292738438, 0.03287762030959129, 0.02357863076031208, 0.017922408878803253, 0.0260557122528553, -0.000139397889142856, 0.006215883418917656, 0.00473890732973814, 0.005636352580040693, 0.016902433708310127, -0.02250567078590393, -0.007643185090273619, -0.026267653331160545, -0.029327576979994774, -0.032453734427690506, 0.003553352551534772, 0.014928717166185379, -0.025989478453993797, -0.004473979119211435, -0.014133932068943977, 0.013193435966968536, -0.010749471373856068, -0.004109702538698912, 0.02898317016661167, -0.025194693356752396, 0.023313701152801514, -0.0032818010076880455, 0.03817618638277054, 0.03555339574813843, 0.009424828924238682, -0.008265767246484756, -0.028161892667412758, 0.0008034782367758453, -6.975069118198007e-05, 0.027234643697738647, 0.0489322803914547, 0.012961623258888721, -0.014147178269922733, -0.006765610072761774, 0.0034639392979443073, 0.00708683580160141, -0.017299827188253403, 0.00885523296892643, 0.010669992305338383, -0.001473664422519505, -0.008775753900408745, 0.015895705670118332, -0.02401576191186905, 0.011067384853959084, 0.006735805422067642, -0.004921045619994402, 0.0015456918627023697, 0.01635933108627796, -0.0021591666154563427, -0.0028794410172849894, -0.006109911948442459, 0.01953847147524357, -0.004745530430227518, -0.0002905933652073145, 0.005772128235548735, -0.0037089979741722345, -0.010160005651414394, -0.008755885064601898, -0.010034164413809776, 0.04485238343477249, 0.011332313530147076, 0.0029804448131471872, -0.004768711980432272, 0.01457106415182352, -0.0058085559867322445, -0.01604141667485237, -0.005689338315278292, 0.03886500000953674, -0.0011838988866657019, -0.01171645987778902, -0.018915889784693718, 0.02742009237408638, 0.03237425535917282, -0.0067556751891970634, 0.006003940477967262, 0.025022489950060844, -0.019313283264636993, -0.010530904866755009, 0.006802037358283997, -0.002847980707883835, 0.0026492844335734844, -0.008577058091759682, 0.0027800926472991705, -0.004752153530716896, -0.027526063844561577, -0.012352287769317627, 0.01009377371519804, -0.03420225903391838, -0.0022104966919869184, -0.024240951985120773, -0.03277164697647095, 0.005689338315278292, 0.006739117205142975, 0.019909372553229332, 0.014266395941376686, 0.024280691519379616, -0.032400745898485184, 0.005119741894304752, 0.02805592119693756, 0.010365325026214123, -0.004394500516355038, -0.0077491565607488155, -0.005517134442925453, -0.0038447738625109196, 0.030148856341838837, 0.008981074206531048, -0.016981912776827812, -0.060933537781238556, 0.028718242421746254, 0.004076586104929447, -0.005361489020287991, 0.024373415857553482, 0.02832084894180298, 0.015591038390994072, 0.004146129824221134, 0.006795414257794619, -0.00831212941557169, -0.004801827948540449, -0.011332313530147076, -0.015074428170919418, 0.006437760777771473, 0.0005836704513058066, -0.0026078892406076193, 0.007848504930734634, 1.9817887732642703e-05, -0.0028463248163461685, -0.02233346737921238, -0.02016105316579342, 0.008981074206531048, 0.005301880184561014, -0.03409628942608833, -0.011458154767751694, -0.014544570818543434, -0.02062467858195305, -0.025181448087096214, -0.0074709816835820675, 0.0023280587047338486, 0.0024671461433172226, 0.011981388553977013, 0.027923457324504852, 0.005984071176499128, 0.021061809733510017, -0.017789945006370544, -0.021525435149669647, -2.3905651687528007e-05, -0.01959145814180374, -0.000851910503115505, -0.016438810154795647, -0.03669258952140808, 0.04201764985918999, 0.0009222821099683642, -0.01772371307015419, -0.025009244680404663, -0.024916518479585648, -0.01631959155201912, 0.014915470965206623, 0.0011532666394487023, 0.021512188017368317, 0.0191013403236866, 0.004950850270688534, 0.006196013651788235, 0.011822431348264217, -0.000316258316161111, 0.01255760807543993, -0.013974974863231182, -0.003626207821071148, -0.01985638588666916, -0.014928717166185379, 0.011756199412047863, 0.010636876337230206, -0.011829054914414883, -0.021498942747712135, -0.0058482950553298, -0.002000209642574191, 0.016438810154795647, 0.006116535048931837, 0.005278699100017548, -0.029168620705604553, -0.008669783361256123, -0.011312443763017654, 0.012180084362626076, -0.003035086439922452, 0.0001318432914558798, -0.05918501317501068, -0.006186078768223524, 0.025327157229185104, -0.015604284591972828, -0.023141497746109962, -0.001707132556475699, -8.801626245258376e-05, 0.00027382836560718715, 0.011458154767751694, -0.003649389138445258, 0.018889397382736206, 0.0026078892406076193, -0.006341724190860987, 0.027181657031178474, -0.013736539520323277, 0.013657060451805592, 0.01849200390279293, 0.011279327794909477, 0.023154744878411293, -0.005656221881508827, 0.013696799986064434, -0.03971277177333832, 0.005132988560944796, 0.017511770129203796, -0.017670726403594017, -0.014941963367164135, 0.0013660371769219637, -0.02123401314020157, -0.03126155585050583, 0.0007595994975417852, 0.026718031615018845, 0.0004449969856068492, -0.028877198696136475, 0.015485066920518875, 0.041355326771736145, -0.023764081299304962, -0.01973716914653778, -8.667092333780602e-05, -0.013047724962234497, 0.011458154767751694, -0.03147349879145622, 0.0020167676266282797, -0.0050766910426318645, 0.016213620081543922, -0.030864162370562553, 0.0061562745831906796, -0.029539519920945168, 0.011915156617760658, 0.002185659483075142, -0.005497265141457319, 0.012378781102597713, 0.24034307897090912, -0.009815598838031292, 0.010193121619522572, 0.029009662568569183, 0.01184892375022173, -0.0005046058795414865, 0.017935654148459435, 0.0003982205525971949, 0.012590724043548107, 0.019379515200853348, -0.005490641575306654, -0.01617388054728508, 0.0043680076487362385, 0.004993901122361422, 0.002351239789277315, -0.03285112604498863, -0.016438810154795647, -0.013948481529951096, -0.001231917180120945, -0.0019422565819695592, 0.04395162686705589, 0.005533692426979542, 0.010497788898646832, -0.014677035622298717, 0.011160110123455524, 0.0030152166727930307, -0.03849410265684128, 0.03923590108752251, 0.016584519296884537, 0.02004183642566204, -0.02126050740480423, 0.021326739341020584, 0.00955729279667139, 0.01710112951695919, -0.01956496387720108, -0.012610593810677528, 0.03865305706858635, 0.025671565905213356, 0.025300664827227592, 0.015948692336678505, -0.002950640395283699, 0.004364695865660906, -0.009424828924238682, 0.008775753900408745, -0.03263918310403824, 0.0006921255262568593, -0.006229129619896412, -0.008378361351788044, 0.003001970238983631, 0.018876150250434875, -0.01941925473511219, -0.010987906716763973, 0.02465159073472023, 0.04315683990716934, -0.01957821100950241, -0.014928717166185379, 0.018412526696920395, -0.012915261089801788, 0.00870952196419239, 0.016690490767359734, 0.004281905945390463, 0.028135400265455246, -0.026413364335894585, 0.011252835392951965, -0.0016880908515304327, 0.009106914512813091, 0.0032818010076880455, 0.0016765001928433776, 0.010590514168143272, -0.017750205472111702, -0.010444803163409233, 0.01586921326816082, 0.007815388962626457, -0.01487573143094778, -0.0233931802213192, -0.031235061585903168, 0.03833514451980591, 0.0025383455213159323, 0.017048144713044167, 0.03049326315522194, -0.010166628286242485, 0.029168620705604553, -0.004265347961336374, 0.002445620484650135, 0.0011905221035704017, -0.008736015297472477, 0.0005000524106435478, -0.006222506519407034, -0.023777326568961143, -0.016571274027228355, 0.013544466346502304, -0.019975604489445686, 0.00894795823842287, -0.027976442128419876, 0.0011747920652851462, 0.009842091239988804, 0.001115183113142848, 0.02975146286189556, 0.0022800404112786055, 0.004129571840167046, -0.04005717858672142, 0.03279814124107361, 0.018147597089409828, 0.0015398964751511812, -0.0005232336698099971, -0.004364695865660906, -0.016107648611068726, 0.021445956081151962, 0.0005257173324935138, -0.02172413095831871, -0.005921150557696819, -0.05839022621512413, -0.0029638868290930986, -0.0032635871320962906, -0.015498313121497631, 0.00808031763881445, -0.009027436375617981, -0.012948377057909966, -0.009842091239988804, 0.005341619718819857, 0.01346498727798462, -0.021022070199251175, -0.025168200954794884, 0.01210722979158163, 0.017061391845345497, -0.03867955133318901, -0.014213410206139088, -0.011266081593930721, -0.011133617721498013, -0.03544742614030838, 0.035235483199357986, -0.011087254621088505, 0.017472030594944954, 0.000689227890688926, 0.012120475992560387, 0.01676996983587742, 0.014531324617564678, 0.009755989536643028, 0.015564545057713985, -0.00012346079165581614, 0.0032155688386410475, 0.0008933055796660483, 0.003904382698237896, 0.007994215004146099, -0.022253988310694695, -0.025843769311904907, -0.005715830717235804, 0.01393523532897234, -0.021141288802027702, -0.003718932857736945, -0.047687117010354996, 0.0036129613872617483, 0.025512607768177986, -0.0002717586176004261, 0.013352393172681332, 0.0018147598020732403, -0.0011102156713604927, -0.05182000249624252, 0.010901805013418198, 0.03160596266388893, -0.004470667336136103, -0.024227704852819443, 0.0022585149854421616, -0.012478129006922245, -0.023141497746109962, -0.016544779762625694, -0.16732880473136902, -0.034281738102436066, 0.007649808656424284, -0.01231917180120945, 0.02742009237408638, -0.00585822993889451, 0.01417367160320282, -0.00306489085778594, -0.028559284284710884, 0.03017534874379635, 0.01680970937013626, 0.012272809632122517, -0.03510301560163498, -0.005431032739579678, -0.010511035099625587, 0.018584730103611946, -0.026095449924468994, 0.010901805013418198, 0.05187298730015755, -0.01316031999886036, 0.0378582738339901, -0.02172413095831871, -0.010107019916176796, -0.0015349291497841477, -0.008100186474621296, 0.01710112951695919, -0.0060304333455860615, 0.010067280381917953, -0.008378361351788044, -0.005828425288200378, -4.136919596930966e-05, -0.0023330259136855602, 0.032294776290655136, -0.01293513085693121, 0.008219405077397823, -0.034414201974868774, -0.013604074716567993, -0.002245268551632762, 0.0013660371769219637, 0.002717172261327505, -0.0063152313232421875, 0.025777537375688553, 0.0028860641177743673, 0.009034059941768646, 0.0029771332629024982, -0.0024737692438066006, -0.003250340698286891, -0.0020565069280564785, 0.012584100477397442, -0.006421202793717384, 0.004354760982096195, -0.02555234730243683, -0.03761983662843704, -0.0035997151862829924, 0.036613110452890396, -0.0012443357845768332, -0.013021232560276985, 0.033804867416620255, -0.00696761766448617, 0.012213200330734253, 0.019498731940984726, -0.028108906000852585, 0.004801827948540449, -0.00708683580160141, -0.022903062403202057, -0.013683553785085678, 0.02526092529296875, 0.02895667776465416, -0.031182076781988144, 0.0022187756840139627, 0.006682819686830044, -0.006229129619896412, -0.011723083443939686, -0.027790993452072144, -0.01086868904531002, -0.007106705103069544, 0.0015531429089605808, 0.016452055424451828, 0.024121733382344246, -0.02755255624651909, -0.0027618790045380592, 0.039050452411174774, 0.022730858996510506, 0.00364276603795588, -0.005205843597650528, 0.028294356539845467, -0.003228815272450447, 0.014835991896688938, -0.026294147595763206, -0.008027331903576851, 0.03775230050086975, -0.03589780256152153, -0.01572350226342678, -0.012266186065971851, 0.010464672930538654, -0.004033535253256559, 0.0035665989853441715, 0.006444384343922138, -0.020823374390602112, 0.017140869051218033, 0.003917629364877939, 0.004142818506807089, -0.02527417242527008, -0.002768502105027437, 0.025658318772912025, 0.02143271081149578, 0.011809185147285461, 0.032745152711868286, 0.024545619264245033, -0.009656641632318497, -0.01788266934454441, 0.027314120903611183, 0.02371109463274479, 0.017935654148459435, 0.03293060511350632, 0.010464672930538654, -0.010590514168143272, -0.007729286793619394, 0.00340764201246202, 0.0207968819886446, -0.008398231118917465, -0.025300664827227592, -0.004391188733279705, 0.011742953211069107, -0.008292259648442268, -0.02726113609969616, -0.06225818023085594, 0.004344826098531485, 0.02063792571425438, 0.025207940489053726, 0.004209050443023443, 0.02694322168827057, 0.009954686276614666, 0.027075685560703278, -0.0045766388066112995, 0.026400119066238403, -0.011146863922476768, -0.015842720866203308, 0.01416042447090149, 0.006914631929248571, 0.0004665224114432931, 0.01678321696817875, 0.01908809319138527, -0.01726008765399456, 0.0025217875372618437, 0.02837383560836315, -0.004195804242044687, 0.0003437860286794603, -0.023684602230787277, -0.013378885574638844, -0.02344616688787937, 0.005232336465269327, -0.011610488407313824, 0.020081575959920883, 0.01532610971480608, 0.00040442979661747813, 0.01741904392838478, 0.005258829332888126, -0.012219823896884918, 0.0018958940636366606, -0.003341409843415022, 0.014226656407117844, -0.017750205472111702, -0.03033430501818657, 0.007994215004146099, -0.0030764814000576735, 0.002223743125796318, -0.02387005090713501, 0.0005712519050575793, -0.013524596579372883, -0.03886500000953674, -0.0020747208036482334, -0.004967408254742622, 0.030466768890619278, -0.02421445958316326, -0.01831980049610138, -0.03807021677494049, 0.004030223935842514, -0.015511559322476387, -0.02296929433941841, 0.021525435149669647, 0.001842908444814384, 0.013299407437443733, 0.016438810154795647, -0.03716946020722389, 0.03867955133318901, 0.018452266231179237, -0.004205738659948111, -0.029910419136285782, 0.031632453203201294, -0.008139926008880138, -0.0017832994926720858, -0.010272599756717682, 0.004685921594500542, 0.017803190276026726, -0.00773591035977006, -0.02232022024691105, -0.0037288677413016558, -0.012180084362626076, 0.04032210633158684, -0.019617950543761253, -0.0007914736634120345, -0.007994215004146099, -0.013829263858497143, 0.02956601232290268, 0.0006486607016995549, -0.02679751068353653, -0.028744734823703766, 0.017657479271292686, -0.007947852835059166, 0.010855442844331264, -0.001389218494296074, 5.878099545952864e-05, -0.007881620898842812, -0.0014430320588871837, -0.027181657031178474, -0.006103288847953081, 0.0258835069835186, 0.021604914218187332, -0.013683553785085678, -0.02262488752603531, -0.018730441108345985, 0.015233384445309639, 0.003791788127273321, 0.00011704455391736701, 0.008914841338992119, -0.0068947626277804375, -0.004864748567342758, -0.0755046010017395, 0.011689967475831509, 0.009457944892346859, -0.019286789000034332, -0.010332209058105946, 0.0031675505451858044, 0.012365534901618958, -0.014306135475635529, -0.031208569183945656, 0.0005277871387079358, -0.032294776290655136, 0.040428079664707184, -0.006424514576792717, 0.005202532280236483, -0.01971067488193512, -0.0037421141751110554, 0.02742009237408638, 0.008186288177967072, 0.00504688685759902, 0.015961937606334686, -0.0009247658308595419, -0.009193016216158867, 0.02173737809062004, 0.015312863513827324, -0.018743686378002167, 0.029168620705604553, -0.021300245076417923, 0.01478300616145134, -0.0030119051225483418, -0.0006354142678901553, 0.010034164413809776, -0.010285845957696438, -0.014306135475635529, 0.035367947071790695, -0.011179979890584946, -0.035500410944223404, -0.006980864331126213, -0.00020883811521343887, 0.004156064707785845, 0.039818745106458664, -0.020558446645736694, -0.019949110224843025, 0.027234643697738647, 0.007298778276890516, 0.007808765396475792, -0.002482048235833645, -3.7462537875398993e-05, -0.0031940434128046036, 0.02140621654689312, 0.0037089979741722345, 0.03989822044968605, -0.01225956343114376, 0.008789001032710075, -0.007815388962626457, -0.018359540030360222, -0.05468123033642769, 0.010895181447267532, -0.005984071176499128, 0.007716040592640638, -0.019525226205587387, 0.031685441732406616, 0.00477533508092165, 0.008643290027976036, 0.0007604273851029575, -0.008139926008880138, -0.018452266231179237, -0.012981493026018143, -0.02528741955757141, 0.022439438849687576, -0.03987172991037369, -0.0022403011098504066, 0.002000209642574191, 0.011027646251022816, 0.01532610971480608, -0.025525854900479317, 0.019472239539027214, -0.012233070097863674, -0.01772371307015419, -0.03126155585050583, 0.014902224764227867, 0.0011574061354622245, -0.010371948592364788, -0.028850706294178963, 0.019829893484711647, 0.030254827812314034, 0.03348695486783981, -0.025949740782380104, 0.006364905741065741, -0.006305296905338764, -0.021181028336286545, -0.02096908539533615, -0.004560080822557211, 0.020227285102009773, 0.02389654517173767, 0.031182076781988144, 0.01679646223783493, 0.001736937090754509, -0.023803818970918655, 0.036295194178819656, -0.0035665989853441715, 0.0017899227095767856, 0.0009711282909847796, -0.00863666646182537, -0.05065431445837021, -0.008974450640380383, -0.006921255495399237, -0.0020531953778117895, -0.03682505339384079, -0.003573222318664193, -0.005633040796965361, -0.028294356539845467, 0.00696761766448617, -0.0010497788898646832, 0.03502354025840759, -0.011570748873054981, -0.006398021709173918, -0.02326071634888649, -0.018690701574087143, -0.030440276488661766, 0.013551088981330395, 0.002874473575502634, 0.028400328010320663, 0.005063444841653109, -0.019366268068552017, 0.016266604885458946, -0.023340195417404175, 0.022412944585084915, -0.017326319590210915, 0.021684391424059868, 0.0006428653723560274, -0.011895286850631237, 0.03947433829307556, -0.002054851269349456, -0.008272389881312847, -5.433102705865167e-05, 0.01708788424730301, 0.0058913459070026875, -0.012570854276418686, 0.0019654377829283476, 0.05992681160569191, 0.01293513085693121, -0.020439228042960167, -0.009484438225626945, 0.006345035973936319, 0.006510616280138493, 0.0005911215557716787, 0.008199535310268402, -0.009345350787043571, -0.004434239584952593, 0.021181028336286545, 0.0014571063220500946, 0.00800746213644743, 0.002702269935980439, -0.014133932068943977, 0.005795309320092201, -0.018611222505569458, 0.016120895743370056, -0.011769445613026619, 0.006659638602286577, 0.053833458572626114, 0.003513613250106573, 0.0415937639772892, 0.008769131265580654, -0.01633283868432045, -0.00970300380140543, 0.03433472663164139, -0.009418205358088017, -0.010497788898646832, -0.010212991386651993, 0.01726008765399456, -0.005672779865562916, -0.04437551274895668, -0.03449368104338646, 0.013749785721302032, 0.006566913332790136, -0.021684391424059868, 0.001722034765407443, 0.04140831530094147, 0.00026120286202058196, -0.008371738716959953, 0.015908952802419662, -0.018213829025626183, -0.0054542142897844315, -0.022108277305960655, 0.0009264216059818864, -0.008994320407509804, -0.008563811890780926, 0.021379724144935608], "b380cdaa-9db0-4777-8838-a810de25f3e3": [0.001989549957215786, -0.011879135854542255, -0.009798918850719929, -1.817624070099555e-05, -0.012385504320263863, -0.004629167728126049, -0.016764909029006958, -0.0073765600100159645, 0.023429816588759422, -0.045682668685913086, 0.016340654343366623, 0.021705426275730133, -0.010715856216847897, -0.020460031926631927, -0.002340244362130761, -0.014506778679788113, -0.00771185802295804, 0.007581844460219145, 0.027576565742492676, -0.014588892459869385, -0.009867346845567226, 0.0027781850658357143, 0.00318704335950315, -0.03246233984827995, -0.013925138860940933, 0.006343294400721788, 0.004766024183481932, -0.0026738320011645555, 0.007472359575331211, 0.019693635404109955, 0.011064840480685234, -0.002865430898964405, -0.012542889453470707, 0.003944885917007923, 0.008272969163954258, -0.00537845678627491, -0.0015285148983821273, -0.013062943704426289, -0.019118839874863625, -0.0050979009829461575, 0.022307593375444412, 0.008916194550693035, 0.01445203647017479, 0.02184228226542473, -0.02637222781777382, 0.024100411683321, -0.019337808713316917, 0.029588354751467705, 0.004057792481034994, 0.013268228620290756, -0.019337808713316917, 0.00404068548232317, -0.04382142052054405, -0.023703528568148613, -0.01784607395529747, 0.01460257824510336, -0.0023334017023444176, 0.0060456315986812115, 0.004957623314112425, -0.026454342529177666, -0.0098947174847126, 0.015615315176546574, -0.033611930906772614, -0.009094107896089554, 0.012070734985172749, 0.00030493317171931267, -0.018776698037981987, -0.007102847099304199, -0.032736051827669144, -0.016094312071800232, 0.023635100573301315, 0.013452984392642975, -0.004858402069658041, 4.159151649218984e-05, 0.01985786482691765, -0.0020682422909885645, -0.02523631975054741, -0.03481626883149147, 0.014246751554310322, -0.0052963425405323505, 0.009504676796495914, -0.011762808077037334, -0.014807863160967827, -0.010893769562244415, 0.01951572299003601, 0.0016268804902210832, -0.006678592413663864, 0.00616538105532527, -0.018065044656395912, -0.01219390518963337, 0.004225441254675388, 0.0024257798213511705, 0.012358132749795914, 0.000861339969560504, 0.005159486550837755, 0.012433404102921486, -0.002311162417754531, 0.0037464438937604427, -0.0021400919649749994, -0.04354770854115486, -0.002692649606615305, 0.013952510431408882, -0.009737333282828331, -0.006483572069555521, -0.030984289944171906, -0.009237807244062424, 0.027891334146261215, -0.003000576514750719, -0.0024172260891646147, -0.02089797332882881, -0.03276342153549194, 0.01445203647017479, 0.01160542294383049, -0.014068838208913803, -0.04300028085708618, -0.003524052444845438, 0.026153258979320526, -0.007540787570178509, -0.00934044923633337, -0.006781234871596098, 0.014506778679788113, -0.017709217965602875, 0.026823854073882103, 0.015245803631842136, 0.001499432954005897, 0.005600848235189915, -0.04595638066530228, 0.0005264694918878376, -0.010223173536360264, -0.01922832429409027, 0.058738768100738525, 0.01501314714550972, 0.022430764511227608, 0.005046579986810684, -0.01866721361875534, -0.0020066569559276104, 0.0014874580083414912, 0.005508470349013805, -0.013849867507815361, -0.015095260925590992, 0.021075885742902756, 0.010168430395424366, -0.0004062924417667091, -0.019200952723622322, 0.028767215088009834, 0.01840718649327755, 0.01896829716861248, -0.0016670820768922567, -0.021335912868380547, 0.004971308633685112, -0.008998308330774307, -0.033557191491127014, -0.001979285618290305, -0.031805429607629776, 0.01259763166308403, 0.008156641386449337, 0.018010303378105164, 0.03561003506183624, 0.0013856710866093636, -0.011694379150867462, 0.00018165548681281507, 0.014383607544004917, 0.017052307724952698, -0.009819447062909603, -0.008663009852170944, 0.06087372824549675, -0.009313078597187996, 0.015492144972085953, -0.008471411652863026, 0.0042493911460042, -0.015040518715977669, 0.019721006974577904, -0.04154960438609123, 0.021459084004163742, -0.012536046095192432, 0.014493092894554138, -0.01981680653989315, -0.001206047018058598, 0.005734283477067947, -0.010154744610190392, -0.023977242410182953, -0.024292010813951492, -0.0059327250346541405, 0.004933673422783613, -0.015943771228194237, -0.02690596878528595, 0.01731233485043049, 0.007082318887114525, 0.011981777846813202, -0.010715856216847897, 0.02035054750740528, 0.030984289944171906, 0.024483609944581985, 0.01446572132408619, -0.6144304871559143, 0.0032606038730591536, 0.010100002400577068, -0.005624798126518726, 0.024688895791769028, 0.03374878689646721, 0.011003254912793636, 0.009005151689052582, 0.001897171838209033, 0.02490786463022232, -0.016012199223041534, -0.0007279049605131149, -0.01530054584145546, -0.006712806411087513, -0.0014404136454686522, -0.04127589240670204, -0.018242958933115005, 0.010599528439342976, -0.001247103908099234, 0.02605745941400528, -0.03903144598007202, 0.008409826084971428, -0.011536994948983192, -0.006682013627141714, 0.010017888620495796, -0.008218226954340935, -0.00552899856120348, -0.021116942167282104, -0.011947563849389553, 0.03478889912366867, -0.04308239370584488, 0.019679950550198555, 0.03320136293768883, 0.018544042482972145, 0.0339130163192749, -0.024866808205842972, -0.07258863747119904, 0.019023040309548378, 0.0009032522793859243, 0.030135780572891235, -0.03785448148846626, -0.013617211952805519, -0.021678054705262184, -0.020610574632883072, 0.007609216030687094, 0.027056511491537094, 0.005467413458973169, -0.011475409381091595, 0.004211755935102701, -0.016012199223041534, 0.007780286483466625, -0.017681846395134926, 0.004810502752661705, -0.0008775916649028659, 0.025072092190384865, 0.022731848061084747, 0.030737947672605515, -0.02384038455784321, -0.021376969292759895, 0.0022307592444121838, -0.012358132749795914, 0.0183661300688982, -0.01486260537058115, -0.02323821745812893, -0.005398984998464584, 0.01785976067185402, -0.03005366586148739, -0.0012086130445823073, 0.014807863160967827, -0.0011598579585552216, 0.007417616900056601, 0.0134461410343647, 0.01898198388516903, -8.65509791765362e-05, 0.004789974074810743, 0.024196211248636246, 0.002598560880869627, 0.004694174509495497, -0.008211384527385235, 0.0072602322325110435, 0.0030262372456490993, -0.022855019196867943, 0.00017085667059291154, -0.030628463253378868, 0.014629949815571308, -0.03993469849228859, -0.019611522555351257, -0.008272969163954258, 0.012987672351300716, -0.0015892449300736189, 0.004204913042485714, 0.007725543808192015, 0.014958404935896397, -0.023292958736419678, -0.0061585381627082825, 0.029506240040063858, -0.014766805805265903, 0.01757236197590828, 0.013740383088588715, -0.01894092559814453, -0.03333821892738342, 0.0014207405038177967, 0.001845850725658238, -0.004122799262404442, 0.04502575471997261, -0.003058740636333823, -0.04754391312599182, 0.004991837311536074, 0.029916809871792793, -0.03758076950907707, 0.00279358122497797, 0.016600681468844414, -0.01787344552576542, -0.015916399657726288, 0.008334554731845856, -0.028958814218640327, 0.004317819606512785, 0.003831979352980852, 0.031832799315452576, -0.02289607562124729, 0.015957456082105637, -0.0022204951383173466, 0.020460031926631927, 0.0031151939183473587, -0.006230387836694717, 0.022553935647010803, 0.01642276905477047, -0.004369140602648258, 0.006565685849636793, -0.0035719519946724176, -0.0064254081808030605, -0.012556575238704681, 0.034131985157728195, -0.0066580637358129025, 0.009347292594611645, 0.009005151689052582, 0.017996616661548615, 0.01428780797868967, 0.033009763807058334, -0.0001016800306388177, -0.02404567040503025, -0.006890719756484032, 0.005802711471915245, -0.02860298752784729, 0.0034607562702149153, -0.011331710033118725, -0.026700684800744057, -0.0050260513089597225, -0.012755016796290874, 0.01755867712199688, 0.0141372662037611, -0.016491197049617767, -0.003979099914431572, 0.029259899631142616, -0.002897934289649129, -0.003681437112390995, -0.0015191060956567526, -0.008238755166530609, 0.0009023969178088009, 0.004878930747509003, -0.008115584962069988, -0.002555793384090066, -0.02043266035616398, -0.001159002655185759, -0.012433404102921486, -0.017161792144179344, -0.009655219502747059, -0.010736384429037571, -0.035555291920900345, -0.02969783917069435, -0.003698544343933463, -0.0014489671448245645, -0.01145488116890192, 0.021363284438848495, 0.005214228760451078, -0.002731995889917016, 0.005491363350301981, 0.005388720892369747, 0.000664608902297914, 0.00835508294403553, -0.012426561675965786, -0.004701017402112484, -0.0020152104552835226, -0.003491549054160714, 0.01985786482691765, 0.015026832930743694, 0.0072191753424704075, -0.00021373121126089245, -0.029971551150083542, -0.016313282772898674, -0.014246751554310322, 0.03221599757671356, -0.0070344191044569016, 0.005245021544396877, 0.010428457520902157, 0.015437401831150055, 0.025427918881177902, 0.020788487046957016, -0.014547835104167461, 0.011947563849389553, 0.036704886704683304, -0.011660165153443813, 0.013104000128805637, -0.018817754462361336, 0.019419923424720764, -0.03194228559732437, -0.003910671919584274, -0.016792280599474907, 0.006038788706064224, 0.007513416465371847, -0.011571208946406841, -0.018886184319853783, 0.014876291155815125, -0.007629744242876768, 0.029670467600226402, 0.0184619277715683, -0.007835028693079948, 0.005566634237766266, 0.0036232732236385345, 0.02378564327955246, 0.004030420910567045, 0.010312129743397236, 0.01896829716861248, -0.021376969292759895, -0.01758604682981968, 0.026481714099645615, -0.008621953427791595, 0.03517209365963936, 0.006976255215704441, -0.029040928930044174, -0.015095260925590992, -0.013665111735463142, -0.001782554667443037, 0.017490247264504433, 0.02014526166021824, -0.04187805950641632, 0.031832799315452576, -0.00806084182113409, 0.0339130163192749, -0.0023966976441442966, 0.019118839874863625, -0.019625207409262657, 0.010934826917946339, -0.007958199828863144, 0.04557318240404129, 0.010250544175505638, 0.05501627177000046, 0.013131371699273586, -0.042069658637046814, 0.015204746276140213, -0.02893144264817238, 0.007287603337317705, -0.010791127569973469, 0.016504881903529167, 0.0070344191044569016, -0.00877933856099844, 0.014643634669482708, 0.0005521300481632352, 0.00736287422478199, 0.03769025206565857, 0.013206643052399158, 0.0367322601377964, 0.01617642678320408, -0.00454021105542779, -0.01090745534747839, -0.01457520667463541, -0.0039619929157197475, 0.018393499776721, -0.007930828258395195, -0.01542371604591608, -0.016778595745563507, 0.008998308330774307, 0.027056511491537094, -0.015355288051068783, -0.0007480057538487017, 0.005573477130383253, 0.022567620500922203, 0.00029894569888710976, 0.02072005905210972, 0.01587534323334694, -0.0020134998485445976, -0.008471411652863026, 0.008156641386449337, -0.0018988825613632798, -0.006613585632294416, -0.0024343333207070827, -0.020460031926631927, 0.009278863668441772, 0.016368025913834572, 0.0025318434927612543, 0.0049405163154006, 0.003474441822618246, 0.0060216817073524, -0.0022837913129478693, 0.006986519321799278, -0.008970936760306358, 0.029779953882098198, -0.04020841047167778, -0.007527102250605822, -0.012070734985172749, 0.0008356794132851064, -0.0007001060293987393, -0.022567620500922203, -0.0036882800050079823, 0.06120218336582184, 0.007971885614097118, -0.026440657675266266, -0.0198304932564497, 0.0197620652616024, -0.0057034906931221485, -0.0010537942871451378, -0.02237602137029171, 0.008033471181988716, -0.011742278933525085, -0.010825341567397118, -0.007766600698232651, 0.0058198184706270695, -0.009607319720089436, 0.010243701748549938, 0.005073951091617346, -0.023115046322345734, -0.027015453204512596, -0.0037669725716114044, -0.00567269790917635, -0.00502947298809886, 0.01669648103415966, 0.021746482700109482, 0.0134324561804533, -0.03287290781736374, 0.004475204274058342, -0.01785976067185402, -0.012358132749795914, -0.010264229960739613, -0.002040871186181903, 0.013685639947652817, -0.0017235353589057922, 0.01373353973031044, -0.01584797166287899, 0.031011661514639854, -0.006185909267514944, -0.015245803631842136, -0.034104615449905396, 0.02492155134677887, -0.00823191273957491, 0.017640789970755577, -0.008615110069513321, 0.00593614624813199, 0.01810610108077526, -0.02156856842339039, -0.001938228844664991, -9.280574886361137e-05, -0.00657594995573163, 0.01428780797868967, -0.011420667171478271, 0.0029407020192593336, 0.007951357401907444, -0.011913349851965904, 0.03432358428835869, 0.01759973354637623, 0.02917778491973877, -0.011954406276345253, 0.035856377333402634, 0.005173171870410442, 0.013494040817022324, -0.009928932413458824, 0.00878618098795414, 0.002352219307795167, -0.014506778679788113, 0.013555626384913921, -0.038347162306308746, 0.0017089942703023553, 0.004851559642702341, -0.006599899847060442, -0.020993772894144058, 0.020295804366469383, 0.013808811083436012, -0.02860298752784729, -0.0038593504577875137, 0.0038901432417333126, 0.022239165380597115, -0.019488351419568062, 0.0141372662037611, -0.0018783541163429618, -0.018598785623908043, -0.009094107896089554, -0.010448986664414406, -0.004618903622031212, 0.0004310976655688137, -0.033009763807058334, -0.020158948376774788, -0.030737947672605515, -0.016285911202430725, -0.023621415719389915, -0.014109894633293152, 0.016326969489455223, -0.03651328757405281, -0.025687946006655693, -0.008279812522232533, 0.01865352690219879, 0.030628463253378868, 0.010681642219424248, 0.030491607263684273, -0.03060109168291092, 0.0425349697470665, 0.001998103456571698, -0.0011940720723941922, -0.004379404708743095, -0.017695533111691475, 0.02267710492014885, 0.007143903989344835, -0.0016114840982481837, 0.013104000128805637, -0.023402445018291473, 0.0006530616665259004, -0.003794343676418066, 0.023279273882508278, -0.0003998772881459445, -0.02288239076733589, 0.01003841683268547, 0.0054366206750273705, 0.006942041218280792, 0.008156641386449337, 0.0226907916367054, -0.0016636606305837631, 0.00863563921302557, -0.030655834823846817, -0.022841334342956543, 0.009641533717513084, -0.014821548014879227, 0.012604475021362305, 0.017613418400287628, 0.015095260925590992, 0.007965042255818844, 0.021089572459459305, 0.0055905841290950775, -0.005412670783698559, 0.006179066374897957, -0.017394449561834335, -0.009299392811954021, 0.013192957267165184, 0.030956918373703957, 0.0013180982787162066, 0.017763961106538773, -0.005546105559915304, 0.02289607562124729, -0.04551843926310539, 0.03246233984827995, 0.016901765018701553, -0.010832183994352818, 0.0134461410343647, -0.01929675228893757, -0.03618483245372772, -0.012241804972290993, -0.005693226121366024, -0.00042446868610568345, 0.020049462094902992, -0.0015430559869855642, -0.03229811042547226, -0.022759219631552696, -0.0009545733919367194, -0.021855967119336128, 0.031559087336063385, -0.015642687678337097, -0.02551003359258175, -0.015629000961780548, -0.001224864856339991, 0.009210435673594475, -0.0005012365872971714, 0.0063569797202944756, -0.018489299342036247, -0.027973448857665062, -0.009360977448523045, 0.015341602265834808, 0.0034898382145911455, -0.002649882109835744, 0.00365064456127584, -0.03287290781736374, -0.006144852377474308, 0.023689843714237213, -0.03336559236049652, -0.025017350912094116, -0.011140110902488232, 0.01807873137295246, 0.006493836175650358, 0.022239165380597115, -0.0024907866027206182, 0.005871139466762543, 0.007568159140646458, -0.0007736663683317602, 0.010647428222000599, -0.02657751366496086, -0.0034795741084963083, -0.009792075492441654, 0.005008944310247898, 0.020268432796001434, 0.005320292431861162, 0.01813347265124321, 0.0005187712959013879, 0.00877933856099844, 0.02119905687868595, -0.029807323589920998, 0.025386862456798553, -0.0038080294616520405, -0.052799198776483536, 0.006261180620640516, 0.0069967834278941154, -0.011625951156020164, -0.005156064871698618, -0.0339951291680336, -0.01231023296713829, 0.0013890925329178572, -0.003873036243021488, 0.01669648103415966, 0.015916399657726288, 0.03539106622338295, -0.013856710866093636, 0.02237602137029171, -0.004625746514648199, -0.007540787570178509, 0.01046951487660408, -0.019365180283784866, -0.011393295601010323, 0.034405700862407684, -0.0012299969093874097, 0.00903936568647623, 0.006353558506816626, -0.010599528439342976, -0.008101899176836014, 0.006476729176938534, 0.01697019301354885, -0.023156102746725082, -0.03177805617451668, -0.011865450069308281, -0.040098924189805984, -0.017982931807637215, -0.018201900646090508, 0.0017380763310939074, -0.003886721795424819, 0.017367077991366386, -0.008854608982801437, 0.0019809964578598738, 0.02177385427057743, -0.021883338689804077, -0.02151382714509964, 0.031860169023275375, -0.027261795476078987, 0.03823767974972725, -0.009313078597187996, 0.02741233818233013, 0.01062005665153265, 0.00410227058455348, -0.009751019068062305, -0.036704886704683304, -0.01807873137295246, 0.006066159810870886, 0.0047557600773870945, 0.031832799315452576, -0.0033238998148590326, -0.02119905687868595, -0.008840923197567463, 0.016751224175095558, -0.006049052812159061, -0.024127783253788948, 0.03054634854197502, 0.03870299085974693, -0.012255490757524967, -0.024182526394724846, 0.009751019068062305, -0.014848919585347176, 0.0312032587826252, 0.016573309898376465, 0.0075613162480294704, 0.0017603154992684722, -0.0012761859688907862, 0.02830190397799015, 0.013651425950229168, 0.005433198995888233, 0.004636010620743036, -0.013562469743192196, 0.0282745324075222, 0.00892988033592701, -0.012234962545335293, -0.02716599591076374, 0.01955677941441536, -0.01347351260483265, 0.04398564621806145, 0.0022735269740223885, -0.012878187000751495, 0.0029543875716626644, -0.0011872292961925268, -0.006617006845772266, -0.013097157701849937, 0.0044580972753465176, 0.038128193467855453, -0.009094107896089554, -0.011037468910217285, 0.017709217965602875, 0.015629000961780548, 0.009490991942584515, 0.005357928108423948, 0.007965042255818844, -0.004858402069658041, -0.020460031926631927, -0.028493503108620644, 0.013671954162418842, -0.002506182761862874, 0.0020066569559276104, -0.012371818535029888, -0.004242548253387213, -0.00459837494418025, -0.02181491069495678, -0.01471206359565258, 0.02808293327689171, -0.03769025206565857, -0.00018529074441175908, -0.02489417977631092, -0.03591112047433853, 0.012460775673389435, 0.0023881441447883844, -0.0058608753606677055, 0.021664367988705635, 0.04193280264735222, -0.020336860790848732, 0.00365064456127584, -0.0010982726234942675, 0.0032742894254624844, 0.01033265795558691, 0.012960301712155342, 0.011146954260766506, -0.03177805617451668, 0.026673313230276108, 0.0029321485199034214, -0.027015453204512596, -0.03196965530514717, -0.0010837316513061523, 0.0014977222308516502, 0.0022666840814054012, 0.021294856444001198, 0.02939675562083721, 0.006825712975114584, 0.006435672286897898, 0.00036865693982690573, -0.019132524728775024, -0.009456777013838291, -0.006555421743541956, -0.008389297872781754, 0.0297252107411623, -0.00962784793227911, 0.010045260190963745, 0.012125477194786072, -0.003626694669947028, -0.01610799878835678, -0.03221599757671356, -0.027549194172024727, 0.002692649606615305, -0.01955677941441536, -0.013562469743192196, -0.002525000600144267, -0.014876291155815125, -0.011790178716182709, -0.026796484366059303, -0.009285707026720047, 0.014205694198608398, -0.018311386927962303, -0.009846817702054977, 0.009360977448523045, -0.017887132242321968, 0.01187229249626398, -0.03845664858818054, -0.017941873520612717, -0.02234864979982376, -0.012577103450894356, -0.0041501703672111034, -0.006620428524911404, -0.017681846395134926, 0.04560055211186409, -0.011660165153443813, -0.016847023740410805, -0.04026315361261368, -0.004697596188634634, -0.0268649123609066, 0.008225069381296635, -0.008040313608944416, 0.017394449561834335, 0.02459309622645378, 0.03706071525812149, 0.0007668235339224339, 0.015533201396465302, -0.006490414962172508, -0.01530054584145546, -0.009299392811954021, -0.0051389578729867935, -0.02355298586189747, 0.0014737723395228386, 0.0036540660075843334, 0.010442143306136131, -0.027042824774980545, -0.0037293368950486183, -0.001599509152583778, -0.027863962575793266, 0.00835508294403553, 0.014397293329238892, 0.009422563016414642, 0.00907357968389988, -0.007657115813344717, -0.025003664195537567, -0.003465888323262334, -0.006179066374897957, -0.011119582690298557, -0.0368143729865551, 0.0035206309985369444, 0.02433306910097599, -0.007876086048781872, -0.015095260925590992, 0.0031476973090320826, -0.00790345761924982, -0.021855967119336128, 0.008423511870205402, 0.00905305054038763, -0.005463991779834032, -0.006042209919542074, 0.004629167728126049, 0.03785448148846626, 0.0008741702768020332, 0.005843768361955881, 0.015437401831150055, 0.0038182935677468777, 0.01646382547914982, -0.012494989670813084, -0.007273917552083731, -0.027562879025936127, 0.012029677629470825, 0.00823191273957491, -0.007198646664619446, -0.01701125130057335, 0.009839975275099277, 0.005556370131671429, -0.020008405670523643, 0.008601425215601921, -0.0019724429585039616, 0.007930828258395195, -0.03853876143693924, 0.022759219631552696, 0.010448986664414406, -0.028821958228945732, -0.013521412387490273, 0.005789025686681271, 0.0002089198533212766, 0.023156102746725082, -0.03842927888035774, 0.00750657357275486, -0.008799866773188114, 0.017202850431203842, -0.0077187009155750275, 0.01018211618065834, -0.0067641278728842735, 0.01666910946369171, 0.021116942167282104, -0.0049405163154006, 0.010791127569973469, 0.24831224977970123, -0.0021486454643309116, -0.0012556575238704681, 0.03224336728453636, 0.0008284089271910489, 0.0045949537307024, 0.0339403860270977, 0.001489168731495738, 0.009422563016414642, 0.03027263656258583, -0.02893144264817238, -0.027576565742492676, -0.01077059842646122, 0.0018184793880209327, 0.003794343676418066, -0.003619851777330041, -0.05572792515158653, -0.03147697076201439, -0.02289607562124729, 0.0017192584928125143, 0.024989979341626167, 0.005320292431861162, -0.007137061562389135, -0.02151382714509964, 0.0035206309985369444, 0.02204756624996662, -0.013671954162418842, 0.0071507468819618225, 0.033256106078624725, 0.021103257313370705, -0.014356236904859543, 0.024976292625069618, 0.0074860453605651855, 0.009928932413458824, 0.007869242690503597, -0.012200748547911644, 0.02912304177880287, 0.009456777013838291, 0.018284015357494354, 0.016258539631962776, -0.013644583523273468, 0.001969021512195468, -0.014739434234797955, -0.00269093899987638, -0.01303557213395834, -0.006490414962172508, -0.019351495429873466, -0.009867346845567226, 0.017777645960450172, 0.016929136589169502, -0.010886927135288715, -0.006250916048884392, 0.04562792554497719, 0.03262656554579735, 0.0155879445374012, -0.010784284211695194, 0.024415181949734688, -0.010414771735668182, 0.003193886252120137, 0.022718163207173347, -0.01588902808725834, 0.05433199182152748, -0.024989979341626167, 0.027289167046546936, -0.0050260513089597225, 0.017148107290267944, 0.007403931580483913, 0.014246751554310322, -0.00014712063421029598, -0.01783238910138607, -0.01314505748450756, 0.013056100346148014, -0.003678015898913145, 0.010011046193540096, -0.038976702839136124, -0.02830190397799015, 0.031586457043886185, 0.0030450548510998487, 0.016272226348519325, 0.038347162306308746, -0.017120735719799995, 0.021158000454306602, -0.009648376144468784, -0.01457520667463541, 0.01922832429409027, -0.014438350684940815, -0.0009956302819773555, -0.012864502146840096, -0.019064096733927727, 0.0026259322185069323, 0.021609626710414886, -0.003657487453892827, 0.0036130091175436974, -0.010579000227153301, -0.012625003233551979, 0.00036331097362563014, 0.0062440731562674046, 0.015191060490906239, 0.000393889844417572, -0.0098810326308012, -0.012139162980020046, 0.03519946709275246, 0.030710576102137566, -0.0012992804404348135, -0.011379609815776348, 0.02607114426791668, 0.012713959440588951, 0.008656167425215244, -0.0045710038393735886, -0.0008596292464062572, 0.0007210621843114495, -0.06634798645973206, 0.018899869173765182, 0.0011367634870111942, -0.025838488712906837, -0.007752915378659964, -3.5550588108890224e-06, -0.009928932413458824, -0.015697428956627846, 0.012433404102921486, 0.02604377269744873, -0.01302872970700264, 0.0098947174847126, -0.003341006813570857, -0.012967144139111042, -0.01584797166287899, -0.01980312168598175, -0.020884286612272263, -0.025400547310709953, -0.05315502732992172, 0.026686998084187508, -0.011509623378515244, -0.004198070149868727, -0.02126748487353325, -0.004711281508207321, -0.006818870082497597, 0.0048686666414141655, -0.011119582690298557, 0.008731438778340816, -0.009148850105702877, 0.023730900138616562, -0.00616880226880312, 0.0064254081808030605, 0.014246751554310322, 0.00026259321020916104, -0.016641737893223763, 0.0033649567048996687, -0.001464363536797464, -0.011502780951559544, 0.00335982465185225, -0.02377195656299591, -0.011126425117254257, 0.006794920191168785, 0.0024343333207070827, 0.016094312071800232, 0.0051355366595089436, -0.03476152569055557, -0.04932304844260216, 0.015396345406770706, 0.027343908324837685, -0.027234423905611038, -0.023292958736419678, 0.027070196345448494, -0.04384879022836685, -0.007923985831439495, -0.010975883342325687, -0.17605207860469818, 0.0074860453605651855, 0.006825712975114584, -0.024688895791769028, 0.03561003506183624, 0.009860503487288952, 0.01021633017808199, 0.0029235947877168655, -0.02091165818274021, 0.0071096899919211864, 0.007349188905209303, 0.01233076211065054, -0.026221686974167824, -0.003712229896336794, -0.015464773401618004, 0.007663958705961704, -0.02520895004272461, 0.02043266035616398, 0.030491607263684273, -0.012987672351300716, 0.05077372491359711, -0.024825751781463623, -0.0183661300688982, 0.026221686974167824, -0.02063794620335102, 0.018297700211405754, -0.006887298543006182, 0.036622773855924606, -0.012761859223246574, -0.03344770520925522, -0.006593056954443455, 0.01006578840315342, 0.0198441781103611, -0.01892724074423313, 0.01924201101064682, -0.021595939993858337, -0.02177385427057743, -0.0006120047182776034, 0.005717176012694836, 0.030655834823846817, -0.003866193350404501, 0.012604475021362305, 0.0075613162480294704, 0.02434675395488739, -0.003029658691957593, 0.007403931580483913, 0.000680860597640276, 0.00893672276288271, 0.00439309049397707, -0.007855557836592197, 0.012679745443165302, -0.03708808496594429, -0.021171685308218002, -0.008546682074666023, 0.02635854296386242, 0.00905305054038763, 0.010243701748549938, 0.017230220139026642, -0.002771342173218727, -0.005713754799216986, 0.025003664195537567, -0.021418027579784393, 0.007171275559812784, 0.00011440339585533366, -0.023854071274399757, 0.016764909029006958, -0.02748076617717743, 0.020802173763513565, -0.006411722395569086, 0.005607691127806902, 0.007403931580483913, -0.021322228014469147, -0.0036540660075843334, -0.038620878010988235, 0.02182859554886818, -0.009251493029296398, 0.017777645960450172, 0.013097157701849937, 0.019146211445331573, -0.009210435673594475, -0.00488919485360384, 0.033256106078624725, 0.016066942363977432, 0.006062738597393036, -0.00014466149150393903, 0.01021633017808199, 0.011913349851965904, 0.004126220475882292, -0.001421595923602581, -0.019392551854252815, 0.04877562075853348, -0.011338552460074425, -0.02041897550225258, -0.02295081876218319, 0.023019246757030487, -8.826168777886778e-05, -0.0024069619830697775, -0.005884825251996517, -0.009846817702054977, 0.0036095876712352037, 0.0029868909623473883, -0.009422563016414642, -0.024209897965192795, 0.006900983862578869, 0.03916830196976662, 0.0031819113064557314, 0.026194315403699875, 0.01584797166287899, 0.012282862327992916, 0.004269919823855162, -0.008519311435520649, 0.012905558571219444, 0.029040928930044174, 0.008868294768035412, 0.010127373971045017, 0.015615315176546574, -0.006815448869019747, -0.022526564076542854, 0.0017945296131074429, -0.0025592148303985596, -0.010886927135288715, -0.020514775067567825, 0.015095260925590992, 0.0033016607630997896, -0.0038422434590756893, -0.0030262372456490993, -0.038046080619096756, -0.003402592381462455, 0.011564365588128567, 0.011947563849389553, -0.010305287316441536, 0.027357595041394234, 0.00791714247316122, 0.023607729002833366, -0.0032486289273947477, 0.017161792144179344, -0.014753120020031929, -0.02805556170642376, -0.00651436485350132, -0.011571208946406841, 0.016805965453386307, -0.006220123264938593, 0.02915041334927082, -0.023087674751877785, 0.0017876867204904556, 0.03588374704122543, 0.0019330966752022505, -0.012700273655354977, -0.030929546803236008, -0.021992823109030724, -0.0254689771682024, -0.019994720816612244, -0.00808821339160204, 0.026550142094492912, 0.010442143306136131, -0.00439651170745492, 0.02857561595737934, -0.004317819606512785, 0.024812065064907074, -0.0240867268294096, 0.009538890793919563, -0.0197894349694252, -0.020460031926631927, -0.01329559925943613, 0.021418027579784393, 0.0031476973090320826, 0.02575637400150299, 0.012946615926921368, 0.0063125016167759895, -0.015711115673184395, -0.007424459792673588, -0.0031408544164150953, -0.020227376371622086, 0.02857561595737934, -0.013275071047246456, -0.014301493763923645, -0.03426884487271309, -0.008731438778340816, -0.026139572262763977, -0.01731233485043049, -0.003125458024442196, 0.018790384754538536, -0.0013121108058840036, 0.015533201396465302, -0.025017350912094116, 0.011516465805470943, -0.00977154728025198, -0.0045333681628108025, -0.0240730419754982, 0.012419718317687511, 0.005604269448667765, 0.026878597214818, -0.018201900646090508, -0.012672903016209602, 0.008238755166530609, 0.01810610108077526, -0.018749326467514038, 0.002701203338801861, -0.0340498723089695, 0.023717215284705162, -0.021062200888991356, -0.014780491590499878, 0.004831030964851379, -0.005265550222247839, 0.0156016293913126, -0.003185332752764225, -0.011879135854542255, -0.01954309456050396, 0.0032931072637438774, -0.013979881070554256, 0.0033256106544286013, 0.008033471181988716, 0.01785976067185402, -0.001164990128017962, 0.003784079570323229, -0.03027263656258583, 0.01131118182092905, 0.011858607642352581, 0.016012199223041534, -0.02295081876218319, -0.01486260537058115, -0.013596683740615845, 0.005077372305095196, 0.01530054584145546, 0.0297252107411623, 0.007520259357988834, -0.008478254079818726, -0.008731438778340816, -0.08364663273096085, 0.017996616661548615, -0.009011994116008282, 0.0020528461318463087, -0.016244854778051376, 0.014958404935896397, 0.011776492930948734, -0.006531471852213144, -0.00015941631863825023, -0.0024274904280900955, -0.01387723907828331, 0.02717968076467514, 0.004252812825143337, -0.00672307051718235, -0.0032075720373541117, -0.00503289420157671, 0.027289167046546936, 0.013418770395219326, 0.00061114935670048, 0.014369921758770943, -0.018201900646090508, -0.01201599184423685, 0.01501314714550972, 0.017161792144179344, -0.008142955601215363, 0.003412856487557292, -0.026837540790438652, 0.005313450004905462, 0.00991524662822485, -0.010832183994352818, 0.0024668367113918066, -0.004581267945468426, 0.00293728057295084, -0.008970936760306358, -0.00573086179792881, -0.01980312168598175, 0.010510571300983429, 0.021855967119336128, 0.019447294995188713, 0.023334017023444176, -0.02492155134677887, -0.0046017966233193874, 0.024127783253788948, 0.019898921251296997, 0.0012548021040856838, 0.013213485479354858, -0.0025284220464527607, 0.0006611875141970813, 0.01872195489704609, -0.0013300731079652905, 0.0339951291680336, -0.001905725453980267, 0.02098008617758751, -0.005104743875563145, -0.010291601531207561, -0.05071898177266121, 0.0027610778342932463, -0.005854032468050718, -0.005576898343861103, -0.019187267869710922, 0.03766288235783577, 0.007547630462795496, 0.024155154824256897, -0.0023539301473647356, 0.0027696313336491585, -0.01102378312498331, -0.009942617267370224, -0.007075475994497538, 0.01018211618065834, -0.04160434752702713, -0.019652578979730606, 0.009573105722665787, 0.007876086048781872, 0.016929136589169502, -0.0022666840814054012, 4.028175681014545e-05, -0.0069933622144162655, -0.027357595041394234, -0.010565314441919327, 0.03290027752518654, 0.020254747942090034, 0.005279235541820526, -0.0339677594602108, 0.01872195489704609, 0.017887132242321968, 0.02091165818274021, -0.009675747714936733, 0.001998103456571698, -0.011646479368209839, -0.004013313911855221, -0.03254445269703865, 0.0015370685141533613, 0.011865450069308281, 0.01951572299003601, 0.020501088351011276, 0.01928306743502617, -0.004129642155021429, 0.0015045651234686375, 0.019105153158307076, -0.011256438679993153, 0.01302872970700264, -0.0027473922818899155, -0.0005555514362640679, -0.015902714803814888, -0.01328875683248043, 0.008738281205296516, -0.03831979259848595, -0.02607114426791668, 0.01006578840315342, -0.030108409002423286, -0.015355288051068783, 0.010667956434190273, 0.00045547520858235657, 0.02746707946062088, -0.004239127039909363, -0.011379609815776348, -0.0028825378976762295, -0.03541843593120575, -0.03821030631661415, -0.00962100550532341, 0.027836592867970467, 0.029506240040063858, 0.00409884937107563, 0.0020665316842496395, 0.016559625044465065, -0.024688895791769028, 0.012501832097768784, -0.03191491216421127, 0.03801870718598366, -0.01471206359565258, 0.008690381422638893, 0.015341602265834808, -0.005645326804369688, -0.027384966611862183, -0.005402406677603722, 0.014547835104167461, 0.004564160946756601, 0.003814872121438384, -0.046065863221883774, 0.07017996162176132, 0.03519946709275246, 0.0026430392172187567, -0.007003626320511103, 0.0056350622326135635, 0.008238755166530609, 0.016285911202430725, -0.0022427341900765896, -0.0029235947877168655, -0.02210230939090252, 0.02035054750740528, -0.009675747714936733, -0.009532048366963863, -0.02043266035616398, -0.015341602265834808, 0.006623849738389254, -0.01955677941441536, 0.007862400263547897, -0.02574268914759159, 0.007369717117398977, 0.038401905447244644, 0.007807657588273287, 0.04144011810421944, -0.004653117619454861, -0.01018211618065834, -0.01076375599950552, 0.019721006974577904, -0.017462877556681633, 0.015040518715977669, -0.01318611390888691, 0.027590250596404076, -0.006230387836694717, -0.0395788699388504, -0.03090217523276806, -0.0042493911460042, 0.028137676417827606, -0.002164041856303811, -0.012727645225822926, 0.029314640909433365, 0.009169379249215126, -0.00820454116910696, -0.013350342400372028, -0.006853084545582533, -0.01669648103415966, -0.003681437112390995, -0.017052307724952698, -0.011126425117254257, 0.011153796687722206, 0.004410197492688894], "7c86d2b4-553e-494a-9634-90ac4128bbb3": [-0.010301257483661175, -0.012937888503074646, 0.014443561434745789, -0.013537432067096233, -0.021910609677433968, 0.01648746244609356, -0.021597212180495262, -0.026843221858143806, 0.029186895117163658, -0.005327766761183739, 0.023177828639745712, 0.015083983540534973, -0.005733140278607607, -0.026379939168691635, -0.011595726944506168, -0.01725051738321781, 0.0023334526922553778, -0.0221558790653944, 0.03357446566224098, -0.03583638370037079, -0.0032157362438738346, 0.015465511940419674, 0.008645697496831417, -0.02422703057527542, -0.02346397377550602, 0.022074121981859207, 7.96269450802356e-05, -0.007623747922480106, 0.003207219997420907, 0.015029479749500751, 0.014239171519875526, 0.011234638281166553, 0.00294151296839118, -0.022033244371414185, -0.004326255526393652, 0.011241450905799866, 0.002042196923866868, -0.009946981444954872, -0.02451317571103573, -0.017754679545760155, 0.022932561114430428, -0.005906871519982815, 0.003549573477357626, 0.018245216459035873, -0.004043515771627426, 0.011275515891611576, -0.014239171519875526, -0.0017305022338405252, -0.00020055771165061742, 0.0189946461468935, 0.0016921790083870292, 0.004816791508346796, -0.05180605873465538, 0.005763798486441374, -0.007153650745749474, 0.004435263574123383, -0.021242937073111534, -0.00297898449935019, 0.0020387903787195683, -0.03406500443816185, 0.0047214096412062645, 0.01997571811079979, -0.023900005966424942, -0.0013608968583866954, -0.009238429367542267, 0.011445840820670128, -0.0026877287309616804, -0.003220846178010106, -0.026121044531464577, -0.0013276835670694709, 0.012713058851659298, 0.04117777571082115, 0.01725051738321781, -0.002381143858656287, 0.045538097620010376, 0.006346310023218393, -0.03436477482318878, -0.0045783366076648235, -0.0007724239258095622, 0.008087031543254852, 0.002515700412914157, -0.027769790962338448, -0.01671910285949707, -0.005613912362605333, 0.021406447514891624, 0.006594984792172909, -0.002984094200655818, 0.0032668337225914, -0.02165171690285206, -0.0029278870206326246, 0.0241861529648304, 0.009333810769021511, 0.009122608229517937, 0.02125656232237816, -0.01293107494711876, 0.012413287535309792, 0.02113392762839794, 0.028805367648601532, 0.0049087670631706715, -0.0356728732585907, -0.00469756405800581, 0.021379197016358376, -0.008890965953469276, -0.008822835981845856, -0.04401198402047157, -0.0075283655896782875, 0.009211177006363869, -0.012358782812952995, 0.005992033984512091, -0.027129368856549263, -0.034174010157585144, 0.01892651617527008, -0.007691877894103527, -0.02702036127448082, -0.01839510165154934, -0.020398123189806938, 0.030031707137823105, -0.01472970750182867, -0.010539712384343147, -0.003488256363198161, -0.005855774041265249, 0.011289142072200775, -0.0002652812108863145, 0.006959480233490467, 0.008523063734173775, 0.005634351633489132, -0.010205875150859356, -0.001408587908372283, 0.010055989027023315, -0.03242988511919975, 0.05913684517145157, 0.020711522549390793, -0.006312245037406683, -0.01299920491874218, -0.01974407583475113, -0.004891734570264816, 0.000835870043374598, 0.0038493454921990633, 0.012174832634627819, -0.01725051738321781, 0.019839458167552948, 0.004084393847733736, -0.003411610145121813, -0.018885638564825058, 0.014021155424416065, 0.027429141104221344, 0.0016853660345077515, -0.0019297824474051595, -0.013217221014201641, 0.0046498728916049, 0.002534436294808984, -0.01158210076391697, -0.0009521168540231884, -0.04401198402047157, 0.006233895663172007, 0.018340598791837692, -0.007078707683831453, 0.019049150869250298, 5.409150162449805e-06, -0.008877339772880077, -0.011943190358579159, 0.022319389507174492, 0.01839510165154934, -0.023940883576869965, 0.013258099555969238, 0.0356183685362339, 0.0031373868696391582, 0.00228746491484344, -0.007507926784455776, 0.0008580122957937419, 0.0013711163774132729, 0.018272466957569122, -0.03755325824022293, 0.031912095844745636, -0.01359193678945303, 0.0035972644109278917, -0.012174832634627819, -0.009538200683891773, -0.005140408873558044, 0.006097635719925165, -0.027865173295140266, -0.016841737553477287, -0.0040878006257116795, 0.02264641411602497, -0.02053438499569893, -0.018967393785715103, 0.0014230655506253242, -0.004506799858063459, 0.011595726944506168, -0.0017798964399844408, 0.02234664186835289, 0.024663062766194344, -0.002267025876790285, 0.0009257164783775806, -0.6052124500274658, -0.02181522734463215, -0.01590154320001602, -0.008816023357212543, 0.014797837473452091, 0.022373894229531288, -0.0009035742259584367, 0.019130906090140343, -0.006629049777984619, 0.017781931906938553, -0.010205875150859356, 0.015915170311927795, 0.0023641111329197884, -0.014211919158697128, -0.011534410528838634, -0.03662669286131859, -0.012202084064483643, 0.009258868172764778, -0.007024203892797232, 0.010798606090247631, -0.023668363690376282, 0.030195219442248344, -0.025085467845201492, 0.022428398951888084, 0.00584896095097065, -0.010941678658127785, 0.01192956417798996, -0.011990881524980068, -0.009837972931563854, 0.02399538829922676, -0.024267908185720444, 0.015520015731453896, 0.016514712944626808, -0.014320927672088146, 0.05278712883591652, 0.006468944251537323, -0.046055883169174194, 0.004591962322592735, -0.010444330051541328, 0.06916557997465134, -0.015969673171639442, -0.016174063086509705, 0.023327713832259178, 0.003047114470973611, -0.030195219442248344, -0.0026076759677380323, -0.003794841468334198, -0.02244202420115471, 0.005007555708289146, -0.01569715328514576, 0.008577567525207996, -0.004694157280027866, 0.011806930415332317, -0.01191593799740076, 0.01701887510716915, 0.01161616574972868, 0.030549494549632072, -0.020411750301718712, -0.013210408389568329, 0.0130809610709548, -0.007405731827020645, 0.03439202904701233, -0.007065081503242254, -0.006765309721231461, -0.0059307171031832695, 0.02020736038684845, -0.02481294795870781, -0.02741551399230957, 0.020820530131459236, -0.013407985679805279, 0.004591962322592735, 0.0013557871570810676, 0.0076850648038089275, -0.005545782390981913, 0.008652511052787304, 0.03943364694714546, 3.7591264572256478e-06, -0.02567138709127903, 0.0019962091464549303, 0.010028736665844917, 0.003123760921880603, -0.020711522549390793, -0.015411007218062878, -0.013619188219308853, 0.018844759091734886, -0.01646021008491516, -0.035591114312410355, -0.024404168128967285, -9.335939830634743e-05, -0.011180134490132332, -0.0036858334206044674, 0.01058058999478817, 0.004823604598641396, -0.043521448969841, -0.007330788765102625, 0.06289762258529663, -0.013946212828159332, -0.00795077160000801, 0.009967420250177383, -0.0023215299006551504, -0.015969673171639442, 0.0020728553645312786, -0.009633583016693592, 0.00031723035499453545, 0.03422851487994194, -0.015942420810461044, -0.03788028284907341, 0.022591909393668175, 0.033710725605487823, -0.04131403565406799, 0.006830033380538225, -0.011309580877423286, -0.016174063086509705, -0.0027899236883968115, 0.015288373455405235, -0.03311118483543396, 0.024376915767788887, 0.0022533999290317297, 0.008359551429748535, -0.009388314560055733, 0.0027933302335441113, -0.012133954092860222, 0.009599518030881882, -0.014443561434745789, 0.009245241992175579, -0.0004858520987909287, 0.025235354900360107, -0.01038301270455122, 0.0005220461753197014, -0.018013574182987213, -0.027824295684695244, 0.010246752761304379, 0.015356503427028656, -0.011064313352108002, 0.0011548036709427834, 0.008482186123728752, 0.018572239205241203, 0.001243372680619359, 0.005624132230877876, -0.0016393782570958138, -0.022755421698093414, 0.003811873961240053, 0.004990523215383291, 0.0009325294522568583, 0.014334553852677345, -0.012386035174131393, -0.015220243483781815, -0.0047656940296292305, -0.014593447558581829, 0.017468534409999847, 0.0003412887454032898, -0.02116117998957634, 0.013319415971636772, 0.02623005211353302, -0.00026208761846646667, -0.007024203892797232, -0.003903849283233285, -0.02148820459842682, 0.007589682936668396, -0.011473093181848526, -0.0034013905096799135, -0.0052971080876886845, -0.01836784929037094, 0.0011198869906365871, -0.0017219858709722757, -0.005038213916122913, 0.0023760339245200157, 0.012379222549498081, -0.028560098260641098, -0.03264790028333664, -0.0057433596812188625, -0.010791793465614319, -0.007650999817997217, 0.005695668514817953, -0.015547267161309719, 0.01324447337538004, -0.012460978701710701, 0.006342903710901737, 0.015847040340304375, -0.008720641024410725, 0.00542996171861887, -0.007657812908291817, 0.0206297654658556, -0.0012416694080457091, 0.025616882368922234, 0.008223291486501694, 0.025221727788448334, 0.001100299647077918, -0.018681248649954796, -0.01646021008491516, -0.006346310023218393, 0.006349716801196337, -0.0025753143709152937, 0.018408728763461113, 0.035427603870630264, 0.013026457279920578, 0.028941627591848373, 0.030658503994345665, 0.011098378337919712, 0.0005331173306331038, 0.029432162642478943, 0.014838715083897114, 0.016610095277428627, -0.013333042152225971, 0.023218706250190735, -0.046192143112421036, 0.0011658747680485249, -0.008931843563914299, 0.0018684654496610165, 0.008931843563914299, -0.015288373455405235, -0.030494991689920425, 0.009483696892857552, -0.03133980184793472, 0.030494991689920425, 0.014470813795924187, 0.0023760339245200157, -0.005372051149606705, -0.01780918426811695, 0.005007555708289146, -0.02227851189672947, -0.011200573295354843, 0.04185907542705536, -0.01750941202044487, 0.016269445419311523, 0.015356503427028656, -0.011146069504320621, -0.003880003932863474, 0.0023794404696673155, -0.02688410133123398, -0.025030964985489845, -0.011691109277307987, -0.00819604005664587, -0.006468944251537323, 0.023286836221814156, -0.03221186622977257, 0.0261346697807312, -0.007446609903126955, 0.005171067547053099, 0.0004145285056438297, 0.019267166033387184, -0.0016078681219369173, 0.011820556595921516, -0.009981046430766582, 0.008686576038599014, 0.028451090678572655, 0.04387572407722473, 0.02027549035847187, -0.0217607244849205, 0.015533641912043095, -0.01764567196369171, 0.008672949858009815, 0.005896652117371559, 0.02057526260614395, 0.020943164825439453, 0.00026847480330616236, 0.015956047922372818, 0.003992418292909861, 0.03659943863749504, 0.02659795433282852, 0.023818250745534897, 0.029077887535095215, 0.0024015826638787985, 0.004469328559935093, -0.012440538965165615, -0.0075828698463737965, -0.015002227388322353, -0.0017986322054639459, -0.007058268878608942, -0.03959716111421585, -0.01331260334700346, 0.006860691588371992, 0.02076602540910244, -0.009374689310789108, -0.003435455495491624, -0.0069969515316188335, -0.00780769856646657, 0.011473093181848526, 0.034146759659051895, 0.009865225292742252, -0.013762261718511581, -0.026148296892642975, 0.027892425656318665, -0.025480622425675392, 0.013837204314768314, 0.008141536265611649, -0.009810720570385456, 0.006601797882467508, 0.025398867204785347, 0.011636605486273766, 0.0010883768554776907, -0.01177967805415392, 0.008816023357212543, -0.007828137837350368, -0.009286119602620602, -0.00834592618048191, 0.04164106026291847, -0.021937862038612366, -0.009442819282412529, 0.004445482976734638, 0.0009078323491849005, -0.007255845703184605, -0.00954501423984766, -0.02290530875325203, 0.047581996768713, -0.013237660750746727, -0.02764715626835823, -0.031149039044976234, 0.021202057600021362, -0.01472970750182867, -0.013653253205120564, -0.027797043323516846, -0.011350459419190884, -0.029813691973686218, -0.028314830735325813, 0.0007025906816124916, -0.019117280840873718, -0.00780769856646657, 0.0325116403400898, 0.016937119886279106, -0.019144531339406967, -0.02501733787357807, -0.016283072531223297, -0.0020285709761083126, -0.0060874163173139095, 0.003614296903833747, 0.0033639189787209034, 0.015015853568911552, -0.01951243355870247, -0.01176605187356472, -0.020588887855410576, -0.027142994105815887, 0.0027303099632263184, -0.00788264162838459, 0.006281586829572916, -0.006673334166407585, 0.017618419602513313, -0.017727427184581757, 0.023709243163466454, 0.00914985965937376, -0.0014349882258102298, -0.014702455140650272, 0.022987063974142075, -0.043984733521938324, -0.01718238741159439, -0.004949645139276981, 0.031094534322619438, -0.003822093363851309, 0.0036279228515923023, -0.007787259761244059, 0.02804231084883213, 0.021406447514891624, 0.026379939168691635, -0.04164106026291847, 0.016446582973003387, 0.0072830975987017155, -0.010873548686504364, 0.018653996288776398, 0.01043070387095213, 0.009831160306930542, -0.01797269657254219, 0.07047367841005325, -0.008250543847680092, 0.025916654616594315, -0.0011471390025690198, 0.018245216459035873, -0.0017185794422402978, 0.00029955912032164633, 0.007221780717372894, -0.02146095223724842, 0.001122441841289401, -0.0034030938986688852, 0.00029082997934892774, -0.028778115287423134, 0.014716081321239471, 0.009940167888998985, -0.033710725605487823, 0.00047478097258135676, -0.024158900603652, 0.026979483664035797, -0.032702405005693436, -0.005927310790866613, -0.0040196701884269714, 0.0010049175471067429, -0.015206617303192616, 0.005426554940640926, -0.01774105429649353, 0.002781407441943884, -0.018872011452913284, -0.03163957595825195, -0.018054451793432236, -0.016569217666983604, -0.01451169140636921, -0.0021546115167438984, 0.003120354376733303, -0.03346545994281769, -0.021569959819316864, -0.0003943024203181267, 0.019199036061763763, 0.03202110156416893, 0.01434817910194397, -0.005433368030935526, -0.02583489939570427, 0.03545485436916351, -0.0233958438038826, -0.0019536279141902924, -0.02636631205677986, -0.03150331601500511, 0.00801208894699812, 0.00799846276640892, 0.006468944251537323, 0.0028716798406094313, -0.007903080433607101, 0.009940167888998985, -0.007746381685137749, 0.004098020028322935, 0.019117280840873718, -0.03548210859298706, 0.015724405646324158, -0.0015755064086988568, 0.008822835981845856, 0.0023845501709729433, 0.010403452441096306, -0.02034362033009529, 0.004162743221968412, -0.03458278998732567, 0.00484745018184185, -0.004394385498017073, -0.0054435874335467815, 0.0012885087635368109, 0.0028665701393038034, -0.003164638765156269, 0.01799994707107544, -0.008236917667090893, 0.008400429971516132, -0.009960606694221497, -0.00045221293112263083, -0.016364827752113342, 0.02806956321001053, 0.025003712624311447, 0.008305047638714314, 0.020084725692868233, 0.010260378941893578, 0.027374636381864548, 0.028260326012969017, -0.015520015731453896, 0.020261863246560097, -0.007828137837350368, 0.0003811022324953228, 0.027197498828172684, 0.010103680193424225, -0.03308393061161041, 0.0029534357599914074, 0.010791793465614319, 0.003455894533544779, 0.019771328195929527, -0.013135465793311596, -0.0030079397838562727, -0.030385982245206833, -0.0004040960920974612, 0.015738030895590782, 0.025480622425675392, -0.002779704285785556, -0.03899761661887169, -0.025167224928736687, 0.012215710245072842, 0.005406116135418415, 0.005263043101876974, 0.012072637677192688, -0.028015058487653732, -0.007153650745749474, -0.0002897654485423118, 0.0261619221419096, -0.005440181121230125, 0.01757754199206829, -0.006543887313455343, -0.028451090678572655, -0.0013838907470926642, -0.005651384126394987, -0.04970765486359596, -0.013871269300580025, -0.006264554336667061, 0.021678967401385307, 0.0005348205449990928, -0.002466306323185563, 0.015124861150979996, -0.0037028659135103226, -0.019335296005010605, 0.011071125976741314, -0.00045263872016221285, -0.030467739328742027, -0.009926541708409786, -0.024799322709441185, 0.02092953771352768, 0.010410265065729618, 0.030985526740550995, 0.019171783700585365, -0.011384524405002594, 0.02402264066040516, 0.016678225249052048, -0.025875777006149292, -0.002984094200655818, -0.0036381424870342016, -0.06589534133672714, 0.023150576278567314, -0.003556386334821582, 0.003413313301280141, -0.009831160306930542, -0.015315625816583633, -0.01566990092396736, -0.0010764540638774633, -0.004104833118617535, 0.02853284776210785, 0.014361805282533169, 0.025357987731695175, -0.004571523517370224, 0.016828112304210663, -0.008039340376853943, -0.004159336909651756, 0.006213456857949495, 0.010948492214083672, -0.014756959863007069, 0.03357446566224098, 0.0217607244849205, 0.020030222833156586, 0.02474481798708439, 0.027265628799796104, 0.006635862868279219, -0.0005403560935519636, 0.017100632190704346, 0.009749404154717922, -0.03643592819571495, -0.012379222549498081, -0.010042362846434116, -0.02820582315325737, -0.02422703057527542, -0.0006025247275829315, -0.008652511052787304, 0.0018003354780375957, -0.006485976744443178, -0.01632395014166832, 0.010124118998646736, -0.013619188219308853, -0.006758496630936861, 0.016610095277428627, -0.029404910281300545, 0.020084725692868233, -0.005876213312149048, 0.024295160546898842, 0.02902338281273842, 0.01658284291625023, -0.00511656329035759, -0.0491081103682518, -0.009674460627138615, 0.015588145703077316, 0.022319389507174492, 0.059354860335588455, 0.024281535297632217, -0.005910278297960758, 0.00034661139943636954, 0.0031816712580621243, -0.02192423678934574, -0.033192940056324005, 0.0061623589135706425, 0.015738030895590782, -0.018054451793432236, -0.022237634286284447, 0.0012995798606425524, -0.007078707683831453, 0.03158507123589516, -0.005913684610277414, -0.02122930996119976, 0.006721025332808495, 0.00923161581158638, 0.011936376802623272, 0.0001947027922142297, -0.011950002983212471, 0.02116117998957634, 0.003716491861268878, 0.016841737553477287, -0.021583586931228638, -0.012535921297967434, -0.019062776118516922, 0.016896242275834084, -0.01472970750182867, 0.03670844808220863, 0.021379197016358376, 0.005041620694100857, -0.005695668514817953, 0.010199061594903469, -0.009919729083776474, -0.034010499715805054, -0.00323276873677969, 0.04512931779026985, 0.00954501423984766, -0.008400429971516132, -0.00926568079739809, 0.0036483618896454573, 0.021597212180495262, -0.0012816957896575332, 0.003992418292909861, -0.00298239104449749, -0.02162446454167366, -0.011227824725210667, 0.01658284291625023, -0.009844785556197166, 0.006332684308290482, -0.013612375594675541, 0.010471582412719727, -0.003593857865780592, -0.028451090678572655, -0.0037846218328922987, 0.012535921297967434, -0.04030571132898331, -0.005692262202501297, -0.032402630895376205, -0.014702455140650272, 0.003324744291603565, -0.009252054616808891, 0.01242691371589899, 0.01632395014166832, 0.04147754982113838, -0.029895447194576263, 0.015942420810461044, 0.018749378621578217, 0.01964869350194931, -0.017059754580259323, 0.013707756996154785, 0.0075828698463737965, -0.016337575390934944, 0.03485530987381935, 0.004060548264533281, -0.026679711416363716, -0.07101871818304062, 0.018803881481289864, 0.01323084719479084, 0.002408395754173398, 0.021270187571644783, 0.028778115287423134, -0.00016659915854688734, 0.011350459419190884, -0.007432983722537756, -0.010750914923846722, -0.012072637677192688, -0.009524575434625149, -0.012856132350862026, 0.0005403560935519636, -0.024731192737817764, 0.0042785643599927425, -0.012801628559827805, -0.001651301048696041, 7.174941129051149e-05, -0.03659943863749504, -0.019989343360066414, 0.0033979841973632574, -0.005515124183148146, -0.016078680753707886, -0.012597238644957542, -0.04068724066019058, -0.011377710849046707, -0.030985526740550995, 0.005235791206359863, 0.0057433596812188625, -0.004639653488993645, 0.0185994915664196, 0.019457930698990822, -0.019117280840873718, 0.01988033577799797, -0.019430678337812424, -0.012740311212837696, -0.01085992343723774, -0.03659943863749504, 0.002638334408402443, -0.022169504314661026, -0.022237634286284447, 0.02018010802567005, 0.005658197216689587, -0.018476858735084534, -0.02902338281273842, -0.022333016619086266, -0.030713006854057312, 0.015601771883666515, 0.021392822265625, 0.023450348526239395, 0.03428301960229874, 3.1031089747557417e-05, 0.0079167066141963, 0.008645697496831417, -0.011268703266978264, 0.01741402968764305, -0.018081704154610634, 0.006056757643818855, -0.014062033034861088, 0.013905334286391735, 0.007828137837350368, 0.010042362846434116, -0.030931023880839348, -0.0045647104270756245, 0.003699459368363023, 0.0024407575838267803, 0.008502624928951263, 0.017468534409999847, 0.00939512811601162, -0.004489767365157604, 0.005130189470946789, -0.0237909983843565, -0.0005186396883800626, -0.0031748584005981684, -0.01077816728502512, -0.048590321093797684, -0.013319415971636772, 0.02639356441795826, -0.00938150193542242, -0.02543974481523037, 0.0030300819780677557, -0.007698690984398127, -0.008959095925092697, 0.012290652841329575, 0.008843274787068367, -0.002381143858656287, 0.017305022105574608, 0.013251286000013351, 0.024731192737817764, 0.0009103871998377144, 0.011827369220554829, 0.02069789543747902, 0.002568501280620694, 0.012018132954835892, 0.00669036665931344, 0.02330046147108078, -0.026802344247698784, 0.013087774626910686, 0.012788002379238605, -0.019199036061763763, -0.0037880283780395985, 0.009585891850292683, 0.004568116739392281, -0.01466157753020525, 0.016841737553477287, 0.003408203599974513, 0.011132443323731422, -0.030167967081069946, 0.012774376198649406, 0.031421560794115067, 0.00780769856646657, -0.013782700523734093, 0.008216478861868382, -0.027865173295140266, -0.008168787695467472, -0.02204686962068081, 0.010117306374013424, -0.022060496732592583, 0.022387519478797913, -0.009878851473331451, 0.001366858254186809, -0.03267515078186989, 0.0034269392490386963, 0.0026195987593382597, 0.014184667728841305, 0.0036483618896454573, 0.23371317982673645, 0.008618446066975594, -0.0063054319471120834, 0.027824295684695244, -4.1144136048387736e-05, 0.0009427489712834358, 0.03989693149924278, -0.0059170909225940704, 0.024131648242473602, 0.03027697466313839, -0.005607099737972021, -0.019308043643832207, 0.008829648606479168, -0.005062059499323368, 0.004125271923840046, -0.025875777006149292, -0.030385982245206833, -0.0356183685362339, -0.007712316699326038, -0.01222933642566204, 0.04226785525679588, -0.006210050079971552, 0.018054451793432236, -0.017945444211363792, 0.004861075896769762, 0.010008297860622406, -0.014075659215450287, 0.035073328763246536, 0.05041620507836342, 0.020098352804780006, -0.022005992010235786, 0.014320927672088146, -0.004837230313569307, 0.01978495344519615, -0.01334666833281517, -0.0015278153587132692, 0.03379248455166817, 0.018272466957569122, 0.00908172968775034, 0.016855362802743912, -0.011452654376626015, -0.004404604900628328, -0.019171783700585365, 0.003699459368363023, -0.029595674946904182, 0.008052966557443142, 0.00788264162838459, -0.026202799752354622, 0.02067064493894577, -0.003450784832239151, -0.01790456660091877, 0.012488230131566525, 0.041423045098781586, 0.03679020330309868, -0.00823010504245758, -0.004973490722477436, 0.018735751509666443, -0.01211351528763771, 0.012351970188319683, 0.03024972230195999, 0.0003857861738651991, 0.053304918110370636, -0.02188335731625557, 0.022469276562333107, 0.004568116739392281, 0.006227082572877407, 0.016514712944626808, 0.008052966557443142, 0.01922628842294216, -0.01566990092396736, -0.01846323162317276, 0.019757702946662903, 0.0057433596812188625, 0.0028938220348209143, -0.025126347318291664, -0.019921213388442993, 0.029677430167794228, 0.020561635494232178, 0.020234612748026848, 0.026175549253821373, -0.004108239430934191, 0.01816345937550068, -0.008100657723844051, -0.0029636553954333067, 0.005995440762490034, -0.026843221858143806, 0.010355761274695396, -0.011772865429520607, -0.020398123189806938, -0.019239913672208786, 0.01737315207719803, -0.018027199432253838, -0.011595726944506168, -0.02997720241546631, -0.0028478342574089766, 0.015247495844960213, 0.0059307171031832695, 0.02283717878162861, 0.012099889107048512, 0.007862202823162079, -0.027619903907179832, 0.03580913320183754, 0.014457187615334988, 0.001858245930634439, 0.007174089550971985, 0.010171810165047646, -0.008536689914762974, 0.020820530131459236, 0.0021307659335434437, -0.007569243665784597, -0.0029653585515916348, -0.03708997741341591, 0.0033962808083742857, -0.012542733922600746, -0.01783643662929535, 0.010001485235989094, -0.018708499148488045, -0.03613615408539772, -0.0008695092401467264, 0.023545730859041214, 0.01472970750182867, -0.02432241290807724, -0.003469520714133978, 0.01191593799740076, 0.004939425736665726, -0.027701660990715027, -0.020725147798657417, -0.0008486444130539894, -0.011255077086389065, -0.03943364694714546, 0.04488404840230942, -0.013755448162555695, 0.01351018063724041, 0.004493174143135548, -0.004462515469640493, 0.01451169140636921, 0.014716081321239471, -0.002183566801249981, 0.008536689914762974, 0.0005667564691975713, 0.002164830919355154, -0.0051574413664639, 0.020643392577767372, 0.020016595721244812, -0.014988601207733154, -0.012358782812952995, 0.005951155908405781, 0.004884921479970217, -0.007446609903126955, -0.007160463836044073, -0.028914375230669975, -0.010457956232130527, 0.015710780397057533, -0.0016470429254695773, 0.004888327792286873, 0.009892476722598076, -0.005872806534171104, -0.049544140696525574, 0.010253566317260265, 0.02820582315325737, -0.020711522549390793, -0.02820582315325737, 0.02948666736483574, -0.010635093785822392, -0.019962092861533165, -0.031612321734428406, -0.17354075610637665, -0.004166149999946356, -0.012331531383097172, -0.023096071556210518, 0.007535178679972887, 0.005481059197336435, 0.02869635820388794, -0.004925799556076527, -0.04196808487176895, 0.021106675267219543, 0.010832671076059341, 0.025984784588217735, -0.026979483664035797, -0.01481146365404129, -0.007405731827020645, 0.01104387454688549, -0.020943164825439453, 0.0043228487484157085, 0.054449502378702164, -0.001122441841289401, 0.04281289502978325, -0.02090228535234928, -0.006492789834737778, -0.003668800927698612, -0.008257356472313404, 0.006053351331502199, -0.012072637677192688, 0.0059307171031832695, -0.018844759091734886, -0.026352686807513237, -0.0030079397838562727, 0.012454165145754814, 0.026352686807513237, -0.0106964111328125, 0.026870474219322205, -0.03428301960229874, -0.01053289882838726, 0.014116537757217884, 0.006513228639960289, 0.00942919310182333, -0.006973106414079666, 0.03981517627835274, 0.004898547660559416, 0.017332274466753006, -0.005658197216689587, -0.0019178596558049321, -0.012174832634627819, -0.00781451165676117, 0.011139255948364735, 0.015179365873336792, 0.013823578134179115, -0.04085075110197067, -0.02132469229400158, -0.0010483504738658667, 0.02853284776210785, 0.000158508715685457, -0.001102002919651568, 0.03074025921523571, -0.01665097288787365, 0.016841737553477287, 0.00449998676776886, -0.03501882404088974, 0.007984836585819721, 0.008870527148246765, -0.017005249857902527, -0.01331260334700346, -0.0018105548806488514, 0.010055989027023315, -0.014988601207733154, 0.014470813795924187, 0.019444303587079048, -0.0018088517244905233, -0.001754347700625658, -0.026584329083561897, -0.007719129789620638, 0.004728222265839577, -0.005031400825828314, 0.010573777370154858, 0.004425044171512127, -0.009878851473331451, 0.00962677039206028, 0.029677430167794228, 0.012283840216696262, -0.010682784952223301, 0.0053993030451238155, -0.00523238442838192, 0.007249032612890005, -0.010260378941893578, -0.007323975674808025, -0.01054652500897646, 0.011568475514650345, -0.04104151576757431, -0.018149834126234055, -0.00946325808763504, -0.0006012473022565246, -0.008366364985704422, -0.005269856192171574, 0.012079450301826, -0.014320927672088146, 0.00032383043435402215, 0.0011513971257954836, -0.018681248649954796, -0.025194477289915085, 0.01311502605676651, 0.024267908185720444, 0.026243679225444794, 0.004367133602499962, 0.04300365969538689, 0.012576798908412457, -0.005041620694100857, -0.018217964097857475, 0.017713801935315132, 0.028423838317394257, 0.035127829760313034, 0.016909867525100708, -0.010955304838716984, -0.012692620046436787, 0.004258125554770231, -0.005671822931617498, 0.009654021821916103, -0.020193733274936676, -0.008972722105681896, -0.004264938645064831, -0.00012274047185201198, 0.00938150193542242, -0.029595674946904182, -0.06273411214351654, 0.0010934865567833185, 0.013673692010343075, 0.015342877246439457, 0.001916156499646604, 0.04480229318141937, 0.014034781605005264, 0.025780394673347473, -0.008979534730315208, 0.022237634286284447, -0.020125603303313255, -0.02241477183997631, 0.02129743993282318, -0.0034593010786920786, 0.0035427603870630264, 0.0010168403387069702, 0.023722868412733078, -0.0005343947559595108, 0.014525317586958408, 0.040796246379613876, 0.005259636323899031, -0.009292933158576488, -0.026216426864266396, -0.016078680753707886, -0.04709146171808243, 0.004874702077358961, 0.003675613785162568, 0.015301999635994434, 0.027401888743042946, 0.005627538543194532, 0.025426117703318596, 0.002922777319326997, -0.006084009539335966, -0.009238429367542267, -0.006101042032241821, 0.0071945288218557835, -0.011418589390814304, -0.03041323460638523, 0.005900058429688215, -0.02504459023475647, 0.0003044559562113136, -0.02771528623998165, 0.004067361354827881, -0.01855861395597458, -0.020943164825439453, 0.010274005122482777, -0.004023076966404915, 0.012944701127707958, -0.02688410133123398, -0.009442819282412529, -0.028096815571188927, 0.011418589390814304, -0.008904592134058475, -0.01869487389922142, 0.01895376853644848, 0.02257828414440155, -0.004016263876110315, -0.004629434086382389, -0.04632840305566788, 0.016283072531223297, 0.007003764621913433, -0.015029479749500751, -0.013864456675946712, 0.03379248455166817, 0.0005160847795195878, -0.014334553852677345, 0.000611892610322684, -0.0030862893909215927, 0.012753937393426895, 0.006836846005171537, -0.020561635494232178, 0.0030147528741508722, -0.03580913320183754, 0.0395699068903923, -0.012706246227025986, -0.0074534229934215546, -0.005481059197336435, -0.0029108545277267694, 0.013551058247685432, 0.021515456959605217, -0.01441630907356739, -0.011282329447567463, 0.0002686877269297838, 0.0006242411909624934, -0.008270982652902603, 0.008788770996034145, 0.002147798426449299, 0.016473835334181786, 0.0019263759022578597, -0.040033191442489624, 0.02353210374712944, -0.0012416694080457091, 0.007078707683831453, -0.00207796529866755, -0.02471756562590599, -0.024199778214097023, 0.028723610565066338, 0.01299920491874218, 0.008373177610337734, 0.010457956232130527, -0.020384497940540314, -0.017959069460630417, -0.0808294415473938, -0.00404692254960537, 0.007446609903126955, -0.01718238741159439, -0.018286094069480896, 0.00936106313019991, 0.014375431463122368, -0.03643592819571495, -0.03657218813896179, -0.00812791008502245, -0.03174858167767525, 0.022387519478797913, -0.00904766470193863, 0.02280992642045021, -0.014797837473452091, 0.004922392778098583, 0.043357934802770615, -0.012065824121236801, 0.006601797882467508, 0.017454907298088074, 0.003077773144468665, -0.015424633398652077, 0.010192248970270157, 0.006547293625771999, -0.017386777326464653, 0.028914375230669975, -0.013469302095472813, 0.023409470915794373, 0.0037675893399864435, -0.017468534409999847, 0.0033792483154684305, -0.022932561114430428, -0.006298619322478771, 0.014075659215450287, -0.027987806126475334, 0.00034192745806649327, -0.001839510165154934, 0.02267366647720337, 0.007664625998586416, 0.05831928551197052, -0.03886135667562485, -0.01655559241771698, 0.014211919158697128, 0.016909867525100708, -0.008829648606479168, 0.004626027308404446, -0.019498808309435844, 0.021678967401385307, 0.009940167888998985, 0.00784857664257288, 0.011507158167660236, -0.0036177034489810467, 0.0028154724277555943, -0.005797863472253084, -0.006206643767654896, -0.06295212358236313, 0.00118290726095438, -0.0018854979425668716, -0.006741464138031006, -0.027224751189351082, 0.027892425656318665, 0.010274005122482777, 0.015492763370275497, 0.004367133602499962, -0.009340624324977398, -0.02037087269127369, -0.007078707683831453, -0.015083983540534973, 0.012835693545639515, -0.030304227024316788, -0.02445867285132408, 0.013735009357333183, 0.015029479749500751, 0.014620699919760227, -0.004067361354827881, 0.006298619322478771, -0.008523063734173775, -0.02043900266289711, -0.02306882105767727, 0.01451169140636921, -0.0009665944962762296, -0.011888686567544937, -0.02046625316143036, 0.023423096165060997, 0.029731934890151024, 0.015683528035879135, -0.021079424768686295, -0.002330046147108078, -0.013980277813971043, -0.0016853660345077515, -0.017168762162327766, -0.008931843563914299, 0.02260553650557995, 0.00954501423984766, 0.027565401047468185, 0.018817508593201637, -0.004677124787122011, -0.006278180051594973, 0.010948492214083672, 0.011772865429520607, 0.009313371963799, 0.002265322720631957, 0.011486719362437725, -0.03869784250855446, -0.00954501423984766, 0.001736463513225317, -0.00783495046198368, -0.027292881160974503, -0.01793181709945202, 0.008407242596149445, -0.010492021217942238, 0.014620699919760227, 0.018108956515789032, 0.027728913351893425, -0.015588145703077316, -0.006179391406476498, -0.012897009961307049, -0.032102860510349274, -0.03373797982931137, 0.0066086105071008205, 0.028233075514435768, 0.03292042016983032, 0.006489383056759834, -0.020384497940540314, 0.017536664381623268, -0.01602417789399624, 0.024172525852918625, -0.053114153444767, 0.01941705122590065, -0.007501113694161177, 0.0003717343497555703, 0.013087774626910686, 0.006325871217995882, -0.01922628842294216, -0.014334553852677345, 0.002534436294808984, -0.005501498002558947, 0.0036858334206044674, -0.009824346750974655, 0.05973638966679573, 0.03229362145066261, -0.002614489058032632, -0.009756216779351234, 0.01212714146822691, 0.009728965349495411, 0.02360023371875286, 0.011071125976741314, -0.007214967627078295, -0.019635068252682686, 0.03632691875100136, 0.018735751509666443, 0.00029700424056500196, -0.01793181709945202, -0.01579253561794758, -0.0032412849832326174, -0.014334553852677345, 0.018490483984351158, -0.0096949003636837, -0.0015252605080604553, 0.04711871221661568, -0.01359193678945303, 0.03422851487994194, -0.005477652419358492, -0.021569959819316864, -0.00908172968775034, 0.015451885759830475, -0.006315651815384626, -0.013966651633381844, -0.009585891850292683, 0.02362748607993126, -0.009810720570385456, -0.02129743993282318, -0.02155633457005024, -0.0015635836170986295, 0.0004969232250005007, -0.005627538543194532, 0.00662223668769002, 0.03624516353011131, -0.002609379356727004, 0.005102937575429678, 0.004445482976734638, -0.02152908220887184, -0.019921213388442993, -0.003975385800004005, -0.024772070348262787, -0.009906102903187275, -0.002103514038026333, 0.0265298243612051], "e4f631ce-d334-40a6-a3ca-be65bf27de24": [-0.012525871396064758, -0.021357160061597824, -0.016069374978542328, -0.03510540351271629, -0.01488820742815733, 0.022744346410036087, -0.02709818445146084, -0.026493865996599197, 0.009730898775160313, -0.0027829548344016075, 0.010472562164068222, 0.014146543107926846, 0.0009348049643449485, -0.0037701225373893976, -0.022346045821905136, -0.011193624697625637, 0.0023382999934256077, -0.007602050434798002, 0.03766002133488655, -0.01730548031628132, 0.0030593618284910917, -0.012017695233225822, 0.011633128859102726, -0.026342786848545074, -0.010129200294613838, 0.004044812638312578, 0.007739395368844271, -0.016563817858695984, 0.0023606186732649803, -0.01259454432874918, 0.024612238630652428, 0.0039658392779529095, -0.005394228268414736, -0.00474527245387435, -0.016508879140019417, 0.005569342989474535, 0.002281645080074668, 0.006194263231009245, 0.011372173205018044, -0.0020103887654840946, 0.012079499661922455, 0.0007493891171179712, 0.002017255872488022, 0.012306119315326214, -0.03771495819091797, 0.008391784504055977, -0.02104126662015915, 0.01918710768222809, -0.010060527361929417, -0.0004837122105527669, -0.013988596387207508, -0.0015957781579345465, -0.040901366621255875, 0.0031606536358594894, 0.0027640697080641985, -0.009208987466990948, -0.02689216658473015, 0.0022198399528861046, -0.006956528406590223, -0.0027280168142169714, 0.007162546273320913, -0.009119713678956032, -0.028375493362545967, 0.0026541936676949263, 0.01705825887620449, 0.0019176807254552841, -0.015671074390411377, -0.0035229013301432133, -0.021892806515097618, 0.0084261205047369, 0.024722114205360413, 0.026287848129868507, -0.0034319101832807064, 0.00474527245387435, 0.02751022018492222, -0.0012532739201560616, -0.022620735689997673, -0.007698191795498133, 0.012951641343533993, 0.003344352822750807, 0.004659431986510754, -0.003818193217739463, -0.017346683889627457, -0.002079061232507229, 0.027565158903598785, 0.004498051479458809, -0.01447617169469595, 0.011282898485660553, 0.03285294398665428, -0.019036028534173965, 0.01622045412659645, 0.015657339245080948, 0.000681145756971091, 0.020464416593313217, -0.00032469237339682877, 0.010781588964164257, 0.0019503001822158694, -0.013439216651022434, -0.018445445224642754, -0.03906094282865524, -0.0025597689673304558, 0.008570333011448383, -0.010987606830894947, -0.0014163712039589882, -0.03658872842788696, 0.0006759953103028238, 0.03972019627690315, -0.017772452905774117, 0.01188034936785698, -0.013377411291003227, -0.02249712496995926, 0.0009193536243401468, -0.01870639994740486, -0.024282610043883324, -0.011997093446552753, 0.00614619255065918, 0.039885010570287704, 0.003591574029996991, -0.017951002344489098, -0.02224990352988243, 0.026548804715275764, 0.024859460070729256, 0.028265617787837982, 0.014016065746545792, 0.01751149818301201, 0.0008910262258723378, 0.0005399378715083003, 0.003718618070706725, 0.0025958220940083265, -0.014297623187303543, 0.027139388024806976, -0.012882968410849571, -0.0006240617367438972, -0.007416634354740381, -0.027839848771691322, 0.00020558842516038567, -0.004075715318322182, -0.010163536295294762, -0.026919636875391006, -0.031122395768761635, 0.01830809935927391, -0.0004712653171736747, -0.0035950075834989548, -0.025546185672283173, 0.016811037436127663, 0.0010309464996680617, 0.012354190461337566, 0.007540245074778795, -0.013274402357637882, -0.008542864583432674, 0.006815749686211348, -0.01955793984234333, -0.004940989427268505, -0.018198223784565926, -0.025532450526952744, -0.0012249464634805918, -0.013610897585749626, 0.021508239209651947, 0.009552350267767906, -0.03147949278354645, 0.007450970821082592, 0.01852785237133503, 0.02349974401295185, -0.032193686813116074, 0.023898044601082802, 0.03128720819950104, 0.012237447313964367, 0.013088986277580261, -0.003299715695902705, -0.012244313955307007, 0.00030623661587014794, 0.013507888652384281, -0.02829308621585369, 0.02480452135205269, -0.0130134467035532, 0.01354909222573042, 0.005504104308784008, 0.012965375557541847, -0.0033357685897499323, -0.008192634209990501, -0.029611600562930107, -0.019310718402266502, 0.013054650276899338, 0.012532738968729973, -0.005795962642878294, -0.007993483915925026, 0.02185160294175148, 0.00883815623819828, 0.008989235386252403, -0.01050689909607172, 0.032166220247745514, 0.03268812969326973, 0.024474894627928734, 0.010019323788583279, -0.5981653332710266, -0.017003322020173073, -0.00823383778333664, -0.019654082134366035, 0.020313337445259094, 0.023444805294275284, 0.003969273064285517, 0.00853599701076746, -0.026480132713913918, -0.0008244997006841004, 0.0013786013005301356, -0.003107432508841157, 0.00307309627532959, 0.011406509205698967, -0.020340805873274803, -0.019654082134366035, -0.001424096873961389, -0.004072281531989574, -0.013906189240515232, 0.045735914260149, -0.013267534784972668, 0.01299284491688013, -0.00623890059068799, 0.009531748481094837, 0.011488916352391243, 0.004395042546093464, -0.0007442386704497039, -0.023362398147583008, -0.011756738647818565, 0.017003322020173073, -0.014792065136134624, 0.01709946244955063, -0.0158221535384655, -0.0019056630553677678, 0.04227481782436371, -0.0029134326614439487, -0.05315254628658295, 0.028567777946591377, -0.010273411870002747, 0.05098249390721321, -0.01310958806425333, -0.026699883863329887, 0.028375493362545967, -0.004456847906112671, 0.004707502666860819, 0.011564455926418304, 0.008398652076721191, -0.017648844048380852, 0.006180528551340103, 0.02352721244096756, 0.005421697162091732, -0.012450331822037697, 0.015465056523680687, 0.010671713389456272, 0.0055350069887936115, 0.02686469815671444, 0.01705825887620449, -0.030078573152422905, 0.010266545228660107, -0.011633128859102726, -0.025120414793491364, 0.0025202822871506214, -0.018266895785927773, -0.012196243740618229, -0.042110003530979156, 0.010465695522725582, -0.023046504706144333, -0.010795323178172112, 0.012882968410849571, -0.02727673389017582, 0.0014077870873734355, 0.0037289189640432596, 0.004680033773183823, 0.0056208474561572075, 0.020684169605374336, 0.02996869757771492, 0.0138443848118186, -0.01155072171241045, 0.024186469614505768, -0.0004811369872186333, 0.009840775281190872, -0.00280699017457664, -0.010355819016695023, -0.014297623187303543, 0.0010403889464214444, -0.022758079692721367, -0.057959623634815216, -0.004552989732474089, 0.010225341655313969, 0.03650632128119469, 0.029227033257484436, 0.0009948934894055128, 0.009133447892963886, -0.008989235386252403, -0.0071694133803248405, 0.024914398789405823, -0.022579532116651535, -0.0006798581453040242, 0.01477833092212677, -0.0012326721334829926, -0.023019036278128624, 0.0002723295474424958, -0.01247780118137598, -0.006111856084316969, 0.02433754876255989, -0.01602817140519619, -0.02687843330204487, -0.001411220757290721, 0.05595438554883003, -0.008398652076721191, 0.0030198749154806137, -0.009188385680317879, -0.024296345189213753, -0.027372874319553375, 0.01999744400382042, -0.030106041580438614, 0.028457900509238243, 0.003148636082187295, 0.008611536584794521, -0.011530119925737381, 0.013954260386526585, -0.014613516628742218, 0.013295004144310951, 0.004717803560197353, -0.011722402647137642, 0.03606681898236275, 0.01767631247639656, 0.0035400695633143187, -0.019722754135727882, -0.0018781940452754498, -0.00743723614141345, -0.0027640697080641985, 0.032578252255916595, 0.003914334811270237, 0.0050783343613147736, -0.011653730645775795, 0.0084261205047369, -0.011076880618929863, 0.021947743371129036, -0.0011631412198767066, -0.01812955178320408, -0.004916953854262829, 0.011173022910952568, -0.0013940526405349374, -0.0002341304498258978, -0.017525233328342438, -0.0005446590948849916, -0.01999744400382042, -0.016769833862781525, 0.01579468511044979, 0.022936629131436348, -0.010891465470194817, 0.0018850612686946988, 0.012402260676026344, 0.0011991942301392555, 0.0030404767021536827, -0.0035366357769817114, -0.011694934219121933, -0.007574581541121006, 0.002994122914969921, 0.0037735560908913612, -0.016083110123872757, -0.015300242230296135, 0.005833732429891825, -0.03625910356640816, -0.03461096063256264, -0.0015236720209941268, -0.019667815417051315, -0.010657978244125843, -0.034034110605716705, -0.0028876804281026125, -0.002786388387903571, -0.00979270413517952, 0.012869234196841717, -0.022730611264705658, 0.005456033628433943, 0.0036362111568450928, -0.0007747121271677315, 0.016344064846634865, -0.0026576274540275335, -0.002661061007529497, -0.01895362138748169, -0.004106617998331785, 0.002037857659161091, 0.021137408912181854, 0.0017202472081407905, 0.03147949278354645, 0.007141944486647844, -0.02564232610166073, 0.0072518205270171165, -0.007876740768551826, 0.03367701545357704, 0.024598503485322, -0.006551360245794058, 0.031314678490161896, -0.0030833971686661243, 0.0324409082531929, 0.006970263086259365, -0.003993308171629906, 0.012752491049468517, 0.029199564829468727, 0.010115465149283409, 0.017209338024258614, -0.02661747671663761, 0.031973935663700104, -0.012855499982833862, -0.0037563880905508995, -0.012512137182056904, -0.0026747954543679953, 0.034034110605716705, 0.0028207246214151382, -0.006736776325851679, -0.03326497972011566, 0.009119713678956032, 0.03142455592751503, 0.022126292809844017, -0.007684457581490278, -0.0038902994710952044, -0.01773124933242798, -0.0053461575880646706, -0.0032825474627316, -0.019654082134366035, 0.010520633310079575, -0.014283888973295689, -0.010170402936637402, 0.008721413090825081, 0.023609619587659836, 0.008391784504055977, 0.01424268539994955, -0.03639644756913185, -0.022634468972682953, -0.006328174844384193, -0.010863996110856533, 0.016165515407919884, 0.022758079692721367, -0.04180784150958061, 0.021576913073658943, -0.005799395963549614, 0.008611536584794521, 0.019818894565105438, 0.028622714802622795, 0.02082151547074318, 0.002918583108112216, -0.014338826760649681, -0.0014730260008946061, 0.015492524951696396, 0.05741024389863014, 0.029831351712346077, -0.020354541018605232, 0.021068735048174858, -0.028430432081222534, -0.008584068156778812, -0.0168522410094738, 0.008584068156778812, 0.014352560974657536, -0.010383288376033306, 0.019063496962189674, 0.008323111571371555, -0.0006051767850294709, 0.03139708563685417, 0.019722754135727882, 0.04145074635744095, -0.005510971415787935, 0.012333588674664497, -0.016316596418619156, -0.019832629710435867, 0.00999872200191021, 0.0026215743273496628, -0.009339465759694576, -0.026535069569945335, -0.018060877919197083, -0.0009116280125454068, 0.011406509205698967, -0.017593905329704285, -0.003419892629608512, -0.01405726931989193, 0.00519507797434926, 0.00886562466621399, 0.0020601763390004635, -0.021549442782998085, -0.001862742705270648, -0.02751022018492222, 0.01642647199332714, 0.014860738068819046, 0.007739395368844271, -0.004264564719051123, -0.0011906102299690247, 0.006802015006542206, -0.012113836593925953, -0.003241343889385462, -0.014146543107926846, -0.006407148204743862, 0.0019279816187918186, 0.008062155917286873, -0.004140954464673996, -0.017332948744297028, 0.017552701756358147, -0.022579532116651535, -0.0189810898154974, -0.022167496383190155, 0.002752052154392004, 0.018253160640597343, -0.025875814259052277, -0.038621436804533005, 0.04927941411733627, 0.005589944776147604, -0.010726651176810265, 0.0030061404686421156, 0.0055968123488128185, -0.03837421536445618, -0.01600070297718048, 0.0015425569145008922, 0.002480795606970787, -0.014558578841388226, -0.016701161861419678, -0.0038078923244029284, 0.005819997750222683, -0.019901301711797714, 0.041917718946933746, 0.009133447892963886, -0.006736776325851679, -0.010788456536829472, -0.0012215127935633063, -0.000910769565962255, -0.022208699956536293, -0.00027683618827722967, 0.021109938621520996, 0.01705825887620449, -0.024461159482598305, 0.024392487481236458, -0.011056278832256794, -0.027935989201068878, 0.0010223624994978309, 0.0028756626415997744, 0.012038296088576317, 0.00436413986608386, 0.03535262495279312, -0.018994824960827827, 0.012333588674664497, 0.008899961598217487, 0.0018747603753581643, -0.00259925564751029, 0.026590008288621902, -0.019667815417051315, 0.016399003565311432, 0.011811677366495132, -0.01977769285440445, 0.013123322278261185, 0.0031606536358594894, -0.006177095230668783, 0.004710936453193426, 0.024694645777344704, 0.01911843568086624, -0.008893094025552273, -0.009126580320298672, 0.007856138981878757, -0.012882968410849571, 0.016797304153442383, 0.018459178507328033, 0.00935319997370243, -0.007979749701917171, 0.03719304874539375, 0.0011562738800421357, 0.03348473086953163, 0.00624233391135931, 0.011427110992372036, 0.0059127057902514935, -0.009593553841114044, 0.018445445224642754, -0.007883607409894466, -0.0025426007341593504, -0.003629343817010522, -0.007602050434798002, -0.01686597615480423, 0.024268876761198044, -0.0033563703764230013, -0.0495266355574131, -0.01113181933760643, -0.02641145884990692, 0.023073973134160042, -0.040049824863672256, 0.0052259801886975765, 0.020340805873274803, -0.017538966611027718, 0.016289126127958298, -0.00552127230912447, -0.012436597608029842, -0.03224862366914749, -0.010197872295975685, -0.007238085847347975, -0.013974862173199654, -0.038209401071071625, -0.020038647577166557, -0.015932029113173485, 0.0006313581834547222, -0.04724670946598053, -0.03535262495279312, 0.004697201773524284, 0.013054650276899338, 0.022964097559452057, 0.01850038208067417, -0.0028138572815805674, 0.00247564516030252, 0.022524593397974968, -0.008357448503375053, -0.009208987466990948, -0.00019925767264794558, -0.019654082134366035, 0.01216190680861473, -0.007073271553963423, 0.004611361306160688, -0.0009081943426281214, 0.008549731224775314, 0.01872013509273529, 0.02808707021176815, 0.010568704456090927, 0.012422862462699413, 0.005298086442053318, 0.002051592105999589, 0.011221093125641346, 0.0005193360848352313, 0.010596172884106636, -0.009923182427883148, 0.006132457870990038, 0.013322473503649235, -0.04557109996676445, -0.005229413975030184, 0.005356458015739918, -0.02498307079076767, -0.009415005333721638, 0.018665196374058723, 0.012622012756764889, 0.00346281286329031, 0.015272772870957851, 0.030353263020515442, 0.0034319101832807064, -0.00728615652769804, 0.008556598797440529, 0.0008987518958747387, 0.025532450526952744, -0.007993483915925026, -0.0020739107858389616, -0.007890474982559681, -0.00844672229140997, 0.009936916641891003, -0.0284853707998991, 0.03139708563685417, 0.015465056523680687, 0.002801839727908373, 0.008460457436740398, -0.00677111279219389, -0.04219241067767143, -0.038621436804533005, 0.024296345189213753, -0.006726475432515144, 0.02746901661157608, 0.012670083902776241, -0.030737830325961113, -0.026576273143291473, 0.022593265399336815, -0.005699820816516876, 0.00844672229140997, -0.008384916931390762, -0.015149163082242012, -0.027935989201068878, 0.0058921040035784245, 0.01217564195394516, -0.0031675209756940603, -0.01269068568944931, -0.01893988624215126, -0.03930816426873207, 0.01382378302514553, -0.015327711589634418, -0.0010403889464214444, -0.011365305632352829, -0.004202759359031916, -0.0474664606153965, -0.005665484815835953, 0.018884949386119843, -0.03062795288860798, -0.013652101159095764, -0.022826753556728363, 0.02517535351216793, 0.014833268709480762, 0.020505620166659355, 0.030023634433746338, -0.008556598797440529, -0.020505620166659355, 0.005720422603189945, 0.0070870062336325645, -0.015094224363565445, 0.01319886278361082, -0.033841829746961594, 0.028869936242699623, 0.014819534495472908, -0.0014172295341268182, 0.003509166883304715, 0.008474191650748253, -0.011612527072429657, 0.03397917374968529, -0.015066755935549736, -0.003698016284033656, 0.01508049014955759, -0.05850900709629059, 0.009263926185667515, -0.001411220757290721, -0.003392423503100872, -0.010726651176810265, 0.006585696712136269, -0.0004888626281172037, 0.0034988659899681807, -0.0034027243964374065, 0.01319886278361082, 0.014517375268042088, 0.023197583854198456, -0.030765298753976822, 0.0054732016287744045, -0.00812396127730608, 0.010980739258229733, -0.008432988077402115, -0.0006386546301655471, -0.0032276094425469637, 0.004192458465695381, 0.018898682668805122, 0.00874201487749815, 0.010534367524087429, 0.0009837341494858265, 0.01291730534285307, 0.0015820437110960484, -0.008577200584113598, -0.015355180017650127, -0.033594608306884766, -0.012189376167953014, -0.006266369484364986, -0.02642519399523735, -0.009250191040337086, -0.00420962693169713, -0.009195253252983093, -0.008055289275944233, -0.006939360406249762, -0.015053020790219307, 0.013095853850245476, -0.005607113242149353, -0.004192458465695381, 0.021727992221713066, -0.02664494700729847, 0.03101252019405365, 0.009916314855217934, 0.02517535351216793, 0.008261307142674923, 0.026287848129868507, -0.0160556398332119, -0.05370192602276802, -0.009964386001229286, -0.007725661154836416, 0.034665897488594055, 0.056915801018476486, 0.0008236413123086095, -0.004982193000614643, -0.004144387785345316, 0.0042576976120471954, -0.01646767556667328, -0.015492524951696396, 0.03266065940260887, 0.02102753147482872, 0.005631148349493742, -0.006719608325511217, 0.016742365434765816, -0.01870639994740486, 0.022854221984744072, -0.0075883157551288605, -0.012415995821356773, -0.028650185093283653, -0.0053495909087359905, -0.004817378707230091, 0.011536986567080021, -0.0063899802044034, 0.0071488115936517715, -0.008144563063979149, -0.009174651466310024, 0.003622476477175951, 0.0038765650242567062, -0.023279991000890732, 0.011708668433129787, -0.009250191040337086, 0.03845662251114845, -0.00220953905954957, -0.0026387423276901245, 0.023403601720929146, -0.0055590420961380005, 0.0052019450813531876, -0.005291219335049391, -0.0034593793097883463, 0.04142327606678009, -0.0008420970407314599, -0.010321483016014099, -0.004552989732474089, 0.030957581475377083, 0.028869936242699623, 0.009566085413098335, -0.005686086602509022, 0.01850038208067417, -0.01259454432874918, -0.02061549760401249, 0.002824158174917102, -0.03993995115160942, -0.006094688083976507, -0.013507888652384281, -0.0036533791571855545, -0.011585057713091373, -0.007595182862132788, 0.0006459510768763721, 0.004927254747599363, -0.04576338082551956, -0.008673341944813728, -0.03768749162554741, -0.004786476027220488, -0.018582789227366447, 0.00775999715551734, -0.0012670083669945598, 0.015423852950334549, 0.02454356662929058, -0.020958859473466873, 0.010863996110856533, 0.0021357161458581686, 0.01745655946433544, -0.003128034295514226, -0.012944773770868778, -0.009133447892963886, -0.01562987081706524, 0.03540756180882454, 0.0015829020412638783, 0.012567074969410896, -0.021096205338835716, 0.004604493733495474, 0.012855499982833862, -0.020890187472105026, 0.017140666022896767, 0.007656988222151995, 0.004353838972747326, -0.00019410722597967833, 0.012608278542757034, -0.0029254502151161432, 0.004511786159127951, 0.005816564429551363, 0.0075883157551288605, 0.010616774670779705, -0.0004498051421251148, 0.034446146339178085, -0.009524881839752197, -0.0030404767021536827, -0.009847642853856087, -0.047548867762088776, -0.04477449879050255, -0.002722866367548704, -0.011674332432448864, -0.04408777132630348, -0.0102047398686409, 0.0035847066901624203, -0.03941803798079491, -0.008783218450844288, -0.009607288986444473, 0.006802015006542206, -0.010692315176129341, -0.008913695812225342, 0.060926277190446854, 0.0052671837620437145, 0.01725054159760475, -0.01185974758118391, -0.026068096980452538, -0.005002794787287712, -0.0038250605575740337, -0.010369554162025452, -0.01932445354759693, -0.02726299874484539, 0.04916954040527344, 0.007306758314371109, -0.018211958929896355, -0.04285166412591934, 0.009531748481094837, -0.014187746681272984, -0.007327360101044178, 0.0005815706099383533, 0.008041555061936378, 0.018747603520751, -0.03200140595436096, -0.0019520169589668512, 0.03145202249288559, -0.007828669622540474, -0.007183148059993982, 0.003952104598283768, -0.008769483305513859, -0.017744984477758408, -0.02183786779642105, -0.013253800570964813, 0.01708572916686535, -0.01933818683028221, -0.013926791027188301, 0.01641273684799671, -0.014325092546641827, -0.0025134149473160505, 0.008295643143355846, 0.015945764258503914, 1.0448419743624981e-05, -0.011509518139064312, -0.02226363867521286, -0.011804809793829918, 0.024639707058668137, 0.004456847906112671, -0.029391847550868988, 0.013741375878453255, 0.017525233328342438, 0.0018764771521091461, -0.0083093773573637, 0.009868244640529156, -0.004343538079410791, -0.011921552941203117, 0.01814328506588936, -0.013494154438376427, 0.01361776515841484, -0.014352560974657536, -0.01999744400382042, 0.039253223687410355, -0.006990864872932434, -0.006386546418070793, 0.0032430607825517654, 0.011660597287118435, -0.002661061007529497, -0.00026953971246257424, 0.01626165769994259, -0.03227609395980835, -0.0032087245490401983, 0.0216730535030365, -0.007238085847347975, -0.006990864872932434, 0.008158298209309578, -0.01217564195394516, -0.024722114205360413, 0.0025958220940083265, 0.021302223205566406, -0.002352034440264106, -0.013878720812499523, 0.017538966611027718, 0.027578892186284065, -0.028787529096007347, -0.003279113909229636, -0.008295643143355846, -0.01620671898126602, 0.0036602464970201254, -0.018363038077950478, 0.028650185093283653, -0.03386929631233215, 0.00015408401668537408, -0.014283888973295689, 0.006060351617634296, 0.008590934798121452, 0.018569055944681168, 0.014077871106564999, 0.004597626626491547, 0.007093873340636492, 0.26721858978271484, -0.02955666184425354, -0.013933658599853516, 0.0272904671728611, -0.007966014556586742, 5.354982931748964e-06, 0.012100101448595524, -0.020848983898758888, 0.003198423655703664, 0.022552061825990677, -0.014091605320572853, -0.012415995821356773, -0.005129838827997446, 2.0588349798345007e-05, 0.014943145215511322, -0.005322122015058994, -0.033594608306884766, -0.0056208474561572075, -0.020656701177358627, -0.019942505285143852, 0.02789478562772274, -0.018211958929896355, -0.005438865162432194, -0.00382162700407207, 0.004247396718710661, 0.0074647050350904465, -0.010342084802687168, 0.011743004433810711, 0.026919636875391006, -0.013260668143630028, -0.028430432081222534, 0.013034048490226269, 0.019626611843705177, 0.005040564574301243, 0.012937907129526138, -0.009758368134498596, 0.016536347568035126, 0.030847705900669098, 0.026741087436676025, 0.0012352473568171263, -0.0053255558013916016, 0.029007282108068466, -0.0008309377590194345, -0.01937939040362835, -0.022112557664513588, 0.015465056523680687, -0.002252459293231368, -0.01124856248497963, 0.010067394934594631, -0.001619813614524901, -0.03691835701465607, -0.013906189240515232, 0.01602817140519619, 0.0424121618270874, -0.00990258064121008, 3.886972990585491e-05, 0.020052382722496986, 0.00034078749013133347, 0.012635747902095318, 0.016385268419981003, -0.00946994312107563, 0.03642391785979271, -0.013597163371741772, -0.00802095327526331, -0.033649545162916183, 0.011942154727876186, -0.021947743371129036, 0.02104126662015915, 0.015355180017650127, -0.007698191795498133, -0.009840775281190872, 0.0018284064717590809, -0.01869266666471958, -0.011076880618929863, -0.02977641485631466, -0.04156062379479408, 0.040928833186626434, 0.013899322599172592, 0.03793471306562424, 0.04101124033331871, -0.004333237186074257, 0.003570972243323922, 0.00895489938557148, -0.0049959272146224976, -0.0024498929269611835, -0.013837517239153385, 0.024186469614505768, -0.011049412190914154, -0.009607288986444473, 0.0268234945833683, 0.0074853068217635155, -0.020945124328136444, 0.014586048200726509, -0.021576913073658943, 0.012985977344214916, -0.00034186049015261233, -0.011193624697625637, 0.012491535395383835, 0.012079499661922455, -0.0008987518958747387, -0.030325794592499733, 0.024667177349328995, 0.029886290431022644, 0.002927167108282447, -0.02873259223997593, 0.002571786753833294, 0.002154601039364934, 0.009586687199771404, 0.014297623187303543, -0.012189376167953014, 0.0007901634089648724, -0.04686214402318001, 0.01062364224344492, 0.005775360856205225, 0.007979749701917171, 0.015726011246442795, -0.027166858315467834, 0.004721237346529961, 0.0018884949386119843, -0.009037306532263756, 0.017552701756358147, -0.025738468393683434, -0.004103184211999178, 0.0077119264751672745, -0.00659943139180541, -0.005342723801732063, -0.004271432291716337, -0.01790979877114296, 0.003370105056092143, -0.03807205706834793, 0.040461860597133636, 0.0014859021175652742, 0.013370543718338013, -0.002760636154562235, -0.0070458026602864265, 0.004985626321285963, 0.003328901482746005, 0.007073271553963423, 0.011907818727195263, 0.0026627779006958008, 0.015382649376988411, -0.00033048659679479897, 0.0023159815464168787, 0.013253800570964813, -0.021714257076382637, -0.025958221405744553, 0.002970087341964245, 0.0007450970588251948, -0.01143397856503725, -0.012642614543437958, -0.027565158903598785, 0.006541059352457523, -0.002576937200501561, 0.01092580147087574, 0.0006438050768338144, -0.022153761237859726, -0.009394403547048569, -0.042741790413856506, -0.012745623476803303, 0.03771495819091797, -0.029501723125576973, -0.017854860052466393, 0.01790979877114296, -0.035902004688978195, -0.006966829299926758, -0.00969656277447939, -0.17602145671844482, -0.0018095214618369937, 0.025683529675006866, -0.003315167035907507, 0.03513287380337715, -0.014860738068819046, 0.0015803268179297447, 0.005428564269095659, -0.006585696712136269, 0.007656988222151995, 0.02270314283668995, 0.000715911271981895, -0.04532387852668762, -0.010197872295975685, 0.002357184886932373, 0.009428739547729492, -0.015588667243719101, 0.005854334216564894, 0.04290660470724106, -0.0022782115265727043, 0.028265617787837982, -0.0262603797018528, -0.014517375268042088, 0.02996869757771492, -0.009648491628468037, 0.010582438670098782, -0.012608278542757034, -0.01583588868379593, 0.019228311255574226, -0.009250191040337086, 0.007945412769913673, -0.006314440164715052, 0.01707199402153492, 0.012470933608710766, 0.010960137471556664, -0.030325794592499733, -0.012869234196841717, 0.010280279442667961, -0.006359077524393797, 0.016165515407919884, -0.008062155917286873, 0.048620160669088364, 0.016357799991965294, 0.013906189240515232, 0.01999744400382042, 0.01767631247639656, -0.014998083002865314, 0.01260141097009182, -0.00346109620295465, -0.0026095565408468246, -0.005545307882130146, -0.03601188212633133, -0.024625973775982857, -0.0013047782704234123, 0.019036028534173965, -0.008481059223413467, -0.003241343889385462, 0.010967005044221878, 0.007917944341897964, 0.00011910394096048549, -0.0020464416593313217, -0.010967005044221878, 0.012038296088576317, -0.0025065478403121233, -0.02702951245009899, -0.0033735386095941067, 0.005449166055768728, 0.037495207041502, -0.02687843330204487, 0.00582343153655529, 0.00012715150660369545, -0.03771495819091797, 0.0160556398332119, -0.011564455926418304, -0.0035022995434701443, -0.008790085092186928, 0.0020258398726582527, 0.03483071178197861, 0.01687971130013466, -0.00037211933522485197, -0.015094224363565445, 0.05768493562936783, -0.010376420803368092, -0.02933690883219242, -0.007396032568067312, 0.0058715022169053555, -0.001967468298971653, 0.006595997605472803, -0.03310016542673111, -0.02060176245868206, 0.03724798560142517, -0.02312891185283661, -0.008570333011448383, -3.801132334046997e-05, 0.01917337439954281, 0.0007725660689175129, -0.0030833971686661243, -0.016536347568035126, -0.019049763679504395, 0.005019962787628174, -0.021480770781636238, -0.00035924321855418384, 0.00022576097398996353, 0.025340167805552483, 0.04015970230102539, 0.01227178331464529, -0.003219025442376733, 0.028059599921107292, 0.025697264820337296, 0.011282898485660553, -0.0016163799446076155, -0.005510971415787935, 0.02229110710322857, 0.005208812188357115, 0.023980451747775078, 0.005648316349834204, -0.02101379819214344, -0.000980300479568541, 0.014599782414734364, 0.030765298753976822, 0.009984987787902355, -0.027345405891537666, 0.006163360550999641, 0.029501723125576973, -0.004594192840158939, -0.023486008867621422, -0.05933307483792305, -0.01975022256374359, 0.010802190750837326, 0.038813721388578415, -0.010877730324864388, 0.04955410584807396, 0.007052670232951641, 0.018184488639235497, 0.0036156093701720238, 0.043813083320856094, -0.020848983898758888, -0.028155742213129997, 0.0027348839212208986, -0.003622476477175951, -0.0030696627218276262, 0.011145553551614285, 0.034665897488594055, -0.006826050579547882, -0.005967644043266773, 0.02624664455652237, -0.04243963211774826, 0.009078510105609894, 0.009909447282552719, -0.03060048446059227, -0.008790085092186928, -0.015932029113173485, -0.023994186893105507, 0.016948383301496506, 0.004017343744635582, -0.004487750586122274, 0.044032834470272064, 0.007038935553282499, -0.008515395224094391, -0.012985977344214916, -0.000562685658223927, 0.019612878561019897, -0.022771814838051796, -0.015149163082242012, 0.015259038656949997, -0.01668742671608925, -0.001967468298971653, -0.00519507797434926, -0.01979142613708973, -0.0189810898154974, -0.004226794932037592, -0.028430432081222534, -0.02185160294175148, 0.02514788508415222, -0.015272772870957851, -0.0249968059360981, -0.043428514152765274, -0.021796664223074913, -0.016756100580096245, -0.03439120948314667, 0.014943145215511322, -0.003979573957622051, 0.0038490958977490664, 0.014448702335357666, -0.03312763571739197, 0.02039574459195137, 0.019310718402266502, -0.017236808314919472, -0.010967005044221878, 0.03186405822634697, 0.003797591431066394, 0.009360067546367645, -0.019448064267635345, -0.015410118736326694, 0.027180591598153114, 0.013384277932345867, -0.0054113962687551975, 0.013864986598491669, -0.013233198784291744, 0.03310016542673111, -0.02683722972869873, -0.0004349976370576769, -0.0002341304498258978, -0.03038073144853115, 0.03845662251114845, 0.009820173494517803, -0.020230930298566818, -0.011935288086533546, 0.009126580320298672, -0.02730420231819153, 0.030215919017791748, 0.0010558402864262462, -0.011358438059687614, 0.005486935842782259, 0.00029293130501173437, -0.02312891185283661, 0.007457837928086519, 0.009030438959598541, 0.0016455657314509153, -0.03018844872713089, -0.02457103505730629, -0.007423501927405596, 0.0014095038641244173, 0.010534367524087429, 0.02808707021176815, 0.031918998807668686, -0.025697264820337296, -0.022373514249920845, -0.08894467353820801, 0.023444805294275284, -0.01730548031628132, 0.003483414649963379, -0.004346971865743399, 0.01060304045677185, 0.014407498762011528, 0.005528139416128397, -0.020107319578528404, -0.01975022256374359, -0.010451960377395153, 0.010039925575256348, 0.0008648448274470866, -0.006905023939907551, -0.016371533274650574, -0.012333588674664497, 0.03719304874539375, 0.02083524875342846, 0.005837166216224432, 0.007416634354740381, -0.007780598942190409, 0.005040564574301243, 0.0017116630915552378, 0.018033409491181374, -0.00046482725883834064, 0.00969656277447939, 0.011502650566399097, 0.016357799991965294, -0.00624233391135931, 0.005250015761703253, 0.009085377678275108, -0.00990258064121008, -0.004937555640935898, 0.005342723801732063, 0.0019983709789812565, 0.0022953797597438097, -0.0050783343613147736, 0.020862719044089317, 0.005147006828337908, 0.017319215461611748, -0.015176631510257721, -0.003962405491620302, 0.037138111889362335, -0.011914686299860477, 0.008302510716021061, 0.003093698062002659, -0.002968370681628585, -0.002753768814727664, 0.00015880525461398065, 0.02851283922791481, 0.02104126662015915, 0.002829308621585369, 0.0017957870149984956, -0.007519643288105726, -0.030435670167207718, -0.02745528146624565, 0.007409767247736454, -0.004463715013116598, -0.012519004754722118, -0.04710936173796654, 0.023898044601082802, 0.006400281097739935, 0.01385125145316124, 0.0035984411370009184, -0.011921552941203117, 0.0005159024731256068, -0.021769195795059204, -0.010905199684202671, 0.00904417410492897, -0.031754184514284134, -0.007382298354059458, 0.0033100165892392397, 0.007196882274001837, 0.014338826760649681, -0.017580170184373856, 0.009689695201814175, -0.023073973134160042, 0.0006691280868835747, -0.02270314283668995, 0.014929410070180893, 0.010802190750837326, 0.034665897488594055, -0.050048548728227615, -0.001724539208225906, 0.03864890709519386, 0.008481059223413467, -0.030710360035300255, 0.021370895206928253, -0.02289542555809021, -0.014833268709480762, -0.029062218964099884, -0.0006528183585032821, 0.010328350588679314, 0.03587453439831734, 0.015478790737688541, 0.04438992962241173, -0.0032859810162335634, -0.011420243419706821, 0.02933690883219242, -0.007581448648124933, -0.01385125145316124, -0.006747077219188213, -0.012491535395383835, -0.03266065940260887, -0.002899697981774807, 0.011928420513868332, -0.037165578454732895, -0.04010476544499397, -2.2211275791050866e-05, 0.0024910965003073215, -0.015739746391773224, 0.00969656277447939, -0.0038868659175932407, 0.03351220116019249, -0.002204388612881303, -0.0019365656189620495, -0.027812378481030464, -0.007347961887717247, -0.029886290431022644, 0.02227737195789814, 0.0071694133803248405, 0.01745655946433544, 0.03158937022089958, 0.005277484655380249, 0.00988197885453701, -0.011056278832256794, 0.022346045821905136, -0.029062218964099884, 0.022950364276766777, -0.019255781546235085, -0.007238085847347975, 0.0251616183668375, -0.008501661010086536, -0.017799923196434975, -0.008481059223413467, 0.006829484365880489, 0.001842140918597579, 0.01361776515841484, -0.022565796971321106, 0.09339465945959091, -0.001910813502036035, -0.0058302986435592175, 0.006592563819140196, 0.0014584331074729562, 0.009016704745590687, 0.004940989427268505, 0.007677590008825064, -0.010747252963483334, -0.004810511600226164, 0.021357160061597824, -0.0007133360486477613, 0.0026936803478747606, 0.014311357401311398, -0.018184488639235497, -0.011104349978268147, -0.020134789869189262, 0.018582789227366447, -0.023650823161005974, 0.01562987081706524, 0.054443590342998505, -0.006795147899538279, 0.008796952664852142, 0.010568704456090927, -0.005795962642878294, -0.009621023200452328, 0.04705442488193512, -0.0053701926954090595, 0.006273236591368914, -0.013281269930303097, 0.01188034936785698, -0.01424268539994955, -0.030023634433746338, -0.03579212725162506, 0.0023537513334304094, 0.0043813083320856094, -0.020340805873274803, 0.011997093446552753, 0.03573719039559364, 0.005425130948424339, -0.012450331822037697, -0.004398476332426071, -0.016289126127958298, -0.016289126127958298, -0.004882617853581905, 0.006523891352117062, 0.0195442046970129, -0.005926440469920635, -0.0034645297564566135], "81674c4f-60e0-4f23-86bb-333d830f42e3": [-0.016421694308519363, -0.014340449124574661, -0.009587153792381287, -0.03206459805369377, -0.004313548095524311, 0.020530473440885544, -0.019872531294822693, -0.02314881421625614, 0.002994307316839695, -0.01409875601530075, 0.023659056052565575, 0.008969494141638279, 0.003126902738586068, -0.016354557126760483, -0.02155095525085926, -0.024921229109168053, 0.0047163693234324455, -0.01438073068857193, 0.020033661276102066, -0.03689845651388168, 0.027767835184931755, -0.02249087207019329, 0.02026192657649517, -0.02701590210199356, -0.025270340964198112, -0.002489101840183139, 0.009775137528777122, -0.02911057323217392, -0.0044914609752595425, -0.004189344588667154, 0.03391757979989052, -0.006626415066421032, 0.0028986369725316763, -0.03617338091135025, -0.013977909460663795, 0.013225975446403027, 0.001559255295433104, -0.002766041550785303, -0.007156797219067812, -0.005720066837966442, 0.0166096780449152, 0.00442096684128046, 0.0005337386392056942, -2.4612503693788312e-05, -0.0251360684633255, 0.016596250236034393, -0.024988366290926933, 0.013138697482645512, 0.005743564572185278, 0.011930232867598534, -0.006817755755037069, 0.01042636577039957, -0.02708303928375244, -0.01936229132115841, -0.003914083354175091, 0.007237361278384924, -0.01904003508388996, 0.01001011673361063, -0.006854680832475424, -0.005229967180639505, 0.04063127189874649, -0.007935585454106331, -0.02649223431944847, -0.019348863512277603, -0.00039359027869068086, -0.0036723902449011803, -0.021456964313983917, 0.0014392479788511992, -0.032252583652734756, -0.000300227984553203, -0.0008870467427186668, 0.03488434851169586, 0.014958108775317669, -0.004380684811621904, 0.025646308436989784, 0.009513303637504578, -0.025606026872992516, -0.0015718434005975723, 0.013313253410160542, 0.004511601757258177, 0.01403161883354187, 0.005599220283329487, -0.018328383564949036, 0.000828301883302629, -0.003722742898389697, 0.012420332990586758, 0.006153099704533815, 0.022571437060832977, 0.004944635089486837, -0.017052780836820602, 0.013306540437042713, 0.012205494567751884, 0.018784914165735245, 0.01235990971326828, -0.00673719123005867, -0.002208805177360773, -0.024867519736289978, 0.013736216351389885, -0.008976208046078682, -0.05083608627319336, -0.01674395054578781, 0.025606026872992516, -0.02719045802950859, 0.0027240810450166464, -0.03383701294660568, -0.011138017289340496, 0.041302639991045, -0.007855021394789219, -0.005424664355814457, -0.008009436540305614, -0.015078955329954624, 0.02851976826786995, -0.015159519389271736, -0.03808007016777992, -0.006122888065874577, 0.014998391270637512, 0.038456033915281296, -0.0031420085579156876, -0.014998391270637512, 0.005307174753397703, 0.022625146433711052, 0.03109782747924328, 0.018261246383190155, 0.011023884639143944, 0.024316996335983276, 0.030131055042147636, -0.01932200975716114, 0.005720066837966442, -0.00461230706423521, -0.030856134369969368, 0.033407337963581085, -0.0013427386293187737, 0.012695593759417534, 0.018650639802217484, -0.018744630739092827, 0.0006218558410182595, -0.006441788747906685, 0.0011631473898887634, -0.0030295541509985924, -0.004840572830289602, 0.007720747496932745, 0.020517047494649887, 0.004313548095524311, -0.01949656568467617, 0.009023203514516354, 0.008083286695182323, -0.0029892718885093927, 0.009076912887394428, 0.01918773539364338, 0.003385379910469055, -0.009023203514516354, -0.02771412581205368, 0.0113662825897336, -0.00431019114330411, -0.012171925976872444, -0.010862755589187145, 0.003951008431613445, 0.02207462303340435, 0.0030094129033386707, 0.005216539837419987, -0.0008220078307203948, 0.006948672700673342, 0.01807326264679432, -0.010258523747324944, -0.0026636577676981688, 0.043746426701545715, -0.0017673798138275743, -0.021671801805496216, -0.0005039466195739806, 0.014327021315693855, -0.005837556440383196, 0.0029691308736801147, -0.02203434146940708, 0.011688539758324623, -0.011775817722082138, 0.042913928627967834, -0.012944000773131847, 0.02106756903231144, -0.02806323766708374, -0.002985915169119835, -0.029217993840575218, -0.0020812449511140585, 0.015938308089971542, 0.02705618366599083, -0.00966100487858057, -0.025189777836203575, 0.01521322876214981, 0.0012235705507919192, -0.005495158024132252, 0.00264183827675879, 0.02771412581205368, 0.019416000694036484, 0.018570074811577797, -0.003937581088393927, -0.5929533839225769, -0.0330045148730278, 0.01209807489067316, -0.01597858965396881, 0.03684474900364876, 0.01253446564078331, 0.005384381860494614, 0.02607598528265953, -0.03861716389656067, 0.023806756362318993, -0.013608655892312527, 0.014837262220680714, -0.016059154644608498, -0.0003058926376979798, 0.004686157684773207, -0.03993304818868637, 0.017643585801124573, -0.021926922723650932, 0.004481390118598938, 0.011117876507341862, -0.00889564398676157, 0.012829868122935295, -0.0050486973486840725, 0.006861394736915827, 0.024397561326622963, 0.010822474025189877, 0.018758058547973633, -0.024666110053658485, -0.009795278310775757, 0.04237683117389679, -0.022584864869713783, 0.004222913179546595, 0.002987593412399292, -0.0009046701597981155, 0.04533085599541664, -0.019281726330518723, -0.028627188876271248, 0.01796584390103817, -0.0010649595642462373, 0.05644873157143593, -0.016824515536427498, -0.018194109201431274, 0.033058226108551025, 0.0003254043112974614, -0.0011430062586441636, -0.0009961442556232214, 0.00692853145301342, -0.026935337111353874, -0.014931254088878632, 0.020463336259126663, 0.0025243486743420362, -0.00545823248103261, 0.019765112549066544, 0.005716709885746241, -0.005011772271245718, 0.000618918624240905, 0.031634923070669174, -0.022302888333797455, -0.010862755589187145, -0.015468349680304527, -0.02771412581205368, 0.007908730767667294, -0.02277284674346447, -0.011064166203141212, -0.0007322121527977288, -0.008526390418410301, -0.017254192382097244, -0.021389827132225037, -0.002401823876425624, -0.011111162602901459, 0.004434394650161266, 0.003893942106515169, 0.0019469710532575846, 0.010372656397521496, 0.0183552373200655, 0.05140003561973572, 0.01848951168358326, -0.022222325205802917, 0.017522739246487617, -0.01866406761109829, 0.0023481142707169056, 0.00507555203512311, -0.021215271204710007, -0.009882556274533272, 0.007364921737462282, -0.002304475288838148, -0.03536773473024368, 0.006522352807223797, 0.009526730515062809, -0.011675112880766392, 0.014810407534241676, 0.023027967661619186, 0.006777473259717226, -0.01619342900812626, 0.0059852576814591885, 0.029540250077843666, -0.005518655758351088, 0.007197079248726368, 0.025565743446350098, -0.014783552847802639, -0.032225728034973145, 0.01088289637118578, 0.005310531239956617, 0.0012118216836825013, 0.021054143086075783, -0.024451270699501038, -0.027177030220627785, 0.003635464934632182, 0.032682258635759354, 0.0022155188489705324, -0.018341809511184692, -0.016837943345308304, -0.012413619086146355, -0.004991631023585796, 0.014179320074617863, -0.031151536852121353, 0.0012218921910971403, 0.029969926923513412, 0.026035701856017113, 0.0025898071471601725, 0.009862415492534637, -0.005981900729238987, 0.002170201390981674, 0.02294740453362465, 0.015347503125667572, 0.023309942334890366, -0.0005106602911837399, 0.0001252523361472413, -0.0005572365480475128, -0.00163226667791605, -0.007512622978538275, 0.017764432355761528, 0.010614349506795406, -0.01848951168358326, 0.017925560474395752, -0.013689220882952213, 0.006569348741322756, -0.024115586653351784, 0.015508631244301796, -0.011601261794567108, 0.014729843474924564, 0.010144390165805817, 0.011077594012022018, 0.008888930082321167, 0.006028896663337946, -0.015132664702832699, -0.0011841276427730918, -0.020221645012497902, -0.001475334051065147, 0.014461295679211617, 0.023336797952651978, 0.016837943345308304, 0.0013930913992226124, 0.006623058579862118, -0.00012084648187737912, -0.0003629590501077473, -0.016663387417793274, -0.03499177098274231, -0.0034407677594572306, -0.023726191371679306, 0.004753294866532087, -0.007935585454106331, -0.024048449471592903, -0.004276622552424669, -0.025216631591320038, -0.025095785036683083, -0.017751004546880722, 0.006069178692996502, -0.008761369623243809, -0.014125610701739788, -0.009023203514516354, 0.013031278736889362, -0.000569824711419642, 0.013313253410160542, -0.008942639455199242, 0.0025478466413915157, -0.025337478145956993, 0.009345460683107376, 0.004293406847864389, -0.0048103611916303635, 0.011339427903294563, -0.005179614294320345, 0.002804645337164402, 0.003974506631493568, 0.026975620537996292, 0.014810407534241676, 0.035502009093761444, 0.02830493077635765, -0.007989294826984406, -0.01785842329263687, -0.011104448698461056, 0.018570074811577797, 0.018046407029032707, 0.012574747204780579, 0.013064847327768803, 0.006968813482671976, -0.0006625576061196625, 0.010835900902748108, -0.009285037405788898, 0.022813130170106888, 0.031420085579156876, 0.017213908955454826, -0.009150763973593712, -0.01685136929154396, 0.018046407029032707, -0.03944966197013855, 0.007767742965370417, -0.016945362091064453, 0.002727437997236848, 0.018825195729732513, 0.007814738899469376, -0.023269660770893097, -0.010204813443124294, -0.006569348741322756, 0.029513396322727203, 0.0017455602064728737, -0.005028556101024151, -0.0033367055002599955, -0.0032695685513317585, 0.023202523589134216, -0.0009827169124037027, 0.006072535645216703, 0.0003275023482274264, -0.03308508172631264, -0.018825195729732513, -0.006126245018094778, 0.001656603766605258, 0.00490099610760808, -0.007492481730878353, -0.027902109548449516, -0.02583429217338562, -0.012380050495266914, -0.01001011673361063, 0.00638807937502861, 0.021671801805496216, -0.020946722477674484, 0.004441108088940382, -0.029164284467697144, 0.004820431582629681, 0.006559278350323439, 0.019281726330518723, 0.008754655718803406, -0.022745992988348007, -0.0017589876661077142, 0.02106756903231144, 0.009499875828623772, 0.06300129741430283, 0.025256915017962456, -0.03381016105413437, 0.0142061747610569, -0.027445578947663307, -0.0021265624091029167, -0.00828469730913639, 0.015293793752789497, 0.005750278476625681, 0.001722062355838716, -0.0021181702613830566, 0.015790605917572975, 0.0157368965446949, 0.026451950892806053, 0.026827918365597725, 0.03303137049078941, -0.030695006251335144, 0.009372315369546413, -0.011547552421689034, -0.017522739246487617, -0.01538778468966484, -0.020382773131132126, 9.110691462410614e-05, -0.021698657423257828, -0.01750931143760681, 0.009969834238290787, -0.0025226701982319355, -0.006220236886292696, 0.016408266499638557, -0.010815760120749474, -0.012124930508434772, 0.018288100138306618, 0.006844610441476107, -0.011151444166898727, -0.019308581948280334, -0.02729787677526474, 0.032682258635759354, 0.009775137528777122, 0.008680805563926697, 0.0044444650411605835, 0.013427386991679668, 0.0003205788671039045, 0.0024907803162932396, 0.011614689603447914, 0.00041142350528389215, -0.004125564359128475, 0.017321329563856125, 0.007606614381074905, -0.014676133170723915, -0.018852051347494125, 0.001526526059024036, -0.012272631749510765, -0.02019478939473629, -0.0142061747610569, 0.034454673528671265, -0.010124249383807182, -0.03160806745290756, -0.010527071543037891, 0.07154111564159393, 0.02002023346722126, -0.003665676573291421, -0.00941931176930666, -0.0056831412948668, -0.033622175455093384, -0.008177278563380241, -0.015454921871423721, -0.0007343101897276938, -0.008257842622697353, 0.01211821660399437, -0.0130581334233284, 0.02604912966489792, -0.017281046137213707, 0.02012765221297741, 0.005730137228965759, -0.01730790175497532, -0.01537435781210661, -0.02531062439084053, 0.0022054482251405716, -0.012521037831902504, 0.015146092511713505, -0.0038335188291966915, -0.002145024947822094, -0.028251221403479576, -0.0117489630356431, -0.01636798493564129, -0.012433759868144989, -0.014944680966436863, -0.037032730877399445, 0.0036052532959729433, -0.0047230832278728485, 0.010527071543037891, -0.010305519215762615, 0.013387104496359825, -0.002995985560119152, 0.01844922825694084, -0.007499195635318756, 0.01250089704990387, -0.03990619257092476, 0.014407585375010967, 0.026478806510567665, 0.007002382073551416, -0.00889564398676157, 0.013460954651236534, -0.009083626791834831, 0.01980539597570896, 0.047264400869607925, 0.025861145928502083, 0.009144050069153309, -0.00123783724848181, -0.0157368965446949, -0.020315635949373245, 0.04084610939025879, 0.011567693203687668, 0.016770806163549423, 0.016247138381004333, 0.06026211008429527, -0.012433759868144989, 0.013400531373918056, 0.004890925716608763, 0.026451950892806053, 0.0034978343173861504, -0.016999071463942528, 0.012521037831902504, 0.0020225001499056816, -0.004222913179546595, 0.008942639455199242, 0.004706298932433128, -0.04342416673898697, 0.007915444672107697, 0.004639162216335535, -0.059832435101270676, 0.002468960592523217, -0.009298465214669704, 0.03029218502342701, -0.014112182892858982, 0.012279344722628593, 0.01291714608669281, -0.017119918018579483, 0.0049211373552680016, -0.018288100138306618, -0.006478713825345039, -0.003635464934632182, 0.00783487968146801, -0.014850689098238945, 0.009473021142184734, -0.011950373649597168, -0.027311304584145546, -0.006525709759443998, 0.03512604162096977, -0.04194715619087219, -0.02583429217338562, 0.005102406721562147, 0.007458913139998913, 0.014125610701739788, 0.02085273154079914, -0.005015128757804632, -0.005347456783056259, 0.024625826627016068, -0.024921229109168053, -0.022584864869713783, -0.0026468734722584486, -0.01291714608669281, 0.024491552263498306, -0.0033450976479798555, 0.022692283615469933, 0.009674431756138802, 0.01298428326845169, 0.02604912966489792, 0.03746240958571434, 0.008432398550212383, 0.013413959182798862, 0.002901993924751878, -0.012171925976872444, 0.025579171255230904, 0.015750324353575706, 0.024773528799414635, -0.016515685245394707, 0.001970469020307064, 0.011567693203687668, -0.03523346409201622, 0.013340109027922153, -0.009983262047171593, -0.015992017462849617, -0.008311551995575428, 0.021054143086075783, 0.025780582800507545, -0.003356846747919917, 0.03324620798230171, 0.03808007016777992, 0.00884193368256092, 0.006435074843466282, 0.003063122509047389, 0.02343078888952732, -0.00544144818559289, -0.004387398716062307, -0.011460274457931519, 0.0015189731493592262, -0.010399511083960533, 0.018261246383190155, -0.03936909884214401, 0.021121278405189514, 0.01918773539364338, 0.007452199701219797, 0.0035179753322154284, 0.0013502915389835835, -0.033890724182128906, -0.030856134369969368, 0.018852051347494125, 0.0074253445491194725, 0.028331786394119263, -0.013883917592465878, -0.0023179026320576668, -0.018126972019672394, 0.007707319688051939, 0.01597858965396881, 0.001903332071378827, -0.004249767865985632, -0.02760670706629753, -0.01039279717952013, -0.011460274457931519, 0.004843929782509804, -0.012265917845070362, -0.035877976566553116, -0.037381842732429504, 0.00731121189892292, -0.0033367055002599955, 6.123622370068915e-06, 0.01315883919596672, 0.025471752509474754, 0.007915444672107697, -0.02500179409980774, -0.0038301621098071337, 0.014998391270637512, -0.028922591358423233, -0.04071183502674103, -0.021752366796135902, 0.02635795995593071, 0.02576715499162674, 0.045250292867422104, 0.033165644854307175, -0.0014048402663320303, 0.006552564445883036, 0.004699585493654013, 0.018919188529253006, 0.01291714608669281, 0.020315635949373245, -0.008244415745139122, 0.02733815833926201, 0.011554266326129436, 0.020624466240406036, 0.02023507095873356, 0.004179274197667837, -0.007727460935711861, 0.03206459805369377, -0.015898026525974274, -0.014864116907119751, 0.022893693298101425, -0.059725016355514526, -0.01556234061717987, 0.0052400375716388226, 0.004615664016455412, 0.016314275562763214, -0.007056091446429491, -0.001742203370667994, 0.010641204193234444, -0.009922838769853115, 0.02659965306520462, 0.023699337616562843, 0.028922591358423233, -0.01133271399885416, -0.0018026266479864717, -0.011225295253098011, 0.023685909807682037, -0.01956370286643505, 0.021148134022951126, -0.01636798493564129, 0.00713665597140789, -0.002344757318496704, 0.016636531800031662, -0.0028197511564940214, 0.025095785036683083, -0.004400826059281826, 0.004890925716608763, 0.02441098913550377, -0.04790891706943512, -0.020355917513370514, -0.014165893197059631, -0.01063449028879404, -0.03018476441502571, -0.023457644507288933, -0.019791968166828156, 0.0012244097888469696, -0.007324639242142439, 0.01977854035794735, -0.00225076568312943, 0.008465967141091824, -0.001770736649632454, -0.025995420292019844, -0.015240083448588848, -0.01873120479285717, 0.027526142075657845, -0.0003384120936971158, 0.013071561232209206, 0.025955138728022575, 0.016824515536427498, -0.0058912658132612705, -0.020167933776974678, -0.017697295174002647, -0.0047230832278728485, 0.027324732393026352, 0.03853660076856613, -0.018502939492464066, -0.024679535999894142, 0.014702987857162952, 0.0052467514760792255, -0.03335362672805786, -0.010607635602355003, 0.03227943554520607, 0.0031034047715365887, -0.004387398716062307, -0.01685136929154396, 0.007331353146582842, -0.0245855450630188, -0.0074387723580002785, -0.022289462387561798, -0.0234979260712862, -0.0050017014145851135, -0.008888930082321167, -0.007230647839605808, 0.025753727182745934, -0.008036291226744652, 0.017173627391457558, 0.01521322876214981, 0.01595173589885235, 0.007646896876394749, -0.016072582453489304, -0.023685909807682037, 0.008036291226744652, 0.008909070864319801, 0.03662991151213646, -0.019684549421072006, -0.02294740453362465, 0.0378115214407444, 0.001780807157047093, 0.015683187171816826, -0.01691850647330284, -0.018919188529253006, 0.04167860746383667, 0.00034197873901575804, -0.01622028276324272, -0.010446506552398205, 0.008956067264080048, 0.02646537870168686, 0.03254798427224159, 0.0008362744119949639, 0.005146045703440905, -0.005129261873662472, -0.01133271399885416, 0.01938914693892002, -0.014689560979604721, 0.025928283110260963, -0.010177958756685257, 0.00016406587383244187, -0.014179320074617863, -0.033541612327098846, -0.024974938482046127, 0.018100116401910782, -0.039154257625341415, -0.005723423324525356, -0.013595229014754295, -0.020705029368400574, 0.01443444099277258, 0.013521377928555012, 0.009681145660579205, 0.0006516478606499732, 0.040926672518253326, -0.041275788098573685, 0.021322689950466156, -0.0005954206571914256, 0.008311551995575428, -0.007680465001612902, 0.014165893197059631, -0.0004154097696300596, -0.01566975936293602, 0.023806756362318993, -0.009862415492534637, 0.0014434440527111292, -0.01695878989994526, 0.01176910474896431, 0.005934904795140028, -0.0016599607188254595, 0.006190025247633457, 0.0421888493001461, -0.004608950577676296, 0.014394158497452736, -0.0050554112531244755, -0.01358180120587349, -0.017388464882969856, 0.016703668981790543, 0.005636145360767841, 0.006522352807223797, -0.013246117159724236, -0.0022440520115196705, 0.010768763720989227, 0.0008270430844277143, 0.0142061747610569, -0.03219887241721153, -0.05140003561973572, 0.009781851433217525, -0.02419614978134632, -0.0347500778734684, 0.0113662825897336, -0.02489437535405159, -0.023229379206895828, -0.005840913392603397, -0.028090093284845352, 0.0001948020071722567, -0.008123569190502167, -0.027311304584145546, 0.04055070877075195, -0.016112864017486572, 0.01194366067647934, 0.004679444245994091, -0.00828469730913639, -0.03230629116296768, -0.017630157992243767, -0.03593168780207634, -0.025364333763718605, -0.03542144596576691, 0.01897289790213108, 0.0014946359442546964, -0.03590483218431473, -0.016112864017486572, -0.007512622978538275, -0.032574839890003204, -0.006260518915951252, -0.003053052118048072, 0.010433079674839973, 0.04495488852262497, -0.0008274627034552395, -0.000598357932176441, 0.021779220551252365, -0.012279344722628593, 0.010782191529870033, -0.001388056087307632, -0.0015181339113041759, -0.00495134899392724, -0.006757332477718592, -0.023981312289834023, -0.0050486973486840725, -0.028251221403479576, -0.009298465214669704, 0.007754315622150898, 0.003934224136173725, -0.016461975872516632, 0.03676418587565422, -0.01838209293782711, 0.010668058879673481, 0.00034449639497324824, 0.0027240810450166464, -0.013883917592465878, 0.013044705614447594, -0.003810020862147212, -0.018516365438699722, 0.009305179119110107, 0.017643585801124573, 0.02137639932334423, -0.008063145913183689, 6.47766501060687e-05, -0.008734514936804771, 0.00121685687918216, 0.014085328206419945, -0.05881195142865181, -0.008788224309682846, -0.013843636028468609, 0.00012514744594227523, 0.021953776478767395, 0.0030681579373776913, -0.011010456830263138, 0.006294087506830692, 0.00759990094229579, 0.009822132997214794, -0.022410308942198753, 0.0035582573618739843, -0.022611718624830246, 0.006975527387112379, 0.017589876428246498, -0.021013859659433365, -0.008882216177880764, -0.00597183033823967, 0.013460954651236534, -0.020047089084982872, 0.008264556527137756, 0.019241444766521454, -0.02067817561328411, -0.0439344085752964, 0.0011883237166330218, 0.031876616179943085, -0.023444216698408127, -0.012192066758871078, -0.006408220157027245, -0.01001011673361063, -0.017106490209698677, -0.045169729739427567, 0.011097734794020653, -0.03450838476419449, 0.01654254086315632, -0.01032565999776125, -0.012406905181705952, -0.041624899953603745, -0.0016767448978498578, 0.01914745382964611, -0.010271950624883175, -0.0206513199955225, 0.2648954689502716, -0.007881876081228256, -0.02023507095873356, 0.022047769278287888, -0.022168615832924843, -0.018690921366214752, 0.015146092511713505, -0.009761709719896317, -0.024464698508381844, 0.007076232694089413, -0.009251469746232033, -0.008083286695182323, -0.00434375973418355, -0.005105763673782349, -0.0011220260057598352, -0.012809726409614086, -0.019993377849459648, -0.006871465127915144, -0.022719137370586395, 0.008808366023004055, 0.029916217550635338, 0.0038033071905374527, 0.002603234490379691, -0.013977909460663795, 0.003100047819316387, -0.017388464882969856, -0.00976842362433672, 0.01883862353861332, 0.01995309628546238, -0.015293793752789497, -0.02642509713768959, 0.032709114253520966, -0.008815078996121883, -0.008606954477727413, 0.00394429499283433, -0.015011818148195744, 0.04253796115517616, 0.02851976826786995, 0.029781943187117577, 0.013729502446949482, 0.011842954903841019, -0.014864116907119751, -0.0006524870404973626, -0.02760670706629753, -0.026720499619841576, 0.0022020915057510138, 0.0018294814508408308, -0.011782531626522541, 0.0026401598006486893, 0.01230619940906763, -0.017992697656154633, -0.0065492079593241215, 0.020987005904316902, 0.0122927725315094, -0.0013679149560630322, -0.023390507325530052, 0.05612647533416748, -0.0009558621095493436, 0.03979877382516861, 0.008613668382167816, -0.006226950325071812, 0.027324732393026352, -0.030587587505578995, 0.012682166881859303, -0.027499288320541382, 0.003042981494218111, -0.025861145928502083, 0.005072195082902908, 0.014045046642422676, -0.012333055026829243, 0.0019654338248074055, -0.005038626957684755, -0.0016666743904352188, 0.012574747204780579, -0.017804713919758797, -0.0221820417791605, 0.029030010104179382, 0.007714033592492342, 0.028976300731301308, 0.03464265912771225, 0.002232302911579609, 0.0037663818802684546, -0.008264556527137756, -0.010298805311322212, 0.006988954730331898, -0.036817893385887146, 0.009875842370092869, -0.002562952460721135, -0.014582142233848572, 0.008526390418410301, -0.0017791286809369922, -0.0189057607203722, 0.0010011795675382018, -0.0046358052641153336, -0.004182631149888039, 0.014877544716000557, -0.014394158497452736, 0.02008737064898014, 0.008976208046078682, 0.00804300419986248, -0.01716019958257675, 0.019577128812670708, 0.015763752162456512, 0.012702307663857937, -0.02050361968576908, 0.0028701038099825382, 0.007653610315173864, -0.0009399170521646738, 0.022088050842285156, -0.0075193364173173904, -0.00780802546069026, -0.0424036867916584, 0.014112182892858982, -0.005733494181185961, 0.00024043413577601314, 0.008069858886301517, -0.016649959608912468, -0.033998142927885056, 0.0020644606556743383, 0.007022523321211338, 0.014850689098238945, -0.01256803423166275, -0.009231328032910824, 0.0034709793981164694, -0.003378666238859296, -0.01215178519487381, 0.007955726236104965, -0.011252149939537048, -0.014877544716000557, -0.030211620032787323, 0.01119172666221857, -0.014340449124574661, 0.023981312289834023, -0.004293406847864389, 0.013662366196513176, -0.011446846649050713, 0.0173750389367342, 0.01956370286643505, -0.0010607634903863072, -0.0038033071905374527, -0.00021882443979848176, -0.003971149679273367, 0.006193382199853659, -0.014071901328861713, -0.013011137954890728, -0.010856041684746742, 0.0029624172020703554, -0.0012529430678114295, -0.0038972990587353706, 0.00325614120811224, -0.034938059747219086, -0.024880947545170784, 0.004410896450281143, 0.015898026525974274, 0.008553245104849339, -0.0067338342778384686, -0.021738938987255096, -0.050298988819122314, 0.009432738646864891, 0.016945362091064453, -0.013669079169631004, -0.011554266326129436, 0.014689560979604721, -0.0068278261460363865, -0.006438431795686483, -0.03064129687845707, -0.1706889420747757, 0.015105810016393661, 0.012138357385993004, -0.0314737930893898, 0.0204364825040102, -0.001156433718279004, -0.001306652557104826, -0.003934224136173725, -0.0043571870774030685, -0.015495204366743565, 0.028358640149235725, -0.0013074917951598763, -0.021631520241498947, 0.007848307490348816, -0.008781510405242443, 0.012218921445310116, -0.031876616179943085, -0.006334369536489248, 0.03485749661922455, 0.010023544542491436, 0.03987933695316315, -0.036334507167339325, -0.015092382207512856, 0.040335867553949356, 0.005736851133406162, -8.979564881883562e-05, -0.011849668808281422, -0.020799022167921066, 0.009587153792381287, -0.017361611127853394, -0.005830842535942793, 0.010332373902201653, 0.018220962956547737, 0.013225975446403027, 0.017173627391457558, -0.01315883919596672, 0.014179320074617863, 0.00844582635909319, -0.00827127043157816, -0.0030966910999268293, -0.013803353533148766, 0.04259166866540909, 0.011151444166898727, -0.00917761866003275, 0.012259203940629959, 0.010694913566112518, 0.011849668808281422, -0.013628797605633736, -0.008016149513423443, -0.013212548568844795, 0.003323278157040477, -0.027767835184931755, -0.009291751310229301, -0.01724076457321644, 0.0347500778734684, 0.009721428155899048, 0.015710042789578438, -0.006592846941202879, -0.0109836021438241, -0.007814738899469376, -0.005411237012594938, -0.01748245768249035, 0.0067741163074970245, -0.012856722809374332, -0.010023544542491436, -0.002249087207019329, -0.0027240810450166464, 0.021362971514463425, -0.01877148635685444, -0.000871101685333997, 0.0047700791619718075, -0.01654254086315632, 0.010715054348111153, -0.009338747709989548, 0.0036623196210712194, -0.00012000726565020159, -0.03722071647644043, 0.02970137819647789, 0.019832249730825424, -0.030963553115725517, -0.006431718356907368, 0.04812375456094742, 0.0067808302119374275, -0.009828846901655197, 0.003236000193282962, 0.010943319648504257, 8.30295030027628e-05, -0.0053810253739356995, -0.01323268935084343, -0.027875253930687904, 0.026935337111353874, -0.010406224988400936, 0.0035582573618739843, -0.01091646496206522, -0.013709361664950848, -0.002421964891254902, 0.002692190930247307, 0.0020392844453454018, -0.014327021315693855, -0.016166573390364647, 0.025337478145956993, -0.019026607275009155, -0.02015450783073902, 0.025337478145956993, 0.02911057323217392, 0.017871851101517677, -0.033541612327098846, 0.028385495766997337, 0.010157817974686623, 0.0027794691268354654, -0.03171548619866371, 0.010003402829170227, 0.008606954477727413, -0.009620722383260727, 0.0230548232793808, 0.036791037768125534, 0.00016018452879507095, -0.004051713738590479, 0.008875502273440361, -0.0015701650409027934, -0.002230624668300152, -0.029432831332087517, 0.006230307277292013, 0.01844922825694084, 0.01908031664788723, -0.01595173589885235, -0.04600222781300545, 0.01702592708170414, 0.00672040693461895, 0.03590483218431473, -0.01779128797352314, 0.03931538760662079, -0.021389827132225037, 0.02047676406800747, -0.005105763673782349, 0.009405883960425854, 0.0025814149994403124, -0.03907369449734688, -0.006203452590852976, 0.002661979291588068, -0.023215951398015022, -0.0009650934371165931, 0.0048170750960707664, -0.007586473599076271, -0.005377668421715498, 0.0029892718885093927, -0.0130581334233284, 0.002171879867091775, 0.0011547552421689034, -0.026237113401293755, -0.020288780331611633, -0.009640863165259361, -0.030131055042147636, 0.02096015028655529, 0.005485087633132935, -0.00265862257219851, 0.04495488852262497, -0.007989294826984406, 0.003501191036775708, -0.01347438246011734, 0.0009155799052678049, 0.0025277056265622377, -0.01654254086315632, -0.018408946692943573, 0.016341129317879677, -0.008875502273440361, 0.0005958402762189507, -0.004266552161425352, -0.005186328198760748, -0.02476010099053383, -0.023833611980080605, -0.010332373902201653, 0.0024437843821942806, 0.03244056552648544, 0.002066139131784439, -0.025337478145956993, -0.02980879880487919, 0.016247138381004333, 0.002133276080712676, -0.02155095525085926, 0.03944966197013855, 0.025095785036683083, 0.012474042363464832, -0.0030614440329372883, -0.03958393633365631, -0.005911407060921192, -0.00889564398676157, -0.012762730941176414, -0.005401166155934334, 0.0041994149796664715, 0.005696568638086319, 0.008452540263533592, -0.027284448966383934, -0.03662991151213646, 0.014152465388178825, 0.0068748220801353455, 0.014085328206419945, 0.031178392469882965, -0.012997710146009922, 0.008962780237197876, -0.03448152914643288, -0.02924484759569168, -0.011990656144917011, -0.01750931143760681, 0.046324484050273895, -0.018892332911491394, -0.014689560979604721, -0.014515005052089691, -0.001048175385221839, -0.00948644895106554, 0.007331353146582842, 0.030131055042147636, -0.006539137102663517, 0.009298465214669704, -0.007109801284968853, -0.0362807996571064, -0.008962780237197876, 0.004340402781963348, -0.00910376850515604, -0.01256803423166275, 0.006243734620511532, 0.002374968957155943, -0.016703668981790543, 0.011111162602901459, 0.0015642904909327626, 0.028492914512753487, -0.019228016957640648, -0.04452521353960037, -0.09334719181060791, 0.020006805658340454, -0.007787884213030338, -0.02130926214158535, 0.012487469241023064, -0.004105423577129841, 0.01396448165178299, -0.003215859178453684, 0.017213908955454826, -0.012628457508981228, -0.015750324353575706, -0.017751004546880722, -0.003826805157586932, -0.021913494914770126, -0.025122640654444695, -0.01119172666221857, 0.0230548232793808, 0.00225915783084929, 0.004014788661152124, 0.012944000773131847, 0.010681485757231712, -0.016461975872516632, 0.009050058200955391, 0.0238201841711998, -0.016247138381004333, 0.029781943187117577, 0.012923859991133213, 0.021362971514463425, -0.009989975951611996, -0.021228699013590813, -0.0044041830115020275, -0.008452540263533592, 0.007116514723747969, 0.01354151964187622, 0.018516365438699722, -0.001809340319596231, -0.0015130985993891954, 0.0006692712777294219, 0.028090093284845352, 0.02600884810090065, -0.019241444766521454, -0.0035045479889959097, 0.016300847753882408, -0.017643585801124573, -0.006220236886292696, -0.0062235938385128975, 0.009822132997214794, 0.004226270131766796, 0.012413619086146355, 0.03969135507941246, 0.029728233814239502, 0.015401212498545647, -0.016690241172909737, -0.015723470598459244, -0.010506929829716682, -0.052178822457790375, 0.0196711216121912, 0.004478033632040024, -0.0028936017770320177, -0.02416929602622986, 0.036441925913095474, 0.019483137875795364, 0.020691603422164917, -0.004303477238863707, 0.006592846941202879, -0.011762390844523907, -0.013736216351389885, 0.0106009216979146, 0.029755089432001114, -0.027042755857110023, -0.04049699753522873, -0.012279344722628593, -0.0173750389367342, 0.013306540437042713, -0.002947311382740736, -0.010641204193234444, 0.0013460954651236534, -0.005052054300904274, -0.014300166629254818, 0.011104448698461056, -0.014367303811013699, 0.010728482156991959, -0.023108532652258873, -0.0001263013546122238, 0.045384567230939865, 0.02032906375825405, 0.00011927295417990535, 0.0027240810450166464, -0.005065481644123793, -0.004988274071365595, -0.029056863859295845, 0.006300800945609808, 0.012339767999947071, 0.013548232614994049, 0.025888001546263695, 0.025512034073472023, -0.005068838596343994, 0.010641204193234444, 0.04194715619087219, -0.006666697561740875, 0.01253446564078331, -0.004984917119145393, 0.02172551117837429, 0.0008144549210555851, -0.012695593759417534, 0.007975867949426174, -0.02030220814049244, -0.034105561673641205, -0.007687178906053305, 0.015481776557862759, -0.0028566764667630196, 0.008559959009289742, -0.028331786394119263, 0.015334075316786766, -0.011305859312415123, 0.007264215964823961, -0.0007662002462893724, -0.01730790175497532, -0.023444216698408127, 0.016112864017486572, 0.031151536852121353, 0.024491552263498306, 0.02023507095873356, -0.012406905181705952, 0.009076912887394428, -0.0017640228616073728, 0.009050058200955391, -0.012944000773131847, 0.0007523532258346677, 0.016421694308519363, -0.02008737064898014, 0.03238685801625252, -0.007620041724294424, -0.02587457373738289, -0.018583502620458603, 0.023659056052565575, 0.01403161883354187, 0.01007725391536951, -0.021295834332704544, 0.10167217254638672, 0.005193041637539864, -0.002363220090046525, 0.0006445145700126886, -0.011225295253098011, -0.00845925323665142, 0.008815078996121883, 0.02019478939473629, 0.000473315390991047, -0.024209577590227127, 0.010171245783567429, 0.003444124711677432, 0.0025679876562207937, -0.025391187518835068, -0.009291751310229301, -0.013051419518887997, -0.012480756267905235, 0.03888571262359619, -0.02126898057758808, 0.012406905181705952, 0.046082790940999985, 0.011607975699007511, 0.0041121370159089565, 0.0028449275996536016, -0.025216631591320038, 0.00046828010817989707, 0.03039960376918316, 0.005518655758351088, -0.016166573390364647, -0.01566975936293602, 0.03370273858308792, 0.005391095764935017, -0.034239836037158966, -0.019456282258033752, -0.015119236893951893, 0.009184332564473152, 0.004994987975805998, 0.003769738832488656, 0.03969135507941246, 0.005720066837966442, 0.005998685024678707, 0.0020627821795642376, -0.03440096601843834, -0.016905080527067184, 0.005320602096617222, 0.014474722556769848, -0.008902356959879398, -0.0074387723580002785, 0.0007112318999134004], "180ad649-c7c7-4415-aee5-031c9a29b264": [-0.00850084237754345, -0.023482991382479668, -0.0030527887865900993, -0.02181905321776867, 0.005578887648880482, 0.02259734645485878, -0.012445985339581966, -0.027267107740044594, 0.003975335042923689, -0.011828717775642872, 0.012157480232417583, 0.0052232882007956505, -0.00747430045157671, -0.012425856664776802, -0.0056392727419734, -0.019256051629781723, 0.003693538950756192, -0.005461472552269697, 0.028582153841853142, 0.0014022700488567352, -0.007937250658869743, -0.005944551434367895, 0.01615629717707634, -0.034083884209394455, -0.010621021501719952, -0.0030041455756872892, 0.010144651867449284, -0.007501138374209404, 0.014036118984222412, 0.011768333613872528, 0.02379162423312664, -0.004059202503412962, 0.001826641266234219, -0.02384530007839203, -0.016800401732325554, -0.0015473613748326898, 0.005052197724580765, 0.009970206767320633, 0.0034486448857933283, 0.004686533939093351, 0.015284072607755661, 0.012653977610170841, 0.004770401865243912, 0.01814228855073452, -0.02740129642188549, 0.004294032696634531, -0.011412733234465122, 0.0026133214123547077, 0.0004721758596133441, 0.023925812914967537, -0.002210755832493305, 0.011956197209656239, -0.04084698483347893, -0.006306860595941544, -0.004602666012942791, 0.019202377647161484, -0.03352029249072075, 0.014452103525400162, -0.011640854179859161, -0.02294623665511608, 0.015096208080649376, -0.006306860595941544, -0.027589159086346626, -0.01170123927295208, 0.018048355355858803, 0.016733309254050255, 0.004559054970741272, 0.0027558966539800167, -0.01807519420981407, 0.018679041415452957, 0.02018195390701294, 0.02136281318962574, 0.006689297500997782, 0.002789443824440241, 0.03105122409760952, 0.011573759838938713, -0.029118908569216728, 0.005676174536347389, -0.0005493342760019004, 0.013190731406211853, -0.010426447726786137, -0.02140306867659092, -0.01113093737512827, -0.005461472552269697, 0.019591523334383965, 0.0018484469037503004, -0.009386487305164337, 0.01046670414507389, 0.03741176053881645, -0.021993499249219894, 1.015586974517646e-07, 0.022100849077105522, 0.0024623593781143427, 0.015029113739728928, -0.008373363874852657, 0.012103804387152195, -0.001940701506100595, 0.015029113739728928, -0.015471936203539371, -0.04567777365446091, -0.014371590688824654, 0.009929950349032879, -0.002953824819996953, -0.0035794787108898163, -0.05770106241106987, -0.03708970546722412, 0.043316055089235306, -0.014385009184479713, 0.017484763637185097, -0.010735081508755684, -0.008514261804521084, 0.02583128958940506, -0.01688091643154621, -0.06102893874049187, -0.019175538793206215, 0.006065321154892445, 0.03199054300785065, -0.003921659663319588, -0.03424490988254547, -0.00024216834572143853, 0.01858511008322239, 0.01494860090315342, 0.01694801077246666, 0.00504213385283947, 0.015364585444331169, 0.02987036481499672, -0.0023717819713056087, -0.009473709389567375, -0.01145969983190298, -0.015203558839857578, 0.03394969552755356, -0.006098868325352669, 0.024798037484288216, 0.0020815993193536997, -0.04079331085085869, -0.013982444070279598, -0.003101432230323553, -0.004515443462878466, -0.007434044033288956, -0.007373658940196037, 0.004008882213383913, 0.0037270861212164164, -8.68162987899268e-06, -0.02176537737250328, 0.0066188485361635685, 0.010728372260928154, 0.020289303734898567, 0.003623089985921979, -0.02011485956609249, 0.005491665098816156, 0.002891762647777796, -0.017202967777848244, 0.006729554384946823, -0.022758372128009796, -0.00949383806437254, 0.004079331178218126, -0.010815594345331192, 0.008614903315901756, -0.0014777510659769177, -0.010097686201334, 0.01010439544916153, 0.03201737999916077, 0.008923536166548729, -0.030165579169988632, 0.014653386548161507, 0.03419123589992523, 0.01933656632900238, 0.021510420367121696, 0.0008390975999645889, 0.0037975350860506296, 0.005206514615565538, -0.005840555299073458, -0.025321373715996742, 0.027253689244389534, -0.017833653837442398, 0.024865131825208664, -0.02133597433567047, 0.017659209668636322, -0.008547808974981308, -0.004599311389029026, -0.0035325128119438887, -0.01653202623128891, -0.0011976325185969472, 0.029333610087633133, -0.019591523334383965, -0.023697692900896072, -0.0029102135449647903, 0.005052197724580765, 0.022731535136699677, 0.014478941448032856, 0.01368722878396511, 0.033627644181251526, 0.0063370526768267155, -0.011137647554278374, -0.6071761846542358, -0.013123637065291405, -0.003659991780295968, -0.014626548625528812, 0.0053440579213202, 0.017941005527973175, 0.006548399571329355, 0.021604351699352264, -0.032446783035993576, 0.024328378960490227, 0.003056143643334508, 0.012345343828201294, 0.002663642168045044, 0.0038310822565108538, 0.0011120873969048262, -0.03215156868100166, 0.01331150159239769, 0.004334289114922285, -0.010775337927043438, 0.02263760380446911, -0.010580765083432198, 0.027911212295293808, -0.00032960055978037417, -0.0008055504295043647, 0.0020648257341235876, 0.019215796142816544, 0.0002713124267756939, -0.020517423748970032, 0.011915940791368484, 0.04994496703147888, -0.017941005527973175, 0.012412438169121742, 0.006548399571329355, -0.01450577937066555, 0.052682410925626755, -0.019457334652543068, -0.04320870339870453, 0.026045991107821465, -0.0016060688067227602, 0.04803948849439621, -0.0028297004755586386, -0.018276477232575417, 0.02542872354388237, 0.010822304524481297, -0.0013259502593427896, 0.00424035731703043, 0.005095809232443571, -0.02262418530881405, 0.0074206250719726086, 0.006498079281300306, 0.0017041942337527871, -0.0028196363709867, 0.025227442383766174, -0.023254871368408203, 0.02624727413058281, 0.004082685802131891, 0.030863359570503235, -0.02173854038119316, 0.002202369039878249, -0.02938728593289852, -0.014559454284608364, 0.0034654184710234404, 0.0029756303410977125, -0.013237697072327137, -0.019994089379906654, 0.015619543381035328, -0.020705288276076317, -0.010621021501719952, -0.015820827335119247, -0.03435226157307625, 0.004055847879499197, -0.01977938786149025, 0.004639568272978067, 0.00021763700351584703, 0.028850531205534935, 0.05775474011898041, 0.008889988996088505, -0.02302674949169159, 0.011667692102491856, 0.007729258853942156, 0.0024371990002691746, 0.015257234685122967, -0.01855827309191227, -0.0018434147350490093, -0.002287914277985692, -0.004290678072720766, -0.040578607469797134, -0.01932314597070217, 0.003492256160825491, 0.02134939283132553, -0.006739618256688118, 0.003958561457693577, 0.01350607443600893, -0.030138742178678513, 0.0014064634451642632, 0.016411256045103073, -0.021121272817254066, -0.0054648276418447495, -0.000967834668699652, -0.0019557976629585028, -0.024663850665092468, 0.016022108495235443, 0.0038445009849965572, -0.012774746865034103, 0.02219478040933609, -0.012399018742144108, -0.02342931553721428, 0.007541394792497158, 0.040900662541389465, 0.004005527123808861, -0.02093340829014778, -0.01011110469698906, -0.025643426924943924, -0.005716430954635143, 0.01932314597070217, -0.03201737999916077, 0.01898767612874508, 0.014143469743430614, 0.009386487305164337, -0.0068771615624427795, -0.004579183179885149, 0.013418852351605892, 0.0015901339938864112, 0.006642331834882498, 0.011640854179859161, 0.027562322095036507, 0.03437909856438637, -0.011023586615920067, -0.00823246594518423, -0.0005354960449039936, -0.019215796142816544, 0.026730353012681007, 0.021859310567378998, -0.010439867153763771, 0.01611604169011116, -0.008728963322937489, 0.006917417980730534, -0.01777997799217701, 0.021470163017511368, 0.01274790894240141, -0.014733899384737015, 0.0029035040643066168, -0.00388811226002872, -0.0018652203725650907, 0.007494428660720587, -0.01694801077246666, -0.01578056998550892, -0.011312092654407024, -0.019631780683994293, -0.0065718828700482845, 0.022852305322885513, -0.007709130644798279, -0.010198327712714672, 0.022033754736185074, 0.003215492470189929, 0.000517045147716999, -0.002143661491572857, -0.007031478453427553, 0.00023545892327092588, -0.011822008527815342, 0.00705831591039896, -0.014398428611457348, -0.025227442383766174, 0.009976916015148163, -0.01736399531364441, -0.019604941830039024, -0.01849117875099182, -0.00866857822984457, -0.012573463842272758, -0.040981173515319824, -0.008742381818592548, -0.0029303417541086674, -0.0033983243629336357, 0.01570005714893341, 0.007279727142304182, 0.005649336613714695, -0.020047765225172043, 0.0037807615008205175, 0.001960829831659794, -0.0035123846028000116, -0.001127183553762734, 0.0024975838605314493, 0.012969320639967918, -0.01692117191851139, 0.030460793524980545, 0.00514612952247262, 0.027320781722664833, -0.006390728056430817, -0.009131528437137604, 0.0038109540473669767, -0.010077557526528835, 0.026757190003991127, 0.02383188158273697, 0.0052266428247094154, 0.04516785591840744, -0.0013838191516697407, 0.03099754825234413, 0.020316142588853836, 0.005900939926505089, 0.025348210707306862, 0.01231179665774107, 0.015847664326429367, -0.0029471153393387794, -0.03883415833115578, 0.014680224470794201, -0.01552561204880476, 0.008131824433803558, -0.0010164780542254448, 2.522586873965338e-05, -0.008534389548003674, -0.004424866288900375, -0.03059498220682144, -0.02420760877430439, 0.0029135681688785553, 0.02494564652442932, 0.018719298765063286, -0.015284072607755661, -0.005280318204313517, -0.0008076471276581287, 0.015069371089339256, -0.01028554979711771, 0.005817072466015816, 0.013298082165420055, -0.03145378828048706, 0.008507552556693554, -0.00585061963647604, 0.009715248830616474, -0.00734682148322463, -0.0009913176763802767, -0.028447967022657394, -0.008809476159512997, 0.00433093449100852, -0.0015180076006799936, 0.02011485956609249, 0.03617722541093826, -0.05818414315581322, 0.014774155803024769, -0.024435728788375854, 0.010963202454149723, 0.009976916015148163, 0.00585061963647604, 0.017551857978105545, -0.013834835961461067, -0.021054178476333618, 0.003403356298804283, 0.021926404908299446, 0.07793669402599335, 0.03239310905337334, -0.03824372962117195, 0.02984352596104145, -0.025160348042845726, -0.014036118984222412, -0.030890196561813354, 0.02016853541135788, 0.008628321811556816, -0.013143765740096569, 0.010486832819879055, 0.0037807615008205175, 0.017041942104697227, 0.03182951733469963, 0.006263249088078737, 0.028957882896065712, 0.01088268868625164, 0.019645199179649353, -0.0157537329941988, -0.02788437344133854, -0.00890340842306614, -0.032903026789426804, 0.0009326101862825453, -0.013982444070279598, -0.021242043003439903, -0.0016530348220840096, -0.013640263117849827, -0.015055951662361622, -0.0008281947812065482, -0.0074206250719726086, 0.010956492274999619, -0.0018249638378620148, 0.01694801077246666, -0.01307667139917612, -0.0076890019699931145, -0.021201785653829575, 0.03333242982625961, -0.0017796752508729696, 0.011647563427686691, -0.0022778501734137535, -0.0060519021935760975, -0.0070784445852041245, 0.0025965478271245956, 0.0033815507777035236, -0.0013796257553622127, -0.010849141515791416, 0.014210564084351063, 0.00514612952247262, -0.024314960464835167, -0.017431087791919708, 0.015565868467092514, -0.013995862565934658, -0.0028783436864614487, -0.011922650039196014, 0.006930836942046881, 0.007111991755664349, -0.002068180590867996, -0.012284958735108376, 0.04224254563450813, 0.02015511505305767, -0.002675383584573865, -0.017202967777848244, 0.012875388376414776, -0.014264239929616451, -0.002381846308708191, -0.005404442548751831, 0.004294032696634531, -0.01977938786149025, -0.010426447726786137, -0.00442151166498661, 0.012861969880759716, -0.01535116694867611, 0.0348353385925293, 0.019658617675304413, -0.004874398000538349, -0.024891970679163933, -0.015270653180778027, 0.008614903315901756, -0.008279431611299515, 0.0071455384604632854, 0.012412438169121742, 0.0004633697390090674, -0.03510371595621109, 0.0010902817593887448, 0.002646868582814932, -0.016827240586280823, 0.007333402521908283, -0.025643426924943924, 0.01392876822501421, -0.00735353073105216, 0.01930972747504711, -0.01690775342285633, 0.013653681613504887, 0.016867496073246002, -0.011915940791368484, -0.023523246869444847, 0.025898383930325508, -0.020879734307527542, 0.024851713329553604, 0.01552561204880476, 0.010943073779344559, 0.0009057724964804947, 0.00656852824613452, -0.01850459724664688, 0.012613721191883087, 0.0395587757229805, 0.008534389548003674, -0.02096024714410305, -0.001364529482088983, -0.0016245198203250766, -0.013036414980888367, 0.036955516785383224, 0.011419443413615227, 0.0046999529004096985, -0.006347117014229298, 0.03920988366007805, 0.006273313425481319, 0.013432270847260952, 0.00927242636680603, 0.01737741380929947, 0.017202967777848244, -0.0137409046292305, 0.007105282042175531, -0.00615254370495677, 0.0044550588354468346, 0.0006889741634950042, -0.002942083403468132, -0.017028523609042168, 0.02623385563492775, 0.002574742306023836, -0.055446695536375046, 0.003431871300563216, -0.004622794687747955, 0.020906571298837662, -0.02898471988737583, -0.020369816571474075, 0.00984943751245737, 0.011211451143026352, 0.025965478271245956, -0.0035928976722061634, -0.013378595001995564, -0.011137647554278374, -0.008339816704392433, -0.025146927684545517, -0.014009281061589718, -0.0021554031409323215, -0.02094682864844799, -0.028045400977134705, 0.026488814502954483, -0.03899518400430679, -0.04001501575112343, 0.004230292979627848, 0.0019557976629585028, 0.02096024714410305, 0.01510962750762701, 0.005585596896708012, -0.03295670077204704, 0.022476576268672943, -0.008024473674595356, -0.01771288365125656, -0.016733309254050255, -0.01247282326221466, 0.020074602216482162, -0.004488606005907059, 0.020705288276076317, -0.004968329798430204, -0.009715248830616474, 0.033198241144418716, 0.00382437277585268, 0.0036096712574362755, -0.0032876187469810247, -0.0025260988622903824, -0.015646381303668022, 0.016424674540758133, -0.008990630507469177, 0.017954424023628235, 0.0029806625097990036, 0.0068536787293851376, 0.003415097715333104, -0.033251915127038956, -0.013284663669764996, 0.0017478055087849498, -0.014881506562232971, -0.005233352072536945, 0.023107262328267097, 0.014492359943687916, 0.002459004521369934, 0.017162712290883064, 0.04232306033372879, 0.0017394187161698937, 0.024449149146676064, 0.01940366066992283, 0.031722165644168854, 0.01618313603103161, -0.004518798552453518, -0.008299560286104679, 0.002308042487129569, 0.002106759697198868, 0.022865723818540573, -0.019645199179649353, 0.014385009184479713, 0.009755505248904228, 0.009782343171536922, -0.005179676692932844, -0.0021554031409323215, -0.03102438524365425, -0.02375136874616146, 0.020517423748970032, -0.013821417465806007, 0.02254367060959339, 0.00024153933918569237, -0.023670854046940804, -0.011184613220393658, 0.010319096967577934, 0.0013133701868355274, 0.023107262328267097, -0.0034301939886063337, -0.028770018368959427, -0.0137409046292305, -0.0024925516918301582, 0.0003042305470444262, -0.025173766538500786, -0.015324329026043415, -0.01930972747504711, -0.004706662148237228, -0.003659991780295968, -0.008460585959255695, 0.017149291932582855, 0.02014169655740261, 0.0018803166458383203, -0.047422222793102264, 0.0073401122353971004, 0.030192416161298752, -0.028957882896065712, -0.00848742388188839, 0.0029303417541086674, 0.021564094349741936, 0.026475394144654274, 0.024113677442073822, 0.017578696832060814, 0.004444994498044252, -0.012875388376414776, 0.01170123927295208, -0.0002635546261444688, -0.017229806631803513, 0.03258097171783447, 0.0024539725854992867, 0.004642922896891832, -0.004220229107886553, 0.0060686757788062096, -0.006186090875416994, -0.001960829831659794, -0.00884973257780075, 0.0435844324529171, -0.014183726161718369, -0.00043485467904247344, 0.00885644182562828, -0.053863272070884705, -0.02254367060959339, -0.0021554031409323215, 0.011365767568349838, -0.004404738079756498, -0.006189445499330759, -0.02023562788963318, 0.0023835236206650734, 0.0060753850266337395, 0.020826058462262154, 0.020826058462262154, 0.021926404908299446, -0.028152750805020332, 0.006135770119726658, -0.01247953251004219, 0.010607602074742317, -0.018316732719540596, 0.01111080963164568, -0.014586292207241058, 0.014250820502638817, -0.009359649382531643, 0.016357580199837685, 0.0022241747938096523, 0.0010491864522919059, 0.01572689414024353, 0.0008655159617774189, 0.026099666953086853, -0.006430984940379858, -0.034110721200704575, -0.00585061963647604, -0.009607898071408272, -0.026730353012681007, -0.02375136874616146, 0.012674105353653431, -0.015646381303668022, -0.025254279375076294, -0.0037975350860506296, 0.0009946724167093635, 0.006082094740122557, -0.00890340842306614, -0.003659991780295968, 0.0003335842629894614, -0.008427038788795471, 0.03182951733469963, 0.009279136545956135, 0.00806473009288311, 0.02981668896973133, 0.016277067363262177, 0.0025260988622903824, -0.04908616095781326, -0.006605430040508509, -0.006820131558924913, 0.02938728593289852, 0.05075009912252426, -0.020396655425429344, -0.01647835038602352, -0.013452399522066116, 0.013526203110814095, -0.027280526235699654, -0.023737948387861252, 0.014666805043816566, 0.00884302332997322, -0.003383228089660406, -0.021604351699352264, 0.0173505749553442, -0.03239310905337334, 0.012150770053267479, -0.015029113739728928, 0.0003960657923016697, -0.023939231410622597, 0.0060082911513745785, -0.012667396105825901, -0.006675879005342722, -0.03228575736284256, 0.006226347293704748, 0.014398428611457348, 0.013432270847260952, -0.005719785578548908, -0.016827240586280823, -0.038941510021686554, 0.02104075998067856, -0.0018970902310684323, 0.025334792211651802, 0.004267194774001837, -0.010003753937780857, 0.024824876338243484, -0.005961325019598007, -0.017444508150219917, -0.012405728921294212, -0.00776951527222991, 0.047851625829935074, -0.014586292207241058, -0.027334202080965042, -0.00654504494741559, 0.009929950349032879, 0.022905981168150902, -0.0052870274521410465, 0.0028213136829435825, 0.01172136701643467, -0.013653681613504887, -0.007004640530794859, 0.005300446413457394, -0.022127686068415642, 0.013888511806726456, -0.017068779096007347, -0.0017847073031589389, -0.0034788374323397875, -0.020262466743588448, 7.134006591513753e-05, 0.017860492691397667, -0.04911299794912338, -0.014814412221312523, -0.01552561204880476, 0.001004736521281302, 0.0028816985432058573, 0.012633848935365677, 0.019081607460975647, 0.003804244566708803, 0.053460706025362015, -0.027173174545168877, 0.0095072565600276, -0.009567641653120518, 0.02096024714410305, -0.0027642834465950727, -0.0015557481674477458, 0.004948201589286327, -0.003717022016644478, 0.03199054300785065, -0.021470163017511368, -0.00474691903218627, -0.042913489043712616, 0.01010439544916153, 0.017471345141530037, 0.0035593505017459393, 0.009185204282402992, 0.03920988366007805, 0.010171489790081978, 0.01535116694867611, 0.0011347316903993487, -0.022892560809850693, -0.015337747521698475, -0.0029135681688785553, 0.009540803730487823, 0.004857624415308237, -0.014156889170408249, -0.010849141515791416, -0.013056542724370956, -0.010064139030873775, -0.0008005183772183955, -0.03021925501525402, -0.0315074659883976, -0.006078740116208792, -0.02175195887684822, -0.021939823403954506, -0.0026988666504621506, -0.010500251315534115, -0.0022443030029535294, -0.025656845420598984, 0.0032859414350241423, 0.006581946741789579, -0.00885644182562828, -0.007434044033288956, 0.03912937268614769, -0.0017427733400836587, 0.017270062118768692, -0.009768924675881863, -0.032071057707071304, -0.009473709389567375, -0.01894741877913475, -0.03024609200656414, -0.025710521265864372, -0.02375136874616146, 0.04202784597873688, -0.0032255565747618675, -0.01768604665994644, -0.026019154116511345, -0.018034936860203743, -0.01776655949652195, 6.651767034782097e-05, 0.009654863737523556, 0.025723939761519432, 0.03835107758641243, -0.017109036445617676, -0.0038914671167731285, 0.02946779876947403, -0.01434475276619196, 0.008614903315901756, 0.001486976514570415, 0.00039082407602109015, -0.009661572985351086, -0.001414011581800878, -0.022006917744874954, 0.009124819189310074, -0.030943872407078743, -0.017216386273503304, -0.00022812047973275185, -0.004260485526174307, 0.0009334489004686475, 0.014304496347904205, 0.0057667517103254795, -0.02618017978966236, -0.003948497120290995, -0.02104075998067856, -0.004629503935575485, 0.016048947349190712, -0.010741790756583214, -0.02501274086534977, 0.01776655949652195, 0.02171170338988304, 0.007675583474338055, 0.010949783027172089, -0.011412733234465122, 0.00019279116531834006, -0.001242082449607551, 0.00594119681045413, -0.02656932733952999, -0.00909127201884985, 0.009567641653120518, -0.015391423366963863, 0.0225570909678936, -0.009929950349032879, 0.010560636408627033, 0.01858511008322239, 0.014626548625528812, 0.005622499156743288, -0.021295718848705292, 0.0035761240869760513, -0.046643927693367004, -0.002162112621590495, 0.01493518240749836, 0.0026233855169266462, -0.0016991621814668179, 0.014572872780263424, -0.0023868782445788383, -0.013606715947389603, -0.004015591461211443, 0.01929630897939205, 0.005954615771770477, -0.03639192506670952, 0.023067006841301918, 0.026824284344911575, -0.02978985197842121, -0.007065025623887777, 0.005585596896708012, -0.006129060406237841, 0.008695416152477264, -0.03255413472652435, 0.014371590688824654, -0.049783941358327866, 0.011218160390853882, -0.01289551705121994, 0.001274790964089334, -0.016840659081935883, -0.0014576227404177189, 0.020410073921084404, -0.011164484545588493, -0.0032892960589379072, 0.25935956835746765, -0.00866186898201704, -0.0030779491644352674, 0.025281116366386414, -0.0013225956354290247, 0.0008663546177558601, 0.016303904354572296, -0.01453261636197567, -0.010990039445459843, 0.01453261636197567, -0.02263760380446911, 0.004683179315179586, 0.002390233101323247, -0.008708834648132324, 0.010755210183560848, -0.006320279091596603, -0.018316732719540596, -0.03590884804725647, -0.03765329718589783, -0.01411663182079792, 0.02548239938914776, -0.00885644182562828, -0.0015498773427680135, -0.0266498401761055, 0.014076375402510166, -0.002365072723478079, -0.009896403178572655, 0.019108444452285767, 0.028904207050800323, -0.013398723676800728, -0.03027293086051941, 0.018303314223885536, -0.013412142172455788, -0.009923241101205349, 0.005541985854506493, -0.009735377505421638, 0.03306405246257782, 0.021577514708042145, 0.020275885239243507, -0.01292235404253006, -0.02984352596104145, 0.021148109808564186, -0.02262418530881405, -0.015364585444331169, -0.01732373796403408, 0.018786393105983734, -0.022852305322885513, -0.01579398848116398, 0.020436910912394524, 0.009715248830616474, -0.021201785653829575, -0.022315550595521927, 0.04232306033372879, 0.01729690097272396, 0.000663813843857497, -0.002680415753275156, 0.03260780870914459, -0.013472527265548706, 0.021483581513166428, 0.049327701330184937, -0.01453261636197567, 0.0395587757229805, -0.007514556869864464, 0.00433764373883605, -0.021912984549999237, -0.0068335505202412605, -0.021255461499094963, 0.02011485956609249, -0.006786584388464689, -0.014720480889081955, 0.008366654627025127, -0.009440162219107151, -0.005817072466015816, -0.0041564893908798695, -0.026126503944396973, -0.028877370059490204, 0.052172496914863586, -0.007494428660720587, 0.025254279375076294, 0.05053539574146271, 0.024127095937728882, -0.003386582713574171, 0.003965270705521107, 0.005619144067168236, -0.010158071294426918, -0.02291939966380596, 0.01309008989483118, -0.0033396168146282434, -0.02341589704155922, 0.022328969091176987, 0.012385600246489048, -0.025925222784280777, 0.029253097251057625, -0.004954911302775145, 0.0002369266003370285, 0.013271244242787361, -0.01576715148985386, -0.0013670455664396286, 0.0030360152013599873, -0.01291564479470253, -0.03824372962117195, 0.00411958759650588, 0.008359944447875023, 0.016760146245360374, -0.020074602216482162, -0.0068167769350111485, -0.0026938344817608595, 0.005585596896708012, 0.021590933203697205, -0.008440458215773106, 0.0044416398741304874, -0.043825969099998474, 0.011560341343283653, 0.003904885845258832, 0.00806473009288311, 0.018665622919797897, -0.016813822090625763, -0.013210860081017017, 0.006524916738271713, 0.012935773469507694, 0.015632962808012962, -0.010493542067706585, -0.023630598559975624, -0.0020497296936810017, 0.005303801037371159, -0.01188239362090826, -0.02061135694384575, -0.03027293086051941, -0.008219046518206596, -0.02301333099603653, 0.006910708732903004, -0.032071057707071304, 0.014868088066577911, 0.009601188823580742, 0.01027213130146265, -0.00866857822984457, 0.007366949692368507, 0.008393491618335247, 0.010017173364758492, 0.002006118418648839, -0.007004640530794859, 0.010044010356068611, 0.0004143070545978844, -0.006367245223373175, -0.0015029114438220859, -0.016022108495235443, 0.009305973537266254, 0.014291076920926571, -0.0017176130786538124, -0.010057429783046246, -0.02745497040450573, 0.000571978569496423, 0.0044550588354468346, -0.0012630494311451912, -0.0008621612214483321, -0.02459675632417202, -0.014868088066577911, -0.053433869034051895, -0.003602961776778102, 0.02949463576078415, -0.033198241144418716, -0.018370408564805984, 0.02057109959423542, -0.01740425080060959, -0.009393196552991867, -0.018289895728230476, -0.17025838792324066, 0.0006621364736929536, 0.029575150460004807, -0.02544214390218258, 0.03824372962117195, -0.011781752109527588, -0.005216578487306833, 0.0026401591021567583, -0.013190731406211853, -0.007635326590389013, 0.02627411298453808, 0.012103804387152195, -0.021564094349741936, 0.0014685256173834205, -0.0019625071436166763, 0.018880324438214302, -0.02777702361345291, 0.009399905800819397, 0.052253007888793945, -0.0004985941923223436, 0.034110721200704575, -0.04919351264834404, -0.014747317880392075, 0.0355331189930439, 0.002182240830734372, 0.007373658940196037, -0.026810865849256516, -0.028528479859232903, -0.00594790605828166, -0.013995862565934658, -0.002982339821755886, 0.030917035415768623, 0.03199054300785065, -0.011573759838938713, 0.032876186072826385, -0.02580445259809494, 0.005900939926505089, -0.01068140659481287, -0.011318801902234554, 0.004039074294269085, 0.005609080195426941, 0.03537209331989288, 0.004012236837297678, -0.003985398914664984, -0.012640558183193207, 0.021443326026201248, -0.01689433492720127, 0.003961916081607342, -0.00865515973418951, -0.0003199557540938258, 0.01615629717707634, -0.02663642168045044, -0.02576419524848461, -0.008916826918721199, 0.036499276757240295, -0.002519389381632209, 0.0008072277996689081, 0.004532217048108578, -0.013351758010685444, 0.003391614882275462, -0.006622203625738621, -0.018638785928487778, 0.022060591727495193, 0.002083276864141226, -0.024704106152057648, -0.002430489519611001, 0.0076420363038778305, 0.023281708359718323, -0.02295965515077114, 0.025160348042845726, 0.01692117191851139, -0.03027293086051941, -0.0028699568938463926, -0.016867496073246002, 0.005783525295555592, 0.003316133748739958, 0.0038143086712807417, 0.03298353776335716, 0.015431679785251617, -0.008594774641096592, 0.0026451912708580494, 0.05488310381770134, 0.013358467258512974, -0.017082199454307556, 0.01394218672066927, -0.006182736251503229, 0.0006222992669790983, 0.01578056998550892, -0.050186507403850555, -0.02987036481499672, 0.03596252202987671, -0.023670854046940804, -0.009567641653120518, 0.0038780481554567814, 0.006977803073823452, 0.01086256094276905, -0.001045831828378141, -0.0068335505202412605, -0.014854669570922852, -0.013754323124885559, 0.01529749110341072, -0.0020329561084508896, -0.022905981168150902, 0.03153430297970772, 0.02619359828531742, 0.03105122409760952, -0.027535485103726387, 0.03558679670095444, 0.022852305322885513, 0.003488901536911726, -0.0046563418582081795, 0.008541099727153778, 0.01692117191851139, 0.007635326590389013, 0.025106672197580338, 0.006726199761033058, -0.012539917603135109, 0.01187568437308073, 3.29443282680586e-05, 0.009118109941482544, -0.029306773096323013, -0.02619359828531742, -0.00011280222679488361, 0.00986956525593996, 0.01188910286873579, -0.017511602491140366, -0.06253185123205185, -0.0170016847550869, 0.009144947864115238, 0.01819596253335476, 0.004169908352196217, 0.02871634252369404, 0.003067885059863329, 0.01653202623128891, -0.005964679643511772, 0.023603759706020355, -0.0073401122353971004, -0.018276477232575417, -0.0003956464643124491, 0.0010189940221607685, -0.009420034475624561, -0.005565468687564135, 0.014599710702896118, 0.00024049099010881037, -0.004424866288900375, 0.01188910286873579, -0.011385896243155003, 0.005330638960003853, 0.01618313603103161, -0.005498374812304974, -0.006196154747158289, 0.007957379333674908, -0.034057047218084335, 0.009809181094169617, 0.0031769131310284138, 0.006789939012378454, 0.031668491661548615, 0.006360535975545645, -0.018772974610328674, -0.01027884054929018, 0.014036118984222412, 0.015310910530388355, -0.013955606147646904, -0.03070233389735222, 0.014425265602767467, -0.007259598933160305, -0.004012236837297678, -0.00951396580785513, 0.002103405073285103, 0.005934487096965313, 0.0002482487470842898, -0.014787575230002403, -0.013888511806726456, 0.019095025956630707, -0.020665032789111137, -0.01247282326221466, -0.059955429285764694, -0.004398028831928968, -0.003488901536911726, -0.00849413312971592, 0.02826010249555111, 0.0036264448426663876, 0.004559054970741272, 0.005196450278162956, -0.015941595658659935, 0.03786800056695938, 0.009064434096217155, -0.0004457574978005141, 0.0022979783825576305, 0.024113677442073822, 3.871024455293082e-05, 0.02420760877430439, -0.038136377930641174, -0.008339816704392433, 0.02826010249555111, 0.005803653504699469, 0.0070985727943480015, 0.005682883784174919, -0.01771288365125656, 0.02216794341802597, -0.026113085448741913, -0.009473709389567375, -0.0005212385440245271, -0.017283480614423752, 0.025549493730068207, 0.00388811226002872, -0.009312683716416359, -0.015391423366963863, 0.005998226813971996, -0.01857169158756733, 0.0038109540473669767, 0.004226938355714083, -0.003509029746055603, 0.009721958078444004, 0.027132919058203697, -0.02788437344133854, 0.004555700346827507, 0.012023291550576687, 0.0023600405547767878, -0.031212249770760536, -0.0005178838036954403, -0.010453285649418831, -0.0060284193605184555, 0.010010463185608387, 0.002708930755034089, 0.01973913051187992, -0.03298353776335716, -0.029709339141845703, -0.07332060486078262, 0.02301333099603653, -0.010319096967577934, -0.026086248457431793, 0.011647563427686691, 0.008688706904649734, 0.02022220939397812, -0.0009510611416772008, -0.008266013115644455, -0.027938049286603928, -0.004954911302775145, 0.009292555041611195, 0.0020195371471345425, -0.0001283177698496729, -0.0035123846028000116, -0.009480418637394905, 0.012687524780631065, 0.006521562114357948, 0.0033882600255310535, 0.010057429783046246, 0.014975438825786114, 0.0009904790204018354, 0.004814012907445431, 0.010332516394555569, -0.023509828373789787, 0.022744953632354736, 0.012580174021422863, 0.02987036481499672, -0.003108141478151083, -0.030729170888662338, 0.0047033075243234634, 0.00950054731220007, -0.0039183045737445354, -0.003921659663319588, 0.01026542205363512, 0.009433452971279621, -0.00045120890717953444, 0.013646972365677357, 0.015324329026043415, 0.04323554039001465, -0.018383827060461044, -0.015163302421569824, 0.02184589020907879, -0.006632267497479916, -0.006890580523759127, 0.0024858422111719847, -0.0035559958778321743, -9.529481758363545e-05, 0.006340407766401768, 0.029548311606049538, 0.012553336098790169, 0.005417861510068178, 0.0019004448549821973, -0.001952442922629416, -0.012090385891497135, -0.04283297434449196, 0.010949783027172089, -0.00865515973418951, -0.007782934233546257, -0.025321373715996742, 0.021993499249219894, 0.008983921259641647, 0.009460290893912315, 0.00454899063333869, -0.006065321154892445, -0.007635326590389013, -0.015364585444331169, -0.021483581513166428, 0.005079035647213459, -0.021282298490405083, -0.009111400693655014, -0.014492359943687916, 0.01733715645968914, 0.001253823982551694, -0.006635622121393681, -0.0036163805052638054, -0.019242633134126663, 0.00825259368866682, -0.015082789584994316, 0.04409434646368027, -0.005629208404570818, 0.0036331540904939175, -0.045409396290779114, -0.0038377917371690273, 0.021094435825943947, 0.010171489790081978, 0.006196154747158289, 0.003884757636114955, -0.004465123172849417, -0.01510962750762701, -0.005682883784174919, -0.00095609319396317, 0.012191027402877808, 0.0033027150202542543, 0.022744953632354736, 0.054239001125097275, -0.0022308840416371822, -0.019202377647161484, 0.021067596971988678, -0.0037405050825327635, 0.034889016300439835, -0.01655886322259903, -0.015163302421569824, -0.03631141409277916, -0.01580740697681904, -0.012204445898532867, -0.01188239362090826, -0.0278306994587183, -0.01969887502491474, 0.01512304600328207, -0.0078768664970994, 0.014143469743430614, -0.013754323124885559, 0.013157184235751629, -0.007038187701255083, -0.004683179315179586, -0.012278249487280846, -0.024905389174818993, -0.017055360600352287, 0.021054178476333618, 0.0170016847550869, 0.02497248351573944, 0.032822512090206146, -0.012452694587409496, 0.018410664051771164, -0.005696302745491266, 0.025227442383766174, -0.019524428993463516, 0.02418077178299427, -0.003884757636114955, -0.01333162933588028, 0.024717524647712708, -0.01451919786632061, -0.013955606147646904, -0.013794579543173313, -0.01190252136439085, -0.011734786443412304, -0.0034285166766494513, -0.0063169244676828384, 0.07723890990018845, 0.0002572645607870072, -0.005283672828227282, -0.005431280471384525, -0.012258120812475681, -0.006155898328870535, 0.0170016847550869, 0.01890716329216957, -0.002978985197842121, -0.017954424023628235, 0.009708539582788944, -0.009131528437137604, -0.008011054247617722, -0.005666110198944807, -0.0032758773304522038, 0.006387373432517052, -0.029360448941588402, 0.03749227151274681, -0.014988857321441174, 0.03741176053881645, 0.05818414315581322, 0.002148693660274148, -0.005048843100667, -0.001176665537059307, -0.016290485858917236, 0.0008533551008440554, 0.04312818869948387, 0.004814012907445431, -0.008212337270379066, -0.0006529110250994563, 0.0052467710338532925, -0.01494860090315342, -0.01332492008805275, -0.03062182106077671, -0.03140011429786682, 0.014572872780263424, -0.01026542205363512, 0.01309008989483118, 0.038190051913261414, 0.011969615705311298, -0.0031467208173125982, -0.0021386295557022095, -0.029172584414482117, -0.0477442741394043, -0.011385896243155003, 0.0023013330064713955, 0.00656852824613452, -0.03067549504339695, -0.008514261804521084], "9451cf88-0557-48bb-8a7c-dcc314a20424": [-0.012418576516211033, -0.037142056971788406, 0.0020194395910948515, -0.01547348964959383, -0.0070760310627520084, 0.01518931146711111, -0.027281083166599274, -0.03606218099594116, -0.01486250665038824, -0.0033284341916441917, 0.010884015820920467, 0.016411276534199715, -0.028559884056448936, -0.007282060105353594, -0.002486557001248002, -0.0009546602959744632, 0.009519961662590504, -0.0004759980656672269, 0.021043376997113228, -0.005392276681959629, 0.01307929027825594, -0.004035326652228832, -0.02706794999539852, -0.02350151725113392, -0.01381815318018198, 0.010017273016273975, 0.023984618484973907, -0.01528877392411232, -0.002207707380875945, -0.007381522096693516, 0.04356447979807854, 0.012759589590132236, -0.03282255306839943, -0.0006100945174694061, -0.01238305401057005, -0.0014750611735507846, -0.0077935801818966866, -0.010209092870354652, 0.015089849010109901, 0.0018951117526739836, 0.015828711912035942, 0.01146658044308424, 0.011168193072080612, 0.022293759509921074, -0.009036858566105366, -0.0052572921849787235, -0.0023924231063574553, -0.008411667309701443, -0.0038115368224680424, 0.028787225484848022, 0.012716962955892086, 0.010578524321317673, -0.03307831287384033, -0.0033408671151846647, 0.014052599668502808, 0.006646211724728346, 0.004909174051135778, 0.009456020779907703, -0.005768812261521816, 0.0039181034080684185, 0.03725573047995567, -0.0029021673835814, -0.021696986630558968, 0.010159362107515335, 0.007900146767497063, -0.00503705395385623, -0.007850416004657745, -0.009420499205589294, -0.01729222759604454, 0.02705373987555504, 0.0028559884522110224, 0.04103529453277588, -0.016254978254437447, -0.012844842858612537, 0.04271194711327553, -0.0021650807466357946, -0.005836304742842913, 0.021284928545355797, 0.013377676717936993, 0.006607137154787779, 0.007093791849911213, -0.008908978663384914, 0.006770539563149214, -0.026584846898913383, 0.00856086052954197, -0.007722535636276007, -0.010479061864316463, 0.03330565616488457, -0.004678279627114534, -0.006489913910627365, 0.01896887831389904, 0.022023791447281837, 0.020901288837194443, 0.0062092882581055164, -0.004660518374294043, -0.009328140877187252, -0.05166355147957802, 0.02149806171655655, -0.020901288837194443, -0.04194466397166252, -0.02591702900826931, -0.006823822855949402, -0.006319406908005476, -0.004685383755713701, -0.029611341655254364, -0.023245755583047867, 0.01422310620546341, 0.006376242730766535, -0.0077935801818966866, 0.0024190647527575493, -0.028559884056448936, 0.014791462570428848, -0.0021686330437660217, -0.028019946068525314, -0.020830243825912476, 0.011431057937443256, 0.05211823433637619, 0.007374417968094349, -0.022464266046881676, -0.015018804930150509, 0.03157217055559158, -0.0022325729951262474, 0.01744852587580681, 0.004177415743470192, 0.04242776706814766, 0.0184005219489336, 0.015445071272552013, -0.016667036339640617, 6.04433189437259e-05, -0.015231938101351261, 0.03134482726454735, -0.009704677388072014, 0.00607075123116374, 0.008511129766702652, -0.009463125839829445, 0.031827930361032486, 0.001889783306978643, -0.0074454620480537415, -0.01905413158237934, -0.009242887608706951, 0.010884015820920467, 0.0021171257831156254, 0.0032094346825033426, -0.01570083200931549, -0.0013338602147996426, 0.026641681790351868, -0.004447384737432003, 0.004905621986836195, -0.006287436932325363, -0.005051263142377138, -0.0026783770881593227, -0.013008245266973972, 0.003593074856325984, 0.024965032935142517, -0.010024377144873142, 0.005637379828840494, 0.0023569008335471153, 0.019409354776144028, -0.02371465042233467, -0.009477335028350353, -0.0026872577145695686, 0.019139384850859642, 0.026087535545229912, -0.04211517050862312, -0.0004808823869097978, 0.02787785604596138, 0.0116939228028059, 0.012397263199090958, -0.006699495017528534, -0.018613655120134354, -0.0029838683549314737, 0.027707349509000778, -0.006901971995830536, 0.013654750771820545, -0.009875183925032616, 0.007836206816136837, 3.6160534364171326e-05, -0.007807789370417595, 0.0051400684751570225, -0.006134691648185253, -0.010265928693115711, 0.0050015319138765335, 0.02350151725113392, 0.047685060650110245, -0.009548379108309746, -0.02567547746002674, 0.020261887460947037, 0.020901288837194443, 0.002451034728437662, -0.001969708362594247, 0.010599837638437748, 0.03802300989627838, 0.0008183436584658921, -0.007072478532791138, -0.5910901427268982, -0.03273729979991913, -0.01197810098528862, -0.010294346138834953, 0.02158331498503685, 0.0012068682117387652, 0.0008130153291858733, 0.01537402719259262, -0.0328509695827961, 0.028019946068525314, -0.004379892721772194, 0.0030016296077519655, -0.009328140877187252, -0.019395144656300545, -0.002172185108065605, -0.023288382217288017, 0.005765260197222233, -0.006802509538829327, 0.004195176996290684, 0.015558742918074131, -0.03455603867769241, 0.015530324541032314, -0.0043905493803322315, 0.03225419670343399, -0.01165129616856575, 0.0005008636508136988, -0.0011473684571683407, -0.015672413632273674, 0.001756574958562851, 0.008312204852700233, 0.009676259011030197, 0.0001263259764527902, -0.0043656835332512856, -0.015715040266513824, 0.056636665016412735, -0.04464435577392578, 0.002424393082037568, 0.03216894343495369, 0.00336218043230474, 0.026030700653791428, -0.029668178409337997, -0.027664722874760628, 0.03069121763110161, -0.010777448303997517, 0.008539547212421894, 0.01631181500852108, -0.006827375385910273, -0.025107121095061302, 0.010173570364713669, -0.026769563555717468, 0.0011145103489980102, -0.014763044193387032, 0.006273228209465742, -0.017420107498764992, 0.010393808595836163, 0.00966915488243103, 0.003893237793818116, -0.03532331809401512, 0.005136516410857439, -0.036857880651950836, -0.018698908388614655, 0.00049553532153368, 0.0108129708096385, -0.007672804407775402, -0.014905133284628391, -0.009143425151705742, -0.009335245937108994, 0.0005599193391390145, 0.01393892802298069, -0.018230015411973, -0.0035912988241761923, -0.003960730042308569, -0.0058043347671628, 0.007843310944736004, 0.01487671583890915, 0.012844842858612537, 0.019608277827501297, -0.043507643043994904, -0.015132475644350052, 0.029668178409337997, -0.009875183925032616, 0.0035859704948961735, -0.006394003983587027, -0.006408212706446648, -0.002893286757171154, 0.002649959409609437, -0.025817567482590675, 0.020830243825912476, 0.007864625193178654, 0.017803749069571495, 0.0197787843644619, 0.019196219742298126, 0.020048754289746284, -0.023927783593535423, -0.0013951361179351807, 0.009051067754626274, -0.018059508875012398, -0.013029558584094048, 0.012134398333728313, -0.023771485313773155, -0.04680410772562027, 0.005289262160658836, 0.006806062068790197, -0.014230210334062576, 0.016993841156363487, -0.014208897016942501, -0.004102819133549929, -0.013178752735257149, 0.03287938982248306, 0.004418967291712761, -0.006628450471907854, -0.02559022419154644, -0.005275052972137928, -0.006202183663845062, 0.022720027714967728, -0.030066026374697685, 0.015999218448996544, 0.005900244694203138, -0.0020816035103052855, 0.006894867401570082, 0.006802509538829327, 0.022265342995524406, 0.028233079239726067, 0.002694362075999379, -0.006116930395364761, 0.028034154325723648, 0.03282255306839943, -0.007409940008074045, 0.00024488146300427616, -0.012340427376329899, -0.011558937840163708, -0.0007544036488980055, 0.02820466086268425, -0.034641291946172714, 0.018372103571891785, -0.03316356614232063, 0.022393222898244858, -0.01003858633339405, 0.019523024559020996, -0.02317471243441105, -0.013555288314819336, -0.003950073383748531, 0.017064886167645454, -0.01543086301535368, -0.01966511458158493, -0.03913130238652229, -0.009292619302868843, 0.02064552716910839, 0.01404549553990364, 0.002127782441675663, 0.013065081089735031, -0.009818348102271557, -0.006305198185145855, 0.021725405007600784, -0.013342155143618584, 0.005424246657639742, -0.009946228004992008, -0.031827930361032486, -0.0075378199107944965, 0.007108001038432121, -0.00775805814191699, 0.004873652011156082, -0.017462734133005142, 0.004561055917292833, -0.015359818004071712, -0.030435457825660706, -0.009491543285548687, 0.001093197031877935, -0.0108129708096385, -0.025320256128907204, -0.03563591465353966, -0.025533389300107956, 0.002834675135090947, 0.007658595684915781, -0.02310366742312908, 0.006621346343308687, -0.020574484020471573, 0.026925859972834587, -0.03069121763110161, -0.02182486653327942, -0.01607026346027851, 0.0066568683832883835, -0.017690077424049377, -0.013732898980379105, 0.025988074019551277, 0.02591702900826931, 0.021739613264799118, 0.011402640491724014, -0.012525143101811409, -0.0038257455453276634, -0.017263811081647873, 0.0214554350823164, -0.013825257308781147, 0.02101495862007141, 0.03870503604412079, -0.0036179404705762863, 0.02811940759420395, -0.0005248411325737834, -0.005442007910460234, 0.02955450676381588, 0.0330214761197567, 0.03069121763110161, 0.011011895723640919, -0.030520711094141006, 0.02252110280096531, -0.017931628972291946, 0.005633827764540911, -0.0043372660875320435, 0.019182011485099792, -0.0047457716427743435, 0.003726283321157098, 0.01007410790771246, -0.021881701424717903, 0.00753071578219533, 0.00013509552809409797, 0.02387094683945179, -0.008674532175064087, -0.00021424352598842233, 0.024666646495461464, 0.001584292040206492, 0.014315464533865452, -0.011942578479647636, 0.02134176343679428, -0.02080182544887066, 0.013299527578055859, -0.03560749813914299, 0.011331595480442047, 0.004571712575852871, 0.005122307687997818, -0.013690272346138954, -0.0010381375905126333, -0.022066418081521988, 0.013327945955097675, 0.008226951584219933, 0.03222578018903732, -0.03756832331418991, 0.03123115748167038, -0.010685090906918049, 0.031657423824071884, 0.020134007558226585, -0.0023959754034876823, -0.0017015155171975493, -0.006383347325026989, -0.01683754287660122, 0.009100798517465591, 0.009456020779907703, 0.04910594969987869, 0.011189506389200687, 0.00434437021613121, 0.019636696204543114, -0.027892066165804863, 0.013477139174938202, -0.030037609860301018, 0.02541971765458584, 0.009328140877187252, -0.015672413632273674, 0.00024798966478556395, 0.03927339240908623, 0.014720417559146881, 0.023572560399770737, 0.016738081350922585, 0.019764576107263565, 0.023899365216493607, 0.00554857449606061, 0.014116539619863033, -0.01463516429066658, -0.026599055156111717, -0.011374222114682198, 0.010351181961596012, -0.027565261349081993, -0.025604432448744774, -0.006095617078244686, -0.01639706827700138, 0.001618926296941936, 0.020872870460152626, -0.03228261321783066, 0.020205052569508553, 0.024581393226981163, 0.027195829898118973, -0.015629786998033524, -0.0331919826567173, -0.025320256128907204, 0.03543699160218239, -0.004791950806975365, -0.00430174358189106, -0.008511129766702652, 0.01982141099870205, -0.024879779666662216, -0.0007015643059276044, 0.01626918837428093, -0.013192960992455482, 0.01030145026743412, 0.025647059082984924, 0.007044061087071896, -0.01607026346027851, -0.012809321284294128, 0.01334925927221775, -0.02615858055651188, -0.04026801511645317, -0.024751899763941765, 0.017519570887088776, -0.0011047418229281902, 0.006376242730766535, -0.009605214931070805, 0.03952915221452713, -0.008894769474864006, -0.027778394520282745, -0.02260635606944561, -0.022776862606406212, -0.004859442822635174, 0.009797034785151482, -0.017306437715888023, -0.030634382739663124, 0.009228678420186043, 0.003136614104732871, 0.002260990906506777, 0.0140383904799819, -0.03606218099594116, 0.016524948179721832, 0.011331595480442047, -0.021185465157032013, 0.008837934583425522, -0.027693141251802444, -0.0083832498639822, -0.008781098760664463, 0.03879028931260109, -0.0092002609744668, 0.003598403185606003, -0.030094444751739502, 0.011757862754166126, -0.02885827049612999, -0.013583705760538578, -0.0025824671611189842, -0.028389377519488335, 0.017604824155569077, -0.0027281083166599274, 0.01794583722949028, -0.004539742600172758, 0.0033337625209242105, -0.0017192765371873975, 0.0003325770085211843, -0.023032622411847115, 0.0266132652759552, 0.0016029411926865578, -0.0004973114118911326, -0.0022805279586464167, 0.006273228209465742, 0.013015350326895714, -0.013690272346138954, 0.0011704579228535295, -0.004596578422933817, 0.038903962820768356, -0.0017912090988829732, -0.019466189667582512, -0.02334521897137165, 0.012688545510172844, -0.019935082644224167, 0.02374306693673134, -0.008134594187140465, 0.00540648540481925, 0.02844621241092682, 0.024709273129701614, -0.008553756400942802, -0.004749324172735214, 0.00041871843859553337, 0.012475412338972092, 0.012660128064453602, 0.00925709679722786, 0.008447189815342426, -0.016979632899165154, 0.002397751435637474, -0.0014235539129003882, -0.0027671828866004944, -0.012013622559607029, 0.016567574813961983, -0.010166466236114502, -0.040324851870536804, -0.025732312351465225, -0.007772266864776611, 0.006333616096526384, -0.01818738877773285, -0.014422031119465828, -0.002887958427891135, -0.0023036175407469273, -0.0015540982130914927, -0.03125957399606705, 0.018741535022854805, -0.01058562844991684, -0.032311033457517624, -0.013455825857818127, -0.019224638119339943, -0.017079094424843788, -0.025774940848350525, -0.02075919881463051, 0.016624409705400467, -0.047969236969947815, -0.042200423777103424, -0.0005634715780615807, 0.013420303352177143, 0.0036516867112368345, 0.024169335141777992, 0.0062625715509057045, -0.007743848953396082, 0.019366726279258728, -0.023970410227775574, -0.017519570887088776, -0.026840606704354286, -0.024638228118419647, 0.023089459165930748, 0.012269383296370506, 0.010315659455955029, 0.009683363139629364, -0.008404563181102276, -0.002310721902176738, -0.008980022743344307, 0.017789538949728012, 0.012248069979250431, 0.00146884482819587, -0.002543392591178417, -0.0020816035103052855, 0.00915763434022665, 0.0031312857754528522, 0.014834089204668999, -0.015800293534994125, 0.034641291946172714, -0.04518429562449455, -0.03358983248472214, 0.010152257047593594, -0.003628597129136324, -0.004806159529834986, 0.03148691728711128, -0.01533140055835247, 0.011523416265845299, -0.006745674181729555, 0.026400132104754448, -0.02014821581542492, 0.021597523242235184, 0.0036143881734460592, 0.012120189145207405, -0.011629982851445675, -0.014052599668502808, 0.01187153346836567, -0.021839074790477753, 0.0010399137390777469, 0.0038257455453276634, -0.014052599668502808, 0.02432563155889511, 0.015800293534994125, 0.004376340191811323, 0.012482516467571259, -0.019451981410384178, -0.030435457825660706, -0.022009581327438354, -0.00016895266890060157, -0.011210819706320763, 0.033106729388237, 0.017633242532610893, -0.029582925140857697, -0.03279413655400276, -0.006962359882891178, -0.012603292241692543, 0.009065276943147182, -0.006994329858571291, -0.01293720118701458, -0.016951214522123337, 0.01611289009451866, -0.021625941619277, -0.011850220151245594, 0.011580251157283783, -0.01481988001614809, -0.0266985185444355, 0.014009973034262657, 0.016013426706194878, 0.007864625193178654, 0.01202072761952877, 0.0033746131230145693, -0.026385921984910965, -0.024496139958500862, 0.0012716962955892086, -0.014564120210707188, -0.010926642455160618, 0.01067088171839714, 0.036602120846509933, 0.03896079584956169, 0.022663190960884094, -0.013612124137580395, 0.004593025892972946, 0.018386313691735268, 0.03978491201996803, 0.004166759084910154, -0.011864429339766502, 0.014173375442624092, -0.013796839863061905, -0.006603585090488195, 0.013001141138374805, 0.018741535022854805, -0.0047706374898552895, -0.01962248794734478, 0.011928369291126728, 0.061211928725242615, -0.014663581736385822, 0.010578524321317673, -0.010145152918994427, -0.04933329299092293, 0.008411667309701443, -0.015842920169234276, 0.010003063827753067, 0.0006802509888075292, -0.014620955102145672, -0.017235392704606056, 0.004983770661056042, 0.005935766734182835, 0.010265928693115711, 0.012788007967174053, 0.005061919800937176, -0.029298746958374977, 0.005910901352763176, -0.005090337712317705, 0.016851752996444702, -0.023799903690814972, 0.006461495999246836, -0.009086590260267258, 0.010130943730473518, -0.00020558499090839177, -0.019565651193261147, 0.023146294057369232, 0.00775805814191699, 0.015956591814756393, 0.004624996334314346, -0.0027316606137901545, -0.016155516728758812, -0.024993451312184334, -0.006663972977548838, 0.009860974736511707, -0.01700804941356182, -0.0025718105025589466, -0.02713899500668049, -0.029213493689894676, 0.024780316278338432, 0.0331919826567173, 0.003113524755463004, 0.01753377914428711, -0.012454099021852016, -0.01363343745470047, 0.0032218676060438156, -0.014372299425303936, 0.052715010941028595, 0.004617891740053892, 0.017547987401485443, 0.056267235428094864, 0.02709636650979519, 0.013512661680579185, -0.03168584033846855, -0.00014364307571668178, -0.0016135979676619172, 0.04109213128685951, 0.07218120247125626, -0.033135149627923965, 0.0021419913973659277, 0.017519570887088776, -0.007750953547656536, -0.020659737288951874, -0.03103223256766796, 0.025576015934348106, 0.014173375442624092, 0.006333616096526384, -0.03339090943336487, 0.012198338285088539, -0.015871338546276093, 0.015018804930150509, -0.019182011485099792, -0.01973615773022175, -0.0003088215016759932, 8.103511936496943e-05, -0.003932312596589327, 0.021427016705274582, 0.01220544334501028, 0.015885546803474426, 0.002884406130760908, -0.0008480935939587653, -0.0054206945933401585, -0.010685090906918049, -0.021370181813836098, 0.01486250665038824, 0.006227049510926008, 0.042740363627672195, -0.0023995274677872658, -0.0024759003426879644, -0.0011695699067786336, -0.006674629636108875, 0.0016739857383072376, -0.004063744563609362, -0.028517257422208786, 0.05746078118681908, -0.017476944252848625, -0.00037675778730772436, -0.01716434769332409, -0.007115105167031288, 0.01868470013141632, -0.004379892721772194, -0.01537402719259262, 0.019892456009984016, -0.023728858679533005, 0.00981124397367239, 0.015999218448996544, -0.019224638119339943, 0.0141236437484622, -0.00819853413850069, -0.010884015820920467, -0.006408212706446648, -0.026641681790351868, -0.0181447621434927, 0.03913130238652229, -0.05464741960167885, -0.001783216604962945, -0.020574484020471573, -0.02112863026559353, 0.01679491624236107, -0.0035717615392059088, -0.009555483236908913, 0.018485775217413902, 0.04117738455533981, -0.030151279643177986, 0.008326414041221142, -0.011494997888803482, 0.004184520337730646, -0.004461593925952911, -0.0031579274218529463, -0.022634774446487427, 0.004287534859031439, 0.030350204557180405, -0.006308750249445438, 0.001539001241326332, -0.03094697929918766, 0.014976178295910358, 0.017505360767245293, -0.004561055917292833, 0.008880561217665672, 0.033106729388237, 0.023885156959295273, 0.003600179450586438, -0.0056906635873019695, -0.021427016705274582, 0.0005625835037790239, 0.01044353935867548, 0.008170115761458874, 0.0011615774128586054, -0.017718495801091194, 0.029440835118293762, -0.008312204852700233, -0.007665700279176235, -0.005928662605583668, -0.028744598850607872, -0.020219260826706886, -0.0007393066771328449, 0.006784748751670122, -0.0018968877848237753, 0.002834675135090947, -0.029412418603897095, -0.009939123876392841, -0.018613655120134354, -0.00192885787691921, -0.002561153843998909, -0.01459253765642643, 0.00915763434022665, 0.02935558184981346, -0.01888362504541874, 0.001335636363364756, 0.01683754287660122, -0.03222578018903732, 0.012518038973212242, -0.020787617191672325, -0.00985387060791254, -0.017917418852448463, 0.0054349033161997795, 0.04663360118865967, -9.25798449316062e-05, -0.012617500498890877, -0.004703145008534193, 0.002101140795275569, -0.03151533380150795, -0.034527622163295746, -0.02014821581542492, 0.030094444751739502, 0.03861978277564049, 0.006923285312950611, -0.0017041796818375587, 0.00738862669095397, -0.012745381332933903, 0.01700804941356182, -0.03358983248472214, -0.009896497242152691, -0.009690468199551105, 0.0023462441749870777, -0.0010701075661927462, -0.004585921764373779, -0.039756495505571365, -0.008532443083822727, 0.00815590750426054, 0.01067088171839714, 0.003783118911087513, 0.03941548243165016, 0.010251719504594803, -0.011253446340560913, 0.015118266455829144, -0.00775805814191699, -0.016780707985162735, -0.009981750510632992, -0.014692000113427639, -0.04813974350690842, 0.003946521319448948, 0.0028257945086807013, 0.0030460322741419077, 0.002893286757171154, 0.0054349033161997795, 0.002871973440051079, -0.0051791430450975895, -0.0030993157997727394, -0.03199843689799309, -0.00727495551109314, -0.006461495999246836, -0.014763044193387032, 0.022776862606406212, 0.015544533729553223, 0.0026908100116997957, 0.028503049165010452, 0.02040397748351097, -0.0024616913869976997, -0.027650514617562294, 0.011985205113887787, -0.01807371713221073, -0.009903601370751858, 0.03651686757802963, -0.033135149627923965, 0.018755745142698288, 0.007083135191351175, 0.026769563555717468, -0.018102135509252548, -0.003879029070958495, -0.011672609485685825, -0.041433144360780716, -0.05572729557752609, 0.023771485313773155, 0.04447384923696518, -0.025078704580664635, 0.003999804612249136, 0.008091967552900314, -0.026385921984910965, 0.013853674754500389, -0.035266485065221786, 0.014578328467905521, -0.041148968040943146, 0.01781795732676983, 0.02513553947210312, 0.010031481273472309, -0.025647059082984924, -0.0066177938133478165, 0.02129913680255413, -0.0363747775554657, -0.02108600363135338, 0.23393528163433075, -0.01672387309372425, -0.008937396109104156, 0.0395575687289238, -0.006955255288630724, 0.025036077946424484, 0.003839954501017928, 0.0045823692344129086, -0.020716572180390358, 0.030264951288700104, 0.0150045957416296, -0.012418576516211033, -0.0023782141506671906, -0.013718690723180771, 0.0164681114256382, 0.012908783741295338, -0.011260551400482655, -0.022577937692403793, -0.019466189667582512, -0.006600033026188612, 0.03131641075015068, 0.015970800071954727, -0.010635360144078732, 7.753839599899948e-05, 0.004319504834711552, -0.002898615086451173, -0.013569497503340244, -0.026869025081396103, 0.015601369552314281, -0.000597217702306807, -0.015558742918074131, -0.003447433700785041, 0.002742317272350192, 0.007353104650974274, -0.03290780633687973, -0.004422519356012344, 0.012070458382368088, 0.01128186471760273, 0.0329362228512764, -0.00888766534626484, -0.003747596638277173, -0.010550105944275856, 0.015118266455829144, -0.008397458121180534, -0.023643605411052704, -0.0009013769449666142, -0.0033657324966043234, 0.0031312857754528522, -0.016709662973880768, 0.025576015934348106, -0.01770428568124771, -0.016056053340435028, 0.04029643163084984, -0.00371562666259706, 0.0016997393686324358, -0.007608864456415176, 0.028460420668125153, -0.015771877020597458, 0.006344272755086422, 0.02129913680255413, -0.004124132450670004, 0.03839243948459625, -0.02628646045923233, 0.010862702503800392, -0.04757138714194298, -0.008290891535580158, -0.029526088386774063, 0.007353104650974274, -0.0266985185444355, -0.01486250665038824, -0.005100994370877743, -0.0032804792281240225, -0.02203799970448017, 0.00868874043226242, -0.036971550434827805, -0.03179951384663582, 0.037625160068273544, 0.012766694650053978, 0.016382858157157898, 0.027565261349081993, 0.01007410790771246, -0.020943915471434593, 0.014947759918868542, 0.007729640230536461, -0.03330565616488457, -0.035664331167936325, 0.007623073644936085, -0.0016331351362168789, -0.0051400684751570225, 0.013839466497302055, 0.007171940989792347, -0.009363663382828236, 0.004614339210093021, -0.009910705499351025, -0.0071293143555521965, -0.005953527987003326, 0.008454293943941593, -0.005285709630697966, -0.013917614705860615, -0.024822942912578583, -0.013114812783896923, 0.017633242532610893, 0.013043767772614956, 0.012986931949853897, 0.0024403780698776245, -0.02186749316751957, 0.010848493315279484, -0.013455825857818127, 0.013505556620657444, -0.027195829898118973, -0.014947759918868542, -0.0563240684568882, 0.023799903690814972, 0.00198214128613472, 0.004497115965932608, 0.005360306706279516, -0.018116343766450882, -0.00385771575383842, 0.005147173069417477, 0.007559133227914572, 0.028787225484848022, -0.0266985185444355, 0.008447189815342426, -0.007381522096693516, -0.027366336435079575, -0.02371465042233467, -0.02436825819313526, 0.008944501169025898, -0.014471761882305145, -0.017718495801091194, 0.018386313691735268, -0.02252110280096531, 0.02632908709347248, 0.00883082952350378, -0.008496920578181744, 0.011132671497762203, -0.012788007967174053, -0.021569106727838516, 0.001539001241326332, -0.009065276943147182, 0.010891119949519634, 0.010947955772280693, 0.002783167874440551, -0.005296366289258003, -0.0006038781139068305, -0.018201597034931183, 0.00944181252270937, 0.012731172144412994, 0.010791657492518425, -0.005299918819218874, -0.012091771699488163, -0.019082549959421158, -0.002490109298378229, 0.008582173846662045, 0.0028506601229310036, -0.00938497669994831, -0.005470425356179476, -0.04754297062754631, 0.003536239266395569, 0.013356363400816917, -0.04438859596848488, -0.004688936285674572, 0.026471175253391266, -0.01547348964959383, -0.002676601056009531, -0.01467779092490673, -0.18266957998275757, -0.00015119154704734683, 0.03634636104106903, -0.019409354776144028, 0.036460030823946, -0.008582173846662045, 0.02084445208311081, -0.011537624523043633, -0.003026495222002268, -0.0298386849462986, 0.007885938510298729, 0.016411276534199715, -0.002326706890016794, -0.01688016951084137, -0.005058367270976305, -0.003344419179484248, 0.007722535636276007, 0.017931628972291946, 0.04640625789761543, 0.012212547473609447, 0.033106729388237, -0.01761903241276741, -0.007765162270516157, 0.03580642119050026, 0.016283396631479263, -0.0012095323763787746, -0.01598501019179821, -0.02550497092306614, 0.0329362228512764, -0.014905133284628391, -0.00139780028257519, 0.004596578422933817, 0.012120189145207405, -0.008248264901340008, 0.00044735826668329537, -0.004177415743470192, 0.01585713028907776, 0.0052182176150381565, -0.014436239376664162, -0.006148900371044874, 0.0013258677208796144, 0.021100211888551712, 0.006720808334648609, 0.0034847320057451725, -0.009619423188269138, 0.02624383382499218, 0.017505360767245293, -0.011345804668962955, -0.01067088171839714, -0.006884210743010044, 0.005086785182356834, -0.02840358577668667, 0.010798761621117592, 0.0009093694388866425, 0.01643969491124153, -0.003385269781574607, 0.004919830709695816, -0.004660518374294043, -0.010372495278716087, -0.005424246657639742, -0.01040091272443533, -0.024354049935936928, 0.030719636008143425, -0.006692390888929367, -0.015075639821588993, -0.004060192499309778, -0.013761317357420921, 0.01777533069252968, -0.002287632552906871, 0.0009062612662091851, -0.010351181961596012, -0.006195079069584608, 0.007200358901172876, 0.018343687057495117, -0.0016073815058916807, 0.015345608815550804, 0.009022650308907032, 0.027366336435079575, 0.0034580903593450785, -0.007282060105353594, -0.034158188849687576, 0.060075219720602036, 0.008141698315739632, -0.012859052047133446, 1.824677747208625e-05, 0.00035855264286510646, 0.033334072679281235, -0.010599837638437748, -0.021881701424717903, -0.04671885445713997, 0.02293316088616848, -0.010315659455955029, -0.00837614480406046, -0.014933551661670208, -0.00017194985412061214, 0.016894379630684853, -0.01929568313062191, 0.011502102017402649, -0.010017273016273975, 0.004070849157869816, -0.003893237793818116, 0.006781196221709251, -0.01798846386373043, 0.030066026374697685, 0.023856738582253456, 0.0071293143555521965, -0.027337918058037758, 0.021114422008395195, 0.016084471717476845, 0.01547348964959383, 0.008965814486145973, -0.019935082644224167, 0.00797119177877903, 0.005680006928741932, -0.008397458121180534, 0.04262669384479523, -0.024211961776018143, -0.015075639821588993, 0.014905133284628391, 0.016667036339640617, -0.008312204852700233, -0.03753990679979324, -0.01018067542463541, 0.029810266569256783, -0.0075378199107944965, -0.018116343766450882, -0.052715010941028595, -0.0035504482220858335, 0.0017947613960132003, 0.03839243948459625, -0.001618926296941936, 0.04248460382223129, -0.011573147028684616, 0.03253837674856186, -0.015530324541032314, 0.04112054780125618, -0.0007450790726579726, -0.028218870982527733, -0.008667427115142345, 0.006290989462286234, -0.0028133615851402283, 0.01705067604780197, 0.009718885645270348, -0.010550105944275856, 0.011502102017402649, 0.03785250335931778, 0.01496196910738945, -0.02362939715385437, 0.025973863899707794, 0.0034651949536055326, 0.005800782237201929, 0.0010328092612326145, -0.027991527691483498, 0.02522079274058342, 0.00566224567592144, 0.02060290053486824, 0.0396428219974041, 0.0019626040011644363, -0.0266132652759552, -0.02881564386188984, 0.008425876498222351, 0.01220544334501028, -0.014152062125504017, -0.03143008053302765, 0.014706209301948547, -0.010962164029479027, -0.008631905540823936, 0.019139384850859642, 0.00469959294423461, 0.00602812459692359, -0.00976861733943224, -0.017391690984368324, -0.007900146767497063, 0.010976373217999935, 0.002157976385205984, -0.03583483770489693, -0.023004204034805298, 0.003225419670343399, -0.006092064548283815, -0.018301060423254967, 0.022379012778401375, 0.023274173960089684, 0.036886297166347504, 0.008766889572143555, -0.033248819410800934, 0.010315659455955029, -0.005683558993041515, 0.001721052685752511, -0.029128240421414375, 0.018983086571097374, 0.0199066661298275, 0.01279511209577322, -0.02620120719075203, -0.005680006928741932, 0.016411276534199715, 0.0017547988099977374, 0.004724458325654268, 0.020418185740709305, -0.013029558584094048, 0.03810826316475868, -0.0333624929189682, -0.00676698749884963, -0.021370181813836098, -0.02648538537323475, 0.042541440576314926, 0.004916278645396233, -0.009221574291586876, -0.006081407889723778, -0.012290696613490582, -0.0009386753081344068, 0.00846139807254076, 0.0065183318220078945, -0.003879029070958495, -0.001446643378585577, 0.021839074790477753, -0.029298746958374977, -0.009868078865110874, 0.01851419359445572, -0.00827668234705925, -0.018116343766450882, 0.008191429078578949, 0.020716572180390358, 0.0043656835332512856, -0.008454293943941593, 0.014848297461867332, 0.017519570887088776, -0.025576015934348106, -0.033106729388237, -0.07763741910457611, 0.027366336435079575, 0.012546456418931484, -0.005189799703657627, 0.02772155962884426, 0.010273032821714878, 0.03449920192360878, 0.013782630674540997, -0.007289164233952761, -0.013903406448662281, -0.014002867974340916, 0.011011895723640919, -0.01518931146711111, -0.014422031119465828, -0.02293316088616848, -0.013235587626695633, 0.00602812459692359, 0.01473462674766779, 0.021924328058958054, 0.016212351620197296, 0.006287436932325363, 0.013988659717142582, 0.009427603334188461, -0.003879029070958495, -0.021370181813836098, -0.0013969122665002942, -0.0047848462127149105, 0.02003454603254795, 0.00317746470682323, -0.02108600363135338, 0.010336972773075104, -0.0009422274888493121, 0.00013398546434473246, 0.0031916736625134945, 0.0020194395910948515, -0.004333713557571173, 0.02027609571814537, -0.0028790778014808893, 0.017874792218208313, 0.0035948511213064194, -0.03330565616488457, -0.023075249046087265, 0.021938538178801537, -0.0021171257831156254, -0.006976568605750799, 0.017647450789809227, -0.015558742918074131, 0.008710053749382496, 0.004458041395992041, 0.019963501021265984, 0.007417044602334499, 0.004511325154453516, 0.01422310620546341, 0.00031126366229727864, 0.0029572267085313797, -0.034641291946172714, 0.008404563181102276, 0.005189799703657627, 0.021114422008395195, -0.022592147812247276, -0.006717256270349026, 0.008205638267099857, 0.012574873864650726, -0.0015896203694865108, -0.0019395145354792476, 0.007026299834251404, -0.036033764481544495, -0.0008600823348388076, -0.005093889776617289, -0.02469506300985813, -0.020332932472229004, -0.0025735865347087383, 0.004028222523629665, 0.023274173960089684, -0.00016218124073930085, 0.01044353935867548, -0.019110966473817825, 0.008610592223703861, -0.02350151725113392, 0.014905133284628391, 0.009434707462787628, -0.016127098351716995, -0.030037609860301018, -0.009051067754626274, 0.03262363001704216, -0.011764966882765293, 0.001367606339044869, 0.01344872172921896, -0.001207756227813661, -0.0021490957587957382, 0.0013320841826498508, -0.002456363057717681, -0.011985205113887787, 0.010194883681833744, 0.025604432448744774, 0.039387062191963196, -0.018457356840372086, -0.033248819410800934, 0.01933830976486206, 0.023245755583047867, 0.010031481273472309, -0.018158970400691032, -0.014095226302742958, -0.005921558011323214, -0.013249796815216541, -0.01289457455277443, 0.009001336060464382, -0.038079846650362015, 0.013569497503340244, -0.0012130846735090017, 0.011395535431802273, 0.022961577400565147, -0.028602510690689087, 0.018613655120134354, -0.006731464993208647, 0.011963891796767712, -0.0052040088921785355, -0.01696542277932167, -0.013562392443418503, 0.03745465353131294, 0.010507479310035706, 0.00834062322974205, 0.03179951384663582, -0.0005448224255815148, 0.02681219018995762, -0.0007228776812553406, 0.016667036339640617, -0.028261497616767883, 0.017349064350128174, -0.011381327174603939, -0.006052990444004536, 0.009463125839829445, -0.013910510577261448, -0.00577591685578227, -0.010962164029479027, -0.005438455380499363, 0.02443930320441723, 0.015629786998033524, -0.0009049291838891804, 0.07638703286647797, 0.017178557813167572, 2.218752706539817e-05, 0.00011272761912550777, -0.011338700540363789, 0.017761122435331345, 0.029582925140857697, -0.01770428568124771, -5.433793194242753e-05, -0.04845234006643295, -0.0025504971854388714, -0.0035628811456263065, 0.009761512279510498, -0.0363747775554657, 0.00503705395385623, -0.01543086301535368, -0.004021117929369211, 0.03861978277564049, -0.029128240421414375, -0.026030700653791428, 0.04640625789761543, -0.008539547212421894, 0.008177220821380615, 0.011800489388406277, -0.02040397748351097, -0.006454391870647669, 0.02972501330077648, 0.009193156845867634, 0.01467779092490673, -0.03199843689799309, -0.0010061674984171987, 0.0016775379190221429, 0.007978295907378197, -0.02587440237402916, -0.01270985882729292, 0.00860348716378212, 0.0002797376655507833, 0.002964331302791834, 0.03299305960536003, 0.003694313345476985, 0.002275199629366398, 0.007289164233952761, -0.04160365089774132, -0.00868874043226242, 0.00014397609629668295, 0.005953527987003326, -0.021043376997113228, -0.013335050083696842, -0.04086478799581528], "973a5c15-9c8a-42ae-85cb-6c8af18389c1": [-0.03732116147875786, -0.02700139582157135, -0.005315941292792559, -0.022352851927280426, -0.005926892627030611, -0.00255503854714334, -0.03232729807496071, -0.011594794690608978, -0.0014119950355961919, -0.03469141200184822, 0.0007537280907854438, -0.008540038019418716, 0.0096224844455719, -0.004844446200877428, -0.0009537814185023308, -0.014344075694680214, 0.011654561385512352, -0.014569862745702267, 0.020865317434072495, -0.03997747227549553, 0.0024786696303635836, -0.014822212047874928, 0.012829978950321674, -0.02299036644399166, -0.03206166625022888, -0.014171415939927101, 0.01939106546342373, -0.031238209456205368, 0.0044459993951022625, -0.0018826599698513746, 0.03006943315267563, -0.0032025142572820187, -0.004877649713307619, -0.0016909075202420354, -0.00938341673463583, -0.0021316891070455313, 0.024823220446705818, 0.0009321989491581917, -0.0038948149885982275, 0.006939610932022333, 0.03485079109668732, -0.005960096605122089, 0.013088969513773918, 0.014941745437681675, -0.019948890432715416, 0.009615843184292316, -0.006265572272241116, -0.013733124360442162, -0.013580386526882648, 0.00767009612172842, -0.00016311406216118485, 0.02069265767931938, -0.04821203276515007, -0.022352851927280426, 0.016641784459352493, -0.0075505622662603855, -0.012311998754739761, 0.011322522535920143, 0.0007159586530178785, -0.017571493983268738, 0.011249474249780178, 0.0011405532713979483, -0.028077200055122375, -0.0008134950767271221, 0.012843260541558266, 0.018687143921852112, -0.0117342509329319, 0.004807921592146158, -0.03538205474615097, 0.016495687887072563, -0.01091079507023096, 0.037188343703746796, -0.014357357285916805, 0.005906970240175724, 0.028050636872649193, 0.0008367377449758351, -0.02127704583108425, -0.003702232614159584, 0.009649047628045082, 0.016442561522126198, -0.0015174172585830092, 0.0012401648564264178, -0.011794017627835274, -0.02959129773080349, 0.0011173106031492352, -0.003014912363141775, 0.001567223109304905, 0.014622988179326057, 0.01705351285636425, -0.011820580810308456, -0.016163649037480354, 0.011415493674576283, 0.00512003805488348, 0.004402834456413984, -0.016336308792233467, 0.02087859995663166, -0.012378406710922718, 0.028980346396565437, -0.015473008155822754, -0.04018997773528099, -0.004309863783419132, 0.012119416147470474, -0.015008153393864632, -0.0015273784520104527, -0.04643230512738228, -0.006149358581751585, 0.040322791785001755, -0.026177939027547836, 0.01322842575609684, -0.025952152907848358, -0.03952590003609657, 0.02200753055512905, 0.015034716576337814, -0.050310518592596054, -0.01901918277144432, 0.033841393887996674, 0.05113397538661957, -0.010977203026413918, 0.0019059026381000876, -0.01406516321003437, 0.020134832710027695, -0.006753669120371342, 0.032858557999134064, 0.0033137472346425056, 0.024650560691952705, 0.011940115131437778, -0.013308115303516388, -4.2257124732714146e-05, 0.009522872976958752, -0.023641161620616913, 0.013892503455281258, 0.017026949673891068, 0.005299339070916176, -0.006371824536472559, -0.01080454234033823, -0.005229610949754715, -0.015512852929532528, 0.0007142984541133046, -0.015167532488703728, -0.003212475450709462, 0.008553319610655308, 0.01151510514318943, 0.0036026209127157927, -0.0255404245108366, -0.007318134885281324, 0.012438173405826092, 0.019656697288155556, 0.010718212462961674, 0.013414367102086544, 0.013985474593937397, -0.00255005806684494, -0.01749180443584919, -0.011521746404469013, 0.009914678521454334, 0.0025417569559067488, -0.0061460379511117935, 0.012458095327019691, 0.030733510851860046, -0.004884290508925915, -0.007895882241427898, 0.013221784494817257, 0.006859921384602785, 0.02353491075336933, -0.017770716920495033, 0.00533918384462595, 0.02635059878230095, -0.0031394269317388535, 0.014981590211391449, -0.007696659304201603, -0.00024944415781646967, -0.004602057859301567, 0.01828869618475437, -0.023933356627821922, 0.010970561765134335, -0.02146298810839653, 0.023561473935842514, 0.006697222590446472, 0.011302600614726543, -0.0021931163500994444, -0.009024814702570438, -0.01588473655283451, -0.023959919810295105, 0.026363881304860115, 0.04470570385456085, 0.0052661350928246975, -0.01872698776423931, 0.014636269770562649, 0.015140969306230545, 0.005362426396459341, 0.003350271377712488, 0.030255375429987907, 0.04220877215266228, 0.004475883208215237, -0.0047879996709525585, -0.6209391355514526, -0.014463610015809536, 0.03615238517522812, -0.019430911168456078, 0.019218405708670616, 0.012371765449643135, 0.0009844950400292873, 0.024650560691952705, -0.01415813434869051, 0.02693498693406582, 0.013361240737140179, 0.004671785980463028, -0.005030387546867132, -0.01112994085997343, -0.01905902661383152, -0.02376069687306881, 0.02219347283244133, -0.005541727412492037, -0.010605319403111935, 0.01931137591600418, -0.0021217279136180878, 0.022751297801733017, 0.006132756359875202, -0.004944057669490576, 0.01807619258761406, 0.018713707104325294, 0.002994989976286888, -0.001522397855296731, -0.00812830962240696, 0.03028193861246109, 0.0016875872388482094, 0.01344757154583931, -0.002206397708505392, -0.00845370814204216, 0.04202283173799515, -0.0013389464002102613, -0.017186328768730164, 0.009363493882119656, 0.008374018594622612, 0.02842252142727375, -0.0044061546213924885, -0.03612582013010979, 0.0554637610912323, 0.00715211546048522, 0.00881895050406456, 0.01931137591600418, 0.011873707175254822, -0.01843479461967945, 0.011090096086263657, 0.002511873608455062, -0.015021434985101223, -0.038171179592609406, 0.008745902217924595, -0.016854289919137955, -0.015167532488703728, 0.0034698054660111666, 0.039339955896139145, -0.01949731819331646, 0.0028356113471090794, -0.020626250654459, -0.02223331853747368, 0.007138834334909916, -0.021582521498203278, 0.010837746784090996, -0.042872849851846695, -0.01474252250045538, -0.021848153322935104, 0.004904212895780802, 0.014012036845088005, -0.024690404534339905, 0.0014211260713636875, -0.010890872217714787, 0.011036969721317291, 0.003439921885728836, 0.01499487180262804, 0.02656310424208641, 0.01460970751941204, -0.01799650304019451, 0.002450446365401149, 0.011295960284769535, 0.011694406159222126, 0.0038284072652459145, -0.01056547462940216, -0.02616465650498867, 0.013281552121043205, -0.01567223109304905, -0.044227566570043564, 0.015977706760168076, 0.014530017971992493, 0.015101124532520771, 0.03283199667930603, 0.016163649037480354, 0.006302096415311098, -0.00907129980623722, 0.017465241253376007, 0.018315259367227554, -0.02499588020145893, -0.009483028203248978, 0.011701047420501709, -0.0024786696303635836, -0.026802171021699905, 0.005249533336609602, -0.005186446011066437, -0.006172601133584976, 0.012783493846654892, -0.008878717198967934, -0.014928464777767658, 0.0127702122554183, 0.028050636872649193, -0.0025948830880224705, -0.005664581898599863, -0.028475647792220116, -0.023242715746164322, 0.002050339477136731, 0.03928682953119278, -0.02783813327550888, 0.031185083091259003, 0.01876683346927166, 0.012783493846654892, 0.011966678313910961, 0.013235066086053848, -0.0024388248566538095, 0.02969755046069622, 0.02223331853747368, -0.005003824830055237, -0.008486911654472351, 0.016601940616965294, 0.00032020991784520447, -0.01960357092320919, -0.007377902045845985, -0.018926210701465607, -0.010831105522811413, 0.012743649072945118, -0.016442561522126198, 0.015300347469747066, -0.01406516321003437, 0.016376152634620667, -0.008008776232600212, 0.020267648622393608, -0.006673980038613081, -0.004871009383350611, -0.005906970240175724, 0.020241085439920425, 0.011415493674576283, -0.015791764482855797, -0.023747414350509644, -0.01599098928272724, -0.0007699149427935481, -0.00546535849571228, -0.01464955136179924, 0.02852877415716648, 0.0075306398794054985, -0.02121063880622387, 0.021263765171170235, -0.015366755425930023, 0.001432747463695705, -0.015725357457995415, -0.03203510493040085, -0.0048012807965278625, -0.02219347283244133, -0.0008002134854905307, -0.02635059878230095, -0.018355105072259903, -0.0013829416129738092, -0.002666271524503827, -0.025088852271437645, -0.0004036346508655697, -0.00857988279312849, -0.02081219106912613, -0.03076007403433323, -0.027864696457982063, 0.023255998268723488, -0.012331920675933361, 0.011402212083339691, 0.005369067192077637, -0.0036291840951889753, -0.010731494054198265, 0.003114523831754923, 0.02125048264861107, -0.025354482233524323, 0.0016610240563750267, 0.0026812131982296705, -0.008374018594622612, 0.004957339260727167, 0.006600931286811829, 0.015047998167574406, 0.016123803332448006, 0.030892889946699142, -0.012677241116762161, -0.0014576503308489919, 0.00528273731470108, 0.017943376675248146, -0.0027741841040551662, 0.01870042458176613, 0.005667902063578367, 0.00533918384462595, 0.005149921867996454, 0.007444310002028942, -0.024610714986920357, 0.02514197863638401, 0.043749433010816574, 0.007085707969963551, 0.018886366859078407, -0.007450950797647238, 0.006999377626925707, -0.03153040260076523, 0.011820580810308456, -0.011946755461394787, 0.014025318436324596, 0.0016344609903171659, 0.005654620938003063, 0.0036424656864255667, -0.015021434985101223, -0.017943376675248146, 0.022870833054184914, 0.015247221104800701, -0.018169162794947624, 0.007842756807804108, -0.026536541059613228, 0.01324834767729044, 0.02168877422809601, 0.0009579319157637656, 0.015140969306230545, -0.00803533848375082, 0.006358542945235968, 0.010764697566628456, 0.006859921384602785, 0.012896386906504631, 0.0004175387730356306, -0.0340273343026638, -0.01091079507023096, -0.006139397155493498, 0.0013920726487413049, 0.009144348092377186, 0.022113783285021782, -0.018966056406497955, 0.022764580324292183, -0.017173046246170998, 0.032858557999134064, 0.01836838573217392, 0.01592458039522171, 0.024690404534339905, -0.004313183948397636, -0.010445940308272839, 0.020639531314373016, 0.022166909649968147, 0.05065583810210228, 0.010472503490746021, -0.011342445388436317, 0.03479766473174095, -0.03819774463772774, -0.010718212462961674, -0.0255404245108366, -0.003934659529477358, 0.0030829801689833403, -0.0025683201383799314, 0.0024587472435086966, 0.023853667080402374, 0.013002639636397362, 0.023481784388422966, 0.023694287985563278, 0.03559456020593643, -0.014224542304873466, 0.01464955136179924, -0.003771960735321045, -0.015791764482855797, -0.017956657335162163, -0.028449084609746933, -0.00031004121410660446, -0.019762950018048286, -0.0371086560189724, -0.008022056892514229, -0.015698794275522232, -0.023348968476057053, -0.015658950433135033, -0.0032888443674892187, 0.012929590418934822, 0.01022015418857336, 0.002712756861001253, 0.010797902010381222, -0.008486911654472351, -0.00834745541214943, 0.04085405543446541, 0.00463858200237155, 0.005515164230018854, -0.012876464985311031, 0.0012277134228497744, -0.004177047871053219, -0.017704308032989502, -0.0017681065946817398, 0.0037354363594204187, -0.0008354926249012351, 0.019723104313015938, 0.002450446365401149, -0.015127687714993954, -0.015831610187888145, 0.01588473655283451, -0.021091103553771973, -0.029378792271018028, -0.026191219687461853, 0.02022780291736126, 0.009961163625121117, -0.01968326047062874, -0.027027959004044533, 0.04093374311923981, 0.0034266402944922447, -0.0017481843242421746, -0.020427027717232704, 0.01847463846206665, -0.02386694960296154, -0.0035893393214792013, -0.008672853000462055, -0.011508464813232422, -0.02681545354425907, 0.005584892351180315, 0.006381785497069359, 0.006019863300025463, -0.013799532316625118, 0.01912543550133705, 0.009722095914185047, -0.028395958244800568, 0.00021644779189955443, -0.008088464848697186, -0.006262251641601324, 0.01854104734957218, -0.002002194058150053, 0.00850683357566595, -0.0058505237102508545, -0.026071686297655106, 0.0024554268456995487, -0.01636287197470665, -0.03320388123393059, -0.003019892843440175, -0.013394445180892944, -0.00847363006323576, 0.005169844254851341, -0.002025436609983444, -0.0007142984541133046, -0.004980581812560558, 0.013142095878720284, -0.009150989353656769, -0.032088227570056915, 0.015127687714993954, -0.017518367618322372, 0.02183487080037594, -0.0011720969341695309, 0.006006581708788872, 0.00916427094489336, -0.0031128637492656708, -0.0012210726272314787, -0.00849355198442936, 0.02058640494942665, 0.0030912812799215317, -0.03203510493040085, -0.025168539956212044, -0.00950959138572216, -0.022020813077688217, 0.030122559517621994, 0.0015829949406906962, 0.03870244324207306, 0.015512852929532528, 0.04465257748961449, 0.0034565238747745752, 0.01698710396885872, -0.007756426464766264, 0.006617533043026924, -0.016376152634620667, -0.0004810412065126002, 0.0031045626383274794, 0.003353591775521636, 0.00683335866779089, 0.02423883229494095, 0.0016585338162258267, -0.01799650304019451, 0.0113690085709095, -0.006082950625568628, -0.03129133582115173, 5.219234662945382e-05, -0.010352970100939274, -0.013540541753172874, -0.014091726392507553, -0.00313444621860981, 0.020931726321578026, -0.026576384902000427, 0.0037952035199850798, -0.004379591904580593, -0.004040912259370089, -0.009336930699646473, -0.011402212083339691, -0.01832854188978672, -0.014636269770562649, -0.013852658681571484, -0.01310225110501051, 0.0004358009318821132, 0.0016244997968897223, -0.04226189851760864, -0.02743968553841114, -0.02823657914996147, 0.019616851583123207, 0.00730485375970602, 0.05044333264231682, -0.0016734754899516702, -0.011979959905147552, 0.023242715746164322, -0.0019357862183824182, -0.015951143577694893, 0.005173164419829845, -0.025022443383932114, 0.015127687714993954, -0.006248970050364733, 0.009868193417787552, -0.022073939442634583, -0.014729240909218788, 0.015220658853650093, 0.01508784294128418, 0.01599098928272724, 0.009137707762420177, 0.004625300411134958, -0.021555958315730095, 0.007484154310077429, 0.01093071699142456, 0.004489164333790541, -0.01430423092097044, -0.004495805129408836, -0.004814562387764454, -0.043271295726299286, -0.0058704460971057415, -0.016163649037480354, 0.008792387321591377, -0.0178238432854414, 0.03949933499097824, 0.02518182247877121, 0.017837123945355415, 0.013401085510849953, 0.017704308032989502, 0.006644096225500107, 0.021489551290869713, 0.002574960933998227, 0.02977724000811577, 0.005020426586270332, -0.009549436159431934, 0.013733124360442162, 0.012006523087620735, -0.0070458631962537766, 0.012086212635040283, -0.027864696457982063, 0.03338982164859772, -0.01661522127687931, -0.01767774485051632, 0.0004341407329775393, 0.0020802230574190617, -0.05487937107682228, -0.01818244531750679, 0.0030099316500127316, -0.03137102723121643, 0.016442561522126198, 0.007769708056002855, -0.004057514015585184, -0.03421327844262123, 0.028263142332434654, 0.011355726979672909, 0.014144852757453918, -0.003287184052169323, -0.024650560691952705, -0.0262709092348814, -0.009881475009024143, 0.008652931079268456, -0.0022761260624974966, -0.009722095914185047, -0.024172425270080566, -0.022724734619259834, -0.0043928734958171844, 0.00031688952003605664, 0.009224037639796734, 0.02288411371409893, 0.012311998754739761, -0.03400077298283577, -0.015074561350047588, 0.021290328353643417, -0.02860846184194088, -0.030361628159880638, -0.011667842976748943, 0.032008539885282516, 0.017026949673891068, 0.011813940480351448, 0.0291928518563509, -0.027227181941270828, -0.0034864074550569057, 0.030999142676591873, -0.005644659511744976, -0.005037028342485428, 0.022060656920075417, -0.012823338620364666, -0.00545539753511548, 0.020015299320220947, 0.019404347985982895, -0.0005246212822385132, -0.012803415767848492, -0.007211882621049881, 0.02725374512374401, 0.002970087109133601, 0.012458095327019691, -0.011143222451210022, -0.04505102336406708, 0.0052860574796795845, 0.02357475459575653, 0.017863687127828598, -0.00905801821500063, -0.015698794275522232, -0.03147727623581886, -0.007842756807804108, -0.016920696943998337, 0.023056773468852043, 0.00845370814204216, 0.011681124567985535, -0.01567223109304905, -0.022472385317087173, -0.0005349974962882698, 0.02164893038570881, -0.016601940616965294, 0.008559959940612316, -0.025168539956212044, 0.014543299563229084, 0.008281047455966473, -0.0017149803461506963, -0.006939610932022333, 0.010040853172540665, -0.003416679333895445, 0.0006117814918980002, 8.897601946955547e-05, -0.026151375845074654, -0.00749743590131402, -0.002274465747177601, 0.0009023154270835221, -0.0255404245108366, -0.00907129980623722, 0.0017481843242421746, -0.019377784803509712, 0.021728618070483208, 0.037666480988264084, -0.00016695326485205442, 0.0010741455480456352, -0.01654881425201893, -0.019669977948069572, 4.4280484871705994e-05, -0.025195103138685226, 0.03931339457631111, 0.017478521913290024, 0.01785040646791458, 0.031610094010829926, 0.02751937508583069, -0.002973407506942749, -0.04151812940835953, 0.010034212842583656, -0.004967300221323967, 0.050416771322488785, 0.05711067467927933, -0.013261629268527031, 0.003222436411306262, -5.0091166485799477e-05, 0.0074376692064106464, -0.029936617240309715, -0.016601940616965294, 0.02568652108311653, 0.022100502625107765, -0.004695028532296419, -0.030494442209601402, 0.008148232474923134, -0.03588675335049629, 0.027492811903357506, -0.019231686368584633, -0.019656697288155556, -0.021197356283664703, -0.016641784459352493, -0.01654881425201893, 0.02237941510975361, -0.02321615256369114, 0.007291572168469429, 0.007749785669147968, -0.006634135264903307, 0.005687824450433254, -0.010665086098015308, -0.032964810729026794, 0.029910054057836533, 0.019191842526197433, 0.034930482506752014, -0.007238445803523064, -0.019085589796304703, 0.0227778609842062, 0.015167532488703728, 0.013314755633473396, -0.005598173942416906, -0.007616970222443342, 0.04603385925292969, 0.01043929997831583, -0.015047998167574406, 0.0002513118670322001, 0.0069329701364040375, 0.020214522257447243, -0.01335460040718317, -0.0018876405665650964, 0.008745902217924595, -0.02183487080037594, -0.01286318339407444, 0.017571493983268738, -0.018527764827013016, -0.0012600872432813048, -0.005910290405154228, 0.0028306306339800358, -0.01870042458176613, -0.028183452785015106, -0.005734310019761324, 0.02215362899005413, -0.040030598640441895, -0.015313629060983658, -0.016628503799438477, -0.025314638391137123, -0.005900329444557428, 0.014171415939927101, 0.0003436601546127349, 0.0009587620152160525, 0.03479766473174095, -0.031689781695604324, 0.0106982896104455, -0.01543316338211298, 0.010266639292240143, -0.01640271581709385, -0.002136669587343931, -0.010445940308272839, -0.01430423092097044, 0.02237941510975361, -0.03745397552847862, 0.01592458039522171, -0.02434508502483368, 0.0170136671513319, 0.010718212462961674, -0.013261629268527031, 0.011581513099372387, 0.010366251692175865, 0.006265572272241116, 0.007218523416668177, 0.0008305120281875134, -0.02055984176695347, -0.008872076869010925, 0.035435181111097336, -0.0016045775264501572, -0.0012285435805097222, -0.03006943315267563, 0.01415813434869051, 0.0003484332119114697, 0.002511873608455062, -0.013407726772129536, -0.02980380319058895, -0.04869017004966736, -0.0027692036237567663, -0.0015846551395952702, -0.04037591814994812, 0.004326465539634228, -0.009755299426615238, -0.011508464813232422, -0.006899766158312559, -0.02503572590649128, -0.0037952035199850798, -0.01018695067614317, -0.009343571960926056, 0.026735763996839523, -0.004014349076896906, 0.009702173992991447, -0.018089473247528076, -0.033841393887996674, -0.012763570994138718, -0.024318521842360497, -0.012199105694890022, -0.0004586285795085132, -0.006640776060521603, 0.032858557999134064, -0.012484658509492874, -0.022857550531625748, -0.00950959138572216, 0.006521242205053568, -0.061307642608881, -0.00017452788597438484, 0.01148190163075924, 0.030202249065041542, 0.03742741420865059, 0.01941762864589691, 0.018381668254733086, 0.02714749239385128, -0.02631075493991375, 0.004794640000909567, -0.010890872217714787, -0.006703863386064768, -0.03575393930077553, -0.022977083921432495, -0.0113690085709095, -0.0059036496095359325, -0.036710210144519806, -0.011800658889114857, 0.03107883222401142, -0.0011720969341695309, -6.236103945411742e-05, 0.02641700580716133, 0.011335804127156734, -0.025195103138685226, -0.009715455584228039, 0.0033602325711399317, -0.019324658438563347, 0.004193650092929602, 0.005179805215448141, -0.02710764668881893, 0.011163144372403622, 0.013168659061193466, 0.01406516321003437, -0.0025932230055332184, 0.014901901595294476, -0.012471376918256283, -0.012796775437891483, 0.011794017627835274, -0.013254988938570023, -0.0016220095567405224, 0.00849355198442936, -0.009416620247066021, 0.004489164333790541, -0.0014012036845088005, 0.003911416977643967, 0.010107261128723621, -0.0060331448912620544, -0.004724911879748106, -0.0024155823048204184, 0.012896386906504631, -0.03726803511381149, 0.009250600822269917, 0.0018976017599925399, 0.014622988179326057, -0.0012916309060528874, -0.0016635144129395485, 0.007191960234194994, -0.008559959940612316, -0.010253357701003551, 0.03320388123393059, -0.008872076869010925, -0.044041626155376434, 0.014955027028918266, 0.02156924083828926, -0.003987785894423723, -0.006169280968606472, 0.010306484065949917, -0.029431918635964394, -0.011468620039522648, -0.03115851990878582, 0.03338982164859772, -0.027599064633250237, 0.005807358771562576, 0.0036225432995706797, 0.0008180605946108699, -0.008659571409225464, 0.00799549464136362, 0.015101124532520771, -0.018381668254733086, -0.014583144336938858, 0.23928043246269226, -0.015008153393864632, -0.005999940913170576, 0.018023066222667694, 0.001764786196872592, 0.03774616867303848, 0.00010485162783879787, -0.00622240686789155, -0.0369492769241333, 0.005687824450433254, -0.018567608669400215, -0.00022537133190780878, -0.007829475216567516, 0.003682310227304697, 0.020094988867640495, -0.004691708367317915, -0.0170136671513319, -0.025713084265589714, -0.013958911411464214, -0.02000201679766178, 0.01876683346927166, 0.013527260161936283, -0.0010915775783360004, -0.009921318851411343, 0.008646289817988873, 0.008878717198967934, -0.011960037052631378, 0.012245590798556805, 0.053949665278196335, 0.005129999481141567, -0.03107883222401142, 0.00749743590131402, 0.0037752811331301928, 0.005076873116195202, -0.017119919881224632, -0.0026978151872754097, 0.037878986448049545, 0.004153805319219828, 0.00963576603680849, 0.0019972133450210094, -0.012650677934288979, 0.020785627886652946, -0.006019863300025463, -0.01759805716574192, -0.029564734548330307, 0.02146298810839653, -0.008174794726073742, -0.017358988523483276, 0.0031643297988921404, 0.006079630460590124, -0.035541433840990067, 0.004558892454952002, 0.026390444487333298, 0.013155377469956875, 0.006879843771457672, 0.013460853137075901, 0.009409979917109013, 0.003549494780600071, 0.0018461357103660703, 0.004542290698736906, 0.0011322522768750787, 0.021157512441277504, -0.015592541545629501, 0.0036922714207321405, -0.036099258810281754, -0.0057509117759764194, -0.02194112353026867, 0.025354482233524323, -0.0008682814659550786, 0.00938341673463583, -0.011561591178178787, 0.0014501794939860702, -0.02666935697197914, 0.0033867957536131144, -0.017863687127828598, -0.03323044255375862, 0.05594189837574959, 0.035435181111097336, 0.014144852757453918, 0.02423883229494095, -0.011720969341695309, -0.02223331853747368, -0.007955649867653847, 0.01151510514318943, -0.013221784494817257, -0.033947646617889404, 0.025792773813009262, -0.009735377505421638, -0.023694287985563278, 0.012225668877363205, -0.007211882621049881, -0.023641161620616913, 0.004641902167350054, -0.011315882205963135, 0.018594171851873398, 0.005887047853320837, -0.0034731258638203144, 0.012597551569342613, -0.0035860189236700535, -0.005724349059164524, -0.025593550875782967, 0.009595921263098717, 0.01253778487443924, 0.026948269456624985, -0.025925589725375175, -0.00869277585297823, -0.007032581605017185, 0.004133882932364941, 0.006474756635725498, -0.008300970308482647, -0.006743708159774542, -0.0498589463531971, 0.014025318436324596, -0.011568231508135796, 0.004548931494355202, 0.00916427094489336, -0.01534019224345684, -0.01646912470459938, -0.006322018802165985, 0.005491921678185463, 0.009330290369689465, -0.0008429635199718177, 0.0033154073171317577, -0.003237378317862749, -0.028395958244800568, -0.030308501794934273, -0.012464736588299274, -0.01158815436065197, 0.0005789926508441567, -0.018448075279593468, 0.01939106546342373, -0.03466485068202019, 0.005657941102981567, -0.0014510095352306962, 0.016960542649030685, -0.0008338324259966612, 0.020055143162608147, -0.008154872804880142, -0.007656814530491829, 0.006776911672204733, -0.0037155142053961754, 0.014091726392507553, -0.003390116151422262, 0.019231686368584633, -0.018939493224024773, -0.012338561937212944, 0.0007765557384118438, -0.00031688952003605664, -0.009861552156507969, -0.0011787377297878265, -0.02791782282292843, -0.029830366373062134, 0.00754392147064209, 0.011727610602974892, 0.012922950088977814, -0.0023873590398579836, -0.010665086098015308, -0.037772733718156815, 0.007165397051721811, 0.013945629820227623, -0.04058842360973358, -0.0031942131463438272, 0.03918057680130005, -0.024677123874425888, 0.001809611450880766, -0.005754232406616211, -0.16841007769107819, 0.009024814702570438, 0.018833240494132042, 0.0017266017384827137, 0.030919453129172325, -0.012464736588299274, -0.00512003805488348, 0.012703804299235344, -0.01266395952552557, -0.017571493983268738, -0.00626889243721962, -0.0034764462616294622, -0.010127183049917221, -0.01968326047062874, 0.006707183551043272, -0.005236251745373011, 0.0021731939632445574, -0.001851116307079792, 0.04624636471271515, 0.015393318608403206, 0.02054656110703945, -0.0234286580234766, -0.018355105072259903, 0.0199356097728014, 0.015114406123757362, 0.015313629060983658, -0.010505707934498787, -0.0030763393733650446, 0.016123803332448006, -0.019337939098477364, -0.0003575642767827958, 0.005561649799346924, 0.004711630754172802, 0.01126275584101677, 0.005754232406616211, -0.00683335866779089, 0.020413745194673538, -0.014490173198282719, -0.02102469652891159, 0.022034093737602234, -0.005395630374550819, 0.043165042996406555, -0.009396698325872421, 0.0013787910575047135, 0.0213168915361166, 0.00299665005877614, 0.015911299735307693, -0.016429278999567032, 0.010173669084906578, -0.006919688545167446, 0.022100502625107765, -0.007743144873529673, -0.0008857134962454438, -0.010844387114048004, 0.03105226904153824, 0.008101746439933777, -0.007962290197610855, 0.0068732029758393764, 0.012803415767848492, 0.0021731939632445574, -0.009243960492312908, -0.015499571338295937, 0.008154872804880142, 0.012112774886190891, -0.007802911568433046, -0.013301474042236805, -0.008626367896795273, 0.04151812940835953, -0.010645164176821709, -0.0026181258726865053, 0.009250600822269917, -0.02940535545349121, 0.024584151804447174, -0.0022229996975511312, -0.02048015221953392, 0.018687143921852112, -0.012311998754739761, 0.017040230333805084, 0.013839377090334892, -0.001256766845472157, -0.009137707762420177, 0.028980346396565437, -9.987104567699134e-05, -0.00799549464136362, 0.021396579220891, -0.009788503870368004, -0.006707183551043272, 0.0011712668929249048, -0.01895277388393879, -0.03928682953119278, 0.027785006910562515, -0.030600694939494133, -0.001807951251976192, 0.0007512377924285829, 0.0008076843805611134, 0.012876464985311031, -0.009210756048560143, -0.0042434558272361755, -0.010180309414863586, -0.003569417167454958, -0.003068038495257497, 0.006255610845983028, -0.016933979466557503, 0.017624618485569954, 0.043563488870859146, 0.00304313562810421, -0.013759687542915344, 0.015685513615608215, 0.04507758840918541, 0.011063532903790474, -0.018713707104325294, 0.013088969513773918, 0.011269397102296352, 0.02522166632115841, 0.024690404534339905, 0.008041979745030403, 0.009111144579946995, -0.024172425270080566, 0.020865317434072495, 0.011767455376684666, 0.007988853380084038, -0.014383920468389988, 0.006405028514564037, 0.017876969650387764, 0.014463610015809536, -0.012053008191287518, -0.050629276782274246, -0.005056950729340315, 0.023986482992768288, 0.02492947317659855, -0.017544930800795555, 0.05450749024748802, -0.0029866888653486967, 0.03843681141734123, -0.02419898845255375, 0.030441317707300186, -0.009569358080625534, -0.027705317363142967, -0.014118289574980736, -0.012471376918256283, -0.010127183049917221, 0.008188076317310333, -0.00459209643304348, 0.0006063858745619655, 0.0006209125276654959, 0.01989576406776905, 0.005804038140922785, -0.0018361745169386268, 0.01822228915989399, -0.007955649867653847, 0.0018278735224157572, -0.004220213275402784, -0.015393318608403206, 0.02182159014046192, 0.015685513615608215, -0.0025434172712266445, 0.04876985773444176, -0.018713707104325294, -0.0027044559828937054, -0.00568450428545475, 0.020891880616545677, 0.004877649713307619, -0.00042023661080747843, -0.018899647518992424, 0.02921941503882408, -0.016243338584899902, -0.016880853101611137, -0.002076902659609914, -0.0024155823048204184, 0.000816815416328609, -0.014835493639111519, -0.022273162379860878, -0.013367881998419762, 0.01300927996635437, 0.009815067052841187, -0.030361628159880638, -0.03713521733880043, -0.03246011212468147, -0.022857550531625748, -0.023787260055541992, 0.036497704684734344, 0.020028579980134964, 0.024863064289093018, 0.01905902661383152, -0.03976496681571007, 0.03814461827278137, 0.026536541059613228, -0.004329785704612732, -0.01745195873081684, 0.022791143506765366, 0.017252735793590546, 0.008393940515816212, -0.010213513858616352, -0.001081616384908557, 0.016708191484212875, -0.002154931891709566, 0.0015846551395952702, 0.03115851990878582, -0.025845900177955627, 0.024544307962059975, -0.0042036110535264015, -0.009795144200325012, -0.009861552156507969, -0.019630134105682373, 0.04340410977602005, -0.004645222797989845, -0.020493434742093086, -0.003111203433945775, -0.0025483977515250444, -0.0127702122554183, 0.010472503490746021, 0.0017946696607396007, -0.006644096225500107, 0.001343096955679357, 0.008194717578589916, -0.021489551290869713, 0.014144852757453918, 0.02733343467116356, -0.011475260369479656, -0.02269817143678665, -0.0065079606138169765, -0.013580386526882648, -0.0034067181404680014, 0.0014800629578530788, 0.006036465521901846, 0.029564734548330307, -0.02014811336994171, -0.01727929897606373, -0.0794236809015274, 0.015034716576337814, 0.0019440872129052877, -0.0074575915932655334, 0.030892889946699142, 0.017478521913290024, 0.020347338169813156, -0.001279179472476244, -0.014383920468389988, -0.006215766072273254, -0.02773188054561615, 0.0038848540280014277, 0.03222104534506798, -0.020055143162608147, -0.03076007403433323, -0.006700542755424976, 0.039924345910549164, 0.028555337339639664, 0.010605319403111935, 0.0074907951056957245, -0.012086212635040283, 0.01759805716574192, 0.011501823551952839, 0.0089119216427207, -0.007284931372851133, 0.0050104656256735325, 0.010512348264455795, 0.012451454997062683, -0.014729240909218788, -0.01669491082429886, -0.0016444221837446094, -0.0033585724886506796, 0.006341941189020872, 0.01204636786133051, -0.013381163589656353, -0.01009397953748703, 0.004529009107500315, 0.022950520738959312, 0.007344698067754507, 0.030149122700095177, -0.026430288329720497, -0.033947646617889404, 0.01753164827823639, -0.012225668877363205, -0.012995998375117779, 0.020652813836932182, 0.0009189173579216003, -0.00029032642487436533, 0.02645685151219368, 0.014516736380755901, 0.017133202403783798, 0.02000201679766178, -0.01796993985772133, -0.0185543280094862, -0.019404347985982895, -0.03880869597196579, 0.011647921055555344, -0.0005901989643462002, -0.014702677726745605, -0.0003332839405629784, 0.018487920984625816, 0.01826213300228119, -0.011554949916899204, -0.0009662329102866352, -0.0005237911827862263, 0.00591361103579402, -0.005916931200772524, 0.0063552227802574635, 0.016269901767373085, -0.021330172196030617, -0.026948269456624985, -0.03222104534506798, -0.01000100839883089, 0.02156924083828926, -0.0070259408093988895, 0.005046989768743515, -0.008513474836945534, 0.016920696943998337, -0.03421327844262123, 0.014862056821584702, 0.004057514015585184, 0.003635824890807271, -0.04887611046433449, 0.012922950088977814, 0.02091844379901886, -0.009569358080625534, -0.0113690085709095, 0.03949933499097824, -0.019656697288155556, 0.011349085718393326, -0.006139397155493498, -0.014729240909218788, -0.005106756929308176, 0.010067416355013847, 0.015260502696037292, 0.021702054888010025, -0.005634698551148176, -0.01251786295324564, 0.02852877415716648, 0.005249533336609602, 0.005163203459233046, -0.005963416770100594, -0.0029153006616979837, -0.01011390145868063, -0.006016543135046959, 0.02219347283244133, -0.014051881618797779, -0.04741514101624489, -0.00857988279312849, 0.009064659476280212, 0.013241707347333431, 0.02911316230893135, -0.007172037847340107, 0.0019540484063327312, -0.007258368190377951, 0.015353473834693432, 0.009356853552162647, -0.0020154754165560007, -0.03883525729179382, 0.0059235719963908195, 0.018833240494132042, 0.015473008155822754, 0.02160908468067646, -0.019032463431358337, 0.035142987966537476, 0.0008458688389509916, 0.019138716161251068, -0.02434508502483368, -0.004568853881210089, -0.0009620824130252004, -0.02704123966395855, 0.018846523016691208, -0.009483028203248978, -0.010067416355013847, 0.0028555337339639664, -0.01332139689475298, 0.0005038688541390002, -0.008998251520097256, -0.03251323848962784, 0.07538609206676483, 0.003506329609081149, 0.008154872804880142, 0.008779105730354786, -0.018780114129185677, -0.008931843563914299, 0.015712076798081398, 0.00679683405905962, 0.0009961164323613048, -0.021303609013557434, 0.01876683346927166, 0.017558211460709572, -0.01661522127687931, -0.023986482992768288, -0.008161514066159725, -0.0049905432388186455, -0.016163649037480354, 0.02292395941913128, -0.015619104728102684, 0.007935727015137672, 0.03527580201625824, -0.019563725218176842, -0.009908037260174751, 0.006806795485317707, -0.0012144319480285048, 0.008241202682256699, 0.0328054316341877, 0.0022761260624974966, 0.0055682905949652195, 0.0018046308541670442, 0.005535086616873741, -0.014915183186531067, -0.031689781695604324, -0.032858557999134064, -0.007869319058954716, 0.00048145625623874366, 0.0023292521946132183, 0.014357357285916805, 0.03028193861246109, -0.0031892326660454273, 0.019510598853230476, 0.005379028618335724, -0.03275230526924133, -0.03482422977685928, -0.013958911411464214, 0.0018129318486899137, -0.0040010674856603146, -0.0120795713737607, -0.016734754666686058], "2ad0fdd8-af1f-4e11-92d8-d03b8aa427a5": [0.010812854394316673, -0.023869497701525688, -0.0050072260200977325, -0.00671759806573391, -0.018913893029093742, 0.032734524458646774, -0.0009162707137875259, -0.016601277515292168, -0.007770664058625698, -0.009697843343019485, 0.007846374064683914, -0.0005988022894598544, 0.007116799242794514, -0.020097730681300163, -0.020882368087768555, -0.006831164006143808, 0.0027892484795302153, -0.0064732590690255165, 0.014178536832332611, -0.022093739360570908, -0.0026584756560623646, 0.0012345995055511594, 0.0007196811493486166, -0.015142126008868217, -0.007096150889992714, -0.013022228144109249, 0.004119346849620342, -0.029651036486029625, 0.0012449236819520593, -0.010124576278030872, 0.024117277935147285, -0.013841279782354832, -0.012829510495066643, -0.016931651160120964, 0.013070408254861832, -0.0021233391016721725, -0.010035100392997265, -0.004563286434859037, 0.017041774466633797, 0.004811066668480635, 0.0228783767670393, 0.004363685380667448, 0.018555987626314163, 0.00869295746088028, -0.016504917293787003, 0.02923806942999363, -0.02651248686015606, 0.0152109544724226, -0.005093260668218136, 0.012299535796046257, 0.006074057426303625, 0.00614288542419672, -0.02603069134056568, -0.007316400296986103, 0.002820221008732915, 0.014316191896796227, -0.03994768112897873, 0.0045908172614872456, -0.011446070857346058, -0.020882368087768555, -0.005010667257010937, 0.01232706755399704, -0.026677673682570457, 0.0084382938221097, -0.004934956785291433, 0.002181842690333724, 0.00017131681670434773, 0.014770455658435822, 0.009030213579535484, -0.004071167204529047, 0.04933580011129379, 0.0029630388598889112, 0.004201940260827541, 0.0011003852123394608, 0.03669900819659233, 0.0035618410911411047, -0.01872117444872856, 0.006294306367635727, 0.019574640318751335, -0.005767773371189833, 0.005767773371189833, -0.017881475389003754, 0.0012320184614509344, 0.003967925440520048, 0.015486265532672405, 0.010296645574271679, -0.023043563589453697, 0.009216048754751682, 0.008988916873931885, -0.023993387818336487, 0.003420744091272354, 0.019409453496336937, 0.010778441093862057, 0.015816638246178627, 0.0023900470696389675, -0.010248466394841671, 0.0001357199071208015, 0.02311239019036293, -0.009154103696346283, -0.04950098693370819, -0.015045767650008202, 0.01207240391522646, -0.02192855253815651, 0.001443664077669382, -0.055254995822906494, -0.01236836425960064, 0.02133663184940815, 0.0053926617838442326, 0.006772660184651613, -0.012237590737640858, -0.017372148111462593, 0.008162982761859894, -0.009271111339330673, -0.015513796359300613, -0.03113771788775921, -0.010785323567688465, 0.01698671281337738, -0.02232775278389454, -0.023291343823075294, -0.019822420552372932, 0.016463620588183403, 0.00948447734117508, 0.021501818671822548, -0.022892141714692116, 0.014550207182765007, 0.0036822897382080555, -0.007281986065208912, -0.02769632637500763, -0.00869295746088028, -0.014770455658435822, 0.018790002912282944, -0.003596255090087652, 0.03912174701690674, 0.018514690920710564, -0.01990501396358013, 0.0013920431956648827, -0.002997452626004815, 0.03243168070912361, -0.015912998467683792, -0.0003837152326013893, 0.02923806942999363, 0.025218522176146507, -0.008445177227258682, -0.0227131899446249, 0.002875283360481262, 0.006115354131907225, 0.02089613489806652, -0.005351365078240633, -0.0004714707611128688, -0.017372148111462593, 0.01223070826381445, -0.023731840774416924, 0.024406354874372482, -0.0007429105462506413, -0.002994011389091611, -0.00928487628698349, -0.0006121376645751297, 0.00948447734117508, -0.008679191581904888, -0.03931446745991707, 0.016931651160120964, 0.010158990509808064, 0.014949408359825611, -0.0030335872434079647, -0.010558191686868668, 0.016064420342445374, 0.007915202528238297, 0.005819394253194332, 0.0025053336285054684, -0.0041365534998476505, 0.007261337712407112, -0.006462934892624617, -0.015444968827068806, 0.0244614165276289, -0.004890218377113342, 0.016504917293787003, -0.006941288243979216, 0.006937847007066011, 0.0011442629620432854, -0.027049344033002853, -0.027200765907764435, 0.007295751944184303, -0.01131529826670885, 0.021667005494236946, -0.007639891002327204, -0.017909005284309387, -0.014632800593972206, 0.0065214382484555244, 0.006091264542192221, -0.005316951312124729, 0.00525500625371933, 0.04115905240178108, 0.025411240756511688, 0.0026705204509198666, -0.6100900173187256, -0.025769146159291267, -0.006462934892624617, 0.0017361824866384268, -0.01572027988731861, 0.01770252175629139, 0.017055541276931763, 0.014192301779985428, -0.023773137480020523, 0.024075981229543686, -0.00435680290684104, 0.020373042672872543, -0.011728265322744846, -0.019340625032782555, 0.002109573455527425, -0.01979488879442215, -0.0009627295075915754, -0.01702800951898098, -0.01935438998043537, -0.011838389560580254, -0.025782911106944084, 0.0007528045680373907, -0.03598319739103317, -0.011391008272767067, 0.007853257469832897, -0.011019337922334671, 0.008458942174911499, -0.015596389770507812, 0.011686968617141247, 0.023952091112732887, -0.005182737018913031, 0.025039570406079292, 0.02484685182571411, -0.007281986065208912, 0.07240689545869827, -0.012581730261445045, -0.04223276674747467, 0.03188106045126915, -0.01817055232822895, 0.06491842865943909, -0.02026291750371456, -0.005571614019572735, 0.014440082013607025, 0.006772660184651613, -0.00023379959748126566, 0.007261337712407112, 0.03323008492588997, -0.03799297288060188, 0.0035928136203438044, 0.03306489810347557, 0.0027754828333854675, -0.01924426667392254, 0.011384125798940659, 0.01110193133354187, 0.023718075826764107, 0.012767565436661243, 0.010881682857871056, -0.016890354454517365, 4.3474465201143175e-05, 0.001175235491245985, -0.016931651160120964, -0.0006667697452940047, -0.0052859787829220295, -0.010028216987848282, -0.02603069134056568, 0.01806042715907097, -0.03077981248497963, -0.0003011218213941902, 0.005533759016543627, -0.009573953226208687, 0.005000343080610037, -0.017055541276931763, 0.011452953331172466, -0.0026584756560623646, 0.04333401098847389, 0.04325141757726669, 0.0031626394484192133, -0.02693921886384487, -0.0008487334125675261, 0.022424113005399704, -0.0005785840912722051, -0.0021147355437278748, -0.014577738009393215, -0.007261337712407112, 0.013510906137526035, -0.03857112675905228, -0.029403256252408028, -0.01753733493387699, 0.01434372365474701, 0.01019340381026268, 0.015004470944404602, 0.017730053514242172, 0.00256899930536747, -0.012753799557685852, 0.014839284121990204, 0.03212884068489075, -0.01035170815885067, -0.001284499652683735, -0.00035016165929846466, 0.0040057809092104435, -0.03014659695327282, 0.00566109037026763, -0.010647667571902275, -0.017840178683400154, 0.02843966707587242, -0.004329271614551544, -0.04016793146729469, -0.005953608546406031, 0.034937016665935516, -0.001638102694414556, 0.011549312621355057, 0.02824694849550724, -0.009869913570582867, -0.009711609221994877, 0.0024020918644964695, -0.03441392257809639, 0.0057643321342766285, -0.001173514756374061, 0.005943284370005131, -0.010055748745799065, 0.03144055977463722, -0.000383930339012295, 0.045013412833213806, 0.01025534886866808, -0.003623786149546504, 0.028026700019836426, 0.017909005284309387, -0.014756690710783005, 0.012733151204884052, 0.002727303421124816, -0.005048522725701332, 0.0064044310711324215, 0.03097253106534481, -0.013738038018345833, 0.023181218653917313, -0.002811617450788617, -0.008679191581904888, -0.01899648644030094, 0.009154103696346283, -0.01139789167791605, -0.01730332151055336, -0.016325965523719788, -0.01343519613146782, -0.027723856270313263, -0.003943835385143757, -0.02326381206512451, -0.009071510285139084, 0.015004470944404602, -0.006989467889070511, 0.004060843028128147, 0.03276205435395241, 0.01119829062372446, -0.022685658186674118, 0.020992493256926537, 0.003068001242354512, -0.0013997863279655576, 0.008920089341700077, -0.02638859674334526, -0.006301189307123423, -0.006084381602704525, 0.0059639327228069305, -0.005809070076793432, -0.020841071382164955, -0.0083763487637043, -0.018638581037521362, -0.0082937553524971, -0.013600382953882217, -0.006012112367898226, 0.0027359069790691137, -0.04561909660696983, -0.0018858830444514751, -0.001256968593224883, 0.008548418991267681, 0.0167526975274086, -0.0032366295345127583, -0.009945623576641083, -0.017867708578705788, -0.010523777455091476, 0.004363685380667448, -0.011411656625568867, 0.01848715916275978, 0.0062874238938093185, -0.005058846902102232, 0.0008440014789812267, 0.02358042076230049, 0.007990913465619087, 0.008142334409058094, 0.002274760277941823, -0.012430309318006039, 0.01694541610777378, 0.001008327933959663, 0.018349504098296165, 0.009608367457985878, 0.01404776331037283, 0.04129670932888985, -0.0076467739418148994, 0.012795096263289452, 0.009195400401949883, -0.0064285206608474255, 0.011205173097550869, 0.023883262649178505, 0.023965856060385704, 0.00020067619334440678, -0.036919258534908295, 0.03077981248497963, -0.022341519594192505, 0.0016570304287597537, -0.01041365321725607, 0.011810858733952045, 0.02057952620089054, -0.02382820099592209, -0.02797163650393486, -0.025452537462115288, -0.005747125018388033, 0.018790002912282944, 0.027310889214277267, -0.01726202480494976, 0.02026291750371456, -0.030476970598101616, 0.004749121610075235, 0.014605268836021423, -0.012774447910487652, 0.01848715916275978, -0.045013412833213806, -0.0005699805915355682, -0.00016583209799136966, -0.0032263053581118584, 0.015238485299050808, 0.006342486012727022, -0.0033157814759761095, -0.022231394425034523, -0.01706930622458458, -0.007949616760015488, -0.004518548026680946, 0.015142126008868217, -0.03289971128106117, 0.008920089341700077, -0.031825996935367584, 0.013910108245909214, 0.013607265427708626, 0.025259818881750107, -0.004848921671509743, 0.025851739570498466, -0.01201045885682106, 0.012767565436661243, 0.008796199224889278, 0.05032692104578018, 0.017964068800210953, -0.012946518138051033, -0.005020991433411837, -0.009718491695821285, -0.00566109037026763, -0.025493834167718887, 0.02568655274808407, 0.006456051953136921, -0.013765569776296616, 0.015142126008868217, -0.006869019009172916, 0.020882368087768555, 0.039369527250528336, 0.011803975328803062, 0.035019610077142715, 0.009167869575321674, 0.002551792422309518, -0.010220935568213463, -0.02793033979833126, -0.006228920072317123, -0.019588405266404152, -0.01848715916275978, -0.012450957670807838, 0.012258239090442657, -0.0012552478583529592, -0.005134557373821735, -0.0072751035913825035, -0.0029269042424857616, -0.0063356030732393265, -0.006779543124139309, 0.020868603140115738, 0.029183007776737213, -0.01734461821615696, -0.005113909021019936, -0.014563972130417824, 0.015087064355611801, 0.007378345355391502, -0.0009377794340252876, -0.004663086496293545, 0.004583934787660837, 0.0007811960531398654, 0.016009356826543808, 0.002159473719075322, 0.01420606765896082, 0.017124367877840996, -0.002525981981307268, -0.0007476424798369408, 0.012561081908643246, 0.005912311840802431, 0.02397962100803852, 0.003919745795428753, -0.050079140812158585, -0.012643675319850445, 0.008961386047303677, -0.008782433345913887, -0.010998689569532871, -0.014674097299575806, 0.024778025224804878, 0.0017482272814959288, -0.0036375517956912518, -0.0009558467427268624, 0.01599559187889099, -0.005489020608365536, -0.012843276374042034, -0.006008671130985022, 0.0031523152720183134, -0.0032245845068246126, -0.0012974048731848598, 0.01639479398727417, 0.015734044834971428, 0.0030559564474970102, 0.01416477095335722, 0.02737971767783165, -0.00430518202483654, -0.021116383373737335, -0.015403672121465206, -0.002446830039843917, -0.024502713233232498, 0.023332640528678894, 0.010744026862084866, 0.03892903029918671, -0.030008941888809204, -0.015362375415861607, -0.02631976827979088, -0.011797092854976654, 0.007736249826848507, -0.009573953226208687, -0.002895931713283062, 0.014563972130417824, 0.014467613771557808, -0.020799774676561356, -0.004897101316601038, 0.011762678623199463, -0.019726060330867767, -0.03416614234447479, 0.011659436859190464, -0.012912103906273842, 0.004542638082057238, 0.00017056400247383863, 0.00924357958137989, -0.002273039659485221, 0.006480141542851925, 0.010571957565844059, 0.0010547867277637124, 0.01734461821615696, 0.024599071592092514, -0.019684763625264168, 0.01287768967449665, -0.00664532883092761, 0.0016105716349557042, 0.023731840774416924, -0.0007235527154989541, 0.008424528874456882, 0.009181634522974491, 0.0488402396440506, 0.01511459518224001, 0.020317981019616127, 0.006772660184651613, 0.023635482415556908, 0.017317086458206177, -0.010021334514021873, 0.027641262859106064, -0.012850158847868443, 0.00037511176196858287, 0.0030146597418934107, 0.003826828207820654, -0.02619587816298008, 0.04286598414182663, 0.012788213789463043, -0.03534998372197151, 0.01307729072868824, -0.012003576382994652, 0.04176473617553711, -0.02007020078599453, -0.016009356826543808, -0.012795096263289452, -0.016023123636841774, -0.011432304978370667, 0.0024674783926457167, 0.014577738009393215, -0.010296645574271679, -0.02106132172048092, -0.020607057958841324, -0.02188725583255291, -0.004714707378298044, -0.013421430252492428, -0.0015916439006105065, 0.0014187139458954334, -0.054346468299627304, -0.03215637058019638, 0.0012475047260522842, -0.00617385795339942, -0.0026963308919221163, 0.018982719630002975, -0.015224719420075417, -0.006438844837248325, 0.0028529141563922167, -0.018748706206679344, -0.0019478281028568745, -0.014316191896796227, -0.021198976784944534, 0.00513799861073494, 0.0015606713714078069, 0.001724137575365603, -0.01039300486445427, -0.0066350046545267105, 0.0041916160844266415, 0.015555093064904213, 0.0014092501951381564, 0.008699839934706688, -0.017716288566589355, -0.007688070647418499, -0.009773554280400276, -0.0059639327228069305, 0.02722829580307007, -0.02509463205933571, -0.008686074055731297, -0.0018927657511085272, -0.03331267833709717, -0.0037580004427582026, -0.008424528874456882, -0.01343519613146782, 0.0017000478692352772, -0.006049967836588621, 0.010227818042039871, -0.01485304906964302, -0.0009231534786522388, 0.0398375578224659, -0.015403672121465206, 0.009395001456141472, -0.018184317275881767, -0.0014471054309979081, 0.007364579476416111, 5.8449899370316416e-05, 0.005354806315153837, -0.010000686161220074, -0.004597700200974941, 0.020868603140115738, -0.020139027386903763, 0.032211434096097946, 0.011666320264339447, 0.01896895468235016, 0.0017929654568433762, 0.008699839934706688, -0.010716496035456657, -0.0009661709191277623, 0.026443658396601677, -0.004236354026943445, 0.03479935973882675, 0.0013412826228886843, -0.022575533017516136, -0.02188725583255291, -0.019065313041210175, 0.011411656625568867, 0.01912037655711174, -0.01329754013568163, -0.039452120661735535, -0.011521781794726849, -0.019643466919660568, 0.012698737904429436, -0.01412347424775362, 0.013600382953882217, -0.019891247153282166, 0.004212264437228441, 0.004921190906316042, -0.0035446342080831528, 0.007454055827111006, 0.004604583140462637, -0.003630668856203556, -0.03744234889745712, -0.002997452626004815, -0.018707409501075745, -0.028825102373957634, -0.008383232168853283, -0.030339315533638, 0.013799983076751232, 0.013380133546888828, 0.011452953331172466, -0.004638996906578541, -0.008624128997325897, -0.008892557583749294, 0.005268771667033434, 0.005451165605336428, -0.006955054122954607, 0.0029372284188866615, -0.00708238547667861, -0.006407872308045626, 0.007295751944184303, 0.011095048859715462, -0.013146118260920048, -0.025893036276102066, -0.0023969297762960196, 0.024089746177196503, -0.01015210710465908, -0.008644777350127697, 0.007577945943921804, -0.053713250905275345, -0.007502235472202301, -0.005089819431304932, -0.005347923841327429, -0.006493907421827316, -0.011349711567163467, -0.012863924726843834, -0.005361689254641533, 0.013517789542675018, 0.030174128711223602, 0.009236697107553482, 0.017083071172237396, -0.028302010148763657, 0.012932752259075642, -0.017633695155382156, 0.002649872098118067, -0.005957050248980522, -0.003733910620212555, -0.022905906662344933, 0.014687862247228622, 0.008775550872087479, 0.009567070752382278, -0.007805077824741602, 0.01702800951898098, 0.008238693699240685, 0.011852155439555645, 0.024943212047219276, 0.021942317485809326, -0.0039369529113173485, -0.00381306279450655, -0.009202282875776291, -0.031468089669942856, -0.03752494230866432, 0.009546422399580479, -0.016532449051737785, -0.009525774046778679, -0.007681187707930803, 0.008259342052042484, 0.010344825685024261, -0.008871909230947495, 0.009160986170172691, 0.008169865235686302, -0.013648562133312225, 0.019216734915971756, -0.01116387639194727, 0.008231810294091702, 0.034386392682790756, 0.007023881655186415, 0.005017550196498632, -0.07989536225795746, -0.0035893721505999565, -0.009174752049148083, 0.02951338142156601, 0.044104885309934616, -0.015155891887843609, -0.02374560758471489, 0.006893109064549208, 0.02298850007355213, -0.02338770218193531, -0.024791790172457695, 0.036286041140556335, 0.004986577667295933, -0.007013557478785515, -0.010998689569532871, 0.00865166075527668, -0.02457154169678688, 0.005440841428935528, -0.013951404951512814, -0.010606370866298676, -0.016573745757341385, -0.010041982866823673, 0.0026034133043140173, 0.006531762424856424, -0.033367741852998734, 0.02841213531792164, 0.020097730681300163, -0.007867022417485714, 0.0015314195770770311, -0.009078392758965492, -0.022066207602620125, 0.007825725711882114, -0.011831507086753845, 0.033009834587574005, 0.009188517928123474, 0.00015120617172215134, 0.015004470944404602, 0.0008250738028436899, -0.006418196484446526, -0.014398785308003426, -0.008830612525343895, 0.05404362455010414, -0.008562183938920498, -0.007784429471939802, 0.0040986984968185425, 0.006700390949845314, 0.01793653704226017, 0.02011149749159813, 0.013517789542675018, 0.008252458646893501, -0.003892214735969901, -0.008885675109922886, 0.004800742492079735, -0.01572027988731861, 0.010737144388258457, -0.018776236101984978, -0.010207169689238071, -0.015307312831282616, -0.020166559144854546, 0.0017026289133355021, 0.012581730261445045, -0.020317981019616127, -0.024819321930408478, -0.0009730536839924753, -0.007151213474571705, 0.01117764227092266, 0.006968819536268711, 0.008424528874456882, 0.0008642196771688759, 0.04556403309106827, -0.0395071841776371, 0.014075295068323612, 0.009739140048623085, 0.0003400525893084705, 0.013022228144109249, 0.011817741207778454, -0.005781539250165224, -0.0024106954224407673, 0.038103096187114716, 0.007502235472202301, -0.01296028308570385, -0.03353292867541313, 0.0025018921587616205, 0.01869364269077778, -0.00851400475949049, 0.028494728729128838, 0.027820216491818428, 0.0038440353237092495, 0.016725167632102966, -0.008004678413271904, -0.0038784490898251534, 0.008266224525868893, -0.00953953992575407, -0.009333056397736073, 0.01398581825196743, -0.015321078710258007, -0.006597149185836315, 0.00010216633381787688, -0.011549312621355057, -0.006339044775813818, -0.020524464547634125, -0.04261820390820503, 0.008699839934706688, 0.015018235892057419, -0.019973840564489365, -0.03892903029918671, -0.027476076036691666, 0.0035790479741990566, -0.0029595973901450634, -0.002054511336609721, 0.008596598170697689, 0.019326860085129738, 0.019381921738386154, -0.001996007515117526, 0.007956499233841896, 0.02710440568625927, -0.0016845616046339273, -0.009167869575321674, -0.024791790172457695, -0.03738728538155556, -0.02110261842608452, -0.015100829303264618, -0.025466302409768105, 0.014040880836546421, -0.012760682962834835, -0.006789867300540209, -0.024915680289268494, -0.020882368087768555, -0.013806866481900215, -0.008803081698715687, -0.017840178683400154, 0.018638581037521362, 0.021322866901755333, -0.001721556531265378, 0.01627090387046337, 0.01017275545746088, -0.001443664077669382, 0.006421638187021017, -0.011742030270397663, -0.0013120308285579085, 0.00851400475949049, -0.011900334618985653, 0.019134141504764557, 0.007213158532977104, -0.01434372365474701, 0.0047628870233893394, 0.018363269045948982, 0.007302634418010712, 0.027090640738606453, -0.0019598728977143764, 0.016105717048048973, -0.023222515359520912, -0.005709270015358925, -0.035818010568618774, -0.005179295316338539, 0.017482273280620575, 0.004095256794244051, -0.016463620588183403, 0.0046011414378881454, 0.03512973338365555, -0.013104821555316448, 0.012836392968893051, 0.0027359069790691137, 0.01801913045346737, -0.021322866901755333, 0.008741136640310287, -0.01485304906964302, -0.002983687212690711, 0.006690066773444414, -0.011246469803154469, 0.02812305837869644, -0.03457910940051079, 0.01145983673632145, 0.012134348973631859, -0.012196294032037258, -0.02832954190671444, -0.029293131083250046, 0.00381306279450655, -0.030339315533638, -0.010957392863929272, -0.008858144283294678, -0.0075641805306077, -0.010565074160695076, 0.0025844855699688196, -0.0038337111473083496, -0.015775341540575027, -0.002054511336609721, 0.021364163607358932, 0.015362375415861607, -0.014784221537411213, 0.011996693909168243, 0.032376620918512344, -0.02860485389828682, -0.011287766508758068, -0.0037958556786179543, -0.02307109348475933, -0.006325278896838427, -0.03378070890903473, 0.012733151204884052, -0.027641262859106064, 0.015266016125679016, -0.021405460312962532, -0.025232288986444473, -0.014274895191192627, -0.008809964172542095, -0.0033932127989828587, -0.0019701970741152763, 0.009532656520605087, 0.2944730520248413, -0.025108398869633675, -0.011831507086753845, 0.024819321930408478, -0.006356251426041126, -0.0001768015354173258, 0.007694953121244907, -0.004687176551669836, 0.003078325418755412, 0.014825518243014812, -0.009078392758965492, -0.009505125693976879, 0.004597700200974941, -0.011673202738165855, 0.011170759797096252, -0.01228577084839344, -0.03069721907377243, -0.008142334409058094, -0.03570788726210594, -0.00432583037763834, 0.04360932484269142, 0.01305664237588644, -0.0005372873856686056, -0.006321837659925222, 0.011535546742379665, 0.012643675319850445, -0.003716703737154603, 0.01781264692544937, 0.02841213531792164, -0.006352810189127922, -0.006253009662032127, 0.0167526975274086, -0.0002557384723331779, 0.004759445786476135, 0.0033020158298313618, -0.006841488182544708, 0.04325141757726669, -0.004807624965906143, 0.0166288074105978, 0.0029320663306862116, -0.013187414966523647, 0.013793100602924824, -0.009505125693976879, -0.014151005074381828, -0.01569274812936783, 0.005781539250165224, -0.0034293474163860083, -0.01865234598517418, -0.0032314674463123083, 0.017234493046998978, -0.0021457080729305744, -0.005981139838695526, 0.012829510495066643, 0.004563286434859037, -0.004511665552854538, 0.00236079515889287, 0.03521232679486275, -0.009202282875776291, -0.0064044310711324215, -0.007942733354866505, 0.002978525124490261, 0.035652823746204376, -0.022933438420295715, 0.034744296222925186, -0.01896895468235016, -0.018239378929138184, -0.017771350219845772, 0.018597284331917763, 0.01228577084839344, -0.021543115377426147, 0.0037304693832993507, -0.005423634313046932, 0.0019650349859148264, -0.0025552338920533657, -0.03562529385089874, -0.021281570196151733, 0.035294920206069946, 0.02327757701277733, 0.031660810112953186, 0.050437044352293015, 0.0017508083255961537, 0.004618348553776741, -0.0013214946957305074, 0.001361070666462183, -0.026774032041430473, -0.02932066284120083, 0.01647738739848137, -0.01801913045346737, -0.006077498663216829, -0.0023022915702313185, 0.020441871136426926, 0.004081491380929947, 0.0015976664144545794, -0.013084173202514648, 0.0004899682244285941, 0.03848853334784508, -0.019189203158020973, 0.018156785517930984, -0.018418332561850548, -0.00036650829133577645, -0.04303117096424103, 0.038736313581466675, -0.004893660079687834, 0.019822420552372932, -0.017055541276931763, -0.0072751035913825035, -0.0012870806967839599, 0.012554199434816837, 0.013380133546888828, -0.024502713233232498, -0.012574847787618637, -0.05731983110308647, -0.00217840145342052, 0.012382129207253456, 3.446769551374018e-05, 0.027008047327399254, -0.018404565751552582, -0.01734461821615696, 0.0029337869491428137, -0.014288661070168018, 0.03069721907377243, -0.008803081698715687, -0.01116387639194727, -0.008348817937076092, 0.002556954510509968, -0.01110193133354187, -0.008465825580060482, -0.008844378404319286, -0.002250670688226819, -0.0486750528216362, 0.02757243625819683, -0.0010659713298082352, 0.027751388028264046, 0.01647738739848137, 0.023456530645489693, 0.008940737694501877, -0.009952506981790066, 0.008527770638465881, 0.005206826608628035, -0.0084176454693079, 0.018266910687088966, -0.01920296996831894, 0.010516894981265068, -0.020373042672872543, -0.013400781899690628, -0.0025156578049063683, 0.014591503888368607, 0.010420535691082478, 0.01035170815885067, -0.015266016125679016, -0.04358179122209549, -0.008562183938920498, 0.003558399621397257, -0.011776444502174854, 0.0258379727602005, -0.014453847892582417, -0.026127049699425697, -0.03981002792716026, -0.0037373520899564028, 0.03898409381508827, -0.04380204156041145, -0.01046871580183506, 0.026374829933047295, -0.025727849453687668, -0.01396516989916563, -0.03372564539313316, -0.1775207817554474, -0.012753799557685852, 0.05046457797288895, -0.02307109348475933, 0.039369527250528336, 0.011136345565319061, -0.014605268836021423, 0.01706930622458458, -0.023855730891227722, -0.007722484413534403, 0.0257966760545969, 0.003357078181579709, -0.015279782004654408, 0.004429072141647339, -0.000995422713458538, 0.016917884349822998, -0.020496932789683342, 0.001353327534161508, 0.05324522405862808, 0.01319429837167263, 0.04760133847594261, -0.02351159229874611, -0.026140816509723663, 0.0026705204509198666, 0.012079287320375443, 0.005182737018913031, -0.02252047136425972, 0.016050653532147408, -0.004817949142307043, -0.016491152346134186, -0.008052858524024487, 0.003940394148230553, 0.032651931047439575, -0.006022436544299126, 0.0034637614153325558, -0.008341935463249683, -0.013999584130942822, 0.004618348553776741, -0.008121686056256294, 0.010000686161220074, 0.012643675319850445, 0.02492944523692131, -0.00037769280606880784, 0.011473601683974266, 0.009587719105184078, 0.024323761463165283, 0.02611328475177288, -0.029540911316871643, 0.01226512249559164, 0.012623026967048645, 0.025314882397651672, -0.02773762308061123, -0.019423218443989754, -0.011666320264339447, 0.015816638246178627, 0.012987814843654633, -0.022947203367948532, 0.004687176551669836, -0.025411240756511688, 0.01584417000412941, -0.004016105085611343, -0.025507599115371704, 0.01778511516749859, 0.011852155439555645, -0.010950510390102863, -0.015431202948093414, -0.019258031621575356, 0.014151005074381828, 0.003148874035105109, 0.009945623576641083, 0.013627913780510426, -0.031220311298966408, -0.016298433765769005, -0.00938123557716608, 0.021667005494236946, -0.017798881977796555, -0.0004921191139146686, 0.015417438000440598, 0.02461283840239048, -0.0013705345336347818, -0.002711817156523466, 0.03157821670174599, -0.002794410567730665, -0.02484685182571411, -0.0019323418382555246, 0.01592676341533661, 0.012657441198825836, -0.006762336008250713, -0.04966617375612259, 0.00432583037763834, 0.04206757992506027, -0.04049830511212349, -0.02081354148685932, -0.012870807200670242, 0.014742924831807613, -0.0037683246191591024, -0.0039610425010323524, -0.01019340381026268, -0.00014378566993400455, -0.0010599488159641623, -0.017840178683400154, 0.004921190906316042, -0.015610155649483204, 0.018858829513192177, 0.013022228144109249, 0.021790895611047745, 0.01722072809934616, 0.026718970388174057, 0.04358179122209549, -0.023002266883850098, 0.0046699694357812405, -0.003159198211506009, 0.012375246733427048, 0.002359074540436268, 0.01722072809934616, 0.01635349728167057, -0.0036100205034017563, 0.00015163635544013232, -0.0076605393551290035, -0.012058638967573643, -0.02987128496170044, -0.0005708409589715302, -0.017468508332967758, 0.018005365505814552, 0.0027737622149288654, -0.0016604717820882797, -0.03306489810347557, -0.001891045132651925, 0.010640785098075867, 0.02809552662074566, 0.008926971815526485, 0.023676779121160507, 0.012099935673177242, 0.024227401241660118, -0.027723856270313263, 0.004318947438150644, -0.010303528979420662, -0.019368156790733337, -0.012767565436661243, -0.004604583140462637, 0.02002890408039093, 0.019615937024354935, 0.001360210357233882, -0.006067174486815929, 0.0063803414814174175, 0.018542222678661346, -0.002090645954012871, -0.017454741522669792, 0.00034241852699778974, -0.01412347424775362, -0.008885675109922886, 0.011755796149373055, -0.02607198804616928, 0.011046869680285454, 0.005533759016543627, 0.010262232273817062, 0.021198976784944534, 0.006583383306860924, -0.0022196981590241194, -0.01293963473290205, 0.005726476665586233, 0.021501818671822548, -0.037359755486249924, -0.03248674422502518, 0.009835499338805676, -0.008279990404844284, 0.009298642165958881, -0.004694059025496244, -0.006108471192419529, -0.004608024377375841, -0.008617246523499489, 0.0013756966218352318, -0.008803081698715687, 0.02505333535373211, 0.000906806904822588, -0.011955397203564644, -0.03969990089535713, 0.006197947543114424, -0.014440082013607025, 0.0039369529113173485, 0.03006400354206562, -0.00043641155934892595, 0.03061462566256523, 0.012512902729213238, -0.01730332151055336, 0.015472499653697014, -0.001909972750581801, 0.008920089341700077, -0.0009721933165565133, 0.03788284584879875, 0.017440976575016975, 0.012444074265658855, -0.017688756808638573, -0.014522675424814224, 0.007633008062839508, 0.014020232483744621, -0.0011588889174163342, 0.026044456288218498, -0.0065214382484555244, 0.022217629477381706, -0.007915202528238297, -0.004360244143754244, -0.013903224840760231, -0.021501818671822548, 0.005058846902102232, -0.0017998481635004282, -0.028549790382385254, -0.030642157420516014, 0.0034018163569271564, -0.015389906242489815, 0.009140337817370892, 0.03829581290483475, -0.010585722513496876, -0.008073506876826286, -0.006476700305938721, -0.008947620168328285, -0.008259342052042484, -0.008885675109922886, 0.013627913780510426, -0.007674304768443108, 0.007254455238580704, -0.015871701762080193, 0.011742030270397663, -0.004429072141647339, 0.011604375205934048, 0.012471606023609638, -0.007357697002589703, -0.009794202633202076, -0.09652417153120041, 0.016257137060165405, 0.009869913570582867, -0.014178536832332611, -0.016559980809688568, -0.001169213093817234, 0.026016926392912865, -0.020593291148543358, 0.0019547108095139265, -0.006373458541929722, -0.05602586641907692, 0.007694953121244907, -0.00522403372451663, -0.010578840039670467, -0.029183007776737213, -0.002264436101540923, 0.014247364364564419, -0.002082042396068573, 0.006803632713854313, 0.01943698339164257, 0.009780436754226685, 0.0049246326088905334, -0.012196294032037258, 0.012402777560055256, -0.046087127178907394, 0.00510702608153224, -0.0018738381331786513, 0.031825996935367584, 0.0014677537837997079, -0.008899440988898277, -0.005258447490632534, -0.009780436754226685, -0.011274001561105251, 0.019891247153282166, -0.01019340381026268, -0.015734044834971428, 0.024874383583664894, -0.005151764489710331, 0.030036471784114838, 0.041186582297086716, -0.029926348477602005, -0.00948447734117508, 0.001374836196191609, -0.006524879951030016, -0.01511459518224001, 0.01130153238773346, -0.007240689359605312, 0.010730260983109474, 0.015610155649483204, 0.015816638246178627, 0.03507466986775398, 0.02907288260757923, 0.01896895468235016, 0.002054511336609721, 0.014075295068323612, -0.0365888848900795, 0.01806042715907097, 0.01226512249559164, 0.006597149185836315, -0.017840178683400154, 0.018679877743124962, 0.0020080525428056717, 0.014784221537411213, 0.007158095948398113, -0.003875007852911949, 0.008094155229628086, -0.005626676604151726, -0.010702730156481266, 0.03369811549782753, -0.01037235651165247, -0.03361552208662033, -0.001712953089736402, -0.006376899778842926, 0.010984924621880054, 0.009154103696346283, -0.004212264437228441, 0.01110193133354187, 0.022258926182985306, -0.017674991860985756, 0.022933438420295715, 0.01761992834508419, 0.0018600726034492254, -0.030174128711223602, 0.023993387818336487, 0.021956082433462143, -0.005499344784766436, -0.008871909230947495, -0.019533343613147736, -0.030834876000881195, -0.0029165800660848618, -0.028081761673092842, 0.012932752259075642, 0.015458734706044197, 0.014412551186978817, 0.0074747041799128056, 0.028384603559970856, 0.015444968827068806, -0.0059501673094928265, 0.04638996720314026, -0.022341519594192505, 0.023456530645489693, 0.003439671592786908, 0.00035618411493487656, -0.028714977204799652, -0.018666112795472145, 0.01485304906964302, -0.02196984924376011, -0.03226649388670921, -0.013765569776296616, 0.008142334409058094, -0.02157064713537693, -0.0065661766566336155, 0.0008035650826059282, 0.02560395933687687, -0.029458317905664444, 0.0037545589730143547, -0.024227401241660118, -0.01872117444872856, -0.019588405266404152, 0.004150319378823042, 0.01717943139374256, 0.017193196341395378, 0.027861513197422028, -0.011514898389577866, 0.021391695365309715, -0.013579734601080418, 0.001360210357233882, -0.029210537672042847, 0.030724750831723213, -0.007667422294616699, 0.004115905147045851, -0.007047971710562706, -0.010158990509808064, -0.03579048067331314, -0.02302979677915573, 0.010819737799465656, -0.011026221327483654, -0.0023091742768883705, -0.016023123636841774, 0.04168214276432991, 0.006001788191497326, 0.008176748640835285, 0.00849335640668869, 0.006652211304754019, -0.010303528979420662, -0.006930964067578316, 0.018266910687088966, -0.007901436649262905, -0.014729158952832222, 0.015596389770507812, -0.01497693918645382, 0.004380892496556044, -0.007502235472202301, -0.010454949922859669, -0.0026653583627194166, -0.014825518243014812, 0.013614147901535034, -0.013497141189873219, 0.017468508332967758, 0.051180385053157806, -0.0012982652988284826, 0.02019409090280533, 0.009732257574796677, -0.025177225470542908, -0.02243787795305252, 0.022217629477381706, -0.00215259101241827, 0.008094155229628086, -0.014233598485589027, 0.027641262859106064, 0.004473810084164143, -0.0022988501004874706, -0.031633276492357254, -0.007550414651632309, 0.007288869004696608, 0.002088925102725625, 0.018679877743124962, 0.005957050248980522, 0.005327275488525629, 0.001275896211154759, 0.01321494672447443, -0.0242549329996109, -0.03190859034657478, -0.010943627916276455, -0.003105856478214264, -0.012395895086228848, -0.0002217547153122723, 0.021391695365309715], "696b6e1e-aca8-41e9-aab9-366de11b3628": [-0.00732597429305315, -0.014854323118925095, -0.002275031991302967, -0.018591513857245445, -0.017255838960409164, 0.0037945308722555637, -0.016594747081398964, -0.036022745072841644, 0.017889948561787605, -0.012803589925169945, 0.01605508103966713, -0.005750822369009256, -0.009174332022666931, -0.01381546538323164, -0.019252605736255646, -0.015245581045746803, -0.008998940698802471, 0.0019158164504915476, 0.02394770458340645, -0.022328706458210945, -0.005298851523548365, 0.012891286052763462, 0.0036427495069801807, -0.04230986163020134, -0.005892484914511442, 0.002585340291261673, -4.861742490902543e-05, -0.027509504929184914, 0.012236939743161201, 0.018227240070700645, 0.014463065192103386, 0.0007960082148201764, 0.0006943991174921393, -0.026052406057715416, -0.010348106734454632, 0.0184565968811512, -0.00018298070062883198, 0.00436118058860302, -0.0017623486928641796, -0.0013120644725859165, 0.03367519751191139, -0.013795227743685246, 0.0017792133148759604, 0.0036022744607180357, -0.023354072123765945, 0.012176227755844593, -0.006135334726423025, -0.006789680570363998, 0.0007146366406232119, 0.006422032602131367, -0.020264480262994766, -0.018254222348332405, -0.01775503158569336, -0.01315437350422144, -0.02323264628648758, 0.011225065216422081, -0.01949545554816723, 0.0019562914967536926, -0.024797679856419563, -0.012297652661800385, -0.017228856682777405, -4.158173396717757e-05, -0.03068004548549652, -0.005629397463053465, 0.013909907080233097, 0.024406421929597855, -0.022949323058128357, -0.0031401850283145905, -0.04638434574007988, 0.009073144756257534, 0.0037945308722555637, 0.015744773671030998, 0.0293038971722126, 0.004317332990467548, 0.02076367288827896, 0.013336511328816414, -0.040825776755809784, 0.009127111174166203, 0.017606623470783234, -0.007137090899050236, 0.009315994568169117, -0.014220215380191803, -0.003200897481292486, -0.001711755059659481, 0.012398839928209782, -0.014368623495101929, -0.007818419486284256, 0.028548363596200943, -0.012837319634854794, -0.010671907104551792, 0.0026308747474104166, 0.012668673880398273, -0.0005308127147145569, 0.021586664021015167, 0.0009781457483768463, 0.014220215380191803, 0.019198639318346977, 0.011656798422336578, 0.009585827589035034, -0.036373529583215714, 9.4388953584712e-05, 0.011818698607385159, -0.00106921442784369, -0.004307214170694351, -0.030248312279582024, -0.010476278141140938, 0.031867314130067825, -0.01160957757383585, -0.003969922661781311, -0.014894798398017883, -0.02590399608016014, 0.016824105754494667, -5.199034058023244e-05, -0.03437676280736923, -0.03211016207933426, -0.00029449776047840714, 0.03038322925567627, -0.05844589322805405, -0.026767464354634285, 0.02014305628836155, 0.013532140292227268, 0.010624686256051064, 0.02632223814725876, 0.024365946650505066, 0.006192674394696951, 0.026794446632266045, -0.0061555723659694195, 0.00034298343234695494, -0.012466298416256905, -0.017552657052874565, 0.06427428871393204, 0.010570719838142395, 0.04427964612841606, 0.015447956509888172, -0.01906372234225273, -3.731947344931541e-06, -0.009100127965211868, 0.008641411550343037, 0.0015405794838443398, -0.005804788786917925, 0.024150080978870392, 0.023799296468496323, 0.008587445132434368, -0.01600111462175846, 0.000996696762740612, 0.036994144320487976, 0.009734236635267735, -0.007440653163939714, 0.015609856694936752, 0.0028045799117535353, 0.006310726515948772, -0.02871026284992695, -0.010874281637370586, -0.0319482646882534, -0.0015431091887876391, -0.007973574101924896, 0.011542119085788727, 0.011913140304386616, 0.003113201819360256, -0.0011206513736397028, 0.005683363880962133, 0.018483581021428108, 0.01160283200442791, -0.012958744540810585, 0.005234765820205212, 0.03877504542469978, 0.02862931415438652, 0.00010250503692077473, 0.0029968360904604197, -0.01144093181937933, 0.02185649797320366, -0.012965490110218525, -0.025027038529515266, 0.031192729249596596, -0.030491162091493607, 0.019684338942170143, -0.018200255930423737, 0.020277973264455795, 0.006840274203568697, -0.004883982706815004, -0.008769582025706768, -0.00035120491520501673, -0.016986006870865822, 0.042147960513830185, -0.01536700688302517, -0.03756079450249672, -0.008857278153300285, 0.005781178362667561, 0.01498924009501934, -0.017822489142417908, 0.02427150495350361, 0.024338964372873306, 0.027900762856006622, 0.013026203028857708, -0.584135115146637, -0.028062663972377777, -0.014867815189063549, 0.0034201371017843485, 0.011650052852928638, 0.03143557906150818, -0.007912861183285713, 0.030437195673584938, -0.016567764803767204, 0.018294697627425194, -0.01880738139152527, 0.014355131424963474, -0.014517031610012054, -0.01060444861650467, -0.0008335319580510259, -0.013963873498141766, 0.00839181523770094, -0.014962256886065006, -0.02970864623785019, 0.027131738141179085, -0.03864013031125069, 0.019940681755542755, -0.008425544947385788, 5.2491010137600824e-05, 0.024433406069874763, 0.008594190701842308, 0.010874281637370586, -0.012796844355762005, 0.008364832028746605, 0.045143112540245056, -0.02792774699628353, -0.0012656868202611804, 0.015623347833752632, -0.016473323106765747, 0.05075564235448837, 0.002146861283108592, -0.03996231034398079, 0.011137369088828564, -0.007622790522873402, 0.06519172340631485, -0.014638456515967846, -0.029195962473750114, 0.02008908987045288, 0.0037405642215162516, -0.011838936246931553, -0.004711964167654514, 0.03313552960753441, -0.024136587977409363, 0.0004367926449049264, 0.010496515780687332, 0.004880609922111034, -0.011076657101511955, 0.011036181822419167, -0.00362251210026443, 0.006148826330900192, 0.002221065340563655, 0.03880202770233154, -0.03378313034772873, 0.03138161450624466, -0.00460740365087986, -0.023772314190864563, 0.031543511897325516, -0.0021114456467330456, -0.008459273725748062, -0.012075040489435196, 0.013808718882501125, -0.012661927379667759, -0.015744773671030998, 0.008580698631703854, -0.013586106710135937, 0.014719406142830849, -0.010192953050136566, -0.0008912931079976261, 0.007926353253424168, 0.021573172882199287, 0.025796063244342804, 0.026713496074080467, -0.02620081417262554, -0.017458215355873108, 0.02393421344459057, 0.008364832028746605, -0.014071806333959103, -0.005642889067530632, -0.014206723310053349, 0.0037405642215162516, -0.015434464439749718, -0.025688130408525467, -0.01869944855570793, 0.005592294968664646, 0.024662762880325317, -8.70634030434303e-05, 0.013795227743685246, 0.02288186363875866, -0.017997881397604942, -0.011339744552969933, 0.010550482198596, -0.01847008988261223, -0.015812231227755547, -0.016270948573946953, -0.022679489105939865, -0.025188937783241272, 0.00045239238534122705, -0.00510996812954545, 0.0015017909463495016, 0.030599096789956093, -0.030545130372047424, -0.03246094658970833, 0.005150442942976952, 0.057528458535671234, -0.021289847791194916, -0.01907721348106861, 0.007885877974331379, -0.013909907080233097, -0.022355688735842705, 0.03132764622569084, -0.032218094915151596, 0.012304398231208324, -0.008904499001801014, 0.016837598755955696, -0.013694040477275848, 0.025134971365332603, -0.004964932799339294, 0.018847856670618057, -0.0016805555205792189, 0.015259073115885258, 0.026173830032348633, 0.036670345813035965, -0.021762056276202202, 0.002347549656406045, 0.01670268177986145, -0.009943356737494469, 0.012088531628251076, 0.012520264834165573, -0.004711964167654514, -0.0021148184314370155, 0.014220215380191803, 0.008047778159379959, -0.012412331998348236, 0.021006522700190544, -0.011811953037977219, -0.00782516598701477, 0.005541701335459948, 0.0007428848184645176, 0.012904777191579342, 0.01076634880155325, -0.027050787582993507, 0.0071101076900959015, -0.0075823157094419, -0.01077309437096119, -0.002178903901949525, 0.009828678332269192, 0.0020439871586859226, -0.008749344386160374, 0.010442548431456089, 0.00017539164400659502, -0.013855939731001854, -0.016189998015761375, -0.01805184781551361, 0.022396164014935493, -0.014098789542913437, -0.004664743319153786, 0.0044218930415809155, -0.03181334584951401, -0.005619278643280268, -0.020709706470370293, -0.015407481230795383, -0.01295199804008007, 0.021222388371825218, -0.006442270241677761, -0.042525727301836014, 0.005507972091436386, -0.0012817081296816468, 0.0011805207468569279, -0.0054573784582316875, -0.006219657603651285, 0.0011897962540388107, -0.026726989075541496, 0.01160957757383585, -0.0008175105904228985, -0.016109047457575798, 0.014517031610012054, -0.011299269273877144, 0.021262863650918007, 0.005204409826546907, 0.014301165007054806, 0.00451970798894763, 0.03658939525485039, 0.025472262874245644, -0.025715112686157227, 0.011029436253011227, -0.03575291112065315, 0.03694017976522446, 0.009167586453258991, -0.00804103258997202, 0.030248312279582024, 0.015137648209929466, 0.01983274705708027, 0.024622289463877678, 0.005555192939937115, 0.014759881421923637, 0.016567764803767204, 0.013525393791496754, 0.010483023710548878, -0.02590399608016014, 0.02281440608203411, -0.015947148203849792, 0.007008919958025217, -0.0026207559276372194, 0.01635189726948738, 0.00033054579398594797, -0.019225623458623886, -0.036373529583215714, -0.02010258100926876, -0.011953615583479404, 0.007339465897530317, 0.0028433683328330517, -0.019549421966075897, 0.005096476525068283, -0.0044151474721729755, 0.006887495052069426, 0.002416694536805153, -0.00127664883621037, 0.02119540609419346, -0.01945498026907444, 0.009289011359214783, 0.026133354753255844, -0.015879690647125244, 0.024770697578787804, -0.005922840908169746, -0.027482520788908005, -0.009828678332269192, -0.011724256910383701, -0.014570998027920723, 0.0014916722429916263, 0.024419913068413734, -0.027846796438097954, 0.014017839916050434, -0.019981155171990395, 0.015879690647125244, 0.002006885129958391, 0.015218597836792469, 0.006675001233816147, 0.00477604940533638, 0.004017143044620752, 0.023286614567041397, 0.008634665980935097, 0.031570497900247574, 0.02487863041460514, -0.029222946614027023, 0.00833110325038433, -0.02014305628836155, -0.0006779561517760158, -0.011818698607385159, 0.013963873498141766, 0.020345430821180344, 0.002501017414033413, 0.018915314227342606, 0.0028501141350716352, 0.012075040489435196, 0.042768578976392746, 0.030167363584041595, 0.007649774197489023, 0.002809639321640134, 0.010307632386684418, -0.01949545554816723, -0.00849974900484085, -0.0034302559215575457, -0.03005942888557911, -0.005349445156753063, -0.026673022657632828, -0.006162317935377359, 0.02049383893609047, 0.04649227857589722, -0.0038889723364263773, 0.004226264078170061, -0.00724502420052886, 0.0008794878958724439, 0.012236939743161201, 0.02597145549952984, -0.0133297648280859, -0.014206723310053349, -0.02698333002626896, 0.027846796438097954, 0.002136742463335395, 0.023408038541674614, 0.014759881421923637, -0.001145948306657374, 0.0007116853375919163, 0.002811325713992119, 0.0018483580788597465, 0.005619278643280268, 0.0008786446996964514, 0.0033594246488064528, -0.011865919455885887, 0.006442270241677761, -0.014530523680150509, 0.0225580632686615, -0.01076634880155325, -0.02083113044500351, -0.006425405386835337, 0.009983832016587257, 0.008641411550343037, -0.03855917975306511, -0.013754752464592457, 0.04463042691349983, -0.0021940821316093206, -0.006668255664408207, -0.023286614567041397, 0.015596364624798298, -0.010246919468045235, -0.027091262862086296, -0.021627139300107956, -0.007980319671332836, -0.01976528950035572, -0.010698890313506126, 0.008695377968251705, 0.0026865277905017138, -0.0031840328592807055, 0.03613067790865898, 0.020696213468909264, -0.010462786071002483, -0.019954172894358635, 0.0011493212077766657, 0.009106873534619808, 0.0056968554854393005, 0.011643307283520699, -0.0047254557721316814, 0.0009461030131205916, -0.027711879462003708, -0.010010815225541592, -0.01736377365887165, -0.015272565186023712, 0.006604169961065054, -0.014436081983149052, 0.012715894728899002, 0.00485699949786067, 0.007150582503527403, -0.017835980281233788, 0.019360538572072983, -0.01349841058254242, -0.02049383893609047, -0.009241790510714054, 0.013086915016174316, -0.026740480214357376, 0.007123599294573069, 0.0038248870987445116, 0.02728014625608921, -0.015771755948662758, -0.0035213246010243893, -0.01161632314324379, 0.0354560948908329, 0.030895913019776344, 0.0036764787510037422, -0.01639237254858017, 0.00461077643558383, 0.007528349291533232, -0.010206444188952446, 0.04986519366502762, 0.01664871536195278, 0.013201594352722168, 0.022234264761209488, 0.04886681213974953, -0.013882922939956188, 0.02149222232401371, 0.01127903163433075, 0.020561298355460167, 0.012290907092392445, -0.010334615595638752, 0.016878072172403336, -0.006121843121945858, -0.008223169483244419, -0.014220215380191803, 0.002922632033005357, -0.022004906088113785, 0.0334053635597229, 0.0001399760221829638, -0.043443161994218826, 0.014948764815926552, -0.01942799799144268, 0.042120978236198425, -0.03739889711141586, 0.001979901921004057, 0.011083402670919895, -0.016486814245581627, -0.0030693537555634975, 0.0030575485434383154, -0.022018397226929665, -0.002160352887585759, 0.00024095270782709122, -0.031192729249596596, -0.01004454493522644, -0.018888331949710846, -0.013248815201222897, -0.002541492460295558, 0.01565033197402954, -0.0492175929248333, -0.005669872276484966, 0.021762056276202202, 0.013215085491538048, -0.0016189997550100088, 0.021708089858293533, 0.012122261337935925, -0.0197787806391716, 0.041473377496004105, -0.0037304454017430544, -0.0031924652867019176, -0.00749462004750967, -0.03448469564318657, 0.01515114028006792, -0.012176227755844593, 0.006442270241677761, 0.008533477783203125, -0.0038417517207562923, 0.004718709737062454, 0.01903674006462097, -2.666711952770129e-05, 0.016189998015761375, -0.008425544947385788, -0.010138986632227898, -0.007035903166979551, -0.009680269286036491, 0.012054802849888802, 0.012290907092392445, -0.011717511340975761, 0.014692422933876514, -0.035321179777383804, -0.004934576340019703, -0.015232089906930923, -0.01570429839193821, -0.018267715349793434, 0.00657718675211072, 0.018227240070700645, -0.03367519751191139, 0.0006092329858802259, 0.008931482210755348, 0.00922155287116766, 0.005427022464573383, 0.011515135876834393, 0.0015060071600601077, -0.009268773719668388, 0.012290907092392445, 0.006627780385315418, -0.008250153623521328, -0.0019326810725033283, 0.01635189726948738, -0.03178636357188225, 0.02968166396021843, 0.014125773683190346, 0.01841612346470356, 0.01608206517994404, -0.01432814821600914, -0.04989217594265938, -0.014719406142830849, 0.01706695556640625, -0.0007196959923021495, 0.006142080295830965, -0.02288186363875866, -0.03240697830915451, -0.03175938129425049, -0.032272063195705414, -0.014921781606972218, 0.011690528132021427, -0.024986563250422478, -0.022301722317934036, -0.03831632807850838, -0.007177565712481737, -0.0068908678367733955, -0.008681886829435825, 0.006138707511126995, -0.027185704559087753, 0.003244745545089245, 0.022018397226929665, 0.008068015798926353, 0.002064224798232317, 0.01983274705708027, 0.0010337987914681435, -0.03998929634690285, -0.019306572154164314, -0.025472262874245644, -0.028413446620106697, -0.008486256934702396, 0.009120365604758263, 0.011339744552969933, 0.0027438674587756395, 0.016959022730588913, 0.00691447826102376, 0.012405586428940296, -0.031894296407699585, 0.01110364031046629, 0.0004949754802510142, -0.031516529619693756, 0.00217721750959754, 0.0002171314845327288, 0.010240173898637295, 0.005268495064228773, 0.02288186363875866, 0.029789596796035767, -0.038019511848688126, -0.009079890325665474, 0.018497072160243988, -0.00767001137137413, 0.010287394747138023, -0.0025634162593632936, -0.04330824315547943, -0.003922701813280582, -0.003679851535707712, -0.01281033642590046, -0.008627919480204582, -0.008857278153300285, -0.026888888329267502, 0.013909907080233097, 0.0036899703554809093, 0.026713496074080467, 0.018267715349793434, 0.016810614615678787, -0.01570429839193821, 0.004000278655439615, -0.010530244559049606, 0.011859173886477947, 0.012695657089352608, 0.000871898839250207, -0.0048131514340639114, 0.012628198601305485, 0.0010413879062980413, 0.014867815189063549, -0.011710764840245247, 0.008182695135474205, 0.0038586161099374294, 0.023677872493863106, 0.04357807710766792, -0.0017808998236432672, -0.017943914979696274, 0.0011948555475100875, -0.02833249606192112, -0.0408797450363636, -0.03483548015356064, 0.009073144756257534, -0.0038990911561995745, 0.0029007080011069775, 0.01880738139152527, -0.0017741539049893618, -0.014476556330919266, -0.004533199593424797, -0.005649634636938572, 0.003200897481292486, -0.012540502473711967, 0.036967162042856216, 0.012250431813299656, 0.002678095595911145, 0.014355131424963474, 0.019927188754081726, 0.0005388233694247901, -0.03982739523053169, 0.005865501239895821, 0.0033358142245560884, 0.030167363584041595, 0.04193209484219551, -0.000990794156678021, -0.015960639342665672, 0.017242347821593285, -0.0037000891752541065, -0.018254222348332405, -0.024473879486322403, 0.02895311266183853, 0.02792774699628353, -0.014301165007054806, -0.03707509487867355, 0.017498688772320747, -0.05210481211543083, 0.012958744540810585, 0.003851870307698846, -0.010321123525500298, -0.014206723310053349, -0.0004155011265538633, 0.001769094611518085, 0.020669231191277504, -0.0017353653674945235, 0.013909907080233097, 0.028467413038015366, 0.002302015433087945, 0.00267978198826313, -0.013855939731001854, -0.005413530394434929, 0.015124156139791012, -0.0011240243911743164, 0.03526721149682999, -0.021708089858293533, -0.005595668219029903, 0.02218029648065567, 0.015582873485982418, -0.0005599040887318552, -0.023016780614852905, -0.0041014663875103, 0.044171709567308426, -0.005622651427984238, 0.0028433683328330517, -0.02970864623785019, 0.011629815213382244, -0.0007230689516291022, 0.005973434541374445, 0.007211294956505299, -0.006263505667448044, -0.008243407122790813, -0.01365356519818306, 0.0139908567070961, -0.00172861956525594, 0.016891565173864365, 0.0036764787510037422, -0.0022413027472794056, -0.009295756928622723, -0.02552623115479946, -0.013343256898224354, 0.017876455560326576, -0.03440374508500099, -0.01838913932442665, -0.011805206537246704, -0.02393421344459057, 0.0028467413503676653, 0.0037742932327091694, 0.00832435768097639, 0.021896973252296448, 0.052293695509433746, -0.020736688748002052, -0.0006720535457134247, -0.003980041015893221, 0.009275519289076328, 0.008432290516793728, -0.0013289289781823754, -0.005622651427984238, -0.029438812285661697, 0.018240731209516525, -0.024784188717603683, -0.00724502420052886, -0.03205619752407074, -0.011663543991744518, 0.015299548394978046, -0.004128449596464634, 0.021006522700190544, 0.022072363644838333, 0.005248257890343666, 0.009983832016587257, -0.0012041310546919703, -0.031219713389873505, -0.021613648161292076, -0.013700786046683788, -0.002441991353407502, 0.017984390258789062, -0.0045669288374483585, 0.003219448495656252, -0.014395606704056263, -0.007218040991574526, -0.006381557788699865, -0.04069086164236069, -0.06546156108379364, -0.0016147836577147245, -0.005983553361147642, -0.019589897245168686, -0.026376204565167427, -0.039071861654520035, -0.011474661529064178, -0.010678652673959732, -0.007811673916876316, 0.01088777370750904, 0.0006395892705768347, 0.016864581033587456, 0.028224563226103783, -0.004840134643018246, 0.018483581021428108, -0.004991916008293629, -0.03175938129425049, -0.0030406839214265347, -0.024635780602693558, -0.03248792886734009, -0.01736377365887165, -0.02316518872976303, 0.049244578927755356, -0.0054607512429356575, -0.01772804744541645, -0.029519762843847275, -0.008688632398843765, -0.016203489154577255, -0.002612323733046651, 0.0009283951949328184, 0.03097686357796192, 0.026794446632266045, -0.003912582993507385, -0.01126554049551487, 0.015893181785941124, -0.01094174012541771, -0.02042638137936592, -0.019549421966075897, -0.0031233204063028097, 0.00872236117720604, -0.0044218930415809155, 0.010584210976958275, -0.004749066196382046, -0.0016375508857890964, -0.005899230483919382, -0.003949685022234917, -0.008917990140616894, 0.002531373640522361, 0.033594246953725815, 0.016864581033587456, -0.01842961460351944, -0.009498132392764091, -0.01667569763958454, -0.005646261852234602, -0.0028872163966298103, -0.007116853259503841, -0.005693482700735331, 0.0056091598235070705, 0.02491910569369793, -0.0046141492202878, 0.0004970835288986564, -0.0028467413503676653, 0.011400456540286541, -0.0061724367551505566, 0.014004348777234554, -0.019940681755542755, -0.005669872276484966, 0.008924736641347408, -0.004968305584043264, 0.041473377496004105, -0.03184032812714577, 0.0015178123721852899, 0.004921084735542536, -0.0043510617688298225, -0.026807937771081924, -0.0262277964502573, 0.014004348777234554, -0.03370217978954315, 0.005416903644800186, -0.001355069107376039, 0.0044151474721729755, 0.0011181217851117253, -0.006455761846154928, 0.018335172906517982, -0.034241847693920135, -0.0050458828918635845, 0.014881306327879429, -0.011859173886477947, -0.033891063183546066, 0.008486256934702396, 0.007427161559462547, -0.011359982192516327, -0.02728014625608921, 0.019333556294441223, -0.004469113890081644, 0.020412888377904892, -0.03286569565534592, 0.006556949112564325, -0.02690237946808338, 0.022706471383571625, -0.007460890803486109, 0.00024411480990238488, -0.018281206488609314, 0.011002453044056892, 0.0060071637853980064, 0.00674920529127121, 0.008142219856381416, 0.24630384147167206, -0.0033678568433970213, -0.0030356247443705797, 0.0307609960436821, 0.011130623519420624, -0.009734236635267735, 0.026389697566628456, 0.006084741093218327, -0.008054523728787899, 0.006094859912991524, -0.007865640334784985, 0.007798182312399149, -0.002443677745759487, -0.0036764787510037422, 0.010860790498554707, -0.011238557286560535, -0.024379439651966095, -0.014044823125004768, -0.024716731160879135, 0.014071806333959103, 0.049649327993392944, -0.001567562809213996, -0.003808022476732731, -0.013525393791496754, 0.0009941670577973127, 0.0013348315842449665, -0.006054384633898735, 0.029816579073667526, 0.04533199593424797, 0.004465741105377674, -0.02691587246954441, 0.029519762843847275, -0.008634665980935097, 0.0010784899350255728, 0.0009646540274843574, -0.007278753444552422, 0.0463033951818943, 0.019846240058541298, 0.021748563274741173, 0.003781039034947753, 0.002990090288221836, 0.022922338917851448, -0.040421027690172195, 0.00972074456512928, -0.025323854759335518, -0.0005974277737550437, 0.004290349315851927, -0.031894296407699585, 0.014948764815926552, 0.007339465897530317, -0.01126554049551487, -0.013053186237812042, 0.045143112540245056, 0.017997881397604942, -0.020534314215183258, -0.0194145068526268, 0.02486513927578926, -0.023354072123765945, 0.01913118176162243, 0.03200222924351692, -0.0151646314188838, 0.044873278588056564, -0.013026203028857708, 0.02620081417262554, -0.03262284770607948, 0.007784690707921982, -0.011002453044056892, 0.00502901803702116, 0.011623069643974304, -0.011137369088828564, -0.014355131424963474, 0.006934715900570154, -0.01004454493522644, 0.00691447826102376, -0.022639013826847076, -0.030868928879499435, 0.021896973252296448, -0.0013137508649379015, 0.03621162846684456, 0.03302759677171707, 0.0001741268060868606, 0.007487874012440443, 0.010105256922543049, -0.009005686268210411, -0.028494397178292274, -0.017849473282694817, 0.005416903644800186, -0.01037509087473154, -0.003467357950285077, -0.005706974305212498, 0.0036731057334691286, -0.019279589876532555, 0.0022261247504502535, -0.029627695679664612, -0.008938227780163288, 0.013896415010094643, 0.005946451332420111, 0.029897529631853104, 0.0013542259112000465, 0.005386547185480595, -0.02862931415438652, 0.011683781631290913, 0.021654121577739716, 0.00707637844607234, -0.02795472927391529, 0.004759185016155243, -0.008088253438472748, 0.03318949416279793, 0.022301722317934036, -0.008513241074979305, 0.012918269261717796, -0.0410146601498127, -0.005383174400776625, -0.000529126264154911, 0.002708451822400093, 0.030572112649679184, -0.019711323082447052, -0.024784188717603683, -0.0048064058646559715, 0.007089870050549507, 0.026807937771081924, -0.0072517697699368, -0.0051335785537958145, -0.009862407110631466, -0.01740424707531929, -0.00707637844607234, -0.03310854732990265, -0.02320566400885582, -0.014476556330919266, -0.028791213408112526, 0.013086915016174316, 0.00096802698681131, 0.009970340877771378, -0.018537547439336777, 0.01416624803096056, 0.009936611168086529, 0.018024863675236702, -0.0048097786493599415, 0.005322461947798729, -0.00023547171440441161, -0.006502982694655657, -0.001115592080168426, 0.01872643083333969, -0.00037059918395243585, 0.004830016288906336, -0.028143612667918205, 0.0007993811741471291, 0.005298851523548365, 0.00189389253500849, -0.009417181834578514, -0.04603356122970581, -0.021667614579200745, -0.010037798434495926, -0.018537547439336777, 0.020399397239089012, -0.018861347809433937, -0.042795561254024506, -0.05110642686486244, 0.008094999007880688, 0.014085298404097557, -0.03108479641377926, -0.00783865712583065, 0.014854323118925095, -0.024325471371412277, -0.009289011359214783, -0.018834363669157028, -0.17064258456230164, 0.01536700688302517, 0.015474939718842506, -0.025175446644425392, 0.020642247051000595, 0.01022668182849884, 0.004698472563177347, -0.006941461469978094, -0.009140603244304657, 0.007845403626561165, 0.03685922920703888, 0.0006893397658132017, -0.021100964397192, 0.0007812517578713596, -0.006627780385315418, 0.026511121541261673, -0.03756079450249672, -0.0007163230911828578, 0.039368677884340286, 0.00987589918076992, 0.06195372715592384, -0.037749677896499634, -0.01005129050463438, 0.030113397166132927, -0.0018011372303590178, 0.014463065192103386, -0.00971399899572134, -0.01278335228562355, -4.861742490902543e-05, -0.028386462479829788, -0.018510565161705017, 0.0013921711361035705, 0.012398839928209782, 0.004148686770349741, 0.03286569565534592, -0.02620081417262554, 0.005865501239895821, 0.002108072629198432, 0.007447399199008942, 0.01160957757383585, 0.014287672936916351, 0.03847822919487953, 0.012655181810259819, 0.012068293988704681, -0.002892275806516409, 0.02558019757270813, -0.0009233358432538807, -0.006712103262543678, 0.007784690707921982, 0.0044218930415809155, 0.02116842195391655, -0.05383174493908882, -0.0313546285033226, -0.002654485171660781, 0.03648146241903305, 0.0038417517207562923, -0.021289847791194916, 0.020197022706270218, -0.01667569763958454, -0.005777805577963591, -0.005835145246237516, -0.01536700688302517, 0.0018466716865077615, -0.008250153623521328, -0.017485197633504868, 0.003470730734989047, -0.020237497985363007, 0.01515114028006792, -0.02730713039636612, 0.004398282617330551, 0.009498132392764091, -0.032595861703157425, 0.0214652381837368, -0.0221937894821167, 0.010611194185912609, -0.014436081983149052, 0.005079611670225859, 0.005737330764532089, 0.014570998027920723, 0.006202793214470148, -0.01432814821600914, 0.05296827852725983, 0.014705915004014969, -0.02559368871152401, 0.016136031597852707, 0.023988179862499237, 0.010617940686643124, -0.020615264773368835, -0.0395575612783432, -0.019333556294441223, 0.03594179451465607, -0.022665997967123985, -0.022787421941757202, -0.009019178338348866, 0.024284997954964638, 0.01160957757383585, 0.001249665510840714, -0.0038147682789713144, -0.01635189726948738, -0.029897529631853104, 0.015906672924757004, -0.012324635870754719, -0.0032143890857696533, 0.020331939682364464, 0.0347275473177433, 0.015744773671030998, -0.017822489142417908, 0.017120923846960068, 0.028791213408112526, 0.0024554829578846693, -0.015515414997935295, 0.01144767738878727, 0.016851089894771576, 0.018564531579613686, 0.007406923919916153, 0.012331381440162659, -0.026443663984537125, -0.014570998027920723, -0.021694596856832504, -3.0682338092447026e-06, -0.024973072111606598, -0.0187534149736166, 0.006229776423424482, 0.0184565968811512, 0.017296314239501953, -0.006560322362929583, -0.052752409130334854, 0.005973434541374445, 0.009835423901677132, 0.014206723310053349, -0.0003615344758145511, 0.025823047384619713, 0.0031688548624515533, 0.0139908567070961, -0.01005129050463438, 0.010165969841182232, -0.010510006919503212, -0.025054022669792175, -0.010550482198596, 0.014085298404097557, -0.014800356701016426, 0.019967664033174515, 0.02728014625608921, -0.02795472927391529, 0.008992195129394531, 0.007508111651986837, -0.008493003435432911, -0.002529687248170376, -0.015447956509888172, -0.007096615619957447, -0.02860233001410961, 0.003384721465408802, -0.012722640298306942, 0.03065306320786476, 0.028062663972377777, 0.022261247038841248, 0.0559634268283844, 0.023974688723683357, -0.019225623458623886, -0.017593130469322205, -0.009639794938266277, 0.009032669477164745, -0.018483581021428108, 0.0008668394875712693, 0.029195962473750114, -0.01466543972492218, 0.0030811589676886797, -0.03443072736263275, 0.014544014818966389, 0.006310726515948772, -0.00955209881067276, -0.006422032602131367, -0.027077771723270416, 0.020912081003189087, -0.02825154736638069, -0.021600155159831047, -0.03103082999587059, 0.0018095695413649082, -0.00044396010343916714, -0.012041310779750347, 0.0320831798017025, 0.0046546244993805885, -0.0019883341155946255, 0.009767965413630009, -0.019873222336173058, 0.007298990618437529, 0.015393990091979504, 0.02213982306420803, -0.020062105730175972, 0.03820839524269104, 0.0017775269225239754, 0.008297373540699482, -0.007683503441512585, 0.005582176614552736, -0.0028281903360038996, 0.007777944672852755, -0.005737330764532089, 0.01776852272450924, -0.027765845879912376, 0.012155990116298199, -0.02460879646241665, -0.012918269261717796, -0.016189998015761375, -0.004634386859834194, 0.021991414949297905, -0.01806533895432949, -0.004823270253837109, -0.02526988834142685, 0.00045871661859564483, -0.003148617222905159, 0.02552623115479946, 0.010617940686643124, 0.014719406142830849, -0.0010110316798090935, -0.0031823464669287205, -0.032946646213531494, 0.0015110664535313845, -0.009808440692722797, 0.010692144744098186, -0.008985448628664017, -0.039746444672346115, 0.0007234905497170985, 0.02830551378428936, -0.007481128443032503, -0.0048941015265882015, 0.023016780614852905, -0.021640630438923836, -0.026780955493450165, -0.09379405528306961, 0.01744472235441208, -0.002875411184504628, -0.004152060020714998, 0.00987589918076992, -0.020993031561374664, -0.006246640812605619, -0.014570998027920723, 0.0025077632162719965, 0.0032801611814647913, -0.024460388347506523, 0.02625478059053421, 0.006094859912991524, -0.0025482382625341415, -0.022315213456749916, 0.009342977777123451, 0.012378602288663387, 0.0016628477023914456, 0.00749462004750967, 0.030949879437685013, 0.009268773719668388, -0.004074482712894678, 0.0133297648280859, 0.015272565186023712, -0.018267715349793434, 0.030787980183959007, -0.002217692555859685, 0.02555321343243122, 0.006600797176361084, -0.022045381367206573, -0.004900847561657429, 0.011879411526024342, -0.03143557906150818, 0.01672966405749321, -0.016473323106765747, -0.019859731197357178, 0.013619835488498211, -0.0038586161099374294, 0.01331627368927002, 0.026362713426351547, -0.004458995070308447, 0.0029563610441982746, -0.002614010125398636, 0.012129006907343864, -0.018335172906517982, -0.017593130469322205, 0.0066547635942697525, 0.01538049802184105, 0.02825154736638069, 0.013936890289187431, 0.03262284770607948, 0.003963176626712084, -0.00988264475017786, -0.012898031622171402, -0.0070426492020487785, -0.05941729247570038, 0.011353235691785812, 0.023070747032761574, -0.01909070648252964, -0.025418296456336975, 0.026011930778622627, 0.012864302843809128, 0.01635189726948738, 0.00226491317152977, 0.0052853599190711975, -0.0039395662024617195, -0.013586106710135937, -0.008304120041429996, 0.028818195685744286, -0.018888331949710846, -0.03540213033556938, -0.005548447370529175, 0.004320705775171518, 0.0016957336338236928, -0.010091765783727169, 0.02112794667482376, -0.006668255664408207, 0.005889111664146185, -0.009808440692722797, 0.021640630438923836, -0.013120644725859165, 0.007400178350508213, -0.04171622917056084, 0.01038183644413948, 0.025350838899612427, 0.01913118176162243, -0.006135334726423025, 0.0038012766744941473, -0.014179740101099014, -0.0015017909463495016, -0.022625522688031197, -0.00134157738648355, 0.008061270229518414, 0.020939063280820847, 0.014139264822006226, 0.022935830056667328, 0.002528000622987747, -0.010860790498554707, 0.024419913068413734, 0.004759185016155243, 0.015259073115885258, -0.015582873485982418, -0.014570998027920723, -0.028845179826021194, 0.0035989016760140657, 0.00849974900484085, -0.02965467981994152, -0.052752409130334854, 0.0032835339661687613, 0.013336511328816414, -0.00938345305621624, 0.02489212155342102, -0.010105256922543049, 0.023408038541674614, -0.02416357211768627, -0.00038704214966855943, 0.002104699844494462, -0.040448009967803955, -0.029762612655758858, -0.000839434505905956, 0.02865629643201828, 0.018928805366158485, 0.016176506876945496, -0.018618497997522354, 0.028197579085826874, -0.0062432680279016495, -0.00264099333435297, -0.0163384061306715, 0.028413446620106697, -0.040070246905088425, -0.018982773646712303, 0.016109047457575798, 0.0026899008080363274, -0.0376417450606823, -0.010469531640410423, 0.005902603268623352, 0.018955789506435394, 0.0001611621555639431, 0.013005965389311314, 0.06994079053401947, 0.00955209881067276, 0.013356748037040234, 0.00486037228256464, -0.0012547248043119907, 0.003909209743142128, 0.008911244571208954, 0.026052406057715416, -0.035644978284835815, -0.00816920306533575, 0.011211574077606201, -0.026052406057715416, 0.018888331949710846, 0.006121843121945858, -0.02552623115479946, 0.0063242181204259396, -0.0024672881700098515, 0.0334053635597229, -0.015407481230795383, 0.015933657065033913, 0.04805731028318405, 0.013019456528127193, 0.024379439651966095, 0.016203489154577255, -0.018982773646712303, -0.004037380684167147, 0.037668727338314056, 0.003996905870735645, -0.02347549796104431, -0.01735028065741062, 0.03162446245551109, -0.0017083820421248674, -0.00052322365809232, -0.01980576477944851, -0.005572057794779539, 0.01160283200442791, -0.03648146241903305, 0.02188348025083542, 0.04473835974931717, 0.0059363325126469135, 0.0007766139460727572, -0.010827060788869858, -0.03418787941336632, -0.027900762856006622, 0.0036899703554809093, 0.014233706519007683, -0.022787421941757202, 0.00341507769189775, 0.0020743433851748705], "9182231f-5675-4be9-af96-104c16d80c50": [0.0034061199985444546, -0.024777987971901894, 0.019344577565789223, -0.004320789594203234, 0.01052552554756403, 0.00557675352320075, 0.00484297052025795, -0.00961085595190525, -0.0020460612140595913, 0.011276373639702797, -0.00268086907453835, -0.023289943113923073, -0.023999836295843124, -0.0012482849415391684, -0.02445034496486187, -0.009754199534654617, -0.0013429942773655057, -0.00894191861152649, 0.0032559505198150873, 0.0053617381490767, -0.028996389359235764, 0.002909536473453045, 0.013201274909079075, -0.01964491792023182, -0.009767851792275906, 0.006399273872375488, -0.021310435608029366, -0.021747291088104248, -0.017720015719532967, 0.02042306959629059, 0.023931577801704407, -0.012334386818110943, -0.013754172250628471, -0.0171466413885355, -0.02015003375709057, -0.008839529938995838, -0.0019351403461769223, 0.0029863277450203896, 0.009010177105665207, -0.003126258496195078, 0.007392440922558308, -0.004668910056352615, -0.014279766008257866, 0.0180067028850317, -0.032709673047065735, -0.0011262721382081509, -0.01265520416200161, -0.01886676624417305, -0.025132933631539345, 0.011139855720102787, 0.023139772936701775, -0.012266128323972225, -0.013911168090999126, -0.01582241803407669, -0.008757619187235832, 0.008354892022907734, -0.02776772901415825, 6.895217666169629e-05, -0.03240933641791344, 0.0036245486699044704, -0.00014569013728760183, 0.014143248088657856, -0.022115889936685562, 0.0090784365311265, -0.0006437669508159161, 0.006832717917859554, 0.015262694098055363, 0.007801994681358337, 0.018661988899111748, -0.006375383120030165, 0.032436639070510864, 0.018347997218370438, 0.0021143199410289526, 0.0030545867048203945, 0.02894178219139576, 0.01174053456634283, -0.01537190843373537, 0.002860048785805702, 0.002150156069546938, 0.011412891559302807, 0.007501655258238316, -0.022661961615085602, 0.00235322630032897, 0.025760916993021965, 0.022552747279405594, -0.002220121445134282, -0.005805421154946089, 0.014593756757676601, 0.01933092623949051, -0.004331028554588556, 0.045678868889808655, -0.006129650864750147, -0.00021096272394061089, 0.003969256300479174, -0.0037644794210791588, 0.029078299179673195, -0.0006036648410372436, 0.025405969470739365, 0.0031757461838424206, -0.00016019515169318765, 0.006262755952775478, 0.008013596758246422, -0.008546017110347748, -0.02339915744960308, -0.02558344230055809, -0.012757591903209686, 0.02640254981815815, -0.0037064594216644764, 0.011822445318102837, 0.017010122537612915, 0.0010093788150697947, 0.026661934331059456, -0.004546043928712606, -0.05668220669031143, 0.014525498263537884, -0.017255855724215508, -0.0064368159510195255, -0.03159022703766823, -0.015522078610956669, -0.009624507278203964, 0.0212421752512455, 0.019030587747693062, 0.02929672785103321, -0.017911139875650406, 0.008825878612697124, 0.014279766008257866, -0.015044266358017921, -0.019440140575170517, -0.025474227964878082, -0.018020354211330414, 0.032354727387428284, 0.022197801619768143, 0.019658569246530533, 0.011344632133841515, -0.02323533594608307, -0.0018702944507822394, -0.02570630982518196, -0.0015972587279975414, -0.018962327390909195, 0.00045221534674055874, -0.013993078842759132, 0.021351389586925507, -0.003262776415795088, -0.004279834218323231, -0.0129487169906497, 0.03281888738274574, 0.02046402357518673, -0.0064504677429795265, 0.0034897371660917997, -0.020450372248888016, 0.03131719306111336, -0.009788328781723976, 0.002691107802093029, -0.01987699791789055, -0.012627900578081608, 0.0025136347394436598, -0.006948757916688919, -0.0034214784391224384, -0.012880458496510983, -5.183411849429831e-05, -0.0060033719055354595, -0.005273001734167337, -0.004866860806941986, -0.0027661926578730345, 0.007126231212168932, 0.026661934331059456, 0.03612262010574341, -0.016545962542295456, -0.04144681617617607, 0.0008289192337542772, 0.019126148894429207, -0.01672343537211418, -0.04496897757053375, -0.011945310980081558, 0.035876888781785965, 0.012484556064009666, 0.00028519428451545537, 0.001488897716626525, -0.024204613640904427, -5.51937373529654e-05, -0.0019539115019142628, -0.00429689884185791, -0.022115889936685562, 0.03967208415269852, -0.02273022010922432, -0.015986239537596703, -0.0014129596529528499, -0.0009889011271297932, 0.015262694098055363, 0.007467526011168957, 0.020928185433149338, 0.014525498263537884, -0.017201248556375504, -0.00830028485506773, -0.6019890904426575, -0.023180728778243065, -0.003723524045199156, -0.013208100572228432, 0.01804765872657299, 0.002964143641293049, 0.0169964712113142, 0.011296851560473442, -0.015713203698396683, 0.011057944968342781, -0.015208086930215359, 0.032709673047065735, -0.007378789130598307, -0.0005635627312585711, 0.009406079538166523, -0.01122859213501215, 0.015385560691356659, -0.03295540809631348, -0.03320113942027092, 0.022061282768845558, -0.027399130165576935, 0.005921461153775454, -0.0019812150858342648, 0.02151521109044552, 0.026866711676120758, -0.00035366651718504727, -0.0061125862412154675, 0.010047713294625282, -0.01261424832046032, 0.02167903259396553, -0.03609531745314598, 0.027126094326376915, 0.012259301729500294, -0.003288373351097107, 0.043767619878053665, 0.011801967397332191, -0.03836151212453842, 0.027521995827555656, -0.011064770631492138, 0.044149868190288544, -0.01509887259453535, -0.026279684156179428, 0.01953570358455181, -0.0011348045663908124, -0.022525442764163017, -0.0010520406067371368, 0.0021279717329889536, -0.01169957872480154, -0.012505033984780312, -0.005170613061636686, 0.002803735202178359, 0.0018105678027495742, -0.0023993009235709906, 0.021064702421426773, 0.016614221036434174, -0.0012704691616818309, 0.018129568547010422, -0.015139828436076641, 0.01706472970545292, -0.0076381731778383255, -0.015754159539937973, 0.01882581040263176, -0.015631292015314102, -0.029624370858073235, -0.0004850649565923959, 0.00426618242636323, -0.023740451782941818, -0.008136463351547718, -0.008750793524086475, -0.014853141270577908, 0.013481136411428452, -0.0214469525963068, 0.008989700116217136, -0.01062791422009468, 0.016887256875634193, 0.04892799258232117, 0.02769947052001953, 0.0011040880344808102, -0.02421826496720314, 0.005641599651426077, -0.0007022136123850942, -0.003416358958929777, -0.007904383353888988, -0.01052552554756403, 0.04054579883813858, 0.0032713087275624275, -0.006133064161986113, -0.026552719995379448, -0.0014837782364338636, 0.0065733338706195354, -0.006600637454539537, 0.03658678010106087, 0.021706337109208107, -0.014525498263537884, 0.00900335144251585, 0.0008280660258606076, -0.02031385526061058, -0.004566521849483252, 0.009392427280545235, -0.03440249711275101, -0.009064784273505211, -0.015672247856855392, 0.001627122052013874, -0.02289404161274433, 0.007037494797259569, -0.00927638728171587, -0.0011126203462481499, 0.004812253639101982, 0.02718070149421692, -0.012832676991820335, -0.03653217479586601, -0.014907748438417912, 0.0033805230632424355, 0.0021859919652342796, 0.04182906448841095, -0.04043658450245857, -0.004334441386163235, -0.014143248088657856, -0.0029487854335457087, -0.0016433334676548839, 0.016382141038775444, 0.018702944740653038, 0.012586944736540318, -0.015754159539937973, -0.0030153377447277308, 0.03377451375126839, 0.032791584730148315, -0.000332762225298211, -0.028177281841635704, 0.0019743891898542643, -0.014648363925516605, 0.0238223634660244, 0.009501641616225243, 0.0014231984969228506, -0.0011714936699718237, 0.019576657563447952, 0.015836069360375404, -0.007064798381179571, 0.015167132019996643, -0.013378748670220375, -0.002119439421221614, -0.0015281465603038669, -0.010778083465993404, 0.013877038843929768, 0.028777960687875748, -0.019617613404989243, -0.036259137094020844, -0.014539149589836597, -0.0076518249697983265, 0.01281219907104969, -0.0047303433530032635, 0.008935092948377132, -0.017487935721874237, -0.004941945895552635, 0.011037467047572136, -0.0003523866762407124, -0.01949474774301052, -0.00522522022947669, -0.0021689271088689566, -0.007303704507648945, 0.012238824740052223, 0.03928983584046364, -0.005764465779066086, -0.010266141965985298, -0.007481177803128958, -0.026880363002419472, -0.021119309589266777, 0.03317383676767349, -0.0015520371962338686, -0.030498085543513298, -0.003894171444699168, -0.036259137094020844, 0.003587006125599146, -0.007399267051368952, 0.0049658361822366714, 0.002472679363563657, -0.022334318608045578, -0.0016979406354948878, -0.006150128785520792, -0.0011970908381044865, 0.017487935721874237, -0.0024897439870983362, -0.03183595836162567, 0.022648310288786888, 0.03284619376063347, -0.00023527996381744742, 0.023808710277080536, 0.010034061037003994, -0.027371827512979507, 0.02371314913034439, -0.02430017478764057, 0.04139220714569092, 0.019672220572829247, 0.004559695720672607, 0.008313936181366444, 0.0034214784391224384, -0.013740520924329758, 0.016805345192551613, 0.011303677223622799, 0.025105630978941917, -0.0027644862420856953, 0.027044184505939484, 0.026962272822856903, -0.005863441154360771, 0.016709784045815468, -0.002829332137480378, 0.02312612161040306, -0.009180824272334576, -0.016573265194892883, -0.009651810862123966, 0.012266128323972225, -0.01718759536743164, -0.031617533415555954, -0.031699441373348236, 0.013679087162017822, -0.0020170509815216064, -0.008921440690755844, 0.00796581618487835, -0.0029300141613930464, 0.011016990058124065, -0.019795086234807968, 0.0022593701723963022, 0.013057931326329708, 0.007883905433118343, -0.0145664531737566, 0.009774677455425262, -0.015945283696055412, -0.0075289588421583176, 0.014866792596876621, -0.024928158149123192, -0.007590391673147678, -0.016696130856871605, 0.005153548438102007, -0.008348065428435802, 0.02094183675944805, 0.013044280000030994, 0.030825728550553322, -0.015385560691356659, 0.018020354211330414, -0.006136476993560791, -0.0129487169906497, -0.022607354447245598, 0.018771203234791756, -0.01349478866904974, -0.00609210878610611, -0.014935052022337914, 0.04237513616681099, 0.023644890636205673, -0.011330980807542801, 0.009283212944865227, 0.0033532194793224335, 0.00019293809600640088, -0.026388898491859436, 0.013938471674919128, 0.01470297109335661, -0.02570630982518196, 0.023740451782941818, 0.001631388207897544, 0.028423015028238297, 0.047289781272411346, 0.01960396207869053, 0.01613640785217285, 0.011481150053441525, 0.021160265430808067, 0.0017175651155412197, -0.02703053131699562, 0.01909884624183178, -0.0315629243850708, 0.005211568437516689, -0.00016446133668068796, -0.03437519073486328, -0.011371935717761517, 0.0072832265868783, -0.0008259329479187727, 0.03175405040383339, -0.003061412600800395, 0.0021160265896469355, 0.016313882544636726, -0.00330543820746243, 0.0035972450859844685, 0.008703012019395828, -0.01613640785217285, 0.04860034957528114, -0.002215001964941621, -0.004279834218323231, 0.010764431208372116, -0.027098791673779488, 0.029269425198435783, -0.01832069456577301, -0.0005119419074617326, 0.028286496177315712, -0.014388980343937874, -0.0024812116753309965, 0.008054552599787712, -0.0055562760680913925, -0.02772677317261696, 0.03437519073486328, -0.008839529938995838, 0.004494850058108568, -0.004447068553417921, -0.004945358727127314, 0.011119377799332142, -0.024150006473064423, -0.03093494288623333, 0.025528835132718086, 0.002530699362978339, -0.0021160265896469355, -0.027986157685518265, 0.005761052947491407, -0.00394536554813385, 0.004392461385577917, 0.003877106588333845, -0.0018446972826495767, -0.026866711676120758, -0.01204769965261221, -0.002322509652003646, -0.0006949611124582589, 0.00364161329343915, 0.031235281378030777, 0.008778097108006477, -0.0360134057700634, -0.013542569242417812, -0.021187568083405495, 0.02644350565969944, 0.035330817103385925, 0.013146667741239071, -0.0011467498261481524, 0.011979440227150917, -0.013993078842759132, 0.00822519976645708, -0.014307069592177868, -0.008293459191918373, -0.005440236069262028, -0.031808655709028244, -0.019481096416711807, -0.0027252372819930315, 0.025638049468398094, -0.0013685913290828466, 0.02499641664326191, -0.0002670630346983671, 0.005993132945150137, -0.014989659190177917, -0.021528862416744232, -0.012621073983609676, -0.002906123409047723, -0.01894867606461048, 0.021924765780568123, -0.004641606472432613, 0.03172674775123596, 0.052559368312358856, 0.030088532716035843, 0.03721476346254349, 0.00886683352291584, 0.002941959537565708, 0.003342980518937111, 0.019208060577511787, 0.004286660347133875, 0.012170565314590931, -0.0028498098254203796, 0.02457321062684059, 0.021528862416744232, 0.01945379190146923, 0.002281554276123643, 0.019044239073991776, 0.02182920277118683, 0.010402658954262733, 0.010429962538182735, -0.014907748438417912, 0.008464106358587742, 0.00937194935977459, -0.013877038843929768, -0.003795195836573839, -0.031890567392110825, -0.006863434333354235, 0.022798478603363037, 0.001331048901192844, -0.04406796023249626, -0.014552801847457886, -0.017993051558732986, 0.02222510427236557, -0.010382181964814663, -0.02430017478764057, 0.012423123233020306, -0.025242147967219353, -0.02449130080640316, 0.012040873058140278, 0.014375328086316586, -0.0041330778039991856, 0.0180067028850317, 0.023426461964845657, -0.021119309589266777, 0.007221793755888939, -0.030607299879193306, 0.022170497104525566, 0.013542569242417812, -0.012791721150279045, -0.019713176414370537, 0.012935065664350986, 0.015262694098055363, 0.016846301034092903, 0.027399130165576935, 0.0147439269348979, 0.0010349758667871356, 0.012020396068692207, 0.005774704739451408, -0.025760916993021965, -0.04202019050717354, -0.01675073802471161, 0.00927638728171587, -0.019508399069309235, -0.004242291674017906, 0.03767892345786095, 0.01107159722596407, 0.01788383722305298, 0.024081746116280556, -0.018184175714850426, -0.008853182196617126, -0.02667558565735817, 0.0026774562429636717, 0.002136504277586937, -0.005324195604771376, -0.004918055143207312, -0.002708172658458352, 0.014716623350977898, 0.002936840057373047, -0.023685844615101814, 0.007078450173139572, -0.0284776221960783, -0.02199302427470684, -0.03213629871606827, -0.016545962542295456, 0.011726882308721542, -0.03792465478181839, -0.007003365084528923, 0.037706226110458374, 0.00584978936240077, 0.02390427328646183, 0.024068094789981842, 0.007174012251198292, 0.007208141963928938, 0.004061405546963215, 0.008955569937825203, 0.01808861456811428, 0.0076791285537183285, 0.025747263804078102, -0.0006501661846414208, 0.03445710241794586, 0.0294878538697958, 0.014375328086316586, 0.03219090774655342, -0.01177466381341219, -0.03789735212922096, -0.01265520416200161, 0.03109876438975334, 0.0060443272814154625, 0.011460673063993454, -0.00452215364202857, -0.012300257571041584, -0.02937863953411579, -0.027562951669096947, -0.014812185429036617, 0.010436789132654667, -0.007713257800787687, -0.008525539189577103, -0.010136449709534645, -0.0006339547107927501, 0.0029436659533530474, -0.0029863277450203896, -0.016928212717175484, -0.024436693638563156, -0.006221800576895475, -0.007808820344507694, -0.0033805230632424355, 0.01928997039794922, -0.0076791285537183285, 0.0029726759530603886, -0.00859379768371582, -0.02776772901415825, -0.006522140000015497, 0.007276400923728943, 0.009583552367985249, 0.003088716184720397, 0.01913980022072792, 0.043849531561136246, 0.01995890773832798, 0.016737086698412895, 0.029815496876835823, -0.0023856491316109896, 0.01640944369137287, 0.002530699362978339, 0.015603989362716675, 0.014348024502396584, -0.018812159076333046, 0.00040443410398438573, 0.019344577565789223, -0.007918034680187702, -0.000530713121406734, 0.0028071480337530375, 9.913541725836694e-05, 0.010300271213054657, 0.008600624278187752, -0.0021006681490689516, -0.030525388196110725, -0.019071541726589203, -0.01941283605992794, -0.005105767399072647, -0.011180810630321503, 0.031153371557593346, -0.005139896646142006, -0.004996553063392639, 0.015754159539937973, 0.008272981271147728, 0.022388925775885582, 0.016505006700754166, 0.014525498263537884, -0.030416173860430717, 0.01832069456577301, 0.009774677455425262, 0.030252352356910706, -0.014375328086316586, 0.008641579188406467, -0.011993092484772205, -0.0157814621925354, -0.02015003375709057, 0.024627817794680595, 0.011010163463652134, -0.0028088544495403767, 0.022170497104525566, -0.03999972715973854, 0.03210899606347084, 0.0004238452238496393, -0.026593675836920738, 0.0005610029911622405, -0.02769947052001953, -0.0284776221960783, -0.015085221268236637, -0.013569872826337814, -0.005003378726541996, -0.02780868299305439, 0.016109105199575424, -0.010409485548734665, 0.00886683352291584, -0.0025119283236563206, 0.00508870230987668, -0.0007389028323814273, -0.013269534334540367, 0.051030367612838745, 0.032518550753593445, 0.009733721613883972, 0.020368462428450584, -0.021856505423784256, -0.0037610665895044804, -0.007815646007657051, 0.02004081942141056, 0.0011578418780118227, 0.010211534798145294, 0.048054277896881104, -0.017979400232434273, -0.01095555629581213, 0.0025238734669983387, -0.003034109016880393, -0.020477676764130592, -0.03074381686747074, 0.02491450496017933, -0.014156900346279144, -0.0004987167194485664, -0.011064770631492138, 0.015836069360375404, -0.03920792415738106, 0.030825728550553322, -0.01808861456811428, -0.016395792365074158, 0.01613640785217285, 0.00761769525706768, -0.03311922773718834, 0.00793168693780899, -0.0009607442771084607, 0.013290011323988438, 0.02253909595310688, 0.00563477398827672, 0.006655244622379541, -0.017788274213671684, -0.007460699882358313, 0.021624425426125526, -0.019344577565789223, 0.0431942455470562, 0.010962382890284061, -0.004136490635573864, 0.019945256412029266, -0.011631320230662823, -0.012866806238889694, -0.02195206843316555, 0.01672343537211418, 0.035057779401540756, -0.009460686706006527, 0.011576713062822819, -0.011863400228321552, 0.0060033719055354595, 0.04909181594848633, 0.01645039953291416, -0.010812212713062763, -0.010655217804014683, -0.02249814011156559, -0.027781380340456963, -0.018730247393250465, -0.01497600693255663, 0.007474351674318314, 0.0018702944507822394, -0.011849748902022839, 0.008040900342166424, -0.004624541848897934, 0.006767871789634228, 0.006341253872960806, -0.03131719306111336, -0.017706364393234253, -0.006136476993560791, 0.0004436829767655581, 0.004989726934581995, -0.007337833754718304, 7.33250126359053e-05, -0.006238865200430155, 0.030989550054073334, -0.01244360115379095, 0.01890772022306919, 0.00580200832337141, 0.01995890773832798, -0.024477649480104446, -0.00016648777818772942, -0.033255744725465775, -0.004208162426948547, 0.008566494099795818, -0.0236721932888031, -0.012935065664350986, -0.04608842357993126, 0.008948744274675846, 0.02516023814678192, 0.03557654842734337, -0.013296837918460369, -0.003003392368555069, 0.01863468438386917, 0.026429854333400726, -0.02894178219139576, -0.010300271213054657, 0.022634657099843025, -0.01015692763030529, 0.009112565778195858, 0.005440236069262028, -0.0022115889005362988, -0.011214940808713436, -0.0022320665884763002, 0.0036757427733391523, 0.005518733523786068, -0.025051023811101913, -0.02035480923950672, -0.006535791791975498, -0.011371935717761517, -0.019713176414370537, -0.011494802311062813, -0.005805421154946089, -0.018375301733613014, -0.029733585193753242, 0.021351389586925507, -0.0015016961842775345, 0.008757619187235832, -0.0003547330852597952, 0.040327370166778564, 0.036149922758340836, 0.007999945431947708, -0.01501696277409792, 0.0035187473986297846, -0.046852923929691315, -0.01378830149769783, -0.017938444390892982, -0.013051105663180351, -0.02066880092024803, 0.03418406844139099, 0.008095507510006428, -0.0037576535250991583, -0.007037494797259569, -0.006327602081000805, -0.01197261456400156, 0.005126244854182005, -0.012689333409070969, 0.005631360691040754, 0.014757578261196613, -0.011208114214241505, -0.008443628437817097, -0.005965829361230135, 0.0019061303464695811, 0.012545989826321602, -0.025146586820483208, -0.009433383122086525, 0.013276359997689724, -0.011924833059310913, -0.013119364157319069, -0.0248872023075819, -0.013426529243588448, -0.03038887120783329, 0.000778578280005604, 0.0016911147395148873, 0.003969256300479174, 0.014074989594519138, -0.0003180438943672925, -0.019904300570487976, -0.0021296783816069365, 0.010764431208372116, 0.005720097571611404, -0.0019214885542169213, 0.01840260438621044, -0.012702984735369682, -0.027590256184339523, 0.02507832646369934, 0.009808806702494621, -0.00978150311857462, -0.03565846011042595, 0.00453921826556325, 0.01335827074944973, 0.00612282520160079, -0.009617681615054607, -0.04002702981233597, 0.015289997681975365, 0.012470904737710953, 0.03847072646021843, -0.02348106913268566, 0.004897577688097954, 0.024231916293501854, -0.01429341733455658, -0.0076791285537183285, -0.02031385526061058, 0.014648363925516605, -0.023931577801704407, 0.004969249479472637, 0.009255909360945225, -0.0030699449125677347, -0.015563033521175385, -0.018730247393250465, 0.00522522022947669, 0.002621142426505685, -0.0016731967916712165, 0.03563115745782852, -0.014361676760017872, -0.02363123744726181, -0.0016638111555948853, 0.008832704275846481, -0.0024965698830783367, -0.003250831039622426, 0.00013918420881964266, -0.012252476066350937, -0.00677811075001955, -0.009153520688414574, 0.001401014276780188, -0.04516009986400604, 0.013604003004729748, 0.004453894682228565, 0.00693169329315424, -0.038443423807621, 0.020122729241847992, 0.007317356299608946, 0.0013080115895718336, 0.02253909595310688, 0.2251998335123062, -0.008129637688398361, 0.01038900762796402, 0.03355608507990837, 0.017665408551692963, 0.004880512598901987, -0.0007120258524082601, 0.007849776186048985, 0.006624528206884861, -0.001701353583484888, 0.013822431676089764, -0.005941939074546099, -0.016941864043474197, -0.003278134623542428, -0.02050497941672802, 0.004061405546963215, -0.027085138484835625, -0.05133070796728134, -0.03385642543435097, 0.01501696277409792, 0.012286605313420296, -0.02425922080874443, 0.009658637456595898, -0.03178135305643082, 0.0060033719055354595, 0.028614139184355736, -0.018484516069293022, 0.027126094326376915, 0.049856316298246384, -0.007447048090398312, -0.006470945663750172, -0.00345731433480978, -0.011126203462481499, -0.020477676764130592, -0.006174019072204828, -0.019740479066967964, 0.025638049468398094, -0.008170592598617077, 0.023030558601021767, 0.023658541962504387, -0.0017917966470122337, 0.014307069592177868, 0.004194510634988546, -0.013658610172569752, -0.014894096180796623, -0.016505006700754166, 0.0007457286701537669, 0.0055562760680913925, 0.03729667514562607, 0.027549300342798233, -0.013870212249457836, -0.020177336409687996, 0.027208006009459496, 0.01569955237209797, -0.02226606011390686, -0.007139883004128933, 0.027754077687859535, -0.010839516296982765, 0.004740581847727299, 0.047863155603408813, -0.004153555259108543, 0.041419513523578644, 0.009801981039345264, 0.006167193409055471, -0.021651729941368103, -0.004552870057523251, -0.03311922773718834, 0.008955569937825203, -0.005788356531411409, -0.004822492599487305, -0.024313827976584435, -0.0015964055201038718, 0.013112538494169712, 0.007201315835118294, -0.014989659190177917, -0.028231889009475708, 0.03909870982170105, -0.0014231984969228506, 0.019358228892087936, 0.02956976369023323, 0.01095555629581213, -0.010095493867993355, 0.013412877917289734, -0.014307069592177868, -0.012259301729500294, -0.04617033153772354, 0.017952095717191696, 0.006204735953360796, -0.0007508480921387672, 0.0023702909238636494, 0.01651865802705288, -0.030552692711353302, 0.002187698381021619, -0.0076791285537183285, 0.00894191861152649, 0.021105658262968063, -0.019235363230109215, 0.026416201144456863, -0.01867564022541046, 0.0228121317923069, -0.029979318380355835, 0.02713974565267563, 0.018757551908493042, -0.00220135017298162, -0.01218421757221222, -0.008621101267635822, 0.0038736937567591667, 0.0090784365311265, 0.007358311675488949, -0.006255929823964834, -0.02218414843082428, -0.01898963190615177, 0.0011194462422281504, 0.00012937198334839195, 0.00540951918810606, 0.03366529941558838, -0.022361621260643005, -0.01761080138385296, -0.005293479189276695, 0.022361621260643005, -0.003453901270404458, -0.025064675137400627, 0.0012841209536418319, -0.00984293594956398, 0.0037849571090191603, -0.005747401155531406, -0.015494775027036667, 0.00549825606867671, 0.011180810630321503, -0.016900908201932907, 0.036887120455503464, -0.027644863352179527, -0.009146695025265217, -0.0032064628321677446, -0.012102306820452213, 0.004307137802243233, 0.007515307050198317, -0.011583538725972176, -0.0009018709533847868, 6.50059591862373e-05, -0.016313882544636726, -0.0076245213858783245, 0.009426556527614594, -0.01620466820895672, 0.0077064321376383305, -0.01956300623714924, -0.020109077915549278, -0.0046211290173232555, -0.012689333409070969, 0.005941939074546099, -0.04084613919258118, -0.001005112542770803, -0.011549409478902817, -0.029433246701955795, 0.018252434208989143, -0.03317383676767349, -0.035166993737220764, -0.043221548199653625, -0.007228619419038296, 0.019385533407330513, -0.002174046589061618, -0.015180783346295357, -0.00688391225412488, -0.002827625721693039, -0.03139910474419594, -0.024382086470723152, -0.17310461401939392, 0.006385622080415487, 0.0238223634660244, -0.029160210862755775, 0.027631210163235664, 0.00761769525706768, 0.02820458635687828, -0.0039624301716685295, -0.021037399768829346, -0.00923543144017458, 0.01702377386391163, 0.005784943234175444, -0.023795058950781822, 0.0004914642195217311, 0.019672220572829247, -0.0018583490746095777, -0.006720090750604868, 0.01169957872480154, 0.03402024507522583, 0.022989604622125626, 0.03718746080994606, -0.03445710241794586, 0.003508508438244462, 0.01823878288269043, -0.0023788234684616327, -0.02476433664560318, 0.0075426106341183186, -0.01995890773832798, -0.009494815953075886, 0.012293431907892227, -0.007535784970968962, 0.016341185197234154, 0.024272872135043144, -0.0066893743351101875, 0.057392098009586334, -0.0012909468496218324, 0.013624479994177818, -0.008313936181366444, 0.03620453178882599, 0.015030614100396633, 0.024655122309923172, 0.03199978172779083, 0.046771012246608734, 0.013426529243588448, -0.025965692475438118, 0.03609531745314598, 0.017801925539970398, -0.01741967722773552, 0.01574050635099411, 0.001590432832017541, 0.01501696277409792, -0.025911085307598114, -0.024655122309923172, -0.017706364393234253, 0.03363799676299095, -0.014143248088657856, -0.011412891559302807, 0.013167145662009716, -0.00022354796237777919, -0.00843680277466774, 0.018580077216029167, -0.0520952083170414, 0.025296755135059357, -0.025173889473080635, -0.046771012246608734, 0.004713278263807297, -0.0228121317923069, 0.01224565040320158, -0.0374331921339035, 0.005662077572196722, -0.013330967165529728, -0.013993078842759132, -0.0005315663293004036, 0.012982846237719059, 0.016191015020012856, -0.008402672596275806, -0.007467526011168957, 0.00037137119215913117, 0.027754077687859535, -0.0016015248838812113, 0.0014957236126065254, 0.03238203004002571, 0.023412808775901794, -0.016778042539954185, 0.009105740115046501, 0.021474255248904228, 0.02405444346368313, 0.01442993525415659, -0.02866874635219574, -0.033255744725465775, 0.030880335718393326, -0.011371935717761517, 0.00470645260065794, -0.013604003004729748, 0.01976778358221054, 0.014580105431377888, -0.003209875663742423, -0.0192217119038105, 0.007501655258238316, -0.03650486841797829, 0.02285308577120304, 0.004914642311632633, -0.03617722913622856, 0.021474255248904228, 0.04808158427476883, 0.02940594218671322, -0.03574037179350853, 0.029979318380355835, 0.02940594218671322, -0.007958989590406418, -0.030088532716035843, 0.02319438010454178, -0.005484604276716709, 0.04982900992035866, -0.0003737175720743835, 0.015399212017655373, -0.010238838382065296, 0.02390427328646183, 0.006737155374139547, -0.011720056645572186, -0.005771291442215443, 0.003059706185013056, -0.028614139184355736, 0.021078353747725487, 0.01863468438386917, -0.0029624372255057096, -0.09452494978904724, -0.013720043003559113, 0.014689319767057896, 0.011351458728313446, -0.015986239537596703, 0.006481184624135494, -0.007194490171968937, 0.02570630982518196, -0.021187568083405495, 0.01746063120663166, -0.0037610665895044804, -0.035330817103385925, -0.0007521279621869326, 0.03563115745782852, -0.015836069360375404, 0.003552876878529787, -0.012395819649100304, -0.0061125862412154675, -0.010272967629134655, 4.130198067286983e-05, -0.03694172576069832, -0.010429962538182735, 0.0019385532941669226, -0.0038122606929391623, 0.012839502654969692, 0.016423096880316734, -0.015836069360375404, 0.0171466413885355, 0.0005085289594717324, 0.009262735024094582, 0.013740520924329758, 0.007644998840987682, -0.007815646007657051, -0.02178824692964554, -0.012081828899681568, 0.03003392554819584, -0.02570630982518196, -0.00798629317432642, 0.01956300623714924, -0.03131719306111336, -0.003428304335102439, -0.019863344728946686, 0.01574050635099411, 0.025324059650301933, -0.0025614160113036633, 0.006235452368855476, -0.01258011907339096, 0.017474282532930374, -0.005034095142036676, -0.005283240228891373, -0.010061364620923996, 0.003631374565884471, 0.00013363816833589226, -0.003059706185013056, 0.014020382426679134, -0.021228523924946785, 0.0013745640171691775, 0.008887311443686485, -0.0022269473411142826, -0.0009615975432097912, -0.003385642310604453, 0.00524228485301137, -0.0027252372819930315, 0.017788274213671684, 0.014771230518817902, 0.001484631560742855, -0.020109077915549278, -0.015644945204257965, 0.015617640689015388, 0.0033958812709897757, -0.014047686010599136, 0.0010110852308571339, -0.026825755834579468, 0.020573237910866737, -0.02344011329114437, -0.027481041848659515, -0.0023242163006216288, -0.020327506586909294, 0.020109077915549278, 0.006593811791390181, 0.0026723367627710104, 0.0018412843346595764, 0.011146681383252144, -0.004122838843613863, 0.026334291324019432, 0.01781557872891426, -0.0095084672793746, 0.006081869825720787, -0.005754226818680763, -0.023972531780600548, -0.001795209595002234, -0.008006771095097065, 0.009672288782894611, -0.013597176410257816, -0.023112470284104347, -0.019317274913191795, -0.004911229480057955, -0.007877079769968987, 0.019631264731287956, 0.030607299879193306, -0.03776083514094353, -0.027958853170275688, -0.07306434959173203, 0.010559654794633389, -0.017624452710151672, -0.01960396207869053, 0.0029726759530603886, -0.02069610357284546, 0.01609545387327671, -0.02226606011390686, 0.0007410359103232622, 0.0032576569356024265, -0.02768581733107567, 0.013754172250628471, 0.0015008429763838649, -0.023057863116264343, -0.02214319445192814, -0.0019675632938742638, 0.03767892345786095, 0.01726950705051422, 0.023603934794664383, 0.010791734792292118, -0.01062791422009468, -0.0009351472253911197, 0.018034007400274277, -0.006941932253539562, -0.015522078610956669, -0.0066620707511901855, -0.01253916323184967, 0.024040792137384415, -0.009112565778195858, -0.023699497804045677, 0.030771121382713318, -0.0016083507798612118, -0.0023173904046416283, -0.012491382658481598, -0.01396577525883913, -0.02632063999772072, -0.012470904737710953, 0.017446979880332947, 0.02453225664794445, 0.006737155374139547, -0.015440167859196663, -0.014443587511777878, -0.0013779769651591778, 0.0003174039884470403, 0.021692683920264244, -0.018347997218370438, -0.0013643251731991768, 0.009378775954246521, 0.03240933641791344, 0.01210913248360157, 0.005208155605942011, -0.001699647051282227, -0.018293390050530434, 0.008982873521745205, 0.001475245924666524, -0.056190744042396545, -0.033610690385103226, -0.0021040812134742737, 0.002418072195723653, -0.020068122074007988, 0.023057863116264343, 0.005532385315746069, 0.01823878288269043, 0.00019485788652673364, -0.0007371963583864272, -0.005085289478302002, 0.004887338727712631, -0.02253909595310688, 0.02319438010454178, -0.04144681617617607, -0.02004081942141056, -0.009829284623265266, 0.020109077915549278, -0.00609210878610611, 0.02535136230289936, -0.01382925733923912, -0.01582241803407669, -0.0038259124848991632, -0.004573347512632608, 0.030552692711353302, 0.01664152555167675, -0.019863344728946686, -0.014320720918476582, 0.00978150311857462, 0.020573237910866737, 0.017078381031751633, -0.012976020574569702, -0.012327561154961586, -0.0008993112714961171, 0.0006339547107927501, -0.015726855024695396, 0.0017337765311822295, 0.002708172658458352, -0.005412932485342026, 0.025255801156163216, 0.014784881845116615, 0.012798547744750977, -0.01890772022306919, -0.016900908201932907, -0.011617667973041534, -0.019167104735970497, -0.013105712831020355, -0.0250373724848032, -0.028177281841635704, -0.015385560691356659, 0.0011211527744308114, -0.014170551672577858, 0.017952095717191696, -0.001303745317272842, 0.014662016183137894, 0.0004987167194485664, 0.012955542653799057, 0.012102306820452213, -0.0032661892473697662, -0.01501696277409792, 0.012034047394990921, -0.02734452299773693, -0.018143221735954285, -0.042402442544698715, 0.02652541548013687, 0.00737196346744895, 0.007672302424907684, 0.006467532832175493, -0.016846301034092903, 0.04472324252128601, -0.00015582231571897864, 0.019481096416711807, -0.001769612543284893, 0.027521995827555656, -0.010061364620923996, -0.018921373412013054, -0.00886683352291584, -0.03557654842734337, -0.017788274213671684, -0.01613640785217285, -0.023453764617443085, 0.006115999072790146, -0.0009223486413247883, 0.01765175722539425, 0.09021098911762238, 0.009037480689585209, -0.018102265894412994, -0.006955584045499563, -0.006860021501779556, 0.024382086470723152, 0.0013566460693255067, 0.002435137052088976, -0.005600644275546074, -0.029979318380355835, 0.03093494288623333, -0.011720056645572186, -0.015399212017655373, -0.023522023111581802, -0.020327506586909294, -0.014402631670236588, -0.0003440676082391292, 0.02285308577120304, -0.03093494288623333, 0.0123412124812603, 0.031426407396793365, 0.02749469317495823, 0.003658678149804473, 0.030689209699630737, -0.01964491792023182, -0.009160347282886505, 0.033692602068185806, -0.003699633525684476, -0.01270981039851904, -0.04008163884282112, -0.002624555490911007, 0.003073357976973057, -0.005870267283171415, -0.013167145662009716, 0.018266087397933006, 0.03710554912686348, -0.013173971325159073, 0.018525470048189163, 0.04772663488984108, 0.0053617381490767, -0.00316892028786242, 0.015208086930215359, -0.031044157221913338, -0.036887120455503464, -0.008655231446027756, -0.0040033855475485325, -0.011631320230662823, -0.03344687074422836, -0.013979426585137844], "52478ae6-356e-4b5c-a343-763c91d2c220": [-0.0011049871100112796, -0.006472799461334944, 0.003583095734938979, 0.002744535217061639, 0.011005466803908348, 0.014523663558065891, -0.01149049960076809, -0.01060924306511879, 0.0071252030320465565, -7.70139304222539e-05, 0.016245190054178238, -0.006435226183384657, -0.0282275527715683, -0.01329400297254324, -0.021519068628549576, -0.0143460463732481, -0.01329400297254324, -0.015780650079250336, -0.0002420895325485617, -0.01784374937415123, -0.006995405536144972, -0.0021946034394204617, 0.006670911330729723, -0.04590734839439392, -0.014318720437586308, -0.0014055708888918161, -0.0017642220482230186, -0.020658306777477264, 0.004044218920171261, 0.018431253731250763, 0.02643771283328533, -0.004641970619559288, -0.018649859353899956, -0.007658055983483791, -0.01192088145762682, -0.01571233570575714, -0.010902995243668556, -0.015562044456601143, -0.0021075024269521236, 0.007193517405539751, 0.021191159263253212, -0.017379209399223328, -0.00561545230448246, 0.0002157244016416371, -0.016750717535614967, 0.02809092402458191, -0.008894548751413822, -0.009126817807555199, -0.0011032792972400784, -0.004809340927749872, -0.0034174330066889524, -0.018076017498970032, -0.013785867020487785, -0.022530123591423035, -0.002969973022118211, -0.004700038116425276, -0.0036275002639740705, 0.014892562292516232, -0.02459322102367878, 0.005376351531594992, -0.02058999240398407, 0.01821264624595642, -0.030222337692975998, -0.011777420528233051, -0.0008552122162654996, 0.004570240154862404, -0.0029597259126603603, 0.0068280347622931, -0.03270898386836052, -0.005741834174841642, 0.021013541147112846, -0.000917122233659029, 0.0010033693397417665, 0.015329774469137192, 0.010930321179330349, 0.009939760901033878, -0.03757297620177269, -0.019551610574126244, 0.014919888228178024, 0.004003230016678572, 0.011572477407753468, -0.0008009875891730189, 0.027271149680018425, 0.009031177498400211, 0.0001424997899448499, -0.005372935906052589, 0.0019076825119554996, 0.015247797593474388, -0.01246739737689495, -0.006144889630377293, 0.016641413792967796, -0.005557384807616472, -0.013068565167486668, 0.014168428257107735, 0.018198983743786812, 0.03033163957297802, 0.01410011388361454, 0.034867722541093826, 0.023062976077198982, -0.03240840137004852, -0.0007587179425172508, 0.030659548938274384, -0.008628121577203274, -0.0052602170035243034, -0.01948329620063305, -0.025508636608719826, 0.029976405203342438, -0.008874054066836834, -0.004238915164023638, -0.014646629802882671, -0.01490622479468584, 0.025672590360045433, 0.0018786488799378276, -0.046098627150058746, -0.012446902692317963, -0.0031971188727766275, 0.01661408692598343, -0.05033412575721741, -0.003214197466149926, -0.0008150774519890547, 0.013505777344107628, 0.0021570303943008184, 0.03970438987016678, 0.007822010666131973, -0.02322693169116974, 0.032271772623062134, -0.02207924798130989, 0.005349025595933199, -0.009987580589950085, -0.01834927685558796, 0.043885238468647, 0.027626385912299156, 0.007138865999877453, 0.015507392585277557, -0.01934666745364666, -0.011012298054993153, -0.02572724223136902, 0.003525028470903635, -0.0189504437148571, -0.004276487976312637, -0.007931314408779144, 0.01808968186378479, -0.01884113997220993, -0.0027035465463995934, -0.0021980192977935076, 0.004638554994016886, 0.005246554035693407, 0.0046180603094398975, 0.013902002014219761, -0.004225252196192741, 0.024757176637649536, -0.017871074378490448, 0.0016549188876524568, -0.03481307253241539, -0.012508385814726353, -0.012522048316895962, -0.01584896445274353, -0.009441064670681953, -0.015083842910826206, -0.006015092134475708, -0.007535089738667011, 0.019756555557250977, 0.019373994320631027, 0.020753946155309677, 0.011381196789443493, 0.036124709993600845, 0.01761147938668728, -0.010636568069458008, -0.0076990448869764805, -0.00567693542689085, 0.02345920167863369, 0.016163211315870285, -0.06574588268995285, 0.01859520748257637, 0.002235592110082507, 0.04044218733906746, -0.016409143805503845, 0.017679793760180473, -0.018035029992461205, -0.010260839015245438, -0.0062951818108558655, -0.010185692459344864, -0.019674576818943024, 0.05541672557592392, -0.014865236356854439, -0.02422432415187359, 0.004846914205700159, 0.009201963432133198, 0.018403926864266396, -0.019647251814603806, 0.017064962536096573, 0.028992675244808197, 0.011606634594500065, 0.007692213170230389, -0.5801814198493958, -0.011456342414021492, -0.01004223246127367, -0.006636754143983126, 0.01448267512023449, 0.022680414840579033, 0.0136560695245862, 0.04478698968887329, -0.02034405991435051, 0.010650231502950191, -0.01982486993074417, 0.023008326068520546, -0.0012108746450394392, -0.01858154498040676, 0.0025993669405579567, -0.02631474658846855, 0.003972488455474377, 0.00567693542689085, -0.028637440875172615, 0.0354415662586689, -0.032381076365709305, 0.0009555491269566119, -0.019401319324970245, -0.0024302885867655277, 0.022379832342267036, -0.01634082943201065, 0.02684760093688965, -0.006964663974940777, -0.027175510302186012, 0.029785124585032463, -0.0498695895075798, 0.00823872908949852, 0.02485281601548195, -0.008798908442258835, 0.046617817133665085, -0.004481431562453508, -0.04500559717416763, 0.0167233906686306, -0.0009820209816098213, 0.052711471915245056, -0.0023653898388147354, -0.047382939606904984, -0.016176875680685043, -0.006411316338926554, 0.0025173895992338657, -0.029402563348412514, 0.017802760004997253, -0.016819031909108162, 2.1588450181297958e-05, 0.01908707246184349, 0.007261831779032946, 0.006158552598208189, -0.0019896598532795906, 0.015698673203587532, 0.008436840958893299, -0.019059747457504272, 0.03740902245044708, -0.011524656787514687, 0.0034755005035549402, -0.000680156284943223, -0.0034823319874703884, 0.02755807153880596, -0.011784251779317856, -0.01985219493508339, -0.0012194139417260885, -0.02207924798130989, -0.028883373364806175, -0.021560057997703552, 0.011394859291613102, -0.0034464667551219463, 0.004621476400643587, -0.018554219976067543, -0.00476835248991847, -0.018035029992461205, 0.02147808112204075, 0.032627008855342865, 0.018280960619449615, 0.002683052094653249, -0.014332382939755917, 0.011114769615232944, 0.0002540445711929351, 0.00496646435931325, 0.003723140573129058, -0.02707986906170845, 0.03904857113957405, 0.004682959523051977, -0.007610235828906298, -0.012815801426768303, 0.01936032995581627, -0.019141724333167076, 0.0052602170035243034, 0.02847348526120186, 0.019046083092689514, -0.03418457880616188, 0.0008257515728473663, 0.008976525627076626, -0.002314153825864196, -0.011934543959796429, -0.001984536414965987, -0.017160603776574135, -0.01609489694237709, 0.007070551160722971, 0.0024217492900788784, 0.021805990487337112, 0.02718917280435562, -0.003043411299586296, -0.03292759135365486, -0.013280339539051056, 0.022803381085395813, -0.0068280347622931, -0.005670103710144758, 0.002066513756290078, -0.0028982427902519703, 0.000593055272474885, 0.015917278826236725, -0.03653459623456001, -0.00237222108989954, -0.008949200622737408, 0.0354415662586689, -0.007890325039625168, 0.003063905518501997, -0.007835674099624157, 0.009386412799358368, -0.0011092567583546042, 0.011347039602696896, 0.01341696921736002, 0.02609614096581936, -0.010957646183669567, -0.009324929676949978, -0.006804124917834997, -0.019005095586180687, 0.020385047420859337, 0.012515217065811157, -0.00922928936779499, -0.02060365490615368, 0.03169792890548706, 0.012009689584374428, -0.024128682911396027, 0.01823997311294079, -0.015766987577080727, -0.015480066649615765, 0.010356479324400425, 0.004689790774136782, 0.003723140573129058, 0.003345702774822712, -0.01845857873558998, -0.010035401210188866, -0.03096013329923153, -0.01060241088271141, 0.0028299284167587757, 0.026519691571593285, 0.0068656075745821, -0.033392131328582764, 0.004881071392446756, 0.003808533539995551, -0.006226866971701384, -0.013990811072289944, -0.02733946405351162, 0.0014465596759691834, -0.0026164455339312553, 0.0065206196159124374, 0.04246429726481438, -0.019155386835336685, -0.0033781523816287518, -0.020043475553393364, -0.026410387828946114, -0.0013927619438618422, 0.014209416694939137, -0.010390636511147022, -0.03678052872419357, 0.022639427334070206, -0.0010665601585060358, -0.013867844827473164, -0.011244567111134529, 0.0077127073891460896, -0.0053217001259326935, -0.024429267272353172, 0.0203303974121809, -0.006336170248687267, -0.01711961440742016, 0.028528137132525444, -0.01047944463789463, 0.007425786927342415, 0.007678550202399492, 0.03117874078452587, 0.011189916171133518, 0.04131661355495453, -0.003951994236558676, -0.033392131328582764, -0.005970687605440617, -0.024401940405368805, 0.03147932514548302, 0.027885980904102325, 0.004440442658960819, 0.023021988570690155, 0.016149548813700676, 0.005612036678940058, 0.013075396418571472, -0.00018466264009475708, 0.01957893744111061, 0.01228294800966978, 0.0056086210533976555, -0.010684388689696789, -0.010411130264401436, 0.03721774369478226, -0.021136507391929626, -0.0019281768472865224, 0.002951186615973711, 0.013512609526515007, 0.0098577830940485, 0.0003018647257704288, -0.035386912524700165, -0.021778663620352745, -0.01149049960076809, 0.01696932315826416, -0.003552354173734784, -0.008491492830216885, 0.017679793760180473, -0.010294996201992035, 0.02171034924685955, -0.0026796364691108465, -0.009482053108513355, 0.009249784052371979, 0.0036650733090937138, 0.010452119633555412, 0.008211403153836727, -0.017392873764038086, 0.026806611567735672, -0.006049249321222305, -0.03005838207900524, -0.012023353017866611, 0.0005187632632441819, 0.0006788753671571612, 0.000501257658470422, 0.020180104300379753, -0.00879207719117403, 0.008272886276245117, -0.04888585954904556, 0.030167685821652412, -0.01328717079013586, 0.01808968186378479, -0.008033785969018936, 0.010335984639823437, -0.009680164977908134, 0.027161847800016403, -0.0006571001722477376, 0.026301084086298943, 0.019401319324970245, -0.004997205920517445, 0.003914420958608389, -0.003289343323558569, 0.01203701552003622, -0.0006976618897169828, 0.017283570021390915, 0.017515840008854866, -0.013321328908205032, 0.02273506671190262, 0.013902002014219761, 0.0029050742741674185, 0.0314519964158535, 0.02385542541742325, 0.020166441798210144, 0.011763758026063442, 0.011572477407753468, -0.005489070434123278, -0.021273136138916016, 0.0032534783240407705, -0.0240876954048872, -0.021396102383732796, -0.013956652954220772, 0.01970190368592739, 0.008710099384188652, 0.02658800594508648, 0.0027718611527234316, 0.025262704119086266, 0.007596572861075401, -0.005670103710144758, 0.013157373294234276, 0.009625514037907124, -0.01084834337234497, -0.018759163096547127, -0.02959384396672249, 0.014318720437586308, 0.010131041519343853, 0.024128682911396027, 0.03680785372853279, 0.007077382877469063, 0.010902995243668556, 0.003610421670600772, 0.009973918087780476, 0.008477830328047276, 0.006759720388799906, 0.020029813051223755, -0.012399083003401756, 0.011039623990654945, -0.04128928855061531, 0.03981369361281395, -0.014632967300713062, -0.03473109379410744, 0.008894548751413822, -0.00751459551975131, -0.015685010701417923, -0.018540557473897934, -0.029484540224075317, 0.04631723463535309, 0.006418147590011358, -0.004355049692094326, -0.019046083092689514, 0.014291394501924515, -0.016819031909108162, -0.012125824578106403, 0.01724258065223694, -0.009447895921766758, -0.04470501095056534, -0.0054344190284609795, 0.023172279819846153, 0.01699664816260338, -0.010937152430415154, 0.014510001055896282, 0.014510001055896282, -0.016641413792967796, -0.01732455939054489, -0.012166813015937805, 0.024169672280550003, 0.0007954370230436325, 0.031998515129089355, -0.006148305255919695, 0.018923118710517883, -0.010807354934513569, -0.0026796364691108465, -0.013861012645065784, -0.016504785045981407, -0.006189294159412384, -0.026123465970158577, 0.00991926621645689, -0.013505777344107628, -0.010937152430415154, -0.0258502084761858, 0.02385542541742325, 0.011142095550894737, -0.009502547793090343, -0.023759784176945686, -0.015521055087447166, -0.029238607734441757, 0.004447274375706911, -0.026792949065566063, 0.03347410634160042, -0.014865236356854439, 0.01897776871919632, 0.0002499883994460106, 0.020193766802549362, 0.030878156423568726, -0.0028828720096498728, 0.0014405820984393358, -0.00565302511677146, -0.009154143743216991, 0.00860762782394886, 0.01377903576940298, -0.01845857873558998, 0.0273121390491724, 0.028145575895905495, 0.042382318526506424, -0.012166813015937805, 0.013929327949881554, 0.019251028075814247, 0.026424050331115723, 0.008751087822020054, -0.027899643406271935, 0.023008326068520546, 0.009844120591878891, -0.027667375281453133, 0.011463173665106297, -0.0021006709430366755, -0.011763758026063442, 0.019660914316773415, 0.019169049337506294, -0.03033163957297802, -0.0006515496061183512, 0.010575084947049618, 0.04353000223636627, 0.0021297046914696693, 0.010110546834766865, 0.005437834654003382, -0.01274065487086773, -0.01970190368592739, -0.02295367419719696, -0.02395106479525566, -0.005584710743278265, -0.00037210056325420737, -0.005277295596897602, -0.029675820842385292, -0.01435970887541771, -0.01179791521281004, -0.014837910421192646, 0.01248105987906456, -0.04246429726481438, -0.018062354996800423, 0.003065613331273198, 0.005953609012067318, 0.0013261553831398487, 0.017666131258010864, 0.010096883401274681, -0.008525650016963482, 0.02684760093688965, -0.021150169894099236, -0.0014448517467826605, -0.004638554994016886, -0.017748108133673668, 0.00979629997164011, -0.007671718951314688, 0.0015866043977439404, 0.015261460095643997, 0.018513230606913567, 0.007179854437708855, 0.020166441798210144, 0.009147312492132187, 0.009912434965372086, -0.024306301027536392, -0.014305057004094124, -0.001694199745543301, 0.012563037686049938, 0.0012364925350993872, 0.0008667403017170727, -0.010964478366076946, -0.00579990167170763, -0.004519004374742508, -0.009912434965372086, -0.03246305137872696, -0.006247361656278372, -0.020999878644943237, -7.258416007971391e-05, 0.016545772552490234, -0.0219426192343235, -0.001864986028522253, 0.04205441102385521, 0.005499317776411772, 0.02222953923046589, 0.003811949398368597, 0.010916657745838165, 0.02334989793598652, -0.00849832408130169, 0.001378245186060667, -0.004973296076059341, 0.0044301957823336124, 0.029621168971061707, -0.018677186220884323, 0.0414259172976017, 0.05164576694369316, 0.00842317845672369, 0.02820022776722908, -0.02956651709973812, -0.04178114980459213, -0.011470005847513676, 0.016176875680685043, 0.001859862357378006, 0.0013995934277772903, -0.00892870593816042, 0.0015421999851241708, -0.023910077288746834, -0.05082599073648453, 0.004959633108228445, 0.009960254654288292, -0.021928956732153893, -0.02171034924685955, -0.009338593110442162, -0.009700659662485123, 0.020630979910492897, -0.0014422900276258588, -0.015111168846487999, -0.027872318401932716, 0.0001841289340518415, -0.005366104189306498, 0.003972488455474377, 0.01528878603130579, 0.011702274903655052, 0.0029938830994069576, -0.02619178034365177, 0.013253013603389263, -0.010991804301738739, -0.00998074933886528, -0.00022735921083949506, 0.007972302846610546, 0.00879207719117403, 0.016791705042123795, 0.028746744617819786, 0.0004250443016644567, 0.010383804328739643, -0.010957646183669567, 0.005946777760982513, -0.00034178601345047355, -0.008375358767807484, 0.0051782396622002125, -0.00614147400483489, 0.014523663558065891, 0.013608249835669994, 0.012460566125810146, 0.018117006868124008, -0.024552233517169952, -0.000973481684923172, 0.018540557473897934, 0.007439449429512024, -0.004406285472214222, 0.013492114841938019, -0.03555087000131607, -0.011592971161007881, 0.01116942148655653, -0.02082226052880287, 0.004413117188960314, -0.0015695258043706417, -0.009652839973568916, -0.009201963432133198, 0.004331139847636223, 0.032107818871736526, 0.011463173665106297, 0.03156130015850067, -0.014837910421192646, 0.011442679911851883, -0.01707862690091133, 0.006298597436398268, -0.019537948071956635, 0.002683052094653249, -0.01554838102310896, 0.004160353448241949, 0.008874054066836834, 0.018636196851730347, -0.0005140666617080569, -0.0020221094600856304, -0.01707862690091133, -0.012399083003401756, 0.01695566065609455, -0.012795306742191315, -0.03033163957297802, -0.003753882134333253, -0.0366712249815464, -0.02620544470846653, -0.024606885388493538, -0.02071295864880085, 0.0040920390747487545, -0.002519097412005067, 0.027858655899763107, -0.010588748380541801, 0.013341822661459446, 0.0028487148229032755, 0.003750466275960207, -0.014400697313249111, -0.034676443785429, 0.04489629343152046, 0.024401940405368805, 0.01722891815006733, 0.0319165363907814, -0.009297603741288185, -0.006752888672053814, -0.036124709993600845, 0.015343437902629375, 0.0006716169882565737, 0.005598373711109161, 0.06421563774347305, 0.01584896445274353, -0.013813192956149578, 0.005605204962193966, -0.005301205441355705, -0.01435970887541771, -0.024538571015000343, 0.006722147110849619, 0.020152779296040535, -0.014059125445783138, -0.02035772241652012, 0.01735188439488411, -0.04167184978723526, 0.01711961440742016, 0.016778042539954185, -0.0018359522800892591, 0.026519691571593285, -0.009809962473809719, -0.02583654597401619, -0.004440442658960819, -0.0034720846451818943, 0.013498946093022823, 0.01686001941561699, -0.009441064670681953, -0.01379269827157259, -0.010964478366076946, 0.014510001055896282, 0.016053909435868263, 0.004372128285467625, 0.04120730981230736, 0.00817724596709013, -0.01435970887541771, 0.012050678953528404, 0.004276487976312637, 0.004628307651728392, -0.031042110174894333, 0.020740283653140068, 0.03470376878976822, -0.00842317845672369, -0.0035626015160232782, -0.03852938115596771, 0.0035113655030727386, 0.03257235512137413, 0.014086451381444931, -0.012180476449429989, 0.0021672777365893126, -0.01696932315826416, -0.017748108133673668, 0.00016448851965833455, -0.00041287578642368317, 0.013116384856402874, -0.008655447512865067, -0.0054651605896651745, 0.0006959540187381208, -0.02422432415187359, -0.016805367544293404, 0.02433362603187561, -0.04642653837800026, -0.04691840335726738, -0.018035029992461205, -0.020753946155309677, 0.006718731485307217, 0.012590363621711731, 0.010930321179330349, 0.013020744547247887, 0.06197492033243179, -0.01022668182849884, 0.005666688084602356, -0.007459944114089012, 0.0029153216164559126, -0.002122873207554221, -0.0023961311671882868, -0.011189916171133518, -0.02345920167863369, 0.014496337622404099, -0.005523227620869875, -0.021122844889760017, -0.03828344866633415, -0.0045258360914886, 0.019114399328827858, 0.004037387203425169, 0.029047327116131783, 0.0233225729316473, 0.0032227367628365755, 0.0060390024445950985, -0.015247797593474388, -0.026861263439059258, -0.022038258612155914, -0.012023353017866611, 0.007220843341201544, 0.0264650397002697, -0.002635231940075755, -0.002893119351938367, 0.010896163992583752, 0.011347039602696896, -0.001332986750639975, -0.009188300929963589, -0.06268539279699326, 0.0027889397460967302, -0.012774812057614326, -0.013642407022416592, -0.006284934468567371, 0.01422308012843132, -0.010049063712358475, -0.0354415662586689, 0.012460566125810146, 0.003583095734938979, 0.023390887305140495, -0.004307229537516832, 0.029757797718048096, 0.006530866492539644, 0.007077382877469063, -0.01024034433066845, 0.008887717500329018, -0.03177990764379501, -0.02557695098221302, -0.02034405991435051, -0.011558813974261284, -0.05238356068730354, 0.03839275240898132, 0.0035147813614457846, 0.000628493435215205, -0.033501435071229935, -0.01572599820792675, -0.03658924996852875, 0.005482239183038473, 0.007384798023849726, 0.018622534349560738, 0.018321949988603592, -0.010124209336936474, -0.0022868281230330467, 0.002293659606948495, -0.01670972816646099, 0.023377222940325737, -0.013826855458319187, 0.005024531856179237, 0.0050655207596719265, -0.0128499586135149, -0.001977704931050539, -0.010356479324400425, -0.0032756805885583162, -0.022147562354803085, -0.0030280405189841986, 0.014537326991558075, 0.016409143805503845, 0.028992675244808197, -0.01649112068116665, -0.01024034433066845, 0.005560800898820162, -0.013280339539051056, -0.0006118417950347066, 0.005202149506658316, 0.0049049812369048595, -0.00810210034251213, 0.009816794656217098, 0.0174885131418705, -0.0024200412444770336, -0.0240876954048872, -0.016573099419474602, 0.0128499586135149, 0.015671348199248314, 0.010192523710429668, -0.015439078211784363, -0.02261210046708584, -0.0018923117313534021, -0.006657248362898827, 0.026547016575932503, -0.04806608706712723, -0.00174714345484972, 0.025016771629452705, -0.020180104300379753, 0.001447413582354784, -0.008129426278173923, 0.03596075624227524, -0.04003230109810829, -0.005082599353045225, -0.00213995180092752, -0.00043379710405133665, -0.004109117668122053, 0.010001243092119694, 0.01695566065609455, -0.01502919103950262, 0.009700659662485123, -0.0007395045249722898, 0.010766365565359592, -0.028172902762889862, -0.006653832737356424, 0.0020255250856280327, -0.018800152465701103, -0.028418833389878273, -0.0015720875235274434, -0.0023807603865861893, -0.008908211253583431, -0.017761770635843277, -0.0074736070819199085, -0.03781890869140625, 0.0286920927464962, -0.009024346247315407, 0.0064523047767579556, -0.0434206984937191, 0.00508943060413003, 0.010308658704161644, -0.0024490749929100275, -0.005530059337615967, 0.23762518167495728, -0.006093653850257397, -0.010896163992583752, 0.016504785045981407, -0.002688175765797496, -0.014496337622404099, 0.04549746215343475, 0.015261460095643997, -0.007309651933610439, -0.0006391676142811775, 0.015247797593474388, -0.01686001941561699, -0.03519563376903534, -0.00595702463760972, -0.006158552598208189, -0.007938145659863949, -0.032271772623062134, -0.04052416607737541, -0.027763014659285545, 0.011907218024134636, 0.024743514135479927, 0.003489163238555193, 0.001519997720606625, -0.015138493850827217, 0.011422185227274895, 0.015097505412995815, -0.009967085905373096, 0.018390264362096786, 0.03647994622588158, 0.024128682911396027, -0.019647251814603806, 0.008935537189245224, -0.007323314901441336, -0.020002486184239388, -0.01460564136505127, -0.004638554994016886, 0.038119494915008545, 0.01272699236869812, 0.013813192956149578, -0.0025327603798359632, -0.007015899755060673, -0.013724383898079395, -0.018745500594377518, -0.01541175227612257, -0.014414360746741295, -0.017679793760180473, 0.008061111904680729, -0.012617688626050949, 0.016135886311531067, 0.012446902692317963, 0.004536082968115807, -0.03142467141151428, 0.021928956732153893, 0.02545398473739624, -0.0068656075745821, -0.02284437045454979, 0.008778413757681847, -0.00948888435959816, 0.007364303804934025, 0.02023475617170334, -0.0005119318375363946, 0.036152034997940063, -0.018690848723053932, 0.015903616324067116, -0.048230040818452835, -0.0027855238877236843, -0.03516830876469612, 0.0002696287992876023, -0.02110918238759041, -0.010158366523683071, -0.014018136076629162, -0.0016079526394605637, -0.00040497691952623427, -0.009441064670681953, 0.0031715009827166796, -0.04128928855061531, 0.04055149108171463, 0.015657683834433556, 0.013642407022416592, 0.04659049212932587, -0.016067571938037872, 0.019059747457504272, -0.00017057277727872133, -0.013239351101219654, 0.009693828411400318, -0.025167062878608704, 0.01086200587451458, -1.5237336810969282e-05, -0.016887346282601357, -0.011162590235471725, 0.011080612428486347, -0.025549624115228653, 0.008901380002498627, -0.008061111904680729, -0.0098577830940485, 0.025057760998606682, -0.03530493751168251, 0.02684760093688965, -0.009707490913569927, 0.016791705042123795, -0.02034405991435051, 0.032763637602329254, 0.03847472742199898, 0.008539313450455666, -0.023117627948522568, 0.0023363560903817415, -0.004047634545713663, 0.010698051191866398, -0.004194510634988546, -0.009447895921766758, -0.008245560340583324, -0.03694448247551918, -0.0005951900966465473, 0.01161346584558487, 0.00476835248991847, 0.03585145249962807, 0.0022168057039380074, -0.01836293935775757, 0.001703592948615551, 0.01092348899692297, 0.03005838207900524, -0.009441064670681953, 0.0016045368975028396, 0.005420756060630083, 0.0012270993320271373, -0.006175631191581488, -0.009707490913569927, -0.011333376169204712, 0.021040868014097214, -0.037108439952135086, 0.02007080242037773, 0.017379209399223328, 0.006879270542412996, -0.012952430173754692, 0.009092660620808601, 0.01173643209040165, 0.019811205565929413, -0.011012298054993153, -0.008689604699611664, -0.021423429250717163, -0.011210409924387932, 0.0021587384399026632, 0.02110918238759041, 0.010199355892837048, 0.0046043978072702885, -0.008450504392385483, -0.005502733401954174, 0.0006515496061183512, -0.008245560340583324, -0.019688241183757782, -0.04503292217850685, -0.013936159200966358, -0.00751459551975131, -0.006131226662546396, 0.002346603199839592, -0.01623152568936348, -0.018909454345703125, -0.03505900502204895, 0.006920259445905685, 0.0047922623343765736, -0.02244814671576023, -0.014441686682403088, 0.008976525627076626, -0.02146441675722599, -0.014004473574459553, -0.034375857561826706, -0.17346419394016266, -0.0007168753654696047, 0.028801394626498222, -0.03352876007556915, 0.048585277050733566, 0.00378803932107985, 0.023308908566832542, -0.005629115272313356, 0.012303442694246769, -0.01291144173592329, 0.00942740123718977, 0.007965471595525742, -0.01732455939054489, -0.01632716692984104, -0.005390014499425888, 0.010329153388738632, -0.031260717660188675, -0.002293659606948495, 0.04888585954904556, 0.0020221094600856304, 0.06678426265716553, -0.03377469256520271, 0.007214011624455452, 0.012651846744120121, -0.018035029992461205, 0.005659856833517551, -0.004840082488954067, -0.02310396544635296, -0.011244567111134529, 0.001977704931050539, -0.013321328908205032, 0.01280213799327612, 0.028036272153258324, -0.012159981764853, 0.04421314597129822, -0.027858655899763107, 0.014988202601671219, 0.02294001169502735, 0.026232769712805748, -0.016573099419474602, 0.015070179477334023, 0.026738297194242477, 0.01286362111568451, -0.005267048254609108, 0.007343809120357037, 0.03134269639849663, 0.01785741187632084, -0.012597194872796535, 0.0019572104793041945, -0.0007740887231193483, 0.010472613386809826, -0.03882996365427971, -0.025044096633791924, -0.005571047775447369, 0.021068193018436432, -0.00310147856362164, 0.010458950884640217, 0.011893555521965027, -0.03309154510498047, -0.01304807048290968, -0.004334555473178625, -0.02907465398311615, 0.006636754143983126, -0.01710595190525055, -0.021013541147112846, -0.005598373711109161, -0.031643278896808624, 0.011722768656909466, -0.0013756833504885435, 0.012774812057614326, 0.0028811641968786716, -0.02145075425505638, -0.00030293213785625994, -0.003661657450720668, 0.027981622144579887, -0.015357100404798985, -0.027011554688215256, -0.00305878184735775, 0.017433861270546913, 0.003743634792044759, -0.0054959021508693695, 0.048230040818452835, 0.02108185552060604, -0.021013541147112846, 0.01747485063970089, 0.03708111494779587, -0.0025942432694137096, -0.017556827515363693, -0.00664700148627162, -0.011579308658838272, 0.030878156423568726, -0.004952801391482353, -0.02535834349691868, -0.008798908442258835, 0.013191530480980873, -0.00033986466587521136, 0.01635449193418026, -0.015056516975164413, -0.024183334782719612, -0.01735188439488411, 0.026041489094495773, 0.0010921781649813056, -0.03358341008424759, -0.00280772615224123, 0.06202957034111023, 0.007480438333004713, -0.009707490913569927, 0.027735689654946327, 0.044978268444538116, -0.010376973077654839, -0.043120115995407104, 0.022174889221787453, 0.020904239267110825, 0.004980127327144146, 0.01446901261806488, 0.05276612192392349, -0.006930506322532892, -0.008368526585400105, -0.012016521766781807, 0.005215812474489212, -0.028008947148919106, 0.004908397328108549, -0.0012851665960624814, 0.022393494844436646, 0.011449511162936687, -0.02519438974559307, -0.05487021058797836, -0.0022799966391175985, 0.023172279819846153, 0.002715501468628645, -0.008675942197442055, 0.00545491324737668, -0.01746118813753128, 0.02334989793598652, 0.003470376832410693, 0.01203701552003622, -0.006623091176152229, -0.03792821243405342, -0.0011587848421186209, 0.023746121674776077, 0.0045839031226933, 0.01996149867773056, -0.003518196986988187, -0.021423429250717163, -0.02083592489361763, 0.014619303867220879, -0.020029813051223755, 0.007787853479385376, -0.02485281601548195, -0.03044094331562519, -0.0008150774519890547, -0.004556577652692795, -0.01698298566043377, 0.04877655580639839, 0.022912684828042984, 0.0025737490504980087, 0.012556206434965134, 0.015917278826236725, -0.0031117256730794907, 0.0017966715386137366, -0.018663521856069565, 0.014018136076629162, -0.0015951436944305897, -0.023664144799113274, 0.02921128273010254, -0.037982866168022156, 0.0011468298034742475, 0.007746865041553974, 0.010814186185598373, -0.003408893710002303, -0.01623152568936348, -0.023541178554296494, 0.0016284469747915864, 0.037627629935741425, -0.03445783630013466, -0.023431874811649323, -0.01960626244544983, 0.016778042539954185, -0.005144082009792328, -0.016163211315870285, 0.02847348526120186, -0.02082226052880287, -0.004887902643531561, 0.00791765097528696, -0.01746118813753128, 0.00973481684923172, -0.00595702463760972, -0.005728171207010746, -0.0005588980275206268, 0.04801143333315849, -0.013826855458319187, -0.006954416632652283, -0.01246739737689495, 0.005133835133165121, 0.011203578673303127, -0.006025339476764202, -0.0030468269251286983, 0.02046702615916729, -0.025139737874269485, 0.008771582506597042, -0.015507392585277557, -0.01858154498040676, -0.011265061795711517, -0.008313875645399094, 0.021765001118183136, -0.020808598026633263, -0.004515588749200106, -0.017379209399223328, 0.007822010666131973, -0.012289779260754585, 0.03177990764379501, 0.017693456262350082, 0.0022560865618288517, 0.008033785969018936, -0.0016643120907247066, -0.06224817782640457, 0.0030724448151886463, 0.0008342908695340157, 0.004495094530284405, -0.023049313575029373, -0.027640048414468765, -0.0019947835244238377, 0.005349025595933199, 0.004566824529320002, -0.0054959021508693695, 0.022789718583226204, -0.026478702202439308, -0.012064341455698013, -0.08542045950889587, 0.015466404147446156, -0.011408522725105286, -0.013990811072289944, 0.00745311239734292, -0.023650482296943665, 0.0033713208977133036, 0.000601167615968734, 0.007903988473117352, -0.00012776946823578328, -0.037108439952135086, -0.007589741609990597, -0.003586511593312025, -0.023500189185142517, -0.017023975029587746, -0.013225688599050045, 0.02257111296057701, 0.001490964088588953, 0.007815179415047169, 0.01384051889181137, -0.009017514996230602, 0.0026864679530262947, 0.01621786318719387, 0.03128804266452789, -0.019401319324970245, 0.020521678030490875, 0.001806918648071587, 0.05418706685304642, 0.010049063712358475, -0.011893555521965027, 0.01141535397619009, -0.006366911809891462, -0.021191159263253212, -0.026232769712805748, -0.0005695722065865993, -0.030495595186948776, 0.0022492550779134035, 0.006930506322532892, 0.021614709869027138, 0.029347911477088928, -0.012153150513768196, -0.0033849836327135563, 0.0017010312294587493, 0.011435847729444504, 0.006824619136750698, -0.009201963432133198, -0.008170414716005325, 0.008573470637202263, 0.03396597132086754, 0.0009273694013245404, 0.06323190778493881, 0.0012083128094673157, -0.012781644240021706, -0.028254879638552666, 0.004194510634988546, -0.0621388740837574, 0.014687618240714073, 0.02345920167863369, -0.010561422444880009, -0.004812757018953562, 0.021805990487337112, 0.003518196986988187, 0.005854553077369928, 0.0003488309448584914, 0.014824247919023037, 9.0463348897174e-05, -0.02147808112204075, -0.001916221808642149, 0.043857913464307785, -0.029757797718048096, -0.04339337348937988, -0.010575084947049618, -0.010035401210188866, 0.006394237745553255, 0.009953423403203487, -0.00041949376463890076, -0.005328531377017498, 0.007507764268666506, -0.015480066649615765, 0.0012800430413335562, -0.0026181533467024565, -0.0018701095832511783, -0.01970190368592739, 0.011203578673303127, 0.02135511487722397, 0.01970190368592739, -0.011176252737641335, 0.015507392585277557, -0.007733202073723078, 0.0011126725003123283, -0.02108185552060604, 0.009201963432133198, 0.016682401299476624, 0.01649112068116665, 0.029621168971061707, 0.01553471852093935, -0.005420756060630083, -0.007316483650356531, 0.004700038116425276, -0.006172215566039085, 0.0006075721466913819, -0.00266597350127995, -0.0075555844232439995, -0.018772825598716736, -0.011217242106795311, 0.011080612428486347, -0.024306301027536392, -0.03320084884762764, -0.008464166894555092, 0.003456713864579797, -0.009242952801287174, 0.00979629997164011, -0.0050655207596719265, 0.01859520748257637, -0.019865857437253, -0.0004901565844193101, -0.006015092134475708, -0.03593343123793602, -0.03279096260666847, 0.031752582639455795, 0.009195132181048393, 0.0379008874297142, 0.014031799510121346, -0.01502919103950262, 0.05306670814752579, -0.01347162015736103, 0.014578315429389477, -0.0067563047632575035, 0.03503168001770973, 0.0014457057695835829, -0.015903616324067116, 0.03997764736413956, -0.017789097502827644, -0.018444916233420372, -0.001734334509819746, 0.008395852521061897, 0.011620297096669674, -0.003719724714756012, 0.02481182850897312, 0.09170538932085037, 0.012050678953528404, -0.012303442694246769, 0.01371755264699459, -0.006841697730123997, 0.02322693169116974, 0.007179854437708855, 0.011463173665106297, -0.031151413917541504, -0.021505406126379967, 0.02556328848004341, -0.0068997652269899845, 0.012050678953528404, 0.008634953759610653, -0.01983853243291378, 0.008095269091427326, -0.0014986494788900018, 0.030741527676582336, -0.0044301957823336124, 0.014455349184572697, 0.02396472916007042, 0.021423429250717163, 0.010780028998851776, 0.008785245008766651, -0.01970190368592739, -0.008962863124907017, 0.043994542211294174, -0.004474600311368704, -0.014195754192769527, -0.01711961440742016, 0.01948329620063305, 0.006155136972665787, -0.012323936447501183, -0.0025891198311001062, 0.007220843341201544, 0.021068193018436432, -0.031752582639455795, -0.0037948708049952984, 0.035496216267347336, -0.001118650077842176, 0.010773197747766972, -0.01410011388361454, -0.02345920167863369, -0.024989446625113487, 0.008389021269977093, 0.00860762782394886, -0.019373994320631027, -0.00797913409769535, 0.013553597964346409], "d3828701-0ae8-4d1e-970b-2b3f5bb2c1de": [0.012222742661833763, -0.01438913680613041, -0.002173080574721098, -0.01591363735496998, -0.016689259558916092, -0.001088211894966662, -0.012777714058756828, -0.021918024867773056, 0.015485706739127636, -0.01692996919155121, 0.008565280586481094, 0.011580848135054111, 0.0017969704931601882, 0.009581614285707474, -0.009534808807075024, -0.008103919215500355, 0.011293333023786545, -0.0063086203299462795, 0.007936758920550346, -0.022733766585588455, -0.010263627395033836, -0.007368415128439665, 0.0292596947401762, -0.008979838341474533, -0.031961001455783844, 0.020420271903276443, 0.012329725548624992, -0.020580746233463287, 0.01824050396680832, -0.008826050907373428, 0.014964167959988117, -0.007007349282503128, -0.01822713203728199, -0.014950795099139214, 0.013473100028932095, -0.0028433925472199917, 0.003971722908318043, -0.013680378906428814, -0.008003623224794865, 0.013279194012284279, 0.025140872225165367, 0.01225617527961731, 0.014723457396030426, 0.011654398404061794, -0.013125407509505749, 0.01023019477725029, -0.03238893300294876, 0.006873621139675379, 0.0022817347198724747, 0.014161799103021622, -0.006362111307680607, 0.003908202052116394, -0.04832931235432625, -0.021503468975424767, -0.007207941263914108, 0.006158176343888044, -0.017598610371351242, 0.008565280586481094, 0.0136268874630332, -0.02227909117937088, 0.0042024035938084126, 0.016421804204583168, -0.024980397894978523, -0.008712382055819035, -0.013232389464974403, 0.00741521967574954, -0.010798539035022259, 0.015820026397705078, -0.028912002220749855, 0.0018003137083724141, 0.052421391010284424, 0.01864168792963028, 0.012436707504093647, -8.45203030621633e-05, 0.03696243092417717, 0.01134013757109642, -0.030650466680526733, -0.00992930680513382, 0.01884227991104126, 0.009855756536126137, 0.0005695978761650622, -0.002634442411363125, 0.012583808973431587, -0.022640157490968704, 0.017277663573622704, 0.007121018134057522, -0.02562229335308075, 0.02794915996491909, 0.00855859462171793, -7.370713137788698e-05, 0.014282154850661755, 0.011106113903224468, 0.012523630633950233, 0.01861494407057762, -0.001680794288404286, 0.005897406488656998, 0.013112034648656845, 0.01670263148844242, -0.0022967790719121695, -0.04857002571225166, -0.004650392569601536, 0.020714472979307175, -0.02247968316078186, -0.006475780159235001, -0.04121498018503189, -0.025649037212133408, 0.028912002220749855, -0.0008617100538685918, 0.03415414318442345, -0.014308900572359562, -0.030623720958828926, 0.028216617181897163, 0.012490198947489262, -0.03613331541419029, -0.006445691455155611, 0.0014267109800130129, 0.021744178608059883, -0.009106879122555256, -0.0074887704104185104, -0.0119486004114151, 0.023215187713503838, -0.008464984595775604, 0.02310820482671261, 0.009695283137261868, 0.025943240150809288, 0.0167160052806139, 0.013907716609537601, -0.009340903721749783, 0.004784120712429285, -0.02238607406616211, 0.028029397130012512, -0.004540067166090012, -0.0034368105698376894, 0.0003752743068616837, -0.004697197582572699, -0.007910013198852539, -0.014496119692921638, -0.010985758155584335, -0.014977540820837021, -0.008545221760869026, 0.022439565509557724, -0.0012637299951165915, -0.001753508928231895, -0.02429838478565216, -0.00010854956053663045, 0.01701020635664463, 0.0006619538180530071, 0.017438136041164398, -0.0026444720569998026, -0.010604633949697018, 0.00412885332480073, -0.013593454845249653, 0.010731675662100315, -0.013038483448326588, 0.00032324573840014637, 0.012570436112582684, 0.025742648169398308, 0.017571864649653435, 0.0003926171630155295, -0.025368209928274155, -0.0031208782456815243, 0.01372049655765295, 0.018708553165197372, -0.005740276072174311, 0.0026611879002302885, 0.028109634295105934, 0.01063137874007225, 0.020313289016485214, -0.02522110752761364, 0.008411494083702564, 0.0185347069054842, -0.008190842345356941, -0.026919454336166382, 0.016542159020900726, -0.0002185617631766945, 0.026478152722120285, -0.022640157490968704, 0.029206203296780586, -0.0195376668125391, -0.02856430970132351, -0.005325719248503447, -0.007375101558864117, -0.005833885632455349, 0.026972945779561996, -0.006495839450508356, -0.04442445561289787, -0.012055582366883755, -0.009073447436094284, 0.009053388610482216, 0.0072748055681586266, 0.005385896656662226, 0.04121498018503189, -0.0039449771866202354, 0.00019798018911387771, -0.6029529571533203, -0.02776194177567959, -0.011420374736189842, -0.0025057292077690363, -0.0003855128597933799, -0.002153021516278386, -0.004031900316476822, 0.027788687497377396, -0.03249591216444969, 0.036213554441928864, -0.005319032818078995, 0.006097998470067978, -0.01620783843100071, -0.0045567830093204975, 0.008839423768222332, -0.026371169835329056, -0.022118618711829185, -0.010511023923754692, 0.009240607731044292, 0.020005714148283005, -0.021530214697122574, 0.012964933179318905, -0.035892605781555176, -0.018146894872188568, 0.011834931559860706, -0.017384644597768784, 0.01513801421970129, -0.009073447436094284, -0.012764341197907925, 0.03206798434257507, -0.031238870695233345, 0.007742853369563818, 0.014001325704157352, -0.005823856219649315, 0.051191095262765884, -0.0014542924473062158, -0.039556752890348434, 0.016060737892985344, 0.004981369711458683, 0.04739321768283844, -0.01628807559609413, -0.023161696270108223, 0.011052622459828854, 0.0009135296568274498, 0.0006410587811842561, 0.0023903886321932077, 0.01923009194433689, -0.03971722722053528, 0.008505103178322315, 0.016876477748155594, 0.011661085300147533, -0.018213758245110512, 0.023736726492643356, -0.0039449771866202354, 0.03329828381538391, 0.003047327743843198, 0.02167731523513794, -0.0350634902715683, 0.010872089304029942, -0.007642557378858328, -0.0028567651752382517, 0.016555530950427055, -0.002054397016763687, -0.01509789563715458, -0.02552868239581585, 0.025354836136102676, -0.02703980915248394, -0.018507961183786392, -0.001191851100884378, -0.022920986637473106, 0.016675885766744614, -0.01660902239382267, 0.029420169070363045, -0.004784120712429285, 0.008672263473272324, 0.04715250805020332, 0.008337942883372307, -0.03059697523713112, -0.0058138263411819935, 0.00942113995552063, 0.005489536095410585, -0.007268119137734175, -0.004179001320153475, -0.020192934200167656, 0.018788790330290794, -0.020727846771478653, -0.016181092709302902, 0.0016540486831218004, 0.01599387265741825, 0.02076796442270279, 0.019871987402439117, 0.017973048612475395, 0.01154741644859314, -0.04621640965342522, -0.0011116142850369215, 0.03859391063451767, -0.0009419468697160482, -0.02238607406616211, 0.001105763716623187, -0.003801219630986452, -0.006940485443919897, 0.0002601428423076868, 0.006362111307680607, -0.014108308590948582, 0.018802162259817123, -0.006154832895845175, -0.03594609722495079, 0.0027130076196044683, 0.027922414243221283, -0.0015888562193140388, 0.013185584917664528, 0.005178618244826794, 0.0025976672768592834, 0.003152638440951705, 0.008525162935256958, -0.03212147578597069, 0.0009352604974992573, 0.02016618847846985, 0.005653352942317724, -0.022640157490968704, 0.02278725802898407, 0.01215587928891182, 0.0068869940005242825, -0.0061682057566940784, -0.0004479889466892928, 0.01591363735496998, 0.00926066655665636, 0.005098381545394659, 0.006880307570099831, -0.010203449055552483, -0.023134950548410416, 0.010618006810545921, 0.011059309355914593, -0.012075642123818398, 0.013673692010343075, 0.024579213932156563, 0.018414350226521492, -0.00754894781857729, 0.01007640827447176, -0.012924815528094769, -0.01884227991104126, -0.00660950830206275, 0.005359151400625706, -0.011560789309442043, 0.004570155870169401, -0.040038175880908966, -0.026478152722120285, -0.006920426152646542, -0.01741139031946659, 0.007107645273208618, 0.01842772401869297, -0.01114623248577118, -0.0006034477846696973, 0.02197151631116867, -0.007508829236030579, 0.012389902956783772, -0.013600141741335392, -0.007161136716604233, 0.005232109688222408, -0.016421804204583168, -0.012563749216496944, -0.005409299395978451, -0.016448548063635826, -0.010885462164878845, -0.011801499873399734, -0.003339857794344425, 0.003231203882023692, -0.023228559643030167, -0.010450846515595913, -0.03404716029763222, -0.003720982698723674, 0.0016147660790011287, 0.010658124461770058, -0.008043741807341576, 0.00754894781857729, 0.006492496468126774, -0.027895668521523476, 0.012784400954842567, -0.011313391849398613, -0.007642557378858328, 0.008752500638365746, 0.010825284756720066, 0.010096467100083828, -0.010490965098142624, 0.00881936401128769, 0.007856522686779499, 0.014616474509239197, 0.0034936449956148863, -0.03482278063893318, 0.007281491998583078, 0.0037243259139358997, 0.009441199712455273, 0.01630144752562046, 0.010323804803192616, 0.030035316944122314, 0.00211457465775311, 0.016568904742598534, 0.00835131574422121, 0.01458972878754139, 0.02330879680812359, 0.02835034392774105, -0.004680481273680925, 0.011774754151701927, -0.02875152789056301, 0.027628213167190552, -0.019283583387732506, -0.012430021539330482, 0.0005574787501245737, 0.02116914838552475, 0.021236013621091843, -0.019791750237345695, -0.04332788661122322, -0.03099815919995308, -0.002260003937408328, 0.015204878523945808, 0.019671395421028137, -0.030516738072037697, 0.0094077680259943, -0.025796139612793922, 0.005767021793872118, 0.01600724644958973, -0.016983460634946823, 0.018507961183786392, -0.03019579127430916, -0.007709421683102846, 0.0026461435481905937, 0.0036440889816731215, -0.00559986149892211, 0.018253877758979797, -0.012316352687776089, -0.001052272506058216, -0.014255409128963947, 0.003042312804609537, 0.005011458415538073, 0.01731778122484684, -0.022452937439084053, 0.012891382910311222, -0.017464881762862206, 0.023883827030658722, -0.0002300540218129754, 0.013105347752571106, -0.01660902239382267, 0.005907436367124319, -0.012282920069992542, 0.02269364893436432, 0.002692948328331113, 0.05600530281662941, 0.013907716609537601, -0.036828700453042984, -0.01386759802699089, -0.01721079833805561, -0.008839423768222332, -0.02015281654894352, 0.026183949783444405, -0.003975065890699625, -0.03297733515501022, 0.0008504267316311598, 0.005760335363447666, 0.03450183570384979, 0.01351990457624197, 0.020888319239020348, 0.017398018389940262, 0.014081562869250774, 0.012436707504093647, -0.0008123978623189032, -0.02845732681453228, -0.015485706739127636, -0.019484175369143486, -0.01701020635664463, -0.023121578618884087, -0.006552673876285553, 0.0036440889816731215, 0.02086157351732254, -0.024378621950745583, -0.002582622691988945, -0.002310151932761073, -0.004603587556630373, 0.017371272668242455, 0.038139235228300095, -0.0022533175069838762, 0.002890197327360511, -0.014669965952634811, 0.013453041203320026, 0.018855653703212738, 0.015004286542534828, 0.01168783102184534, -0.014750203117728233, -0.006696431431919336, 0.009106879122555256, 0.005111754406243563, 0.020219679921865463, 0.015672925859689713, 0.018869025632739067, -0.0013799061998724937, -0.017558490857481956, -0.004794150125235319, 0.03292384371161461, -0.005683441646397114, -0.019818495959043503, -0.008785932324826717, 0.011908481828868389, -0.020580746233463287, -0.014349019154906273, 0.005502908956259489, 0.039743974804878235, -0.003657461842522025, -0.022934358566999435, -0.00360731384716928, 0.0025341464206576347, -0.022105244919657707, -0.01985861361026764, -0.009581614285707474, -0.017357898876070976, -0.012068955227732658, -0.023054713383316994, -0.0017083757556974888, 0.0064256321638822556, -0.0037343555595725775, 0.009053388610482216, 0.012296292930841446, -0.01639505848288536, -0.015512452460825443, -0.02714679203927517, 0.013426295481622219, 0.00640891632065177, 0.021637197583913803, 0.006696431431919336, 0.019871987402439117, -0.015378724783658981, -0.012169251218438148, -0.03209472820162773, -0.01742476411163807, 0.008812678046524525, -0.01639505848288536, 0.00047724193427711725, -0.009434512816369534, 0.006315306760370731, -0.00040598996565677226, 0.012483512982726097, 0.007261432707309723, -0.01861494407057762, -0.02864454686641693, 0.0002624412882141769, -0.02968762442469597, 0.012403275817632675, -0.029500406235456467, 0.01943068392574787, -0.0029971797484904528, 0.005797110497951508, 0.017277663573622704, 0.005720216780900955, 0.035197220742702484, 0.005155215971171856, -0.0213563684374094, -0.003025596961379051, -0.0014350690180435777, -0.012998365797102451, 0.019109737128019333, -0.003998468164354563, 0.023870455101132393, -0.0012294622138142586, 0.06937810778617859, 0.008986524306237698, 0.018200386315584183, -0.009447885677218437, 0.02722702920436859, 0.025796139612793922, -0.015191505663096905, 0.02662525326013565, -0.02320181578397751, 0.012022150680422783, 0.009849070571362972, -0.009106879122555256, -0.028537563979625702, 0.005282257683575153, 0.002102873520925641, -0.017184052616357803, 0.004794150125235319, -0.007281491998583078, 0.017745710909366608, -0.026304304599761963, -0.00228006299585104, -0.013446354307234287, -0.000276858831057325, 0.0025575486943125725, -0.008077173493802547, 0.0006147311069071293, -0.002990493318066001, -0.00956824142485857, -0.023054713383316994, -0.030062062665820122, -0.018882399424910545, -0.01549907959997654, -0.02419140189886093, 0.011975346133112907, -0.058679863810539246, -0.030249282717704773, 0.015619435347616673, 0.008411494083702564, 0.013473100028932095, 0.018895771354436874, -0.016970088705420494, -0.01591363735496998, 0.015659553930163383, -0.015031031332910061, 0.009347589686512947, -0.003510361071676016, -0.013479785993695259, -0.00098122947383672, 0.005840572062879801, 0.005887377075850964, 0.009808951988816261, -0.014977540820837021, 0.032362185418605804, 0.00409876462072134, 0.0065560173243284225, 0.021543586626648903, 0.009146997705101967, -0.008612086065113544, 0.01770559325814247, 0.0022533175069838762, 0.02358962595462799, -0.00956824142485857, -0.015980500727891922, 0.0026611879002302885, -0.044611673802137375, -0.023843709379434586, 0.003710953053086996, -0.0007183703128248453, -0.027788687497377396, -0.0013431309489533305, 0.010163331404328346, -0.012650672346353531, 0.0011266587534919381, 0.019283583387732506, -0.010444159619510174, -0.0018955949926748872, -0.006693088449537754, 0.008284452371299267, -0.0004216612142045051, 0.0012068955693393946, 0.014001325704157352, 0.006412259303033352, 0.00012328053708188236, 0.01093895360827446, -0.036801956593990326, 0.03182727470993996, 0.02277388609945774, -0.00881936401128769, 0.0084516117349267, -0.014643220230937004, -0.028430581092834473, -0.019805122166872025, 0.004382936283946037, 0.0021931398659944534, 0.021730806678533554, -0.0048041800037026405, -0.02195814438164234, -0.034876272082328796, -0.0018354173516854644, 0.014041444286704063, 0.021142402663826942, -0.019885359331965446, -0.035090237855911255, -0.0032211742363870144, -0.0037911899853497744, -0.0029135996010154486, -0.024351876229047775, 0.003603970631957054, -0.029848098754882812, 0.0015244996175169945, -0.009026642888784409, 0.008090546354651451, 0.011520670726895332, 0.021115656942129135, 0.005088352132588625, -0.04364883154630661, -0.0008295317529700696, -0.001992547884583473, -0.029607387259602547, 0.009394395165145397, -0.03303082659840584, 0.02055400051176548, 0.021717432886362076, 0.009113566018640995, 0.010504337958991528, 0.014897303655743599, -0.004770747851580381, -0.002575936261564493, 0.002741424832493067, -0.045119840651750565, 0.014576355926692486, -0.0003608567640185356, 0.0019223405979573727, 0.011132859624922276, -0.0029854783788323402, -0.0017284349305555224, -0.017184052616357803, 0.010785166174173355, 0.024793177843093872, -0.008291138336062431, 0.003351558931171894, 0.012476826086640358, -0.04324764758348465, 0.01073836162686348, -0.0047540320083498955, 0.00801030918955803, -0.0009879159042611718, -0.007662616670131683, -0.02532809041440487, -0.012483512982726097, 0.005977643188089132, 0.04281971976161003, 0.028698038309812546, 0.01763872802257538, -0.016448548063635826, -0.0011291661066934466, -0.006632910575717688, 0.009481318295001984, -0.020634235814213753, 0.008505103178322315, -0.017344526946544647, 0.017759082838892937, 0.010404041968286037, 0.012944874353706837, 0.020594118162989616, 0.018213758245110512, 0.014041444286704063, 0.009675223380327225, 0.038112491369247437, 0.005385896656662226, -0.033966921269893646, 0.003231203882023692, -0.016836360096931458, -0.03835320100188255, -0.019617903977632523, 0.002634442411363125, 0.007736166939139366, -0.03057022951543331, 0.002273376565426588, 0.012383216060698032, 0.018909145146608353, 0.012055582366883755, -0.009554868564009666, 0.01087877620011568, -0.033244792371988297, 0.031961001455783844, -0.0024154626298695803, 0.004372906871140003, 0.030623720958828926, 0.0035404497757554054, -0.012771028093993664, -0.04982706904411316, -0.019791750237345695, -0.011092741042375565, 0.03126561641693115, 0.05466802418231964, 0.00942113995552063, -0.02816312573850155, -0.012175938114523888, 0.015632808208465576, -0.0027514544781297445, -0.03321804478764534, 0.01680961437523365, -0.010745047591626644, 0.003811249043792486, -0.02773519605398178, 0.009574927389621735, -0.042685989290475845, 0.013987952843308449, -0.004118823446333408, -0.005736933089792728, -0.020794710144400597, -0.010156644508242607, -0.0034334673546254635, 0.017371272668242455, -0.038246218115091324, 0.007990250363945961, -0.009447885677218437, 0.020834827795624733, 0.0003422602021601051, -0.020099325105547905, -0.05744956433773041, -0.011320078745484352, 0.001254536211490631, 0.02773519605398178, -0.009327530860900879, 0.007709421683102846, 0.020286543294787407, 0.02875152789056301, -0.002512415638193488, -0.022867495194077492, -0.002475640270859003, 0.04985381290316582, -0.00731492368504405, 0.009956052526831627, 0.0025074006989598274, 0.013660319149494171, 0.029206203296780586, -0.0027079929132014513, 0.009661850519478321, -0.009401081129908562, -0.005900749936699867, -0.008752500638365746, 0.02500714361667633, -0.015726417303085327, 0.02005920559167862, -0.018601570278406143, -0.014549611136317253, 0.006298590451478958, -0.016675885766744614, 0.0027514544781297445, 0.028002651408314705, -0.03209472820162773, -0.015432216227054596, -0.006973917130380869, -0.03410065174102783, 0.01301842462271452, 0.0031693545170128345, 0.013787360861897469, 0.004844298120588064, 0.07552959769964218, -0.03624029830098152, 0.016074109822511673, 0.01741139031946659, 0.0034869585651904345, 0.00023026297276373953, -0.0024923563469201326, -0.0007459517219103873, -0.02149009518325329, 0.018708553165197372, -0.00966853741556406, -0.014817066490650177, -0.028805019333958626, 0.02642466127872467, 0.01751837320625782, 0.0070274085737764835, 0.02368323504924774, 0.02683921717107296, 0.004610273987054825, 0.015646180137991905, -0.021342994645237923, -0.02765495888888836, 0.0015504094772040844, 0.009086820296943188, -0.005285600665956736, 0.013185584917664528, -0.008117292076349258, 0.005041547119617462, -0.00021772595937363803, 0.001910639344714582, -0.0039282613433897495, 0.010310431942343712, -0.03950326144695282, 0.01791955716907978, -0.0027481112629175186, -0.020299917086958885, -0.010470905341207981, -0.033966921269893646, 0.007736166939139366, -0.023215187713503838, -0.01611422933638096, 0.02239944599568844, -0.007475397549569607, 0.0119486004114151, 0.02238607406616211, 0.006525928154587746, 0.004389622714370489, -0.01600724644958973, -0.02754797600209713, -0.02218548208475113, -0.034796036779880524, -0.01184161752462387, -0.027681704610586166, -0.027387501671910286, 0.028617801144719124, 0.00011889258894370869, -0.018601570278406143, -0.007421906106173992, -0.0034635562915354967, -0.0423382967710495, -0.024338502436876297, 0.0002288003161083907, 0.006499182898551226, 0.02987484447658062, 0.002273376565426588, 0.014014698565006256, 0.009635105729103088, -0.00681010028347373, 0.004894446115940809, -0.01722417213022709, -0.008344629779458046, 0.0006749086896888912, -0.02510075271129608, -0.0016122587257996202, -0.01265735924243927, -0.01619446650147438, -0.006231726612895727, 0.023255305364727974, -0.013894343748688698, 0.012931501492857933, 0.0177189651876688, 0.009695283137261868, -0.010724988766014576, -0.02064760960638523, -0.02177092432975769, -0.013145466335117817, -0.00881936401128769, 0.0025592204183340073, -0.024445485323667526, 0.010724988766014576, 0.01630144752562046, 0.009026642888784409, -0.0013347730273380876, -0.005653352942317724, 0.02237270027399063, -0.008371375501155853, 0.010731675662100315, -0.011380256153643131, -0.013961207121610641, 0.005957584362477064, -0.012911442667245865, 0.02310820482671261, -0.024057675153017044, 0.009748774580657482, 0.03616006299853325, -0.005255511961877346, -0.013947834260761738, -0.013787360861897469, 0.01123984158039093, -0.03059697523713112, 0.0013539964566007257, -0.002626084489747882, -0.0046637654304504395, -0.010317117907106876, 0.018976008519530296, 0.009996171109378338, -0.016328193247318268, 0.0011567475739866495, -0.003040641313418746, 0.03501000255346298, -0.04750020056962967, 0.02167731523513794, 0.014549611136317253, -0.026478152722120285, -0.017371272668242455, 0.0008487551822327077, -0.018788790330290794, -0.0010857045417651534, -0.04209758713841438, 0.0016958387568593025, -0.02864454686641693, 0.00493456469848752, -0.012343098409473896, -0.0008725754451006651, -0.016461921855807304, 0.026972945779561996, 0.023870455101132393, -0.005309003405272961, -0.007435278967022896, 0.254404217004776, -0.028323598206043243, 0.013426295481622219, 0.03206798434257507, 0.005004771985113621, 0.015458961017429829, 0.024030929431319237, 0.00526888482272625, 0.01168783102184534, 0.015860145911574364, -0.007582379970699549, -0.019283583387732506, 0.0027664988301694393, 0.00016047364624682814, 0.00033452906063757837, -0.036614738404750824, -0.019189974293112755, -0.003747728420421481, -0.023241933435201645, -0.002000905806198716, 0.04100101813673973, -0.01392108853906393, 0.0028116321191191673, -0.01894926279783249, 0.010390669107437134, 0.00741521967574954, -0.013473100028932095, 0.011226468719542027, 0.050495706498622894, 0.01144043356180191, -0.03048999235033989, 0.029741115868091583, 0.01178812701255083, -0.005756991915404797, 0.004406339023262262, -0.035384438931941986, 0.05001428723335266, -0.004583528731018305, 0.02998182736337185, 0.0023368974216282368, 0.00039282612851820886, 0.003403378650546074, -0.005496222525835037, -0.004195717163383961, -0.024980397894978523, 0.003391677513718605, -0.003349887439981103, -0.01352659147232771, 0.03586586192250252, 0.002428835490718484, -0.00288518238812685, -0.0075890664011240005, 0.045815225690603256, 0.023429153487086296, 0.006311963312327862, -0.004145569168031216, 0.027788687497377396, 0.007141077425330877, -0.007756226230412722, 0.024151284247636795, -0.009173743426799774, 0.036801956593990326, -0.029018985107541084, 0.023348916321992874, -0.005890720058232546, -0.007555634249001741, -0.008665576577186584, 0.012316352687776089, -0.017398018389940262, 0.0056566959246993065, -0.018695179373025894, -0.012289606966078281, -0.017384644597768784, 0.0016097512561827898, -0.030543483793735504, -0.03177378326654434, 0.05127133056521416, 0.02300122380256653, 0.00996942538768053, 0.07071539014577866, 0.02380359172821045, 0.004396309144794941, 0.007903327234089375, 0.005459447391331196, -0.003415079787373543, -0.01864168792963028, 0.008217588067054749, -0.014576355926692486, -0.015646180137991905, -0.006245099473744631, 0.008739127777516842, -0.010397355072200298, -0.0004876894527114928, -0.01073836162686348, 0.00503486068919301, 0.0028601083904504776, -0.0016841375036165118, 0.0004893610603176057, -0.01130001898854971, -0.010096467100083828, -0.03466230630874634, 0.050789911299943924, 0.03696243092417717, 0.02370998077094555, -0.007441965397447348, 0.006586106028407812, -0.006790041457861662, 0.0035337633453309536, 0.01103924959897995, -0.007602439261972904, 0.014897303655743599, -0.046938542276620865, 0.006285218056291342, 0.009548181667923927, -0.01063806563615799, 0.03696243092417717, -0.009762146510183811, -0.012222742661833763, -0.018561452627182007, 0.008337942883372307, 0.02431175857782364, -0.024178029969334602, -0.003914888482540846, -0.010103153064846992, -0.00546947680413723, 0.017184052616357803, -0.031452834606170654, -0.005950897932052612, 0.0027982592582702637, -0.04624315723776817, 0.02580951154232025, 0.0009686924749985337, 0.005278914235532284, -0.004232492297887802, 0.0012821175623685122, 0.011059309355914593, -0.0031041621696203947, -0.017371272668242455, -0.018574824556708336, 0.012015464715659618, -0.009300785139203072, 0.0042191194370388985, -0.011875050142407417, 0.002990493318066001, -0.016368312761187553, -0.00795681867748499, 0.004369563888758421, 0.009133624844253063, 0.02136974036693573, -0.018855653703212738, -0.060498565435409546, 0.010618006810545921, 0.015044404193758965, 0.0036507754120975733, 0.008130664937198162, -0.01833411492407322, -0.015512452460825443, -0.04346161335706711, 0.004690511152148247, 0.018307369202375412, -0.030115554109215736, -0.01271753665059805, 0.013947834260761738, -0.03321804478764534, -0.007107645273208618, -0.019310329109430313, -0.16956715285778046, -0.020072579383850098, 0.02813638001680374, -0.03345875442028046, 0.03514372929930687, 0.008993210271000862, -0.013840852305293083, -0.010357236489653587, -0.018106777220964432, -0.011253214441239834, 0.017063697800040245, 0.005693471524864435, -0.0366949737071991, 0.012423334643244743, -0.010745047591626644, 0.0023920603562146425, 0.008304511196911335, 0.009795579127967358, 0.04354184865951538, 0.002106216736137867, 0.06418945640325546, -0.017799202352762222, -0.0043093860149383545, 0.0019724885933101177, 0.011714576743543148, 0.003854710841551423, -0.005609891377389431, -0.015405470505356789, -0.0036374027840793133, -0.01362020056694746, 0.006108028348535299, 0.0022399446461349726, 0.027628213167190552, -0.0041121370159089565, -0.00258429441601038, -0.007401846814900637, 0.017398018389940262, -0.000500226451549679, -0.004001811612397432, 0.02320181578397751, 0.004118823446333408, 0.01984524168074131, 0.031800527125597, -0.005666725803166628, 0.01529848761856556, 0.023429153487086296, 0.005018144845962524, -0.013606827706098557, 0.010504337958991528, 0.007428592536598444, 0.008805991150438786, -0.0184410959482193, -0.03859391063451767, -0.01174132153391838, 0.01579328067600727, 0.00741521967574954, -0.0011860005324706435, 0.02613045834004879, -0.0202597975730896, -0.0021847819443792105, 0.01224948838353157, -0.030115554109215736, 0.0036006274167448282, -0.0025408328510820866, -0.008043741807341576, -0.0012219399213790894, -0.024151284247636795, 0.0025675783399492502, -0.0033264849334955215, 0.0007229672046378255, 0.019109737128019333, -0.03244242072105408, -0.01648866757750511, -0.022105244919657707, 0.02297447808086872, -0.01751837320625782, -0.006693088449537754, 0.033672720193862915, 0.029393423348665237, -3.4241689718328416e-05, -0.015766536816954613, 0.03439485281705856, 0.014295527711510658, -0.023255305364727974, 0.008678949438035488, 0.016889851540327072, -0.0007902491488493979, -0.023348916321992874, -0.03722988814115524, 0.005085008684545755, 0.034180887043476105, -0.015940383076667786, -0.012891382910311222, -4.824134521186352e-05, 0.01996559649705887, -0.004526694305241108, 0.010718302801251411, 0.002726380480453372, -0.03129236027598381, -0.002370329573750496, 0.007555634249001741, -0.012463453225791454, -0.02013944275677204, 0.0230814591050148, 0.020888319239020348, 0.027106674388051033, -0.011567475274205208, 0.01894926279783249, 0.02440536767244339, -0.00032178309629671276, -0.015378724783658981, 0.008892914280295372, 0.028323598206043243, 0.017545118927955627, 0.028323598206043243, 0.01077848020941019, -0.005315689370036125, -0.0015713045140728354, -0.004894446115940809, -0.003854710841551423, -0.024579213932156563, -0.0039550065994262695, 0.0033833193592727184, 0.010952326469123363, 0.010156644508242607, -0.02651827037334442, -0.051913224160671234, -0.020981930196285248, -0.004416368436068296, 0.02662525326013565, -0.00916705746203661, 0.024124538525938988, -0.0032228457275778055, 0.009548181667923927, -0.010297059081494808, 0.008805991150438786, 0.015646180137991905, -0.01533860620111227, -0.006285218056291342, -0.0018805505242198706, 0.0031609965953975916, 0.011854990385472775, 0.01861494407057762, -0.011179664172232151, 0.003817935474216938, 0.0213563684374094, 0.012476826086640358, 0.003951663617044687, -0.007796344812959433, -0.012416648678481579, -0.009715341962873936, -0.008678949438035488, -0.022947732359170914, 0.011099427007138729, 0.017371272668242455, 0.0028099603950977325, 0.016756122931838036, 0.009374335408210754, -0.014108308590948582, -0.005616577807813883, 0.005419328808784485, 0.005566429812461138, -0.02187790721654892, -0.036400772631168365, 0.02178429812192917, -0.0033181270118802786, -0.012089014984667301, -0.0016849732492119074, 0.0063253361731767654, 0.014081562869250774, -0.009334216825664043, -0.020192934200167656, -0.00463033327832818, -0.0033181270118802786, -0.0052254232577979565, -0.02075459249317646, -0.04354184865951538, 0.004175657872110605, -0.01730440929532051, -0.014656593091785908, 0.022051753476262093, 0.0254350733011961, 0.00811060518026352, 0.021236013621091843, -0.03426112234592438, 0.020099325105547905, 0.008772559463977814, 0.027280520647764206, -0.017598610371351242, 0.04041261225938797, -0.0014024728443473577, 0.010872089304029942, -0.02976786158978939, -0.004463173449039459, -0.004957966972142458, -0.0032027866691350937, -0.005666725803166628, 0.01224948838353157, -0.03757758066058159, 0.016956714913249016, -0.01996559649705887, -0.016876477748155594, -0.005626607220619917, -0.01220936980098486, 0.014268781989812851, -0.016047364100813866, -0.015873517841100693, -0.008003623224794865, 0.010263627395033836, 0.0032378900796175003, 0.014522865414619446, 0.021744178608059883, 0.0007681004353798926, 0.0024539094883948565, -0.010831971652805805, -0.03950326144695282, -0.026103712618350983, 0.001053944113664329, 0.014308900572359562, -0.011895108968019485, -0.001321400166489184, -0.024793177843093872, 0.0027029779739677906, -0.006947171874344349, 0.016528785228729248, 0.041990604251623154, 0.01442925538867712, -0.020487135276198387, -0.08900938183069229, 0.012931501492857933, 0.0025558772031217813, 0.00023882991808932275, 0.014282154850661755, 0.002687933621928096, 0.025582173839211464, -0.008993210271000862, 0.0027547976933419704, 0.012035523541271687, -0.04292670264840126, 0.01854807883501053, 0.010096467100083828, -0.022145362570881844, -0.0238972008228302, -0.014803693629801273, 0.027708450332283974, 0.005964270792901516, 0.00825101975351572, 0.012777714058756828, -0.005546370521187782, -0.01691659726202488, -0.012229429557919502, 0.01803991198539734, -0.037203140556812286, 0.018160268664360046, -0.014282154850661755, 0.019082991406321526, -0.005145186558365822, -0.012443394400179386, -0.006589449010789394, -0.011099427007138729, -0.01158753503113985, 0.00035793145070783794, -0.011574162170290947, 0.00258429441601038, 0.005295630544424057, 0.010658124461770058, 0.012771028093993664, 0.052421391010284424, -0.022091872990131378, -0.01599387265741825, 0.004142226185649633, -0.0052354526706039906, -0.017665473744273186, -0.019377192482352257, 4.7379427996929735e-05, 0.032335441559553146, 0.004108794033527374, 0.028430581092834473, 0.0132190166041255, 0.026277560740709305, 0.0075890664011240005, 0.0021363054402172565, 0.010972385294735432, -0.0212627574801445, -0.015860145911574364, 0.01622121036052704, 0.0018822221318259835, -0.008538535796105862, 0.023268679156899452, 0.012884696945548058, 0.007602439261972904, -0.005991016048938036, -0.004797493573278189, -0.007595752831548452, -0.009594987146556377, -0.03308431804180145, 0.009561554528772831, -0.011119486764073372, -0.03289709612727165, 0.008899601176381111, 0.01097907219082117, 0.01599387265741825, 0.02075459249317646, -0.008752500638365746, -0.015753163024783134, 0.003968379460275173, -0.019497549161314964, 0.024151284247636795, -0.008772559463977814, 0.027280520647764206, -0.05111085623502731, 0.011132859624922276, 0.025649037212133408, -0.014375763945281506, -0.007288177963346243, -0.00037443850305862725, -0.006669686175882816, 0.004296013154089451, -0.01362020056694746, -0.021423231810331345, 0.01433564629405737, 0.02198489010334015, 0.006001045927405357, 0.027066554874181747, 0.008277765475213528, -0.0019273554207757115, 0.028189871460199356, 0.0027564691845327616, 0.02124938555061817, -0.017772456631064415, -0.006746579427272081, -0.010149958543479443, -0.012068955227732658, 0.0018320741364732385, -0.00962841883301735, -0.038433440029621124, -0.012195996940135956, 0.0016364968614652753, -0.024873415008187294, 0.0017401360673829913, -0.0014768590917810798, 0.011901795864105225, -0.01600724644958973, 0.02662525326013565, 0.0009511407115496695, -0.020112697035074234, -0.020701101049780846, -0.003550479421392083, 0.02694620005786419, 0.025448445230722427, 0.02044701762497425, -0.016876477748155594, 0.022105244919657707, -0.008331256918609142, 0.004252551589161158, -0.04782114550471306, 0.03436810523271561, -0.0022332582157105207, 0.0027163508348166943, 0.02175755240023136, -0.034180887043476105, -0.027494484558701515, -0.0005620756419375539, 0.005690128076821566, -0.003751071635633707, 0.0015378724783658981, -0.009748774580657482, 0.07237361371517181, 0.02734738402068615, -0.01802654005587101, 0.007141077425330877, 0.016475293785333633, 0.008892914280295372, 0.01124652847647667, 0.009742087684571743, -0.01882890798151493, -0.009374335408210754, 0.036908939480781555, -0.016247956082224846, 0.010383982211351395, -0.008077173493802547, -0.01884227991104126, 0.0076559302397072315, -0.034983254969120026, 0.0274409931153059, -0.006806757301092148, 9.293053881265223e-05, 0.03846018388867378, -0.0008926346781663597, 0.011888423003256321, 0.008531848900020123, -0.027173537760972977, -0.009902561083436012, 0.034876272082328796, -0.0013690408086404204, 0.019189974293112755, 0.007248059846460819, 0.004620303865522146, 0.00023423302627634257, -0.01933707483112812, -0.01731778122484684, -0.0022048410028219223, 0.007181195542216301, -0.017959676682949066, 0.023950692266225815, 0.038032256066799164, 0.0019373849499970675, 0.004967996850609779, 0.01619446650147438, -0.024151284247636795, -0.03319130092859268, -0.0007258924888446927, -0.01251025777310133, -0.010236881673336029, 0.0016799585428088903, 0.003135922597721219], "432a84d5-ac00-45d3-8385-11447b8d7c56": [-0.007986225187778473, -0.0014034864725545049, 0.008599513210356236, -0.005175882950425148, 0.0035718982107937336, 0.00403017969802022, -0.018776053562760353, -0.016942929476499557, -0.001478462596423924, -0.010500033386051655, 0.015123282559216022, 0.013552995398640633, -0.031324874609708786, -0.01346538309007883, -0.009017358534038067, -0.008363633416593075, -0.004997287876904011, -0.004565964452922344, 0.01738773100078106, -0.015028930269181728, 0.0004717601404991001, 0.015069367364048958, -0.009165626019239426, -0.03172923997044563, -0.008134492672979832, 0.005489266477525234, 0.003652771469205618, -0.02672858163714409, 0.004565964452922344, -0.008235584013164043, 0.02819777838885784, -0.002085853833705187, -0.02722730115056038, -0.016848577186465263, -0.010965053923428059, 0.0069079166278243065, 0.0027143056504428387, -0.00539491418749094, 0.00925997830927372, -0.01068199798464775, 0.016498126089572906, -0.0022526546381413937, 0.013748439028859138, 0.013734959997236729, -0.011153757572174072, 0.016295943409204483, -0.010324807837605476, 0.023439740762114525, 0.0007198554230853915, 0.02722730115056038, -0.013910185545682907, 0.0062575615011155605, -0.02959957905113697, -0.016794661059975624, 0.00011299076868453994, 0.020743967965245247, -0.020043067634105682, 0.019800446927547455, -0.0015357477823272347, -0.022509697824716568, -0.00020871174638159573, 0.02857518568634987, -0.011126800440251827, -0.0006499338778667152, -0.009266717359423637, 0.015365902334451675, -0.004663686268031597, 0.018398646265268326, -0.018277335911989212, -0.006982050370424986, 0.02720034308731556, 0.021202249452471733, 0.0011389638530090451, 0.006914656143635511, 0.01736077293753624, -0.004875977989286184, -0.024100204929709435, -0.018479518592357635, 0.01105266623198986, 0.016942929476499557, -0.0046468377113342285, 0.011638997122645378, 0.02353409305214882, -0.006240712944418192, 0.020191334187984467, -0.00019712834910023957, -0.01989479921758175, 0.03226839378476143, -0.0032012294977903366, -0.02397889457643032, 0.019692616537213326, 0.016080282628536224, 0.012083799578249454, -0.0023571159690618515, 0.010493293404579163, 0.025650274008512497, -0.008700605481863022, 0.018371688202023506, 0.013701262883841991, -0.03730949014425278, -0.009650864638388157, 0.02701163850724697, -0.008444506675004959, -5.9654492361005396e-05, -0.03102833963930607, -0.03237622603774071, 0.022887106984853745, 0.0092330202460289, 0.023763231933116913, -0.009044315665960312, -0.00898366142064333, 0.027389045804739, -0.029195213690400124, -0.03930436074733734, -0.010257413610816002, -0.018735617399215698, 0.026661187410354614, -0.026162469759583473, -0.003514613024890423, 0.00843102764338255, 0.01851995661854744, 0.022509697824716568, 0.01661943644285202, -0.004245841410011053, -0.010944835841655731, 0.023884542286396027, 0.0012922858586534858, -0.009003879502415657, 0.0050849006511271, -0.012535341084003448, 0.030354395508766174, 0.030246565118432045, -0.011382898315787315, 0.013155369088053703, -0.014328029938042164, -0.007864915765821934, -0.013768657110631466, 0.006338434759527445, -0.023210600018501282, 0.005239907186478376, 0.016336379572749138, 0.01830429397523403, -0.026324216276407242, -0.01475935336202383, 0.01198944728821516, 0.0121107567101717, -0.020703531801700592, -0.016471168026328087, 0.013269939459860325, 0.008660168386995792, 0.025528963655233383, -0.007885133847594261, 0.00192410743329674, -0.013647347688674927, -0.011254848912358284, 0.007298803422600031, -0.002101017627865076, 0.011807482689619064, -0.018102111294865608, -0.02664770931005478, 0.000689106818754226, 0.016794661059975624, -0.004090834408998489, -0.01582418382167816, 0.026795975863933563, 0.023116247728466988, 0.006362022832036018, 0.0037167961709201336, -0.0003953097329940647, 0.007231409195810556, -0.0022593941539525986, 0.02825169451534748, -0.03730949014425278, 0.029976988211274147, -0.006415938027203083, 0.0092330202460289, -0.010196758434176445, 0.0008019922534003854, -0.01967913843691349, -0.005438720807433128, -0.007959268055856228, -0.024814583361148834, -0.02714642696082592, 0.01711815409362316, -0.02028568647801876, -0.026836413890123367, 0.006961831822991371, 0.00435367226600647, 0.007076402194797993, 0.008181668817996979, 0.011524426750838757, 0.031513579189777374, -0.006698993965983391, 0.002112811431288719, -0.5943638682365417, -0.014489776454865932, 0.014813268557190895, 0.0285482294857502, 0.013330593705177307, 0.024288907647132874, 0.007689690683037043, 0.047607339918613434, -0.006658557802438736, 0.020353080704808235, -0.03083963505923748, 0.007689690683037043, -0.01582418382167816, -0.008612992241978645, 0.001537432661280036, -0.022253600880503654, -0.004053767770528793, -0.0052803438156843185, -0.008532118983566761, -0.0022644486743956804, -0.01346538309007883, 0.005785801447927952, -0.017185548320412636, -0.0033831943292170763, 0.02519199252128601, -0.012083799578249454, 0.0009022412705235183, -0.01733381673693657, -0.016740746796131134, 0.0213639959692955, -0.019557828083634377, 0.0034270004834979773, 0.03415543586015701, -0.009051055647432804, 0.041245315223932266, -7.127737717382843e-06, -0.04046354070305824, 0.0019460106268525124, 0.005566769745200872, 0.04359063878655434, -0.004377260338515043, -0.016417253762483597, 0.012521862052381039, -0.013108192943036556, -0.010506772436201572, -0.02081136219203472, 0.012333158403635025, -0.02954566478729248, -0.015096324495971203, 0.011895094998180866, 0.019005194306373596, 0.02184923365712166, 0.019503911957144737, 0.007379676681011915, -0.0005711667472496629, -0.017819054424762726, 0.031513579189777374, -0.014597606845200062, 0.03191794455051422, -0.00526349525898695, -0.006153100170195103, 0.013384509831666946, -0.0168620552867651, -0.03191794455051422, 0.0004940844955854118, 0.005630794446915388, -0.030516142025589943, -0.026054639369249344, 0.00680008577182889, -0.013168848119676113, 0.015662437304854393, -0.0028120274655520916, 0.010082188062369823, -0.010371983982622623, 0.023466696962714195, 0.03348149359226227, 0.016686830669641495, -0.023412782698869705, -0.01262295339256525, 0.011227891780436039, -0.012818397022783756, -0.0040942043997347355, -0.026175949722528458, -4.530687510850839e-05, 0.008451245725154877, 0.007682951167225838, -0.003632553154602647, 0.0011448607547208667, 0.006891068071126938, -0.013371030800044537, 0.005681340117007494, 0.04186534509062767, 0.009030837565660477, -0.04477677866816521, -0.013674304820597172, 0.027658624574542046, 0.0031877506989985704, -0.02455848641693592, -0.002978828502818942, 0.003568528685718775, -0.017926886677742004, -0.0030192648991942406, 0.014139325357973576, -0.015163719654083252, 0.03234926611185074, -0.0317561961710453, -0.050222236663103104, -0.008094056509435177, 0.007824478670954704, -0.010284371674060822, -0.0025946807581931353, 0.010938095860183239, -0.007588598877191544, -0.0037471235264092684, 0.0054252417758107185, -0.04286278039216995, -0.0013478861656039953, 0.02540765330195427, 0.017630351707339287, -0.001382425776682794, 0.02675553970038891, 0.004090834408998489, 0.02405976690351963, 0.012535341084003448, 0.018829969689249992, 0.01722598448395729, 0.004859129432588816, -0.010297849774360657, -0.010311328805983067, -0.01540633849799633, -0.026027681306004524, -0.000994066009297967, 0.024423697963356972, -0.0165924783796072, 0.004421066492795944, 0.008788217790424824, -0.007548162247985601, -0.01543329656124115, 0.02593332901597023, 0.003186065936461091, -0.01198944728821516, 0.01039220206439495, 0.0028524640947580338, -0.01683509722352028, -0.007453810423612595, -0.028898678719997406, -0.012521862052381039, -0.00843102764338255, -0.02284667082130909, -0.004444654565304518, 0.025394175201654434, 0.013377769850194454, -0.009738477878272533, 0.014328029938042164, 0.012825137004256248, 0.010351765900850296, -0.008727562613785267, -0.01620159111917019, -0.005782431457191706, -0.018641265109181404, 0.005883523263037205, 0.01909954659640789, -0.030381353572010994, 0.003009155858308077, -0.012710566632449627, -0.017482083290815353, 0.0002767378755379468, 0.008188408799469471, -0.016659872606396675, -0.04235058277845383, -0.0030260044150054455, 0.005115227773785591, -0.008505161851644516, -0.00907801277935505, 0.00474792905151844, 0.009361069649457932, -0.01262295339256525, 0.011099842377007008, 0.0046906438656151295, -0.0036763595417141914, 0.014691959135234356, 0.005014136433601379, 0.005654382519423962, -0.00039720520726405084, 0.013795615173876286, 0.0009586840169504285, 0.026634231209754944, -0.009347590617835522, -0.026890328153967857, 0.012973404489457607, -0.0066652968525886536, 0.03585377335548401, 0.004980439320206642, -0.004650207236409187, 0.023817148059606552, -0.009462160989642143, 0.04671773314476013, 0.0074066342785954475, 0.006604642141610384, -0.0014296018052846193, 0.028709974139928818, 0.009462160989642143, -0.011692912317812443, -0.009684561751782894, 0.015258071012794971, -0.024342823773622513, 0.009900223463773727, -0.0031237262301146984, 0.01134246215224266, 0.001118745538406074, 0.012602735310792923, -0.03954698145389557, -0.014179762452840805, -0.014597606845200062, 0.020487869158387184, -0.004458133596926928, -0.009118449874222279, 0.0014675110578536987, -0.02295450121164322, 0.013910185545682907, 0.00830971822142601, -0.00025715140509419143, 0.009933920577168465, -0.0308665931224823, 0.004623249638825655, 0.01080330740660429, -0.0026890328153967857, -0.002592995995655656, 0.019086068496108055, -0.017953842878341675, -0.018317772075533867, 0.0013074495363980532, 0.010675258003175259, 0.00033128514769487083, 0.026903808116912842, -0.007999704219400883, 0.01068199798464775, -0.027901243418455124, 0.009859787300229073, 0.014018015936017036, 0.029383918270468712, -0.010257413610816002, -0.0019982412923127413, -0.007029226049780846, 0.01899171620607376, 0.016134196892380714, 0.04466894641518593, 0.03695903718471527, -0.004919784609228373, -0.0021144964266568422, 0.0064934417605400085, -0.008498421870172024, -0.02587941475212574, 0.038819119334220886, -0.006698993965983391, -0.023102767765522003, 0.0030125256162136793, 0.013155369088053703, 0.0271194688975811, 0.034101519733667374, 0.018317772075533867, 0.035368531942367554, 0.00992044247686863, 0.02959957905113697, -0.006011572200804949, -0.05817476660013199, 0.003834736067801714, -0.024315865710377693, -0.01736077293753624, -0.02835952490568161, 0.017064237967133522, 0.0025508746039122343, 0.01951739192008972, -0.020757446065545082, 0.01904563046991825, -0.00018059568537864834, 0.018762575462460518, 0.010338286869227886, 0.02827865071594715, -0.01722598448395729, -0.03232230991125107, -0.022334473207592964, 0.023520613089203835, 0.02358800731599331, 0.009199323132634163, 0.01118745468556881, -0.0016562150558456779, 0.0013866379158571362, -0.0019527500262483954, 0.0005838031647726893, 0.023264514282345772, 0.0011852973839268088, 0.021876191720366478, -0.022118812426924706, -0.010520251467823982, -0.02458544261753559, 0.028952594846487045, -0.020622657611966133, -0.021781839430332184, -0.00047639349941164255, -0.0025997355114668608, -0.018856927752494812, -0.00870734453201294, -0.024100204929709435, 0.04205404967069626, -0.00869386550039053, -0.0033966731280088425, 0.008916267193853855, 0.010318068787455559, -0.02144486829638481, -0.005492636002600193, -0.013263199478387833, -0.022388389334082603, -0.04208100587129593, -0.00474792905151844, 0.012312940321862698, -0.013883227482438087, 0.0004633358621504158, 0.011457032524049282, 0.007238148711621761, -0.006173318717628717, -0.0077301268465816975, -0.021930107846856117, 0.025030246004462242, -0.009280196391046047, 0.048523902893066406, -0.00045364792458713055, 0.01488066278398037, -0.014422382228076458, -0.0005682182381860912, -0.029950030148029327, -0.006025051232427359, 0.01554112695157528, -0.0009443627204746008, -0.030597016215324402, 0.012602735310792923, -0.0005374695756472647, -0.026499440893530846, 0.012784699909389019, 0.0011709760874509811, -0.004977069795131683, -0.00263848714530468, 0.0028962704818695784, -0.028925636783242226, 0.021148333325982094, -0.020770926028490067, 0.041245315223932266, -0.005041094031184912, 0.01741468906402588, -0.0016292573418468237, 0.014422382228076458, 0.02469327487051487, 0.019355645403265953, -0.021903149783611298, 0.015999408438801765, 0.0006044426700100303, 0.0055229635909199715, 0.013566474430263042, -0.002475055865943432, 0.023089289665222168, 0.017482083290815353, 0.051030971109867096, 0.005627424456179142, 0.014988494105637074, 0.0028945854865014553, 0.02819777838885784, -0.00021018600091338158, -0.018870405852794647, 0.030408311635255814, -0.017684265971183777, -0.00659453310072422, 0.018695181235671043, -0.010014793835580349, -0.021229207515716553, 0.02962653711438179, 0.009293675422668457, -0.021310079842805862, -0.007116838824003935, -0.010580906644463539, 0.027456440031528473, -0.003386563854292035, -0.009091491810977459, 0.01332385465502739, -0.02073048986494541, -0.016268985345959663, -0.008646689355373383, -0.005128706805408001, -0.015810703858733177, -0.008788217790424824, -0.03555723652243614, -0.03226839378476143, -0.006405828986316919, -0.025946808978915215, -0.01423367764800787, 0.006072226911783218, -0.024760669097304344, -0.02962653711438179, 0.0009569991962052882, 0.014179762452840805, 0.006405828986316919, 0.01335081271827221, -0.0033377031795680523, 0.0004035234160255641, 0.03916957229375839, -0.006732691545039415, 0.005475787445902824, -0.0008626471390016377, -0.03946610540151596, 0.018182983621954918, 0.0003677202039398253, 0.015770267695188522, -0.01015632227063179, -0.01870865933597088, -0.00449857022613287, -0.006129512097686529, 0.005303931888192892, 0.04181142896413803, -0.007312282454222441, -0.02593332901597023, 0.004444654565304518, -0.010190019384026527, 0.01489414181560278, -0.00898366142064333, -0.013896706514060497, 6.611091976083117e-06, -0.030408311635255814, 0.01135594118386507, -0.012724045664072037, -0.024922415614128113, -0.01870865933597088, -0.003464067354798317, 0.029842199757695198, -0.013222763314843178, 0.014570649713277817, 0.02643204666674137, -0.008639950305223465, -0.004249210935086012, -0.019611744210124016, -0.0038583241403102875, 0.02466631680727005, 0.010560687631368637, -0.007790782023221254, -0.013492340222001076, 0.014031494967639446, 0.02849431335926056, -0.018789533525705338, 0.029383918270468712, 0.04356367886066437, 0.0011330668348819017, 0.02822473645210266, -0.013606910593807697, -0.0020302534103393555, -0.031190086156129837, 0.02184923365712166, 0.004070616327226162, 0.04081399366259575, -0.0035382010973989964, -0.01056742761284113, -0.007858176715672016, -0.037606023252010345, 0.019611744210124016, 0.011389638297259808, -0.018169505521655083, -0.038846079260110855, -0.02348017692565918, -0.0017573065124452114, 0.006961831822991371, -0.009549773298203945, -0.0010614603525027633, -0.03248405456542969, -0.009017358534038067, -0.005836347118020058, 0.00706292362883687, 0.014031494967639446, 0.006557465996593237, 0.0002278769970871508, -0.03172923997044563, 0.00014879398804623634, -0.02482806332409382, -0.011382898315787315, -0.0008163135498762131, -0.017872970551252365, 0.01780557632446289, 0.005873413756489754, 0.03852258622646332, 0.0020925933495163918, -0.006510290317237377, -0.01488066278398037, 0.008747780695557594, 0.002185260411351919, -0.01912650465965271, 0.005509484559297562, -0.007959268055856228, 0.007345979567617178, 0.028736932203173637, -0.007366197649389505, 0.005485896486788988, -0.012643172405660152, -0.008761259727180004, 0.030165692791342735, 0.007480768021196127, -0.009583470411598682, 0.019503911957144737, -0.06852652877569199, 0.0001110953016905114, -0.010351765900850296, -0.003534831339493394, 0.0024026071187108755, -0.028036031872034073, -0.026175949722528458, 0.015500690788030624, -0.012083799578249454, 0.04528897628188133, 0.00961716752499342, 0.010971792973577976, -0.02943783439695835, 0.011382898315787315, -0.0021549330558627844, -0.006244082469493151, -0.007474028505384922, 0.001180242863483727, -0.00540839321911335, 0.01598593033850193, 0.015136761590838432, 0.027631666511297226, 0.0007653466309420764, 0.0010446117958053946, 0.01478631142526865, -0.009576731361448765, 0.03677033260464668, 0.013276678510010242, -0.019005194306373596, -0.008842132985591888, -0.020245250314474106, -0.037444278597831726, -0.033912815153598785, -0.002149878302589059, -0.004141380079090595, -0.0033360181841999292, 0.003713426413014531, 0.004943372681736946, 0.0032922120299190283, 0.0052904533222317696, -0.0029198583215475082, -0.006105924490839243, -0.002191999927163124, 0.03717470169067383, 0.010473075322806835, 0.004053767770528793, 0.04092182219028473, 0.015702873468399048, -0.022604050114750862, -0.07348675280809402, -0.005169143434613943, -0.013620389625430107, 0.04084094986319542, 0.06281149387359619, -0.012245546095073223, -0.029087383300065994, -0.008511900901794434, 0.004724340979009867, 0.003138889791443944, -0.027847327291965485, -0.002112811431288719, 0.019059110432863235, 0.0029400766361504793, -0.01475935336202383, -0.0021785208955407143, -0.025758104398846626, 0.011537905782461166, -0.0019190529128536582, -0.012710566632449627, -0.011160497553646564, 0.005300562363117933, 0.0016857001464813948, -0.005458938889205456, -0.020191334187984467, 0.028790848329663277, -5.3257299441611394e-05, 0.018870405852794647, -0.005913850385695696, -0.01068199798464775, -0.010607863776385784, 0.006011572200804949, -0.029114341363310814, 0.03687816485762596, 0.01424715667963028, -0.018061675131320953, 0.02408672496676445, 0.021943585947155952, 0.005074791144579649, -0.02516503445804119, 0.00665518781170249, 0.039897430688142776, -0.009030837565660477, -0.022914065048098564, -0.005738625302910805, 0.0009932236280292273, 0.031190086156129837, 0.0066686668433249, 0.0010589330922812223, 0.0010538784554228187, 0.00584982568398118, -0.014381945133209229, -0.013242981396615505, 0.005340998992323875, 0.006901177112013102, -0.03935827687382698, -0.017131632193922997, -0.0026435416657477617, -0.02295450121164322, -0.012238806113600731, 0.014354987069964409, -0.029869157820940018, -0.023358866572380066, 0.0014253895496949553, -0.02234795317053795, -0.004232362378388643, 0.0010639876127243042, 0.02482806332409382, -0.0002641014289110899, 0.05272930487990379, -0.021727925166487694, 0.013418206945061684, 0.025030246004462242, 0.021903149783611298, -0.0024464132729917765, -0.0019207377918064594, 0.008026662282645702, -0.00269745709374547, 0.03469458967447281, -0.009199323132634163, -0.027847327291965485, -0.03431718051433563, -0.00946890003979206, 0.02298145927488804, -5.55476508452557e-05, 0.03240318223834038, 0.038953911513090134, -0.004694013390690088, 0.0012838615803048015, -0.003127095755189657, -0.021094419062137604, -0.0022695031948387623, -0.01409888919442892, 0.023116247728466988, -0.0021734663750976324, 0.008727562613785267, -0.005364587064832449, -0.02036656066775322, -0.010270892642438412, -0.009104970842599869, -0.0026688145007938147, -0.03617726266384125, 0.009334111586213112, -0.01176704652607441, -0.01860082894563675, -0.01645768992602825, -0.020110461860895157, -0.012838616035878658, -0.0372016578912735, -0.006473223213106394, 0.00256603816524148, 0.017522519454360008, 0.010601124726235867, 0.0071774935349822044, 0.020406996831297874, 0.0028979552444070578, -0.006129512097686529, -0.031244000419974327, -0.01725294254720211, -0.028844764456152916, -0.030165692791342735, -0.019962193444371223, -0.022590572014451027, 0.03129791468381882, 0.004579443018883467, -0.010075449012219906, 0.0019156831549480557, -0.013101452961564064, -0.00038814908475615084, 0.012211848981678486, -0.0018954649567604065, 0.013579952530562878, -0.00256603816524148, -0.00527697429060936, 0.02036656066775322, 0.020433954894542694, -0.002429564716294408, 0.007069662678986788, 0.003288842272013426, -0.013472122140228748, 0.01769774593412876, -0.022482741624116898, -0.005735255777835846, -0.012879052199423313, -0.023156683892011642, -0.009475640021264553, 0.004144750069826841, 0.01262295339256525, -0.0003944672935176641, 0.013067755848169327, -0.01084374450147152, -0.02427542954683304, -0.017657307907938957, -0.014031494967639446, -0.00038246269105002284, 0.013236242346465588, 0.0020824840757995844, -0.029033467173576355, -0.0056510125286877155, 0.0065237688831985, 0.0027850698679685593, -0.029114341363310814, -0.027375567704439163, 0.004859129432588816, 0.004404217936098576, 0.006705733481794596, -0.027928201481699944, -0.008633211255073547, -0.007251627277582884, -0.014799789525568485, 0.019584786146879196, -0.01965218037366867, 0.012535341084003448, 0.013007101602852345, -0.022010980173945427, 0.00018375478975940496, -0.020326122641563416, 0.007534683682024479, -0.03189098462462425, -0.009987836703658104, 0.006506920326501131, -0.004515418782830238, -0.01664639450609684, 0.03224143758416176, 0.026229863986372948, -0.027321651577949524, -0.00010535625915508717, 0.004124531522393227, 0.031459663063287735, -0.031594451516866684, -0.0008887624135240912, 0.005752104334533215, -0.03992438688874245, -0.01678118295967579, 0.0049703302793204784, -0.01412584725767374, 0.00598124461248517, -0.015123282559216022, 0.010580906644463539, -0.05763561278581619, 0.01838516630232334, -0.007426852826029062, -0.005364587064832449, -0.010810047388076782, 0.004923154134303331, 0.0025643534027040005, 0.0011263273190706968, -0.0013125041732564569, 0.2314050942659378, -0.022091854363679886, 0.007258366793394089, 0.009313893504440784, 0.0054319812916219234, -0.004913045093417168, 0.025515485554933548, -0.009873266331851482, 0.005728516262024641, 0.00047765715862624347, -0.016336379572749138, 0.0023638552520424128, 0.009401505813002586, -0.007703169248998165, -0.010850483551621437, -0.01490762084722519, -0.02015089802443981, -0.026175949722528458, -0.022887106984853745, 0.005553290713578463, 0.015810703858733177, -0.004633358679711819, 0.02081136219203472, -0.015595043078064919, 0.024571964517235756, 0.02411368303000927, -0.026742061600089073, 0.021377474069595337, 0.04709514230489731, 0.042458415031433105, -0.028009073808789253, 0.003090029116719961, 0.014435860328376293, 0.0021835756488144398, 0.0033124301116913557, -0.003777450881898403, 0.033966731280088425, 0.027416003867983818, 0.015123282559216022, -0.004299756605178118, -0.021431390196084976, -0.015918536111712456, -0.004235732369124889, -0.020487869158387184, -0.020959628745913506, 0.003186065936461091, 4.499096394283697e-05, -0.02954566478729248, -0.010028272867202759, 0.01904563046991825, 0.004619879648089409, -0.015608521178364754, 0.020070025697350502, 0.009543034248054028, -0.014058452099561691, 0.00263848714530468, -0.0010909453267231584, 0.009158886037766933, 0.02202446013689041, 0.03544940426945686, 0.01473239529877901, 0.0372016578912735, -0.023156683892011642, 0.0242215134203434, -0.024625880643725395, -0.009684561751782894, -0.002724414924159646, 0.016471168026328087, -0.012198369950056076, 0.0025323410518467426, -0.004474982153624296, -0.00520284054800868, -0.015150240622460842, -0.003027689177542925, -0.010823525488376617, -0.05227102339267731, 0.0435367226600647, 0.010661779902875423, 0.02089223451912403, 0.04572029784321785, 0.0033831943292170763, 0.01149072963744402, 0.0082962391898036, -0.006695624440908432, -0.0029198583215475082, -0.02508416213095188, 0.01531198713928461, -0.01711815409362316, -0.016376817598938942, -0.00513207633048296, 0.013910185545682907, -0.018115589395165443, 0.009098231792449951, -0.01121441274881363, 0.010473075322806835, 0.012056841515004635, -0.0016907546669244766, 0.012077059596776962, -0.010068709962069988, -0.0013470436679199338, -0.037821684032678604, 0.027955159544944763, 0.030165692791342735, -0.002058896003291011, -0.0220783744007349, -0.008350154384970665, -0.018722139298915863, 0.010250674560666084, 0.0031119321938604116, -0.0051084887236356735, -0.004087464883923531, -0.033939775079488754, 0.010688737034797668, 0.010318068787455559, -0.009805872105062008, 0.047526463866233826, 0.0035449406132102013, -0.021822277456521988, 0.020514827221632004, -0.004535636864602566, 0.03097442351281643, -0.03687816485762596, -0.01775166019797325, 0.008228844963014126, -0.01807515323162079, -0.008094056509435177, -0.004784995689988136, -0.01346538309007883, 0.026917286217212677, -0.047445591539144516, 0.035233743488788605, 0.012070320546627045, 0.01989479921758175, 0.00395604595541954, 0.007521204650402069, 0.009650864638388157, 0.0030007315799593925, -0.0017707854276522994, -0.012312940321862698, -0.012157932855188847, -0.006658557802438736, 0.000564006099011749, 0.02337234653532505, -0.00898366142064333, -0.016080282628536224, -0.00738641619682312, 0.029195213690400124, -0.0026031050365418196, 0.009421723894774914, -0.012872313149273396, -0.05326846241950989, 0.0010479814372956753, -0.0029855677857995033, 0.008714083582162857, 0.01928825117647648, -0.0015517539577558637, -0.03089355118572712, -0.035206787288188934, -0.012724045664072037, 0.022253600880503654, -0.04000525921583176, -0.02577158249914646, 0.006038529798388481, -0.0284134391695261, -0.015001973137259483, -0.02601420320570469, -0.17069630324840546, -0.01672726683318615, 0.04515418782830238, -0.03067788854241371, 0.03170228376984596, -0.0008297924068756402, 0.012811657972633839, 0.005512854550033808, -0.013519298285245895, -0.014826747588813305, 0.024127162992954254, 0.01675422489643097, -0.008410809561610222, -0.013451904058456421, 0.007170754484832287, 0.022334473207592964, -0.043671511113643646, -0.0022897215094417334, 0.023736275732517242, 0.01709119603037834, 0.04938654974102974, -0.021754883229732513, -0.0040402887389063835, -0.011942271143198013, -0.005752104334533215, 0.015015452168881893, -0.01954434998333454, -0.0042289928533136845, -0.005041094031184912, -0.010095667093992233, 0.012164672836661339, -0.01612071879208088, 0.023183641955256462, 0.004542376380413771, 0.05024919658899307, -0.012643172405660152, 0.002235806081444025, 0.024369781836867332, 0.01277122087776661, 0.010082188062369823, -0.0015770267928019166, 0.0363120511174202, 0.004299756605178118, -0.009886745363473892, 0.021781839430332184, 0.01411236822605133, 0.0076492540538311005, -0.01354625541716814, 0.012151193805038929, 0.00961716752499342, 0.02268492430448532, -0.043860215693712234, -0.047903873026371, -0.017643829807639122, 0.023722795769572258, 0.005364587064832449, 0.007164014969021082, 0.029168255627155304, -0.0014152805088087916, -0.012508383020758629, -0.00011730822006938979, -0.005307301878929138, 0.000525254406966269, 0.0066652968525886536, -0.0017404579557478428, -0.016268985345959663, -0.03089355118572712, -0.01544677559286356, -0.018614307045936584, -0.0035651589278131723, -0.007487507537007332, -0.06178710237145424, 0.00770990876480937, 0.008505161851644516, 0.025367217138409615, -0.0032989513128995895, 0.005694819148629904, 0.0003533989074639976, 0.018425604328513145, -0.0034775463864207268, -0.008673647418618202, 0.029896114021539688, 0.018061675131320953, -0.009239759296178818, 0.01225228514522314, 0.007864915765821934, -0.010446117259562016, -0.029896114021539688, -0.013552995398640633, 0.00600820267572999, 0.03369715437293053, -0.01409888919442892, -0.005728516262024641, 0.0009974357672035694, 0.0011457032524049282, -0.007703169248998165, 0.005758843384683132, -0.0025576138868927956, -0.00263848714530468, -0.0018701920052990317, -0.012980143539607525, -0.006092445459216833, -0.028844764456152916, 0.024518048390746117, 0.027793413028120995, 0.0072785853408277035, -0.012083799578249454, 0.03245709836483002, 0.04278190806508064, -0.02424847148358822, -0.03340061753988266, 0.015338944271206856, 0.0016477907774969935, 0.01544677559286356, 0.01118745468556881, 0.03199881687760353, -0.00935432966798544, -0.018614307045936584, -0.006260931026190519, -0.016929449513554573, -0.030543100088834763, 0.01973305270075798, -0.001812906819395721, 0.011625518091022968, 0.002510437974706292, -0.03199881687760353, -0.03677033260464668, -0.006362022832036018, 0.023048853501677513, 0.0308665931224823, -0.015069367364048958, 0.020676573738455772, 0.00806035939604044, 0.035314615815877914, -0.012023144401609898, 0.015500690788030624, -0.00828276015818119, -0.026472484692931175, -0.0008512743515893817, 0.013000361621379852, 0.016376817598938942, 0.009556512348353863, 0.0036696200259029865, -0.02284667082130909, -0.004660316277295351, 0.0210539810359478, 0.0032214478123933077, -0.01622854918241501, 0.0026452266611158848, -0.02825169451534748, -0.01923433504998684, -0.004956851247698069, -0.022388389334082603, 0.03164836764335632, 0.015500690788030624, 0.006806825287640095, 0.015325465239584446, 0.004579443018883467, -0.01670030876994133, -0.01909954659640789, -0.019975673407316208, 0.008242323994636536, -0.017711224034428596, -0.017899928614497185, 0.02698468044400215, -0.020043067634105682, -0.005954287014901638, 0.0072246696799993515, 0.008350154384970665, 0.007500986568629742, -0.014853705652058125, 0.01288579124957323, -0.009064534679055214, 0.0036561412271112204, -0.019692616537213326, -0.013242981396615505, -0.02962653711438179, -0.005125337280333042, 0.002633432624861598, -0.0007809315575286746, 0.031621407717466354, -0.0038279967848211527, 0.016929449513554573, 0.027982115745544434, -0.031163128092885017, 0.008141232654452324, -0.023776711896061897, 0.020703531801700592, -0.0266746673732996, 0.030030904337763786, -0.015945492312312126, -0.006116033531725407, -0.030354395508766174, -0.009037576615810394, 0.0037033171392977238, -0.0041750771924853325, -0.008794956840574741, 0.017077717930078506, -0.018803011626005173, 0.02463935874402523, -0.03075876273214817, -0.019328687340021133, -0.008801696822047234, -0.00806035939604044, 0.017684265971183777, -0.018762575462460518, -0.02643204666674137, -0.011221151798963547, 0.0028777369298040867, -0.010978532955050468, 0.01923433504998684, 0.03801038861274719, 0.011436814442276955, 0.006001463159918785, -0.010230455547571182, -0.03803734853863716, -0.015285029076039791, -0.0031489990651607513, -0.0018583980854600668, -0.01802123710513115, -0.02081136219203472, -0.023574529215693474, 0.0005475787329487503, 0.007184233050793409, 0.0007000583573244512, 0.02025872841477394, -0.011133539490401745, 0.002490219660103321, -0.09596949070692062, 0.0242215134203434, -0.006675406359136105, -0.02152574248611927, 0.011652476154267788, 0.006335064768791199, 0.016322901472449303, -0.0014481352409347892, 0.005752104334533215, 0.007319021970033646, -0.0467446930706501, 0.002572777681052685, 0.0034573280718177557, -0.019490433856844902, -0.015055888332426548, -0.01150420866906643, 0.03307712450623512, -0.0033663457725197077, 0.01585114188492298, 0.01420671958476305, -0.007757084909826517, 0.0005345211247913539, -0.003009155858308077, 0.025596357882022858, -0.033993687480688095, 0.03553028032183647, 0.014489776454865932, 0.028817806392908096, 0.005819498561322689, -0.006729321554303169, -0.002222327282652259, -0.014543691650032997, -0.00303442869335413, 0.003925718367099762, -0.010877441614866257, -0.0165924783796072, -0.00023187854094430804, -0.0031473140697926283, 0.00434019323438406, 0.0539693608880043, -0.02157965674996376, -0.03833388164639473, -0.010668518953025341, 0.0034775463864207268, -0.006638339255005121, -0.014341508969664574, -0.02118876948952675, -0.004798474721610546, 0.01714511215686798, 0.02416759915649891, 0.05108488351106644, 0.002956925192847848, -0.007534683682024479, -0.01598593033850193, -9.156148735200986e-05, -0.0481734499335289, 0.009873266331851482, 0.03447892889380455, 0.0005269392277114093, -0.004400848411023617, 0.027456440031528473, -0.020663093775510788, 0.006570945028215647, 0.01489414181560278, 0.030165692791342735, -0.012872313149273396, -0.040220923721790314, -0.00012994464486837387, 0.023224078118801117, -0.031594451516866684, -0.028009073808789253, -0.0317561961710453, -0.01135594118386507, 0.006311476696282625, -0.0023705947678536177, 0.02339930273592472, -0.01039220206439495, 0.002249285113066435, -0.027496878057718277, 0.010911138728260994, 0.013923663645982742, 0.02714642696082592, -0.03453284502029419, -0.002094278112053871, 0.029249129816889763, 0.01585114188492298, -0.009994575753808022, 0.012582517229020596, -0.003555049654096365, 0.00526349525898695, -0.009064534679055214, 0.016242027282714844, 0.028817806392908096, 0.01957130618393421, 0.00627104053273797, 0.022118812426924706, 0.0076425145380198956, -0.0017109729815274477, 0.017980800941586494, 0.009475640021264553, 0.015271550044417381, -0.0016267300816252828, -0.007689690683037043, -0.043860215693712234, -0.01849299855530262, 0.010850483551621437, -0.02215924859046936, -0.04957525432109833, 0.009408245794475079, -0.00869386550039053, -0.02147182635962963, 0.020676573738455772, 0.011194194667041302, 0.029356960207223892, -0.01564895734190941, 0.005913850385695696, -0.00031738507095724344, -0.031567495316267014, -0.03431718051433563, 0.02720034308731556, 0.019005194306373596, 0.027901243418455124, 0.00884887296706438, -0.012501643970608711, 0.0635123923420906, -0.012548820115625858, 0.021067460998892784, -0.019355645403265953, 0.036446843296289444, 0.006395719945430756, -0.00920606218278408, 0.023857584223151207, -0.001098527223803103, -0.022590572014451027, -0.006190167274326086, -0.017765140160918236, -0.011955750174820423, -0.0021818906534463167, 0.0012813343200832605, 0.08777434378862381, -0.0028238215018063784, -0.011652476154267788, -0.007763824425637722, -0.0016857001464813948, 0.009138667955994606, -0.006183427758514881, 0.01103918720036745, -0.02637813240289688, 0.013087974861264229, 0.010668518953025341, 0.008781478740274906, 0.005458938889205456, -0.0062036458402872086, -0.009024097584187984, -0.018182983621954918, -0.0038987607695162296, 0.025043724104762077, -0.02044743299484253, 0.034128475934267044, 0.03992438688874245, 0.006857370957732201, -0.0015584933571517467, 0.024679794907569885, -0.018910842016339302, 0.009536294266581535, 0.04200013354420662, -0.017374252900481224, -0.005735255777835846, -0.012285982258617878, 0.030246565118432045, 0.00801992230117321, -0.029195213690400124, -0.006196906790137291, -0.007999704219400883, 0.028817806392908096, -0.009974357672035694, 0.016942929476499557, 0.018829969689249992, -0.00807383842766285, 0.024545006453990936, 0.010055230930447578, -0.02329147234559059, -0.028952594846487045, 0.01802123710513115, -0.005064682103693485, 0.001423704787157476, 0.0024666315875947475, -0.010371983982622623], "0937c300-83a4-4da1-a471-1bbfdbc90777": [-0.00330703379586339, -0.006304558832198381, 0.01207084208726883, -0.0060118711553514, -0.006560239940881729, 0.022728709504008293, -0.02240574359893799, -0.011532565578818321, -0.01412974763661623, -0.002195157343521714, 0.014493084512650967, 0.027223315089941025, -0.013477087952196598, -0.007300369907170534, -0.010893362574279308, 0.0003934041305910796, 0.0027502544689923525, -0.014816049486398697, 0.026160219684243202, -0.015139015391469002, -0.0013759683351963758, 0.015139015391469002, 0.006624160334467888, -0.01799187809228897, -0.020737087354063988, 0.007401296403259039, 0.015071731060743332, -0.016942240297794342, 0.01765545643866062, -0.015704205259680748, 0.034126706421375275, -0.009783168323338032, -0.007609878666698933, -0.0012540151365101337, 0.008592232130467892, 0.015906058251857758, -0.0005218755104579031, -0.00703795999288559, 0.004265838302671909, -0.013167579658329487, 0.018678180873394012, -0.02476070076227188, 0.01591951586306095, -0.0044037713669240475, -0.015179386362433434, 0.009890823625028133, -0.02050831913948059, 0.008323094807565212, 0.0032818021718412638, 0.0023532758932560682, 0.006324744317680597, 0.0013557829661294818, -0.04179713875055313, -0.019054973497986794, 0.005328933708369732, 0.028582461178302765, -0.001403723144903779, -0.005312112160027027, -0.012339979410171509, -0.02815183997154236, 0.004891584161669016, 0.013793325051665306, -0.024679958820343018, 0.0008246558136306703, -0.0016282852739095688, 0.0141970319673419, 0.008141426369547844, 0.036306723952293396, -0.016646189615130424, 0.0035929931327700615, 0.059802476316690445, 0.01649816334247589, 0.020656345412135124, -0.008733529597520828, 0.030493341386318207, -0.003979878965765238, -0.023253528401255608, -0.01184880267828703, 0.03240422159433365, -0.0014348422409966588, -0.006082519888877869, 0.005039609968662262, 0.018032249063253403, 0.007461852394044399, 0.02540663257241249, 0.014802592806518078, -0.030412599444389343, 0.015771489590406418, 0.006778914947062731, -0.00954094436019659, 0.003133776132017374, 0.0285017192363739, 0.006250731181353331, 0.011310527101159096, -0.01032144483178854, 0.011027932167053223, 0.008619146421551704, 0.030251117423176765, 0.006035421043634415, -0.06254768371582031, -0.01830138824880123, 0.024330079555511475, -0.0034920661710202694, 0.001322140684351325, -0.039536379277706146, -0.0389711894094944, 0.019458681344985962, -0.021208079531788826, 0.014345058239996433, -0.020589061081409454, -0.00013004835636820644, 0.02917456440627575, -0.006371843628585339, -0.02815183997154236, -0.035014860332012177, -0.017803482711315155, 0.01219195406883955, -0.025891080498695374, -0.008975754491984844, -0.003939508460462093, 0.009917736984789371, 0.021261906251311302, 0.011472010053694248, -0.009749526157975197, 0.0012262602103874087, 0.00948711670935154, -0.0042221033945679665, 0.008390379138290882, 0.011532565578818321, -0.014600739814341068, 0.02812492661178112, 0.007778089959174395, -0.008323094807565212, 0.015085187740623951, -0.015650378540158272, -0.016242481768131256, -0.009776439517736435, 0.0017645363695919514, -0.013477087952196598, -0.0005407992866821587, 0.02451847679913044, 0.01350400224328041, -0.013483816757798195, -0.015017903409898281, -0.0014609149657189846, 0.0048781270161271095, -0.007798274978995323, 0.01377313956618309, 0.0013112069573253393, -0.006950490176677704, 0.018893491476774216, -0.016363592818379402, 0.003313762368634343, -0.0070581454783678055, 0.009500573389232159, 0.019566336646676064, -0.0009024535538628697, 0.012730229645967484, -0.007535865530371666, -0.016888413578271866, 0.006809192709624767, 0.03461115434765816, 0.011660406365990639, -0.016780758276581764, 0.015529265627264977, 0.03614524006843567, 0.008403835818171501, 0.020252639427781105, 0.00175780791323632, 0.0032818021718412638, 0.00637520756572485, 0.006371843628585339, -0.0228229071944952, 0.02734442614018917, -0.02231154404580593, 0.018920404836535454, 0.005234735086560249, 0.013954808004200459, -0.01038872916251421, -0.03302323818206787, -0.011734419502317905, -0.006916848011314869, -0.015771489590406418, 0.03576844930648804, -0.005621620919555426, -0.04403098672628403, 0.005453409627079964, 0.009614956565201283, 0.0016863180790096521, 0.009137236513197422, 0.011673863045871258, 0.028851600363850594, 0.008679701946675777, 0.00865278858691454, -0.5826300382614136, -0.02536626160144806, -0.02213660441339016, 0.018382128328084946, 0.01316085085272789, 0.010604039765894413, -0.009069952182471752, 0.04023613780736923, -0.01805916428565979, 0.02801727131009102, -0.002600546460598707, 0.0021716076880693436, -0.009473659098148346, 0.0036770987790077925, -0.007085059303790331, -0.029901238158345222, 0.003357497276738286, -0.01496407575905323, -0.02050831913948059, 0.015125558711588383, -0.017870767042040825, 0.007394568063318729, -0.02298438921570778, 0.0039327796548604965, 0.002094230381771922, -0.008390379138290882, -0.00745512405410409, -0.014681480824947357, -0.001676225452683866, 0.03488029167056084, -0.03816377744078636, 0.001961343688890338, 0.03778698295354843, -0.005688905715942383, 0.0382983461022377, 0.00882772821933031, -0.028797771781682968, 0.0120237423107028, -0.008625874295830727, 0.06319361180067062, -0.00045122677693143487, -0.034907206892967224, 0.023320812731981277, -0.0047301012091338634, -0.007313826587051153, -0.012218867428600788, 0.027721218764781952, -0.03934798389673233, -0.0043802219443023205, 0.02363032102584839, -0.008067413233220577, 0.003090041223913431, 0.0018301387317478657, -0.002871366683393717, 0.012662945315241814, -0.006223817355930805, 0.02044103480875492, -0.030735565349459648, 0.01643087901175022, 0.001042068935930729, 0.015300498344004154, 0.006647709757089615, -0.021369561553001404, -0.025662314146757126, -0.010664595291018486, 0.018920404836535454, -0.03345385938882828, -0.03633363917469978, 0.004137997515499592, -0.018112991005182266, 0.012992640025913715, -0.015300498344004154, 0.017063353210687637, -0.00703123165294528, 0.01890694908797741, 0.029362961649894714, 0.0179245937615633, -0.005328933708369732, 0.005732640624046326, 0.014654567465186119, -0.011741147376596928, 0.004760379437357187, -0.015771489590406418, -0.009722611866891384, 0.010341629385948181, 0.003818396246060729, -0.034019049257040024, -0.005433224607259035, 0.004050527699291706, -0.010671324096620083, 0.011472010053694248, 0.027115659788250923, 0.011182686313986778, -0.0318390317261219, 0.019202999770641327, 0.017668914049863815, -0.0038385814987123013, -0.021100424230098724, -0.010274345055222511, -0.005695634055882692, 0.00041569213499315083, -0.020144984126091003, -0.0059580435045063496, -0.006997589487582445, 0.04526901990175247, -0.009291991591453552, -0.04499988257884979, 0.004434049595147371, 0.03423435986042023, -0.0016728611662983894, 0.011929544620215893, 0.01387406699359417, -0.009352547116577625, -0.00960822869092226, 0.012878255918622017, -0.04039762169122696, -0.007421481888741255, 0.04193170741200447, 0.005036246031522751, -0.012003556825220585, 0.03122001513838768, 0.009850452654063702, 0.02019881084561348, -0.00981008168309927, 0.007475309539586306, 0.0195932500064373, 0.00948711670935154, -0.009271806105971336, 0.008686430752277374, 0.002519804984331131, -0.010725151747465134, 0.002154786605387926, 0.03455732762813568, -0.026483183726668358, 0.017964964732527733, 0.012225596234202385, -0.006206996273249388, -0.009325633756816387, 0.009258349426090717, -0.01350400224328041, -0.009991750121116638, -0.0005277629243209958, 0.006203632336109877, -0.005581250414252281, 0.0012556972214952111, -0.010826078243553638, -0.029981980100274086, -0.007145615294575691, -0.004400407429784536, 0.005537515506148338, 0.013066652230918407, -0.006240638438612223, -0.02180018275976181, 0.023388097062706947, 0.005695634055882692, 0.017588172107934952, -0.0036602774634957314, -0.02420896850526333, 0.003764568595215678, -0.02101968228816986, -0.005513966083526611, 0.0073272837325930595, -0.03611832857131958, 0.010072492063045502, -0.03356151655316353, -0.026510098949074745, 0.026981089264154434, 0.0007195237558335066, -0.009493844583630562, -0.030735565349459648, -0.01754780113697052, -0.008531676605343819, -0.009971564635634422, -0.007347468752413988, 0.021921293810009956, 0.006338200997561216, -0.02502983994781971, 0.004703187383711338, -8.694420830579475e-05, -0.009507302194833755, 0.011680591851472855, -0.010294530540704727, 0.016551990061998367, -0.005376032553613186, 0.033103980123996735, 0.007401296403259039, 0.028986169025301933, 0.004360036458820105, -0.016229024156928062, -0.0008881555986590683, -0.007125429809093475, 0.01232652273029089, 0.025998735800385475, -0.0032902127131819725, 0.04093589633703232, -0.006021963898092508, 0.04459617659449577, 0.015502352267503738, 0.006836106535047293, 0.0073743825778365135, 0.023576494306325912, -0.0010900091147050261, 0.013322333805263042, -0.015421610325574875, 0.022325001657009125, -0.021396474912762642, 0.0016568811843171716, -0.0010084266541525722, 0.030870134010910988, 0.016551990061998367, 0.002075727330520749, -0.029981980100274086, -0.026267874985933304, 0.0016871591797098517, 0.012790786102414131, 0.0074954950250685215, -0.009614956565201283, 0.013275234960019588, -0.017668914049863815, 0.013564557768404484, 0.01772274076938629, -0.011660406365990639, 0.010334901511669159, -0.011794975027441978, -0.009695698507130146, 0.003714105114340782, 0.00421537458896637, -0.007825189270079136, 0.010314716026186943, -0.03552622348070145, -0.026711951941251755, 0.011909359134733677, 0.01052329782396555, 0.004699823446571827, 0.0127504151314497, -0.01154602225869894, 0.003778025507926941, -0.02774813398718834, 0.003872223664075136, 0.0066207959316670895, 0.008444206789135933, -0.0031758290715515614, 0.015569636598229408, -0.03372299671173096, 0.010597310960292816, 0.02513749524950981, 0.03533782809972763, 0.04012848436832428, -0.02982049621641636, 0.007643520832061768, -0.0036199067253619432, -0.01266967412084341, -0.01594642922282219, 0.02952444553375244, -0.0026173675432801247, -0.02278253622353077, 0.008847913704812527, -0.00195125094614923, 0.038890447467565536, 0.023253528401255608, 0.027667392045259476, 0.03221582621335983, 0.03582227602601051, 0.011263427324593067, 0.002550082979723811, -0.030116548761725426, -0.011095216497778893, -0.01816681958734989, -0.011128858663141727, -0.008679701946675777, 0.0020218996796756983, 0.0010925323003903031, 0.0024777522776275873, -0.013201221823692322, 0.010731879621744156, -0.0034786092583090067, 0.0030076177790760994, 0.00919779296964407, 0.014089377596974373, 0.0009032945963554084, -0.010698237456381321, -0.02815183997154236, 0.01639050804078579, 0.0227152518928051, 0.02376488968729973, 0.002555129351094365, -0.004111083690077066, 0.016646189615130424, 0.003973150625824928, 0.004010157193988562, 0.025958364829421043, 0.005409674718976021, 0.015488894656300545, -0.019512508064508438, -0.005564429331570864, -0.02451847679913044, 0.031408410519361496, -0.023724518716335297, -0.03649511933326721, -0.0027889430057257414, 0.001052161562256515, -0.029847409576177597, 0.0036770987790077925, -0.01986238919198513, 0.03353460133075714, -0.007885744795203209, -0.01904151774942875, 0.002292719902470708, 0.015273584984242916, -0.018826207146048546, -0.02095239795744419, -0.012541833333671093, -0.017493974417448044, -0.02380526065826416, -0.005217914003878832, 0.010987561196088791, -0.0017998607363551855, -0.00877390056848526, -0.013322333805263042, 0.010469470173120499, 0.006896662525832653, -0.027694305405020714, -0.020683258771896362, 0.023724518716335297, -0.015892602503299713, 0.02527206391096115, 0.011747876182198524, 0.007367654237896204, -0.008854641579091549, -0.0015147426165640354, -0.010173418559134007, -0.015798402950167656, 0.0037073767744004726, -0.009635142050683498, -0.008343279361724854, -0.011741147376596928, 0.002812492661178112, 0.00022624417033512145, 0.016673102974891663, 0.01968744955956936, -0.02342846803367138, -0.02108696661889553, -0.000873857643455267, -0.015798402950167656, 0.010045577771961689, -0.0316237211227417, 0.03170446306467056, -0.005463502369821072, 0.03641437739133835, 0.006005142815411091, 0.0021716076880693436, 0.027667392045259476, 0.008370193652808666, -0.011727690696716309, 0.0024323351681232452, -0.0031220014207065105, 0.004070713184773922, 0.00036312610609456897, -0.005759554449468851, 0.03046642802655697, 0.014022092334926128, 0.05404292047023773, -0.014573825523257256, 0.02877085842192173, 0.011754604987800121, 0.021961664780974388, 0.006476134527474642, 0.00048697166494093835, 0.036199066787958145, -0.019431767985224724, -0.012165039777755737, 0.01734594814479351, -0.014210489578545094, -0.022944020107388496, 0.04499988257884979, 0.008982482366263866, -0.030008893460035324, -0.005487052258104086, 0.023038217797875404, 0.019054973497986794, -0.01966053433716297, 0.00240542134270072, -0.011788247153162956, -0.024101313203573227, -0.008868099190294743, -0.01196991465985775, 0.001589596620760858, -0.011741147376596928, -0.011572936549782753, -0.02914765104651451, -0.04591495171189308, -0.0038890449795871973, -0.037598587572574615, -0.027115659788250923, -0.000988241285085678, -0.05458119884133339, -0.027532823383808136, -0.002903326880186796, -0.004844484850764275, 0.019808560609817505, 0.017090266570448875, -0.02084474265575409, -0.01334924716502428, 0.024949098005890846, -0.015515808947384357, 0.007347468752413988, -0.01370585523545742, -0.031408410519361496, 0.004249017219990492, 0.015798402950167656, 0.006762093398720026, -0.008814271539449692, -0.008524947799742222, 0.031300757080316544, -0.0005744415102526546, 0.007078330963850021, 0.009958107955753803, 0.004117812030017376, -0.009325633756816387, -0.001039545750245452, 0.003434874350205064, 0.018745465204119682, -0.011801703833043575, -0.02227117493748665, 0.0036770987790077925, -0.045591987669467926, 0.0015601596096530557, 0.0037073767744004726, -0.013631842099130154, -0.027613565325737, -0.024505019187927246, 0.025379719212651253, -0.0005828521098010242, 0.01788422465324402, 0.02877085842192173, -0.008746987208724022, -0.010610767640173435, -0.021854009479284286, -0.012239052914083004, 0.01418357528746128, 0.011794975027441978, -0.005066523794084787, 0.010314716026186943, 0.021073509007692337, 0.02284982055425644, -0.006210360676050186, 0.03732944652438164, 0.03237730637192726, -0.008329822681844234, 0.007831917144358158, -0.008087598718702793, -0.013409803621470928, -0.03571461886167526, 0.006176718510687351, 0.006556876003742218, 0.027828874066472054, -0.02097931131720543, -0.007764632813632488, -0.029901238158345222, -0.024747245013713837, 0.01972781866788864, 0.021813638508319855, -0.027357883751392365, -0.027640478685498238, -0.0316237211227417, -0.018247559666633606, 0.011916087009012699, -0.03213508427143097, 0.017695827409625053, -0.02887851372361183, -0.014923704788088799, -0.007879016920924187, 0.013779868371784687, 0.0122457817196846, 0.022594138979911804, 0.003882316406816244, -0.031542979180812836, 0.0032447956036776304, -0.009204521775245667, -0.01883966475725174, 0.004137997515499592, -0.01212466973811388, 0.013376161456108093, 0.020481405779719353, 0.013389618135988712, 0.013302148319780827, 0.02124844864010811, 0.003271709429100156, 0.0008208710933104157, 0.007434938568621874, -0.030385686084628105, 0.0055173300206661224, -0.006153168622404337, -0.01142491027712822, 0.016982611268758774, 0.019391397014260292, -0.00835000816732645, -0.006348293740302324, -0.0029605187010020018, 0.017251748591661453, 0.009298719465732574, 0.007865559309720993, -0.004390314687043428, -0.057111095637083054, -0.005783103872090578, 0.014802592806518078, 0.012407264672219753, 0.003159007988870144, -0.009776439517736435, -0.004016885533928871, -0.004464327357709408, -0.0020033963955938816, 0.04648014158010483, 0.009123779833316803, 0.011572936549782753, -0.03345385938882828, 0.012144854292273521, -0.020144984126091003, -0.00026198907289654016, -0.0028848235961049795, 0.01772274076938629, -0.0031707827001810074, 0.012286151759326458, 0.025218235328793526, 0.02434353716671467, 0.005386125296354294, 0.00697067566215992, 0.008989211171865463, 0.0017544437432661653, 0.02529897727072239, 0.015650378540158272, -0.039025016129016876, -0.00492186238989234, -0.028582461178302765, -0.033480774611234665, -0.029255306348204613, -0.015206299722194672, -0.0008805860998108983, -0.02901308238506317, 0.008053956553339958, 0.008114512078464031, 0.018960775807499886, -0.008619146421551704, -0.019324112683534622, -0.006361750885844231, -0.02302476018667221, 0.01941831037402153, -0.006371843628585339, 0.015435067005455494, 0.028932340443134308, 0.006768822204321623, -0.015973344445228577, -0.057487890124320984, -0.016673102974891663, -0.01561000756919384, 0.0367373451590538, 0.0636780634522438, -0.0003097190347034484, -0.021705983206629753, 0.009890823625028133, 0.005053067114204168, 0.018287930637598038, -0.03447658568620682, 0.015273584984242916, 0.006657802499830723, 0.013436716981232166, -0.02890542708337307, -0.0005365940160118043, -0.0271694865077734, 0.012252509593963623, -0.005073252134025097, -0.009258349426090717, 0.0053390259854495525, 0.004881491418927908, -0.0240474846214056, 0.008558589965105057, -0.033749911934137344, 0.02424933947622776, 0.008491305634379387, -0.0064626773819327354, -0.015771489590406418, -0.005275106057524681, -0.039294157177209854, -0.009426560252904892, -0.003650184953585267, 0.031139273196458817, 0.006489591207355261, -0.016915326938033104, 0.010886634700000286, 0.015959886834025383, -0.0015256763435900211, -0.018826207146048546, -0.017453603446483612, 0.04604952037334442, -0.010604039765894413, -0.01816681958734989, -0.005826838780194521, -0.008625874295830727, 0.02336118370294571, 0.009339090436697006, 0.007905930280685425, 0.005372668616473675, 0.004868034739047289, -0.00991100911051035, 0.01515247207134962, -0.012461092323064804, 0.0082961805164814, -0.015515808947384357, -0.008329822681844234, -0.01302628219127655, -0.01883966475725174, -0.009036310017108917, 0.023118959739804268, -0.041877880692481995, -0.031166186556220055, -0.018624354153871536, -0.018853120505809784, 0.015125558711588383, -0.0006627524853684008, 0.014694937504827976, 0.009594772011041641, 0.07175220549106598, -0.03070865198969841, 0.019256828352808952, -0.016202110797166824, 0.00960822869092226, -0.012353437021374702, 0.00552742276340723, -0.0008511490887030959, -0.00997829344123602, 0.020992768928408623, -0.003345722332596779, -0.03603758662939072, -0.0347457230091095, 0.0021665613166987896, 0.026375530287623405, -0.00889501255005598, 0.022701794281601906, 0.034907206892967224, -0.0017611721996217966, 0.0033305834513157606, -0.009588043205440044, -0.0033356298226863146, 0.011371082626283169, -0.004329758230596781, 0.0019781647715717554, 0.02124844864010811, 0.001490351976826787, -0.011465281248092651, -0.0067318156361579895, -0.009722611866891384, -0.003579536220058799, 0.007670434657484293, -0.03913267329335213, 0.01219195406883955, -0.012373622506856918, -0.025971822440624237, -0.010570396669209003, -0.014412342570722103, -0.017426688224077225, -0.039805516600608826, -0.00738111138343811, 0.02173289842903614, 0.007132158614695072, 0.01928374171257019, 0.007138886954635382, -0.00015202094800770283, -0.004794021602720022, -0.005513966083526611, -0.03649511933326721, -0.02952444553375244, -0.02543354593217373, -0.030008893460035324, -0.028555547818541527, -0.03611832857131958, 0.02527206391096115, -0.0026964268181473017, -0.0029083730187267065, -0.019068431109189987, -0.008121240884065628, -0.0243839081376791, -0.009823539294302464, -0.003382728900760412, 0.01823410391807556, 0.013968264684081078, -0.0014869878068566322, 0.022540312260389328, 0.034664981067180634, 0.001576980808749795, 0.015192843042314053, 0.0032195639796555042, -0.0032801199704408646, 0.0006358386599458754, -0.031193099915981293, -0.0003391559876035899, -0.017251748591661453, -0.019028060138225555, 0.005850388668477535, 0.01322813518345356, 0.022567225620150566, 0.003069855971261859, 0.018785836175084114, -0.006058970466256142, 0.0005067365127615631, -0.028044184669852257, -0.027667392045259476, -0.005520694423466921, 0.02040066383779049, 0.004397043026983738, -0.0062574599869549274, 0.009285262785851955, 0.014587282203137875, -0.005039609968662262, -0.00012163778592366725, 0.0006951331160962582, -0.0007628381717950106, 0.006896662525832653, 0.026873433962464333, -0.013914437033236027, 0.0024878447875380516, -0.011566207744181156, -0.006984132342040539, 0.011310527101159096, -0.028797771781682968, 0.011088487692177296, 0.03714105114340782, -0.02349575236439705, -0.009709155187010765, -0.0105771254748106, -0.007179257459938526, -0.042012449353933334, -0.006334837060421705, -0.012373622506856918, -0.003238067263737321, -0.01484296377748251, 0.019202999770641327, 0.014493084512650967, -0.011095216497778893, 0.0018049071077257395, -0.002112733665853739, 0.025258606299757957, -0.024289708584547043, 0.003481973661109805, 0.006156533025205135, -0.022795993834733963, -0.00967551302164793, -0.00865278858691454, -0.015825318172574043, -0.0075425938703119755, -0.036064498126506805, 0.004652724135667086, -0.0398593470454216, -0.002603910630568862, -0.008713344112038612, -0.01329541951417923, -0.018557067960500717, -0.013631842099130154, -0.005019424948841333, 0.005113623104989529, -0.0051809074357151985, 0.24502328038215637, -0.01995658688247204, -0.0027653935831040144, 0.021988580003380775, -0.005063159856945276, -0.011458552442491055, 0.010805892758071423, 0.007138886954635382, 0.01737286150455475, 0.016027171164751053, -0.012979182414710522, -0.02251339890062809, 0.0004365082713775337, -0.003481973661109805, 0.006630888674408197, -0.02135610394179821, -0.024989468976855278, -0.030897049233317375, -0.025527743622660637, -0.03197360038757324, 0.016444334760308266, -0.0022540311329066753, -0.006863020360469818, -0.010139776393771172, 0.023589950054883957, 0.012858070433139801, -0.006159897428005934, 0.024034028872847557, 0.031058531254529953, 0.02754627913236618, -0.03070865198969841, -0.0020168533083051443, 0.016444334760308266, -0.012198681943118572, -0.009278533980250359, -0.020144984126091003, 0.04790657386183739, 0.0002094230439979583, 0.011963186785578728, 0.0024979375302791595, -0.012043927796185017, -0.023616863414645195, 0.019606707617640495, -0.004652724135667086, -0.02979358285665512, 0.007650249172002077, 0.0011631810339167714, -0.021033139899373055, 0.009191064164042473, -0.001752761541865766, -0.019189544022083282, -0.008538404479622841, 0.02251339890062809, 0.023132415488362312, -0.0016829539090394974, -0.006711630150675774, 0.018624354153871536, 0.013847152702510357, 0.013598199933767319, 0.026469727978110313, 0.012514919973909855, 0.023388097062706947, -0.03165063634514809, 0.01612136885523796, -0.02863628976047039, -0.0141970319673419, -0.04177022725343704, -0.0014281137846410275, -0.014560368843376637, -0.0033743183594197035, -0.011512380093336105, -0.014089377596974373, -0.015435067005455494, -0.017534343525767326, -0.018072620034217834, -0.0407475009560585, 0.032458048313856125, 0.005261648911982775, 0.03913267329335213, 0.05668047443032265, 0.00757623603567481, 0.006698173470795155, -0.012218867428600788, -0.010052306577563286, 0.005709091201424599, -0.016148284077644348, 0.014641109853982925, -0.006018599960952997, -0.021584872156381607, -0.008356736972928047, 0.010839534923434258, -0.03383065387606621, -0.0005353324231691658, -0.003143868874758482, 0.02233845926821232, 0.024666503071784973, -0.022499941289424896, 0.006169989705085754, -0.010133047588169575, -0.0017115498194471002, -0.036172155290842056, 0.03345385938882828, 0.03587610274553299, 0.0019344297470524907, -0.010079219937324524, -0.00835000816732645, -0.026913804933428764, 0.007757904473692179, 0.019875844940543175, -0.015825318172574043, -0.00039088097400963306, -0.03345385938882828, 0.00858550425618887, 0.012562018819153309, -0.0089084692299366, 0.0429813489317894, 0.007582964841276407, -0.012925354763865471, -0.014439256861805916, -0.00034609471913427114, 0.009453474543988705, -0.04268529638648033, -0.010543483309447765, -0.017588172107934952, -0.024706874042749405, -0.009635142050683498, -0.018489783629775047, -0.016027171164751053, 0.006869748700410128, -0.057595543563365936, 0.03959020972251892, 0.02710220217704773, 0.008625874295830727, 0.00906322430819273, 0.02611984871327877, -0.0017460330855101347, 0.0018772379262372851, -0.023926373571157455, -0.0014197032433003187, -0.011687319725751877, 0.009507302194833755, -0.002302812412381172, 0.014533454552292824, 0.0005513124633580446, -0.015502352267503738, -0.011821889318525791, 0.01799187809228897, 0.02305167354643345, 0.016807671636343002, -0.018557067960500717, -0.03969786316156387, 0.006058970466256142, -0.00968896970152855, 0.007414753548800945, 0.013181036338210106, -0.022325001657009125, -0.023415010422468185, -0.021571414545178413, 0.005682177376002073, 0.02788270264863968, -0.04930609092116356, -0.017507430166006088, 0.018382128328084946, -0.04090898483991623, -0.023078588768839836, -0.018341759219765663, -0.1696646362543106, -0.004329758230596781, 0.049090780317783356, -0.021208079531788826, 0.03291558474302292, 0.011808431707322598, -0.004992511123418808, 0.005547608248889446, -0.008565318770706654, -0.006166625767946243, 0.03523017093539238, 0.009736069478094578, -0.015771489590406418, -0.005692269653081894, -0.0017864038236439228, 0.01497753243893385, -0.013342519290745258, 0.007778089959174395, 0.049602143466472626, 0.020790914073586464, 0.06863020360469818, -0.015650378540158272, 0.0015710934530943632, -0.0028326779138296843, 0.00577301112934947, 0.010792436078190804, -0.020144984126091003, -0.003522344399243593, -0.0014348422409966588, -0.006432399619370699, -0.002005078596994281, -0.010630953125655651, 0.02398020029067993, -0.007132158614695072, 0.01975473389029503, -0.00504297437146306, -0.0007926956750452518, 0.015798402950167656, -0.008040498942136765, 0.0029605187010020018, 0.006169989705085754, 0.03907884657382965, 0.02540663257241249, 0.012050656601786613, 0.003475245088338852, 0.02017189748585224, 0.006842834874987602, -0.03213508427143097, 0.007912659086287022, 0.012373622506856918, 0.010045577771961689, -0.021638698875904083, -0.019848931580781937, -0.017292119562625885, 0.01425085961818695, 0.013174307532608509, 0.00037742406129837036, 0.016673102974891663, -0.013174307532608509, -0.008067413233220577, -0.001594642992131412, -0.030385686084628105, 0.006489591207355261, -0.0006900868029333651, -0.006186811253428459, -0.016673102974891663, -0.03738327696919441, 0.021611785516142845, 0.0019226550357416272, -0.008181796409189701, 0.005005967803299427, -0.05113622918725014, -0.010826078243553638, -0.00020479723752941936, 0.027721218764781952, -0.01761508546769619, -0.009769711643457413, 0.015596549957990646, 0.03200051560997963, -0.004309573210775852, -0.009339090436697006, 0.04131269082427025, 0.019875844940543175, -0.0025870895478874445, 0.009527486748993397, 0.01801879331469536, -0.007179257459938526, -0.016027171164751053, -0.03544548153877258, 0.011512380093336105, 0.04346579685807228, -0.03148915246129036, -0.00690339133143425, -0.012111212126910686, -0.008175068534910679, 0.01032144483178854, 0.016874955967068672, -0.007307098247110844, -0.004898312501609325, -0.0046964590437710285, -0.0004953822353854775, 0.004413864109665155, -0.021208079531788826, 0.0316237211227417, 0.038379088044166565, 0.020319923758506775, 3.871487933793105e-05, 0.021167708560824394, 0.047825831919908524, -0.023011304438114166, -0.024774158373475075, 0.004585439804941416, 0.01839558593928814, 0.007690620142966509, 0.007899201475083828, 0.02520477958023548, -0.01329541951417923, -0.007421481888741255, 0.01412974763661623, -0.00991100911051035, -0.046533968299627304, -0.0035761718172580004, 0.013968264684081078, 0.02046794816851616, -0.0017931322799995542, -0.03781389817595482, -0.05132462829351425, 0.00309845176525414, 0.0011943001300096512, 0.03313089534640312, -0.020319923758506775, 0.008148154243826866, 0.0018149997340515256, 0.032431136816740036, -0.0048781270161271095, 0.017520887777209282, 0.0006774709327146411, -0.008518218994140625, -0.018745465204119682, 0.00863933190703392, 0.018718551844358444, 0.005759554449468851, 0.0070581454783678055, -0.009769711643457413, -0.00738111138343811, 0.011943001300096512, 0.005150629673153162, -0.004925226327031851, -0.009803353808820248, -0.028824685141444206, 0.0010000161128118634, -0.0002657738223206252, -0.015959886834025383, 0.03975168988108635, 0.002926876302808523, 0.0022136603947728872, 0.007730990648269653, 0.004117812030017376, -0.018045706674456596, -0.02057560347020626, 0.011579664424061775, 0.003317126538604498, -0.015017903409898281, -0.020898569375276566, 0.030762480571866035, -0.011384539306163788, 0.0071927146054804325, 0.012205410748720169, 0.01908188872039318, 0.0020269460510462523, -0.004851213656365871, -0.00021741307864431292, -0.008275995030999184, 0.01774965412914753, -0.03872896730899811, -0.003788118017837405, -0.0445423498749733, 0.0009369368781335652, -0.00962168537080288, 0.002311222953721881, 0.03132766857743263, -0.0024542026221752167, 0.025756511837244034, 0.02529897727072239, -0.021517587825655937, 0.00800685677677393, -0.018314843997359276, -0.001752761541865766, -0.023912915959954262, 0.03442275896668434, -0.0007233085343614221, 0.0031068623065948486, -0.027182944118976593, 0.00894211232662201, 0.001533245900645852, -0.0022506669629365206, -0.00450469832867384, 0.0040908982045948505, -0.015273584984242916, 0.021127337589859962, -0.012017014436423779, -0.03108544461429119, -0.005850388668477535, -0.017843853682279587, 0.008410564623773098, -0.016444334760308266, 0.00147268979344517, -0.016215568408370018, -0.009816810488700867, -0.013355975970625877, 0.02268833853304386, 0.021948209032416344, -0.005500508937984705, 0.005843659862875938, -0.004232196137309074, -0.04621100425720215, -0.03226965293288231, 0.006052242126315832, -0.00255849352106452, -0.01765545643866062, -0.010678051970899105, -0.020414121448993683, 0.021275363862514496, -0.0037073767744004726, 0.00020626909099519253, 0.03636055067181587, -0.0019983500242233276, -0.0007022821228019893, -0.08300217241048813, 0.012050656601786613, -0.004037071019411087, -0.022795993834733963, 0.01612136885523796, -0.018678180873394012, 0.024168597534298897, -0.0105771254748106, -0.004255745559930801, 0.026106391102075577, -0.03862131014466286, 0.01470839511603117, 0.008800814859569073, -0.015044817700982094, -0.004699823446571827, -0.021504130214452744, 0.020144984126091003, 0.00026304039056412876, 0.0017460330855101347, 0.015488894656300545, -0.005917672999203205, 0.02023918181657791, 0.012043927796185017, 0.025998735800385475, -0.043950244784355164, 0.01696915365755558, 0.0042355600744485855, 0.03544548153877258, -0.008087598718702793, 0.004511426668614149, -0.010630953125655651, -0.03393830731511116, 0.001986575312912464, 0.006677987985312939, 0.007784818299114704, -0.0065400549210608006, 0.018543612211942673, 0.013376161456108093, 0.005207821261137724, 0.05215895548462868, -0.021396474912762642, -0.027613565325737, -0.0007199443061836064, -0.00925162062048912, -0.015327412635087967, -0.014856420457363129, -0.027425168082118034, 0.008861370384693146, 0.008370193652808666, 0.022876733914017677, 0.03221582621335983, 0.015502352267503738, 0.002615685574710369, -0.002642599167302251, 0.007885744795203209, -0.04981745406985283, 0.010563668794929981, 0.03372299671173096, -0.0008940429543145001, -0.015906058251857758, 0.039563294500112534, -0.0007468580733984709, 0.006718358490616083, -0.006694809067994356, -0.0009722612448967993, -0.006910119671374559, -0.021948209032416344, -0.008921926841139793, 0.03302323818206787, -0.038244519382715225, -0.02367069199681282, -0.008598960936069489, -0.025554658845067024, -0.0178169384598732, 0.01178151834756136, -0.003841945668682456, -0.0047200084663927555, 0.006714994553476572, -0.014802592806518078, 0.006577061023563147, 0.015058274380862713, 0.011855531483888626, -0.01484296377748251, 0.010072492063045502, 0.026362072676420212, 0.020750543102622032, -0.014748765155673027, 0.011458552442491055, 0.013261777348816395, -0.0024542026221752167, -0.01857052557170391, 0.024195510894060135, 0.03706030920147896, 0.02513749524950981, 0.0015584775246679783, 0.026886891573667526, 0.007482037879526615, 0.01316085085272789, 0.042927518486976624, -0.008861370384693146, 0.028205668553709984, 0.010146504268050194, -0.015273584984242916, -0.026483183726668358, -0.014049006626009941, -0.00738111138343811, -0.016982611268758774, -0.03907884657382965, -0.0033053518272936344, 0.008087598718702793, -0.014654567465186119, 0.0016249209875240922, -0.0034197354689240456, 0.023374639451503754, -0.007475309539586306, 0.014546912163496017, -0.0033692719880491495, -0.03060099668800831, -0.022742165252566338, 0.02284982055425644, 0.0035963573027402163, 0.024922184646129608, 0.012770600616931915, -0.013692398555576801, 0.04373493418097496, -0.013981722295284271, 0.010207060724496841, -0.031031617894768715, 0.03358842805027962, -0.0023886002600193024, -0.02180018275976181, 0.02917456440627575, -0.030789393931627274, -0.02676577866077423, -0.002947061788290739, 0.0014331601560115814, 0.008403835818171501, -0.002842770656570792, -0.017938051372766495, 0.08800814300775528, 0.009931194595992565, -0.011694048531353474, 0.0215983297675848, 0.00672508729621768, 0.005066523794084787, -0.008154883049428463, 0.01999695785343647, -0.03033185936510563, -0.002397010801360011, 0.014452713541686535, -0.00806068442761898, -0.013968264684081078, -0.009406374767422676, 0.0015710934530943632, -0.00047729953075759113, -0.0183686725795269, 0.017964964732527733, 0.011788247153162956, -0.0006564445211552083, 0.031677547842264175, 0.00048318691551685333, 0.010294530540704727, 0.012286151759326458, -0.02340155467391014, -0.005254920572042465, 0.042900606989860535, -0.009372732602059841, 0.015865689143538475, -0.0021800182294100523, 0.03598375618457794, 0.00751568004488945, -0.01924337074160576, -0.01618865318596363, 0.0005227165529504418, 0.021907838061451912, -0.005682177376002073, 0.021302277222275734, 0.02305167354643345, 0.0013061605859547853, 0.008982482366263866, -0.00757623603567481, -0.03033185936510563, -0.03275410085916519, 0.004975689575076103, 0.006466041784733534, 0.000414010020904243, -0.00981008168309927, 0.007616607006639242], "1806da72-5923-4cae-8a66-854195e37b92": [-0.02392793633043766, -0.016224564984440804, -0.0031294943764805794, -0.030813483521342278, -0.00032440887298434973, 0.016356471925973892, -0.006658007390797138, -0.01733258366584778, 0.011449530720710754, -0.014259150251746178, 0.007973779924213886, 0.01039427425712347, -0.012583930976688862, 0.004244108684360981, -0.011139549314975739, -0.024284085258841515, -0.0041979411616921425, -0.021276604384183884, 0.025642726570367813, -0.012122256681323051, 0.014021717943251133, -0.015288025140762329, 0.007545082364231348, -0.028439156711101532, -0.012326712720096111, -0.0077891102991998196, 0.012128851376473904, -0.026460550725460052, 0.0075912498869001865, 0.013837047852575779, 0.016607096418738365, -0.0001935323525685817, 0.0039077457040548325, -0.035377465188503265, -0.01400852669030428, 0.002509531332179904, 0.007465938106179237, 0.010044720955193043, -0.003808815497905016, 0.01370514091104269, 0.003253157250583172, -0.0036670155823230743, 0.003620848059654236, 0.0065887561067938805, -0.040126118808984756, 0.009385185316205025, -0.02092045545578003, -0.0002928748435806483, 0.005282876547425985, 0.01812402717769146, -0.018044881522655487, 0.01371833123266697, -0.040363553911447525, -0.009411566890776157, -0.00011026603897335008, 0.018506556749343872, -0.022688008844852448, 0.012247567996382713, -0.017807450145483017, -0.012161828577518463, 0.012887316755950451, -0.007670394144952297, -0.04840988293290138, -0.028148960322141647, 0.0035285132471472025, 0.015749700367450714, -0.004280383232980967, -0.0018879193812608719, -0.018783561885356903, 0.0075912498869001865, 0.005401593167334795, 0.029230598360300064, 0.005381806753575802, -0.004771736916154623, 0.03197426348924637, 0.010506395250558853, -0.03400563448667526, 0.012452024035155773, 0.006479932926595211, 0.005520309321582317, 0.004003378562629223, -0.0009076852584257722, 0.0008046329021453857, -0.004217727575451136, 0.006568970158696175, 0.0067734261974692345, -0.006938309874385595, 0.024798521772027016, 0.014536155387759209, -0.01235309336334467, 0.0033603317569941282, 0.017596397548913956, 0.007828682661056519, 0.013203893788158894, -0.017701923847198486, 0.008916915394365788, -0.01597394235432148, 0.010005148127675056, -0.006559077184647322, -0.04680061712861061, 0.0034295828081667423, 0.0196277666836977, -0.01614542119204998, -0.0005729711847379804, -0.04004697501659393, -0.014707634225487709, 0.0355093739926815, -0.010235985741019249, 0.006489825900644064, -0.01353366207331419, -0.027463044971227646, 0.02345306985080242, -0.004623341374099255, -0.04345017671585083, -0.006925119087100029, 0.012346498668193817, 0.04690613970160484, -0.010671279393136501, -0.019852008670568466, -0.009622618556022644, 0.0022506637033075094, 0.020049870014190674, 0.015142927877604961, 0.024178558960556984, 0.035852331668138504, 0.01859889179468155, -0.008633315563201904, -0.00542797427624464, 0.0037857319694012403, -0.03266018256545067, 0.046167463064193726, -0.0015400146367028356, 0.004161667078733444, 0.01659390516579151, -0.01805807277560234, -0.004102308768779039, -0.004069332033395767, -0.010051315650343895, -0.012405856512486935, -0.004626639187335968, 0.013757904060184956, 0.015723317861557007, 0.006189737468957901, -0.025194242596626282, -0.0037329690530896187, 0.014892304316163063, -0.00679321214556694, 0.006242500152438879, 0.01733258366584778, 0.014813159592449665, 0.004900346510112286, -0.021619562059640884, 0.004303466994315386, -0.004128690343350172, 0.0004633234639186412, -0.00368680153042078, 0.005876458249986172, 0.006905333139002323, -0.000289164949208498, -0.011324218474328518, 0.005981984082609415, 0.029362505301833153, 0.0019159496296197176, -0.016910482197999954, -0.0026496825739741325, 0.035482991486787796, 0.017939357087016106, -0.006852570455521345, -0.015208881348371506, 0.011785893701016903, 0.0037956249434500933, 0.009648999199271202, -0.033741820603609085, 0.014443820342421532, -0.02078854851424694, 0.013942573219537735, -0.022819917649030685, 0.014430629089474678, -0.017688732594251633, 0.006667900364845991, -0.020181776955723763, -0.0014105808222666383, -0.007690180093050003, 0.030734339728951454, -0.009068608283996582, -0.03738245368003845, 0.008626719936728477, 0.00184340076521039, 0.005276281386613846, -0.001937384600751102, 0.01846698485314846, 0.03229084238409996, 0.017926165834069252, -0.005681895650923252, -0.5879887938499451, -0.02603844925761223, 0.00032914927578531206, -0.0015680448850616813, 0.016844527795910835, 0.026579266414046288, 0.0072614820674061775, 0.026460550725460052, -0.043872278183698654, 0.016224564984440804, 0.005863267462700605, -0.00039757604827173054, -0.012109065428376198, 0.0041847508400678635, -0.005807206965982914, -0.0436876080930233, 0.027858765795826912, -0.006806402932852507, -0.01399533636868, 0.02754218876361847, -0.01952224038541317, 0.02190975844860077, -0.000709000276401639, 0.008883939124643803, 0.006255690939724445, 0.009134561754763126, 0.001886270591057837, -0.016184993088245392, 0.007419770583510399, 0.04682699590921402, -0.0327657088637352, -0.00611059321090579, 0.0007184811402112246, 0.0035054294858127832, 0.0512063093483448, -0.023769646883010864, -0.030233092606067657, 0.037936463952064514, -0.007248291280120611, 0.049095798283815384, -0.00015993727720342577, -0.02358497679233551, 0.045376017689704895, 0.008890533819794655, -0.00877181813120842, -0.0005931694176979363, 0.005091611295938492, -0.03287123143672943, 0.0005099031259305775, 0.026407787576317787, 0.0036933969240635633, 0.0027964292094111443, 0.010704255662858486, -0.00505203939974308, 0.008230999112129211, 0.012386070564389229, 0.03825303912162781, -0.027093704789876938, -0.008118878118693829, -0.023571787402033806, -0.022239526733756065, 0.014799969270825386, -0.009094989858567715, -0.012907103635370731, -0.0033867130987346172, 0.016171801835298538, -0.013263252563774586, -0.014311913400888443, 0.008349714800715446, -0.04041631519794464, 0.012722433544695377, -0.018044881522655487, -0.00010676225792849436, -0.017095152288675308, 0.032818470150232315, 0.040152501314878464, 0.011258265003561974, -0.00923349242657423, 0.011799084022641182, -0.005236709024757147, 0.006014960817992687, 0.0141668152064085, -0.006799807772040367, -0.017293011769652367, 0.005362020805478096, -0.0001086171978386119, -0.04331827163696289, 0.0016826391220092773, 0.007050430867820978, 0.016330091282725334, 0.012986247427761555, 0.013916191644966602, 0.01597394235432148, -0.008606933988630772, 0.011185716837644577, 0.015538648702204227, -0.013863429427146912, 0.002840947825461626, -0.0005952304927632213, -0.009431352838873863, -0.025062335655093193, -0.0028541383799165487, -0.002364433603361249, 0.015222071669995785, 0.018691226840019226, -0.027014560997486115, -0.024191750213503838, 0.006057830527424812, 0.044188857078552246, -0.0012358040548861027, -0.021870186552405357, -0.02330797351896763, -0.013507280498743057, 0.001062676077708602, 0.015604602172970772, -0.03360991179943085, 0.0015152820851653814, 0.010156841948628426, 0.03870152309536934, -0.01563098281621933, -0.004059439059346914, -0.0026018661446869373, 0.010658088140189648, 0.025985686108469963, -0.002476554596796632, 0.01428553182631731, 0.03226445987820625, -0.011581437662243843, -0.010315130464732647, 0.005579667631536722, 0.0026414382737129927, 0.003038808237761259, 0.0069185239262878895, -0.012636694125831127, 0.02440280094742775, -0.005398295354098082, 0.014536155387759209, -0.013678759336471558, 0.0249172393232584, -0.009068608283996582, 0.01233990304172039, 0.007043835707008839, 0.01730620302259922, -0.003765945788472891, 0.017081961035728455, -0.01399533636868, 0.001275376183912158, -0.01036129705607891, 0.0036406342405825853, 0.003053647931665182, 0.01114614401012659, 0.005114695057272911, 0.011660581454634666, 0.01400852669030428, -0.014839541167020798, -0.008560766465961933, -0.024904048070311546, -0.01532759703695774, 0.012392666190862656, -0.025484438985586166, 0.015472695231437683, -0.014364675618708134, -0.03366267681121826, 0.007169147487729788, -0.028755733743309975, -0.015881607308983803, -0.015499076806008816, -0.005045444238930941, -0.00778251513838768, -0.042922548949718475, 0.004791522864252329, 0.014615299180150032, -0.0067338538356125355, 0.004531006794422865, -0.0009604481165297329, -0.006799807772040367, -0.023954316973686218, -0.0051080998964607716, -0.0006574740982614458, 0.003653824795037508, 0.008870747871696949, -0.003660420188680291, 0.012913698330521584, 0.008758626878261566, 0.02549763023853302, 0.00111956091132015, 0.04381951689720154, 0.00931923184543848, -0.01129783783107996, -0.010704255662858486, -0.013942573219537735, 0.03279208764433861, 0.020432399585843086, 0.015776081010699272, 0.03168407082557678, 0.001207773806527257, 0.02341349795460701, 0.019706910476088524, -0.0012696052435785532, 0.021012790501117706, 0.02266162820160389, 0.02184380404651165, -0.00766379851847887, -0.020194966346025467, 0.010196413844823837, -0.01764916069805622, 0.011324218474328518, -0.012689456343650818, 0.00300418259575963, 0.004428778775036335, 0.0031130060087889433, -0.01846698485314846, -0.021171078085899353, 0.0009942492470145226, 0.028623826801776886, -0.0014971448108553886, -0.0114363394677639, -0.00924668274819851, -0.002465012716129422, 0.005329044070094824, -0.0019340869039297104, 0.016752192750573158, -0.012755409814417362, -0.039229150861501694, 0.00330591993406415, 0.0003174013108946383, 0.014971448108553886, 0.0020082846749573946, -0.00885755755007267, -0.034454118460416794, -0.03337248042225838, 0.006634923629462719, -0.009292850270867348, 0.0020676427520811558, 0.03128834813833237, -0.020907264202833176, 0.019192473962903023, -0.015301215462386608, -0.0022325264289975166, 0.019126519560813904, 0.02154041826725006, 0.014654871076345444, -0.005114695057272911, -0.023505832999944687, 0.03160492703318596, 0.012095875106751919, 0.06785298138856888, 0.02296501398086548, -0.03587871417403221, 0.009681976400315762, -0.024244513362646103, -0.006905333139002323, -0.02515467070043087, 0.03279208764433861, 0.024455564096570015, -0.0019274915102869272, -0.0023776243906468153, 0.004465052857995033, 0.014734015800058842, 0.041075851768255234, 0.022397814318537712, 0.03347800672054291, -0.009576451033353806, 0.01498463936150074, -0.004415587987750769, -0.024429183453321457, -0.021896567195653915, -0.01692367158830166, -0.005787421017885208, -0.018915468826889992, -0.01825593411922455, -0.0008771817665547132, 0.002448524348437786, -0.01338196825236082, 0.0018565915524959564, -0.012531167827546597, 0.012663074769079685, 0.028650207445025444, 0.015683745965361595, -0.02229228802025318, -0.02857106365263462, -0.02717284858226776, 0.04205196350812912, -0.0036505272146314383, 0.008996060118079185, -0.01371833123266697, -0.0036769085563719273, -0.000627382833044976, -0.016804955899715424, 0.002715636044740677, 0.0046332343481481075, 0.008593743667006493, 0.013461112976074219, 0.006892142351716757, -0.013560042716562748, -0.006898737978190184, 0.019139710813760757, -0.009160943329334259, -0.014509773813188076, -0.006077616475522518, 0.025853779166936874, -0.004685997497290373, -0.025589965283870697, -0.007024049758911133, 0.06262946128845215, 0.028439156711101532, 0.0017560124397277832, -0.005721467547118664, -3.0245870220824145e-05, -0.008442049846053123, 0.007716561667621136, -0.028650207445025444, 0.0005931694176979363, -0.016184993088245392, 0.008085900917649269, -0.008573956787586212, 0.015947559848427773, -0.03113006055355072, 0.034322209656238556, 0.0237168837338686, -0.02741028182208538, -0.02212080918252468, -0.025998875498771667, -0.00534883001819253, 0.004534304141998291, 0.01201673038303852, 0.011522079817950726, 0.0004616746155079454, -0.04046907648444176, -0.027357518672943115, -0.011607819236814976, -0.008132068440318108, -0.011739726178348064, -0.03566766157746315, 0.006265583913773298, 0.0005853374605067074, 0.016184993088245392, -0.01077020913362503, 0.018546128645539284, 0.002466661622747779, 0.0017180891009047627, -0.006806402932852507, 0.021039171144366264, -0.022305479273200035, 0.020063059404492378, 0.019482668489217758, 0.01713472418487072, -0.013903001323342323, 0.01685771904885769, -0.019139710813760757, 0.022028474137187004, 0.027225611731410027, 0.013573233969509602, -0.0018450496718287468, -0.0027304755058139563, -0.013771094381809235, -0.026684792712330818, 0.03767265006899834, -0.006295263301581144, 0.015512267127633095, 0.009767715819180012, 0.04239492118358612, -0.004026462323963642, 0.004217727575451136, 0.012696051970124245, 0.025312960147857666, -0.0011945830192416906, -0.019495859742164612, 0.0005144374445080757, -0.012010135687887669, 0.0031113571021705866, 0.0027716965414583683, -0.013639187440276146, -0.025880159810185432, 0.022068046033382416, 0.00023990591580513865, -0.06236564368009567, -0.003005831502377987, -0.010836162604391575, 0.03854323551058769, -0.036063384264707565, -0.014536155387759209, 0.010170032270252705, -0.010757018812000751, 0.0062985606491565704, -0.03184235841035843, -0.005704979412257671, -0.005279579199850559, 0.0012902156449854374, -0.03168407082557678, -0.001614212291315198, 0.00014654046390205622, -0.01801850087940693, -0.005190541967749596, 0.019838817417621613, -0.04809330403804779, -0.03566766157746315, 0.010348106734454632, 0.016409235075116158, 0.016778575256466866, 0.012003540061414242, -6.693251634715125e-05, -0.00021022683358751237, 0.02068302221596241, -0.009556664153933525, -0.030470523983240128, -0.00757805909961462, -0.015894796699285507, 0.02109193429350853, -0.0036076572723686695, 0.03598424047231674, -0.012399260886013508, -0.0017098449170589447, 0.02894040383398533, 0.04310721904039383, 0.014100861735641956, 0.02788514643907547, 0.0017692031105980277, -0.012682861648499966, 0.021118316799402237, 0.0057478491216897964, 0.01877037063241005, -0.00856736209243536, 0.01952224038541317, 0.0008656398858875036, -0.05672002583742142, 0.010572348721325397, -0.014668062329292297, -0.031077297404408455, -0.001894514774903655, 0.02996927872300148, 0.018915468826889992, -0.02214719168841839, 0.023321162909269333, 0.03669653832912445, 0.00920051522552967, 0.010968069545924664, -0.007327435538172722, 0.021514037624001503, 0.0005197961581870914, -0.0065788631327450275, 0.0027618035674095154, 0.007050430867820978, -0.0016603798139840364, 0.017345774918794632, -0.028887640684843063, 0.02719923108816147, 0.023835601285099983, 0.011700154282152653, -0.009167538955807686, 0.0075516775250434875, -0.040706511586904526, -0.030945390462875366, 0.0006929241353645921, -0.0012349796015769243, 0.0180844534188509, -0.001379252877086401, -0.018044881522655487, -0.011258265003561974, -0.011053808964788914, -0.007221910171210766, 0.00032193560036830604, -0.00691192876547575, -0.0395984910428524, -0.02580101601779461, -0.019825628027319908, 9.619938646210358e-05, -0.004514518193900585, -0.018480176106095314, -0.032343603670597076, 0.0035581921692937613, 0.0030256176833063364, 0.00757805909961462, 0.009101585485041142, 0.03152577951550484, 0.008204617537558079, -0.046299368143081665, -0.007169147487729788, 7.651638588868082e-05, -0.03147301822900772, -0.024244513362646103, 0.00040107982931658626, 0.009325827471911907, 0.01573650911450386, 0.042342156171798706, 0.03044414333999157, 0.004933323245495558, -0.01387661974877119, 0.0040825228206813335, -0.002108863787725568, -0.0022951823193579912, 0.019205663353204727, -0.008151854388415813, 0.013982145115733147, -0.006071021314710379, 0.023941125720739365, 0.009180729277431965, -0.012036517262458801, -0.02515467070043087, 0.039202772080898285, -0.016303708776831627, 0.006351323798298836, 0.013955764472484589, -0.048515405505895615, -0.018071264028549194, -0.007545082364231348, 0.002936580451205373, -0.003037159563973546, -0.008501408621668816, -0.01717429608106613, 0.00949071068316698, -0.015063783153891563, 0.018678035587072372, 0.024020271375775337, 0.0020214752294123173, -0.031182821840047836, 0.00011562475992832333, -0.0031360897701233625, 0.013507280498743057, -0.022160381078720093, 0.01048001367598772, -0.023189255967736244, 0.020049870014190674, 0.007558273151516914, 0.02504914626479149, 0.0002920504193753004, 0.013837047852575779, 0.027040941640734673, 0.0010107376147061586, 0.022688008844852448, -0.007367007900029421, -0.023373926058411598, -0.009108181111514568, 4.104060644749552e-05, -0.02205485664308071, -0.03007480315864086, -0.00856736209243536, -0.019548622891306877, -0.010301939211785793, 0.0057478491216897964, 0.01342813577502966, 0.009055417962372303, -0.0010206307051703334, -0.010572348721325397, -0.014245959930121899, -0.009589641354978085, 0.037936463952064514, 0.02167232520878315, 0.01129783783107996, 0.03669653832912445, 0.019957534968852997, 0.002951419912278652, -0.029309742152690887, -0.008033138699829578, 0.00011861327948281541, 0.02938888780772686, 0.05294748395681381, -0.01627732813358307, -0.022068046033382416, -0.003957211039960384, 0.01069766003638506, -0.02799067273736, -0.02857106365263462, 0.03337248042225838, 0.009009250439703465, -0.01857251115143299, -0.020841311663389206, 0.011370385996997356, -0.025510819628834724, 0.007175742648541927, -0.03590509295463562, -0.024046652019023895, -0.024112606421113014, -0.013744712807238102, -0.01760958880186081, 0.019746482372283936, -0.011271456256508827, 0.005876458249986172, 0.017042389139533043, 0.01607946678996086, 0.00476843910291791, -0.01750406250357628, -0.039097245782613754, 0.020907264202833176, 0.01264328882098198, 0.03128834813833237, -0.015380360186100006, -0.024284085258841515, 0.036907587200403214, 0.0004538426292128861, 0.010024935007095337, -0.023782838135957718, -0.016369663178920746, 0.045956410467624664, 0.0012737272772938013, -0.01498463936150074, -0.008844366297125816, 0.010585539042949677, 0.025748252868652344, 0.008105686865746975, 0.003089922247454524, 0.008132068440318108, -0.010994451120495796, -0.004122094716876745, 0.010143650695681572, -0.017345774918794632, 0.02590654231607914, -0.013434731401503086, 0.0002879283274523914, 0.006367811933159828, -0.018968231976032257, -0.01061192061752081, 0.008699269033968449, -0.043265506625175476, -0.006700877100229263, -0.016673048958182335, -0.000288134440779686, 0.008046329021453857, 0.01283455453813076, 0.018889086320996284, 0.0046332343481481075, 0.05096887797117233, -0.03297675773501396, 0.00778251513838768, 0.010123864747583866, 0.007175742648541927, 0.0023116706870496273, -0.0029266872443258762, -0.004976192954927683, -0.00952368788421154, 0.022199952974915504, -0.018005309626460075, 0.0015218773623928428, -0.02113150618970394, 0.009391780942678452, 0.012775195762515068, 0.007973779924213886, 0.014470201916992664, 0.026170356199145317, 0.012452024035155773, 0.01284774485975504, -0.002474905690178275, -0.01853293739259243, -0.01990477181971073, 0.014997829683125019, 0.006852570455521345, 0.01204970758408308, -0.00691192876547575, 0.0075516775250434875, -0.0025408591609448195, -0.0070108589716255665, 0.012663074769079685, -0.02249014936387539, -0.04656318202614784, 0.017899785190820694, -0.028280867263674736, -0.02672436460852623, -0.00545105803757906, -0.02409941516816616, -0.015525457449257374, -0.01900780387222767, -0.010341511107981205, 0.0012910400982946157, -0.018176788464188576, -0.019812436774373055, 0.03564127907156944, -0.015776081010699272, 0.011456125415861607, 0.0021055659744888544, -0.014325103722512722, -0.015644174069166183, -0.014997829683125019, -0.021659135818481445, -0.04031078889966011, -0.02962631918489933, 0.03996783122420311, 0.0009620969067327678, -0.025167861953377724, -0.02345306985080242, -0.022542912513017654, -0.035720422863960266, -0.0034130944404751062, 0.00790123175829649, 0.01880994252860546, 0.03717140108346939, 0.0112648606300354, -0.0059457095339894295, 0.010908711701631546, -0.008890533819794655, 0.0041880481876432896, 0.012907103635370731, 0.00737360306084156, 0.0024732567835599184, -0.014536155387759209, -0.014892304316163063, -0.01812402717769146, -0.025299768894910812, -0.00906201358884573, 0.0017955844523385167, 0.00035120247048325837, 0.001990147400647402, 0.02386198192834854, 0.00080298405373469, 0.0009348911116831005, -0.01271583791822195, -0.016409235075116158, -0.02102598175406456, 0.021962521597743034, -0.010163436643779278, -0.029362505301833153, 0.00484758336097002, 0.01801850087940693, 0.013599615544080734, 0.002483149990439415, -0.003482345724478364, -0.00320039433427155, -0.00389125756919384, 0.013164321891963482, -0.04120775684714317, -0.0235454048961401, 0.006750342436134815, -0.007175742648541927, 0.026473741978406906, 0.0024106011260300875, 0.01056575309485197, 0.017424918711185455, -0.0005709101096726954, 0.005744551308453083, -0.02369050309062004, 0.018071264028549194, -0.009306041523814201, 0.0004641478881239891, 0.006397491320967674, -0.018889086320996284, -0.004303466994315386, 0.0058434815146028996, 0.015353978611528873, -0.011225288733839989, 0.00993259996175766, 0.01717429608106613, -0.009556664153933525, -0.03772541135549545, -0.0006875654216855764, 0.022411005571484566, -0.01233990304172039, -0.0054081883281469345, -0.004247406497597694, -0.008409073576331139, -0.009002654813230038, -0.02799067273736, 0.018546128645539284, -0.038965336978435516, 0.026684792712330818, -0.004280383232980967, 0.009035632014274597, -0.020669832825660706, 0.009418162517249584, 0.01668624021112919, -0.023967508226633072, -0.002603515051305294, 0.24376419186592102, -0.005246602464467287, 0.004649722948670387, 0.017279820516705513, -0.00670747272670269, 0.003831899259239435, 0.02801705338060856, -0.006034746766090393, -0.025616345927119255, 0.01135060004889965, -0.01098785549402237, -0.020867692306637764, 0.00438590906560421, -0.0033323015086352825, 0.00940497126430273, 0.000625321757979691, -0.010473418049514294, -0.017767878249287605, -0.009569855406880379, -0.009068608283996582, 0.031156441196799278, -0.002458417322486639, -0.007182337809354067, -0.023611359298229218, 0.0038648759946227074, 0.0008042206754907966, -0.021751469001173973, 0.020867692306637764, 0.03611614555120468, -0.007479128893464804, -0.025167861953377724, 0.025075526908040047, 0.0045804716646671295, -0.010493204928934574, 0.020392827689647675, -0.010288748890161514, 0.03659101203083992, 0.02272758260369301, 0.02962631918489933, 0.012465214356780052, -0.008303548209369183, -0.0016917077591642737, -0.00515426741912961, -0.019363952800631523, -0.01887589693069458, -0.001485602930188179, -0.003782434156164527, -0.01747768186032772, 0.016633477061986923, 0.011113167740404606, -0.019680529832839966, -0.020432399585843086, 0.027832383289933205, 0.025207433849573135, -0.006080914288759232, -0.015340788289904594, 0.045718979090452194, 0.004722271580249071, 0.043845899403095245, 0.022859489545226097, -0.013395159505307674, 0.0464312769472599, -0.004989383742213249, 0.01295327115803957, -0.04358208552002907, 0.006958095822483301, -0.028280867263674736, 0.014958257786929607, 0.005830290727317333, -0.00447164848446846, -0.0032646991312503815, -0.015947559848427773, -0.01771511510014534, -0.010282153263688087, -0.02328159101307392, -0.018308695405721664, 0.04822521284222603, -0.006512909661978483, 0.040152501314878464, 0.02867658995091915, 0.020194966346025467, 0.009503901936113834, -0.009734738618135452, 0.005579667631536722, -0.012485000304877758, -0.040363553911447525, 0.013929382897913456, -0.006209523417055607, -0.030760720372200012, 0.004808011464774609, -0.0032053408212959766, -0.0057478491216897964, 0.010552562773227692, -0.001148415612988174, -0.0004971246235072613, -0.0030140758026391268, -0.002374326577410102, 0.018928660079836845, 0.006885547190904617, -0.0027436662930995226, -0.02150084637105465, 0.014786778017878532, 0.02190975844860077, 0.009180729277431965, -0.019667338579893112, -0.007841872982680798, -0.0020181776490062475, 0.007215314544737339, 0.005233411677181721, -0.013203893788158894, 0.008672887459397316, -0.0491485595703125, 0.010315130464732647, 0.001978605519980192, -0.0003540879406500608, 0.014720824547111988, -0.025141481310129166, -0.034322209656238556, 0.0026348428800702095, 0.005167458206415176, 0.008916915394365788, -0.00815845001488924, -0.017939357087016106, -0.020603878423571587, -0.005088313948363066, -0.01904737576842308, -0.00904222670942545, -0.020973218604922295, -0.01324346661567688, -0.024152178317308426, 0.013494089245796204, -0.01932438090443611, 0.03382096439599991, -0.002065993845462799, 0.008527789264917374, 0.0006010014330968261, 0.0029266872443258762, 0.013269847258925438, -0.008184831589460373, 0.002654629060998559, -0.01825593411922455, 0.0038121133111417294, -0.006308454088866711, -0.02242419496178627, -0.010156841948628426, -0.011528674513101578, 0.01590798795223236, 0.008903725072741508, -0.009596236981451511, 5.4566229664487764e-05, -0.04244768247008324, -0.021184269338846207, -0.0013042307691648602, 0.010968069545924664, 0.0249172393232584, -0.014918685890734196, -0.026671601459383965, -0.05624515935778618, -0.01836145855486393, 0.03624805435538292, 5.848221917403862e-05, -0.016053086146712303, 0.012729029171168804, -0.016844527795910835, -0.00783527735620737, -0.022912250831723213, -0.16535866260528564, 0.028043435886502266, 0.026632029563188553, -0.04434714466333389, 0.020458780229091644, -0.011594627983868122, -0.015789272263646126, -0.004669508896768093, 0.0021665729582309723, -0.016092658042907715, 0.022819917649030685, -0.0004361176397651434, -0.0006310926983132958, 0.0025919731706380844, -0.002029719529673457, 0.01284774485975504, -0.027726858854293823, 0.008422263897955418, 0.05471503734588623, 0.010011743754148483, 0.05033572390675545, -0.04218386858701706, -0.0036769085563719273, 0.039677634835243225, 0.00571816973388195, 0.0069185239262878895, -0.020933646708726883, -0.014628490433096886, 0.006051235366612673, -0.013599615544080734, -0.00534883001819253, 0.015749700367450714, 0.010341511107981205, 0.015340788289904594, 0.027357518672943115, -0.008705864660441875, 0.021553609520196915, 0.009616022929549217, -0.0172402486205101, 0.009754525497555733, 0.01148250699043274, 0.0351664163172245, -0.0008413195610046387, -0.021039171144366264, -0.00935220904648304, 0.01527483481913805, 0.013916191644966602, -0.006852570455521345, -0.009180729277431965, -0.008540980517864227, -0.0015037402044981718, -0.031182821840047836, -0.01799212023615837, -0.024521516636013985, 0.04308083653450012, 0.005972091108560562, 0.011344004422426224, 0.0019736590329557657, -0.00729445880278945, -0.008112282492220402, -0.0074989148415625095, -0.015472695231437683, 0.005952304694801569, -0.008850961923599243, -0.014536155387759209, -0.0074989148415625095, -0.008376096375286579, 0.030180329456925392, -0.017978928983211517, 0.016527950763702393, 0.007479128893464804, -0.02167232520878315, 0.0050355507992208, -0.008349714800715446, 0.007090003229677677, -0.002502935938537121, -0.019100138917565346, 0.02717284858226776, 0.01784702204167843, -0.033768199384212494, 0.0033323015086352825, 0.048172447830438614, 0.013612805865705013, -0.02485128492116928, 0.022648436948657036, -0.00194562878459692, 0.010644897818565369, -0.0020346660166978836, -0.029362505301833153, -0.0249172393232584, 0.04308083653450012, -0.012973057106137276, 0.004610151052474976, -0.005309258121997118, 0.012669670395553112, 0.001203651656396687, 0.005002574063837528, -0.004356229677796364, -0.019706910476088524, -0.01545950397849083, 0.00803973339498043, -0.021659135818481445, -0.004893750883638859, 0.018915468826889992, 0.02194933034479618, 0.03136749193072319, -0.014496582560241222, 0.032950375229120255, 0.00349883409217, 0.0069712866097688675, -0.02351902425289154, 0.012419046834111214, 0.007703370880335569, 0.011996944434940815, 0.02996927872300148, 0.028069816529750824, -0.006931714713573456, 0.007334031164646149, -0.002577133709564805, 0.006931714713573456, -0.016119038686156273, -0.01498463936150074, 0.012814768590033054, 0.0256031546741724, 0.0012531168758869171, -0.01917928270995617, -0.0450594425201416, -0.007604440674185753, 0.016092658042907715, 0.031763214617967606, -0.0023017777130007744, 0.02706732414662838, -0.0019835520070046186, 0.021382130682468414, 0.006905333139002323, 0.00998536217957735, -0.0036043596919625998, -0.04033717140555382, 0.0007522823289036751, -0.006958095822483301, -0.003488941118121147, 0.016712620854377747, 0.011911205016076565, -0.006878952030092478, 0.004897048696875572, 0.008930105715990067, -0.0019703612197190523, 0.007518700789660215, 0.003808815497905016, -0.012313521467149258, -0.012273949570953846, -0.010816376656293869, -0.0262758806347847, 0.024020271375775337, 0.014971448108553886, 0.006479932926595211, 0.04284340515732765, 0.00272223143838346, -0.012445428408682346, -0.015485885553061962, 0.002211091574281454, 0.00437601562589407, -0.018678035587072372, -0.009787501767277718, 0.020221348851919174, -0.026869462803006172, -0.001524350605905056, -0.018203170970082283, 0.007973779924213886, -0.002799726789817214, -0.020471971482038498, -0.01030853483825922, 0.005794016644358635, 0.010235985741019249, -0.00042828565347008407, -0.009497306309640408, -0.03218531608581543, -0.0013174214400351048, -0.01726663112640381, -0.012405856512486935, 0.042342156171798706, 0.02536572329699993, 0.0016809902153909206, 0.0011797435581684113, -0.032712943851947784, 0.006938309874385595, 0.0063908956944942474, 0.0034790479112416506, -0.0167258121073246, 0.013546852394938469, 0.009418162517249584, 0.02775323949754238, -0.030233092606067657, -0.027251992374658585, 0.016712620854377747, -0.0038022203370928764, 0.009286255575716496, 0.02283310703933239, -0.015248453244566917, 0.011733130551874638, -0.03403201326727867, -0.02453470788896084, -0.016699429601430893, -0.02382241003215313, 0.044558197259902954, -0.007228505332022905, -0.014074480161070824, -0.0043298485688865185, -0.005197137128561735, -0.000588635157328099, 0.010710851289331913, 0.015828844159841537, -0.011462721042335033, 0.019166091457009315, -0.0021022683940827847, -0.04598279297351837, 0.005091611295938492, 0.0024204941000789404, -0.006463444791734219, -0.021105125546455383, -0.010143650695681572, -0.00964240450412035, -0.01720067672431469, 0.01747768186032772, -0.01069766003638506, 0.02562953718006611, -0.04600917175412178, -0.043502938002347946, -0.10156841576099396, 0.01544631365686655, -0.0038978527300059795, -0.023875173181295395, 0.017358966171741486, -0.006648114416748285, 0.006493123713880777, -0.015987131744623184, 0.007169147487729788, -0.03395286947488785, -0.010354702360928059, -0.012689456343650818, 0.0031113571021705866, -0.002671117428690195, -0.017385346814990044, -0.013131345622241497, 0.02085450291633606, 0.009952385909855366, -0.0024106011260300875, 0.013316014781594276, 0.016409235075116158, -0.006905333139002323, 0.028834877535700798, 0.007386793848127127, -0.021751469001173973, 0.029995659366250038, 0.02386198192834854, 0.028966784477233887, -0.009055417962372303, -0.03915000706911087, -0.010374488309025764, -0.005098206922411919, -0.0012860936112701893, 0.008033138699829578, 0.023703694343566895, 0.01726663112640381, 0.015683745965361595, 0.006737151648849249, 0.032132554799318314, 0.012399260886013508, -0.02010263130068779, -0.01010407879948616, 0.011528674513101578, 0.005975388456135988, 0.0022209847811609507, -0.0008771817665547132, 0.0016183344414457679, 0.004969597328454256, 0.009754525497555733, 0.038068369030952454, 0.014931876212358475, 0.02405984327197075, -0.023426689207553864, 0.0035548945888876915, 0.002158328890800476, -0.04120775684714317, 0.015657365322113037, 0.010137055069208145, -0.013731522485613823, -0.028729351237416267, 0.032950375229120255, 0.004837690386921167, 0.026697983965277672, -0.002209442900493741, -0.008679483085870743, -0.014311913400888443, -0.02164594456553459, -0.007334031164646149, 0.00407922500744462, -0.02242419496178627, -0.03331971541047096, -0.021118316799402237, -0.0005086665041744709, 0.003192150266841054, 0.011904609389603138, -0.0065755657851696014, -0.006572267971932888, -0.008514598943293095, -0.022819917649030685, 0.0317368321120739, -0.0027618035674095154, -0.0068657612428069115, -0.05445122346282005, 0.0019753079395741224, 0.03487621992826462, 0.014245959930121899, 0.0030948687344789505, 0.011700154282152653, -0.008883939124643803, -0.0033619804307818413, -0.02481171302497387, -0.006001770030707121, 0.011884823441505432, 0.022239526733756065, 0.019166091457009315, 0.043265506625175476, 0.007571463938802481, 0.005629132501780987, 0.030971771106123924, 0.0012621853966265917, 0.027568569406867027, -0.00891031976789236, -0.005582964979112148, -0.015353978611528873, -0.002501287031918764, 0.013560042716562748, -0.011185716837644577, -0.04957066476345062, -0.005394997540861368, 0.011825465597212315, 0.0001827118539949879, 0.02304415963590145, -0.024692997336387634, 0.0085343848913908, -0.033029522746801376, -0.00603144895285368, -0.014219578355550766, -0.027674095705151558, -0.02986375242471695, 0.018044881522655487, 0.03099815361201763, 0.019495859742164612, 0.021237032487988472, -0.004577173851430416, 0.017358966171741486, -0.015090164728462696, 0.009068608283996582, -0.02478533238172531, 0.010005148127675056, -0.009734738618135452, -0.02150084637105465, 0.022925442084670067, -0.021105125546455383, -0.027937909588217735, -0.01358642429113388, 0.015657365322113037, 3.7356483517214656e-05, -0.013454517349600792, -0.0194562878459692, 0.08478984236717224, -0.0011047214502468705, -0.005312555935233831, -0.015644174069166183, -0.008316738530993462, -0.016330091282725334, 0.011113167740404606, 0.022239526733756065, -0.013170917518436909, -0.017965737730264664, -0.0013067040126770735, -0.0004847583477385342, 0.008409073576331139, -0.026988178491592407, -0.01230692584067583, -0.019100138917565346, -0.01634328067302704, 0.03825303912162781, -0.02925698086619377, 0.036300815641880035, 0.043397415429353714, 0.0037263736594468355, 0.005477439612150192, -0.002545805647969246, -0.00978090614080429, 0.0018565915524959564, 0.03471793234348297, -0.00998536217957735, -0.009339017793536186, -0.002638140693306923, 0.028650207445025444, 0.008587148040533066, -0.007169147487729788, -0.018862705677747726, -0.01567055471241474, 0.005869863089174032, 0.012485000304877758, 0.0074065797962248325, 0.03184235841035843, -0.0020115822553634644, 0.00602485379204154, 0.016066277399659157, -0.033055901527404785, -0.03484983742237091, 0.004316657781600952, 0.010789995081722736, -0.002699147677049041, -0.012478405609726906, -0.010051315650343895], "245e052e-d059-43e0-ac54-ff8eaec19421": [-0.030308252200484276, -0.02098901756107807, 0.017504673451185226, -0.039461564272642136, -0.019606340676546097, 0.019564861431717873, -0.01141398772597313, -0.0263952799141407, -0.010909311473369598, -0.003937168978154659, 0.02945099212229252, 0.0057899546809494495, -0.01562423538416624, -0.021279379725456238, -0.010141925886273384, -0.01065351627767086, 0.009823910892009735, -0.0180992241948843, 0.023228952661156654, -0.01413785945624113, 0.01060512289404869, 0.0005314659792929888, -0.024639280512928963, -0.014172425493597984, -0.007037819363176823, 0.018016263842582703, 0.0015900770667940378, -0.020657174289226532, -0.005306018050760031, -0.00759088946506381, 0.02085074968636036, -0.0022796865087002516, -0.011773483827710152, -0.0034463191404938698, -0.007528669200837612, 0.00519194733351469, -0.0019737696275115013, 0.0074042282067239285, -0.002074013464152813, -0.007348921149969101, 0.012734442949295044, 0.017587635666131973, 0.02462545409798622, 0.00030310844886116683, -0.019896702840924263, -0.010128099471330643, -0.012824317440390587, -0.004901585169136524, -0.005613663233816624, 0.00921553373336792, 0.008565676398575306, 0.012008538469672203, -0.03384790197014809, 0.011953231878578663, 0.019716955721378326, 0.027847088873386383, -0.010135012678802013, -0.0011216956190764904, 0.003795444732531905, -0.017518501728773117, 0.013771450147032738, 0.009561202488839626, -0.03025294467806816, -0.015264739282429218, 0.016937777400016785, 0.009844651445746422, 0.008199267089366913, 0.01042537484318018, -0.009561202488839626, 0.014849936589598656, -0.004428018815815449, 0.03495404124259949, -0.023311913013458252, 0.004887758754193783, 0.021901583299040794, 0.0034203939139842987, -0.014200079254806042, 0.012658395804464817, 0.015721023082733154, -0.006916834972798824, -0.00678548077121377, -0.017131352797150612, -0.008572589606046677, -0.003798901569098234, 0.006432898808270693, -0.009187879972159863, -0.009803170338273048, 0.027100443840026855, -0.0030971935484558344, -0.022841801866889, 0.012402600608766079, 0.02151443436741829, 0.00217944267205894, 0.010854003950953484, -0.013066285289824009, 0.021929236128926277, -0.04004228860139847, 0.019039444625377655, -0.008392841555178165, -0.017518501728773117, -0.02317364513874054, 0.01119275949895382, -0.028234237805008888, -0.00734200794249773, -0.05973159149289131, -0.0030747251585125923, 0.014794629998505116, 0.000556094862986356, 0.0026080720126628876, -0.0003348667814861983, -0.03434566408395767, 0.02672712132334709, -0.008800731040537357, -0.05220983549952507, -0.006273890845477581, 0.012236679904162884, 0.019385112449526787, -0.034594547003507614, -0.023381046950817108, 0.012955671176314354, 0.013398127630352974, 0.01092313788831234, 0.01722813956439495, 0.022579094395041466, 0.02020089142024517, 0.0022762299049645662, -0.01898413710296154, -0.030059369280934334, 0.016052864491939545, -0.03268645331263542, 0.04325009509921074, 0.014213906601071358, 0.020283851772546768, 0.014587228186428547, -0.03384790197014809, 0.011358681134879589, -0.0047736880369484425, -0.005738104227930307, -0.02770882099866867, 0.004825538024306297, 0.028317198157310486, 0.03661325201392174, 0.002393757225945592, -0.011393248103559017, -0.012050018645823002, 0.018265146762132645, 0.021597394719719887, 0.0033737285993993282, -0.007867424748837948, 0.004704554099589586, 0.0009704654803499579, -0.029561607167124748, -0.0162049587816, -0.00927084032446146, -0.0019875962752848864, 0.005610206630080938, 0.014027245342731476, 0.01623261347413063, -0.009976005181670189, -0.01775355637073517, 0.022689707577228546, 0.03700040280818939, 0.011704349890351295, -0.026021957397460938, -0.016910124570131302, 0.02064334787428379, 0.02528913877904415, -0.010964618064463139, -0.003591500222682953, -0.0073281810618937016, 0.019620168954133987, 0.0026581939309835434, -0.01109597273170948, 0.012229766696691513, -0.014158599078655243, 0.016467668116092682, 0.004303578287363052, 0.010694996453821659, 0.012250506319105625, -0.0015062523307278752, 0.0005776992184109986, -0.003698657499626279, 8.015198545763269e-05, 0.038908492773771286, -0.01187027059495449, -0.008434321731328964, 0.012789750471711159, 0.010812523774802685, 0.01518177893012762, -0.012741356156766415, 0.029755180701613426, 0.03796827420592308, 0.00876616407185793, 0.004078893456608057, -0.5946611762046814, -0.03171858191490173, -0.0290085356682539, -0.0019201908726245165, 0.0384107306599617, 0.005717364139854908, -0.006322284694761038, 0.0032734847627580166, -0.011254980228841305, 0.04159088432788849, -0.01732492633163929, 0.020933710038661957, -0.031054895371198654, -0.02470841445028782, 0.0015529176453128457, -0.03243757039308548, 0.013799103908240795, -0.01229890063405037, 0.0073350947350263596, -0.004455672577023506, -0.01798861101269722, 0.0075217559933662415, -0.0030971935484558344, 0.004922325722873211, 0.009823910892009735, 0.01109597273170948, -0.013605528511106968, -0.016039038076996803, 0.02098901756107807, 0.02351931296288967, -0.011068318970501423, -0.014034158550202847, 0.017463194206357002, 0.0074042282067239285, 0.049057334661483765, -0.009581943042576313, -0.012547781690955162, 0.021915409713983536, -0.0031715123914182186, 0.03611548990011215, -0.017836516723036766, -0.018928829580545425, 0.012464821338653564, -0.00894591212272644, 0.008828384801745415, 0.0009047884377650917, 0.004217160865664482, -0.00626697763800621, -0.012070759199559689, 0.002991764573380351, 0.016923950985074043, 0.007618543226271868, 0.023353392258286476, -0.019938183948397636, 0.007169173564761877, 0.010231800377368927, 0.02592516876757145, -0.04449450224637985, -0.009478242136538029, -0.01621878519654274, -0.011158192530274391, 0.028317198157310486, 0.003563846694305539, -0.02925741858780384, 0.011158192530274391, -0.0005738104227930307, -4.229043406667188e-05, -0.0008680610917508602, 0.0014086008304730058, -0.014642535708844662, 0.011801136657595634, -0.02096136286854744, -0.0077637238427996635, -0.014435133896768093, 0.006305001210421324, 0.0505782775580883, 0.010128099471330643, -0.02595282346010208, 0.005067506339401007, 0.022703535854816437, -0.000967872969340533, 0.006031922530382872, -0.032631147652864456, -0.0073281810618937016, -0.011282633990049362, -0.01114436611533165, -0.044522158801555634, 0.0005435643834061921, 0.01997966319322586, 0.006816591136157513, 0.009609595872461796, 0.03163561969995499, -0.005136640276759863, -0.0501081682741642, -0.0053544114343822, 0.004186050500720739, -0.017601462081074715, -0.004704554099589586, 0.002713500987738371, -0.0188873503357172, -0.04018055647611618, 0.02396176941692829, -0.005586009938269854, 0.0012107053771615028, 0.05845952779054642, -0.02958925999701023, -0.010529075749218464, 0.009526635520160198, 0.013273687101900578, -0.008067912422120571, -0.012603089213371277, -0.005620576906949282, -0.01778120920062065, -0.009111832827329636, 0.024017076939344406, -0.028082143515348434, 0.01832045242190361, 0.00899430550634861, 0.022122811526060104, -0.003975192550569773, -0.0013973666355013847, 0.012651482596993446, 0.03216103836894035, -3.12722368107643e-05, 0.003954452462494373, 0.0035137245431542397, 0.021154938265681267, -0.020173238590359688, -0.009747863747179508, 0.012762096710503101, -0.0032423746306449175, 0.0019599427469074726, 0.01887352392077446, -0.015029684640467167, 0.007390401791781187, 0.0008270128746517003, 0.016937777400016785, -0.02661650814116001, 0.0289255753159523, 0.010577469132840633, -0.019799916073679924, -0.0032147211022675037, 0.014573401771485806, -0.01645384170114994, -0.0058936551213264465, -0.012692962773144245, -0.03268645331263542, 0.00581760797649622, 0.005948962178081274, 0.0029883079696446657, 0.012561609037220478, -0.0077360705472528934, -0.002706587780267, 0.020352985709905624, -0.020007317885756493, 0.0023730171378701925, -0.00900121871381998, -0.03467750549316406, 0.011891011148691177, -0.015250912867486477, 0.003347803605720401, 0.002818930195644498, -0.021099630743265152, 0.002006608061492443, -0.013757622800767422, -0.012762096710503101, 0.010307847522199154, 0.009409108199179173, -0.012630742974579334, -0.033045947551727295, -0.035700686275959015, -0.005223057232797146, 0.016854817047715187, 0.004555916413664818, 0.020034970715641975, -0.011953231878578663, -0.02328425832092762, 0.017283447086811066, -0.022703535854816437, -0.006854614708572626, 0.010086619295179844, 0.014027245342731476, -0.00013891569687984884, -0.004936152137815952, 0.027847088873386383, 0.023339565843343735, 0.026422932744026184, 0.005862544756382704, -0.012699875980615616, -0.001154534169472754, 0.017504673451185226, 0.021099630743265152, -0.007397314999252558, 0.032631147652864456, 0.026657987385988235, 0.0008006556308828294, 0.004009759519249201, 0.013875151053071022, 0.009008131921291351, 0.02726636454463005, 0.029285071417689323, 0.012789750471711159, 0.0032786696683615446, -0.02636762522161007, 0.015596581622958183, -0.029727527871727943, 0.01866612210869789, -0.021058151498436928, 0.010121186263859272, -0.007390401791781187, -0.012983324937522411, -0.021542087197303772, -0.01494672428816557, -0.0077637238427996635, 0.01109597273170948, -0.0012694691540673375, 0.0029779376927763224, -0.010618949308991432, 0.01863846927881241, 0.020781615749001503, 0.014711669646203518, -0.003537921467795968, 0.027058962732553482, -0.024998776614665985, 0.01753232814371586, 0.0009108376107178628, -0.007162260357290506, 0.019288325682282448, -0.010715737007558346, -0.016246439889073372, -0.006681780330836773, -0.01534770056605339, 0.008344448171555996, -0.007210653740912676, 0.02470841445028782, -0.01988287642598152, 0.016398534178733826, -0.010342414490878582, 0.02187393046915531, 0.008918258361518383, -0.010390807874500751, -0.002006608061492443, -0.01644001342356205, -0.014518095180392265, 0.02450101263821125, 0.01319763995707035, 0.04391378164291382, 0.022703535854816437, -0.007134606596082449, 0.005053679458796978, -0.03755347058176994, -0.006056119687855244, -0.011842617765069008, 0.023201297968626022, 0.01645384170114994, 0.005693166982382536, 0.0026651073712855577, 0.027570553123950958, 0.011835703626275063, 0.026450585573911667, 0.0040063029155135155, 0.03390320762991905, 0.01822366565465927, 0.0037055709399282932, 0.01642618700861931, -0.038770224899053574, -0.0002214441483374685, -0.024805201217532158, 0.009409108199179173, -0.012900364585220814, -0.026976002380251884, -0.011462381109595299, -0.013038631528615952, -0.02197071723639965, 0.024473359808325768, -0.022026024758815765, 0.01985522359609604, 0.03340544551610947, 0.03849369287490845, -0.010017485357820988, -0.046762093901634216, -0.011842617765069008, 0.03498169407248497, -0.00653659924864769, 0.015831636264920235, 0.005907482001930475, -0.021320858970284462, -0.01064660307019949, -0.02296624332666397, 0.019924357533454895, 0.01468401588499546, 0.006370678078383207, 0.011337940581142902, -0.007023992482572794, -0.02329808473587036, 0.012596176005899906, 0.02174948900938034, -0.010777956806123257, -0.002996949478983879, -0.01931598037481308, 0.01512647233903408, -0.005233427509665489, -0.009015045128762722, -0.021320858970284462, 0.03937860578298569, 0.01450426783412695, -0.007017079275101423, -0.03260349482297897, -0.008475801907479763, -0.01655062846839428, 0.004517892841249704, -0.024998776614665985, 0.0012072487734258175, 0.008150873705744743, 0.0128035768866539, 0.008607156574726105, 0.016758030280470848, -0.007307440973818302, 0.004065066576004028, 0.029561607167124748, -0.017186658456921577, -0.02992110140621662, -0.028676694259047508, -0.011932491324841976, -0.019813742488622665, 0.020021144300699234, 0.011517688632011414, -0.02274501509964466, -0.02958925999701023, -0.022841801866889, -0.0339861698448658, 0.007825944572687149, 0.005734647624194622, -0.03431801125407219, -0.010854003950953484, 0.0029813945293426514, 0.00018525694031268358, 0.010570555925369263, 0.022316385060548782, 0.007777550723403692, -0.013647009618580341, -0.008835298009216785, 0.027128096669912338, -0.0055687264539301395, 0.01753232814371586, -0.002571776742115617, 0.00343594909645617, 0.007203740533441305, 0.003729767631739378, -0.00877999048680067, -0.0016514332965016365, 0.016619762405753136, 0.011738916859030724, -0.03653029352426529, 0.0014587228652089834, 0.006301544606685638, 0.008869864977896214, 0.019910529255867004, 0.006920292042195797, 0.029119150713086128, 0.006605733186006546, 0.051573801785707474, -0.004282838199287653, 0.001508844899944961, 0.001819946919567883, -0.00849654246121645, 0.00965799018740654, 0.019163886085152626, -0.003396197222173214, 0.0025199265219271183, -0.0014163784217089415, 0.02660267986357212, -0.014822283759713173, -0.02285563014447689, 0.014393653720617294, 0.004262097645550966, -0.05002520605921745, -0.01158682256937027, 0.011531515046954155, 0.004811711609363556, -0.027625860646367073, -0.002793004969134927, 0.018624641001224518, 0.000700411677826196, -0.022993896156549454, -0.0022935133893042803, -0.018140705302357674, -0.012202112935483456, -0.020671002566814423, -0.015306220389902592, -0.009153313003480434, -0.009581943042576313, -0.018486374989151955, -0.0045524598099291325, 0.02239934541285038, -0.04020820930600166, -0.026547374203801155, -0.0026927608996629715, 0.016384707763791084, 0.026657987385988235, 0.0031680557876825333, 0.00045412254985421896, -0.008261486887931824, 0.015859290957450867, -0.014110205695033073, -0.007742983754724264, -0.026298491284251213, -0.03232695907354355, 0.024639280512928963, -0.0026685642078518867, -0.011725089512765408, -0.006667953450232744, -0.023864982649683952, 0.008676289580762386, -0.007535582408308983, 0.011967058293521404, 0.004161853808909655, -0.008192353881895542, -0.011282633990049362, 0.007034362759441137, 0.006947945337742567, 0.01764294132590294, 0.020339159294962883, -0.010833264328539371, 0.033488404005765915, -0.06349246948957443, -0.00524034071713686, -0.0035223662853240967, -0.017394060268998146, -0.0008300375193357468, 0.019274499267339706, 0.010522162541747093, 0.013619355857372284, 0.012105326168239117, 0.02969987317919731, -0.021611221134662628, 0.025330618023872375, 0.004645790439099073, 0.036474984139204025, -0.0047840578481554985, -0.012340380810201168, 0.006204757373780012, -0.008842211216688156, 0.01953720673918724, 0.03301829472184181, -0.003475700970739126, 0.02638145163655281, 0.0038542086258530617, 0.037359897047281265, 0.003237189492210746, -0.022565267980098724, -0.05251402407884598, -0.014739323407411575, 0.0028794221580028534, 0.0037263110280036926, 0.025786900892853737, -0.0015943979378789663, -0.034152090549468994, -0.0019029073882848024, -0.004224074073135853, -0.02537209913134575, 0.019233018159866333, -0.030750706791877747, -0.013363560661673546, -0.0002300858759554103, -0.010964618064463139, -0.012464821338653564, -0.031165510416030884, 0.007176086772233248, -0.02492964267730713, -0.016135824844241142, 0.009920698590576649, -0.003975192550569773, 0.001709332806058228, 0.020228546112775803, -0.011801136657595634, -0.036696214228868484, -0.014919070526957512, -0.008468888700008392, 0.0013662563869729638, -0.01887352392077446, 0.012471734546124935, 0.03058478608727455, 0.027515245601534843, 0.02638145163655281, 0.012934931553900242, 0.009471328929066658, 0.007556322496384382, 0.012983324937522411, -0.006723260506987572, -0.0017274804413318634, 0.0014811913715675473, 0.012499388307332993, -0.012630742974579334, 0.015873117372393608, 0.01656445488333702, -0.01191175077110529, -0.01776738278567791, 0.010722650215029716, 0.034926388412714005, -0.010411548428237438, 0.015043511986732483, -0.01158682256937027, -0.031165510416030884, 0.0030954652465879917, 0.0035171813797205687, 0.005229970905929804, -0.0001183916101581417, -0.044549811631441116, -0.017020737752318382, 0.02085074968636036, 0.005803781095892191, 0.016937777400016785, -0.0022347494959831238, 0.0023488204460591078, -0.013038631528615952, -3.5728124203160405e-05, -0.0030297881457954645, -0.0012167546665295959, -0.01632940024137497, 0.016854817047715187, -0.019468074664473534, 0.031607966870069504, 0.009651076048612595, 0.011987797915935516, 0.014117118902504444, 0.016509147360920906, -0.006063032895326614, 0.002793004969134927, 0.030944282189011574, -0.010722650215029716, -0.024431878700852394, -0.0195233803242445, 0.0010577469365671277, -0.04369255155324936, -0.016163479536771774, -0.004873931873589754, -0.027515245601534843, 0.004642333835363388, 0.02194306254386902, 0.01440748106688261, -0.007895078510046005, -0.011109799146652222, 0.002487087855115533, 0.0024335093330591917, 0.000680535682477057, 0.03456689417362213, -0.015942251309752464, 0.011123625561594963, 0.035037003457546234, 0.012568522244691849, 0.00626697763800621, -0.02628466486930847, -0.012457908131182194, -0.0029364575166255236, 0.04004228860139847, 0.05113134905695915, -0.02473606914281845, -0.022537613287568092, 0.008365187793970108, 0.015112644992768764, -0.004631963558495045, -0.011655956506729126, 0.038770224899053574, 0.03733224421739578, -0.0108678312972188, -0.03622610494494438, 0.006674867123365402, -0.032714106142520905, 0.012824317440390587, -0.02903619036078453, -0.008164700120687485, 0.000131246168166399, 0.01274827029556036, -0.02551036700606346, -0.0025596783962100744, 0.005586009938269854, 0.016301747411489487, -0.0014258843148127198, 0.01352256815880537, -0.014124032109975815, -0.0162049587816, -0.03368198126554489, 0.013716142624616623, -0.001638470683246851, 0.023892635479569435, 0.0028120167553424835, -0.00805408600717783, 0.021472953259944916, 0.009160226210951805, 0.022841801866889, -0.0018683405360206962, -0.014656362123787403, 0.05356485769152641, 0.00032298441510647535, -0.009174053557217121, -0.011275720782577991, 0.0028967056423425674, 0.015527447685599327, 0.009734037332236767, -0.007756810635328293, 0.006543512921780348, -0.007245220709592104, -0.016923950985074043, 0.011545342393219471, -0.0066714100539684296, 0.02448718622326851, -0.020698655396699905, -0.0029675676487386227, -0.001367120654322207, -0.025869863107800484, -0.0012547782389447093, 0.025551846250891685, -0.032050423324108124, -0.02317364513874054, -0.01598373055458069, -0.01645384170114994, 0.01109597273170948, 0.02340869978070259, 0.004873931873589754, 0.019288325682282448, 0.041010159999132156, -0.035479459911584854, 0.020173238590359688, -0.004217160865664482, 0.013211466372013092, -0.0030781817622482777, 0.005413175560534, -0.012831230647861958, -0.01330133993178606, 0.00920862052589655, 0.0015192149439826608, -0.00100762490183115, -0.04150792583823204, -0.004258641041815281, 0.02856607921421528, 0.009692556224763393, 0.01787799596786499, 0.027681168168783188, 0.017518501728773117, 0.006049206014722586, -0.004307034891098738, -0.014338347129523754, -0.008157786913216114, -0.016191132366657257, -0.00559637974947691, 0.003622610354796052, -0.009035785682499409, 0.0017127895262092352, -0.019039444625377655, -0.0068753547966480255, 0.0007332502282224596, -0.025220004841685295, -0.026326145976781845, 0.007383488118648529, 0.002481902949512005, 0.0045524598099291325, 0.009312320500612259, -0.047508735209703445, -0.005032939370721579, -0.03155266121029854, 0.005285277962684631, 0.008247660472989082, -0.023671407252550125, 0.01252012886106968, 0.025109389796853065, -0.0015978546580299735, 0.0040304996073246, -0.0002657329896464944, -0.028455466032028198, -0.011227326467633247, -0.03827246278524399, -0.011033752001821995, -0.020394466817378998, -0.007777550723403692, 0.0401529036462307, 0.015693368390202522, -0.01975843496620655, -0.032631147652864456, -0.0007695454405620694, -0.020256198942661285, 0.0028880639001727104, -0.010390807874500751, 0.026547374203801155, 0.032271649688482285, 0.00833753403276205, -0.01141398772597313, 0.016827162355184555, -0.012610002420842648, 0.007618543226271868, -0.023546967655420303, 0.0005409718723967671, -0.008510368876159191, -0.01319763995707035, -0.010017485357820988, 0.004113460425287485, -0.023754367604851723, 0.005496135912835598, 0.0004774552071467042, -0.004811711609363556, 0.005070962943136692, 0.04391378164291382, 0.016467668116092682, -0.03252053260803223, -0.013169986195862293, -0.010826351121068, -0.014255386777222157, -0.008538022637367249, -0.025095563381910324, -0.019136231392621994, -0.010356240905821323, 0.025095563381910324, -0.00927775353193283, -0.010715737007558346, 0.006035379599779844, 0.008261486887931824, -0.024113863706588745, 0.0014103292487561703, -0.04399674013257027, -0.020836923271417618, 0.0081024793908, 0.007922731339931488, 0.01920536532998085, 0.0023401787038892508, -5.4901945986784995e-05, 0.03523057699203491, -0.01114436611533165, 0.00828222744166851, -0.010446114465594292, 0.021652702242136, -0.02737697958946228, 0.014573401771485806, 0.005827978253364563, -0.013999591581523418, -0.016688896343111992, -0.0020256198477, 0.016702722758054733, -0.022662054747343063, 0.004659617319703102, 0.0036952008958905935, -0.018610814586281776, -0.03744285926222801, 0.005171207245439291, 0.02219194546341896, -0.012762096710503101, -0.005167750641703606, 0.0011061405530199409, -0.02848311886191368, 0.02108580432832241, -0.027888568118214607, 0.0064225285314023495, -0.025676287710666656, 0.04272468015551567, 0.010936965234577656, 0.006840787827968597, -0.024127690121531487, -0.01346726156771183, 0.0016039038309827447, -0.018057744950056076, -0.003479157807305455, 0.2592793405056, -0.014352173544466496, -0.0016626674914732575, 0.03146969899535179, 0.004479869268834591, 0.019896702840924263, 0.001398230786435306, 0.002343635307624936, -0.020449774339795113, 0.021694181486964226, -0.0055687264539301395, -0.022357866168022156, 0.016840990632772446, -0.007639283314347267, 0.02704513631761074, 0.023007724434137344, -0.017463194206357002, -0.015084992162883282, -0.00810939259827137, -0.021887756884098053, 0.011013012379407883, 0.025800729170441628, -0.02848311886191368, -0.014476615004241467, 0.004614680074155331, 0.007936558686196804, -0.01909475214779377, 0.02383732981979847, 0.018265146762132645, 0.006826961413025856, -0.016066690906882286, 0.05024643614888191, 0.008233834058046341, -0.0005889334133826196, -0.008254573680460453, 0.0010395993012934923, 0.01876290887594223, 0.020173238590359688, 0.023132164031267166, 0.007424968294799328, -0.009630336426198483, -0.008420495316386223, 0.021555913612246513, -0.01325294654816389, -0.005416632164269686, -0.005917851813137531, -0.01866612210869789, -0.008296053856611252, -0.011732003651559353, 0.029119150713086128, -0.014974378049373627, -0.007756810635328293, 0.05068889260292053, -0.0017767383251339197, 0.003543106373399496, -0.012914191000163555, 0.024321265518665314, -0.00427246792241931, 0.009381454437971115, 0.036806825548410416, -0.010141925886273384, 0.043637245893478394, -0.02761203423142433, 0.003346075303852558, -0.010522162541747093, -0.008607156574726105, -0.02969987317919731, 0.01610817201435566, -0.0010655244113877416, -0.005267994478344917, -0.01020414661616087, 0.003316693240776658, -0.006111426744610071, -0.0214176457375288, -0.029506299644708633, -0.03384790197014809, 0.03406912833452225, 0.010363154113292694, 0.023588446900248528, 0.03650263696908951, 0.011082145385444164, -0.016633588820695877, 0.00877999048680067, 0.027072791010141373, -0.016315573826432228, -0.0263952799141407, -0.012872710824012756, -0.006377591751515865, -0.019606340676546097, 0.01048068143427372, 0.0034912561532109976, -0.033073604106903076, 0.013771450147032738, -0.022427000105381012, -0.002789548132568598, 0.010259454138576984, -0.007100039627403021, 0.028649041429162025, -0.0003136945597361773, -0.01330133993178606, -0.0344562791287899, 0.01908092387020588, -0.007321267854422331, 0.013868236914277077, -0.010294020175933838, -0.00593167869374156, -0.0016955060418695211, 0.007853598333895206, -0.007265960797667503, -0.007155346684157848, 0.013169986195862293, -0.04355428367853165, 0.0027204144280403852, -0.01038389466702938, -0.000567329116165638, -0.00031931165722198784, -0.013308254070580006, -0.024583974853157997, -0.0038300117012113333, 0.003249287838116288, 0.011835703626275063, -0.01865229569375515, 0.004732207395136356, -0.01877673529088497, -0.004175680689513683, -0.03033590503036976, -0.01974460855126381, -0.010522162541747093, -0.004915412049740553, -0.006896094884723425, 0.026464411988854408, -0.02834485098719597, 0.02848311886191368, -0.008067912422120571, -0.00827531423419714, 0.01599755696952343, -0.008925171568989754, -0.01764294132590294, 0.029948756098747253, -0.004445302300155163, -0.0023868440184742212, 0.0057553877122700214, 0.004832451697438955, -0.000658067234326154, 0.0080609992146492, 0.0028258434031158686, 0.016619762405753136, -0.001431933487765491, 0.02526148594915867, 0.0021967259235680103, -0.03943391144275665, -0.0011977428803220391, 0.0208645761013031, -0.004158397205173969, 0.01468401588499546, -0.007041275966912508, -0.012983324937522411, -0.04709393531084061, -0.0032821265049278736, -0.01108905952423811, -0.027750302106142044, -0.0077706375159323215, 0.02459780126810074, 0.009284667670726776, -0.024971123784780502, -0.020214717835187912, -0.17631880939006805, 0.004860104992985725, 0.013149245642125607, -0.03387555480003357, 0.021998370066285133, 0.013038631528615952, 0.013799103908240795, -0.003520637983456254, -0.0037539645563811064, -0.03257583826780319, 0.01744936779141426, -0.0016064962837845087, 0.0027809063903987408, -0.0011026838328689337, -0.00810939259827137, 0.0014025516575202346, -0.016716549172997475, 0.02304920367896557, 0.04438389092683792, 0.0014569945633411407, 0.035590071231126785, -0.0208645761013031, -0.013405040837824345, 0.045849524438381195, 0.011559168808162212, -0.013218379579484463, -0.027404632419347763, -0.0025769618805497885, -0.010950791649520397, -0.02263440191745758, 0.014974378049373627, 0.021915409713983536, -0.007729157339781523, -0.0052265143021941185, -0.01534770056605339, 0.0019167341524735093, 0.019592514261603355, -0.0014993390068411827, -0.005879828240722418, 0.008413581177592278, 0.013356647454202175, 0.03069540113210678, -0.020173238590359688, 0.004549003206193447, -0.010100445710122585, -0.0014837838243693113, 0.015859290957450867, -0.012568522244691849, 0.008745423518121243, 0.00593167869374156, 0.032050423324108124, -0.03719397634267807, -0.002564863534644246, -0.011102885939180851, 0.017587635666131973, 0.0034203939139842987, 0.0036018702667206526, -0.00712077971547842, -0.011517688632011414, -0.010660429485142231, -0.004659617319703102, -0.03235461190342903, 0.004224074073135853, 0.011033752001821995, -0.00557563966140151, -0.019233018159866333, -0.020906057208776474, 0.056330207735300064, -0.005803781095892191, 0.0016332856612280011, 0.0073281810618937016, -0.01885969564318657, -0.006982512306421995, -0.0031144770327955484, 0.006591906305402517, -0.004694183822721243, -0.01213989220559597, 0.038576651364564896, -0.010618949308991432, -0.02029768005013466, -0.0018493287498131394, 0.06111426651477814, 0.010577469132840633, 0.0030920086428523064, 0.013411954045295715, 0.014027245342731476, 0.007673850283026695, -0.006387961562722921, -0.026561200618743896, -0.025330618023872375, 0.0423651821911335, -0.01974460855126381, -0.02306303009390831, -0.01319763995707035, 0.009346887469291687, 0.020615695044398308, -0.012347294017672539, 0.0030799100641161203, -0.019357459619641304, 0.0017698248848319054, -0.006602276582270861, 0.004168767016381025, -0.01708987168967724, 0.017960958182811737, 0.020919883623719215, 0.00449369614943862, 0.0029641110450029373, 0.01598373055458069, 0.02660267986357212, -0.011303373612463474, -0.02051890827715397, 0.01632940024137497, 0.013287513516843319, 0.0166750680655241, -0.004531719721853733, 0.01765676960349083, -0.009782430715858936, -0.006222040858119726, -0.004597396589815617, -0.010784870013594627, -0.028759654611349106, -0.023588446900248528, 0.03011467680335045, 0.024777548387646675, 0.002561406698077917, -0.021279379725456238, -0.06454329937696457, 0.005050222855061293, 0.01296949852257967, 0.018278973177075386, -0.012955671176314354, 0.012741356156766415, 7.42648117011413e-05, 0.0490020252764225, 0.007348921149969101, 0.03727693855762482, 0.005492679309099913, -0.024113863706588745, -0.01534770056605339, 0.004334688186645508, -0.020173238590359688, 0.0006343025015667081, -0.004925782326608896, 0.0033754571340978146, 0.0013023077044636011, 0.024528667330741882, -0.01700691133737564, -0.006709433626383543, -0.004735664464533329, -0.0004102658131159842, -0.0007237443351186812, 0.018707601353526115, -0.009139486588537693, 0.013660836033523083, 0.015278566628694534, 0.005821064580231905, 0.0401529036462307, -0.02029768005013466, 0.007487189024686813, -0.00860024243593216, 0.01786416955292225, 0.009250100702047348, -0.02870434708893299, -0.021251725032925606, 0.015956077724695206, 0.013446521013975143, 0.005734647624194622, 0.01598373055458069, 0.010356240905821323, 0.003463602624833584, -0.008793817833065987, -0.005637860391288996, -0.028082143515348434, 0.018016263842582703, -0.00949898175895214, -0.012616915628314018, -0.03221634402871132, 0.025745421648025513, -0.018016263842582703, -0.0283725056797266, 0.012554694898426533, 0.016274092718958855, 0.017573807388544083, 0.011559168808162212, -0.03152500465512276, 0.020505079999566078, 0.00027934368699789047, 0.010895484127104282, -0.011496948078274727, 0.015015858225524426, 0.000636895012576133, 0.019938183948397636, -0.04148026928305626, -0.0081024793908, 0.006526229437440634, -0.008309881202876568, -0.01014884002506733, 0.015250912867486477, -0.0022831433452665806, 0.04195038229227066, -0.03243757039308548, -0.008150873705744743, 0.002143147401511669, -0.011427815072238445, 0.01997966319322586, -0.012713703326880932, -0.023145990446209908, 0.011172019876539707, -0.014849936589598656, -0.007321267854422331, 0.01274827029556036, 0.020283851772546768, -0.00554798636585474, 0.005658600479364395, 0.025468885898590088, -0.04720454663038254, 0.016467668116092682, 0.019136231392621994, -0.03077836148440838, -0.006629929877817631, -0.017463194206357002, -0.005181577056646347, -0.006014639511704445, 0.00783285778015852, -0.013861323706805706, 0.023325739428400993, -0.03310125693678856, -0.024348918348550797, -0.08638957887887955, 0.014068725518882275, 0.005831434857100248, -0.009526635520160198, 0.01664741523563862, 0.0063119144178926945, 0.03102724254131317, -0.01064660307019949, -0.00673017418012023, 0.00854493584483862, -0.01908092387020588, 0.018901176750659943, -0.0039993892423808575, 0.00593167869374156, -0.0242659579962492, -0.014988204464316368, 0.010757217183709145, 0.014324520714581013, 0.0161219984292984, 0.02285563014447689, 0.011738916859030724, -0.035368844866752625, 0.009851564653217793, -0.022675881162285805, -0.026796255260705948, 0.019952010363340378, 0.000417395232943818, 0.04029117152094841, -0.030501825734972954, -0.03675151988863945, -0.001324776210822165, -0.005264537874609232, -0.01119967270642519, 0.016854817047715187, 0.0006602276698686182, -0.007466448936611414, 0.014393653720617294, -0.006443268619477749, 0.019246846437454224, 0.0036952008958905935, -0.02834485098719597, -0.0328800268471241, 0.025786900892853737, -0.013176899403333664, 0.0030833669006824493, 0.012444081716239452, 0.007459535263478756, 0.00450060935690999, 0.015485967509448528, -0.0019685844890773296, 0.02914680354297161, 0.00046060385648161173, -0.011268806643784046, -0.018375759944319725, -0.0020152498036623, -0.0648198351264, -0.0010612036567181349, -0.0073281810618937016, 0.006851158104836941, 0.017712075263261795, 0.04148026928305626, 0.016854817047715187, 0.02759820781648159, 0.010501421988010406, -0.011102885939180851, -0.00309028010815382, -0.003050528233870864, -0.00822692085057497, 0.008966651745140553, -0.02040829323232174, -0.026547374203801155, -0.02661650814116001, 0.004172224085777998, -0.003805814776569605, 0.0054408288560807705, 0.004735664464533329, -0.01919153891503811, 0.011213500052690506, -0.03429035842418671, 0.03188450261950493, 0.009077265858650208, 0.023118337616324425, -0.029312724247574806, 0.025233831256628036, 0.026091091334819794, 0.008468888700008392, -0.017836516723036766, -0.013093939051032066, -0.020712481811642647, -0.0034290356561541557, -0.0028206584975123405, -0.012831230647861958, 0.0068753547966480255, 0.01986905001103878, 0.009388367645442486, 0.027003657072782516, 0.008033345453441143, -0.019578687846660614, 0.025786900892853737, 0.011026838794350624, 0.02969987317919731, -0.013377387076616287, -0.0029191740322858095, -0.011849530972540379, -0.035147614777088165, 0.0080609992146492, 0.009015045128762722, -0.03644733130931854, -0.003961365669965744, 0.021113457158207893, -0.01688246987760067, 0.020588040351867676, -0.010190320201218128, 0.024915816262364388, -0.024030903354287148, -0.01621878519654274, 0.004172224085777998, -0.01908092387020588, -0.024653106927871704, -0.004524806048721075, 0.021901583299040794, 0.009803170338273048, 0.03412443771958351, 0.009174053557217121, 0.010750303976237774, -0.01567954197525978, -0.0017750099068507552, -0.039240337908267975, 0.00485664838925004, -0.0017084686551243067, 0.008690116927027702, 0.020021144300699234, -0.018818216398358345, -0.010183406993746758, -0.014324520714581013, -0.015651889145374298, -0.0012262605596333742, -0.002464619465172291, -0.018942657858133316, 0.062441635876894, -0.0014552661450579762, -0.007542496081441641, -0.014393653720617294, -0.028109796345233917, 0.0004701097495853901, 0.016246439889073372, 0.00943676196038723, 0.005344041623175144, -0.024680761620402336, -0.003124847076833248, 0.008392841555178165, -0.02118259109556675, -0.027404632419347763, 0.009678729809820652, -0.007480275351554155, -0.0156104089692235, 0.028842614963650703, -0.016246439889073372, 0.019592514261603355, 0.05450507625937462, -0.007134606596082449, 0.021320858970284462, 0.014849936589598656, -0.014448961243033409, 0.015333873219788074, 0.013985765166580677, -0.005402805283665657, -0.0008875049534253776, -0.01975843496620655, 0.017366407439112663, -0.005247254390269518, -0.0017992067150771618, -0.036696214228868484, -0.02074013464152813, 0.03011467680335045, -0.006052663084119558, 0.0024006706662476063, 0.023215124383568764, 0.009229360148310661, -0.003161142347380519, 0.007971125654876232, -0.038134194910526276, -0.02878730744123459, -0.0021379622630774975, 0.015513621270656586, -0.011787310242652893, -0.01136559434235096, -0.023782022297382355], "133900ec-e422-400e-8951-d617ba58f528": [-0.023444386199116707, -0.026645682752132416, 0.020311202853918076, -0.028525592759251595, -0.03182224556803703, 0.027013489976525307, -0.0003878166025970131, -0.027054358273744583, 0.009794604033231735, -0.002893086289986968, 0.0077103557996451855, 0.01587025634944439, -0.03732575103640556, 0.01443988922983408, -0.015856632962822914, -0.012124057859182358, 0.01768205314874649, -0.001069369143806398, 0.04206639528274536, -0.006354913581162691, 0.02939743548631668, 0.008759290911257267, -0.008868271484971046, -0.027054358273744583, -0.03318449854850769, 0.030650708824396133, 0.012907354161143303, -0.015556937083601952, -0.0019309945637360215, 0.013288784772157669, 0.006320856977254152, 0.010877596214413643, 0.005782766733318567, -0.012559979222714901, -0.0035043975804001093, 0.008084976114332676, 0.014249173924326897, 0.0035180202685296535, -0.011422497220337391, -0.0035078031942248344, 0.013642970472574234, 0.00819395575672388, 0.01657862775027752, 0.016960058361291885, -0.020243089646100998, 0.019275890663266182, -0.02294035255908966, 0.01025777030736208, -0.006450271233916283, 0.0405951589345932, -0.010938896797597408, 0.016306176781654358, -0.00927013624459505, 0.0043796454556286335, 0.014753207564353943, 0.031113874167203903, 0.014017590321600437, 0.008629877120256424, -0.016769342124462128, -0.030269276350736618, 0.01567954011261463, -0.0007615849608555436, -0.03460124507546425, 0.002026352332904935, 0.036889828741550446, 0.019657321274280548, 0.010250958614051342, -0.0032864371314644814, -0.0032932483591139317, 0.0036814906634390354, -0.009740114212036133, 0.02672741748392582, 0.00131287204567343, 0.016810210421681404, 0.022014020010828972, -0.006678448524326086, -0.021482741460204124, 0.0018560707103461027, -0.00525829941034317, -0.004403484985232353, -0.002889680676162243, -0.01580214314162731, 0.01860838569700718, -0.022586166858673096, 0.015066525898873806, 0.0037836595438420773, -0.0077103557996451855, 0.00931781530380249, 0.016074594110250473, -0.02374408207833767, -0.0018969383090734482, 0.01551606971770525, 0.016101839020848274, 0.00912028830498457, -0.008330181241035461, 0.02626425214111805, -0.015611426904797554, 0.030596217140555382, -0.007240378297865391, 0.009358682669699192, -0.011599590070545673, 0.011865229345858097, -0.017123529687523842, -0.0008922761771827936, -0.04582621529698372, -0.024956487119197845, 0.021046819165349007, -0.007703544571995735, 0.009263325482606888, -0.018581140786409378, -0.027163337916135788, 0.024275360628962517, -0.0034107426181435585, -0.03201296180486679, -0.034492261707782745, -0.020065996795892715, 0.016714852303266525, -0.01961645297706127, -0.03800687938928604, 0.00044145534047856927, 0.010816294699907303, 0.013990345411002636, 0.003315384965389967, 0.017940880730748177, 0.02792620100080967, 0.007683110889047384, -0.023921174928545952, -0.007655865978449583, -0.006981550250202417, -0.03558206558227539, 0.04874143749475479, -0.0024844100698828697, 0.03242163732647896, 0.0143172862008214, -0.014780452474951744, 0.004931358154863119, -0.0076899221166968346, 0.00605181185528636, -0.027408543974161148, 0.0005389415891841054, 0.00792150478810072, 0.019848035648465157, 0.005357062444090843, -0.026822775602340698, -0.0005657610017806292, 0.002925439737737179, 0.0070292288437485695, 0.0005517127574421465, 0.013220672495663166, 0.012696204707026482, 0.013554424047470093, -0.012989088892936707, -0.0037393863312900066, -0.0037121414206922054, 0.030596217140555382, -0.0184857826679945, -0.002142143901437521, -0.0031791594810783863, 0.02398928813636303, -0.025351541116833687, 0.021687079221010208, 0.0394236221909523, -0.007662677206099033, -0.014358153566718102, 0.0010617064544931054, 0.02398928813636303, 0.020406560972332954, -0.006480921991169453, -0.011156857945024967, 0.002974821487441659, -0.01236245222389698, 0.013615725561976433, -0.025174448266625404, -0.006790834479033947, -0.028525592759251595, 0.0037870651576668024, 0.005200403276830912, 0.0011042768601328135, 0.0008211835520341992, 0.011892475187778473, 0.00198037619702518, -0.0014073783531785011, -0.010829917155206203, 0.04830551519989967, -0.024520566686987877, -0.03822483867406845, -0.005898558534681797, -0.0028726523742079735, 0.004839406348764896, 0.003315384965389967, 0.0429927259683609, 0.03419256955385208, -0.0013205346185714006, -0.0024775988422334194, -0.5767236948013306, -0.015979235991835594, -0.005908775608986616, -0.01685107871890068, 0.02611440420150757, 0.019207777455449104, 2.740471245488152e-05, 0.02599180117249489, -0.015924746170639992, 0.022994842380285263, 0.006395780947059393, 0.03966882824897766, -0.002780700335279107, -0.00409697787836194, -0.0022681523114442825, -0.03991403430700302, 0.029778866097331047, -0.0122534716501832, -0.0047270203940570354, 0.022586166858673096, -0.014916677959263325, 0.017641184851527214, -0.010993387550115585, 0.00913391076028347, 0.001781146740540862, -0.00048572858213447034, -0.018131596967577934, -0.002715993206948042, 0.005523938685655594, 0.03653564304113388, -0.01337733119726181, -0.0019122635712847114, 0.012512300163507462, -0.02127840183675289, 0.050703082233667374, -0.012703015469014645, -0.03637217357754707, 0.03966882824897766, -0.004171901848167181, 0.04923184961080551, -0.028825288638472557, -0.013615725561976433, 0.019875280559062958, -0.004345589317381382, 0.0016687607858330011, -0.021114932373166084, 0.012158114463090897, -0.017968125641345978, -0.01145655382424593, -0.002859029918909073, -0.0062186880968511105, -0.0024231087882071733, 0.02389393001794815, -0.03125010058283806, 0.025569502264261246, -0.00512888515368104, 0.020529164001345634, -0.03146805986762047, -0.001522318460047245, -0.030868668109178543, -0.01599285751581192, 0.029043247923254967, -0.00792150478810072, -0.020338447764515877, -0.023321783170104027, 0.011831173673272133, -0.007860204204916954, -0.015202751383185387, -0.0003486518107820302, -0.014657849445939064, -0.008466406725347042, -0.0202975794672966, -0.020924216136336327, -0.011340761557221413, -0.0013937557814642787, 0.035909008234739304, 0.015093770809471607, -0.02134651504456997, 0.00025691252085380256, 0.018104352056980133, 0.0015155072323977947, 0.006375347264111042, -0.029669884592294693, -0.013152559287846088, 0.028689062222838402, -0.015107393264770508, -0.03503716364502907, -0.00047423457726836205, 0.012600846588611603, 0.008820592425763607, 0.0070292288437485695, 0.02355336584150791, 0.010952519252896309, -0.026250628754496574, -0.007390226237475872, 0.005013093817979097, -0.02819865196943283, -0.007901071570813656, -0.005493287928402424, -0.015665916725993156, -0.028743552044034004, -0.009590266272425652, 0.0034073370043188334, 0.012430565431714058, 0.02599180117249489, -0.0185402724891901, -0.032612353563308716, 0.017981749027967453, 0.015829388052225113, -0.015039280988276005, -0.01147017627954483, -0.02152360789477825, -0.01025777030736208, -0.0015248727286234498, 0.022518053650856018, -0.03724401444196701, 0.027694618329405785, 0.0033477384131401777, 0.016796588897705078, -0.01319342665374279, 0.011892475187778473, 0.011483798734843731, 0.004849622957408428, 0.006184631958603859, 0.007138209417462349, 0.027149716392159462, 0.013002711348235607, -0.005319600459188223, -0.00825525727123022, 0.0017402791418135166, 0.008738857693970203, 0.0032949510496109724, 0.008595820516347885, -0.0191260427236557, 0.023335406556725502, 0.016987303271889687, 0.016169952228665352, -0.013043578714132309, 0.029697131365537643, 0.00618122611194849, -0.020978707820177078, -0.008023674599826336, 0.007390226237475872, -0.008037297055125237, 0.010584711097180843, -0.0322309210896492, 0.0019344002939760685, -0.00014410089352168143, -0.005282138474285603, 0.0066648260690271854, 0.0030003637075424194, -0.018622007220983505, -0.005050555802881718, 0.033811137080192566, -0.02635960839688778, 0.0036270003765821457, -0.03871525079011917, 0.0012575304135680199, -0.001364807947538793, -0.01839042454957962, 0.0038449610583484173, -0.008200767450034618, -0.033756647258996964, 0.0021779031958431005, -0.03648115321993828, -0.03446501865983009, -0.01971181109547615, 0.014303663745522499, -0.006722722202539444, -0.035936251282691956, -0.020529164001345634, 0.0032472722232341766, 0.0006951750838197768, -0.0006419620476663113, -0.005179969593882561, -0.009494908154010773, -0.012886920012533665, -0.0026870453730225563, -0.011899285949766636, 0.001151955802924931, -0.00016283188597299159, 0.0015963910846039653, 0.01134757325053215, -0.012021888978779316, 0.014725962653756142, -0.006402592174708843, 0.026591192930936813, 0.00728805735707283, -0.01685107871890068, 0.022150244563817978, -0.012750694528222084, 0.007662677206099033, 0.00914753321558237, -0.002370321424677968, 0.017123529687523842, 0.02721782959997654, 0.022749636322259903, 0.01260765828192234, 0.0035043975804001093, 0.015066525898873806, 0.02521531656384468, 0.022872239351272583, -0.0143309086561203, -0.025242561474442482, 0.024738527834415436, -0.028334876522421837, 0.03247612714767456, -0.021360138431191444, 0.018649253994226456, -0.015311731956899166, -0.008861460722982883, -0.02364872395992279, -0.006858947221189737, 0.00825525727123022, 0.010278204455971718, -0.004509059712290764, -0.026618437841534615, -0.006630769930779934, 0.005231054034084082, 0.014998413622379303, 0.006239121779799461, 0.002412891946732998, 0.00427407119423151, -0.004257042892277241, 0.016878323629498482, 0.015243618749082088, -0.00721994461491704, 0.01228752825409174, -0.0003512060211505741, -0.021482741460204124, -0.024874752387404442, -0.00305655668489635, -0.009869528003036976, 0.003953941166400909, 0.03484645113348961, -0.021891416981816292, 0.03648115321993828, 0.0016449213726446033, 0.012934599071741104, -0.0016517326002940536, 0.0027858088724315166, 0.02242269553244114, 0.007737601175904274, -0.013064012862741947, 0.0185130275785923, 0.019916148856282234, 0.05397249013185501, 0.011374818161129951, -0.015788519755005836, 0.0022409074008464813, -0.028280386701226234, -0.01777741126716137, -0.007042851764708757, 0.019057929515838623, 0.021768813952803612, 0.0027364271227270365, 0.003168942639604211, -0.01001256424933672, 0.0226679015904665, 0.03966882824897766, 0.002940765116363764, 0.03253061696887016, 0.0032438666094094515, 0.010966142639517784, -0.0023992692586034536, -0.02746303379535675, -0.0009382522548548877, -0.013295596465468407, -0.01019646879285574, -0.006753372494131327, -0.0381431020796299, 0.00944041833281517, -0.015257241204380989, -0.01697368174791336, 0.007723978254944086, -0.0310593843460083, 0.027572015300393105, 0.02020222321152687, 0.01362253725528717, 0.013520368374884129, -0.014344531111419201, -0.022531677037477493, 0.0417666994035244, -0.01330240722745657, 0.015829388052225113, 0.006215282715857029, -0.02635960839688778, -0.002281774999573827, -0.0034260679967701435, 0.007580942008644342, -0.006927059963345528, 0.00919521227478981, 0.0010736262192949653, 0.011293083429336548, -0.02672741748392582, 0.001455908641219139, 0.033456951379776, -0.013166181743144989, 0.00409697787836194, -0.012587224133312702, 0.015080148354172707, 0.011327139101922512, -0.010639200918376446, -0.031168363988399506, 0.009835471399128437, 0.023485254496335983, -0.010237336158752441, -0.025596747174859047, -0.006290206220000982, -0.003725763875991106, 0.005970076657831669, -0.021537231281399727, 0.004011837299913168, -0.013568046502768993, -0.012478243559598923, 0.006811268627643585, 0.0012873297091573477, -0.016660362482070923, 0.029179474338889122, 0.005449014715850353, -0.02731318585574627, -0.02112855389714241, -0.00046061203465797007, 0.006256150081753731, -0.004393268376588821, 0.008766102604568005, 0.005990510806441307, -0.0125327343121171, -0.04822378233075142, -0.013792818412184715, -0.017109906300902367, -0.006256150081753731, -0.0004827486409340054, -0.004635068122297525, -0.018322311341762543, 0.03435603901743889, 0.019357625395059586, -0.006038189399987459, 0.028089670464396477, -0.003434582147747278, -0.016592249274253845, -0.010768615640699863, 0.03078693337738514, 0.004972225986421108, 0.02592368796467781, -0.0033988230861723423, 0.014358153566718102, 0.007955561392009258, 0.016047349199652672, 0.007969183847308159, -0.006426431704312563, 0.003071882063522935, 0.006177820730954409, -0.007335735950618982, 0.001364807947538793, 0.0080441078171134, 0.002005918649956584, 0.018458537757396698, 0.012076378799974918, 0.013581668958067894, 0.025978177785873413, 0.04994022101163864, -0.004488626029342413, 0.0008041553664952517, 0.04013199359178543, 0.01001256424933672, 0.014903055503964424, -0.006286800839006901, -0.013043578714132309, -0.020992329344153404, -2.7151951144332998e-05, 0.00513569638133049, -0.021428249776363373, -0.034982673823833466, 0.025201693177223206, -0.008806969970464706, -0.06429837644100189, -0.007478772662580013, 0.0310048945248127, 0.011490609496831894, -0.039805054664611816, -0.0358000285923481, 0.024752149358391762, 0.015161884017288685, 0.005745304748415947, -0.018867213279008865, 0.003369875019416213, -0.004573766607791185, 0.0022766664624214172, -0.017545826733112335, -0.02958814986050129, 0.003606566693633795, -0.03893321007490158, 0.0015989452367648482, 0.011184102855622768, -0.05348208174109459, -0.018213331699371338, -0.008173522539436817, 0.0020518945530056953, 0.015311731956899166, 0.006763589568436146, -6.385564483935013e-05, -0.0019616454374045134, 0.018158841878175735, -0.011463364586234093, -0.02635960839688778, -0.02183692716062069, -0.005959860049188137, 0.021918661892414093, 0.011047877371311188, 0.018553895875811577, 0.00899768527597189, -0.005649947095662355, 0.03201296180486679, 0.020283957943320274, 0.002257935469970107, 0.01248505525290966, 0.0010199875105172396, -0.0019582395907491446, -0.0012881811708211899, 0.0013162776594981551, 0.023716837167739868, 0.02161896601319313, -0.008888705633580685, 0.01457611471414566, -0.060320593416690826, -0.02494286559522152, -0.023090200498700142, -0.01937124691903591, 0.003461827291175723, 0.02521531656384468, 0.008609442971646786, 0.005956454202532768, 0.011368007399141788, 0.01140887476503849, -0.004117412026971579, -0.00519699789583683, -0.008173522539436817, 0.025855574756860733, 0.012880108319222927, -0.00033928631455637515, -0.0072948685847222805, -0.00037057558074593544, 0.004403484985232353, 0.018199710175395012, -0.04034995287656784, 0.029016003012657166, 0.019085174426436424, 0.00930419284850359, 0.013281973078846931, -0.02281774953007698, -0.04876868054270744, -0.02792620100080967, 0.036889828741550446, 0.016401534900069237, 0.030160296708345413, 0.014807697385549545, -0.03394736349582672, -0.009801415726542473, -0.008371048606932163, -0.01765480823814869, 0.02694537863135338, -0.024534188210964203, -0.004927952773869038, -0.025351541116833687, -0.010169223882257938, 0.005987104959785938, -0.012655336409807205, 0.018499406054615974, -0.024180002510547638, -0.0012796670198440552, 0.016673985868692398, -0.009699245914816856, 0.012069568037986755, 0.022981218993663788, 0.0033017625100910664, -0.020733501762151718, -0.009297381155192852, -0.015979235991835594, -0.013043578714132309, -0.007458338979631662, -0.006477516144514084, 0.02426173910498619, 0.019452983513474464, 0.04029546305537224, 0.002404377795755863, 0.00942679587751627, -0.006954305339604616, 0.010278204455971718, -0.011081933975219727, -0.013751951046288013, -0.006062028929591179, -0.022395450621843338, 0.002222176408395171, -0.000856942730024457, 0.035500332713127136, 0.02115580067038536, -0.040023013949394226, -0.021414628252387047, 0.02247718535363674, -0.0080713527277112, 0.0030429342295974493, -0.01934400200843811, -0.050784818828105927, 0.007431094069033861, -0.00936549436300993, 0.014943922869861126, 0.0027483468875288963, -0.02699986845254898, -0.0036338118370622396, 0.00734935887157917, -0.005118668079376221, 0.011688136495649815, 0.008623065426945686, -0.026128025725483894, -0.03266684338450432, 0.0003622743533924222, 0.0033102764282375574, 0.011783494614064693, -0.006092679686844349, 0.024684036150574684, -0.016891945153474808, 0.02091059461236, -0.016551382839679718, 9.301638783654198e-05, 0.010816294699907303, -0.005299166776239872, 0.002397566568106413, -0.017300622537732124, 0.015243618749082088, -0.02112855389714241, -0.025474144145846367, -0.005466043017804623, -0.01528448611497879, -0.027408543974161148, -0.024861130863428116, 0.014262796379625797, -0.024779394268989563, 0.013894987292587757, 0.008275691419839859, 0.01937124691903591, 0.000768821919336915, -0.014671471901237965, -0.012096812948584557, 0.006099490914493799, -0.013772385194897652, 0.03969607129693031, 0.001191120594739914, 0.016047349199652672, 0.046207644045352936, 0.026032667607069016, 0.008800159208476543, -0.06113794445991516, -0.01551606971770525, 0.020011506974697113, 0.0381431020796299, 0.039777807891368866, 0.01021009124815464, -0.03127734363079071, -0.00043804969755001366, -1.8425012967782095e-05, -0.013452255167067051, -0.049286339432001114, 0.027817221358418465, 0.03171326592564583, -0.011156857945024967, -0.012212604284286499, 0.011572345159947872, -0.0064400541596114635, 0.0013622536789625883, -0.021319270133972168, 0.005145913455635309, -0.017423225566744804, 0.004325155634433031, -0.02134651504456997, 0.011797117069363594, 0.00925651378929615, -0.002091059461236, 0.02146911807358265, 0.017082661390304565, -0.024793017655611038, -0.002479301765561104, -0.024098267778754234, 0.011735815554857254, 0.003145103110000491, 0.016524137929081917, 0.0016006480436772108, -0.005503505002707243, 0.02719058468937874, -0.0010216903174296021, -0.00727443490177393, -0.013070824556052685, -0.0008522599819116294, 0.0501309372484684, -0.005241271108388901, -0.013935855589807034, 0.009236079640686512, 0.006038189399987459, 0.012110435403883457, 0.011190914548933506, -0.006412809249013662, 0.009522153064608574, -0.015366221778094769, -0.005612485110759735, 0.0011383332312107086, -0.025596747174859047, -0.014739585109055042, -0.026182515546679497, 0.0025729567278176546, -0.0202703345566988, 0.0018594763241708279, 0.003296653972938657, 0.009406361728906631, -0.03533685952425003, -0.014003967866301537, -0.023171935230493546, -0.00799642875790596, -0.0185130275785923, 0.0004887084942311049, 0.014290041290223598, 0.022218357771635056, 0.04342864826321602, -0.018349558115005493, 0.02838936634361744, 0.000507439486682415, 0.021196667104959488, -0.0014584629097953439, 0.004890490788966417, 0.0007343398756347597, -0.010693691670894623, 0.016401534900069237, 0.0028760582208633423, -0.006433242931962013, -0.020924216136336327, 0.00727443490177393, 0.0321764312684536, 0.017055416479706764, 0.030242031440138817, 0.004856434650719166, 0.013431821018457413, 0.021564476191997528, -0.007826147601008415, -0.012641713954508305, -0.01841766946017742, -0.001057449379004538, -0.009910395368933678, 0.0032949510496109724, 0.0019548339769244194, -0.00012270925799384713, -0.008262068964540958, -0.008697989396750927, 0.00841191690415144, -0.041684962809085846, -0.03269409015774727, -0.00510504562407732, -0.0023413735907524824, 0.003947129938751459, 0.018104352056980133, -0.04658907651901245, -0.0003390734491404146, -0.026345986872911453, 0.008643499575555325, -0.001300100819207728, -0.015121015720069408, 0.020801613107323647, 0.03795238956809044, 0.010019375942647457, 0.03337521478533745, -0.00841191690415144, -0.021905038505792618, 0.0050812060944736, -0.024275360628962517, -0.014862188138067722, -0.014112948440015316, -0.035227879881858826, 0.05176563933491707, -0.013431821018457413, -0.0080713527277112, -0.04844174161553383, 0.006116519216448069, -0.03718952462077141, -0.0030889103654772043, -0.015121015720069408, 0.012525922618806362, 0.03465573489665985, 0.002615527017042041, -0.012512300163507462, 0.010509787127375603, -0.007969183847308159, 0.002680234145373106, 0.0006134398863650858, -0.006290206220000982, -0.008616254664957523, 0.0077716573141515255, -0.03961433842778206, 0.011919720098376274, -0.023144690319895744, -0.0005108451587148011, -0.013813252560794353, -0.0025814706459641457, 0.016537759453058243, 0.03675360605120659, 0.018431292846798897, -0.021414628252387047, -0.00519018666818738, -0.009903584606945515, -0.007669488433748484, 0.02589644305408001, -0.023103822022676468, -0.02235458232462406, -0.009760547429323196, 0.02983335591852665, 0.007308491040021181, -0.006109707988798618, -0.0046146344393491745, 0.012396508827805519, -0.03195847198367119, 0.017150774598121643, -0.0244524534791708, -0.030677953734993935, 0.004648690577596426, -0.0073766037821769714, 0.025201693177223206, 0.00905898679047823, 0.0010106220142915845, 0.014058457687497139, -0.0034396906848996878, 0.006746561266481876, -0.014494379051029682, 0.018894458189606667, -0.03032376803457737, -0.0016508812550455332, 0.014848565682768822, -0.004825783893465996, 0.015338976867496967, 0.013779195956885815, 0.028988758102059364, -0.004195741377770901, -0.0025542257353663445, 0.0011417388450354338, -0.0038143103010952473, -0.03168601915240288, 0.00930419284850359, 0.012219415977597237, -0.03250337392091751, -0.012777939438819885, 0.0013545909896492958, -0.024220870807766914, 0.016374289989471436, -0.04220261797308922, 0.010366750881075859, -0.034056343138217926, 0.027136093005537987, 0.01311850268393755, 0.005997322034090757, -0.0021046819165349007, 0.02232733741402626, 0.015665916725993156, -0.0021983368787914515, 0.007778468541800976, 0.2578473687171936, -0.01780465617775917, 0.015829388052225113, 0.007315302267670631, -0.004444352816790342, 0.01551606971770525, 0.00037759970291517675, 0.004955197684466839, 0.01151785533875227, 0.0015427522594109178, -0.02599180117249489, -0.030242031440138817, -0.006426431704312563, -0.007955561392009258, 0.009726491756737232, 0.006596713326871395, -0.02115580067038536, -0.04440946877002716, 0.005418363958597183, -0.010060243308544159, 0.012185359373688698, -0.0001074371175491251, -0.03441052883863449, -0.011878851801156998, 0.01359529234468937, 0.007397037465125322, -0.030405502766370773, 0.025242561474442482, 0.030705198645591736, 0.005050555802881718, -0.03337521478533745, 0.024002909660339355, 0.0011868635192513466, 0.0027517525013536215, -0.0027091819792985916, -0.00018209501286037266, 0.01260765828192234, 0.021387383341789246, 0.01839042454957962, 0.02152360789477825, -0.013138936832547188, 0.014480756595730782, 0.026073535904288292, -0.007935128174722195, -0.023703213781118393, -0.007506018038839102, -0.007717167027294636, -0.020978707820177078, -0.006532006431370974, -0.0024094863329082727, -0.020828859880566597, -0.03253061696887016, 0.036889828741550446, 0.024275360628962517, -0.015475202351808548, -0.011020632460713387, -0.000701986369676888, -0.010727748274803162, 0.0043489946983754635, 0.048850417137145996, -0.0045839836820960045, 0.03724401444196701, -0.008323370479047298, -0.002615527017042041, -0.02232733741402626, -0.005632919259369373, -0.02217748947441578, -0.022627033293247223, 0.0017981749260798097, -0.010400806553661823, -0.010026187635958195, -0.001738576334901154, -0.0034873695112764835, -0.02210937812924385, -0.03770718351006508, -0.03705330193042755, 0.05533474683761597, -0.005217431578785181, 0.03364766761660576, 0.021428249776363373, -0.0019003439228981733, 0.0019514283630996943, -0.0060756513848900795, -0.013717894442379475, -0.010782238095998764, -0.0008650310919620097, 0.010564276948571205, -0.0035861327778548002, -0.023703213781118393, -0.00210297922603786, 0.0076286206021904945, -0.022259226068854332, 0.007819335907697678, -0.017150774598121643, -0.015066525898873806, 0.002273260848596692, -0.00021306499547790736, 0.008439161814749241, 0.0013877958990633488, 0.00605862308293581, -0.027381299063563347, 0.0012617874890565872, 0.012015077285468578, -9.046216291608289e-05, -0.019153287634253502, 0.01873098872601986, 0.004488626029342413, 0.011858418583869934, 0.009018119424581528, -0.013840497471392155, 0.006153981201350689, -0.0286345724016428, 0.0019582395907491446, -0.015693163499236107, -0.0017879579681903124, -0.001154509955085814, -0.01937124691903591, -0.02792620100080967, -0.024956487119197845, 0.01442626677453518, 0.0382520854473114, -0.017109906300902367, -0.008023674599826336, -0.0053945244289934635, -0.013091257773339748, -0.01780465617775917, -0.013404576107859612, -0.00937911681830883, -0.005418363958597183, -0.00831655878573656, 0.018186086788773537, -0.035936251282691956, 0.029533660039305687, -0.008091786876320839, 0.003478855360299349, 0.004314938560128212, -0.0014984790468588471, -0.024397963657975197, 0.03160428628325462, -0.003725763875991106, 0.004563549999147654, 0.036671869456768036, 0.0037155470345169306, 0.01121134776622057, 0.015815764665603638, -0.012920976616442204, -0.00500628212466836, 0.015706785023212433, 0.02007962018251419, -0.014167438261210918, -0.057214654982089996, -0.009624321945011616, 0.02841661125421524, -0.010680069215595722, 0.014412644319236279, 0.010278204455971718, -0.026345986872911453, -0.021169422194361687, 0.0022051481064409018, 0.02352612093091011, -0.024125512689352036, -0.012886920012533665, -0.004420513287186623, -0.013881364837288857, -0.005210620351135731, -0.024370718747377396, -0.17164397239685059, 0.010080677457153797, 0.030732443556189537, -0.02986060082912445, 0.026032667607069016, -0.003555482253432274, 0.001212405739352107, -0.0035452651791274548, 0.0016781262820586562, -0.024929242208600044, 0.02352612093091011, 0.023703213781118393, -0.014780452474951744, -0.011197725310921669, 0.017736542969942093, 0.024901997298002243, -0.02758563682436943, 0.0322309210896492, 0.023853061720728874, -0.01419468317180872, 0.046234890818595886, -0.024220870807766914, -0.011810739524662495, 0.04702499881386757, -0.01121134776622057, 0.002223879098892212, -0.02343076281249523, -0.017423225566744804, -0.011306705884635448, -0.014630604535341263, 0.003695113118737936, 0.002339670667424798, 0.010182846337556839, 0.030432747676968575, 0.028689062222838402, -0.014766830019652843, 0.011613212525844574, -0.0011885663261637092, -0.012716637924313545, 0.0072948685847222805, 0.02020222321152687, 0.027354054152965546, -0.018826346844434738, 0.00046657188795506954, -0.00399140315130353, 0.017968125641345978, 0.0017428332939743996, 0.0037632258608937263, -0.00177433539647609, 0.0075673190876841545, 0.02817140705883503, -0.020093241706490517, -0.006589902099221945, -0.0016355558764189482, 0.054517392069101334, -0.01540708914399147, 0.011558722704648972, -0.012566789984703064, -0.004331966862082481, 0.002710884902626276, 0.007431094069033861, -0.0143309086561203, 0.0029577934183180332, 0.026795530691742897, -0.019085174426436424, -0.011136423796415329, -0.0040220539085567, 0.039042189717292786, -0.008357426151633263, 0.010843539610505104, 0.005207214970141649, 0.016496893018484116, 0.01765480823814869, 0.006981550250202417, 0.021196667104959488, -0.007546885404735804, 0.004607823211699724, 0.010571088641881943, 0.035909008234739304, -0.009740114212036133, -0.021046819165349007, 0.04781510308384895, 8.657760918140411e-05, -0.01577489823102951, 0.04530855640769005, -0.005925803445279598, 0.007185888011008501, -0.009494908154010773, -0.022872239351272583, -0.007267623674124479, 0.038796983659267426, -0.003807499073445797, 0.0010770318331196904, -0.015856632962822914, -0.0011979318223893642, 0.00364062306471169, -0.01704179309308529, -0.018908081576228142, -0.008711612783372402, -0.02017497643828392, -0.010932086035609245, -0.012307962402701378, -0.012757506221532822, 0.005837257020175457, 0.028225896880030632, 0.029669884592294693, -0.013602103106677532, 0.015720408409833908, 0.028743552044034004, 0.012158114463090897, -0.011422497220337391, 0.01799537055194378, 0.00912028830498457, 0.03435603901743889, 0.0184857826679945, 0.0038211215287446976, -0.030432747676968575, -0.00908623170107603, -0.018826346844434738, 0.010005753487348557, -0.03179500252008438, -0.04201190546154976, 0.019289512187242508, 0.024874752387404442, 0.003838149830698967, -0.024956487119197845, -0.06320857256650925, -0.025814708322286606, 0.017613939940929413, 0.029043247923254967, -0.016660362482070923, 0.0070292288437485695, 0.016374289989471436, 0.03326623514294624, -0.0067056939005851746, 0.0029186285100877285, -0.00848684087395668, -0.02885253354907036, -0.006065434776246548, 0.006869164295494556, -1.2232346307428088e-05, 0.00614376412704587, 0.0042808824218809605, -0.0005627810605801642, 0.0007254001102410257, 0.01995701715350151, -0.03912392631173134, -0.0009076014976017177, -0.0286618173122406, -0.019848035648465157, -0.015815764665603638, 0.011660891585052013, -0.022122999653220177, 0.002761969342827797, 0.014262796379625797, 0.006068840157240629, 0.011715381406247616, -0.01907155103981495, -0.0022664496209472418, -0.020120486617088318, 0.00621187686920166, 0.017382357269525528, -0.03242163732647896, -0.022749636322259903, 0.022640656679868698, -0.02438434027135372, 0.01897619478404522, -0.018077107146382332, 0.0005785321118310094, -0.009842283092439175, 0.006974739022552967, -0.03127734363079071, -0.02112855389714241, -9.652844892116264e-05, -0.019725432619452477, -0.009672001004219055, -0.033075518906116486, -0.011000198312103748, -0.028225896880030632, -0.010782238095998764, 0.014725962653756142, 0.01956196315586567, -0.0030003637075424194, 0.014221929013729095, -0.034029096364974976, 0.019670942798256874, -0.0052651106379926205, 0.024643169716000557, -0.009665190242230892, 0.018867213279008865, 0.006378753110766411, 0.03506441041827202, -0.03056897222995758, -0.025092713534832, 0.018567517399787903, -0.006753372494131327, -0.016306176781654358, 0.0429927259683609, -0.008861460722982883, 0.03253061696887016, -0.03362042084336281, 0.0002466956211719662, -0.0031314806547015905, -0.00939273927360773, 0.03005131706595421, 0.0010063649388030171, -0.01694643683731556, 0.0007517937337979674, -0.00618122611194849, -0.012941409833729267, 0.014072081074118614, 0.008568575605750084, 0.007117775734513998, 0.013751951046288013, 0.013908610679209232, -0.03838830813765526, 0.005626107566058636, 0.005731682293117046, -0.0012268797727301717, 0.007730789948254824, -0.013465877622365952, -0.029506415128707886, -0.008500463329255581, 0.010019375942647457, 0.0024469480849802494, 0.0036201891489326954, -0.03629043698310852, -0.044491205364465714, -0.07988255470991135, 0.022027641534805298, -0.007117775734513998, 0.004260448273271322, -0.006027972791343927, -0.007546885404735804, 0.028525592759251595, -0.023335406556725502, 0.0027091819792985916, -0.019630076363682747, -0.015216373838484287, 0.038333818316459656, 0.007254000753164291, -0.002234096173197031, -0.011872041039168835, -0.00816671084612608, 0.036917075514793396, 0.004665718879550695, 0.006784023251384497, 0.012628091499209404, -0.0039028567261993885, -0.013799630105495453, 0.022381829097867012, 0.008786536753177643, -0.028525592759251595, 0.016224442049860954, -0.02484750747680664, 0.009603888727724552, -0.010448485612869263, -0.03302102908492088, -0.002045083325356245, 0.004812160972505808, -0.027544770389795303, 0.011858418583869934, -0.007948750630021095, 0.0203248243778944, -0.0015785114374011755, -0.0010259472765028477, 0.013833686709403992, 0.024248115718364716, -0.0025967960245907307, -0.020106865093111992, 0.014603359624743462, -0.003357955254614353, 0.004311532713472843, 0.019766300916671753, -0.019943393766880035, -0.0011613212991505861, -0.009767359122633934, -0.005418363958597183, 0.02318555861711502, 0.007036040537059307, -0.006916843354701996, -0.01657862775027752, -0.008527708239853382, -0.03964158147573471, 0.020583653822541237, 0.010850350372493267, 0.008752480149269104, -0.015543314628303051, 0.02007962018251419, -0.005397930275648832, 0.019630076363682747, -0.013731516897678375, -0.025228938087821007, -0.0047746989876031876, 0.0062595559284091, -0.022136623039841652, -0.015352599322795868, -0.018376803025603294, -0.017695674672722816, -0.0009416578686796129, 0.014412644319236279, 0.01108874473720789, 0.006702288053929806, 0.012907354161143303, -0.007076907902956009, 0.010564276948571205, -0.03792514279484749, 0.034710224717855453, 0.023417141288518906, -0.0024912215303629637, -0.05495331436395645, -0.009494908154010773, 0.026332363486289978, 0.02746303379535675, -0.020338447764515877, -0.017886390909552574, -0.021196667104959488, 0.003753009019419551, -0.005200403276830912, 0.00021412924979813397, 0.009869528003036976, 0.03152254968881607, 0.029996827244758606, 0.035963498055934906, 0.0073766037821769714, 0.004873462487012148, 0.022558921948075294, 0.0358545184135437, 0.022191112861037254, -0.012805184349417686, -0.008820592425763607, -0.043782833963632584, -0.01025777030736208, 0.017504960298538208, -0.01740960218012333, -0.021891416981816292, 0.008207578212022781, 0.035473085939884186, -0.002200039802119136, 0.014916677959263325, -0.000951023364905268, 0.02002512849867344, -0.006031378172338009, 0.01359529234468937, -0.03029652126133442, -0.0381431020796299, -0.02983335591852665, 0.026373231783509254, 0.029424680396914482, 0.00409697787836194, 0.015229996293783188, -0.01022371370345354, 0.03727126121520996, -0.025692105293273926, 0.026618437841534615, -0.030160296708345413, 0.012021888978779316, -0.02641410008072853, 0.006589902099221945, 0.01660587266087532, -0.03029652126133442, -0.020501917228102684, -0.02912498451769352, -0.011742627248167992, -0.016047349199652672, -0.006555845960974693, -0.007655865978449583, 0.07110964506864548, 0.004996065516024828, 0.003613377921283245, -0.022640656679868698, 0.0022255820222198963, -0.008806969970464706, -0.0037938766181468964, -0.007894259877502918, -0.006467299535870552, -0.003296653972938657, -0.00722675584256649, -0.007444716524332762, -0.007580942008644342, -0.022872239351272583, 0.005673786625266075, 0.008207578212022781, -0.022518053650856018, 0.035745538771152496, 0.005329817533493042, 0.030677953734993935, 0.04936807230114937, -0.001510398811660707, 0.0006858095875941217, 0.008779725059866905, -0.008970440365374088, 0.008759290911257267, 0.030650708824396133, 0.004178713075816631, -0.01638791151344776, -0.012682582251727581, 0.01025777030736208, 0.0041991472244262695, -0.016496893018484116, -0.012539545074105263, -0.0019088579574599862, 0.021360138431191444, 0.009460851550102234, 0.007083719130605459, 0.028007935732603073, 0.017750166356563568, -0.004134439863264561, 0.0143172862008214, -0.01456249225884676, -0.02939743548631668, -0.005810012109577656, -0.003790471004322171, -0.006405998021364212, 0.015720408409833908, -0.027735484763979912], "dc7fea2d-d282-49a9-91f4-c446fc482cbd": [-0.015349547378718853, -0.006609398405998945, -0.01091840025037527, 0.005320090800523758, 0.01325951237231493, 0.01878317818045616, -0.005187767092138529, -0.003942567389458418, 0.005048657767474651, -0.006290464662015438, 0.007878349162638187, 0.012730217538774014, 0.0004983344115316868, -0.019556762650609016, -0.012519856914877892, -0.016000987961888313, 0.004655079450458288, -0.008618004620075226, 0.025745438411831856, -0.020791783928871155, 0.015878843143582344, 0.017073148861527443, -0.005560987628996372, -0.017385296523571014, -0.011732700280845165, 0.0029772829730063677, 0.005639025010168552, -0.04228929430246353, 0.0011052420595660806, -0.011664842255413532, 0.02759118564426899, -0.013191653415560722, -0.011189834214746952, -0.023994695395231247, 0.0030705882236361504, -0.007220123428851366, -0.0019339615246281028, -0.011108404025435448, 0.012234851717948914, -0.0017795839812606573, 0.027781188488006592, 0.0021697692573070526, 0.007206551730632782, -0.009812310338020325, -0.024483274668455124, 0.023519687354564667, -0.025148285552859306, 0.00031236023642122746, -0.008618004620075226, 0.002074767602607608, 0.006365108769387007, 0.014277386479079723, -0.020628923550248146, -0.027401182800531387, 0.01381594967097044, 0.020954642444849014, -0.01216699369251728, 0.006955476012080908, 0.001722752582281828, -0.0064431456848979, 0.002906031673774123, -0.008814793080091476, -0.020873213186860085, -0.012200922705233097, 0.009540877304971218, -0.010219460353255272, -0.0010789469815790653, 0.0158516988158226, -0.01458953507244587, -0.014358816668391228, 0.017670301720499992, 0.009703736752271652, -0.02267824485898018, -0.004492219537496567, 0.037322066724300385, 0.017968878149986267, -0.009642664343118668, 0.0006908823270350695, 0.004118999000638723, 0.008740149438381195, 0.0013648000312969089, -0.007091192528605461, 0.0055779521353542805, -0.007756203878670931, 0.012356996536254883, 0.014725251123309135, -0.02569115348160267, 0.014494532719254494, 0.0009754630737006664, -0.026505451649427414, -0.0015810984186828136, -0.00076043710578233, 0.00608349684625864, 0.024035410955548286, -0.017181722447276115, 5.4869797168066725e-05, -0.012309495359659195, 0.020710352808237076, -0.00890300888568163, -0.040769267827272415, -0.015186687931418419, 0.01830817013978958, -0.015715982764959335, 0.00126131612341851, -0.0439993217587471, -0.0073829833418130875, 0.01442667469382286, -0.000930506968870759, -0.004940084181725979, 0.020683210343122482, 0.006382073275744915, 0.015349547378718853, 0.0009966688230633736, -0.04364645853638649, -0.018186025321483612, 0.0166524276137352, 0.017032433301210403, -0.03851637244224548, -0.02901620976626873, 0.006354929879307747, 0.011291621252894402, 0.01906818337738514, 0.01609598845243454, 0.01743958331644535, 0.008007279597222805, 0.007505128160119057, 0.0038102436810731888, -0.025379003956913948, 0.0023377183824777603, -0.04380932077765465, 0.037322066724300385, -0.004610971547663212, 0.024605419486761093, 0.022325381636619568, -0.03316913917660713, 0.006962261628359556, -0.011820916086435318, 0.013368085026741028, -0.01468453649431467, 0.005537237506359816, 0.029830509796738625, 0.0166524276137352, -0.0009160870686173439, -0.027957620099186897, 0.003247019601985812, 0.020466063171625137, 0.022461097687482834, -0.0022647706791758537, 0.0031571073923259974, 0.016706714406609535, -0.011888774111866951, -0.02216252125799656, -0.029070496559143066, 0.0030773738399147987, 0.01577026955783367, 0.005869742948561907, 0.007064049132168293, -0.002666831249371171, -0.026899030432105064, -0.0031978224869817495, 0.0049095479771494865, 0.01395166665315628, 0.021022502332925797, 0.0032673771493136883, 0.007491556461900473, 0.01589241437613964, -0.005130087491124868, -0.008936937898397446, -0.005666167940944433, -0.009574806317687035, -0.0034913094714283943, 0.007301553152501583, 0.006694221403449774, 0.007681559771299362, -0.00890300888568163, 0.0054049137979745865, 0.015566694550216198, -0.006527968682348728, -0.012451997958123684, -0.005170802585780621, 0.01692385971546173, -0.010266960598528385, 0.013279869221150875, 0.007199765648692846, 0.01708672009408474, -0.0030892491340637207, 0.006395644973963499, 0.0023750404361635447, 0.012356996536254883, -0.015960272401571274, 0.018213167786598206, 0.0333048552274704, 0.018403170630335808, 0.004929905757308006, -0.6201705932617188, -0.03631776198744774, -0.0030468376353383064, -0.002916210563853383, 0.020520349964499474, 0.028826206922531128, -0.0019390509696677327, -0.004468468949198723, 0.0017151185311377048, 0.023696118965744972, -0.004349716939032078, 0.016435280442237854, -0.017534585669636726, -0.02474113740026951, 0.014820252545177937, -0.032924845814704895, 0.0029823724180459976, -0.018063880503177643, 0.0004264470189809799, 0.02033034712076187, -0.02005891315639019, 0.02018105797469616, -0.028961922973394394, -0.0026108480524271727, -0.003138446481898427, 0.0038882805965840816, -0.0035286317579448223, -0.010036243125796318, 0.0016099382191896439, 0.030156228691339493, -0.01640813797712326, 0.014358816668391228, 0.02470042183995247, 0.005316697992384434, 0.05059514939785004, -0.00808870978653431, -0.01553955115377903, 0.02061535231769085, -0.010972687043249607, 0.038869235664606094, -0.018457457423210144, -0.037837788462638855, 0.01834888383746147, -0.007328696548938751, 0.021076789125800133, -0.0025887941010296345, 0.00186779978685081, -0.017738159745931625, 0.0009143906063400209, 0.009160870686173439, 0.01250628475099802, -0.007192980032414198, -0.006392252165824175, -0.00781049020588398, 0.005469379015266895, 0.017493870109319687, 0.032761987298727036, -0.021022502332925797, -0.005635631736367941, -0.005160623695701361, -0.012451997958123684, -0.00600545946508646, -0.027102604508399963, -0.026627596467733383, -0.0118955597281456, -0.0047229379415512085, 0.008624790236353874, -0.006256535183638334, 0.005058836191892624, -0.01648956723511219, 0.0028466556686908007, 0.008828365243971348, -0.002883977722376585, -0.004047747701406479, 0.008299070410430431, 0.008197282440960407, 0.019841767847537994, -0.01024660374969244, -0.025026140734553337, 0.014277386479079723, 0.009649449959397316, -0.00391542399302125, -0.014575962908565998, -0.02501256950199604, 0.010341605171561241, 0.01549883559346199, -0.026695456355810165, -0.021334649994969368, 0.015118828974664211, -0.011115189641714096, 0.020913928747177124, 0.021022502332925797, 0.008156567811965942, -0.029423359781503677, 0.012058420106768608, 0.023003963753581047, -0.018335312604904175, -0.011630912311375141, 0.00854336004704237, -0.013897379860281944, -0.038624946027994156, 0.009188014082610607, 0.015349547378718853, 0.00854336004704237, 0.03561203554272652, -0.017846733331680298, -0.039303526282310486, 0.010043028742074966, 0.01712743565440178, 0.0032826452516019344, -0.0134766586124897, -0.0034404159523546696, -0.015078114345669746, 0.00817013904452324, 0.01636742241680622, -0.029233355075120926, 0.00076043710578233, 0.02588115632534027, 0.030020512640476227, -0.000528022414073348, 0.013680233620107174, -0.0034404159523546696, 0.054449502378702164, 0.012669145129621029, -7.034997543087229e-05, 0.003861137432977557, 0.0012409586925059557, -0.02410326898097992, -0.019529618322849274, 0.01981462351977825, -0.01141376607120037, -0.006945297122001648, -0.008461929857730865, -0.00781049020588398, 0.01894603669643402, -0.020072486251592636, 0.003708456177264452, -0.01954319141805172, 0.0026345986407250166, -0.001383461058139801, -0.019013896584510803, 0.012954149395227432, 0.013354513794183731, -0.0023428078275173903, -0.020900357514619827, 0.0023733440320938826, -0.023058250546455383, 0.015173115767538548, -0.005377770401537418, 0.00757298618555069, 0.005961351562291384, 0.0017677086871117353, -0.009601949714124203, 0.019801052287220955, -0.00398328248411417, -0.00951373390853405, -0.01190913189202547, -0.028799062594771385, 0.006969047710299492, -0.017968878149986267, 0.02346540056169033, 0.02996622584760189, -0.021823229268193245, 0.0032113941852003336, -0.006904582027345896, -0.010545180179178715, -0.009954812936484814, 0.006962261628359556, -0.020547494292259216, -0.027265464887022972, 0.001618420472368598, 0.007349053863435984, -0.005445628426969051, 0.01022624596953392, 0.022298237308859825, -0.002436113078147173, -0.018620317801833153, -0.0076612019911408424, 0.006307429168373346, -0.02668188326060772, 0.021551797166466713, 0.006646720692515373, -1.668625009187963e-05, -0.014955969527363777, 0.028636202216148376, 0.025039713829755783, 0.031296249479055405, 0.02334325574338436, -0.015838127583265305, 0.013327370397746563, -0.020506778731942177, 0.024985427036881447, 3.3531541703268886e-05, 0.02719760686159134, 0.013422371819615364, 0.03268055617809296, -0.005452414508908987, 0.010029456578195095, -0.011311979033052921, 0.03029194474220276, 0.04595364257693291, 0.021375365555286407, -0.010036243125796318, -0.01574312523007393, 0.02176894247531891, -0.017507441341876984, 0.0009109976817853749, -0.02529757469892502, 0.024985427036881447, 0.00103568728081882, -0.00039569870568811893, -0.003026480320841074, -0.012893076986074448, -0.01574312523007393, 0.011216976679861546, 0.005686525721102953, -0.0015810984186828136, -0.0014538640389218926, 0.0004877315368503332, 0.017697444185614586, 0.01894603669643402, 0.0021511081140488386, 0.011481624096632004, -0.04155642166733742, 0.003467559115961194, 0.005269197281450033, -0.0011094831861555576, 0.019529618322849274, -0.00856371782720089, -0.0267633143812418, -0.008882652036845684, -0.007722274865955114, -0.001979765947908163, 0.018362456932663918, 0.013469872996211052, -0.0068740458227694035, 0.012655572965741158, -0.016313135623931885, 0.02620687521994114, 0.0051572308875620365, -0.00757298618555069, 0.0009839453268796206, 0.010714825242757797, -0.017113862559199333, 0.020235344767570496, 0.014399531297385693, 0.04258786886930466, 0.018145309761166573, -0.004736509174108505, 0.011963418684899807, -0.04169214144349098, -0.004536327440291643, -0.004716151859611273, 0.023804692551493645, -0.005164016503840685, -0.00903872586786747, 0.00998874194920063, 0.008746935054659843, -0.00036346600973047316, 0.032056260854005814, 0.013015221804380417, 0.03425487130880356, 0.02255610004067421, 0.0031503215432167053, -0.0019000323954969645, -0.018837464973330498, 0.01578384079039097, -0.009384802542626858, -0.0072404807433485985, 0.0045668636448681355, -0.019787481054663658, -0.015335976146161556, 0.010171959176659584, -0.036724913865327835, 0.04655079543590546, 0.00480776047334075, 0.008251569233834743, 0.014860968105494976, 0.04294073209166527, 0.006385466083884239, -0.02635616436600685, -0.057380978018045425, 0.01834888383746147, 0.006741722114384174, 0.015037399716675282, -0.0003117240557912737, -0.0006039388827048242, -0.0027889760676771402, -0.033440571278333664, 0.0020815534517169, -0.0037491710390895605, 0.027876190841197968, 0.00929658766835928, 0.008787649683654308, -0.01442667469382286, 0.013313798233866692, 0.02307182177901268, 0.004712759051471949, -0.03194768726825714, -0.02569115348160267, 0.03124196082353592, -0.005452414508908987, -0.005557594820857048, -0.02620687521994114, 0.04125784710049629, -0.000115253082185518, -0.007776561193168163, -0.018498172983527184, 0.010144815780222416, -0.01589241437613964, -0.016679570078849792, -0.020004626363515854, 0.009506948292255402, -0.014860968105494976, 0.01636742241680622, -0.003118088934570551, 0.006609398405998945, -0.015240974724292755, -0.003231751499697566, 0.011237334460020065, -0.009093012660741806, -0.021823229268193245, -0.001847442239522934, 0.013293441385030746, 0.0010509553831070662, 0.013537731021642685, 0.002673617098480463, -0.012214493937790394, -0.03268055617809296, -0.010857327841222286, -0.03333199769258499, -0.004166499711573124, 0.007247266359627247, -0.0025192394386976957, -0.018661033362150192, -0.009975169785320759, 0.015525978989899158, -0.022108234465122223, 0.023614687845110893, 0.005717061925679445, 0.001738869003020227, -0.024035410955548286, 0.028120480477809906, -0.008081923238933086, 0.009744452312588692, 0.009696951135993004, 0.010538394562900066, -0.002515846397727728, 0.01700529083609581, -0.01875603385269642, 0.017534585669636726, 0.03420058265328407, -0.0020187844056636095, -0.011135547421872616, 0.0321105495095253, -0.016991717740893364, 2.2319019990391098e-05, 0.018172452226281166, -1.4313860447145998e-05, 0.05398806557059288, 0.0021782515104860067, 0.05252232402563095, -0.013965237885713577, 0.007634059060364962, -0.002641384257003665, 0.01131876464933157, -0.0029196033719927073, -0.007993707433342934, -0.0007142086396925151, -0.024279700592160225, 0.008936937898397446, 0.010809827595949173, -0.011508767493069172, -0.03365771844983101, 0.01215342152863741, 0.005998673848807812, -0.03865208849310875, -0.004763652570545673, 0.0055915238335728645, 0.05330948159098625, -0.024768279865384102, 0.002772011561319232, 0.029124783352017403, -0.029721936210989952, -0.01106090284883976, -0.0014623464085161686, -0.01345630083233118, -0.0027329931035637856, -0.01735815405845642, -0.023411113768815994, -0.00624296348541975, 0.010423035360872746, -0.023302540183067322, 0.003711848985403776, 0.028717633336782455, -0.03558489307761192, -0.02909763902425766, 0.005560987628996372, 0.002768618753179908, 0.011244120076298714, 0.031377676874399185, -0.010192316956818104, -0.008434786461293697, 0.015268118120729923, -0.02271895855665207, -0.015186687931418419, -0.021823229268193245, -0.026342593133449554, 0.009411945939064026, 0.0027346895076334476, -0.0066399346105754375, -0.014928826130926609, 0.00415292801335454, 0.013150938786566257, -9.71752087934874e-05, 0.004207214806228876, 0.027374038472771645, 0.004302216228097677, -0.011800558306276798, 0.0035523821134120226, 0.015173115767538548, 0.022135376930236816, -0.019773907959461212, -0.010409463196992874, 0.01764315739274025, -0.04261501133441925, 0.0023920051753520966, -0.007274409756064415, -0.014752394519746304, -0.006307429168373346, 0.02660045400261879, 0.010993044823408127, 0.006042781751602888, 0.0013249333715066314, 0.0041461423970758915, -0.010904829017817974, 0.008495858870446682, -0.01716814935207367, 0.013605589047074318, 0.004780617076903582, -0.014603106305003166, 0.0020272666588425636, 0.016584569588303566, 0.005201338790357113, 0.013157724402844906, -0.009825881570577621, 0.04828796535730362, 0.02600330114364624, -0.014562391676008701, 0.003006122773513198, -0.004115605726838112, -0.01791459135711193, 0.00673832930624485, 0.016856001690030098, 0.009126941673457623, 0.028799062594771385, 0.002875495469197631, -0.011325550265610218, -0.005041871685534716, -0.016163846477866173, -0.003847565734758973, 0.03857065737247467, -0.004824724979698658, -0.03029194474220276, -0.0039527458138763905, -0.013429157435894012, -0.0032113941852003336, -0.001840656390413642, -0.0011154208332300186, -0.027604756876826286, 0.00022859765158500522, 0.013117009773850441, -0.0043700747191905975, 0.01938033103942871, -0.0014640428125858307, -0.0027312966994941235, -0.015580265782773495, -0.02156536839902401, -0.017846733331680298, -0.009344087913632393, -0.013422371819615364, 0.003711848985403776, 0.03420058265328407, 0.006724757608026266, 0.03352200239896774, 0.00115698401350528, -0.004186857026070356, 0.005357412621378899, 0.0019509261474013329, 0.0010272050276398659, 0.00770870316773653, -0.0012180565390735865, 0.004689008463174105, -0.010070172138512135, 0.01890532299876213, 0.012160207144916058, 0.028690489009022713, -0.01966533623635769, 0.011583412066102028, 0.01648956723511219, -0.02858191542327404, -0.014467389322817326, -0.009880168363451958, -0.04448790103197098, 0.0018321741372346878, 0.003986675292253494, 0.006056353449821472, 0.0039018522948026657, -0.024469703435897827, -0.0078308479860425, 0.011284835636615753, 0.0027109391521662474, 0.027577612549066544, 0.017453154549002647, 0.022623958066105843, -0.014358816668391228, 0.004834903869777918, 0.00781049020588398, 0.0030383553821593523, -0.020398205146193504, 0.012370568700134754, -0.025596151128411293, 0.033549144864082336, 0.031893402338027954, 0.00939158909022808, 0.013137366622686386, 0.031296249479055405, 0.0026125446893274784, 0.010199102573096752, 0.012580929324030876, 0.0022478061728179455, -0.018566031008958817, -0.00808870978653431, -0.018769605085253716, -0.04467790573835373, -0.029151925817131996, -0.018620317801833153, -0.003572739427909255, 0.00018809472385328263, 0.015729553997516632, 0.0037525640800595284, 0.007281195838004351, -0.023180395364761353, -0.014562391676008701, 0.0024836137890815735, -0.02243395335972309, 0.02429327182471752, -0.0042140004225075245, 0.02509399875998497, 0.03281627595424652, 0.004112212918698788, -0.0028110300190746784, -0.039032094180583954, -0.0017999414121732116, 0.0033233603462576866, 0.015987414866685867, 0.0479622483253479, -0.010667324997484684, -0.030101941898465157, 0.0070165484212338924, 0.019312473013997078, -0.02647830918431282, -0.018606746569275856, 0.0031571073923259974, 0.03555775061249733, 0.008176925592124462, -0.014983112923800945, -0.0019119075732305646, -0.009052297100424767, 0.025759011507034302, -0.013347728177905083, -0.014521676115691662, -0.01000909972935915, -0.000528022414073348, -0.019393902271986008, -0.01022624596953392, -0.014725251123309135, 0.018701747059822083, 0.03040051832795143, 0.019326044246554375, 0.0053133051842451096, -0.00414274912327528, -0.021185360848903656, 0.00820406898856163, 0.0168424304574728, 0.020479634404182434, -0.007416912354528904, -0.00444811163470149, 0.020954642444849014, -0.0007595888455398381, 0.017751730978488922, -0.009839453734457493, 0.00204253476113081, 0.045247916132211685, -0.018579602241516113, -0.012499499134719372, -0.014874539338052273, -0.007484770379960537, 0.006483860779553652, -0.0028500487096607685, -0.0057340264320373535, 0.00977159570902586, -0.004780617076903582, 0.0006209034472703934, 0.019285328686237335, -0.013442729599773884, 0.008020850829780102, -0.009411945939064026, 0.0059477798640728, -0.022542526945471764, -0.012234851717948914, -0.006127604749053717, 0.02961336262524128, -0.027604756876826286, -0.018606746569275856, 0.004621150437742472, -0.025243287906050682, 0.002654955955222249, 0.036453478038311005, 0.0014504712307825685, 0.016163846477866173, 0.034824881702661514, -0.041366420686244965, 0.004661865066736937, 0.0017948520835489035, -0.009113369509577751, -0.0031757685355842113, -0.012852362357079983, -0.02104964479804039, -0.011481624096632004, 0.023085394874215126, -0.0017711016116663814, -0.013205225579440594, -0.027401182800531387, 0.005452414508908987, 0.02129393443465233, -0.013592017814517021, 0.026939745992422104, -0.005584738217294216, 0.010402677580714226, -0.0029280856251716614, 0.013775235041975975, -0.010504464618861675, -0.0014021220849826932, 0.014562391676008701, -0.009466232731938362, 0.027360467240214348, -0.023804692551493645, 0.02996622584760189, 0.012363782152533531, 0.004420968238264322, 0.0029399609193205833, -0.027374038472771645, -0.044297900050878525, 0.008746935054659843, 0.00012246302503626794, -0.025338290259242058, -0.011949846521019936, -0.013843093067407608, 0.0026566525921225548, -0.03675205633044243, -0.0089165810495615, 0.019013896584510803, -0.02465970627963543, 0.0004209335311315954, 0.016475996002554893, -0.01657099649310112, 0.006270106881856918, -0.009527305141091347, -0.007654416374862194, -0.006568683311343193, -0.03303341940045357, -0.027374038472771645, 0.009113369509577751, -0.009642664343118668, 0.028961922973394394, 0.014033096842467785, -0.027849046513438225, -0.046279359608888626, -0.021280363202095032, -0.038027793169021606, -0.0012477445416152477, -0.012988078407943249, 0.021076789125800133, 0.0031689826864749193, 0.011210191063582897, 0.021714655682444572, 0.022936105728149414, -0.009174441918730736, -0.003004426369443536, -0.025745438411831856, -0.002453077584505081, -0.010212674736976624, -0.021904660388827324, -0.01632670685648918, -0.00535062700510025, -0.014888111501932144, -0.012492713518440723, 0.000703181663993746, -0.01993676833808422, 0.004393824841827154, 0.05759812518954277, 0.007695131469517946, -0.0257725827395916, -0.0028279947582632303, -0.014060240238904953, -0.022800389677286148, 0.00023538348614238203, -0.005856171250343323, -0.013225582428276539, -0.021551797166466713, 0.001513240160420537, -0.02375040575861931, -0.0019102111691609025, 0.02168751321732998, 0.016856001690030098, -0.017073148861527443, 0.005235267803072929, -0.030074799433350563, -0.022569671273231506, 0.0021460186690092087, -0.008394071832299232, 0.019122468307614326, -0.012988078407943249, -0.010192316956818104, 0.04209928959608078, -0.009588377550244331, 0.022135376930236816, -0.005964744836091995, 0.0223932396620512, -0.017548156902194023, -0.00462793605402112, 0.018294597044587135, 0.00043174842721782625, -0.0063481442630290985, -0.00929658766835928, 0.01716814935207367, -0.021904660388827324, -0.006022423971444368, 0.01942104659974575, 0.0023631653748452663, -0.04763652756810188, 0.0030434448271989822, 0.016041701659560204, -0.023845406249165535, -0.008699433878064156, -0.007539057172834873, -0.008190496824681759, -0.03346771374344826, -0.0325176976621151, 0.02422541379928589, -0.030861955136060715, 0.008869079872965813, 0.004862047266215086, -0.011278050020337105, -0.013307012617588043, 0.011678413487970829, -0.008991224691271782, -0.02109036035835743, -0.007491556461900473, 0.2568843960762024, -0.019597478210926056, -0.00041499591316096485, 0.008550145663321018, -0.0235875453799963, 0.0216060820966959, 0.0076883453875780106, -0.0005335359019227326, -0.015458120964467525, 0.012994864955544472, 0.007260838057845831, -0.01106090284883976, -0.008346570655703545, -0.009418732486665249, 0.018891751766204834, -0.02643759362399578, -0.024252556264400482, -0.02775404416024685, -0.02375040575861931, -0.002546382835134864, 0.021511081606149673, -0.007959778420627117, 0.0064160022884607315, -0.010633395984768867, 0.00625314237549901, 0.001959408400580287, -0.023044679313898087, 0.01046374998986721, 0.01133912242949009, 0.011664842255413532, -0.021850373595952988, 0.016190990805625916, 0.012927005998790264, 0.007959778420627117, -0.033196281641721725, -0.023221110925078392, 0.03064480796456337, 0.027876190841197968, 0.03398343548178673, 0.0026312055997550488, -0.009785166941583157, -0.0030824632849544287, 0.008489073254168034, -0.01549883559346199, -0.02088678441941738, 0.016150275245308876, -0.011257692240178585, -0.028093336150050163, -0.016951004043221474, 0.016190990805625916, -0.007667988073080778, -0.014182385057210922, 0.018145309761166573, 0.015919556841254234, 0.008129424415528774, -0.012947363778948784, 0.012139850296080112, -0.0011900649406015873, 0.02299039252102375, 0.02315325289964676, 5.102626164443791e-05, 0.02290896326303482, -0.0233839713037014, 0.01748029887676239, -0.018823891878128052, -0.004339538514614105, -0.02290896326303482, 0.006555112078785896, 0.0016710106283426285, 0.0013317191042006016, 0.007600129581987858, -0.020126771181821823, -0.0067688655108213425, -0.0021494117099791765, -0.01661171205341816, -0.03458058834075928, 0.048423685133457184, 0.033196281641721725, 0.023926837369799614, 0.029803365468978882, 0.007695131469517946, 0.008855508640408516, 0.0016939127817749977, 0.01838959939777851, -0.01515954453498125, -0.017833162099123, 0.008394071832299232, -0.014860968105494976, -0.00856371782720089, 0.0019051218405365944, 0.0025972763542085886, -0.013184867799282074, 0.007817275822162628, -0.015661695972085, 0.005740812048316002, 0.01640813797712326, 0.009676593355834484, 0.018878178671002388, 0.007993707433342934, -7.480317435692996e-05, -0.003694884479045868, 0.02251538448035717, -0.0011442606337368488, 0.009527305141091347, -0.009126941673457623, -0.00040163632365874946, -0.013992381282150745, -0.001954318955540657, -0.01752101257443428, -0.013680233620107174, -0.00578831322491169, -0.05553523451089859, -0.004383646417409182, -0.009683379903435707, -0.005557594820857048, -0.009737665764987469, -0.022026805207133293, -0.04036211594939232, 0.011881988495588303, -0.009527305141091347, 0.0004775527922902256, -0.015050970949232578, -0.019950339570641518, 0.01752101257443428, -0.01502382755279541, -0.03485202416777611, -0.021144647151231766, -0.02647830918431282, 0.00021205718803685158, -0.021660368889570236, 0.034987740218639374, -0.0028144230600446463, 0.021307505667209625, 0.003014605026692152, 0.01597384363412857, -0.0028229053132236004, 0.006022423971444368, -0.008380500599741936, 0.010076957754790783, -0.0008049691095948219, 0.011990562081336975, 0.002112089656293392, 0.015824556350708008, -0.001615875749848783, -0.0028093336150050163, 0.01780601777136326, 0.024198269471526146, 0.008808007463812828, 0.006327786482870579, 0.015485264360904694, -0.022936105728149414, -0.013938095420598984, 0.009785166941583157, 0.012085563503205776, 0.0333048552274704, 0.019868910312652588, -0.01927175745368004, -0.031051957979798317, 0.003681312780827284, 0.006012245547026396, -0.04177356883883476, -0.0008779167546890676, 0.015308832749724388, -0.0020255702547729015, -0.03832636773586273, -0.012479141354560852, -0.17382583022117615, -0.0022715565282851458, 0.02885334938764572, -0.04551934823393822, 0.0204117763787508, 0.013266297988593578, 0.00600545946508646, -0.012899862602353096, 0.006629756186157465, -0.02014034427702427, 0.0336848609149456, -0.003800064790993929, 0.017141006886959076, -0.00042432642658241093, -0.0048959762789309025, -0.012913434766232967, -0.03411915525794029, 0.015756698325276375, 0.051518023014068604, 0.0011875202180817723, 0.023302540183067322, -0.02414398267865181, -0.00949337612837553, 0.023519687354564667, 0.020561065524816513, 0.02195894531905651, -0.015268118120729923, -0.005822242237627506, -0.012119492515921593, -0.030536236241459846, 0.009188014082610607, -0.009825881570577621, 0.012024491094052792, -0.00947301834821701, 0.000810906698461622, -0.015512407757341862, 0.004929905757308006, -0.0039663175120949745, -0.019163183867931366, -0.0008045449503697455, 0.005910458043217659, 0.03221912309527397, -0.00697583332657814, -0.003806850640103221, 0.0057204547338187695, 0.02422541379928589, 0.025311145931482315, -0.009445875883102417, 0.009859811514616013, -0.020588207989931107, 0.024388274177908897, -0.05121944472193718, -0.013727733865380287, -0.010294103994965553, 0.02885334938764572, 0.021673941984772682, -0.014575962908565998, -0.007430484052747488, -0.01748029887676239, -0.010660539381206036, -0.008149782195687294, -0.010300889611244202, 0.012614858336746693, 0.011936275288462639, 0.008244783617556095, -0.011732700280845165, -0.0340920090675354, 0.04630650579929352, 0.005197945982217789, 0.003976496402174234, 0.023573974147439003, -0.021945374086499214, -0.020235344767570496, -0.01657099649310112, 0.017385296523571014, 0.0022834318224340677, -0.01334094163030386, 0.012804861180484295, 0.021063216030597687, -0.016584569588303566, -0.016747428104281425, 0.03848922997713089, -0.015240974724292755, -0.005533844232559204, 0.0024836137890815735, 0.0030875527299940586, 0.012377354316413403, -0.008428000845015049, -0.04261501133441925, -0.014996684156358242, 0.05754384025931358, -0.026288306340575218, -0.019054610282182693, -0.006175105459988117, -0.004750080872327089, 0.021103931590914726, 0.01133912242949009, -0.01894603669643402, -0.0026990638580173254, 0.006592433899641037, -0.013245940208435059, 0.008034422993659973, -0.00998874194920063, 0.008142995648086071, 0.020425349473953247, 0.001978069543838501, -0.018443886190652847, 0.013700591400265694, 0.027686186134815216, -0.028310483321547508, -0.01056553702801466, -0.006219213362783194, -0.005194552708417177, 0.019000323489308357, -0.015091686509549618, 0.0352863147854805, -0.0267633143812418, -0.021660368889570236, 0.004787403158843517, -0.01605527475476265, -0.014535248279571533, -0.0007133603794500232, 0.013327370397746563, 0.03072623908519745, -0.00816335342824459, -0.009201585315167904, -0.05140944942831993, -0.007579772267490625, 0.0170460045337677, 0.021809658035635948, -0.0047907959669828415, 0.02449684590101242, -0.008753720670938492, 0.04513934254646301, -0.031296249479055405, 0.01562098041176796, -0.013028793968260288, -0.04245215281844139, -0.03626347705721855, -0.0014318102039396763, 0.01454881951212883, -0.0001472737203584984, -0.0328977033495903, -0.0013410496758297086, 0.004020604304969311, 0.014304529875516891, 0.00420042872428894, -0.005462593398988247, 0.007878349162638187, -0.035774897783994675, 0.0033946114126592875, -0.011834487318992615, -0.024130411446094513, 0.01834888383746147, 0.020384633913636208, 0.008814793080091476, 0.03186625987291336, -0.02212180569767952, -0.00017876421043183655, -0.006969047710299492, 0.01215342152863741, -0.0023699512239545584, -0.018566031008958817, -0.016557425260543823, 0.021931802853941917, -0.0006302339606918395, 0.0002381402300670743, -0.0006510155508294702, 0.003467559115961194, -0.0068740458227694035, -0.006222606170922518, -0.009031940251588821, 0.011088046245276928, 0.033006276935338974, -0.016598140820860863, -0.023763976991176605, -0.04218072071671486, 0.016951004043221474, -0.018769605085253716, -0.031106244772672653, 0.03420058265328407, 0.021850373595952988, 0.01962462067604065, -0.0010857328306883574, -0.018362456932663918, 0.006497432477772236, 0.0060495673678815365, -0.013266297988593578, -0.0061004613526165485, 0.003945960197597742, -0.0034115761518478394, -0.002651563147082925, -0.024917567148804665, -0.00651100417599082, 0.0036643482744693756, -0.006236177869141102, 0.0020527136512100697, 0.01636742241680622, -0.005635631736367941, 0.029396215453743935, -0.035503461956977844, -0.027849046513438225, -0.013910952024161816, -0.018959609791636467, 0.023017534986138344, -0.014983112923800945, -0.02573186717927456, -0.019516047090291977, -0.011922703124582767, 0.0013232368510216475, 0.008224425837397575, 0.013897379860281944, -0.015525978989899158, -0.008149782195687294, 0.005323483608663082, -0.034390587359666824, 0.014318101108074188, 0.009079440496861935, 0.015010256320238113, -0.015865270048379898, -0.037403494119644165, -0.012601286172866821, 0.008231211453676224, 0.015091686509549618, 0.00041011860594153404, 0.0235875453799963, -0.015607409179210663, -0.01716814935207367, -0.08175568282604218, 0.027686186134815216, 0.00808870978653431, -0.009710523299872875, 0.016245277598500252, 0.006198855582624674, 0.03547631949186325, -0.007491556461900473, 0.0035388104151934385, -0.0016837341245263815, -0.03642633557319641, 0.017629586160182953, -0.003352200146764517, 0.005978316534310579, -0.024591848254203796, -0.0027754046022892, 0.02977622300386429, 0.015675267204642296, 0.0029196033719927073, 0.00230887858197093, 0.013843093067407608, 0.01494239829480648, 0.018050307407975197, 0.002687188796699047, -0.03580204024910927, 0.0013631036272272468, -0.009568020701408386, 0.011142333038151264, -0.0014012738829478621, 0.004261501133441925, 0.009350873529911041, -0.014915254898369312, -0.0011451088357716799, 0.02398112416267395, -0.002663438208401203, -0.02536543272435665, 0.02885334938764572, 0.010165173560380936, 0.037647783756256104, 0.011135547421872616, -0.02691260166466236, -0.02631544880568981, 0.009500161744654179, -0.020642494782805443, -0.021266791969537735, 0.0058901007287204266, 0.003586311126127839, 0.011169476434588432, 0.030101941898465157, 0.005075800698250532, 0.0487494021654129, 0.010653752833604813, -0.01807745173573494, -0.025270430371165276, -0.020466063171625137, -0.05499236658215523, 0.032571982592344284, 0.0010093922028318048, 0.008943724445998669, 0.019095325842499733, 0.04899369180202484, -0.0029840688221156597, 0.013015221804380417, 0.009147298522293568, 0.005160623695701361, 0.0031571073923259974, -0.010830184444785118, 0.028473343700170517, 0.015295260585844517, -0.016475996002554893, -0.04492219537496567, -0.010884471237659454, -0.030943384394049644, -0.017901020124554634, 0.027849046513438225, 0.010043028742074966, 0.010694468393921852, 0.0061920699663460255, -0.007742632180452347, 0.011868417263031006, 0.025623293593525887, 0.0023428078275173903, -0.0360734723508358, 0.02057463675737381, 0.029640505090355873, -0.00028288428438827395, -0.018457457423210144, 0.012207708321511745, -0.0016370814992114902, -0.00889622326940298, -0.014969540759921074, 0.0070301201194524765, 0.01286593358963728, 0.02315325289964676, 0.01480668131262064, 0.007070834748446941, 0.00998874194920063, -0.017711017280817032, 0.0364806242287159, 0.005004549864679575, 0.03048194944858551, -0.006561897695064545, 0.004644900560379028, -0.016082417219877243, -0.03126910328865051, 0.0002928509784396738, -0.013863450847566128, -0.03406486660242081, 0.004373467527329922, 0.0037898861337453127, -0.00781049020588398, 0.011664842255413532, -0.007138693239539862, 0.0259625855833292, -0.010375534184277058, 0.005940994247794151, 0.0009364445577375591, -0.024673277512192726, -0.01847102865576744, 0.02429327182471752, 0.019556762650609016, 0.01632670685648918, 0.02489042468369007, -0.008190496824681759, 0.005988494958728552, -0.0024683456867933273, 0.0023937015794217587, -0.02691260166466236, 0.027184035629034042, 0.0045295413583517075, -0.008719791658222675, -0.0028517451137304306, -0.017778875306248665, -0.01032803300768137, -0.014372387900948524, -0.0023377183824777603, 0.004023997113108635, 0.017765304073691368, -0.0235875453799963, 0.048776548355817795, -0.0006616184255108237, 0.014820252545177937, -0.008027637377381325, -0.01982819475233555, -0.012105921283364296, -0.00480776047334075, -0.009126941673457623, -0.016000987961888313, -0.021334649994969368, -0.006483860779553652, 0.010239817202091217, -0.013843093067407608, -0.019556762650609016, 0.013442729599773884, -0.0029077280778437853, -0.02224395051598549, 0.02691260166466236, 0.004078283905982971, 0.012818433344364166, 0.028826206922531128, 0.00432257354259491, 0.019678907468914986, 0.0038747088983654976, -0.027930475771427155, 0.004940084181725979, 0.016435280442237854, -0.02235252410173416, 0.00949337612837553, -0.016353851184248924, 0.03555775061249733, -0.008027637377381325, -0.019013896584510803, -0.02680402807891369, -0.03091624192893505, 0.007735846098512411, 0.003945960197597742, 0.006724757608026266, 0.0048416899517178535, 0.015295260585844517, 0.009371231310069561, 0.05347234010696411, -0.02798476256430149, -0.013592017814517021, -0.031214818358421326, 0.015173115767538548, -0.017711017280817032, -0.012838790193200111, -0.01142055168747902], "33a80011-707c-4e4a-9953-f035ad1c2b39": [-0.015714751556515694, 0.01574210450053215, -0.015837842598557472, -0.0011069736210629344, 0.005672491621226072, 0.018573222681879997, -0.024071333929896355, -0.005101481452584267, 0.008171943947672844, -0.012890473008155823, 0.011864705942571163, 0.01701405644416809, -0.01902456022799015, -0.023633673787117004, -0.019434865564107895, -0.01648065820336342, 0.005009162239730358, -0.004848458804190159, 0.02921384572982788, -0.019475897774100304, 0.017998792231082916, 0.012774218805134296, -0.006588843651115894, -0.019133973866701126, -0.0179304089397192, 0.015769459307193756, 0.023154981434345245, -0.03030799701809883, 0.0016916608437895775, -0.0069547006860375404, 0.03025328926742077, -0.011365499347448349, -0.017301270738244057, -0.03129273280501366, -0.0010633785277605057, -0.015550628304481506, 0.0036756652407348156, -0.013505932874977589, 0.009300287812948227, -0.012541712261736393, 0.02413971722126007, -0.009621694684028625, 0.007501776330173016, -0.01289731077849865, -0.007946275174617767, 0.005966545082628727, -0.009977294132113457, 0.0019523766823112965, -0.003648311598226428, 0.004229579586535692, 0.016384918242692947, 0.004085971973836422, -0.03328955918550491, -0.016289180144667625, 0.013122979551553726, 0.012849441729485989, -0.009197711013257504, -0.004581759683787823, 0.006773481611162424, -0.010674815624952316, 0.0014053009217604995, 0.0042945449240505695, -0.027928218245506287, -0.007057277485728264, 0.005607526749372482, -0.008787404745817184, -0.017219210043549538, 0.01322555635124445, -0.02155478484928608, -0.008794242516160011, 0.017438039183616638, 0.016248149797320366, -0.007864214479923248, 0.001499329460784793, 0.046200547367334366, 0.0024738081265240908, -0.007200884632766247, 0.0042569334618747234, 0.009437057189643383, 0.004745882470160723, -0.01827233098447323, 0.003658569185063243, 0.015851520001888275, -0.005696426145732403, -0.0009864459279924631, 0.010490178130567074, 0.00296275713481009, 0.01898352988064289, 0.006605939939618111, -0.01112615317106247, -0.005398953799158335, 0.007371846120804548, -0.0005834050243720412, 0.00869850441813469, -0.018518514931201935, 0.024126041680574417, -0.005258765537291765, 0.031073903664946556, -0.016371242702007294, -0.02103506214916706, -0.018600575625896454, 0.028283817693591118, -0.016890963539481163, -0.0001233057409990579, -0.05618467926979065, -0.018600575625896454, 0.021021386608481407, -0.0011223601177334785, -0.015181352384388447, 0.004085971973836422, -0.013834178447723389, 0.005494692362844944, -0.016986701637506485, -0.04565347358584404, -0.014675307087600231, 0.029022369533777237, 0.02300453558564186, -0.03337161988019943, -0.0038773994892835617, 0.0018549287924543023, 0.008623281493782997, 0.015071936883032322, 0.008568573743104935, 0.002779828617349267, 0.017041409388184547, 0.00800098292529583, -0.025821976363658905, -0.014429123140871525, -0.003178168321028352, -0.04346517100930214, 0.03249629959464073, -0.0031850067898631096, 0.019216036424040794, 0.019133973866701126, -0.02041960321366787, 0.0051903813146054745, -0.008917334489524364, 0.02605448290705681, -0.024686792865395546, -0.00902674999088049, 0.03183981031179428, 0.009970455430448055, -0.00027289678109809756, -0.012623772956430912, -0.009218226186931133, 0.008534382097423077, 0.015400182455778122, 0.006937604397535324, -0.011324468068778515, 0.006113571580499411, 0.010045678354799747, -0.020487986505031586, -0.000794542080257088, -0.013615348376333714, 0.003573088673874736, 0.015632688999176025, 0.00013356341514736414, 0.0037919189780950546, -0.017779963091015816, 0.0016950800782069564, 0.01622079685330391, 0.03484872728586197, 0.02855735458433628, -0.005340827163308859, -0.004639886319637299, 0.02654685080051422, -0.0058639682829380035, -0.0038090150337666273, 0.006469171028584242, 0.004629628732800484, -0.008219812996685505, 0.008083044551312923, -0.012671642005443573, 0.0021763357799500227, -0.01836806908249855, 0.025151807814836502, 0.0019250228069722652, 0.001678838743828237, -0.005788745358586311, -0.01657639630138874, 0.006093056406825781, -0.010859454050660133, 0.02400294877588749, 0.020405925810337067, 0.0018976690480485559, -0.004810847342014313, 0.0035115424543619156, 0.0059904796071350574, 0.006903412286192179, -0.01044914685189724, 0.022662613540887833, 0.030718304216861725, 0.009409703314304352, -0.0054707578383386135, -0.6219156980514526, -0.035477861762046814, -0.017205532640218735, 0.0005590430228039622, 0.011898897588253021, 0.023113951086997986, 0.010161932557821274, -0.006120410282164812, -0.02833852358162403, 0.009902071207761765, -0.014757368713617325, 0.021677877753973007, 0.0036825037095695734, -0.015468567609786987, 0.011324468068778515, -0.01679522544145584, -0.0004380880272947252, -0.01858689822256565, -0.005087804514914751, 0.018969852477312088, -0.02089829370379448, 0.009861040860414505, -0.025821976363658905, -0.004407379310578108, 0.01836806908249855, 0.017000379040837288, 0.005785326007753611, -0.004790332168340683, -0.006756385788321495, 0.024385903030633926, -0.010750038549304008, 0.013936755247414112, 0.020214449614286423, -6.1011771322228014e-05, 0.051534537225961685, -0.00020675617270171642, -0.004633048083633184, 0.017150824889540672, -0.013560640625655651, 0.0489632822573185, -0.02051534131169319, -0.015673721209168434, 0.013136656954884529, -0.007358169183135033, 0.02431751787662506, -0.011632198467850685, 0.011933090165257454, -0.02850264683365822, 0.006561489775776863, 0.013403356075286865, 0.01504458300769329, 0.0036654076538980007, 0.006523878313601017, 0.0015531822573393583, 0.006773481611162424, 0.019175006076693535, 0.023113951086997986, -0.021883031353354454, -0.00518354307860136, 0.009279772639274597, -0.025685207918286324, 1.4945746443117969e-05, -0.006144344806671143, -0.033234853297472, 0.014853106811642647, -0.00022011251712683588, -0.004027845337986946, -0.008896819315850735, 0.017862023785710335, -0.0034192234743386507, -0.011187699623405933, -0.00013858539750799537, -0.01582416705787182, -0.014839430339634418, -0.00874637346714735, 0.01178264431655407, 0.009601179510354996, -0.04652879387140274, -0.013211879879236221, 0.01360167097300291, -0.00010193559865001589, -0.003620957722887397, -0.014415446668863297, -0.014223969541490078, 0.014032493345439434, 6.48049681331031e-05, -0.024508994072675705, -0.0017677386058494449, 0.029131785035133362, -0.010230316780507565, -0.0030243031214922667, 0.028721477836370468, 0.011816836893558502, -0.03129273280501366, -0.003227747045457363, 0.03008916601538658, -0.0002060082188108936, 0.007002569735050201, -0.013109303079545498, -0.019735757261514664, -0.04390282928943634, 0.015550628304481506, 0.0029046302661299706, 0.01003200188279152, 0.026273313909769058, -0.018614253029227257, -0.031593624502420425, 0.0018104788614436984, 0.024454286321997643, -0.005980222020298243, -0.018176592886447906, -0.0118099981918931, -0.015153998509049416, 0.0026447693817317486, 0.012657965533435345, -0.031073903664946556, 0.005080966278910637, 0.01797143928706646, 0.02601345255970955, -0.007624868303537369, 0.015865197405219078, -0.00041009311098605394, 0.03952622413635254, 0.005751133896410465, 0.0013608509907498956, 0.007611191365867853, 0.011003061197698116, -0.025562115013599396, -0.021965092048048973, 0.011700582690536976, -0.0032414239831268787, 0.025069747120141983, 0.011707421392202377, -0.012979372404515743, 0.029131785035133362, -0.013232395052909851, -0.005272442474961281, -0.008459159173071384, 0.010257670655846596, -0.02046063356101513, -0.015126644633710384, 0.0032482624519616365, 0.006773481611162424, -0.005966545082628727, 0.0017446588026359677, -0.00012180984049336985, -0.022580552846193314, 0.003610700136050582, -0.008978880941867828, 0.024153394624590874, -0.013697409071028233, 0.0013668346218764782, -0.004496278706938028, 0.01534547470510006, 0.010264509357511997, 0.009266096167266369, -0.011221891269087791, -0.03741998225450516, 0.00658200541511178, -0.019092943519353867, 0.02007768116891384, 0.017944084480404854, -0.022224953398108482, -0.013820501044392586, -0.010914161801338196, -0.007604353129863739, -0.00806936714798212, 0.012657965533435345, -0.023948241025209427, -0.034383710473775864, -0.008691665716469288, 0.019434865564107895, 0.01823130063712597, 0.004807428456842899, 0.024331195279955864, 0.011556975543498993, -0.01183051336556673, -0.00518354307860136, -0.00020055883214809, -0.015195028856396675, 0.010606431402266026, 0.001369399018585682, -0.005593849811702967, -0.016822580248117447, 0.02334645763039589, 0.021349631249904633, 0.013458063825964928, 0.015427536331117153, -0.011215053498744965, 0.024987684562802315, -0.026478467509150505, 0.01862793043255806, -0.004427894484251738, 0.011386014521121979, 0.022197598591446877, 0.021021386608481407, -0.019571635872125626, 0.019640019163489342, -0.001540360157378018, 0.039991237223148346, 0.028694123029708862, 0.009437057189643383, -0.007611191365867853, -0.01739700883626938, 0.020829910412430763, -0.02545269951224327, 0.009101972915232182, -0.018751021474599838, 0.024372225627303123, 0.005689587909728289, 0.007529130205512047, -0.016644779592752457, -0.008814758621156216, -0.012958857230842113, 0.02318233624100685, -0.004773235879838467, -0.005874225869774818, 0.004068876150995493, -0.0045338901691138744, 0.009101972915232182, 0.00900623481720686, -0.0016950800782069564, 0.016330212354660034, -0.04830678924918175, 0.003219198901206255, 0.0006086218054406345, -0.003962880000472069, 0.011768966913223267, -0.024085011333227158, -0.037584103643894196, -0.024782532826066017, -0.02186935395002365, -0.0076522221788764, 0.013998300768435001, 0.01154329814016819, -0.0075975144281983376, 0.01486678421497345, -0.04237101599574089, 0.0146479532122612, 0.018751021474599838, -0.006397366989403963, 0.0026328021194785833, 0.00199511693790555, -0.009943101555109024, 0.022238628938794136, 0.024344870820641518, 0.03391869738698006, 0.010332893580198288, 0.004243256524205208, 0.005563076585531235, -0.03558727726340294, 0.007747960276901722, -0.005135673563927412, 0.03419223427772522, -0.004475763533264399, -0.011550136841833591, 0.007474422454833984, 0.014524861238896847, 0.010250831954181194, 0.03621641546487808, 0.012726349756121635, 0.030444765463471413, 0.02051534131169319, -0.0011941638076677918, 0.001361705712042749, -0.03285190090537071, 0.01840909942984581, -0.017725255340337753, -0.012432296760380268, 0.018299683928489685, 0.000541519548278302, -0.017438039183616638, 0.016453303396701813, -0.021418016403913498, 0.024987684562802315, 0.0034551252610981464, 0.0026806711684912443, 0.014046169817447662, 0.04185129702091217, 0.001228356035426259, -0.04360193759202957, -0.03446577489376068, 0.008944688364863396, -0.001786544336937368, 0.006257179193198681, 0.001384785515256226, 0.0007983886753208935, -0.01460692286491394, -0.018833084031939507, 0.006469171028584242, 0.001967763062566519, 0.0297335684299469, 0.03175774961709976, 0.010373923927545547, -0.005080966278910637, 0.009744786657392979, 0.022142890840768814, 0.007576999254524708, -0.04100332781672478, -0.005751133896410465, 0.02531593106687069, -0.005419469438493252, 0.0019079267513006926, -0.02024180255830288, 0.04819737374782562, 0.004817686043679714, -0.006588843651115894, -0.010982546024024487, 0.00869850441813469, -0.02736746519804001, -0.0028071824926882982, -0.02392088808119297, 0.00795995257794857, -0.008103559724986553, 0.00870534311980009, 0.003949203062802553, 0.015386505983769894, 0.009895232506096363, 0.007378684356808662, 0.012343396432697773, -0.00553230382502079, -0.01556430570781231, -0.038459427654743195, 0.009170357137918472, 0.01042863167822361, 0.0008624991169199347, -0.004841620568186045, -0.0012386137386783957, -0.05522729828953743, -0.014730014838278294, -0.029104430228471756, 0.0023883276153355837, 0.011693743988871574, -0.008165106177330017, 0.012343396432697773, -0.026396404951810837, 0.012172435410320759, -0.018614253029227257, 0.023455873131752014, -0.0043424139730632305, -0.00508438516408205, -0.0017489328747615218, 0.02943267673254013, -0.018463807180523872, 0.01570107415318489, -0.018518514931201935, 0.014661630615592003, 0.006226405967026949, 0.011789483018219471, -0.021445369347929955, 0.021855676546692848, 0.028666770085692406, 0.015619013458490372, -0.006523878313601017, 0.03104654885828495, -0.007440230343490839, -0.0006962394108995795, 0.025780946016311646, 0.0079804677516222, 0.035477861762046814, 0.015222382731735706, 0.051753368228673935, -0.009820009581744671, 0.010004648007452488, -0.0029542092233896255, 0.017807316035032272, 0.004592017270624638, -0.013430709950625896, 0.00022481394989881665, -0.020228127017617226, -0.012616935186088085, 0.015112968161702156, -0.016590071842074394, -0.03164833411574364, 0.017219210043549538, -0.003942364826798439, -0.04217953979969025, 0.0013574317563325167, 0.013068272732198238, 0.03624377027153969, -0.029022369533777237, 0.0264511127024889, 0.015386505983769894, -0.027873510494828224, 0.002166078193113208, -0.013389679603278637, -0.0043902830220758915, -0.00804201327264309, -0.014100877568125725, -0.033781927078962326, -0.004448409657925367, 5.083423820906319e-05, -0.01324607152491808, -0.002453292952850461, 0.014292354695498943, -0.03545051068067551, -0.021924061700701714, 0.015933580696582794, -0.004804009106010199, 0.007241915445774794, 0.03621641546487808, -0.005665653385221958, 0.005857130046933889, 0.028064986690878868, -0.035395801067352295, -0.025042392313480377, -0.024385903030633926, -0.03878767043352127, 0.012384427711367607, -0.02151375450193882, 0.00011668100341921672, -0.010661139152944088, -0.004386863671243191, 0.020542694255709648, 0.012227143160998821, 0.009115650318562984, 0.030417412519454956, -0.01504458300769329, -0.012685319408774376, 0.004544148221611977, 0.007871052250266075, 0.02067946456372738, -0.0019916975870728493, -0.015331798233091831, 0.005197219550609589, -0.03380928188562393, 0.013998300768435001, -0.0016856772126629949, -0.008534382097423077, 0.0018104788614436984, 0.021486399695277214, 0.006544393952935934, -0.007775314152240753, 0.002966176485642791, 0.004537309519946575, -0.007618030067533255, 0.014429123140871525, -0.013745278120040894, 0.004609113093465567, 0.0008680553874000907, -0.032031286507844925, 0.008007821626961231, 0.015277090482413769, 0.006999150384217501, 0.01914765127003193, -0.012603257782757282, 0.02400294877588749, 0.025876684114336967, -0.009922586381435394, 0.0034807694610208273, 0.0031730395276099443, -0.022730998694896698, 0.014306031167507172, 0.014196615666151047, 0.002501162001863122, 0.034219589084386826, -0.01005935575813055, -0.00804885197430849, -0.01985885016620159, -0.004636466968804598, -0.005795584060251713, 0.030882427468895912, -0.0023763603530824184, -0.009204549714922905, -0.014853106811642647, -0.0004705706378445029, -0.0018566383514553308, -0.011447560042142868, -0.0007710349163971841, -0.029678860679268837, -0.0024139718152582645, 0.0030277224723249674, -0.012794733978807926, 0.005292958114296198, 0.0006970941904000938, -0.014976198785007, -0.005316892638802528, -0.00025494585861451924, -0.010681654326617718, -0.005375019274652004, -0.01587887480854988, -0.008719019591808319, 0.01994091086089611, 0.011310791596770287, 0.032906606793403625, 0.0056519764475524426, -0.01972208172082901, -0.006804254837334156, -0.0032670681830495596, 0.018504837527871132, -0.00639394810423255, -0.002172916429117322, -0.019708404317498207, 0.0005804132088087499, 0.019229713827371597, 0.016384918242692947, 0.008534382097423077, -0.024126041680574417, 0.011221891269087791, 0.017916731536388397, -0.033863991498947144, 0.007994144223630428, 0.013034080155193806, -0.03908856213092804, 0.020583726465702057, 0.012213466688990593, 0.002225914504379034, -0.020911971107125282, -0.023907210677862167, -0.010592753998935223, 0.006496524903923273, 0.0014865074772387743, 0.021855676546692848, 0.014497507363557816, 0.017027733847498894, -0.005422888323664665, 0.017998792231082916, 0.002355844946578145, -0.0004120164376217872, -0.007775314152240753, 0.006158021744340658, -0.017383331432938576, 0.031593624502420425, 0.021978769451379776, 0.01457956898957491, 0.006879477761685848, 0.012534873560070992, -0.006246921140700579, 0.002289170166477561, 0.03870560973882675, 0.009266096167266369, -0.03134744241833687, 0.0008804500685073435, -0.013382840901613235, -0.04907269775867462, -0.012705834582448006, -0.031019195914268494, -0.011091961525380611, 0.0035149618051946163, 0.0251381304115057, 0.001329223159700632, 0.01359483227133751, -0.015167675912380219, -0.011796320788562298, -0.006216148380190134, -0.04114009812474251, 0.03112861141562462, 0.012726349756121635, 0.014141908846795559, 0.021965092048048973, -0.002769571030512452, -0.0016480657504871488, -0.029186492785811424, -0.013888886198401451, 0.0020788880065083504, 0.017944084480404854, 0.04682968556880951, -0.003532057860866189, -0.012288689613342285, 0.018286006525158882, 0.016590071842074394, -0.022238628938794136, -0.02676568180322647, 0.01902456022799015, 0.022881444543600082, 0.009225064888596535, -0.020529018715023994, 0.018436452373862267, -0.021609492599964142, 0.018737344071269035, -0.0020122129935771227, -0.01932545192539692, -0.001623276388272643, 0.010326054878532887, -0.013608509674668312, -0.012151920236647129, -0.021527431905269623, 0.038678254932165146, 0.006688001099973917, -0.0018634768202900887, -0.0057784877717494965, 0.0066948398016393185, -0.03104654885828495, 0.0066640665754675865, 0.0039902338758111, 0.020706817507743835, -0.004544148221611977, -0.00541263073682785, 0.030636243522167206, 0.002624253975227475, 0.008951527066528797, -0.017985114827752113, -0.014552215114235878, 0.040073297917842865, -0.021281247958540916, -0.01587887480854988, -0.022443782538175583, 0.004858716391026974, 0.008582251146435738, 0.008247166872024536, -4.9391750508220866e-05, 0.0054023731499910355, -0.020009296014904976, -0.0004645870067179203, 0.022717321291565895, -0.0030294321477413177, 0.009717432782053947, 0.0018549287924543023, 0.01617976650595665, -0.027736742049455643, -0.0053066350519657135, -0.0018173173302784562, 0.019010882824659348, -0.02382514998316765, -0.020706817507743835, -0.006677743513137102, -0.0371737964451313, 0.01073636207729578, 0.025835653766989708, -0.00041030682041309774, 0.015632688999176025, 0.04581759497523308, -0.051616597920656204, 0.01741068623960018, -0.017301270738244057, -0.01862793043255806, -0.007111984770745039, -0.005292958114296198, -0.024645762518048286, -0.026040805503726006, 0.01805349998176098, 0.003573088673874736, -0.024686792865395546, -0.0314842090010643, 0.005628041923046112, 0.026396404951810837, -0.009040427394211292, 0.044668737798929214, 0.015947258099913597, 0.000448345672339201, 0.013040918856859207, 0.005395534913986921, -0.0203375406563282, -0.012904149480164051, -0.004954454954713583, -0.02006400376558304, 0.017342301085591316, -0.031949225813150406, 0.027134958654642105, 0.0045065367594361305, 0.002914888085797429, 0.004804009106010199, -0.016713164746761322, -0.036271121352910995, 0.012774218805134296, -0.007535968441516161, -0.02374308742582798, -0.01810820773243904, -0.020611079409718513, -0.005378438625484705, -0.029788276180624962, -0.011645874939858913, 0.01775260828435421, -0.01870999112725258, 0.014675307087600231, 0.024591054767370224, -0.021841999143362045, 0.0028533420991152525, -0.006096475757658482, -0.01145439874380827, -0.0179304089397192, -0.029706213623285294, -0.01739700883626938, -0.006797416135668755, -0.009949940256774426, 0.015126644633710384, 0.009833686985075474, -0.037228506058454514, -0.05399637669324875, -0.019120298326015472, -0.03482137247920036, 0.002687509637326002, -0.009368672035634518, 0.009908909909427166, 0.012309204787015915, 0.009286611340939999, 0.02037857286632061, 0.0030653339345008135, -0.008411290124058723, 0.0013428999809548259, -0.028830893337726593, -0.004916843492537737, 0.008486513048410416, -0.024016626179218292, -0.015495920553803444, 0.0031388471834361553, -0.02370205707848072, -0.021418016403913498, 0.024563701823353767, -0.004434732720255852, 0.012917826883494854, 0.06050657853484154, -0.002516548614948988, -0.0035833462607115507, -0.016617426648736, -0.012281850911676884, -0.024262810125947, 0.006564909126609564, -0.004841620568186045, -0.030034460127353668, -0.025657853111624718, 0.007583837956190109, -0.0257946215569973, -0.023196011781692505, 0.03632583096623421, 0.0059597063809633255, -0.0264511127024889, 0.01460692286491394, -0.023893533274531364, -0.004424475133419037, -0.009861040860414505, -0.0001350593229290098, 0.018641605973243713, -0.008889981545507908, 0.005993898957967758, 0.033125437796115875, -0.00935499556362629, 0.02348322793841362, -0.009758464060723782, 0.00641788262873888, -0.015810489654541016, -0.007474422454833984, 0.00674612820148468, 0.017068764194846153, 0.0028447939548641443, 0.004684336017817259, 0.014989876188337803, -0.016562718898057938, 0.013478578999638557, 0.030061813071370125, 0.0020481147803366184, -0.04234366491436958, -0.0012659674976021051, 0.026916127651929855, -0.024153394624590874, -0.002162658842280507, -0.0010326055344194174, -0.02073417231440544, -0.012521196156740189, -0.01591990515589714, 0.00466724019497633, -0.018518514931201935, 0.020105034112930298, 0.008917334489524364, -0.0010958610801026225, -0.02768203429877758, -0.010421792976558208, -0.01669948734343052, -0.012965695932507515, -0.001421542139723897, 0.2505607008934021, -0.02418074943125248, 0.0003784653090406209, 0.011180860921740532, -0.016685809940099716, 0.024782532826066017, -0.008151428773999214, 0.0044860211201012135, -0.0194622203707695, 0.023141304031014442, 0.00250800047069788, 0.0017138858092948794, -0.0070709544233977795, -0.011256083846092224, 0.019790465012192726, -0.023250719532370567, -0.02334645763039589, -0.009929425083100796, -0.02151375450193882, -0.001135182217694819, 0.026245959103107452, -0.00259177153930068, -0.006783739663660526, -0.004646724555641413, 0.013752116821706295, 0.006380271166563034, -0.020843585953116417, 0.0022430105600506067, 0.018039822578430176, 0.0108184227719903, -0.03328955918550491, 0.006024671718478203, 0.01154329814016819, -0.009040427394211292, -0.019776789471507072, -0.012746864929795265, 0.033043377101421356, 0.04053831472992897, 0.03200393170118332, 0.0016437916783615947, -0.010784231126308441, 0.0005440839449875057, -0.0031200414523482323, -0.00791208352893591, 0.0011548427864909172, 0.02316865883767605, -0.019270744174718857, -0.031019195914268494, -0.0024703890085220337, 0.016193442046642303, -0.017903054133057594, -0.013232395052909851, 0.03241423889994621, 0.017506424337625504, 0.005347665399312973, -0.0101687703281641, 0.01600196585059166, 0.0013044337974861264, 0.021541107445955276, 0.027408495545387268, 0.0028311170171946287, 0.036489952355623245, -0.045762889087200165, 0.02089829370379448, -0.005658815149217844, -0.003573088673874736, -0.01805349998176098, -0.002519967732951045, 0.006554651539772749, -0.01888778991997242, 0.011960444040596485, -0.016494333744049072, 0.008937850594520569, -0.005946029908955097, 0.00942337978631258, -0.0327971912920475, 0.02981562912464142, 0.024167072027921677, 0.038322657346725464, 0.02921384572982788, 0.010127739980816841, -0.005607526749372482, 0.00339528894983232, 0.012514358386397362, -0.0008663457701914012, -0.02615022100508213, 0.0035833462607115507, -0.001283918390981853, 0.0029080496169626713, 0.001313836663030088, -0.004762978293001652, -0.016945671290159225, 0.012904149480164051, -0.01504458300769329, 0.004827943630516529, 0.011023576371371746, 0.010175609029829502, 0.022443782538175583, -0.00942337978631258, -0.011037253774702549, 0.0004000491462647915, 0.01753377728164196, 0.012268174439668655, 0.026314344257116318, -0.01071584690362215, 0.00499548576772213, -0.01044914685189724, 0.015619013458490372, -0.0042945449240505695, -0.02330542728304863, 0.03162097930908203, -0.054981112480163574, -0.0037201151717454195, -0.008479674346745014, -0.009608018212020397, 0.002196851186454296, -0.019790465012192726, -0.028748830780386925, -0.002254977822303772, 0.0021643685176968575, 0.015810489654541016, -0.01604299619793892, -0.016125058755278587, -0.0017968019237741828, -0.003196974052116275, -0.030581535771489143, -0.012247658334672451, -0.02308659628033638, -0.00975162535905838, -0.03296131640672684, 0.030991841107606888, 0.007057277485728264, 0.021787291392683983, -0.0030379800591617823, 0.018080854788422585, 0.0016984993126243353, -0.010134578682482243, -0.0027199923060834408, 0.006752966437488794, -0.004150937311351299, 0.00016668713942635804, 0.0017677386058494449, 0.014962522312998772, -0.007105146534740925, -0.011584329418838024, -0.0018361230613663793, 0.019038235768675804, -0.017957761883735657, 0.015140322037041187, 0.008110398426651955, -0.007440230343490839, -0.003238004632294178, 0.0016104542883113027, -0.012329719960689545, 0.030636243522167206, 0.0021677876356989145, -0.009375510737299919, -0.05134306102991104, -0.0011146668111905456, 0.00037376387626864016, -0.04494227468967438, -0.013150333426892757, 0.027572618797421455, 0.002207108773291111, -0.029897689819335938, -0.012452811934053898, -0.17593955993652344, -0.010421792976558208, 0.019886203110218048, -0.021390661597251892, 0.029405321925878525, 0.014169261790812016, 0.015386505983769894, 0.023797795176506042, -0.0069923121482133865, -0.011919412761926651, 0.03457518666982651, -0.008424966596066952, 0.023989271372556686, -0.007583837956190109, -0.0027558940928429365, -0.01797143928706646, -0.030991841107606888, 0.022197598591446877, 0.05057715252041817, 0.024673117324709892, 0.04089391231536865, -0.006506782490760088, 0.004841620568186045, 0.02535696141421795, 0.013526448048651218, 0.011057768948376179, -0.005932352971285582, 0.010312378406524658, 0.004513374995440245, -0.02103506214916706, 0.004653563257306814, 0.010811585001647472, 0.022416429594159126, -0.007057277485728264, -0.024057656526565552, -0.00804885197430849, 0.00713933864608407, -0.003853464964777231, -0.01360167097300291, 0.00627427501603961, -0.006988892797380686, 0.018559545278549194, -0.02563050016760826, -0.01679522544145584, 0.004834781866520643, 0.016330212354660034, 0.018614253029227257, -0.012028828263282776, 0.007344492245465517, -0.011187699623405933, 0.022443782538175583, -0.04491491988301277, -0.02221127599477768, -0.008124074898660183, 0.032824546098709106, 0.013129818253219128, -0.008889981545507908, 0.0028123112861067057, -0.018600575625896454, 0.00933448038995266, -0.0031063645146787167, -0.02987033687531948, 0.022060830146074295, 0.013847854919731617, 0.008513866923749447, -0.02072049491107464, -0.019913557916879654, 0.03348103538155556, 0.00522457342594862, 0.007768475916236639, 0.019352804869413376, -0.006411043927073479, -0.020255479961633682, -0.025220192968845367, 0.0037235345225781202, -0.012753703631460667, -0.03471195697784424, 0.022758351638913155, 0.011297114193439484, -0.023510580882430077, -0.023797795176506042, 0.03676349297165871, -0.0067119356244802475, -0.010319216176867485, 0.007515453267842531, 0.009259257465600967, 0.007105146534740925, -0.006322144065052271, -0.04483285918831825, -0.008999396115541458, 0.05312105640769005, -0.039197977632284164, -0.017123471945524216, -0.007727445103228092, 0.0010625236900523305, 0.010667976923286915, 0.005057031754404306, -0.008493350818753242, -0.014018816873431206, -0.01106460765004158, 0.0023472970351576805, -0.01566004380583763, -0.008219812996685505, 0.01556430570781231, 0.02159581519663334, 0.0029080496169626713, -0.003863722551614046, 0.029897689819335938, 0.036845553666353226, 0.0024413256905972958, -0.015974612906575203, 0.004092810675501823, 0.0174927469342947, 0.014401769265532494, 0.009963617660105228, 0.017957761883735657, 0.0048826513811945915, -0.02225230634212494, 0.013663217425346375, -0.01938015967607498, -0.02431751787662506, -0.003586765378713608, 0.005457080900669098, 0.032031286507844925, 0.0002218221197836101, -0.015099290758371353, -0.04734940826892853, 0.00045945815509185195, 0.01504458300769329, 0.03851413354277611, -0.016603749245405197, 0.03197657689452171, -0.0055357227101922035, 0.03878767043352127, -0.009861040860414505, 0.01608402654528618, -0.006469171028584242, -0.03654466196894646, -0.018286006525158882, -0.011515945196151733, 0.011666391044855118, 0.012753703631460667, -0.0168362557888031, -0.005587011110037565, 0.009676402434706688, 0.02584932930767536, -0.0004859571345150471, -0.026683621108531952, -0.0023028471041470766, -0.019216036424040794, -0.0013719634152948856, -0.0018771537579596043, -0.015619013458490372, 0.03572404757142067, 0.014374415390193462, 0.012035666964948177, 0.0236063189804554, -0.021404339000582695, -0.016562718898057938, -0.022047152742743492, 0.019120298326015472, -0.019995618611574173, -0.021130802109837532, -0.01779363863170147, 0.021199185401201248, -0.0024960332084447145, 0.003737211227416992, 0.016343887895345688, -0.004191968124359846, -0.005385276861488819, 0.0020549532491713762, -0.012733188457787037, 0.0018634768202900887, 0.030636243522167206, -0.020405925810337067, -0.023291749879717827, -0.04754088446497917, 0.02334645763039589, -0.011338145472109318, -0.02073417231440544, 0.03865090385079384, 0.021855676546692848, 0.01460692286491394, 0.00031050824327394366, -0.03900650143623352, 0.010373923927545547, 0.0013608509907498956, -0.00573745695874095, 0.0034175137989223003, 0.017301270738244057, -0.00800098292529583, -0.0032841642387211323, -0.022854089736938477, -0.010161932557821274, 0.019530605524778366, -0.002817440079525113, -0.008219812996685505, 0.02002297341823578, -0.008896819315850735, 0.027695709839463234, -0.023838825523853302, -0.03162097930908203, -0.013505932874977589, -0.01898352988064289, 0.018080854788422585, -0.019475897774100304, -0.01042863167822361, -0.017068764194846153, -0.0025558695197105408, -0.007262430619448423, 0.0354231558740139, 0.0076590608805418015, -0.0022857508156448603, -0.004000491462647915, 0.001967763062566519, -0.02899501472711563, 0.01591990515589714, 0.014100877568125725, 0.0010155093623325229, -0.033043377101421356, -0.03030799701809883, -0.006667485926300287, 0.008404451422393322, 0.006982054561376572, -0.02584932930767536, 0.014018816873431206, -0.011242407374083996, -0.02378411963582039, -0.078724205493927, 0.002492613857612014, 0.009902071207761765, 0.010811585001647472, 0.009601179510354996, 0.00804201327264309, 0.012295527383685112, 0.014511184766888618, -0.001306143356487155, -0.01079790759831667, -0.04469608888030052, 0.011796320788562298, 0.001075345790013671, 0.008582251146435738, -0.03082771971821785, -0.012651126831769943, 0.0027746998239308596, 0.014675307087600231, -0.002020761137828231, -0.007583837956190109, 0.022553198039531708, 0.012008313089609146, 0.0019711824133992195, -0.00017609000497031957, -0.029241198673844337, 0.002684090519323945, 0.00242593907751143, 0.013505932874977589, -0.020529018715023994, 0.0019711824133992195, 0.010866292752325535, -0.020693140104413033, 0.01051753107458353, 0.020091356709599495, 0.005829776171594858, -0.033043377101421356, 0.007850537076592445, 0.02155478484928608, 0.028365878388285637, 0.011180860921740532, -0.03164833411574364, -0.03774822875857353, 0.0114817526191473, -0.011591168120503426, 0.0016916608437895775, 0.0008727568201720715, 0.005286119412630796, 0.01453853864222765, 0.03766616806387901, 0.012391266413033009, 0.04294544830918312, 0.010503854602575302, 0.007433392107486725, -0.03493078798055649, -0.023688379675149918, -0.05462551489472389, 0.004328737035393715, 0.006814512424170971, -0.0034705118741840124, -0.00396971870213747, 0.03840471804141998, 0.01325291022658348, 0.0038773994892835617, -0.00676664337515831, -0.0063358210027217865, 0.010572238825261593, -0.013150333426892757, 0.028475293889641762, 0.023469550535082817, -0.015769459307193756, -0.0290770772844553, -0.012233981862664223, -0.031374793499708176, -0.021896706894040108, 0.02649214304983616, 0.003778242040425539, 0.012651126831769943, -0.0029610474593937397, -0.023756764829158783, 0.008308713324368, 0.008260844275355339, 0.009231903590261936, -0.0290770772844553, 0.03646260127425194, 0.025986099615693092, -0.005467338487505913, -0.016015643253922462, 0.011023576371371746, -0.018176592886447906, 0.0038090150337666273, -0.026464790105819702, -1.373031955154147e-05, 0.008910496719181538, 0.029487384483218193, 0.0004118027281947434, 0.020474310964345932, 0.00793943740427494, 0.0007291494403034449, 0.0236063189804554, 0.003234585514292121, 0.024235457181930542, 0.012104051187634468, 0.0030106264166533947, -0.02457737922668457, -0.026683621108531952, 0.0089652044698596, -0.020953001454472542, -0.036626722663640976, -0.0005056177033111453, -0.0047185285948216915, -0.022662613540887833, -0.001250581000931561, -0.008151428773999214, 0.012582742609083652, -0.0037577266339212656, 0.00867798924446106, -0.0037987572140991688, -0.020802555605769157, -0.018682638183236122, 0.012910988181829453, 0.014675307087600231, 0.021718908101320267, 0.024632086977362633, -0.0032362949568778276, 0.01119453739374876, -0.013382840901613235, -0.009929425083100796, -0.01739700883626938, 0.018655283376574516, 0.010141417384147644, 0.004219321999698877, 0.014771045185625553, -0.010230316780507565, -0.012623772956430912, -0.016015643253922462, 0.007453907281160355, 0.01775260828435421, 0.005703264847397804, -0.006797416135668755, 0.05645821988582611, 0.0015831005293875933, 0.008083044551312923, -0.015441213734447956, -0.010695330798625946, 0.013670055195689201, 0.007604353129863739, -0.009642209857702255, -0.0002241728361696005, -0.01457956898957491, 0.014415446668863297, 0.01379314810037613, 0.004468925297260284, -0.03052682802081108, 0.012391266413033009, -0.01675419509410858, -0.03922533243894577, 0.037802934646606445, -0.0048826513811945915, 0.02208818309009075, 0.027394818142056465, 0.0018805728759616613, 0.014155585318803787, 0.0016420821193605661, -0.022580552846193314, 0.004127002786844969, 0.017328625544905663, -0.011905736289918423, -0.004633048083633184, -0.012377589009702206, 0.01150226779282093, -0.00032439883216284215, -0.030116520822048187, -0.03635318577289581, -0.03328955918550491, 0.008828435093164444, -0.004068876150995493, -0.0069239274598658085, 0.011515945196151733, 0.006653808988630772, 0.0003528211382217705, 0.03266042470932007, -0.028174402192234993, -0.027791447937488556, -0.001998536055907607, 0.009635372087359428, 0.0026379309128969908, 0.007734283804893494, -0.01898352988064289], "2bef8386-2742-4384-9cf6-e5745950cf70": [-0.019459813833236694, -0.02122020348906517, 0.006850509904325008, -0.0217251218855381, -0.002437594113871455, 0.002650819718837738, -0.030486132949590683, -0.004220159724354744, 0.012500133365392685, -0.023840319365262985, -0.01067151129245758, -0.002521178685128689, 0.0013748782221227884, -0.002788989804685116, -0.002435888396576047, -0.019650865346193314, 0.018763845786452293, -0.005380106624215841, 0.009293220937252045, -0.03643597662448883, 0.008392556570470333, -0.016211962327361107, -7.500207721022889e-05, -0.007137084845453501, -0.02332175523042679, -0.009927780367434025, 0.02227097935974598, -0.03490757569670677, 0.01877749338746071, 0.0002492606290616095, 0.029994862154126167, -0.01664864830672741, -0.011394771747291088, -0.032150998711586, -0.009320514276623726, 0.00017495155043434352, -0.0005002270918339491, 0.01909136027097702, 0.01794506050646305, 0.0027173461858183146, 0.021302083507180214, -0.0048854234628379345, 0.003674302250146866, -0.008761010132730007, -0.021329374983906746, 0.017262738198041916, -0.0007394661079160869, 0.0019275587983429432, -0.022571200504899025, 0.016635002568364143, 0.013462207280099392, 0.024181479588150978, -0.04656163230538368, -0.009422862902283669, -0.005690563004463911, 0.019036775454878807, -0.025969162583351135, 0.004742135759443045, -0.00615454139187932, -0.008017280139029026, 0.03138679638504982, -0.012691183015704155, -0.030131325125694275, 0.004974124953150749, 0.0167714674025774, 0.00370841845870018, -0.016948871314525604, 0.024863801896572113, -0.013612317852675915, -0.008808773010969162, 0.010187062434852123, 0.030568011105060577, 0.015256713144481182, -0.011060434393584728, 0.036299511790275574, 0.001296411151997745, -0.02925795316696167, -0.002350598108023405, 0.0041007534600794315, 0.001283617690205574, 0.006270536221563816, -0.008344794623553753, 0.006717456970363855, -0.011285600252449512, -0.008065042085945606, 0.0009202813962474465, -0.023076118901371956, 0.013066460378468037, 0.005260700359940529, -0.01765848509967327, 0.011053611524403095, 0.017235444858670235, 0.01645759865641594, 0.013196101412177086, -0.03007674030959606, 0.029312539845705032, -0.008221976459026337, 0.02516402304172516, 0.00387558713555336, -0.04978219047188759, -0.01246601715683937, 0.014792733825743198, -0.007983163930475712, 0.0011676229769364, -0.02363562397658825, -0.008044572547078133, 0.031277626752853394, -0.01588444970548153, 0.0036128934007138014, 0.008713248185813427, -0.018054232001304626, 0.002995392307639122, -0.0013049402041360736, -0.03231475502252579, -0.03468923270702362, 0.006669694557785988, 0.04839025437831879, -0.001155682373791933, -0.01947346143424511, -0.025969162583351135, 0.03141409158706665, 0.008795126341283321, 0.035344261676073074, -0.0073144882917404175, 0.02865751087665558, 0.019582632929086685, -0.01737190969288349, 0.010193886235356331, 0.0011787107214331627, -0.0238539669662714, 0.013939832337200642, 0.009955073706805706, 0.002647408051416278, 0.016498537734150887, 0.003919938113540411, -0.0191186536103487, -0.010937616229057312, 0.009327337145805359, -0.0158162172883749, -0.008569960482418537, 0.008447142317891121, 0.02334904856979847, -0.0022431325633078814, -0.004574967082589865, -0.026583252474665642, 0.01454709842801094, 0.012022508308291435, 0.026924414560198784, 0.009456978179514408, 0.017303677275776863, -0.01424687635153532, -0.01432875543832779, -0.01693522371351719, 0.0016699823318049312, -0.0070074438117444515, -0.012015684507787228, 0.002608174690976739, 0.02045600488781929, -0.00856313668191433, -0.014929198659956455, 0.00940239243209362, 0.01873655430972576, 0.02131572924554348, -0.033215418457984924, 0.00193779356777668, 0.02782507799565792, 0.015256713144481182, 0.0048478953540325165, 0.0014422574313357472, -0.00418604351580143, -0.013039167039096355, 0.032069120556116104, -0.03234204649925232, 0.01310057658702135, -0.027361098676919937, 0.00547904334962368, 0.009170403704047203, 0.01794506050646305, -0.011381126008927822, -0.01715356670320034, -0.01562516577541828, 0.005769029725342989, 0.0046807266771793365, 0.04028427228331566, 0.017767656594514847, -0.018463624641299248, 0.005400576163083315, 8.843528485158458e-05, 0.0029698051512241364, -0.007819406688213348, 0.027306513860821724, 0.036326806992292404, 0.018982188776135445, -0.017017103731632233, -0.5895259380340576, -0.026119275018572807, 0.03081364743411541, 0.001110478537157178, 0.019105007871985435, 0.026392202824354172, 0.012745768763124943, 0.043723173439502716, -0.028002481907606125, 0.020537883043289185, 0.007396366912871599, 0.011074081063270569, -0.01753566786646843, -0.005796322599053383, -0.010739743709564209, -0.030185911804437637, 0.017235444858670235, -0.008508551865816116, -0.00347813474945724, 0.009648028761148453, -0.014001240953803062, 0.027456624433398247, -0.014233230613172054, -0.002724169287830591, 0.015352237969636917, 0.005943021737039089, 0.01712627336382866, -0.009607089683413506, -0.011299246922135353, 0.023308109492063522, -0.009607089683413506, 0.013134692795574665, -0.01679876074194908, -0.004230394493788481, 0.04609765484929085, -0.007669295649975538, -0.044269029051065445, 0.003090917132794857, -0.013257510028779507, 0.05237501114606857, -0.020346833392977715, -0.02983110398054123, 0.03851023688912392, 0.00675157317891717, -0.013489499688148499, 0.018163403496146202, 0.015857156366109848, -0.016907932236790657, -0.004834249150007963, 0.0006379707483574748, -0.009920957498252392, -0.022953301668167114, 0.017835889011621475, -0.00788081530481577, -0.014792733825743198, -0.002162959659472108, 0.047980859875679016, -0.003392844693735242, -0.015447762794792652, -0.010930793359875679, -0.020496943965554237, 0.005912317428737879, -0.009566149674355984, -0.02966734766960144, -0.02442711591720581, -0.007014267146587372, -0.013933008536696434, -0.008856535889208317, 0.018982188776135445, -0.0248092170804739, 0.0030431547202169895, -0.013237040489912033, -0.004462383687496185, -0.0023898317012935877, 0.020032964646816254, 0.04241311550140381, 0.009791316464543343, -0.02497297339141369, -0.0025433541741222143, -0.0005142999580129981, 0.0106442179530859, -0.006731103640049696, -0.01591174118220806, -0.019623572006821632, -0.0008456524228677154, 0.005226584151387215, -0.03024049662053585, -0.01002330519258976, 0.003865352366119623, 0.009873194620013237, 0.03504404053092003, 0.028521046042442322, 0.006836863234639168, -0.01191333681344986, 0.0193779356777668, 0.032669562846422195, -0.014492512680590153, -0.0006878655403852463, 0.03387044742703438, -0.010262117721140385, -0.03373398259282112, -0.019910147413611412, 0.014683562330901623, 0.0058611431159079075, 0.02633761614561081, 0.0009526916546747088, -0.032041825354099274, 0.015679752454161644, 0.026419496163725853, 0.0013953478774055839, -0.01406947337090969, -0.02693806029856205, -0.028712095692753792, 0.004039344377815723, 0.034006912261247635, -0.038482941687107086, 0.01483367383480072, 0.023076118901371956, 0.012650243937969208, -0.007075675763189793, 0.0034542535431683064, 0.00857678335160017, 0.01600726693868637, 0.008447142317891121, -0.016239255666732788, 0.00481377961114049, 0.020196720957756042, -0.014083119109272957, -0.0028981612995266914, 0.0021817234810441732, -0.008651838637888432, -0.0010226296726614237, 0.010262117721140385, -0.030568011105060577, 0.0420583076775074, -0.032260168343782425, 0.017208153381943703, -0.017794949933886528, 0.00677545415237546, -0.012732123024761677, -0.016471246257424355, 0.0041519273072481155, 0.009122640825808048, 1.1554157936188858e-05, -0.004158750642091036, -0.008972530253231525, -0.014096765778958797, -0.012411431409418583, 0.012554719112813473, 0.010712450370192528, 0.0024410057812929153, 0.030868232250213623, -0.007280372548848391, 0.0015352237969636917, -0.023813026025891304, -0.00865866243839264, -0.010876207612454891, -0.036736197769641876, 0.012015684507787228, -0.01734461635351181, -0.0026167037431150675, -0.005700797773897648, -0.018572796136140823, 0.0007514067692682147, -0.006795924156904221, -0.015338591299951077, -0.006181834265589714, -0.010384935885667801, -0.025136731564998627, -0.020687993615865707, -0.015188480727374554, 0.005345990415662527, 0.003452547825872898, 0.025082144886255264, -0.010562339797616005, 0.010405405424535275, -0.030295083299279213, -0.016689589247107506, 0.018054232001304626, -0.013107399456202984, 0.019541693851351738, 0.004943420644849539, -0.002896455582231283, -0.014301462098956108, 0.0344981849193573, 0.014233230613172054, 0.025928223505616188, 0.03250580653548241, -0.0009808373870328069, -0.010002835653722286, -0.023417280986905098, 0.03119574673473835, 0.008413026109337807, 0.017098981887102127, 0.013817014172673225, 0.025614356622099876, 0.008112804964184761, 0.014028534293174744, -0.005728090647608042, 0.03911067917943001, -0.0017774479929357767, 0.026419496163725853, 0.012575188651680946, -0.014888259582221508, 0.017453787848353386, -0.018313514068722725, -0.007819406688213348, -0.008699601516127586, 0.0077989366836845875, 0.014205937273800373, 0.0005722973146475852, -0.014451573602855206, -0.02525954879820347, -0.019173238426446915, 0.009463801980018616, 0.010562339797616005, -0.005925963632762432, -0.00219536991789937, -0.025559769943356514, 0.015065662562847137, 0.019923793151974678, -0.013127868995070457, 0.024700045585632324, -0.009320514276623726, 0.009122640825808048, 0.0019156180787831545, 0.005308462772518396, 0.010071068070828915, 0.005878201220184565, -0.02719734236598015, -0.02722463570535183, -0.016239255666732788, 0.0026132920756936073, -0.0026457023341208696, 0.009798139333724976, -0.026037395000457764, 0.021111033856868744, -0.007328134961426258, 0.004895658232271671, 0.00949791818857193, 0.011886043474078178, 0.0025723527651280165, -0.009027116000652313, -0.01887301728129387, 0.02830270305275917, 0.02061976119875908, 0.051665399223566055, 0.022885069251060486, -0.03755498677492142, 0.01956898532807827, -0.03468923270702362, -0.006611696910113096, -0.006795924156904221, 0.028985025361180305, 0.00870642438530922, 0.010207531973719597, -0.0022056049201637506, 0.013509969227015972, 0.02045600488781929, 0.031059283763170242, 0.028248118236660957, 0.027866017073392868, -0.022380150854587555, 0.021042801439762115, 0.011196899227797985, -0.02280319109559059, -0.02722463570535183, -0.008842889219522476, -0.001567634055390954, -0.01978732831776142, -0.02086539752781391, -0.007983163930475712, -0.01741284877061844, -0.006454763002693653, 0.0028111652936786413, -0.00775799760594964, -0.003009038744494319, 0.03455277159810066, 0.014792733825743198, 0.007109791971743107, -0.013428091071546078, -0.019036775454878807, 0.047162074595689774, -0.002962981816381216, 0.0184226855635643, -0.006935799960047007, -0.0006520436727441847, 0.0047967215068638325, -0.010923970490694046, 0.004346389323472977, 0.017713071778416634, 0.0046295528300106525, 0.021261144429445267, -0.005946433637291193, -0.026542313396930695, -0.02188888005912304, 0.020374124869704247, -0.01434240210801363, -0.03539884835481644, -0.02055152878165245, 0.034962162375450134, 0.0014422574313357472, -0.008713248185813427, -0.024468054994940758, 0.045469917356967926, 0.00818103738129139, -0.014478866010904312, -0.024290651082992554, 0.011039964854717255, -0.0073144882917404175, -0.0030670359265059233, -0.007464599329978228, -0.011428887955844402, -0.02004661038517952, 0.002565529430285096, -0.0037254763301461935, 0.00727354921400547, -0.03913797065615654, 0.017194505780935287, 0.02179335430264473, -0.02134302258491516, -0.021424900740385056, -0.01985556073486805, 0.011742755770683289, 0.013318919576704502, 4.97348555654753e-05, 0.006877802778035402, -0.0057656182907521725, -0.028739389032125473, 0.018149755895137787, -0.04148515686392784, -0.015324944630265236, 0.006253478117287159, -0.003889233572408557, -0.006168188061565161, 0.013509969227015972, 0.01011883094906807, 0.012124856002628803, 0.024754630401730537, 0.0005671798717230558, 0.0077034118585288525, -0.019132299348711967, 0.02162959799170494, -0.02308976650238037, -0.0041792201809585094, -0.001623072661459446, 0.007689765188843012, 0.006516172084957361, 0.015161187388002872, -0.014765441417694092, 0.011810988187789917, 0.02903961017727852, 0.005803145933896303, -0.019582632929086685, -0.00940239243209362, 0.005448338575661182, -0.024672752246260643, 0.0014695503050461411, -0.007594240363687277, 0.03250580653548241, 0.01820434257388115, 0.05161081254482269, 0.010057421401143074, 0.020114842802286148, 0.0006831745849922299, 0.025587063282728195, -0.003834647824987769, 0.004650022368878126, -0.0008013015030883253, -0.0036845370195806026, 0.018982188776135445, 0.024345237761735916, -0.015652459114789963, -0.031141161918640137, 0.006099955644458532, 0.003660655813291669, -0.048717767000198364, -0.0003650420985650271, -0.014656269922852516, 0.010255294851958752, -0.017794949933886528, 0.0024682986550033092, 0.007648826111108065, -0.007423659786581993, -0.004953655414283276, -0.014192290604114532, -0.01114913634955883, -0.005103765986859798, -0.029994862154126167, -0.008426672779023647, -0.013571378774940968, -0.012841294519603252, -0.012732123024761677, -0.01813611015677452, 0.008167390711605549, -0.03351563960313797, -0.03138679638504982, 0.01741284877061844, 0.026856182143092155, -7.6654578151647e-05, 0.022694019600749016, -0.0023983607534319162, -0.00795587059110403, 0.018272574990987778, -0.02086539752781391, -0.0018013291992247105, 0.00418604351580143, -0.024454409256577492, 0.014847319573163986, -0.0066151088103652, 0.007096145302057266, -0.010207531973719597, 0.0002251661499030888, 0.0023983607534319162, 0.021970758214592934, -0.012588835321366787, 0.01226132083684206, 0.005871377885341644, -0.0021186089143157005, -0.0011727403616532683, 0.03569906949996948, 0.02086539752781391, -0.024577226489782333, -0.02560070902109146, 0.009572973474860191, -0.06468409299850464, 0.0021322553511708975, -0.02865751087665558, -0.005973726511001587, -0.001999202650040388, 0.006533230189234018, 0.009511563926935196, 0.016143731772899628, 0.0024717103224247694, 0.017767656594514847, 0.01667594164609909, 0.012179441750049591, 0.007198493927717209, 0.025273194536566734, 0.009375100024044514, -0.007682942319661379, 0.00900664646178484, 0.008911121636629105, 0.00839938037097454, 0.009293220937252045, -0.02207992970943451, 0.038455650210380554, -0.004281568340957165, -0.0038824104703962803, 0.002265308052301407, 0.0037459461018443108, -0.0383191853761673, -0.007239433005452156, 0.005925963632762432, -0.027552150189876556, 0.018845725804567337, -0.008303854614496231, -0.019746389240026474, -0.015270358882844448, -0.007887639105319977, 0.014451573602855206, 0.007300842087715864, -0.009388746693730354, -0.025941871106624603, -0.02903961017727852, 0.005301639437675476, -0.015584227629005909, -0.00404275581240654, -0.010364466346800327, -0.028002481907606125, -0.007669295649975538, 0.018095171079039574, -0.009729906916618347, -0.0017979176482185721, 0.005966903176158667, 0.02684253454208374, -0.02392219752073288, 0.005717855878174305, -4.477736001717858e-05, -0.0358901210129261, -0.03212370350956917, -0.019487107172608376, 0.032041825354099274, 0.028193531557917595, 0.02332175523042679, 0.02502756007015705, 0.005663270130753517, -0.011954275891184807, 0.03201453387737274, 0.0021322553511708975, 0.005881613120436668, 0.009456978179514408, 0.010221178643405437, 0.010378113016486168, 0.0200739037245512, 0.023376340046525, -0.008078688755631447, -0.014437926933169365, -0.02944900467991829, 0.030322374776005745, 0.00632853340357542, 0.010043775662779808, -0.01113548967987299, -0.06806841492652893, 0.00450332323089242, 0.014451573602855206, 0.014124059118330479, 0.004868365358561277, -0.024536287412047386, -0.01626654900610447, 0.01454709842801094, -0.019992025569081306, 0.03256038948893547, 0.009757200255990028, 0.024167833849787712, -0.027661321684718132, -0.011387948878109455, -0.0016026030061766505, 0.01483367383480072, -0.017303677275776863, 0.005912317428737879, -0.010978556238114834, -0.004093930125236511, 0.030185911804437637, 0.025232255458831787, 0.022066283971071243, 0.005243642255663872, 0.013393974862992764, 0.006591227371245623, 0.017003456130623817, -0.014151351526379585, -0.00675157317891717, -0.008917944505810738, -0.015161187388002872, -0.006792512256652117, -0.019296057522296906, -0.02827540971338749, -0.0049809482879936695, -0.009184049442410469, 0.01100584864616394, -0.0017424790421500802, -0.004059813916683197, -0.016976162791252136, -0.014669916592538357, 0.008065042085945606, -0.0004835955041926354, 0.03337917849421501, 0.0009816903620958328, 0.01769942417740822, 0.029148781672120094, 0.013571378774940968, -0.015775278210639954, -0.028411874547600746, 0.001196621684357524, -0.00795587059110403, 0.024700045585632324, 0.06916012614965439, -0.00775117427110672, -0.007935401052236557, 0.015270358882844448, -0.0031011521350592375, -0.021179264411330223, -0.021943464875221252, 0.025491537526249886, 0.011265130713582039, 0.0012878822162747383, -0.027879664674401283, 0.010459991171956062, -0.013052813708782196, 0.02112467959523201, -0.028002481907606125, -0.03659973666071892, -0.017194505780935287, 0.010125653818249702, -0.01037128921598196, 0.012281790375709534, -0.0034593709278851748, 0.022857775911688805, 0.008474435657262802, -0.007212140131741762, 0.01765848509967327, -0.013830660842359066, -0.038673993200063705, 0.028630217537283897, 0.021356668323278427, 0.019145946949720383, 0.008003633469343185, -0.009777669794857502, 0.007723881397396326, 0.02299424074590206, 0.010255294851958752, 0.0021885468158870935, -0.028930438682436943, 0.049345504492521286, 0.0029118077363818884, -0.021111033856868744, 0.011599468998610973, 0.00565303536131978, 0.019582632929086685, -0.008105981163680553, 0.0036128934007138014, 0.029176075011491776, 0.0011812694137915969, -0.016307488083839417, 0.016075499355793, -0.021042801439762115, -0.015120248310267925, -0.018149755895137787, 0.005073061678558588, -0.005516570992767811, -0.03269685432314873, -0.019937438890337944, 0.014765441417694092, -0.044460080564022064, -0.023990429937839508, -0.01376925129443407, -0.017999645322561264, 0.016512185335159302, 0.011490297503769398, -0.004919539205729961, -0.0006528965895995498, 0.05567745119333267, -0.031277626752853394, 0.023717502132058144, 0.008549490943551064, 0.008460788987576962, -0.016116438433527946, 0.012991405092179775, -0.007826229557394981, -0.002435888396576047, 0.012691183015704155, -0.028193531557917595, -0.006686752662062645, -0.03299707546830177, 0.025819052010774612, 0.013844306580722332, -0.015898095443844795, 0.013346211984753609, 0.035971999168395996, 0.010773858986794949, 0.013489499688148499, -0.004073460586369038, -0.02426335960626602, -0.00042687749373726547, 0.004131457768380642, -0.0020981391426175833, 0.0073076654225587845, -0.009320514276623726, -0.005458573345094919, 0.0008644163026474416, -0.004738724324852228, -0.014601684175431728, -0.03359752148389816, -0.04751688241958618, -0.0027036997489631176, -0.0010030128760263324, -0.03662702813744545, 0.007116615306586027, -0.015638813376426697, -0.02794789709150791, -0.012513780035078526, -0.017781302332878113, 0.010712450370192528, -0.004319096449762583, -0.012889056466519833, 0.01502472348511219, 0.006717456970363855, 0.002951041329652071, -0.01177004911005497, -0.03062259778380394, -0.022762252017855644, -0.018477270379662514, -0.030104033648967743, -0.01985556073486805, -0.02772955410182476, 0.02710181660950184, 0.006355826277285814, -0.023007886484265327, -0.01887301728129387, -0.016566770151257515, -0.05212937667965889, -0.006024900358170271, -0.0074918922036886215, 0.01389889232814312, 0.04323190078139305, 0.002720757620409131, 0.015529641881585121, 0.01610279083251953, -0.025682589039206505, 0.015406823717057705, -0.01988285407423973, 0.010384935885667801, -0.029121490195393562, -0.026610545814037323, 0.005550686735659838, -0.011865573935210705, -0.05171998217701912, -0.014874612912535667, 0.025532476603984833, 0.020919982343912125, -0.0053766947239637375, 0.032642267644405365, 0.01782224327325821, 0.004499911330640316, -0.013926185667514801, -0.006147718522697687, -0.030158618465065956, 0.007601063698530197, 0.00210837391205132, -0.022598493844270706, 0.017194505780935287, 0.00613066041842103, 0.011551706120371819, -0.00563938869163394, -0.0029305715579539537, 0.00989366415888071, -0.022857775911688805, 0.00487518822774291, -0.04148515686392784, 0.0047080195508897305, 0.001837151125073433, -0.010200709104537964, 0.012991405092179775, -0.01899583637714386, 0.004342977423220873, 0.012227204628288746, 0.003377492306753993, 0.00647182110697031, -0.010125653818249702, 0.014956491068005562, -0.035971999168395996, 0.014301462098956108, 0.013066460378468037, -0.0026457023341208696, -0.012718476355075836, 0.025546124204993248, 0.013776075094938278, -0.011244661174714565, -0.006192069500684738, 0.004568143747746944, -0.02794789709150791, -0.03329729661345482, 0.010268941521644592, 0.02772955410182476, -0.026692423969507217, -0.00435321219265461, 0.004462383687496185, -0.030131325125694275, -0.0030994461849331856, -0.03313354030251503, 0.023144351318478584, -0.02261214144527912, -0.002325011184439063, -0.007294018752872944, -0.008692778646945953, -0.007280372548848391, 0.013018697500228882, 0.006611696910113096, -0.013134692795574665, -0.0009398981346748769, 0.257207989692688, 0.0013629376189783216, -0.009716261178255081, 0.029394418001174927, -0.018368098884820938, 0.02246202901005745, 0.011599468998610973, 0.0038721754681319, -0.034061498939991, 0.007805760018527508, -0.007853522896766663, -0.010848915204405785, -0.00273611000739038, -0.009122640825808048, 0.016948871314525604, -0.00036802724935114384, -0.0200739037245512, -0.031332213431596756, -0.017863182350993156, -0.031659726053476334, 0.008829242549836636, 0.006939211394637823, -0.0045408508740365505, -0.015529641881585121, 0.0072189634665846825, -0.00906805507838726, 0.002478533424437046, -0.006277359556406736, 0.03619034215807915, 0.0019275587983429432, -0.02719734236598015, -0.010999025776982307, 0.004977536853402853, 0.0030295082833617926, -0.01260930486023426, -0.01327797956764698, 0.04304085299372673, 0.021329374983906746, 0.02710181660950184, 0.011585822328925133, -0.016921577975153923, -0.015734337270259857, 0.013455383479595184, -0.023976784199476242, -0.01775401085615158, -0.0011463004630059004, -0.004888834897428751, -0.013796544633805752, -0.0007270990172401071, 0.014178644865751266, -0.022243686020374298, -0.006642401684075594, 0.04173079505562782, 0.011128666810691357, -0.006536641623824835, -0.011810988187789917, 0.013803367502987385, -0.018600089475512505, 0.022311918437480927, -0.007601063698530197, 0.00905440840870142, 0.03351563960313797, -0.025914577767252922, 0.021302083507180214, -0.029721932485699654, -0.002621821127831936, -0.021424900740385056, 0.01321657095104456, 0.0073144882917404175, -0.016034560278058052, 0.009900487959384918, 0.002546765608713031, -0.01037128921598196, 0.01424687635153532, -0.03507133573293686, -0.031468674540519714, 0.03299707546830177, 0.009361453354358673, 0.019773682579398155, 0.047189366072416306, -0.0096889678388834, 0.001811564085073769, -0.009791316464543343, 0.01839539222419262, -0.016880638897418976, -0.03812813758850098, 0.025518830865621567, 0.010425874963402748, -0.013571378774940968, -0.005779264494776726, -0.008160566911101341, -0.010732919909060001, -0.0021151972468942404, -0.006741338409483433, -0.027115464210510254, 0.011319716461002827, 0.0008354175952263176, 0.014942845329642296, 0.010664687491953373, 0.0014925786526873708, -0.047380417585372925, 0.015543287619948387, 0.015406823717057705, 0.007450952660292387, -0.02760673500597477, -0.009511563926935196, -0.030295083299279213, 0.011237838305532932, -0.003629951272159815, -0.005144705530256033, -0.020919982343912125, -0.04809003323316574, 0.008044572547078133, 0.007710235193371773, 0.028766682371497154, 0.008747364394366741, -0.02643314190208912, -0.03179619088768959, -0.005339167080819607, -0.0020913160406053066, 0.02131572924554348, -0.027975188568234444, -0.0177267175167799, -0.0005522540886886418, -0.015447762794792652, -0.035153213888406754, -0.021233851090073586, -0.00339113874360919, -0.004114399664103985, -0.021970758214592934, 0.015324944630265236, -0.010760213248431683, 0.018832078203558922, 0.007553300820291042, 0.026446787640452385, -0.00727354921400547, 0.016048206016421318, -0.012213557958602905, -0.015666106715798378, 0.0007236874080263078, -0.0028128712438046932, 0.009695790708065033, 0.013523615896701813, -0.005308462772518396, -0.009716261178255081, 0.005380106624215841, 0.011203722096979618, 0.013312095776200294, 0.002480239374563098, -0.001808152417652309, -0.022134514525532722, -0.021902525797486305, -0.005277758464217186, -0.005277758464217186, 0.016130084171891212, 0.00629100576043129, -0.009770846925675869, -0.029967568814754486, 0.008795126341283321, 0.016607709228992462, -0.03973841667175293, 0.0026525254361331463, 0.03698183596134186, -0.0002522458089515567, -0.034006912261247635, -0.013892069458961487, -0.17401932179927826, 0.018081525340676308, 0.0217251218855381, -0.028575632721185684, 0.009566149674355984, -0.003909703344106674, -0.0019906735979020596, 0.012909526005387306, -0.028793975710868835, -0.0184226855635643, 0.02023766189813614, 0.00865866243839264, -0.016539476811885834, -0.011237838305532932, -0.002551882993429899, 0.005922552198171616, -0.014465219341218472, -0.014710855670273304, 0.03539884835481644, 0.012370492331683636, 0.03662702813744545, -0.02732015959918499, -0.02521860972046852, 0.022625787183642387, 0.0025041205808520317, 0.014888259582221508, -0.021179264411330223, 0.02160230465233326, 0.0071916705928742886, -0.011804165318608284, -0.005567744839936495, 0.019459813833236694, 0.0339796207845211, 0.020892690867185593, -0.002227780409157276, -0.004738724324852228, 0.006509348750114441, 0.005229995585978031, 0.0019275587983429432, 0.013339389115571976, 0.0037664156407117844, 0.054749492555856705, 0.0003196250763721764, -0.004411209840327501, 0.026310324668884277, 0.023594683036208153, 0.006686752662062645, -0.028439167886972427, 0.0023062473628669977, -0.020401418209075928, -7.473554433090612e-05, -0.009156757034361362, 0.009409216232597828, -0.014274169690907001, 0.01921417936682701, 0.01969180442392826, -0.007341781165450811, 0.0021407841704785824, 0.01308692991733551, 0.010064245201647282, -0.0015164599753916264, -0.023963138461112976, 0.021452194079756737, 0.003943819552659988, -0.006185246165841818, -0.015570580959320068, -0.0030533894896507263, 0.016594063490629196, -0.0046636685729026794, -0.0020606114994734526, 0.00613748375326395, -0.006308063864707947, 0.019609924405813217, 0.0037459461018443108, 0.00023134969524107873, 0.016635002568364143, -0.022762252017855644, 0.025914577767252922, 0.018354453146457672, -0.01434240210801363, -0.003082388313487172, 0.029339833185076714, 0.0028145769611001015, -0.015447762794792652, 0.018954897299408913, -0.007150731049478054, 0.0037015951238572598, -0.007526008412241936, -0.026856182143092155, -0.013926185667514801, 0.026283031329512596, -0.02569623477756977, -0.006847098004072905, -0.006809570360928774, -0.018272574990987778, 0.010228002443909645, -0.0008580195135436952, 0.021370315924286842, -0.022721312940120697, -0.0018866194877773523, -0.0013347917702049017, -0.007171201054006815, -0.004745547194033861, 0.017863182350993156, 0.022407444193959236, 0.00949791818857193, -0.020128490403294563, 0.03681807965040207, 0.022325566038489342, 0.00487518822774291, -0.02760673500597477, 0.010050598531961441, 0.027552150189876556, 0.028248118236660957, 0.016225609928369522, 0.0354534350335598, 0.011947453022003174, 0.003491781186312437, 0.009695790708065033, 0.021970758214592934, -0.008911121636629105, -0.020183075219392776, -0.012964111752808094, 0.014164998196065426, 0.030677182599902153, -0.008842889219522476, -0.04088471457362175, 0.014137704856693745, 0.022926008328795433, 0.03387044742703438, -0.008522197604179382, 0.042331237345933914, 0.007198493927717209, 0.039410900324583054, -0.02988569065928459, 0.014301462098956108, -0.016785113140940666, -0.01718086004257202, -0.010623748414218426, -0.0177267175167799, 0.0011770048877224326, -0.0017996234819293022, -0.013114222325384617, -0.012527425773441792, 0.004052990581840277, 0.017576606944203377, 0.0004362594336271286, -0.01259565819054842, -0.00678227748721838, -0.003889233572408557, -0.013339389115571976, -0.003374080639332533, -0.03280602768063545, 0.04825378954410553, 0.0027412273921072483, -0.017330970615148544, 0.04787169024348259, -0.016280194744467735, -0.02100186236202717, -0.01434240210801363, 0.005189056508243084, -0.002862339373677969, -0.0009902192978188396, -0.03796437755227089, 0.030486132949590683, -0.032423924654722214, -0.0022260744590312243, -0.011456181295216084, 0.017603900283575058, -0.012063447386026382, -0.030486132949590683, -0.01588444970548153, -0.013366681523621082, 0.01161311473697424, 0.016280194744467735, -0.016826052218675613, -0.03122304007411003, -0.017235444858670235, 0.017303677275776863, -0.02813894674181938, 0.043122731149196625, 0.004465795587748289, 0.047789812088012695, 0.009361453354358673, -0.036135755479335785, 0.03185077756643295, 0.022830484434962273, -0.011906513012945652, -0.019418874755501747, 0.0009603677899576724, 0.021479487419128418, 0.007164377719163895, -0.018572796136140823, -0.00435321219265461, 0.009422862902283669, -0.011319716461002827, -0.008822419680655003, 0.007000620476901531, -0.016443952918052673, -0.00032687472412362695, -0.021902525797486305, -0.019746389240026474, -0.009723084047436714, -0.03668161481618881, 0.01839539222419262, 0.004564731847494841, -0.019105007871985435, -0.004261098802089691, -0.005567744839936495, -0.021070092916488647, 0.011142313480377197, 0.001396200736053288, -0.016280194744467735, 0.0046636685729026794, 0.014956491068005562, -0.04306814447045326, 0.007048382889479399, 0.008194683119654655, 0.01246601715683937, -0.011108197271823883, -0.01240460854023695, -0.007137084845453501, -0.0018797962693497539, 0.010821621865034103, -0.004759193863719702, 0.022052636370062828, -0.03220558166503906, -0.036708906292915344, -0.08700966089963913, 0.006884625647217035, 0.01804058626294136, -0.00725990254431963, 0.0014166703913360834, 0.013284803368151188, 0.016048206016421318, -0.01191333681344986, -0.0014908729353919625, -0.007648826111108065, -0.022857775911688805, -0.014970137737691402, 0.018245281651616096, 0.010685157962143421, -0.031277626752853394, -0.0119269834831357, 0.03763686493039131, 0.00984590221196413, 0.007764820940792561, 0.0196372177451849, 0.0019002659246325493, 0.005434692371636629, -0.005540451966226101, 0.0077034118585288525, -0.013803367502987385, 0.010678334161639214, 0.019609924405813217, 0.00940239243209362, -0.006065839901566505, -0.012841294519603252, -0.01292999554425478, -0.017112627625465393, 0.007921754382550716, -0.0039233495481312275, 0.008740540593862534, -0.0069630928337574005, 0.0037595925386995077, 0.023267168551683426, 0.032478511333465576, 0.01405582670122385, -0.0401478074491024, -0.025300487875938416, 0.017139920964837074, -0.010030128993093967, -0.027374746277928352, 0.004073460586369038, -0.017876828089356422, -0.004203101620078087, 0.013325742445886135, 0.034416306763887405, 0.04219477251172066, 0.00481377961114049, -0.018845725804567337, -0.008187860250473022, -0.010773858986794949, -0.04847213253378868, 0.010637395083904266, 0.015188480727374554, 0.001024335389956832, 0.001495990320108831, 0.03119574673473835, 0.01108772773295641, -0.0022994240280240774, 0.014356047846376896, 0.003380903974175453, 0.024700045585632324, -0.01940522901713848, -0.006362649612128735, 0.03103199042379856, -0.01997837983071804, -0.027784138917922974, -0.001480638049542904, 0.005946433637291193, 0.026351263746619225, -0.0035378378815948963, 0.005977137945592403, 0.003988170064985752, 0.010412229225039482, -0.029694639146327972, 0.012377315200865269, 0.007444129791110754, -0.007205316796898842, -0.03752769157290459, 0.01892760396003723, 0.030513426288962364, 0.00984590221196413, -0.015775278210639954, 0.004189454950392246, 0.012684360146522522, -0.003957465756684542, -0.003548072651028633, 0.0015096367569640279, -0.006492290645837784, 0.028985025361180305, 0.013987594284117222, 0.033433761447668076, -0.03722747042775154, -0.0002328422706341371, 0.046043068170547485, 0.023963138461112976, 0.02227097935974598, -0.015202127397060394, 0.009607089683413506, 0.0015846921596676111, -0.005656446795910597, -0.007389544043689966, -0.023785734549164772, -0.03752769157290459, -0.00418604351580143, 0.0028435755521059036, 0.019391581416130066, 0.008631369099020958, -0.023690208792686462, 0.02169783040881157, 0.014765441417694092, 0.0066628712229430676, 0.0023744795471429825, 0.002621821127831936, -0.011585822328925133, 0.008262915536761284, 0.027715906500816345, 0.00598054938018322, 0.01156535279005766, -0.02258484810590744, 0.022434737533330917, -0.00997554324567318, 0.0016418365994468331, -0.02220274694263935, -0.0037664156407117844, -0.012240851297974586, -0.008358440361917019, -0.003930172882974148, -0.0002479812828823924, -0.013878422789275646, -0.007198493927717209, 0.006550288293510675, 0.010828444734215736, -0.0026866416446864605, -0.022066283971071243, 0.09759929031133652, 0.02004661038517952, 0.006519583519548178, -0.0045920247212052345, 0.0035719540901482105, -0.019582632929086685, -0.002922042505815625, 0.017985999584197998, 0.013305272907018661, -0.013489499688148499, 0.017194505780935287, 0.015256713144481182, -0.004626140929758549, -0.03714559227228165, -0.009927780367434025, -0.009620735421776772, -0.006195480935275555, 0.015666106715798378, -0.013605494052171707, 0.0051412940956652164, 0.04383234679698944, -0.015120248310267925, 0.004588613286614418, -0.0009885135805234313, -0.0030806823633611202, 0.006669694557785988, 0.019336996600031853, -0.006001019384711981, 0.006625343579798937, -0.008024103008210659, 0.027852371335029602, 0.001481490908190608, -0.02884856052696705, -0.005226584151387215, -0.02141125500202179, -0.009177226573228836, 0.005902082659304142, 0.012902703136205673, 0.031659726053476334, 0.00712343817576766, 0.01052822358906269, 0.017399203032255173, -0.03307895362377167, -0.008447142317891121, -0.00940239243209362, -0.02162959799170494, -0.008788303472101688, -0.01765848509967327, -0.021138325333595276], "f1a4fa1b-c4ae-4569-b4c2-fa91c9bfd7f3": [-0.01909610629081726, -0.01617748662829399, 0.016663923859596252, -0.023084884509444237, -0.02183404751121998, 0.010847533121705055, -0.014495806768536568, -0.02910279855132103, 0.007261801511049271, -0.038998305797576904, 0.01631646789610386, -0.023154376074671745, -0.0006514773704111576, -0.020722193643450737, -0.012953108176589012, -0.012751583941280842, 0.007185361348092556, -0.012779380194842815, 0.015274104662239552, -0.0078872200101614, -0.0005103239673189819, -0.0030958205461502075, -0.02807433344423771, -0.03510681539773941, -0.014315130189061165, -0.012265147641301155, 0.005173599347472191, -0.023084884509444237, 0.02714315429329872, -0.017692388966679573, 0.04717043787240982, -0.0012421502033248544, -0.0031739978585392237, 0.016469348222017288, -0.01947135664522648, 0.007518917787820101, -0.022181501612067223, 0.019040511921048164, -0.00584071222692728, 0.010993463918566704, 0.027963146567344666, -0.012730737216770649, -0.004600299056619406, -0.012925311923027039, 0.00958974752575159, 0.023293357342481613, 0.012834973633289337, 0.002748365979641676, -0.008714161813259125, 0.012529212981462479, 0.008248572237789631, 0.0053369030356407166, -0.03563494607806206, -0.02295980043709278, -0.007817728444933891, -0.014016319066286087, 0.010430587455630302, 0.014996141195297241, -0.011987184174358845, 0.000358529738150537, 0.018832039088010788, 0.0002375720941927284, -0.025225205346941948, 0.006410537753254175, 0.028936021029949188, 0.010611264035105705, -0.026642819866538048, -0.003849797183647752, -0.02594790980219841, 0.004944279324263334, 0.010402791202068329, 0.02011067233979702, 0.0038220006972551346, 0.01970762573182583, 0.028685852885246277, -0.013210223987698555, -0.008283318020403385, -0.011500747874379158, 0.022028623148798943, 0.01195243839174509, 0.02120862901210785, -0.011584136635065079, 0.005045040976256132, 0.0007118476205505431, 0.014440213330090046, -0.008762805722653866, 0.008311114273965359, 0.01712256297469139, -0.004263268318027258, -0.011535492725670338, 0.02478046342730522, -0.009290936402976513, 0.02034694142639637, 0.002666714135557413, -0.009131107479333878, 0.007915016263723373, -0.03552376106381416, 0.024196738377213478, -0.008748907595872879, -0.022890310734510422, 0.01423174049705267, 0.01159108616411686, -0.014509704895317554, 0.0010232538916170597, -0.03385597839951515, -0.013731406070291996, 0.010896177031099796, -0.03457868471741676, 0.004381402861326933, -0.021041851490736008, -0.035384777933359146, 0.0037142897490411997, 0.007275699637830257, -0.028685852885246277, -0.046975862234830856, 0.027573997154831886, 0.03596850112080574, -0.020958462730050087, -0.046586714684963226, -0.009040769189596176, 0.02949194796383381, -0.0003507120127324015, 0.026448244228959084, 0.016233079135417938, 0.021014055237174034, -0.009381274692714214, 0.014085809700191021, 0.0036621715407818556, 0.008262470364570618, -0.02446080558001995, 0.04133320227265358, 0.006577315740287304, 0.013203275389969349, 0.007296546828001738, -0.013446493074297905, -0.016024606302380562, -0.004787924699485302, 0.010507027618587017, 1.3043120816291776e-05, 0.012869718484580517, 0.024113349616527557, 0.009923303499817848, -0.000279918109299615, -0.019374068826436996, -0.0009433392551727593, 0.01371750794351101, -0.00855433288961649, 0.014106657356023788, 0.007963660173118114, 0.013397850096225739, 0.01100736204534769, -0.0007048985571600497, 0.0035614098887890577, -0.004110387992113829, -0.0034137414768338203, -0.007372986990958452, -6.020737055223435e-05, 0.024558091536164284, -0.02642044797539711, -0.025920113548636436, 0.022515058517456055, 0.018873734399676323, 0.022223196923732758, -0.015746643766760826, 0.00769264530390501, 0.029408559203147888, -0.0035127662122249603, 0.012960056774318218, 0.023474033921957016, 0.021973028779029846, -0.014398518949747086, 0.024099452421069145, -0.025211306288838387, 0.02468317560851574, -0.025572659447789192, 0.02051372081041336, 0.004541231784969568, 0.012411078438162804, -0.0027570524252951145, -0.01238328218460083, -0.025586558505892754, -0.01869305782020092, 0.03613527864217758, 0.024738768115639687, 0.0033737842459231615, -0.024891648441553116, 0.028060434386134148, 0.014051064848899841, 0.02223709598183632, 0.0041242861188948154, 0.008651619777083397, 0.0395820289850235, 0.002131634159013629, -0.00045559986028820276, -0.5937304496765137, -0.029519744217395782, -0.002194175962358713, 0.016761209815740585, 0.02689298614859581, 6.501201369246701e-06, 0.005972744897007942, 0.023710303008556366, -0.005357750225812197, 0.03494003415107727, -0.010326351039111614, 0.025447575375437737, -0.01262650080025196, -0.015232410281896591, 0.014509704895317554, -0.023390645161271095, 0.010131776332855225, 0.001904051285237074, -0.025058425962924957, 0.029213983565568924, -0.015955116599798203, 0.027490608394145966, 0.0014358562184497714, 0.01001364178955555, 0.005316055379807949, 0.004009626340121031, 0.01053482387214899, -0.018818141892552376, -0.002430445048958063, 0.008172132074832916, -0.005413342732936144, -0.007247903384268284, 0.0033894197549670935, 0.009012972936034203, 0.06420961022377014, -0.006580790504813194, -0.03724713623523712, 0.011097700335085392, -0.008658569306135178, 0.053591400384902954, -0.013175479136407375, -0.016691720113158226, 0.031270913779735565, -0.029630929231643677, 0.004551655612885952, -0.010152623988687992, -0.006455706898123026, -0.02761569246649742, -0.0011856888886541128, -0.006490452215075493, -0.017456119880080223, -0.026059096679091454, 0.011417358182370663, 0.000563745095860213, -0.001494923490099609, -0.0054063936695456505, 0.019929995760321617, -0.018415095284581184, -0.01956864446401596, -0.021973028779029846, -0.019916098564863205, 0.0005203132750466466, -0.026920784264802933, -0.0386369526386261, -0.012946158647537231, 0.007908066734671593, -0.0007348664803430438, 0.003366835182532668, 0.010416689328849316, 0.006302826572209597, -0.019693726673722267, -0.0012412816286087036, -0.001541829900816083, 0.004353606142103672, 0.024321822449564934, -0.00419725151732564, 0.03227158263325691, -0.014648686163127422, -0.03177125006914139, 0.009985845535993576, 0.0008990388014353812, -0.01168142445385456, -0.014871057122945786, -0.015482577495276928, 0.004690637346357107, -0.005705204792320728, -0.03621866926550865, 0.003912338986992836, 0.013140733353793621, 0.0015661516226828098, 0.02436351776123047, 0.016358163207769394, 0.03694137558341026, -0.0017555144149810076, -0.01854017749428749, 0.0028491278644651175, -0.020541517063975334, -0.017720185220241547, 0.0204998217523098, -0.0028387042693793774, -0.046197567135095596, 0.0014723389176651835, -0.0014679956948384643, -0.01159108616411686, 0.013606322929263115, -0.008199929259717464, -0.024280129000544548, -0.0005724314833059907, 0.047448400408029556, -0.018025945872068405, -0.0007114133331924677, -0.025934012606739998, -0.008422300219535828, -0.005069362930953503, -0.01395377703011036, -0.038136620074510574, 0.017233747988939285, 0.006243759300559759, 0.014704279601573944, -0.003582257078960538, 0.012195657007396221, -0.0013594161719083786, 0.025808928534388542, 0.0135298827663064, 0.00489216111600399, 0.0246970746666193, 0.03266073390841484, 0.005920626688748598, -0.0030697614420205355, 0.004596824757754803, 0.0014176148688420653, -0.016260875388979912, 0.02918618731200695, -0.015538170002400875, 0.007345190737396479, -0.016344264149665833, 0.015135122463107109, -0.013119886629283428, 0.033077679574489594, -0.009228394366800785, -0.011792609468102455, 0.0038358988240361214, 0.011500747874379158, -0.010764144361019135, -0.029603132978081703, -0.012501416727900505, -0.01852628029882908, 0.0016373798716813326, 0.0020030757877975702, 0.026934681460261345, 0.0016868921229615808, -0.0040895408019423485, -0.018915429711341858, 0.013133784756064415, -0.021403204649686813, -0.004350131843239069, -0.018206622451543808, -0.02572553977370262, -0.015607661567628384, -0.012591755017638206, -0.0031357777770608664, 0.002619807841256261, -0.021319815889000893, 0.000854738347698003, 0.003443275112658739, -0.023140477016568184, -0.011389561928808689, -0.007261801511049271, -0.03683019056916237, -0.02264014258980751, -0.02767128497362137, -0.0038115771021693945, -0.009923303499817848, 0.0017980776028707623, 0.0038845425006002188, 0.01822051964700222, -0.007296546828001738, 0.00111967243719846, -0.007101972121745348, -0.0010632111225277185, 0.011889897286891937, -0.005767746362835169, -0.002178540453314781, -0.012702940963208675, 0.008922634646296501, 0.009944151155650616, 0.01514902152121067, 0.04550265520811081, -0.04355691000819206, 0.022654041647911072, 0.008894838392734528, 0.024099452421069145, -0.0018362976843491197, 0.01329361367970705, 0.0077690850012004375, 0.006476554088294506, 0.002538155997171998, 0.0018467212794348598, -0.011299223639070988, 0.019499152898788452, 0.01963813416659832, 0.020861174911260605, -0.005413342732936144, -0.014398518949747086, 0.0015678888885304332, -0.02098625898361206, 0.016844600439071655, -0.016594432294368744, 0.023209968581795692, 0.021278120577335358, 0.00396445719525218, -0.019040511921048164, -0.006935194134712219, -0.0018936276901513338, 0.009228394366800785, 0.012668195180594921, 0.0028195942286401987, -0.003102769609540701, 0.0037142897490411997, 0.01791475899517536, 0.03449529409408569, -0.010715500451624393, 0.02949194796383381, -0.021111343055963516, 0.0029672624077647924, 0.003731662640348077, -0.017331035807728767, 0.03480105474591255, 0.021472694352269173, -0.02776857279241085, -0.017609000205993652, -0.03004787489771843, -0.001662570284679532, -0.001062342431396246, 0.005267411936074495, -0.025934012606739998, 0.031104136258363724, -0.009791270829737186, 0.024016063660383224, 0.030937358736991882, 0.001623481628485024, 0.0010666856542229652, 0.013786998577415943, -0.015343595296144485, 0.019582541659474373, -0.00931178405880928, 0.040888458490371704, 0.021027952432632446, -0.02112524025142193, 0.023084884509444237, -0.025280797854065895, -0.0019214240601286292, -0.01655273698270321, 0.016455451026558876, 0.025683844462037086, -0.01631646789610386, 0.005941473878920078, 0.01585782878100872, 0.003915813285857439, 0.04386267066001892, 0.014301232062280178, 0.04575282335281372, 0.00538554647937417, -0.0005394232575781643, 0.0088322963565588, -0.03582951799035072, -0.016135791316628456, -0.03855356201529503, 0.006591213867068291, -0.016205282881855965, -0.033327847719192505, 0.01300870068371296, 0.004093015566468239, 0.00558012118563056, 0.013168529607355595, -0.006824008654803038, 0.006493926513940096, -0.0013637593947350979, 0.02476656436920166, 0.0028126451652497053, -0.0014940547989681363, -0.022362178191542625, 0.040582697838544846, 0.015677152201533318, -0.0074494266882538795, -0.014815464615821838, -0.011174140498042107, -0.027782469987869263, -0.01909610629081726, 0.014815464615821838, 0.009416019544005394, -0.03646883741021156, 0.01767848990857601, 0.006552993785589933, 0.0009980633622035384, -0.005197920836508274, 0.03858136013150215, -0.017609000205993652, -0.048949405550956726, -0.03177125006914139, 0.01735883206129074, -0.007810779847204685, -0.0078872200101614, -0.04694806784391403, 0.027170950546860695, 0.007699594367295504, -0.02548927068710327, -0.037664078176021576, -0.0006888287607580423, 0.002760526956990361, -0.01798425056040287, -0.019374068826436996, -0.006754517555236816, 0.0049686008132994175, -0.00631325040012598, 0.023474033921957016, -0.007553663104772568, -0.03785865381360054, 0.01332835853099823, -0.0076509504579007626, -0.009700932539999485, -0.0006597294704988599, -0.0038845425006002188, -0.013342257589101791, 0.031660065054893494, -0.00863772165030241, 0.011875998228788376, -0.003582257078960538, -0.03602409362792969, -0.003198319813236594, -0.03357801213860512, -0.01569104939699173, -0.00021205589291639626, -0.012904464267194271, 0.016844600439071655, 0.0071228197775781155, 0.021264221519231796, 0.006865703035145998, 0.0027014596853405237, -0.00788027048110962, 0.0083597581833601, -0.010027539916336536, 0.023321153596043587, 0.005024193786084652, 0.0029151441995054483, 0.011250580660998821, 0.007234005257487297, 0.02437741495668888, -0.021750658750534058, -0.02974211424589157, -0.007143666967749596, 0.01585782878100872, 0.001997864106670022, -0.026448244228959084, -0.009012972936034203, -0.0014236952411010861, -0.008894838392734528, 0.0093048345297575, -0.005152751691639423, 0.03988778963685036, 0.028574667870998383, 0.028936021029949188, 0.009367376565933228, 0.016372062265872955, 0.015607661567628384, 0.02515571378171444, -0.003967931494116783, -0.006295877508819103, 0.006202064920216799, -0.004273691680282354, 0.023487931117415428, 0.034662071615457535, -0.004701060708612204, -0.027949249371886253, 0.014509704895317554, -0.009290936402976513, -0.029797706753015518, 0.007706543430685997, 0.0020708295051008463, 0.007049853913486004, -0.007755186874419451, 0.0019631185568869114, 0.010347198694944382, -0.02216760441660881, -0.013675813563168049, -0.005861559417098761, 0.014648686163127422, -0.0167195163667202, -0.030826173722743988, -0.02483605593442917, -0.02183404751121998, -0.025197409093379974, -0.013912082649767399, -0.012494468130171299, 0.015552068129181862, -0.026879088953137398, -0.030965154990553856, -0.006361893843859434, 0.0011518120300024748, 0.012334639206528664, 0.028129925951361656, -0.00020630117796827108, -0.0059275757521390915, 0.02027745172381401, 0.006466130260378122, -0.020291348919272423, -0.011570238508284092, -0.022139808163046837, 0.009846863336861134, -0.00490953354164958, -0.007581459823995829, 0.008172132074832916, 0.0027448914479464293, -0.0050867353565990925, -0.0071228197775781155, 0.016941886395215988, 0.03416173905134201, -0.004096489865332842, -0.018276112154126167, -0.009006023406982422, 0.006285454146564007, 0.01776188053190708, 0.006490452215075493, -0.013536831364035606, 0.004093015566468239, -0.0621526800096035, -0.016997478902339935, 0.028352295979857445, -0.004836568143218756, 0.0002568992495071143, 0.023001495748758316, 0.026462143287062645, 0.03405055031180382, 0.0039053899236023426, 0.009742626920342445, -0.012140064500272274, 0.005937999114394188, 0.0003620042698457837, 0.019596440717577934, -0.006170793902128935, -0.0006241153459995985, 0.010736347176134586, -0.0023870132863521576, -0.004784449934959412, -0.013543780893087387, -0.02478046342730522, 0.025697743520140648, -0.004999871831387281, -0.005409868434071541, -0.019818810746073723, -0.0265872273594141, -0.044279616326093674, 0.018567973747849464, 0.014051064848899841, -1.323313426837558e-05, 0.01328666415065527, -0.005496731959283352, -0.032493956387043, -0.026239773258566856, -0.004721908364444971, -0.001940533984452486, 0.014509704895317554, -0.02405775710940361, -0.017372731119394302, -0.017886962741613388, -0.0012855820823460817, -0.021722862496972084, -0.017150359228253365, 0.04975549876689911, -0.026865189895033836, -0.018679160624742508, 0.003578782547265291, 0.005934524815529585, -0.008387554436922073, 0.0004486507677938789, 0.00039327520062215626, -0.050283633172512054, -0.0014766821404919028, -0.010159572586417198, -0.033077679574489594, -0.0270597655326128, -0.0019526949618011713, 0.024558091536164284, 0.023571321740746498, 0.017928658053278923, -0.005069362930953503, -0.0140024209395051, -0.0011587610933929682, 0.026642819866538048, 0.000692303292453289, 0.013703609816730022, -0.005246564745903015, -0.007810779847204685, -0.012723787687718868, -0.0018328230362385511, 0.019832709804177284, 0.0041729300282895565, -0.04072168096899986, -0.022890310734510422, 0.021333713084459305, -0.01923508755862713, 0.03635765239596367, -0.013300562277436256, -0.03146548941731453, 0.015107326209545135, -0.0049651265144348145, 0.009555001743137836, -0.009680085815489292, -0.025656048208475113, -0.018164927139878273, 0.017928658053278923, 0.0003283446130808443, 0.019971691071987152, 0.016816802322864532, 0.01375920232385397, -0.029769910499453545, 0.0017893912736326456, 0.003696917090564966, 0.003102769609540701, 0.00650782510638237, 0.00422157347202301, -0.009652289561927319, 0.018957123160362244, 0.018637465313076973, -0.006275030318647623, 0.0067197722382843494, -0.019221188500523567, 0.0032243789173662663, -0.004228522535413504, 0.004787924699485302, -0.018248315900564194, -0.03124311938881874, -0.003571833483874798, -0.030548209324479103, -0.007386885117739439, -0.009131107479333878, -0.005684357602149248, -0.006917821243405342, 0.004155557136982679, 0.019624236971139908, -0.004767077509313822, 0.0014375934842973948, -0.0167195163667202, -0.011174140498042107, -0.0004951228038407862, -0.0070394305512309074, 0.021750658750534058, -0.010076183825731277, 0.010145674459636211, 0.040971849113702774, 0.03177125006914139, 0.004937330260872841, -0.05378597229719162, -0.014773770235478878, -0.007115870248526335, 0.031020747497677803, 0.04222268611192703, -0.012508366256952286, 0.007366037927567959, -0.002166379475966096, 0.019262883812189102, -0.029213983565568924, -0.025141816586256027, 0.0167195163667202, 0.020291348919272423, -0.009638390503823757, -0.027476711198687553, 0.007782983127981424, -0.026156382635235786, 0.009318732656538486, -0.0026840867940336466, -0.028268907219171524, -0.001148337498307228, -0.012744635343551636, 0.011090750806033611, 0.04030473530292511, 0.009534155018627644, 0.004093015566468239, 0.015482577495276928, -0.01115329284220934, -0.006341046653687954, 0.0017772302962839603, -0.003954033367335796, 0.01894322596490383, 0.0035753080155700445, 0.03210480511188507, 0.01742832362651825, -0.004364029970020056, -0.012438874691724777, 0.002486037788912654, 0.015121224336326122, -0.016344264149665833, -0.020722193643450737, 0.042556241154670715, -0.012216503731906414, -0.028936021029949188, 0.010910075157880783, 0.03115972876548767, 0.0022636668290942907, -0.00607350654900074, -0.018178826197981834, 0.005267411936074495, 2.390107692917809e-05, -0.011702271178364754, 0.016344264149665833, 0.005270886700600386, -0.014551399275660515, -0.0010953507153317332, 0.008936532773077488, -0.006361893843859434, -0.002656290540471673, -0.02122252807021141, 0.020388636738061905, -0.04077727347612381, -0.01592732034623623, -0.015524271875619888, -0.015899522230029106, 0.03835899010300636, 0.00891568511724472, -0.0010614738566800952, 0.020527618005871773, 0.011493798345327377, -0.04708704724907875, 0.02201472409069538, -0.05136768892407417, -0.005788594018667936, 0.0016999216750264168, -0.021514389663934708, -0.005906728561967611, -0.016524940729141235, 0.02721264585852623, -0.006038761232048273, 0.005865033715963364, -0.0001261694560525939, -0.0025155714247375727, 0.012869718484580517, -0.014245639555156231, 0.014148351736366749, 0.008109590969979763, 0.012140064500272274, 0.015079529955983162, 0.004430046305060387, -0.017483916133642197, 0.004638519138097763, 0.023335052654147148, -0.005277835763990879, 0.01791475899517536, -0.031104136258363724, 0.033411234617233276, 0.008088743314146996, 0.018554076552391052, -0.016441551968455315, -0.018095435574650764, -0.02642044797539711, -0.00698036327958107, 0.016524940729141235, -0.022542854771018028, -0.016288671642541885, -0.031131932511925697, -0.011472951620817184, -0.0018797294469550252, 0.0029620504938066006, 0.011257529258728027, -0.017456119880080223, 0.015996810048818588, 0.014704279601573944, -0.003472808748483658, 0.021639473736286163, 0.011333969421684742, 0.0014488857705146074, 0.010937871411442757, -0.018095435574650764, -0.008012303151190281, -0.03708035498857498, -0.014662584289908409, 0.050339225679636, 0.013905134052038193, -0.022751327604055405, -0.024905547499656677, 0.008144335821270943, -0.04186133295297623, -0.022362178191542625, -0.016441551968455315, 0.04794873669743538, 0.032049212604761124, 0.0003700391680467874, -0.011903795413672924, 0.03683019056916237, -0.028116026893258095, 0.006987312342971563, -0.018331704661250114, -0.007018583361059427, -0.018915429711341858, -0.01092397328466177, 0.003700391622260213, 0.011959387920796871, -0.0033025559969246387, 0.0027031968347728252, 0.01899881847202778, 0.010652958415448666, 0.004138184245675802, 0.037024762481451035, 0.028602464124560356, -0.010659907944500446, -0.018971022218465805, 0.007942812517285347, 0.010646008886396885, 0.011938540264964104, -0.02098625898361206, -0.015510373748838902, 0.026754004880785942, 0.01300870068371296, 0.003721238812431693, -0.025906216353178024, 0.01767848990857601, 0.01045143511146307, -0.03658002242445946, 0.008429248817265034, -0.0004102136008441448, -0.0066051119938492775, -0.020444229245185852, -0.019582541659474373, 0.0061638448387384415, -0.006063083186745644, 0.022278789430856705, 0.02302929200232029, 0.019054410979151726, -0.009944151155650616, -0.016135791316628456, 0.02112524025142193, -0.02183404751121998, 0.003700391622260213, 0.01163278054445982, -0.014037166722118855, 0.015593763440847397, 0.013189377263188362, 0.0003029369981959462, -0.005138853564858437, -0.012925311923027039, 0.016219181939959526, -0.004186828155070543, -0.045780621469020844, 0.018790345638990402, 0.04130540415644646, 0.0022306586615741253, -0.0015765753341838717, -0.006956041324883699, -0.01678900606930256, 0.005458511877804995, -0.02618417888879776, 0.024016063660383224, -0.01091702375560999, 0.02530859410762787, -0.0019335849210619926, 0.004002677276730537, 0.0019387967186048627, -0.0019266358576714993, 0.007963660173118114, -0.026462143287062645, 0.008804500102996826, 0.2748504877090454, -0.01838729903101921, -0.040805067867040634, 0.022737430408596992, -0.007366037927567959, 0.022348280996084213, 0.006691975984722376, 0.005316055379807949, -0.027157053351402283, 0.0073590888641774654, -0.0036100533325225115, -0.002546842209994793, 0.009040769189596176, 0.006354944780468941, -0.008776703849434853, -0.015204614028334618, -0.03196582570672035, 0.005545375403016806, -0.006820533890277147, -0.01727544330060482, 0.028213314712047577, 0.008887888863682747, -0.0022480313200503588, -0.00244434317573905, 0.02603130042552948, -0.0048157209530472755, 0.004523858893662691, -0.005705204792320728, 0.01301565021276474, 0.022501161321997643, -0.014606991782784462, 0.004739280790090561, -0.012292943894863129, 0.00209862575866282, -0.011577188037335873, 0.000685788516420871, 0.02539198286831379, 0.021973028779029846, 0.029853301122784615, 0.012452773749828339, -0.0031114560551941395, -0.0021281593944877386, 0.014148351736366749, -0.013418696820735931, 0.004145133309066296, 0.010743296705186367, -0.008540434762835503, 0.007317394018173218, -0.009054667316377163, 0.028032638132572174, -0.03588511422276497, -0.019999487325549126, 0.028741445392370224, 0.020569313317537308, 0.008429248817265034, 0.00372818810865283, 0.017136462032794952, -0.006396639626473188, 0.006108251865953207, -0.0057746958918869495, -0.018971022218465805, 0.03507901728153229, -0.02461368404328823, 0.0015374866779893637, -0.06004015728831291, 0.019693726673722267, -0.006886550225317478, -0.004461317323148251, 0.012174809351563454, 0.018276112154126167, -0.008616873994469643, 0.000849526550155133, -0.01931847631931305, -0.021667269989848137, -0.027393322438001633, -0.014537501148879528, 0.050672780722379684, 0.015079529955983162, 0.01899881847202778, 0.009158903732895851, -0.025808928534388542, -0.010381943546235561, -0.012716839089989662, -0.00934652891010046, 0.002640655031427741, -0.04172234982252121, 0.016441551968455315, -0.00396445719525218, -0.02871364913880825, 0.011459053494036198, 0.008415350690484047, 0.0022879885509610176, -0.0019057885510846972, 0.00792196486145258, -0.020152367651462555, -0.023696403950452805, 0.0093048345297575, 0.017886962741613388, -0.007463325280696154, -0.01822051964700222, -0.011521594598889351, 0.02996448613703251, 0.027629591524600983, 0.027810268104076385, -0.01663612760603428, -0.0017737557645887136, -0.008227725513279438, 0.009047717787325382, 0.007581459823995829, -0.014071911573410034, -0.0181371308863163, -0.056982558220624924, -0.006354944780468941, -0.013627169653773308, 0.0029985331930220127, 0.012230402790009975, -0.008352808654308319, -0.01663612760603428, -0.0001574403722770512, -0.008137387223541737, 0.020138468593358994, -0.01696968264877796, -0.005687831901013851, -0.015788337215781212, -0.007379936054348946, -0.03455088660120964, -0.018804242834448814, -0.006341046653687954, -0.002996796043589711, -0.01815102808177471, 0.02216760441660881, -0.025058425962924957, 0.0060804556123912334, -0.00788027048110962, 0.0012812388595193624, 0.014662584289908409, 0.02547537162899971, -0.006559943314641714, 0.017011377960443497, -0.0181371308863163, 0.006841381546109915, 0.013126835227012634, 0.00978432223200798, 0.011535492725670338, 0.002281039487570524, 0.013821744360029697, 0.0029672624077647924, 0.004756653681397438, -0.004329284653067589, -0.0025451050605624914, -0.020541517063975334, -0.02493334375321865, -0.003856746247038245, -0.018276112154126167, 0.01776188053190708, -0.004548180848360062, -0.033800385892391205, -0.018984919413924217, -0.004951228387653828, 0.014037166722118855, -0.03544037044048309, 0.015204614028334618, 0.010152623988687992, -0.015399188734591007, -0.01678900606930256, 0.00512843020260334, -0.17867505550384521, 0.009714830666780472, 0.0329664945602417, -0.013474290259182453, 0.017400527372956276, -0.01143125630915165, -0.001314247027039528, 0.012800227850675583, -0.006612061057239771, 0.003995728213340044, 0.006410537753254175, 0.02279302291572094, -0.02154218591749668, -0.013078191317617893, 0.0023748523090034723, -0.003114930586889386, -0.013877336867153645, 0.01576054096221924, 0.018651364371180534, 0.014773770235478878, 0.028435684740543365, -0.013112937100231647, -0.007282648701220751, 0.033022087067365646, -0.008366706781089306, -0.022334381937980652, -0.011042107827961445, 0.001523588434793055, 0.016427654772996902, -0.007630103267729282, -0.01885983720421791, -0.0008894837810657918, 0.0029724743217229843, 0.0025034104473888874, -0.017470017075538635, -0.004641993436962366, -0.0029012460727244616, 0.0022654039785265923, 0.00026906016864813864, 0.011611932888627052, 0.007727390620857477, 0.036246463656425476, -0.02508622221648693, 0.016260875388979912, 0.02453029528260231, 0.020958462730050087, 0.0017181630246341228, -0.0020673549734055996, -0.0044439444318413734, -0.024085553362965584, 0.00039674973231740296, -0.025669947266578674, -0.012237351387739182, -0.006768415682017803, 0.029881097376346588, -0.004801822826266289, -0.016274774447083473, 0.002948152367025614, -0.0020934140775352716, 0.010736347176134586, -0.012320740148425102, -0.02065270207822323, 0.010764144361019135, 0.026128586381673813, -0.015274104662239552, 0.009728728793561459, -0.008109590969979763, 0.03802543133497238, -0.00447868974879384, -0.00934652891010046, 0.005541901104152203, -0.008811448700726032, 0.022292688488960266, -0.021333713084459305, 0.01111854799091816, -0.001904051285237074, 0.006177742965519428, 0.025336390361189842, -0.002942940453067422, 0.011104649864137173, -0.010117878206074238, 0.047059252858161926, -0.01095871813595295, -0.021750658750534058, 0.02081947959959507, 0.021653370931744576, 0.022042520344257355, 0.031131932511925697, -0.02554486319422722, -0.03519020229578018, 0.040110159665346146, -0.01641375571489334, -0.024266229942440987, -0.024488601833581924, -0.00628892844542861, 0.02036084048449993, -0.0033859452232718468, -0.013453442603349686, -0.008408401161432266, -0.02461368404328823, 0.002501673297956586, -0.0037907299119979143, -0.011528544127941132, 0.012230402790009975, 0.003644798882305622, 0.005281310062855482, 0.0072409543208777905, 0.014301232062280178, 0.030576005578041077, -0.00698036327958107, 0.0003600498312152922, 0.007720441557466984, 0.003290395252406597, 0.018206622451543808, -4.6092027332633734e-05, 0.018901530653238297, -0.0012265148106962442, -0.023474033921957016, -0.0016069775447249413, -0.00011237985017942265, -0.004982498940080404, -0.020152367651462555, -0.006674603093415499, 0.01916559599339962, 0.002459978684782982, 0.0051701245829463005, -0.05125650390982628, -0.013898184522986412, 0.0012734211049973965, 0.023209968581795692, -0.008922634646296501, 0.015260206535458565, -0.002331420546397567, 0.005395970307290554, 0.022667938843369484, 0.014926650561392307, 0.0015765753341838717, -0.015246308408677578, -0.039554234594106674, 0.006358419544994831, 0.006156895775347948, 0.0038115771021693945, 0.01242497656494379, -0.01790086179971695, 0.015649355947971344, 0.03835899010300636, -0.002628494054079056, -0.025461474433541298, -0.004840042907744646, -0.004513435531407595, 0.0007205340079963207, -0.023140477016568184, -0.018192723393440247, 0.02036084048449993, 0.01324496977031231, 0.013634119182825089, 0.03588511422276497, -0.003891491563990712, -0.013210223987698555, -0.0028074332512915134, -0.0004972944152541459, -0.02532249130308628, -0.008380604907870293, -0.010861431248486042, 0.019304579123854637, -0.011577188037335873, 0.013988522812724113, -0.019026614725589752, 0.006347995717078447, 0.013133784756064415, -0.0015843930887058377, -0.00911025982350111, -0.017136462032794952, 0.008616873994469643, -0.00747722340747714, -0.02043033204972744, -0.023724200204014778, 0.00015342292317654938, 0.007157565094530582, -0.03638544678688049, 0.04008236527442932, -0.003898440860211849, 0.03077058121562004, 0.016761209815740585, -0.027268238365650177, 0.04408504068851471, 0.004072167910635471, -0.021097443997859955, -0.032382771372795105, 0.02815772220492363, 0.020402533933520317, 0.022584550082683563, -0.02674010768532753, 0.0034415379632264376, 0.007956710644066334, 0.00042454610229469836, -0.01191074401140213, 0.029241779819130898, -0.006914346944540739, 0.02059710957109928, -0.009534155018627644, -0.025461474433541298, -0.015955116599798203, -0.022834716364741325, 0.006347995717078447, -0.027949249371886253, -0.013981573283672333, -0.011549391783773899, 0.014273435808718204, -0.029047206044197083, 0.015343595296144485, 0.008672467432916164, -0.018123231828212738, 0.01199413277208805, 0.0007630971958860755, -0.013140733353793621, 0.005187497474253178, 0.0015539907617494464, 0.017706286162137985, -0.017219850793480873, -0.018317807465791702, 0.002682349644601345, -0.004447419196367264, -0.01894322596490383, 0.012515314854681492, 0.00973567832261324, -0.017609000205993652, -0.029241779819130898, -0.07721831649541855, 0.0026059094816446304, -0.001256048446521163, 0.027573997154831886, 0.0024634532164782286, 0.004770551808178425, 0.013981573283672333, 0.005267411936074495, 0.00041672837687656283, -0.015065631829202175, -0.03741391375660896, 0.013390900567173958, -0.00674061942845583, -0.022584550082683563, -0.013884286396205425, -0.0315488800406456, 0.020638804882764816, 0.006306301336735487, -0.0015409612096846104, 0.00895737949758768, -0.004753178916871548, -0.004263268318027258, 0.006632908713072538, 0.0010423638159409165, 0.013300562277436256, 0.004725382663309574, 0.007143666967749596, 0.033327847719192505, -0.025100121274590492, -0.020485924556851387, 0.0014401993248611689, -0.02262624353170395, 0.002769213169813156, 0.021903539076447487, -0.007004684768617153, -0.031604472547769547, 0.014370722696185112, 0.0018137131119146943, 0.02808823063969612, 0.0009720042580738664, -0.011695322580635548, -0.04700366035103798, 0.004739280790090561, -0.0059275757521390915, 0.018734753131866455, 0.024794360622763634, -0.04116642102599144, 0.00010353061952628195, -0.002724044257774949, 0.01806763932108879, 0.017150359228253365, -0.002446080558001995, 0.002456504153087735, -0.024975037202239037, -0.002750103361904621, -0.038053229451179504, 0.004277166444808245, 0.011896845884621143, -0.007463325280696154, -0.02736552618443966, 0.01963813416659832, 0.0014384620590135455, 0.018901530653238297, -0.019513051956892014, 0.011556340381503105, 0.01665002480149269, -0.006883075926452875, 0.014829362742602825, 0.021333713084459305, -0.015579864382743835, -0.011973286047577858, 0.018818141892552376, -0.022195400670170784, 0.010875329375267029, 0.0009424706222489476, 0.014509704895317554, -0.02081947959959507, -0.0022254467476159334, -0.04814331233501434, 0.0130573445931077, 0.02311268076300621, -0.01005533616989851, -0.035218000411987305, 0.020791683346033096, 0.022515058517456055, 0.007894168607890606, -0.010340249165892601, 0.03368920087814331, -0.014968344941735268, -0.011104649864137173, -0.014884955249726772, 0.001487105735577643, 0.0037559843622148037, 0.006004015915095806, 0.01931847631931305, 0.026795700192451477, -0.016914090141654015, -0.02910279855132103, 0.021500490605831146, 0.01491275243461132, 0.021986927837133408, -0.012466671876609325, 0.0026180704589933157, -0.01514902152121067, -0.0028387042693793774, -0.005013769958168268, -0.013606322929263115, -0.0536469928920269, 0.023682506754994392, 0.022973699495196342, 0.02974211424589157, 0.018679160624742508, -0.0022793023381382227, 0.019610337913036346, 0.005441139452159405, -0.000241915273363702, 0.00997889693826437, -0.026642819866538048, -0.03405055031180382, 0.014203944243490696, 0.022681837901473045, -0.013849540613591671, 0.020861174911260605, -0.014676482416689396, 0.025836724787950516, -0.03216039761900902, 0.023237764835357666, -0.031437695026397705, 0.006757992319762707, -0.01068075466901064, -0.0025572660379111767, -0.003194845048710704, -0.03705256059765816, -0.014982243068516254, -0.004464791622012854, 0.006824008654803038, 0.0023661658633500338, 0.010743296705186367, -0.03368920087814331, 0.06643332540988922, 0.024405211210250854, -0.00859602726995945, 0.00439530098810792, 0.00808179471641779, 0.0029099322855472565, 0.00605613412335515, -0.009555001743137836, -0.020013386383652687, -0.01514902152121067, 0.01072939857840538, 0.004506486468017101, -0.0019440085161477327, -0.023877080529928207, 0.0012160910991951823, -0.015399188734591007, 0.0032556497026234865, 0.03827559947967529, -0.0056079174391925335, -0.012195657007396221, 0.06348690390586853, 0.0009711356251500547, 0.019735421985387802, 0.019068310037255287, 0.0035092916805297136, 0.014509704895317554, 0.004311911761760712, 0.006139522884041071, 0.009464663453400135, 0.0017468280857428908, 0.018887633457779884, -0.007762135937809944, 0.004120811820030212, -0.004989448469132185, -0.019221188500523567, 0.029130594804883003, -0.006577315740287304, 0.028296703472733498, 0.014843260869383812, 0.017970353364944458, 0.0025815877597779036, 0.026309262961149216, -0.051868025213479996, -0.005309106316417456, -0.006358419544994831, 0.019540848210453987, -0.0060457102954387665, 0.02230658568441868, -0.01972152292728424], "04c8b63d-9486-4ae2-b381-b813de511e5b": [-0.034084711223840714, -0.00021008281328249723, 0.02369166724383831, -0.004952061455696821, -0.030955621972680092, -0.0011384851532056928, -0.014262495562434196, -0.05210490524768829, -0.0038904063403606415, -0.019542831927537918, 0.007110293954610825, 0.005172075238078833, -0.02827354520559311, 0.009128835052251816, -0.0008669599774293602, 0.00610451539978385, 0.0010974508477374911, -0.00297542754560709, 0.009492033161222935, -0.017307767644524574, 0.009380280040204525, 0.009079943411052227, -0.021777894347906113, -0.033972956240177155, -0.009792369790375233, -0.02029716596007347, 0.015030798502266407, -0.0036494387313723564, 0.0305924229323864, 0.008772621862590313, 0.02635977417230606, 0.008423393592238426, -0.007347769569605589, -0.0012039655121043324, -0.030760053545236588, -0.0013061149511486292, -0.02228078432381153, 0.01025335118174553, 0.0017592390067875385, -0.0005068180034868419, 0.025144457817077637, 0.009268526919186115, 0.004822846502065659, 0.01518445834517479, -0.022825580090284348, -0.004037082195281982, 0.0058321175165474415, -0.03542574867606163, -0.011608358472585678, 0.014318372122943401, -0.01700044795870781, 0.028832310810685158, -0.022630011662840843, -0.02749127335846424, 0.007794782053679228, 0.0059648239985108376, 0.030536547303199768, 0.01465363148599863, -0.004487587139010429, -0.005447966046631336, 0.014723476953804493, -0.004826338961720467, -0.03889009356498718, 0.004979999735951424, 0.015785131603479385, -0.0012249192222952843, 0.0011428504949435592, -0.009114866144955158, -0.048752311617136, 0.022811610251665115, 0.009848246350884438, 0.04104134440422058, -0.0025877838488668203, 0.012914473190903664, 0.039588551968336105, -0.0065654972568154335, 0.001522636623121798, -0.0016038322355598211, 0.037716686725616455, 0.01920757256448269, 0.030760053545236588, -0.00804622657597065, 0.004651724826544523, -0.028552928939461708, 0.014695539139211178, 0.0040894667617976665, -0.004487587139010429, 0.03916947916150093, -0.004679663106799126, 0.00025646472931839526, 0.004780939314514399, 0.01363388355821371, 0.028748497366905212, 0.021889647468924522, 0.00030644808430224657, 0.010518765076994896, -0.03472729027271271, 0.01711220107972622, -0.004393295384943485, -0.02137278951704502, -0.0009656170150265098, -9.811140625970438e-05, -0.033023055642843246, -0.00966664683073759, -0.00017908877634909004, -0.011496605351567268, 0.026597248390316963, -0.009464094415307045, -0.011880756355822086, 0.000531263998709619, -0.010358119383454323, 0.037828441709280014, 0.004976507276296616, -0.018397361040115356, -0.028999941423535347, 0.01853705383837223, 0.043332282453775406, 0.00019796895503532141, -0.04011937975883484, 0.0015357326483353972, 0.02222490683197975, 0.0017732081469148397, 0.024865074083209038, -0.001706854673102498, 0.013040195219218731, 0.00965966284275055, 0.025884822010993958, -0.001974887680262327, 0.0016509781125932932, -0.019249480217695236, 0.07599213719367981, 0.004082482308149338, 0.0067121731117367744, 0.013130994513630867, -0.001856149872764945, 0.033358313143253326, -0.0009490286465734243, -0.014004065655171871, -0.027561118826270103, 0.0024987305514514446, 0.025996575132012367, 0.017084261402487755, -0.009869199246168137, -0.03422440215945244, -0.0035324471537023783, 0.011608358472585678, 0.004159312229603529, 0.014611723832786083, -0.004305988550186157, -0.0010546703124418855, -0.005758779123425484, -0.020716238766908646, 0.010302242822945118, 0.023649759590625763, 0.004138358868658543, -0.0040894667617976665, -0.007354754023253918, 0.04282939434051514, -0.009017081931233406, -0.016134360805153847, 0.005978793371468782, 0.006481682416051626, -0.0037053152918815613, -0.009932060725986958, -0.004463141318410635, 0.024809198454022408, 0.004571401979774237, -0.005730840843170881, -0.015589564107358456, -0.011363898403942585, 0.01762905903160572, 0.03299511596560478, -0.017489368095993996, 0.03715791925787926, -0.02703029289841652, -0.0016116899205371737, -0.004826338961720467, 0.012551275081932545, -0.006886787712574005, 0.0035307009238749743, -0.006939171813428402, -0.00562258018180728, 0.01642771251499653, 0.03469935059547424, -0.005706395022571087, -0.031486447900533676, 0.025172395631670952, 0.00433392683044076, 0.024851106107234955, 0.01102165412157774, 0.01161534246057272, 0.04713188856840134, -0.0029317738953977823, 0.005821640603244305, -0.5806693434715271, -0.019808245822787285, -0.03849896043539047, 0.0016762971645221114, 0.033302437514066696, 0.012474444694817066, 0.018564991652965546, 0.025856884196400642, -0.02578703872859478, 0.012837642803788185, -0.025130487978458405, 0.014527908526360989, 0.0027833518106490374, 0.0024655538145452738, -0.010944823734462261, -0.01972443051636219, 0.020814023911952972, 0.007487460970878601, -0.009135819971561432, 0.02589879184961319, -0.02651343308389187, 0.008423393592238426, 0.0018124963389709592, 0.015603533014655113, -0.0009027558844536543, -0.012348722666501999, 0.011517558246850967, -0.016120390966534615, 0.007222047075629234, 0.005172075238078833, -0.005039368290454149, -0.01062353327870369, 0.007141724694520235, -0.015086675062775612, 0.04783034697175026, -0.019235510379076004, -0.028944063931703568, 0.0265274029225111, 0.02007365971803665, 0.04296908527612686, -0.018271639943122864, -0.011140392161905766, 0.03492285683751106, -0.01255826000124216, -0.0029562199488282204, -0.016930602490901947, -0.011734080500900745, -0.009987937286496162, 0.023705635219812393, -0.045148272067308426, -0.0019556800834834576, -0.009561878629028797, -0.0035080011002719402, 0.0005382485687732697, -0.017754781991243362, 0.009715539403259754, 0.023551976308226585, -0.024948889389634132, 0.0091008972376585, -0.028804372996091843, -0.006013716105371714, -0.0034102171193808317, -0.03246428817510605, -0.031709954142570496, -0.030676238238811493, -0.0016509781125932932, -0.031095312908291817, 0.002619214355945587, 0.015156520530581474, 0.004986984189599752, -0.019710460677742958, -0.01465363148599863, -0.007396661210805178, 0.017545243725180626, 0.019249480217695236, 0.024557754397392273, 0.02624802105128765, -0.02464156784117222, -0.01653946563601494, 0.026094360277056694, 0.0004413376154843718, -0.016134360805153847, -0.004169789142906666, -0.019556799903512, 0.003886914113536477, -0.0011742811184376478, -0.02838529832661152, 0.017601121217012405, 0.015729255974292755, -0.006090546492487192, 0.021959492936730385, 0.019109787419438362, 0.016693126410245895, 0.004826338961720467, -0.006939171813428402, 0.013850405812263489, -0.03791225329041481, -0.007347769569605589, -0.003312433138489723, -0.01809004135429859, -0.04210299625992775, -0.006296591367572546, -0.013759606517851353, -0.008248778991401196, 0.010756240226328373, 0.015002859756350517, -0.012656044214963913, -0.007071878761053085, 0.04646136984229088, -0.028720557689666748, -0.014946983195841312, -0.0007936219335533679, -0.00668772729113698, -0.018970096483826637, 0.0053781201131641865, -0.028832310810685158, 0.024851106107234955, -0.004669186193495989, 0.014835230074822903, -0.0122090307995677, 0.02216903120279312, 0.002813036320731044, 0.0044945720583200455, 0.019025973975658417, 0.0057657640427351, 0.02443203143775463, 0.0461261123418808, 0.012418568134307861, 0.0027589057572185993, 0.0008822387317195535, 0.0006905994960106909, 0.002582545392215252, 0.01655343547463417, -0.028692619875073433, 0.012921457178890705, -0.022085215896368027, 0.00951997097581625, -0.012132201343774796, 0.010197474621236324, -0.027980193495750427, -0.0029719353187829256, -0.007759858854115009, 0.018914220854640007, -0.008842467330396175, -0.00440726475790143, -0.014555847272276878, -0.004445679951459169, 0.017028385773301125, 0.011315005831420422, 0.02538193389773369, 0.013829451985657215, -0.014779353514313698, -0.019012004137039185, 0.012690966948866844, -0.013780559413135052, 0.01031621266156435, -0.025004766881465912, -0.01807607151567936, -0.01362689957022667, 0.004229158163070679, -0.0166093111038208, -0.012509367428719997, -0.004410756751894951, -0.004103435669094324, -0.01614832878112793, -0.024613630026578903, -0.019081849604845047, 0.0012476191623136401, -0.006467713508754969, -0.028748497366905212, -0.04822148382663727, -0.005563211161643267, -0.0042396350763738155, -0.0020587025210261345, -0.020869899541139603, 0.0015985937789082527, -0.009715539403259754, 0.003319417592138052, -0.014402186498045921, -0.016735034063458443, 0.0008014796185307205, 0.0017374121816828847, -0.00507079903036356, -0.012802720069885254, 0.0065654972568154335, 0.01672106422483921, 0.03989587351679802, 0.026764879003167152, -0.024809198454022408, 0.007473491597920656, -0.015589564107358456, 0.02624802105128765, -0.01396914292126894, 0.01627405174076557, 0.010840055532753468, -0.008842467330396175, 0.016874724999070168, 0.006380406208336353, -0.00921265035867691, 0.024851106107234955, 0.03503461182117462, 0.03229665756225586, 0.01785256527364254, -0.018718652427196503, 0.025130487978458405, -0.031151188537478447, 0.0375211201608181, -0.005657502915710211, 0.007850658148527145, -0.003715792205184698, -0.0005229698144830763, -0.0011480889515951276, -0.016693126410245895, 0.0050323838368058205, 0.02426440268754959, 0.017768749967217445, -0.007543337531387806, -0.0027606519870460033, 0.019221540540456772, 0.011461681686341763, 0.02578703872859478, -0.019417108967900276, 0.018285607919096947, -0.01141977496445179, 0.023384345695376396, -0.003480062820017338, 0.016651218757033348, 0.03503461182117462, -0.013738652691245079, -0.03333037719130516, -0.001338418573141098, -0.030005719512701035, 0.012767797335982323, -0.00369134615175426, 0.01260715164244175, -0.011496605351567268, 0.032045215368270874, -0.002133786678314209, 0.02697441540658474, 0.034028831869363785, -0.013612929731607437, 0.010902916081249714, 0.01729379966855049, -0.027281736955046654, 0.022867487743496895, -0.0011245160130783916, 0.03282748535275459, 0.02159629575908184, 0.0006857976550236344, 0.02080005407333374, -0.015799101442098618, 0.01746142841875553, -0.02232269011437893, 0.02669503353536129, 0.025982607156038284, -0.003033050335943699, 0.0035359393805265427, 0.02022731862962246, 0.014011050574481487, 0.031877584755420685, 0.016525495797395706, -0.0033508483320474625, 0.007159186061471701, 0.008933267556130886, 0.019989844411611557, -0.001152454293332994, -0.031765833497047424, -0.02691853977739811, 0.013019241392612457, -0.010134613141417503, -0.021638203412294388, 0.006837895605713129, -0.011210237629711628, 0.00455044861882925, -0.006142930593341589, -0.026443587616086006, 0.015603533014655113, 0.014807292260229588, 0.01278176624327898, 0.0022001401521265507, -0.009471079334616661, -0.0025161919184029102, 0.03145851194858551, 0.021917585283517838, -0.01598070003092289, -0.009603786282241344, 0.0009787131566554308, -0.008961205370724201, 0.006101023405790329, 0.017978288233280182, 0.006677250377833843, -0.021917585283517838, 0.01746142841875553, 0.0033979942090809345, -0.011210237629711628, 0.0029352661222219467, 0.008353548124432564, -0.03042479418218136, -0.03740936517715454, -0.01933329366147518, -0.004850784782320261, -0.008996128104627132, -0.005968316458165646, -0.035900697112083435, 0.027016323059797287, -0.008067180402576923, -0.0014929522294551134, -0.019221540540456772, -0.007180139422416687, 0.0033578327856957912, -0.021163251250982285, -0.027561118826270103, 0.007592229172587395, 0.0002466426813043654, 0.029838090762495995, 0.01025335118174553, 0.0020674332045018673, -0.021694079041481018, 0.016902662813663483, 0.021666141226887703, -0.03224078193306923, 0.01716807670891285, -0.03014541044831276, -0.011880756355822086, -0.0015427172183990479, 0.043946925550699234, -0.0030382885597646236, 0.012118231505155563, -0.014905075542628765, 4.886471651843749e-05, -0.0439748615026474, -0.012418568134307861, 0.005598134361207485, -0.02425043284893036, 0.010944823734462261, 0.017670966684818268, 0.012628105469048023, -0.008088134229183197, 0.010777194052934647, -0.006764557678252459, -0.007766843773424625, -0.03428027778863907, 0.0450923927128315, 0.004920630715787411, -0.009086927399039268, 0.005119691137224436, 0.01496095210313797, 0.03416852280497551, -0.012530321255326271, -0.005067306570708752, -0.01172709558159113, 0.0203530415892601, 0.00569591810926795, -0.010344150476157665, -0.011049591936171055, 0.00833259429782629, 0.0015863708686083555, -0.001868372899480164, -0.012257923372089863, 0.024096772074699402, 0.03746524080634117, 0.014052958227694035, 0.005587657447904348, -0.002062194747850299, 0.003862468060106039, 0.02024128846824169, -0.0037786532193422318, -0.0031081342604011297, 0.0030487654730677605, -0.010239382274448872, -0.005217474885284901, 0.04017525538802147, -0.017936380580067635, -0.009855230338871479, 0.01320083998143673, -0.02283954992890358, -0.03875040262937546, -0.005014922469854355, -0.0027257290203124285, -0.004099943675100803, -0.027561118826270103, -0.004529494792222977, 0.015561625361442566, -0.005130168050527573, 8.82893509697169e-05, -0.022574136033654213, 0.018942158669233322, -0.01320083998143673, -0.0353698693215847, -0.03117912821471691, -0.029027879238128662, -0.019556799903512, -0.02159629575908184, -0.005025399383157492, 0.014611723832786083, -0.017754781991243362, -0.0265274029225111, -0.0128655806183815, 0.014234556816518307, 0.015114612877368927, 0.028832310810685158, -0.011510574258863926, 0.0002490436309017241, 0.03383326530456543, 0.008248778991401196, -0.00613594613969326, -0.015841009095311165, -0.009764431044459343, 0.01711220107972622, 0.001973141450434923, -0.009736493229866028, -0.004197727423161268, -0.02805003896355629, 0.002467299811542034, 0.0008084641885943711, 0.005790209863334894, 0.033246561884880066, 0.023216716945171356, 0.00544098112732172, -0.011440727859735489, -0.003838022006675601, 0.009093912318348885, 0.00934535637497902, -0.011741064488887787, 0.0428573302924633, -0.034196462482213974, -0.017824627459049225, -0.00013750875950790942, 0.006314052734524012, -0.006404852028936148, 0.0203530415892601, 0.013654837384819984, 0.007690013386309147, 0.013822467066347599, 0.001266826642677188, 3.836057658190839e-05, 0.033693574368953705, 0.005402565933763981, -0.0003116865118499845, 0.011608358472585678, 0.01040002703666687, 0.009848246350884438, -0.016749002039432526, 0.0010747509077191353, 0.0014388217823579907, -0.03428027778863907, 0.021233098581433296, 0.008102103136479855, 0.007033463567495346, -0.014206619001924992, -0.0058740247040987015, -0.033749449998140335, -0.013354500755667686, -0.020492732524871826, -0.03224078193306923, 0.021777894347906113, 0.0023939618840813637, -0.02834339253604412, -0.029391078278422356, -0.014458063058555126, 0.0031203574035316706, -0.003115118946880102, -0.01761508919298649, -0.026052452623844147, -0.0230630561709404, 0.0009385517914779484, 0.005996254738420248, -0.007480476051568985, 0.01592482253909111, -0.032101090997457504, -0.01961267739534378, -0.0008429504814557731, 0.0036075313109904528, -0.0006089673261158168, 0.010169535875320435, -0.006624866276979446, -0.03827545419335365, -0.015198428183794022, -0.0008250524988397956, -0.006052131298929453, -0.02919550985097885, -0.00731284637004137, 0.04045463725924492, 0.03620801866054535, 0.01711220107972622, 0.018495146185159683, 0.009785384871065617, -0.0033386251889169216, 0.026373742148280144, 0.013591976836323738, 0.0009446633048355579, 0.006031177472323179, -0.028636744245886803, -0.007050924934446812, 0.00833259429782629, 0.036403588950634, -0.00914978887885809, -0.027239829301834106, -0.006649312097579241, 0.02380342036485672, -0.007487460970878601, 0.024865074083209038, -0.02356594428420067, -0.048025913536548615, 0.014486001804471016, -0.009526955895125866, 0.0013305608881637454, 0.00451901787891984, -0.02719792164862156, -0.0158130694180727, -0.004924123175442219, -0.00914978887885809, 0.0297542754560709, 0.0011856310302391648, 0.004683155100792646, -0.025912759825587273, 0.025018734857439995, -0.009617755189538002, 0.005395581480115652, 0.007284908089786768, -0.003471332136541605, -0.01227189227938652, -0.008032257668673992, 0.005147629417479038, -0.013026226311922073, 0.008646899834275246, -0.005374627653509378, -0.014206619001924992, -0.003956759814172983, -0.006108007859438658, -0.02839926816523075, -0.006750588305294514, -0.004801893141120672, -0.029949843883514404, -0.01677694171667099, -0.021847739815711975, -0.0025406379718333483, -0.03830339014530182, 0.045874666422605515, 0.043611664324998856, 0.012418568134307861, 0.0031535341404378414, 0.004606325179338455, -0.028832310810685158, 0.005479396320879459, -0.019822213798761368, 0.007676044013351202, -0.010812116786837578, 0.019850153475999832, 0.02612229809165001, 0.028944063931703568, -0.00804622657597065, -0.03830339014530182, -0.012432537041604519, 0.0026576295495033264, 0.029558707028627396, 0.0701809749007225, -0.029223447665572166, 0.015282242558896542, 0.016525495797395706, 5.8932324463967234e-05, -0.022182999178767204, -0.02039494924247265, 0.04268970340490341, 0.019179632887244225, -0.003022573422640562, -0.027756687253713608, -0.007766843773424625, -0.01040002703666687, -0.006900756619870663, -0.01842530071735382, -0.028483083471655846, -0.0063699292950332165, -0.0025912760756909847, -0.002360785147175193, 0.022476350888609886, 0.005650518462061882, 0.018453238531947136, 0.02641564980149269, -0.011042607948184013, 0.0032949717715382576, -0.01835545338690281, -0.01011365931481123, 0.026764879003167152, -0.0010581626556813717, 0.04280145466327667, -0.022713826969265938, -0.008618961088359356, 5.3830310207558796e-05, 0.0027379521634429693, -0.002212363062426448, -0.014444094151258469, -0.019933966919779778, 0.04788622260093689, -0.026206113398075104, -0.01677694171667099, -0.020087627694010735, -0.0018299578223377466, 0.027686841785907745, 0.017950348556041718, -0.022993210703134537, 0.021959492936730385, -0.013501176610589027, -0.00943615660071373, 0.012355707585811615, -8.676147263031453e-05, -0.015002859756350517, -0.0020831485744565725, 0.008758652955293655, -0.007180139422416687, -0.0018771035829558969, -0.01700044795870781, 0.023831358179450035, -0.03735348954796791, -0.02550765499472618, -0.0214705727994442, -0.006464221049100161, 0.00028178381035104394, 0.015282242558896542, -0.004033590201288462, 0.025828946381807327, 0.03654327988624573, -0.023272592574357986, 0.015156520530581474, -0.01428344938904047, 0.0009132327395491302, 0.0019556800834834576, -0.010979746468365192, -0.01322877872735262, -0.010022860020399094, 0.0227836724370718, -0.020814023911952972, 0.004141850862652063, -0.016707096248865128, -0.010190489701926708, 0.007599214091897011, -0.0013357993448153138, 0.026220081374049187, 0.02464156784117222, 0.009966983459889889, 0.0028287514578551054, -0.007976381108164787, -0.0152962114661932, 0.01586894690990448, 0.013501176610589027, 0.018341485410928726, 0.020143505185842514, -0.005667979829013348, 0.019794275984168053, -0.01028827391564846, -0.0070160022005438805, -0.007676044013351202, -0.029167572036385536, -0.0407060831785202, 0.008989144116640091, 0.005447966046631336, 0.0019085342064499855, 0.00272049056366086, -0.03327449783682823, -0.02753318101167679, -0.008074164390563965, 0.00875166803598404, -0.010169535875320435, -0.013172902166843414, 0.03472729027271271, 0.015785131603479385, -0.008660868741571903, 0.014667600393295288, 0.015673378482460976, -0.03492285683751106, 0.002746682846918702, -0.039365045726299286, -0.01207632478326559, -0.048025913536548615, -0.012362691573798656, 0.043946925550699234, 0.009987937286496162, -0.008053211495280266, -0.012984318658709526, 0.004641247913241386, -0.028133854269981384, -0.015282242558896542, -0.010714332573115826, 0.032324597239494324, 0.029446953907608986, -0.003125595860183239, -0.008255763910710812, 0.031654078513383865, -0.01209727767854929, 0.030285103246569633, -0.028580866754055023, 0.003841514466330409, -0.030620362609624863, 0.011594388633966446, 0.011252145282924175, -0.0035359393805265427, -0.031123250722885132, 0.005241921171545982, 0.016637248918414116, 0.015715286135673523, 0.01329164020717144, 0.022643981501460075, 0.00731284637004137, -0.02119119092822075, -0.009506002068519592, 0.00753635261207819, 0.005985777825117111, -0.018914220854640007, -0.0022176015190780163, -0.02154041826725006, -0.0037646840792149305, -0.0005177313578315079, 0.017754781991243362, -0.0040894667617976665, 0.011210237629711628, 0.03020128794014454, -0.006296591367572546, 0.01141977496445179, -0.009848246350884438, -0.013522130437195301, -0.006736619397997856, -0.012949395924806595, 0.01937520131468773, 0.005786717403680086, -0.014821261167526245, 0.02228078432381153, 0.006750588305294514, 0.021680111065506935, -0.009093912318348885, 0.018215762451291084, -0.02005968987941742, 0.0048787230625748634, 0.01614832878112793, -0.017419520765542984, 0.028413238003849983, 0.0053362129256129265, 0.02527018077671528, -0.007396661210805178, 0.006586451083421707, 0.0076620751060545444, -0.024585692211985588, -0.045651160180568695, 0.01920757256448269, 0.03685060143470764, -0.029391078278422356, -0.004711093381047249, -0.0010590356541797519, -0.034028831869363785, -0.00705441739410162, -0.030005719512701035, 0.006080069579184055, -0.0130052724853158, 0.013696745038032532, -0.0022542704828083515, 0.013172902166843414, -0.01757318153977394, 0.011887741275131702, 0.0008137025870382786, -0.015352088026702404, 0.0008228698279708624, 0.24295133352279663, 0.010490826331079006, -0.013333546929061413, 0.033917080610990524, 0.010567656718194485, 0.031095312908291817, 0.013256716541945934, 0.011671219021081924, -0.010958792641758919, 0.0025755607057362795, 0.024376155808568, 0.007222047075629234, -0.023496098816394806, -0.010777194052934647, 0.02254619635641575, -0.02640167996287346, -0.020269226282835007, -0.013193855993449688, 0.0015933554386720061, -0.0016413743142038584, 0.03240841254591942, 0.023775482550263405, -0.0037646840792149305, -0.0053781201131641865, 0.014667600393295288, -0.0018753574695438147, -0.009240588173270226, -0.006862341426312923, 0.014667600393295288, 0.019919998943805695, -0.018062101677060127, -0.0047774468548595905, 0.002800813177600503, 0.01430440228432417, -0.025521624833345413, -0.002790336264297366, 0.022853517904877663, -0.00965966284275055, 0.006970602553337812, 0.013235763646662235, 0.009310433641076088, -0.018453238531947136, 0.009757446125149727, 0.0019329801434651017, 0.0005330101121217012, 0.009554893709719181, 0.001510413596406579, -0.004606325179338455, -0.013354500755667686, 0.011859802529215813, -0.03360975906252861, -0.02221093699336052, 0.026988385245203972, 0.007236015982925892, 0.008646899834275246, 0.00705441739410162, -0.005357166286557913, -0.03673884645104408, 0.004361865110695362, 0.023049086332321167, -0.016413742676377296, 0.06386692076921463, -0.010930854827165604, 0.002814782317727804, -0.05084768310189247, -0.011964571662247181, -0.018509114161133766, -0.010365104302763939, 0.0031186111737042665, -0.01417169626802206, -0.010120644234120846, -0.028036070987582207, -0.02000381238758564, -0.010958792641758919, -0.03355388343334198, -0.01892818883061409, 0.02936313860118389, 0.02289542555809021, 0.018830405548214912, 0.023929143324494362, -0.014835230074822903, -0.014667600393295288, -0.006628358270972967, -0.01632992923259735, -0.015128581784665585, -0.05246810242533684, 0.013438316062092781, -0.02040891908109188, -0.0128655806183815, 0.0010345897171646357, -0.0065026362426579, -0.02039494924247265, -0.006034669931977987, 0.014360278844833374, -0.005688933655619621, -0.002685567829757929, 0.0077039822936058044, 0.020045720040798187, -0.02908375672996044, -0.0091008972376585, -0.019808245822787285, 0.0193193256855011, -0.00198361836373806, 0.007159186061471701, -0.0050777834840118885, -0.02613626793026924, -0.007613182999193668, 0.015142551623284817, 0.011070545762777328, -0.00429551163688302, 0.004822846502065659, -0.026932507753372192, -0.0029352661222219467, 0.001441441010683775, -0.003925329074263573, 0.010267320089042187, 0.006034669931977987, 0.009925076737999916, -0.03509048745036125, 0.018634837120771408, 0.023789450526237488, -0.013096071779727936, 0.009086927399039268, -0.01729379966855049, -0.021694079041481018, -0.023845328018069267, -0.01989205926656723, -0.0036284849047660828, 0.002383484970778227, -0.03503461182117462, 0.03763287141919136, -0.05861452594399452, 0.01989205926656723, -0.02832942269742489, -0.008835483342409134, 0.03288336470723152, -0.007990350015461445, -0.017992256209254265, 0.0017059816746041179, -0.01422058790922165, 0.00705441739410162, 0.014227572828531265, 0.001946949283592403, -0.008737699128687382, 0.011594388633966446, 0.00551082706078887, 0.01068639475852251, 0.003827545326203108, -0.006771542131900787, -0.022071246057748795, -0.028860250487923622, -0.010840055532753468, 0.013822467066347599, -0.020129535347223282, -0.0011672965483739972, -0.02834339253604412, -0.012111247517168522, -0.05028891563415527, 0.032268721610307693, -0.012467460706830025, -0.047523025423288345, -0.014032004401087761, 0.008996128104627132, -0.021512480452656746, -0.01716807670891285, -0.01835545338690281, -0.17846977710723877, 0.03514636307954788, 0.020590517669916153, -0.00514413695782423, 0.018397361040115356, -0.014185665175318718, 0.0018788498127833009, 0.013675791211426258, -0.007773828227072954, -0.009191696532070637, -0.0008665234199725091, 0.002723983023315668, -0.00036952749360352755, -0.03310687094926834, -0.008367517031729221, 0.0072080777026712894, -0.006946156267076731, 0.03126294165849686, 0.024110741913318634, 0.014499970711767673, 0.009177726693451405, 0.0035708623472601175, -0.013864374719560146, 0.022029338404536247, 0.007613182999193668, 0.015044767409563065, 0.0005264620995149016, -0.002455076901242137, 0.045762911438941956, -0.01785256527364254, -0.020129535347223282, -0.02640167996287346, -0.015561625361442566, 0.004250111989676952, -0.007529368158429861, -0.023943111300468445, -0.0021756940986961126, 0.006230237893760204, 0.00969458557665348, -0.00025209938758052886, 0.004602832719683647, 0.03411264717578888, -0.033302437514066696, 0.023845328018069267, 0.011384851299226284, 0.02068830095231533, 0.028916126117110252, -0.01978030614554882, 3.502517074593925e-06, 0.0070614018477499485, 0.007738905493170023, -0.017992256209254265, 0.01263509038835764, -0.00484729278832674, 0.0198361836373806, 0.00989015307277441, -0.0068693263456225395, -0.005699410568922758, 0.002776367124170065, 0.012942411005496979, -0.016064515337347984, -0.020827991887927055, 0.006750588305294514, 0.012216015718877316, 0.00028091075364500284, 0.001141104381531477, -0.020101597532629967, 0.016469620168209076, -0.007522383704781532, -0.017643027007579803, 0.004354880191385746, -0.028944063931703568, 0.045707035809755325, 0.031011497601866722, 0.017656996846199036, 0.017601121217012405, -0.010365104302763939, -0.0011323736980557442, 0.002537145745009184, 3.246734559070319e-05, -0.031542327255010605, 0.033525943756103516, 0.00934535637497902, -0.01232078392058611, 0.01121722161769867, 0.0043828184716403484, 0.014402186498045921, 0.0011603119783103466, -0.001153327408246696, -0.020045720040798187, 0.03235253691673279, -0.018173854798078537, -0.01989205926656723, -0.014374248683452606, 0.0105746416375041, 0.028860250487923622, 0.002814782317727804, -0.01020445954054594, -0.0099180918186903, 0.005447966046631336, -0.019514892250299454, 0.0019888568203896284, -0.02289542555809021, -0.0032460796646773815, 0.012362691573798656, -0.011894725263118744, -0.0014196141855791211, 0.025605440139770508, 0.026541372761130333, -0.0015479556750506163, -0.007683028932660818, -0.007836689241230488, 0.021666141226887703, 0.02448790892958641, -0.0031989337876439095, 0.007068386301398277, -0.0337773896753788, -0.011880756355822086, 0.00558416498824954, 0.015519717708230019, -0.019025973975658417, -0.02838529832661152, -0.0025301610585302114, 0.027784625068306923, -0.0030155887361615896, -0.014164711348712444, -0.03847102075815201, -0.01746142841875553, 0.00325131812132895, 0.045260023325681686, -0.020478764548897743, 0.004117405042052269, -0.005318751093000174, 0.03372151032090187, 0.010560672730207443, 0.03439202904701233, -0.011524543166160583, -0.039420921355485916, -0.030061597004532814, 0.05190933495759964, 0.02324465475976467, 0.010057782754302025, -0.018327515572309494, 0.005744810216128826, 0.026848692446947098, 0.05185345932841301, 0.022476350888609886, -0.024348216131329536, 0.024683475494384766, -0.007766843773424625, 0.0013777067651972175, -4.826448275707662e-05, 0.002180932555347681, 0.028888188302516937, 0.013850405812263489, 0.022476350888609886, 0.057776376605033875, -0.01484919898211956, -0.012348722666501999, -0.004285034723579884, 0.004861261695623398, -0.015380026772618294, -0.009303449653089046, -0.029027879238128662, -0.008807544596493244, -0.03542574867606163, -0.009359326213598251, 0.00325131812132895, -0.011922664009034634, 0.005364151205867529, -0.01750333607196808, -0.004574894439429045, -0.013494192622601986, 0.025968637317419052, -0.007801766507327557, -0.015044767409563065, -0.001037208829075098, -0.02011556550860405, -0.014723476953804493, -0.026764879003167152, 0.017670966684818268, -0.012502383440732956, 0.041683923453092575, 0.004655216820538044, -0.022196969017386436, 0.01859292946755886, 0.005744810216128826, -0.0005522177089005709, -0.04224269092082977, 0.020213350653648376, 0.036068327724933624, 0.0055317808873951435, -0.010944823734462261, 0.012055370956659317, -0.0036808692384511232, 0.02096768468618393, -0.016176268458366394, 0.02834339253604412, -0.022923363372683525, 0.04903169348835945, -0.021624233573675156, -0.0033735481556504965, -0.027784625068306923, -0.01359896082431078, 0.024459969252347946, -0.014946983195841312, -0.01088196225464344, 0.002537145745009184, 0.008584038354456425, -0.006352467928081751, 0.017489368095993996, 0.014821261167526245, 0.0030627346131950617, -0.018159886822104454, 0.02148454263806343, -0.03847102075815201, 0.006293098907917738, 0.03428027778863907, 0.008653883822262287, -0.033358313143253326, 0.0020237795542925596, 0.0011559466365724802, -0.0002835299528669566, -0.003253064351156354, -0.009429171681404114, 0.01648358814418316, -0.03020128794014454, -0.049786027520895004, -0.07951236516237259, 0.01121722161769867, 0.004623786546289921, -0.0011332466965541244, 0.024222495034337044, 0.01355006918311119, 0.019878091290593147, 0.007480476051568985, -0.003701823065057397, -0.006680742837488651, -0.0031884568743407726, 0.022252844646573067, 0.0034206940326839685, -0.025423841550946236, -0.025591470301151276, -0.018271639943122864, 0.017196014523506165, 0.005615595728158951, -0.0005020161042921245, 0.003635469591245055, -0.010749255307018757, -0.008863421157002449, 0.008563084527850151, -0.01621817611157894, 0.007717951666563749, 0.005088260397315025, -0.001612562919035554, 0.017936380580067635, -0.016846787184476852, -0.02346816100180149, 0.005154613871127367, -0.0004483221855480224, -0.0024114232510328293, 0.015715286135673523, -0.00588100915774703, -0.011824879795312881, -0.0014973175711929798, -0.0003710553573910147, 0.023607851937413216, -0.016134360805153847, -0.02624802105128765, -0.024571722373366356, 0.0020726716611534357, -0.005929901264607906, -0.0012851611245423555, 0.01944504678249359, -0.02011556550860405, 0.013144963420927525, 0.01337545458227396, -0.026569310575723648, 0.017251892015337944, 0.014807292260229588, 0.0006325402646325529, -0.017098231241106987, -0.02328656241297722, -0.05210490524768829, 0.02017144300043583, 0.023705635219812393, -0.008374501019716263, -0.01603657566010952, 0.021791864186525345, 0.016064515337347984, 0.014709508046507835, -0.028832310810685158, -0.003329894505441189, 0.0027623979840427637, -0.023831358179450035, 0.01207632478326559, -0.005004445556551218, -0.0077109672129154205, -0.02176392450928688, -0.007724936120212078, -0.0107352863997221, 0.024292340502142906, -0.001924249459989369, 0.019081849604845047, -0.010895932093262672, -0.02130294404923916, -0.025717193260788918, 0.010986731387674809, 0.03291130065917969, 0.0013174648629501462, -0.0260105449706316, 0.0072150626219809055, 0.0055736880749464035, 0.0050358762964606285, -0.0316261388361454, 0.008388470858335495, -0.02005968987941742, 0.015030798502266407, -0.013696745038032532, 0.012725889682769775, -0.006254683714359999, 0.0036703923251479864, 0.030396856367588043, 0.02313290163874626, -0.006691219750791788, -0.02209918387234211, 0.0018771035829558969, 0.0008822387317195535, -0.01484919898211956, -0.0008966443710960448, -0.0008604119066148996, -0.0020499718375504017, -0.00225950893945992, 0.023817388340830803, -0.015407964587211609, -0.05509430170059204, 0.05269160866737366, 0.030760053545236588, 0.0008796195033937693, 0.016134360805153847, -0.010169535875320435, 0.0294748917222023, -0.008409424684941769, 0.006677250377833843, 0.012502383440732956, -0.006038162391632795, -0.037437304854393005, 0.02209918387234211, 0.01857895962893963, -0.012823673896491528, 0.020716238766908646, -0.003008604282513261, 0.022141091525554657, -0.01809004135429859, -0.00738269230350852, -0.05079180374741554, -0.007578260265290737, -0.012663028202950954, -0.013033210299909115, -0.011119438335299492, -0.02131691202521324, -0.017698904499411583, -0.011028639040887356, 0.005524795968085527, 0.01586894690990448, 0.01484919898211956, 0.0037402380257844925, 0.0686723068356514, 0.02352403663098812, -0.008514192886650562, 0.006666773464530706, -0.006118484772741795, -0.005420027766376734, -0.013144963420927525, -0.023049086332321167, -0.005699410568922758, -0.03279954940080643, 0.0016972508747130632, -0.006991556379944086, -0.009883169084787369, -0.002077910117805004, -0.02464156784117222, -0.03430821746587753, 0.016860755160450935, 0.04573497548699379, -0.034084711223840714, 0.01014159806072712, 0.039979688823223114, -0.007522383704781532, 0.02719792164862156, 0.031374696642160416, -0.019989844411611557, -0.0008045353461056948, 0.019179632887244225, 0.013361485674977303, 0.00422217370942235, -0.007571275811642408, -1.2277567407181778e-07, 0.0014850945444777608, -0.012090293690562248, 0.002833989914506674, -0.003469585906714201, -0.00790653470903635, -0.004267573356628418, 0.011664235033094883, 0.011859802529215813, 0.002823513001203537, 0.013221793808043003, 0.00918471161276102, -0.03235253691673279, 0.0029544737190008163, 0.009058989584445953, 0.002685567829757929, -0.03450378403067589, -0.014087880961596966, -0.026722971349954605], "c7a0f770-07cf-40d3-8c24-c4ea170b3e3b": [-0.00519716227427125, -0.030173081904649734, 0.013032408431172371, -0.02962348237633705, -0.005441047716885805, 0.023564133793115616, -0.00490175187587738, -0.04696338623762131, -0.017161283642053604, -0.021214589476585388, -0.0004624375142157078, 0.009370693005621433, -0.016872743144631386, -0.001264940481632948, -0.004407111089676619, 0.003263254649937153, 0.018219266086816788, -0.007179160136729479, 0.013588879257440567, 0.006966189946979284, 0.0017879200167953968, -0.005808593239635229, -0.030915044248104095, -0.04113761708140373, -0.031574565917253494, 0.013650708831846714, 0.00414261594414711, -0.017944464460015297, 0.024635855108499527, -0.003943385556340218, 0.016350623220205307, -0.0004564262635540217, -0.015622401610016823, 0.012695778161287308, -0.002146878046914935, -0.0018703601090237498, -0.009844724088907242, -0.0044002411887049675, -0.0074402205646038055, 0.015155240893363953, 0.02425113320350647, 0.012482807971537113, 0.015292641706764698, 0.017147544771432877, -0.02355039305984974, -0.014852960593998432, -0.009040933102369308, -0.015443781390786171, -0.01806812547147274, 0.02789223939180374, -0.008374541997909546, 0.03591641038656235, -0.023756492882966995, -0.006399414036422968, 0.0076257106848061085, 0.01013326458632946, 0.002775483997538686, 0.003484812332317233, -0.0009686713456176221, -0.012867528013885021, 0.012297317385673523, -0.00917833298444748, -0.05064571276307106, 0.009913424029946327, 0.030777642503380775, 0.04039565846323967, 0.005001367069780827, 0.009700453840196133, 0.00039566963096149266, 0.005145637318491936, 0.014852960593998432, 0.022162651643157005, -0.022533630952239037, 0.020719949156045914, 0.02893648110330105, -0.003946820739656687, -0.014317099936306477, -0.0013611206086352468, 0.007859290577471256, -0.004225056152790785, 0.003929645288735628, -0.006505899131298065, -0.004067045636475086, -0.011314906179904938, 0.024979354813694954, 0.0006041314918547869, -0.010284404270350933, 0.008985972963273525, -0.0011292578419670463, -0.02087108977138996, 0.0030434143263846636, 0.015979642048478127, 0.035971369594335556, 0.032179124653339386, -0.0109782749786973, 0.020774908363819122, -0.02874412015080452, 0.020101647824048996, -0.01359574869275093, -0.014921660535037518, -0.015842242166399956, 0.0012305905111134052, -0.027356378734111786, 0.00034994111047126353, -0.046221423894166946, -0.0439130999147892, 0.017298683524131775, -0.0022533631417900324, -0.001444419496692717, -0.019167326390743256, -0.02115963026881218, 0.02219013124704361, -0.00992716383188963, -0.022616071626544, -0.029843321070075035, -0.006000953260809183, 0.026971658691763878, -0.006990234833210707, -0.04333602264523506, 0.0015088259242475033, 0.016927704215049744, -0.003155051963403821, 0.027837278321385384, 0.01614452339708805, 0.024938134476542473, -0.008511941879987717, -0.01783454418182373, -0.005176552105695009, 0.005863553378731012, -0.012771347537636757, 0.060456085950136185, 0.00903406273573637, 0.01614452339708805, -0.013774368911981583, -0.038829293102025986, 0.01567736268043518, 0.009453133679926395, -0.004225056152790785, -0.016584202647209167, 0.013588879257440567, 0.017477303743362427, 0.012386627495288849, 0.0008566043106839061, -0.01334155909717083, 4.827791781281121e-05, 0.01970318704843521, 0.0063753691501915455, -0.0008089436450973153, 0.008044781163334846, 0.01194007694721222, 0.004043000750243664, 0.00994777400046587, 0.0025934285949915648, 0.009934034198522568, -0.007831810973584652, 0.013843069784343243, 0.01334155909717083, 0.016488023102283478, -0.0009884226601570845, -0.003541490063071251, 0.019909288734197617, 0.03020056150853634, -0.0039365156553685665, -0.033305805176496506, -0.0061040036380290985, 0.023248111829161644, 0.029376160353422165, -0.00877300277352333, -0.021654270589351654, 0.00548913748934865, -0.005667758174240589, 0.015498741529881954, -0.02041766792535782, 0.024539673700928688, -0.014880441129207611, 0.0005757926846854389, 0.01670786365866661, 0.005083807278424501, 0.005155942402780056, 0.01600712165236473, -0.002438853494822979, -0.0029300590977072716, -0.004510161466896534, 0.041165098547935486, -0.0385819748044014, -0.0239625945687294, 0.010353104211390018, 0.01886504702270031, 0.02901891991496086, 0.021503129974007607, 0.028854040428996086, 0.0505632720887661, -0.007639450952410698, -0.0006260296213440597, -0.5878530144691467, -0.01237975712865591, -0.020252788439393044, -0.0027789189480245113, -0.0006762665580026805, 0.012881267815828323, -0.012606468051671982, 0.023701533675193787, -0.03385540843009949, 0.03160204365849495, -0.01071721501648426, 0.010105784051120281, -0.005262427497655153, -0.01315606851130724, -0.00845011230558157, -0.02981584146618843, 0.032783687114715576, -0.019318467006087303, -0.021228330209851265, -0.00733717018738389, -0.022245090454816818, 0.0037750701885670424, -0.013204158283770084, 0.006938709877431393, -0.01514150109142065, 0.013362168334424496, -0.02452593483030796, -0.020431408658623695, 0.02246493101119995, 0.02317941188812256, -0.009411913342773914, 0.008326451294124126, 0.019813107326626778, -0.012084347195923328, 0.05116783082485199, -0.020019209012389183, -0.014049169607460499, 0.022272571921348572, 0.0018154000863432884, 0.04542450234293938, -0.0103943245485425, -0.010140134021639824, -0.002210425678640604, -0.0010468177497386932, 0.0008256892906501889, -0.0004856238083448261, 0.007254729978740215, -0.0119812972843647, 0.004846791736781597, -0.017381124198436737, -0.0004912056610919535, -0.010325624607503414, 0.009885943494737148, -0.012475937604904175, 0.001543175894767046, 0.017614705488085747, 0.006660474464297295, -0.02757621929049492, -0.0076325805857777596, -0.04803510755300522, -0.015691101551055908, 0.0056402781046926975, 0.000790480466093868, -0.023509172722697258, -0.019359687343239784, 0.006602079141885042, -0.01606208272278309, -0.0052727325819432735, 0.004290320910513401, -0.012668297626078129, -0.004675041418522596, -0.020294008776545525, -0.010421805083751678, -0.0033474122174084187, 0.01999172754585743, 0.01839788630604744, 0.033031005412340164, -0.021406950429081917, 0.0020987880416214466, 0.01242784783244133, 0.004431156441569328, -0.0033061921130865812, -0.004846791736781597, -0.013004927895963192, -0.003105244366452098, -0.020610028877854347, -0.016652902588248253, 0.010730954818427563, 0.023522913455963135, 0.014852960593998432, 0.016034603118896484, 0.029705921187996864, 0.01886504702270031, -0.009384432807564735, -0.007275340147316456, 0.01069660484790802, -0.006073088385164738, -0.007247860077768564, 0.017820805311203003, -0.04086281731724739, -0.04119257628917694, 0.005585317965596914, -0.010785914957523346, -0.0005367195117287338, 0.038966692984104156, 0.0020180654246360064, -0.01025005429983139, -0.007089850027114153, 0.030447883531451225, -0.0006101427134126425, -0.015072801150381565, -0.008786742575466633, -0.018219266086816788, -0.011472916230559349, 0.018384145572781563, -0.031574565917253494, 0.02205273136496544, 0.007357780355960131, 0.029568521305918694, -0.002945516724139452, 0.009405042976140976, -0.0039880406111478806, 0.03437752649188042, 0.014303360134363174, -0.008738651871681213, 0.020898569375276566, 0.023852674290537834, 0.009089022874832153, -0.0066192541271448135, 0.00870430190116167, -0.002033522818237543, -0.008676822297275066, 0.023770233616232872, -0.019112367182970047, 0.007886771112680435, -0.002198403002694249, 0.024168694391846657, 0.008072261698544025, 0.046413786709308624, -0.003390349680557847, -0.017381124198436737, -0.010930185206234455, 0.016226962208747864, -0.01614452339708805, -0.009995863772928715, -0.02462211437523365, -0.021613050252199173, 0.01560866180807352, -0.007886771112680435, 0.00036411051405593753, 0.009068412706255913, -0.0222863107919693, -0.01985432766377926, 0.025721315294504166, -0.03149212524294853, 0.004163225647062063, -0.014481980353593826, -0.013884289190173149, -0.0156361423432827, -0.0028802515007555485, -0.0008982537547126412, -0.030695203691720963, -0.027136538177728653, 0.011809546500444412, -0.0017999425763264298, -0.031574565917253494, -0.027919718995690346, 0.01011265441775322, -0.0015414584195241332, -0.026999138295650482, -0.02794719859957695, 0.0034126772079616785, -0.012771347537636757, 0.026106037199497223, 0.0005976908141747117, 0.007096719928085804, -0.011191246099770069, 0.003081199247390032, -0.02302827313542366, -0.00018055243708658963, 0.007199770305305719, 0.018933746963739395, -0.002014630241319537, -0.012613337486982346, 0.009068412706255913, 0.026834256947040558, 0.021984031423926353, 0.017614705488085747, -0.01437206007540226, 0.02135198935866356, 0.011060715653002262, 0.034267608076334, -0.01114315539598465, 0.020568808540701866, 0.02316567301750183, 0.009075283072888851, 0.01820552535355091, -0.004929231945425272, 0.0020386753603816032, 0.025240415707230568, 0.038691893219947815, 0.008649341762065887, -0.00718603003770113, -0.029101360589265823, 0.03187684342265129, -0.018782606348395348, 0.026999138295650482, -0.008910402655601501, 0.015622401610016823, -0.012599597685039043, 0.011383606120944023, -0.01240723766386509, 0.0011155178071931005, -0.002900861669331789, 0.02639457769691944, 0.005959733389317989, -0.017065104097127914, 0.010463024489581585, 0.018713906407356262, -0.010380584746599197, 0.015897203236818314, -0.008072261698544025, 0.020788649097085, -0.0016762823797762394, 0.00016359210712835193, 0.001736394944600761, -0.006990234833210707, 0.029458601027727127, 0.00395712535828352, -0.04440774396061897, -1.1264400200161617e-05, -0.015924682840704918, -0.0021400079131126404, -0.007096719928085804, 0.02734263800084591, -0.025968637317419052, 0.034762248396873474, -0.011809546500444412, 0.012558377347886562, -0.0014109282055869699, 2.667495937203057e-05, 0.018370406702160835, 0.017683405429124832, -0.02954104170203209, 0.021242069080471992, 0.010957665741443634, 0.045616865158081055, 0.013142328709363937, -0.013767499476671219, 0.01514150109142065, -0.027589958161115646, -0.0018154000863432884, -0.026614418253302574, 0.007989821024239063, 0.01457816082984209, 0.004039565566927195, -0.002275690669193864, 0.01913984678685665, 0.00688031455501914, 0.02429235354065895, 0.015402561984956264, 0.030915044248104095, 0.010737825185060501, 0.02649075724184513, 0.004664736334234476, -0.02649075724184513, -0.017820805311203003, -0.049738869071006775, 0.02088482864201069, -0.012194267474114895, -0.032234083861112595, -0.015388821251690388, -0.030063161626458168, -0.002127985469996929, 0.005094112362712622, -0.020527588203549385, 0.02214891090989113, 0.036438532173633575, 0.009576793760061264, -0.0040258257649838924, 0.0025006835348904133, -0.004613211378455162, 0.033718008548021317, -0.0006359052495099604, -0.01053172443062067, -0.0091508524492383, -0.01582850143313408, -0.004280015826225281, 0.0023615658283233643, 0.014001079834997654, -0.010305014438927174, -0.014193439856171608, 0.006550554186105728, -0.0013611206086352468, -0.02405877411365509, 0.022258831188082695, 0.026504497975111008, -0.024306094273924828, -0.012180526740849018, -0.021077189594507217, 0.023948853835463524, 0.010950795374810696, 0.012853788211941719, -0.035971369594335556, 0.020307747647166252, 0.012936227954924107, -0.008766132406890392, -0.012290447019040585, 0.006430328823626041, 0.003534619929268956, 0.00778372073546052, -0.0254602562636137, 0.004163225647062063, -0.00964549370110035, 0.03182188421487808, -0.003407524898648262, 0.026009855791926384, -0.019153587520122528, 0.021145889535546303, 0.015237681567668915, -0.008937882259488106, -0.015952162444591522, -0.004558251239359379, -0.024402273818850517, -0.015182721428573132, 0.0076325805857777596, 0.00012462626909837127, -0.013609489426016808, -0.042896341532468796, -0.02069246955215931, -0.025267895311117172, -0.010634775273501873, -0.009322603233158588, -0.020197829231619835, -0.00933634303510189, 0.011335516348481178, 0.004843357019126415, -0.00917146261781454, 0.0012116979341953993, 0.0036788901779800653, -0.01984058879315853, -0.028909001499414444, 0.030695203691720963, 0.016075823456048965, 0.006279188673943281, 0.0038231604266911745, 0.009411913342773914, 0.016364362090826035, -0.005550967995077372, 0.006320409011095762, -0.014866701327264309, 0.012420977465808392, 0.009487483650445938, -0.022258831188082695, -0.014138479717075825, 0.01144543569535017, 0.00781807117164135, 0.02125580981373787, -0.011101935990154743, 0.020678728818893433, 0.028029639273881912, 0.04292381927371025, -0.0049498421140015125, -0.010092044249176979, 0.02359161339700222, 0.016213223338127136, 0.005279602482914925, 0.0006114308489486575, -0.0018514676485210657, -0.024333573877811432, -0.006529944017529488, 0.010181354358792305, -0.018658945336937904, -0.015017841011285782, 0.02987080253660679, 0.0011610316578298807, -0.06716121733188629, -0.002553926082327962, -0.0005912501947022974, 0.004568556323647499, -0.030585283413529396, -0.02425113320350647, 0.02073368988931179, 0.0033422596752643585, -0.01787576451897621, -0.03195928409695625, 0.01360261905938387, -0.013657579198479652, -0.03149212524294853, -0.008491331711411476, -0.025487735867500305, 0.022272571921348572, -0.021379470825195312, -0.0057364581152796745, 0.01374001894146204, -0.05083807185292244, -0.03272872418165207, -0.023248111829161644, 0.016323143616318703, 0.01567736268043518, 0.011788936331868172, -0.0005277026211842895, 0.0011490090982988477, 0.0033319545909762383, -0.0018652075668796897, -0.007137939799576998, -0.026422057300806046, -0.027878498658537865, 0.035696569830179214, -0.006519638933241367, 0.003781940322369337, -0.007405870594084263, -0.01843910664319992, -0.0043555861338973045, -0.004764351528137922, 0.012668297626078129, 0.026847997680306435, 0.02096726931631565, -0.01041493471711874, -0.0030245217494666576, -0.013513308949768543, -0.0012494829716160893, 0.03292108699679375, -0.012853788211941719, 0.022038990631699562, -0.04710078611969948, -0.03355312719941139, -0.01812308467924595, -0.0043040611781179905, -0.009116502478718758, 0.02742507867515087, 0.009508093819022179, 0.015663621947169304, 0.007412740495055914, 0.02017034776508808, -0.012462197802960873, 0.015292641706764698, 0.006591774057596922, 0.022506151348352432, 0.013444609008729458, -0.002574536018073559, -0.0056849331595003605, 0.004602906294167042, 0.00022005499340593815, 0.00877300277352333, -0.029788361862301826, 0.03198676556348801, 0.010078304447233677, 0.006083393469452858, -0.008456981740891933, -0.00040447182254865766, -0.0479251891374588, -0.0004920644569210708, 0.00812035147100687, -0.002997041679918766, 0.004252535756677389, 0.01839788630604744, -0.033635567873716354, -0.01946960762143135, -0.004781526513397694, -0.007460830267518759, 0.0174635648727417, -0.02775483950972557, -0.01970318704843521, -0.008958492428064346, -0.01284691784530878, -0.011417956091463566, -0.010689735412597656, 0.025996116921305656, -0.02775483950972557, -0.028249479830265045, -0.007179160136729479, 0.004207880701869726, 0.0053276922553777695, 0.025240415707230568, 0.008051651529967785, -0.05715848132967949, -0.03454240784049034, -0.005575012881308794, -0.020280268043279648, -0.02434731461107731, 0.024361053481698036, 0.025309115648269653, 0.03154708445072174, 0.01913984678685665, 0.0050391522236168385, 0.020115388557314873, -0.0025178585201501846, 0.025405295193195343, 0.0011910878820344806, 0.0024165259674191475, 0.00010879304318223149, -0.013685058802366257, -0.00443459115922451, 0.00814096163958311, 0.019277246668934822, -0.00016090850112959743, -0.03907661512494087, -0.007776850834488869, 0.033031005412340164, 0.006499029230326414, 0.0312722846865654, -0.04204446077346802, -0.022506151348352432, 0.009356953203678131, -0.0034418748691678047, 0.012276707217097282, -0.00068914785515517, -0.028496799990534782, -0.021516870707273483, 0.012661428190767765, -0.011074455454945564, 0.008635601960122585, 0.003802550258114934, -0.01378810964524746, -0.04067045822739601, 0.008690562099218369, 0.014907920733094215, 0.018384145572781563, -0.015059061348438263, 0.014275879599153996, -0.025432774797081947, 0.021420689299702644, -0.023385513573884964, -0.010758435353636742, 0.032838646322488785, -0.016130782663822174, 0.008656212128698826, -0.01221487671136856, 0.012585857883095741, -0.020390188321471214, -0.019222287461161613, -0.004431156441569328, -0.01876886561512947, -0.023014532402157784, -0.031574565917253494, 0.006368498783558607, -0.01904366724193096, 0.019263507798314095, 0.012647687457501888, 0.014715560711920261, 0.006042173597961664, -0.013348428532481194, -0.007447090465575457, 0.008024170994758606, -0.0004710250359494239, 0.03641105070710182, 0.0017063386039808393, 0.029705921187996864, 0.048886988312006, 0.035449251532554626, 0.017807064577937126, -0.04218186065554619, -0.007330300286412239, 0.0034229822922497988, 0.030915044248104095, 0.037098053842782974, -0.013698799535632133, -0.004379631020128727, 0.0008389999275095761, 0.00582920340821147, -0.01560866180807352, -0.038966692984104156, 0.03586145117878914, 0.02775483950972557, 0.00828523188829422, -0.02448471449315548, 0.000589103321544826, -0.02110466919839382, 0.0013654144713655114, -0.018370406702160835, 0.00718603003770113, -0.007989821024239063, -0.006887184455990791, -0.012963708490133286, 0.0065230741165578365, 0.008216531947255135, 0.0012778218369930983, 0.02611977607011795, 0.0031516170129179955, -0.01315606851130724, -0.013410259038209915, -0.04319861903786659, 0.014633120968937874, 0.002577971201390028, 0.03951629623770714, -0.009102762676775455, 0.003781940322369337, 0.005592187866568565, -0.0007806048379279673, 0.007907381281256676, -0.020994748920202255, -0.011486656032502651, 0.04773282632231712, -0.023660313338041306, -0.0075364005751907825, 0.0004632962809409946, 0.006732609588652849, 0.015430041588842869, 0.006231098901480436, -0.005550967995077372, 0.007962341420352459, -0.009260772727429867, 0.001774179982021451, 0.00689405482262373, -0.01764218509197235, -0.008443241938948631, -0.015649881213903427, -0.006227663718163967, -0.008738651871681213, -0.003805985441431403, -0.004389936104416847, 0.017848284915089607, -0.04396806284785271, -0.010923315770924091, -0.039488814771175385, -0.013630099594593048, -0.008553162217140198, 0.011053845286369324, 0.014825480990111828, 0.03542177006602287, 0.05517991632223129, -0.04696338623762131, 0.010943925008177757, -0.016968924552202225, 0.00752266077324748, 0.005310517270117998, -0.004661301616579294, -0.016089562326669693, 0.0012666580732911825, 0.013657579198479652, -0.0015861134743317962, -0.005612798035144806, -0.048886988312006, -0.005447917617857456, 0.015649881213903427, -0.0003329807659611106, 0.0299532413482666, 0.017573485150933266, 0.003464202396571636, 0.006797874346375465, -0.0036342351231724024, -0.01765592396259308, 0.005427307449281216, 0.0030090641230344772, 0.011101935990154743, 0.007749370764940977, 6.199110066518188e-05, 0.023715272545814514, -0.00830584205687046, 0.007701280992478132, 0.008202791213989258, -0.03338824585080147, -0.033443208783864975, 0.005403262563049793, -0.0028218564111739397, 0.01624070294201374, 0.011232465505599976, -0.04536954313516617, -0.018040645867586136, -0.03641105070710182, -0.0007114753825590014, -0.009405042976140976, -0.024127474054694176, 0.0034229822922497988, 0.031574565917253494, 0.003407524898648262, 0.013533919118344784, -0.006234533619135618, -0.022780951112508774, -0.0017140674171969295, -0.03514697030186653, -0.010648515075445175, -0.036823250353336334, -0.003407524898648262, 0.06479793041944504, 0.0036651501432061195, -0.004857096821069717, -0.03621869161725044, 0.0046269516460597515, -0.026559457182884216, 0.0061933137476444244, -0.0004317371640354395, 0.043226100504398346, 0.03698813170194626, 0.02135198935866356, -0.019167326390743256, 0.01853528618812561, -0.0008681974723003805, 0.0222863107919693, -0.015787282958626747, -0.010511115193367004, -0.036823250353336334, 0.005818898323923349, -0.008463852107524872, 0.004544511437416077, -0.019222287461161613, 0.005224642343819141, -0.0008570337085984647, 0.005241817329078913, 0.0015380233526229858, 0.030255522578954697, 0.009102762676775455, -0.009954644367098808, -0.005063197109848261, -0.004252535756677389, -0.011033235117793083, 0.009913424029946327, -0.04237421974539757, -0.0239625945687294, 0.001710632350295782, 0.012510287575423717, 0.0035105750430375338, 0.0003063594922423363, 0.0066123842261731625, 0.0012924205511808395, -0.0346248485147953, 0.013300338760018349, -0.010641644708812237, -0.009892813861370087, -0.007481440436094999, -0.01718876324594021, 0.02223135158419609, 0.010621034540235996, 0.006952449679374695, 0.015182721428573132, 0.010772175155580044, 0.007254729978740215, -0.011067585088312626, 0.012159917503595352, -0.024965615943074226, -0.01194007694721222, 0.012331667356193066, -0.014454500749707222, -0.0007518366910517216, 0.0053173876367509365, 0.03533932939171791, -0.010634775273501873, 0.004946406930685043, 0.008628732524812222, -0.021832890808582306, -0.031189844012260437, 0.018617726862430573, 0.021915331482887268, 0.00015210630954243243, 0.0019476477755233645, 0.004420851357281208, -0.024319835007190704, 0.01937342807650566, -0.040890298783779144, 0.013898029923439026, -0.019771886989474297, 0.030255522578954697, -0.009982123970985413, 0.030447883531451225, -0.017807064577937126, 0.0008845137199386954, 0.016652902588248253, -0.0067429146729409695, 0.0021073755342513323, 0.2396259307861328, -0.014097259379923344, -0.01181641686707735, 0.0257900170981884, -0.005750197917222977, 0.020912310108542442, 0.0082371411845088, 0.01240723766386509, -0.02522667497396469, 0.02209395170211792, -0.015292641706764698, -0.01374001894146204, 0.00145128951407969, -0.0021451604552567005, 4.9056161515181884e-05, 0.007268470246344805, -0.007330300286412239, -0.029321201145648956, 0.009487483650445938, 0.004104830790311098, 0.014866701327264309, 0.009301993064582348, -0.02691669762134552, -0.013169808313250542, 0.022313792258501053, 0.01643306389451027, -0.009040933102369308, 0.01055233459919691, 0.022574851289391518, -0.001270093023777008, -0.013066758401691914, 0.015485001727938652, -0.009439392946660519, 0.002806399017572403, -0.023440472781658173, -0.0011584553867578506, 0.02719149738550186, 0.004225056152790785, 0.0015989947132766247, 0.02419617399573326, -0.012833178043365479, 0.013485829345881939, 0.008415761403739452, -0.02143443003296852, 0.008134091272950172, 0.00504258694127202, -0.007453960366547108, 0.005210902541875839, -0.0299532413482666, 0.021915331482887268, -0.019977988675236702, -0.025075534358620644, 0.043885622173547745, 0.001774179982021451, 0.0011352690635249019, 0.0076325805857777596, 0.004156355746090412, -0.025446515530347824, 0.005344867706298828, 0.025735056027770042, 0.0014710407704114914, 0.053393714129924774, -0.009514963254332542, 0.011782066896557808, -0.0266281571239233, -0.0062448387034237385, -0.04759542644023895, -0.005423872731626034, -0.0031636394560337067, 0.001270093023777008, -0.012853788211941719, -0.011596576310694218, -0.01606208272278309, -0.014358320273458958, -0.031024962663650513, -0.026106037199497223, 0.04666110500693321, 0.012599597685039043, 0.024745775386691093, 0.030695203691720963, -0.007776850834488869, -0.03066772222518921, 0.0006925828638486564, 0.012393497861921787, -0.019923027604818344, -0.027644919231534004, 0.015663621947169304, -0.01619948260486126, -0.03066772222518921, -0.00194593018386513, 0.013540788553655148, -0.021544350311160088, 0.006492159329354763, 0.008532552048563957, -0.01053172443062067, -0.009597403928637505, -0.00413231085985899, 0.004846791736781597, -0.0026844562962651253, -0.021310769021511078, -0.017436085268855095, 0.010607294738292694, 0.004489551298320293, 0.028634199872612953, -0.023522913455963135, -0.014234660193324089, -0.006145223509520292, 0.012180526740849018, 0.030447883531451225, -0.004688781686127186, 0.012627077288925648, -0.05528983846306801, 0.013959859497845173, -0.007653190754354, 0.017765844240784645, 0.0019905853550881147, -0.038169775158166885, -0.026009855791926384, -0.017985684797167778, -0.009205812588334084, 0.019016187638044357, -0.013877419754862785, 0.004022390581667423, -0.016364362090826035, -0.02691669762134552, -0.033827926963567734, -0.008855442516505718, -0.010057694278657436, 0.003562099998816848, -0.005389522761106491, 0.01467434037476778, -0.04646874591708183, 0.018425365909934044, -0.009446263313293457, 0.016089562326669693, 0.0006509334198199213, -0.022877132520079613, -0.01960700750350952, 0.014935401268303394, -0.01011265441775322, -0.011362995952367783, 0.030392922461032867, 0.00599064864218235, 0.0009764001006260514, 0.022547371685504913, -0.01956578716635704, -0.01437206007540226, 0.01843910664319992, 0.0015981360338628292, 0.015512481331825256, -0.024498455226421356, -0.032838646322488785, 0.019510827958583832, -0.00459947157651186, 0.004008650779724121, -0.012208007276058197, -0.0013156068744137883, -0.024649593979120255, 0.002469768514856696, 0.02588619664311409, -0.030063161626458168, 0.003630800172686577, 0.017298683524131775, -0.01041493471711874, -0.005915078334510326, -0.030612763017416, -0.17422343790531158, 0.01376062911003828, 0.031189844012260437, -0.013417128473520279, 0.02102223038673401, -0.010167614556849003, -0.008209661580622196, 0.000940332596655935, -0.023990074172616005, 0.00336458720266819, 0.006907794624567032, 0.010730954818427563, 0.0016230398323386908, -0.007268470246344805, -0.006924969609826803, 0.02732889913022518, -0.006076523568481207, 0.010449284687638283, 0.03182188421487808, 0.0004072627634741366, 0.034762248396873474, -0.012620207853615284, -0.007131069898605347, 0.04765038564801216, 0.01312858797609806, 0.002212143037468195, -0.003998345695436001, -0.00780433090403676, 0.0036067550536245108, -0.017848284915089607, -0.006911229807883501, 0.01619948260486126, -0.005279602482914925, 0.017848284915089607, -0.0008372824522666633, 0.0032082945108413696, 0.018246745690703392, 0.007495180703699589, -0.02602359652519226, 0.00389186036773026, -0.0056402781046926975, 0.04803510755300522, -0.015196461230516434, 0.008539422415196896, -0.00029669853392988443, 0.024800734594464302, 0.018480325117707253, -0.015883462503552437, -0.00689405482262373, 0.0018669251585379243, 0.02522667497396469, -0.024786995723843575, -0.008931012824177742, -0.008003560826182365, 0.051140353083610535, -0.0043555861338973045, 0.004510161466896534, -0.01116376556456089, 0.005884163081645966, -0.0029300590977072716, -0.00968671403825283, -0.012558377347886562, 0.015526222065091133, 0.02312445268034935, -0.014811741188168526, -0.009164593182504177, -0.008092870935797691, 0.05820272117853165, -0.00549944257363677, 0.0032031419686973095, 0.001971692778170109, -0.01134925615042448, 0.016130782663822174, 0.01946960762143135, 0.014481980353593826, 0.0022035555448383093, 0.008209661580622196, 0.002407938474789262, 0.0028252913616597652, 0.001501097111031413, -0.01514150109142065, 0.04413294047117233, 0.003270124550908804, -0.018219266086816788, 0.03566908836364746, 0.007024584803730249, 0.009137112647294998, 0.01301179826259613, -0.03234400600194931, -0.04839234799146652, 0.04396806284785271, 0.00733717018738389, -0.014193439856171608, -0.017381124198436737, -0.003352564759552479, 0.021929070353507996, -0.01011265441775322, -0.009879074059426785, -0.02967844158411026, -0.012290447019040585, 3.4323213185416535e-05, 0.009906553663313389, -0.013650708831846714, -0.006158963777124882, 0.015278901904821396, 0.005324257537722588, -0.0015989947132766247, 0.029238760471343994, 0.018796347081661224, 0.005571577697992325, 0.0008845137199386954, -0.008250881917774677, 6.939782906556502e-05, 0.02541903592646122, 0.009453133679926395, 0.012743867933750153, -0.011417956091463566, -0.01839788630604744, -0.00552348792552948, 0.015086540952324867, -0.021310769021511078, -0.03797741234302521, 0.013252248987555504, 0.025803755968809128, -0.002067872788757086, -0.0138087198138237, -0.052404433488845825, -0.027864759787917137, 0.014523200690746307, 0.040368176996707916, -0.006351323798298836, 0.020005468279123306, 0.006962754763662815, 0.03388288617134094, -0.0009300275705754757, 0.020486367866396904, 0.0017252311808988452, -0.00783868134021759, -0.026284657418727875, 0.00976228341460228, -0.007900510914623737, 0.002076460514217615, -0.02040392905473709, 0.008958492428064346, 0.012414107099175453, 0.024416014552116394, -0.033772967755794525, -0.017985684797167778, 0.01099888514727354, 0.0023856109473854303, -0.0024371359031647444, -0.004520466551184654, -0.0055097476579248905, 0.004857096821069717, 0.00936382357031107, -0.004139180760830641, 0.03388288617134094, -0.00877300277352333, -0.019029926508665085, -0.022918352857232094, 0.017985684797167778, 0.015320121310651302, -0.005932253319770098, -0.02813955955207348, 0.041220057755708694, -0.008278361521661282, -0.0027978115249425173, 0.015031580813229084, 0.00048476504161953926, 0.007611970882862806, 0.01161031611263752, -0.011878246441483498, -0.013032408431172371, 0.031244803220033646, -0.01560866180807352, -0.014990361407399178, -0.026325877755880356, 0.0011953816283494234, -0.0018291401211172342, -0.027026617899537086, 0.0007724466850049794, 0.010621034540235996, 0.01876886561512947, 0.01207747682929039, -0.033031005412340164, 0.02860672026872635, 0.01437206007540226, 0.013190418481826782, -0.03591641038656235, 0.012736997567117214, 0.012434717267751694, 0.03256384655833244, -0.027796059846878052, 0.011679016053676605, 0.023852674290537834, 0.012331667356193066, -0.003926210571080446, 0.035037048161029816, -0.01020883396267891, 0.04380318149924278, -0.03814229369163513, -0.010380584746599197, 0.013265988789498806, -0.009727933444082737, 0.038362134248018265, 0.011266815476119518, -0.023289332166314125, 0.01013326458632946, -0.003884990466758609, -0.02205273136496544, 0.019208546727895737, 0.01657046377658844, -0.012867528013885021, 0.00099185761064291, 0.0239625945687294, -0.0319318063557148, -0.007673800922930241, 0.01345834881067276, 0.017765844240784645, -0.005939123220741749, -0.009006582200527191, -0.001856620074249804, 0.0012168504763394594, -0.004637256730347872, -0.007096719928085804, 0.011871377006173134, -0.017436085268855095, -0.031437162309885025, -0.07282210141420364, 0.031382203102111816, -0.013849939219653606, 0.0022379057481884956, 0.020142868161201477, -0.010401194915175438, 0.037427812814712524, -0.012558377347886562, 0.012572118081152439, -0.01343773864209652, 0.00488114170730114, 0.02359161339700222, 0.0028682290576398373, -0.001736394944600761, -0.014454500749707222, -0.011953816749155521, 0.02551521547138691, 0.02547399513423443, 0.011362995952367783, 0.021242069080471992, -0.006670779548585415, -0.024883175268769264, 0.01547126192599535, -0.01500410120934248, -0.03748277202248573, 0.006128048524260521, 0.008656212128698826, 0.0177933257073164, -0.012633947655558586, -0.044545143842697144, 0.003548359964042902, 0.008395152166485786, -0.023770233616232872, 0.00705550005659461, -0.014605640433728695, 0.012317927554249763, 0.00778372073546052, -0.002394198440015316, 0.001229731715284288, 0.010614165104925632, -0.016968924552202225, -0.02602359652519226, 0.02948608063161373, -0.012317927554249763, 0.012736997567117214, 0.011898856610059738, -0.02405877411365509, -0.00917146261781454, 0.006990234833210707, 0.003388632321730256, 0.01909862644970417, 0.0017235137056559324, -0.009597403928637505, 0.0014950858894735575, -0.008271491155028343, -0.04633134603500366, 0.01839788630604744, 0.006632994394749403, -0.005533792544156313, -0.0035964499693363905, 0.02388015389442444, -0.019620748236775398, 0.009322603233158588, -0.019868068397045135, -0.00903406273573637, -0.017752105370163918, -0.0052383821457624435, -0.016405582427978516, 0.0014521483099088073, -0.004510161466896534, -0.021846631541848183, -0.01084087509661913, 0.007673800922930241, 0.003572405083104968, 0.004359021317213774, 0.015457522124052048, -0.010875225067138672, -0.007797461003065109, -0.04630386456847191, 0.029431121423840523, 0.04058801755309105, -0.00476091681048274, -0.04198949784040451, 0.014275879599153996, 0.022616071626544, 0.02822200022637844, -0.01984058879315853, 0.0024611810222268105, -0.0186314657330513, 0.0019562351517379284, -0.0046269516460597515, 0.0011790654389187694, -0.00275659142062068, 0.01754600554704666, 0.03467980772256851, 0.027164017781615257, -0.009700453840196133, -0.011843896470963955, 0.009301993064582348, -0.0045822965912520885, 0.011438566260039806, -0.009659233503043652, 0.012153047136962414, -0.021242069080471992, -0.011404216289520264, 0.016652902588248253, -0.013698799535632133, -0.03009064309298992, 0.015526222065091133, 0.029760882258415222, -0.017724625766277313, 0.01483922079205513, -0.0034367223270237446, 0.01750478520989418, -0.035366810858249664, 0.0020438279025256634, -0.020610028877854347, -0.03319588676095009, -0.03926897421479225, 0.00781807117164135, 0.025309115648269653, 0.005279602482914925, 0.016872743144631386, -0.02059628814458847, 0.019016187638044357, -0.020239047706127167, 0.009961513802409172, -0.03369052708148956, -0.011706496588885784, -0.01890626735985279, -0.021090930327773094, 5.855609924765304e-05, -0.017985684797167778, -0.014468240551650524, -0.008979102596640587, -0.018988706171512604, 0.010937055572867393, -0.006643299479037523, -0.017449824139475822, 0.06270945072174072, 0.011500395834445953, -0.02168175019323826, -0.01282630767673254, 0.007708150893449783, 0.0029558215755969286, 0.004970451816916466, 0.0065230741165578365, -0.0030245217494666576, -0.03511948883533478, -0.016268182545900345, 0.0013456630986183882, -0.021970290690660477, -0.02686173841357231, 0.0046716067008674145, -0.012943098321557045, -0.0023426732514053583, 0.044023022055625916, -0.005688367877155542, 0.008539422415196896, 0.04045061767101288, 0.009240162558853626, -0.007096719928085804, 0.007776850834488869, -0.01514150109142065, 0.014660600572824478, 0.027864759787917137, 0.007124199997633696, -0.0022842781618237495, -0.010332494974136353, 0.016735343262553215, 0.0067497845739126205, 0.0058772931806743145, -0.02139320969581604, -0.015443781390786171, 0.029925761744379997, 0.009473742917180061, -0.006921534892171621, 0.014193439856171608, 0.012888138182461262, -0.016968924552202225, -0.007151680067181587, -0.040093377232551575, -0.03333328664302826, -0.006791004445403814, 0.012482807971537113, -0.021942811086773872, 0.0032907347194850445, -0.03784001246094704], "cf10fd93-8d52-401a-b4bc-f3008db7d7d7": [-0.003224371699616313, 0.014975028112530708, -0.00752237206324935, -0.03594564273953438, -0.012751082889735699, 0.03349163755774498, -0.006636977195739746, -0.018446892499923706, -0.0012104465859010816, -0.013985058292746544, 0.013538875617086887, 0.0045803505927324295, 0.019060393795371056, 0.011147611774504185, -0.032933905720710754, -0.00920950248837471, -0.009425622411072254, -0.006141992285847664, 0.017693957313895226, -0.03904104232788086, 0.007264422252774239, 0.01368527952581644, -0.027077751234173775, -0.014487015083432198, 0.004489719867706299, -0.001007398241199553, 0.02494443766772747, -0.03287813439965248, -0.007647861260920763, -0.0023686059284955263, 0.03750728443264961, -0.030284693464636803, -0.010297074913978577, -0.013483102433383465, -0.003851816989481449, -0.008937609381973743, 0.004238741472363472, -0.012130609713494778, 0.005842213053256273, 0.0030971397645771503, 0.032320406287908554, -0.02225339412689209, 0.015226006507873535, 0.020301342010498047, -0.017289603129029274, 0.009767231531441212, -0.0245819129049778, 0.02378714829683304, -0.021305253729224205, 0.022364938631653786, -0.007459627464413643, 0.004336344078183174, -0.01145436242222786, -0.017331434413790703, 0.009369850158691406, 0.00032309076050296426, -0.02374531887471676, -0.0018317917129024863, -0.01420815009623766, -0.03379838541150093, 0.02017585188150406, 0.008923666551709175, -0.01978544145822525, 0.0012531477259472013, -0.023034214973449707, -0.029197121039032936, 0.011280071921646595, 0.009153730235993862, -0.02331307902932167, -0.011600766330957413, 0.02427516132593155, 0.022364938631653786, -0.005744610447436571, 0.012730168178677559, 0.029001915827393532, 0.00011721027112798765, -0.010269188322126865, -0.028583619743585587, 0.007724548690021038, -0.009711459279060364, 0.0019781957380473614, -0.0013803796609863639, 0.023159703239798546, -0.02168172039091587, -0.001425695139914751, 0.005002133548259735, 0.01190054602921009, 0.033156998455524445, 0.003754214383661747, -0.011043037287890911, 0.018084367737174034, 0.03689378499984741, 0.007327166851609945, 0.007877924479544163, -0.002650956390425563, -0.029977941885590553, 0.010764173232018948, 0.01709439791738987, 0.0023999782279133797, -0.026994090527296066, -0.0026126124430447817, 0.012067864648997784, -0.05156205967068672, 0.007389911450445652, -0.03706110268831253, 0.0026265557389706373, 0.029197121039032936, 0.0048208716325461864, 0.0037786150351166725, -0.01899067871272564, -0.003642668481916189, 0.01418723538517952, -0.006392970681190491, -0.02757970616221428, -0.027607593685388565, -0.0008810377912595868, 0.023675603792071342, -0.03151169791817665, -0.009272247552871704, -0.018976734951138496, -0.004169025458395481, 0.023870809003710747, 0.01224912703037262, -0.02256014384329319, 0.006494058761745691, 0.010771144181489944, 0.00016492225404363126, -0.026338759809732437, -0.0018736213678494096, -0.029894283041357994, 0.04506451636552811, 0.002786902943626046, 0.007201677653938532, 0.004845272284001112, 0.006082733627408743, 0.013559790328145027, -0.03745151311159134, 0.011663511395454407, -0.04821568727493286, -0.0055319759994745255, 0.040825773030519485, 0.02097061648964882, -0.027914345264434814, -0.008609944023191929, -0.012325814925134182, -0.00545528857037425, 0.02080329693853855, 0.011928432621061802, 0.016006827354431152, -0.00958597008138895, 0.03204153850674629, -0.007515400648117065, 0.02180721051990986, -0.007829123176634312, -0.009328019805252552, 0.011761114001274109, 0.008017356507480145, 0.008463540114462376, -0.017749730497598648, -0.02696620486676693, 0.024358822032809258, 0.032013654708862305, 0.02441459335386753, -0.010248273611068726, 0.0040365648455917835, 0.019673896953463554, -0.0035241511650383472, 0.01233975775539875, 0.019590236246585846, 0.004496691282838583, 0.0026195840910077095, 0.010757201351225376, -0.009655686095356941, -0.010213415138423443, -0.007466599345207214, 0.012618622742593288, -0.0017864762339740992, 0.006584689952433109, -0.009885749779641628, -0.03491384536027908, -0.018446892499923706, -0.03393781930208206, 0.004043536260724068, 0.00591541500762105, -0.010945434682071209, -0.003491035895422101, 0.018181970342993736, -0.0023895208723843098, 0.013127550482749939, -0.002481894800439477, 0.008317136205732822, 0.03519270941615105, 0.007030873093754053, -0.011510135605931282, -0.598331868648529, -0.02044077403843403, -0.005082306917756796, -0.025181472301483154, 0.006501030642539263, 0.016843421384692192, 0.01692708022892475, 0.00430845795199275, -0.012033007107675076, -0.0014936684165149927, -0.014682220295071602, 0.03259927034378052, 0.02869516611099243, -0.00432937266305089, -0.002584726084023714, -0.02058020606637001, -0.00022940969211049378, -0.012325814925134182, -0.017289603129029274, 0.004043536260724068, -0.003433520207181573, -0.006316282786428928, -0.017861276865005493, -0.018934905529022217, 0.0013681793352589011, 0.006556803360581398, 0.013699222356081009, -0.005922386422753334, 0.008010384626686573, 0.015295722521841526, -0.02506992593407631, 0.015379381366074085, -0.0002738537441473454, -0.0245819129049778, 0.05727878585457802, -0.006427828688174486, -0.03552734851837158, 0.03722842037677765, 0.030926082283258438, 0.040742114186286926, -0.00911887176334858, -0.01991093158721924, -0.0010143698891624808, 0.006403428036719561, -0.0013124063843861222, -0.019408974796533585, 0.035666778683662415, -0.02978273667395115, 0.025655541568994522, 0.011266129091382027, 0.0032435436733067036, -0.02427516132593155, 0.0009385535959154367, -0.015504870563745499, 0.02045471780002117, 0.0046117231249809265, 0.03159535676240921, -0.017080456018447876, -0.0069576711393892765, -0.007090131752192974, -0.016062600538134575, -0.011468306183815002, -0.03639182820916176, -0.015741905197501183, -0.004325886722654104, -0.01860026828944683, -0.023327022790908813, -0.005152022931724787, 0.017373263835906982, -0.0090770423412323, -0.0025655541103333235, 0.001999110449105501, 0.026798885315656662, -0.009774203412234783, 0.02869516611099243, 0.035276368260383606, 0.028834598138928413, -0.0030518241692334414, 0.004904530942440033, 0.02392658032476902, -0.006487087346613407, -0.010938462801277637, -0.038622744381427765, 0.004883615765720606, 0.0024400651454925537, -0.033073339611291885, -0.03661492094397545, -0.00021023774752393365, -0.0034718639217317104, -0.018572380766272545, 0.00911887176334858, 0.018209857866168022, 0.005169452168047428, -0.02327124960720539, 0.004315429367125034, 0.006609090603888035, -0.015937110409140587, -0.004772070329636335, -0.003262715646997094, -0.014082660898566246, -0.04124407097697258, 0.003213914344087243, 0.004880130290985107, -0.01745692268013954, 0.024609798565506935, 0.009467452764511108, -0.02520935796201229, -0.010959378443658352, 0.028304755687713623, -0.023368852213025093, 0.017331434413790703, -0.0016357150161638856, -0.00966962892562151, -0.021667778491973877, -0.009774203412234783, -0.037088990211486816, 0.021054275333881378, 0.0019224226707592607, 0.01709439791738987, 0.0012296185595914721, 0.03257138282060623, -0.0008348508272320032, 0.024818947538733482, 0.0053542000241577625, 0.005817812401801348, 0.035666778683662415, 0.018614210188388824, -0.020789355039596558, 0.0032383149955421686, 0.0019747097976505756, 0.00706224562600255, 0.02062203548848629, 0.04224798455834389, -0.026324816048145294, -0.004883615765720606, -0.013734080828726292, 0.033380091190338135, 0.006567260716110468, 0.030479898676276207, -0.015379381366074085, -0.04180179908871651, -0.012583764269948006, 0.007362024858593941, -0.005810840521007776, -0.003370775608345866, -0.012883543968200684, -0.013504017144441605, 0.014431241899728775, -0.014459128491580486, 0.014173292554914951, 0.008135873824357986, 0.008045243099331856, -0.0030797107610851526, 0.02313181757926941, 0.001690616481937468, -0.013517960906028748, 0.0022431169636547565, -0.0227414071559906, 0.0025672970805317163, -0.004053993616253138, -0.005301912780851126, 0.004242227412760258, -0.02433093450963497, -0.009321048855781555, -0.01696890965104103, -0.002257060259580612, 0.003323717275634408, -0.009551111608743668, 0.00454897852614522, -0.02000853419303894, -0.0009167672833427787, 0.0004381223989184946, -0.010833889245986938, 0.0122909564524889, 0.011077895760536194, -0.001314149354584515, -0.0038762176409363747, 0.01829351671040058, 0.026408476755023003, -0.025404563173651695, -0.005392543971538544, 0.001955537823960185, -0.009704487398266792, -0.020468659698963165, 0.004189940169453621, 0.017470866441726685, 0.00227448926307261, 0.011405561119318008, -0.029364440590143204, 0.014682220295071602, -0.005681865848600864, 0.007543286774307489, 0.021444685757160187, 0.017526639625430107, 0.013371556997299194, 0.0210124459117651, -0.003970334306359291, 0.015658246353268623, -0.0023145759478211403, -0.007438712753355503, 0.019757555797696114, 0.007201677653938532, -0.015755848959088326, -0.030479898676276207, 0.04595688357949257, -0.05356988683342934, 0.0071668196469545364, -0.007006472442299128, 0.012904458679258823, 0.008059185929596424, -0.008226505480706692, -0.01143344771116972, -0.02802588976919651, 0.009927579201757908, 0.0012426902540028095, 0.02688254602253437, -0.022281279787421227, 0.007954612374305725, -0.02776096947491169, 0.006738065276294947, 0.00038343880441971123, -0.031567469239234924, 0.004657038487493992, -0.035889871418476105, 0.02490260638296604, -0.0012557620648294687, -0.00710407504811883, 0.025808917358517647, 0.005741124507039785, 7.652436033822596e-05, -0.02027345448732376, -0.01797282136976719, -0.01414540596306324, -0.003325460013002157, 0.022323109209537506, -0.04191334545612335, 0.00709361769258976, -0.027356615290045738, 0.025571882724761963, 0.017735786736011505, 0.018307460471987724, 0.013322755694389343, 0.0028705622535198927, -0.016759760677814484, 0.02045471780002117, 0.004921959713101387, 0.026296930387616158, 0.033296432346105576, -0.010199472308158875, -0.013148465193808079, -0.010589882731437683, -0.0052740261889994144, -0.013071777299046516, 0.017387205734848976, 0.011328873224556446, -0.006710179150104523, 0.028193209320306778, 0.010868746787309647, -0.004451375920325518, 0.023243362084031105, 0.0052949413657188416, 0.020900899544358253, -0.004796470981091261, 0.02282506600022316, -0.000610887713264674, -0.027733081951737404, -0.018488721922039986, 0.0045036631636321545, -0.016243861988186836, -0.0068496111780405045, -0.010980293154716492, 0.0016792876413092017, 0.005852670408785343, -0.00546574592590332, -0.002058369107544422, -0.0029646791517734528, 0.014640390872955322, 0.038232333958148956, 0.02115187793970108, -0.009446538053452969, -0.015476983971893787, -0.007173791527748108, -0.0040958235040307045, 0.02239282615482807, 0.01414540596306324, 0.003750728676095605, -0.017526639625430107, 0.010331932455301285, 0.004618694540113211, 0.0012139324098825455, 0.003389947582036257, -0.0064138853922486305, -0.008428681641817093, -0.011579851619899273, -0.005782954394817352, 0.019241655245423317, 0.018349289894104004, -0.011133668012917042, -0.04715600237250328, -0.007355053443461657, 0.012416445650160313, -0.014668276533484459, 0.0014736250741407275, 0.008937609381973743, 0.05429493263363838, -0.00036274181911721826, -0.007278365548700094, 0.014319696463644505, 0.006093190982937813, -0.001579070696607232, 0.021388912573456764, -0.0026073837652802467, -0.011984205804765224, 0.018488721922039986, -0.002574268728494644, 0.013915342278778553, -0.0029786222148686647, -0.0037298137322068214, 0.024818947538733482, 0.005319342017173767, -0.004695382434874773, -0.025488222017884254, -0.017122285440564156, 0.021402856335043907, -0.025725258514285088, 0.029671192169189453, 0.014110547490417957, 0.01006701122969389, -0.02908557653427124, -0.015058686956763268, -0.01427786611020565, -0.005211282055824995, -0.007857009768486023, -0.010164613835513592, 0.01423603668808937, -0.0074735707603394985, 0.021207651123404503, 0.015058686956763268, -0.008114959113299847, -0.006494058761745691, -0.015700075775384903, -0.030814535915851593, 0.0018875646637752652, -0.02692437544465065, 0.002105427673086524, -0.010436506941914558, 0.03204153850674629, 0.025139642879366875, -0.02286689542233944, -0.01557458657771349, -0.01772184483706951, 0.018014652654528618, 0.010331932455301285, -0.010018209926784039, 0.03510905057191849, 0.007264422252774239, 0.005141565576195717, 0.03982186317443848, 0.026408476755023003, 0.017554525285959244, 0.017303546890616417, 0.030424125492572784, 0.019632065668702126, 0.022448599338531494, 0.007773349992930889, -0.012646508403122425, 0.007996441796422005, -0.014096604660153389, 0.008972467854619026, -0.01749875210225582, -0.0014448671136051416, 0.0032557439990341663, -0.0061559355817735195, -0.010457421652972698, 0.013246067799627781, -0.014089632779359818, -0.025767087936401367, -0.007152876351028681, 0.02454008348286152, 0.0023372338619083166, 0.0019102223450317979, 0.005796897690743208, 0.006954185664653778, -0.008909723721444607, -0.002382549224421382, -0.020775411278009415, 0.015937110409140587, -0.013022975996136665, -0.008491426706314087, -0.04882918670773506, -0.025348789989948273, -0.026980148628354073, -0.011747170239686966, -0.005657465197145939, 0.018544495105743408, -0.052761178463697433, -0.028444187715649605, -0.01758241094648838, 0.007208649534732103, 0.019729668274521828, 0.017554525285959244, -0.04235953092575073, -0.008010384626686573, 0.015449097380042076, -0.024972323328256607, -0.004918474238365889, -0.0030431097839027643, -0.025014152750372887, -0.013029947876930237, 0.01273714005947113, -0.002520238747820258, -0.003649640129879117, -0.00013071777357254177, 0.0005503218271769583, -0.0036182678304612637, 0.015476983971893787, 0.03608507663011551, -0.0020287397783249617, -0.003203456988558173, -0.021890869364142418, -0.0011572879739105701, 0.017861276865005493, -0.018586324527859688, -0.008289249613881111, 0.013434301130473614, -0.03273870050907135, -0.0016034713480621576, -0.03530425578355789, -0.0008257005829364061, -0.0015093545662239194, 0.02709169313311577, 0.007898839190602303, -0.007138933055102825, 0.01284171361476183, 0.02969907782971859, -0.004664009902626276, -0.01982727088034153, 0.0037855866830796003, 0.010094897821545601, 0.03622451052069664, -0.003973820246756077, -0.006058332975953817, -0.005647007841616869, -0.012172439135611057, 0.011489220894873142, -0.034133024513721466, 0.02102638967335224, 0.009042183868587017, 0.011670482344925404, 0.009969408623874187, -0.013120578601956367, -0.02141680009663105, -0.02021768130362034, 0.0007799493614584208, 0.004134167451411486, 0.023494340479373932, -0.010778116062283516, -0.021974528208374977, -0.006657891906797886, -0.004594293888658285, -0.0029751365073025227, 0.03067510388791561, -0.02653396502137184, -0.017903106287121773, 0.000423525576479733, -0.01321818120777607, 0.009843919426202774, -0.01974361203610897, -0.014194207265973091, -0.02384292148053646, 0.010819945484399796, -0.008031300269067287, 0.006926299072802067, 0.01643906719982624, 0.005514547228813171, 0.01148224901407957, -0.027733081951737404, -0.02127736806869507, -0.011147611774504185, -0.04040747880935669, -0.009474423713982105, -0.006173364818096161, 0.007243507541716099, -0.00570626650005579, 0.018140140920877457, 0.020956672728061676, -0.002596926409751177, 0.009460480883717537, 8.458529191557318e-05, 0.011112753301858902, -0.004542006645351648, 0.0005180781008675694, -0.012325814925134182, 0.02097061648964882, 0.021625949069857597, 0.03655914589762688, 0.009676600806415081, -0.024623742327094078, -0.019046450033783913, 0.004813899751752615, -0.005549405235797167, -0.017735786736011505, -0.00613502087071538, -0.06040206924080849, -0.0018335345666855574, -0.002016539452597499, -0.012123637832701206, 0.006511487998068333, -0.02296449802815914, -0.008623886853456497, -0.00918858777731657, -0.011022122576832771, 0.027245068922638893, -0.014333639293909073, 0.03706110268831253, -0.012151524424552917, 0.00018975863349623978, -0.023815035820007324, 0.017777616158127785, 0.009774203412234783, 0.014737993478775024, -0.02657579444348812, 0.007515400648117065, 0.015407267957925797, 0.0039006182923913, 0.015058686956763268, 0.009927579201757908, 0.006117591634392738, 0.007975527085363865, 0.0031529127154499292, -0.019673896953463554, -0.003904104232788086, 0.012576792389154434, -0.005636550486087799, -0.031483810395002365, -0.013894427567720413, -0.016634272411465645, -0.023452511057257652, -0.002642242005094886, -0.00817770417779684, -0.018363231793045998, 0.010959378443658352, -0.008993382565677166, 0.012555877678096294, -0.005556376650929451, -0.006121077574789524, 0.037869811058044434, -0.0142290648072958, 0.005054420325905085, 0.048494551330804825, 0.003271430032327771, -0.018614210188388824, -0.051534175872802734, -0.016285691410303116, -0.010401648469269276, 0.013587676919996738, 0.03220885992050171, -0.0017829904099926353, 0.00752237206324935, 0.006121077574789524, 0.018879132345318794, -0.0013359356671571732, -0.012095751240849495, 0.023103930056095123, 0.037395741790533066, 0.02423333190381527, -0.00038234947714954615, 0.030702989548444748, -0.012346729636192322, -0.011245214380323887, 0.01013672724366188, -0.007633917964994907, -0.036419715732336044, -0.010032153688371181, -0.001769918599165976, 0.005500603932887316, -0.016592442989349365, 0.012911430560052395, 0.0016592442989349365, -0.002684071660041809, 0.01784733310341835, -0.033240657299757004, -0.02097061648964882, 0.025613712146878242, -0.02604595199227333, 0.04068634286522865, 0.019269542768597603, 0.0065045165829360485, 0.014249980449676514, 0.020329227671027184, -0.01670398749411106, -0.00727139413356781, -0.003443977562710643, 0.046598270535469055, -0.021430743858218193, 0.010638684034347534, 0.0013036918826401234, 0.022086074575781822, 0.02851390279829502, 0.01823774352669716, 0.00817770417779684, -0.0035189224872738123, 0.003628725418820977, -0.016006827354431152, 0.009293162263929844, -0.02639453299343586, -0.0008087072637863457, -0.00956505537033081, -0.005239168182015419, -0.01770790107548237, -0.014710106886923313, -0.0047894991002976894, 0.026185384020209312, -0.02678494341671467, -0.015658246353268623, 0.0005267926026135683, -0.00020664301700890064, 0.013092692010104656, 0.004284057300537825, -0.023828977718949318, 0.001899764989502728, 0.05462957173585892, -0.0236616600304842, 0.012304899282753468, 0.0016967166448011994, -0.003328945953398943, -0.019883044064044952, 0.010785087943077087, -0.015853451564908028, -0.005831755697727203, 0.023815035820007324, 0.0073829395696520805, 0.002070569433271885, -0.037033215165138245, -0.013294869102537632, 0.026952261105179787, -0.007933697663247585, 0.04040747880935669, 0.005918900948017836, -0.018976734951138496, 0.0074247694574296474, 0.016634272411465645, 0.0014317953027784824, 0.005769011098891497, 0.006257024127990007, 0.006417371332645416, 0.0145846176892519, -0.015253892168402672, 0.019896987825632095, 0.007599059958010912, -0.005817812401801348, -0.0042038834653794765, -0.019408974796533585, -0.031623244285583496, 0.020914843305945396, 0.019590236246585846, -0.039375677704811096, -0.00966962892562151, -0.0018561923643574119, -0.01701073907315731, -0.0008897522930055857, 0.0014518387615680695, 0.01965995319187641, -0.004643095191568136, 0.01648089662194252, -0.007128475699573755, -0.005653979256749153, 0.022350996732711792, -0.031400151550769806, -0.0034021479077637196, -0.008163760416209698, -0.04737909138202667, -0.02930866740643978, -0.00824044831097126, -0.007626946084201336, 0.01603471301496029, -0.004451375920325518, -0.024261219426989555, -0.03544368967413902, 0.00911887176334858, -0.03240406513214111, 0.0029646791517734528, -0.014389412477612495, 0.02180721051990986, -0.0006426956970244646, -0.01748480834066868, 0.014026888646185398, 0.022086074575781822, -0.01323909591883421, 0.01423603668808937, 0.0018544495105743408, -0.012012091465294361, -0.002786902943626046, 0.0037855866830796003, 0.012214268557727337, -0.022323109209537506, -0.009453509002923965, -0.014040831476449966, 0.010945434682071209, -0.0048975590616464615, 0.020998502150177956, 0.0008588157361373305, -0.003475349862128496, -0.0033951762598007917, -0.010060039348900318, -0.00296293618157506, -0.009746316820383072, 0.020189795643091202, 0.012465246953070164, -0.015407267957925797, 0.014765879139304161, 0.020064307376742363, -0.005145051516592503, -0.005866613704711199, 0.009962436743080616, 0.008121930994093418, -0.005629578605294228, 0.0029751365073025227, -0.008477482944726944, -0.005420430097728968, -0.0042038834653794765, -0.011294015683233738, 0.020942730829119682, -0.020649923011660576, 0.005528490524739027, 0.041355617344379425, 0.011551965028047562, -0.006204736884683371, -0.010541081428527832, 0.01361556351184845, -0.028834598138928413, -0.0036182678304612637, 0.007009958382695913, -0.014173292554914951, 0.008979439735412598, 0.013385499827563763, 0.021793266758322716, -0.03206942602992058, -0.004067936912178993, 0.025585824623703957, -0.010436506941914558, -0.016773704439401627, 0.009753288701176643, 0.0434471033513546, -0.04065845534205437, -0.021040333434939384, 0.0037402710877358913, -0.01194237545132637, 0.0062639955431222916, -0.017080456018447876, 0.0082613630220294, -0.026185384020209312, 0.029977941885590553, 0.0136643648147583, -0.021096104755997658, -0.0024104358162730932, 0.004085366148501635, 0.005148537456989288, -0.004482747986912727, 0.009014297276735306, 0.2897960841655731, -0.029057689011096954, 0.006452229339629412, 0.028276868164539337, -0.014598560519516468, -0.008052214980125427, 0.0037821009755134583, 0.015198119916021824, -0.01134978886693716, 0.028486017137765884, -0.004643095191568136, -0.003377747256308794, 0.003278401680290699, -0.000874066143296659, 0.01245130319148302, -0.012493133544921875, -0.03318488597869873, 0.00923041719943285, -0.037172649055719376, 0.009488367475569248, 0.02961541898548603, -0.006685778498649597, 0.011614710092544556, -0.005158994812518358, 0.026032008230686188, -0.006602119188755751, 0.009509282186627388, -0.0007777707651257515, 0.010645654983818531, 0.007717577274888754, 0.007675747387111187, -0.004740697797387838, 0.005608663894236088, 0.0009699258953332901, -0.012214268557727337, 0.0009524968336336315, -0.0032958306837826967, 0.027245068922638893, 0.018265629187226295, 0.009843919426202774, -0.00951625406742096, 0.008156788535416126, 0.0030744820833206177, -0.03987763449549675, -0.00923041719943285, 0.0020357114262878895, 0.0068809837102890015, 0.004709325730800629, -0.041495051234960556, 0.009878777898848057, 0.002917620586231351, -0.001955537823960185, 0.007926725782454014, 0.021347083151340485, 0.0004888844559900463, 0.020510489121079445, 0.026282986626029015, -0.007857009768486023, -0.015351494774222374, -0.007445684168487787, -0.003163370070978999, 0.03530425578355789, -0.02930866740643978, 0.02714746631681919, -0.0027067293412983418, 0.0012043464230373502, -0.021918756887316704, -0.009070070460438728, 0.007515400648117065, -0.022267336025834084, 0.005378600675612688, 0.00031546555692330003, -0.026854658499360085, 0.008184675127267838, -0.017080456018447876, -0.02207213081419468, 0.03524848446249962, 0.026868602260947227, 0.022323109209537506, 0.0356946662068367, -0.013929286040365696, -0.009181615896522999, -0.015281778760254383, 0.008763319812715054, -0.004364230670034885, -0.03669857978820801, 0.032013654708862305, -0.009341963566839695, -0.006650920026004314, -0.013608591631054878, -0.001694102305918932, 0.0018457348924130201, -0.0006013017264194787, -0.0017019454389810562, 0.01273714005947113, 0.021667778491973877, -0.03951511159539223, 0.006026960909366608, -0.017470866441726685, 0.01776367425918579, -0.027649423107504845, 0.046737704426050186, 0.030340466648340225, 0.009634771384298801, -0.010380733758211136, -0.02978273667395115, -0.004866186995059252, -0.004378173965960741, 0.009439566172659397, -0.034216683357954025, 0.003492778865620494, -0.05264963209629059, 0.0018195913871750236, 0.010178557597100735, 0.022239450365304947, -0.005127622280269861, -0.023815035820007324, -0.019325315952301025, 0.005235682707279921, -0.019408974796533585, 0.014473071321845055, -0.01383865438401699, -0.008428681641817093, -0.0007934568566270173, 0.00018779786478262395, -0.011022122576832771, -0.007557230070233345, -0.0009028241038322449, 0.02088695764541626, -0.0511995367705822, 0.030284693464636803, -0.0006557675078511238, 0.0330454520881176, 0.006887955125421286, 0.011977233923971653, 0.02070569433271885, 0.002968164859339595, -0.00547620328143239, -0.0014884397387504578, 0.016020769253373146, 0.0018195913871750236, -0.012946288101375103, 0.022406769916415215, -0.0011180726578459144, -0.0063546267338097095, -0.00030348310247063637, 0.021040333434939384, 0.003931990824639797, 0.010039124637842178, -0.0024052069056779146, -0.043251898139715195, -0.018321402370929718, -0.008533256128430367, -0.0019729668274521828, 0.016243861988186836, 0.008379880338907242, 0.0005577291594818234, -0.05619121342897415, -0.0042352559976279736, 0.009084013290703297, -0.032013654708862305, -0.0005132851074449718, 0.031232833862304688, -0.026408476755023003, -0.0048696729354560375, -0.0175405815243721, -0.18014651536941528, 0.007041330449283123, 0.02863939292728901, -0.0006213451270014048, 0.027956174686551094, -0.00321217137388885, -0.0027537876740098, 0.003590381471440196, 0.0033080310095101595, -0.010290103033185005, 0.018669983372092247, -0.01013672724366188, -0.026018066331744194, -0.01185174472630024, -0.008114959113299847, 0.01939503103494644, -0.00872846134006977, -0.006330226082354784, 0.03759094700217247, 0.013852598145604134, 0.0369216687977314, -0.022727463394403458, -0.008589029312133789, -0.0015076115960255265, 0.009836948476731777, 0.013782882131636143, -0.00708316033706069, 0.03792558237910271, -0.005769011098891497, -0.008979439735412598, 0.0037960440386086702, -0.004102794919162989, 0.026645511388778687, 0.002891477197408676, -0.013566762208938599, -0.02176538109779358, -0.022504372522234917, -0.004827843047678471, -0.0226438045501709, -0.0027067293412983418, -0.006455715280026197, 0.02186298370361328, -0.00205488339997828, 0.004744183737784624, 0.0073829395696520805, 0.01189357414841652, 0.028318697586655617, 0.006954185664653778, 0.010094897821545601, 0.004019135609269142, 0.005559862591326237, -0.05306793004274368, -0.004974246956408024, 0.0008836521301418543, 0.012932345271110535, 0.007362024858593941, 8.943274588091299e-05, 0.015881337225437164, -0.006466172635555267, 0.0034056336153298616, -0.01321818120777607, -0.008017356507480145, -0.00102744169998914, 0.011210355907678604, 0.002014796482399106, -0.009181615896522999, -0.02097061648964882, 0.008456568233668804, -0.006797323934733868, 0.012744111008942127, 0.020831184461712837, -0.027426332235336304, -0.003313259920105338, -0.022406769916415215, 0.004012164194136858, -0.00432937266305089, -0.025014152750372887, 0.0005986873875372112, 0.01603471301496029, 0.00082918640691787, 0.0003420448338147253, 0.046291518956422806, -0.013622534461319447, -0.04001706838607788, 0.025306960567831993, -0.01046439353376627, -0.002842675894498825, -0.005131108220666647, -0.028430243954062462, -0.011607738211750984, 0.029197121039032936, -0.021779322996735573, -0.001032670377753675, -0.022629860788583755, 0.012067864648997784, 0.008561142720282078, -0.013483102433383465, -0.009676600806415081, -0.0175405815243721, -0.02044077403843403, -0.005828269757330418, -0.03658703342080116, -0.015323609113693237, 0.002222202019765973, 0.013448243960738182, 0.013671335764229298, 0.0013420358300209045, 0.03402147814631462, 0.07306251674890518, -0.005793411750346422, 0.014417299069464207, 0.00819861888885498, 0.0032104284036904573, 0.0031842850148677826, 0.01643906719982624, 0.0058979857712984085, -0.012172439135611057, -0.016717931255698204, 0.005193852819502354, -0.014319696463644505, -0.006375541444867849, 0.001661858637817204, -0.0016766733024269342, 0.020956672728061676, -0.011133668012917042, 0.004085366148501635, -0.044841423630714417, 0.01582556590437889, 0.00019084794621448964, 0.027300842106342316, -0.012235183268785477, 0.03954299911856651, -0.0016914879670366645, 0.04838300496339798, -0.0011790742864832282, 0.023117873817682266, 0.0030291664879769087, -0.03151169791817665, -0.0256973709911108, -0.01666215807199478, 0.011684426106512547, 0.015755848959088326, -0.023340964689850807, -0.008477482944726944, -0.01939503103494644, 0.021291309967637062, 0.004144624806940556, -0.010750229470431805, -0.006752008572220802, -0.0324319489300251, -0.00918858777731657, 0.0105550242587924, -0.015588530339300632, 0.020900899544358253, 0.02433093450963497, -0.014919254928827286, 0.03628028184175491, -0.008784234523773193, 0.00430845795199275, -0.014333639293909073, -0.004440918564796448, 0.00821953359991312, -0.036949556320905685, -0.020468659698963165, 0.015016857534646988, -0.015351494774222374, 0.011538022197782993, -0.00833107903599739, -0.023508284240961075, -0.01748480834066868, 0.0012766768923029304, 0.004677953198552132, -0.00856811460107565, 0.014807709492743015, -0.0021019417326897383, -0.019618123769760132, -0.006609090603888035, -0.019060393795371056, -0.013999002054333687, -0.03480229899287224, 0.028499960899353027, 0.006961157079786062, -0.0004984704428352416, 0.027440274134278297, -0.021667778491973877, 0.001640072325244546, -0.009551111608743668, 0.017080456018447876, -0.024052070453763008, 0.052147675305604935, 0.018558437004685402, -0.011043037287890911, -0.006302339490503073, -0.0037890723906457424, 0.011468306183815002, -0.00242960755713284, -0.011133668012917042, 0.03586198389530182, -0.015449097380042076, 0.015016857534646988, -0.01678764820098877, -0.024665571749210358, -0.05094856023788452, -0.028039833530783653, 0.008338050916790962, -0.04339132830500603, -0.0014317953027784824, -0.024623742327094078, 0.0008522798889316618, 0.011252186261117458, -0.003803015686571598, 0.05225922167301178, -0.0021890869829803705, -0.008428681641817093, 0.0057899258099496365, -0.009390764869749546, 0.01418723538517952, 0.011775056831538677, 0.013692250475287437, 0.0048383004032075405, -0.013127550482749939, -0.01643906719982624, 0.004925445653498173, 0.010324961505830288, -0.01827957294881344, 0.026645511388778687, -0.006480115931481123, -0.017331434413790703, -0.08600183576345444, 0.033909931778907776, -0.010603825561702251, -0.00828227773308754, -0.015337551943957806, 0.017777616158127785, 0.009049155749380589, -0.018084367737174034, 0.0005965087912045419, 0.021974528208374977, -0.02543245069682598, 0.015504870563745499, -0.0075920880772173405, -0.03881794959306717, -0.014333639293909073, -0.023117873817682266, 0.007086646277457476, 0.024344878271222115, 0.009104928933084011, 0.013029947876930237, 0.002851390279829502, 0.01678764820098877, 0.0063058254308998585, 0.004022621549665928, -0.03775826469063759, 0.03720053657889366, -0.013713166117668152, 0.026422418653964996, -0.011287043802440166, -0.00731322355568409, -0.008470511995255947, -0.023647716268897057, -0.00874240417033434, 0.014263923279941082, 0.0022378882858902216, -0.0055215186439454556, 0.013580705039203167, 0.002384292194619775, 0.01576979272067547, 0.009711459279060364, -0.011008179746568203, -0.014682220295071602, 0.002173400716856122, 0.010352847166359425, -0.0033655469305813313, 0.011468306183815002, -0.03318488597869873, -0.014612504281103611, 0.029559645801782608, 0.003064024494960904, 0.0583384707570076, 0.022504372522234917, 0.008819092065095901, -0.02229522354900837, -0.014988970942795277, -0.02490260638296604, 0.006779895164072514, 0.006950699724256992, -0.0033655469305813313, -0.023285193368792534, 0.0041864546947181225, -0.010757201351225376, 0.0021873440127819777, -0.00022657746740151197, -0.020343171432614326, -0.005399515386670828, -0.006093190982937813, -0.008986410684883595, 0.017568469047546387, -0.013029947876930237, -0.025767087936401367, 0.009997295215725899, -0.0029333068523555994, 0.008909723721444607, 0.0015485698822885752, 0.025014152750372887, -0.015239949338138103, 0.027133524417877197, -0.0175405815243721, 0.01939503103494644, 0.01515628956258297, 0.005375114735215902, -0.029448099434375763, 0.04077000170946121, 0.030702989548444748, -0.0067310938611626625, -0.0226438045501709, 0.0004405188956297934, -0.010757201351225376, 0.02198847196996212, -0.022532258182764053, 0.021486515179276466, 0.020649923011660576, 0.007654832676053047, 0.01978544145822525, 0.02573920041322708, 0.01635540835559368, 8.75809055287391e-05, 0.042861487716436386, 0.0113707035779953, -0.017735786736011505, -0.009279218502342701, -0.009711459279060364, -0.01015764195472002, -0.014849538914859295, 0.003764671739190817, -0.009802090004086494, -0.03600141778588295, 0.002154228975996375, 0.028262924402952194, -0.011823858134448528, -0.006480115931481123, -0.03218097239732742, 0.021486515179276466, -0.021221594884991646, 0.005165966227650642, -0.02343856729567051, -0.016048656776547432, -0.023257305845618248, 0.009990323334932327, 0.02710563689470291, 0.01965995319187641, 0.02243465557694435, -0.005542433355003595, 0.02886248379945755, -0.009223446249961853, 0.00613502087071538, -0.01850266568362713, 0.0082613630220294, 0.015170233324170113, 0.009021269157528877, 0.03251561149954796, 0.018656039610505104, -0.00782215129584074, -0.017917050048708916, 0.01500291470438242, 0.011238242499530315, -0.0003359446709509939, -0.01749875210225582, 0.041132524609565735, 0.007480542175471783, 0.013469159603118896, 0.010617769323289394, 0.007529343478381634, -0.0006540245958603919, -0.010736286640167236, -0.002443550853058696, -0.0075642019510269165, -0.010311017744243145, 0.01643906719982624, -0.008867893368005753, -0.02771914005279541, -0.00706224562600255, -0.006828696466982365, 0.0013620791723951697, -0.02872305177152157, 0.03098185546696186, -0.00569580914452672, 0.002917620586231351, 0.014473071321845055, 0.006260510068386793, 0.01688525080680847, 0.01740114949643612, -0.022922668606042862, -0.013078749179840088, 0.005741124507039785, 0.010234329849481583, -0.0019311371725052595, 0.006194279529154301, 0.007403854746371508, 0.009878777898848057, 0.004374688025563955, -0.029113462194800377, -0.006298853550106287, 0.004723269026726484, -0.003435262944549322, -0.020245568826794624, 0.00015010757488198578, 0.012514048255980015, -0.009850891306996346, 0.00856811460107565, -0.039236247539520264, -0.010436506941914558, -0.001420466462150216, 0.0027067293412983418, -0.004092337563633919, 0.007159848231822252, -0.01991093158721924], "8f2dd465-226d-4a17-ae7c-7aec5260cf67": [-0.018115589395165443, -0.012035886757075787, -0.007150168064981699, -0.02521086111664772, -0.026404842734336853, 0.005352333188056946, -0.00945578794926405, -0.013950375840067863, -0.004268142394721508, -0.022809172049164772, 0.0011382284574210644, -0.004226970486342907, -0.007115858141332865, 0.018307723104953766, -0.01917233131825924, -0.017305877059698105, 0.0005583924357779324, -0.002188966842368245, 0.02254841849207878, -0.0047416179440915585, 0.01969384029507637, 0.005331747233867645, -0.0031256251968443394, -0.026734216138720512, 0.006731587927788496, -0.0008242935873568058, 0.011185003444552422, -0.02527948096394539, -0.0037157542537897825, 0.009730266407132149, 0.03005540743470192, -0.011898647993803024, 0.02558140642940998, -0.0026813128497451544, 0.004515173379331827, 0.003907889127731323, 0.003626548685133457, 0.009394031018018723, -0.0032028222922235727, 0.013950375840067863, 0.003401819383725524, -0.0054175215773284435, 0.010910524986684322, 0.020009491592645645, -0.01917233131825924, 0.006004219874739647, -0.0184037908911705, -0.0035647910553961992, -0.009435201995074749, 0.035407740622758865, -0.008742143400013447, 0.021903393790125847, -0.014286612160503864, -0.024812866002321243, 0.019076263532042503, 0.00870097242295742, 0.0009495244594290853, 0.007733434904366732, -0.019748736172914505, -0.0195840485394001, 0.02283661998808384, -0.010526254773139954, -0.035215605050325394, -0.005022958852350712, 0.022644486278295517, 0.02269938215613365, -0.009805748239159584, 0.003360647475346923, 0.013099491596221924, -0.022905239835381508, 0.03469409793615341, 0.01580996811389923, -0.019117435440421104, -0.004305883310735226, 0.025293204933404922, -0.020887821912765503, -0.01572762429714203, 0.005705724004656076, -0.005661121569573879, -0.01635892502963543, -0.009366583079099655, -0.005022958852350712, 0.008824487216770649, -0.024593284353613853, -0.00028391380328685045, 0.00825494434684515, 0.0033503544982522726, 0.017758766189217567, -0.0014075606595724821, -0.019350742921233177, -0.0076648155227303505, 0.03606649115681648, 0.030961187556385994, 0.008447078987956047, -0.015233563259243965, -0.0009057794231921434, -0.020352588966488838, 0.039332784712314606, -0.003382948925718665, -0.02643229067325592, 0.012433880940079689, 0.020338864997029305, -0.02654208242893219, 0.005894428119063377, -0.029012389481067657, -0.026404842734336853, 0.039030857384204865, -0.01851358264684677, -0.010567426681518555, -0.014465022832155228, -0.030329886823892593, 0.035929251462221146, 0.005640535615384579, -0.0525626540184021, -0.05464869365096092, 0.01502770371735096, 0.056542593985795975, -0.020709412172436714, -0.02109368145465851, -0.013271041214466095, 0.003422405105084181, 0.034035347402095795, -0.004734755959361792, -0.006628658622503281, 0.0042475564405322075, 0.001969384029507637, -0.031592488288879395, -0.009647923521697521, 0.005372918676584959, -0.02909473329782486, 0.03850935027003288, -0.005040113348513842, 0.014506194740533829, 0.004264711402356625, -0.014300336129963398, -0.012886771000921726, -0.003780942875891924, 0.009483235888183117, -0.020311417058110237, 0.007266821339726448, 0.021491674706339836, 0.01598837971687317, -0.0010172863258048892, -0.013655311428010464, 0.01171337440609932, 0.015974655747413635, -0.000957244192250073, -0.00571944797411561, 0.015864863991737366, 0.008797039277851582, 7.221146370284259e-05, 0.004425967577844858, -0.01758035458624363, -0.014931636862456799, 0.009977297857403755, -0.008920555002987385, 0.02621270716190338, 0.008611766621470451, 0.005750326905399561, 6.497423601103947e-05, 0.01570017635822296, 0.03834466263651848, 0.0025286341551691294, -0.009380307048559189, 0.007795192766934633, 0.035188157111406326, 0.013737654313445091, 0.010155708529055119, -0.011727098375558853, 0.004556344822049141, 0.0038255457766354084, 0.011212451383471489, -0.0427912175655365, 0.0022713104262948036, -0.018966471776366234, 0.009538131766021252, -0.005956185981631279, 0.014821845106780529, 0.0034773009829223156, 0.0055822087451815605, -0.009647923521697521, -0.03779570385813713, 0.008014775812625885, 0.021793602034449577, -0.013614139519631863, -0.02606174349784851, 0.02854577638208866, -0.010759561322629452, 0.023371854797005653, -0.008097118698060513, 0.042105019092559814, 0.04770438373088837, 0.019117435440421104, -0.010690942406654358, -0.582772970199585, -0.01925467513501644, 0.00025839588488452137, -0.015233563259243965, 0.01928212307393551, 0.016674576327204704, 0.02495010569691658, 0.020627068355679512, -0.018486134707927704, 0.01821165531873703, -0.01670202426612377, 0.016386372968554497, 0.01053311675786972, -0.00450831139460206, -0.016674576327204704, -0.01877433806657791, 0.03225123882293701, -0.036670342087745667, -0.017923453822731972, 0.008749005384743214, -0.023920811712741852, 0.026308774948120117, 0.006529159843921661, -0.02342674881219864, 0.007280545309185982, 0.029149629175662994, -0.012262332253158092, 0.009490097872912884, 0.022452350705862045, 0.03129056096076965, -0.011239899322390556, 0.0011416594497859478, 0.017498010769486427, -0.007705986965447664, 0.03894851356744766, 0.009030346758663654, -0.022932687774300575, 0.015508041717112064, 0.03269040212035179, 0.02854577638208866, -0.008948002941906452, -0.01114383153617382, 0.02857322432100773, 0.017017673701047897, 0.019940871745347977, 0.00392504408955574, 0.021821049973368645, -0.010711528360843658, -0.00019631654140539467, -0.00022108394477982074, 0.0002571092627476901, -0.039552368223667145, -0.005400366615504026, -0.018184207379817963, 0.005400366615504026, 0.016194237396121025, 0.03269040212035179, -0.02575981803238392, -0.004707308020442724, -0.0343647226691246, -0.014533642679452896, 0.00929110124707222, -0.013422003947198391, -0.0018372911727055907, -0.009304825216531754, -0.006014512851834297, -0.016935329884290695, -0.0012831875355914235, -9.236848563887179e-05, -0.025855885818600655, 0.001183688989840448, -0.024181565269827843, -0.001342371921055019, -0.010190018452703953, 0.033266808837652206, 0.034556858241558075, 0.018197931349277496, -0.008227496407926083, -0.0029592225328087807, 0.0004091446753591299, 0.006645813584327698, 0.023632608354091644, -0.017154913395643234, -0.018019521608948708, 0.021368160843849182, -0.013572967611253262, -0.014821845106780529, -0.00857059471309185, 0.010992868803441525, -0.01906253956258297, 0.015384525991976261, 0.009757714346051216, 0.01629030518233776, -0.013140663504600525, 0.011816304177045822, 0.004920029081404209, -0.025938229635357857, 0.0016537336632609367, 0.0035167571622878313, -0.03142780065536499, -0.023975707590579987, 0.02405805140733719, 0.016976501792669296, 0.0011811157455667853, 0.009764576330780983, -0.018005797639489174, -0.02732434682548046, 0.009874368086457253, 0.02510106936097145, -0.00810398068279028, 0.009222481399774551, -0.014519918709993362, -0.02132698893547058, 0.003726047230884433, 0.01609817147254944, -0.03409024327993393, 0.013998409733176231, 0.0004305883194319904, 0.021670086309313774, 0.00629242230206728, 0.022864067927002907, 0.011432033963501453, -0.00838532205671072, 0.012248608283698559, 0.028298744931817055, 0.02331695891916752, 0.040183670818805695, -0.0032662954181432724, -0.02928686887025833, -0.003358931979164481, 0.014519918709993362, -0.006199785508215427, 0.020640792325139046, -0.029067285358905792, -0.017498010769486427, 0.001780680031515658, 0.02451094053685665, 0.004854840692132711, 0.03919554501771927, 0.0071295821107923985, -0.00602480536326766, -0.009538131766021252, 0.007088410202413797, 0.009394031018018723, 0.002341645769774914, -0.017388220876455307, -0.010615460574626923, 0.004254418425261974, -0.013168111443519592, 0.0030707295518368483, -0.0024171273689717054, 0.007808916736394167, -0.017017673701047897, 0.04174819588661194, 0.012420156970620155, -0.0031119012273848057, 0.008989174850285053, -0.0073354411870241165, 0.005674845539033413, -0.0035819460172206163, 0.010677218437194824, -0.023042479529976845, -0.030000513419508934, 0.0018269983120262623, -0.013415141962468624, -0.008021637797355652, 0.0038255457766354084, 0.013483761809766293, -0.015576661564409733, -0.02702241949737072, -0.0027413552161306143, 0.01231036614626646, -0.008652938529849052, -0.002353654010221362, 0.02824384905397892, -0.010210604406893253, 0.005674845539033413, 0.00918130949139595, 0.013435727916657925, -0.0044534155167639256, -0.00914013758301735, -0.00035746549838222563, -0.016564784571528435, 0.0030878845136612654, 0.024922657757997513, 0.009044070728123188, 0.013675897382199764, -0.0034309825859963894, -0.022781724110245705, -0.0031753743533045053, -0.00868038646876812, 0.031153323128819466, 0.01071838941425085, -0.022740554064512253, 0.025005001574754715, 0.042105019092559814, -0.0059356000274419785, 0.010738975368440151, -0.01758035458624363, 0.013078905642032623, 0.030302438884973526, 0.011500653810799122, 0.0034652925096452236, -0.031125875189900398, 0.002888887422159314, -0.04943360015749931, 0.019158607348799706, -0.005716016981750727, 0.01010767463594675, -0.01517866738140583, 0.018788062036037445, 0.0018750320887193084, -0.012413294985890388, 0.007225649431347847, 0.022603314369916916, -0.004738186951726675, -0.0170588456094265, -0.000890340015757829, -0.010553702712059021, 0.03236102685332298, 0.023920811712741852, 0.01814303547143936, -0.01943308673799038, -0.02117602527141571, 0.005280282348394394, -0.005125888157635927, 0.01681181602180004, 0.04235205054283142, -0.009387169033288956, -0.021258369088172913, -0.02187594585120678, 0.0007170753669925034, 0.0018441531574353576, -0.01165847945958376, 0.018156759440898895, -0.037740807980298996, 0.043587204068899155, -0.035737115889787674, 0.035929251462221146, 0.007726572919636965, 0.009098965674638748, 0.02257586643099785, 0.009661647491157055, -0.003729478223249316, 0.021601466462016106, 0.002212983788922429, 0.031784623861312866, 0.025595130398869514, -0.006803638767451048, 0.04342251643538475, -0.0330197773873806, -0.013792550191283226, -0.018897851929068565, 0.017923453822731972, -0.0017652405658736825, 0.012728945352137089, 0.011411448009312153, 0.016345201060175896, 0.029698586091399193, 0.03400789946317673, 0.010389015078544617, 0.021107405424118042, -0.03216889500617981, -0.004446553532034159, 0.0015902604209259152, -0.02606174349784851, 0.0032096842769533396, -0.02628132700920105, 0.01308576762676239, -0.019789908081293106, -0.03463920205831528, 0.0029712310060858727, -0.004920029081404209, 0.00449801841750741, 0.0024531525559723377, -0.010169432498514652, 0.02687145583331585, 0.015549213625490665, 0.011788856238126755, -0.013092629611492157, -0.004415674600750208, -0.021491674706339836, 0.018788062036037445, -0.008412769064307213, -0.009284239262342453, 0.015892311930656433, -0.012186850421130657, 0.004285297356545925, -0.014643434435129166, 0.02728317491710186, -0.020531000569462776, 0.011576135642826557, -0.012742669321596622, 0.003828976769000292, -0.008714696392416954, 0.004745048936456442, -0.015274735167622566, -0.036368414759635925, -0.0035030334256589413, -0.00020746723748743534, 0.011857476085424423, 0.0171411894261837, -0.014698329381644726, -0.0011236468562856317, 0.05720134451985359, 0.012200574390590191, 0.013003424741327763, 5.998858614475466e-05, -0.0016168506117537618, -0.007685401011258364, 0.016894157975912094, -0.03194931149482727, 0.009668509475886822, -0.0177313182502985, 0.011541825719177723, -0.005283713340759277, 0.0177724901586771, -0.013991547748446465, 0.024867761880159378, 0.007184477522969246, -0.03801528736948967, -0.018225379288196564, -0.01843123883008957, -0.012825013138353825, -0.0036471346393227577, 0.0017772490391507745, 0.0177724901586771, -0.0072462353855371475, -0.028216401115059853, -0.028847701847553253, -0.025636302307248116, 0.0024548680521547794, -0.01703139767050743, -0.017429392784833908, -0.007527575828135014, 0.009044070728123188, -0.007973603904247284, -0.002281603403389454, 0.015123771503567696, -0.00945578794926405, -0.016523612663149834, -0.009037208743393421, 0.00449801841750741, -0.014046442694962025, 0.012680912390351295, 0.03090629167854786, 0.008501974865794182, 7.971673767315224e-05, -0.01694905385375023, -0.008021637797355652, -0.005328316241502762, 0.02172498218715191, -0.005033251363784075, -0.022411178797483444, -0.004494587425142527, 0.017278429120779037, 0.02235628291964531, 0.056323010474443436, -0.006525728851556778, 0.025979401543736458, 0.022740554064512253, 0.04122668877243996, 0.0015885449247434735, 0.02516968920826912, 0.028600672259926796, -0.0031359181739389896, 0.004333331249654293, -0.015713900327682495, 0.019391914829611778, -0.012735807336866856, -0.0156041095033288, 0.0006789056933484972, 0.0006883409223519266, -0.04430084675550461, 0.019858527928590775, 0.009105827659368515, -0.05555447190999985, -0.010526254773139954, 0.04128158465027809, -0.00013863314234185964, -0.017017673701047897, 0.0003615398018155247, 0.03354128822684288, -0.011226175352931023, 0.015549213625490665, -0.010588012635707855, 0.011342829093337059, -0.00432990025728941, 0.0021718121133744717, -0.03406279534101486, -0.020187901332974434, 0.004865133203566074, -0.028326192870736122, 0.031043531373143196, 0.03472154587507248, -0.04097965732216835, -0.033294256776571274, -0.015370802022516727, 0.03559987619519234, 0.025444166734814644, 0.01854103058576584, 0.006409075576812029, -0.002755079185590148, 0.021121129393577576, -0.0060522533021867275, -0.04882974550127983, 0.0030587210785597563, -0.01393665187060833, 0.0070403763093054295, -0.0019848234951496124, 0.013442589901387691, -0.004621533676981926, -0.03362363204360008, 0.01245446689426899, 0.00962733756750822, 0.02028396911919117, 0.018390066921710968, 0.01799207367002964, 0.010004745796322823, -0.01053311675786972, -0.019515428692102432, 0.02176615409553051, -0.004278435371816158, -0.001921350252814591, 0.015123771503567696, -0.02224649116396904, -0.0056062256917357445, -0.03288253769278526, -0.0022575866896659136, -0.013120077550411224, 0.038070183247327805, 0.02898494154214859, 0.02676166407763958, 0.020819202065467834, 0.02558140642940998, 0.004384795669466257, 0.005565053783357143, -0.00888624507933855, 0.016756920143961906, 0.0011227891081944108, 0.02617153525352478, -0.0012677480699494481, -0.004679860547184944, -0.018293999135494232, 0.019035091623663902, -0.024661904200911522, 0.03749378025531769, 0.0156041095033288, -0.003894165391102433, -0.004429398570209742, -0.00846080295741558, -0.0329374335706234, -0.03590180352330208, 0.009894954040646553, -0.00614489009603858, 0.010251776315271854, -0.0015876871766522527, -0.023714952170848846, -0.002468592021614313, -0.00949695985764265, 0.011356553062796593, 0.02769489213824272, -0.030961187556385994, -0.017045121639966965, -0.005619949661195278, -0.017607802525162697, -0.0006051395903341472, 0.0067350189201533794, 0.0028734479565173388, -0.03727419674396515, -0.011788856238126755, -0.0072050634771585464, 0.009675371460616589, 0.022685658186674118, 0.03719185292720795, 0.008543146774172783, -0.03801528736948967, -0.009853782132267952, -0.014945360831916332, -0.021011337637901306, -0.02613036334514618, 0.003029557643458247, 0.023646332323551178, 0.020187901332974434, 0.017923453822731972, 0.013964099809527397, -0.028930045664310455, -0.020791754126548767, 0.020187901332974434, 0.0019831079989671707, -0.029918169602751732, -0.002163234632462263, -0.032306134700775146, -0.021793602034449577, -0.005060699302703142, 0.047512248158454895, 0.013181835412979126, -0.027200831100344658, -0.018568478524684906, 0.005390073638409376, 0.005170491058379412, 0.012392709031701088, -0.013559243641793728, -0.027777235954999924, -0.010265500284731388, 0.00014892609033267945, -0.005667983554303646, -0.0014178536366671324, -0.027859579771757126, -0.021519122645258904, 0.014808121137320995, -0.021423056721687317, 0.02457956038415432, -0.0009006329346448183, -4.985646592103876e-05, -0.02050355263054371, 0.009558717720210552, 0.01747056469321251, 0.015082599595189095, 0.009894954040646553, 0.024895209819078445, -0.044657669961452484, 0.005510158371180296, -0.00793929398059845, 0.006069408264011145, 0.01618051342666149, -0.011617307551205158, -0.004587223753333092, -0.007726572919636965, 0.0017043406842276454, -0.012324090115725994, -0.017854833975434303, -0.002684743842110038, -0.0032834503799676895, -0.028820253908634186, -0.023454196751117706, -0.0070403763093054295, -0.01862337440252304, 0.02169753424823284, 0.003822114784270525, 0.0011502369306981564, 0.018939023837447166, 0.00031200499506667256, -0.016015827655792236, 0.02128581702709198, 0.002604115754365921, 0.0514647401869297, -0.005019527859985828, 0.028628120198845863, 0.05344098433852196, 0.015425697900354862, 0.013058319687843323, -0.0477592796087265, -0.032113999128341675, -0.005980202928185463, 0.04701818525791168, 0.015686452388763428, -0.026295050978660583, -0.03968960791826248, 0.005870411172509193, -0.003105039242655039, -0.009840058162808418, -0.025073621422052383, 0.019035091623663902, 0.038262318819761276, 0.002377670956775546, 0.0035442051012068987, 0.021230921149253845, -0.025828437879681587, -0.01609817147254944, 0.0020071249455213547, 0.013168111443519592, 0.0025800990406423807, -0.02420901320874691, -0.006264974363148212, -0.006680123042315245, 0.012330952100455761, 0.002598969265818596, 0.03134545683860779, -0.010244914330542088, 0.005016096867620945, -0.012413294985890388, -0.028710462152957916, 0.0071707540191709995, -0.01854103058576584, 0.03549008443951607, -0.016111895442008972, -0.018486134707927704, 0.009579303674399853, -0.008666662499308586, -0.004161782097071409, -0.01877433806657791, 0.012063334695994854, 0.05212348699569702, -0.015041427686810493, -0.010141984559595585, -0.0033452080097049475, 0.002298758365213871, 0.02632249891757965, 0.015864863991737366, 0.0073697506450116634, -0.0019487981917336583, -0.03727419674396515, -0.01321614533662796, 0.016894157975912094, 0.0022644486743956804, -0.0003484591725282371, -0.010190018452703953, 0.0017283575143665075, -0.018678270280361176, -0.017429392784833908, -0.010210604406893253, -0.003719185246154666, -0.034666649997234344, -0.017594078555703163, -0.020901545882225037, 0.009339135140180588, -0.02106623351573944, 0.013792550191283226, -0.010780147276818752, 0.00041472003795206547, 0.03620373085141182, -0.024085497483611107, 0.016784368082880974, -0.01910371147096157, 0.003213115269318223, -0.013415141962468624, 0.0017343617510050535, -0.00661836564540863, -0.04180309176445007, 0.024373700842261314, -0.005980202928185463, -0.013394556008279324, -0.0026813128497451544, 0.009044070728123188, 0.043889131397008896, 0.001012997585348785, 0.02442859672009945, 0.0007998478249646723, -0.008776453323662281, 0.015164943411946297, -0.0015653858426958323, -0.024895209819078445, 0.010766423307359219, -0.007362888660281897, 0.0019299277337267995, 0.003969646990299225, 0.019872251898050308, 0.011555549688637257, 0.005269989371299744, -0.013895479962229729, 0.006985480897128582, -0.0441361628472805, -0.03216889500617981, -0.00046532702981494367, -0.006323301233351231, 0.0002305191446794197, 0.005335178226232529, -0.032855089753866196, -0.034886233508586884, -0.0036814443301409483, -0.026089191436767578, -0.00360939372330904, -0.007088410202413797, -0.010279224254190922, 0.038262318819761276, 0.008248082362115383, 0.019858527928590775, -0.008790177293121815, 0.018486134707927704, -0.019378190860152245, -0.03208655118942261, -0.03400789946317673, -0.02224649116396904, -0.004120610188692808, 0.0416109561920166, -0.021532846614718437, -0.017552906647324562, -0.0146571584045887, 0.005578777752816677, -0.0060282363556325436, -2.579938154667616e-05, 0.027516480535268784, 0.035462636500597, 0.0009538131998851895, 0.010711528360843658, -0.006508574355393648, 0.012619154527783394, -0.010972282849252224, 0.011788856238126755, -0.005311161279678345, -0.013387694023549557, -0.0165510606020689, 0.011534963734447956, -0.003067298559471965, 0.006203216500580311, 0.00017422958626411855, -0.017703870311379433, -0.015096323564648628, -0.016111895442008972, -0.017594078555703163, 0.015576661564409733, 0.012543672695755959, -0.02069568820297718, -0.01747056469321251, -0.010594874620437622, -0.013442589901387691, 0.004117179196327925, -0.025485338643193245, -0.019227227196097374, -0.003242278704419732, 0.023632608354091644, 0.01602955162525177, -0.00101814407389611, 0.0034841629676520824, 0.012667188420891762, -0.017347048968076706, 0.02854577638208866, -0.01753918267786503, 0.0037775118835270405, 0.002785957884043455, 0.01423171628266573, 0.022054357454180717, -0.021258369088172913, -0.003688306314870715, 0.009394031018018723, 0.0146571584045887, 0.02087409794330597, 0.0014358662301674485, 0.0031067547388374805, -0.03129056096076965, -0.01351120974868536, 0.008330426178872585, -0.003449853044003248, -0.017594078555703163, -0.0003141493652947247, 0.022411178797483444, -0.026363670825958252, -0.016166789457201958, 0.016372648999094963, -0.014410126954317093, -0.05563681572675705, -0.004309314303100109, -0.002158088143914938, -0.020942717790603638, -0.012907356955111027, 0.011898647993803024, 0.0035270501393824816, 0.02024279721081257, -0.05829925835132599, -0.00859118066728115, -0.019611496478319168, 0.029369210824370384, 0.02558140642940998, -0.0019179192604497075, 0.0033520699944347143, -0.0031805208418518305, 0.02909473329782486, -0.022713106125593185, 0.0023073358461260796, 0.23868660628795624, -0.02254841849207878, 0.0038495624903589487, 0.0330197773873806, -0.010855629108846188, 0.0005794072058051825, 0.002158088143914938, -0.02206808142364025, -0.010224328376352787, 0.02791447564959526, -0.003242278704419732, -0.024346252903342247, -0.006114011164754629, -0.0017600940773263574, -0.012385847046971321, -0.007657953538000584, -0.025416718795895576, -0.028518328443169594, -0.007589333690702915, 0.030659262090921402, 0.01677064411342144, 0.0046661365777254105, -0.019378190860152245, -0.014135648496448994, 0.018554754555225372, 0.004600947722792625, -0.049543388187885284, 0.024593284353613853, 0.034886233508586884, 0.012207436375319958, -0.022644486278295517, 0.004405381623655558, -0.01851358264684677, 0.020380036905407906, -0.007232511416077614, -0.008618628606200218, 0.02209552749991417, 0.021738706156611443, 0.01843123883008957, 0.008893107064068317, -0.0014727492816746235, 0.0022730259224772453, -0.020297693088650703, -0.023591436445713043, -0.008323564194142818, 0.008858797140419483, -0.006714432965964079, -0.006014512851834297, -0.01279070321470499, 0.0004421678895596415, -0.03109842725098133, -0.01921350322663784, 0.041254136711359024, 0.01362100150436163, -0.013147525489330292, -0.010690942406654358, 0.009956711903214455, -0.0013681043637916446, 0.02709103934466839, 0.014739501290023327, 0.008673524484038353, 0.052507758140563965, -0.031592488288879395, 0.00875586736947298, -0.01725098118185997, 0.00988123007118702, -0.02250724658370018, 0.010869353078305721, 0.020352588966488838, -0.017264705151319504, -0.017347048968076706, -0.006361041683703661, -0.009668509475886822, -0.00270704529248178, -0.02257586643099785, -0.01681181602180004, 0.05742092430591583, -0.0035167571622878313, 0.01310635358095169, 0.021121129393577576, -0.007774606812745333, -0.0049955109134316444, -0.016633404418826103, -0.0017395082395523787, -0.0046661365777254105, -0.03186696767807007, 0.016386372968554497, -0.006837948691099882, -0.004398519638925791, -0.0007342302706092596, 0.005815515760332346, -0.013991547748446465, 0.0008826202829368412, -0.012420156970620155, 0.012523086741566658, 0.020832926034927368, 0.00044817212619818747, 0.012330952100455761, -0.020078111439943314, 0.004573499783873558, -0.005959616973996162, 0.023069927468895912, 0.033074673265218735, 0.0035647910553961992, -0.031894415616989136, -0.014204268343746662, 0.008001051843166351, 0.011720236390829086, 0.006731587927788496, -0.00030342754325829446, -0.0034721544943749905, -0.05851884186267853, 0.004590654745697975, -0.011198727414011955, 0.006264974363148212, 0.006995773874223232, -0.008783315308392048, -0.025128517299890518, -0.021752430126070976, -0.005589070729911327, -0.0015525196213275194, -0.009249929338693619, 0.004000525921583176, -0.02010555937886238, -0.01412192452698946, -0.013140663504600525, -0.010457634925842285, -0.01549431774765253, -0.0002543215814512223, -0.021203473210334778, 0.01729215309023857, -0.03598414734005928, 0.020627068355679512, -0.00494061503559351, 0.00374320219270885, 0.0029883859679102898, 0.001743796980008483, -0.013655311428010464, 0.020681964233517647, 0.023371854797005653, 0.002355369506403804, 0.023920811712741852, 0.02087409794330597, 0.016825538128614426, 0.002595538506284356, -0.003043281612917781, 0.006234095431864262, 0.022534694522619247, -0.005585639737546444, -0.010636046528816223, -0.04364209994673729, -0.01454736664891243, 0.010732113383710384, -0.00660807266831398, 0.03161993622779846, -0.0041480581276118755, -0.006048822309821844, -0.0439714752137661, 0.00897545088082552, 0.02549906261265278, -0.04226970672607422, 0.0019402207108214498, 0.023893363773822784, -0.02809288538992405, -0.0018630236154422164, -0.0030209801625460386, -0.17390964925289154, 0.024483492597937584, 0.030302438884973526, -0.02006438747048378, 0.02928686887025833, -0.021162301301956177, 0.006772759836167097, -0.006700708996504545, -0.0003735482459887862, -0.014876740984618664, 0.029177077114582062, -0.0014230000087991357, -0.022191595286130905, -0.020778030157089233, 0.0020568741019815207, -0.0012385847512632608, -0.0177724901586771, -0.00026847439585253596, 0.03491368144750595, 0.012667188420891762, 0.0317571759223938, -0.00418236805126071, -0.018074417486786842, 0.03634096682071686, -0.0027413552161306143, 0.009798886254429817, -0.01869199424982071, 0.010869353078305721, -0.0035442051012068987, -0.024414872750639915, -0.007225649431347847, 0.018705718219280243, 0.015892311930656433, 0.01607072353363037, -0.006196354515850544, -0.02783213183283806, -0.0012480199802666903, -0.009133275598287582, -0.014794397167861462, -0.01720980927348137, -0.005788067821413279, 0.039771951735019684, 0.007445232477039099, 0.0005275135627016425, 0.005455262493342161, 0.010231190361082554, 0.021148577332496643, -0.012282918207347393, 0.004522035364061594, -0.011775132268667221, 0.01471205335110426, -0.012173126451671124, -0.027736064046621323, -7.773320248816162e-05, 0.029973065480589867, 0.005362625699490309, 0.0035819460172206163, 0.00045117421541363, 0.01006650272756815, -0.0019659530371427536, -0.013476899825036526, -0.006652675569057465, -0.017168637365102768, 0.030769051983952522, 0.00582923972979188, -0.020928993821144104, -0.02420901320874691, 0.05404483899474144, -0.0293143168091774, 0.01097914483398199, 0.011857476085424423, -0.010210604406893253, 0.014766949228942394, -0.022301387041807175, 0.024044327437877655, 0.013024010695517063, -0.007582471705973148, 0.019625220447778702, 0.03304722532629967, -0.010292948223650455, -0.00857059471309185, 0.05945206806063652, 0.00836473610252142, -0.030027959495782852, 0.0177313182502985, 0.007760882843285799, -0.0015250717988237739, -0.00374320219270885, -0.033815763890743256, -0.037219300866127014, 0.04045814648270607, -0.031592488288879395, -0.016304029151797295, -0.004401950631290674, -0.007843226194381714, 0.0071707540191709995, -0.015439421869814396, -0.008776453323662281, -0.01330535113811493, -0.012680912390351295, 0.011212451383471489, 0.010430186986923218, -0.014821845106780529, 0.000329374335706234, 0.030933739617466927, -0.0025269186589866877, -0.01917233131825924, 0.02516968920826912, 0.035188157111406326, 0.01843123883008957, -0.004775927867740393, 0.02695379965007305, -0.010567426681518555, 0.012797565199434757, 0.019817356020212173, 0.005695431027561426, -0.0012025594478473067, -0.0331021212041378, 0.011960405856370926, 0.006837948691099882, -0.007808916736394167, -0.028683016076683998, 0.024181565269827843, 0.03724674880504608, 0.0015319337835535407, -0.01277011726051569, -0.04246184229850769, -0.002237000735476613, -0.010690942406654358, 0.012447604909539223, -0.018129313364624977, 0.03853679820895195, 0.007253097370266914, 0.04268142580986023, 0.008337288163602352, 0.008035361766815186, -0.00674531189724803, -0.038179975003004074, -0.008838211186230183, 0.005016096867620945, -0.0016605956479907036, 0.009956711903214455, -0.027489032596349716, 0.0008628921350464225, -0.0009418047266080976, 0.02073686011135578, 0.00036518523120321333, -0.007506989873945713, -0.0021683811210095882, -0.013147525489330292, -0.015741348266601562, 0.03035733476281166, -0.007541299797594547, 0.023481644690036774, 0.007067824248224497, 0.003883872414007783, 0.041665852069854736, -0.017676422372460365, -0.008371598087251186, -0.01260543055832386, 0.005314592272043228, 0.010793871246278286, -0.02813405729830265, -0.03373342007398605, 0.024826589971780777, -0.008055947721004486, 0.00844021700322628, -0.00299867894500494, 0.0053420402109622955, -0.011294795200228691, -0.018019521608948708, -0.013682759366929531, -0.018568478524684906, 0.01766269840300083, -0.000649742316454649, -0.013257317245006561, -0.02746158465743065, -0.006968325935304165, 0.0011442326940596104, -0.025073621422052383, 0.00676589785143733, 0.03439217060804367, 0.011239899322390556, 0.019707564264535904, -0.029122181236743927, -0.006014512851834297, -0.01175454631447792, 0.011068349704146385, -0.009249929338693619, 0.028683016076683998, 0.010677218437194824, 0.011878062039613724, -0.010608598589897156, -0.024016879498958588, 0.03227868676185608, -0.02698124758899212, -0.01005277968943119, 0.03952492028474808, -0.024936381727457047, 0.022562142461538315, -0.019391914829611778, -0.01378568820655346, -0.011205589398741722, -0.012708359397947788, 0.024785418063402176, -0.005033251363784075, -0.011946681886911392, -0.009997883811593056, -0.03271785005927086, 0.011027178727090359, 0.0046421196311712265, 0.03260805830359459, -0.0024222738575190306, 0.01439640298485756, -0.0152884591370821, -0.023413024842739105, 0.015466869808733463, -0.0016503026708960533, 0.0156041095033288, -0.026679322123527527, -0.0007235084776766598, -0.002986670471727848, -0.005348902195692062, -0.001121073612011969, -0.010876215063035488, 0.016015827655792236, -0.036148834973573685, -0.018705718219280243, -0.10567426681518555, 0.0183626189827919, -0.04891208931803703, -0.0017978348769247532, 0.005304299294948578, -0.015123771503567696, 0.021752430126070976, -0.0184037908911705, 0.0024788849987089634, -0.00886565912514925, -0.019515428692102432, 0.026487186551094055, 0.007009497378021479, -0.006295853294432163, -0.009702819399535656, 0.0028614394832402468, 0.03702716529369354, 0.018650822341442108, 0.004515173379331827, -0.003401819383725524, 0.0016014111461117864, 0.014602262526750565, 0.048884641379117966, -0.010457634925842285, -0.01766269840300083, 0.038372110575437546, -0.020229073241353035, 0.02328951098024845, 0.002329637296497822, -0.02510106936097145, 0.004309314303100109, 0.0029609380289912224, 0.010615460574626923, -0.0024274203460663557, 0.005726309958845377, 0.018966471776366234, -0.011480067856609821, -0.01097914483398199, 0.010690942406654358, 0.013037733733654022, -0.012118230573832989, -0.011068349704146385, 0.02468935213983059, -0.022562142461538315, -0.008522560819983482, 0.02261703833937645, -0.008001051843166351, -0.01001160778105259, 0.02538927271962166, 0.0002526060852687806, 0.029890721663832664, 0.010601736605167389, -0.018115589395165443, -0.009599889628589153, 0.0056062256917357445, -0.05286458134651184, 0.010738975368440151, -0.0013578113866969943, -0.021477950736880302, -0.004017680883407593, 0.0057709128595888615, 0.004714170005172491, 0.01672947220504284, -0.0017214955296367407, 0.0014658872969448566, -0.005269989371299744, -0.010567426681518555, -0.007616781629621983, -0.0024034033995121717, -0.01862337440252304, -0.026487186551094055, -0.026198983192443848, -0.010464496910572052, 0.017196085304021835, -0.013202421367168427, 0.004772496875375509, -0.015892311930656433, 0.01965266838669777, -0.038591694086790085, 0.022260215133428574, 0.033266808837652206, -0.01427288819104433, -0.03524305298924446, 0.021121129393577576, 0.007603057660162449, -0.00479308282956481, -0.029918169602751732, 0.0032783038914203644, -0.014739501290023327, 0.007712848950177431, -0.03474899381399155, 0.003883872414007783, 0.010835043154656887, -0.004765634890645742, 0.006343887187540531, 0.03557242825627327, 0.002353654010221362, -0.0023502230178564787, 0.02065451629459858, 0.010169432498514652, -0.01082818116992712, -0.017676422372460365, 0.007472680415958166, -0.01306518167257309, -0.019350742921233177, -0.0022215612698346376, -0.013566105626523495, -0.03312956914305687, -0.0026247017085552216, 0.012447604909539223, -0.0071707540191709995, 0.033705972135066986, -0.022109251469373703, 0.02135443687438965, -0.026048021391034126, -0.00615518307313323, -0.0171823613345623, -0.029561346396803856, -0.052068594843149185, 0.017717594280838966, 0.01932329498231411, 0.0042715733870863914, 0.015274735167622566, -0.004281866364181042, 0.034117691218853, -0.011795718222856522, 0.009208757430315018, -0.019666392356157303, -0.010039055719971657, -0.006151752080768347, -0.025457890704274178, 0.0051121641881763935, -0.0044534155167639256, -0.012200574390590191, -0.014519918709993362, -0.0025166256818920374, -0.0035167571622878313, -0.002737924223765731, -0.027475308626890182, 0.06296539306640625, 0.0031239097006618977, -0.002659011632204056, 0.005956185981631279, 0.003911320120096207, -0.0066766925156116486, -0.00027512191445566714, 0.01021746639162302, -0.0031410646624863148, -0.010272362269461155, -0.0014161381404846907, -0.015411973930895329, -0.013689620420336723, -0.04745735228061676, 0.004724462982267141, 0.00827553030103445, -0.023165995255112648, 0.026734216138720512, 0.007157030049711466, 0.03642331063747406, 0.023742400109767914, 0.0027327777352184057, 0.009174447506666183, 0.013868032023310661, -0.006817362736910582, -0.010313534177839756, 0.014698329381644726, -0.0018115588463842869, 0.0006124303909018636, -0.01854103058576584, -0.0019059109035879374, 0.018074417486786842, -0.002430851338431239, -0.017443116754293442, -0.006721294950693846, 0.015370802022516727, -0.005863549187779427, 0.004676429554820061, 0.011898647993803024, 0.011898647993803024, -0.011809442192316055, -0.011946681886911392, -0.03299232944846153, -0.029177077114582062, -0.0012445889879018068, -0.003408681368455291, -0.012447604909539223, 0.011521239764988422, -0.03883872553706169], "37d9b31b-7d06-415c-b9f3-075dfc822f2d": [-0.023371290415525436, -0.0034331290517002344, -0.016621410846710205, -0.03406430780887604, -0.024370765313506126, 0.012500286102294922, -0.01293841190636158, -0.026150653138756752, -0.005702485330402851, -0.039020609110593796, -0.009337563067674637, -0.004771467298269272, -0.008338088169693947, 0.005794902797788382, -0.02264564484357834, -0.008160099387168884, -0.0033116175327450037, -0.0067704180255532265, 0.02825913578271866, -0.009289642795920372, 0.029984256252646446, 0.0025483195204287767, 0.00016301372670568526, -0.020099036395549774, 0.010104283690452576, 0.022714100778102875, 0.019893664866685867, -0.031408168375492096, -0.0057880571112036705, 0.016060061752796173, 0.03414645418524742, -0.006003696937114, 0.01552609447389841, -0.007605595979839563, 0.006565046031028032, -0.005062410607933998, 0.007441298570483923, -0.002484996570274234, 0.0007029699627310038, 0.03086050972342491, 0.017703033983707428, -0.024014787748456, 0.005640873685479164, 0.01740182191133499, -0.0185519028455019, 0.006167994346469641, -0.007482372689992189, -0.014882597140967846, -0.015320722945034504, 0.04003377631306648, -0.009960523806512356, 0.012575589120388031, -0.027793627232313156, -0.012589280493557453, 0.016306506469845772, 0.00335269165225327, 0.006277525797486305, -0.0006631792057305574, 0.005709331016987562, -0.02705428935587406, 0.02330283261835575, -0.003648769110441208, -0.01163087971508503, -0.011425508186221123, 0.029902108013629913, -0.002938525751233101, -0.008557151071727276, 0.010946307331323624, -0.0010414052521809936, -0.0070168636739254, 0.027957923710346222, 0.03247610107064247, -0.029710428789258003, -0.0024935537949204445, 0.03370833024382591, -0.019510304555296898, -0.006664309184998274, 0.007160624023526907, 0.001668644486926496, 0.004733815789222717, -0.015539785847067833, -0.007742510177195072, 0.020893139764666557, 0.000912192277610302, 0.0052985879592597485, 0.00011520064435899258, -0.0067704180255532265, 0.016867855563759804, 0.002484996570274234, -0.018990028649568558, -0.011658262461423874, 0.035077475011348724, 0.014013190753757954, -0.002390868030488491, 0.00820117350667715, 0.011480273678898811, -0.02749241515994072, 0.027793627232313156, -0.002182073425501585, -0.017483970150351524, 0.00038250465877354145, 0.014554002322256565, -0.02678046002984047, 0.0006490598898380995, -0.03431075066328049, -0.024425530806183815, 0.025657761842012405, -0.00554161099717021, 0.010378113016486168, -0.025096412748098373, -0.024658286944031715, 0.06150195375084877, 0.00015156854351516813, -0.029902108013629913, -0.038445569574832916, 0.011137987487018108, 0.054382406175136566, -0.02516486868262291, -0.0007881136261858046, 0.0060789999552071095, -0.0016780572477728128, 0.022002145648002625, -0.0010277138790115714, -0.0006845720927231014, 0.005493690725415945, 0.01845606230199337, -0.007927345111966133, -0.01860666833817959, 0.004418912809342146, -0.03666568174958229, 0.03570728003978729, -0.0008715458097867668, 0.004891267511993647, 0.0273418091237545, -0.004240924026817083, 0.0070579382590949535, -0.012561897747218609, 0.008783060126006603, -0.01678570732474327, -0.018770966678857803, 0.027615638449788094, 0.013896813616156578, 0.00039726574323140085, -0.016470804810523987, 0.0007128106663003564, 0.01490997988730669, 0.005709331016987562, 0.025657761842012405, -0.005360199138522148, -0.007838350720703602, 0.013191703706979752, -0.010220660828053951, -0.022892089560627937, -0.0104602612555027, -0.002483285265043378, 0.02130388282239437, 0.014499236829578876, 0.00498368451371789, -0.0017430916195735335, 0.005278050899505615, 0.022987930104136467, 0.029546130448579788, 0.004644821397960186, -0.0062261829152703285, 0.0023771764244884253, 0.04386737942695618, 0.0037993749137967825, 0.001858613220974803, 0.0021581135224550962, -0.0008612772217020392, 0.008002647198736668, 0.008392853662371635, -0.03641923516988754, -0.007071629632264376, -0.018620360642671585, 0.016374964267015457, 0.008652990683913231, -0.00015584711218252778, -0.0038062208332121372, 0.011021610349416733, -0.004350455477833748, -0.03154508024454117, 0.008269630372524261, 0.024603519588708878, -0.010651941411197186, -0.032613012939691544, 0.03932182118296623, 0.011261210776865482, 0.024945806711912155, -0.0018055588006973267, 0.015758849680423737, 0.0561349093914032, -0.00803687609732151, 0.004641398787498474, -0.5971659421920776, -0.01246605720371008, 0.003730917815119028, -0.02653401345014572, 0.013136938214302063, 0.014567693695425987, 0.008153253234922886, 0.01645711250603199, -0.008365470916032791, 0.009761997498571873, -0.0027091940864920616, -0.0014281885232776403, 0.01883942447602749, -0.01774410903453827, 0.000518991204444319, -0.025863133370876312, 0.019893664866685867, -0.01793578825891018, 0.007249618414789438, 0.016333889216184616, -0.011473428457975388, -0.010453416034579277, -0.008926820009946823, -0.002010930562391877, 0.010576638393104076, 0.028998473659157753, 0.002041736152023077, -0.005952354054898024, 0.0029915799386799335, 0.05085001513361931, -0.004165621008723974, 0.005267782136797905, 0.019715676084160805, -0.023426055908203125, 0.045017458498477936, -0.009241723455488682, -0.025274401530623436, 0.0009909181389957666, 0.01935969851911068, 0.02620541863143444, -0.004172466695308685, -0.01940077356994152, 0.034831028431653976, 0.012644045986235142, 0.01632019877433777, -0.005784634035080671, 0.003232891671359539, -0.009611392393708229, 0.018045319244265556, 0.006811492145061493, -0.000249227014137432, -0.025698835030198097, -0.009666157886385918, -0.00022077449830248952, -0.013451841659843922, 0.014280173927545547, 0.024795200675725937, -0.03097004070878029, 0.009666157886385918, -0.03444766625761986, 0.002587682567536831, -0.005346507765352726, -0.01632019877433777, 0.0036727292463183403, -0.010617712512612343, -0.020564544945955276, -0.019756749272346497, 0.010097438469529152, -0.015512403100728989, -0.020852064713835716, -0.008981585502624512, -0.013212241232395172, 0.002315565012395382, -0.00507610198110342, 0.020619310438632965, 0.023234376683831215, 0.02239919826388359, 0.00021617503080051392, 0.00428199814632535, 0.0048946901224553585, -0.0026492939796298742, 0.016922621056437492, -0.02026333287358284, -0.009070579893887043, 0.022851016372442245, -0.001921936054714024, -0.0294913649559021, -0.010350730270147324, 0.018291765823960304, 0.005901011172682047, 0.013082172721624374, 0.0035221234429627657, 0.01312324684113264, -0.03077836148440838, 0.008091641589999199, 0.008536613546311855, -0.03192844241857529, 0.007537138648331165, 0.022809941321611404, -0.04299112781882286, -0.0323391854763031, 0.006674577947705984, -0.0006088413065299392, 0.0007949593127705157, 0.016060061752796173, -0.0030189629178494215, -0.03510485589504242, 0.012418137863278389, 0.016429729759693146, -0.015567168593406677, -0.015950528904795647, -0.010768318548798561, -0.006681423634290695, 0.002714328235015273, 0.0063562518917024136, -0.028697261586785316, 0.018086394295096397, -0.00655135465785861, 0.022768868133425713, 0.005716176703572273, 0.022084295749664307, 0.010740935802459717, 0.011877325363457203, 0.010809392668306828, 0.022467656061053276, 0.011760948225855827, 0.03154508024454117, -0.016101134940981865, -0.023713577538728714, 0.023330217227339745, -0.00476804468780756, 0.0023035849444568157, 0.01697738841176033, -0.025698835030198097, -0.006753303576260805, -0.017661958932876587, 0.029956873506307602, 0.006198800168931484, 0.03373571112751961, -0.009234877303242683, 0.015964221209287643, 0.0028016113210469484, -0.0008873765473254025, -0.0059386626817286015, -0.018729891628026962, -0.01191839948296547, -0.03222965449094772, 0.012876801192760468, -0.0058051710948348045, 0.004011592362076044, -0.00865983683615923, 0.016813090071082115, -0.026410790160298347, 0.0351870059967041, -0.0002149984211428091, 0.0076124416664242744, -0.013047943823039532, -0.009385483339428902, -0.0009686694829724729, -0.0018260959768667817, 0.0006071298848837614, -0.021961072459816933, -0.03784314543008804, -0.009385483339428902, -0.006530817598104477, -0.010015289299190044, 0.014663534238934517, 0.005651142448186874, -0.02083837427198887, -0.03321543708443642, -0.0104602612555027, 0.0073317671194672585, 0.006417863070964813, -0.019482921808958054, 0.014020035974681377, -0.01310270931571722, -0.01484152302145958, 0.004973416216671467, 0.008735139854252338, -0.015485020354390144, 0.0021649592090398073, 0.007995801977813244, -0.010473952628672123, -0.0209205225110054, 0.007372841238975525, 0.009248568676412106, 0.04299112781882286, 0.005955777131021023, -0.013041097670793533, 0.00022569485008716583, 0.009070579893887043, 0.03354403004050255, -0.009809917770326138, -0.012493439950048923, 0.029847342520952225, 0.03390000760555267, 0.0032842345535755157, 0.008235402405261993, -0.018702508881688118, 0.024343382567167282, 0.026999522000551224, 0.024754125624895096, 0.0007701435824856162, -0.018757274374365807, 0.006503434851765633, -0.03847295045852661, 0.017374439164996147, 0.0005446626455523074, 0.02691737376153469, -0.001838076044805348, 0.007530292961746454, -0.009542934596538544, -0.012664583511650562, 0.006503434851765633, 0.018100086599588394, 0.007975264452397823, -0.019044796004891396, 0.005774365272372961, -0.0018877075053751469, 0.031791526824235916, 0.028176987543702126, 0.013472378253936768, 0.0017011616146191955, -0.01983889937400818, 0.00905688852071762, 0.00444629555568099, 0.025479773059487343, 0.024658286944031715, -0.022234901785850525, -0.026095887646079063, -0.0014957899693399668, 3.7571240682154894e-05, -0.003123359987512231, -0.0017627731431275606, -0.0005155683611519635, -0.009159574285149574, 0.024836275726556778, -0.026424482464790344, 0.017525045201182365, 0.00803687609732151, 0.001340049784630537, 0.027560871094465256, 0.0034827603958547115, -0.022317050024867058, 0.041156474500894547, 0.017305981367826462, 0.04696164280176163, 0.019222784787416458, -0.011425508186221123, 0.027601946145296097, -0.046249691396951675, 0.0031438972800970078, -0.03466672822833061, 0.005000798963010311, 0.008454465307295322, 0.008577687665820122, 0.011713027954101562, 0.03554298356175423, 0.021276500076055527, 0.019510304555296898, 0.006678000558167696, 0.007708281744271517, -0.0190311037003994, -0.0012193940347060561, 0.0031096686143428087, -0.03321543708443642, -0.00185176741797477, -0.03792529180645943, -0.008379162289202213, -0.009549780748784542, -0.010432878509163857, 0.0012185382656753063, -0.00569563964381814, -0.010487644001841545, -0.0025705681182444096, -0.024288617074489594, 0.004083472304046154, 0.013314926996827126, 0.01008374709635973, -0.00655135465785861, -0.007379686925560236, -0.015101660043001175, 0.011432353407144547, 0.01379412692040205, -0.008625607937574387, -0.018716201186180115, -0.014088493771851063, 0.0043162270449101925, -0.00803687609732151, 0.026136962696909904, -0.009029505774378777, 0.023987405002117157, -0.013006869703531265, 0.01722383312880993, -0.018894189968705177, 0.009939986281096935, -0.00036710177664645016, -0.02012641914188862, -0.022371815517544746, -0.024795200675725937, -0.001957876142114401, 0.017141684889793396, -0.012089543044567108, -0.02030440792441368, 0.059530388563871384, 0.0002667691733222455, 0.0028632227331399918, -0.004949456080794334, 0.005055564921349287, 9.268464054912329e-05, -0.010994227603077888, -0.03072359412908554, 0.0015334414783865213, -0.027793627232313156, -0.010035826824605465, 0.018004246056079865, 0.001781598781235516, -0.0072153895162045956, 0.024754125624895096, 0.006102960091084242, -0.029765194281935692, -0.02035917341709137, -0.018045319244265556, -0.012212765403091908, -0.00625356612727046, 0.02003057859838009, 0.0064794747158885, -0.020605619996786118, -0.027191203087568283, -0.015895763412117958, -0.01697738841176033, -0.008844670839607716, 0.004521598573774099, -0.01626543328166008, 0.0050179134123027325, 0.0011192753445357084, 0.011281747370958328, -0.0004193003987893462, 0.01697738841176033, -0.00576751958578825, -0.028368666768074036, -0.009939986281096935, 0.00851607695221901, 0.0011269768001511693, 0.015265957452356815, 0.0047475071623921394, 0.010378113016486168, 0.01693631336092949, -0.014239098876714706, 0.010049518197774887, -0.016813090071082115, 0.01892157271504402, 0.0027622482739388943, -0.030504532158374786, 0.011035301722586155, 0.001073066727258265, 0.006654040422290564, 0.04394952580332756, -0.025904206559062004, 0.02293316461145878, 0.01611482724547386, 0.053341858088970184, -0.014636150561273098, 0.031846292316913605, 0.014321248047053814, 0.012021085247397423, -0.00663350336253643, -0.0213997233659029, -0.018182234838604927, -0.00638705724850297, -0.013397075235843658, -0.0076192873530089855, -0.0056579881347715855, -0.029080621898174286, 0.01849713735282421, -0.0018260959768667817, -0.05646350607275963, -0.013520298525691032, 0.0309152752161026, 0.007852042093873024, -0.02549346350133419, -0.0030309429857879877, 0.013732516206800938, 0.009556625969707966, 0.006472629029303789, 0.00018130464013665915, 0.025479773059487343, -0.019811516627669334, 0.001654952997341752, -0.021180659532546997, -0.022084295749664307, -0.00569563964381814, -0.0190311037003994, 0.0029025855474174023, 0.021700935438275337, -0.031271252781152725, -0.05635397508740425, -0.01649818755686283, 0.021481871604919434, 0.026191728189587593, 0.032503481954336166, -0.018017936497926712, -0.0023686194326728582, 0.03258563205599785, -0.02411062829196453, -0.02858773060142994, 0.00033843531855382025, -0.01697738841176033, -0.00787257868796587, -0.006691691931337118, 0.015580860897898674, -0.02335759997367859, -0.010898387059569359, 0.019962122663855553, 0.003515277523547411, 0.009221185930073261, 0.019660910591483116, 0.0030822858680039644, -0.026082195341587067, -0.0011466582072898746, -0.0017482258845120668, 0.02710905484855175, -0.0050966390408575535, -0.0006567613454535604, 0.023768343031406403, -0.02320699393749237, -0.0154576376080513, -0.011706182733178139, 0.00545946229249239, -0.026424482464790344, 0.023124845698475838, 0.010542410425841808, -0.003758300794288516, 0.008283321745693684, 0.011569268070161343, -0.0021906306501477957, 0.01945553906261921, 0.003078863024711609, 0.02453506365418434, 0.0022197249345481396, 0.0006417863187380135, 0.0011004495900124311, -0.019181709736585617, 2.898734965128824e-05, 0.03428336977958679, -0.019017411395907402, 0.04600324481725693, 0.012575589120388031, -0.02539762482047081, 0.013787281699478626, -0.013143783435225487, -0.025219636037945747, -0.018798349425196648, 0.005486845038831234, 0.024138011038303375, 0.016429729759693146, 0.0047440845519304276, -0.017963171005249023, -0.014554002322256565, 0.006174840033054352, 0.007543984334915876, 0.00944024883210659, -0.03724072128534317, -0.0072701554745435715, -0.006072154268622398, 0.001494078547693789, 0.006051617208868265, -0.003261985955759883, 0.009775688871741295, -0.02768409438431263, -0.008735139854252338, -0.018154852092266083, 0.0009481323068030179, 0.01749766245484352, 0.014211716130375862, 0.012308605946600437, -0.03105218894779682, -0.009974215179681778, 0.014786756597459316, -0.031079571694135666, -0.026903683319687843, 0.0021136163268238306, 0.028368666768074036, 0.015087968669831753, 0.015375488437712193, 0.023439748212695122, -0.023809416219592094, -0.00663350336253643, 0.0190311037003994, 0.0015454214299097657, -0.009145882911980152, -0.007188006769865751, -0.02291947230696678, -0.0072701554745435715, -0.0032996374648064375, 0.0332975871860981, 0.0020297563169151545, -0.016279123723506927, 0.0011440911330282688, 0.014485545456409454, -0.009262260049581528, 0.01874358393251896, -0.0079684192314744, -0.02897109091281891, -0.000526264775544405, -0.0013451841659843922, -0.004812541883438826, -0.004370992537587881, -0.02943659946322441, -0.02297423966228962, -6.995470903348178e-05, -0.006041348446160555, 0.032695163041353226, 0.017086919397115707, 0.008885745890438557, -0.018634051084518433, 0.00960454624146223, -0.004826233256608248, 0.03154508024454117, 0.002993291476741433, 0.02274148352444172, -0.03606325760483742, 0.005151404999196529, 0.010337037965655327, 0.014773065224289894, 2.2312103737931466e-06, -0.010145357809960842, -0.008981585502624512, 0.01721014268696308, 0.003169568721204996, -0.004521598573774099, -0.007318075280636549, 0.01774410903453827, -0.011206445284187794, -0.02962827868759632, -0.026191728189587593, -0.0016327043995261192, -0.015279648825526237, 0.017908405512571335, 0.0183054581284523, -0.002728019841015339, 0.010487644001841545, -0.008646145462989807, -0.01816854253411293, 0.028176987543702126, -0.018812039867043495, 0.046496134251356125, -0.007092166692018509, 0.022371815517544746, 0.03647400066256523, 0.022029530256986618, 0.03748716786503792, -0.04148506745696068, -0.033407118171453476, -7.760266453260556e-05, 0.036939509212970734, 0.03086050972342491, -0.026520323008298874, -0.010877850465476513, -0.0017576387617737055, 0.002211167709901929, -0.007913652807474136, -0.019195400178432465, 0.024315999820828438, 0.011213290505111217, 0.01069986168295145, 0.007393378298729658, 0.012212765403091908, -0.02853296510875225, -0.008386007510125637, -0.0033834974747151136, -0.0020571390632539988, -0.010658787563443184, -0.0012484883191064, -0.017620885744690895, -0.002736576832830906, -0.011596650816500187, 0.026712002232670784, 0.011767794378101826, -0.012048468925058842, -0.020386556163430214, 0.0015591129194945097, -0.045400820672512054, 0.006476051639765501, -0.007687744218856096, 0.025931591168045998, -0.008249093778431416, -0.007427607197314501, 0.021961072459816933, 0.003617963520810008, 0.007448144257068634, -0.01697738841176033, 0.009241723455488682, 0.04871414974331856, -0.010117975063621998, 0.013965270482003689, -0.02235812321305275, 0.0006349405739456415, 0.039595648646354675, 0.009611392393708229, 0.0021136163268238306, -0.00155825715046376, -0.026383407413959503, -0.005185633432120085, 0.0070579382590949535, 0.006157726049423218, 0.02078360877931118, 0.00827647652477026, 0.014855214394629002, -0.02564406953752041, 0.0034057460725307465, 0.025137485936284065, 0.018579285591840744, -0.04071834683418274, -0.01512904278934002, -0.019852589815855026, -0.021851541474461555, 0.0027245967648923397, 0.00011980011186096817, -0.01616959273815155, 0.0034776262473315, 0.038116972893476486, -0.027834700420498848, 0.01588207297027111, -0.004449718631803989, -0.0033081944566220045, -0.010905233211815357, -0.010254889726638794, -0.011309131048619747, -0.02212536893785, 0.03324282169342041, -0.0026270453818142414, 0.009303334169089794, -0.029655663296580315, -0.001044828095473349, 0.025219636037945747, -0.013978961855173111, 0.030997423455119133, 0.014471854083240032, -0.01519749965518713, 0.01436232216656208, 0.0021974763367325068, -0.020222259685397148, 0.004412067122757435, 0.00514798192307353, 0.011398125439882278, -0.003926021046936512, -0.00781096750870347, 0.0020451589953154325, -0.01084362156689167, -0.02197476290166378, 0.0033561144955456257, -0.04509960860013962, -0.0313807837665081, 0.010754627175629139, -0.0011517924722284079, -0.016087444499135017, 0.011767794378101826, -0.04310065880417824, -0.020797299221158028, -0.015443946234881878, 0.0032020858488976955, -0.0014820985961705446, -0.00905688852071762, 0.030696211382746696, 0.03168199583888054, -0.005106907803565264, 0.0006456370465457439, -0.016580335795879364, -0.023960022255778313, -0.017305981367826462, -0.04696164280176163, -0.03748716786503792, -0.0016951715806499124, -0.01811377704143524, 0.043593548238277435, -0.004083472304046154, -0.02235812321305275, -0.012472903355956078, 0.0021718048956245184, -0.017442896962165833, -0.002868357114493847, 0.009782535023987293, 0.04096479341387749, 0.011350205168128014, -0.0016164458356797695, 0.012370217591524124, 0.03337973356246948, -0.015923146158456802, 0.009755152277648449, -0.004586632829159498, 0.01319854985922575, -0.0073317671194672585, -0.012753577902913094, 0.0003923453623428941, -0.007475527003407478, -0.016333889216184616, -0.021427106112241745, -1.9962228179792874e-05, -0.007153778336942196, -0.002089656190946698, 0.0275882538408041, -0.00405608955770731, -0.011096913367509842, -0.027177510783076286, -0.011213290505111217, -0.021714625880122185, 0.003710380755364895, -0.01859297789633274, -0.01655295304954052, -0.0033578260336071253, 0.0173607487231493, 0.005764096975326538, -0.014951054006814957, 0.0021700935903936625, 0.0003619674826040864, -0.014485545456409454, 0.022412890568375587, -0.022248592227697372, 0.00974830612540245, -0.015964221209287643, 0.012986332178115845, 0.014088493771851063, -0.0099879065528512, 0.008735139854252338, 0.03020332008600235, 0.005397850647568703, 0.009091117419302464, -0.02016749419271946, 0.012664583511650562, -0.046633049845695496, -0.038828928023576736, 0.00016932463040575385, 0.01110375951975584, 0.0016446844674646854, -0.004234078340232372, 0.018716201186180115, -0.021564019843935966, -0.025945281609892845, 0.028313901275396347, -0.0036282320506870747, -0.05032973736524582, 0.013903658837080002, 0.00958400871604681, -0.021002670750021935, -0.019181709736585617, -0.007817813195288181, -0.01279465202242136, -0.00756452139467001, -0.01955137774348259, 0.018141159787774086, -0.022481346502900124, 0.008481848053634167, 0.023439748212695122, 0.009563472121953964, 0.012383908964693546, 0.01579992286860943, 0.029956873506307602, -0.015142734162509441, -0.011986857280135155, 0.24381719529628754, -0.026383407413959503, -0.007324921432882547, 0.03072359412908554, -0.00028559492784552276, 0.009871529415249825, 0.0001116708226618357, 0.00277593987993896, -0.0016044657677412033, -0.002111904788762331, -0.005688793957233429, -0.004470255691558123, -0.015485020354390144, -0.013273852877318859, 0.025438698008656502, -0.012767269276082516, -0.0394861176609993, -0.020865757018327713, -0.017305981367826462, -0.01716906763613224, 0.005870205350220203, 0.016306506469845772, -0.025507155805826187, -0.012253840453922749, 0.007708281744271517, 0.0016267143655568361, -0.01993473805487156, 0.016867855563759804, 0.016374964267015457, 0.028615113347768784, -0.018853114917874336, 0.01693631336092949, -0.005257513374090195, -5.046045043854974e-05, 0.007715127430856228, -0.021468181163072586, 0.023809416219592094, 0.019797824323177338, 0.02725966088473797, 0.008433927781879902, -0.0034827603958547115, -0.0015625357627868652, -0.0005767519469372928, -0.030093789100646973, 0.009248568676412106, 0.024699360132217407, 0.0062877945601940155, -0.011336513794958591, -0.011357050389051437, -0.002110193483531475, -0.0485224686563015, -0.010186432860791683, 0.0366109162569046, 0.013260161504149437, -0.00491180457174778, -0.008406545035541058, -0.006951829418540001, -0.004966570530086756, 0.014937362633645535, 0.01759350299835205, -0.014403396286070347, 0.02987472526729107, -0.01005636341869831, 0.005503959488123655, -0.010070054791867733, -0.0014743971405550838, -0.014334939420223236, 0.01148711983114481, 0.02397371456027031, -0.012007393874228, -0.026794150471687317, -0.022180134430527687, -0.007509755901992321, -0.01645711250603199, -0.013711978681385517, -0.0228236336261034, 0.0570659302175045, 0.019578760489821434, 0.01907217875123024, 0.027889465913176537, -0.013047943823039532, 0.01484152302145958, 0.0025979510974138975, -0.010172741487622261, 0.001648962963372469, -0.015019511803984642, 0.016279123723506927, -0.012609818018972874, -0.014567693695425987, -0.006137188524007797, -0.009022659622132778, -0.005630605388432741, 0.005267782136797905, 0.012767269276082516, 0.010809392668306828, 0.013903658837080002, -0.00670538330450654, 0.023809416219592094, -0.027519797906279564, -0.005558725446462631, -0.021002670750021935, 0.04134815186262131, 0.026670929044485092, 0.026712002232670784, -0.013458686880767345, -0.005671679507941008, 0.009008968248963356, 0.01726490817964077, 0.016621410846710205, 4.778633956448175e-05, -0.005127444863319397, -0.033270202577114105, 0.008550304919481277, -0.004004746675491333, -0.01632019877433777, 0.012520823627710342, -0.008125870488584042, -0.020756226032972336, -0.026575088500976562, 0.0034553776495158672, -0.005271205212920904, -0.018291765823960304, -0.011911554262042046, 0.017798874527215958, -0.014759373851120472, -0.0034194374457001686, -0.005699062719941139, -0.00967984925955534, -0.012055314145982265, -0.02539762482047081, 0.029573513194918633, -0.03515962138772011, 0.0228236336261034, -4.5834240154363215e-05, -0.005493690725415945, 0.020564544945955276, 0.003970518242567778, -0.03937658667564392, 0.01039180438965559, -0.00015574014105368406, -0.002842685440555215, 0.009084271267056465, 0.0016232915222644806, 0.014115876518189907, 0.007591904141008854, -0.013787281699478626, 0.00991944968700409, 0.005801748484373093, 0.010501335375010967, -0.028697261586785316, -0.04247085005044937, -0.003022385761141777, 0.01137074176222086, -0.009050043299794197, 0.013711978681385517, -0.008310705423355103, 0.0058667827397584915, -0.05980421602725983, -0.0005125733441673219, 0.0067088063806295395, -0.06314492970705032, 0.018716201186180115, 0.01974305883049965, -0.036939509212970734, 0.012308605946600437, -0.015758849680423737, -0.174155130982399, 0.011473428457975388, 0.023083770647644997, -0.01768934167921543, 0.02791684865951538, 0.007023709360510111, 0.0006516270223073661, -0.007283846847712994, -0.00905688852071762, -0.01897633820772171, 0.027465032413601875, -0.006951829418540001, -0.03190105780959129, -0.017949480563402176, -0.004086895380169153, 0.00781096750870347, -0.009789380244910717, -0.003303060308098793, 0.04551035165786743, 0.016826782375574112, 0.03316067159175873, -0.036118023097515106, -0.015950528904795647, 0.026944756507873535, 0.007153778336942196, 0.015594552271068096, -0.01115167886018753, 0.004637975711375475, 0.0013246469898149371, -0.03225703537464142, -0.011644571088254452, 0.007359149865806103, 0.0074960640631616116, -0.011179061606526375, -0.008885745890438557, -0.0013417613226920366, -0.00040026073111221194, -0.00880359672009945, -0.02174200862646103, -0.0020571390632539988, -0.00638705724850297, 0.03406430780887604, -0.00530201056972146, 0.000834322243463248, -0.008262785151600838, 0.008646145462989807, 0.019154326990246773, -0.001528307213447988, 0.01429386530071497, 0.023097461089491844, 0.026985831558704376, -0.018442371860146523, 0.009378637187182903, -0.009501860477030277, 0.02905323915183544, 0.017908405512571335, -0.0023121421691030264, 0.004357301164418459, -0.019948430359363556, 0.020769916474819183, -0.00010332759848097339, -0.012760423123836517, -0.002159824827685952, 0.04619492217898369, 0.0041930037550628185, -0.025712527334690094, -0.03277730941772461, 0.035323917865753174, -0.028888940811157227, -0.003219200298190117, 0.009734614752233028, 0.0029299685265868902, 0.02372726798057556, -0.006537663284689188, 0.019277550280094147, 0.016196975484490395, -0.008646145462989807, 0.0002763959637377411, 0.02630125917494297, 0.00646920595318079, -0.01110375951975584, 0.057723116129636765, 0.003226045984774828, -0.01336284726858139, 0.02662985399365425, -0.013287544250488281, 0.0013058212352916598, -0.014047418721020222, -0.024329692125320435, -0.019510304555296898, 0.020564544945955276, -0.038746777921915054, 0.010549255646765232, -0.004182735458016396, 0.00927595142275095, -0.00029072919278405607, -0.0070168636739254, -0.019482921808958054, -0.02059192769229412, -0.017634576186537743, -0.0019921048078686, -0.0032722544856369495, -0.02797161415219307, 0.00413823826238513, 0.02235812321305275, -0.0002554309612605721, -0.007687744218856096, 0.014951054006814957, 0.04737238958477974, 0.015101660043001175, -0.000498454028274864, 0.007941036485135555, 0.020044270902872086, 0.025958973914384842, 0.009611392393708229, 0.014554002322256565, -0.004819387570023537, -0.020797299221158028, 0.012520823627710342, 0.010213815607130527, -0.005620336625725031, -0.011014765128493309, 0.03562512993812561, 0.03222965449094772, 0.006595851853489876, -0.015717774629592896, -0.06292586773633957, -0.017771491780877113, -0.01474568247795105, 0.006174840033054352, -0.01015220396220684, -0.004155352711677551, -0.0028871826361864805, 0.041402921080589294, 0.010419187135994434, 0.025151178240776062, -0.015183808282017708, -0.05049403756856918, -0.015895763412117958, -0.0026116424705833197, -0.013547681272029877, 0.020099036395549774, -0.013753052800893784, -0.014540310949087143, 0.022180134430527687, 0.033461883664131165, 0.001465839915908873, -0.017826257273554802, -0.01169933658093214, -0.005983159877359867, 0.017196450382471085, 0.013301235623657703, -0.010234352201223373, 0.024849966168403625, 0.018483446910977364, 0.03858248144388199, 0.03855510056018829, -0.013780435547232628, -0.0005673391278833151, 0.013356001116335392, 0.008735139854252338, -0.006565046031028032, -0.011240673251450062, -0.02368619479238987, 0.031271252781152725, -0.013075326569378376, 0.004299112595617771, -0.005093216430395842, 0.01926385797560215, -0.013684595935046673, -0.022029530256986618, -0.02111220359802246, -0.015758849680423737, 0.027081672102212906, -0.010090592317283154, -0.00882413424551487, -0.03639185056090355, -0.03105218894779682, -0.017771491780877113, -0.014786756597459316, 0.017949480563402176, 0.01622435823082924, -0.004590055905282497, 0.02116696909070015, -0.028313901275396347, -0.00911165401339531, -0.02426123432815075, -0.014896288514137268, -0.012986332178115845, 0.021331265568733215, 0.03034023381769657, 0.02001688815653324, -0.022248592227697372, -0.019058486446738243, 0.03485840931534767, -0.00468589598312974, -0.019017411395907402, 0.041266005486249924, -0.020893139764666557, 0.028752027079463005, -0.031134337186813354, -0.019989505410194397, -0.006010542623698711, -0.0032311801332980394, 0.016525570303201675, -0.011685645207762718, -0.012281223200261593, -0.016854165121912956, -0.001479531405493617, -0.0048775761388242245, 0.016374964267015457, 0.03855510056018829, -0.0014538599643856287, 0.006558200344443321, 0.01935969851911068, -0.026794150471687317, 0.040690965950489044, 0.018428679555654526, -0.004162198398262262, -0.031216487288475037, 0.018702508881688118, -0.014334939420223236, 0.009159574285149574, 0.019250167533755302, -0.010384958237409592, 0.021906306967139244, -0.033982157707214355, -0.038828928023576736, -0.0851060003042221, 0.024124320596456528, -0.029984256252646446, -0.001051673898473382, 0.022796250879764557, 0.004169044084846973, 0.01281518954783678, 0.011432353407144547, -0.004812541883438826, 0.002799899782985449, -0.022563494741916656, 0.026616161689162254, 0.012041622772812843, -0.026889991015195847, -0.02549346350133419, -0.018469754606485367, 0.012397600337862968, -0.0006648906273767352, 0.0025996624026447535, 0.0039020609110593796, -0.0015616799937561154, 0.02001688815653324, 0.024315999820828438, -0.0037411863449960947, -0.0038849464617669582, 0.01968829333782196, -0.005308856256306171, 0.009214339777827263, -0.011726719327270985, -0.023029005154967308, 0.007735664490610361, -0.009898912161588669, 0.02491842396557331, 0.027122745290398598, -0.006277525797486305, 0.006075577344745398, -0.001879150397144258, 0.00016739926650188863, 0.03302375599741936, 0.027615638449788094, -0.00896789412945509, -0.03573466092348099, 0.009337563067674637, -0.023289142176508904, 0.0037685693241655827, 0.0036521919537335634, -0.014403396286070347, -0.0009943409822881222, 0.02012641914188862, -0.015635626390576363, 0.0180727019906044, 0.0012322297552600503, -0.021673552691936493, -0.04890583083033562, -0.009878374636173248, -0.044771015644073486, 0.01911325193941593, 0.009542934596538544, -0.005154827609658241, 0.006664309184998274, 0.011624033562839031, 0.0020947905723005533, 0.000827476498670876, -0.01693631336092949, 0.003234602976590395, -0.011589805595576763, -0.018812039867043495, 0.00726330978795886, -0.0036693064030259848, -0.005514228250831366, -0.021180659532546997, -0.01740182191133499, -0.008105332963168621, 0.007201698143035173, -0.012472903355956078, -0.005911279935389757, 0.0050350273959338665, 0.023371290415525436, -0.03748716786503792, 0.033790476620197296, 0.020003195852041245, -0.017483970150351524, -0.013965270482003689, 0.010686170309782028, 0.014225407503545284, -0.005808594170957804, -0.007393378298729658, 0.005637451075017452, -0.02072884328663349, 0.015334414318203926, -0.0009549780515953898, 0.00694498373195529, 0.009673003107309341, 0.006869680713862181, 0.00811217911541462, 0.02653401345014572, 0.009816763922572136, -0.018825732171535492, 0.012842572294175625, 0.018428679555654526, 0.001529162866063416, 0.001613878645002842, 0.0055176508612930775, -0.024849966168403625, -0.013787281699478626, 0.00253805099055171, -0.010049518197774887, -0.043073274195194244, 0.009837300516664982, 0.0055244965478777885, -0.01721014268696308, 0.0021478449925780296, -0.0033578260336071253, 0.010453416034579277, -0.011658262461423874, 0.019195400178432465, -0.023001622408628464, -0.025575613602995872, -0.04389476031064987, 0.022056913003325462, 0.004258038476109505, 0.019277550280094147, 0.02406955510377884, 0.007297538220882416, 0.03485840931534767, -0.007400223985314369, 0.009166420437395573, -0.031654611229896545, -0.010898387059569359, -0.0030668829567730427, -0.010138512589037418, 0.02059192769229412, -0.021988455206155777, -0.02524701878428459, -0.028998473659157753, 0.004692741669714451, -0.016347581520676613, -0.0040526664815843105, 0.0007384821074083447, 0.07092166692018509, 0.00825593899935484, 0.0011466582072898746, 0.007153778336942196, -0.015170116908848286, -0.006958675105124712, 0.00694498373195529, 0.013992653228342533, 0.007140086963772774, -0.017730416730046272, 0.030641445890069008, -0.007318075280636549, -0.033790476620197296, -0.033078521490097046, 0.00670538330450654, 0.017100609838962555, -0.034885793924331665, 0.031216487288475037, -0.018141159787774086, 0.01935969851911068, 0.023905256763100624, -0.005976314190775156, 0.0010884696384891868, 0.010528718121349812, -0.029080621898174286, -0.006256988737732172, 0.01358191017061472, -0.0005254090647213161, -0.007537138648331165, -0.001142379711382091, 0.010576638393104076, -0.009782535023987293, -0.011185907758772373, -0.03159984573721886, -0.01684047281742096, 0.017634576186537743, -0.010617712512612343, -0.003339000279083848, 0.045784179121255875, -0.0007765614427626133, -0.0011757524916902184, -0.004973416216671467, -0.03562512993812561, -0.028615113347768784, 0.0050350273959338665, -0.013828355818986893, -0.0024182507768273354, -0.006339137442409992, -0.02801268920302391], "af0dfa52-56da-4cda-91fa-0cb38fc91cb3": [0.003532794304192066, 0.012257052585482597, -0.020246023312211037, -0.0224347822368145, 0.004753711633384228, 0.013460869900882244, -0.012920520268380642, -0.011374708265066147, 0.008440403267741203, -0.018070943653583527, 0.01956203579902649, 0.014910923317074776, -0.002744498895481229, -0.0041244435124099255, -0.01357030775398016, 0.00046895878040231764, 0.010718081146478653, -0.013036797754466534, 0.021354082971811295, -0.02049225941300392, 0.0014397932682186365, 0.00691169174388051, -0.0021648197434842587, -0.0085977204144001, -0.02054697833955288, 0.007346023339778185, 0.007482821121811867, -0.026880700141191483, -6.455129914684221e-05, -0.013864422217011452, 0.02370699867606163, -0.014131177216768265, -0.0020793213043361902, -0.01767423190176487, -0.022256946191191673, -0.0005540297133848071, -0.013809703290462494, -0.00017698171723168343, 0.005827571731060743, -0.017934147268533707, 0.03794761374592781, 0.004302280023694038, 0.008755037561058998, 0.002156269969418645, -0.009268027730286121, 0.003820069134235382, -0.04175058379769325, 0.017701590433716774, -0.009131230413913727, 0.025020254775881767, -0.0003471235395409167, 0.008926033973693848, -0.02231166511774063, -0.013960180804133415, -0.010492364875972271, 0.021696077659726143, -0.01697656512260437, 0.020847933366894722, 0.005854931194335222, -0.021914953365921974, 0.00517436396330595, 0.005232502706348896, -0.01514347828924656, 0.004668213427066803, -0.00809840951114893, 0.000991781591437757, -0.025622164830565453, 0.003144631627947092, -0.021422481164336205, -0.01942523941397667, 0.007653818000108004, 0.008187327533960342, 0.007776935584843159, 0.004257821012288332, 0.029438812285661697, 0.0060396078042685986, -0.003775609889999032, -0.025485366582870483, 0.012687964364886284, -0.0001232245849678293, 0.0031873807311058044, -0.006952730938792229, 7.187209848780185e-05, -0.0073323436081409454, 0.009425344876945019, -0.011874019168317318, -0.003970546182245016, 0.024363627657294273, 0.004086824133992195, -0.02826235443353653, 0.006542338524013758, 0.03827592730522156, 0.010779639706015587, 0.006658616475760937, 0.01224337238818407, -0.03058791160583496, 0.0014910922618582845, 0.02259894087910652, -0.004480116534978151, -0.02973976731300354, -0.0245414637029171, 0.022681018337607384, -0.024746660143136978, 0.0028282874263823032, -0.031107742339372635, 0.0021990190725773573, 0.014678367413580418, 0.003775609889999032, 0.0010866847587749362, -0.01908324472606182, 0.00025670896866358817, 0.035321105271577835, -0.015553871169686317, -0.020847933366894722, -0.01437741331756115, -0.006720175035297871, 0.016867127269506454, -0.021381443366408348, -0.0091175502166152, 0.00542059913277626, 0.023050371557474136, 0.03633340448141098, 0.014774125069379807, 0.0017159531125798821, 0.007633298169821501, -0.00712030753493309, -0.02659342624247074, 0.018111983314156532, -0.003117272164672613, -0.03190116584300995, 0.04265344887971878, -0.01199713721871376, 0.020163945853710175, 0.0042715007439255714, -0.004264660645276308, 0.02013658545911312, -0.01794782653450966, 0.010936956852674484, -0.017154401168227196, -0.010547083802521229, 0.02763308584690094, 0.01570434868335724, 0.00030544307082891464, -0.008146288804709911, 0.007694857195019722, -0.001985273091122508, 0.018754931166768074, 0.0071545070968568325, 0.011087434366345406, -0.00785217434167862, 0.01209289487451315, -0.0013884941581636667, 0.022612620145082474, 0.00391240743920207, -0.0030591331887990236, -0.0049486481584608555, 0.002250318182632327, 0.015977943316102028, -0.004900768864899874, -0.0011935578659176826, 0.02321452833712101, 0.014473170973360538, 0.021737115457654, -0.01175090204924345, 0.00459639448672533, 0.03701739385724068, -0.003264329396188259, -0.0046545336954295635, 0.011463627219200134, -0.002221248811110854, -0.015334995463490486, 0.0010465005179867148, -0.012133934535086155, 0.0012970109237357974, -0.0266481451690197, 0.0046921526081860065, -0.010677041485905647, 0.01529395580291748, -0.016005301848053932, -0.012229693122208118, -0.020793214440345764, -0.02826235443353653, 0.026757583022117615, 0.019055886194109917, -0.009062831290066242, -0.0004706687468569726, 0.007886373437941074, -0.003293398767709732, -0.004767391365021467, -0.006128526292741299, 0.02987656556069851, 0.03247571736574173, 0.024951856583356857, 0.008577200584113598, -0.6321136951446533, -0.03050583228468895, -8.758243347983807e-05, -0.01956203579902649, 0.007359703071415424, -0.007783775217831135, -0.00161848496645689, 0.0010242710122838616, -0.004958908073604107, 0.03540318086743355, -0.0017339077312499285, 0.009897296316921711, -0.00237514590844512, -0.016867127269506454, -0.008775557391345501, -0.018153022974729538, -0.004497216548770666, -0.04161378741264343, -0.00984941702336073, 0.006121686194092035, 0.005728393793106079, -0.008180487900972366, -0.024527784436941147, 0.0013970440486446023, -0.0008391669252887368, 0.012729003094136715, -0.009815217927098274, 0.0003793991927523166, -0.007462301291525364, 0.03466447442770004, -0.0018587354570627213, 0.006949310656636953, -0.007900053635239601, -0.009603181853890419, 0.058385156095027924, -0.005030726548284292, -0.006234544329345226, 0.030341675505042076, -0.0029685047920793295, 0.03991749882698059, -0.030916225165128708, -0.022626299411058426, -0.0009413374937139452, 0.009486903436481953, 0.006001988425850868, -0.013693425804376602, 0.04027317091822624, -0.025923117995262146, -0.009630541317164898, 0.023871157318353653, -0.007811134681105614, -0.02377539873123169, 0.004887089133262634, -0.011586744338274002, -0.009651060216128826, -0.0026077015791088343, 0.0032557793892920017, -0.02231166511774063, -0.004521156195551157, -0.00866611860692501, -0.025567444041371346, 0.012373330071568489, -0.01437741331756115, -0.017496393993496895, -0.01794782653450966, -0.008672959171235561, -0.023269247263669968, -0.030970944091677666, 0.00587203074246645, -0.009158589877188206, -0.001692013582214713, -0.003315628506243229, -0.0032386798411607742, 0.008809756487607956, 0.012058695778250694, 0.028918983414769173, 0.02603255584836006, -0.045279957354068756, -0.0013517298502847552, 0.005410339683294296, -0.009651060216128826, 0.013488229364156723, -0.03099830448627472, -0.011730382218956947, -0.00014449231093749404, -0.036442842334508896, -0.037619300186634064, 0.004435657523572445, 0.031955886632204056, -0.005437699146568775, 0.010362407192587852, -0.0030659730546176434, 0.0007164767012000084, -0.0112242316827178, 0.008454082533717155, 0.022188547998666763, -0.004220201633870602, 0.0008105249144136906, 0.0199997890740633, -0.012003976851701736, -0.04175058379769325, 0.005957529414445162, -0.002370015950873494, -0.0018997746519744396, 0.029630329459905624, -0.03709946945309639, -0.028809545561671257, 0.004500636365264654, 0.04005429521203041, -0.0009105580975301564, -0.0043946183286607265, -0.011402067728340626, -0.01711336150765419, -0.018604453653097153, -0.005389819853007793, -0.030752068385481834, 0.002640190999954939, 0.0103487279266119, 0.010977995581924915, 0.009083351120352745, 0.0012294671032577753, -0.0061866650357842445, 0.022913575172424316, 0.0035977731458842754, -0.002898396225646138, 0.013638706877827644, -0.008283086121082306, -0.004107343498617411, -0.00956898182630539, 0.0020690616220235825, 6.086418216000311e-05, 0.013036797754466534, 0.016456734389066696, -0.019657794386148453, -0.0007609358872286975, -0.015211877413094044, 0.009808377362787724, -0.00652523897588253, 0.000991781591437757, -0.016566172242164612, -0.02960296906530857, -0.0025016835425049067, 0.001308980630710721, 0.00870031863451004, -0.0018518955912441015, -0.014705726876854897, -0.027318451553583145, -0.002927465597167611, 0.0007771805394440889, 0.04503372311592102, 0.018344538286328316, 0.0033771872986108065, -0.012879480607807636, 0.014842524193227291, -0.009910975582897663, -0.011333669535815716, 0.012017657049000263, -0.019794592633843422, -0.012537486851215363, -0.0022178287617862225, -0.004811850376427174, -0.0013893492287024856, -0.02462354302406311, -0.015895863994956017, -0.020724814385175705, 0.0038850477430969477, 0.0028009279631078243, 0.01114899292588234, -0.00922014843672514, -0.01864549331367016, -0.015800107270479202, 0.010362407192587852, -0.008159968070685863, -0.0070382291451096535, -0.001014011213555932, 0.004199681803584099, -0.008433563634753227, -0.00026611381326802075, 0.016744008287787437, -0.022489503026008606, -0.0041244435124099255, -0.009828897193074226, -0.003266039304435253, -0.008501961827278137, 0.022188547998666763, 0.017291199415922165, 0.006265323609113693, 0.007729056291282177, 0.009863096289336681, 0.006716755218803883, -0.012653765268623829, 0.0072707850486040115, 0.009979374706745148, 0.032721951603889465, 0.031025663018226624, 0.007605938706547022, -0.010738600045442581, 0.003950026817619801, -0.025977836921811104, 0.023406045511364937, 0.023118769749999046, 0.013666066341102123, -0.0019989528227597475, -0.018221421167254448, 0.020806893706321716, -0.03627868741750717, 0.008686638437211514, -0.0038884677924215794, 0.006812513340264559, 0.003628552658483386, -0.01887805014848709, -0.016648251563310623, 0.009062831290066242, -0.0020930010359734297, 0.024076351895928383, 0.03759194165468216, -0.020259704440832138, 0.009767338633537292, -0.00932274665683508, 0.013488229364156723, 0.003026643767952919, -0.007373382803052664, 0.005078605841845274, -0.042680807411670685, -0.004452757071703672, -0.007092948071658611, -0.0015329865273088217, 0.021655037999153137, -0.0033036586828529835, -0.015868505463004112, -0.0129752391949296, -0.015485472045838833, -0.01441845204681158, 0.007626458071172237, 0.02511601336300373, -0.028590667992830276, -0.002689779968932271, -0.01181930024176836, 0.03863160312175751, 0.020150264725089073, 0.0077153765596449375, 0.006884332280606031, 0.00118415302131325, -0.013618187047541142, 0.0220927894115448, 0.008686638437211514, 0.05898706242442131, 0.01395334117114544, -0.012571685947477818, 0.02112152799963951, -0.008782397024333477, -0.0018040165305137634, -0.0055231973528862, 0.02280413545668125, -0.002320426981896162, -0.02202439121901989, 0.014897243119776249, 0.02484241873025894, 0.02265365980565548, 0.03337857872247696, -0.005239342804998159, 0.017715271562337875, -0.01051972433924675, 0.023679640144109726, -0.006579957902431488, -0.030478473752737045, -0.002853936981409788, -0.006402120925486088, -0.017660552635788918, -0.023515483364462852, -0.016744008287787437, 0.0022879375610500574, 0.0024349947925657034, 0.0031035924330353737, 0.005324841011315584, -0.011060074903070927, 0.007947931997478008, 0.017578473314642906, 0.03477391228079796, 0.006583377718925476, -0.042051538825035095, -0.01796150580048561, -0.0035156947560608387, 0.014185896143317223, -0.007605938706547022, 0.010232449509203434, -0.017701590433716774, -0.011634623631834984, -0.006658616475760937, 0.024432025849819183, -0.014678367413580418, -0.007694857195019722, 0.009794698096811771, -0.008077889680862427, -0.004305699840188026, 0.010629162192344666, 0.027099575847387314, -0.016032662242650986, -0.055512409657239914, -0.011812460608780384, 0.011162672191858292, -0.00834464468061924, -0.005348780658096075, -0.0045724548399448395, 0.0512169674038887, 0.008878154680132866, 0.004599814303219318, -0.012934199534356594, 0.004192842170596123, -0.02517073228955269, -0.012886320240795612, -0.008440403267741203, 0.012195493094623089, 0.005937009584158659, 0.01051972433924675, -0.02554008550941944, 0.013474550098180771, 0.014609968289732933, -0.002636770950630307, 0.011053234338760376, -0.01080015953630209, -0.006918531376868486, -0.005553976632654667, 0.008262566290795803, -0.0065936376340687275, 0.006757794413715601, 0.014322693459689617, 0.00461007421836257, -0.02154560014605522, 0.014103817753493786, -0.015376034192740917, -0.01718176156282425, 0.011265270411968231, -0.013255673460662365, 0.01689448580145836, -0.00522566307336092, 0.009014952927827835, -0.006805673707276583, 0.015020361170172691, -0.0032301300670951605, 0.009356945753097534, -0.0224347822368145, 0.014938282780349255, -0.03781081736087799, -0.005957529414445162, 0.03214740380644798, 0.010410286486148834, -0.0014936572406440973, -0.004254400730133057, -0.023830117657780647, -0.0035259544383734465, 0.030040722340345383, 0.03028695657849312, -0.013228313997387886, 0.015800107270479202, -0.002423024969175458, -0.0213951226323843, 0.023159809410572052, 0.014131177216768265, 0.036716438829898834, -0.003170281182974577, 0.05149056389927864, 0.005040986463427544, 0.012428048998117447, 0.0062140244990587234, 0.0021203604992479086, 0.010123011656105518, -0.0042783403769135475, 0.018481336534023285, -0.007763255853205919, 0.00792057253420353, -0.003096752567216754, 0.011251591145992279, -0.038686320185661316, 0.005465058609843254, -0.014309014193713665, -0.04341951385140419, 0.0018912248779088259, 0.005461638327687979, 0.04082036018371582, -0.02321452833712101, -0.006573117803782225, 0.009233828634023666, -0.0063645015470683575, -0.02153191901743412, -0.021272005513310432, 0.018276140093803406, -0.0035977731458842754, -0.013638706877827644, -0.0343635231256485, 0.006282423157244921, -0.009651060216128826, -0.021791834384202957, -0.008577200584113598, 0.004483536817133427, -0.04749607667326927, -0.03072470985352993, -0.0050683459267020226, -0.00106531020719558, 0.029329374432563782, 0.015882184728980064, -0.015936903655529022, -0.008159968070685863, 0.011559384874999523, -0.02545800618827343, -0.004972587805241346, -0.005995148792862892, -0.028645386919379234, 0.005017046816647053, -0.00021086045308038592, 0.005088865291327238, -0.015239236876368523, 0.020642736926674843, 0.008980752900242805, -0.018084624782204628, 0.002860776847228408, 0.023679640144109726, -0.01121739111840725, -0.0009986214572563767, 0.008823435753583908, -0.006514979060739279, 0.03400784730911255, -0.01668928936123848, -0.018125662580132484, 0.006798833608627319, -0.027455249801278114, 0.0015081919264048338, -0.01845397800207138, -0.011183192022144794, 0.0063097826205194, 0.03121718019247055, 0.02378907799720764, -0.00436383904889226, 0.01906956546008587, 0.04150434955954552, -0.02385747618973255, 0.005813891999423504, 0.013317232951521873, 0.006282423157244921, 0.015676988288760185, -0.010656521655619144, 0.002233218401670456, -0.017236480489373207, -0.026702864095568657, 0.02848123013973236, -0.023228207603096962, 0.031737010926008224, 0.028426511213183403, 0.0020502519328147173, 0.0033788972068578005, -0.001500497106462717, -0.02714061550796032, -0.009828897193074226, 0.010786479339003563, -0.0060396078042685986, 0.04757815599441528, -0.007099788170307875, -0.024732980877161026, -0.006084066815674305, -0.006638096645474434, -0.0006536353612318635, 0.025622164830565453, -0.01852237619459629, -0.009589501656591892, -0.00844724290072918, -0.006727015133947134, 0.012250212021172047, -0.027263732627034187, -0.00809840951114893, -0.024746660143136978, 0.007503340486437082, 0.0028128977864980698, -0.008549841120839119, 0.006429480388760567, -0.007879533804953098, 0.004695572890341282, -0.02532120980322361, -0.01697656512260437, 0.009083351120352745, -0.00807105004787445, -0.01059496309608221, -0.02952089160680771, 0.027523647993803024, 0.01696288399398327, 0.022981973364949226, 0.013775504194200039, -0.0038542684633284807, 0.002934305462986231, 0.020328102633357048, 0.003146341536194086, 0.0019955330062657595, 0.009753658436238766, -0.01787942834198475, -0.004295440390706062, 0.029438812285661697, 0.03745514526963234, -0.003751670243218541, -0.010779639706015587, 0.003676431719213724, 0.01206553541123867, -0.013987540267407894, -0.009760499000549316, 0.006169565487653017, -0.0596436932682991, -0.008002650924026966, -0.00420994171872735, 0.0044253976084291935, -0.008365164510905743, -0.014322693459689617, -0.011244751513004303, 0.00932274665683508, 0.0138507429510355, 0.013474550098180771, 0.015827465802431107, 0.03712683171033859, 0.007188706658780575, 0.022968294098973274, 0.0003430623619351536, 0.011826139874756336, -0.008132608607411385, -0.001764687243849039, -0.016634570434689522, 0.009603181853890419, 0.008413043804466724, 0.015417073853313923, 0.014637327753007412, 0.01417221687734127, -0.014336373656988144, 0.002542722737416625, 0.01738695614039898, -0.014021739363670349, -0.014609968289732933, 0.005290641915053129, -0.011935578659176826, -0.039671264588832855, -0.021846553310751915, -0.00149964215233922, -0.005547136999666691, -0.008207847364246845, 0.03852216526865959, 0.005177783779799938, 0.020574336871504784, -0.00982205756008625, -0.020300742238759995, 0.008454082533717155, -0.015868505463004112, 0.020232344046235085, -0.009110710583627224, 0.007968451827764511, 0.031873807311058044, 0.01712704263627529, -0.019753552973270416, -0.0645684003829956, -0.007079268340021372, -0.015676988288760185, 0.021586639806628227, 0.04582715034484863, -0.0068603926338255405, 0.0014953672653064132, 0.002751338994130492, 0.008501961827278137, -0.02693541906774044, -0.0007203241111710668, 0.024363627657294273, 0.010752280242741108, -0.0034421661403030157, -0.006391861010342836, 0.01937052048742771, -0.0005322276265360415, 0.01507508009672165, -0.005673674400895834, -0.009391145780682564, -0.026210393756628036, -0.018043585121631622, -0.0037653499748557806, 0.01689448580145836, -0.009931495413184166, 0.0050991252064704895, 0.012865801341831684, -0.0032865589018911123, 0.01149782631546259, -0.017058642581105232, 0.009042312391102314, 0.012236532755196095, -0.008570360951125622, 0.018194062635302544, -0.0037106310483068228, 0.008563521318137646, 0.0210394486784935, 0.029302015900611877, -0.002058801706880331, -0.01971251331269741, -0.008023170754313469, 0.046812091022729874, -0.0005151279037818313, -0.01242120936512947, -0.02741421014070511, 0.018221421167254448, 0.016374655067920685, 0.01147046685218811, -0.005933589767664671, -0.012154454365372658, -0.0013226604787632823, -0.005694194231182337, 0.012961558997631073, 0.0003466960624791682, 0.013440350070595741, -0.017058642581105232, -0.01002725400030613, -0.01556755043566227, -0.024226829409599304, 0.0012089475058019161, 0.010109332390129566, -0.02131304331123829, -0.014596289023756981, -0.009603181853890419, -0.020013468340039253, 0.025416968390345573, 0.010991675779223442, 0.005208563059568405, 0.006405541207641363, 0.038412727415561676, -0.027263732627034187, 0.010075132362544537, -0.008248887024819851, 0.0014466331340372562, -0.0017766569508239627, 0.019726192578673363, -0.014541570097208023, -0.02266733907163143, 0.02729109302163124, 0.0029479851946234703, 0.010013573803007603, -0.01838557794690132, 0.003346407786011696, 0.010177730582654476, -0.012475928291678429, 0.03036903589963913, 0.0027188495732843876, -0.00233068666420877, 0.01718176156282425, 0.002252028090879321, -0.02588207833468914, -0.004110763780772686, -0.0064807794988155365, 0.007612778339534998, 0.009534782730042934, -0.008932873606681824, 0.02897370234131813, -0.005988308694213629, 0.002332396572455764, 0.008488282561302185, -0.03452767804265022, -0.020738495513796806, 0.018891729414463043, 0.01668928936123848, -0.03512958809733391, -0.024705620482563972, -0.03261251375079155, -0.011887699365615845, -0.008433563634753227, -0.02132672443985939, 0.01504772063344717, -0.004466436803340912, 0.007900053635239601, 0.01801622472703457, -0.01395334117114544, 0.011956097558140755, -0.007968451827764511, -0.019096925854682922, -0.010711240582168102, -0.007551219779998064, -0.0322568416595459, -0.006689395755529404, -0.029657689854502678, 0.020943690091371536, 0.007742736022919416, -0.025841040536761284, -0.02960296906530857, -0.016525132581591606, -0.02552640624344349, 0.0075648995116353035, -0.0048357900232076645, 0.018891729414463043, 0.029630329459905624, -0.002296487335115671, 0.01381654292345047, 0.023611241951584816, -0.006316622719168663, 0.00817364826798439, -0.006176405120640993, -0.0007549509755335748, -0.010396607220172882, -0.0017527174204587936, 0.020779533311724663, 0.005752332974225283, -0.005140164401382208, -0.008843955583870411, 0.028289714828133583, 0.017619512975215912, 0.0013491649879142642, 0.014993001706898212, -0.006374761462211609, -0.01129262987524271, -0.009603181853890419, -0.011162672191858292, 0.006015668157488108, 0.012332290410995483, 0.010266649536788464, -0.016935525462031364, -5.9314523241482675e-05, 0.03562205657362938, 0.00712030753493309, 0.010218770243227482, 0.005253022536635399, 0.009158589877188206, -0.028002439066767693, 0.013406150974333286, -0.012352810241281986, -0.00807105004787445, -0.0019715933594852686, -0.019753552973270416, 0.028645386919379234, -0.00431253993883729, 0.0009387725731357932, 0.03614188730716705, -0.013214634731411934, -0.0038816279266029596, -0.03001336194574833, 0.0050683459267020226, -0.0455809123814106, -0.004165482707321644, 0.007688017096370459, 0.011655143462121487, -0.0063371420837938786, -0.014541570097208023, 0.007373382803052664, -0.023310286924242973, -0.005834411364048719, -0.010930117219686508, 0.006381601560860872, -0.018837010487914085, 0.0175374336540699, 0.034336160868406296, -0.03280403092503548, 0.013556628488004208, -0.004021845292299986, -0.002741079078987241, 0.009514262899756432, -0.0456082709133625, 0.006340562365949154, -0.027756204828619957, 0.02013658545911312, 0.0004518591158557683, -0.0015603459905833006, 0.007941092364490032, 0.0026470308657735586, -0.0012166424421593547, -0.018399257212877274, -0.010259808972477913, 0.30752068758010864, -0.028234995901584625, -0.01901484653353691, 0.015895863994956017, -0.0056121158413589, -0.018905408680438995, 0.002224668627604842, 0.004302280023694038, -0.0061798254027962685, 0.03876839950680733, -0.026853341609239578, 0.0006194359739311039, -0.0040150051936507225, -0.01301627792418003, 0.007106627803295851, -0.01314623560756445, -0.011443107388913631, -0.013255673460662365, -0.019753552973270416, -0.027961401268839836, 0.0020057926885783672, 0.009076511487364769, -0.017838388681411743, -0.0026504506822675467, 0.015663309022784233, 0.0007361413445323706, 0.0031104322988539934, 0.023802757263183594, 0.023173488676548004, -0.00048135605175048113, -0.01886436901986599, 0.013960180804133415, 0.01746903546154499, 0.003418226493522525, 0.0007686307071708143, 0.0010003313655033708, 0.0357862152159214, 0.01871389150619507, 0.00957582239061594, 0.0028214475605636835, 0.023611241951584816, -0.003727730829268694, -0.008030010387301445, -0.029274655506014824, -0.0037072112318128347, -0.0065936376340687275, 0.01044448558241129, -0.014295333996415138, -0.007551219779998064, 0.03491071239113808, -0.008611399680376053, -0.0037892896216362715, 0.02510233409702778, 0.007277624681591988, 0.01915164478123188, -0.005300901364535093, 0.026812301948666573, 0.0013739594724029303, 0.010218770243227482, 0.00922014843672514, 0.009815217927098274, 0.040683563798666, -0.04571770876646042, 0.01830350048840046, -0.01374814473092556, -0.0025649522431194782, -0.02195599116384983, -0.006227704230695963, 0.0023426564875990152, -0.02973976731300354, -0.009315907023847103, -0.006196924950927496, 0.011374708265066147, 0.006709915120154619, -0.028289714828133583, -0.021969672292470932, 0.01943891867995262, 0.024787699803709984, 0.025717921555042267, 0.05006786808371544, -0.030834147706627846, -0.00894655380398035, 0.0027273993473500013, -0.014555249363183975, -0.007551219779998064, -0.03050583228468895, 0.012722163461148739, -0.0032574895303696394, -0.017906786873936653, -0.01607370190322399, 0.0038816279266029596, 0.00025713647482916713, 0.006518398877233267, -0.0055095176212489605, 0.005307741463184357, 0.024432025849819183, -0.013125715777277946, 0.033269140869379044, -0.01563594862818718, 0.0012157873716205359, -0.019945070147514343, 0.005451378878206015, 0.016935525462031364, 0.006651776377111673, -0.027332132682204247, -0.0013970440486446023, 0.004456177353858948, 0.016744008287787437, 0.013912301510572433, -0.01121739111840725, -0.009835736826062202, -0.03518430516123772, 0.011812460608780384, -0.0008297620806843042, 0.0016800437588244677, -0.0075648995116353035, -0.031107742339372635, -0.013023117557168007, 0.0005215402925387025, -0.00954162236303091, 0.006521818693727255, -0.02616935409605503, -0.02363860048353672, 0.014144857414066792, 0.00897391326725483, -0.007612778339534998, -0.01942523941397667, -0.02146352082490921, -0.010287168435752392, -0.05504729598760605, 0.024308908730745316, -0.004924708511680365, 0.01690816506743431, -0.0013833643170073628, 0.004900768864899874, 0.010984836146235466, 0.007619618438184261, -0.008324125781655312, 0.0029582451097667217, 0.014828844927251339, 0.021969672292470932, -0.005762592889368534, 0.01711336150765419, -0.025717921555042267, -0.017140721902251244, -0.024240508675575256, 0.016566172242164612, -0.018782291561365128, 0.011073754169046879, -0.0014090138720348477, -0.02300933189690113, -0.004148382693529129, 0.006090906914323568, -0.009315907023847103, 0.011354189366102219, -0.003566993633285165, -0.024295229464769363, -0.03767402097582817, 0.005748913157731295, 0.006980090402066708, -0.01845397800207138, 0.009698939509689808, 0.03108038194477558, -0.006190084852278233, -0.006015668157488108, -0.030204879119992256, -0.17772725224494934, -0.013433510437607765, 0.016456734389066696, -0.019657794386148453, 0.039452385157346725, 0.01633361726999283, -0.014322693459689617, 0.008932873606681824, -0.010471845045685768, 0.0067372750490903854, 0.022421102970838547, -0.0199861079454422, -0.014432132244110107, 0.00029261832241900265, -0.010861718095839024, 0.005766012705862522, -0.0392608717083931, -0.0005159829161129892, 0.05014994740486145, 0.012503287754952908, 0.051463205367326736, -0.011114793829619884, -0.009185949340462685, 0.02820763550698757, 0.007722216658294201, 0.005352200474590063, -0.010410286486148834, 0.0033036586828529835, -0.010006734170019627, -0.0077153765596449375, -0.016251537948846817, 0.009001272730529308, 0.02678494155406952, 0.00271713943220675, -0.004439077340066433, -0.0063645015470683575, -0.001188427908346057, -0.009377465583384037, -0.01564962975680828, -0.0026230912189930677, -0.021572958678007126, 0.0329681858420372, -0.012790562584996223, 0.0010131561430171132, 0.010731760412454605, 0.030204879119992256, 0.018262460827827454, -0.006073807366192341, 0.000919107929803431, 0.022120149806141853, 0.004292020108550787, -0.028043478727340698, 0.0053624603897333145, -0.0002597014245111495, 0.038959916681051254, 0.009637380950152874, -0.005205143243074417, -0.0023854055907577276, -0.012393849901854992, 7.14980487828143e-05, 0.0023563362192362547, -0.01606002077460289, 0.00792057253420353, 0.023884836584329605, 0.02259894087910652, -0.00024003679573070258, -0.026757583022117615, 0.02848123013973236, -0.011477306485176086, -0.0017510075122117996, 0.01563594862818718, -0.02300933189690113, 0.0029667948838323355, -0.03619660809636116, 0.010547083802521229, -0.005786532536149025, -0.019808271899819374, 0.019042206928133965, 0.030451113358139992, 0.00048306601820513606, -0.01547179277986288, 0.020984729751944542, -0.0005561671569012105, -0.006463679950684309, 0.008283086121082306, 0.014760445803403854, 0.004175742622464895, 0.0019237142987549305, -0.02603255584836006, -0.02666182443499565, 0.016935525462031364, -0.037783458828926086, -0.017920466139912605, 0.002421315060928464, -0.007257105316966772, 0.004025265108793974, -0.007845333777368069, -0.011319989338517189, -0.00939798541367054, 0.0012046726187691092, -0.0065936376340687275, -0.0248971376568079, -0.023611241951584816, 0.01774263009428978, 0.01655249297618866, 0.009097031317651272, -0.009651060216128826, 0.026319831609725952, 0.0350748673081398, -0.0024845837615430355, 0.007763255853205919, 0.002077611396089196, 0.01704496331512928, 0.0016620891401544213, -0.00023063196567818522, 0.02357020229101181, -0.008372004143893719, -0.022421102970838547, -0.006432900670915842, -0.002183629432693124, -0.018700212240219116, -0.005810472182929516, 0.002778698457404971, 0.003638812340795994, -0.007517020218074322, -0.008508801460266113, -0.04040996730327606, -0.013337751850485802, 0.0070382291451096535, 0.002566662384197116, -0.001596255344338715, 0.040683563798666, 0.00016661503468640149, 0.0259504783898592, -0.004869989585131407, 0.017441675066947937, -0.009637380950152874, -0.03028695657849312, -0.021737115457654, 0.00504782609641552, 0.006114846561104059, -0.004521156195551157, -0.012352810241281986, -0.016018982976675034, 0.0002953970106318593, 0.02567688375711441, -0.01689448580145836, -0.01167566329240799, 0.00697667058557272, -0.02826235443353653, -0.0018296659691259265, -0.015950582921504974, -0.03450031951069832, 0.011566225439310074, 0.018631814047694206, -0.011682502925395966, 0.013057317584753036, -0.014295333996415138, 0.010895917192101479, -0.0028966860845685005, 0.013939660973846912, -0.0026538707315921783, -0.03113510087132454, -0.014938282780349255, 0.031955886632204056, -0.0006070387316867709, 0.007106627803295851, 0.00420994171872735, -0.025293849408626556, -0.014993001706898212, -0.013036797754466534, 0.01641569472849369, -0.013563468120992184, 0.03381633013486862, 0.00023298317682929337, -0.01830350048840046, -0.02924729697406292, 0.007770095486193895, -0.017578473314642906, -0.03808441385626793, 0.024938177317380905, 0.0030351935420185328, 0.018604453653097153, 0.006227704230695963, -0.022626299411058426, 0.006521818693727255, -0.00169628846924752, -0.009685260243713856, -0.00522566307336092, 0.021737115457654, 0.01119003165513277, 0.004035525023937225, -0.016224179416894913, -0.020232344046235085, 0.027934040874242783, -0.0056599946692585945, 0.00036571946111507714, 0.037564583122730255, -0.016949204728007317, 0.02285885438323021, -0.03450031951069832, -0.03214740380644798, -0.014459491707384586, -0.007941092364490032, 0.009261188097298145, -0.008960233069956303, -0.005550556816160679, -0.014924602583050728, 0.000714339199475944, -0.006043027620762587, 0.008495122194290161, 0.04314591735601425, 0.005557396914809942, 0.019890351220965385, -0.005092285573482513, -0.006590217351913452, 0.003584093414247036, 0.0075990986078977585, 0.0034763654693961143, 0.009131230413913727, 0.005543717183172703, 0.0006433755625039339, 0.017975186929106712, 0.008050530217587948, -0.015020361170172691, 0.042954400181770325, 0.0013029958354309201, -0.02020498365163803, -0.07950668036937714, 0.022612620145082474, -0.028098197653889656, -0.008960233069956303, -0.0035156947560608387, -0.0028197376523166895, 0.02749628946185112, 0.004962327890098095, 0.0011046394938603044, 0.000967842002864927, -0.0350475087761879, 0.01027348916977644, -0.012120254337787628, -0.020259704440832138, -0.025020254775881767, -0.012140774168074131, 0.007318663876503706, 0.012503287754952908, -0.0008951683412306011, -0.012852121144533157, -0.004090243950486183, -0.013098356314003468, -0.010191410779953003, 0.008324125781655312, -0.03548526018857956, 0.006193505134433508, -0.008584040217101574, 0.016648251563310623, -0.01322147436439991, -0.010916437022387981, -0.011983457021415234, -0.018399257212877274, 0.0067748939618468285, 0.013166755437850952, 0.0007831654511392117, -0.011518346145749092, -0.0022691278718411922, 0.0026829401031136513, 0.02181919477880001, 0.029137859120965004, -0.02834443375468254, -0.007147666998207569, 0.02125832438468933, -0.002688070060685277, -0.008392523974180222, 0.01872757263481617, -0.01364554651081562, 0.0007485385867767036, 0.016251537948846817, 0.008782397024333477, 0.02455514296889305, 0.019110605120658875, -0.0010977996280416846, -0.008180487900972366, -0.007886373437941074, -0.04046468809247017, -0.0018279560608789325, 0.002751338994130492, 0.005410339683294296, -0.023392366245388985, 0.026538707315921783, -0.009781017899513245, 0.015800107270479202, -0.012222852557897568, -0.005328260827809572, -0.01224337238818407, -0.01044448558241129, 0.013597667217254639, 0.01248960755765438, -0.017633192241191864, -0.026251431554555893, -0.003272879170253873, -0.01564962975680828, 0.0075648995116353035, -0.002176789566874504, -0.0060396078042685986, -0.002228088676929474, 0.006248224060982466, -0.016648251563310623, 0.016237858682870865, -0.0008507092134095728, 0.012455408461391926, -0.021572958678007126, 0.023734359070658684, 0.03471919521689415, 0.007592258974909782, 0.001161068445071578, -0.009630541317164898, -0.021490881219506264, 0.020259704440832138, -0.011538865976035595, 0.002712009707465768, 0.012387010268867016, 0.026962779462337494, 0.01634729653596878, 0.026921739801764488, 0.007865853607654572, -0.011545705609023571, 0.029849205166101456, -0.013125715777277946, -0.000788722827564925, -0.013529269024729729, 0.00426124082878232, -0.022749416530132294, -0.03231155872344971, 0.0231461301445961, -0.015663309022784233, -0.04314591735601425, -0.008481441996991634, 0.023665960878133774, 0.009425344876945019, 0.004411717876791954, -0.006501299329102039, 0.027181655168533325, -0.013789183460175991, 0.00014320983609650284, -0.014185896143317223, -0.013426670804619789, -0.019603075459599495, 0.03991749882698059, 0.019261082634329796, 0.021627677604556084, 0.03871368244290352, -0.020847933366894722, 0.012893160805106163, -0.009555302560329437, 0.011655143462121487, -0.014226935803890228, 0.012886320240795612, 0.015252916142344475, -0.008214686997234821, 0.0014731376431882381, -0.007373382803052664, -0.014158536680042744, -0.005824151914566755, 0.019794592633843422, 0.009664740413427353, 0.012913679704070091, -0.020177625119686127, 0.041285473853349686, 0.0036182927433401346, 0.002640190999954939, 0.005759173072874546, -0.005550556816160679, 0.0037003711331635714, 0.004976007621735334, -0.009240668267011642, 0.014842524193227291, -0.020724814385175705, 0.020177625119686127, 0.004630594048649073, -0.00922698900103569, -0.017496393993496895, -0.020601697266101837, -0.01255116704851389, -0.012749522924423218, 0.03638812527060509, -0.007838494144380093, 0.00697667058557272, 0.03502015024423599, 0.015102439559996128, 0.014117497950792313, 0.010280328802764416, -0.010868557728827, -0.008515642024576664, 0.020246023312211037, 0.005748913157731295, 0.0075990986078977585, -0.007653818000108004, -0.007763255853205919, -0.0028419671580195427, -0.002831707475706935, -0.011053234338760376, -0.006439740303903818, 0.011361028999090195, 0.0020519618410617113, 0.020246023312211037, 0.009185949340462685, 0.02294093370437622, 0.003228419926017523, 0.023187169805169106, -0.04763287678360939, -0.030888866633176804, -0.0002496553643140942, 0.017291199415922165, 0.0012021076399832964, 0.011874019168317318, -0.004049204755574465], "8a155880-671e-4bdf-b782-5e9767d5a009": [-0.008191129192709923, -0.008667965419590473, -0.0019253073260188103, -0.02651992440223694, -0.009288505651056767, 0.0010679821716621518, -0.036814358085393906, -0.007361565250903368, 0.0019155093468725681, -0.02152947708964348, 0.006904325447976589, -0.001948169432580471, -0.010621034540235996, 0.003974722698330879, -0.0069239214062690735, -0.02026226744055748, 0.00977187417447567, -0.038251399993896484, 0.029263366013765335, -0.029263366013765335, 0.012149522081017494, -0.012489186599850655, 0.0046638487838208675, -0.017610276117920876, -0.03242485597729683, -0.002467463491484523, 0.014226699247956276, -0.017649468034505844, -0.001218218239955604, 0.0009610207052901387, 0.0019840954337269068, 0.0011218711733818054, -0.0022339443676173687, -0.02491305209696293, -0.008635305799543858, 0.011215446516871452, 0.0030847375746816397, -0.016147106885910034, -0.010758206248283386, 0.00024311292509082705, 0.01827653869986534, -0.0018305933335795999, 0.001599523820914328, 0.006701833102852106, -0.02910659834742546, -0.001640348811633885, -0.03344384580850601, -0.005421561188995838, -0.007975573651492596, 0.01920408383011818, -0.01681337133049965, -0.002560544526204467, -0.0448356568813324, 0.00960204191505909, -0.01691788248717785, -0.005891865119338036, -0.014252826571464539, 0.015872763469815254, -0.005989845376461744, -0.0033541826996952295, 0.01825041137635708, 0.010085410438477993, -0.02996882237493992, -0.03545570373535156, -0.010111537761986256, 0.02081095613539219, -0.019870348274707794, -0.0004494833410717547, -0.02637622132897377, 0.0007797576836310327, 0.011339554563164711, 0.022966517135500908, 0.0104707982391119, 0.010823526419699192, 0.03367899730801582, 0.006368701346218586, -0.01889054849743843, -0.00453647505491972, -0.003025949699804187, 0.0038048906717449427, -0.002064112341031432, 0.0068128774873912334, 0.00419354485347867, 0.008785542100667953, -0.0049937148578464985, 0.023358436301350594, -0.008498134091496468, 0.0200924351811409, 0.0011275867000222206, -0.005898396950215101, 0.007466077338904142, 0.021124491468071938, -0.0005805316031910479, 0.004232736770063639, -0.017296738922595978, 0.009353825822472572, -0.023619716987013817, 0.0003729364543687552, -0.011607366614043713, -0.05155055597424507, -0.0010255242232233286, 0.02446887642145157, -0.025644637644290924, 0.00523539911955595, -0.02764342911541462, -0.008236853405833244, 0.04663848876953125, -0.011274234391748905, -0.004252332728356123, -0.016525963321328163, -0.015441651456058025, 0.0244296845048666, 0.008014765568077564, -0.03895685449242592, -0.012665550224483013, -0.005326847080141306, 0.03328707814216614, -0.019151827320456505, -0.006734493188560009, 0.0016485138330608606, 0.013625754974782467, 0.007093753200024366, 0.0039681908674538136, 0.0040433090180158615, 0.014540234580636024, -0.0014427558053284883, -0.00543135916814208, 0.009445274248719215, -0.002896942663937807, -0.03373125568032265, 0.036945000290870667, -0.016721922904253006, -0.004157618619501591, 0.013181578367948532, -0.010705949738621712, 0.0036513886880129576, 0.0019759302958846092, -0.012208309955894947, -0.01134608592838049, -0.01567680388689041, 0.009066417813301086, 0.0038734767585992813, 0.007903721183538437, -0.019896475598216057, 0.007270117290318012, -0.0030896365642547607, -0.005228866823017597, 0.0034325667656958103, 0.020314523950219154, 0.010797398164868355, 0.005356241017580032, -0.0006703466060571373, 0.012789658270776272, -0.003267633728682995, -0.007479141466319561, -0.002346621360629797, 0.009673894383013248, 0.021006915718317032, 0.001543185324408114, 0.012502250261604786, 0.0021816883236169815, 0.02699022926390171, 0.000585430592764169, -0.002821824513375759, -0.014292018488049507, 0.03218970075249672, -0.0012051542289555073, -0.001064716256223619, -0.0019155093468725681, 0.0033672465942800045, 0.016852563247084618, -0.002002058317884803, -0.03323482349514961, 0.013808650895953178, -0.017335930839180946, 0.024403557181358337, -0.007916785776615143, 0.019556811079382896, -0.022875068709254265, -0.004722637124359608, -0.01443572249263525, -0.008073553442955017, 0.0020281863398849964, 0.02487386018037796, -0.0011986222816631198, -0.029916565865278244, 0.012378142215311527, 0.00749220559373498, 0.007969041354954243, 0.004895735066384077, 0.013560434803366661, 0.03945328667759895, 0.023253925144672394, 0.0020657454151660204, -0.6070058345794678, -0.009660829789936543, 0.011718410067260265, -0.0029818585608154535, 0.009406081400811672, 0.022195739671587944, 0.0005874718772247434, 0.041256118565797806, -0.04120386391878128, 0.026193324476480484, -0.017466571182012558, 0.00523539911955595, 0.004448292776942253, -0.006747557315975428, -0.026454605162143707, -0.05638423562049866, 0.02254846878349781, -0.004252332728356123, 0.0063393074087798595, 0.023789549246430397, -0.0011275867000222206, 0.015807442367076874, -0.0033966407645493746, 0.012136458419263363, 0.029681414365768433, 0.004288258962333202, 0.018955867737531662, -0.020066307857632637, -0.0025409485679119825, 0.039714567363262177, -0.02186913974583149, -0.004601794760674238, 0.0016117712948471308, 0.005565265193581581, 0.04339861497282982, -0.029446261003613472, -0.022234931588172913, 0.018237346783280373, -0.020484356209635735, 0.060355693101882935, 0.0041118948720395565, -0.018981995061039925, 0.05212537199258804, 0.010954165831208229, -0.011509385891258717, -0.021816885098814964, 0.0036481227725744247, -0.031170710921287537, 0.00019871573022101074, 0.03950554504990578, -0.015493907034397125, -0.01704852283000946, 0.006976177450269461, -0.00937995407730341, -0.012476122938096523, -0.002532783430069685, 0.0225223395973444, -0.020784828811883926, 0.014331210404634476, -0.024168405681848526, -0.01204500999301672, 0.0047128391452133656, -0.02066725119948387, -0.008772477507591248, -0.012959490530192852, -0.000381305580958724, -0.002877346472814679, -0.02149028517305851, 0.014501042664051056, -0.025788340717554092, 0.004412367008626461, 0.003546876600012183, 0.0023956114891916513, -0.022052036598324776, -0.0022061835043132305, 0.04940805956721306, 0.022352509200572968, -0.0011610632063820958, 0.014631683006882668, -0.0018599873874336481, 0.00804742518812418, 0.008961905725300312, 0.0015309378504753113, -0.024037765339016914, 0.0061858054250478745, 0.014396530576050282, -0.03085717372596264, -0.0017554752994328737, 0.023802611976861954, -0.007230925373733044, 0.0068128774873912334, 0.0025393154937773943, 0.012312822043895721, -0.014292018488049507, 0.012365078553557396, 0.03051750920712948, -0.01094763446599245, -0.0012059707660228014, -0.0034521627239882946, 0.006447085179388523, -0.014448787085711956, -0.018354924395680428, 0.004428696818649769, 0.012743934988975525, 0.017401251941919327, -0.016512898728251457, -0.029132725670933723, 0.0016983203822746873, 0.04133450239896774, -0.016970138996839523, -0.027068613097071648, -0.05027028173208237, 0.010941102169454098, 0.006760621443390846, 0.02866242080926895, -0.0258014053106308, -0.009536721743643284, 0.01585969887673855, 0.026728948578238487, -0.018354924395680428, 0.004183746874332428, -0.0028822454623878, -0.0032562026754021645, 0.016016466543078423, 0.008890054188668728, 0.01571599580347538, 0.020066307857632637, -0.006623449269682169, 0.0022976314648985863, 0.004921862855553627, 0.0054411571472883224, 0.02248314768075943, 0.017348995432257652, -0.02641541324555874, 0.026350094005465508, -0.005454221274703741, -0.010202986188232899, 0.0010753306560218334, 0.03205906227231026, -0.016486771404743195, 0.007838401943445206, -7.74144209572114e-05, 0.019896475598216057, 0.004598529078066349, 0.022848941385746002, -0.027956966310739517, -0.01708771474659443, -0.018812162801623344, -0.011574706062674522, -0.0016248353058472276, 0.02269217185676098, 0.012489186599850655, -0.0035926008131355047, 0.02360665239393711, -0.023737292736768723, 0.00543135916814208, -0.01793687604367733, -0.035272806882858276, -0.0001804465427994728, -0.015467778779566288, -0.007466077338904142, -0.009007629938423634, -0.03352222964167595, 0.011901305988430977, -0.031040070578455925, -0.01852475479245186, 0.005313782952725887, -0.013338346965610981, -0.005428093019872904, -0.026441540569067, -0.0002704656799323857, 0.013926226645708084, -0.007786145433783531, -0.004379706922918558, 0.012822318822145462, -0.009027225896716118, -0.025161268189549446, 0.010327094234526157, -0.002733642468228936, -0.004059638828039169, 0.014148314483463764, -0.015585355460643768, 0.011058677919209003, 0.023449884727597237, 0.008334833197295666, 0.011842518113553524, 0.036814358085393906, 0.020340651273727417, -0.025540124624967575, 0.0021114693954586983, -0.023084092885255814, 0.020967723801732063, 0.020993852987885475, 0.015559227205812931, 0.03610890358686447, -0.00012778227392118424, 0.027225380763411522, 0.008178065530955791, -0.00023209016944747418, 0.027068613097071648, 0.02453419752418995, 0.014683938585221767, 0.0054411571472883224, -0.00512435520067811, 0.0051537491381168365, -0.0038930727168917656, 0.010509990155696869, -0.01711384393274784, 0.01537633128464222, 0.007250521332025528, -0.010405478067696095, -0.02350214123725891, -0.014840707182884216, -0.006936985533684492, 0.028375012800097466, 0.0066626411862671375, -0.00930810160934925, -0.0016542293597012758, -0.0028054944705218077, 0.030491381883621216, 0.002341722371056676, 0.024063892662525177, -0.003272532718256116, -0.01715303584933281, -0.003323155688121915, -0.02597123757004738, 0.01599033921957016, -0.015062795020639896, -0.007831869646906853, -0.040367767214775085, -0.042928311973810196, 0.005460753105580807, 0.003612196771427989, 0.010562245734035969, 0.02108529955148697, -0.017989130690693855, 0.018158962950110435, -0.02616719715297222, -0.00031680206302553415, -0.003156589576974511, 0.01382171455770731, 0.014487979002296925, 0.001501543796621263, -0.019230211153626442, 0.02220880426466465, 0.028793061152100563, 0.04154352843761444, 0.023384565487504005, -0.03177165612578392, 0.018786035478115082, -0.027382150292396545, 0.01789768412709236, -0.010477330535650253, 0.022287188097834587, 0.017675595358014107, -0.008929246105253696, -0.005170078948140144, -0.0036611866671591997, 0.016734987497329712, 0.017166098579764366, 0.011966626159846783, 0.03589987754821777, -0.016277747228741646, 0.0002718945615924895, 0.002287833485752344, -0.00038661283906549215, -0.008870457299053669, -0.03394027799367905, -0.010679822415113449, -0.008596113882958889, -0.02392018958926201, 0.0010712482035160065, -0.005134153179824352, 0.004614858888089657, -0.0011259537423029542, -0.01007887814193964, -0.011339554563164711, 0.01076473854482174, 0.022261060774326324, -0.004294790793210268, -0.030622022226452827, -0.035586342215538025, 0.03775496780872345, 0.008360961452126503, 0.017231419682502747, -0.009562849998474121, -0.012547974474728107, -0.007472609635442495, 0.008223789744079113, 0.01291376631706953, -6.062513784854673e-05, -0.0009112141560763121, 0.016016466543078423, -0.0018665193347260356, -0.02999494969844818, -0.013175047002732754, 0.021843012422323227, -0.009967833757400513, -0.008713689632713795, -0.03132747858762741, 0.023384565487504005, -0.022404763847589493, -0.027904709801077843, 0.0006989241228438914, 0.05962410941720009, 0.030726533383131027, 0.0008524261647835374, 0.0015227728290483356, 0.013939290307462215, -0.020210012793540955, -0.010523053817451, -0.02866242080926895, 0.00930810160934925, -0.019556811079382896, -0.0033672465942800045, -0.011633493937551975, 0.009719617664813995, -0.02921110950410366, 0.03498540073633194, -0.00022310866916086525, -0.009595509618520737, -0.019125699996948242, -0.03576923906803131, 0.01359962671995163, 0.014109122566878796, 0.0007777163991704583, -0.00427846098318696, 0.0026046354323625565, -0.04232736676931381, -0.006051899399608374, -0.014710066840052605, -0.027042485773563385, -0.005189674906432629, -0.02842726930975914, 0.0074072894640266895, -0.002454399596899748, 0.003958392888307571, -0.020732572302222252, 0.024717092514038086, 0.0074399495497345924, 0.0018746843561530113, -0.003448896575719118, 0.0020151224453002214, -0.034018661826848984, 0.01438346691429615, 0.0011177887208759785, 0.01503666676580906, -0.020575804635882378, 0.003625260666012764, -0.0023498875088989735, 0.017845427617430687, 0.01721835508942604, 0.022509276866912842, 0.002088607521727681, -0.001180659281089902, -0.02026226744055748, -0.017505763098597527, 0.020105499774217606, 0.0038832747377455235, 0.034697990864515305, 0.0041543529368937016, 0.023632781580090523, -0.009399550035595894, -0.0034521627239882946, 0.004912064876407385, 0.042588647454977036, -0.0025556455366313457, -0.01626468263566494, 0.015624547377228737, 0.005751427263021469, 0.006754089146852493, -0.003132094629108906, 0.003360714763402939, -0.025069821625947952, 0.0077796136029064655, 0.00020443122775759548, -0.06835085898637772, -0.00838708970695734, 0.005317049100995064, 0.020693380385637283, -0.012489186599850655, -0.008099681697785854, 0.003484822576865554, -0.014579426497220993, 0.006176007445901632, -0.03200680762529373, -0.008178065530955791, 0.0006621816428378224, 0.013834779150784016, -0.019321659579873085, 0.018577011302113533, 0.0033901087008416653, -0.02288813330233097, -0.0033100915607064962, 0.010869249701499939, -0.04804940149188042, -0.016186298802495003, -0.006613651290535927, 0.011365681886672974, 0.014919091016054153, 0.018903611227869987, -0.014305083081126213, -0.012626358307898045, 0.014514107257127762, -0.022744428366422653, -0.023959381505846977, 0.0014901127433404326, -0.030700406059622765, 0.002046149456873536, 0.010379349812865257, 0.035272806882858276, 0.0013439592439681292, 0.008328301832079887, 0.02237863652408123, 0.028453398495912552, 0.019935667514801025, 0.024377427995204926, 0.01708771474659443, -0.016343066468834877, 0.03589987754821777, 0.0015489008510485291, 0.0026372955180704594, -0.001162696280516684, -0.0050002471543848515, -0.0023547864984720945, -0.02942013368010521, 0.02172543667256832, -0.00821725744754076, -0.020523548126220703, -0.015128115192055702, 0.02597123757004738, 0.010653694160282612, -0.0018877483671531081, 0.025500932708382607, 0.028009220957756042, 0.009700021706521511, 0.012593698687851429, 0.005816746968775988, 0.0027320096269249916, 0.006234795320779085, 0.02049742080271244, -0.0014615353429690003, 0.010797398164868355, -0.0059506529942154884, 0.015271819196641445, -0.020549675449728966, 0.03242485597729683, 0.024312108755111694, -0.0019253073260188103, 0.0104707982391119, 0.0030275825411081314, -0.0338357649743557, -0.024403557181358337, 0.0038898068014532328, -0.0037297727540135384, 0.026454605162143707, -0.016930947080254555, -0.015088923275470734, -0.034253813326358795, 0.0026111674960702658, 0.011692282743752003, 0.0054411571472883224, -0.002341722371056676, -0.020889339968562126, -0.012508782558143139, -0.009974366053938866, 0.005330113228410482, -0.014226699247956276, -0.017505763098597527, -0.03699725493788719, 0.006140081211924553, -0.0002706698141992092, 0.013148918747901917, 0.013201174326241016, 0.020040180534124374, 0.004507081117480993, -0.039714567363262177, -0.006538533139973879, -0.00019218372472096235, -0.02965528517961502, -0.009641233831644058, -0.02299264445900917, 0.028714677318930626, 0.016865627840161324, 0.04052453488111496, 0.0066626411862671375, -0.004709572996944189, -0.009353825822472572, 0.0004939825739711523, -0.011764134280383587, 0.002673221519216895, 0.022731363773345947, -0.0129007026553154, 0.011365681886672974, 0.0039257328025996685, 0.030177846550941467, 0.007707761600613594, 0.007243989501148462, -0.026598310098052025, 0.04052453488111496, -0.013756394386291504, 0.007479141466319561, -0.00484347902238369, -0.06396135687828064, -0.007008837535977364, -0.001245979219675064, -0.0022747693583369255, -0.0023874465841799974, -0.013638818636536598, -0.020719507709145546, 0.00894884206354618, -0.02015775628387928, 0.02555318921804428, 0.014474914409220219, 0.0035860687494277954, -0.01698320358991623, -0.006224997341632843, -0.007355033420026302, 0.007531397510319948, -0.005196207202970982, 0.0030831045005470514, -0.017009330913424492, 0.021503347903490067, 0.00554240308701992, 0.03900911286473274, 0.004033510573208332, 0.004614858888089657, 0.0006727961590513587, -0.002942666644230485, 0.02060193195939064, -0.025670764967799187, -0.02128126099705696, -0.0012680247891694307, -0.01069288607686758, -0.01294642686843872, -0.025056757032871246, -0.000715662376023829, -0.002469096565619111, -0.01653902791440487, 0.02172543667256832, 0.0036383247934281826, 0.017963003367185593, -0.009334229864180088, -0.004056372679769993, -0.012195246294140816, -0.027930837124586105, 0.02172543667256832, 0.01687869057059288, 0.013743330724537373, 0.014631683006882668, 0.01772785186767578, -0.01154857873916626, -0.017348995432257652, -0.0055522010661661625, 0.0037820287980139256, 0.019661324098706245, 0.037467557936906815, -0.00560445711016655, -0.028897574171423912, 0.005072099156677723, 0.0033672465942800045, -0.006260923109948635, -0.020484356209635735, 0.0406029187142849, 0.010816994123160839, -0.001524405786767602, -0.015911955386400223, 0.013730267062783241, -0.011718410067260265, 0.0007593451300635934, -0.018328795209527016, -0.012338950298726559, -0.004823883064091206, -0.009817598387598991, -0.02138577215373516, 0.021790755912661552, -0.014801515266299248, 0.028453398495912552, 0.0055522010661661625, 0.002389079425483942, 0.014788450673222542, -0.0121625866740942, -0.049016136676073074, 0.03966231271624565, 0.009582445956766605, 0.05021802708506584, -0.01199275441467762, -0.025905916467308998, 0.02753891795873642, 0.01229975838214159, 0.002945932559669018, -0.015520035289227962, -0.017636403441429138, 0.04663848876953125, 0.01122197788208723, -0.0166043471544981, -0.017231419682502747, 0.02358052507042885, 0.01154857873916626, 0.018224284052848816, 0.0071525415405631065, -0.009177462197840214, 0.007250521332025528, -0.022052036598324776, 0.012358546257019043, -0.01515424344688654, 0.01967438869178295, -0.012142990715801716, -0.0005503211286850274, 0.0011104402365162969, -0.020066307857632637, -0.010255241766571999, 0.03529893606901169, -0.03639630973339081, -0.012672082521021366, -0.01291376631706953, -0.006865133531391621, -0.0011357517214491963, -0.0008654901757836342, 0.017649468034505844, -0.004007382784038782, 0.05019189789891243, -0.05471204221248627, 0.006741025485098362, -0.0032235425896942616, 0.01443572249263525, -0.009895982220768929, 0.007263585459440947, 0.002385813510045409, 0.004644252825528383, 0.018498627468943596, -0.00908601377159357, -0.00838708970695734, -0.033365461975336075, 0.028610166162252426, 0.00791025348007679, -0.00649934122338891, 0.007230925373733044, 0.01704852283000946, 0.001333344727754593, 0.0015023603336885571, 0.001041037729009986, -0.02381567656993866, -0.006721429526805878, 0.002278035506606102, 0.008282577618956566, 0.01021604984998703, -0.0061041549779474735, 0.011365681886672974, -0.020850148051977158, 0.0026438275817781687, 0.015010538510978222, -0.0024135743733495474, -0.06166209280490875, 0.02422066032886505, -0.019191019237041473, -0.044705018401145935, 0.011764134280383587, -0.014906027354300022, -0.034044791013002396, -0.03477637469768524, -0.022130420431494713, -0.016970138996839523, 0.00757712172344327, -0.01443572249263525, 0.03673597425222397, -0.011274234391748905, 0.014788450673222542, 0.02032758854329586, -0.011561642400920391, -0.017362060025334358, -0.030230101197957993, -0.018877483904361725, -0.012881106697022915, -0.030804917216300964, 0.02582753263413906, -0.00041212845826521516, -0.048911627382040024, -0.0186162032186985, -0.008550389669835567, -0.03942716121673584, -0.01113706175237894, 0.00922318547964096, 0.02942013368010521, 0.034802503883838654, -0.008955373428761959, 0.0022535405587404966, 0.0035403447691351175, -0.013468986377120018, 0.024233724921941757, -0.0038604128640145063, 0.013808650895953178, 0.0009846992325037718, 0.005944121163338423, -0.015232627280056477, -0.025474805384874344, -0.02599736489355564, -0.012502250261604786, -0.008713689632713795, -0.0024380695540457964, 0.005173345096409321, 0.028453398495912552, -0.008360961452126503, 0.016343066468834877, -0.0021637254394590855, -0.019870348274707794, -0.034358326345682144, 0.027120869606733322, 0.0025638104416429996, -0.03488088771700859, 0.015650674700737, 0.013743330724537373, 0.03887847065925598, -0.024690965190529823, 0.011424470692873001, -0.014723130501806736, -0.005673042964190245, 0.01899505965411663, -0.03589987754821777, -0.01926940307021141, 0.011104402132332325, 0.004017180763185024, 0.03310418128967285, 0.004706306848675013, 0.002764669479802251, 0.019256340339779854, -0.0019236743682995439, 0.010059282183647156, -0.01943923532962799, 0.009569382295012474, -1.259196324099321e-05, 0.014030738733708858, 0.008465473540127277, -0.013782522641122341, 0.0056959050707519054, -0.00929503794759512, 0.02288813330233097, -0.017740914598107338, 0.0052909208461642265, 0.01683949865400791, -0.021581731736660004, -0.03310418128967285, 0.009588978253304958, 0.030726533383131027, -0.006688769441097975, -0.004784691147506237, -0.0018028323538601398, -0.02582753263413906, -0.008713689632713795, -0.03822527080774307, 0.01715303584933281, -0.020954661071300507, 0.011372214183211327, -0.020405972376465797, 0.014200570993125439, -0.03639630973339081, 0.01482764258980751, 0.019739707931876183, -0.019125699996948242, -0.01516730710864067, 0.24434910714626312, -0.01852475479245186, 0.006267455406486988, 0.01783236302435398, -0.007655505556613207, -0.0012418967671692371, 0.006231529172509909, -0.008798605762422085, -0.025304973125457764, -0.003342751646414399, -0.016003403812646866, -0.010340157896280289, 0.005735096987336874, -0.0028332555666565895, 0.01582050696015358, -0.010562245734035969, -0.028740806505084038, -0.015180370770394802, -0.022052036598324776, 0.0012990518007427454, 0.03673597425222397, 0.005130887031555176, -0.009007629938423634, -0.011241573840379715, 0.007087221369147301, -0.006659375503659248, -0.01838105171918869, 0.02853178232908249, 0.01687869057059288, -0.010111537761986256, -0.036709848791360855, 0.029498517513275146, -0.016682730987668037, -0.010327094234526157, -0.0049251290038228035, -0.00926237739622593, 0.045018553733825684, 0.00838708970695734, 0.03294741362333298, 0.010875781998038292, 0.003337852656841278, 0.002560544526204467, -0.01494521927088499, -0.013508178293704987, -0.01732286810874939, 0.02002711594104767, 0.01094763446599245, -0.02743440493941307, 0.013318751007318497, 0.005258261226117611, -0.02508288435637951, -0.03266000747680664, 0.00771429343149066, 0.01151591818779707, -0.012587166391313076, -0.010980294086039066, 0.04122999310493469, -0.009144801646471024, 0.02066725119948387, 0.02743440493941307, -0.00965429749339819, 0.032712262123823166, -0.0075248656794428825, 0.018302667886018753, -0.04052453488111496, 0.011933966539800167, -0.026572180911898613, 0.0014051967300474644, 0.021189812570810318, -0.009811066091060638, -0.0016330003272742033, -0.0002625047927722335, -0.006417691241949797, -0.004327450878918171, -0.006587523501366377, -0.030230101197957993, 0.030151717364788055, 0.014788450673222542, 0.030125590041279793, 0.04365989565849304, 0.01134608592838049, 0.007472609635442495, -0.01520649902522564, -0.003778762649744749, 0.01838105171918869, -0.04162191227078438, 0.025918981060385704, 0.0028185585979372263, -0.019452299922704697, -0.016356131061911583, 0.0009593876893632114, -0.024312108755111694, -0.0008614076650701463, -0.010170325636863708, 0.0008222156902775168, -0.011803326196968555, -0.011254638433456421, 0.011319958604872227, -0.006172741297632456, -0.003221909748390317, -0.024455813691020012, 0.026807332411408424, 0.018642332404851913, 0.019791964441537857, -0.026350094005465508, -0.013782522641122341, 0.0005311333807185292, 0.011130530387163162, 0.010150729678571224, -0.007341969292610884, 0.009092546068131924, -0.04117773473262787, 0.002459298586472869, -0.009863321669399738, -0.0013423262862488627, 0.011176254600286484, -0.018185092136263847, -0.021046107634902, -0.0014566362369805574, 0.0023123284336179495, 0.026389285922050476, 0.005708969198167324, 0.01666966639459133, -0.020889339968562126, -0.012449994683265686, -0.010705949738621712, -0.0007005571387708187, -0.016016466543078423, -0.0014794983435422182, -0.028845317661762238, 0.01212992612272501, -0.003935530781745911, 0.04219672828912735, 0.0045266770757734776, 0.006845537573099136, -0.00369058083742857, -0.00999396201223135, -0.0007230109185911715, -0.011868646368384361, -0.0012721072416752577, -0.009477933868765831, -0.003821220714598894, 0.001622385811060667, -0.01889054849743843, -0.007198265288025141, -0.018498627468943596, 0.0011961727868765593, 0.004124958999454975, -0.002088607521727681, 0.0036285268142819405, -0.03200680762529373, -0.007864529266953468, -0.016081787645816803, 0.016356131061911583, 0.005872269161045551, -0.004115161020308733, -0.025122076272964478, -0.04128224775195122, 0.01647370681166649, 0.003899604780599475, -0.014461850747466087, -0.021411899477243423, 0.007002305239439011, -0.02866242080926895, -0.00965429749339819, -0.03454122319817543, -0.16356131434440613, 0.021908331662416458, 0.022796684876084328, -0.02637622132897377, 0.02732989378273487, -0.009249313734471798, -0.01330568641424179, -0.025187397375702858, 0.002864282578229904, -0.01055571436882019, 0.021620923653244972, -0.00545748695731163, -0.0007230109185911715, -0.02449500560760498, -0.016904819756746292, 0.012868042103946209, -0.03422768786549568, 0.0057808212004601955, 0.04057679325342178, 0.0253833569586277, 0.04635108262300491, -0.024586452171206474, 0.004964320920407772, 0.01670886017382145, 0.01783236302435398, -3.365511656738818e-05, -0.008602645248174667, -0.012182182632386684, 0.0071525415405631065, -0.015585355460643768, 0.0022584395483136177, 0.0028136596083641052, 0.027565045282244682, 0.002914905548095703, 0.018942803144454956, -0.010327094234526157, 0.023071028292179108, -0.0014337742468342185, -0.007224393542855978, 0.007361565250903368, -0.010503457859158516, 0.03916588053107262, 0.0002445417921990156, -0.003094535553827882, 0.0009708186844363809, 0.009980898350477219, -0.0008703891653567553, -0.01013113372027874, 0.008230322040617466, -0.023319244384765625, -0.010784334503114223, -0.015624547377228737, -0.01525875460356474, -0.0024756283964961767, 0.02665056474506855, -0.0018942804308608174, 0.004438494797796011, 0.0043731750920414925, -0.007740421686321497, -0.02309715747833252, 0.004360110964626074, -0.011587770655751228, 0.01294642686843872, -0.005385634955018759, -0.019426172599196434, 0.0013888668036088347, -0.01160083431750536, 0.023084092885255814, -0.02233944460749626, -0.008315237239003181, 0.009765341877937317, -0.01793687604367733, 0.009197058156132698, -0.01094763446599245, -0.005143951158970594, 0.007766549475491047, -0.026010429486632347, 0.010170325636863708, 0.02866242080926895, -0.029812054708600044, -0.002235577441751957, 0.037911735475063324, 0.0112611697986722, -0.005415028892457485, 0.007074157241731882, -0.007622845470905304, -0.003001454519107938, -0.009092546068131924, -0.028165990486741066, -0.02288813330233097, 0.04676913097500801, 0.0009659196948632598, 0.007564057596027851, 0.001175760175101459, -0.003514216747134924, -0.0032741655595600605, 0.0016697428654879332, -0.0003653838357422501, -0.013482050970196724, 0.006629981100559235, 0.01909957267343998, -0.016748052090406418, -0.008223789744079113, 0.017375122755765915, 0.04752684012055397, 0.00973921362310648, -0.020000988617539406, 0.03446283936500549, 0.020458228886127472, -0.019321659579873085, -0.015650674700737, 0.007969041354954243, 0.0012941528111696243, 0.013129322789609432, 0.02986430935561657, 0.0243251733481884, 0.0010214416543021798, 0.0067802174016833305, 0.012142990715801716, 0.011724942363798618, -0.017348995432257652, -0.034802503883838654, 0.012619826942682266, 0.0176625307649374, 0.006391563452780247, -0.001436223741620779, -0.0467430017888546, 0.005385634955018759, 0.0031859837472438812, 0.02039290778338909, -0.006685503292828798, 0.020889339968562126, -0.002429904416203499, 0.017466571182012558, 0.002537682419642806, 0.018851356580853462, -0.016486771404743195, -0.03284290432929993, 0.002542581409215927, 0.01043813768774271, -0.015559227205812931, 0.019426172599196434, 0.012672082521021366, -0.004010648932307959, 0.01852475479245186, 0.008406685665249825, -0.004245800897479057, 0.018537819385528564, -0.0011586137115955353, -0.013678010553121567, -0.01330568641424179, -0.021882204338908195, -0.032477110624313354, 0.00999396201223135, 0.021438028663396835, -0.0025589114520698786, 0.04055066406726837, 0.009608574211597443, -0.009863321669399738, -0.010771269910037518, -0.0006250308942981064, 0.012031946331262589, -0.009451805613934994, -0.007015369366854429, 0.023253925144672394, -0.019726643338799477, 0.0007311758818104863, -0.01806751638650894, 0.003035747678950429, -0.0076620373874902725, -0.01821121945977211, -0.01859007589519024, -0.0002831214223988354, 0.01749270036816597, -0.023802611976861954, -0.004448292776942253, -0.025435613468289375, -0.007250521332025528, -0.012659018859267235, -0.00808008573949337, 0.044469863176345825, 0.029733669012784958, 0.0010075612226501107, 0.003964924719184637, -0.04407794401049614, -0.004030244890600443, -0.01112399809062481, -0.0055260732769966125, -0.00647321343421936, 0.005026374943554401, 0.035716984421014786, 0.022365571931004524, -0.010170325636863708, -0.028401141986250877, 0.015337139368057251, 0.010189921595156193, 0.00876594614237547, 0.021843012422323227, -0.00610742112621665, 0.021921396255493164, -0.03043912537395954, -0.020405972376465797, -0.02115062065422535, -0.018237346783280373, 0.032477110624313354, -0.014474914409220219, -0.013057470321655273, -0.014461850747466087, -0.012802722863852978, -0.012815786525607109, 0.0010116436751559377, 0.010085410438477993, 0.0026111674960702658, 0.0009299936937168241, 0.0004862258501816541, -0.048807114362716675, 0.001739145372994244, 0.013482050970196724, -0.018093643710017204, -0.010176857933402061, -0.012365078553557396, 0.007061093579977751, -0.008857393637299538, 0.008726753294467926, 0.0030831045005470514, 0.024677900597453117, -0.03153650090098381, -0.03686661645770073, -0.08287803083658218, 0.024717092514038086, -0.006244593299925327, -0.019413108006119728, 0.0066267154179513454, 0.016382258385419846, 0.006897793151438236, -0.012280162423849106, 0.006058431230485439, -0.007831869646906853, -0.00904028955847025, -0.01354737114161253, -0.006404627114534378, -0.0002486243029125035, -0.026624437421560287, -0.011502854526042938, 0.023528268560767174, 0.01609485037624836, -0.00900109764188528, 0.019452299922704697, 0.0244296845048666, -0.0003165979287587106, 0.016212427988648415, 0.029498517513275146, -0.01855088397860527, 0.02207816392183304, 0.012175650335848331, 0.027356021106243134, -0.004249067045748234, -0.04661235958337784, -0.012417334131896496, 0.0016330003272742033, -0.00908601377159357, 0.015115050598978996, 0.020340651273727417, 0.002198018366470933, 0.012528378516435623, 0.01083005778491497, 0.014879899099469185, 0.03485475853085518, -0.02470402978360653, 0.0010255242232233286, 0.01698320358991623, -0.005094960797578096, -0.015115050598978996, -0.009765341877937317, -0.006590789183974266, 0.007753485348075628, 0.007655505556613207, 0.041360631585121155, 0.03354835882782936, 0.011372214183211327, -0.027251509949564934, -0.008027829229831696, -0.013664946891367435, -0.05439850687980652, 0.015297947451472282, 0.006319711450487375, -0.013233834877610207, -0.017100779339671135, 0.052909210324287415, -0.0038865408860147, 0.002423372585326433, -0.002945932559669018, 0.00016850522661115974, -0.01137874647974968, -0.026937972754240036, -0.0010336892446503043, 0.0401848703622818, -0.03772883862257004, -0.04086419939994812, -0.006904325447976589, 0.005215803161263466, 0.00934729352593422, 0.010124602355062962, 0.005447688978165388, 0.00018361047841608524, 0.005875535309314728, -0.016290811821818352, 0.025095948949456215, 0.00399758480489254, -0.005601190961897373, -0.04190932214260101, -0.00917092990130186, 0.040498409420251846, 0.014566362835466862, 0.00419354485347867, 0.011607366614043713, -0.010732077993452549, 0.004402569029480219, -0.011333022266626358, 0.01975277252495289, 0.0018959133885800838, 0.009099077433347702, 0.0155461635440588, 0.01947842724621296, -0.008537326008081436, 0.007851465605199337, 0.042484138160943985, 0.0122148422524333, 0.034697990864515305, -0.007505269255489111, 0.012966022826731205, -0.015964211896061897, -0.0064078932628035545, 0.002625864464789629, -0.006064963061362505, -0.05361466482281685, -0.008256449364125729, 0.016460644081234932, -0.008360961452126503, 0.01947842724621296, -0.017479635775089264, 0.0065091392025351524, -0.023632781580090523, 0.016277747228741646, -0.007172137498855591, -0.019060378894209862, -0.021333515644073486, 0.021229004487395287, 0.028270501643419266, -0.0019742974545806646, 0.029498517513275146, -0.010621034540235996, 0.015180370770394802, -0.012371610850095749, 0.009242781437933445, -0.02415534108877182, 0.011189318262040615, 0.005274591036140919, -0.010144198313355446, 0.04005423188209534, -0.025357229635119438, -0.024743221700191498, 0.0019449034007266164, 0.006385031156241894, 0.010843122377991676, -0.0070414976216852665, -0.001366821234114468, 0.07895883172750473, 0.033051926642656326, -0.010222582146525383, -0.00913826934993267, -0.0041118948720395565, 0.008478538133203983, 0.023449884727597237, -0.004121692851185799, -0.0016003403579816222, -0.023933252319693565, 0.0017652733949944377, 0.006437287200242281, 0.010020090267062187, -0.005963717121630907, -0.018681524321436882, 0.010170325636863708, -0.02083708345890045, 0.025187397375702858, -0.01503666676580906, 0.017231419682502747, 0.046481721103191376, 0.0002810801670420915, 0.0032888627611100674, -0.006430755369365215, -0.01571599580347538, 0.0025932046119123697, 0.03796399012207985, 0.005735096987336874, -0.018968932330608368, -0.004931660834699869, 0.03276451677083969, 0.005336645059287548, -0.025461740791797638, -0.013240366242825985, -0.003964924719184637, 0.00030332981259562075, 0.007975573651492596, 0.01759721152484417, 0.039766825735569, 0.0026617904659360647, 0.00890311785042286, 0.011718410067260265, -0.01455329917371273, -0.03699725493788719, 0.022509276866912842, 0.01599033921957016, 0.0017685393104329705, -0.011339554563164711, -0.011646558530628681], "d06f932c-e25f-424e-8550-eb1a0384e2a4": [-0.009768147952854633, -0.02419738657772541, -0.015839073807001114, -0.024312473833560944, -0.019018396735191345, 0.017622947692871094, -0.034238871186971664, -0.036483097821474075, 0.01789628341794014, -0.004168366547673941, 0.019363664090633392, -0.010681664571166039, -0.0039561716839671135, -0.008926562033593655, -0.024298088625073433, -0.01369554828852415, 0.017594175413250923, -0.01745031401515007, 0.024269316345453262, -0.015565738081932068, 0.015752756968140602, 0.016270656138658524, 0.01573837175965309, -0.013299930840730667, -0.0037403807509690523, -0.005427148658782244, -0.0030894107185304165, -0.016788555309176445, 0.01007025595754385, -0.007905150763690472, 0.022586144506931305, -0.0017155399546027184, -0.00014172536612022668, -0.012630977667868137, -0.03504449129104614, -0.009034457616508007, 0.01363800372928381, -0.014817661605775356, -0.015206086449325085, -0.008818666450679302, 0.0138322152197361, -0.001156281097792089, 0.0022028684616088867, 0.004722230602055788, -0.017105048522353172, 0.024902304634451866, -0.02188122645020485, 0.006362243555486202, 0.005445131100714207, 0.004999162629246712, -0.009293407201766968, -0.003314193105325103, -0.04105786979198456, -0.013242386281490326, -0.01917664334177971, 0.012933085672557354, -0.03360588103532791, 0.00980411283671856, -0.01119237020611763, 0.021320169791579247, 0.01834225095808506, -0.003048050682991743, -0.04045365750789642, -0.0023161587305366993, 0.008681999519467354, 0.01795382797718048, -0.006437770556658506, -0.0015141349285840988, -0.023032113909721375, -0.021751752123236656, 0.02228403650224209, 0.032052185386419296, 0.006725492421537638, -0.015522579662501812, 0.014918364584445953, 0.00602417066693306, -0.032857805490493774, 0.02425493113696575, 0.016342585906386375, 0.001196742057800293, 0.012580626644194126, -0.01409835834056139, -0.009667445905506611, -0.011048508808016777, 0.017320839688181877, -0.0034041060134768486, -0.005614167544990778, 0.014155901968479156, 0.01880260556936264, -0.013256772421300411, -0.0024923882447183132, 0.007689359597861767, 0.004427316132932901, 0.02592371590435505, -0.011321844533085823, 0.018917694687843323, -0.0059522404335439205, 0.01388975977897644, -0.003395114792510867, -0.04174840450286865, -0.014537133276462555, 0.027491798624396324, -0.019075941294431686, 0.008890597149729729, -0.03789293393492699, -0.01965138502418995, 0.04160454124212265, -0.0030300680082291365, 0.0005062101990915835, -0.024240544065833092, -0.02678688056766987, -0.005808379501104355, -0.009581129066646099, -0.04174840450286865, -0.022974569350481033, 0.011084474623203278, 0.021651050075888634, 0.001728127826936543, -0.0224422849714756, -0.007239794824272394, 0.0313616544008255, -0.002956339390948415, 0.04419403523206711, -0.014443623833358288, 0.019550682976841927, 0.009689024649560452, -0.012695715762674809, -0.01346537098288536, -0.010393942706286907, -0.01831347867846489, 0.052653051912784576, -0.007185846567153931, 0.017248909920454025, -0.0066679478622972965, -0.019982265308499336, 0.012185009196400642, -0.010336398147046566, 0.0017011539312079549, -0.027160918340086937, -0.01923418790102005, 0.005207760725170374, 0.009897623211145401, 0.00504951411858201, -0.02018366940319538, -0.012559047900140285, 0.022960182279348373, 0.004002926871180534, 0.0006968257366679609, 0.0174934733659029, 0.007775675971060991, 0.02274439111351967, -0.02323351800441742, 0.002884408924728632, -0.0034868260845541954, 0.003303403500467539, -0.021694207563996315, -0.010415521450340748, 0.011839743703603745, -0.024485107511281967, -0.02556406334042549, -0.01228571217507124, -0.007214618846774101, 0.02016928419470787, -0.012415186502039433, 0.03530343994498253, 0.04022347927093506, 0.007085144054144621, 0.02421177178621292, -0.0012111280811950564, 0.0004434958682395518, 0.005901889409869909, 0.019378049299120903, -0.01096219290047884, 0.014601870439946651, 0.018701903522014618, 0.033720970153808594, -0.004279858898371458, 0.017205750569701195, -0.01573837175965309, -0.010379556566476822, -0.0384683758020401, 0.013616424053907394, 0.00425827968865633, 0.04402140527963638, -0.006664351560175419, -0.004380561411380768, 0.00363787985406816, 0.004481263924390078, 0.00981130637228489, -0.002112955553457141, 0.011170790530741215, 0.04266911372542381, -0.02231280878186226, -0.015911003574728966, -0.5533461570739746, -0.0429280623793602, 0.0009548760135658085, 0.012264132499694824, 0.026758108288049698, 0.02513248100876808, 0.014206253923475742, 0.031591832637786865, -0.04068383201956749, 0.025377044454216957, -0.005894696339964867, 0.027146533131599426, -0.004438105504959822, -0.004333806689828634, -0.012961857952177525, -0.011861322447657585, -0.009221477434039116, 0.009523584507405758, -0.009645866230130196, 0.03213850036263466, -0.014659414999186993, 0.020054195076227188, -0.010134993121027946, -0.004380561411380768, 0.014191867783665657, 0.013443791307508945, 0.04016593471169472, -0.011070088483393192, -0.0027225655503571033, 0.02022682875394821, -0.03044094517827034, 0.01251588948071003, -0.012479923665523529, -0.024873532354831696, 0.050782863050699234, 0.004887670744210482, -0.05242287367582321, 0.01409116480499506, 0.020039809867739677, 0.049862153828144073, -0.0007139092194847763, -0.01750785857439041, 0.03320307284593582, 0.010055869817733765, 0.009998325258493423, -0.005833555478602648, 0.0028862073086202145, -0.02772197499871254, 0.0055062719620764256, 0.0059558372013270855, -0.010113414376974106, 0.0026074768975377083, -0.00526170851662755, -0.00184861128218472, 0.007962695322930813, 0.004412929993122816, 0.04045365750789642, -0.03987821191549301, 0.02687319740653038, -0.01411993708461523, -0.01791066862642765, 0.03323184326291084, -0.006743474863469601, 0.014004848897457123, -0.031131476163864136, -0.010602540336549282, -0.024499494582414627, -0.014817661605775356, 0.017248909920454025, -0.035619933158159256, -0.0003486376372165978, -0.006865756586194038, 0.017723649740219116, -0.018198391422629356, 0.013486949726939201, 0.05495482310652733, 0.016385745257139206, -0.0313616544008255, -0.005689694546163082, -0.005171795841306448, 0.011767813004553318, -0.020327530801296234, 0.006207593251019716, -0.0010960394283756614, 0.013443791307508945, -0.018083302304148674, -0.011667110957205296, 0.0015501000452786684, -0.002015849342569709, 0.012091499753296375, 0.023550013080239296, 0.020370688289403915, 0.006391015835106373, -0.023391766473650932, -0.009983939118683338, 0.022730005905032158, -0.026225823909044266, -0.0055494303815066814, 0.00940849632024765, 0.014040813781321049, -0.017248909920454025, 0.007261373568326235, 0.01027166098356247, -0.0028969966806471348, 0.0300381351262331, -0.009983939118683338, -0.03705853968858719, 0.002476203953847289, 0.06283839792013168, -0.010250081308186054, 0.01009183470159769, -0.002566116861999035, -0.023089658468961716, -0.015968548133969307, 0.03579256683588028, -0.030786210671067238, 0.017119435593485832, -0.006775843445211649, 0.010767980478703976, -0.026326525956392288, 0.027103373780846596, 0.014594677835702896, 0.015119769610464573, -0.0046934583224356174, 0.008322346955537796, 0.025247570127248764, 0.03041217289865017, 0.004603545647114515, -0.017148207873106003, -0.0013846601359546185, -0.0160980224609375, 0.01795382797718048, 0.02908865362405777, -0.03185078129172325, 0.012242553755640984, 0.0028592334128916264, 0.001409835764206946, -0.008703578263521194, 0.01030043326318264, -0.019133485853672028, -0.012731680646538734, -0.006872949656099081, -0.0023862910456955433, -0.0053732008673250675, -0.009314986877143383, -0.018687518313527107, -0.01501906756311655, -0.00848778709769249, -0.020672796294093132, 0.014716959558427334, 0.037375036627054214, 0.0037691527977585793, 0.009552356787025928, 0.01363081019371748, -0.004042488522827625, -0.007282952778041363, 0.0014961522538214922, -0.038266971707344055, -0.011976411566138268, 0.01569521240890026, 0.010660084895789623, 0.005689694546163082, -0.013127298094332218, -0.00018241099314764142, -0.020917359739542007, -0.027017056941986084, 0.008013046346604824, 0.0008654125849716365, -0.008897790685296059, -0.018558042123913765, -0.01785312406718731, -6.816528912167996e-05, 0.023924050852656364, -0.013810636475682259, -0.01837102323770523, 0.0025409413501620293, -0.030699893832206726, 0.015206086449325085, -0.02274439111351967, -0.013371860608458519, 0.017666105180978775, -0.012177816592156887, 0.01049464475363493, 0.01524924486875534, 0.0015051435912027955, 0.01565205492079258, 0.039561718702316284, 0.013249579817056656, -0.029218127951025963, 0.003549765096977353, -0.021593505516648293, 0.03536098450422287, 0.011228335089981556, -0.003100200090557337, 0.05397656932473183, 0.005995398852974176, 0.022125789895653725, 0.03139042481780052, 0.009113581851124763, 0.028987949714064598, 0.015033453702926636, -0.006455753464251757, 0.008962527848780155, -0.024053525179624557, 0.039619263261556625, -0.017637332901358604, -0.012134658172726631, 0.007254180498421192, 0.024787215515971184, 0.028455665335059166, -0.008869018405675888, -0.030613576993346214, -0.011249914765357971, -0.005060303490608931, 0.010782366618514061, 0.014565905556082726, -0.00031649376614950597, 0.004862494766712189, -0.02422615885734558, 0.013616424053907394, -0.0004972188617102802, -0.018701903522014618, 0.015551351942121983, -0.014479589648544788, 0.006693123374134302, -0.012638171203434467, 0.007225408684462309, 0.006290313322097063, 0.005617764312773943, -0.049344252794981, -0.005038724280893803, -0.007380058988928795, -0.014932750724256039, 0.009343759156763554, 0.016716623678803444, -0.008761122822761536, 0.01611240953207016, -0.00825041625648737, 0.026297753676772118, -0.012213781476020813, 0.004783371463418007, 0.01930611953139305, -0.011997990310192108, -0.004261875990778208, -0.0027873029466718435, 0.022686848416924477, 0.05423552170395851, 0.02944830432534218, -0.026686178520321846, 0.03139042481780052, -0.031102703884243965, -0.00039539241697639227, -0.005092672072350979, 0.006718299351632595, 0.016889257356524467, 0.006711106281727552, 0.008890597149729729, 0.016457675024867058, 0.018486112356185913, 0.026671791449189186, 0.015292402356863022, 0.010372363030910492, -0.00871796440333128, 0.017579790204763412, -0.024269316345453262, -0.024010367691516876, -0.0014979505212977529, 0.004686265252530575, -0.02723284810781479, -0.01660153642296791, -0.018989624455571175, 0.013767478056252003, 0.014422045089304447, 0.003100200090557337, -0.017277682200074196, -0.0075383055955171585, -0.009581129066646099, -0.02051454968750477, 0.035188350826501846, -0.017694877460598946, -0.006660754792392254, -0.03993575647473335, 0.032368678599596024, -0.009365337900817394, 0.003902224125340581, -0.011098860763013363, -0.00871796440333128, -0.006448560394346714, 0.01076078787446022, 0.011170790530741215, 0.009717796929180622, 0.010027097538113594, 0.015867846086621284, 0.026714950799942017, -0.013961690478026867, -0.023607557639479637, 0.006369436625391245, -0.021636663004755974, -0.03268517181277275, 0.015436263754963875, 0.0005138528067618608, 0.002524757059291005, -0.028757773339748383, -0.02288825251162052, 0.04373368248343468, 0.0028160749934613705, -0.020212441682815552, 0.0010474864393472672, 0.010192537680268288, -0.015551351942121983, -0.010595347732305527, 0.0042295074090361595, -0.019406821578741074, -0.012400800362229347, -0.0287146158516407, 0.010444293729960918, -0.0001688116608420387, -0.027952153235673904, 0.04802073538303375, 0.013350281864404678, -0.016385745257139206, -0.02106122113764286, -0.008825859986245632, 0.012494309805333614, -0.010631312616169453, 0.00873954314738512, -0.0035515634808689356, 0.008120941929519176, -0.03538975492119789, 0.02110437862575054, -0.009739375673234463, -0.01568082720041275, -0.0010402933694422245, -0.026125119999051094, 0.0015366130974143744, 0.0035461685620248318, 0.017622947692871094, -0.010350784286856651, 0.0014520948752760887, 0.011602372862398624, 0.015105383470654488, -0.014645028859376907, -0.0007849404937587678, -0.027463026344776154, -0.0007368370424956083, -0.011429740116000175, 0.01119237020611763, 0.006775843445211649, -0.012472731061279774, 0.00357314245775342, 0.012163430452346802, 0.008459014818072319, 0.015465036034584045, -0.011832550168037415, -0.017781194299459457, -0.004002926871180534, -0.003075024578720331, 0.03530343994498253, -0.004287051968276501, 0.00831515435129404, 0.024744056165218353, 0.03746135160326958, -0.00424029678106308, -0.005747238639742136, 0.018126459792256355, 0.03409500792622566, 0.028484437614679337, -0.015752756968140602, 0.01499029528349638, -0.01501906756311655, -0.03210972994565964, 0.0037619597278535366, -0.02142087183892727, -0.030613576993346214, 0.011890094727277756, -0.0031073931604623795, -0.05271059647202492, -0.0035515634808689356, -0.012602205388247967, 0.02944830432534218, -0.0030192784033715725, 0.00108974555041641, 0.00963148009032011, -0.01657276414334774, 0.004323016852140427, -0.0131704555824399, -0.03435395658016205, -0.014249412342905998, -0.005337235517799854, -0.01654399186372757, 0.0014574896777048707, -0.0008914873469620943, -0.02198193036019802, -0.012127465568482876, 0.0227875504642725, -0.04574773460626602, -0.029376374557614326, 0.02008296735584736, 0.02153596095740795, 0.006020574364811182, 0.021176308393478394, -0.025305114686489105, -0.002839452587068081, 0.0330304391682148, -0.013688354752957821, 0.009883237071335316, -0.002008656272664666, -0.03461290895938873, 0.009940780699253082, -0.014947136864066124, 0.013357475399971008, -0.003609107807278633, -0.007703745737671852, 0.02152157574892044, 0.040482427924871445, 0.0021219467744231224, 0.03265640139579773, 0.019147872924804688, -0.001389155862852931, -0.018155232071876526, 0.010681664571166039, 0.02058647945523262, 0.013753091916441917, -0.011810971423983574, 0.014170288108289242, -0.021334556862711906, -0.01340063288807869, -0.00782602746039629, -0.00592346815392375, -0.015076611191034317, 0.018989624455571175, -0.005747238639742136, 0.0048085469752550125, 0.004456087946891785, 0.019075941294431686, 0.009106388315558434, 0.008933755569159985, 7.788713264744729e-05, 0.025362659245729446, 0.008394277654588223, -0.005499078892171383, 0.008840246126055717, 0.012954664416611195, -0.009480426087975502, 0.02100367657840252, -0.02904549427330494, 0.006150049157440662, 0.02096051722764969, 0.0022712023928761482, 0.02096051722764969, -0.0006810909835621715, -0.05317094922065735, -0.03475676849484444, 0.01926296018064022, -0.003677441505715251, 0.02098928950726986, 0.014745731838047504, -0.021564733237028122, -0.02913181111216545, -0.015465036034584045, 0.005621360614895821, 0.012789225205779076, -0.012091499753296375, -0.045862823724746704, -0.022945797070860863, 0.03006690740585327, 0.0036073094233870506, -0.008041818626224995, -0.03231113404035568, -0.02995181828737259, -0.016241883859038353, 0.008897790685296059, -0.005847941618412733, 0.02065841108560562, 0.0015348148299381137, 0.003477834863588214, -0.017320839688181877, 0.0011400968069210649, 0.004200735129415989, -0.02365071512758732, -0.026254596188664436, -0.00986885093152523, 0.026556702330708504, 0.03662695735692978, 0.021320169791579247, 0.01568082720041275, 0.016702238470315933, -0.008840246126055717, 0.031016387045383453, -0.010343591682612896, 0.0007098631467670202, 0.013443791307508945, -0.01658714935183525, 0.01795382797718048, 0.031534288078546524, 0.015465036034584045, 0.02601003274321556, -0.015939775854349136, -0.02149280346930027, 0.01884576492011547, 0.013026595115661621, -0.019018396735191345, 0.00830796081572771, -0.047675468027591705, 0.005340832285583019, -0.027865836396813393, -0.004938021767884493, -0.0011634741676971316, 0.006869352888315916, -0.01095499936491251, 0.00805620476603508, -0.001981682376936078, 0.028829703107476234, 0.024700898677110672, 0.01927734725177288, -0.008106555789709091, 0.0006033162353560328, -0.002042823238298297, 0.03216727450489998, 0.006711106281727552, 0.009243056178092957, 0.015134155750274658, 0.008142520673573017, -0.02602441795170307, -0.005894696339964867, -0.007416023872792721, 0.0015159331960603595, 0.016802940517663956, 0.027434254065155983, 0.028858475387096405, -0.016313813626766205, -0.01455151941627264, 0.005844344850629568, -0.0290598813444376, -0.013307123444974422, -0.02375141717493534, -0.017292067408561707, -0.02998059056699276, -0.006516893859952688, -0.005196971353143454, -0.01300501637160778, 0.018903309479355812, -0.012393607757985592, -0.011170790530741215, -0.013091332279145718, -0.020687183365225792, 0.0430719219148159, 0.009696217253804207, -0.0020985694136470556, 0.029836729168891907, -0.011235528625547886, -0.015393105335533619, -0.05084040388464928, 0.011257107369601727, -0.024456335231661797, 0.015378719195723534, 0.07572832703590393, -0.010120606981217861, -0.012674136087298393, 0.009681832045316696, -0.01181816402822733, -0.013012208975851536, -0.02365071512758732, 0.01663030870258808, 0.009271828457713127, -0.017162593081593513, -0.009156739339232445, 0.022514214739203453, -0.05337235704064369, 0.015594510361552238, -0.01923418790102005, -0.03492940217256546, -0.010595347732305527, 0.004060470964759588, -0.005718466825783253, 0.013551686890423298, -0.012443958781659603, -0.0031505513470619917, 0.020773498341441154, -0.026096347719430923, 0.008624454960227013, -0.017781194299459457, -0.019536295905709267, 0.018155232071876526, -0.01365958247333765, 0.044050175696611404, -0.002938356716185808, -0.02228403650224209, 0.005045917350798845, -0.0027926976326853037, -0.011810971423983574, -0.01709066331386566, -0.01227851863950491, 0.04298560693860054, 0.019838403910398483, -0.018270321190357208, -0.01455871295183897, -0.0031667358707636595, 0.019349277019500732, -0.0021830876357853413, 0.0015608896501362324, 0.00896972045302391, -0.002206464996561408, -0.012990630231797695, 0.013098525814712048, -0.0201405119150877, 0.003114586230367422, -0.01478889025747776, -0.01704750396311283, -0.011026930063962936, -0.026959512382745743, -0.01569521240890026, 0.018227163702249527, -0.0213920995593071, -0.007588657084852457, -0.016702238470315933, -0.014486782252788544, 0.0028214699123054743, -0.015177314169704914, 0.004492053296416998, 0.002470809267833829, 0.04744528979063034, -0.00937253050506115, 0.017651719972491264, -0.011055702343583107, 0.015867846086621284, -0.021205080673098564, 0.0011850532609969378, -0.009358144365251064, -0.02828303351998329, 0.0340086929500103, -0.03728871792554855, -0.01782435178756714, -0.024024752900004387, 0.002139929449185729, 0.013328703120350838, 0.006150049157440662, 0.010336398147046566, 0.035073261708021164, -8.0640718806535e-05, 0.014213446527719498, 0.0022154562175273895, -0.03705853968858719, -0.004578369669616222, -0.02727600745856762, 0.0020374285522848368, 0.0016795748379081488, 0.012796417810022831, -0.010890262201428413, -0.011508863419294357, -0.005441534798592329, 0.00024591205874457955, -0.018644358962774277, -0.033778514713048935, 0.005779607687145472, -0.017781194299459457, -0.028815317898988724, -0.029692867770791054, -0.0014808670384809375, -0.01829909346997738, -0.02153596095740795, -0.003948979079723358, 0.003736784216016531, 0.0012300098314881325, 0.005653729196637869, 0.02107560634613037, -0.007290145847946405, -0.0010169160086661577, -0.007667780388146639, -0.003747573820874095, -0.00729374261572957, -0.01300501637160778, -0.013623617589473724, -0.027506183832883835, -0.03176446259021759, 0.034267641603946686, 0.0028250664472579956, -0.01253746822476387, -0.032052185386419296, -0.00129025150090456, -0.033375706523656845, -0.02054332196712494, -0.0013343088794499636, 0.03656941279768944, 0.030210766941308975, -0.00614285608753562, 0.005405569449067116, -0.012904313392937183, -0.014170288108289242, 0.02510370872914791, 0.00022624358825851232, 0.005071092862635851, -0.021823683753609657, -0.001461086212657392, -0.005089075770229101, -0.020471392199397087, -0.012321677058935165, -0.02775074727833271, 0.008451822213828564, 0.004916442558169365, -0.02062963880598545, 0.021147537976503372, 0.021363329142332077, -0.00592346815392375, -0.01745031401515007, -0.015623282641172409, 0.00340770254842937, 0.009746569208800793, -0.013256772421300411, -0.03216727450489998, 0.01319922786206007, 0.02367948740720749, 0.019924720749258995, -0.0034706417936831713, 0.010019904933869839, 0.0009971351828426123, -0.0055062719620764256, 0.011034122668206692, -0.013594845309853554, 0.009264634922146797, -0.016687853261828423, -0.02375141717493534, 0.014594677835702896, -0.02152157574892044, 0.003125375835224986, 0.018198391422629356, 0.0012012376682832837, -0.01208430714905262, -0.004186348989605904, 0.009264634922146797, -0.02234158106148243, -0.0027873029466718435, 0.012652557343244553, -0.0003488624352030456, -0.002943751635029912, 0.0075958501547575, 0.013875373639166355, -0.030584804713726044, 0.007739711087197065, 0.003758363425731659, 0.008156906813383102, -0.026153892278671265, 0.0075958501547575, 0.0264128427952528, -0.02324790507555008, -0.00637303339317441, 0.004682668950408697, -0.003461650339886546, 0.02329106256365776, -0.021607892587780952, 0.023104043677449226, -0.04606422781944275, 0.027549343183636665, 0.009063229896128178, -0.003571344306692481, -0.025348272174596786, 0.005876713432371616, 0.008034625090658665, 0.01075359433889389, 0.00940130278468132, 0.2455991506576538, -0.022988954558968544, 0.0059342579916119576, 0.0246721263974905, -0.011012543924152851, -0.0032980088144540787, 0.03044094517827034, -0.014680994674563408, -0.013292737305164337, 0.042755428701639175, -0.01962261274456978, -0.007416023872792721, -0.004020909313112497, 0.0025625203270465136, -0.009573936462402344, 0.007103126961737871, -0.03190832585096359, -0.02015489712357521, -0.020744726061820984, -0.003456255653873086, 0.026973899453878403, -0.009883237071335316, 0.018457340076565742, -0.0068046157248318195, -0.005297673866152763, 0.007480761501938105, -0.02995181828737259, 0.00937253050506115, 0.021147537976503372, -0.00011935950169572607, -0.027002671733498573, -0.008998492732644081, -0.008236031047999859, 0.013522914610803127, 0.009350951761007309, -0.00637303339317441, 0.017579790204763412, 0.028916019946336746, 0.021205080673098564, 0.0037835389375686646, -0.002334141405299306, 0.008955334313213825, -0.01608363725244999, -0.01342940516769886, -0.023463696241378784, 0.016385745257139206, -0.008459014818072319, -0.013134490698575974, 0.02061525173485279, 0.009947974234819412, -0.042295075953006744, -0.013026595115661621, 0.01832786574959755, 0.019004011526703835, 0.0014008445432409644, -0.0049452148377895355, 0.021651050075888634, -0.013386246748268604, 0.0131704555824399, 0.016860485076904297, -0.00526170851662755, 0.03996453061699867, 0.000824052607640624, 0.010170958004891872, -0.032944124191999435, 0.020255601033568382, -0.043561048805713654, 0.0200685802847147, 0.009235863573849201, -0.02506055124104023, 0.008638841100037098, 0.017637332901358604, -0.011609566397964954, 0.0037619597278535366, -0.020313143730163574, -0.027650045230984688, 0.023017726838588715, 0.016846099868416786, 0.018615586683154106, 0.04025224968791008, -0.008437436074018478, -0.003445466049015522, 0.010422714985907078, 0.0069340905174613, -0.007631815038621426, -0.02096051722764969, 0.012271326035261154, -0.002145324135199189, -0.006358647253364325, 0.0016409122617915273, 0.0028412507381290197, -0.022255266085267067, 0.020399460569024086, -0.017781194299459457, 0.00874673668295145, 0.026225823909044266, -0.012120272032916546, 0.013515722006559372, -0.01963699795305729, 0.006488122045993805, -0.022154562175273895, 0.03369219973683357, 0.03363465517759323, 0.014652222394943237, -0.018270321190357208, 0.004031698685139418, 0.011113246902823448, 0.02365071512758732, 0.0011634741676971316, -0.00914235319942236, -0.014465203508734703, -0.04741651937365532, -0.0001319473230978474, 0.009048843756318092, 0.021794911473989487, 0.044913340359926224, -0.03438273072242737, -0.01746470108628273, -0.0037116084713488817, -0.006124873645603657, 0.05328603833913803, -0.003787135472521186, 0.00830796081572771, -0.013479756191372871, -0.010156571865081787, -0.019795246422290802, -0.01739276945590973, -0.021780524402856827, -0.017536630854010582, -0.03613783046603203, 0.028383735567331314, -0.01873067580163479, 0.012372028082609177, 0.016313813626766205, 0.011480091139674187, 0.0034976156894117594, 0.03593642637133598, -0.024053525179624557, 0.0006689527072012424, -5.422877802629955e-05, 0.010084642097353935, 0.03754766657948494, 0.010307625867426395, 0.006819001864641905, -0.015824686735868454, -0.016428902745246887, -0.008415856398642063, 0.002871821168810129, 0.004189945757389069, -0.023118430748581886, -0.028959179297089577, -0.030757438391447067, -0.019852789118885994, -0.0062651378102600574, 0.004035295452922583, -0.0055242544040083885, -0.018903309479355812, -0.04833722859621048, -0.03167814761400223, 0.03760521113872528, -0.052969545125961304, -0.020730340853333473, 0.04206489771604538, -0.04264033958315849, -0.013688354752957821, -0.019349277019500732, -0.1849474459886551, 0.023391766473650932, 0.019550682976841927, -0.020787885412573814, 0.01973770186305046, -0.012098693288862705, 0.00802023895084858, -0.022485442459583282, 0.005718466825783253, -0.015364333055913448, 0.03662695735692978, 0.0066032106988132, -0.03631046414375305, 0.00307142804376781, 0.0015590913826599717, 0.014033621177077293, -0.02821110188961029, 0.021636663004755974, 0.045431241393089294, 0.019809631630778313, 0.028541982173919678, -0.013242386281490326, -0.0044057369232177734, 0.021679822355508804, -0.0031829201616346836, 0.0053696040995419025, -0.005887503270059824, 0.009581129066646099, 0.00014678297156933695, -0.027650045230984688, 0.0012506898492574692, 0.00018926686607301235, 0.02461458183825016, 0.006319085601717234, 0.010588154196739197, -0.01788189634680748, -0.01026446744799614, -0.00727575970813632, 0.00804901123046875, 0.007487954571843147, -0.007883572019636631, 0.04203612357378006, -0.011472898535430431, -0.0014377088518813252, 0.00984007865190506, 0.018989624455571175, -0.002778311725705862, -0.00040370936039835215, -0.007243391126394272, -0.0015186305390670896, -0.007487954571843147, -0.04217998683452606, -0.01700434647500515, 0.010487452149391174, 0.03254131227731705, 0.013767478056252003, 0.007739711087197065, 0.0010411925613880157, -0.007128302473574877, 0.006301102694123983, -0.012091499753296375, -0.03481431305408478, 0.0348430834710598, 0.0019241381669417024, -0.017651719972491264, -0.027506183832883835, -0.0037439772859215736, 0.0026506350841373205, -0.01563766784965992, 0.0014125332236289978, 0.011293072253465652, -0.02242789790034294, 0.026197051629424095, -0.012098693288862705, 0.01788189634680748, -0.004981180187314749, -0.005779607687145472, 0.011170790530741215, 0.030210766941308975, -0.002591292606666684, -0.015594510361552238, 0.054436925798654556, 0.006182417739182711, -0.025204410776495934, 0.00891217589378357, 0.022917024791240692, 0.003776345867663622, -0.022082632407546043, -0.016846099868416786, -0.03711608424782753, 0.0402810238301754, -0.020744726061820984, -0.008171292953193188, 0.008703578263521194, 0.010631312616169453, 0.0026848020497709513, -0.008099363185465336, 0.019478751346468925, -0.022456670179963112, -0.018932081758975983, -0.011494477279484272, -0.007200232706964016, -0.00980411283671856, 0.026542317122220993, 0.03927399590611458, 0.023607557639479637, -0.022917024791240692, 0.025808626785874367, 0.02729039266705513, -0.002174096181988716, -0.014414851553738117, 0.012443958781659603, 0.03705853968858719, 0.01605486497282982, 0.022183334454894066, 0.0026110734324902296, 0.007171460893005133, -0.0069772484712302685, 0.009329373016953468, 0.0038051181472837925, -0.0165152195841074, -0.01926296018064022, 0.02678688056766987, 0.038756098598241806, 0.012882734648883343, 0.0024060718715190887, -0.06387419253587723, -0.02110437862575054, -0.014393272809684277, 0.03268517181277275, -0.02280193567276001, 0.027534956112504005, -0.011012543924152851, 0.034238871186971664, 0.0030804192647337914, 0.010717629455029964, 0.010580961592495441, -0.04123050346970558, -0.006783036515116692, 0.004301437642425299, -0.011055702343583107, -0.010580961592495441, 0.005556623451411724, -0.014745731838047504, -0.014364500530064106, 0.02998059056699276, -0.0187450610101223, -0.00036617068690247834, 0.015896618366241455, -0.0178387388586998, -0.00201944587752223, -0.01069604977965355, -0.02285948023200035, 0.05014987289905548, 0.018960852175951004, 0.002382694510743022, 0.05820607766509056, 0.01115640439093113, -0.002706381259486079, -0.0021363329142332077, -0.0006091605755500495, 0.02012612484395504, 0.0021093590185046196, -0.006970055401325226, 0.010055869817733765, -0.013048173859715462, 0.010746401734650135, -0.011552021838724613, -0.0009674638858996332, -0.003127173986285925, -0.020284371450543404, -0.02779390662908554, -0.003538975492119789, 0.004323016852140427, -0.0032944122795015574, -0.0183997955173254, -0.01435011439025402, -0.01709066331386566, 0.0025787048507481813, -0.0187450610101223, 0.01929173246026039, 0.02901672199368477, 0.01660153642296791, 0.023895278573036194, -0.04327332600951195, 0.007459182292222977, 0.0016930617857724428, -0.0022981762886047363, -0.011544829234480858, 0.03176446259021759, 0.017363999038934708, -0.008343926630914211, -0.007451989222317934, -0.030268311500549316, 0.02022682875394821, 0.008840246126055717, -0.01409116480499506, 0.007682166527956724, -0.02815355733036995, 0.007333304267376661, -0.024326860904693604, -0.030095677822828293, -0.02336299419403076, -0.035591162741184235, 0.027880221605300903, -0.0002614220429677516, -0.00014228731743060052, -0.009084809571504593, -0.007326111197471619, -0.002208263147622347, 0.0366557314991951, 0.006786633282899857, -0.017248909920454025, 0.01739276945590973, 0.007437603082507849, -0.01968015730381012, 0.0018899712013080716, 0.0046574934385716915, -0.00043203195673413575, -0.015882231295108795, -0.0017856721533462405, -0.002312562195584178, 0.027952153235673904, 0.01161675900220871, 0.008156906813383102, 0.03619537502527237, -0.027966538444161415, -0.016227498650550842, -0.08021678030490875, 0.023434923961758614, -0.0027333551552146673, 0.015306788496673107, 0.007523919455707073, 0.020917359739542007, 0.00526170851662755, -0.013501335866749287, -0.013745899312198162, -0.011717461980879307, -0.05506991222500801, 0.02378018945455551, 0.009537970647215843, -0.004290648270398378, -0.04025224968791008, -0.028987949714064598, 0.03769152984023094, -0.005315656308084726, 0.01563766784965992, 0.03311675414443016, 0.015407491475343704, 0.011674303561449051, 0.004729423671960831, 0.005556623451411724, -0.010609733872115612, 0.0178387388586998, -0.006286717019975185, -0.001516832271590829, -0.0023251501843333244, -0.02460019662976265, -0.016313813626766205, -0.022025087848305702, -0.01435730792582035, -0.011731848120689392, 0.0025571256410330534, -0.008624454960227013, 0.004215121269226074, -0.004894863814115524, 0.0023701065219938755, 0.0376339852809906, -0.007236198056489229, -0.016299428418278694, 0.017162593081593513, -0.019435593858361244, -0.027851449325680733, -0.011868515983223915, -0.011235528625547886, 0.013544494286179543, 0.024240544065833092, 0.03282903507351875, 0.013163262978196144, -0.014860820025205612, -0.0037331876810640097, -0.010580961592495441, -0.00014093863137532026, -0.05138707533478737, 0.003510203445330262, 0.01924857497215271, -0.011933253146708012, -0.01608363725244999, -0.01026446744799614, 0.02554967813193798, -0.001755101722665131, -0.01747908629477024, -0.011537635698914528, -0.005060303490608931, -0.006074522156268358, -0.013724319636821747, 0.018097687512636185, -0.02547774650156498, -0.015752756968140602, -0.016313813626766205, 0.0160980224609375, 0.00602417066693306, 0.0026937935035675764, 0.021377714350819588, -0.009667445905506611, 0.0007948309066705406, -0.02149280346930027, 0.026973899453878403, -0.00827918853610754, -0.002702784724533558, -0.03659818693995476, -0.018932081758975983, 0.002558924024924636, -0.018457340076565742, -0.0009350951877422631, -0.001444901921786368, -0.00983288511633873, 0.023434923961758614, -0.01277483906596899, 0.018658746033906937, 0.006434174254536629, -0.0021704998798668385, -0.006117680575698614, 0.03892873227596283, -0.01743592880666256, -0.03521712124347687, 0.01884576492011547, 0.01873067580163479, 0.023852119222283363, -0.01366677600890398, -0.02644161507487297, -0.00581197626888752, -0.019593840464949608, -0.001576174865476787, -0.015810301527380943, -0.025233183056116104, 0.0004223663127049804, 0.019996650516986847, 0.005927064921706915, 0.016644693911075592, -0.0048337229527533054, 0.02234158106148243, 0.002591292606666684, 0.01568082720041275, -0.01435011439025402, -0.03725994750857353, -0.03162060305476189, 0.029246900230646133, 0.02723284810781479, 0.0033105965703725815, 0.04022347927093506, -0.0014017436187714338, 0.04977583512663841, -0.018514884635806084, 0.02185245417058468, -0.025377044454216957, 0.020485777407884598, -0.012695715762674809, -0.01406958606094122, 0.0026434422470629215, -0.011969218030571938, -0.023032113909721375, -0.010393942706286907, 0.0029869098216295242, -0.0036558625288307667, 0.00336634274572134, -0.005765221547335386, 0.09788288921117783, 0.008070590905845165, 0.0005044119316153228, 0.005635746754705906, 0.01700434647500515, -0.003808714682236314, 0.027635658159852028, 0.00943007506430149, 0.0045388080179691315, -0.02366510033607483, 0.04045365750789642, -0.0214640311896801, 0.03619537502527237, -0.011257107369601727, -0.026988284662365913, -0.016860485076904297, -0.034641679376363754, 0.045402467250823975, -0.015206086449325085, 0.02241351269185543, 0.05696887522935867, 0.013954496942460537, 0.0030354626942425966, 0.009502005763351917, -0.026556702330708504, -0.013616424053907394, 0.028383735567331314, 0.0050998651422560215, -0.010005518794059753, -0.006074522156268358, 0.020816657692193985, 0.0052149537950754166, -0.003191911382600665, -0.015364333055913448, 0.005045917350798845, 0.01366677600890398, -0.020902974531054497, 0.02106122113764286, 0.02685881033539772, -0.022917024791240692, -0.002246026648208499, -0.01138658169656992, -0.023089658468961716, -0.03225358948111534, 0.021737366914749146, -0.01871628873050213, -0.00615364545956254, -0.004625124391168356, -0.0069340905174613], "6080eb17-0342-412b-a707-27fcebbc620b": [-0.008088583126664162, -0.011053486727178097, -0.01691497676074505, -0.015193420462310314, -0.014592241495847702, 0.0035148446913808584, -0.028911219909787178, -0.03262759745121002, 0.022065984085202217, -0.01814465969800949, 0.02341863512992859, -0.016300134360790253, 0.02091827802360058, -0.014974809251725674, -0.010138055309653282, -0.0290205255150795, 0.007562552113085985, -0.01451026275753975, -0.005899063777178526, -0.04918733239173889, 0.020412743091583252, -0.003572913119569421, 0.005530158989131451, -0.027326295152306557, -0.034540437161922455, 0.0011929635656997561, 0.01210554875433445, -0.02433406561613083, 0.021956678479909897, -0.0048811594024300575, 0.02192935161292553, -0.005776095669716597, 0.024416044354438782, -0.014441946521401405, -0.02191568911075592, 0.010582108050584793, -0.006001537665724754, -0.0021775641944259405, -0.013635821640491486, 0.002256127307191491, 0.03883066400885582, -0.0044883438386023045, 0.0010717031545937061, 0.02100025676190853, -0.006630042102187872, 0.017529817298054695, -0.02787282131612301, -0.0013535055331885815, 0.01108081266283989, -0.000618257443420589, -0.006968205329030752, 0.015494009479880333, -0.03541487827897072, -0.023118045181035995, -0.005065612029284239, -0.0010418150341138244, 0.0028658451046794653, 0.01181862223893404, -0.00914064608514309, -0.006346532143652439, 0.018226638436317444, -0.027094021439552307, -0.032600268721580505, -0.01517975702881813, 0.01690131425857544, -0.001181008294224739, -0.012576927430927753, -0.0014525633305311203, -0.024580001831054688, -0.008867383003234863, 0.017680112272500992, 0.03262759745121002, 0.011921096593141556, 0.001870143343694508, 0.023322992026805878, -0.002604537410661578, 0.009974097833037376, 0.022913098335266113, 0.01814465969800949, 0.024580001831054688, 0.009994592517614365, 0.004211665131151676, -0.01483817771077156, -0.011340412311255932, 0.015603314153850079, 0.0017360736383125186, -0.010397654958069324, 0.02923913486301899, 0.01724289171397686, -0.00048119897837750614, -0.006004953291267157, 0.02042640559375286, 0.0016558027127757668, 0.007555720396339893, -0.01792605035007, 0.023910507559776306, -0.013676811009645462, 0.015944892540574074, 0.001991403754800558, -0.029512397944927216, 0.008300362154841423, 0.012221685610711575, -0.04077083244919777, 0.005386695731431246, -0.04033361002802849, -0.007480573374778032, 0.0075010680593550205, -0.029758336022496223, -0.0058854008093476295, -0.013376221060752869, -0.03268224745988846, 0.02650650590658188, 0.010329339653253555, -0.028173409402370453, -0.01941533200442791, 0.007275626063346863, 0.01501579862087965, -0.027790842577815056, -0.012734053656458855, -0.0174615029245615, 0.022544194012880325, 0.0009794768411666155, 0.034759048372507095, 0.004085280932486057, 0.028392020612955093, 0.01780308037996292, -0.006411431822925806, -0.003449944779276848, 0.007583046797662973, -0.025741370394825935, 0.05079958215355873, 5.918918031966314e-05, 0.01598588190972805, 0.009775982238352299, -0.011866443790495396, 0.006121090147644281, 0.0020733827259391546, -0.0005119410343468189, -0.016013208776712418, -0.010998833924531937, 0.022626172751188278, 0.015056788921356201, -0.016382113099098206, -0.02216162532567978, 0.005970795638859272, -0.011217444203794003, 0.0037334549706429243, 0.004238991532474756, 0.009181635454297066, 0.0048538330011069775, -0.013260084204375744, -0.015685293823480606, 0.00033901684219017625, 0.005499416962265968, -0.005905895493924618, -0.01646409183740616, 0.02695739082992077, 0.0040579549968242645, -0.024142781272530556, -0.014660556800663471, -0.003470439463853836, 0.006995531730353832, 0.027476590126752853, -0.014196010306477547, 0.011347243562340736, 0.03574279323220253, -0.0017044777050614357, -0.00019075034651905298, -0.010698244906961918, 0.011231107637286186, 0.0010486465180292726, -0.0021263272501528263, -0.012788706459105015, -0.0038905811961740255, -0.001851356471888721, 0.029649030417203903, 0.004553243983536959, 0.017434176057577133, -0.0057931747287511826, -0.0002016381622524932, -0.00885371956974268, 0.0011699070455506444, 0.02533147484064102, 0.02213429845869541, -0.008928867056965828, -0.025645727291703224, 0.00659930007532239, -0.019319690763950348, 0.014059378765523434, 0.015261735767126083, 0.025208506733179092, 0.045498281717300415, -0.011203780770301819, -0.013478695414960384, -0.5968062877655029, -0.03085138648748398, -0.013150779530405998, -0.013861263170838356, 0.03503230959177017, 0.0054925852455198765, 0.013191768899559975, 0.021861035376787186, -0.027353622019290924, 0.02307705581188202, -0.00404770765453577, 0.033747974783182144, -0.019319690763950348, -0.00219976669177413, -0.008641940541565418, -0.023432297632098198, 0.0014124278677627444, -0.0050177909433841705, 0.020399078726768494, 0.030550798401236534, 0.005817085038870573, 0.016149841248989105, -0.016942303627729416, 0.004208249505609274, 0.017311207950115204, 0.0002764652599580586, 0.005564316641539335, 0.004580570384860039, -0.00219976669177413, 0.025946317240595818, -0.03085138648748398, 0.013055137358605862, -0.01523440983146429, 0.004044291563332081, 0.06388887763023376, -0.011313086375594139, -0.027244316413998604, 0.009208961389958858, 0.016259144991636276, 0.042547039687633514, -0.032709576189517975, -0.0047445278614759445, 0.03273690119385719, 0.020972931757569313, 0.011709317564964294, -0.010363497771322727, 0.004088697023689747, -0.04148131608963013, 0.006530984304845333, 0.005543821956962347, 0.004778685979545116, -0.004402949474751949, 0.001118670217692852, -2.954121919174213e-05, 0.012262674979865551, -0.008464319631457329, 0.03825681284070015, -0.05036236345767975, 0.01576727256178856, -0.019661270081996918, -0.012522274628281593, 0.01655973494052887, -0.00234152190387249, -0.020016511902213097, -0.025058211758732796, 0.011934759095311165, -0.014605904929339886, -0.015043125487864017, -0.0023825112730264664, -0.0315072163939476, 0.008320856839418411, -0.016641713678836823, 0.009495887905359268, 0.012720390222966671, 0.013219094835221767, 0.031698502600193024, 0.004819675348699093, -0.035332899540662766, -0.0022988244891166687, 0.00039601780008524656, 0.011914264410734177, -0.006257721688598394, -0.017721101641654968, -0.015835588797926903, 0.00439953338354826, -0.01341037917882204, -0.018554553389549255, -0.014551252126693726, 0.015603314153850079, -0.006049358751624823, 0.018663858994841576, 0.0030605450738221407, 0.00235518510453403, -0.019934531301259995, -0.00029994879150763154, 0.018882470205426216, -0.012959495186805725, 0.002010190626606345, 0.006052774377167225, 0.0006831573555245996, -0.023787539452314377, 0.02091827802360058, 0.0007476303726434708, 0.006800831761211157, 0.023596255108714104, -0.0004901654319837689, -0.04109874740242958, 0.006411431822925806, 0.03948649764060974, -0.014865504577755928, -0.004279980901628733, -0.021314509212970734, -0.012973158620297909, 0.015507671982049942, -0.0026608980260789394, -0.027667874470353127, 0.009632518514990807, -0.005871737841516733, -0.003128860844299197, -0.008300362154841423, 0.01828129217028618, 0.016245482489466667, -0.014988472685217857, 0.01095784455537796, 0.020822636783123016, 0.01433264184743166, 0.03667188808321953, 0.00402038125321269, 0.024183770641684532, -0.0010640176478773355, -0.00992627628147602, -0.0018820986151695251, 0.014824515208601952, -0.018773164600133896, -0.0010913439327850938, 0.007658194284886122, 0.015084114857017994, -0.017324870452284813, 0.01501579862087965, -0.027121348306536674, -0.007282457780092955, 0.0029888134449720383, 0.031807806342840195, 0.005455011501908302, 0.012310495600104332, -0.03437647968530655, -0.028036778792738914, -0.010869033634662628, -0.020289773121476173, -0.002228800905868411, 0.02671145275235176, 0.0036753867752850056, 0.009775982238352299, 0.01916939578950405, 0.008792235516011715, -0.0019094249000772834, -0.015275399200618267, -0.01228316966444254, 0.002925621345639229, -0.01665537618100643, -0.01803535409271717, -0.002754832152277231, -0.013034642674028873, 0.0005772679578512907, -0.02844667248427868, -0.02455267682671547, -0.032490964978933334, -0.006326037459075451, -0.016067860648036003, -0.014441946521401405, 0.009072329849004745, 0.011559022590517998, 0.0066505372524261475, -0.013902252539992332, 0.01710626110434532, -0.001652386854402721, -0.030550798401236534, 0.0083413515239954, 0.009359256364405155, 0.013096126727759838, 0.006442173849791288, -0.01084853895008564, 0.01205089595168829, -1.2392234793878742e-06, -0.004437107127159834, 0.030113577842712402, 0.04768438637256622, 0.03208107128739357, -0.02556374855339527, -0.0013842476764693856, 0.0033252686262130737, 0.029976945370435715, 0.009202130138874054, -0.008696593344211578, 0.025891665369272232, 0.009407076984643936, 0.0027804505079984665, 0.02376021258533001, 0.006688110530376434, 0.030004272237420082, 0.02602829597890377, -0.0016165211563929915, -8.849022560752928e-05, -0.025030886754393578, 0.017844069749116898, -0.016614386811852455, 0.011326748877763748, -0.009502719156444073, 0.03314679488539696, 0.025604737922549248, -0.01535737793892622, -0.019032765179872513, -0.016300134360790253, 0.015029462054371834, 0.004191170446574688, -0.0011058610398322344, -0.019333353266119957, 0.011565854772925377, 0.001989695942029357, 0.018978111445903778, 0.02011215314269066, -0.005967379547655582, 0.016696365550160408, -0.008382340893149376, -0.010370329022407532, -0.012877516448497772, 0.01319860015064478, 0.019661270081996918, 0.021314509212970734, -0.036152686923742294, 0.009120151400566101, 0.0028863397892564535, 0.0057829273864626884, 0.014947483316063881, 0.029293788596987724, -0.020125815644860268, 0.02168341539800167, -0.008881045505404472, 0.02798212692141533, 0.014141357503831387, 0.012720390222966671, 0.014537588693201542, -0.0057829273864626884, 0.004512254614382982, 0.009666676633059978, 0.0009752071346156299, 0.05437932536005974, 0.00954370852559805, -0.03732771798968315, 0.013663147576153278, -0.04946059361100197, 0.011661496013402939, -0.005779511295258999, 0.00890154018998146, 0.002701887395232916, -0.007330278400331736, 0.00685548409819603, 0.008696593344211578, 0.017447838559746742, 0.01523440983146429, 0.026096612215042114, 0.012180696241557598, 0.001556744915433228, -0.0040306285955011845, -0.0014406080590561032, -0.02079530991613865, -0.013239589519798756, -0.020385416224598885, -0.007460078690201044, -0.013212263584136963, -0.027326295152306557, -0.005700948182493448, 0.01792605035007, -0.024183770641684532, 0.004720617551356554, -0.010575275868177414, 0.019456321373581886, 0.006541231647133827, 0.014810851775109768, -0.010698244906961918, 0.006162079516798258, -0.0043790386989712715, 0.011852780357003212, 0.0029273293912410736, 0.020153142511844635, 0.008860550820827484, -0.010588939301669598, -0.00805442500859499, 0.025632064789533615, 0.010117560625076294, 0.008689762093126774, 0.02399248629808426, 0.008197888731956482, 0.02351427637040615, -0.034294500946998596, -0.0037881075404584408, 0.01392274722456932, -0.0003520395257510245, -0.022913098335266113, -0.0007237198296934366, -0.0014850132865831256, 0.003617318347096443, -0.01783040724694729, -0.005308132618665695, 0.04440522938966751, 0.012085054069757462, -0.016587061807513237, 0.00647633196786046, -0.002833395265042782, -0.001849648542702198, -0.01882781647145748, -0.0009128690580837429, -0.0010153426555916667, -0.014469273388385773, -0.01759813353419304, -0.010308844968676567, 0.020071163773536682, -0.02089095301926136, 0.03473171964287758, 0.024375054985284805, -0.016245482489466667, -0.0023073640186339617, -0.018130997195839882, 0.029649030417203903, 0.00522273825481534, 0.035442203283309937, 0.006025447975844145, 0.0037949392572045326, -0.04202784225344658, -0.007740173023194075, -0.023500613868236542, 0.0006212462321855128, 0.005844411440193653, -0.040716178715229034, 0.016873987391591072, -0.00907916110008955, 0.005960548296570778, -0.02053571119904518, -0.005393527448177338, 0.006667615845799446, 0.02065867930650711, -0.020057501271367073, -0.007002362981438637, -0.03391193225979805, -0.0016916684107854962, -0.0002148743369616568, 0.020631352439522743, 0.005731690209358931, -0.01199624314904213, 0.011176454834640026, 0.012071390636265278, 0.03790157288312912, 0.028555978089571, -0.009837466292083263, -0.022175287827849388, -0.008293530903756618, -0.021997667849063873, 0.04678261652588844, -0.02135549858212471, 0.013956905342638493, 0.025386128574609756, 0.03699980303645134, -0.015261735767126083, -0.01456491556018591, -0.003617318347096443, 0.0232820026576519, 0.018568217754364014, 0.00019299195264466107, 0.024935243651270866, 0.004273149184882641, -0.006329453084617853, 0.014059378765523434, 0.0026643136516213417, -0.04552560672163963, 0.00427656527608633, -0.00662662647664547, -0.05733056738972664, 0.018691185861825943, -0.010978339239954948, 0.032463639974594116, -0.028146084398031235, -0.007186815608292818, 0.01814465969800949, -0.0022954088635742664, -0.01084853895008564, -0.02169707790017128, -0.015193420462310314, -0.008997182361781597, -0.008580456487834454, -0.011893769726157188, -0.004081865306943655, -0.01748882792890072, -0.02580968476831913, -0.018554553389549255, 0.006916968617588282, -0.06263186782598495, -0.020699668675661087, 0.01530272513628006, 0.011893769726157188, 0.011087643913924694, 0.021642426028847694, -0.015808261930942535, 0.01916939578950405, 0.009905781596899033, -0.00981014035642147, -0.012303664349019527, -0.007712846621870995, -0.02030343748629093, 0.019483648240566254, 0.00616549514234066, -0.013663147576153278, -0.0017275342252105474, 9.718981164041907e-05, 0.030796734616160393, 0.010677749291062355, 0.009106487967073917, 0.02112322673201561, 0.03530557453632355, -0.011292591691017151, 0.007815320044755936, 0.019715921953320503, 0.0237465500831604, -0.016860324889421463, 0.015849251300096512, 0.005455011501908302, -0.02123253047466278, -0.0018803906859830022, -0.009980929084122181, -0.02910250425338745, -0.014073042199015617, 0.020180469378829002, 0.008805898949503899, 0.004088697023689747, 0.009728160686790943, 0.011319917626678944, 0.013383053243160248, 0.004184338729828596, 0.008505309000611305, 0.03639862313866615, 0.009441235102713108, -0.0043961177580058575, 0.011087643913924694, -0.01051379181444645, -0.005373032763600349, 0.016710029914975166, -0.033857278525829315, 0.011347243562340736, -0.0013304490130394697, -0.0009171387646347284, 0.0032620765268802643, -0.005929805804044008, -0.03426717221736908, -0.009236287325620651, 0.02270815148949623, 0.017762091010808945, 0.023432297632098198, -0.0013868095120415092, -0.023432297632098198, -0.03560616075992584, 0.010438644327223301, 0.005297885276377201, 0.010916855186223984, 0.0014781818026676774, -0.03421252220869064, -0.02304972894489765, -0.00890837237238884, -0.013943241909146309, -0.011162791401147842, -0.01078022364526987, -0.028637956827878952, 0.015220746397972107, 0.0012783582787960768, 0.007671857252717018, 0.006237227004021406, 0.030195556581020355, -0.020412743091583252, -0.04145399108529091, -0.004085280932486057, -0.01517975702881813, -0.02042640559375286, -0.007425920572131872, -0.015494009479880333, 0.014646894298493862, 0.013055137358605862, 0.039322540163993835, 0.01997552253305912, -0.012078222818672657, 0.000643448845949024, 0.00798610970377922, 0.0025464692153036594, 0.00698870001360774, 0.010575275868177414, -0.0004530187288764864, 0.014824515208601952, 0.0024576587602496147, 0.021779056638479233, -0.009707666002213955, -0.010923686437308788, -0.008266204036772251, 0.033392731100320816, -0.027490252628922462, -0.004085280932486057, 0.005038285627961159, -0.058751534670591354, -0.014441946521401405, -0.029184482991695404, 0.011299422942101955, 0.0005597620620392263, -0.00810907781124115, -0.018896132707595825, -0.013471863232553005, -0.0006280778325162828, 0.043202873319387436, 0.023814866319298744, 0.004314139019697905, 0.005403774790465832, -0.020808974280953407, -0.0026557743549346924, 0.02934844046831131, -0.012064559385180473, 0.026547495275735855, -0.008191056549549103, -0.0007903276709839702, 0.010882697068154812, -0.0036617235746234655, 0.0166827030479908, 0.0038803338538855314, 0.004054538905620575, 0.005226153880357742, 0.01646409183740616, -0.003801770741119981, -0.03085138648748398, -0.010916855186223984, -0.012208022177219391, -0.025891665369272232, -0.01376562099903822, 0.010472802445292473, -0.019442658871412277, -0.0027992373798042536, 0.01565796695649624, -0.0075762150809168816, 0.0005708633689209819, 0.006544647738337517, -0.02090461552143097, 0.005670206155627966, -0.030332187190651894, 0.017666449770331383, 0.00867609865963459, 0.00022586890554521233, 0.027585893869400024, 0.008587287738919258, -0.009195297956466675, -0.028637956827878952, -0.02079530991613865, -0.019920868799090385, 0.03877601400017738, 0.04738379642367363, 0.004812843631953001, -0.02650650590658188, 0.0017932881601154804, -0.009147477336227894, -0.026738779619336128, -0.02330932952463627, 0.02877458930015564, 0.010131224058568478, -0.00890154018998146, -0.02318636141717434, 0.018294954672455788, -0.054980505257844925, -0.0003166007518302649, -0.021656088531017303, -0.007760667707771063, -0.009632518514990807, 0.0031510633416473866, -0.011313086375594139, 0.01198258064687252, -0.02567305415868759, 0.009024509228765965, -0.004676212090998888, -0.0028026532381772995, 0.011504369787871838, -0.010814380832016468, -0.027886483818292618, 0.015685293823480606, 0.0006319205858744681, 0.03235433250665665, 0.004235575906932354, 0.0015140475006774068, 0.011886938475072384, -0.0012032109079882503, -0.004228744190186262, -0.025987306609749794, -0.007343941833823919, 0.039349865168333054, -0.0052193221636116505, -0.030058924108743668, -0.018677523359656334, 0.018472574651241302, 0.005970795638859272, -0.008245709352195263, -0.014305314980447292, 0.009721329435706139, -0.024498023092746735, -0.0005503686843439937, 0.012645242735743523, -0.01725655607879162, 0.01657339744269848, -0.017201902344822884, 0.003955481108278036, -0.0017591302748769522, -0.01691497676074505, -0.005069027654826641, 0.024402381852269173, -0.042547039687633514, -0.022434888407588005, -0.005000711884349585, 0.0024337482172995806, 0.0032535369973629713, 0.008307193405926228, 0.009236287325620651, 0.021205205470323563, 0.05227520316839218, -0.02146480418741703, 0.01169565413147211, 0.011073981411755085, 0.00023953204799909145, -0.00873075146228075, -0.013690473511815071, 0.0017693776171654463, -0.026574822142720222, 0.021779056638479233, -0.02214796282351017, -0.013956905342638493, -0.02396516129374504, -0.009338761679828167, 0.021751731634140015, -0.0039042443968355656, 0.01713358610868454, 0.023787539452314377, 0.0015780935063958168, 0.007542057428508997, 0.00565312709659338, -0.02910250425338745, -0.003689049743115902, 0.0023910508025437593, 0.024347728118300438, 0.014414620585739613, -0.01666904054582119, -0.010951012372970581, 0.0011613675160333514, -0.007849478162825108, 0.012201190926134586, -0.0032791553530842066, -0.027790842577815056, 0.03014090284705162, -0.0256867166608572, -0.03369332104921341, -0.01747516542673111, -0.02866528369486332, -0.018212975934147835, -0.01192792784422636, -0.01000142376869917, 0.01711992360651493, 0.0065241530537605286, -0.003451652592048049, 0.04123537987470627, 0.004218496847897768, -0.00026237513520754874, -0.005817085038870573, -0.005615553818643093, -0.02145114168524742, -0.023896845057606697, -0.01261791680008173, 0.0004893114673905075, -0.016368450596928596, 0.0012911674566566944, 0.014018389396369457, -0.025317812338471413, -0.01736585982143879, 0.0067325159907341, -0.03896729648113251, -0.022216277197003365, -0.0030041844584047794, 0.015671629458665848, 0.035442203283309937, -0.00659930007532239, 0.0006870001088827848, 0.006319205742329359, -0.014496599324047565, 0.004235575906932354, 0.014086704701185226, 0.014250663109123707, -0.031233955174684525, 0.012126043438911438, -0.005899063777178526, -0.019551964476704597, -0.00895619299262762, 0.0038837497122585773, 0.017297545447945595, -0.001354359439574182, 0.016996955499053, 0.04134468361735344, 0.0005046825390309095, -4.235042069922201e-05, -0.027462925761938095, -0.012290000915527344, -0.005314964335411787, 0.0012664030073210597, -0.013137116096913815, -0.019005438312888145, 0.01205089595168829, 0.013663147576153278, 0.033747974783182144, -0.004037460312247276, 0.02866528369486332, -0.01250861119478941, -0.0036514762323349714, -0.012631580233573914, -0.03779226541519165, -0.016395777463912964, -0.0041501810774207115, -0.02718966268002987, 0.01953830011188984, -0.017680112272500992, -0.0242110975086689, 0.02477128617465496, 0.014742536470293999, -0.011408728547394276, -0.006486579310148954, 0.0053388746455311775, -0.01489283051341772, 0.018199311569333076, 0.03188978508114815, -0.012686232104897499, 0.0030417582020163536, 0.00211266428232193, 0.02705303207039833, 0.0041057756170630455, 0.007234636694192886, -0.0013031227281317115, 0.005560901015996933, -0.0639435276389122, 0.021615099161863327, 0.02820073626935482, -0.016477756202220917, -0.021765394136309624, -0.013861263170838356, -0.0034140790812671185, -0.0010068031260743737, -0.03434915095567703, -0.002683100523427129, -0.026629474014043808, 0.021984003484249115, 0.012699895538389683, 0.004191170446574688, -0.03708178177475929, 0.03309214487671852, 0.009045003913342953, -0.008840056136250496, 0.003607071004807949, 0.25861606001853943, -0.005403774790465832, 0.004864080343395472, 0.01679200865328312, 0.0030315108597278595, 0.014455609954893589, 0.021956678479909897, -0.0003027241036761552, -0.02373288758099079, 0.020822636783123016, 0.01962028071284294, -0.024060802534222603, -0.0014747659442946315, 0.00013855285942554474, -0.006585637107491493, -0.012296833097934723, -0.026533832773566246, 0.00599129032343626, -0.02054937370121479, -0.018404260277748108, 0.06039111316204071, -0.0049904645420610905, 0.022639835253357887, -0.014114031568169594, -0.00396572845056653, -0.0032774475403130054, -0.002845350420102477, 0.0008603513124398887, 0.01438729465007782, -0.01974324882030487, -0.026178590953350067, 0.013027811422944069, -0.02158777229487896, 0.0051544224843382835, 0.0004440523043740541, -0.024470696225762367, 0.006660784594714642, 0.006001537665724754, 0.01817198656499386, 0.008963025175035, 0.0022749139461666346, -0.016149841248989105, 0.004771854262799025, 0.00043423191527836025, -0.03571546822786331, 0.034294500946998596, 0.0024354560300707817, 0.004877743776887655, 0.028364693745970726, 0.026629474014043808, -0.02250320464372635, -0.01250861119478941, 0.02194301411509514, 0.01759813353419304, -0.009639350697398186, -0.006783752702176571, 0.02703936956822872, -0.016163503751158714, 0.01724289171397686, 0.0205630362033844, -0.009407076984643936, 0.042874958366155624, -0.034923005849123, -0.0099331084638834, -0.03139791265130043, 0.007460078690201044, -0.006230395287275314, -0.01804901845753193, 0.01420967373996973, -0.025413453578948975, 0.012549600563943386, -0.011989411897957325, 0.0027377530932426453, 0.012501779943704605, -0.019729584455490112, -0.019428996369242668, 0.03560616075992584, 0.009126982651650906, 0.02248954027891159, 0.038420770317316055, -0.005304716993123293, -0.0014662265311926603, -0.004136518109589815, -0.004112607333809137, 0.013574336655437946, -0.01576727256178856, 0.01541203074157238, -0.018704848363995552, -0.029184482991695404, 0.005530158989131451, 0.0068349894136190414, -0.011811790987849236, 0.0024200850166380405, -0.001859896001406014, -0.01851356402039528, -0.0046249753795564175, -0.024170108139514923, 0.004935812205076218, -0.018786827102303505, 0.012139706872403622, -0.020959267392754555, 0.04637272283434868, 0.01701061800122261, 0.019551964476704597, 0.0030246793758124113, -0.003842760343104601, 0.0123378224670887, 0.00034712933120317757, 0.014769862405955791, -0.016710029914975166, 0.02020779438316822, -0.04079815745353699, 0.010828044265508652, 0.0018052433151751757, -0.005615553818643093, 0.02113688923418522, -0.024142781272530556, 0.0039042443968355656, -0.010144886560738087, 0.029157156124711037, 0.041372012346982956, 0.00043978256871923804, -0.0051544224843382835, 0.004443938843905926, -0.008860550820827484, 0.0018786827567964792, -0.03199909254908562, -0.034075889736413956, -0.0009623979567550123, -0.03421252220869064, 0.04626341909170151, -0.016751019284129143, 0.016040535643696785, -0.006821326445788145, 0.02044006809592247, 0.015603314153850079, 0.0142779890447855, -0.008006604388356209, -0.020822636783123016, -0.008689762093126774, -0.011524864472448826, 0.024498023092746735, 0.008184225298464298, -0.008819561451673508, 0.0003947368822991848, -0.014742536470293999, 0.0008821269730105996, 0.013615326024591923, 0.013683642260730267, -0.01369730569422245, -0.04787566885352135, -0.030550798401236534, 0.011559022590517998, 0.010377160273492336, -0.0037471181713044643, -0.029894966632127762, -0.030578123405575752, -0.05891549214720726, -0.006510489620268345, 0.010465971194207668, -0.05517178773880005, -0.010049245320260525, 0.019920868799090385, -0.0152480723336339, -0.009871624410152435, -0.02695739082992077, -0.17423245310783386, 0.01433264184743166, 0.014756198972463608, -0.029894966632127762, 0.026574822142720222, -0.008484814316034317, 0.0002764652599580586, -0.021205205470323563, 0.0011366030666977167, 0.0016942302463576198, 0.015152430161833763, 0.00396572845056653, -0.03235433250665665, -0.0023244430776685476, -0.005205659195780754, 0.004252654500305653, -0.01067091803997755, 0.004976801574230194, 0.030988018959760666, 0.012371979653835297, 0.02213429845869541, -0.021751731634140015, -0.002261250978335738, 0.007583046797662973, -0.0035148446913808584, -0.015371041372418404, -0.014974809251725674, -0.0018411091296002269, 0.008648772723972797, -0.011845949105918407, -0.007050184067338705, -0.011757138185203075, 0.014305314980447292, 0.024060802534222603, 0.003859839169308543, -0.022229941561818123, 0.013041473925113678, 0.0003780849219765514, -0.003719792002812028, 0.009516382589936256, 0.006940878927707672, 0.043202873319387436, 0.006896473467350006, 0.00394181814044714, 0.012371979653835297, -0.004300475586205721, 0.018909795209765434, -0.007412257604300976, 0.008191056549549103, -0.008648772723972797, -0.009249950759112835, -0.03781959041953087, -0.03035951405763626, -0.015261735767126083, 0.03393925726413727, -0.0024166691582649946, 0.02433406561613083, -0.01608152501285076, -0.012822863645851612, 0.013786115683615208, 0.002594290068373084, -0.026342548429965973, 0.0052808066830039024, 0.008074920624494553, -5.961615534033626e-05, -0.021765394136309624, 0.007391762919723988, 0.016532408073544502, -0.008703424595296383, 0.010588939301669598, -0.0017932881601154804, -0.00998776126652956, 0.008689762093126774, -0.0009726452990435064, 0.030086250975728035, -0.0012578634778037667, -0.0152480723336339, 0.026902737095952034, 0.026533832773566246, -8.779639756539837e-05, -0.00828669872134924, 0.04588085040450096, -0.002824855735525489, 0.0005332897417247295, 0.03172582760453224, 0.00782898347824812, 0.0019931115675717592, 0.00033987080678343773, -0.011340412311255932, -0.009898950345814228, 0.023473287001252174, -0.023145372048020363, -0.0029273293912410736, 0.0016634882194921374, -0.004836754407733679, 0.0024149613454937935, -0.0049733854830265045, 0.008935698308050632, -0.015685293823480606, 0.002705303253605962, 0.015575988218188286, -0.009489055722951889, -0.022858446463942528, 0.014756198972463608, 0.03199909254908562, 0.006237227004021406, -0.014305314980447292, 0.021601436659693718, 0.028610629960894585, -0.03210839629173279, -0.012720390222966671, 0.019046427682042122, 0.012433464638888836, 0.007309783715754747, 0.029621703550219536, 0.024470696225762367, 0.0027650794945657253, 6.724830745952204e-05, -0.010862202383577824, -0.0010904899099841714, -0.006069853436201811, -0.01680567115545273, 0.014359967783093452, 0.025153854861855507, 0.008594119921326637, -0.01758447103202343, -0.05793174356222153, -0.02248954027891159, -0.021382825449109077, 0.043011587113142014, -0.02899319864809513, 0.009639350697398186, -0.004051123280078173, 0.01410036813467741, -0.01325325295329094, -0.0035421710927039385, 0.003299650037661195, -0.022803792729973793, -0.02089095301926136, 0.0009777690283954144, -0.01261791680008173, -0.012324159033596516, -0.0014038884546607733, -0.010896360501646996, 0.006735931616276503, 0.02524949610233307, 0.00741908885538578, -0.000555919308681041, 0.008751246146857738, -0.030878713354468346, -0.00929777231067419, 0.024047140032052994, -0.0031425238121300936, -0.0029136661905795336, 0.018472574651241302, 0.014250663109123707, 0.03530557453632355, -0.022421225905418396, -0.009912613779306412, -0.0040135495364665985, -0.011456549167633057, -0.003989639226347208, -0.008409666828811169, -0.005345706362277269, 0.0025208506267517805, -0.0269300639629364, 0.010206371545791626, -0.015685293823480606, 0.005950300954282284, -0.0021536536514759064, -0.0027480004355311394, -0.03981441259384155, 0.0022885771468281746, 0.019019100815057755, -0.010383992455899715, 0.014592241495847702, -0.03495033085346222, -0.005830748006701469, -0.006346532143652439, -0.025823349133133888, 0.028036778792738914, 0.024689307436347008, 0.011442885734140873, 0.016764681786298752, -0.03393925726413727, 0.00462839100509882, -0.011265264824032784, -0.01783040724694729, -0.028118757531046867, 0.024702969938516617, 0.019907206296920776, 0.02432040311396122, -0.016136176884174347, -0.02604195848107338, 0.018882470205426216, 0.0014004725962877274, 0.0015140475006774068, 0.02593265473842621, -0.02194301411509514, 0.028364693745970726, -0.03128860890865326, -0.02011215314269066, -0.012214853428304195, -0.04008767381310463, 0.03995104506611824, -0.012918505817651749, -0.0009128690580837429, -0.017953375354409218, 0.006489994935691357, -0.003593407804146409, 0.027339957654476166, 0.019046427682042122, -0.002560132183134556, -0.0011955254012718797, 0.011722980998456478, -0.023227350786328316, -0.007282457780092955, 0.004696706775575876, 0.008532635867595673, -0.029976945370435715, 0.002252711448818445, 0.02192935161292553, -0.016122514382004738, 0.0031425238121300936, -0.021656088531017303, 0.037846919149160385, -0.019155733287334442, -0.03279155492782593, -0.08110444247722626, 0.013676811009645462, -0.007323447149246931, -0.006763258017599583, 0.016300134360790253, 0.022694487124681473, 0.009571034461259842, -0.005038285627961159, 0.018896132707595825, -0.006541231647133827, -0.051428087055683136, 0.020631352439522743, -0.001130625489167869, -0.009195297956466675, -0.02330932952463627, -0.017324870452284813, 0.021751731634140015, 0.0022629587911069393, 0.004768438637256622, 0.009898950345814228, -0.017188239842653275, -0.001543081714771688, -0.005407190416008234, 0.0017557144165039062, -3.1072318051883485e-06, 0.013506021350622177, -0.006527568679302931, 0.01456491556018591, -0.009325098246335983, -0.028801914304494858, -0.009249950759112835, -0.02627423219382763, -0.007391762919723988, 0.014168684370815754, 0.016860324889421463, 0.011149127967655659, -0.008969856426119804, -0.008505309000611305, 0.03188978508114815, 0.024525349959731102, -0.010985170491039753, -0.04063419997692108, 0.01256326399743557, -0.01783040724694729, -0.0013142239768058062, -0.014032052829861641, 0.00032321884646080434, 0.0061586638912558556, 0.006319205742329359, 0.02912983112037182, 0.027558568865060806, 0.009045003913342953, -0.007856309413909912, -0.016067860648036003, 0.005386695731431246, -0.04623609036207199, -0.006226979661732912, 0.005444764159619808, -0.0205630362033844, -0.006302126683294773, 0.0020136062521487474, 0.016382113099098206, 0.009065498597919941, -0.008088583126664162, 0.0001341763709206134, -0.00614158483222127, -0.007282457780092955, -0.008662435226142406, 0.015043125487864017, -0.019251374527812004, -0.03604338318109512, -0.0043790386989712715, 0.014810851775109768, 0.02408812940120697, -0.0009145769290626049, 0.0006238080677576363, -0.027435600757598877, 0.0023773876018822193, -0.0010717031545937061, 0.0329008586704731, -0.010643592104315758, -0.013246421702206135, -0.05831431224942207, 0.0009700834634713829, 0.013615326024591923, 0.0013970568543300033, -0.001865019672550261, 0.009844297543168068, -0.0213418360799551, 0.017406849190592766, -0.026670463383197784, 0.005157838109880686, 0.017762091010808945, 0.005123680457472801, 0.012044064700603485, 0.032245028764009476, -0.010431813076138496, -0.0012792121851816773, 0.02934844046831131, 0.01016538217663765, 0.013956905342638493, -0.01130625419318676, -0.004006717819720507, -0.016054198145866394, -0.018759502097964287, 0.014660556800663471, -0.017516154795885086, -0.0218063835054636, 0.01300731673836708, 0.01597221940755844, 0.00017932881019078195, 0.014783525839447975, 0.00519541185349226, 0.012802368961274624, -0.014865504577755928, 0.024702969938516617, -0.03046881966292858, -0.04145399108529091, -0.013840768486261368, 0.02444337122142315, 0.025878001004457474, 0.014428284019231796, 0.0363166444003582, -0.005530158989131451, 0.0249898973852396, -0.011852780357003212, -0.020412743091583252, -0.04169992730021477, 0.01599954627454281, -0.008300362154841423, -0.01553499884903431, 0.008150067180395126, -0.03183513507246971, -0.02899319864809513, -0.010295181535184383, 0.020931942388415337, -0.008327688090503216, 0.00675984239205718, -0.028473999351263046, 0.07886368781328201, 0.00295465555973351, -0.012522274628281593, 0.009851129725575447, 0.0029119583778083324, -0.015794597566127777, 0.023486951366066933, 0.013840768486261368, -0.0015891948714852333, -0.03014090284705162, 0.01541203074157238, -0.01836327090859413, 0.006517321337014437, -0.012809201143682003, -0.01963394321501255, -0.004836754407733679, -0.01985255256295204, 0.055800292640924454, -0.0013116621412336826, 0.03527824580669403, 0.02992229349911213, 0.007583046797662973, 0.020467394962906837, 0.005960548296570778, -0.03623466566205025, -0.01358800008893013, 0.03219037503004074, -0.017721101641654968, 0.0014440239174291492, -0.007248299662023783, 0.014428284019231796, 0.0026489426381886005, -0.022243604063987732, -0.020344426855444908, 0.007384931202977896, -0.0039008285384625196, -0.003989639226347208, 0.0315072163939476, 0.011572686024010181, 0.007412257604300976, -0.0030144318006932735, 0.0017036236822605133, -0.007057015784084797, -0.006694942247122526, 0.00788363628089428, 0.012816032394766808, 0.007740173023194075, 0.0010691413190215826, -0.0056292167864739895], "93673750-be8f-498d-8a61-7be02dcccabf": [-0.015594735741615295, -0.012741528451442719, -0.003353217849507928, -0.013853440061211586, -0.004405687563121319, 0.03082582913339138, -0.003069995203986764, -0.023301193490624428, -0.011098137125372887, -0.013608680106699467, -0.007937231101095676, -0.006346288602799177, 0.013363919220864773, -0.01600033976137638, -0.023161329329013824, -0.016839517280459404, 0.0004995735362172127, -0.01166458334773779, 0.012293966487050056, -0.008531649596989155, 0.014825489372015, 0.021077370271086693, 0.011601644568145275, -0.03449024260044098, -0.008874313905835152, 0.0032308376394212246, 0.017916463315486908, -0.02153891883790493, -0.00032255929545499384, -0.005258852615952492, 0.007300854194909334, -0.010895336046814919, -0.00676937447860837, -0.018951451405882835, 0.008405772969126701, -0.007475682999938726, 0.0013085941318422556, 0.005346267018467188, -0.0002484755532350391, 0.024615906178951263, 0.03672805055975914, -0.0033112589735537767, 0.02635020948946476, 0.018112272024154663, -0.01186039112508297, 0.0056679523549973965, -0.014937379397451878, -0.008902286179363728, -0.01963678002357483, 0.018559833988547325, -0.004737862851470709, 0.02405645325779915, -0.019133273512125015, -0.016475873067975044, 0.02886774390935898, 0.009084108285605907, -0.018741656094789505, 0.02018224634230137, -0.0076225390657782555, -0.023315180093050003, 0.004409184213727713, -0.002611943520605564, -0.042154740542173386, -0.005248363129794598, 0.01014706864953041, 0.017343025654554367, 0.0026818751357495785, 0.014545762911438942, 0.006975672207772732, 0.020308122038841248, 0.026028523221611977, 0.0005118115223012865, -0.00939180701971054, -0.010545678436756134, 0.03983301296830177, 0.003204613458365202, 0.005881243385374546, 0.02174871228635311, 0.027944648638367653, 0.017329039052128792, -0.012259000912308693, -0.008482697419822216, 0.004521074704825878, 0.006681959610432386, 0.010035177692770958, -0.01700735278427601, -0.02900760807096958, -0.01443387195467949, -0.0023829175624996424, -0.001358420355245471, -0.00751064857468009, 0.013112165965139866, 0.009251944720745087, 0.014811502769589424, 0.006098031532019377, 0.0035490263253450394, -0.008314861916005611, 0.035049695521593094, -0.0001853186113294214, -0.02341308444738388, -0.0194269847124815, 0.01924516260623932, -0.027734853327274323, -0.010587637312710285, -0.05963762849569321, -0.015748586505651474, 0.026252305135130882, -0.012979296036064625, 0.013993303291499615, -0.00045936289825476706, -0.013245035894215107, 0.0482247993350029, -0.0167555995285511, -0.04514781013131142, -0.017650723457336426, 0.006793850101530552, 0.019203204661607742, -0.04607090726494789, -0.016196146607398987, 0.0035909852012991905, 0.01139185018837452, 0.00860857404768467, 0.01730106584727764, 0.004916188307106495, 0.01872766949236393, -0.009209985844790936, -0.003159157931804657, -0.026671893894672394, 6.648960697930306e-05, -0.03267202153801918, 0.027930662035942078, 0.008930259384214878, 0.022336138412356377, 0.021608849987387657, -0.016405941918492317, 0.003283286467194557, -0.004171417094767094, 0.02054589055478573, -0.024252261966466904, 0.006489648018032312, 0.03007056750357151, 0.025217317044734955, -0.0029388736002147198, -0.019175231456756592, -0.007059590425342321, 0.009965246543288231, -0.003444128902629018, -0.002251795958727598, -0.011468774639070034, -0.015468859113752842, 0.005566551350057125, -0.019986437633633614, 0.01636398397386074, -0.03222445771098137, -0.0025000530295073986, 0.013454830273985863, 0.010853377170860767, 0.01703532598912716, 0.007028121035546064, -0.004748352337628603, 0.024014495313167572, 0.029539087787270546, 0.007797367870807648, -0.014217084273695946, 0.01213312428444624, 0.015370954759418964, 0.0158185176551342, 0.010741486214101315, -0.010419800877571106, 0.01002818439155817, 0.010769459418952465, -0.012370891869068146, -0.023608891293406487, -0.0008011533645913005, -0.005594524089246988, 0.029427196830511093, -0.006188942585140467, 0.000565571419429034, 0.00021099660079926252, 0.009867342188954353, -0.0055770413018763065, -0.022587891668081284, -0.004884718917310238, 0.025678865611553192, -0.001646013930439949, -0.021594863384962082, 0.0006669721915386617, -0.009993218816816807, 0.007087562698870897, 0.011007226072251797, 0.02214032970368862, 0.05407107621431351, 0.016168175265192986, 0.0041679204441607, -0.6010756492614746, -0.004153934307396412, 0.005314798094332218, -0.005007099360227585, -0.0026941129472106695, 0.012797473929822445, 0.004332259763032198, 0.02036406844854355, -0.02889571711421013, 0.019412998110055923, -0.011923329904675484, 0.018196189776062965, 0.005283328704535961, -0.014056242071092129, -0.0013898896286264062, -0.02765093557536602, 0.021608849987387657, -0.0222382340580225, -0.013259022496640682, 0.004912691656500101, -0.0068917544558644295, 0.020769670605659485, -0.012643625028431416, 0.004248342011123896, -0.004304287023842335, 0.010216999799013138, -0.01130093913525343, -0.009790417738258839, 0.026224331930279732, 0.02492360584437847, -0.005000106059014797, 0.011447794735431671, 0.018014367669820786, -0.005678441841155291, 0.0667426735162735, -0.011692555621266365, -0.02647608518600464, 0.007587573491036892, -0.00809108093380928, 0.053987156599760056, -0.016042297706007957, -0.015301023609936237, 0.0353853665292263, 0.002708099316805601, 0.017538832500576973, 0.007335819769650698, 0.02432219311594963, -0.037315476685762405, 0.008895293809473515, 0.020406026393175125, 0.009671533480286598, -0.013335946947336197, 0.009748457930982113, 0.0014397158520296216, 0.00016018695896491408, 0.001307720085605979, 0.01966475322842598, -0.024937592446804047, 0.007951217703521252, -0.01724512130022049, -0.02304944023489952, 0.011335904709994793, -0.009692513383924961, -0.00983237661421299, -0.014727585017681122, 0.006178452633321285, -0.019412998110055923, 0.007003644946962595, -0.0066539873369038105, -0.016224119812250137, -0.005070037674158812, -0.02387463115155697, -0.004884718917310238, -0.005776346195489168, 0.02299349382519722, 0.04562334343791008, 0.004685414023697376, -0.01609824411571026, 0.0036364407278597355, 0.024126386269927025, -0.004727372899651527, 0.0026608954649418592, -0.0016748607158660889, -0.010203013196587563, 0.00622390815988183, -0.018713682889938354, -0.02398652210831642, -0.026308249682188034, 0.007643518503755331, 0.0011521222768351436, 0.009636567905545235, -0.002709847642108798, 0.02193053439259529, -0.03823857381939888, 0.02353896014392376, 0.0175807923078537, -0.01748288795351982, 0.0028287312015891075, 0.0008933756034821272, -0.013286994770169258, -0.022000465542078018, 0.03558117523789406, -0.0020874568726867437, -0.015706626698374748, 0.02211235649883747, -0.01984657533466816, -0.04481213912367821, 0.016559790819883347, 0.013321960344910622, 0.0004097551864106208, 0.003923160023987293, 0.006940706633031368, -0.008986204862594604, 0.00413645152002573, 0.01927313581109047, -0.040308546274900436, 0.0014939127722755075, 0.015776557847857475, 0.023580919951200485, 0.018433956429362297, 0.015552776865661144, 0.0007561349193565547, 0.022280192002654076, 0.00569592509418726, -0.004293797537684441, 0.012755515053868294, 0.027692895382642746, -0.01969272457063198, -0.020685752853751183, 0.01468562614172697, -0.012475788593292236, -0.0015489838551729918, 0.01520311925560236, -0.009398800320923328, 0.0063078259117901325, 0.005227383691817522, 0.004912691656500101, -0.016713641583919525, 0.02695162035524845, 0.006293839775025845, -0.013804488815367222, 0.009140053763985634, 0.0034091630950570107, -0.006272860337048769, -0.006374260876327753, -0.024671850726008415, -0.024070439860224724, 0.024545975029468536, -0.009783424437046051, 0.00953167024999857, 0.014063235372304916, -0.003078736597672105, -0.0352734737098217, 0.037343449890613556, -0.005772849544882774, 0.001979063032194972, -0.003755324287340045, -0.011825425550341606, 0.012678590603172779, -0.008293882012367249, 0.01309817936271429, -0.009182012639939785, -0.02247600071132183, 0.005042064934968948, -0.00842675194144249, 0.0008107689209282398, 0.0027378203812986612, -0.0011425067204982042, -0.013608680106699467, -0.03860221803188324, 0.004300790373235941, -0.003428394440561533, 0.009070122614502907, -0.008279895409941673, 0.03597278892993927, -0.008433745242655277, -0.021245205774903297, -0.004867236129939556, 0.0022727753967046738, -0.014951365999877453, 0.0020874568726867437, 0.003479094710201025, 0.003793786745518446, -0.0034668566659092903, 0.021091356873512268, 0.00910508818924427, 0.020503930747509003, 0.011126110330224037, -0.013699591159820557, 0.012706562876701355, -0.0037238551303744316, 0.02897963486611843, -0.015986353158950806, 0.006234398111701012, 0.0352175310254097, 0.02044798620045185, 0.0031836340203881264, 0.018322067335247993, 0.003028036328032613, 0.02359490655362606, 0.023273220285773277, 0.02492360584437847, 0.010363856330513954, -0.025888660922646523, 0.0009292155154980719, -0.02816842868924141, 0.021496959030628204, -0.005279832053929567, 0.026937633752822876, 0.0013627911685034633, -0.013545741327106953, -0.008811375126242638, -0.014713598415255547, -0.007007141597568989, 0.017650723457336426, -0.015622708946466446, -0.01140583585947752, 0.010419800877571106, -0.003898683935403824, 0.020126299932599068, 0.027147429063916206, 0.00836381409317255, 0.017650723457336426, -0.024979550391435623, 0.007010638248175383, -0.023399097844958305, 0.01213312428444624, 0.01787450537085533, 0.005933692213147879, -0.020979465916752815, -0.018350038677453995, 0.0073847719468176365, 0.00846871081739664, -0.004580516833811998, -0.0014196104602888227, -0.0332874171435833, 0.02268579602241516, -0.020741699263453484, 0.011594651266932487, 0.0032290893141180277, 0.013314967975020409, 0.004972133319824934, -0.0025559982750564814, -0.019496915861964226, 0.02635020948946476, 0.013363919220864773, 0.033231474459171295, 0.01326601579785347, -0.007195956539362669, 0.012713556177914143, -0.03381889685988426, 0.004356735851615667, -0.04553942754864693, 0.01776261441409588, -0.009370828047394753, -0.006905740592628717, 0.012608658522367477, 0.008818368427455425, 0.041007861495018005, 0.027483100071549416, 0.007986183278262615, 0.05295217037200928, 0.007587573491036892, 0.003253565402701497, 0.005279832053929567, -0.026434127241373062, -0.008119053207337856, -0.03552522882819176, -0.00018324251868762076, -0.02335713803768158, -0.011196041479706764, -0.01161563117057085, 0.0014598211273550987, -0.027916675433516502, 0.014881433919072151, -0.01468562614172697, 0.029483143240213394, 0.026909660547971725, 0.026434127241373062, -0.02762296237051487, -0.003604971570894122, -0.013818474486470222, 0.026546016335487366, -0.0050385682843625546, 0.019776642322540283, 0.001107540912926197, -0.021315136924386024, -0.00670993234962225, -0.00879039615392685, 0.024070439860224724, -0.013119159266352654, -0.007059590425342321, 0.0005555187817662954, -0.0018304584082216024, -0.010321897454559803, -0.003150416538119316, 0.010741486214101315, -0.005594524089246988, -0.021678781136870384, -0.018350038677453995, -0.009147047065198421, 0.00453156465664506, -0.0024476044345647097, -0.011440802365541458, 0.049175865948200226, 0.013133145868778229, 0.01121002808213234, -0.020881561562418938, 0.020839601755142212, -0.025119412690401077, -0.0059931338764727116, -0.009077115915715694, -0.012986289337277412, -0.011874377727508545, -0.0032658034469932318, 0.022252220660448074, 0.010825403966009617, 0.0134198646992445, 0.027091482654213905, 0.022434042766690254, -0.008188984356820583, -0.024490030482411385, -0.017468901351094246, -0.024014495313167572, -0.028182415291666985, 0.01628006622195244, 0.00865053292363882, 0.006192438770085573, -0.033147554844617844, -0.016769586130976677, -0.00939180701971054, -0.0194269847124815, 0.009056136012077332, -0.03706372156739235, -0.0060385894030332565, 0.0017517853993922472, -0.0014869195874780416, 0.0016119222855195403, 0.016797559335827827, 0.00836381409317255, -0.02647608518600464, -0.02021021954715252, 0.027748839929699898, -0.019371040165424347, 0.004611985757946968, 0.023608891293406487, 0.021399054676294327, 0.009412786923348904, 0.016839517280459404, -0.0002447604201734066, 0.005125982686877251, 0.022014452144503593, 0.024392126128077507, -0.027748839929699898, 0.005916209425777197, 0.0013645393773913383, 0.007133018225431442, 0.03493780270218849, 0.011755494400858879, 0.015342982485890388, -0.004580516833811998, 0.04783318191766739, 0.0015926910564303398, 0.039888955652713776, 0.0018671724246814847, 0.02096547931432724, 0.003578747157007456, -0.012979296036064625, 0.004608489107340574, -0.020657779648900032, 0.007671491242945194, 0.006045582704246044, 0.0004386019427329302, -0.021776685491204262, 0.027888702228665352, -0.0014545762678608298, -0.0628824532032013, 0.009944266639649868, 0.0139163788408041, 0.0334552563726902, -0.01711924374103546, -0.004758842289447784, 0.0064966413192451, 0.014377927407622337, -0.009398800320923328, -0.0007622539415024221, -0.007874293252825737, -0.014405899681150913, 0.0032605587039142847, -0.019440971314907074, -0.016042297706007957, 0.01664370857179165, -0.02075568400323391, 0.004188899882137775, 0.02369280904531479, -0.037651147693395615, -0.044476468116045, 0.0068917544558644295, 0.011091143824160099, 0.02008434198796749, 0.022881604731082916, 0.0003913981490768492, -0.02835025079548359, 0.018979422748088837, -0.023245247080922127, -0.014671639539301395, -0.014573735184967518, -0.00992328766733408, -0.0037972833961248398, 0.0115876579657197, 0.010958273895084858, -0.022489987313747406, -0.02486765943467617, 0.04428065940737724, 0.01682553067803383, 0.013874419964849949, -0.0007788626826368272, -0.007559600751847029, -0.014301002025604248, -0.00965055450797081, 0.0052064042538404465, 0.02492360584437847, -0.013126152567565441, 0.003702875692397356, -0.003888194216415286, -0.019622793421149254, -0.0033165039494633675, 0.005584034603089094, -0.029035581275820732, 0.006605035159736872, 0.007251902017742395, 0.012028226628899574, 0.007035114336758852, 0.006073555443435907, 0.03370700776576996, -0.004447646904736757, 0.0009764193091541529, -0.008874313905835152, 0.012503761798143387, 0.018657738342881203, 0.0036329440772533417, -0.013601686805486679, -0.001198451966047287, 0.021189261227846146, 0.031021635979413986, -0.013601686805486679, 0.050630442798137665, 0.01597236655652523, 0.018098285421729088, -0.011328911408782005, -0.010468753054738045, -0.02099345251917839, -0.013140138238668442, 0.029399225488305092, -0.006972175557166338, 0.018098285421729088, 0.013699591159820557, -0.015259064733982086, -0.0370916947722435, -0.0024650872219353914, -0.002631174633279443, 0.01745491474866867, -0.025790756568312645, -0.022853631526231766, -0.0038182628341019154, -0.02704952470958233, 0.00144059001468122, -0.00276054791174829, 0.010839390568435192, -0.024909619241952896, -0.004650448448956013, -0.001718567917123437, 0.017706669867038727, -0.0006643497617915273, 0.030881773680448532, -0.00778338173404336, -0.033259447664022446, -0.01179745327681303, -0.000654734147246927, -0.02130115032196045, -0.007643518503755331, 0.003667909884825349, 0.021217232570052147, 0.015035283751785755, 0.01987454667687416, -0.00343363918364048, 0.004650448448956013, -0.014335968531668186, 0.009510691277682781, -0.0033112589735537767, -0.01600033976137638, 0.014713598415255547, 0.0034074150025844574, -0.009930280037224293, -0.0027325754053890705, 0.02229417860507965, -0.007286867592483759, -0.03183284401893616, -0.0009292155154980719, 0.018489902839064598, -0.024909619241952896, 0.014063235372304916, -0.003104961011558771, -0.04002882167696953, -0.020867574959993362, 0.008307868614792824, -0.011412829160690308, -0.005304308142513037, -0.0352734737098217, -0.032839857041835785, -0.006765877828001976, -0.005433681420981884, 0.017147216945886612, 0.014601708389818668, 0.005741380620747805, -0.026028523221611977, 0.020322108641266823, -0.010433787479996681, -0.005073534324765205, -0.013664625585079193, 0.015692640095949173, -0.02435016632080078, 0.04187501221895218, 0.019412998110055923, -0.002886424772441387, 4.6903311158530414e-05, -0.007153997663408518, -0.004587509669363499, -0.0023339656181633472, 0.031692977994680405, 0.03611265495419502, -0.02658797614276409, 0.011175062507390976, -0.021580876782536507, -0.04847655072808266, -0.049903154373168945, 0.03004259429872036, -0.006825319491326809, 0.007748416159301996, 0.02414037100970745, 0.014937379397451878, 0.0005524592706933618, -0.0009921538876369596, 0.010503719560801983, -0.010825403966009617, -0.01854584738612175, 0.02398652210831642, 0.0015717116184532642, 0.018224162980914116, 0.04165123403072357, 0.007937231101095676, 0.019832588732242584, -0.0666307806968689, -0.004388204775750637, -0.005381233058869839, 0.03331539034843445, 0.04187501221895218, -0.016811545938253403, -0.02387463115155697, -0.010475746355950832, 0.023524973541498184, -0.024601919576525688, -0.019371040165424347, 0.034658078104257584, 0.006021106615662575, 0.0026766301598399878, -0.020378055050969124, 0.002882928354665637, -0.01690944842994213, -0.011307932436466217, -0.03678399696946144, 0.0020000424701720476, -0.004611985757946968, -0.009168026968836784, -0.013678611256182194, -0.01612621545791626, -0.01709127053618431, 0.006094534881412983, 0.015692640095949173, 0.008014155551791191, -0.0025157874915748835, -0.011517726816236973, -0.051022060215473175, 0.01039182860404253, -0.007587573491036892, 0.03958125784993172, 0.012972302734851837, -0.01323804259300232, 0.005772849544882774, -0.004706393461674452, 0.0044161775149405, -0.024224290624260902, -0.010223993100225925, 0.050322744995355606, -0.010475746355950832, -0.011398843489587307, -0.015622708946466446, -0.0003953317936975509, 0.022643836215138435, 0.015496832318603992, 0.0039021805860102177, 0.003881201148033142, -0.007951217703521252, -0.002335713943466544, 0.017538832500576973, -0.010335883125662804, 0.01930110901594162, -0.009979232214391232, 0.005192417651414871, -0.012231028638780117, -0.013042234815657139, 0.01130093913525343, 0.028546059504151344, -0.03342728316783905, -0.02369280904531479, -0.017440930008888245, -0.011335904709994793, 0.013133145868778229, 0.006164466496556997, 0.01204221323132515, -0.002522780792787671, 0.04716183990240097, -0.03997287526726723, 0.0059057194739580154, 0.0007495788158848882, 0.0008212586399167776, 0.011699548922479153, 0.005538579076528549, -0.013790502212941647, 0.007853313349187374, 0.02211235649883747, 0.005227383691817522, -0.016433915123343468, -0.04537159204483032, 0.012245015241205692, 0.022559918463230133, 0.0011783466907218099, 0.02665790729224682, -0.00017788838886190206, 0.009587615728378296, 0.010321897454559803, -0.016993368044495583, -0.013741550035774708, 0.01131492480635643, -0.0015813271747902036, -0.002075218828395009, 0.017440930008888245, -0.0018182203639298677, -0.016615737229585648, -0.02075568400323391, -0.0014266036450862885, 0.008349827490746975, -0.024951577186584473, -0.016056284308433533, 0.012245015241205692, 0.002987825544551015, -0.023133357986807823, -0.0048462566919624805, -0.06092436984181404, -0.0065036341547966, -0.02247600071132183, 0.0008881306857801974, 0.01084638386964798, 0.00023645606415811926, 0.009272923693060875, 0.011657590046525002, 0.012035219930112362, 0.026098456233739853, -0.011440802365541458, -0.01597236655652523, -0.01875564269721508, -0.036951832473278046, -0.03009854070842266, -0.035077665001153946, -0.018294094130396843, 0.038798026740550995, -0.013566721230745316, -0.023343151435256004, -0.02096547931432724, -0.018895504996180534, -0.020042382180690765, -0.007468689698725939, 0.0036294476594775915, 0.028755854815244675, 0.019161244854331017, -0.014979338273406029, 0.007545614615082741, 0.03678399696946144, -0.017538832500576973, 0.013531755656003952, -0.014203098602592945, 0.004192396532744169, -0.0051154932007193565, -0.003793786745518446, -0.005646972917020321, 0.004377715289592743, -0.020475959405303, 0.006888257805258036, 0.00275705149397254, -0.009279916994273663, 0.032084595412015915, 0.011000232771039009, 0.016895463690161705, -0.033623091876506805, -0.009608595632016659, -0.02078365720808506, -0.007720443420112133, -0.001060337177477777, -0.012489775195717812, -0.033231474459171295, -0.0004921433283016086, 0.03423848748207092, -0.0005572670488618314, 0.00836381409317255, -0.010804424993693829, 0.010244972072541714, -0.022559918463230133, 0.0005664455820806324, -0.008510669693350792, -0.004944160580635071, -0.0053532603196799755, -0.007811354473233223, 0.024196317419409752, -0.02135709673166275, 0.01869969628751278, 0.03675602376461029, 0.0020507427398115396, -0.006993155460804701, -0.03409862518310547, 0.016461888328194618, -0.02835025079548359, -0.0041679204441607, -0.002987825544551015, 0.0017972409259527922, -0.0074616968631744385, 0.008349827490746975, 0.004741359036415815, -0.024797728285193443, -0.00788128562271595, 0.023315180093050003, 0.013433851301670074, -0.02483968809247017, -0.0015577253652736545, 0.03225243091583252, -0.021021423861384392, -0.01972069777548313, 0.014979338273406029, -0.021580876782536507, -0.001555102877318859, -0.040979888290166855, 0.014587721787393093, -0.036923859268426895, 0.01358070783317089, -0.0017815063474699855, -0.017776601016521454, 0.017734641209244728, 0.0043217698112130165, -0.006028099916875362, -0.010244972072541714, 0.0018042339943349361, 0.24548771977424622, -0.02320328913629055, 0.005643476266413927, 0.012762508355081081, 0.006902244407683611, -0.0034091630950570107, -0.003755324287340045, 0.006234398111701012, -0.020378055050969124, -0.010629596188664436, -0.015496832318603992, -0.025119412690401077, 0.008021148853003979, -0.017329039052128792, 0.009202992543578148, -0.032140541821718216, -0.03832248970866203, -0.00934984814375639, 0.002521032467484474, 0.0009143550414592028, 0.02429422177374363, 0.0043077836744487286, -0.005790332332253456, -0.012007247656583786, 0.02453198842704296, -0.0026434126775711775, -0.0167276281863451, 0.02822437509894371, 0.026615949347615242, 0.008958231657743454, -0.026182373985648155, 0.03348322585225105, 0.003388183657079935, -0.002035008277744055, -0.006730911787599325, -0.014091207645833492, 0.04637860506772995, 0.010902329348027706, 0.011853397823870182, 0.009888321161270142, -0.017748627811670303, 0.013133145868778229, 0.0012552713742479682, -0.01906334049999714, -0.019524889066815376, 0.002806003438308835, -0.00683580944314599, -0.025315221399068832, 0.002702854573726654, -0.0028846764471381903, -0.020475959405303, -0.009909301064908504, 0.048028990626335144, 0.020489944145083427, -0.006202928721904755, -0.02889571711421013, 0.03639237955212593, -0.004468626342713833, 0.015105214901268482, 0.02801457978785038, -0.011755494400858879, 0.0462946891784668, -0.022350125014781952, 0.005542075727134943, -0.04774926230311394, -0.020489944145083427, -0.016391955316066742, 0.0030385260470211506, 0.0124967684969306, -0.007440716959536076, -0.0003553396963980049, -0.007119032088667154, 0.0010769459186121821, -0.01932908035814762, -0.009916294366121292, -0.030937718227505684, 0.029846787452697754, 0.018042340874671936, 0.04036449268460274, 0.048756279051303864, 0.009168026968836784, 0.004237852059304714, 0.01149674691259861, -0.00380077981390059, -0.03074190951883793, -0.030182458460330963, 0.0259865652769804, -0.014419886283576488, -0.016014326363801956, -6.993154966039583e-05, 0.005237873177975416, -0.006517620757222176, 0.00048820965457707644, -0.018657738342881203, -0.0007749290089122951, 0.012944330461323261, 0.0036329440772533417, 0.013986310921609402, -0.025944605469703674, 0.008475704118609428, -0.02574879676103592, 0.026336222887039185, 0.00781834777444601, 0.008538642898201942, -0.0034948294050991535, -0.011790459975600243, -0.007091059349477291, 0.012384877540171146, 0.0008330596028827131, -0.0278327576816082, 0.013252029195427895, -0.05874250456690788, -0.0037623175885528326, 0.0014370933640748262, 0.01382546778768301, 0.010804424993693829, -0.006986162159591913, -0.022406069561839104, -0.008811375126242638, 0.00012970117677468807, 0.015510817989706993, -0.009888321161270142, -0.019944477826356888, -0.01075547281652689, 0.006870775017887354, -0.007021127734333277, -0.005248363129794598, -0.019077327102422714, 0.0033776939380913973, -0.014559749513864517, 0.013797495514154434, -0.02062980830669403, 0.023580919951200485, 0.0038707114290446043, 0.016168175265192986, 0.019748670980334282, -0.0005577041301876307, -0.020839601755142212, 0.022853631526231766, -0.009720485657453537, 0.007713450118899345, -0.006447689142078161, 0.0022063404321670532, -0.010685540735721588, -0.0027255823370069265, -0.008545635268092155, 0.02156689018011093, 0.00683580944314599, 0.005283328704535961, -0.009790417738258839, -0.04000084847211838, -0.013503782451152802, 0.0017308059614151716, -0.028294306248426437, 0.020657779648900032, -0.0031906270887702703, -0.0352175310254097, -0.06002924591302872, 0.010140075348317623, 0.023343151435256004, -0.041007861495018005, 0.0015157663729041815, 0.009615588001906872, -0.02099345251917839, -0.02580474317073822, -0.042854055762290955, -0.17947234213352203, -0.0005581412115134299, 0.03236432373523712, -0.03076988272368908, 0.03348322585225105, -0.016839517280459404, -0.01709127053618431, 0.0006184571539051831, -0.030602047219872475, -0.01335692685097456, 0.022434042766690254, 0.0073707858100533485, -0.00199304916895926, -0.001109289238229394, -0.004059526603668928, 0.009692513383924961, -0.019399013370275497, 7.211691263364628e-05, 0.055469706654548645, 0.009524677880108356, 0.035049695521593094, -0.030518129467964172, -0.01102820597589016, 0.007133018225431442, -0.0023269723169505596, 0.012482781894505024, -0.01190235000103712, -0.013154124841094017, -0.012790480628609657, -0.03180487081408501, -0.012454809620976448, 0.022406069561839104, 0.009566636756062508, -0.008391786366701126, -0.009545656852424145, -0.004611985757946968, 0.003909173887223005, -0.007440716959536076, -0.023734768852591515, 0.016657695174217224, 0.006091038230806589, 0.04019665718078613, -0.01204221323132515, -0.0015524805057793856, -0.00869948510080576, 0.007713450118899345, 0.018685711547732353, -0.021343110129237175, 0.01486744824796915, 0.00965055450797081, 0.02405645325779915, -0.010916315019130707, -0.022014452144503593, -0.0020262666512280703, 0.0297348964959383, 0.032168515026569366, -0.021245205774903297, -0.009643561206758022, -0.023007480427622795, 0.018531860783696175, -0.0139163788408041, -0.01739897020161152, 0.013727563433349133, -0.005101506598293781, -0.005049058236181736, -0.0249935369938612, -0.01504927035421133, 0.03930153325200081, -0.006056072656065226, 0.0009003687300719321, 0.00595117500051856, -0.007094556000083685, -0.0018636758904904127, 0.0026906165294349194, 0.012217042036354542, -0.01332895364612341, 0.00226578232832253, 0.018839560449123383, 0.01685350388288498, -0.0026923648547381163, 0.0053532603196799755, 0.051805295050144196, -0.004244845360517502, -0.02000042423605919, 0.0031818856950849295, 0.003477346384897828, 0.005111996550112963, -0.00814003311097622, -0.041035834699869156, -0.017384983599185944, 0.04019665718078613, -0.027357222512364388, -0.018713682889938354, -0.011937315575778484, 0.006975672207772732, 0.003965118899941444, -0.00297558750025928, -0.002611943520605564, -0.009175019338726997, -0.01805632747709751, -0.013475810177624226, 0.007391765248030424, -0.0232312623411417, 0.009202992543578148, 0.01787450537085533, 0.009692513383924961, -0.012615651823580265, 0.022070398554205894, 0.02489563263952732, -0.013300981372594833, -0.008657526224851608, 0.0012010744540020823, 0.0012395367957651615, 0.014629680663347244, 0.0011652344837784767, 0.0031818856950849295, -0.004923181142657995, -0.00017712351109366864, -0.016405941918492317, 0.016965394839644432, -0.036140624433755875, -0.015720613300800323, 0.006636504083871841, 0.017650723457336426, 0.003442380577325821, -0.012839432805776596, -0.043273646384477615, -0.014245057478547096, 0.005692428443580866, 0.004318273160606623, 0.013783508911728859, 0.008552628569304943, 0.005947678349912167, 0.03421051427721977, -0.026434127241373062, 0.01651783287525177, -0.008944245986640453, -0.023161329329013824, -0.004262328147888184, -0.009398800320923328, -0.0035909852012991905, 0.015958379954099655, -0.009147047065198421, -0.002610195195302367, 0.008979211561381817, 0.029399225488305092, -0.003916166722774506, -0.020797643810510635, -9.604661318007857e-05, -0.01217508316040039, -0.003117199055850506, 0.01963678002357483, -0.012168089859187603, -9.380662231706083e-05, -0.00818199198693037, 0.01979062892496586, 0.03228040412068367, -0.0042763142846524715, 0.008461717516183853, -0.005563055165112019, 0.011825425550341606, 0.009112081490457058, -0.02395854890346527, -0.019105300307273865, 0.01737099699676037, 0.0053217909298837185, -0.0003761006228160113, -0.006087541580200195, 0.017888491973280907, 0.006881264969706535, -0.007580580189824104, -0.007209943141788244, -0.007797367870807648, 0.020168259739875793, -0.015063256025314331, 0.005395219195634127, -0.0556655153632164, 0.0027255823370069265, -0.0016320275608450174, 0.006727415136992931, 0.017734641209244728, 0.005982644390314817, -0.003426646115258336, 0.014531776309013367, -0.016713641583919525, 0.010489732958376408, -0.010042170993983746, -0.002257040934637189, -0.0056224968284368515, 0.02380470000207424, 0.005587531253695488, 0.014783530496060848, -0.020322108641266823, -0.013161118142306805, 0.028028566390275955, 0.011853397823870182, -0.0083358408883214, 0.027147429063916206, -0.013384899124503136, 0.03829451650381088, -0.01748288795351982, -0.0315810889005661, 0.0011704793432727456, -0.0014091207413002849, 0.0004903950029984117, -0.006328805349767208, -0.0232312623411417, -0.0007723065791651607, 0.005765856709331274, -0.00462946854531765, 0.002038504695519805, 0.017412956804037094, -0.0012814956717193127, 0.0008487942395731807, 0.011182054877281189, -0.03846235200762749, 0.011112123727798462, 0.016573777422308922, -0.0054301852360367775, -0.027874717488884926, 0.004489605780690908, -0.015356969088315964, 0.0072379158809781075, 0.011426815763115883, -0.02114730142056942, 0.015315010212361813, -0.034658078104257584, -0.02335713803768158, -0.0927572101354599, 0.018433956429362297, -0.011657590046525002, -0.017412956804037094, 0.014321981929242611, -0.00462946854531765, 0.03376295417547226, -0.011454788036644459, 0.0008671512478031218, -0.0010489732958376408, -0.027007564902305603, 0.027385195717215538, 0.015538791194558144, -0.01446184515953064, -0.016294050961732864, 0.011196041479706764, 0.010860370472073555, 0.011035199277102947, 0.011972282081842422, 0.01709127053618431, 0.004150437656790018, -0.005584034603089094, 0.028126470744609833, -0.008112059906125069, -0.03183284401893616, 0.018671724945306778, -0.005716904532164335, 0.04257432743906975, -0.008853334933519363, -0.04783318191766739, -0.007066583260893822, -0.008209964260458946, -0.0102379797026515, 0.021888576447963715, 0.0014598211273550987, 0.008958231657743454, 0.028280319646000862, 0.005255355965346098, 0.04539956524968147, 0.024378139525651932, -0.008475704118609428, -0.02749708667397499, -0.01075547281652689, -0.011321918107569218, 0.0015481096925213933, 0.0010244972072541714, -0.003129436867311597, 0.020308122038841248, 0.01362966001033783, 0.013811481185257435, 0.018895504996180534, 0.015468859113752842, -0.012741528451442719, -0.017077285796403885, 0.003965118899941444, -0.059357900172472, -0.01737099699676037, -0.0073847719468176365, -0.009958253242075443, 0.006849795579910278, 0.029399225488305092, -0.02202843874692917, 0.039525315165519714, -0.007077073212713003, 0.009000190533697605, 0.0014982834691181779, -0.014091207645833492, -0.001718567917123437, 0.04257432743906975, -0.006458178628236055, -0.03672805055975914, -0.027692895382642746, -0.005923202261328697, -0.0015533545520156622, 0.0038497319910675287, -0.010650575160980225, -0.0038602217100560665, 0.025483056902885437, -0.01802835427224636, 0.04187501221895218, 0.010895336046814919, 0.015315010212361813, -0.03899383172392845, 0.01776261441409588, 0.009587615728378296, 0.008776409551501274, -0.02260187827050686, -0.017538832500576973, -0.025678865611553192, -0.0019178728107362986, -0.01538494136184454, 0.0035105638671666384, -0.00128761469386518, 0.019217191264033318, 0.0001511177106294781, 0.026993578299880028, -0.0010052660945802927, -0.016867490485310555, 0.021622836589813232, 0.004856746178120375, 0.005094513762742281, -0.012342918664216995, -0.01367161888629198, -0.01787450537085533, -0.03082582913339138, 0.0071609909646213055, -0.0017762613715603948, -0.04713386669754982, -0.008119053207337856, 0.013182098045945168, -0.03228040412068367, 0.005269342567771673, 0.0066994428634643555, 0.014363940805196762, -0.010860370472073555, 0.000945824256632477, -0.003381190588697791, -0.03490982949733734, -0.031357306987047195, 0.0166716817766428, 0.003307762322947383, 0.01960880681872368, 0.03256013244390488, 0.012699569575488567, 0.014839475043118, -0.015482845716178417, -0.0007307847263291478, -0.026937633752822876, 0.002944118343293667, -0.0010244972072541714, -0.004608489107340574, 0.0032727967482060194, -0.030210429802536964, -0.03085380047559738, -0.0070700799115002155, 0.004265824798494577, -0.01057365071028471, -0.017776601016521454, -0.00011844656546600163, 0.07496662437915802, 0.0048147873021662235, 7.277252007042989e-05, -0.0028322278521955013, -0.016769586130976677, 0.009762444533407688, 0.014042255468666553, 0.018923478201031685, 0.0158185176551342, -0.022350125014781952, 0.00939180701971054, 0.010489732958376408, -0.018378011882305145, -0.015105214901268482, 0.011594651266932487, 0.016531819477677345, -0.011468774639070034, 0.02492360584437847, -0.004395198076963425, 0.03849032521247864, 0.030154485255479813, 0.007335819769650698, 0.022182287648320198, 0.009727478958666325, -0.02096547931432724, -0.0007216061931103468, 0.014881433919072151, -0.000778425601311028, -0.003965118899941444, -0.0157625712454319, 0.005192417651414871, 0.005220390390604734, -0.008874313905835152, -0.030546102672815323, -0.01594439335167408, 0.01745491474866867, -0.004741359036415815, 0.025273263454437256, 0.02265782281756401, -0.0027675412129610777, -0.010720507241785526, 0.001942348899319768, -0.02341308444738388, -0.04414079710841179, 0.005409205798059702, 0.015720613300800323, 0.01737099699676037, 0.0008155767573043704, -0.011727521196007729], "37705651-ac14-4c53-b486-933c2536c261": [-0.015756385400891304, -0.010940052568912506, -0.010479418560862541, -0.026215482503175735, -0.009497185237705708, 0.0013725871685892344, -0.010702962055802345, -0.006713060196489096, -0.0033294339664280415, -0.016528625041246414, 0.012714847922325134, 0.00734981894493103, -0.01688087359070778, -0.037013281136751175, -0.027136750519275665, -0.022137518972158432, 0.0013192417100071907, -0.0076546501368284225, 0.024806484580039978, -0.010506515391170979, 0.02907412126660347, 0.005883242003619671, -0.011840998195111752, -0.01587831787765026, -0.02502325363457203, 0.012579367496073246, 0.01385288406163454, -0.0246439091861248, 0.0048027848824858665, -0.01398159097880125, 0.024820033460855484, -0.02162269316613674, -0.01990208961069584, 0.004599563777446747, -0.0013421040493994951, -0.01982080191373825, -0.005893403198570013, 0.00408135075122118, -0.015526068396866322, 0.008914618752896786, 0.030483119189739227, -0.004392956383526325, 0.0011465039569884539, 0.0032803223002701998, -0.013331283815205097, 0.020254340022802353, -0.026107098907232285, -0.0035699119325727224, -0.016555720940232277, 0.0011947689345106483, -0.006790961604565382, 0.00038019224302843213, -0.03736552968621254, -0.002953475574031472, 0.006357423961162567, 0.022720085456967354, -0.014089975506067276, 0.015051887370646, -0.007139823865145445, -0.01816793903708458, -0.007790130563080311, 0.0005804494139738381, -0.022354288026690483, -0.027583835646510124, 0.005486961454153061, 0.003644426353275776, -0.005266805645078421, 0.01772085390985012, -0.027353519573807716, -0.017111191526055336, 0.014835118316113949, 0.01484866626560688, 0.01636604778468609, 0.02284201793372631, 0.03473720699548721, -0.0017731013940647244, -0.015214463695883751, -0.0043590860441327095, 0.005832436960190535, -0.0038103898987174034, 0.004833268001675606, 0.025890329852700233, 0.014360936358571053, -0.01284355390816927, -0.012186474166810513, -0.008975584991276264, -0.011895190924406052, 0.015431232750415802, -0.020200146362185478, -0.025876780971884727, 0.011834224686026573, -0.003307418432086706, 0.0077969045378267765, 0.009768146090209484, -0.017585372552275658, 0.003271854715421796, 0.010912956669926643, 0.02320781536400318, 0.005696956533938646, -0.012979035265743732, 0.007769808638840914, 0.018344063311815262, -0.03069988824427128, 0.008074639365077019, -0.0031905665528029203, 0.01643378846347332, 0.03305725008249283, -0.011834224686026573, -0.00537180295214057, 0.0020948676392436028, -0.019807253032922745, 0.03091665729880333, 0.00378668075427413, -0.051861945539712906, -0.011800354346632957, 0.004897620994597673, 0.02845091186463833, -0.029047025367617607, -0.00786464475095272, -0.0003655857581179589, 0.016311855986714363, -0.004460696596652269, 0.02251686342060566, 0.017626017332077026, 0.005900177173316479, 0.020145954564213753, -0.021934298798441887, -0.005358255002647638, -0.0009907013736665249, -0.027177395299077034, 0.026621924713253975, 0.0003435701655689627, 0.005409060046076775, 0.03346369042992592, 0.0068722497671842575, 0.00539889931678772, -0.000729901366867125, 0.007044987753033638, -0.012613237835466862, -0.016081538051366806, 0.017219575121998787, 0.03061860054731369, -0.02022724226117134, -0.00849462952464819, -0.0009339689277112484, 0.007586909923702478, 0.014577705413103104, -0.011448104865849018, 0.0278547964990139, -0.0042744106613099575, 0.0085691437125206, -0.014631897211074829, 0.01793762296438217, 0.011847772635519505, -0.015756385400891304, 0.0014530286425724626, 0.01479447353631258, 0.017449893057346344, -0.012579367496073246, 0.003336208174005151, 0.013527731411159039, 0.024969061836600304, 0.008691076189279556, -0.003066940465942025, 0.005212613381445408, 0.037013281136751175, -0.013805465772747993, -0.01015426591038704, 0.0012421871069818735, -0.013873206451535225, 0.0058900159783661366, 0.008345600217580795, -0.03072698414325714, 0.017517631873488426, -0.01059457752853632, 0.03121471405029297, 0.009930722415447235, 0.016162827610969543, -0.010432001203298569, 0.008332052268087864, -0.009483637288212776, -0.014970598742365837, 0.014469320885837078, 0.021676884964108467, -0.007735938299447298, -0.0010262649739161134, 0.028911545872688293, 0.0022235740907490253, 0.0011930754408240318, 0.00041131043690256774, 0.02723158709704876, 0.016786037012934685, 0.007051761727780104, 0.012159377336502075, -0.603050947189331, -0.011996801011264324, 0.013527731411159039, -0.02162269316613674, 0.018005361780524254, 0.012057767249643803, 0.005392125342041254, 0.024738745763897896, -0.033626265823841095, 0.018398255109786987, -0.004115221090614796, 0.017070546746253967, 0.007857870310544968, -0.032515328377485275, -0.0045487587340176105, -0.03340949863195419, -0.002445423509925604, -0.012965486384928226, -0.015539617277681828, 0.013128063641488552, -0.02571420557796955, 0.007072083652019501, 0.002011885866522789, -0.009029777720570564, 0.023722641170024872, -0.019062111154198647, 0.0034784625750035048, -0.01684023067355156, -0.008752042427659035, 0.01654217205941677, -0.022354288026690483, 0.01595960557460785, 0.006584353744983673, -0.00013844417117070407, 0.06297135353088379, -0.010662317276000977, -0.02641870267689228, 0.00786464475095272, 0.004514888860285282, 0.050317469984292984, -0.02704191394150257, -0.022869113832712173, 0.017178930342197418, 0.0034818495623767376, 0.007790130563080311, -0.022191710770130157, 0.017341507598757744, -0.028748968616127968, -0.002210026141256094, 0.007803678512573242, 0.005466639529913664, -0.0017934235511347651, 0.005246483720839024, -0.011244883760809898, -0.015431232750415802, -0.020606588572263718, 0.029670236632227898, -0.036715224385261536, -0.01262001134455204, -0.025334859266877174, -0.025619369000196457, 0.000966145540587604, -0.015620904974639416, -0.03530622646212578, -0.010513288900256157, -0.010459097102284431, -0.022083327174186707, -0.03479139879345894, 0.018479544669389725, 0.0021947845816612244, -0.00050424161599949, -0.017585372552275658, 0.018669217824935913, -0.02125689573585987, 0.011631003580987453, 0.04321828857064247, 0.017124738544225693, -0.0007777429418638349, -0.006425164174288511, 0.01791052520275116, 0.0009297351352870464, -0.003952644299715757, 0.008061091415584087, -0.026811597868800163, 0.019658224657177925, 0.015404135920107365, -0.012708073481917381, -0.01576993428170681, 0.024847129359841347, 0.007336270529776812, -0.002479293616488576, 0.023451680317521095, -0.0004568234144244343, -0.024034246802330017, 0.0010999325895681977, 0.0183169674128294, -0.014808022417128086, -0.0006253273459151387, 0.01262001134455204, -0.003817163873463869, -0.018994370475411415, -0.0020254338160157204, 0.004938265308737755, 0.018113747239112854, 0.02834252640604973, 0.012430339120328426, -0.05419221147894859, 0.013297414407134056, 0.024305207654833794, -0.009923948906362057, -0.011698744259774685, -0.01868276484310627, 0.003519106889143586, 0.004223605617880821, 0.03858485445380211, -0.026486443355679512, -0.002247283235192299, 0.0007946779951453209, 0.021351732313632965, -0.01846599578857422, -0.0026520313695073128, -0.00527019239962101, 0.006526774726808071, 0.008765590377151966, 0.0021541405003517866, 0.008907845243811607, 0.021880105137825012, -0.003644426353275776, -0.003834099043160677, 0.0012836779933422804, 0.014239003881812096, 0.012836780399084091, 0.015404135920107365, 0.004867137875407934, 0.026296770200133324, 0.0024742132518440485, 0.02273363247513771, -0.005124551244080067, 0.013141611590981483, -0.029263794422149658, -0.021311087533831596, -0.0123219545930624, 0.021202702075242996, -0.012260988354682922, 0.008169475942850113, -0.011705517768859863, -0.02969733253121376, -0.007884967140853405, 0.0171382874250412, 0.012369372881948948, 0.01720602810382843, 0.01066909171640873, 0.0006562338094227016, 0.027326423674821854, 0.006113559007644653, 0.013527731411159039, -0.018953725695610046, -0.03500816971063614, -0.012999356724321842, 0.009205901995301247, 0.0023065560963004827, 0.003820550860837102, -0.03779906779527664, 0.001413231249898672, -0.023776832967996597, -0.020511751994490623, 0.007431107107549906, 0.003817163873463869, -0.0033751586452126503, -0.03682360798120499, 0.025063898414373398, 0.0022743793670088053, -0.02472519688308239, -9.002046135719866e-05, 0.022449124604463577, -0.008386244997382164, -0.024305207654833794, 0.014171263203024864, -0.014062878675758839, -0.01761246845126152, 0.008284633979201317, 0.0010973922908306122, -0.015620904974639416, -0.007363366894423962, 0.018587928265333176, 0.013392250053584576, 0.020173050463199615, 0.011197465471923351, 0.00930073857307434, -0.019807253032922745, -0.017422795295715332, 0.03284047916531563, 0.020457560196518898, 0.02969733253121376, 0.025036802515387535, 0.003542815800756216, -0.007031439337879419, 0.016352500766515732, -0.0016774183604866266, 0.027326423674821854, 0.024481331929564476, 0.004630046896636486, -0.009544603526592255, -0.02594452165067196, 0.0031008105725049973, -0.025253571569919586, -0.0042845718562603, -0.020091762766242027, 0.0074649774469435215, 0.013805465772747993, -0.009239772334694862, -0.02200203761458397, -0.017368603497743607, -0.012369372881948948, 0.02277427725493908, 0.019427908584475517, -0.000366009131539613, 0.013602245599031448, 0.006879023741930723, 0.0110348891466856, 0.014008686877787113, -0.010140717960894108, 0.009754598140716553, -0.018100198358297348, 0.021202702075242996, 0.007532717660069466, 0.002425101585686207, 0.013703855685889721, 0.006042431574314833, -0.03573976457118988, -0.014388032257556915, -0.000732018263079226, 0.003708779579028487, -0.02682514488697052, 0.03861195221543312, 0.007986577227711678, 0.009531055577099323, -0.03237984701991081, 0.0186421200633049, 0.006523387506604195, -0.006055979523807764, -0.005896789953112602, 0.001117714331485331, 0.006472582463175058, 0.04289313778281212, 0.027421260252594948, 0.03993966057896614, 0.025226475670933723, -0.012647107243537903, -0.010736832395195961, -0.0330030582845211, 0.004646982066333294, -0.006333714816719294, 0.020254340022802353, 0.022137518972158432, 0.0010550545994192362, 0.022205259650945663, -0.01311451569199562, 0.018560832366347313, 0.029209602624177933, 0.030672792345285416, 0.03411399573087692, -0.02059303969144821, 0.005605507176369429, 0.01662346161901951, -0.02320781536400318, -0.007119501940906048, -0.019062111154198647, -0.010486193001270294, -0.004111833870410919, 0.002719771582633257, 0.00757336150854826, -0.004077963996678591, 0.003695231396704912, 0.00844043679535389, -0.0033463691361248493, -0.002999200252816081, 0.028017373755574226, 0.026689665392041206, 0.0069366032257676125, -0.03495397791266441, -0.010716510005295277, 0.017964718863368034, 0.029941197484731674, 0.017260219901800156, 0.004660530015826225, -0.006303231697529554, 0.0028603326063603163, -0.003370078280568123, 0.02240847982466221, -0.006547096651047468, 0.009077195078134537, -0.002792592393234372, 0.002636789809912443, -0.013073870912194252, 0.016040895134210587, 0.035793956369161606, -0.020660780370235443, -0.03560428321361542, -0.024806484580039978, 0.008155927993357182, -0.027312874794006348, -0.0030432313214987516, -0.012979035265743732, 0.03611911088228226, 0.012626785784959793, -0.022096874192357063, -0.018181487917900085, 0.013168707489967346, -0.01690796948969364, -0.007647876162081957, -0.009490410797297955, -0.0071262759156525135, -0.01643378846347332, 0.005429382435977459, -0.002325184643268585, 0.01996983028948307, 0.009639440104365349, 0.010052654892206192, 0.004518275614827871, -0.018411803990602493, -0.0003465338086243719, -0.009768146090209484, 0.004589403048157692, 0.026066454127430916, 0.005659698974341154, -0.00019835196144413203, 0.010906183160841465, -0.045115016400814056, 0.00895526260137558, -0.027434807270765305, -3.617224137997255e-05, 0.00522277457639575, -0.0010575948981568217, 0.00930073857307434, -0.010533611290156841, -0.026174837723374367, -0.008711397647857666, 0.01975306123495102, -0.0020389819983392954, 0.014672541059553623, -0.02678450010716915, 0.0019018079619854689, -0.028179951012134552, 0.008623335510492325, -0.011278754100203514, 0.011061985045671463, -0.01647443324327469, 0.008243990130722523, 0.0026689665392041206, 0.013548052869737148, 0.022096874192357063, 0.026798048987984657, -0.00201696646399796, 0.010174587368965149, 0.0008653819095343351, -0.01037103496491909, 0.018425352871418, -0.019780157133936882, 0.02929089032113552, 0.006343876011669636, 0.042540885508060455, -0.009253320284187794, 0.012965486384928226, 0.0031397612765431404, 0.014767377637326717, 0.011705517768859863, -0.008359149098396301, 0.013697081245481968, 0.001484358566813171, 0.002399698831140995, 0.01860147714614868, -0.028803160414099693, -0.005534379743039608, 0.009923948906362057, 0.009043325670063496, -0.05061552673578262, -0.0026334028225392103, -0.007227886468172073, 0.032406941056251526, 0.005876468028873205, 0.0010694494703784585, 0.006797735579311848, -0.012660655193030834, -0.0005550467758439481, -0.023221362382173538, -0.008460759185254574, -0.02148721180856228, 0.0033683846704661846, -0.014509964734315872, -0.02288266085088253, -0.020132407546043396, -0.022422028705477715, 0.007343044970184565, 0.0039153872057795525, -0.05194323509931564, -0.016853777691721916, -0.009998463094234467, -0.010791024193167686, 0.009368478320538998, 0.029019929468631744, -0.005216000601649284, -0.01654217205941677, 0.007661424111574888, -0.03769068419933319, -0.012613237835466862, -0.010574255138635635, -0.03397851809859276, 0.005740987602621317, 0.007979802787303925, -0.017151834443211555, -0.0032075014896690845, -0.02468455210328102, 0.011732613667845726, -0.020389819517731667, 0.014008686877787113, 0.02427811175584793, 0.01046587061136961, -0.013439668342471123, 0.019007917493581772, 0.023831024765968323, 0.023573612794280052, -0.006723221391439438, -0.006489517632871866, -0.0028332367073744535, -0.017382152378559113, -0.0035021717194467783, -0.040888022631406784, -0.01442867610603571, 0.0036579743027687073, 0.006977247539907694, 0.0299953892827034, 0.0028925093356519938, 0.018953725695610046, 0.017598921433091164, -0.003641039365902543, 0.0045284368097782135, 0.02545679174363613, 0.012531949207186699, 0.027163846418261528, 0.003307418432086706, 0.012592915445566177, 0.0221781637519598, 0.01074360590428114, -0.006567418575286865, -0.019102754071354866, 0.03284047916531563, 0.023492323234677315, -0.012687752023339272, 0.008128832094371319, -0.032705001533031464, -0.039777085185050964, -0.031566962599754333, -0.0005796026671305299, 0.015051887370646, 0.03121471405029297, 0.005903563927859068, -0.00425747549161315, -0.029317986220121384, -0.02277427725493908, -0.00038569612661376595, 0.023885218426585197, -0.023519420996308327, -0.020105309784412384, -0.007519169244915247, -0.0005906104343011975, 0.0009356624213978648, -0.00641161622479558, -0.0026638859417289495, -0.0241019856184721, 0.001442020875401795, 0.029209602624177933, -0.006543709430843592, 0.013629341498017311, 0.011576811783015728, -0.004382795188575983, -0.0389912948012352, -0.008792686276137829, 0.011061985045671463, -0.029453467577695847, -0.0006765559082850814, -0.02232719212770462, 0.030130870640277863, 0.024196822196245193, 0.013087418861687183, 0.015891866758465767, -0.0005935740773566067, 0.0015656468458473682, 0.011583585292100906, 0.004071190021932125, 0.007905288599431515, -0.007302400656044483, 0.005598732735961676, 0.013270317576825619, 0.015295752324163914, 0.0342765748500824, -0.009551377035677433, 0.006489517632871866, -0.014658993110060692, 0.030103774741292, -0.011847772635519505, 0.00225236383266747, 0.003525880863890052, -0.04977554827928543, -0.012010348960757256, -0.008995907381176949, 0.006242265459150076, 0.004406504333019257, -0.018100198358297348, -0.021798817440867424, 0.0025927587412297726, -0.007817226462066174, 0.03508945554494858, 0.0038611951749771833, 0.003681683447211981, -0.02262524887919426, 0.00594082148745656, 0.01159035973250866, 0.0006308312295004725, -0.008196571841835976, 0.007756260223686695, -0.023085882887244225, 0.018357612192630768, 0.03590233996510506, 0.03831389546394348, 0.009409123100340366, 0.0034953977447003126, 0.006845153868198395, 0.0014360935892909765, 0.009693631902337074, -0.03091665729880333, -0.016040895134210587, 0.002762109274044633, 0.002968717133626342, -0.03888291120529175, -0.030076676979660988, -0.015675097703933716, -0.015322848223149776, -0.022801373153924942, 0.02442714013159275, 0.017449893057346344, 0.009138161316514015, 0.017124738544225693, -0.010763928294181824, 0.002404779428616166, -0.02402069792151451, 0.022638795897364616, 0.01031684223562479, 0.02937217988073826, 0.03544170781970024, 0.008447211235761642, -0.012653881683945656, -0.04812268540263176, 0.002184623619541526, 0.006215169560164213, 0.013277092017233372, 0.037609394639730453, -0.01694861426949501, -0.020294982939958572, 0.014049330726265907, 0.017788592725992203, -0.03254242241382599, -0.023045238107442856, 0.03807003051042557, 0.022530412301421165, -0.0007663117721676826, 0.0028366236947476864, 0.006042431574314833, -0.0006884104222990572, -0.004640208091586828, -0.01072328444570303, -0.02686578966677189, -0.00315500283613801, -0.01934661902487278, -0.006635158788412809, 0.0196040328592062, 0.0018628572579473257, 0.02412908338010311, 0.004067802801728249, -0.002340426202863455, -0.015444780699908733, -0.02151430770754814, -0.025592273101210594, -0.010432001203298569, -0.014767377637326717, 0.0349268801510334, -0.0011820676736533642, -0.005778244696557522, -0.0018713248427957296, 0.03457463160157204, -0.000681213045027107, -0.02701481804251671, -0.018032457679510117, 0.045006632804870605, 0.006347262766212225, -0.00232687802053988, -0.004077963996678591, 0.012531949207186699, 0.009382026270031929, 0.014821570366621017, -0.010086525231599808, 0.001771407900378108, 0.009463314898312092, -0.010438774712383747, 0.02826123870909214, 0.015282203443348408, -0.007790130563080311, -0.020769165828824043, 0.005910338368266821, -0.01926533132791519, -0.020904645323753357, -0.010269423946738243, 0.03508945554494858, -0.020240791141986847, 0.00849462952464819, -0.0085149509832263, -0.03029344603419304, 0.0018408417236059904, 0.013283866457641125, 0.005236322525888681, -0.009050099179148674, 0.051157448440790176, -0.0396416038274765, 0.01838470809161663, 0.006086462642997503, -0.003864582162350416, -0.021162059158086777, 0.01761246845126152, -0.008271086029708385, -0.013507409021258354, 0.016975710168480873, -0.008508177474141121, 0.004145704209804535, -0.020538847893476486, -0.003251532791182399, 0.019509196281433105, -0.016298307105898857, 0.023898765444755554, 0.03666103258728981, -9.790585318114609e-05, 0.012606463395059109, -0.0032210496719926596, -0.03544170781970024, -0.002204945543780923, -0.00248776120133698, 0.009937496855854988, 0.03069988824427128, 0.004630046896636486, 0.007668198086321354, -0.008271086029708385, 0.013012904673814774, -0.0049450392834842205, -0.000350132497260347, -0.06665641814470291, 0.018764052540063858, 0.0017087481683120131, 0.002171075437217951, -0.008968811482191086, -0.013663211837410927, -0.011712292209267616, -0.025077445432543755, 0.011292302049696445, 0.0028654132038354874, 0.004772301763296127, 0.002690982073545456, 0.02487422525882721, 0.01823567971587181, 0.013290639966726303, 0.005649538245052099, -0.012281309813261032, -0.027936086058616638, -0.037013281136751175, -0.009788468480110168, -0.011346494778990746, -0.03340949863195419, 0.03511655330657959, -0.0040847379714250565, -0.03909968212246895, -0.03216307610273361, -0.006719834171235561, -0.01602734625339508, 0.0038273250684142113, 0.0023082494735717773, 0.016704749315977097, -0.00013664481230080128, -0.013995138928294182, 0.020281435921788216, 0.025226475670933723, -0.003038150956854224, 0.02826123870909214, -0.008189798332750797, -0.014320292510092258, -0.0068146707490086555, -0.01731441169977188, -0.003766358830034733, -0.013222900219261646, -0.025185830891132355, 0.015973154455423355, -0.010350712575018406, -0.01298580877482891, 0.037501011043787, 0.04609047621488571, -0.012531949207186699, 0.0194956474006176, -0.010201684199273586, 0.003979740664362907, -0.0029839586932212114, 0.01639314368367195, -0.006100011058151722, -0.04256798326969147, 0.003112665144726634, 0.04432922974228859, 0.004392956383526325, -0.0056800213642418385, -0.0137648219242692, -0.00865720584988594, -0.016962163150310516, 0.024820033460855484, -0.02328910306096077, -0.0123219545930624, -0.01860147714614868, -0.0122677618637681, 0.015106079168617725, -0.012762266211211681, 0.013846110552549362, 0.013534504920244217, -0.015756385400891304, -0.006641933228820562, -0.023681996390223503, 0.001986483344808221, -0.031079234555363655, 0.007133049890398979, 0.007038213778287172, 0.0027350131422281265, -0.0014606494223698974, -0.0010338857537135482, 0.019617579877376556, -0.015675097703933716, -0.003610556246712804, -0.0041321562603116035, -0.0008323584916070104, -0.02948056347668171, -0.010384582914412022, 0.020173050463199615, -0.02052530087530613, -0.03040183149278164, -0.005463252309709787, -0.009138161316514015, -0.004050867632031441, -0.024901321157813072, -6.361234409268945e-05, -0.004179574549198151, 0.04411246255040169, -0.024752292782068253, 0.006621610838919878, -0.022909758612513542, -0.000461903924588114, 0.017680209130048752, -0.0005131324869580567, 0.0019678547978401184, 0.2800653576850891, -0.023126525804400444, 0.02273363247513771, 0.033436596393585205, -0.009029777720570564, -0.0012675897451117635, 0.02247622050344944, -0.015580261126160622, -0.018425352871418, 0.017639564350247383, -0.004406504333019257, -0.01956338807940483, -0.003556363983079791, -0.0009136468288488686, 0.0021659950725734234, 0.0026198546402156353, -0.02200203761458397, -0.016298307105898857, -0.017016354948282242, 0.013249996118247509, 0.01690796948969364, 0.008907845243811607, -0.020471107214689255, -0.01923823542892933, 0.010249102488160133, 0.0217446256428957, -0.024264562875032425, 0.022205259650945663, 0.011685195378959179, 0.013067097403109074, -0.03051021508872509, 0.0028654132038354874, 0.008203346282243729, -0.01448286883533001, -0.008433663286268711, -0.007884967140853405, 0.019509196281433105, 0.004335376899689436, 0.01684023067355156, 0.015065435320138931, 0.007668198086321354, -0.01587831787765026, 0.005412447266280651, -0.018885985016822815, -0.0068993461318314075, 0.012200022116303444, 0.013026452623307705, -0.009070421569049358, -0.009192354045808315, 0.018709860742092133, -0.02295040152966976, -0.015038338489830494, 0.017382152378559113, 0.02093174122273922, 0.010533611290156841, 0.010147491469979286, 0.01289774663746357, -0.016853777691721916, 0.013785144314169884, 0.021527856588363647, -0.014442224986851215, 0.026405155658721924, -0.04446471109986305, 0.0162847600877285, -0.03522493690252304, 1.6829222658998333e-05, -0.032190173864364624, 0.025063898414373398, 0.01341257244348526, -0.03888291120529175, -0.008826556615531445, 0.0023184106685221195, -0.016515076160430908, 0.006364197935909033, -0.014943502843379974, -0.025036802515387535, 0.02622903138399124, 0.027434807270765305, 0.02288266085088253, 0.04752657189965248, 0.011326172389090061, 0.02262524887919426, -0.01772085390985012, -0.010506515391170979, -0.004345538094639778, -0.027150297537446022, 0.015051887370646, -0.0035157196689397097, -0.02125689573585987, -0.023126525804400444, 0.018885985016822815, -0.03573976457118988, 0.0004627507005352527, -0.032217271625995636, -0.006777413655072451, 0.0032887898851186037, -0.029507659375667572, -0.0021490599028766155, -0.024711648002266884, 0.009862982667982578, -0.02288266085088253, 0.06530161201953888, 0.032298557460308075, 0.024860678240656853, -0.004863751120865345, -0.0051990654319524765, -0.010791024193167686, -0.01160390768200159, 0.022056231275200844, -0.02022724226117134, 0.021934298798441887, -0.04083383083343506, -0.005967917386442423, -0.003370078280568123, 0.002696062671020627, -0.01448286883533001, -0.0005702883354388177, -0.03265080600976944, 0.008006899617612362, -0.0031346806790679693, 0.015864770859479904, -0.01383933611214161, -0.001370893674902618, -0.008819782175123692, -0.015526068396866322, 0.02037627249956131, 0.0072956266812980175, 0.00888074841350317, -0.01952274516224861, -0.028803160414099693, 0.013358380645513535, 0.006736769340932369, 0.028288334608078003, -0.0062287175096571445, 0.006154203321784735, -0.015228011645376682, -0.004406504333019257, -0.018398255109786987, -0.011332946829497814, 0.013534504920244217, -0.0076275537721812725, -0.014726733788847923, 0.015390587970614433, -0.015783481299877167, -0.007688520010560751, 0.0171382874250412, 0.020132407546043396, 0.026743857190012932, 0.02063368447124958, 0.030130870640277863, -0.03069988824427128, -0.014523512683808804, -0.009788468480110168, 0.012660655193030834, 0.021134963259100914, -0.0016613299958407879, -0.028505103662610054, -0.0366339348256588, 0.020891098305583, -0.00410844711586833, -0.030781175941228867, -0.014753829687833786, 0.02671676129102707, -0.026743857190012932, -0.02099948190152645, -0.018303420394659042, -0.1730899214744568, 0.019360167905688286, 0.020660780370235443, -0.00886042695492506, 0.019441455602645874, -0.010851990431547165, -0.01823567971587181, -0.014103523455560207, -0.013609019108116627, -0.037121664732694626, -0.0050093927420675755, -0.011725840158760548, -0.01879115030169487, -0.024088438600301743, -0.02465745620429516, -0.0061237202025949955, -0.005873080808669329, 0.042838942259550095, 0.059448856860399246, 0.008873974904417992, 0.03747391328215599, -0.03522493690252304, 0.01398159097880125, 0.0005855298950336874, -0.007214338053017855, 0.002484374213963747, -0.026472896337509155, 0.0171382874250412, -0.011807127855718136, -0.033436596393585205, -0.011007793247699738, -0.005104228854179382, 0.022814922034740448, 0.005663086194545031, 0.009551377035677433, -0.02140592411160469, -0.011380364187061787, 0.015255107544362545, 0.0016723377630114555, 0.0032278236467391253, 0.008061091415584087, 0.03590233996510506, -0.014401580207049847, 0.03592943772673607, 0.01468608994036913, 0.011007793247699738, 0.0008188104839064181, -0.004355698823928833, -0.007891740649938583, -0.020579492673277855, 0.00025317922700196505, -0.03305725008249283, -0.010804572142660618, -0.006394681055098772, 0.019021466374397278, -0.008521725423634052, 0.011962930671870708, 0.016718298196792603, -0.018669217824935913, -0.000655810465104878, 0.008033995516598225, -0.014184811152517796, 0.02041691541671753, -0.009862982667982578, -0.0022032521665096283, -0.024400044232606888, 0.00821689423173666, 0.010533611290156841, -0.0059746913611888885, -0.003800228936597705, 0.014293195679783821, -0.024237466976046562, -0.0032329042442142963, 0.008203346282243729, 0.009700406342744827, 0.016745394095778465, -0.010641995817422867, 0.020105309784412384, 0.031377289444208145, -0.020877549424767494, -0.012437112629413605, 0.04186348244547844, 0.011177144013345242, -0.016162827610969543, 0.017775045707821846, 0.011671647429466248, 0.00450472766533494, 0.0037629718426615, -0.015241559594869614, 0.006225330289453268, 0.020904645323753357, -0.019427908584475517, -0.011414234526455402, -0.005818889010697603, -0.021460115909576416, 0.005385350901633501, -0.001223558560013771, -0.005260031670331955, -0.015173819847404957, -0.012538722716271877, 0.008677528239786625, -0.018669217824935913, -0.011400686576962471, 0.02071497216820717, 0.042026061564683914, -0.008033995516598225, -0.03606491535902023, -1.0987947462126613e-05, 0.02969733253121376, -0.020471107214689255, -0.0040474808774888515, 0.0005694415885955095, -0.00209148065187037, 0.006272748578339815, 0.028234142810106277, 0.013785144314169884, 0.010919731110334396, -0.012450660578906536, 0.0008166935876943171, -0.017734400928020477, -0.021216250956058502, -0.014144167304039001, 0.008548821322619915, 0.013886754401028156, -0.0007832468254491687, -0.02704191394150257, -0.04308280721306801, -0.015377040021121502, -0.0027654962614178658, 0.01658281683921814, -0.020958837121725082, 0.026743857190012932, -0.0103913564234972, 0.033734653145074844, 0.014509964734315872, 0.01464544516056776, -0.021717529743909836, -0.020728521049022675, -7.430260302498937e-05, 0.009409123100340366, -0.012599688954651356, 0.014509964734315872, -0.010696187615394592, -0.011610681191086769, 0.01469963788986206, 0.027773508802056313, 0.009998463094234467, -0.006862089037895203, -0.01853373646736145, -0.007376914843916893, -0.009199127554893494, 0.004985683597624302, -0.017734400928020477, 0.03145857900381088, 0.008474307134747505, -0.0103913564234972, 0.04037319868803024, -0.0068519278429448605, -0.018154390156269073, -0.01772085390985012, -0.0011143273441120982, -0.003437818493694067, -0.029859909787774086, -0.013432894833385944, 0.01639314368367195, -0.03135019540786743, 0.00561905512586236, 0.0036918444093316793, 0.02988700568675995, -0.013480313122272491, -0.004941652528941631, -0.013006131164729595, 0.010621673427522182, 0.01782923750579357, -0.005290514789521694, -0.0057274396531283855, -0.04432922974228859, 0.004088125191628933, -0.006601288914680481, -0.03273209556937218, 0.030266350135207176, 0.020647233352065086, -0.0008268546080216765, 0.014374484308063984, -0.04831235855817795, 0.0031990341376513243, 0.0033345145639032125, 0.0055953459814190865, -0.017490535974502563, 0.005205839406698942, -0.005815501790493727, 0.0034818495623767376, -0.008887522853910923, -0.005111002828925848, 0.012504853308200836, -0.003749423660337925, -0.023343294858932495, 0.03438495844602585, 0.003590234089642763, 0.021974941715598106, -0.023939410224556923, -0.022720085456967354, -0.006377745885401964, -0.009998463094234467, 0.01203067135065794, -0.01849309168756008, -0.005934047047048807, -0.008704624138772488, 0.011014566756784916, -0.004877299070358276, -0.006916281301528215, 0.01872340962290764, 0.0062862965278327465, -0.0042744106613099575, 0.010696187615394592, -0.037636492401361465, -0.0062016211450099945, -0.0033311275765299797, -0.0026215482503175735, 0.000894171476829797, -0.012315180152654648, -0.00490100821480155, 0.0007006883970461786, 0.0022252677008509636, -0.011028115637600422, 0.022909758612513542, -0.02744835615158081, -0.012653881683945656, -0.09006745368242264, 0.018303420394659042, -0.00541583402082324, -0.01650152914226055, -0.01118391752243042, -0.008704624138772488, 0.01556671317666769, -0.021094318479299545, 0.016081538051366806, 0.0026384834200143814, -0.026621924713253975, 0.01427964773029089, 0.00422699237242341, -0.013317735865712166, -0.022015586495399475, -0.02427811175584793, 0.0071465978398919106, 0.002099948236718774, 0.003149922238662839, 0.0062016211450099945, -0.007200790103524923, -0.032705001533031464, 0.0024742132518440485, -0.0016283065779134631, -0.04351634532213211, 0.020809808745980263, -0.013629341498017311, 0.038639046251773834, -0.0026181612629443407, -0.02568710781633854, -0.018005361780524254, -0.02564646489918232, -0.0038611951749771833, -0.012572593055665493, 0.01516027096658945, 0.003708779579028487, 0.005554701667279005, 0.004315054975450039, 0.015336396172642708, 0.0242103710770607, -0.025253571569919586, -0.016040895134210587, 0.017070546746253967, -0.0025961457286030054, 0.00928719062358141, -0.013913850300014019, -0.006885798182338476, 0.00842011533677578, 0.028938641771674156, 0.007614005822688341, 0.04430213198065758, 0.013161933980882168, 0.0014513351488858461, -0.02899283356964588, -0.0022625247947871685, -0.04516920819878578, -0.019780157133936882, 0.018872437998652458, -0.0006414156523533165, 0.012667429633438587, 0.054842520505189896, -0.000858184474054724, -0.003070327453315258, -0.001813745591789484, 0.0076546501368284225, 0.013595471158623695, -0.005751148331910372, 0.003969579469412565, 0.01449641678482294, -0.0279631819576025, -0.04619885981082916, -0.0033175793942064047, 0.004782462492585182, -0.014076427556574345, 0.017517631873488426, 0.02320781536400318, -0.027732864022254944, -0.003590234089642763, -0.007275304291397333, 0.009348156861960888, 0.01684023067355156, 0.008345600217580795, -0.010567481629550457, 0.01572928950190544, 0.015106079168617725, 0.015932509675621986, 0.0017290703253820539, -0.008596239611506462, -0.024264562875032425, 0.007166920229792595, -0.023221362382173538, 0.015742838382720947, -0.003124519716948271, 0.032596614211797714, 0.006702899467200041, 0.029317986220121384, -0.008169475942850113, 0.006404842250049114, 0.009686857461929321, 0.0059543694369494915, 0.010018785484135151, -0.0034953977447003126, -0.004277797881513834, -0.023316198959946632, -0.02140592411160469, 0.01812729425728321, -0.020403368398547173, -0.04703884199261665, 0.004406504333019257, 0.003972966689616442, -0.006757091265171766, 0.0033057250548154116, -0.03273209556937218, 0.01772085390985012, -0.0232484582811594, 0.001205776701681316, -0.004823106806725264, -0.01898082159459591, -0.027163846418261528, 0.034547533839941025, 0.03330111503601074, 0.018764052540063858, 0.01442867610603571, -0.011800354346632957, 0.019509196281433105, -0.023316198959946632, 0.007878192700445652, -0.025077445432543755, 0.01037103496491909, -0.01551252044737339, -0.011542941443622112, 0.023681996390223503, -0.0042845718562603, -0.008718172088265419, -0.018262775614857674, 0.0018594702705740929, -0.0012125507928431034, 0.0005791792646050453, 0.006401455029845238, 0.06291715800762177, 0.032515328377485275, -0.003817163873463869, -0.0033175793942064047, -0.0024860678240656853, -0.01254549715667963, 0.020024022087454796, 0.014509964734315872, 0.017598921433091164, -0.01146165281534195, 0.0009322753758169711, 0.023058786988258362, -0.0034090287517756224, -0.01297226082533598, -0.008467532694339752, -0.0032583067659288645, -0.03294886648654938, 0.030781175941228867, -0.00786464475095272, 0.026405155658721924, 0.021947845816612244, -0.007004343438893557, 0.02991410158574581, 0.005862920079380274, -0.030537310987710953, 0.005781631451100111, 0.028803160414099693, 0.003925548400729895, -0.010188136249780655, -0.008189798332750797, 0.016975710168480873, 0.008501403033733368, 0.0019543066155165434, -0.008271086029708385, -0.0018018910195678473, 0.02483358047902584, -0.005920499097555876, 0.0018120520981028676, 0.03508945554494858, 0.009144935756921768, 0.018736956641077995, -0.01786988228559494, -0.02958894707262516, -0.031160522252321243, -0.0017095949733629823, 0.0074582030065357685, -0.0011084000580012798, -0.0175718255341053, -0.00952428113669157], "cbdea7e8-6b23-4688-9c05-3c5c0eae95db": [-0.020267648622393608, -0.0016618856461718678, -0.0032262648455798626, -0.018420157954096794, -0.0071641551330685616, 0.004960852675139904, -0.026740705594420433, -0.007896308787167072, -0.02125297673046589, -0.024072108790278435, 0.016244227066636086, -0.014383051544427872, -0.004119218327105045, -0.004851371515542269, -0.008915849961340427, -0.016846371814608574, 0.007595236413180828, -0.026590170338749886, 0.019241265952587128, -0.04499664157629013, 0.04179432615637779, -0.012836633250117302, 0.0005683597410097718, -0.017475886270403862, -0.02645331807434559, 0.014944140799343586, 0.010920718312263489, -0.018296992406249046, 0.007383116986602545, -0.0042937034741044044, 0.022867819294333458, 0.006349891424179077, 0.006151457317173481, -0.017790643498301506, 0.008176853880286217, -0.015204157680273056, -0.006702282931655645, -0.020637147128582, -0.008081058040261269, -0.00725995097309351, 0.0016447792295366526, -0.003701822366565466, 0.00466662272810936, 0.003876307513564825, -0.013938285410404205, -0.010612803511321545, -0.024605829268693924, -0.01709270291030407, -0.0103254159912467, 0.0233331136405468, 0.003941311966627836, 0.0024410816840827465, -0.028848212212324142, -0.005788801703602076, -0.0069794063456356525, -0.005302980542182922, -0.018406473100185394, 0.02169089950621128, -0.017284294590353966, -0.009928547777235508, 0.020322389900684357, 0.009381143376231194, -0.038537271320819855, -0.02024027891457081, 0.0005893150810152292, 0.023483648896217346, -0.029833540320396423, 0.0017585366731509566, -0.025632211938500404, -0.0013163365656509995, 0.017900124192237854, 0.012952957302331924, 0.012385024689137936, 0.010852293111383915, 0.034376997500658035, -0.0014762813225388527, -0.016805315390229225, -0.004635831341147423, 0.013295085169374943, 0.013479833491146564, 0.020965589210391045, 0.017694847658276558, 0.015286268666386604, -0.004430554341524839, 0.0013112046290189028, 0.02175932563841343, 0.0069828275591135025, 0.026685966178774834, 0.005788801703602076, -0.021841436624526978, 0.0018834132933989167, 0.020007630810141563, 0.0154778603464365, 0.005987235810607672, -0.0233194287866354, 7.173991616582498e-05, -0.006490163505077362, 0.018269622698426247, -0.0017516941297799349, -0.05422040820121765, -0.01189920399338007, 0.014068293385207653, -0.03744246065616608, 0.006435423158109188, -0.0413837730884552, -0.0055561549961566925, 0.041192181408405304, -0.013596157543361187, -0.008772156201303005, -0.00023906177375465631, -0.026740705594420433, 0.019774984568357468, 0.0008869662415236235, -0.02382577769458294, -0.02486584521830082, -0.01917283982038498, 0.035334955900907516, -0.03221474960446358, 0.00041525758570060134, 0.01218659058213234, 0.013691953383386135, 0.01475254911929369, 0.0155189149081707, 0.007574708666652441, 0.014437791891396046, 0.023579444736242294, -0.010859135538339615, 0.026754390448331833, -0.01657266914844513, -0.027315480634570122, 0.023552075028419495, -0.021020330488681793, 0.0018064345931634307, 0.021827751770615578, -0.005911967717111111, 0.002894400851801038, -0.003547864966094494, 0.0034229883458465338, -0.009955917485058308, -0.02327837236225605, 0.013520888984203339, 0.022060398012399673, 0.001302651478908956, -0.018365418538451195, -0.004806895274668932, 0.005655372049659491, 0.006702282931655645, 0.00797841977328062, 0.025604842230677605, -0.00632594246417284, 0.0028174221515655518, -0.004078162834048271, 0.010763339698314667, -0.01240555290132761, -0.015751563012599945, -0.013602999970316887, 0.025495361536741257, 0.008334232494235039, -0.004126060754060745, 0.017859069630503654, 0.012213961221277714, 0.01750325597822666, -0.0008980853599496186, 0.005436410196125507, -0.018296992406249046, 0.03153049573302269, -0.014602012932300568, -0.012597144581377506, -0.002412000671029091, 0.0027404434513300657, 0.005963286850601435, 0.00934008788317442, -0.0363750234246254, 0.002629251917824149, -0.008970590308308601, 0.020828738808631897, -0.00657911691814661, 0.010633330792188644, -0.03142101317644119, 0.0002687841188162565, -0.010181722231209278, -0.00031710966140963137, 0.002004868583753705, 0.030298834666609764, -0.013842489570379257, -0.021321402862668037, 0.023127837106585503, 0.0033494308590888977, 0.009661688469350338, -0.0009348641033284366, 0.01601157896220684, 0.032816894352436066, 0.01967918872833252, -0.0017841962398961186, -0.5986414551734924, -0.001230804598890245, -0.004283439368009567, -0.0022135665640234947, 0.019446542486548424, 0.009668530896306038, 0.010872820392251015, 0.021321402862668037, -0.02939561754465103, 0.012241330929100513, -0.02022659406065941, 0.013801434077322483, -0.0033768010325729847, -0.012884531170129776, -0.021444568410515785, -0.04970432072877884, 0.015587341040372849, -0.020555036142468452, 0.006418316625058651, 0.009901177138090134, -0.019774984568357468, 0.016695834696292877, -0.013390881009399891, 0.014957825653254986, 0.031804196536540985, -0.014054608531296253, -0.00374629907310009, -0.011249160394072533, -0.016189485788345337, 0.024441607296466827, -0.03194104880094528, 0.020336074754595757, 0.007437857799232006, -0.006154878530651331, 0.05840805172920227, -0.02953246794641018, -0.023045726120471954, -0.002256332663819194, -0.012049740180373192, 0.05126442387700081, 0.005474044010043144, -0.013288242742419243, 0.03711402043700218, 0.008553193882107735, 0.004933482501655817, 0.004587933421134949, 0.017243240028619766, -0.03812671825289726, 0.002810579491779208, 0.014095664024353027, -0.008115270175039768, -0.0044510820880532265, 0.0029029541183263063, -6.024656249792315e-05, -0.015751563012599945, -0.011700769886374474, 0.022074082866311073, -0.022033028304576874, -0.007218895945698023, -0.028273439034819603, -0.021595103666186333, 0.0018834132933989167, -0.03768879547715187, 0.0033066647592931986, -0.02631646767258644, 0.014095664024353027, -0.013630369678139687, -0.022553062066435814, 0.011474965140223503, -0.0069007170386612415, 0.014027237892150879, -0.008300019428133965, 0.015450489707291126, -4.661490675061941e-05, 0.01765379309654236, 0.0257964339107275, 0.019829725846648216, -0.0002670734829735011, -0.002533456077799201, 0.019966576248407364, -0.008532666601240635, 0.004974537529051304, 0.012371339835226536, -0.010715441778302193, 0.024687940254807472, 0.02789025567471981, -0.05323508009314537, -0.007403644733130932, 0.036457136273384094, -0.021061385050415993, 0.003315218025818467, -0.0020082900300621986, 0.013199289329349995, -0.024551087990403175, 0.0309830904006958, 0.022375155240297318, -0.008293177001178265, 0.017174813896417618, 0.00848476868122816, -0.002786630531772971, -0.012631356716156006, -0.017804328352212906, -0.00399605231359601, 0.02274465374648571, 0.03454121947288513, 0.004324494861066341, -0.042670175433158875, 0.007561023347079754, 0.03916678577661514, -0.007732087280601263, -0.013979339972138405, -0.03585498780012131, 0.01868017576634884, 0.006260938011109829, 0.024058423936367035, -0.03163997456431389, -0.01057859044522047, 0.008943219669163227, 0.026056449860334396, -0.014095664024353027, 0.010660701431334019, -0.007704717107117176, 0.002278571017086506, 0.01190604642033577, 0.007109414786100388, 0.01399302575737238, 0.0155052300542593, -0.0013496939791366458, 0.001951838843524456, 0.00607276801019907, 0.020431870594620705, 0.0012171195121482015, 0.019528653472661972, -0.024961641058325768, 0.019405486062169075, 0.0007950193830765784, 0.0034537797328084707, 0.008382130414247513, 0.01863912120461464, -0.024510033428668976, 0.010770182125270367, 0.01447884738445282, 0.03257056325674057, 0.004433976020663977, 0.00724626611918211, -0.028629250824451447, -0.019473912194371223, -0.01608000509440899, 0.006842555478215218, 0.021307718008756638, 0.011981314048171043, 0.021581418812274933, -0.0026241198647767305, 0.020555036142468452, -0.003852358553558588, 0.003197183832526207, -0.01316507626324892, -0.016244227066636086, -0.013192446902394295, -0.005730640143156052, -0.0013437067391350865, 9.077077265828848e-05, -0.051401276141405106, -0.0024496347177773714, -0.025659581646323204, -0.0155052300542593, -0.015587341040372849, 0.0057101123966276646, -0.026261726394295692, -0.024058423936367035, -0.003147575305774808, -0.003296400886029005, 0.004546877928078175, -0.018734917044639587, 0.019829725846648216, -0.016819000244140625, -0.02634383738040924, 0.008409500122070312, -0.001256464165635407, -0.00515586556866765, 0.006113823037594557, -0.01476623397320509, 0.017667477950453758, 0.009100598283112049, 0.01190604642033577, 0.027301795780658722, 0.034924402832984924, 0.00316297123208642, -0.008361602202057838, 0.018775971606373787, -0.012603987008333206, 0.031147312372922897, 0.012747680768370628, 0.013315612450242043, 0.023675240576267242, 0.007198368199169636, 0.011071254499256611, 0.004153430927544832, 0.007909993641078472, 0.017694847658276558, 0.03867412358522415, 0.028191328048706055, -0.0069828275591135025, -0.014355680905282497, -0.0018286729464307427, -0.016298966482281685, 0.020513981580734253, -0.024989012628793716, 0.014465161599218845, 0.00633962731808424, 0.0054295677691698074, -0.022457266226410866, -0.019378116354346275, -0.01805066131055355, 0.015669452026486397, 0.01215922087430954, -0.004755575675517321, 0.0004054213932249695, -0.01215237844735384, 0.022101452574133873, 0.0013052173890173435, 0.012610829435288906, -0.004721363075077534, -0.00799894705414772, 0.0004652937641367316, -0.011858148500323296, 0.00233331136405468, 0.012692940421402454, -0.004851371515542269, -0.01869386062026024, -0.03993315249681473, 0.016230540350079536, -0.0033579838927835226, 0.01134495623409748, 0.0363476537168026, -0.018844397738575935, 0.01524521317332983, -0.023552075028419495, 0.0006958023295737803, -0.009730113670229912, 0.01707901805639267, 0.01473886426538229, -0.010517007671296597, -0.01955602318048477, 0.03139364346861839, 0.009716428816318512, 0.053098227828741074, 0.016873741522431374, -0.017434831708669662, 0.0056074741296470165, -0.029614578932523727, 0.002973090158775449, -0.007656819187104702, -0.003770248033106327, 0.021417198702692986, -0.01242608018219471, -0.0018149877432733774, -0.007766300346702337, 0.011960786767303944, 0.024482661858201027, 0.0257964339107275, 0.0069280872121453285, -0.01762642152607441, 0.0014018685324117541, 0.007554180920124054, -0.01425988506525755, -0.023620501160621643, -0.015354693867266178, -0.01753062568604946, -0.014273569919168949, -0.02121192216873169, -0.0023521282710134983, 0.002682281658053398, 0.0006915257545188069, 0.015341009013354778, 0.0028567668050527573, -0.005131916608661413, 0.0206645168364048, 0.016901111230254173, 0.0007398512680083513, -0.022375155240297318, -0.0284650307148695, 0.03829094022512436, 0.006869925651699305, 0.0037907755468040705, 0.0116597143933177, -0.0056040529161691666, -0.005597210023552179, 0.008553193882107735, 0.011844462715089321, -0.0058230143040418625, 0.009750640951097012, 0.007184682879596949, -0.011563918553292751, -0.02437318116426468, -0.019843410700559616, 0.03300848603248596, -0.010181722231209278, -0.01268609706312418, -0.024687940254807472, 0.015710506588220596, -0.003718928899616003, -0.016791630536317825, 0.0009451279183849692, 0.04048055782914162, 0.01594315469264984, -0.007909993641078472, -0.0006496150745078921, 0.012870846316218376, -0.012248174287378788, 0.0013898940524086356, -0.02680913172662258, -0.014205144718289375, -0.025577470660209656, -0.004984801635146141, 0.010968616232275963, 0.025207974016666412, -0.019514966756105423, 0.044777680188417435, 0.005261925049126148, -0.021855121478438377, -0.0025950390845537186, -0.03366537019610405, -0.002890979638323188, 0.027712348848581314, 0.013295085169374943, 0.0155052300542593, 0.0045024012215435505, -0.026015395298600197, -0.007677346933633089, -0.017325349152088165, -0.016189485788345337, -0.018338048830628395, -0.025194289162755013, 0.00025488517712801695, -0.0042115929536521435, 0.00010279870184604079, -0.027000723406672478, 0.03254319354891777, 0.007273636292666197, 0.013726165518164635, -0.013602999970316887, -0.01084544975310564, -0.03361063078045845, -0.0017893281765282154, -0.004786367528140545, 0.011721297167241573, -0.007212053053081036, 0.025084808468818665, 0.002480426337569952, 0.01906335912644863, 0.018858082592487335, 0.018515953794121742, -0.00032202774309553206, 0.006558589171618223, -0.018515953794121742, -0.032324232161045074, 0.015683136880397797, -0.006647542584687471, 0.01265188492834568, -0.006791235879063606, 0.017380090430378914, -0.015354693867266178, -0.00026942562544718385, 0.006219882518053055, 0.03325481712818146, -0.0044989800080657005, -0.013691953383386135, 0.010475952178239822, 0.017311664298176765, 0.007814197801053524, 0.0030534903053194284, -0.014889400452375412, -0.03473281115293503, 0.016860056668519974, -0.0005491150659509003, -0.06672859936952591, -0.0030090135987848043, 0.020336074754595757, 0.0363202840089798, -0.005888018757104874, 0.003722350113093853, -0.005046384409070015, -0.0206234622746706, 0.005474044010043144, -0.041630107909440994, -0.007519968319684267, -0.012275543995201588, -0.005060069728642702, -0.029258767142891884, 0.01293242909014225, -0.002988486085087061, -0.018899137154221535, -0.00021938943245913833, -0.003388775512576103, -0.05632791668176651, -0.022074082866311073, 0.006493584718555212, 0.011160207912325859, -0.00018036547407973558, 0.019514966756105423, -0.002384630497545004, -0.017352720722556114, 0.030791498720645905, -0.03155786544084549, -0.00800578948110342, -0.0005533916410058737, -0.019980261102318764, 0.006216461304575205, -0.01267241220921278, 0.025988025590777397, -0.012624514289200306, 0.013117178343236446, 0.02997039258480072, 0.012542404234409332, 0.01913178525865078, 0.029587209224700928, 0.02991565130650997, -0.014533587731420994, 0.03153049573302269, 0.016340021044015884, 0.016326336190104485, 0.009045857936143875, 0.00659280177205801, -0.004854792729020119, -0.020883478224277496, -0.002004868583753705, -0.007170998025685549, -0.024947956204414368, -0.011598131619393826, 0.012070267461240292, 0.005265346262603998, 0.0023983155842870474, 0.02530376985669136, 0.03317270800471306, 0.00932640302926302, 0.015601025894284248, 0.008683202788233757, 0.0066954405046999454, 0.0015027961926534772, 0.014465161599218845, 0.004013158846646547, 0.007779985200613737, -0.01218659058213234, 0.018283307552337646, -0.022320415824651718, 0.020965589210391045, 0.02221093513071537, 0.000987038598395884, 0.00906638614833355, 0.008922692388296127, -0.018940193578600883, -0.011570760980248451, 0.008909006603062153, 0.01057174801826477, 0.029258767142891884, 0.0008681492181494832, -0.003547864966094494, -0.028738731518387794, -0.012138692662119865, 0.009470096789300442, 0.020459240302443504, -0.01193341612815857, -0.023907888680696487, -0.02695966698229313, -0.005361142102628946, 0.003020988078787923, -0.014711493626236916, -0.01056490559130907, -0.03202315792441368, 0.021827751770615578, -0.009689058177173138, 0.006281465757638216, 0.010619645938277245, 0.013014540076255798, -0.010174879804253578, -0.008806368336081505, -0.0070067765191197395, 0.0029576944652944803, -0.028711361810564995, -0.019802354276180267, -0.018392788246273994, 0.021923547610640526, 0.014150404371321201, 0.03465069830417633, 0.007170998025685549, -0.0068459766916930676, -0.014533587731420994, 0.005990657024085522, 0.0003487564972601831, -0.00982590951025486, 0.012453450821340084, 0.002148562343791127, 0.011782879941165447, 0.0035341798793524504, 0.036895059049129486, 0.002755839144811034, 0.010359629057347775, -0.027315480634570122, 0.01803697645664215, -0.007930521853268147, 0.008416342549026012, 0.007040989585220814, -0.06497690826654434, -0.01605263538658619, 0.0006000065477564931, -0.010660701431334019, -0.0022905452642589808, -0.011734982021152973, -0.006726231891661882, 0.0008767023682594299, -0.00773893017321825, 0.03831830993294716, 0.025577470660209656, 0.004782946314662695, -0.023483648896217346, 0.012597144581377506, 0.011639186181128025, 0.01862543635070324, -0.01602526381611824, 0.014123033732175827, -0.02793131023645401, 0.025563785806298256, 0.01859806478023529, 0.02073294296860695, 0.00492321839556098, 0.002737022005021572, 0.01367826759815216, -0.00875847041606903, 0.011529705487191677, -0.017202183604240417, -0.013329297304153442, -0.005248239729553461, -0.020404499024152756, -0.006791235879063606, -0.02077399753034115, -0.00908691342920065, -0.013917757198214531, 0.0070136189460754395, 0.023894203826785088, 0.00797157734632492, 0.012528718449175358, -0.0018936771666631103, -0.016257911920547485, -0.007478912826627493, -0.025618527084589005, 0.03005250357091427, 0.022046713158488274, 0.01499888114631176, 0.023593131452798843, 0.013117178343236446, -0.028656620532274246, -0.05364563316106796, -0.007294164039194584, 0.0005033554625697434, 0.01702427677810192, 0.03733298182487488, 0.005966708064079285, -0.029067175462841988, 0.0058469632640480995, 0.012022369541227818, -0.012070267461240292, -0.027726033702492714, 0.02275833860039711, 0.023593131452798843, -0.004276596941053867, -0.015067306347191334, 0.0007809066446498036, -0.0015669451095163822, 0.010161194950342178, -0.02887558378279209, -0.006777551025152206, 0.0045810905285179615, -0.005963286850601435, -0.018009604886174202, 0.03555391728878021, -0.00465635908767581, 0.013082965277135372, 0.0014993749791756272, -0.0103254159912467, 0.009620632976293564, -0.00849845353513956, -0.026535429060459137, 0.019323376938700676, -0.004646094981580973, 0.04707678034901619, -0.01264504250138998, -0.0257964339107275, 0.023428909480571747, 0.007321534212678671, 0.02073294296860695, -0.030161984264850616, -0.023182576522231102, 0.04902006685733795, 0.0007197512895800173, -0.0021690900903195143, -0.00908007100224495, 0.001269293949007988, 0.012138692662119865, 0.009778011590242386, -0.006065925117582083, -0.006948614958673716, 0.01081808004528284, -0.017489571124315262, 0.011201263405382633, -0.0027780774980783463, 0.006671491544693708, -0.008991117589175701, -0.0012701493687927723, -0.020363444462418556, -0.03404855355620384, -0.009162181057035923, 0.025604842230677605, -0.044285017997026443, -0.00774577260017395, -0.00468030758202076, -0.008813210763037205, 0.017667477950453758, 0.006243831478059292, 0.0021622474305331707, -0.010304887779057026, 0.03571813926100731, -0.051428645849227905, 0.0016721494030207396, -0.0005858938093297184, 0.01603894867002964, -0.008553193882107735, 0.0057477462105453014, -0.011604974046349525, -0.004803473595529795, 0.018885452300310135, -0.0037326139863580465, -0.014191459864377975, 0.006021448411047459, 0.014451476745307446, 0.011180735193192959, -0.005569839850068092, 0.013650897890329361, 0.025550100952386856, -0.0005255937576293945, -0.001948417630046606, -0.009983288124203682, -0.03322744742035866, 0.013719323091208935, 0.008799525909125805, 0.0045502991415560246, 0.0181464571505785, -0.00849161110818386, 0.024660568684339523, -0.021102439612150192, 0.0021690900903195143, -0.005491150543093681, -0.02122560702264309, -0.07023198902606964, 0.014697808772325516, -0.009463254362344742, -0.031202051788568497, 0.014848344959318638, -0.010995985940098763, -0.02117086574435234, -0.019843410700559616, 0.001946707023307681, -0.004348443821072578, -0.0026224092580378056, -0.013390881009399891, 0.02434581145644188, 0.00044305543997325003, 0.021950917318463326, 0.009141653776168823, -0.006257516797631979, -0.025618527084589005, -0.018789656460285187, -0.028711361810564995, -0.018420157954096794, -0.03363800048828125, 0.012008684687316418, -0.010975458659231663, -0.03982366994023323, -0.019309690222144127, 0.004752154462039471, -0.02277202345430851, -0.018351733684539795, -0.00822475180029869, 0.034349627792835236, 0.040042635053396225, -0.012001842260360718, -0.00271136243827641, 0.009675373323261738, -0.003917363006621599, 0.014670438133180141, -0.0042868610471487045, 0.021020330488681793, -0.009107440710067749, 0.0026001709047704935, -0.013767221011221409, -0.003907098900526762, -0.03653924539685249, 0.00036329691647551954, -0.0018560431199148297, -0.015601025894284248, 0.018775971606373787, 0.029231395572423935, -0.015341009013354778, 0.03418540582060814, 0.010120139457285404, -0.018734917044639587, -0.029724059626460075, 0.015450489707291126, 0.01264504250138998, -0.026727020740509033, 0.021335087716579437, 0.026165930554270744, 0.01399302575737238, -0.014095664024353027, 0.018296992406249046, -0.006459372118115425, 0.009914862923324108, 0.018858082592487335, -0.04184906929731369, -0.031284160912036896, -0.006045397371053696, -0.008799525909125805, 0.007855253294110298, -0.008135798387229443, -0.004622146021574736, 0.018953878432512283, 0.0025916178710758686, -0.005562997423112392, -0.020815053954720497, 0.013479833491146564, -0.022060398012399673, -0.003137311665341258, 0.0038557799998670816, -0.019966576248407364, -0.0006243831594474614, -0.0006149746477603912, 0.01133811380714178, 0.0012752811890095472, 0.003978945780545473, 0.023552075028419495, -0.020349759608507156, -0.04039844498038292, -0.0055048358626663685, 0.03322744742035866, -0.03210527077317238, -0.019241265952587128, -0.001129876938648522, -0.017147444188594818, -0.016353707760572433, -0.04023422673344612, 0.013520888984203339, -0.02590591460466385, 0.02429107204079628, -0.014643068425357342, 0.015819987282156944, -0.029231395572423935, 0.015614710748195648, 0.005706691183149815, -0.020527666434645653, -0.006763865705579519, 0.2741401195526123, -0.021896176040172577, 0.008902164176106453, 0.011789722368121147, -0.0018628856632858515, -0.0007351470412686467, 0.008217908442020416, 0.005347456783056259, -0.023032041266560555, 0.0032485031988471746, 0.0018389367032796144, -0.011782879941165447, -0.002102375030517578, -0.008690045215189457, -0.0004131192690692842, -0.0028071582783013582, -0.017872754484415054, -0.017694847658276558, -0.019528653472661972, 0.0067467596381902695, 0.033419039100408554, 0.0012350812321528792, -0.006736495532095432, -0.018420157954096794, -0.007191525772213936, 0.001377919572405517, -0.012590301223099232, 0.02163616009056568, 0.014643068425357342, -0.002687413478270173, -0.04412079602479935, 0.031749457120895386, 0.0006680044461973011, -0.01595683954656124, -0.020336074754595757, -0.011618658900260925, 0.03560865670442581, 0.014150404371321201, 0.030079873278737068, -0.004871899262070656, -0.02271728403866291, -0.007957891561090946, -0.004601618275046349, -0.008176853880286217, -0.01597052440047264, 0.01705164834856987, 0.007793670520186424, -0.004191065207123756, 0.012857161462306976, 0.0012744258856400847, -0.02114349603652954, -0.010236462578177452, 0.004108954221010208, 0.010886505246162415, -0.012562931515276432, -0.003315218025818467, 0.035937100648880005, 0.0007813342963345349, 0.03270741552114487, 0.0057956441305577755, -0.004933482501655817, 0.03393907472491264, -0.019829725846648216, 0.003951575607061386, -0.036895059049129486, 0.02119823545217514, -0.028574511408805847, -5.249523019301705e-05, 0.020472925156354904, -0.006384104024618864, -0.0013163365656509995, -0.00957957748323679, 0.0007856108713895082, -0.005378248635679483, 0.00399947352707386, -0.014615697786211967, 0.01869386062026024, 0.007321534212678671, 0.02679544687271118, 0.04902006685733795, 0.012241330929100513, 0.012727152556180954, -0.013308770023286343, -0.01647687330842018, 0.014369365759193897, -0.029587209224700928, 0.019542338326573372, 0.001777353696525097, -0.0181464571505785, -0.0010845450451597571, 0.003869465086609125, -0.01473886426538229, 0.0018868346232920885, -0.010893347673118114, -0.003910520114004612, -0.017475886270403862, -0.006353312637656927, 0.01707901805639267, -0.019473912194371223, -0.003421277739107609, -0.008464240469038486, 0.021389827132225037, 0.0258101187646389, 0.022443581372499466, -0.02374366670846939, -0.014451476745307446, 0.00199973676353693, -0.004847950302064419, 0.012131850235164165, -0.03448648005723953, 0.003869465086609125, -0.03273478522896767, 0.0033853542990982533, -0.013657740317285061, -0.0056656356900930405, 0.01805066131055355, -0.02594696916639805, -0.014396736398339272, 0.0017140600830316544, -0.01595683954656124, 0.024646883830428123, -0.015368378721177578, -0.006312257144600153, -0.0030278307385742664, -0.005675899796187878, -0.011043883860111237, 0.017393775284290314, -0.009689058177173138, -0.010202249512076378, -0.030764129012823105, 0.018242252990603447, -0.009223764762282372, 0.04234173148870468, -0.002577932784333825, 0.009162181057035923, -0.019528653472661972, -0.007697874680161476, -0.024728994816541672, -0.018844397738575935, 0.007793670520186424, -0.004276596941053867, -0.003968682140111923, 0.01499888114631176, -0.012193433940410614, -0.028793472796678543, -0.01646318845450878, 0.01921389438211918, 0.008067372255027294, 0.0006889597862027586, 0.006411474198102951, -0.02741127647459507, -0.014560957439243793, -0.007903151214122772, 0.01524521317332983, 0.02013079822063446, -0.03259793296456337, -0.018365418538451195, -0.027657607570290565, 0.0154915452003479, 0.010783866979181767, -0.030189353972673416, -0.016777945682406425, 0.020883478224277496, -0.03774353489279747, -0.014793604612350464, -0.022512007504701614, -0.17495045065879822, 0.021430883556604385, 0.02893032319843769, -0.011030199006199837, 0.029696689918637276, -0.002656622091308236, -0.007800512947142124, -0.015368378721177578, -0.001216264208778739, -0.008471083827316761, 0.02268991246819496, 0.012836633250117302, -0.008183696307241917, -0.030928349122405052, -0.004649516195058823, -0.0015122047625482082, -0.02539956569671631, -0.0029251924715936184, 0.04234173148870468, 0.01865280605852604, 0.042697545140981674, -0.021896176040172577, 0.01713375747203827, 0.006377261597663164, 0.0018201196799054742, 0.011420224793255329, -0.009983288124203682, 0.005104546435177326, 0.006688597612082958, -0.021471938118338585, -0.003523916006088257, -0.012795578688383102, 0.03708665072917938, -0.00750628300011158, 0.01661372371017933, -0.0009237449849024415, 0.013904072344303131, -0.0009801960550248623, -0.005056648515164852, 0.006284886971116066, -0.004960852675139904, 0.046283043920993805, 0.00725995097309351, 0.010188564658164978, 0.0007766300113871694, 0.012385024689137936, 0.009531679563224316, -0.01972024515271187, 0.010879662819206715, -0.014875715598464012, -0.008375287987291813, -0.017229553312063217, -0.013117178343236446, -0.009442726150155067, 0.03930363804101944, 0.006777551025152206, 0.0036402393598109484, -0.015163102187216282, 0.004180801101028919, -0.019747614860534668, -0.0033289031125605106, 0.01915915496647358, 0.0258511733263731, -0.007841568440198898, -0.012104480527341366, -0.02542693540453911, -0.00799210462719202, 0.030764129012823105, -0.016901111230254173, 0.0067433384247124195, 0.008635304868221283, 0.0019809198565781116, -0.008436870761215687, -0.004796631168574095, 0.005853806156665087, 0.006948614958673716, -0.027192315086722374, 0.019022302702069283, 0.0363476537168026, -0.010421211831271648, -0.00931271817535162, 0.03153049573302269, 0.005255082622170448, -0.005857227370142937, -0.0055869463831186295, -0.0034554903395473957, -0.008854266256093979, -0.016422132030129433, -0.017256924882531166, -0.010879662819206715, 0.02895769476890564, -0.009175866842269897, -0.013124020770192146, -0.019487597048282623, -0.011871833354234695, 0.0023418646305799484, 0.005908546503633261, 0.007177840452641249, -0.02690492756664753, 0.011858148500323296, 0.011495492421090603, -0.007711559999734163, -0.018844397738575935, 0.013459306210279465, 0.024660568684339523, -0.0027421540580689907, -0.024578457698225975, 0.017407460138201714, 0.038564641028642654, -0.03552654758095741, -0.013917757198214531, -0.004837686661630869, -0.000625666172709316, 0.0044271331280469894, 0.01758536696434021, 0.028136586770415306, -0.005333771929144859, 0.00848476868122816, 0.00960010476410389, -0.0019364431500434875, 0.005511678289622068, -0.028656620532274246, 0.009121126495301723, 0.021102439612150192, -0.009709585458040237, -0.015861043706536293, -0.04450397938489914, 5.800134658784373e-06, -0.002945719985291362, 0.0206782016903162, -0.017380090430378914, 0.02117086574435234, -0.004403184168040752, 0.004611882381141186, -0.0002565958129707724, 0.012549246661365032, -0.013254029676318169, -0.04436712712049484, -0.007670504506677389, 0.012042896822094917, -0.011030199006199837, 0.021841436624526978, 0.012699782848358154, 0.0038352522533386946, 0.011803408153355122, 0.01918652467429638, 0.008211066015064716, -0.0031492861453443766, -0.01644950360059738, -0.021047700196504593, -0.014383051544427872, -0.008997960016131401, -0.020281333476305008, 0.012987169437110424, 0.013274556957185268, -0.0016490558627992868, 0.04923902824521065, 0.006106980610638857, -0.00959326233714819, -0.0022221198305487633, -0.018994932994246483, 0.003944733180105686, -0.030134612694382668, -0.021348772570490837, 0.019241265952587128, -0.02167721465229988, 0.003164681838825345, -0.008142640814185143, -0.00424580555409193, -0.002990196691825986, -0.027110204100608826, -0.01705164834856987, 0.016230540350079536, 0.02223830483853817, -0.025755377486348152, 0.0016687281895428896, -0.028766103088855743, -0.003674452193081379, -0.014300940558314323, -0.01524521317332983, 0.022977299988269806, 0.043135467916727066, -0.020568720996379852, 0.005734061356633902, -0.036949798464775085, -0.012556089088320732, -0.014670438133180141, -0.004433976020663977, -0.035417065024375916, 0.008874794468283653, 0.024906901642680168, 0.017804328352212906, 0.003722350113093853, -0.028218697756528854, 0.03355589136481285, 0.0155189149081707, -0.006100138183683157, 0.025495361536741257, -0.00540561880916357, 0.03191367909312248, -0.03161260485649109, 0.006380682811141014, -0.010633330792188644, -0.029860911890864372, 0.03815408796072006, -0.00907322857528925, -0.013219816610217094, -0.021499307826161385, -0.014725178480148315, -0.021430883556604385, 0.016750575974583626, 0.008060529828071594, 0.0017722217598930001, -0.006411474198102951, 0.005778538063168526, -0.06048818677663803, -0.011502335779368877, 0.009791696444153786, 0.00099815777502954, -0.00983275193721056, 0.0020818475168198347, -0.004601618275046349, 0.00044604905997402966, 0.00984643679112196, -0.017229553312063217, 0.02218356356024742, -0.03826357051730156, -0.029806170612573624, -0.09650740027427673, 0.02945035696029663, 0.003547864966094494, -0.012063425034284592, -0.015053621493279934, -0.004016580060124397, 0.010256990790367126, -0.010147509165108204, 0.02278570830821991, 0.006750180851668119, -0.020787682384252548, -0.006137771997600794, 0.001592604792676866, -0.012535560876131058, -0.016189485788345337, -0.0025659583043307066, 0.02680913172662258, 0.01523152831941843, -0.014451476745307446, 0.0015087834326550364, 0.017270609736442566, -0.014465161599218845, -0.003286137245595455, 0.022429896518588066, -0.03303585574030876, 0.023620501160621643, 0.0058401208370924, 0.018981248140335083, 0.0030757286585867405, -0.03139364346861839, -0.007608921267092228, -0.01646318845450878, -0.007047832012176514, 0.006408052984625101, 0.03834567964076996, -0.0005910256877541542, -0.004789788741618395, 0.02017185278236866, 0.024400552734732628, 0.0233194287866354, -0.0022460687905550003, -0.003602605313062668, 0.00607276801019907, -0.015683136880397797, -0.01865280605852604, -0.003599184099584818, -0.0042594908736646175, 0.02275833860039711, 0.0009186130482703447, 0.04395657405257225, 0.02843765914440155, 0.021471938118338585, -0.013801434077322483, -0.019446542486548424, 0.01059227529913187, -0.04302598908543587, 0.0044750310480594635, 0.025769062340259552, -0.004977958742529154, -0.0284650307148695, 0.028355548158288002, 0.008286334574222565, 0.0027147838845849037, 0.006387525238096714, 0.004755575675517321, -0.004509244114160538, -0.025686953216791153, -0.002153694164007902, 0.027178630232810974, -0.03292637690901756, -0.04398394376039505, -0.01662740856409073, 0.002834528451785445, 0.0016482004430145025, 0.017900124192237854, -0.0013437067391350865, -0.005193499382585287, 0.004988222848623991, -0.02019922249019146, 0.03785301744937897, 0.0029799328185617924, 0.002535166684538126, -0.028191328048706055, 0.009148496203124523, 0.02227935940027237, 0.009216922335326672, 0.005973550956696272, -0.0016533323796465993, -0.01866649091243744, 0.018967563286423683, -0.010380156338214874, 0.012946114875376225, 0.00775261502712965, 0.019802354276180267, 0.017366405576467514, 0.02024027891457081, 0.006674912758171558, 0.006791235879063606, 0.04034370556473732, -0.0025984602980315685, 0.016709519550204277, -0.006055661477148533, 0.01317876111716032, -0.022115139290690422, 0.0041602738201618195, 0.008347917348146439, -0.02732916548848152, -0.04923902824521065, 0.0033066647592931986, 0.01967918872833252, 0.0007873215363360941, 0.014068293385207653, -0.006538061425089836, 0.018926508724689484, -0.019296005368232727, 0.00657227449119091, -0.015546285547316074, -0.03465069830417633, -0.017804328352212906, 0.026740705594420433, 0.02638489380478859, 0.016298966482281685, 0.039522599428892136, -0.007102572359144688, 0.013650897890329361, -0.014054608531296253, 0.022046713158488274, -0.006007763557136059, 0.01710638776421547, 0.020842423662543297, -0.010708599351346493, 0.020924534648656845, -0.013815118931233883, -0.03139364346861839, -0.014027237892150879, 0.014779919758439064, -0.0010691492352634668, 0.009552206844091415, -0.025166917592287064, 0.0777314305305481, 0.01501256600022316, -0.006182248704135418, -0.012111322954297066, -0.0037634053733199835, -0.0026395157910883427, 0.006366997491568327, 0.004122639540582895, -0.012302914634346962, -0.011071254499256611, -0.011960786767303944, -0.007875781506299973, 0.004061056766659021, -0.014068293385207653, -0.014957825653254986, -0.013390881009399891, -0.009613790549337864, 0.03530758619308472, -0.015122046694159508, -0.000351322436472401, 0.03224211931228638, 0.0010041450150310993, 0.021376142278313637, 0.003498256439343095, -0.0016909664263948798, 0.0017619580030441284, 0.028191328048706055, -0.01057174801826477, -0.0155189149081707, -0.015217842534184456, 0.05082650110125542, 0.024386867880821228, -0.024400552734732628, -0.020253963768482208, -0.01523152831941843, 0.017859069630503654, 0.0008553194347769022, 0.018324362114071846, 0.038592010736465454, -0.006473057437688112, 0.02374366670846939, -0.0007608066080138087, -0.018228568136692047, -0.014341996051371098, 0.03054516576230526, 0.0030586221255362034, -0.002001447370275855, 0.0116802416741848, 0.008580564521253109], "8644d86d-7af8-419e-8e32-3d2a92d15039": [-0.002941305050626397, -0.0024173748679459095, 0.02469767816364765, -0.011692267842590809, -0.0025268031749874353, 0.010750520043075085, -0.008190556429326534, -0.0006748089799657464, -0.02387530542910099, -0.018330929800868034, 0.007905378937721252, 0.012255990877747536, -0.016155624762177467, -0.0387045256793499, -0.007892115041613579, -0.02120923064649105, 0.021938754245638847, -0.04095941409468651, 0.0237691942602396, -0.02484358288347721, 0.009092512540519238, -0.0002567838819231838, -0.019816504791378975, -0.00610809912905097, -0.02172652818262577, 0.010796943679451942, 0.03395599126815796, -0.027005624026060104, 0.015174083411693573, -0.012209566310048103, 0.030639976263046265, 0.00941748172044754, 0.0038266810588538647, -0.01006742101162672, 0.00014207050844561309, -0.023450857028365135, -0.008024755865335464, 0.017707519233226776, 0.007049847394227982, -0.017176955938339233, 0.021938754245638847, 1.2538680493889842e-05, 0.012514639645814896, -0.0064363847486674786, -0.006695033982396126, 0.003982533700764179, -0.010796943679451942, 0.003820049110800028, 0.005255883559584618, 0.020599083974957466, 0.019100245088338852, 0.0009856853866949677, -0.01953795924782753, -0.01687188260257244, -0.005614012945443392, 0.002297998173162341, -0.006963631138205528, 0.04660990461707115, -0.014842482283711433, -0.0188747551292181, 0.011042329482734203, 0.0014847456477582455, -0.027456602081656456, -0.024047739803791046, -0.015266931615769863, 0.014311919920146465, -0.007295232266187668, 0.03170110285282135, -0.019843032583594322, -0.007136063650250435, 0.01891454868018627, 0.011911124922335148, 0.01126781851053238, 0.014736369252204895, 0.04767102748155594, -0.002364318585023284, -0.006512653082609177, -0.004353927448391914, 0.02195201814174652, 0.006496072746813297, 0.001861942233517766, 0.006210895720869303, 0.009012928232550621, 0.0028617207426577806, 8.984327723737806e-05, 0.013224266469478607, 0.0012318994849920273, 0.020002201199531555, -0.0070034232921898365, -0.024498717859387398, -0.009928148239850998, 0.0032082442194223404, -0.0012501375749707222, -0.018768643960356712, -0.004768429324030876, 0.003468551440164447, 0.001987950876355171, 0.040349267423152924, 0.009536858648061752, -0.05287053808569908, -0.002871668664738536, 0.02743007428944111, -0.024962959811091423, 0.01709737256169319, -0.029340097680687904, 0.00556095689535141, 0.02573227509856224, -0.034009046852588654, -0.011314242146909237, -0.004383771680295467, -0.016858618706464767, 0.03952689468860626, -0.010558190755546093, -0.010372494347393513, -0.007812530733644962, -0.03878410905599594, 0.022456051781773567, -0.028464671224355698, -0.020068520680069923, -0.026196517050266266, 0.012813081033527851, -0.004403667524456978, 0.014431295916438103, 0.00906598474830389, 0.02691277489066124, -0.0057168095372617245, -0.012335575185716152, 0.01623520813882351, 0.004284291062504053, -0.011984077282249928, 0.016951467841863632, -0.00082029914483428, -0.008402781561017036, 0.035017114132642746, 0.010790311731398106, -0.005206143017858267, -0.01786668784916401, 0.009702659212052822, -0.024883374571800232, -0.024273227900266647, 0.007659994065761566, 0.009483802132308483, -0.01138056255877018, -0.019816504791378975, -0.011864700354635715, 0.0020857732743024826, 0.013768093660473824, -0.021567359566688538, 0.042657215148210526, 0.0032264823094010353, 0.003155187936499715, -0.002619651611894369, 0.013980317860841751, -0.004072065930813551, -0.007686522323638201, -0.01608930341899395, 0.000874598918017, -0.00171272165607661, -0.010226589627563953, 0.008164028637111187, 0.020479707047343254, 0.03281528130173683, 0.009331265464425087, -0.015505684539675713, -0.0130518339574337, 0.034009046852588654, -0.021182702854275703, 0.010153637267649174, 0.00037864744081161916, 0.009530226700007915, -0.0026229675859212875, 0.0007170881726779044, -0.029976774007081985, 0.01171879656612873, -0.012580960057675838, 0.018636003136634827, -0.009516962803900242, 0.0025483572389930487, -0.011758588254451752, 0.010896424762904644, -0.01656680926680565, -0.006830990314483643, 0.003906265366822481, 0.03944731131196022, 0.0012095164274796844, -0.030533863231539726, 0.018118703737854958, -0.006137943360954523, -0.01090305671095848, -0.011407090350985527, 0.00906598474830389, 0.042391933500766754, 0.03247041627764702, 0.011108649894595146, -0.6027188301086426, -0.026408741250634193, -0.008064547553658485, 0.014709841459989548, 0.01551894936710596, 0.018251344561576843, 0.005929034203290939, 0.02891564927995205, -0.029260514304041862, 0.02546699345111847, -0.020519498735666275, 0.03581295907497406, -0.012680440209805965, -0.019405318424105644, 0.006950366776436567, -0.04544266685843468, 0.010054157115519047, -0.014736369252204895, 0.006515969056636095, 0.020333802327513695, -0.015081235207617283, 0.0221377145498991, -0.015664853155612946, -0.012667176313698292, 0.016818827018141747, -0.022257091477513313, 0.00650602113455534, -0.00741460919380188, 0.010034260340034962, 0.007096271496266127, -0.04188789799809456, 0.001795621938072145, 0.020400123670697212, 0.018344193696975708, 0.061492178589105606, -0.023119254037737846, -0.011745324358344078, 0.018596211448311806, -0.00965623464435339, 0.03788215294480324, -0.010558190755546093, -0.012852873653173447, 0.03013594262301922, -0.0019249465549364686, 0.014192542992532253, -0.025665953755378723, 0.0013827781658619642, -0.03048080764710903, -0.01252790354192257, 0.01262738462537527, -0.008077812381088734, 0.002314578276127577, -0.010677567683160305, 0.008953239768743515, -0.0051199267618358135, -0.015956662595272064, 0.019338998943567276, -0.00639659259468317, -0.00552448071539402, -0.018967604264616966, -0.00743450503796339, -0.0016339662251994014, -0.003301092656329274, -0.02666075900197029, -0.0056272768415510654, 0.016991259530186653, 0.00033160147722810507, -0.005206143017858267, 0.013443123549222946, -0.010730624198913574, -0.0014540724223479629, -0.008309933356940746, 0.0004895266611129045, -0.019140036776661873, 0.02020116150379181, 0.04915660247206688, 0.013535972684621811, 0.001286613754928112, -0.005415052175521851, 1.796606375137344e-05, -0.00758040975779295, 0.006950366776436567, 0.014948594383895397, -0.022734597325325012, 0.015572004951536655, 0.027483129873871803, -0.03843924403190613, -0.007281968370079994, -0.0006234108004719019, -0.003763676853850484, -0.003846577135846019, 0.009463906288146973, -0.0049309139139950275, -0.019033925607800484, 0.022124450653791428, 0.00019906451052520424, 0.007023319136351347, 0.0013943841913715005, 0.01635458506643772, -0.0008086931193247437, -0.009364425204694271, -0.005289043765515089, -0.00527246342971921, 0.01506797131150961, 0.02024095319211483, 0.0029810972046107054, -0.040879830718040466, -0.006356800440698862, 0.028703423216938972, -0.004032273776829243, -0.0007067256374284625, -0.001654691412113607, 0.004479935858398676, -0.003375703003257513, 0.031303178519010544, -0.034168217331171036, -0.004728637170046568, 0.017972800880670547, 0.03514975681900978, -0.0181717611849308, 0.01049187034368515, -0.006399908568710089, 0.010889792814850807, -0.008999664336442947, 0.008057915605604649, 0.00024310532899107784, 0.007335024420171976, -0.021965282037854195, 0.003657564288005233, 0.0123621029779315, 0.003999113570898771, 0.014895537868142128, 0.010591351427137852, -0.0022449418902397156, 0.014245599508285522, 0.0016704424051567912, 0.019365526735782623, 0.019962409511208534, 0.02079804427921772, -0.02453850954771042, -0.0028119804337620735, -0.00527246342971921, 0.018158497288823128, 0.01520061120390892, 0.019338998943567276, -0.02127555012702942, -0.029393155127763748, -0.021368399262428284, 0.010505135171115398, 0.00949043408036232, 0.022044865414500237, -0.020665403455495834, -0.013887469656765461, 0.03164804354310036, -0.02009505033493042, 0.0028302185237407684, -0.012832976877689362, -0.02662096731364727, -0.018768643960356712, -0.019140036776661873, -0.0073416568338871, 0.01742897368967533, -0.04085330292582512, 0.020002201199531555, -0.018251344561576843, -0.030666504055261612, 0.011904492974281311, 0.006890678778290749, 0.004019009880721569, -0.02713826484978199, 0.006751406006515026, -0.01116170547902584, -0.015293460339307785, -0.01047197449952364, 0.006452964618802071, -0.00040144502418115735, -0.01734938845038414, -0.0005711835692636669, -0.022628484293818474, 3.313424167572521e-05, 0.01081020850688219, -0.006403224542737007, 0.0022930242121219635, 0.024458924308419228, 0.010405654087662697, 0.022668275982141495, 0.03721895068883896, 0.03597212955355644, -0.011599419638514519, -0.015651589259505272, -0.02142145484685898, 0.022230563685297966, 0.010087316855788231, 0.009722555056214333, 0.008721118792891502, 0.021036798134446144, -0.004469987936317921, -3.259020741097629e-05, -0.0021670155692845583, 0.04326736181974411, 0.019418582320213318, 0.007719682529568672, 0.0038896852638572454, -0.016208680346608162, -0.0008580188150517642, -0.010922952555119991, 0.010611247271299362, -0.029684964567422867, 0.019882824271917343, 0.012859505601227283, -0.007109535858035088, -0.02899523265659809, -0.02476399764418602, -0.010929584503173828, 0.0021305393893271685, 0.011632579378783703, -0.01039902213960886, 0.009530226700007915, -0.022708069533109665, 0.01252790354192257, 0.010034260340034962, 0.001475626602768898, 0.0012617436004802585, -0.010578087531030178, -0.016924940049648285, 0.0014739686157554388, 0.019033925607800484, 0.014577200636267662, 0.005361995659768581, -0.02061234787106514, -0.02788105234503746, 0.004108542110770941, 0.00760030560195446, -0.012700336053967476, 0.012932457961142063, -0.007533985655754805, -0.0008012320613488555, -0.03477836400270462, 0.03050733543932438, 0.013781357556581497, 0.026926040649414062, -0.007116167806088924, -0.004131754394620657, -0.02825244516134262, 0.010531662963330746, -0.017508557066321373, 0.0522073358297348, 0.02127555012702942, -0.024962959811091423, 0.005358679685741663, -0.005431632045656443, 0.002656127791851759, -0.006618765648454428, 0.0066253975965082645, 0.01705757901072502, -0.01908698119223118, 0.014603729359805584, -0.004791641142219305, 0.02009505033493042, 0.02703215181827545, 0.020599083974957466, 0.01616888865828514, -0.014563936740159988, -0.00930473767220974, -0.008794071152806282, -0.007693154271692038, 0.012726864777505398, -0.030560392886400223, 0.005027078557759523, -0.017216749489307404, -0.0029529111925512552, -0.018039120361208916, -0.00012321067333687097, -0.003763676853850484, -0.010956112295389175, -0.0005570905050262809, 0.013980317860841751, 0.024737469851970673, 0.025665953755378723, -0.022217299789190292, -0.030268583446741104, -0.029260514304041862, 0.023742666468024254, 0.020307274535298347, 0.0056040650233626366, -0.006824358366429806, -0.011155073530972004, -0.010485238395631313, -0.005398471839725971, 0.02379572205245495, -0.01831766590476036, -0.019551223143935204, 0.017919743433594704, -0.009444010443985462, 0.009828668087720871, -0.004731953144073486, 0.020811308175325394, 0.013164578936994076, -0.004390403628349304, -0.015028178691864014, 0.013648716732859612, -0.004924281965941191, -0.00614457530900836, -0.0035879279021173716, 0.024565037339925766, 0.034168217331171036, 0.00331767275929451, -0.02899523265659809, 5.461061664391309e-05, -0.022376468405127525, -0.01594339869916439, -0.01608930341899395, 0.013303850777447224, -0.00018486782209947705, 0.011552995070815086, -0.0050138141959905624, 0.02788105234503746, 0.011964181438088417, -0.0035978760570287704, 0.017110636457800865, -0.004005745984613895, 0.003261300502344966, -0.04456723853945732, -0.004337347112596035, 0.03881063684821129, 0.046583376824855804, 0.00701668718829751, 0.012149877846240997, -0.024114059284329414, -0.016036247834563255, -0.029233986511826515, -0.019843032583594322, -0.010571454651653767, -0.02379572205245495, 0.011533099226653576, -0.003621088108047843, 0.010730624198913574, -0.010651038959622383, 0.027111737057566643, 0.013953790068626404, -0.015174083411693573, -0.016248472034931183, 0.010723991319537163, -0.02947273850440979, 0.028703423216938972, -0.015359780751168728, 0.01408643089234829, -0.0006938760634511709, 0.041463449597358704, 0.0006947051151655614, 0.0031004738993942738, 0.0005620645242743194, 0.028385085985064507, -0.015505684539675713, -0.021633680909872055, -0.010956112295389175, -0.018118703737854958, -0.016036247834563255, -0.008979767560958862, 0.030984841287136078, 0.004649052862077951, 0.01034596562385559, -0.019365526735782623, -0.003803469007834792, -0.0029462790116667747, 0.020970476791262627, -0.014855746179819107, -0.00292804092168808, 0.011373930610716343, 0.016076039522886276, -0.006326956208795309, -0.009742450900375843, -0.007567145861685276, -0.019445110112428665, 0.006263951770961285, 0.003291144734248519, -0.05167677253484726, 0.008243612945079803, 0.01716369204223156, 0.05374596640467644, -0.03215207904577255, -0.0026776818558573723, -0.006161155644804239, -0.024405868723988533, -0.008376252837479115, -0.02498948760330677, 0.009629706852138042, -0.011155073530972004, -0.0017939639510586858, -0.029870660975575447, -0.0113076101988554, -0.01586381532251835, -0.04103899747133255, -0.007878851145505905, -0.015293460339307785, -0.04419584572315216, -0.014815953560173512, 0.010007732547819614, 0.021010270342230797, -0.006101467180997133, 0.03292139619588852, -0.009357793256640434, -0.008807335048913956, 0.03514975681900978, -0.030348166823387146, -0.01846357062458992, -0.004025641828775406, -0.019285941496491432, 0.008130867965519428, 0.022270355373620987, 0.00045387953286990523, -0.003330936888232827, -0.007441136986017227, 0.024419132620096207, -0.0065789734944701195, 0.02313251979649067, -0.004294238984584808, 0.011579523794353008, -0.008455838076770306, 0.007918642833828926, 0.019007395952939987, 0.022177506238222122, -0.007812530733644962, -0.011387194506824017, -0.022867238149046898, -0.011506571434438229, 0.01145351491868496, -0.015465892851352692, -0.01949816755950451, 0.005226039327681065, 0.004556204192340374, 0.022960085421800613, -0.006018566899001598, 0.02009505033493042, 0.03419474512338638, -0.01879517175257206, 0.016924940049648285, 0.0016455723671242595, -0.004655684810131788, 0.011340770870447159, 0.008966503664851189, 0.0042710271663963795, 0.007606938015669584, -0.021991809830069542, 0.01345638744533062, -0.0064065405167639256, 0.02154083177447319, 0.024445660412311554, -0.005196195095777512, 0.0029943613335490227, -0.0237691942602396, -0.026382213458418846, -0.012760024517774582, 0.0008136671385727823, 0.009218521416187286, 0.025294560939073563, 0.0002221729955635965, 0.003214876400306821, -0.04886479303240776, -0.0059522464871406555, -0.009112408384680748, 0.024777261540293694, -0.029446210712194443, -0.0156383253633976, -0.022084658965468407, 0.00947053823620081, -0.004904385656118393, -0.030852200463414192, 0.02420690841972828, -0.03599865734577179, 0.004582732450217009, 0.02780146710574627, -0.013396699912846088, 0.006811094470322132, 0.01856968179345131, -0.0012973907869309187, -0.047803670167922974, -0.010392390191555023, 0.007865587249398232, -0.022734597325325012, -0.02995024435222149, -0.017840160056948662, 0.0069901589304208755, 0.024034474045038223, 0.0331336185336113, -0.013874205760657787, -0.004526359960436821, -0.005298991687595844, -0.008920080028474331, -0.0041582826524972916, -0.005335467867553234, 0.0008762569050304592, 0.003514975542202592, 0.006439700722694397, 0.018702322617173195, 0.02899523265659809, 0.008774175308644772, 0.020559292286634445, -0.017468765377998352, 0.02327842265367508, -0.024710942059755325, -0.008807335048913956, 0.003564715851098299, -0.06478166580200195, -0.023185575380921364, 0.013310483656823635, -0.015266931615769863, -0.00031211989698931575, -0.018967604264616966, -0.01990935206413269, 0.0019348945934325457, -0.012501375749707222, 0.012295782566070557, 0.011181601323187351, 0.00646954495459795, -0.01945837400853634, 0.015465892851352692, 0.008256876841187477, 0.024220172315835953, -0.01197744533419609, 0.004934229888021946, -0.017150428146123886, 0.034460026770830154, 0.015293460339307785, 0.01245495118200779, 0.0025118812918663025, 0.01379462145268917, 0.002768872305750847, -0.009961307980120182, 0.008946607820689678, -0.031197067350149155, -0.0026312577538192272, 0.011320874094963074, -0.0007763619651086628, -0.03331931680440903, -0.016765771433711052, 0.004659000784158707, -0.009384321980178356, -0.004509780090302229, 0.025758802890777588, 0.0014117932878434658, 0.0071029034443199635, -0.02743007428944111, -0.006741458084434271, -0.010830104351043701, -0.024565037339925766, 0.006466228980571032, 0.02323863096535206, 0.0005575050017796457, 0.03021552599966526, 0.011407090350985527, -0.0167922992259264, -0.02476399764418602, -0.023304952308535576, -0.000484552641864866, 0.009337897412478924, 0.025573106482625008, -0.003117053769528866, -0.04037579521536827, 0.0028666947036981583, 0.03050733543932438, -0.0101403733715415, -0.020638875663280487, 0.026819927617907524, 0.022681541740894318, 0.008800703100860119, -0.006641977466642857, 0.01501491479575634, -0.01805238425731659, 0.011586155742406845, -0.01039902213960886, -0.014882273972034454, 0.013038570061326027, -0.008714486844837666, -0.037908680737018585, 0.021328607574105263, -0.011420355178415775, 0.011446882970631123, 0.0009351161425001919, 0.001702773617580533, 0.004486567806452513, -0.02205812931060791, -0.024273227900266647, 0.007235544268041849, -0.00474521704018116, 0.03711283579468727, -0.009848563931882381, 0.009722555056214333, 0.008813966996967793, 0.01927267760038376, 0.012090189382433891, -0.02620978094637394, -0.025453729555010796, 0.048917848616838455, -0.021195966750383377, -0.017521822825074196, -0.0021902278531342745, 0.005710177589207888, 0.011745324358344078, -0.010007732547819614, 0.0038134169299155474, 0.00750745739787817, -0.00951032992452383, -0.023808985948562622, 0.03318667411804199, -0.00014911704056430608, -0.001138222054578364, -0.006976895034313202, -0.006267267744988203, -5.891107502975501e-05, -0.033345844596624374, -0.006605501286685467, 0.027456602081656456, -0.01705757901072502, -0.03321320563554764, -0.006731510162353516, -0.03339890018105507, 0.0244721882045269, -0.001958106644451618, -0.00915883295238018, 0.009132304228842258, 0.0699281170964241, -0.03236430510878563, -0.012375366874039173, -0.009046087972819805, -0.01594339869916439, -0.009795507416129112, 0.02265501208603382, -0.01219630241394043, -0.007812530733644962, 0.021660208702087402, 0.009152201004326344, -0.021779585629701614, -0.025440465658903122, 0.0028666947036981583, 0.02057255618274212, -0.0025898076128214598, 0.04846687242388725, 0.012342207133769989, 0.0005235158023424447, -0.0022631799802184105, 0.009099144488573074, -0.021898960694670677, 0.02224382758140564, 0.021527567878365517, 0.014842482283711433, 0.029976774007081985, -0.007096271496266127, 0.0005247593508102, -0.013416595757007599, 0.020744988694787025, 0.011645844206213951, 0.0002008261508308351, -0.04790978133678436, 0.03114400990307331, -0.019299205392599106, -0.013376803137362003, -0.010796943679451942, -0.02398141846060753, -0.00234442250803113, -0.027907580137252808, -0.00025118811754509807, -0.00048745417734608054, -0.00750745739787817, -0.006545813288539648, 0.026196517050266266, -0.012660544365644455, 0.01586381532251835, 0.0055443765595555305, -0.018490098416805267, -0.013337011449038982, -0.018967604264616966, -0.01635458506643772, -0.021103117614984512, -0.03143582120537758, 0.033902935683727264, 0.031568460166454315, -0.028225917369127274, -0.013449755497276783, -0.0014267154037952423, -0.02891564927995205, -0.031382761895656586, 0.004423563834279776, 0.025161920115351677, -0.005010498221963644, -0.018768643960356712, -0.008097708225250244, -0.0005678675370290875, 0.002278102096170187, 0.019033925607800484, -0.018105439841747284, 0.002314578276127577, -0.0008571898215450346, -0.011055593378841877, 0.01705757901072502, -0.020957212895154953, -0.013005410321056843, 0.0008953239885158837, 0.021116381511092186, 0.017972800880670547, 0.02654138207435608, 0.04119816794991493, -0.012587592005729675, 0.009311369620263577, -0.002833534497767687, -0.011625947430729866, -0.009616442956030369, 0.024551773443818092, -0.005696913227438927, -0.03637005016207695, -0.0005968826590105891, 0.0335845984518528, 0.0073814489878714085, -0.006575657054781914, -0.0003637253539636731, 0.01016026921570301, -0.005710177589207888, 0.026276100426912308, -0.029313569888472557, -0.0020741671323776245, -0.012282518669962883, -0.005444896407425404, -0.00032020267099142075, -0.033054035156965256, -0.0020476391073316336, 0.006632029544562101, -0.010292910039424896, 0.016407640650868416, -0.015625061467289925, 0.016487225890159607, -0.0045363083481788635, 0.015054707415401936, 0.02443239651620388, 0.004194758832454681, 0.0014532434288412333, 0.01935226283967495, 0.009165464900434017, 0.005252567585557699, 0.00191831449046731, 0.011592787690460682, 0.009961307980120182, -0.03294792398810387, 0.012640648521482944, 0.036608804017305374, -0.027111737057566643, -0.006983526982367039, 0.0016323082381859422, -0.008707854896783829, -0.010518399067223072, -0.036529216915369034, -0.004148334264755249, -0.02416711486876011, 0.043691810220479965, -0.017482029274106026, -0.0014540724223479629, -0.028305502608418465, 0.025679217651486397, -0.0016140701482072473, -0.029631907120347023, -0.005809657741338015, 0.27355796098709106, -0.019100245088338852, -0.0032894867472350597, 0.009802139364182949, 0.0015162477502599359, -0.002175305737182498, -0.011274450458586216, -0.0051199267618358135, -0.03459266573190689, 0.01370177324861288, -0.005958878435194492, -0.02769535593688488, -0.027085209265351295, -0.006005302537232637, 0.0063004279509186745, -0.01319773867726326, -0.02616998925805092, -0.02234993875026703, -0.022270355373620987, -0.009019560180604458, 0.02038685791194439, 0.010319437831640244, -0.007155959960073233, -0.006456280592828989, 0.010458710603415966, 0.019922615960240364, 0.008946607820689678, 0.013821149244904518, 0.01427212730050087, 0.014497616328299046, -0.038757581263780594, 0.005010498221963644, -0.007301864679902792, -0.024923166260123253, -0.020254218950867653, -0.010093948803842068, 0.03838618844747543, 0.005202827043831348, 0.03252347186207771, 0.0013579080114141107, 0.02124902233481407, 0.007699786219745874, 0.027721883729100227, -0.01689841039478779, -0.001966396812349558, 0.002636231714859605, 0.025997554883360863, -0.012607487849891186, 0.005547692533582449, 0.0026412056758999825, -0.006443016696721315, -0.024220172315835953, 0.028889119625091553, 0.01650048978626728, 0.010750520043075085, -0.007335024420171976, 0.012322311289608479, 0.01403337437659502, 0.014762897975742817, 0.022416260093450546, -0.013310483656823635, 0.029419682919979095, -0.02835855819284916, 0.033451955765485764, -0.03281528130173683, -0.01720348373055458, -0.028040220960974693, -0.01734938845038414, -0.004692160990089178, -0.014537408947944641, -0.019179828464984894, -0.010717359371483326, 0.007945171557366848, -0.00494749378412962, -0.022336674854159355, -0.020002201199531555, 0.028783008456230164, 0.019299205392599106, 0.015877079218626022, 0.04902396351099014, -0.0033707290422171354, 0.01734938845038414, -0.0146833136677742, -0.02517518401145935, 0.011300978250801563, -0.02666075900197029, -0.00261799362488091, 0.002674365881830454, -0.02228361926972866, -0.010219957679510117, -0.004330715164542198, -0.010465342551469803, -0.010339333675801754, -0.01567811705172062, -0.02216424234211445, 0.018622739240527153, -0.004300870932638645, 0.023636553436517715, 0.004582732450217009, 0.00029284556512720883, 0.004529675934463739, 0.040163569152355194, 0.01071072742342949, 0.007978331297636032, -0.031462348997592926, 0.004632472526282072, 0.0024422449059784412, -0.00558085273951292, -0.011785116046667099, -0.01384767796844244, 0.00860174186527729, -0.03239083290100098, 0.0005948101752437651, -0.0023295003920793533, -0.005093398503959179, -0.005925718229264021, -0.012892665341496468, -0.011877965182065964, -0.008966503664851189, -0.0012252674205228686, 0.022867238149046898, 0.003975901752710342, -0.01868905872106552, -0.014484352432191372, -0.0010660986881703138, -0.01112191379070282, 0.018145233392715454, -0.014404768124222755, 0.007487561088055372, -0.04271027073264122, 0.007905378937721252, -0.01319773867726326, 0.02918092906475067, -0.0167922992259264, 0.003763676853850484, 0.004957442171871662, -0.020705197006464005, -0.008979767560958862, 0.008535422384738922, -0.012222830206155777, 0.003534871619194746, 0.012421791441738605, -0.0027987165376544, -0.0071625919081270695, -0.017548350617289543, -0.014948594383895397, 0.011102017015218735, 0.0011166679905727506, 0.014908802695572376, 0.019338998943567276, -0.030719561502337456, -0.028517726808786392, -0.012779921293258667, 0.00941748172044754, 0.025705747306346893, 0.016407640650868416, -0.021302077919244766, -0.0442754290997982, 0.021514303982257843, -0.001730959746055305, -0.015293460339307785, 0.002865036716684699, 0.004954126197844744, -0.013443123549222946, -0.017283068969845772, -0.022787652909755707, -0.16744548082351685, 0.018622739240527153, 0.029711492359638214, -0.02024095319211483, 0.03292139619588852, 0.00843594130128622, -0.008721118792891502, -0.013754828833043575, 0.01334364339709282, -0.008164028637111187, -0.0003832069633062929, -0.010578087531030178, -0.00029139479738660157, -0.02494969591498375, -0.012594223953783512, 0.013005410321056843, 0.0004018595500383526, 0.001863600336946547, 0.036316994577646255, 0.026302628219127655, 0.03432738408446312, -0.009191992692649364, 0.002296340186148882, 0.015691380947828293, 0.0073217605240643024, -0.020519498735666275, -0.0317276306450367, 0.02431301958858967, -0.0076467301696538925, -0.006956998724490404, -0.0006404053419828415, -0.0014159382553771138, 0.01986956037580967, 0.01776057481765747, -0.00181386002805084, -0.006028514821082354, 0.021222494542598724, -0.005093398503959179, -0.022230563685297966, 0.007228912319988012, -0.0007738749263808131, 0.019882824271917343, -0.005083450581878424, 0.00667182169854641, -0.0021355135831981897, -0.005812973715364933, 0.010180165059864521, -0.014563936740159988, -0.002865036716684699, -0.020108314231038094, -0.005507900379598141, -0.007388080935925245, 0.001948158722370863, -0.003849893109872937, 0.03300097957253456, -0.0007282797596417367, -0.015572004951536655, 0.00359124387614429, -0.0123621029779315, 0.0001825880608521402, 0.008183924481272697, -0.005335467867553234, 0.012255990877747536, -0.010942848399281502, 0.00029844132950529456, -0.001769093913026154, -0.004595996346324682, 0.03411515802145004, -0.006055043078958988, 0.01809217594563961, 0.012567696161568165, -0.01623520813882351, 0.00047004508087411523, -0.030162470415234566, 0.023371271789073944, 0.0005322203505784273, -0.03247041627764702, 0.022071395069360733, 0.009835300035774708, -0.015770966187119484, -0.0113076101988554, 0.03851882740855217, 0.007248808164149523, 0.0047120568342506886, -0.001823808066546917, -0.015333252027630806, -0.0021968598011881113, -0.019047189503908157, -0.018582947552204132, 0.0032198503613471985, 0.02758924290537834, 0.0010453736176714301, 0.0008256876608356833, -0.02164694480597973, -0.01317784283310175, -0.010246485471725464, -0.01097600907087326, -0.009477170184254646, -0.01049187034368515, 0.02102353423833847, 0.0001206200395245105, -0.024525245651602745, -0.015810757875442505, 0.003650932339951396, 0.02024095319211483, -0.017176955938339233, -0.002069193171337247, 0.012461583130061626, 0.045018214732408524, -0.019484901800751686, -0.01049187034368515, -0.0024886690080165863, -0.015572004951536655, 0.028093276545405388, 0.01742897368967533, 0.01852989010512829, 0.01906045340001583, -0.0014565595192834735, -0.0035315556451678276, -0.005912454333156347, 0.006963631138205528, -0.021792849525809288, 0.025400672107934952, 0.011592787690460682, -0.011181601323187351, -0.02613019570708275, -0.025069070979952812, 0.014855746179819107, 0.024193644523620605, 0.02368960902094841, -0.018264608457684517, 0.011844804510474205, 0.006021882873028517, 0.024551773443818092, 0.022562164813280106, 0.013018674217164516, -0.020161369815468788, -0.0102531174197793, -0.003534871619194746, 0.007235544268041849, 0.0007937710033729672, 0.018450306728482246, -0.012667176313698292, 0.007129431702196598, 0.020851099863648415, 0.03010941483080387, -0.0015916870906949043, -0.015598533675074577, -0.021103117614984512, -0.011367298662662506, -0.02490990236401558, 0.009092512540519238, -0.017468765377998352, 0.03451308235526085, 0.018118703737854958, -0.016527017578482628, 0.017694255337119102, -0.0015576978912577033, -0.002438928931951523, -0.03265611454844475, 0.0031949803233146667, 0.02372940070927143, -0.015492420643568039, -0.018224816769361496, 0.029446210712194443, -0.008701222948729992, 0.01982976868748665, 0.0066253975965082645, -0.008044651709496975, -0.029419682919979095, -0.018556417897343636, -0.02094394899904728, -0.012779921293258667, 0.04095941409468651, -0.01598319038748741, -0.03204596787691116, -0.02083783596754074, 0.011108649894595146, -0.017296332865953445, -0.01571791060268879, 0.032603055238723755, 0.023663081228733063, -0.0002808250137604773, -0.0003948130179196596, -0.052446089684963226, -0.011997341178357601, -0.005464792251586914, -0.006612133234739304, -0.022853974252939224, 0.01520061120390892, 0.02280091680586338, -0.0031502139754593372, -0.01279318518936634, -0.011029064655303955, 0.030799144878983498, 0.0015029837377369404, -0.003982533700764179, 0.0303216390311718, 0.004509780090302229, 0.023159047588706017, -0.030746089294552803, -0.0071625919081270695, -0.025400672107934952, -0.02220403403043747, 0.02372940070927143, 0.00013429859245661646, -0.006307059898972511, -0.012925825081765652, 0.004204706754535437, -0.03952689468860626, 0.01846357062458992, 0.0151608195155859, -0.00013056807802058756, -0.004436827730387449, 0.007659994065761566, -0.06409193575382233, -0.020930685102939606, 0.007235544268041849, -0.003936109598726034, -0.0007734604296274483, -0.00646954495459795, 0.007202384062111378, 0.0006142917554825544, -0.0061876834370195866, -0.008767543360590935, 0.024220172315835953, -0.02573227509856224, -0.02532108873128891, -0.0960848405957222, 0.021567359566688538, -5.049150422564708e-05, -0.0053387838415801525, 0.005567588843405247, -0.012687072157859802, 0.015319988131523132, 0.0063899606466293335, 0.026965832337737083, -0.013688509352505207, -0.026979096233844757, 0.00026652467204257846, -0.007235544268041849, -0.011533099226653576, -0.015731174498796463, -0.0001651789789320901, 0.027934107929468155, 0.0075870417058467865, 0.00906598474830389, -0.00412512244656682, -0.0014524144353345037, -0.019007395952939987, 0.014391504228115082, -0.000723720237147063, -0.009318001568317413, 0.011480042710900307, 0.009205256588757038, 0.023331480100750923, -0.004559520166367292, -0.01534651592373848, -0.014882273972034454, -0.022005073726177216, -0.0026594437658786774, 0.02410079538822174, 0.029976774007081985, -0.011526467278599739, 0.0002692189591471106, 0.013045202009379864, 0.03233777731657028, 0.006449648644775152, -0.02928704209625721, -0.020187897607684135, 0.01140045840293169, -0.013715037144720554, -0.025228239595890045, -0.011705531738698483, -0.010783679783344269, 0.017402445897459984, 0.002006188966333866, 0.04955452308058739, 0.04156956076622009, 0.03419474512338638, -0.014842482283711433, -0.01642090454697609, 0.013502812013030052, -0.04026968404650688, 0.004771745298057795, 0.01136066671460867, -0.014006846584379673, 0.01412622258067131, 0.061120785772800446, 0.0095633864402771, 0.009337897412478924, 0.0014001872623339295, -0.0038266810588538647, 0.007407976780086756, -0.02102353423833847, -0.012156509794294834, 0.011254553683102131, -0.03528239578008652, -0.03671491518616676, -0.001890128361992538, -0.01986956037580967, 0.006837622262537479, 0.018848227337002754, 0.023291688412427902, -0.016076039522886276, 0.0008091076160781085, -0.014351711608469486, 0.02242952398955822, 0.021567359566688538, 0.0165402814745903, -0.028756480664014816, 0.02554657682776451, 0.05053606629371643, 0.010558190755546093, -0.000308596616378054, -0.004493200220167637, -0.00832319725304842, 0.016473961994051933, -0.010166901163756847, 0.015505684539675713, 0.0033690710552036762, 0.03732506185770035, 0.00022051497944630682, 0.01860947534441948, 0.010100580751895905, -0.009961307980120182, 0.0363435223698616, -0.006675137672573328, 0.02321210317313671, 0.010219957679510117, 0.008780807256698608, -0.018967604264616966, -0.030056357383728027, -0.024273227900266647, -0.017442237585783005, -0.06074938923120499, -0.0008140816353261471, 0.012163141742348671, 0.007407976780086756, -0.007288600318133831, -0.01329058688133955, 0.018888020887970924, -0.027005624026060104, -0.014471088536083698, -0.012037133798003197, -0.03292139619588852, -0.007361552678048611, 0.019816504791378975, 0.009682763367891312, 0.010100580751895905, 0.025228239595890045, 0.0005836185882799327, 0.011632579378783703, -0.0028683526907116175, -0.0006254832842387259, -0.02992371656000614, 0.016394376754760742, 0.006592237390577793, -0.0031137377955019474, 0.019551223143935204, -0.013927262276411057, -0.035680320113897324, 0.0007092126761563122, 0.00775947468355298, 0.01986956037580967, -0.005968826357275248, -0.023291688412427902, 0.06096161529421806, 0.017879951745271683, -0.0031518719624727964, -0.007945171557366848, 0.004572784528136253, 0.009119040332734585, -0.008455838076770306, -0.0041980748064816, 0.006950366776436567, -0.012594223953783512, 0.006320324260741472, 0.024671150371432304, -0.0186492670327425, -0.014099694788455963, -0.0053089396096765995, -0.00605172710493207, -0.0016356243286281824, 0.02142145484685898, 0.0022863922640681267, 0.00808444432914257, 0.032496944069862366, 0.010279646143317223, 0.02469767816364765, -0.007666626013815403, -0.01482921838760376, -0.016009720042347908, 0.02732396125793457, -0.013781357556581497, 0.02046644315123558, 0.013111522421240807, 0.023928362876176834, 0.012481479905545712, -0.02525476925075054, 0.0005914941430091858, -0.009530226700007915, -0.0012194644659757614, 0.005448212381452322, 0.016765771433711052, 0.016858618706464767, -0.012925825081765652, 0.02899523265659809, 0.004748533014208078, -0.0198032408952713, -0.02168673649430275, 7.885897503001615e-05, 0.0069437348283827305, 0.004904385656118393, 0.013370171189308167, 0.003849893109872937], "ff7e4c0c-eac9-4a0a-99d6-5121a3dddc82": [0.0005613232497125864, 0.009349025785923004, -0.005424100439995527, -0.025166716426610947, -0.005073599051684141, 0.020419327542185783, -0.02801237255334854, -0.025930184870958328, -0.009154687635600567, -0.007468115538358688, 0.014991755597293377, -0.010987013578414917, 0.008349575102329254, 0.003952687606215477, -0.026304978877305984, -0.010639982298016548, 0.0023181696888059378, -0.013666096143424511, 0.01855923794209957, -0.04111627861857414, 0.008710487745702267, 0.01167413592338562, 0.0006333322962746024, -0.023098409175872803, -0.015630293637514114, 0.012069751508533955, 0.001891321036964655, -0.024875210598111153, -0.010244366712868214, 0.0008710487745702267, 0.023959046229720116, -0.0020145170856267214, -0.011951761320233345, 0.0021810922771692276, -0.0009933772962540388, 0.001425431459210813, 0.002986205043271184, -0.01801786944270134, 0.004966019187122583, -0.021307727321982384, 0.014630842953920364, -0.015186093747615814, 0.025833016261458397, 0.010827379301190376, -0.003019173163920641, 0.013159430585801601, 0.013291302137076855, -0.007246015127748251, 0.003305473830550909, 0.025208359584212303, 0.01384655199944973, 0.005202000495046377, -0.010598338209092617, -0.022834664210677147, 0.019211657345294952, -0.0059099444188177586, -0.0042372532188892365, 0.024167265743017197, -0.024944616481661797, -0.013090023770928383, -0.008314872160553932, 0.00036676879972219467, -0.03059428744018078, 0.00611122278496623, -0.01823996938765049, 0.0012753403279930353, -0.004972959868609905, 0.008259346708655357, -0.02166863903403282, -0.008328753523528576, 0.013187192380428314, 0.037423864006996155, -0.01150756049901247, -0.0015408192994073033, 0.02590242214500904, 0.003050405764952302, -0.017434855923056602, -0.01611613668501377, 0.014311574399471283, -0.003557071788236499, -0.01151450164616108, 0.0032030995935201645, 0.0024344250559806824, 0.002028398448601365, 0.01539431232959032, 0.00868272501975298, -0.0054588038474321365, 0.016643624752759933, -0.03089967370033264, -0.014866824261844158, -0.005524739623069763, 0.017948463559150696, 0.014096414670348167, 0.00417131744325161, 0.002300817985087633, 0.017184995114803314, 0.017615312710404396, 0.03500852733850479, -0.01016801968216896, -0.02445877157151699, -0.011139707639813423, 0.029955748468637466, -0.03201017528772354, -0.0008406835258938372, -0.04128285497426987, -0.013346826657652855, 0.028984060510993004, -0.037423864006996155, -0.008731309324502945, -0.03037218749523163, -0.023098409175872803, 0.024819685146212578, 0.0024604524951428175, -0.06368719786405563, -0.021640876308083534, 0.0007027385290712118, 0.018170563504099846, -0.030399950221180916, -0.010244366712868214, -0.00041622077696956694, 0.023945165798068047, 0.013693858869373798, 0.03870093822479248, -1.5494408216909505e-05, -0.004261545371264219, 0.010987013578414917, -0.026180047541856766, -0.003187483176589012, 0.002663465915247798, -0.017532026395201683, 0.05463661998510361, 0.025208359584212303, 0.0049937814474105835, -0.0028109541162848473, 0.00023489687009714544, 0.014505911618471146, -0.03337053954601288, 0.01568581908941269, -0.026082878932356834, 0.012236326932907104, 0.020183345302939415, 0.03312067687511444, -0.011105004698038101, -0.020835764706134796, 1.2030873222101945e-05, 0.020988458767533302, 0.01780964992940426, 0.002028398448601365, 0.036091264337301254, 0.0076902154833078384, 0.008314872160553932, -0.03256542608141899, 0.000832875317428261, -0.005406748969107866, 0.009508660063147545, 0.010952310636639595, 0.019322708249092102, 0.0026027353014796972, -0.015880156308412552, -0.02990022487938404, 0.0032586248125880957, 0.04361490532755852, 0.03459208831191063, -0.0010289481142535806, -0.00151479197666049, 0.030733099207282066, -0.007218252867460251, 0.009154687635600567, 0.0017889467999339104, 0.005434511695057154, -0.01790682040154934, 0.01935046911239624, -0.007856790907680988, 0.020502613857388496, -0.01980855129659176, 0.027290547266602516, -0.00046328690950758755, 0.0010220074327662587, -0.013256599195301533, -0.018434306606650352, -0.02666589245200157, -0.03556377813220024, 0.005108301993459463, 0.04150495305657387, 0.0031753371004015207, -0.01234043575823307, 0.025180596858263016, -0.001238902099430561, 0.00025918905157595873, 0.006874691694974899, 0.030649811029434204, 0.029317211359739304, 0.019378231838345528, -0.004969489295035601, -0.6227686405181885, -0.01161167025566101, -0.004754330031573772, 0.0031111363787204027, -0.0016379881417378783, 0.01273605227470398, 0.011854591779410839, 0.04156047850847244, -0.012291851453483105, 0.0048306770622730255, -0.007745740469545126, 0.02637438476085663, -0.0013508197152987123, -0.018170563504099846, -0.00890482496470213, -0.015658056363463402, -0.021057864651083946, -0.01614389941096306, -0.005542091093957424, 0.005847478751093149, 0.0036993545945733786, 0.0031683966517448425, -0.027970729395747185, -0.01439486164599657, 0.007273777853697538, -0.0029306800570338964, 0.008453684858977795, -0.018989557400345802, 0.00611122278496623, 0.04111627861857414, -0.040644314140081406, -0.005507388152182102, 0.03817345201969147, -0.019530925899744034, 0.04247664287686348, 0.003449491923674941, -0.024958496913313866, 0.010980073362588882, -1.1895313946297392e-05, 0.04547499120235443, -0.006579715292900801, -0.021987909451127052, 0.029206160455942154, -0.008349575102329254, 0.005986291449517012, 0.005323461256921291, 0.0032030995935201645, -0.006135514937341213, 0.004966019187122583, 0.01812892034649849, 0.005982820875942707, -0.0063506742008030415, 0.0023251103702932596, -0.012111395597457886, -0.007808206137269735, 0.003499811515212059, 0.042976368218660355, -0.03187136352062225, -0.0016032849671319127, 0.003734057769179344, -0.009862631559371948, 0.013263539411127567, -0.026207810267806053, -0.030982961878180504, -0.015380430966615677, 0.007863731123507023, -0.010022266767919064, 0.006364555563777685, 0.015949562191963196, -0.0006663002423010767, 0.011195232160389423, 0.006406199187040329, 0.00012905229232273996, -0.006215332075953484, 0.01134792622178793, 0.024083977565169334, 0.027276666834950447, -0.011084182187914848, -0.018711932003498077, 0.01429769303649664, 0.011889295652508736, 0.007599987555295229, -0.00911304447799921, -0.01561641227453947, 0.004632868804037571, -0.0026478494983166456, -0.040089067071676254, -0.024861328303813934, 0.021502064540982246, -0.03459208831191063, -0.015144449658691883, -0.0031961591448634863, 0.008689666166901588, -0.03917290270328522, -0.0014124177396297455, 0.036646515130996704, 0.0002288238174514845, -0.002595794852823019, 0.005739898886531591, 0.0017603166634216905, -0.014672487042844296, 0.00024465713067911565, 0.007905375212430954, -0.0001398970343871042, 0.014575318433344364, -0.0015234678285196424, -0.02300124056637287, -0.005427571013569832, 0.017184995114803314, -0.00591688510030508, -0.008078890852630138, -0.003737528109923005, -0.009751581586897373, -0.011583907529711723, 0.01195870153605938, -0.04089417681097984, 0.024083977565169334, 0.01692125014960766, 0.009765462949872017, -6.658664642600343e-05, 0.03806240111589432, -0.008710487745702267, 0.012555595487356186, -0.0002767575206235051, 0.001927759381942451, 0.013319064863026142, 0.0032551544718444347, -0.014936231076717377, -0.01800398901104927, -0.00800948403775692, -0.028192829340696335, -0.012666645459830761, 0.034869711846113205, -0.023723065853118896, -0.004719626624137163, -0.0018583530327305198, 0.01413111761212349, -0.023861877620220184, 0.03128834813833237, 0.010445645079016685, -0.016282713040709496, 0.01283322088420391, 0.025513747707009315, -0.02357037179172039, -0.018753575161099434, -0.026180047541856766, -0.018961794674396515, 0.0076555125415325165, -0.007093321532011032, 0.012999795377254486, 0.007239074911922216, 0.005972410086542368, 0.0034685786813497543, 0.025888541713356972, 0.004327481146901846, -0.008509209379553795, -0.011139707639813423, -0.008606377989053726, -0.005413689650595188, -0.014575318433344364, 0.006451313383877277, 0.004657160956412554, -0.02945602312684059, 0.012805458158254623, 0.0009786285227164626, -0.009286560118198395, 0.0007335375994443893, 0.017643075436353683, -0.009522541426122189, -0.020044533535838127, 0.00575725082308054, -0.00483761727809906, -0.005319991149008274, -0.003983920440077782, 0.01855923794209957, -0.003199629485607147, 0.0013968013226985931, 0.010431763716042042, -0.0036750624421983957, -0.023042883723974228, 0.011563085950911045, -0.0015555681893602014, 0.026874110102653503, -0.016199424862861633, 0.018836863338947296, 0.00923103466629982, 0.01658809930086136, 0.00868272501975298, -0.009536422789096832, 0.006690765265375376, -0.008925647474825382, 0.021515944972634315, 0.006586655508726835, 0.009418431669473648, 0.026874110102653503, 0.02012781985104084, 0.0018791749607771635, 0.01869805157184601, 0.005052777007222176, 0.0049417270347476006, 0.022418227046728134, 0.01635211892426014, 0.007357065565884113, -0.02769310399889946, 0.0027797212824225426, -0.02981693670153618, 0.006770582403987646, -0.016157781705260277, 0.008162178099155426, 0.011521441861987114, 0.008981171995401382, -0.011202173307538033, -0.008738250471651554, 0.0002107131149386987, 0.0051534161902964115, -0.00800948403775692, -0.0024465713649988174, -0.01000838540494442, -0.006753230933099985, 0.028706436976790428, 0.005715606734156609, -0.006819166708737612, 0.0020266633946448565, -0.015824630856513977, 0.007960899733006954, 0.010056969709694386, 0.002897712169215083, 0.026721416041254997, 0.007717978209257126, -0.024861328303813934, -0.02566644176840782, -0.001572052133269608, 0.018212206661701202, 0.020863527432084084, 0.02959483675658703, -0.018309375271201134, 0.018600882962346077, -0.03892304003238678, 0.035980213433504105, 0.0068330480717122555, 0.02233494073152542, -0.004553051665425301, 0.0020613663364201784, 0.0021342430263757706, 0.002784926909953356, 0.016837961971759796, 0.03628560155630112, 0.01978078857064247, -0.01836490072309971, 0.007384827826172113, -0.023500965908169746, 0.0033696747850626707, 0.020377682521939278, 0.023542609065771103, -0.013346826657652855, -0.010188841260969639, 0.0008944733999669552, 0.016046730801463127, 0.01701841875910759, 0.023959046229720116, 0.026707535609602928, 0.03373144939541817, 0.014027008786797523, 0.0074958777986466885, 0.008668843656778336, -0.011542263440787792, -0.0021620055194944143, 0.0013247922761365771, -0.005635789595544338, -0.01228491123765707, -0.028276117518544197, -0.00038563861744478345, 0.013062261044979095, -0.01513056829571724, 0.004972959868609905, 0.01417276170104742, 0.01578298769891262, -0.007926196791231632, 0.003869399894028902, 0.020932933315634727, -0.021751927211880684, -0.022959595546126366, 0.018934031948447227, 0.016740793362259865, 0.01678243838250637, 0.009938978590071201, 0.009314321912825108, 0.02856762334704399, -0.008530031889677048, 0.03137163817882538, 0.001528673223219812, 0.011382629163563251, 0.013332946226000786, -0.020863527432084084, -0.012583358213305473, -0.02826223522424698, 0.015755224972963333, -0.01844818890094757, -0.010757972486317158, -0.011070300824940205, -0.005847478751093149, -0.024819685146212578, -0.007239074911922216, -0.022487632930278778, 0.04117180407047272, -0.007114143576472998, 0.006489486899226904, -0.02926168590784073, 0.026304978877305984, -0.025749728083610535, 0.0011642902391031384, -0.022279415279626846, -0.025499865412712097, -0.03167702630162239, -0.007169668562710285, 0.008661903440952301, 0.00855779368430376, -0.014589199796319008, 0.014811299741268158, -0.010730210691690445, -0.005778072401881218, -0.0008662770851515234, -0.018531475216150284, 0.01900343783199787, 0.015588649548590183, -0.001665750634856522, 0.014269930310547352, -0.010973132215440273, -0.02790132351219654, -0.006628299597650766, -0.010827379301190376, -0.028276117518544197, 0.004910494200885296, -0.022862426936626434, 0.009203271940350533, -0.026443790644407272, -0.002538534579798579, -0.007960899733006954, 0.02923392318189144, 0.0009040167788043618, -0.009237975813448429, -0.000577807251829654, -0.0015590385301038623, -0.02001677080988884, 0.012486189603805542, -0.011042539030313492, 0.01690736971795559, -0.00023489687009714544, 0.011875414289534092, -0.0023997221142053604, 0.003647299949079752, 0.024847447872161865, 0.01157002616673708, -0.011028657667338848, 0.024847447872161865, -0.014214405789971352, 0.0004383440245874226, 0.03523062542080879, 0.0024500414729118347, 0.04805690795183182, -0.011889295652508736, 0.026277216151356697, 0.0028109541162848473, 0.0017889467999339104, 0.004990311339497566, 0.025000140070915222, 0.0018462069565430284, -0.01089678518474102, 0.016254950314760208, -0.00015909220383036882, -0.024764159694314003, 0.02266808971762657, 0.011604729108512402, -0.019975125789642334, 0.016074493527412415, 0.0029705886263400316, -0.03067757375538349, -0.012382079847157001, 0.025402696803212166, 0.018323257565498352, 0.0010723270243033767, -0.016601981595158577, -0.007128024473786354, -0.017934581264853477, 0.0015269380528479815, -0.02112727053463459, 0.0035987154114991426, 0.001654472085647285, -0.013929840177297592, -0.027540409937500954, -0.02534717321395874, -0.02223777025938034, -0.036979664117097855, -0.0004749992222059518, 0.0008450213936157525, -0.041088517755270004, -0.038312263786792755, -0.00295844255015254, 0.004768211394548416, 0.0012449751375243068, 0.03634112700819969, 0.0017099971882998943, -0.005038895644247532, 0.018281612545251846, -0.020877407863736153, -0.010869023390114307, 0.003331501269713044, -0.035952452570199966, 0.013221895322203636, 0.000792966689914465, 0.009640531614422798, -0.02212672121822834, -0.010424822568893433, 0.011806007474660873, -0.005316521041095257, 0.02926168590784073, 0.011951761320233345, -0.0041366140358150005, -0.005826657172292471, 0.0012605915544554591, -0.001690910430625081, 0.027082329615950584, -0.013159430585801601, -0.005267936270684004, 0.00397697975859046, -0.02400069124996662, -0.004230312537401915, 0.001284883706830442, 0.0033332365565001965, 0.00503195496276021, 0.02981693670153618, 0.012146098539233208, 0.007204371504485607, 0.008196881040930748, 0.021751927211880684, -0.008668843656778336, -0.023556489497423172, -0.018864626064896584, 0.015186093747615814, 0.014422624371945858, 0.02566644176840782, 0.004966019187122583, 0.0028022783808410168, 0.00036525054019875824, 0.006902454420924187, -0.010862082242965698, 0.04389252886176109, 0.025305528193712234, -0.006826107390224934, 0.014269930310547352, -0.03403683751821518, -0.025638679042458534, -0.019975125789642334, -0.003970039077103138, -0.004518348723649979, 0.01780964992940426, -0.00219670869410038, -0.012937329709529877, -0.01350646186619997, -0.018170563504099846, 0.0070273857563734055, 0.03378697484731674, -0.024722516536712646, -0.02166863903403282, -0.008467566221952438, -0.005719077307730913, -0.014630842953920364, -0.0010775324190035462, -0.0017238784348592162, -0.03092743642628193, -0.0045599923469126225, -0.004785562865436077, 0.010084732435643673, 0.016379881650209427, -0.0033870262559503317, -0.009772404097020626, -0.02713785506784916, -0.009237975813448429, -0.002260909415781498, -0.030622050166130066, -0.011153589002788067, 0.0010037883184850216, 0.020641427487134933, 0.00889094453305006, 0.029400499537587166, 0.012139157392084599, 0.00013295639655552804, -0.001553833018988371, -0.0032777113374322653, 0.0038034638855606318, 0.01061221957206726, 0.00032577570527791977, -0.004771681502461433, 0.0025749728083610535, 0.02268197201192379, 0.01755978725850582, 0.02012781985104084, -0.02756817266345024, 0.012701348401606083, 0.02357037179172039, 0.007669393438845873, 0.00036026196903549135, -0.007509759161621332, -0.05460885912179947, -0.00021288206335157156, 0.010626100935041904, -0.009890394285321236, 0.006458254065364599, -0.01150756049901247, -0.025999590754508972, 0.00544839259237051, -0.010966191999614239, 0.011868473142385483, -0.008863181807100773, 0.015505362302064896, -0.027637580409646034, 0.013457877561450005, -0.009716878645122051, 0.013548105023801327, -0.02569420449435711, 0.009307381696999073, 0.007794324774295092, 0.018156681209802628, 0.01557476818561554, 0.027776392176747322, 0.016504812985658646, 0.008418980985879898, 0.0003268601722083986, -0.008078890852630138, -0.003234332427382469, -0.005639260169118643, -0.03895080089569092, 0.010980073362588882, -0.022487632930278778, -0.03972815349698067, -0.008203822188079357, -0.010910666547715664, -0.010980073362588882, 0.004275426734238863, 0.014478149823844433, -0.0014887646539136767, 0.012798517942428589, -0.019766908138990402, -0.013374589383602142, -0.01234043575823307, -0.015838513150811195, 0.03470313921570778, 0.004268486052751541, 0.003079903544858098, 0.040200114250183105, 0.006839988753199577, -0.0008519620751030743, -0.042643215507268906, 0.0030677574686706066, -0.00661788834258914, 0.036091264337301254, 0.023889640346169472, 0.003008762141689658, -0.052526671439409256, 0.00017134674999397248, 0.00990427564829588, -0.008356515318155289, -0.022987358272075653, 0.03239884972572327, 0.02802625484764576, 0.02011393941938877, -0.012014226987957954, 0.02334827184677124, -0.014769655652344227, 0.03228779882192612, 0.006971860304474831, 0.0021411837078630924, -0.002703374484553933, -0.016407644376158714, 0.005788483656942844, 0.018392663449048996, -0.022085078060626984, 0.013450936414301395, 0.012666645459830761, -0.00089360581478104, 0.0041366140358150005, -0.009661354124546051, -0.018767457455396652, 0.021377133205533028, -0.009494778700172901, 0.036091264337301254, 0.01700453832745552, -0.017476500943303108, 0.004452412482351065, 0.01333988644182682, -0.006836518179625273, -0.0038242859300225973, 0.002915063640102744, 0.04280979186296463, -0.0073015401139855385, -0.010521991178393364, -0.009633591398596764, -0.021293845027685165, 0.01106336060911417, -0.0066387103870511055, 0.0036230075638741255, 0.004188668914139271, -0.021071745082736015, -0.040977466851472855, 0.026957398280501366, -0.0011937880190089345, -0.012465367093682289, -0.021765807643532753, -0.00734318420290947, -0.020183345302939415, -0.02566644176840782, -0.029650362208485603, 0.03839555382728577, -0.02245987206697464, -0.019086726009845734, 0.0078012654557824135, -0.01879522018134594, 0.01814280077815056, 0.004435061011463404, -0.010764913633465767, 0.008606377989053726, 0.03128834813833237, -0.02325110323727131, 0.003477254416793585, 0.006090400740504265, 0.004098440520465374, -0.03170478716492653, -0.007176609244197607, 0.013700799085199833, -0.012271029874682426, 0.0002487781166564673, 0.003907573409378529, -0.015963444486260414, -0.05824574828147888, -0.0005934236687608063, 0.03603573888540268, -0.006624829024076462, 0.017157232388854027, 0.004247664008289576, 0.009328203275799751, 0.004226842429488897, 0.006499897688627243, -0.022085078060626984, 0.010869023390114307, -0.017615312710404396, -0.009418431669473648, 0.021724164485931396, -0.0067324088886380196, 0.0016891752602532506, 0.014977874234318733, 0.010875963605940342, 0.0007270307396538556, -0.015213855542242527, -0.039422765374183655, 0.01395066175609827, -0.019267182797193527, -0.025985710322856903, -0.009001994505524635, -0.006951038725674152, -0.025291647762060165, -0.019544808194041252, 0.013430114835500717, 0.011160529218614101, -0.004917434882372618, -0.004150495398789644, 0.028956299647688866, -0.004403828177601099, 0.01417970284819603, -0.017101706936955452, 0.0012892215745523572, -0.007926196791231632, -0.029095111414790154, -0.0057225474156439304, -0.004775152076035738, -0.016949012875556946, 0.03667427599430084, 0.0011426007840782404, -0.02358425222337246, -0.05138840898871422, 0.008231584914028645, -0.028539860621094704, -0.007634690497070551, 0.014283811673521996, 0.02848433516919613, 0.014852942898869514, -0.0012397696264088154, -0.009057519026100636, 0.026402147486805916, -0.007259896490722895, 0.025069547817111015, -0.015311025083065033, -0.003970039077103138, -0.01067468523979187, 0.015102805569767952, -0.006895513739436865, -0.009612769819796085, -0.00447323452681303, -0.007048207335174084, -0.012319614179432392, 0.0005175105761736631, 0.02422279119491577, 0.03139939904212952, 0.013589749112725258, -0.026513198390603065, -0.016324356198310852, -0.011174410581588745, -0.00884235929697752, 0.006256975699216127, 0.007447293493896723, -0.016740793362259865, 0.01395066175609827, 0.012305732816457748, 0.0074958777986466885, -0.010181901045143604, -0.0001265580067411065, 0.00945313461124897, -0.006277797743678093, 0.005066658370196819, -0.006506838370114565, -0.022071195766329765, -0.002495155669748783, -0.02000288851559162, 0.012132217176258564, -0.022057315334677696, -0.012916508130729198, 0.01356198638677597, -0.004133143927901983, -0.010279069654643536, 0.000549177173525095, 0.012201623059809208, -0.018212206661701202, -0.009578065946698189, 0.005007662810385227, -0.0031215474009513855, -0.0006255240878090262, 0.024389365687966347, 0.013756324537098408, -0.007835968397557735, -0.0006402729195542634, 0.007419531233608723, 0.010043088346719742, -0.05369269475340843, 0.006572774611413479, 0.003317620139569044, -0.026957398280501366, -0.02190462127327919, 0.014464268460869789, -0.01128546055406332, -0.00032859534258022904, -0.04069983959197998, 0.01261112093925476, -0.02848433516919613, -0.000185770244570449, 0.016282713040709496, -0.006715057417750359, 0.012722170911729336, 0.004955608397722244, -0.009522541426122189, -0.0032898576464504004, 0.01556088775396347, 0.24386589229106903, -0.007003093138337135, 0.00031536477035842836, 0.03628560155630112, -0.003215245669707656, 0.010327653959393501, 0.023528728634119034, -0.02344544045627117, -0.009057519026100636, 0.028220592066645622, 6.479726289398968e-05, -0.00894646905362606, 0.013915958814322948, 0.0026010002475231886, 0.00872436910867691, -0.028276117518544197, -0.05188813433051109, -0.019614214077591896, -0.026110641658306122, -0.005812775809317827, 0.014422624371945858, 0.0005335607565939426, 0.012513951398432255, -0.005250584799796343, 0.021515944972634315, 0.006579715292900801, -0.024514297023415565, 0.0017958873650059104, 0.02779027260839939, 0.025833016261458397, 0.006683824583888054, -0.01922553963959217, 0.010730210691690445, 0.007676334120333195, -0.027304429560899734, -0.01858700066804886, 0.020294396206736565, 0.02636050432920456, 0.01668526977300644, 0.013027558103203773, -0.011271579191088676, -0.01451979298144579, -0.024389365687966347, -0.011077241972088814, -0.02612452208995819, 0.013513402082026005, 0.0007261631544679403, -0.02912287414073944, -0.015019518323242664, 0.013020617887377739, -0.01283322088420391, -0.01318025216460228, 0.004261545371264219, 0.027776392176747322, -0.0038416374009102583, -0.01622718758881092, -0.011077241972088814, -0.007273777853697538, -0.008370396681129932, -0.002495155669748783, 0.026263335719704628, 0.024292197078466415, -0.02812342345714569, 0.02537493407726288, -0.03445327654480934, 0.0004702275327872485, -0.01692125014960766, 0.01272911112755537, 0.004723097197711468, -0.013249658048152924, 0.01578298769891262, -0.007988662458956242, 0.0012874864041805267, 0.0003865062026306987, 0.004369125235825777, -0.03103848733007908, 0.031510449945926666, 0.030760861933231354, 0.004986841231584549, 0.041643764823675156, -0.016615862026810646, 0.0011321898782625794, -0.017823532223701477, 0.006340263411402702, -0.017934581264853477, -0.023070646449923515, 0.016490930691361427, 0.005729488097131252, -0.0025645620189607143, -0.027304429560899734, -0.0005977615364827216, -0.018753575161099434, -0.010487288236618042, -0.016282713040709496, -0.0029480315279215574, 0.019600331783294678, -0.03159373626112938, 0.02112727053463459, -0.013985364697873592, -0.0022279415279626846, -0.02179357036948204, 0.050666581839323044, 0.021071745082736015, 0.016324356198310852, -0.021196676418185234, 0.010987013578414917, -0.013124726712703705, 0.0025992649607360363, -0.004143554717302322, -0.03223227337002754, 0.014047830365598202, -0.024333840236067772, 0.012520892545580864, -0.003661181079223752, 0.0022886719089001417, 0.012770755216479301, -0.005930766463279724, -0.03578587621450424, 0.009543363004922867, -0.014797418378293514, 0.006215332075953484, -0.01535266824066639, 0.00536857545375824, -0.003220451297238469, -0.006756701041013002, -0.009820988401770592, -0.008870122022926807, -0.01689348742365837, 0.024153385311365128, -0.05508081987500191, 0.035424962639808655, -0.009217153303325176, 0.01356198638677597, -0.0035084872506558895, 0.01846206933259964, 0.016935132443904877, 0.007252955809235573, -0.018323257565498352, 0.005007662810385227, 0.002491685329005122, 0.017601432278752327, -0.001657942426390946, 0.021502064540982246, 0.002847392577677965, -0.01378408633172512, -0.011799067258834839, 0.021821333095431328, 0.010473406873643398, -0.000792966689914465, 0.01778188906610012, -0.03939500451087952, -0.036091264337301254, 0.0070724994875490665, 0.01544983685016632, 0.011646373197436333, 0.0007491540163755417, -0.012985914014279842, -0.023834114894270897, 0.0001351253449684009, 0.020544258877635002, -0.051194071769714355, -0.0053651053458452225, 0.023639777675271034, -0.03995025157928467, -0.012159979902207851, -0.020266633480787277, -0.18045632541179657, 0.023736946284770966, 0.02835940569639206, -0.016435407102108, 0.03778477758169174, 0.005583735182881355, 0.010022266767919064, 0.0027467533946037292, -0.0038867515977472067, -0.0061042821034789085, 0.008051128126680851, -0.003855518763884902, -0.01822608895599842, -0.00569478515535593, 0.01301367674022913, -0.005108301993459463, -0.013090023770928383, -0.015658056363463402, 0.022765258327126503, 0.013631393201649189, 0.04144942760467529, -0.021155033260583878, 0.008349575102329254, -0.015533125028014183, 0.00868272501975298, 0.02377859130501747, -0.02769310399889946, 0.0042199017480015755, -0.0035119575913995504, -0.013277420774102211, -0.001037623849697411, 0.009473957121372223, 0.010056969709694386, 0.0001405477087246254, 0.005351223982870579, -0.03181583806872368, -0.000520547095220536, 0.014769655652344227, -0.015338786877691746, -0.007048207335174084, -0.0065276604145765305, 0.02425055392086506, 0.015810750424861908, 0.010376238264143467, 0.006548482459038496, 0.013353767804801464, 0.01378408633172512, 0.0038104045670479536, -0.0069267465732991695, 0.0009352495544590056, 0.02945602312684059, -0.050638820976018906, -0.01658809930086136, -0.009043637663125992, 0.0005543826264329255, 0.006170217879116535, -0.017198875546455383, 0.017532026395201683, 0.013284360989928246, -0.02801237255334854, -0.01028600987046957, -0.00878683477640152, 0.021196676418185234, 0.017171112820506096, 0.006107752211391926, -0.007079440169036388, -0.048306770622730255, 0.024306077510118484, 0.003341912291944027, 0.002771045546978712, 0.010098612867295742, -0.04103299230337143, 0.0014740157639607787, -0.0007309348438866436, 0.00514647550880909, -0.0005079671973362565, -0.01922553963959217, -0.015769105404615402, 0.007211312185972929, 0.005840538069605827, -0.02358425222337246, 0.04169929027557373, -0.0001917348417919129, 0.010355416685342789, 0.0004533097380772233, 0.008224643766880035, -0.016532575711607933, -0.015477599576115608, -0.023292746394872665, -0.020419327542185783, 0.031760312616825104, -0.004344833083450794, -0.003897162387147546, -0.010077791288495064, 0.013443996198475361, 0.01007085107266903, -0.00634373351931572, -0.010882903821766376, -0.022265532985329628, -0.005309580359607935, 0.01411723718047142, -0.00984875112771988, -0.02837328612804413, 0.007627749815583229, 0.04761270433664322, -0.0002099539851769805, -0.02003065124154091, 0.015241618268191814, 0.04572485387325287, -0.011320163495838642, -0.007634690497070551, 0.016379881650209427, 0.0010489023989066482, -0.012881805188953876, 0.0007899301708675921, 0.03778477758169174, -0.005243644118309021, -0.03456432744860649, -0.007246015127748251, 0.014575318433344364, 0.0023962517734616995, -0.010993954725563526, 0.00862025935202837, 0.02513895370066166, -0.010015325620770454, -0.01077879499644041, -0.03473090007901192, 0.018767457455396652, 0.01579686813056469, 0.005125653464347124, 0.0014236962888389826, 0.03456432744860649, -0.0038832812570035458, 0.015977324917912483, 0.0006693367613479495, 0.006267386954277754, -0.004497526679188013, -0.030622050166130066, 0.0022522336803376675, 0.00807194970548153, 0.0029011822771281004, 0.01823996938765049, -0.014353218488395214, -0.021515944972634315, -0.023945165798068047, 0.009210213087499142, -0.002928945003077388, -0.03056652471423149, -0.006191039923578501, -0.017379332333803177, -0.007075970061123371, -0.020641427487134933, -0.009855691343545914, 0.026874110102653503, 0.011757423169910908, -0.006364555563777685, 0.014658605679869652, -0.02001677080988884, -0.0054588038474321365, -0.014380980283021927, 0.012035048566758633, -0.008731309324502945, -0.01556088775396347, -0.019975125789642334, 0.030177848413586617, -0.02422279119491577, -0.0074958777986466885, 0.008085831068456173, -0.006156336981803179, -0.013256599195301533, 0.0016995861660689116, 0.009203271940350533, -0.004212961066514254, 0.011042539030313492, -0.02090517058968544, -0.00933514442294836, -0.03101072460412979, -0.005156886298209429, -0.0324266143143177, -0.006378436926752329, 0.021599233150482178, -0.014283811673521996, 0.015269380994141102, 0.014589199796319008, -0.025638679042458534, 0.005698255263268948, -0.006263916380703449, -0.014769655652344227, -0.019100608304142952, 0.016504812985658646, 0.02066919021308422, 0.010279069654643536, 0.0026981690898537636, 0.01118135079741478, 0.012770755216479301, -0.016032850369811058, -0.0010489023989066482, 0.03425893932580948, -0.028956299647688866, 0.03459208831191063, -0.016962893307209015, -0.01958645135164261, -0.01658809930086136, -0.03112177550792694, 0.003734057769179344, -0.03145492449402809, -0.0034182590898126364, -0.013839611783623695, -0.017420975491404533, 0.01579686813056469, 0.02978917397558689, 0.023709183558821678, 0.00994591973721981, 0.006569304037839174, -0.0006207523983903229, -0.03559153899550438, 0.009508660063147545, 0.018517594784498215, -0.0004624193243216723, -0.0004426819214131683, -0.01055669505149126, -0.0025107720866799355, 0.01789293810725212, -0.004417709540575743, -0.0022262062411755323, 0.033203963190317154, -0.015408193692564964, -0.018101157620549202, -0.09694668650627136, 0.01835102029144764, -0.016532575711607933, -0.020391564816236496, 0.006919805891811848, 0.012389020062983036, 0.020308276638388634, 0.0032933277543634176, 0.004362184554338455, 0.01780964992940426, -0.050638820976018906, 0.019822433590888977, -0.007454234175384045, -0.026527078822255135, -0.02780415490269661, 0.0024378953967243433, 0.025180596858263016, 0.01792070083320141, 0.03134387359023094, 0.019961245357990265, -0.0033731451258063316, -0.004577343817800283, 0.004490585997700691, 0.013610570691525936, -0.03872870281338692, 0.04683535546064377, -0.0012536508729681373, 0.025333290919661522, -0.005372046027332544, -0.004035974852740765, 0.0024205439258366823, -0.03156597539782524, 0.01145203597843647, 0.0006294281920418143, -0.002422278979793191, -0.0012727376306429505, -0.011597788892686367, 0.002307758666574955, 0.010105554014444351, 0.015810750424861908, -0.018517594784498215, -0.03148268908262253, 0.002814424457028508, -0.004310129676014185, -0.01814280077815056, 0.005288758315145969, -0.026527078822255135, 0.0066387103870511055, 0.03806240111589432, 0.013374589383602142, 0.04025563970208168, 0.001762919477187097, -0.023723065853118896, -0.015852393582463264, -0.0063506742008030415, -0.05447004735469818, 0.009036697447299957, 0.004462823737412691, 0.010966191999614239, -0.0026894931215792894, 0.024056214839220047, 0.004372595343738794, 0.011618610471487045, -0.0029914104379713535, 0.004802914336323738, 0.016324356198310852, -0.01801786944270134, -0.007745740469545126, 0.03178807348012924, -0.03736833855509758, -0.05791259929537773, 0.005441451910883188, -0.026776941493153572, 0.01095925085246563, 0.007912315428256989, 0.007933137007057667, -0.026638129726052284, -0.003945746924728155, -0.00878683477640152, 0.016504812985658646, -0.0052818176336586475, -0.007829028181731701, -0.023042883723974228, 0.0070551480166614056, 0.014811299741268158, 0.03636888787150383, -0.04000577703118324, 0.0017820061184465885, 0.004605106543749571, 0.009938978590071201, -0.03015008755028248, -0.0022279415279626846, 0.023181697353720665, 0.028414929285645485, 0.023098409175872803, -0.009744641371071339, 0.00212556729093194, -0.014839062467217445, 0.02502790279686451, 0.01451979298144579, 0.011007835157215595, -0.012763814069330692, -0.011209113523364067, -0.03237108886241913, -0.030094562098383904, -0.011105004698038101, -0.018961794674396515, -0.05394255742430687, 0.019989008083939552, 0.014311574399471283, -0.012083632871508598, 0.03681308776140213, -0.009057519026100636, 0.015810750424861908, -0.015033399686217308, -0.008078890852630138, 0.008974231779575348, -0.03026113659143448, -0.018836863338947296, 0.02180745266377926, 0.007082910742610693, 0.028650911524891853, 0.024042334407567978, -0.002422278979793191, 0.04514184221625328, -0.022529277950525284, 0.008543912321329117, -0.017518144100904465, 0.021085627377033234, 0.0066560618579387665, -0.02434772253036499, 0.024097859859466553, -0.0027189909014850855, -0.00839815940707922, 0.005684373900294304, -0.0012874864041805267, 0.009286560118198395, -0.0041539655067026615, -0.02345932088792324, 0.07651347666978836, 0.005198529921472073, 0.00469533447176218, -0.0014800888020545244, -0.003775701392441988, -0.0011148382909595966, 0.004212961066514254, 0.006326382048428059, -0.01033459510654211, -0.009598888456821442, 0.019739145413041115, -0.006631769705563784, 0.005996702238917351, -0.00994591973721981, 0.005573323927819729, 0.013471757993102074, -0.007752681151032448, 0.02959483675658703, 0.014186643064022064, 0.009501718915998936, 0.022973477840423584, -0.0051881191320717335, -0.0036889435723423958, -0.0009916421258822083, -0.014977874234318733, 0.010862082242965698, 0.030399950221180916, -0.006770582403987646, 0.009918157011270523, -0.0032568895258009434, 0.01711558736860752, 0.005063187796622515, -0.016379881650209427, -0.007717978209257126, -0.0026946987491101027, 0.011202173307538033, -0.008307931013405323, -0.00322392163798213, 0.03867317736148834, -0.004455883055925369, -0.0016883077332749963, 0.006132044363766909, -0.02701292373239994, -0.0074958777986466885, -0.012826279737055302, 0.004674512892961502, 0.007974781095981598, -0.00480985501781106, -0.029872462153434753], "e7244407-bbd7-414f-9c02-b7d3c51f4dcd": [-0.02813994139432907, -0.022972771897912025, 0.006533946841955185, -0.023354515433311462, 0.0034152399748563766, 0.006019275169819593, -0.011581821367144585, -0.017464758828282356, -0.008071145974099636, -0.0151197649538517, 0.002517120447009802, 0.0012099901214241982, 0.005409167148172855, 0.008180215023458004, -0.01768289878964424, -0.012195337563753128, 0.010286620818078518, -0.005562546197324991, 0.024104367941617966, -0.019741585478186607, 0.025358667597174644, -0.0038515180349349976, 0.002017786493524909, -0.03877422213554382, -0.03026679717004299, 0.002174573950469494, 0.013701860792934895, -0.04098287969827652, 0.010859236121177673, -0.0014997061807662249, 0.03514765948057175, 0.008493790403008461, -0.003215847071260214, -0.014915259554982185, -0.0178192351013422, -0.0019922233186662197, 0.0049933395348489285, 0.008861900307238102, 0.000767321209423244, 0.01503796223551035, 0.018909931182861328, 0.009386797435581684, 0.005218295846134424, 0.008746013045310974, -0.022509224712848663, 0.011513653211295605, -0.00791435781866312, -0.00607721833512187, -0.015283368527889252, 0.017887404188513756, 0.0009833300719037652, 0.012413476593792439, -0.03664736449718475, -0.020000625401735306, 0.014533516019582748, 0.002360332990065217, 0.004325288813561201, 0.017178451642394066, -0.01314969640225172, -0.0049047209322452545, 0.019605249166488647, -0.004373006522655487, -0.02286370098590851, -0.002793202642351389, 0.009345895610749722, 0.011472752317786217, -0.011909030377864838, 0.010272987186908722, 0.004717257339507341, 0.008650577627122402, 0.011043290607631207, 0.035802073776721954, -0.003527717897668481, 0.006482820492237806, 0.0415554940700531, -0.01378366257995367, -0.027499156072735786, 0.006908873561769724, -0.005177394486963749, -0.0009441331494599581, -0.011520469561219215, 0.018828129395842552, 0.007982526905834675, -0.005310323089361191, 0.007655317895114422, 0.008664211258292198, -0.00847333949059248, 0.039783112704753876, 0.011275063268840313, -0.019414378330111504, -0.011275063268840313, 0.015937786549329758, 0.015433339402079582, 0.023668089881539345, -0.014656218700110912, 0.011690891347825527, -0.027744563296437263, 0.025345033034682274, -0.010804700665175915, -0.042318981140851974, 0.0011196669656783342, 0.010198001749813557, -0.018841762095689774, 0.006445327773690224, -0.04068293794989586, -0.014915259554982185, 0.048236001282930374, -6.374816439347342e-05, 0.0020041526295244694, -0.009918510913848877, -0.02034146897494793, 0.02756732515990734, -0.005876121111214161, -0.05243517830967903, -0.008357453159987926, 0.009823075495660305, 0.05355314165353775, 0.00940043106675148, -0.0037254062481224537, -0.02713104709982872, 0.018555454909801483, 0.01640133187174797, 0.020982252433896065, -0.005770460236817598, 0.017464758828282356, 0.023150010034441948, -0.007887090556323528, 0.003660646267235279, -0.0014698824379593134, -0.02571314387023449, 0.04294613003730774, 0.005760234780609608, 0.004035572987049818, -0.002552908845245838, -0.0056375316344201565, 0.006919098552316427, -0.001555945142172277, -0.010402507148683071, -0.010013947263360023, -0.0012253280729055405, 0.01350417174398899, 0.0026023308746516705, 0.0007801027968525887, -0.024227071553468704, -0.01341555267572403, 0.028767090290784836, -0.006090851966291666, 0.020655043423175812, 0.013674593530595303, 0.006499862764030695, 0.009304994717240334, -6.358839164022356e-05, -0.014710754156112671, 0.0017135846428573132, 0.005767051596194506, -0.0018763368716463447, -0.011329597793519497, 0.0036776885390281677, -0.007859823293983936, -0.002387600252404809, -0.007430362049490213, -0.0031067775562405586, 0.0029431732837110758, -0.02034146897494793, -0.005480744410306215, 0.030430400744080544, 0.006544172298163176, 0.01750566065311432, -0.008350636810064316, 0.005954515188932419, -0.010756983421742916, 0.006479412317276001, -0.0230545736849308, 0.005535278934985399, -0.007178138941526413, 0.03209371119737625, -0.004120783414691687, 0.006237414199858904, -0.01835094951093197, 0.01736932434141636, -0.01533790398389101, -0.013654142618179321, 0.01836458407342434, 0.02670840360224247, -0.010975122451782227, -0.025126894935965538, 0.018582722172141075, 0.008895983919501305, 0.0036845053546130657, 0.0001430472475476563, 0.03670189902186394, 0.034684114158153534, -0.005572771653532982, -0.020982252433896065, -0.5950834155082703, -0.02319090999662876, 0.008446072228252888, -0.004839960485696793, 0.019727952778339386, 0.020545974373817444, 0.003028383944183588, 0.023000039160251617, -0.046981703490018845, 0.02231835387647152, 0.00590338883921504, 0.020668677985668182, -0.008364270441234112, -0.0018371400656178594, -0.013361018151044846, -0.02699471078813076, 0.025658609345555305, -0.019823389127850533, -0.010088931769132614, 0.036511026322841644, -0.0001424081710865721, 0.0302395299077034, 0.0009074926492758095, 0.013620058074593544, 0.01892356388270855, 0.02983051910996437, -0.008868716657161713, -0.014588050544261932, 0.008930068463087082, 0.037656258791685104, -0.005807952955365181, 0.0151197649538517, -0.004696806892752647, -0.0008410284062847495, 0.04635455459356308, -0.013054260052740574, -0.007703036069869995, 0.03465684503316879, 0.02034146897494793, 0.051235415041446686, 0.004618413280695677, -0.017287520691752434, 0.04848140850663185, 0.012686150148510933, -0.0012628206750378013, 0.0031630166340619326, 0.008630126714706421, -0.012481644749641418, 0.011799960397183895, 0.012331674806773663, 0.0035072672180831432, -0.027880899608135223, 0.006097668781876564, -0.012802036479115486, 0.006377159617841244, 0.020273299887776375, 0.03152109682559967, -0.028030870482325554, 0.008227933198213577, -0.03719271346926689, -0.023531751707196236, -0.005559138022363186, -0.005112634506076574, 8.920481923269108e-05, -0.018146444112062454, 0.007573516108095646, -0.01172497496008873, 0.008262017741799355, 0.002293868688866496, -0.042918860912323, 0.002762526972219348, -0.004836552310734987, 0.004533202853053808, -0.016933046281337738, 0.026912909001111984, 0.04109194874763489, 0.017710166051983833, -0.0233136136084795, 0.008084779605269432, 0.017464758828282356, 0.004243486560881138, -0.00044181683915667236, -0.02006879448890686, 0.002283643465489149, 0.024336140602827072, 0.005211479030549526, -0.05358041077852249, -0.0035720274318009615, 0.009659470990300179, 0.005508011672645807, 0.02755369246006012, 0.025385934859514236, 0.010368422605097294, -0.003929911646991968, 0.002968736458569765, 0.02898523025214672, -0.026912909001111984, -0.010259353555738926, 0.018732693046331406, -0.005453476682305336, -0.02616305463016033, -0.0026040351949632168, -0.002992595313116908, -0.011036473326385021, 0.014833456836640835, -0.0007724338793195784, -0.02329997904598713, 0.014138138853013515, 0.03937410190701485, -0.015433339402079582, -0.016564935445785522, -0.04300066456198692, -0.005600038915872574, -0.0023586286697536707, 0.02514052763581276, -0.03746538609266281, 0.013088344596326351, 0.011322781443595886, 0.01180677767843008, 0.0032431145664304495, 0.015910519286990166, -0.005191028118133545, 0.00494221318513155, 0.02783999964594841, -0.007832556031644344, 0.012297590263187885, 0.023122740909457207, 0.006799804046750069, -0.02385896071791649, 0.004083290696144104, 0.002237629611045122, -0.01018436811864376, 0.008084779605269432, -0.010947855189442635, -0.0020689128432422876, -0.0277036614716053, 0.017628364264965057, -0.01046385895460844, 0.014206307008862495, -0.010450225323438644, -0.02174573950469494, -0.00611130241304636, 0.017423858866095543, 0.014887991361320019, -0.01369504351168871, -0.011643173173069954, 0.0018814494833350182, 0.0013318413402885199, -0.008152947761118412, -0.004488893318921328, -0.0013659255346283317, 0.0028511458076536655, -0.01287020556628704, 0.029448775574564934, -0.01682397536933422, 0.007273574825376272, -0.021104956045746803, -0.005985190626233816, -0.005061508156359196, -0.0151197649538517, 0.011165994219481945, -0.030048657208681107, -0.012945191003382206, 0.003132340731099248, -0.012188520282506943, -0.02373625710606575, 0.011172810569405556, -0.0020194905810058117, -0.008180215023458004, -0.02103678695857525, -0.023204544559121132, -0.0038378844037652016, 0.010293437168002129, 0.002856258535757661, 0.01002758089452982, 0.009714005514979362, -0.01599232107400894, -0.0027880901470780373, 0.012236238457262516, -0.01087968610227108, 0.00868466217070818, 0.0017169930506497622, 0.003290832508355379, -0.0027540058363229036, 0.00657484820112586, 0.016033221036195755, 0.012713417410850525, 0.03585661202669144, -0.011104642413556576, -0.0062544564716517925, -0.006206738296896219, 0.010736532509326935, 0.0024659940972924232, 0.013047443702816963, 0.00657484820112586, 0.013388285413384438, 0.003214142983779311, 0.005020607262849808, -0.016428599134087563, 0.04572740197181702, 0.037219978868961334, 0.015283368527889252, 0.0010574632324278355, -0.005821586586534977, -0.0005491821793839335, -0.01990519091486931, 0.025072360411286354, -0.009938961826264858, 0.012413476593792439, 0.009454965591430664, 0.006622565910220146, 0.004134417045861483, -0.02629939280450344, -0.006298765540122986, 0.017614729702472687, 0.01866452395915985, -0.023422682657837868, 0.004093516152352095, -0.012393025681376457, 0.008739196695387363, 0.013756395317614079, 0.01596505381166935, 0.0026176688261330128, -0.002220587572082877, -0.01750566065311432, -0.004870636388659477, 0.014574416913092136, -0.011295514181256294, -0.004069657064974308, -0.04343694448471069, -0.017178451642394066, -0.0182418804615736, -0.008711929433047771, -0.004393457435071468, 0.019714318215847015, -0.007212223019450903, 0.02077774703502655, -0.016987580806016922, 0.005422801245003939, 0.023422682657837868, 0.005807952955365181, 0.005525053944438696, -0.011056924238801003, -0.005358040798455477, 0.006513496395200491, 0.016142291948199272, 0.068931944668293, 0.022113848477602005, -0.03462957963347435, 0.016619469970464706, -0.018773594871163368, -0.004625230096280575, -0.039483170956373215, 0.009379980154335499, 0.004345739260315895, -0.010013947263360023, 0.010170734487473965, 0.03435690328478813, 0.022563761100172997, 0.027921801432967186, 0.016564935445785522, 0.0006032908568158746, -0.02587674744427204, 0.018759960308670998, -0.002510303631424904, -0.02008242905139923, -0.0038515180349349976, -0.03351161628961563, -0.0050478745251894, -0.016755808144807816, -0.033157140016555786, -0.028167208656668663, -0.0014784034574404359, -0.004727482795715332, 0.011643173173069954, -0.0002056770317722112, 0.013865465298295021, 0.0045502446591854095, 0.0045775119215250015, -0.008616493083536625, -0.00877328123897314, -0.029039764776825905, 0.023286346346139908, 0.008766463957726955, -0.004683173261582851, -0.014029068872332573, -0.006711184978485107, 0.011063741520047188, -0.023136375471949577, 0.011295514181256294, 0.006319216452538967, -0.010054848156869411, -0.00211833487264812, 0.01711028441786766, -0.016019588336348534, -0.01764199696481228, 0.020586874336004257, -0.023381782695651054, -0.03544760122895241, -0.032284583896398544, 0.0300759244710207, 0.006193104665726423, -0.02841261401772499, -0.007716669701039791, 0.04270072281360626, 0.006298765540122986, -0.015419705770909786, -0.0007136385538615286, -0.0018064641626551747, -0.015392438508570194, -0.003568618791177869, -0.012345308437943459, 0.0001350587554043159, -0.03220278024673462, -0.007266758009791374, -0.003936728462576866, 0.0013233202043920755, -0.02075047977268696, 0.025767678394913673, -0.012542996555566788, -0.020314201712608337, -0.004816101863980293, -0.011554554104804993, -0.013006541877985, 0.02443157695233822, 0.010627462528645992, 0.003227776614949107, 0.00940043106675148, -0.03776532784104347, -0.005548912566155195, -0.0070281680673360825, -0.02034146897494793, 0.002535866806283593, -0.02259102836251259, -0.010559294372797012, 0.013817747123539448, 0.002128560096025467, -0.0018269147258251905, 0.019687050953507423, -0.003664054675027728, 0.0003408422926440835, -0.015583310276269913, 0.014765288680791855, -0.027158314362168312, 0.0034527324605733156, 0.030484935268759727, 0.01839185133576393, -0.005310323089361191, -0.0007592262118123472, -0.021091321483254433, 0.0017570420168340206, 0.03261179104447365, 0.015896884724497795, -0.0035924778785556555, -0.01016391720622778, 0.0017877179197967052, -0.023368148133158684, 0.03163016587495804, -0.01652403548359871, 0.021718472242355347, 0.01893719844520092, 0.042864326387643814, 0.0017911263275891542, 0.016714906319975853, 0.02177300676703453, 0.006448736414313316, -0.00037343535223044455, -0.020995885133743286, 0.00790754146873951, -0.00709633668884635, 0.006779353599995375, 0.01765563152730465, -0.03970131278038025, -0.03798346593976021, 0.010770617052912712, -0.01821461319923401, -0.04068293794989586, -0.003304466139525175, 0.009829891845583916, 0.010511576198041439, -0.02486785501241684, -0.002430205699056387, 0.02148669958114624, -0.020464172586798668, 0.017137551680207253, -0.03405696153640747, -0.0018337315414100885, -0.01963251642882824, -0.0006075514247640967, -0.02062777616083622, -0.0058931633830070496, -0.016469500958919525, -0.024840587750077248, -0.00201437808573246, 0.03195737302303314, -0.03372975438833237, -0.013606424443423748, -0.004488893318921328, 0.022550126537680626, 0.01074334979057312, 0.04507298767566681, 0.002810244681313634, 0.005191028118133545, 0.013040626421570778, -0.006527130026370287, -0.02684473991394043, -0.01306107733398676, -0.03223004937171936, 0.028194475919008255, -0.005289872642606497, 0.017014848068356514, -0.007818922400474548, -0.012665700167417526, 0.04013758897781372, 0.0474725142121315, -0.0007374975248239934, 0.026217589154839516, 0.008677844889461994, -0.019019000232219696, 0.004771792329847813, -0.006803212221711874, 0.017996473237872124, -0.01547424029558897, -0.003149382770061493, 0.007287208456546068, -0.049517568200826645, -0.0010847306111827493, -0.021254925057291985, -0.028439881280064583, -0.010538844391703606, 0.03811980411410332, 0.0233136136084795, 0.010082115419209003, 0.036538295447826385, 0.023559020832180977, -0.0006659206701442599, 0.016987580806016922, -0.0009901468874886632, 0.019741585478186607, 0.005259196739643812, 0.0035924778785556555, 0.0023961213883012533, -0.0020007442217320204, -0.02079137973487377, 0.02683110535144806, -0.03599294647574425, 0.007730303332209587, -0.005443251691758633, -0.01637406460940838, -0.0029568069148808718, -0.027949068695306778, -0.04466397687792778, -0.029339704662561417, 0.0023790793493390083, 0.005443251691758633, 0.028194475919008255, 0.013292849995195866, -0.012454377487301826, -0.028603486716747284, 0.018432751297950745, -0.0027744562830775976, 0.0027352594770491123, -0.02021876536309719, -0.019687050953507423, -0.02895796112716198, -0.01087286975234747, -0.005490969400852919, -0.028167208656668663, -0.015787815675139427, -0.03574753925204277, -0.021254925057291985, 0.009100489318370819, -0.007791655138134956, 0.013470088131725788, 0.011643173173069954, -0.00012451395741663873, -0.02017786353826523, -0.013954083435237408, 0.010191184468567371, -0.03517492488026619, -0.010668364353477955, -0.0056034475564956665, 0.03438417240977287, 0.03359341621398926, 0.026599332690238953, 0.02713104709982872, -0.0012841233983635902, -0.011479568667709827, 0.026640234515070915, 0.0020808421541005373, 0.0031272282358258963, 0.02882162481546402, -0.02160940133035183, 0.0019342800369486213, 0.003517492674291134, 0.022100215777754784, -0.0049115377478301525, -0.0020995885133743286, -0.021268559619784355, 0.016769440844655037, -0.009161841124296188, 0.023245444521307945, -0.006745269056409597, -0.05835220217704773, -0.008248384110629559, 0.015583310276269913, 0.017410224303603172, -0.0005048726452514529, -0.02714468166232109, -0.006786170415580273, 0.020532339811325073, -0.017014848068356514, 0.01822824589908123, 0.02655843272805214, 0.010307070799171925, -0.017969205975532532, -0.0018592947162687778, 0.004018530715256929, 0.026531165465712547, -0.03776532784104347, 0.02824901044368744, -0.022809166461229324, -0.006844113580882549, -0.0038412928115576506, -0.0011869833106175065, 0.007184955757111311, 0.002184799173846841, 0.009298178367316723, -0.0056034475564956665, 0.014642585068941116, -0.024758784100413322, 0.00015753305342514068, 0.000347020075423643, -0.009461781941354275, -0.01839185133576393, -0.022509224712848663, -0.0025682467967271805, -0.015869617462158203, 0.010048030875623226, 0.024227071553468704, 0.00434233108535409, 0.010668364353477955, -0.010450225323438644, -0.03542033210396767, -0.007273574825376272, -0.007621233817189932, 0.05917022377252579, 0.026940176263451576, 0.013442819938063622, 0.051917098462581635, 0.009230009280145168, -0.004434358328580856, -0.05328046903014183, -0.01237257570028305, -0.003314691362902522, 0.041882701218128204, 0.045836471021175385, -0.021582134068012238, 0.009100489318370819, 0.006871380843222141, 0.0034459156449884176, -0.03705637529492378, -0.007634867448359728, 0.02824901044368744, 0.03926503285765648, 0.0017127325991168618, -0.016810342669487, 0.009366346523165703, -0.02586311474442482, 0.011111458763480186, -0.021282194182276726, -0.022550126537680626, -0.015065229497849941, -0.014574416913092136, -0.009175474755465984, 0.02062777616083622, -0.006833888124674559, 0.0029465816915035248, 0.01434264425188303, 0.0015602055937051773, 0.018555454909801483, -0.011690891347825527, -0.02612215466797352, 0.02218201756477356, 0.01228395663201809, 0.02771729603409767, -0.030866678804159164, -0.02912156656384468, 0.037219978868961334, 0.006857747212052345, 0.0012099901214241982, -0.027771830558776855, -0.015610577538609505, 0.049381233751773834, -0.012236238457262516, -0.018310047686100006, -0.013790479861199856, 0.0028204701375216246, 0.032993536442518234, 0.00709633668884635, -0.009850342757999897, 0.00678276177495718, -0.008500606752932072, -0.011622722260653973, 0.014247207902371883, -0.008398354053497314, -0.004120783414691687, -0.0002309206611244008, 0.006636199541389942, -0.004795651417225599, -0.022931870073080063, -0.005289872642606497, 0.02599945105612278, -0.037928931415081024, -0.007178138941526413, -0.0091209402307868, -0.02372262440621853, -0.003803800093010068, 0.026176689192652702, -0.012563447467982769, -0.010641097091138363, 0.03730178251862526, -0.021377628669142723, 0.04561833292245865, 0.006878197658807039, 0.00854150764644146, -0.016210459172725677, 0.004652497358620167, -0.009454965591430664, -0.032175514847040176, 0.027512790635228157, -0.024554278701543808, -0.006714593153446913, -0.03323893994092941, 0.001650528865866363, 0.021268559619784355, -0.003626562189310789, 0.009011870250105858, 0.0016684230649843812, 0.02174573950469494, 0.018323682248592377, 0.0022427423391491175, -0.01666037179529667, 0.017410224303603172, 0.020805014297366142, 0.006622565910220146, 0.004509343765676022, -0.013224680908024311, 0.015324270352721214, 0.004703623708337545, -0.00855514220893383, -0.005398942157626152, -0.03841974586248398, -0.033702485263347626, -0.008091595955193043, -0.02714468166232109, -0.037656258791685104, 0.001639451482333243, -0.02192297764122486, -0.017969205975532532, -0.0156242111697793, -0.014056336134672165, 0.0004228574689477682, -0.018446385860443115, -0.0033538881689310074, 0.041310086846351624, 0.00678276177495718, 0.003926503472030163, 0.005068324971944094, -0.032857198268175125, -0.022509224712848663, -0.007294025272130966, -0.03520219400525093, -0.02287733554840088, -0.01278158649802208, 0.04850867763161659, 0.0011060332180932164, -0.03408423066139221, -0.02216838300228119, 0.008500606752932072, -0.0316028967499733, -0.010286620818078518, 0.006912281736731529, 0.01821461319923401, 0.040192123502492905, 0.015365171246230602, 0.005535278934985399, 0.0020586876198649406, -0.01653766818344593, 0.013340568169951439, -0.024936022236943245, -0.008152947761118412, -0.011418216861784458, -0.01893719844520092, -0.011786326766014099, 0.0012295886408537626, -0.016033221036195755, -0.00784618966281414, 0.018746325746178627, 0.014519882388412952, -0.023422682657837868, 0.026749303564429283, 0.013040626421570778, -0.003307874547317624, -0.014887991361320019, 0.0010097452905029058, -0.017887404188513756, 0.0013522917870432138, -0.007962075993418694, -0.027949068695306778, -0.0028051321860402822, 0.007798471953719854, 0.017914671450853348, -0.013313299976289272, -0.0006872232770547271, -0.00437641516327858, -0.017614729702472687, 0.011050107888877392, -0.02005516178905964, -0.015024328604340553, 0.011459117755293846, 0.003059059614315629, 0.0250041913241148, 0.005807952955365181, 0.003998080268502235, 0.016933046281337738, 0.004165092948824167, 0.006489637307822704, -0.027294650673866272, 0.020246032625436783, -0.02075047977268696, 0.004812693223357201, 0.02612215466797352, 0.0017485209973528981, 0.014369911514222622, -0.0089096175506711, 0.021227657794952393, -0.0043218801729381084, -0.0070077176205813885, 0.01907353475689888, -0.022700097411870956, -0.046545423567295074, 0.004645680543035269, 0.030294064432382584, -0.020150596275925636, -0.005286464001983404, -0.00346125359646976, -0.012829304672777653, -0.013599608093500137, -0.03460231050848961, 0.014738021418452263, -0.03983764722943306, 0.009843525476753712, 0.012699783779680729, 0.003394789295271039, 0.006397610064595938, 0.012761135585606098, 0.023259079083800316, -0.028930693864822388, -0.013040626421570778, 0.24671529233455658, -0.00946859922260046, 0.023559020832180977, 0.023081840947270393, -0.008214299567043781, 0.012338491156697273, 0.008500606752932072, -0.020423270761966705, -0.029857786372303963, 0.017696531489491463, -0.010620646178722382, -0.009359529241919518, -0.007771204691380262, 0.0007881978526711464, 0.011649989522993565, 0.007655317895114422, -0.011731792241334915, -0.04193723574280739, -0.004737707786262035, -0.011404583230614662, 0.00791435781866312, 0.008814182132482529, -0.0027744562830775976, -0.014383545145392418, 0.004100332967936993, 0.0015823603607714176, -0.009434514679014683, 0.02554953843355179, 0.014765288680791855, -0.0024421350099146366, -0.031875573098659515, 0.010613828897476196, -0.01839185133576393, 0.0035106756258755922, -0.010484308935701847, -0.018841762095689774, 0.03645649179816246, 0.011990832164883614, 0.0347931832075119, 0.021936610341072083, -0.0012841233983635902, -0.005477335769683123, -0.0015423113945871592, -0.010354788973927498, -0.018473653122782707, 0.0197688527405262, -0.003926503472030163, -0.006257864646613598, 0.006653241813182831, -0.005882937926799059, -0.03547486662864685, 0.0013863760977983475, 0.026053985580801964, 0.004625230096280575, 0.012692967429757118, -0.0100957490503788, 0.03053946979343891, 0.009223192930221558, 0.014710754156112671, -0.005732967518270016, -0.017860136926174164, 0.027308285236358643, -0.018841762095689774, 0.010995572432875633, -0.03517492488026619, -0.009509500116109848, -0.043600548058748245, 0.004465034231543541, -0.0002969588676933199, -0.012890655547380447, 0.007614417001605034, -0.016169559210538864, -0.02612215466797352, -0.0004362781473901123, -0.03492951765656471, -0.022522859275341034, 0.04534566029906273, -0.0002339030324947089, 0.023231811821460724, 0.027349187061190605, -0.009659470990300179, -0.013101978227496147, 0.0003730093012563884, -0.0002594662073533982, 0.0024165718350559473, -0.039892181754112244, 0.030294064432382584, -0.004877453204244375, -0.02418616972863674, 0.03261179104447365, -0.016278628259897232, -0.025617707520723343, 0.01881449483335018, 0.0017962389392778277, 0.02117312327027321, 0.008330185897648335, -0.0001364434283459559, 0.00657484820112586, -0.001898491638712585, -0.00044352104305289686, -0.021977512165904045, 0.008889167569577694, 0.03675643354654312, 0.011390949599444866, -0.004669539630413055, -0.0008474191999994218, -0.006731635425239801, -0.0030573555268347263, 0.013940449804067612, -0.009870792739093304, -0.0030505387112498283, -0.008234750479459763, 0.012393025681376457, -0.0027557099238038063, 0.011315964162349701, 0.004188952036201954, -0.019032634794712067, -0.02430887334048748, -0.007934808731079102, 0.0063362582586705685, -0.012147619388997555, -0.015855984762310982, -0.002251263475045562, -0.007471263408660889, -0.036374691873788834, -0.0245815459638834, -0.02470424957573414, -0.01567874662578106, 0.0026824288070201874, -0.014724387787282467, 0.024772418662905693, -0.02813994139432907, 0.010804700665175915, 0.011125092394649982, 6.806194869568571e-05, -0.007655317895114422, -0.0036742801312357187, -0.016346797347068787, 0.0012082859175279737, 0.0010693927761167288, -0.005559138022363186, 0.002643232000991702, 0.001104329014196992, -0.004284387920051813, -0.00047036237083375454, 0.0025784720201045275, -0.006540763657540083, -0.00896415300667286, -0.001688873628154397, -0.008180215023458004, -0.039183229207992554, -0.007607600186020136, 0.006520313210785389, 0.003779941238462925, -0.0024319097865372896, -0.013470088131725788, -0.02456791326403618, -0.02966691367328167, 0.015569676645100117, 0.019114436581730843, -0.032993536442518234, 0.011350048705935478, 0.027594592422246933, -0.014369911514222622, 0.004870636388659477, -0.03492951765656471, -0.17374777793884277, 0.017723800614476204, 0.038937825709581375, -0.018446385860443115, 0.020859548822045326, -0.026176689192652702, 0.00724630756303668, 0.006131752859801054, -0.005211479030549526, -0.03866514936089516, 0.013340568169951439, -0.0037288148887455463, 0.002171165542677045, 0.005842037033289671, -0.007962075993418694, 0.0018371400656178594, -0.0032925365958362818, -0.002217179164290428, 0.04717257618904114, 0.02201841212809086, 0.02657206542789936, -0.026803838089108467, 0.001968364231288433, 0.034547775983810425, 0.014588050544261932, 0.015201566740870476, -0.008262017741799355, -0.022522859275341034, 0.019032634794712067, -0.013026992790400982, -0.006632791366428137, 0.0014997061807662249, 0.013183780014514923, -0.00759396655485034, -0.006977041717618704, 0.0019598433282226324, 0.01341555267572403, -0.010825151577591896, -0.01580144837498665, 0.00777802150696516, 0.0018388442695140839, 0.031193887814879417, 0.014383545145392418, -0.014083604328334332, 0.005191028118133545, 0.022236552089452744, 0.0056716157123446465, -0.019182605668902397, -0.0036129283253103495, -0.013708677142858505, 0.005467110313475132, -0.010797884315252304, 0.0058863465674221516, -0.01753292791545391, 0.03473864868283272, 0.010020763613283634, -0.013374651782214642, 0.007382644340395927, 0.0038549264427274466, 0.004011713899672031, 0.010416140779852867, -0.015297002159059048, 3.3525036997161806e-05, 0.006857747212052345, -0.009448148310184479, -0.020859548822045326, -0.01795557327568531, 0.03236638382077217, -0.034547775983810425, -0.01350417174398899, 0.006428285967558622, -0.017737433314323425, 0.01540607213973999, 0.0013659255346283317, 0.009059588424861431, 0.023968029767274857, -0.015147032216191292, 0.019986992701888084, 0.017042115330696106, -0.017901036888360977, -0.028930693864822388, 0.024472476914525032, 0.010457041673362255, -0.002087659202516079, 0.03261179104447365, -0.008350636810064316, -0.0045570614747703075, 0.002171165542677045, -0.02912156656384468, -0.04959937185049057, 0.03220278024673462, -0.011295514181256294, 0.006397610064595938, -0.014110871590673923, -0.01754656247794628, 0.014110871590673923, -0.007798471953719854, -0.014519882388412952, -0.012365758419036865, -0.017342057079076767, 0.011977198533713818, -0.0017255141865462065, -0.013115611858665943, 0.01287020556628704, 0.036674629896879196, 0.023122740909457207, -0.03713817894458771, 0.03334801271557808, 0.0331026054918766, 0.02091408334672451, -0.020818646997213364, 0.010954671539366245, 0.0073758275248110294, 0.012911106459796429, 0.011234162375330925, 0.016633104532957077, 0.0035140840336680412, -0.014165406115353107, 0.02316364273428917, 0.025890382006764412, -0.00713042076677084, -0.029748715460300446, 0.0062510478310287, 0.021227657794952393, 0.011909030377864838, -0.01668763905763626, -0.05172622948884964, -0.01892356388270855, 0.024499744176864624, 0.025767678394913673, -0.007518981117755175, 0.051344484090805054, -0.00656462274491787, 0.03408423066139221, -0.010416140779852867, 0.019278040155768394, 0.007887090556323528, -0.02642209455370903, -0.013647325336933136, -0.008977786637842655, -0.0014971498167142272, 0.004335514269769192, 0.00045928501640446484, -5.595272341452073e-06, -0.012038550339639187, 0.019019000232219696, -0.01810554228723049, 0.0025188245344907045, 0.02443157695233822, -0.01075016614049673, 0.002377375029027462, -0.007553065195679665, -0.04278252646327019, 0.01948254555463791, 0.005170577671378851, -0.005409167148172855, 0.04193723574280739, -0.009066405706107616, -0.012979274615645409, -0.01708301529288292, 0.012263505719602108, -0.015378804877400398, -0.009080039337277412, -0.010920586995780468, 0.03307533636689186, -0.027090145274996758, -0.024417942389845848, 0.0028971596620976925, 0.01679670810699463, -0.002017786493524909, -0.004038981162011623, -0.03334801271557808, -0.010088931769132614, 0.00975490640848875, 0.017342057079076767, -0.029312437400221825, -0.03304807096719742, -0.0005236190045252442, 0.009973045438528061, -0.02090045064687729, 0.03719271346926689, 0.018269147723913193, 0.0037526737432926893, 0.002796611050143838, -0.028876159340143204, 0.008316552266478539, 0.011479568667709827, -0.0010301958536729217, -0.010218452662229538, 0.021691204980015755, 0.018623623996973038, 0.01462895143777132, -0.020464172586798668, -0.01582871563732624, 0.019537080079317093, -0.014642585068941116, -0.010361606255173683, 0.03438417240977287, -0.0066702840849757195, 0.018160078674554825, -0.026053985580801964, -0.012965640984475613, -0.014710754156112671, -0.02332724630832672, 0.03929230198264122, 0.00013452619896270335, -0.012604348361492157, 0.0013258765684440732, -0.006441919598728418, -0.015092496760189533, 0.02613578736782074, 0.017042115330696106, -0.006370342802256346, 0.014860724098980427, 0.005095592234283686, -0.024813320487737656, 0.012890655547380447, 0.002944877604022622, 0.0034834083635360003, -0.021991144865751266, 0.01694667898118496, 0.004127600230276585, -0.010191184468567371, -0.0070213512517511845, -0.004093516152352095, 0.03798346593976021, -0.045836471021175385, -0.022795533761382103, -0.09041864424943924, 0.022372888401150703, -0.009264093823730946, 0.004035572987049818, 0.030621271580457687, 0.0055966307409107685, 0.02344994992017746, -0.006278315093368292, -0.001304573961533606, -0.01934620924293995, -0.022931870073080063, 0.010354788973927498, 0.009414064697921276, -0.034247834235429764, -0.028303544968366623, -0.018269147723913193, 0.03081214427947998, 0.026899274438619614, 0.020164230838418007, 0.012379392050206661, 0.008616493083536625, 0.00868466217070818, 0.026885639876127243, 0.00017436213965993375, -0.01570601388812065, 0.02106405422091484, 0.01412450522184372, 0.023790793493390083, 0.0010796179994940758, -0.028494415804743767, -0.0020808421541005373, -0.005088775418698788, 0.003960587549954653, 0.004185543395578861, 0.01081833429634571, -0.0012057296698912978, -0.010041214525699615, 0.011404583230614662, 0.03026679717004299, 0.034984052181243896, -0.012836121022701263, -0.015351537615060806, 0.010654730722308159, -0.014029068872332573, -0.016919411718845367, 0.0106001952663064, -0.001105181174352765, -0.0009483937174081802, 0.02782636508345604, 0.0361565500497818, 0.0009083447512239218, 0.006602115463465452, -0.023354515433311462, -0.02572677657008171, 0.002293868688866496, -0.03021226078271866, 0.004141233861446381, 0.0008256904548034072, -0.014438079670071602, -0.00709633668884635, 0.01709664985537529, 0.013361018151044846, 0.005824994761496782, 0.0015576493460685015, -0.0006471743108704686, -0.013361018151044846, -0.028330812230706215, -0.005252379924058914, 0.018978100270032883, -0.0030846227891743183, -0.02627212554216385, -0.02545410394668579, -0.014397178776562214, 0.0031868754886090755, 0.0001294135581701994, -0.007982526905834675, -0.01780560240149498, 0.012413476593792439, -0.021391263231635094, 0.015651479363441467, 0.009052771143615246, -0.013524622656404972, -0.046136412769556046, -0.0022614886984229088, 0.02852168306708336, -0.011384133249521255, -0.015201566740870476, 0.03067580796778202, -0.01611502468585968, 0.012386209331452847, -0.0008525318116880953, 0.006850930396467447, 0.0009748089942149818, 0.011486385948956013, 0.008609676733613014, 0.030457668006420135, -0.0030028207693248987, -0.0022563759703189135, 0.013531439006328583, 0.0007059696363285184, 0.010559294372797012, -0.01456078328192234, -0.011779510416090488, -0.01822824589908123, -0.01863725669682026, 0.016224093735218048, -0.02372262440621853, -0.04591827467083931, -0.008296101354062557, 0.02485422044992447, 0.011820411309599876, 0.025085993111133575, -0.019959725439548492, -0.0002189911756431684, -0.008050695061683655, 0.01059337891638279, -0.015569676645100117, -0.007668951991945505, -0.03209371119737625, 0.03165743127465248, 0.025685876607894897, 0.009938961826264858, 0.03558393567800522, -0.02741735428571701, 0.021432163193821907, -0.012686150148510933, 0.023708989843726158, -0.029912320896983147, -0.007887090556323528, -0.0073690107092261314, -0.017287520691752434, 0.005378491710871458, -0.03233911842107773, -0.009264093823730946, -0.015719646587967873, -0.0038447012193500996, 0.00557958846911788, 0.011731792241334915, -0.006257864646613598, 0.08060238510370255, 0.011350048705935478, -0.0013505875831469893, 0.0009986679069697857, -0.007955259643495083, -0.003953770734369755, 0.013190597295761108, 0.001451136078685522, 0.0024063466116786003, -0.013919999822974205, 0.00441049924120307, 0.003629970597103238, -0.014315376989543438, -0.031030282378196716, -0.004216219298541546, -0.014451713301241398, -0.03501132130622864, 0.027949068695306778, -0.012345308437943459, 0.01865089125931263, 0.049272164702415466, 0.0036163367331027985, -0.0073690107092261314, 0.006680509075522423, -0.002779569011181593, 0.01075016614049673, 0.02372262440621853, -0.007389461155980825, -0.0026619783602654934, -0.007089519873261452, -0.0014187560882419348, -0.00072897644713521, -0.01533790398389101, -0.03457504138350487, -0.016483133658766747, 0.004417316056787968, 0.01278158649802208, 0.004857002757489681, 0.03713817894458771, 0.013933633454144001, -0.0070077176205813885, 0.005531870760023594, -0.04030119255185127, -0.02767639420926571, -0.0010319000575691462, -5.538687400985509e-05, -0.004192360211163759, -0.014151772484183311, -0.022127483040094376], "9c9867a3-6bc3-4544-8032-094305ccc606": [-0.013830034993588924, -0.0072984108701348305, -0.004304458852857351, -0.00574044045060873, -0.010581649839878082, 0.011613326147198677, -0.01323751825839281, 0.007939722388982773, -0.015015068463981152, -0.00798154715448618, 0.004572834353893995, 0.0056672473438084126, -0.014931418932974339, -0.005789236165583134, 0.007256586104631424, -0.021707020699977875, 0.03200984001159668, -0.024272268638014793, 0.03563464805483818, -0.04112762585282326, -0.0008669912349432707, 0.016966888681054115, -0.0034662222024053335, -0.0031002562027424574, -0.01875140890479088, -0.00970333069562912, 0.008838953450322151, -0.023630958050489426, 0.0018908251076936722, -0.0146804703399539, 0.0183610450476408, 0.00014192079834174365, -0.010449204593896866, -0.008643771521747112, -0.006305073853582144, -0.017622141167521477, -0.010030957870185375, 0.0021435159724205732, -0.01113234180957079, -0.005158380139619112, 0.004757559858262539, -0.00896442774683237, 0.031340643763542175, 0.011613326147198677, -0.032929982990026474, 0.008845924399793148, -0.0312848761677742, 0.003816504031419754, -0.019783085212111473, 0.010546796023845673, 0.01084653940051794, 0.007772423792630434, -0.031591590493917465, -0.03259538486599922, -0.00185771391261369, 0.008469502441585064, -0.028775395825505257, 0.02443956770002842, -0.02252957411110401, -0.008664684370160103, 0.012770475819706917, 0.011320552788674831, -0.01221978385001421, 0.02817590907216072, -0.0005171450320631266, 0.011759712360799313, -0.033041514456272125, 0.015656379982829094, -0.026530804112553596, -0.0033006661105901003, 0.024495333433151245, 0.021734904497861862, 0.018124038353562355, -0.008594976738095284, 0.036192309111356735, 0.0012974371202290058, -0.0030950279906392097, -0.012902921065688133, -0.008901691064238548, 0.003243157174438238, 0.014987185597419739, -0.011083546094596386, -0.0068906196393072605, -0.005834545940160751, 0.006995181553065777, 0.011104458943009377, -0.006392208859324455, 0.01413674931973219, 0.013063249178230762, -0.020326806232333183, 0.006855765823274851, 0.01629769243299961, 0.011864273808896542, 0.02310117706656456, -0.011878215707838535, -0.01035858504474163, -0.004806355573236942, 0.008643771521747112, 0.006583905313163996, -0.03624807670712471, -0.0072635565884411335, 0.0016320347785949707, -0.021414248272776604, -0.0006299845990724862, -0.018695641309022903, 5.979625348118134e-05, 0.01847257651388645, -0.008295232430100441, 0.003286724677309394, -0.009877600707113743, 0.0008412864990532398, 0.02357519045472145, -0.002800512360408902, -0.01394156739115715, -0.026014965027570724, -0.02473234012722969, 0.011104458943009377, -0.016534699127078056, -0.0033337774220854044, 0.003096770728006959, 0.019560018554329872, 0.02364489808678627, 0.027855252847075462, -0.01413674931973219, -0.001908252015709877, -0.01113234180957079, -0.019685493782162666, 0.019281188026070595, -0.0031577651388943195, -0.011662120930850506, -0.0003250128065701574, -0.008357970044016838, 0.016827471554279327, 0.0077305990271270275, -0.0126937972381711, 0.0086716553196311, -0.0076260375790297985, -0.013244489207863808, -0.017357252538204193, -0.01838892698287964, 0.004433418624103069, 0.03867390751838684, -0.029890721663832664, -0.00523157324641943, -0.0017644796753302217, 0.000948026601690799, 0.017970681190490723, 0.011592413298785686, -0.008908662013709545, 0.0008103536092676222, 0.00934085063636303, -0.015907328575849533, 0.026488978415727615, -0.0034226549323648214, 0.0063294717110693455, 0.029277291148900986, 0.013830034993588924, 0.007856073789298534, -0.006876678206026554, -0.005618451628834009, 0.01515448372811079, -0.003645719960331917, 0.02516452968120575, 0.020215272903442383, -0.0044264476746320724, 0.027729777619242668, -0.009800922125577927, 0.022111326456069946, 0.015475139953196049, 0.0016686313319951296, 0.0035794975701719522, 0.02618226408958435, -0.030504150316119194, 0.020145565271377563, -0.00010178433876717463, 0.0433025099337101, 0.004342798143625259, 0.005639364011585712, -0.014415580779314041, -0.034630853682756424, -0.03145217522978783, -0.018528344109654427, 0.009556944482028484, -0.000493182975333184, -0.008260378614068031, 0.010985955595970154, 0.025262121111154556, 0.020298922434449196, 0.01933695375919342, -0.006221424322575331, 0.033153049647808075, 0.021916143596172333, 0.00854618102312088, 0.004740132950246334, -0.6058447360992432, -0.017608199268579483, 0.022111326456069946, 0.009584827348589897, 0.009257201105356216, -0.001592824119143188, 0.003708456875756383, -0.004123218823224306, -0.016646232455968857, 0.021679136902093887, -0.0057230135425925255, 0.002919015707448125, -0.015921270474791527, -0.014053099788725376, -0.0026889799628406763, -0.01521025039255619, 0.01647893339395523, -0.010804714635014534, 0.015015068463981152, 0.013837005943059921, -0.01705053634941578, 0.02121906541287899, -0.021971911191940308, -0.004060481674969196, 0.01582367904484272, 0.0039594052359461784, -0.0030183494091033936, -0.035718295723199844, -0.021916143596172333, 0.006082009058445692, -0.026712043210864067, 0.02495540678501129, 0.0004905689274892211, -0.010295847430825233, 0.06770025193691254, -0.008992311544716358, -0.028691746294498444, 0.011815479025244713, 0.004952741786837578, 0.0294724740087986, -0.010400409810245037, -0.02443956770002842, 0.011243874207139015, -0.002117375610396266, 0.0198388509452343, -0.0015353151829913259, 0.012840183451771736, -0.027255764231085777, 0.024885697290301323, 0.017217835411429405, -0.013704560697078705, -0.018347103148698807, -0.0008983597508631647, -0.0011728344252333045, 0.0027464888989925385, -0.0015971808461472392, 0.028482623398303986, -0.018444694578647614, 0.005029420368373394, 0.008309174329042435, -0.00919446349143982, 0.005325678735971451, -0.02158154733479023, 0.0024171192198991776, -0.037530701607465744, 0.0009253715397790074, -0.024104969576001167, 0.01281927153468132, 0.01654864102602005, -0.014387697912752628, -0.0036561761517077684, 0.003248385153710842, 0.003659661393612623, -0.002432803623378277, 0.03214925527572632, 0.012414965778589249, 0.017873089760541916, -0.02600102312862873, -0.02908211015164852, 0.01281927153468132, -0.0025513069704174995, -0.013056278228759766, -0.023923730477690697, 0.022571397945284843, 0.010379496961832047, -0.01741301827132702, -0.039956532418727875, -0.0011440798407420516, 0.007863043807446957, 0.015363607555627823, 0.0002007367875194177, -0.0065072267316281796, 0.00925023015588522, -0.01745484210550785, 0.03067144937813282, 0.017691848799586296, -0.034853920340538025, -0.005973961669951677, 0.01035858504474163, 0.014708354137837887, -0.0295840073376894, 0.005503433756530285, 0.012268579564988613, -0.006716350093483925, 0.020466221496462822, -0.007674832828342915, -0.006102921441197395, -0.008267349563539028, 0.042633313685655594, -0.026461094617843628, 0.009006252512335777, -0.01323751825839281, -0.0050607891753315926, -0.024648692458868027, 0.01727360300719738, -0.032316554337739944, 0.030364735051989555, 0.0030880572739988565, 0.009368733502924442, 0.009229317307472229, 0.03663843870162964, 0.0062353662215173244, 0.04229871556162834, -0.01515448372811079, -0.006793028675019741, 0.024578982964158058, -0.001794976880773902, -0.019309071823954582, -0.012993540614843369, 0.0029817528557032347, -0.011752741411328316, -0.013927626423537731, 0.0294724740087986, -0.017608199268579483, 0.011780624277889729, -0.020326806232333183, 0.012547411024570465, -0.008518298156559467, 0.02983495406806469, -0.0001342965115327388, -0.026600511744618416, 0.007082316558808088, 0.00860194768756628, 0.0023735519498586655, -0.029556123539805412, -0.02495540678501129, 0.004402049817144871, 0.002845822600647807, -0.003994259051978588, -0.0027691437862813473, -0.0005946949822828174, 0.003917580470442772, -0.019141772761940956, 0.021023884415626526, 0.008748333901166916, -0.0038339311722666025, 0.004924858920276165, -0.003945463802665472, -0.016939004883170128, -0.011257816106081009, -0.0009776523802429438, 0.002350896829739213, -0.029918603599071503, 0.008253407664597034, -0.01164120901376009, -0.01908600516617298, -0.007667862344533205, 0.00583803141489625, -0.016939004883170128, -0.04218718409538269, -0.020034031942486763, -0.03131275996565819, 0.01279835868626833, 0.020438337698578835, 0.02502511441707611, -0.0003633520973380655, 0.0037572523579001427, 0.022655047476291656, -0.00784213189035654, -0.005695130210369825, 0.0064688874408602715, -0.018347103148698807, 0.006277190987020731, -0.01502900943160057, -0.013084161095321178, 0.001087442273274064, 0.035829827189445496, 0.02910999394953251, -0.012359200045466423, 0.016813529655337334, -0.02172096259891987, 0.03454720601439476, -0.013704560697078705, 0.0033268064726144075, 0.020912351086735725, -0.007057918701320887, 0.019797025248408318, 0.017789440229535103, 0.016701998189091682, 0.03103392943739891, 0.03306939825415611, 0.0048934901133179665, 0.009647564962506294, -0.013007482513785362, 0.020452279597520828, -0.036192309111356735, -0.004792413674294949, -0.011160224676132202, 0.004757559858262539, -0.005736954975873232, -0.014143720269203186, -0.05161168426275253, -0.00833008624613285, -0.026447154581546783, -0.011313581839203835, 0.038729675114154816, -0.02002009190618992, 0.0045100972056388855, -0.00736811850219965, 0.017859147861599922, -0.004820297006517649, -0.004628600552678108, 0.016632290557026863, -0.03541158139705658, -0.008204612880945206, -0.009103843942284584, -0.021177241578698158, 0.022947819903492928, 0.01049800030887127, -0.010560737922787666, -0.016339518129825592, -0.014875652268528938, -0.0031699638348072767, 0.02752065472304821, 0.02056381292641163, -0.053758684545755386, 0.03493756800889969, -0.023352125659585, 0.03978923335671425, 0.01691112108528614, 0.015851562842726707, 0.015266016125679016, -0.00858103483915329, 0.007023064885288477, 0.013530291616916656, 0.0025565349496901035, 0.061510197818279266, 0.026461094617843628, -0.000573782657738775, 0.0218743197619915, -9.862570004770532e-05, -0.008622859604656696, -0.00040430546505376697, -0.0067860581912100315, 0.002011071192100644, -0.03859025985002518, 0.015837620943784714, 0.0009854945819824934, 0.016283750534057617, 0.04001230001449585, -0.003490620059892535, 0.03569041192531586, 0.0012956943828612566, -0.012331316247582436, 0.008344028145074844, -0.004771501291543245, -0.006897590588778257, -0.02527606301009655, -0.023435775190591812, -0.014199486933648586, -0.03164735808968544, -0.022250741720199585, 0.01607462763786316, -0.017761556431651115, -0.0011989747872576118, -0.008281291462481022, -0.012038543820381165, -0.014241311699151993, 0.011104458943009377, -0.0013383905170485377, -0.009536032564938068, -0.016604406759142876, 0.0060018450021743774, 0.0026053304318338633, -0.018221629783511162, -0.015461198054254055, 0.031229112297296524, -0.0071589951403439045, -0.005796206649392843, 0.008239466696977615, 0.0022777037229388952, 0.00018069578800350428, 0.003541158279404044, -0.01589338667690754, -0.010616503655910492, 0.008483444340527058, 0.02563854306936264, -0.0006099435850046575, -0.037028804421424866, -0.028008610010147095, 0.012157047167420387, -0.0009924652986228466, -0.007249615155160427, -0.010344643145799637, 0.022878112271428108, 0.009529061615467072, 0.0010856995359063148, -0.0007084059179760516, -0.015781855210661888, -0.009863658808171749, -0.025011172518134117, -0.027423063293099403, -0.010539825074374676, 0.006416606716811657, 0.012554381974041462, 0.006075038108974695, 0.011857302859425545, -0.021679136902093887, 0.02817590907216072, 0.0012669399147853255, 0.00798154715448618, -0.03142429515719414, -0.02172096259891987, 0.019364837557077408, 0.04982716217637062, 0.033543411642313004, 0.0029172729700803757, 0.02110753394663334, -0.012519528158009052, 0.00981486402451992, -0.018347103148698807, -0.016576524823904037, 0.0007933623273856938, -0.02310117706656456, 0.013056278228759766, -0.0023665810003876686, 0.015628498047590256, -0.004628600552678108, 0.010748948901891708, 0.009842746891081333, 0.00016239748219959438, -0.017440900206565857, 0.020284980535507202, -0.030169552192091942, 0.0059565347619354725, 0.0008582777809351683, -0.0022219372913241386, 0.02910999394953251, -0.006388723384588957, 0.005053818225860596, 0.006667554844170809, 0.044557251036167145, 0.010072782635688782, -0.0033546898048371077, 0.008281291462481022, -0.00615520216524601, -0.014722295105457306, 0.015140542760491371, -0.004475243389606476, 0.009347820654511452, -0.012080368585884571, 0.03530004993081093, 0.0039594052359461784, 0.015990978106856346, 0.010546796023845673, 0.022933878004550934, 0.013411788269877434, -0.013969451189041138, 0.011341465637087822, -0.007974577136337757, -0.009696360677480698, 0.011536647565662861, 0.0014839055947959423, -0.021497897803783417, 0.028287440538406372, -0.0025495642330497503, -0.06675222516059875, -0.0011353663867339492, 0.007134597282856703, 0.04597929120063782, 0.0020511532202363014, -0.00634689861908555, -0.004402049817144871, 0.01702265441417694, -0.009654535911977291, -0.005691645201295614, 0.0010647872695699334, -0.015419374220073223, -0.03398954123258591, -0.0158655047416687, -0.03373859450221062, -0.034491438418626785, -0.03092239610850811, -0.017134185880422592, 0.024829931557178497, -0.03859025985002518, -0.03596924617886543, 0.0028859043959528208, 0.00903413537889719, 0.0020441822707653046, 0.024634750559926033, -0.004991081077605486, -0.012136134319007397, -0.0009236288606189191, -0.014248281717300415, -0.021051766350865364, -0.013209635391831398, -0.02509482204914093, -0.008922602981328964, 0.005646334961056709, -0.026530804112553596, -0.03030896745622158, -0.004991081077605486, 0.010930188931524754, 0.008594976738095284, 0.0020720656029880047, 0.008406764827668667, 0.000313467433443293, -0.0031769347842782736, -0.04009594768285751, -0.0003014864050783217, 0.015419374220073223, -0.0217627864331007, -0.011683033779263496, 0.003197847167029977, -0.020396513864398003, -0.006991696078330278, -0.036917269229888916, -0.010435263626277447, 0.016130393370985985, 0.026781750842928886, -0.0018054329557344317, 0.012519528158009052, 0.011313581839203835, 0.04098821058869362, -0.03555099666118622, 0.010874423198401928, -0.004175499547272921, 0.005785750690847635, 0.022724755108356476, -0.010114607401192188, 0.005221117287874222, -0.0024676574394106865, -0.012164018116891384, 0.02462080866098404, -0.028775395825505257, 0.03019743598997593, 0.0034278829116374254, 0.013042336329817772, 0.0016398768639191985, 0.013146898709237576, -0.028371090069413185, -0.00520368991419673, 0.013181752525269985, 0.015795795246958733, 0.02647503651678562, -0.0008147103362716734, -0.014694412238895893, -0.021707020699977875, -0.02172096259891987, -0.010386467911303043, 0.01806827075779438, -0.0016599178779870272, -0.03953828662633896, -0.010888364166021347, -0.015238133259117603, 0.0056289080530405045, -0.0208565853536129, 0.05222511291503906, -0.02509482204914093, -0.01933695375919342, 0.021930085495114326, 0.01829133741557598, 0.01593521237373352, -0.0027220910415053368, 0.0012721680104732513, -0.02874751202762127, -0.009278113022446632, -0.0018995385617017746, -0.05289430916309357, -0.016632290557026863, -0.012631060555577278, 0.011076575145125389, 0.015879444777965546, 0.010323731228709221, -0.003844387363642454, -0.013335109688341618, -0.01792885549366474, 0.013634853065013885, 0.0008012044709175825, -0.011773654259741306, 0.010539825074374676, -0.019532136619091034, 0.005113069899380207, -0.004802870098501444, 0.02027103863656521, -0.01046314649283886, -0.015781855210661888, 0.011174166575074196, 0.0005650691455230117, -0.024216502904891968, 0.012707739137113094, -0.010323731228709221, -0.05495765805244446, 0.0016878009773790836, -0.023742489516735077, -0.021442130208015442, -0.009117784909904003, -0.007479650899767876, -0.002959097735583782, 0.004565863404422998, 0.005534802563488483, 0.019141772761940956, -0.01040737982839346, 0.0183610450476408, 0.00513398228213191, 0.02027103863656521, -0.004112762399017811, 0.012442848645150661, -0.025903433561325073, -0.02266898937523365, -0.02455110102891922, 0.011536647565662861, 0.006165658123791218, 0.0029277291614562273, 0.00676166033372283, -0.0002568298077676445, -0.0017148128245025873, -0.0010281905997544527, 0.010818656533956528, -0.024829931557178497, -0.011341465637087822, -0.0053953868336975574, -0.01831921935081482, -0.008141875267028809, 0.013774269260466099, -0.025917373597621918, -0.031201228499412537, 0.008225524798035622, 0.015293899923563004, -0.025401536375284195, 0.01466652937233448, -0.014429522678256035, -0.000655689334962517, -0.002160942880436778, -0.016576524823904037, 0.006820912007242441, 8.98577636689879e-05, 0.037893179804086685, 0.0346866212785244, 0.0034209121949970722, -0.02545730210840702, -0.08972793072462082, -0.018207687884569168, 0.003527216613292694, 0.017691848799586296, 0.0198388509452343, 0.006291132420301437, -0.011808508075773716, 0.020521987229585648, 0.02784131094813347, -0.02853838913142681, -0.030838748440146446, 0.03638749197125435, 0.02400738000869751, 0.0010674012592062354, -0.00925023015588522, 0.015698205679655075, -0.02049410529434681, 0.02933305874466896, -5.963287549093366e-05, 0.00793275237083435, -0.02441168576478958, -0.03067144937813282, -0.009515119716525078, 0.017468784004449844, 0.0013819579035043716, 0.018082212656736374, 0.009264172054827213, -0.016130393370985985, 0.01636740006506443, -0.016813529655337334, -0.006820912007242441, 0.010721065104007721, -0.014805944636464119, 0.03262326866388321, 0.010107636451721191, 0.001051716972142458, -0.004022142384201288, 0.012735622003674507, -0.01897447369992733, -0.00045179392327554524, -0.016632290557026863, 0.04581199213862419, -0.021456072106957436, -0.004070937633514404, -0.0032466426491737366, -0.019671551883220673, 0.010017015971243382, 0.0001443170040147379, 0.005792721174657345, 0.007023064885288477, -0.019183596596121788, -0.009800922125577927, 0.007444797083735466, 0.006332957185804844, -0.007145053241401911, -0.0042870319448411465, 0.0015309583395719528, -0.012052484788000584, -0.01486171130090952, -0.0046042026951909065, 0.01752454973757267, -0.0009419271373189986, -0.02577795833349228, -0.0023613530211150646, -0.032093487679958344, 0.005468579940497875, -0.007974577136337757, -0.01897447369992733, 0.02795284241437912, 0.04107185825705528, -0.014903536066412926, 0.01774761639535427, 0.0013610455207526684, 0.004632086027413607, 0.014582879841327667, 0.028914811089634895, -0.009361762553453445, -0.033515527844429016, 0.027506712824106216, -0.0021522294264286757, -0.016283750534057617, 0.004088364541530609, -0.019894616678357124, 0.02534577064216137, -0.01802644692361355, 0.013439671136438847, 0.021135415881872177, 0.017622141167521477, -0.0032762684859335423, -0.0016851869877427816, -0.03290209919214249, -2.853664591384586e-05, 0.005461608991026878, -0.001374115701764822, 0.0009332136833108962, -0.029528239741921425, 0.034379906952381134, -0.00398380309343338, -0.0009088159422390163, -0.0023770371917635202, -0.002666324842721224, -0.03747493401169777, 0.004269605036824942, 0.019211480394005775, -0.02908211015164852, -0.01227555051445961, 0.006047154776751995, -0.01155058853328228, -0.00510609894990921, -0.013035365380346775, 0.03973346948623657, 0.014903536066412926, 0.004450845532119274, 0.03270691633224487, 0.006995181553065777, 0.004729676991701126, -0.013084161095321178, -0.034714505076408386, 0.004541465546935797, -0.03192618861794472, -0.024383801966905594, -0.024216502904891968, -0.028942694887518883, 0.024592924863100052, 0.009682418778538704, -0.01486171130090952, -0.01454105507582426, -0.018305277451872826, -0.03245596960186958, -0.005597539246082306, -0.02172096259891987, 0.004558892454952002, 0.02722788229584694, -0.006716350093483925, -0.0054441820830106735, 0.03769800066947937, -0.016269808635115623, 0.012247666716575623, -0.009940337389707565, 0.00970333069562912, -0.010832598432898521, -0.0021452587097883224, 0.006207482889294624, 0.018779290840029716, 0.0012076882412657142, -0.012540440075099468, 0.021009942516684532, 0.007361147552728653, 0.028580212965607643, 0.021386364474892616, -0.004342798143625259, -0.01343270018696785, 0.0038409018889069557, -0.015307840891182423, -0.02158154733479023, 0.0034871345851570368, -0.011299640871584415, -0.0380883626639843, 0.041406456381082535, 0.026447154581546783, -0.009299025870859623, -0.007235673721879721, 0.00833008624613285, 0.016451049596071243, -0.016283750534057617, 0.03652690723538399, -0.012380111962556839, -0.012414965778589249, -0.0036631468683481216, -0.018458634614944458, 0.02784131094813347, -0.009187493473291397, 0.021121475845575333, 0.023115118965506554, 0.011536647565662861, -0.020982058718800545, -0.028886927291750908, 0.027186056599020958, -0.0360528938472271, -0.012916862033307552, 0.008211582899093628, -0.00988457165658474, 0.010602561756968498, -0.007319322787225246, 0.005587083287537098, -0.03228867053985596, 0.008838953450322151, 0.005729984492063522, -0.0005637621507048607, -0.03368282690644264, 0.004761045332998037, 0.015140542760491371, -0.038869090378284454, -0.008204612880945206, 0.01240102481096983, -0.04313521087169647, -0.005475550889968872, -0.035467348992824554, 0.03705668821930885, -0.0396777018904686, 0.002844079863280058, -0.01622798480093479, 0.00930599682033062, -0.010630445554852486, -0.008225524798035622, -0.0005885955761186779, -0.02820379100739956, -0.0030322908423841, 0.2951151132583618, -0.028468681499361992, -0.027855252847075462, 0.0038896973710507154, 0.0022393641993403435, 0.013572116382420063, 0.028635980561375618, -0.02339395135641098, 0.005475550889968872, 0.01727360300719738, -0.02060563676059246, -0.003886211896315217, 0.0063190157525241375, -0.012651972472667694, -0.0013340337900444865, -0.0023805226664990187, -0.03769800066947937, 0.013314196839928627, -0.015238133259117603, 0.02368672378361225, 0.024244386702775955, 0.03530004993081093, 0.007897897623479366, -0.0018908251076936722, 0.014638645574450493, -0.023547308519482613, -0.000644797517452389, 0.0046495129354298115, 0.010058840736746788, 0.01515448372811079, -0.020298922434449196, 0.0030898000113666058, 0.016757763922214508, 0.008831983432173729, -0.006921988446265459, -0.004496155772358179, 0.009459353983402252, -0.005482521373778582, 0.015126600861549377, 0.015670321881771088, -0.003217016812413931, 0.008650742471218109, 0.012261608615517616, 0.0013636596268042922, 0.0026454124599695206, 0.022822346538305283, 0.014359815046191216, -0.004956227261573076, -0.029918603599071503, 0.029388824477791786, -0.02020133100450039, 0.006141260731965303, 0.034602969884872437, 0.01838892698287964, 0.0208565853536129, 0.0010159917874261737, 0.0121849300339818, -0.01345361303538084, 0.0024118912406265736, 0.006859251298010349, -0.0121291633695364, 0.013781239278614521, 0.00022698614338878542, 0.025861607864499092, -0.003924551419913769, 0.010776831768453121, -0.025694308802485466, 0.015377549454569817, 0.010065811686217785, -0.02487175725400448, -0.0020441822707653046, -0.006827882956713438, -0.011899127624928951, 0.004112762399017811, -0.022069500759243965, -0.02151183970272541, 0.03276268392801285, 0.022069500759243965, 0.01904418133199215, 0.02969553880393505, -0.01829133741557598, 0.024927522987127304, 0.009940337389707565, -0.013314196839928627, -0.0007201691041700542, -0.03117334470152855, -0.0039594052359461784, 0.0040918500162661076, -0.01684141345322132, 0.002553049474954605, 0.0058171190321445465, 0.0009201434440910816, -0.0021016912069171667, -0.010421321727335453, -0.007444797083735466, 0.014387697912752628, -0.016632290557026863, 0.012052484788000584, -0.021985851228237152, -0.014429522678256035, -0.03281845152378082, 0.049185849726200104, 0.001633777399547398, 0.0147920036688447, -0.008225524798035622, -0.025401536375284195, -0.017510609701275826, 0.018416810780763626, -0.0012712966417893767, -0.028580212965607643, 0.0017174268141388893, -0.019309071823954582, 0.004830752965062857, -0.010874423198401928, 0.00423823669552803, 0.003670117584988475, -0.006503741256892681, -0.006573449354618788, -0.0026942079421132803, -0.012916862033307552, 0.034240491688251495, -0.026809634640812874, -0.01795673929154873, 0.022390156984329224, -0.005472065415233374, -0.0234636589884758, -0.0038827266544103622, -0.018333161249756813, 0.009563915431499481, -0.04887913540005684, 0.03348764404654503, -0.01893264800310135, 0.022682931274175644, -0.004447360057383776, -0.010163403116166592, 0.01049800030887127, -0.004123218823224306, 0.010135519318282604, 0.006590876262634993, 0.007786365691572428, 0.015015068463981152, -0.012805329635739326, 0.019685493782162666, -0.005688159726560116, 0.0004783700278494507, -0.011411173269152641, 0.017650024965405464, -0.010546796023845673, 0.025262121111154556, 0.0009907226776704192, -0.036805737763643265, -0.004855150822550058, -0.010072782635688782, -0.025903433561325073, 0.0198388509452343, 0.01346755400300026, -0.03044838458299637, -0.04572834074497223, 0.004321885760873556, 0.030587799847126007, -0.02407708764076233, -0.012735622003674507, 0.03443567082285881, -0.02296176180243492, -0.019253304228186607, -0.008086109533905983, -0.1806827187538147, 0.006482828874140978, 0.01981096714735031, -0.025875549763441086, 0.026210147887468338, -0.00577529426664114, 0.0053953868336975574, -0.019978266209363937, -0.01081168558448553, -0.004314915277063847, 0.0399007648229599, -0.007312352303415537, -0.023198768496513367, -0.018486518412828445, -0.008825012482702732, 0.002755202353000641, -0.009222347289323807, 0.010874423198401928, 0.015544847585260868, 0.012456790544092655, 0.028217732906341553, -0.019908558577299118, -0.010978984646499157, 0.0015144028002396226, -0.001602408941835165, 0.027102407068014145, -0.01875140890479088, 0.008441619575023651, -0.017036596313118935, 0.010832598432898521, -0.01799856312572956, -0.006332957185804844, 0.04360922425985336, 0.008204612880945206, -0.001532701076939702, 0.0015701689990237355, -0.003217016812413931, -0.02089840918779373, -0.03226078674197197, 0.01770579069852829, 0.004935314878821373, 0.030755098909139633, 0.010644386522471905, 0.010184315033257008, -0.007500563282519579, 0.016925062984228134, -0.0029852380976080894, 0.007221731822937727, -0.011376319453120232, -0.015070834197103977, 0.027562478557229042, -0.028259556740522385, -0.002438031602650881, 0.00036945153260603547, 0.02020133100450039, 0.0061447457410395145, -0.002293387893587351, 0.016827471554279327, -0.00032109173480421305, 0.00259835971519351, -0.009062019176781178, 0.007082316558808088, 0.007193848956376314, 0.01838892698287964, -0.03647113963961601, 0.004537980072200298, 0.0033651459962129593, 0.019141772761940956, -0.013021424412727356, 0.01292383298277855, 0.017970681190490723, 0.009738185442984104, -0.004862121772021055, -0.012296462431550026, 0.011069605126976967, -0.008894720114767551, -0.016562582924962044, 0.01684141345322132, 0.004025627858936787, 0.004572834353893995, -0.00352198863402009, 0.019601844251155853, -0.012463761493563652, 0.01104172132909298, 0.012317375279963017, 0.018221629783511162, 0.010525883175432682, -0.005207175388932228, -0.0156424380838871, 0.0010830855462700129, 0.034268371760845184, -0.04054207727313042, -0.01702265441417694, -0.008009430952370167, -0.005262941587716341, 0.005555714480578899, -0.0086158886551857, 0.008218553848564625, -0.020884469151496887, -0.012589235790073872, -0.00984971784055233, -0.0011371091241016984, -0.03507698327302933, 0.014457405544817448, 0.018416810780763626, 0.021776728332042694, -0.0032466426491737366, 0.011996719054877758, 0.03145217522978783, -0.022864170372486115, 0.009389645420014858, -0.008253407664597034, 0.009041106328368187, -0.00371542782522738, 0.019141772761940956, 0.0021138901356607676, -0.008427677676081657, 0.012282521463930607, 0.012993540614843369, -0.0016006662044674158, -0.027492770925164223, -0.007277498487383127, -0.005743925925344229, 0.011857302859425545, -0.0019518195185810328, -0.008267349563539028, -0.052085697650909424, -0.019532136619091034, -0.002225422766059637, 0.025554893538355827, 0.03772588074207306, 0.05175109952688217, 0.009856687858700752, 0.03008590266108513, -0.003122911090031266, 0.020145565271377563, -0.012066426686942577, -0.02291993796825409, -0.012052484788000584, 0.005824089981615543, 0.010909277014434338, -0.003291952656581998, -0.016966888681054115, -0.010714095085859299, -0.00733326468616724, 0.02577795833349228, 0.009856687858700752, -0.01684141345322132, -0.008776216767728329, -0.008608917705714703, -0.025220295414328575, -0.006862736772745848, -0.020368630066514015, 0.01847257651388645, 0.01672988198697567, -0.002288159681484103, 0.019908558577299118, 0.004583290312439203, 0.014554996974766254, -0.013885801658034325, 0.0057683237828314304, 0.012261608615517616, -0.021009942516684532, -0.0074029723182320595, 0.031201228499412537, -0.022097384557127953, 0.017691848799586296, -0.0028266527224332094, -0.02512270398437977, -0.010051870718598366, -0.01403218787163496, -0.021957969292998314, 0.008741362951695919, 0.009222347289323807, 0.011404202319681644, -0.008260378614068031, -0.04204776883125305, -0.012651972472667694, -0.016241926699876785, -0.0198388509452343, 0.02128877304494381, 0.0056672473438084126, -0.001715684193186462, 0.004429933149367571, -0.03371071070432663, -0.009905483573675156, -0.008030342869460583, 0.011599384248256683, -0.005193233955651522, 0.019490310922265053, 0.019783085212111473, 0.01461076270788908, -0.015795795246958733, -0.03674997389316559, 0.03596924617886543, -0.01039343886077404, -0.008441619575023651, 0.014596821740269661, -0.0016372628742828965, 0.02871963009238243, -0.024328036233782768, -0.017008712515234947, -0.006782572716474533, -0.010588620789349079, 0.03543946519494057, -0.0021592003758996725, -0.008399794809520245, -0.02328241802752018, 0.013342080637812614, -0.010379496961832047, 0.02639138698577881, 0.013174781575798988, -0.004060481674969196, 0.013662735931575298, 0.0021522294264286757, 0.01879323273897171, 0.006908046547323465, 0.018054330721497536, 0.020326806232333183, -0.0077305990271270275, 0.01756637543439865, 0.009661505930125713, 0.0025582776870578527, -0.012261608615517616, 0.009354791603982449, 0.018416810780763626, -0.01571214757859707, -0.011104458943009377, -0.0766228586435318, 0.033153049647808075, 0.009898512624204159, -0.0007911839638836682, -0.0217627864331007, 0.02194402739405632, 0.015140542760491371, -0.00228118896484375, -0.010595591738820076, 0.01727360300719738, -0.017148127779364586, 0.015809737145900726, 0.0005868528387509286, -0.023617016151547432, -0.038506608456373215, -0.007200819905847311, 0.04768016189336777, 0.019978266209363937, 0.00954300258308649, 0.006033213343471289, 0.018277395516633987, -0.0031560224015265703, -0.0048934901133179665, 0.013864888809621334, -0.033403996378183365, 0.019002357497811317, -0.00038448229315690696, 0.019030239433050156, -0.0029991797637194395, -0.020828701555728912, 0.011843361891806126, -0.013160839676856995, -0.02339395135641098, 0.013704560697078705, -0.0030932852532714605, -0.006263249088078737, 0.0012059456203132868, 0.005377959925681353, 0.01205945573747158, 0.04051419720053673, -0.013495437800884247, -0.013481495901942253, 0.02038257196545601, -0.0029312146361917257, 0.004956227261573076, 0.002905074041336775, -0.017803382128477097, 0.02693510800600052, 0.021456072106957436, -0.00640963576734066, 0.015377549454569817, 0.010205227881669998, 0.008699538186192513, -0.01879323273897171, 0.016743822023272514, -0.03677785396575928, 0.011599384248256683, -0.008852895349264145, 0.006158687639981508, 0.0007432598504237831, 0.007409943267703056, -0.007751511409878731, 0.016674114391207695, -0.0016869297251105309, -0.010079753585159779, 0.0060959504917263985, -0.006075038108974695, -0.01155058853328228, 0.010135519318282604, -0.0269769337028265, -0.014331931248307228, 0.021023884415626526, -0.01148088090121746, 0.022041618824005127, -0.0014211685629561543, 0.0012451562797650695, -0.01650681532919407, 0.008518298156559467, -0.010700153186917305, 0.002209738362580538, 0.002831880934536457, 0.008218553848564625, -0.013969451189041138, 0.029249409213662148, 0.016130393370985985, -0.01802644692361355, -0.002174884546548128, -0.0028405943885445595, -0.02053592912852764, 0.011446027085185051, -0.017538491636514664, 0.01046314649283886, 0.0198388509452343, 0.01618615910410881, 0.012861096300184727, 0.029137875884771347, 0.010065811686217785, -0.015140542760491371, 0.024815989658236504, -0.01033767219632864, -0.007005637511610985, -0.022431982681155205, -0.01164120901376009, -0.01625586859881878, -0.018584109842777252, 0.0027203483041375875, -0.012373141013085842, -0.030225317925214767, 0.002403177786618471, 0.03613654151558876, -0.014199486933648586, 0.017315426841378212, -0.005370988976210356, 0.024160737171769142, -0.02860809676349163, 0.00018799332610797137, -0.01486171130090952, -0.03005801886320114, -0.025903433561325073, 0.03371071070432663, 0.031089695170521736, 0.0172317773103714, 0.010030957870185375, -0.018625933676958084, 0.022069500759243965, -0.0017304971115663648, 0.014694412238895893, -0.024495333433151245, 0.019169654697179794, 0.007646949961781502, 0.008915632031857967, 0.017426960170269012, -0.001903024036437273, -0.013864888809621334, 0.00341219874098897, 0.02400738000869751, -0.010316760279238224, 0.004294002894312143, -0.01361394114792347, 0.03661055490374565, 0.0052943103946745396, 0.007221731822937727, -0.0033738594502210617, 0.009926396422088146, 0.00015608020476065576, 0.0024484877940267324, 0.015572731383144855, -0.015084776096045971, -0.017064478248357773, 0.018598051741719246, 0.0039594052359461784, -0.007002152502536774, -0.011446027085185051, -0.007138082757592201, 0.004227780271321535, -0.018598051741719246, 0.03301363065838814, -0.004004715476185083, 0.00730538135394454, 0.01947637088596821, -0.01962972804903984, 0.0224459245800972, 0.022111326456069946, -0.023017527535557747, -0.008957456797361374, 0.013892771676182747, 0.005827575456351042, 0.008134904317557812, -0.001889082370325923, 0.009326908737421036, 0.02103782631456852, -0.0030898000113666058, -0.017580317333340645, 0.005691645201295614, -0.0027011786587536335, -0.006549051497131586, -0.0002450666215736419, -0.002242849674075842, 0.010044899769127369, 0.006078523583710194, 0.0086716553196311, -0.03067144937813282, -0.010769860818982124, -0.00730538135394454, -0.014234340749680996, -0.007814249023795128, 0.014004305005073547, 0.0018786261789500713], "7a71c62a-768b-4849-b2ca-5a26fa8a2847": [-0.025738457217812538, -0.033044133335351944, -0.0014145965687930584, -0.018179891631007195, -0.013838634826242924, -0.011808500625193119, -0.01402127742767334, -0.036668870598077774, -0.022900482639670372, -0.013346906751394272, 0.0127638578414917, -0.021579841151833534, -0.02335006184875965, -0.005120997317135334, -0.0018369558965787292, -0.012623364105820656, 0.011808500625193119, -0.015187375247478485, 0.022198013961315155, -0.01723858341574669, 0.02913840487599373, 0.020483989268541336, -0.006957953330129385, -0.03807380795478821, -0.015131177380681038, 0.03363420441746712, 0.021341001614928246, -0.01951458305120468, -0.0011388775892555714, -0.01739312708377838, 0.03672507032752037, -0.013564672321081161, 0.0034368284977972507, -0.022479001432657242, -0.0037687451113015413, 0.0033788748551160097, 0.012820055708289146, -0.021102162078022957, -0.024108728393912315, -0.002082820050418377, 0.014653499238193035, -0.0154121657833457, 0.006220361217856407, 0.005475744139403105, -0.006750725209712982, -0.0025815728586167097, -0.005577602423727512, -0.0020073046907782555, -0.024136828258633614, 0.0339994877576828, 0.007105472031980753, -0.001135365222580731, -0.031133417040109634, -0.01803939789533615, 0.030459046363830566, 0.0212707556784153, -0.014836140908300877, -0.016465868800878525, -0.00483298534527421, -0.01594604179263115, 0.03357800841331482, 0.0032998472452163696, -0.02318147011101246, 0.013761363923549652, 0.0033999490551650524, 0.0018878849223256111, -0.01028414350003004, 0.017140239477157593, 0.009005649946630001, 0.01559480745345354, 0.021959174424409866, 0.0016789004439488053, -0.03776472061872482, -0.007333774119615555, 0.03130200877785683, -0.005605700891464949, -0.008113514631986618, -0.0001820930774556473, -0.023321963846683502, 0.0017877831123769283, -0.006813947111368179, -0.009153168648481369, 0.006227385718375444, 0.015496461652219296, 0.015988189727067947, -0.0016306056641042233, -0.025766555219888687, 0.019795570522546768, 0.0191211998462677, -0.010445711202919483, -0.001989742973819375, 0.01569315232336521, 0.02375749498605728, -0.006276558618992567, -0.006610231474041939, 0.005475744139403105, -0.021495545282959938, 0.01848897896707058, 0.009771340526640415, -0.029868973419070244, -0.002669381443411112, 0.02163603901863098, -0.022591397166252136, 0.0008574509993195534, -0.04995958134531975, -0.03118961490690708, 0.009546550922095776, -0.005700534209609032, 0.018545176833868027, 0.004815423395484686, -0.001972181024029851, 0.029840873554348946, -0.0111692538484931, -0.043834052979946136, -0.024277321994304657, 0.016732806339859962, 0.04436792805790901, -0.024572357535362244, -0.02614588849246502, -0.0007134448969736695, 0.012391549535095692, 0.015074980445206165, 0.023097174242138863, 0.008282107301056385, 0.02908220887184143, -0.009532501921057701, -0.014681598171591759, -0.01997821219265461, -0.012777907773852348, -0.03669697046279907, 0.038354795426130295, 0.01411962229758501, 0.02888551726937294, 0.03717464953660965, -0.008239959366619587, 0.023237667977809906, 0.0018351997714489698, -0.003919776063412428, -0.017969151958823204, 0.0012152710696682334, 0.029054109007120132, 0.011892796494066715, -0.026890505105257034, -0.007783354260027409, -0.0021074062678962946, 0.02694670297205448, 0.01993606425821781, -0.0017710993997752666, -0.007340799085795879, -0.007319724652916193, -0.005149096250534058, -0.007189767900854349, 0.014168795198202133, 0.009799439460039139, 0.015299770049750805, 0.007656909991055727, 0.008921354077756405, 0.016873300075531006, 0.0017403664533048868, -0.012784931808710098, 0.02356080338358879, 0.023321963846683502, -0.008872181177139282, -0.021931076422333717, 0.011977093294262886, 0.026440925896167755, -0.013389055617153645, -0.01103578507900238, 0.007692033424973488, -0.002175897127017379, -0.022366605699062347, 0.0007885211962275207, -0.023617001250386238, 0.002757190028205514, 0.005967472214251757, 0.01475184503942728, 0.01955673098564148, -0.008626316674053669, -0.01265146303921938, 0.011548587121069431, 0.004636294208467007, -0.0169856958091259, 0.016072485595941544, 0.03484245389699936, -0.008204835467040539, -0.02506408654153347, 0.03076813369989395, 0.00020711852994281799, 0.0008934524958021939, 0.011562636122107506, 0.01573530025780201, 0.02825329452753067, 0.0013223974965512753, -0.024263272061944008, -0.5628741979598999, -0.02041374333202839, -0.004379892721772194, -0.003926800563931465, 0.012019241228699684, 0.009511427022516727, -0.00673667574301362, -8.704027277417481e-05, -0.027761567384004593, 0.018123695626854897, -0.010803970508277416, -0.008991600945591927, 0.0027238228358328342, 0.006202799268066883, -0.01391590666025877, -0.0154121657833457, 0.03680936619639397, 0.0005575846298597753, 0.016493966802954674, 0.0169856958091259, -0.02507813647389412, 0.014014252461493015, -0.005275540519505739, 0.008998624980449677, 0.013389055617153645, 0.02422112412750721, 0.0005984156159684062, 0.013641944155097008, -0.007284601218998432, 0.011422142386436462, -0.0038565536960959435, 0.017491472885012627, -0.007755255326628685, -0.016831152141094208, 0.04970669001340866, -0.020680680871009827, -0.007621786557137966, 0.02527482807636261, 0.0052052936516702175, 0.02145339734852314, -0.026651665568351746, -0.02318147011101246, 0.04743069410324097, 0.0012389792827889323, 0.011218426749110222, 0.0037968438118696213, -0.0036036649253219366, -0.015566708520054817, 0.01718238741159439, 0.00880895834416151, 0.0012381012784317136, -0.014948535710573196, -0.0054476456716656685, -0.0025552301667630672, 0.014428708702325821, 0.00014927462325431406, 0.021341001614928246, -0.03135820850729942, 0.02165008895099163, -0.025597963482141495, -0.010220920667052269, -0.020526139065623283, -0.017294781282544136, -0.021748434752225876, -0.0026676252018660307, -0.010656451806426048, 0.010881241410970688, -0.0070211756974458694, -0.013199388980865479, -0.018643522635102272, -0.01178742665797472, 0.013157240115106106, 0.0064170523546636105, 0.005682972725480795, 0.02975657768547535, 0.0007630567415617406, -0.007453193888068199, -0.01252501830458641, -0.019444337114691734, 0.015440263785421848, 0.003803868545219302, 0.003183939727023244, -0.020554237067699432, 0.0025727918837219477, -0.001392644364386797, 0.002131992718204856, -0.03543252497911453, -0.01497663464397192, 0.011323796585202217, 0.0019651565235108137, 0.0265814196318388, 0.0002724261721596122, 0.010024229995906353, -0.034111883491277695, -0.0010273605585098267, -0.005040213465690613, -0.018559224903583527, 0.005770781077444553, 0.0038144055288285017, -0.020231101661920547, -0.053415726870298386, 0.02676406130194664, -0.00041906654951162636, -0.01697164587676525, 0.027789665386080742, -0.0008359378552995622, -0.0038354797288775444, 0.011513463221490383, 0.01697164587676525, -0.028632627800107002, 0.010628352873027325, -0.01764601655304432, -0.004000559914857149, -7.194816862465814e-05, 0.025808703154325485, -0.03891677036881447, 0.038130007684230804, -0.004913769196718931, -0.002669381443411112, 0.0022900481708347797, 0.03546062484383583, 0.03467385843396187, 0.002636014251038432, -0.011618833988904953, 0.010537032037973404, -0.0006770042818970978, 0.018840212374925613, -0.013192364014685154, -0.02231040969491005, -0.012974598444998264, -0.012272129766643047, -0.017941052094101906, 0.02166413702070713, -0.03503914177417755, -0.003549223532900214, -0.006554034072905779, -0.0011669762898236513, -0.0032015014439821243, 0.04212002828717232, -0.0084998719394207, -0.027902061119675636, -0.005591651424765587, 0.013459302484989166, -0.01551051065325737, -0.024347567930817604, -0.01827823743224144, -0.018207991495728493, 0.0318920835852623, -0.012953524477779865, -0.023434359580278397, -0.0005865614512003958, -0.0006006108014844358, -0.01573530025780201, 0.034280478954315186, -0.01590389385819435, 0.01105685904622078, -0.011815524660050869, -0.005050750449299812, -0.010789920575916767, 0.0018158818129450083, 0.02169223688542843, -0.012581216171383858, -0.006508373189717531, -0.007249477785080671, -0.015271671116352081, -0.041558053344488144, -0.018404683098196983, -0.005616237875074148, 0.018320385366678238, -0.033718500286340714, -0.026651665568351746, -0.020877372473478317, 0.015032832510769367, -0.005682972725480795, -0.021509595215320587, 0.02254924736917019, -0.00048733773292042315, 0.0042183250188827515, 0.009806464426219463, -0.0014014252228662372, -0.022422803565859795, -0.004228862002491951, -0.00946927908807993, -0.002040671883150935, 0.04419933632016182, 0.019598878920078278, 0.022788086906075478, 0.015524560585618019, 0.012026266194880009, -0.005233392585068941, -0.013037820346653461, 0.022155866026878357, -0.010916365310549736, 0.017955102026462555, 0.0276070237159729, 0.007396996486932039, 0.010579179972410202, 0.0002256681036669761, -0.001012433203868568, 0.012791956774890423, 0.027691319584846497, 0.021116212010383606, 0.015791498124599457, -0.03014996089041233, 0.01178742665797472, -0.05203888937830925, 0.029616083949804306, 0.0023321963381022215, -0.00706683611497283, -0.02551366575062275, -0.005159633234143257, -0.02998136729001999, -0.012777907773852348, -0.020652582868933678, 0.01031224150210619, -0.003248918103054166, -0.038130007684230804, 0.007677983958274126, 0.020554237067699432, 0.024389715865254402, 0.005697021726518869, 0.013318808749318123, 0.02335006184875965, 0.004562534857541323, -0.008394502103328705, -0.009588698856532574, 0.022029422223567963, -0.008900279179215431, 0.009539525955915451, -0.029784677550196648, -0.019444337114691734, -0.003656350076198578, -0.014962585642933846, -0.013838634826242924, 0.004337744787335396, -0.024544259533286095, 0.02488144487142563, -0.007516416255384684, -0.005798880010843277, 0.01995011419057846, -0.005317688919603825, 0.020455891266465187, -0.02823924459517002, -0.006388953886926174, 0.01570720225572586, -0.007446169387549162, 0.05198268964886665, 0.012602290138602257, -0.008794909343123436, 0.01475184503942728, -0.021397199481725693, -0.0004085295076947659, -0.027747517451643944, 0.018601372838020325, 0.013220462948083878, -0.012194857932627201, -0.0036528378259390593, 0.022183964028954506, 0.03467385843396187, 0.029194602742791176, 0.0008319864864461124, 0.03352181240916252, -0.01829228736460209, 0.005967472214251757, 0.02163603901863098, -0.026904555037617683, 0.0033490199130028486, -0.01617083139717579, -0.003308627987280488, 0.0010466785170137882, -0.02721364051103592, -0.012693610973656178, 0.006027182098478079, -0.02482524700462818, 0.005180707201361656, -0.012820055708289146, 0.030459046363830566, 0.009061847813427448, 0.015032832510769367, -0.018222041428089142, -0.004646831192076206, -0.022830236703157425, 0.02697480097413063, 0.017266683280467987, -0.0001803369086701423, -0.026061592623591423, 0.00010114452743437141, -0.0090477978810668, -0.020048459991812706, 0.006785848643630743, -0.006827996578067541, 0.010073402896523476, 0.003561516758054495, 0.014140697196125984, -0.026173986494541168, 0.0382423996925354, 0.02440376579761505, -0.006884193979203701, -0.005423059221357107, -0.03838289529085159, 0.050690148025751114, 0.020722828805446625, 0.0067753116600215435, -0.023012878373265266, 0.03652837872505188, 0.010537032037973404, -0.023715347051620483, 0.007811453193426132, -0.021341001614928246, -0.03467385843396187, 0.009729192592203617, -0.01444275863468647, -0.0077622802928090096, 0.0032015014439821243, -0.0016903155483305454, 0.02549961768090725, 0.006575108040124178, 0.0023954184725880623, 0.03270694613456726, 0.003433316247537732, -0.011506439186632633, -0.005419546738266945, -0.01611463353037834, -0.020118705928325653, 0.004587121307849884, 0.018531126901507378, 0.012293203733861446, 0.000814424769487232, -0.02292858064174652, -0.017674114555120468, 0.0014980146661400795, 0.008436650037765503, -0.00946927908807993, -0.010080426931381226, -0.01785675622522831, -0.011127105914056301, 0.003280529286712408, -0.009764316491782665, 0.012482870370149612, 0.0010879485635086894, -0.01931789144873619, -0.005970984697341919, -0.018784016370773315, -0.020708780735731125, 0.008268057368695736, 0.021846778690814972, 0.0012451258953660727, 0.024965740740299225, -0.017154287546873093, -0.0005461694672703743, -0.0180955957621336, 0.024755001068115234, 0.01360682025551796, -0.03273504599928856, 0.006167675834149122, -0.013944005593657494, -0.02462855540215969, 0.049369506537914276, -0.03127390891313553, 0.0049207936972379684, 0.022183964028954506, 0.030459046363830566, 0.00515260873362422, 0.013150216080248356, 0.0021934588439762592, 0.02037159539759159, 0.0008561338181607425, 0.0004908500704914331, -0.0055670649744570255, -0.009687044657766819, 0.02631448023021221, 0.006845558527857065, -0.01189982146024704, -0.017154287546873093, 0.01615678146481514, -0.013522524386644363, -0.05240417271852493, -0.011801475659012794, 0.025766555219888687, 0.027902061119675636, -0.02143934741616249, -0.0025165944825857878, 0.012194857932627201, -0.006599694490432739, -0.0015656272880733013, 0.007944921962916851, -0.005654873792082071, -0.017505522817373276, -0.03017805889248848, -0.023940136656165123, -0.017688164487481117, -0.007692033424973488, -0.029840873554348946, -0.02998136729001999, 0.030318552628159523, -0.018812114372849464, -0.035348229110240936, -0.012370475567877293, 0.025401271879673004, 0.0255277156829834, 0.021734384819865227, 0.019795570522546768, -0.022436853498220444, -0.0055635529570281506, -0.008478797972202301, -0.03014996089041233, -0.012419648468494415, -0.016845202073454857, 0.023504605516791344, 0.0017017306527122855, 0.028351640328764915, -0.028112800791859627, -0.008647390641272068, 0.02419302612543106, 0.017744362354278564, 0.030290454626083374, 0.027536775916814804, 0.02311122417449951, -0.035123441368341446, 0.0004715321701951325, 0.020062508061528206, 0.00227951118722558, -0.010958513244986534, -0.013143191114068031, 0.016676608473062515, -0.020020360127091408, -0.023954186588525772, -0.012054364196956158, -0.013557647354900837, 0.0034824891481548548, 0.03886057436466217, -0.018179891631007195, 0.03276314586400986, 0.013353931717574596, 0.033858995884656906, -0.00414807815104723, 0.01241262350231409, -0.005932348780333996, 0.011653956957161427, 0.031554896384477615, 0.00849284790456295, -0.0033279459457844496, -0.012988648377358913, -0.018531126901507378, 0.026061592623591423, -0.0075515396893024445, 0.03310032933950424, -0.005275540519505739, 0.015665054321289062, 0.0034807329066097736, -0.03298793360590935, -0.01638157293200493, -0.013431203551590443, 0.032397862523794174, 0.008450699970126152, 0.012244030833244324, -0.0011898064985871315, -0.02039969339966774, -0.03380279988050461, 0.001951107056811452, 0.018643522635102272, 0.009321761317551136, -0.013726240023970604, -0.017379077151417732, -0.004987528547644615, -0.02271784096956253, -6.827118340879679e-05, -0.001209124457091093, 0.010867192409932613, -0.029447492212057114, 0.0033033594954758883, 0.0010554593754932284, 0.0021232119761407375, 0.010586204938590527, 0.03118961490690708, 0.00478732492774725, -0.02587895095348358, -0.016016287729144096, 0.002960905898362398, -0.018615422770380974, -0.0016595824854448438, -0.0026430387515574694, 0.01955673098564148, 0.04009691998362541, 0.0318077877163887, 0.002911733230575919, -0.026033492758870125, 0.005718096159398556, 0.01999226212501526, 0.024909542873501778, 0.0027396283112466335, 0.0035299055743962526, -0.018755916506052017, 0.017266683280467987, -0.00770608289167285, 0.030655737966299057, 0.016522066667675972, -0.014456807635724545, 0.010593228973448277, 0.023968234658241272, -0.0032629675697535276, 0.02143934741616249, -0.010206871666014194, -0.04633484035730362, -0.007347823586314917, -0.003853041445836425, -0.014105573296546936, 0.010452735237777233, -0.017589818686246872, -0.0044852630235254765, -0.005577602423727512, -0.004899719730019569, -0.0029257824644446373, -0.0012688342249020934, -0.0067753116600215435, -0.01846087910234928, 0.002736116060987115, 0.0030364212580025196, 0.01893855817615986, -0.018418731167912483, -0.00011952945351367816, -0.022450903430581093, 0.012616339139640331, 0.016451818868517876, 0.004783812444657087, 0.0402936115860939, 0.011394043453037739, 0.004941868130117655, 0.006743700243532658, -0.0002421322133159265, -0.03529203310608864, -0.00637139193713665, -0.0004361892060842365, -0.0071195210330188274, -0.0276070237159729, -0.008155662566423416, -0.0028186559211462736, -0.04262580722570419, 0.0212286077439785, 0.025752505287528038, -0.014541104435920715, 0.00022347288904711604, -0.011689080856740475, -0.03057144209742546, -0.005553015973418951, 0.0067753116600215435, 0.03801761195063591, 0.004369355738162994, 0.01888236030936241, 0.02722769044339657, -0.002003792207688093, -0.006708576809614897, -0.06524530053138733, -0.01871376857161522, 0.01635347306728363, 0.037287045270204544, 0.03638788312673569, 0.010080426931381226, -0.03076813369989395, 0.010965538211166859, -0.00018747136346064508, -0.02697480097413063, -0.018573274835944176, 0.04105227813124657, 0.02462855540215969, 0.012363450601696968, -0.01391590666025877, 0.004804886411875486, -0.03245405852794647, 0.008970526047050953, -0.010073402896523476, -0.019233595579862595, -0.01739312708377838, -0.02615993842482567, -0.010895291343331337, -0.0287028755992651, -0.01061430387198925, 0.023223618045449257, 0.020680680871009827, -0.012637414038181305, 0.010003156028687954, 0.006827996578067541, -0.027269838377833366, 0.01997821219265461, 0.004678442142903805, 0.0339994877576828, 0.010129599831998348, -0.02335006184875965, 0.022464951500296593, 0.0030733009334653616, 0.01851707696914673, -0.013480376452207565, -0.005633799824863672, 0.05586031824350357, -0.03118961490690708, -0.004959429614245892, -0.029447492212057114, 0.01104280911386013, 0.026440925896167755, 0.00760071212425828, -0.00933581031858921, 0.010017205029726028, -0.03973163664340973, -0.008837057277560234, -7.908261613920331e-05, 0.004962942097336054, -0.009216390550136566, 0.00526500353589654, 0.005099923349916935, -0.023715347051620483, -0.028337590396404266, 0.015917943790555, 0.024516161531209946, -0.030711935833096504, -0.003912751097232103, -0.029419392347335815, -0.029812775552272797, 0.008928378112614155, 0.025106234475970268, -0.009750266559422016, 0.011562636122107506, 0.03287553787231445, -0.03591020405292511, 0.022198013961315155, -0.003997047431766987, 0.006420564837753773, -0.017379077151417732, 0.023897988721728325, 0.0018755916971713305, -0.0090267239138484, 0.025387221947312355, -0.0002476202498655766, 0.00029986636945977807, -0.009490353055298328, 0.0037020104937255383, 0.0468125194311142, 0.005082361865788698, 0.02998136729001999, -0.009202341549098492, 0.009286637417972088, 0.007284601218998432, 0.0039513870142400265, -0.0191633477807045, 0.00342453527264297, 0.00673667574301362, -0.0011450240854173899, -5.301444252836518e-05, -0.004302621353417635, -0.014737795107066631, -0.037455637007951736, -0.0015629930421710014, 0.02145339734852314, -0.04560427367687225, -0.03773662447929382, 7.112496678018942e-05, -0.015271671116352081, -0.011864697560667992, 0.0009044285980053246, -0.033044133335351944, 0.004927818663418293, -0.024811197072267532, -0.02316742017865181, 0.021341001614928246, -0.025443419814109802, -0.001712267636321485, 0.05071824789047241, -0.022366605699062347, 0.011724203824996948, -0.02056828700006008, -0.02505003660917282, 0.01039653830230236, -0.024979790672659874, -0.005377398803830147, -0.001350496313534677, -0.008942428044974804, 0.03998452425003052, 0.008682514540851116, -0.034505266696214676, -0.03279124200344086, -0.009399032220244408, -0.015875793993473053, -0.01210353709757328, -0.016901399940252304, 0.03383089601993561, 0.01826418936252594, -0.004432578105479479, -0.0169997438788414, 0.017912954092025757, -0.005855077411979437, 0.00040435860864818096, 0.00514207175001502, -0.0005391447921283543, -0.021172409877181053, 0.005113972816616297, -0.01951458305120468, 0.01785675622522831, -0.015763400122523308, -0.012988648377358913, 0.010993636213243008, 0.00499104056507349, 0.017168337479233742, 0.024319469928741455, -0.011773376725614071, -0.022816186770796776, -0.01867162063717842, -0.0018878849223256111, -0.00944820512086153, 0.02294263057410717, -0.009202341549098492, -0.014232018031179905, -0.023869888857007027, 0.013894832693040371, 0.00594991073012352, -0.009792415425181389, 0.011913870461285114, 0.007411045953631401, -0.002124967984855175, 0.004639806225895882, -0.03354990854859352, -0.007663934491574764, -0.0023023413959890604, 0.01678900420665741, 0.03034665249288082, 0.038158103823661804, 0.0013408373342826962, 0.027789665386080742, -0.0027115296106785536, 0.007902774028480053, -0.014470857568085194, -0.0002880122046917677, -0.033858995884656906, -0.010010180063545704, 0.025654159486293793, 0.006908780429512262, 0.005770781077444553, -0.0065118856728076935, 0.011513463221490383, -0.01934599131345749, -0.003926800563931465, 0.026440925896167755, -0.02995326928794384, -0.035769712179899216, 0.021551743149757385, 0.020301347598433495, -0.01008745189756155, -0.0015471875667572021, -0.019416237249970436, -0.024797149002552032, 0.010045303963124752, -0.050240568816661835, 0.026230184361338615, -0.03588210418820381, 0.01316426508128643, 0.013972104527056217, -0.0007779842126183212, -0.010860167443752289, 0.015777448192238808, 0.0064346143044531345, -0.015636954456567764, -0.00893540307879448, 0.25154003500938416, -0.016241079196333885, -0.0007077372865751386, -0.006943903863430023, -0.026440925896167755, 0.011801475659012794, 0.010544057004153728, 0.0037336216773837805, 0.007474267855286598, 0.019922014325857162, 0.0059815216809511185, -0.008099465630948544, -0.024389715865254402, -0.010277118533849716, -0.008780860342085361, -0.011808500625193119, -0.04582906514406204, -0.03245405852794647, -0.0014031814644113183, -0.009518451988697052, 0.013030796311795712, -0.000487776764202863, -0.021931076422333717, -0.006824484560638666, 0.013719215989112854, -0.005342275369912386, -0.02082117460668087, 0.008633341640233994, 0.010544057004153728, 0.003090862650424242, -0.03360610827803612, -0.0045028249733150005, 3.5342960472917184e-05, 0.009103995747864246, -0.013129142113029957, -0.014695647172629833, 0.03652837872505188, 0.00829615630209446, 0.022577347233891487, 0.01869971863925457, -0.0265533197671175, -0.0015217229956761003, 0.014793992973864079, 0.011070908047258854, -0.02187487855553627, 0.029868973419070244, -0.011120080947875977, -0.015243573114275932, -0.028941715136170387, 0.002082820050418377, -0.03947874531149864, -0.02358890138566494, 0.030936725437641144, 0.03211687505245209, 0.011246525682508945, -0.024895494803786278, 0.012503944337368011, -0.007973020896315575, -0.0009000381687656045, 0.029616083949804306, -0.01678900420665741, 0.04018121585249901, -0.029700379818677902, -0.0017737337620928884, -0.010923389345407486, 0.005507355555891991, -0.014527054503560066, -0.0023321963381022215, -0.01889641024172306, -0.009904810227453709, -0.002356782788410783, 0.01570720225572586, 0.0019107151310890913, -0.0033560446463525295, -0.04442412778735161, -0.03312842920422554, 0.038748178631067276, 0.03425237908959389, 0.02998136729001999, 0.018404683098196983, 0.013838634826242924, 0.017912954092025757, -0.00599557114765048, 0.0106424018740654, -0.02146744541823864, -0.03692175820469856, -0.006058793514966965, 0.00567594775930047, -0.00558462692424655, 0.0030381774995476007, 0.01681710220873356, -0.01400020346045494, -0.013339882716536522, -0.0005114850937388837, 0.010045303963124752, 0.0004987528664059937, 0.026258284226059914, 0.019669126719236374, -0.01995011419057846, -0.007832527160644531, -0.014822091907262802, 0.0071160090155899525, 0.010326291434466839, -0.00760071212425828, 0.018320385366678238, -0.019289793446660042, -0.0014523542486131191, 0.01212461106479168, 0.018615422770380974, -0.023940136656165123, 0.0063187070190906525, -0.04737449437379837, 0.02311122417449951, -0.016522066667675972, 0.007277576718479395, -0.014498955570161343, -0.013979128561913967, -0.0043307202868163586, -0.020048459991812706, -0.004242911469191313, -0.017365029081702232, -0.0318077877163887, -0.0014005471020936966, 0.01930384337902069, -0.01742122694849968, 0.007516416255384684, -0.016058437526226044, 0.01559480745345354, 0.020736878737807274, 0.009279612451791763, 0.012314277701079845, -0.050662048161029816, 0.010565130971372128, 0.011274623684585094, 0.014892338775098324, 0.012482870370149612, -0.030459046363830566, -0.019149299710989, 0.04113657400012016, -0.005946398247033358, -0.014892338775098324, 0.008127563633024693, 0.00944820512086153, -0.005191244184970856, 0.0003674789913929999, -0.011253549717366695, -0.005061287432909012, 0.02547151781618595, 0.03295983746647835, 0.008303181268274784, -0.04804886505007744, -0.014295239932835102, 0.021383149549365044, 0.0010062865912914276, -0.012904351577162743, -0.012286178767681122, -0.018390633165836334, -0.05827680975198746, 0.0038144055288285017, 0.02763512171804905, -0.009300686419010162, -0.009567624889314175, 0.004207788035273552, 0.003461414948105812, -0.001563871162943542, -0.008661440573632717, -0.17882046103477478, 0.0143584618344903, 0.04276629909873009, -0.034954845905303955, 0.023883938789367676, -0.021186457946896553, -0.0011669762898236513, 0.00924448948353529, -0.020512089133262634, -0.016522066667675972, 0.024263272061944008, 0.010466785170137882, -0.01973937265574932, -0.012475845403969288, 0.004948892630636692, 0.008134588599205017, -0.013248561881482601, 0.015861745923757553, 0.03163919597864151, 0.032173071056604385, 0.0339994877576828, -0.029897071421146393, -0.00717923091724515, 0.05580412223935127, 0.016915448009967804, 0.008001119829714298, -0.018151793628931046, -0.003958411514759064, 0.009111020714044571, -0.030065665021538734, -0.0028046066872775555, 0.013353931717574596, 0.012033290229737759, 0.003445609472692013, 0.009497378021478653, -0.0010800458258017898, 0.014597301371395588, -0.00075076351640746, -0.012300228700041771, 0.006835021544247866, 0.030655737966299057, 0.029222702607512474, -0.018769966438412666, 0.0005466085276566446, -0.006490811705589294, -0.004112954717129469, 0.01349442545324564, -0.0017069991445168853, 0.0005887566367164254, 0.001519966870546341, 0.016269177198410034, -0.0001791295362636447, 0.009518451988697052, -0.0025165944825857878, 0.0466720275580883, 0.03655647486448288, 0.000417090835981071, 0.0005505598965100944, 0.022675693035125732, 0.0008539386326447129, -0.018812114372849464, -0.04144565761089325, 0.025134334340691566, 0.0067015523090958595, -0.03287553787231445, 0.004256960935890675, -0.0007713985396549106, 0.04419933632016182, -0.025555815547704697, -0.00029174407245591283, 0.00435530673712492, 0.0019212521146982908, 0.024277321994304657, -0.004032170865684748, 0.013979128561913967, 0.04484560713171959, 0.008345329202711582, -0.0066277929581701756, 0.010621327906847, -0.0033507761545479298, -0.025597963482141495, 0.058557797223329544, -0.01996416226029396, -0.029616083949804306, 0.03377470001578331, 0.0027045048773288727, 0.006719113793224096, -0.0037757698446512222, -0.03711844980716705, -0.013733264990150928, 0.03208877518773079, -0.013670043088495731, -0.011295698583126068, -0.016845202073454857, 0.017379077151417732, 0.028365690261125565, -0.006392465904355049, -0.020975718274712563, -0.02547151781618595, -0.006301145069301128, -0.020905470475554466, 0.009314736351370811, -0.024080630391836166, 0.012201882898807526, 0.007607737090438604, 0.0029854923486709595, -0.011091982014477253, 0.02037159539759159, 0.051505010575056076, -0.017519570887088776, -0.0027835324872285128, -0.007944921962916851, 0.006016645114868879, 0.02190297655761242, -0.011288673616945744, 0.01871376857161522, -0.023026926442980766, -0.005521404556930065, 0.04057459905743599, -0.001237223157659173, -0.009012674912810326, -0.026707863435149193, 0.0059815216809511185, 0.026005394756793976, 0.0045800963416695595, -0.0032331126276403666, -0.04057459905743599, -0.005826978478580713, -0.008015168830752373, 0.014990683645009995, -0.006845558527857065, 0.013613845221698284, -0.010094476863741875, 0.047262098640203476, -0.021973224356770515, 0.03422427922487259, -0.006705064792186022, -0.013740289956331253, -0.018755916506052017, 0.009286637417972088, 0.024712851271033287, -0.008963502012193203, -0.0007200305117294192, 0.010537032037973404, 0.008197810500860214, 0.02358890138566494, -0.017112139612436295, -0.011780401691794395, 0.003496538382023573, -0.012714684940874577, -0.004021633882075548, 0.008008143864572048, -0.022408753633499146, 0.007200305350124836, -0.002880122046917677, 0.0039724609814584255, 0.05167360603809357, -0.018418731167912483, 0.004857571795582771, -0.01307294424623251, -0.005855077411979437, 0.012244030833244324, -0.03329702094197273, -0.014147721230983734, 0.019050953909754753, -0.008099465630948544, -0.003113692859187722, 0.010052327997982502, -0.011646932922303677, 0.014217968098819256, -0.03765232861042023, -0.018334435299038887, -0.023237667977809906, 0.0244318637996912, 0.014091524295508862, -0.019865818321704865, -0.03352181240916252, -0.002713285619392991, 0.00977836549282074, -0.004393942188471556, 0.028407838195562363, 0.009989106096327305, 0.015917943790555, 0.01848897896707058, -0.027480579912662506, 0.027297938242554665, -0.011120080947875977, 0.014168795198202133, -0.019177397713065147, 0.015496461652219296, 0.024122778326272964, 0.040462203323841095, -0.05035296455025673, -0.028829319402575493, 0.022900482639670372, 0.0006142211495898664, -0.006957953330129385, 0.03756803274154663, -0.002017841674387455, 0.04549187794327736, -0.035348229110240936, -0.021341001614928246, -0.017716262489557266, -0.0159319918602705, 0.030234256759285927, -0.0007683252333663404, 0.0006304657435975969, -0.007727156858891249, 0.0010466785170137882, -0.022774038836359978, 0.013255585916340351, -0.001005408470518887, 0.008703588508069515, 0.010164723731577396, 0.012454771436750889, -0.010157698765397072, 0.006374904420226812, 0.008317230269312859, 0.011120080947875977, -0.03349371254444122, 0.019233595579862595, 0.01723858341574669, -0.0021074062678962946, 0.005872638896107674, 0.01475184503942728, 0.01359979622066021, -0.004836497828364372, -0.04144565761089325, -0.0742368996143341, 0.03992832452058792, -0.028941715136170387, 0.0019844742491841316, 0.004341257270425558, -0.004169152118265629, 0.041305165737867355, -0.006986052263528109, -0.006578620057553053, -0.015988189727067947, -0.018390633165836334, 0.010782895609736443, 0.008436650037765503, -0.019036903977394104, -0.003438584739342332, -0.02634258009493351, 0.007909798994660378, 0.013487400487065315, 0.03447716683149338, -0.005416034255176783, -0.0005931470659561455, 0.007028200197964907, 0.017884856089949608, -0.03464576229453087, -0.029363196343183517, 0.013360956683754921, -0.0026377702597528696, 0.02762107364833355, -0.012489895336329937, -0.016311325132846832, 0.003213794669136405, -0.017463374882936478, -0.009167217649519444, 0.02271784096956253, -0.0067788236774504185, -0.010227945633232594, 0.011731228791177273, 0.009792415425181389, 0.018348485231399536, 0.015313819982111454, -0.031751587986946106, -0.028197096660733223, 0.004021633882075548, 0.007368897553533316, 0.004453652072697878, 0.0025657673832029104, -0.02403848245739937, 0.0028274368960410357, -0.006027182098478079, 0.0019353015813976526, -0.0004851425183005631, -0.005784830544143915, -0.0069649782963097095, -0.023279815912246704, -0.0038916771300137043, -0.04419933632016182, 0.007530465256422758, 0.01285517867654562, -0.011653956957161427, -0.008668464608490467, 0.030515244230628014, -0.0025640111416578293, 0.031723491847515106, -0.003993534948676825, -0.03135820850729942, -0.0036317636258900166, -0.02891361527144909, 0.0054687196388840675, 0.005535454023629427, 0.004450139589607716, -0.028112800791859627, -0.0077622802928090096, -0.0018088571960106492, 0.03310032933950424, 0.006280071102082729, 0.015833646059036255, -0.004808398894965649, -0.010192821733653545, -0.019402187317609787, 0.015917943790555, 0.01826418936252594, -0.010227945633232594, -0.02844998612999916, 0.008359378203749657, 0.027873961254954338, -0.007035225164145231, -0.017674114555120468, -0.004018121398985386, -0.018657570704817772, 0.0030855941586196423, -0.009708118624985218, 0.0010870704427361488, 0.005862101912498474, 0.014681598171591759, 0.0308243315666914, 0.018348485231399536, -0.011660981923341751, 0.006013133097440004, 0.01433036383241415, 0.006694527808576822, 0.011387019418179989, 0.0022724864538758993, -0.0029257824644446373, -0.03147060051560402, -0.0339994877576828, -0.0022479002363979816, -0.014154746197164059, -0.004425553604960442, -0.00037318654358386993, -0.016676608473062515, -0.00536686135455966, 0.025176482275128365, -0.042457215487957, 0.018334435299038887, -0.02524672821164131, 0.004358818754553795, -0.02037159539759159, 0.0008943305583670735, -0.03928205370903015, 0.040237411856651306, 0.02467070333659649, 0.016690658405423164, -0.004299108870327473, -0.030964825302362442, 0.027522727847099304, 0.020863322541117668, 0.024923592805862427, -0.040040720254182816, 0.0319201834499836, -0.026272332295775414, -0.0020635020919144154, 0.022647593170404434, -0.03034665249288082, 0.01633942499756813, -0.0017948077293112874, -0.03293173760175705, -0.005658386275172234, 0.011646932922303677, -0.0052017816342413425, 0.06620065867900848, 0.004404479172080755, -0.007084397599101067, -0.0031523287761956453, -0.00933581031858921, -0.004906744696199894, 0.01104280911386013, 0.007607737090438604, 0.004717078059911728, -0.021186457946896553, -0.009455230087041855, 0.005970984697341919, 0.0013777168933302164, -0.03273504599928856, 0.028140900656580925, 0.008169712498784065, -0.03717464953660965, 0.03759612888097763, -0.011492389254271984, -0.008703588508069515, 0.05369671434164047, -0.025359123945236206, 0.00849284790456295, 0.004169152118265629, -0.011344870552420616, 0.008225909434258938, 0.005461694672703743, -0.02868882566690445, 0.01147834025323391, 0.005233392585068941, -0.001621824805624783, 0.018601372838020325, -0.0009509671363048255, -0.022479001432657242, -0.022577347233891487, 0.021312903612852097, -0.003278773045167327, 0.025766555219888687, 0.023546753451228142, 0.01787080615758896, -0.01327665988355875, 0.01083909347653389, -0.020441841334104538, -0.018587324768304825, 0.01594604179263115, -0.010038278996944427, -0.006041231565177441, 0.00015871404320932925, -0.023223618045449257], "83938eff-db4f-4cfe-b2e4-725387540be3": [-0.02563258446753025, -0.015478408895432949, -0.003188184928148985, -0.005578441079705954, -0.004434507805854082, 0.00749205844476819, -0.010189482010900974, 0.002402613405138254, -0.016876550391316414, -0.02561846189200878, 0.013875489123165607, 0.00900318007916212, 0.0016399910673499107, -0.01009768433868885, 0.0006381666171364486, 0.008487704209983349, 0.020873256027698517, -0.0008959047263488173, 0.012145467102527618, -0.020435454323887825, -0.0053312950767576694, -0.008981996215879917, -0.006517596542835236, -0.01584559679031372, -0.01374132465571165, 0.002335530938580632, 0.02114158496260643, -0.039063211530447006, 0.0029904681723564863, -0.004021420609205961, 0.04132283106446266, 0.00663763890042901, -0.007329647894948721, 0.009080855175852776, 0.007167237810790539, 0.006016242783516645, 0.0025879729073494673, 0.009518656879663467, 0.019672831520438194, 0.008282925933599472, 0.027242563664913177, 0.0012216080212965608, 0.013543607667088509, -0.014002593234181404, -0.018105218186974525, 0.006108039990067482, -0.017512068152427673, -0.013536546379327774, -0.018839595839381218, 0.021522896364331245, 0.015930332243442535, 0.027539139613509178, -0.038159362971782684, -0.035984475165605545, 0.0005260681500658393, -0.01955985091626644, 0.008021657355129719, 0.015662003308534622, -0.002261386951431632, -0.005006474442780018, 0.011707665398716927, 0.008028718642890453, -0.01991291716694832, -0.0008782513905316591, -0.006058610510081053, 0.0033417686354368925, -0.01988467015326023, 0.026945989578962326, -0.03748147562146187, -0.005440745502710342, 0.012244325131177902, 0.008523010648787022, 0.008720727637410164, -0.008650114759802818, 0.02393786795437336, -0.020322471857070923, -0.011269863694906235, -0.02378251776099205, 0.003258798271417618, 0.00956808589398861, 0.016904795542359352, 0.01632576622068882, 0.0031458172015845776, -0.024220319464802742, 0.014842890202999115, 0.007100155111402273, -0.006743558682501316, 0.021494651213288307, -0.0013178184162825346, 0.007753327023237944, -0.006528188474476337, -0.013338829390704632, 0.030504893511533737, 0.025223027914762497, -0.03686007857322693, 0.011474641039967537, -0.0032181956339627504, 0.022610340267419815, -0.009942335076630116, -0.053411807864904404, 0.023824885487556458, 0.016368133947253227, -0.04426034167408943, -0.004646346904337406, 0.0023337656166404486, 0.011467579752206802, 0.016269275918602943, 0.0008553021471016109, -0.006612923927605152, 0.004360363818705082, -0.009546902030706406, 0.023401208221912384, 0.010231849737465382, -0.03160645812749863, -0.016424626111984253, -0.014214432798326015, 0.023372961208224297, -0.00606214115396142, -0.009666943922638893, -0.0027291993610560894, 0.01896669901907444, 0.0033046966418623924, 0.025533724576234818, 0.019686954095959663, 0.021028604358434677, 0.008304109796881676, -0.016071559861302376, 0.001628516474738717, -0.001781217404641211, -0.016876550391316414, 0.043158773332834244, -0.003968460485339165, 0.015549021773040295, -0.00010023761569755152, -0.01878310553729534, -0.003343533957377076, -0.02253972738981247, -0.01804872788488865, -0.009603392332792282, -0.01312698982656002, 0.008014596067368984, 0.026931867003440857, -0.006401084829121828, -0.01975756697356701, -0.01267506554722786, 0.009532779455184937, 0.01498411688953638, 0.01725785993039608, 0.009681066498160362, 0.0032958700321614742, -0.007350831758230925, -0.014941748231649399, -0.01546428631991148, 0.007823940366506577, 0.0058220564387738705, 0.009271509945392609, 0.0024379200767725706, 0.023288225755095482, 0.005359540227800608, -0.016424626111984253, 0.022158415988087654, -0.009737557731568813, 0.009582208469510078, 0.003876663511618972, 0.018415916711091995, 0.02811816707253456, 0.005271273665130138, 0.02191833034157753, 0.011220433749258518, -0.012639759108424187, -0.010853245854377747, 0.016904795542359352, -0.013183480128645897, 0.021508773788809776, -0.0030293052550405264, 0.028315884992480278, 0.017173124477267265, 0.024432159960269928, 0.0007432036800310016, 0.004385078325867653, 0.016862427815794945, -0.02407909370958805, 0.037509720772504807, 0.006754150614142418, 0.011305170133709908, -0.0018359426176175475, -0.001904790522530675, 0.009617514908313751, 0.012314938008785248, -0.013465933501720428, 0.03186066448688507, 0.03169119358062744, -0.0032905740663409233, 0.005144170019775629, -0.604674756526947, -0.02906438335776329, 0.0054160309955477715, 0.00559609429910779, 0.019955284893512726, 0.015605512075126171, 0.020294226706027985, -0.0027768632862716913, -0.024192074313759804, 0.0230057742446661, -0.00520419143140316, -0.010761448182165623, -0.0037848663050681353, 0.0012004240415990353, -0.007915737107396126, -0.03140874207019806, 0.02703072503209114, -0.026861252263188362, -0.012639759108424187, 0.028202902525663376, -0.008261742070317268, 0.001372543629258871, -0.011241617612540722, -0.0011404028628021479, 0.014885257929563522, -0.0008685421198606491, -0.015746738761663437, 0.012872782535851002, 0.008523010648787022, 0.007216666825115681, -0.011425212025642395, 0.01924915239214897, 0.012964579276740551, -0.007259034551680088, 0.04200071841478348, -0.0010715549578890204, -0.02749677188694477, 0.030533138662576675, 0.015266569331288338, 0.011735910549759865, -0.030533138662576675, -0.02937508188188076, 0.007710959296673536, -0.006962459534406662, 0.00800753477960825, 0.02518066018819809, 0.015294814482331276, -0.004296811763197184, 0.012081914581358433, -0.008297048509120941, 0.006874192971736193, -0.010613161139190197, -0.013713079504668713, -0.015478408895432949, 0.004233260173350573, 0.006605862639844418, 0.004773451015353203, -0.038809001445770264, 0.005183007102459669, -0.015803229063749313, -0.01711663417518139, -0.007633284665644169, -0.038809001445770264, -0.013797814957797527, -0.02176298201084137, -0.018557142466306686, -0.01405908353626728, 0.011185127310454845, -0.0025138291530311108, -0.026536433026194572, -0.006930683273822069, 0.0015614338917657733, 0.009596331045031548, 0.007329647894948721, 0.020901501178741455, -0.0028174659237265587, 0.0345439650118351, -0.006831824779510498, -0.04259387031197548, 0.03558904305100441, -0.007086032535880804, -0.009610453620553017, -0.007470874115824699, -0.029262101277709007, 0.008042841218411922, -0.004886432085186243, -0.02996823377907276, -0.011163943447172642, -0.00210074195638299, 0.008614807389676571, 0.022610340267419815, 0.03126751631498337, 0.006079794839024544, -0.024742858484387398, 0.007887491956353188, 0.015054729767143726, -0.004649878013879061, -0.006429329980164766, 0.013261155225336552, -0.0013831356773152947, -0.02486996166408062, 0.010217727161943913, 0.013868427835404873, 0.0035235974937677383, 0.029911741614341736, 0.01407320611178875, -0.02316112257540226, 0.000526950869243592, 0.04118160530924797, -0.019955284893512726, 0.0003362952556926757, 0.018458284437656403, -0.0072731575928628445, 0.018528897315263748, 0.00940567534416914, -0.03423326835036278, 0.010945042595267296, -0.0011986587196588516, -0.000722019758541137, 0.007068379316478968, 0.058524202555418015, 0.0031281637493520975, 0.028880789875984192, -0.01598682440817356, 0.005147700663655996, 0.018458284437656403, -0.006665884051471949, -0.0274826493114233, -0.0057126060128211975, -0.007555610034614801, 0.01645287126302719, -0.02505355514585972, 0.026479942724108696, -0.004127340391278267, 0.032877497375011444, -0.010125929489731789, 0.012576207518577576, 0.006669414695352316, 0.03169119358062744, -0.01583147421479225, -0.015774983912706375, -0.0066270469687879086, 0.02845711074769497, 0.003700130619108677, -0.023570679128170013, -0.022172538563609123, -0.0025050025433301926, 0.02609863132238388, -0.03434624895453453, 0.014412149786949158, 0.006987174041569233, 0.008953751064836979, -0.019983530044555664, 0.024135584011673927, -0.00769683625549078, -0.008741911500692368, -0.012858659960329533, -0.0144615788012743, -0.024502772837877274, -0.014030838385224342, -0.013811937533318996, -0.02379664033651352, -0.02052018977701664, -0.013006947003304958, -0.012569145299494267, -0.013557730242609978, -0.012307876721024513, -0.004332118667662144, -0.03748147562146187, -0.03138049691915512, -0.009278571233153343, -0.020322471857070923, 0.006192775908857584, 0.0053171725012362, -0.0024626345839351416, -0.0047699203714728355, -0.029488062486052513, 0.00633753277361393, -0.0010194777278229594, -0.007107216399163008, 0.0005163588793948293, 0.014814645051956177, 0.016410503536462784, -0.016043314710259438, -0.004695776384323835, 0.01865600235760212, 0.04691539704799652, 0.02736966870725155, -0.02779334783554077, 0.013487117365002632, -0.01567612588405609, 0.02656467817723751, 0.013621281832456589, 0.005793811287730932, 0.005599624942988157, -0.008748972788453102, 6.211752770468593e-05, 0.006556433625519276, 0.01135459914803505, 0.028005186468362808, 0.039571624249219894, 0.001557903247885406, 0.007576793897897005, -0.016594097018241882, 0.020294226706027985, -0.03219961002469063, -0.010697896592319012, -0.01862775720655918, 0.01470166351646185, 0.017130756750702858, -0.0033223500940948725, -0.015803229063749313, -0.011291047558188438, -0.02160763181746006, 0.010132990777492523, 0.007590916473418474, -0.009250326082110405, 0.008332354947924614, -0.011891258880496025, 0.014645173214375973, 0.005814995151013136, 0.0017485588323324919, 0.02129693515598774, -0.02906438335776329, -8.699764293851331e-05, -0.008565378375351429, 0.0038625409360975027, 0.031324006617069244, 0.02004002034664154, -0.008332354947924614, -0.00013239971303846687, -0.013035193085670471, -0.004840533249080181, -0.013225847855210304, 0.009236203506588936, -0.039741095155477524, 0.030843837186694145, -0.012802169658243656, 0.042961057275533676, 0.011608806438744068, 0.02224315144121647, 0.003315288806334138, 0.0011377548798918724, -0.009666943922638893, 0.03991056978702545, 0.0010336004197597504, 0.047169603407382965, 0.018528897315263748, -0.015789106488227844, 0.02253972738981247, -0.008191128261387348, -0.014941748231649399, 0.008614807389676571, 0.0070648486725986, 0.004784042946994305, -0.023514188826084137, 0.027171950787305832, 0.02114158496260643, 0.013183480128645897, 0.028541846200823784, 0.017060143873095512, 0.009596331045031548, -0.00031577330082654953, 0.004526304546743631, 0.006948336958885193, -0.00386607157997787, -0.008600684814155102, -0.007760388310998678, 0.008466520346701145, -0.0008001356036402285, -0.02875368669629097, -0.0011236321879550815, -0.010125929489731789, -0.011072146706283092, 0.0209721140563488, 0.012187834829092026, 0.003537720302119851, -5.42562993359752e-05, 0.03680358827114105, 0.030843837186694145, -0.01946099102497101, -0.0341767780482769, 0.028231149539351463, 0.02889491245150566, -0.005567849148064852, -0.011919504962861538, -0.0035218321718275547, 0.008720727637410164, -0.024968819692730904, 0.013953164219856262, -0.006129223853349686, 0.0025261864066123962, 0.011735910549759865, 0.010189482010900974, -0.022822178900241852, -0.023415330797433853, 0.029346836730837822, -0.01864187978208065, -0.04217018932104111, -0.011601745150983334, -0.008092270232737064, 0.014857012778520584, -0.012385551817715168, -0.004445099737495184, 0.05513476952910423, -0.00855125579982996, -0.01741321012377739, -0.019771689549088478, -0.008212313055992126, -0.013550668954849243, -0.009610453620553017, -0.02551960200071335, -0.0013451810227707028, -0.010881491005420685, 0.03231259062886238, 0.008643053472042084, 0.013931980356574059, 0.0009047313360497355, 0.01158056128770113, 0.015068852342665195, -0.007372015621513128, -0.0018535959534347057, -0.014136758632957935, 0.007661529816687107, 0.06648936867713928, 0.026536433026194572, 0.005200660787522793, 0.0040002367459237576, -0.022723320871591568, -0.008579500950872898, -0.018910208716988564, -0.005730259232223034, 0.013861366547644138, -0.03835707902908325, 0.004999413155019283, 0.010344830341637135, 0.003096387954428792, -0.014631050638854504, 0.03702954947948456, 0.01405908353626728, -0.015492531470954418, -0.029149120673537254, -0.0003140079788863659, 0.007866308093070984, 0.010302462615072727, 0.0011289281537756324, 0.023387083783745766, 0.015591389499604702, 0.00016395497368648648, -0.006658822763711214, 0.007710959296673536, 0.02705897018313408, 0.002298458945006132, -0.01299282442778349, -0.016085682436823845, -0.03485466539859772, -0.0027539138682186604, 0.025533724576234818, -0.019065558910369873, 0.024742858484387398, -0.003396493848413229, 0.03516536206007004, -0.004077910911291838, 0.0010150644229725003, 0.010895613580942154, 0.017314352095127106, 0.0022402030881494284, -0.006704721134155989, -0.0004360363818705082, -0.007668591104447842, 0.0019595157355070114, 0.014334475621581078, -0.036605872213840485, -0.0326232872903347, -0.006319879554212093, -0.015930332243442535, -0.0537789948284626, -0.003738967701792717, 0.01491350308060646, 0.03547606244683266, -0.0023867255076766014, 0.012590330094099045, 0.03092857263982296, -0.024361547082662582, -0.01864187978208065, -0.007237850688397884, -0.006492881570011377, -0.013776631094515324, -0.016269275918602943, -0.030702609568834305, -0.012893966399133205, -0.020703783258795738, -0.03821585327386856, 0.018924331292510033, 0.008078147657215595, -0.035221852362155914, -0.015902087092399597, -0.02333059348165989, 0.0072519732639193535, 0.0018677185289561749, 0.025463111698627472, -0.013748385943472385, -0.0006999531178735197, 0.015125342644751072, -0.0016505829989910126, -0.008014596067368984, -0.013190541416406631, -0.03157821297645569, 0.001767094829119742, 0.005105332937091589, -0.02454514056444168, 0.0036365787964314222, -0.005846770945936441, 0.01056373119354248, -0.006178653333336115, -0.0047346134670078754, 0.012830414809286594, 0.02502530999481678, 0.005437214858829975, -0.004762859083712101, -0.003880194155499339, 0.026833007112145424, 0.0003378399123903364, -0.01602919213473797, 0.019178539514541626, -0.027002479881048203, -0.023034019395709038, -0.023203490301966667, -0.004300342407077551, -0.0014731674455106258, 0.043271753937006, 0.0011077442904934287, 0.020760273560881615, 0.005292457528412342, 0.017921624705195427, -0.01727198250591755, 0.021720614284276962, -0.018260568380355835, 0.018938453868031502, 0.0006668532150797546, 0.010055316612124443, 0.0008919326937757432, -0.0003971991245634854, -0.013698956929147243, -0.007647407241165638, -0.03714253008365631, 0.029601044952869415, 0.014871135354042053, -0.012399674393236637, -0.009935273788869381, 0.005274804309010506, -0.034572213888168335, -0.018133463338017464, 0.005250089801847935, 0.0031705317087471485, 0.022285519167780876, 0.019927039742469788, -0.016410503536462784, -0.02954455465078354, -0.010895613580942154, -0.010655528865754604, 0.020167123526334763, -0.015916209667921066, -0.026352837681770325, -0.007647407241165638, 0.004137932322919369, 0.014560437761247158, -0.00420148391276598, 0.04118160530924797, -0.028796054422855377, -0.012152528390288353, 0.033046968281269073, 0.006920091342180967, -0.00832529366016388, -0.0032234915997833014, -0.0008579501300118864, -0.01910792663693428, -0.0019895262084901333, -0.01522420160472393, -0.026013894006609917, -0.013748385943472385, -0.0008967873873189092, 0.03711428493261337, 0.03251030668616295, 0.03575851395726204, -0.019771689549088478, -0.008282925933599472, -0.02359892427921295, 0.022793933749198914, -0.001196893397718668, 0.0028615989722311497, 0.01338119711726904, -0.007463812828063965, -0.022299641743302345, 0.02985525131225586, 0.007555610034614801, 0.00033276461181230843, -0.03186066448688507, 0.02951630763709545, 0.02221490629017353, -0.017187247052788734, 0.004144993610680103, -0.02625397965312004, -0.06451220065355301, 0.010323646478354931, 0.016890672966837883, -0.0007763036410324275, -0.00386607157997787, -0.025279518216848373, -0.020280104130506516, 0.01785101182758808, 0.008078147657215595, 0.013946102932095528, 0.01018242072314024, 0.012265508994460106, -0.017752153798937798, 0.01741321012377739, 0.011446395888924599, 0.01040838286280632, -0.02129693515598774, -0.0015314233023673296, -0.01708838902413845, 0.010027071461081505, 0.023118754848837852, 0.017060143873095512, 0.006206898484379053, 0.0132046639919281, -0.0013566557317972183, -0.009370368905365467, 0.019870547577738762, -0.01991291716694832, -0.007590916473418474, -0.017017776146531105, -0.035815004259347916, -0.012456164695322514, -0.007089563179761171, 0.01598682440817356, -0.01258326880633831, 0.027623875066637993, 0.009765802882611752, -0.0026903620455414057, 0.012138405814766884, -0.011368721723556519, -0.002275509759783745, 0.0279628187417984, -0.0010141817620024085, 0.014885257929563522, -0.019799934700131416, 0.013508301228284836, 0.020477822050452232, 0.027129583060741425, -0.019489238038659096, -0.055897392332553864, 0.0009815231896936893, 0.005024127662181854, 0.025604339316487312, 0.02549135684967041, -0.010959165170788765, -0.012470287270843983, 0.03759445622563362, 0.009144406765699387, -0.045135945081710815, -0.03496764600276947, -0.0012931037927046418, 0.018881963565945625, 0.0341767780482769, -0.021353425458073616, -0.01570437103509903, -0.020647292956709862, 0.0014952340861782432, 0.0013990235747769475, 0.004120279103517532, -0.006026834715157747, -0.023076387122273445, -0.005098271649330854, 0.004293281119316816, 0.0019789342768490314, 0.022963406518101692, 0.0036754158791154623, -0.0034971176646649837, 0.012223141267895699, 0.0039155008271336555, -0.022723320871591568, 0.012971640564501286, 0.016043314710259438, 0.02424856461584568, -0.0048193493857979774, 0.005825587082654238, 0.0019012598786503077, 0.00879134051501751, 0.0046851844526827335, -0.01772390864789486, -0.013296461664140224, 0.05024833604693413, -0.02189008519053459, 0.012088975869119167, -0.002637402154505253, -0.01351536251604557, 0.03064611926674843, -0.0010936215985566378, -0.006785926409065723, 0.014546315185725689, -0.0075061810202896595, -0.007259034551680088, 0.01694716326892376, 0.00749205844476819, -0.021960698068141937, -0.0046004485338926315, -0.012653881683945656, -0.01057785376906395, -0.007071909960359335, 0.007774510886520147, 0.03462870419025421, -0.006785926409065723, -0.02968578040599823, 0.008989057503640652, -0.0471978485584259, -0.0026868314016610384, 0.025731442496180534, -0.016410503536462784, 0.0022031310945749283, 0.0360974557697773, -0.04355420917272568, -0.005341887008398771, -0.015647880733013153, -0.004508651327341795, 0.0024202666245400906, 0.009215019643306732, -0.015068852342665195, -0.02205955609679222, 0.027892205864191055, -0.02378251776099205, -0.018119340762495995, -0.017017776146531105, -0.017935747280716896, 0.015308937057852745, 0.00785924680531025, 0.04084266349673271, 0.028951402753591537, 0.009702250361442566, -0.001039779046550393, -0.004526304546743631, -0.010549608618021011, 0.007040133699774742, 0.012364367954432964, 0.0016188070876523852, 0.04620926454663277, -0.031295761466026306, 0.022652707993984222, -0.00427562789991498, 0.02269507572054863, -0.013070499524474144, -0.030674364417791367, -0.03855479508638382, 0.00520419143140316, -0.001615276443772018, -0.017483823001384735, -0.012314938008785248, 0.0012233733432367444, -0.004028481896966696, -0.01898082159459591, -0.012957517988979816, 0.008480642922222614, -0.01679181307554245, 0.02580205537378788, 0.019348010420799255, -0.0005397494533099234, 0.01196893397718668, -0.020011775195598602, -0.024771103635430336, -0.015774983912706375, -0.02142403833568096, -0.013571852818131447, 0.00010718859994085506, -0.007149584125727415, 0.025604339316487312, -4.600889951689169e-05, -0.030363665893673897, -0.013508301228284836, -0.00306814257055521, -0.009765802882611752, -0.0019595157355070114, -0.009511594660580158, 0.036153946071863174, 0.01785101182758808, -0.010860307142138481, 0.004032012540847063, 0.017949869856238365, 0.0034212085884064436, -0.014560437761247158, 0.0029657534323632717, -0.0004956162301823497, -0.03561728820204735, -0.020463699474930763, 0.01633988879621029, 0.01691891811788082, -0.01587384194135666, -0.010535486042499542, 0.019616341218352318, -0.004279158543795347, 0.006464636418968439, 0.026833007112145424, -0.008042841218411922, -0.01707426644861698, -0.00041639708797447383, -0.01468754094094038, -0.018373548984527588, 0.014030838385224342, 0.01195481140166521, -0.04440156742930412, -0.006012712139636278, 0.027779225260019302, -0.0012374959187582135, -0.03169119358062744, 0.025364253669977188, 0.011065085418522358, -0.016198663040995598, 0.022610340267419815, -0.018246445804834366, -0.0072272587567567825, -0.009433920495212078, -0.01516771037131548, 0.0299964789301157, -0.002607391681522131, 0.022963406518101692, 0.019983530044555664, 0.00879134051501751, 0.009215019643306732, -0.023401208221912384, 0.018105218186974525, -0.0038943167310208082, -0.0038448874838650227, 0.03217136487364769, -0.016424626111984253, -0.004671061877161264, -0.005927976220846176, 0.00871366634964943, -0.02268095314502716, -0.0038943167310208082, 0.00567023828625679, 0.02440391480922699, -0.06654585897922516, 0.011446395888924599, 0.000363437196938321, -0.027920451015233994, 0.004533365834504366, -0.0032799821346998215, 0.007047194987535477, -0.020265981554985046, -0.03437449410557747, 0.024163829162716866, -0.012611513957381248, 0.017639171332120895, 0.007040133699774742, -0.018938453868031502, -0.01438390463590622, 0.0038731328677386045, -0.02532188594341278, -0.03849830478429794, -0.004303873050957918, 0.24923627078533173, -0.009596331045031548, -0.011983056552708149, 0.01756855845451355, 0.004494528751820326, -0.010521363466978073, 0.041718266904354095, -0.026776516810059547, -0.012442042119801044, 0.01499823946505785, 0.011171004734933376, -0.0016426390502601862, -0.03188890963792801, -0.009285632520914078, 0.007308464031666517, -0.004127340391278267, -0.03174768388271332, -0.0008354421588592231, -0.01802048273384571, 0.022271396592259407, 0.013522423803806305, 0.01739908754825592, 0.012837476097047329, -0.009737557731568813, 0.004296811763197184, -0.0157184936106205, 0.006475228350609541, -0.000831028854008764, -0.0036754158791154623, 0.01725785993039608, -0.025293640792369843, 0.010514302179217339, -0.00044574568164534867, 0.0059668137691915035, -0.027270808815956116, -0.00862892996519804, 0.010394260287284851, 0.00924326479434967, 0.01600094698369503, 0.006351655349135399, 0.0061009787023067474, 0.007149584125727415, 0.0020530782639980316, 0.000598446698859334, -0.021325180307030678, 0.03688832372426987, -0.004699307028204203, -0.008282925933599472, -0.00963163748383522, 0.011283986270427704, -0.036153946071863174, -0.02052018977701664, 0.03759445622563362, 0.02438979223370552, 0.016565851867198944, 0.001966577023267746, 0.00831117108464241, 0.009928212501108646, 0.001714134938083589, -0.01203248556703329, -0.009702250361442566, 0.02985525131225586, -0.009730495512485504, 0.021409915760159492, -0.011693541891872883, 0.0003618925402406603, -0.04104037955403328, 0.013691895641386509, 0.005832648370414972, -0.009320939891040325, -0.006408146116882563, -0.010690835304558277, -0.007294341456145048, -0.01645287126302719, -0.025689074769616127, -0.03742498531937599, 0.03033542074263096, 0.031465232372283936, 0.004618101753294468, 0.007195482961833477, -0.0016188070876523852, 0.009299756027758121, 0.006496412213891745, 0.003562434809282422, -0.002773332642391324, -0.035843249410390854, 0.01848652958869934, -0.003486525733023882, -0.014080267399549484, -0.004039073828607798, -0.01546428631991148, -0.011997179128229618, -0.013868427835404873, -0.01498411688953638, -0.013239971362054348, -0.01786513440310955, 0.008000473491847515, 0.007668591104447842, -0.005493705160915852, 0.0015217140316963196, -0.011601745150983334, 0.07857834547758102, 0.015930332243442535, 0.009843477047979832, -0.002808639081194997, -0.004699307028204203, -0.0197151992470026, 0.011545254848897457, 0.00497822929173708, -0.008607746101915836, 0.0017591507639735937, -0.02486996166408062, 0.007294341456145048, 0.007605039514601231, -0.012893966399133205, -0.002575615653768182, -0.016820058226585388, -0.0082476194947958, 0.013331768102943897, -0.02068966068327427, 0.0204919446259737, -0.02114158496260643, 0.01127692498266697, 0.004102625884115696, -0.011495825834572315, -0.011778278276324272, 0.006005650851875544, -0.015492531470954418, -0.017469700425863266, -0.035221852362155914, 0.03671885281801224, -0.03188890963792801, -0.00297458004206419, -0.008367661386728287, 0.011050962843000889, 0.00403554318472743, 0.00780981732532382, -0.01802048273384571, 0.02022361382842064, -0.007647407241165638, -0.010175359435379505, 0.011227495037019253, 0.019348010420799255, 0.008134637959301472, 0.0111145144328475, 0.0015782045666128397, 0.005140639375895262, 0.020435454323887825, 0.0005913853528909385, 0.010754386894404888, -0.02505355514585972, -0.0001557903306093067, -0.0082476194947958, -0.02285042405128479, 0.010697896592319012, -0.0006990704569034278, -0.015308937057852745, -0.024192074313759804, 0.014969993382692337, 0.028174657374620438, -0.041577041149139404, 0.014871135354042053, 0.023683659732341766, -0.041887737810611725, -0.02985525131225586, -0.015365427359938622, -0.18269041180610657, 0.013931980356574059, 0.038159362971782684, -0.00676474254578352, 0.0032093690242618322, 0.008268803358078003, 0.012837476097047329, -0.008042841218411922, -0.005320703145116568, 0.012265508994460106, 0.03075909987092018, -0.008727788925170898, -0.0028845483902841806, -0.02314699999988079, -0.0016973642632365227, 0.00855125579982996, -0.0284429881721735, 0.008664237335324287, 0.010606099851429462, 0.004286219831556082, 0.032425571233034134, -0.010719080455601215, -0.015294814482331276, 0.00652465783059597, -0.004208545200526714, 0.017653293907642365, -0.006574086844921112, 0.007929859682917595, 0.011043901555240154, -0.03282100707292557, 0.014122636057436466, -0.03282100707292557, 0.03251030668616295, 0.007795694749802351, 0.019079681485891342, -0.02362716943025589, -0.017935747280716896, -0.00206190487369895, -0.02362716943025589, 0.035843249410390854, -0.001149229472503066, 0.024926451966166496, -0.00695186760276556, 0.00613628514111042, -0.004639285616576672, 0.0015367192681878805, 0.009094977751374245, -0.003813111688941717, 0.022031310945749283, -0.014828767627477646, 0.021720614284276962, -0.02876780927181244, -0.002798047149553895, -0.022624462842941284, 0.031295761466026306, 0.009320939891040325, 0.005652585066854954, 0.0034776991233229637, 0.0055184196680784225, -0.011072146706283092, -0.0023055202327668667, 0.0010618456872180104, 0.03282100707292557, 0.014179126359522343, -0.010125929489731789, -0.018698370084166527, -0.02676239423453808, 0.03267977759242058, -0.025759687647223473, 0.003140521002933383, 0.025208905339241028, -0.0035518428776413202, 0.01016829814761877, -0.024968819692730904, 0.013840182684361935, -0.005942098796367645, -0.003152878489345312, 0.007929859682917595, 0.013028131797909737, 0.004519243258982897, 0.0031793583184480667, 0.02142403833568096, -0.003126398427411914, -0.004127340391278267, -0.0030946226324886084, 0.019178539514541626, 0.01851477473974228, -0.004681653808802366, -0.02780747041106224, -0.01275273971259594, 0.03296223282814026, -0.027750978246331215, -0.02595740370452404, -0.02191833034157753, -0.022229028865695, 0.0276662427932024, -0.0010371310636401176, -0.011375783011317253, -0.00340178981423378, 0.008530071936547756, 0.008106392808258533, 0.010316585190594196, -0.027412036433815956, 0.00044729033834300935, 0.023980235680937767, -0.01803460530936718, -0.014214432798326015, 0.005006474442780018, 0.046068038791418076, -0.008177005685865879, -0.00613628514111042, -0.001885371864773333, 0.0021872431971132755, 0.02142403833568096, -0.0072272587567567825, 0.027426159009337425, -0.014327414333820343, -0.00948334950953722, 0.02344357594847679, -0.006584678776562214, 0.007795694749802351, -0.0063340021297335625, 0.022299641743302345, 0.015662003308534622, -0.0007767449715174735, -0.02954455465078354, -0.058354731649160385, -0.0021872431971132755, 0.029629290103912354, 0.04024951159954071, -0.014729908667504787, 0.0209721140563488, -0.014786399900913239, 0.037537965923547745, -0.026818884536623955, 0.02037896402180195, 0.001429916825145483, -0.03993881493806839, -0.019545728340744972, 0.028372375294566154, 0.01584559679031372, 0.013776631094515324, -0.03169119358062744, 0.00956808589398861, -0.02333059348165989, 0.02266683056950569, 0.0211557075381279, -0.013840182684361935, 0.010027071461081505, -0.042028963565826416, -0.015605512075126171, 0.0016514656599611044, -0.022949282079935074, 0.025208905339241028, 0.025576092302799225, 0.01087442971765995, 0.037848662585020065, -0.013769569806754589, 0.01165823545306921, -0.021522896364331245, 0.004787573590874672, -0.01691891811788082, -0.013006947003304958, -0.019545728340744972, 0.011601745150983334, -0.02381076291203499, 0.01909380406141281, 0.00948334950953722, 0.012964579276740551, 0.020082388073205948, -0.00390490866266191, -0.01772390864789486, -0.002699188655242324, 0.02344357594847679, 0.008544194512069225, -0.01679181307554245, -0.04488173499703407, -0.010521363466978073, -0.02160763181746006, -0.021508773788809776, 0.007244911976158619, -0.0014846420381218195, 0.014475701376795769, 0.01018242072314024, -0.045926813036203384, 0.012244325131177902, -0.007887491956353188, 0.0075061810202896595, -0.007086032535880804, 0.022779811173677444, 0.027637997642159462, 0.006987174041569233, -0.026833007112145424, -0.02470048889517784, 0.0057373205199837685, -0.02518066018819809, -0.00030231266282498837, 0.016537606716156006, -0.01570437103509903, 0.02608450874686241, -0.02982700616121292, -0.00955396331846714, -0.01399553194642067, -0.021099217236042023, 0.04115336015820503, -0.014800522476434708, -0.026042141020298004, -0.02472873590886593, 0.0034000244922935963, -0.0211557075381279, 0.018147585913538933, 0.013818998821079731, -0.036125700920820236, 0.006644700188189745, 0.01727198250591755, -0.03485466539859772, 0.00023236148990690708, 0.011312231421470642, 0.02532188594341278, -0.016579974442720413, -0.02501118741929531, 0.005645523779094219, 9.450029028812423e-05, -0.01352948509156704, 0.011919504962861538, 0.026494065299630165, -0.011156882159411907, -0.006394023075699806, -0.06637638807296753, 0.036605872213840485, -0.0036542320158332586, -0.0018677185289561749, -0.003671885235235095, -0.0020001183729618788, 0.023090509697794914, -0.025703197345137596, 0.007414383813738823, -0.004208545200526714, -0.01470166351646185, 0.04233966022729874, 0.007943982258439064, -0.029911741614341736, -0.021678246557712555, -0.02628222480416298, 0.02095799148082733, 0.016692955046892166, -0.0016973642632365227, 0.0005137108964845538, 0.029798761010169983, 0.011495825834572315, 0.018430039286613464, 0.008932567201554775, -0.023824885487556458, 0.007386138662695885, -0.00019815823179669678, 0.014800522476434708, -0.01024597231298685, -0.007442628964781761, 0.007213136181235313, -0.024658121168613434, -0.03341415524482727, -0.003396493848413229, -0.013211725279688835, -0.01195481140166521, -0.0019365664338693023, 0.0104860570281744, 0.005666707642376423, 0.03157821297645569, -0.004169708117842674, -0.024008480831980705, -0.0006386079476214945, -0.004346241243183613, -0.029488062486052513, 0.0016126284608617425, -0.027157828211784363, 0.01165823545306921, 0.014955870807170868, 0.02129693515598774, 0.022101925686001778, 0.014532191678881645, -0.008501826785504818, -0.04595505818724632, -0.013501239940524101, -0.02359892427921295, 0.011036839336156845, 0.0009329766035079956, -0.003700130619108677, 0.0019471583655104041, 0.02220078371465206, 0.011926566250622272, 0.006111570633947849, -0.016071559861302376, -0.012138405814766884, -0.006655292119830847, -0.00591032300144434, 0.0007149584125727415, 0.01150288712233305, -0.011905381456017494, -0.031945403665304184, -0.009589269757270813, -0.029177365824580193, -0.009045547805726528, -0.0038166423328220844, 0.04383666068315506, 0.013042254373431206, 0.001144816167652607, -0.012950456701219082, 0.01080381590873003, 0.006577617488801479, -0.00987172219902277, -0.01203248556703329, -0.007887491956353188, 0.00420148391276598, -0.024954697117209435, -0.026931867003440857, 0.013557730242609978, -0.007965166121721268, -0.01632576622068882, -0.012540900148451328, 0.014016715809702873, 0.0008045489084906876, 0.018062850460410118, 0.011933627538383007, 0.022017188370227814, 0.0007515890174545348, -0.01539367251098156, 0.014320352114737034, -0.01242085825651884, -0.0034353311639279127, -0.031126288697123528, 0.0132046639919281, 0.003926092758774757, -0.012590330094099045, -0.0028527723625302315, -0.00987172219902277, -0.03016594983637333, 0.000783806259278208, 0.017639171332120895, 0.018091095611453056, 0.03635166585445404, -0.007823940366506577, 0.006326940841972828, -0.006090386770665646, 0.003078734502196312, -0.005843240302056074, -0.015549021773040295, -0.013395319692790508, 0.005730259232223034, 0.037396740168333054, 0.0015225966926664114, 0.011877136304974556, -0.014588682912290096, 0.025448989123106003, 0.006870662327855825, 0.001955985091626644, -0.03575851395726204, 0.010697896592319012, -0.0029092628974467516, -0.004822880029678345, -0.0007842475897632539, -0.015266569331288338, -0.019404500722885132, -0.0026338715106248856, -0.01943274587392807, -0.005059434100985527, 0.008897260762751102, -0.033188194036483765, 0.0721949115395546, 0.020477822050452232, -0.004575734026730061, -0.014602805487811565, -0.020138878375291824, -0.0027327300049364567, -0.017314352095127106, -0.0009391552885062993, -0.028852544724941254, -0.016721200197935104, -0.01219489611685276, -0.00925738736987114, -0.009335062466561794, -0.016834180802106857, -0.005560787860304117, -0.004042604472488165, -0.011058024130761623, 0.039091456681489944, 0.020280104130506516, -0.021014481782913208, 0.047508545219898224, 0.0006858304841443896, 0.023966113105416298, 0.02208780311048031, -0.01617041788995266, -0.005310111213475466, -0.0055643185041844845, -0.020717905834317207, -0.002143109915778041, -0.012618575245141983, -0.005497235804796219, -0.015294814482331276, -0.007647407241165638, -0.020308349281549454, -0.01817583292722702, 0.025208905339241028, 0.0006796518573537469, 0.016212785616517067, 0.012540900148451328, -0.007760388310998678, 0.02345769852399826, 0.02395199052989483, -0.027468526735901833, -0.03248206153512001, -0.006051549222320318, 0.007237850688397884, -0.019235029816627502, -0.003855479648336768, -0.008042841218411922], "ad6bdffa-b1d6-4451-b6d6-f7c43bace4fe": [0.007721554953604937, 0.014265608042478561, 0.01093292236328125, -0.02226548083126545, -0.006287144031375647, 0.0007145292474888265, -0.011482423171401024, -0.014315563254058361, -0.014322699047625065, -0.025062939152121544, 0.004663619212806225, -0.007114963140338659, 0.007621645461767912, 0.0056841205805540085, -0.010304921306669712, -0.011939151212573051, 0.01959647797048092, -0.0010972172021865845, 0.020938117057085037, -0.0110827861353755, -0.0037822772283107042, -0.013295061886310577, -0.0011632286477833986, -0.016599202528595924, -0.017783839255571365, 0.007243417669087648, 0.02384975552558899, -0.037508774548769, -0.009220193140208721, 0.0063620759174227715, 0.037822771817445755, -0.009312965907156467, -0.008242510259151459, -0.010825877077877522, 0.0018322635442018509, 0.0006895519909448922, 0.0016012234846130013, 0.0009286204585805535, 0.029458945617079735, 0.0020106728188693523, 0.030657855793833733, 0.005098938010632992, 0.015129108913242817, -0.008649283088743687, -0.013202289119362831, 0.021137934178113937, -0.021794481202960014, -0.023435845971107483, -0.03305567800998688, 0.023464392870664597, 0.013837425969541073, 0.02364993840456009, -0.02453484758734703, -0.026989759877324104, 0.008149737492203712, -0.017869476228952408, -0.008799146860837936, 0.029216308146715164, -0.0033755041658878326, -0.006151552777737379, 0.01029064878821373, -0.002092741196975112, -0.018583113327622414, 0.0016654508654028177, -0.007236281409859657, 0.00984105747193098, -0.01627092808485031, 0.010697421617805958, -0.02617621421813965, -0.02413521148264408, -0.003996368497610092, -0.007821463979780674, 0.023121846839785576, -0.03157131001353264, 0.043703142553567886, -0.007336190901696682, -0.0013835642021149397, -0.038507863879203796, 0.023364482447504997, -0.002174809342250228, 0.004060595761984587, 0.009905284270644188, -0.001549484790302813, -0.013737516477704048, 0.010005193762481213, 0.010747376829385757, -0.004481641575694084, 0.007957055233418941, 0.01855456829071045, 0.01310951542109251, -0.010019466280937195, 0.00292412843555212, 0.006105166394263506, 0.008527965284883976, -0.012003378011286259, 0.020210206508636475, -0.005855393595993519, 0.010747376829385757, -0.006661803461611271, -0.04681460186839104, -0.004838460590690374, 0.017584022134542465, -0.04278968647122383, 0.0011498479871079326, -0.022622300311923027, -0.005316597409546375, 0.021537572145462036, 0.00012745114509016275, -0.01350201666355133, -0.0064833941869437695, -0.01825484074652195, 0.038308046758174896, 0.022037116810679436, -0.024063847959041595, -0.04847024008631706, -0.019054114818572998, 0.02513430267572403, -0.01662774756550789, -0.004228300414979458, -0.015714291483163834, 0.008435191586613655, 0.012160378508269787, 0.02493448555469513, 0.00508109712973237, 0.0034058336168527603, 0.0014451154274865985, 0.0033969131764024496, -0.009705466218292713, -0.020809661597013474, -0.0291877631098032, 0.025648122653365135, 0.02072402462363243, 0.007464645430445671, 0.016642021015286446, -0.014829381369054317, 0.01026923954486847, -0.015600109472870827, 0.0028349237982183695, -0.02108084410429001, -0.025690941140055656, 0.00984105747193098, 0.016956020146608353, -0.008285327814519405, 0.00041078744106926024, -0.02172311767935753, 0.001603007665835321, 0.01799793168902397, 0.02152329869568348, 0.018326204270124435, 0.005744779482483864, -0.006372780539095402, -0.02098093368113041, -0.0007328162319026887, -0.0061943712644279, -0.005423643160611391, 0.028374215587973595, 0.024991575628519058, -0.0010205012513324618, -0.0005517308018170297, -0.010012330487370491, 0.010254967026412487, 0.003621708834543824, 0.018083566799759865, -0.008499419316649437, -0.004938369616866112, 0.02176593616604805, 0.005377256311476231, -0.0007787566282786429, 0.011453877203166485, -0.019025567919015884, -0.01127546839416027, 0.02082393504679203, -0.015157654881477356, 0.012353060767054558, 0.008920465596020222, 0.015343200415372849, 0.007364736404269934, 0.00186437729280442, -0.00442811893299222, -0.017598293721675873, 0.0005615432746708393, -0.0071684857830405235, 0.020153114572167397, 0.0006614525336772203, 0.007635918445885181, -0.009305829182267189, 0.00022356916451826692, 0.019353842362761497, 0.020110297948122025, -0.0023228891659528017, 0.024249393492937088, 0.03662386164069176, -0.00524166552349925, 0.008670692332088947, -0.5841549038887024, -0.03636695444583893, -0.005266642663627863, 0.002499514492228627, 0.029202034696936607, 0.0126884700730443, 0.0043210736475884914, 0.01889711432158947, -0.022522391751408577, 0.007992736995220184, -0.005573506932705641, 0.010205012746155262, 0.01011937577277422, -0.0037680044770240784, 0.0003099861787632108, -0.019696388393640518, 0.03899313881993294, -0.04107695817947388, -0.0006739411619491875, 0.02409239299595356, -0.010868694633245468, -0.005905347876250744, -0.015714291483163834, 0.01375178899616003, -0.00011128280311822891, 0.0015396723756566644, -0.0014031891478225589, -0.009577011689543724, 0.011639422737061977, 0.012160378508269787, -0.015229018405079842, -0.001756439683958888, 0.005794734228402376, 0.005448620300740004, 0.04550150781869888, 0.01671338453888893, -0.03414040431380272, 0.02053847908973694, 0.010383421555161476, 0.03199949488043785, -0.040791504085063934, -0.043018050491809845, 0.009719738736748695, 0.0031364355236291885, 0.012831197120249271, 0.00026203866582363844, 0.022393936291337013, 0.007257690653204918, 0.0123887425288558, -0.0005428103031590581, 0.008492282591760159, -0.021109389141201973, -0.004231868777424097, -0.01959647797048092, -0.00538082467392087, -0.002911639865487814, 0.019211113452911377, -0.02587648667395115, 0.008756328374147415, -0.023036209866404533, 0.008299601264297962, -0.02513430267572403, -0.024748938158154488, 0.004460232798010111, -0.026775669306516647, -0.0034789815545082092, -0.009534193202853203, 0.0036716635804623365, -0.004620801191776991, -0.0379084087908268, -0.002681491896510124, -0.010369149036705494, -0.013452061451971531, -0.0009420011192560196, 0.0011525241425260901, 0.01582847349345684, 0.034111861139535904, -0.008206828497350216, -0.022236935794353485, 0.010426240041851997, 0.0006944582564756274, -0.01046192180365324, 0.004624369088560343, -0.018140658736228943, 0.024563392624258995, -0.004699300974607468, -0.029801489785313606, -0.018526023253798485, -3.964031930081546e-05, -0.014900744892656803, 0.008770601823925972, 0.006019529886543751, 0.002355002798140049, -0.033769313246011734, 0.014629563316702843, 0.018568839877843857, 0.017384203150868416, 0.00774296373128891, 0.035938769578933716, -0.012124696746468544, -0.026647213846445084, 0.008763465099036694, 0.004756391979753971, 0.0031239469535648823, 0.02463475801050663, -0.009983784519135952, -0.014957835897803307, 0.0035110951866954565, 0.017298566177487373, 0.010069421492516994, 0.01313806138932705, 0.0054414840415120125, -0.012074741534888744, 0.0033576630521565676, -0.014551063068211079, -0.039706774055957794, 0.011539514176547527, 0.010975740849971771, 0.009512783959507942, 0.02028157003223896, 0.03305567800998688, 0.009462829679250717, 0.0017394907772541046, -0.01061178557574749, -0.002683276077732444, 0.011032831855118275, -0.011132740415632725, -0.005038278643041849, 0.0033416063524782658, 0.0014593881787732244, 0.008763465099036694, -0.020638389512896538, 0.0142441987991333, -0.0218658447265625, 0.027118215337395668, -0.02043857052922249, 0.002367491601034999, -0.010604648850858212, 0.0262761227786541, -0.010090830735862255, -0.023778392001986504, -0.016256656497716904, 0.015614382922649384, -0.019696388393640518, -0.02784612402319908, -0.011461013928055763, -0.010790195316076279, 0.025947850197553635, -0.0186544768512249, 0.008271055296063423, 0.003093617269769311, -0.0019161159871146083, -0.02409239299595356, 0.03288440406322479, -0.008592192083597183, 0.009248738177120686, 0.012973925098776817, -0.02656157687306404, -0.009070329368114471, -0.003885754616931081, -0.018840022385120392, -0.0012337003136053681, -0.033769313246011734, -0.002651162212714553, -0.006569030694663525, -0.013723243959248066, -0.0024977303110063076, 0.021980026736855507, -0.04638642072677612, -0.03833659365773201, -0.022879209369421005, -0.011989105492830276, 0.0063692121766507626, -0.0075645544566214085, 0.013980153016746044, -0.0009170238627120852, -0.023464392870664597, 0.025905031710863113, -0.0027189578395336866, -0.01751265674829483, 0.0025726621970534325, -0.0019964000675827265, -0.0029134240467101336, -0.01169651374220848, -0.00475996034219861, 0.004752824082970619, 0.05480733886361122, 0.023707028478384018, -0.025947850197553635, 0.019468024373054504, -0.012303105555474758, 0.020053206011652946, -0.0023068322334438562, 0.01318087987601757, 0.018583113327622414, 0.0247774850577116, -0.011518104933202267, -0.012074741534888744, 0.004231868777424097, 0.038222409784793854, 0.030315309762954712, 0.0029294807463884354, 0.018383294343948364, -0.012502924539148808, 0.021808752790093422, -0.025491122156381607, -0.01811211369931698, -0.018183477222919464, 0.0023871164303272963, 0.012524333782494068, -0.012438696809113026, -0.016841838136315346, -0.02226548083126545, -0.020153114572167397, 0.0009669784340076149, -0.002139127580448985, -0.016613474115729332, -0.0059981211088597775, -0.0187543872743845, 0.017826657742261887, 0.013066697865724564, -0.007261259015649557, 0.03502531349658966, -0.012973925098776817, 0.007621645461767912, 0.0026244008913636208, 0.002258661901578307, 0.03308422118425369, 0.01785520277917385, -0.02413521148264408, 0.005384393036365509, -0.01831193082034588, 0.017869476228952408, -0.005559233948588371, -0.006165825761854649, -0.04230441525578499, 0.023321663960814476, -0.030800582841038704, 0.06234334781765938, 0.004959778860211372, 0.021480480208992958, -0.0028884466737508774, -0.010212148539721966, -0.012053333222866058, 0.04607241973280907, 0.0060873255133628845, 0.062057893723249435, 0.021052299067378044, -0.006222916767001152, 0.02666148729622364, 0.010925785638391972, -0.009783966466784477, 0.013566243462264538, 0.010833012871444225, -0.001857240917161107, -0.012824061326682568, 0.026975486427545547, 0.044787872582674026, 0.01392306201159954, 0.023864028975367546, 0.030686400830745697, 0.027632033452391624, 0.0016012234846130013, -0.011304013431072235, 0.004456664435565472, 0.0033826404251158237, 0.0094771021977067, -0.017526930198073387, -0.006472689565271139, -0.004363891668617725, -0.01727002114057541, -0.019410932436585426, -0.021137934178113937, -0.010775921866297722, 0.004574414808303118, -0.012017650529742241, 0.013594789430499077, 0.033512406051158905, 0.031143128871917725, 0.018340475857257843, -0.02784612402319908, -0.02043857052922249, 0.013644743710756302, 0.03082912787795067, 0.007082849275320768, 0.0006155121373012662, 0.007735827472060919, -0.010226421058177948, -0.02048138901591301, 0.015072017908096313, -0.005455756559967995, 0.018269112333655357, -0.002333593787625432, -0.009312965907156467, -0.019011296331882477, -0.01983911544084549, 0.038165319710969925, 0.0010356659768149257, -0.04827042296528816, -0.007275531534105539, -0.008413783274590969, -0.016599202528595924, -0.024720393121242523, 0.0035325041972100735, 0.06776699423789978, -0.016499292105436325, -0.02210848219692707, -0.0035325041972100735, -0.013466334901750088, -0.016385110095143318, -0.016399383544921875, -0.011047104373574257, 0.002206923207268119, 0.01471519935876131, 0.026304667815566063, 0.011032831855118275, 0.03225640207529068, -0.001669019111432135, 0.019710659980773926, 0.010790195316076279, -0.008941874839365482, -0.010647467337548733, 0.001234592404216528, 0.02750357799232006, 0.026433123275637627, 0.03022967278957367, -0.004941937979310751, 0.00777864595875144, -0.04541587457060814, -0.009876739233732224, -0.03234203904867172, 0.011196968145668507, 0.02190866321325302, -0.0377085916697979, 0.008378101512789726, 0.0025316281244158745, 0.0036181407049298286, -0.017227202653884888, 0.02898794412612915, 0.013730380684137344, -0.008991829119622707, -0.012238878756761551, 0.0029615946114063263, -0.006718894466757774, 0.02383548393845558, -0.013673289678990841, 0.01140392292290926, 0.022479573264718056, 0.0020231616217643023, -0.006287144031375647, -0.006990076508373022, 0.03548204153776169, 0.007040031254291534, -0.029259126633405685, 0.012395878322422504, -0.014087199233472347, 0.010847286321222782, 0.01717011258006096, -0.017541203647851944, 0.036138590425252914, 0.007043599616736174, 0.03873622789978981, -0.01427274476736784, -0.0020713319536298513, 0.0007546713459305465, 0.02250811830163002, 0.002033866010606289, -0.01746984012424946, 0.0007734043174423277, -0.010326330550014973, 0.012260288000106812, 0.015657201409339905, -0.016613474115729332, -0.016056837514042854, -0.008870510384440422, 0.0045886873267591, -0.05720515921711922, 0.0022925594821572304, 0.025962121784687042, 0.02963021770119667, -0.011361104436218739, 0.022165572270751, 0.003650254337117076, -0.011268331669270992, -0.011304013431072235, -0.019125478342175484, -0.013373561203479767, -0.013944471254944801, -0.015585836954414845, -0.01295965164899826, -0.017526930198073387, -0.016642021015286446, -0.04590114578604698, 0.020709753036499023, 0.0021569684613496065, -0.030743490904569626, -0.03468276932835579, -0.004970483481884003, 0.008121191523969173, 0.03097185492515564, 0.03274167701601982, -0.007314781658351421, -0.02369275689125061, 0.03536786139011383, -0.009270147420465946, -0.012645651586353779, -0.00826391950249672, -0.021480480208992958, 0.0023853324819356203, -0.008242510259151459, -0.023378755897283554, -0.0018608090467751026, 0.002956242300570011, 0.008035555481910706, -0.013937335461378098, 0.008984692394733429, -0.009805375710129738, 0.004403141792863607, -0.0022247640881687403, -0.010961467400193214, -0.004024914000183344, 0.032028038054704666, -0.009312965907156467, -0.033569496124982834, 0.010690285824239254, -0.026233304291963577, -0.00791423674672842, -0.011311150155961514, -0.03294149413704872, 0.013387834653258324, 0.019824841991066933, 0.006001689005643129, 0.013737516477704048, 0.008906192146241665, 0.03459713235497475, -0.005990984383970499, 0.011368241161108017, 0.0011257627047598362, -0.005659143440425396, 0.010654604062438011, 0.013316471129655838, 0.010297785513103008, 0.012510060332715511, -0.013266515918076038, 0.02820294350385666, -0.027860397472977638, 0.025120031088590622, 0.02112366259098053, 0.0005668955855071545, 0.013444925658404827, 0.007407554425299168, -0.0224652998149395, -0.015657201409339905, 0.014829381369054317, 0.0018358317902311683, 0.026147667318582535, -0.004342482425272465, -0.004121255129575729, -0.03279876708984375, -0.006751008331775665, -0.008221101015806198, 0.028716761618852615, -0.030315309762954712, -0.025990668684244156, -0.009555602446198463, -0.008106919005513191, 0.010847286321222782, -0.018782932311296463, 0.025405485183000565, -0.03516804426908493, -0.021637480705976486, 0.024720393121242523, 0.009284419938921928, 0.0038786183577030897, -0.013516289182007313, 0.017255747690796852, 0.0036966409534215927, -0.008763465099036694, -0.00951992068439722, -0.016413656994700432, -0.01771247573196888, -0.004524460062384605, 0.03442585840821266, 0.02270793728530407, 0.024449210613965988, -0.02666148729622364, -0.0014549278421327472, -0.01095433160662651, 0.012238878756761551, 0.008128328248858452, -0.006929417606443167, 0.026932669803500175, 0.0006409354391507804, -0.01617101952433586, 0.04002077504992485, -0.005726938601583242, 0.0061586895026266575, -0.039849501103162766, 0.01471519935876131, 0.020666934549808502, -0.008720646612346172, 0.005719802342355251, -0.009113147854804993, -0.06051643565297127, -0.014201381243765354, 0.025890758261084557, -0.012645651586353779, 0.016014019027352333, -0.031942401081323624, 0.0041676415130496025, 0.015814201906323433, 0.00073103210888803, 0.024905938655138016, -0.0088776471093297, 0.01761256717145443, -0.016998838633298874, -0.0034111859276890755, -0.0006498558796010911, 0.01652783900499344, -0.030086945742368698, 0.011132740415632725, -0.0282885804772377, 0.015371745452284813, 0.04501623660326004, 0.015999747440218925, 0.014408336021006107, 0.011482423171401024, 0.006704621948301792, -0.024377847090363503, 0.026775669306516647, -0.005509279202669859, -0.008920465596020222, -0.015899837017059326, -0.023564301431179047, -0.023221755400300026, -0.02963021770119667, 0.00308648101054132, 0.006547621451318264, 0.005223824642598629, 0.013245106674730778, -0.0030561513267457485, 0.020938117057085037, -0.005894643720239401, -0.010982876643538475, -0.0072719631716609, -0.023635664954781532, 0.025705212727189064, 0.0031221627723425627, 0.020609842613339424, 0.04384586960077286, 0.006626121699810028, -0.021780207753181458, -0.04090568423271179, 0.0015985474456101656, -0.0004223840369377285, 0.028060216456651688, 0.01140392292290926, -0.00695082638412714, -0.017498385161161423, 0.033226948231458664, 0.03422604128718376, -0.026290396228432655, -0.015300381928682327, 0.01157519593834877, 0.03291294723749161, 0.023906847462058067, -0.016799019649624825, 0.006883031222969294, -0.022279754281044006, 0.0021694572642445564, 0.005605620332062244, -0.0019161159871146083, -0.016542110592126846, -0.008399509824812412, -0.0027118215803056955, 0.005320165306329727, -3.3953521779039875e-05, 0.014815108850598335, 0.0001261130819329992, -0.0021855139639228582, 0.012138969264924526, -0.015799928456544876, -0.03091476485133171, 0.008420919068157673, 0.0009643022785894573, 0.04121968522667885, -0.0033219812903553247, 0.01461529079824686, 0.0017930135363712907, 0.0027778330259025097, 0.0054914383217692375, -0.02286493591964245, -0.013944471254944801, 0.04992606118321419, -0.02716103382408619, -0.022522391751408577, 0.002415661932900548, -0.0005941030103713274, 0.024606211110949516, -0.0029348330572247505, -0.010019466280937195, 0.017926566302776337, -0.011075649410486221, -0.0070864176377654076, 0.02286493591964245, -0.005726938601583242, 0.006558326072990894, 0.0142941540107131, -0.0019000591710209846, -0.02547684870660305, -0.005791166331619024, -0.02230829931795597, 0.022993391379714012, -0.03496822342276573, -0.019425205886363983, -0.002098093507811427, -0.027189578860998154, 0.014065789990127087, 0.01172505971044302, -0.021694572642445564, 0.00146206421777606, 0.03813677281141281, -0.022679390385746956, 0.002167673083022237, -0.00018052791710942984, -0.0174555666744709, 0.011246922425925732, -0.007614509202539921, 0.002253309590741992, -0.023521482944488525, 0.027146760374307632, -0.012560015544295311, -0.026433123275637627, -0.03037239983677864, -0.007197031285613775, 0.0046921647153794765, 0.012467242777347565, 0.04318932443857193, 0.014365517534315586, -0.017441293224692345, 0.006979371886700392, -0.0024852417409420013, -0.006108734756708145, 0.005348710808902979, -0.001019609160721302, 0.008520828559994698, 0.02710394188761711, -0.03271313011646271, 0.009462829679250717, -0.005095369648188353, -0.008149737492203712, -0.017798112705349922, -0.031228765845298767, -0.01825484074652195, 0.001347882323898375, 0.006358507554978132, -0.026932669803500175, 0.011475286446511745, -0.0050454153679311275, 0.0025976395700126886, -0.017726749181747437, -0.004510187078267336, 0.002158752642571926, -0.018411841243505478, 0.015657201409339905, 0.009270147420465946, 0.02621903084218502, 0.029601672664284706, -0.03325549513101578, -0.036880772560834885, -0.009641239419579506, -0.037765681743621826, -0.019468024373054504, -0.02300766482949257, -0.023664209991693497, 0.012188923545181751, 0.005473597440868616, -0.021851571276783943, -0.035253677517175674, -0.006943690124899149, -0.008649283088743687, -0.010511876083910465, -0.0075645544566214085, 0.021780207753181458, 0.03288440406322479, -0.00443882355466485, -0.01809784024953842, 0.014287017285823822, -0.0019143319223076105, 0.0012783026322722435, 0.00823537353426218, 0.019282478839159012, -0.036481134593486786, -0.011889196000993252, 0.0019696387462317944, 0.001750195282511413, -0.019653569906949997, -0.007528872694820166, 0.018825750797986984, -0.00028991512954235077, 0.008677829056978226, -0.0003358555259183049, -0.004517323803156614, -0.022822119295597076, 0.002119502518326044, -0.017683930695056915, -0.02666148729622364, -0.01592838205397129, -0.005234529264271259, -0.017055930569767952, 0.0021837300155311823, 0.017883749678730965, -0.013494879938662052, -0.03865059092640877, 0.02260802686214447, 0.00308648101054132, 0.006437007803469896, 0.03279876708984375, -0.02082393504679203, 0.0038072546012699604, 0.0004607420414686203, -0.010668876580893993, 0.04027768597006798, -0.007571691181510687, 0.020895298570394516, 0.023878302425146103, -0.009940966963768005, 0.029858581721782684, -0.03867913782596588, 0.01456533558666706, 0.007635918445885181, 0.0007105150725692511, 0.04002077504992485, -0.018683021888136864, -0.004303232301026583, -0.01849747635424137, 0.006701053585857153, -0.014986381866037846, -0.013409243896603584, 0.01414429023861885, 0.00603380287066102, -0.040791504085063934, 0.007543145678937435, 0.00853510107845068, -0.054093703627586365, -0.033854950219392776, -0.016485020518302917, 0.015914110466837883, -0.02720385044813156, -0.0287881251424551, 0.013116652145981789, -0.04381732642650604, 0.006201507523655891, -0.009955239482223988, -0.014365517534315586, -0.008677829056978226, 0.00026605286984704435, -0.0006681428640149534, -0.02928767167031765, -0.018240567296743393, 0.24046720564365387, -0.01809784024953842, -0.010968604125082493, -0.012231742031872272, -0.009976648725569248, -0.007536008954048157, 0.03807968273758888, -0.010754512622952461, -0.016784748062491417, 0.006222916767001152, 0.025291303172707558, -0.009741147980093956, -0.0501544252038002, -0.008549373596906662, 0.005338006652891636, -0.0037573000881820917, -0.03214222192764282, -0.012717015109956264, -0.02700403332710266, 0.0065226443111896515, 0.01174646895378828, 0.019082659855484962, 0.01815493032336235, -0.017898021265864372, 0.0068473489955067635, -0.005705529823899269, 0.009862466715276241, -0.004164073150604963, 0.017241476103663445, 0.0224652998149395, -0.018911385908722878, 0.01538601890206337, -0.0046921647153794765, 0.01457247231155634, -0.025862213224172592, -0.01913974992930889, 0.037137679755687714, 0.00885623786598444, 0.03157131001353264, 0.013723243959248066, 0.01939665898680687, -0.006943690124899149, 0.005395097658038139, -0.006073052994906902, -0.00981964822858572, 0.018725840374827385, -0.0056520067155361176, -0.009127420373260975, -0.009341510944068432, 0.02152329869568348, 0.0031417878344655037, -0.020153114572167397, 0.03947841003537178, 0.024606211110949516, 0.02350720949470997, 0.008613601326942444, 0.009220193140208721, 0.0052880519069731236, 0.005163165275007486, 0.005566370207816362, -0.0022319003473967314, 0.0371091365814209, -0.01721292920410633, 0.03254185616970062, 0.001729678246192634, -0.010904376395046711, -0.03967823088169098, -0.020352933555841446, 0.0006453956593759358, -0.02033866010606289, 0.008970419876277447, -0.005709097720682621, 0.01221746951341629, -0.009063192643225193, -0.03625277057290077, -0.03254185616970062, 0.02646166831254959, 0.03562476858496666, -0.0004547207208815962, 0.03239912912249565, -0.01345919817686081, 0.0027118215803056955, -0.0061943712644279, -0.00999092124402523, 0.0022015708964318037, -0.018526023253798485, 0.024848848581314087, -0.017184384167194366, -0.0023728436790406704, -0.016784748062491417, -0.013045288622379303, 0.005719802342355251, -0.019382387399673462, -0.012188923545181751, -0.0005289835971780121, 0.013152333907783031, -0.01717011258006096, 0.01491501834243536, -0.002288991352543235, 0.0142941540107131, -0.01681329309940338, 0.0694226324558258, 0.02265084534883499, 0.03179967403411865, 0.01652783900499344, 0.007011485751718283, -0.026690032333135605, -0.007336190901696682, 0.000264714821241796, -0.029744399711489677, 0.01909693144261837, -0.014151426032185555, 0.002797457855194807, 0.022793572396039963, -0.012474378570914268, 0.00651550805196166, -0.00981964822858572, -0.003429026808589697, 0.008392374031245708, -0.020195933058857918, 0.0072077359072864056, -0.024620484560728073, 0.007714418228715658, 0.001851888606324792, -0.0057733249850571156, -0.01063319481909275, -0.012531469576060772, -0.021651754155755043, -0.004139096010476351, -0.03673804551362991, 0.04084859415888786, -0.010404830798506737, 0.00712209939956665, -0.007850009948015213, 0.0010053364094346762, 0.0030097649432718754, 0.003825095482170582, 0.004164073150604963, 0.002092741196975112, -0.009791103191673756, -0.01248865108937025, 0.0030543673783540726, 0.020410025492310524, -0.0056448704563081264, -0.0008862482500262558, -0.013708971440792084, -0.0007417366723529994, 0.002321104984730482, -0.011610877700150013, 0.014279880560934544, -0.024078119546175003, -0.01829765923321247, -0.015314655378460884, -0.009469966404139996, 0.01711302064359188, 0.0027385829016566277, -0.01598547399044037, -0.03562476858496666, 0.020410025492310524, 0.014686654321849346, -0.0296873077750206, 0.01014078501611948, 0.023764120414853096, -0.01281692460179329, -0.03091476485133171, -0.023321663960814476, -0.18360458314418793, 0.015114836394786835, 0.016485020518302917, -0.02557675912976265, 0.016684837639331818, 0.02053847908973694, 0.013915926218032837, -0.020866751670837402, -0.029516035690903664, 0.0018608090467751026, 0.012602833099663258, -0.010947194881737232, -0.02048138901591301, -0.02190866321325302, -0.002797457855194807, -0.00027118215803056955, -0.015157654881477356, -0.008478010073304176, 0.04421696439385414, 0.00682594021782279, 0.030686400830745697, -0.0064512803219258785, -0.0052095516584813595, 0.022793572396039963, -0.01518619991838932, 0.029944218695163727, -0.0011186263291165233, 0.006130144000053406, 0.008692101575434208, -0.02459193952381611, 0.009962375275790691, 0.0003621708892751485, 0.03314131125807762, -0.0027617760933935642, 0.003573538502678275, -0.01697029359638691, -0.010226421058177948, -0.023093299940228462, -0.01318087987601757, 0.008934738114476204, 0.006740303710103035, 0.049840424209833145, 0.003978527616709471, 0.0042104595340788364, -0.027346579357981682, 0.0028420602902770042, 0.03251331299543381, -0.019282478839159012, 0.006708189845085144, -0.0059267571195960045, 0.005116778891533613, -0.030686400830745697, -0.0009750068420544267, -0.019996115937829018, 0.02997276373207569, -0.010990013368427753, 0.0010026602540165186, 0.0051274835132062435, -0.0013175527565181255, 0.025505393743515015, 0.009712602943181992, -0.008799146860837936, 0.0363098606467247, 0.02295057289302349, -0.007949918508529663, -0.00984105747193098, -0.020395752042531967, 0.04139095917344093, -0.020709753036499023, 0.007635918445885181, 0.01612820103764534, -0.02290775440633297, 0.009241602383553982, -0.011439604684710503, 0.00019279355183243752, 0.009598420932888985, -0.014329835772514343, 0.0049348012544214725, 0.028673943132162094, 0.0017207578057423234, 0.0010561831295490265, 0.033969130367040634, 0.004688596818596125, -0.0002925912558566779, -0.0010651035699993372, 0.010961467400193214, 0.022436754778027534, -0.023321663960814476, -0.026204759255051613, -0.009619830176234245, 0.049440786242485046, -0.016213838011026382, -0.025462577119469643, -0.00853510107845068, 0.003582458943128586, 0.009534193202853203, -0.016642021015286446, -0.015600109472870827, -0.007172054145485163, -0.003313060849905014, 0.010554694570600986, 0.00730764539912343, -0.02255093678832054, -0.007293372415006161, 0.023678483441472054, -0.012681333348155022, -0.004299664404243231, 0.00146295630838722, 0.03922150284051895, -0.006668939720839262, -0.009605556726455688, -0.00631925743073225, 0.0018286954145878553, 0.010019466280937195, 0.007343327160924673, 0.03145712986588478, -0.008670692332088947, -0.023079028353095055, 0.001971422927454114, -0.0014897177461534739, -0.028017397969961166, -0.0006766173173673451, 0.01617101952433586, 0.023721301928162575, -0.015200473368167877, -0.012203196994960308, -0.053751155734062195, 0.02068120613694191, 0.007735827472060919, 0.03245622292160988, -0.0104833310469985, 0.03448295220732689, -0.018126385286450386, 0.021152207627892494, -0.03585313260555267, 0.011075649410486221, -0.013188015669584274, -0.035396408289670944, -0.02295057289302349, 0.01189633272588253, 0.031685493886470795, 0.03448295220732689, -0.03508240729570389, -0.005123915150761604, -0.011353968642652035, 0.03673804551362991, 0.002278286963701248, -0.00603380287066102, 0.00388932297937572, -0.019025567919015884, -0.007757236715406179, 0.007657327689230442, -0.01189633272588253, 0.0186544768512249, 0.01677047461271286, 0.00507039250805974, 0.03956404700875282, -0.01677047461271286, 0.0010294216917827725, -0.01397301722317934, 0.0014977460959926248, -0.011004285886883736, 0.0027260940987616777, -0.003352310974150896, 0.030315309762954712, -0.020096024498343468, 0.027974579483270645, 0.012802652083337307, -0.012674197554588318, 0.008463737554848194, -0.011061376892030239, -0.018725840374827385, -0.006055212114006281, 0.033712223172187805, 0.020695479586720467, -0.029259126633405685, -0.055092792958021164, -0.005912484601140022, -0.010547557845711708, -0.011097058653831482, 0.02601921372115612, 0.00046743237180635333, 0.018968477845191956, 0.005109642632305622, -0.03245622292160988, 0.009220193140208721, -0.008763465099036694, -0.023121846839785576, -0.0034629246219992638, 0.02280784584581852, 0.03696640953421593, 0.0013059561606496572, -0.039307139813899994, -0.007578827440738678, 0.009619830176234245, -0.008527965284883976, 0.0026868442073464394, 0.04101986810564995, -0.007393281906843185, 0.024891667068004608, -0.027275213971734047, -0.01578565500676632, -0.017741020768880844, -0.008206828497350216, 0.029801489785313606, -0.04789933189749718, -0.010254967026412487, -0.022165572270751, -0.004585118964314461, -0.012617106549441814, 0.02631894126534462, 0.01378033496439457, -0.010533285327255726, 0.0091773746535182, 0.025005849078297615, -0.02670430578291416, -0.003675231710076332, 0.011853514239192009, 0.037622954696416855, 0.01577138341963291, -0.028060216456651688, 0.002460264367982745, 0.019368113949894905, -0.033512406051158905, 0.017769567668437958, 0.022936301305890083, -0.017741020768880844, -0.014336971566081047, -0.06993644684553146, 0.010654604062438011, 0.002429934684187174, -0.03217076510190964, -0.008806283585727215, -0.01474374532699585, 0.021894389763474464, -0.010090830735862255, 0.013202289119362831, 0.0003394237137399614, -0.031285855919122696, 0.01206760574132204, -0.006544053554534912, -0.007857145741581917, -0.027132486924529076, -0.02637603133916855, 0.032085128128528595, 0.030886219814419746, -0.006618985440582037, 0.0005874126218259335, 0.024320757016539574, 0.0011917741503566504, 0.014886472374200821, 0.023721301928162575, -0.011175558902323246, 0.022351117804646492, -0.017898021265864372, -0.0025476848240941763, -0.002328241476789117, 0.01345919817686081, 0.021437661722302437, -0.03288440406322479, -0.02098093368113041, -0.0006141740595921874, 0.0003918314469046891, -0.009434283711016178, 0.0034647088032215834, 0.007957055233418941, 0.01647074706852436, 0.02651876024901867, 0.005609188694506884, -0.00979823898524046, 0.003509311005473137, -0.005359415430575609, -0.01943947747349739, -0.0013032800052314997, -0.033655133098363876, 0.016185292974114418, 0.013873107731342316, 0.01766965724527836, 0.03639549762010574, 0.00855651032179594, -0.011839241720736027, -0.021751662716269493, -0.0031756856478750706, -0.04236150532960892, 0.009719738736748695, -0.00808550976216793, 4.136865754844621e-05, 0.006415598560124636, 0.034996770322322845, -0.00015276296471711248, 0.013794607482850552, -0.013609061948955059, -0.03419749438762665, -0.007393281906843185, -0.016199564561247826, 0.010012330487370491, 0.037622954696416855, -0.029516035690903664, -0.052066970616579056, -0.003348742611706257, -0.023535756394267082, 0.011732196435332298, -0.009562739171087742, 0.0365096814930439, 0.0029598104301840067, 0.0027867534663528204, -0.0189542043954134, 0.01756974868476391, -0.0004817051230929792, -0.0037573000881820917, -0.004171209409832954, 0.003038310445845127, 0.013566243462264538, -0.02716103382408619, -0.02626184932887554, -0.014451153576374054, 0.0018608090467751026, 0.007807191461324692, -0.017384203150868416, 0.002904503606259823, 0.013209424912929535, 0.024306483566761017, 0.014929290860891342, 0.004153368528932333, -0.0049240970984101295, -0.014322699047625065, 0.02483457513153553, -0.009534193202853203, 0.019111204892396927, -0.015857018530368805, 0.009362920187413692, -0.0029223444871604443, -0.01425133552402258, -0.007371872663497925, -0.022051390260457993, -0.03765150159597397, -0.01885429583489895, 0.034454405307769775, -0.002970515051856637, 0.022222664207220078, 0.00585182523354888, 0.01622811146080494, -0.01795511320233345, 0.0076430547051131725, 0.004535164684057236, 0.0004973159520886838, -0.015956928953528404, 0.01189633272588253, 0.022351117804646492, 0.012310242280364037, 0.03933568298816681, -0.012031923979520798, 0.026832759380340576, -0.023535756394267082, 0.019268205389380455, -0.020067479461431503, 0.012895424850285053, 0.006947258487343788, 0.0039000273682177067, -0.0006552081904374063, -0.023721301928162575, -0.021851571276783943, -0.008106919005513191, -0.007428963668644428, 0.0010767001658678055, 0.0006891059456393123, -0.015243290923535824, 0.08066955208778381, 0.026104850694537163, -0.0180550217628479, -0.009826784953474998, -0.007899964228272438, 0.004670755472034216, -0.01839756779372692, -0.0005490546463988721, -0.012774106115102768, -0.026946941390633583, 0.0017011327436193824, -0.008577919565141201, -0.008927601389586926, -0.013865971006453037, -0.02256520837545395, -0.019225386902689934, -0.02290775440633297, 0.06154407560825348, 0.02176593616604805, -0.009641239419579506, 0.030943309888243675, 0.006893735844641924, 0.027232397347688675, 0.03819386288523674, -0.020866751670837402, -0.014872199855744839, 0.010040875524282455, -0.021509025245904922, 0.012403015047311783, -0.004346050787717104, -0.0021694572642445564, -0.008813419379293919, -0.02720385044813156, -0.01521474588662386, -0.022936301305890083, 0.007928509265184402, 0.0046850284561514854, 0.022251209244132042, 0.015657201409339905, 0.0030811286997050047, 0.03442585840821266, 0.02018166147172451, -0.02914494462311268, -0.01662774756550789, -0.02479175664484501, 0.019610751420259476, -0.008884783834218979, 0.0006766173173673451, -0.01701311208307743], "052bf4f8-4827-464c-bc7d-c8d8e4697670": [0.008091368712484837, 0.005189636722207069, -0.017926566302776337, -0.03724819794297218, -0.016740763559937477, 0.019293729215860367, -0.0222094114869833, -0.008691246621310711, 0.003731795120984316, -0.02099570631980896, 0.0345417745411396, 0.01575026847422123, 0.00626034801825881, -0.0016217614756897092, -0.007059021852910519, 0.010065384209156036, 0.014104092493653297, -0.007055534049868584, 0.012276559136807919, 0.006403341889381409, 0.02102360874414444, 0.030803004279732704, -0.015066687017679214, -0.01595952734351158, 0.003335945773869753, -0.0028476736042648554, 0.00844710972160101, -0.03415115550160408, -8.904428977984935e-05, -0.028194235637784004, 0.04040104150772095, -0.023102253675460815, -0.041489191353321075, -0.013790203258395195, -0.013274029828608036, -0.012862485833466053, -0.016266440972685814, -0.009325999766588211, 0.01195569522678852, 0.012667177245020866, 0.01316242478787899, -0.007017170079052448, -0.003083090530708432, -0.015457304194569588, -0.013671623542904854, 0.014285450801253319, 0.0029156829696148634, -0.012750880792737007, -0.029407940804958344, 0.007805380970239639, 0.015066687017679214, 0.01125118788331747, -0.00754031864926219, -0.020130768418312073, 0.0009809040930122137, -0.005695347208529711, 0.0010707112960517406, -0.009451556019484997, -0.017982369288802147, 0.0005719760665670037, -0.00019836060528177768, -0.0046699754893779755, -0.03013337403535843, -0.020088914781808853, -0.0018606660887598991, 0.005353556480258703, 0.003250498091802001, 0.02223731391131878, 0.010281618684530258, -0.004471178632229567, 0.040010422468185425, -0.02480423077940941, 0.009625938721001148, -0.005848804023116827, 0.020047063007950783, -0.012729954905807972, -0.015987427905201912, -0.013608844950795174, 0.0010035738814622164, -0.016154836863279343, 0.015331748872995377, 0.0008361662621609867, -0.005105932708829641, 0.010728038847446442, -0.005838341079652309, 1.7315682271146215e-05, 0.007526367902755737, 0.008126245811581612, -0.007903034798800945, 0.0017307507805526257, 0.016378046944737434, 0.022962747141718864, 0.014536562375724316, 0.008774950169026852, -0.012011497281491756, 0.03808523714542389, -0.0037422580644488335, 0.028138432651758194, -0.0037980605848133564, -0.013141498900949955, 0.020088914781808853, 0.00915161706507206, -0.018721753731369972, -0.009012110531330109, -0.036801777780056, -0.006954391952604055, 0.03328621760010719, -0.003581825876608491, 0.022655833512544632, -0.0016819235170260072, -0.011802238412201405, 0.011976621113717556, -0.006640502717345953, -0.04207511618733406, -0.004084048792719841, 0.0022373332176357508, 0.032114364206790924, -0.019014716148376465, -0.011341867037117481, -0.00455139484256506, 0.013608844950795174, 0.014676068909466267, 0.005639544688165188, 0.0005850548041053116, 0.027329295873641968, 0.00920742005109787, -0.03521140664815903, -0.004771117586642504, -0.01565261371433735, 0.0011980108683928847, 0.04690203815698624, -0.0004165572754573077, -0.005500038154423237, -0.007407787721604109, -0.014969032257795334, 0.02246052399277687, -0.015429403632879257, 0.01247884426265955, -0.012053349055349827, -0.015373600646853447, -0.0018798481905832887, 0.021511880680918694, -0.023102253675460815, 0.013497239910066128, -0.027957074344158173, 0.007386861834675074, -0.01376927737146616, -0.005472137127071619, 0.01849854364991188, -0.006643990520387888, -0.015024835243821144, -0.03448597341775894, 0.019419284537434578, 0.00429330812767148, -0.012402115389704704, 0.010581557638943195, -0.009723593480885029, 0.0018414839869365096, -0.012681128457188606, -0.00924229621887207, 0.004031733609735966, -0.008795876055955887, -0.009395753033459187, -0.010797792114317417, 0.03261658549308777, 0.04564648121595383, 0.019447186961770058, 0.0014159895945340395, -0.007351985201239586, -0.0210096575319767, -0.003105760319158435, 0.031054114922881126, -0.0143831055611372, 0.01588977500796318, -0.016684960573911667, 0.034820787608623505, 0.013343783095479012, 0.025724971666932106, -0.029798557981848717, -0.01971224881708622, 0.006790472194552422, 0.002350682159885764, 0.021818794310092926, 0.04081955924630165, -0.006671891547739506, 0.01979595236480236, 0.025641268119215965, -0.002078644698485732, 0.011997547000646591, -0.014222673140466213, 0.0067032803781330585, 0.02893361821770668, -1.1784472917497624e-05, -0.005761612672358751, -0.6441845893859863, -0.03016127459704876, -0.008907481096684933, -0.03250498324632645, 0.0117743369191885, 0.015331748872995377, 0.017298787832260132, 0.017619652673602104, -0.022627931088209152, 0.025362256914377213, -0.019977310672402382, 0.0318632535636425, 0.016671009361743927, -0.03258868679404259, -0.011021002195775509, -0.008342480286955833, -0.0060022613033652306, -0.04645561799407005, 0.002190249739214778, 0.010176989249885082, -0.028124481439590454, 0.02374398149549961, -0.0056046680547297, -0.006040625274181366, 0.008398283272981644, -0.028361642733216286, 0.0339837484061718, -0.011697608046233654, -0.009095815010368824, 0.008802851662039757, -0.03286769986152649, 0.030579794198274612, 0.01986570470035076, 0.0024936762638390064, 0.05909489467740059, 0.009486432187259197, -0.012227732688188553, 0.01316940039396286, 0.007477540988475084, 0.04081955924630165, -0.02879411168396473, -0.020270273089408875, 0.01722903549671173, 0.012974091805517673, -0.013371684588491917, 0.005765100475400686, 0.042828451842069626, -0.0005231488612480462, -0.018986815586686134, -0.009088839404284954, -0.014759772457182407, 0.005813927389681339, 0.013274029828608036, 0.00785420835018158, -0.006333588622510433, -0.021818794310092926, 0.026868924498558044, 0.0018850796623155475, -0.01845669187605381, 0.0086354436352849, -0.01182316429913044, 0.0015554958954453468, -0.011579027399420738, -0.029686953872442245, 4.005358277936466e-05, -0.01732669025659561, 0.0061103785410523415, -0.0022164073307067156, 0.016838418319821358, -0.012402115389704704, 0.008914456702768803, -0.00794488750398159, -0.012234707362949848, -0.03166794404387474, -0.0023018550127744675, 0.017424345016479492, 0.01566656492650509, -0.027161888778209686, -0.017410393804311752, 0.013846006244421005, 0.01715928129851818, -0.02124681882560253, -0.02216755971312523, -0.03775041922926903, 0.04221462458372116, -0.013134523294866085, -0.00990495178848505, -0.0047501916997134686, 0.009605012834072113, -0.00033721301588229835, -0.0033847729209810495, 0.01570841670036316, -0.015275945886969566, -0.010972174815833569, 0.01565261371433735, 0.021288670599460602, -0.023883488029241562, 0.019210025668144226, 0.025585466995835304, -0.006661428604274988, -0.01986570470035076, 0.0008841215749271214, 0.007993713952600956, 0.012032423168420792, 0.044167712330818176, 0.018052123486995697, -0.030970411375164986, 0.0007481028442271054, 0.03808523714542389, -0.017689406871795654, -0.026799172163009644, -0.017870765179395676, -0.009067913517355919, 0.0037213321775197983, 0.03203066065907478, -0.031165720894932747, 0.008928406983613968, 0.005112907849252224, 0.034820787608623505, -0.0112442122772336, -0.0020054038614034653, 0.012499770149588585, 0.009632914327085018, 0.012311436235904694, -0.0003947594086639583, 0.00788210891187191, 0.018889160826802254, -0.019349532201886177, -0.01374137680977583, 0.012820634059607983, -0.01119538489729166, 0.007072972599416971, 0.01582002080976963, -0.0034998657647520304, 0.01827533356845379, 0.007903034798800945, 0.02612954191863537, -0.010951248928904533, -0.0035626436583697796, -0.011983595788478851, -0.013713475316762924, 0.0007031992427073419, -0.0007733883685432374, 0.012799708172678947, -0.006675379350781441, -0.007003219332545996, -0.0238276869058609, -0.010065384209156036, -0.0046141729690134525, 0.013225202448666096, 0.0014787673717364669, 0.007561244536191225, -0.011369768530130386, 0.021804843097925186, 0.01381112914532423, -0.02089805342257023, -0.007338034454733133, -0.024246204644441605, -0.006738157011568546, -0.009346925653517246, 0.00724038016051054, 0.023339413106441498, -0.023269660770893097, -0.014327303506433964, -0.0157921202480793, -0.022641882300376892, 0.021539781242609024, 0.006466119550168514, -0.013225202448666096, -0.03507189825177193, 0.0024169476237148046, 0.011746435426175594, -0.02112126350402832, -0.012625325471162796, 0.007603096775710583, 0.021595584228634834, 0.003616702277213335, -0.0019513452425599098, -0.011920818127691746, -0.005988310556858778, 0.01381112914532423, 0.008963283151388168, -0.010142112150788307, 0.002743043703958392, 0.020074965432286263, -0.00030996568966656923, 0.010239766910672188, 0.009702667593955994, -0.02364632859826088, -0.00855174008756876, -0.013225202448666096, 0.04095906764268875, 0.017787061631679535, 0.03189115226268768, 0.012541621923446655, 0.027859419584274292, -0.030970411375164986, -0.0005863626720383763, -0.008084393106400967, 0.029631150886416435, 0.009556185454130173, 0.016712861135601997, 0.004000344779342413, -0.005935995373874903, 0.007247355300933123, -0.025585466995835304, -0.012722980231046677, -0.020619040355086327, -0.00047606544103473425, 0.026896826922893524, 0.010853595100343227, 0.013001992367208004, -0.004945500288158655, -0.021707190200686455, 0.025501761585474014, 0.01054668053984642, -0.013385634869337082, 0.00017470991588197649, 0.01059550791978836, 0.0014639449073001742, 0.01040717400610447, 0.013385634869337082, 0.016378046944737434, -0.024581020697951317, 0.014452858828008175, -0.003463245462626219, -0.007079947739839554, 0.01992150768637657, 0.009674766100943089, -0.03978721424937248, -0.013253103941679, -0.009584086947143078, 0.00994680356234312, 0.00559769244864583, 0.004638586658984423, 0.006333588622510433, 0.021958300843834877, -0.04363758862018585, 0.024036945775151253, -0.0027447876054793596, 0.011397669091820717, 0.019237926229834557, 0.00924927182495594, -0.02486003376543522, 0.007324083708226681, -0.016503602266311646, 0.03300720453262329, 0.017856813967227936, -0.017982369288802147, -0.0004568833392113447, -0.018665950745344162, -0.0018170702969655395, -0.017535949125885963, 0.013322857208549976, 0.03800153359770775, -0.016671009361743927, 0.01116050872951746, 0.015234094113111496, 0.01390878390520811, 0.019489038735628128, 0.010853595100343227, 0.013846006244421005, 0.02640855312347412, 0.010218841023743153, 0.017382493242621422, -0.00099659850820899, -0.002279185224324465, -0.00457580853253603, -0.0143831055611372, -0.0036236776504665613, 0.005196611862629652, -0.030747201293706894, 0.0006582956411875784, -0.012778782285749912, 0.003923616372048855, -0.0007694647647440434, -0.003599263960495591, -0.004125900566577911, -0.0038922273088246584, 0.02777571603655815, -0.037555113434791565, -0.02384163625538349, 0.018707802519202232, 0.028654607012867928, 0.004523493815213442, 0.00864241924136877, -0.01046297699213028, -0.01181618869304657, 0.0076309978030622005, 0.00036533226375468075, 0.01695002242922783, 0.008035566657781601, 0.006319637876003981, 0.01182316429913044, -0.016475701704621315, -0.020563237369060516, 0.03311881050467491, -0.012450942769646645, -0.01821953058242798, 0.010079334490001202, 0.020632989704608917, 0.014731871895492077, -0.010218841023743153, 0.014285450801253319, 0.01851249299943447, -0.0006635271129198372, 0.0028424421325325966, -0.02742695063352585, -0.006344051565974951, -0.008830752223730087, 0.01041414961218834, -0.015331748872995377, -0.009877050295472145, -0.009228345938026905, -0.0055907173082232475, 0.003109247889369726, 0.0051338342018425465, -0.022613979876041412, 0.01706162840127945, -0.012632301077246666, -0.0051268585957586765, -0.006678867153823376, -0.019112370908260345, 0.010825693607330322, 0.04372129216790199, -0.0019391383975744247, 0.0068951016291975975, 0.006853249855339527, -0.025194847956299782, 0.0068985894322395325, -0.012597423978149891, -0.005709297955036163, -0.005022228695452213, -0.006141767371445894, 0.010400199331343174, -0.0004183010896667838, 0.0013157193316146731, 0.008984209969639778, 0.02113521285355091, 0.005656982772052288, 0.01724298670887947, 0.007596121169626713, 0.012806683778762817, -0.02912892773747444, 0.02371608093380928, -0.004164265003055334, 0.03007757104933262, -0.001452610013075173, 0.013392610475420952, 0.006291736848652363, 0.024581020697951317, 0.04888302832841873, -0.008921431377530098, -0.004049172159284353, 0.010260692797601223, 0.011627854779362679, 0.007916986010968685, 0.024483365938067436, -0.019349532201886177, 0.03281189501285553, 0.012862485833466053, -0.0015990916872397065, 0.012653226964175701, 0.017563849687576294, 0.01690817065536976, 0.016782615333795547, 0.008726122789084911, 0.005772075615823269, 0.019056567922234535, -0.014083166606724262, -0.029631150886416435, 0.03177955001592636, 0.012102176435291767, 0.00016958742344286293, -0.00021732474851887673, 0.007338034454733133, -0.03850375488400459, -0.019391383975744247, 0.0030429824255406857, 0.010860569775104523, 0.006284761242568493, 0.009123715572059155, -0.018986815586686134, -0.044167712330818176, -0.014885328710079193, -0.034737084060907364, 0.0018135826103389263, -0.005688371602445841, -0.00989100057631731, -0.0021414225921034813, -0.022028053179383278, -0.02739904820919037, -0.034597575664520264, 0.0036062393337488174, -0.006117353681474924, -0.029575347900390625, -0.02488793432712555, 0.014125018380582333, 0.004097999073565006, 0.004181703086942434, 0.0086005674675107, -0.012736930511891842, 0.008921431377530098, 0.031165720894932747, -0.02253027632832527, -0.01119538489729166, -0.023423118516802788, -0.02479027956724167, -0.0007655411609448493, 0.008314578793942928, -0.008481986820697784, 0.005932508036494255, -0.011690632440149784, 0.01046297699213028, 0.029742754995822906, -0.010288594290614128, 0.026966579258441925, -0.013929709792137146, -0.011076805181801319, 0.012234707362949848, 0.02391139045357704, 0.020521385595202446, 0.0026854975149035454, 0.014843476936221123, 0.010993100702762604, -0.0038608384784311056, 0.0013226947048678994, -0.0007960581569932401, 0.00686022499576211, -0.0031022727489471436, -0.007275256793946028, 0.02353472262620926, -0.01317637600004673, 0.015541008673608303, 0.022627931088209152, 0.0016095546307042241, 0.021288670599460602, -0.002392534166574478, 0.024594971910119057, 0.033481527119874954, 0.003752721007913351, -0.008133220486342907, 0.0011666219215840101, -0.00012577370216604322, 0.0011744691291823983, -0.02890571765601635, 0.01837298832833767, 0.010769890621304512, -0.009423654526472092, -0.0013314138632267714, -0.012213781476020813, 0.008328530006110668, -0.013608844950795174, 0.0025390158407390118, -0.002807565499097109, 0.028654607012867928, -0.015387550927698612, -0.016168786212801933, -0.03138893097639084, -0.01715928129851818, -0.015248045325279236, 0.005081519018858671, 0.0002611384552437812, 0.006148742977529764, 0.01045600138604641, 0.006085964851081371, 0.006943929009139538, -0.0029662540182471275, -0.011034953407943249, -0.025962132960557938, -0.005513988900929689, -0.002994155278429389, -0.003560899756848812, 0.024692624807357788, -0.012729954905807972, 0.01950298808515072, -0.01713138073682785, 0.007958837784826756, -0.010630384087562561, -0.03777832165360451, -0.01386693213135004, -0.016866318881511688, 0.04168450087308884, 0.03242127597332001, 0.01833113469183445, -0.0014255805872380733, 0.013901808299124241, -0.007212478667497635, 0.0007834153948351741, 0.009472481906414032, 0.005440747831016779, 0.021888548508286476, -0.010902421548962593, -0.001767371199093759, 0.011188410222530365, 0.023883488029241562, 0.01827533356845379, 0.003185976529493928, -0.029547447338700294, 0.010372297838330269, 0.0046106851659715176, 0.00362019008025527, -0.01125816348940134, -0.010776866227388382, 0.0014848707942292094, -0.0017290068790316582, 0.007861183024942875, 0.023325463756918907, -0.009095815010368824, -0.013378660194575787, 0.01851249299943447, 0.003693430917337537, 0.012436991557478905, 0.02222336269915104, 0.036271654069423676, -0.016391996294260025, 0.010051432996988297, 0.01448076032102108, 0.006420779973268509, -0.03325831517577171, -0.003916641231626272, -0.0007419994217343628, -0.020744595676660538, 0.029463743790984154, 0.007679825183004141, 0.01185804046690464, 0.009974705055356026, -0.004045684356242418, -0.001095124869607389, 0.015024835243821144, -0.030663497745990753, -0.0066265519708395, 0.004725778009742498, -0.024357810616493225, -0.017438294366002083, -0.018080024048686028, -0.03320251405239105, -0.014648167416453362, -0.007610071916133165, 0.009012110531330109, -0.0074426643550395966, 0.025376206263899803, -0.010665261186659336, 0.003955005202442408, 0.013692549429833889, -0.016545454040169716, 0.05892748758196831, -0.0032208531629294157, 0.03247708082199097, 0.025738922879099846, 0.007289207074791193, -0.02106546051800251, 0.01563866250216961, 0.002697704127058387, 0.004492104984819889, 0.016712861135601997, 0.01834508590400219, -0.0023541697300970554, -0.0118092130869627, 0.0005615131231024861, 0.007477540988475084, -0.008670319803059101, -0.010225815698504448, 0.01714533194899559, -0.002516346052289009, -0.0015990916872397065, -0.005109420511871576, -0.011844090186059475, -0.03275609388947487, -0.015513107180595398, -0.011439521797001362, 0.005988310556858778, 0.005179173778742552, -0.018177678808569908, -0.015415452420711517, 0.015554958954453468, 0.003037750953808427, 0.01700582541525364, 0.026952628046274185, 0.004425839055329561, 0.009486432187259197, 0.008272727020084858, -0.015568909235298634, 0.0039026904851198196, -0.007777479477226734, 0.030970411375164986, -0.01583397202193737, -0.005367507226765156, 0.004457228351384401, 0.014299402013421059, -0.015248045325279236, -0.016573354601860046, -0.0017621397273615003, 0.019084470346570015, 0.008189023472368717, -0.02912892773747444, -0.001128257717937231, -0.0002668059023562819, 0.008349455893039703, 0.012834585271775723, -0.0055070132948458195, -0.019321631640195847, 0.0019757586997002363, -0.0037283075507730246, 0.031974855810403824, -0.0010367066133767366, -0.005175685975700617, -0.003738770494237542, -0.003909665625542402, -0.02890571765601635, 0.019237926229834557, -0.021860646083950996, 0.018038172274827957, -0.042521536350250244, -0.007833282463252544, -0.00910278968513012, -0.01845669187605381, 0.005967384669929743, 0.014857427217066288, -0.0009390522027388215, 0.0017150562489405274, 0.03509980067610741, -0.013748351484537125, 0.00527334026992321, 0.02494373731315136, 0.00295579107478261, -0.023172006011009216, 0.03027288056910038, -0.015499156899750233, -0.03016127459704876, 0.01316940039396286, 0.0050780316814780235, -0.015261995606124401, -0.00012446583423297852, 0.006532385479658842, 0.005437260493636131, 0.004809481557458639, -0.014815575443208218, 0.024078797549009323, -0.0042026289738714695, 0.01731273904442787, -0.016308292746543884, -0.024176452308893204, 0.0287662111222744, -0.02873831056058407, 0.008070442825555801, 0.016615208238363266, 0.014941130764782429, -0.025334354490041733, -0.002683753613382578, -0.019042618572711945, -0.01816372759640217, -0.028654607012867928, -0.03512769937515259, 0.009325999766588211, 0.01040717400610447, -0.0006142639322206378, -0.028473248705267906, -0.002593074459582567, -0.019237926229834557, -0.007212478667497635, -0.010665261186659336, -0.013015943579375744, 0.013622796162962914, 0.003958493005484343, 0.007338034454733133, 0.0001629390608286485, 0.010567606426775455, -0.019126322120428085, -0.028626704588532448, -0.038838569074869156, 0.00243787351064384, -0.0344022698700428, -0.016754712909460068, -0.014250574633479118, 0.020005211234092712, 5.765536116086878e-05, -0.006117353681474924, -0.03727610036730766, -0.03836425021290779, -0.04109857231378555, -0.014648167416453362, 0.0028476736042648554, 0.0019094932358711958, 0.024162501096725464, 0.023213857784867287, 0.015248045325279236, -0.0025459909811615944, 0.023158054798841476, 0.0012145772343501449, -0.012757856398820877, 0.0025198336225003004, 0.028543001040816307, -0.030942510813474655, 0.011934769339859486, -0.017521997913718224, -0.0035155601799488068, -0.026938678696751595, 0.010037482716143131, 0.008175072260200977, -0.0006875047693029046, 0.03825264424085617, -0.022042004391551018, -0.001524978899396956, -0.0010122930398210883, -0.0008100087870843709, -0.01106982957571745, 0.006037137471139431, 0.02619929425418377, -0.0210096575319767, -0.02117706462740898, 0.01835903711616993, 0.0008361662621609867, -0.004481641575694084, -0.02621324546635151, 0.025306453928351402, 0.020772496238350868, 0.019084470346570015, 5.133398008183576e-05, 0.012834585271775723, -0.01059550791978836, -0.008189023472368717, 0.0034004675690084696, -0.012297485955059528, 0.023102253675460815, 0.017968419939279556, -0.0009251015144400299, -0.016503602266311646, -0.006821861024945974, 0.020702743902802467, -0.026952628046274185, 0.004638586658984423, 0.02491583488881588, -0.005329142790287733, 0.009625938721001148, 0.0032173653598874807, -0.004502567928284407, -0.01858224719762802, -0.006588188000023365, -0.015248045325279236, -0.014620266854763031, -0.03328621760010719, -0.007784454617649317, 0.012004522606730461, -0.025501761585474014, -0.02910102717578411, -0.0018937988206744194, 0.00995377916842699, -0.005949946120381355, -0.014703970402479172, 0.014843476936221123, -0.006319637876003981, 0.004028246272355318, -0.00046996204764582217, -0.01513644028455019, -0.02873831056058407, -0.004889697767794132, 0.0037492334377020597, 0.013560018502175808, 0.014927180483937263, 0.23704920709133148, 0.009221370331943035, 0.012876437045633793, 0.02745485119521618, -0.008963283151388168, 0.014250574633479118, 0.020493485033512115, 0.0014560975832864642, -0.009828222915530205, 0.028529049828648567, -0.010065384209156036, -0.0014308120589703321, 0.00793093629181385, -0.0006665788241662085, -0.008084393106400967, 0.0003182488726451993, -0.04224252700805664, -0.041461288928985596, -0.026687566190958023, -0.01859619840979576, 0.001592988264746964, -0.011293039657175541, -0.024385711178183556, -0.027371147647500038, -0.0012067300267517567, 0.01701977662742138, -0.017801010981202126, 0.016043230891227722, 0.022655833512544632, 0.01706162840127945, 0.010163038037717342, -0.010267668403685093, 0.00021656182070728391, -0.002382070990279317, -0.00041394151048734784, -0.01863805018365383, 0.04171239957213402, 0.003975931089371443, 0.0339837484061718, 0.006263835355639458, 0.02769201248884201, -0.012716004624962807, -0.01367859821766615, -0.02753855474293232, -0.012709029018878937, 0.005709297955036163, -0.018665950745344162, -0.002117008902132511, 0.002781408140435815, 0.019363483414053917, -0.003975931089371443, -0.016154836863279343, 0.01983780413866043, 0.04349808394908905, -0.0017856813501566648, 0.0015267226845026016, -0.00660213828086853, 0.009639889001846313, 0.0037248197477310896, -0.006647477857768536, -0.02625509724020958, 0.012848535552620888, -0.026896826922893524, 0.004097999073565006, -0.025376206263899803, 0.009444580413401127, -0.019182125106453896, 0.02887781709432602, -0.0057860263623297215, -0.028626704588532448, -0.012834585271775723, -0.026952628046274185, 0.005353556480258703, 0.010804767720401287, -0.008189023472368717, -0.029798557981848717, 0.03164004161953926, 0.02103755809366703, 0.013385634869337082, 0.031165720894932747, -0.013566993176937103, -0.011327916756272316, 0.004282845184206963, -0.004928062204271555, -0.005036179441958666, -0.02260003052651882, 0.016126934438943863, 0.009779395535588264, -0.013092671521008015, 0.0021309596486389637, -0.002704679500311613, -0.038838569074869156, 0.004607197362929583, -0.005430284887552261, 0.001116050872951746, 0.022111758589744568, 0.0035853134468197823, 0.004377012141048908, -0.019377432763576508, 0.0007908266852609813, -0.026017935946583748, 0.0317237451672554, 0.02512509562075138, -0.010909397155046463, -0.009423654526472092, 0.006689330097287893, -0.014069216325879097, -0.0018676413455978036, -0.0008082649437710643, -0.0076309978030622005, -0.0061103785410523415, -0.02629694901406765, 0.001000958145596087, 0.011488348245620728, 0.00041045385296456516, -0.0005859266966581345, 0.002483213087543845, -0.0345417745411396, 0.019251877442002296, 0.008558714762330055, -0.008084393106400967, -0.005060593131929636, 0.004397938027977943, -0.006814885418862104, -0.00994680356234312, -0.005702322348952293, -0.00849593710154295, -0.009067913517355919, 0.003020312637090683, -0.020716695114970207, 0.002057718811556697, 0.00036402439582161605, 0.0250971931964159, -0.01858224719762802, 0.004000344779342413, -0.013336807489395142, 0.031221523880958557, -0.006099915597587824, -0.00591158214956522, 0.003941054455935955, -0.018903112038969994, 0.001324438489973545, -0.001836252398788929, 0.011418595910072327, -0.004680438432842493, -0.02508324384689331, 0.0026384140364825726, 0.0031214547343552113, 0.00311796716414392, -0.016071133315563202, -0.02912892773747444, -0.025334354490041733, -0.0018153265118598938, -0.005883680656552315, 0.02219546213746071, -0.01834508590400219, -0.02640855312347412, -0.05044550076127052, 0.002108289860188961, 0.021288670599460602, -0.04450253024697304, -0.005496550351381302, 0.008607542142271996, 0.018763605505228043, -0.02621324546635151, -0.017340639606118202, -0.18314394354820251, 0.007798405364155769, 0.01841484010219574, -0.007679825183004141, 0.03392794728279114, -0.011537175625562668, 0.014801624231040478, -0.01685236766934395, -0.00784723274409771, -0.03044028766453266, 0.008726122789084911, -0.016085082665085793, -0.013455388136208057, -0.01452261209487915, 0.006319637876003981, -0.005639544688165188, 0.015303847379982471, 0.025738922879099846, 0.021358422935009003, 0.007805380970239639, 0.030607694759964943, -0.021916449069976807, 0.017870765179395676, -0.014982982538640499, 0.01387390773743391, -0.007910010404884815, -0.007062509190291166, 0.03233757242560387, -0.03317461162805557, -0.021497929468750954, -0.016601257026195526, -0.010965200141072273, 0.01975410059094429, 0.017801010981202126, 0.011885941959917545, -0.0033376896753907204, 0.0035853134468197823, 0.0026820097118616104, 0.004129388369619846, 0.01967039704322815, 0.005036179441958666, 0.02629694901406765, 0.016796566545963287, 0.0001067005650838837, -0.013657672330737114, 0.02236286923289299, 0.015303847379982471, 0.0017560363048687577, 0.02219546213746071, -0.016740763559937477, 0.00030691397842019796, -0.034792885184288025, 0.006532385479658842, 0.008244825527071953, 0.014076191931962967, -0.0035190479829907417, 0.004676950629800558, 0.02366027794778347, 0.0061068907380104065, -0.005545377731323242, -0.008677295409142971, -0.003794573014602065, 0.006075501907616854, -0.02486003376543522, -0.027050282806158066, -0.025683119893074036, -0.016196688637137413, 0.01307872124016285, -0.01837298832833767, -0.002845929702743888, -0.005147784482687712, -0.005566303618252277, 0.009911926463246346, -0.02745485119521618, 0.03696918487548828, -0.0050466423854231834, -0.025822626426815987, 0.010128161869943142, 0.017661504447460175, -0.030049670487642288, -0.037583012133836746, 0.018093975260853767, 0.0031598189380019903, 0.015415452420711517, 0.0034562700893729925, 0.011174459010362625, 0.01701977662742138, -0.014180821366608143, -0.017549900338053703, -0.009263222105801105, 0.016224589198827744, -0.019126322120428085, 0.013329832814633846, -0.023381264880299568, -0.00232452480122447, 0.0010105491383001208, 0.016112985089421272, 0.006326613482087851, -0.006480070296674967, -0.004753679037094116, 0.017926566302776337, -0.018080024048686028, -0.016559405252337456, 0.02247447520494461, 0.02640855312347412, 0.002645389409735799, -0.014166871085762978, 0.008098344318568707, 0.010309520177543163, 0.008119270205497742, -0.04358178749680519, 0.023018550127744675, 0.03007757104933262, 0.01967039704322815, -0.00021165730140637606, 0.0022687220480293036, -0.001789169036783278, -0.017675455659627914, -0.0025494787842035294, -0.004928062204271555, 0.03138893097639084, 0.012876437045633793, -0.02359052561223507, 0.022990647703409195, 0.008349455893039703, -0.017787061631679535, -0.04221462458372116, -0.03984301537275314, 0.011223286390304565, 0.012764832004904747, -0.023939291015267372, 0.03691338375210762, -0.011279089376330376, 0.03833634778857231, 0.00029557908419519663, 0.01961459405720234, -0.008949332870543003, -0.014452858828008175, -0.030551891773939133, -0.0005968256155028939, -0.005482600070536137, -0.004045684356242418, -0.009277173317968845, -0.006354514509439468, -0.04048474505543709, 0.026882875710725784, 0.018889160826802254, -0.002920914441347122, -0.010281618684530258, -0.029714854434132576, -0.028654607012867928, 0.004443277604877949, -0.031249424442648888, 0.023995094001293182, 0.0025669171009212732, -0.00990495178848505, 0.0007415635045617819, 0.0006412932998500764, 0.0014447626890614629, -0.018749654293060303, -0.002355913631618023, -0.0036236776504665613, -0.0041503142565488815, -0.01957274228334427, 0.03242127597332001, -0.034932393580675125, 0.009528283961117268, 0.003318507457152009, 0.007351985201239586, -0.015582860447466373, -0.0069788056425750256, -0.02374398149549961, 0.006030162330716848, 0.026575962081551552, 0.013008967973291874, -0.020632989704608917, -0.01590372435748577, 0.010065384209156036, -0.018861260265111923, -0.034820787608623505, 0.03297930210828781, -0.010672236792743206, 0.003478939877822995, 0.001103844027966261, -0.031165720894932747, 0.0051303463988006115, 0.013106622733175755, -0.020144717767834663, -0.007644948549568653, 0.021344473585486412, -0.0014578414848074317, -0.011007051914930344, -0.0038364247884601355, -0.00924927182495594, 0.008809826336801052, -0.022976696491241455, -2.1062191081000492e-05, 0.005876705516129732, -0.044000305235385895, -0.003006362123414874, -0.030049670487642288, -0.016461750492453575, 0.00017263912013731897, -0.048129692673683167, -0.005650007631629705, -0.021790893748402596, 0.006989268586039543, -0.03805733472108841, -0.008342480286955833, -0.014927180483937263, 0.007910010404884815, 0.03016127459704876, 0.004209604579955339, 0.02096780575811863, 0.009305073879659176, -0.02081434801220894, 0.004199141636490822, 0.010797792114317417, 0.0198099035769701, 0.004499080125242472, -0.012123102322220802, -0.00929112359881401, 0.005569791421294212, 0.0004217887471895665, 0.007665874436497688, 0.025697071105241776, -0.026841023936867714, -0.02350682206451893, -0.07717491686344147, 0.032309673726558685, -0.008189023472368717, -0.021707190200686455, 0.012590449303388596, -0.016824467107653618, -0.007331059314310551, -0.014264524914324284, 0.0008675551507622004, -0.011007051914930344, -0.022934844717383385, 0.0023280123714357615, 0.007784454617649317, 0.002423922996968031, -0.005398896057158709, 0.0009556185686960816, 0.027175838127732277, 0.012234707362949848, 0.017842862755060196, 0.01826138235628605, 0.02624114602804184, -0.011237237602472305, -0.004659512545913458, -0.018093975260853767, -0.007107848767191172, -0.0011047159787267447, -0.01595952734351158, 0.015443353913724422, -0.008063467219471931, 0.00011552870273590088, 0.010783841833472252, -0.015373600646853447, 0.022725585848093033, 0.022055955603718758, -0.013601870276033878, -0.03576942905783653, -0.0014386593829840422, 0.00422704266384244, 0.02250237576663494, -0.00980729702860117, -0.024594971910119057, -0.030551891773939133, 0.017968419939279556, -0.01696397364139557, -0.006344051565974951, 0.005088494624942541, -0.00854476448148489, 0.002108289860188961, 0.019977310672402382, 0.021776942536234856, 0.029268434271216393, 0.009402728639543056, -0.026059787720441818, -0.013406560756266117, -0.007097385823726654, -0.02222336269915104, 0.016698911786079407, -0.0034091866109520197, 0.0024814694188535213, -0.020563237369060516, 0.029910163953900337, 0.016057182103395462, -0.0016043231589719653, -0.008140196092426777, 0.010239766910672188, 0.010379273444414139, -0.0221396591514349, 0.014048290438950062, 0.021553732454776764, -0.012995017692446709, -0.03839214891195297, -0.0008522966527380049, 0.02769201248884201, 0.03507189825177193, 0.017884714528918266, 0.006330100819468498, -0.00032740397728048265, 0.0002631002862472087, -0.026910776272416115, 0.015429403632879257, 0.012688103131949902, -0.014606315642595291, -0.01326705515384674, 0.004687413573265076, 0.020521385595202446, 0.012283534742891788, -0.006769545841962099, 0.01968434639275074, 0.014955081976950169, 0.009981679730117321, -0.04238203167915344, 0.012492794543504715, -0.024357810616493225, 0.011941744014620781, -0.0027238617185503244, 0.02095385454595089, -0.00425145635381341, -0.0033638470340520144, 0.008349455893039703, 0.02492978610098362, 0.03141683340072632, 0.0028895253781229258, -0.0054546985775232315, -0.014620266854763031, -0.011041928082704544, 0.021818794310092926, -0.04221462458372116, -0.022572128102183342, 0.021400274708867073, 0.0015964759513735771, 0.041293881833553314, 0.016071133315563202, -0.005308216903358698, 0.005691859405487776, -0.028152383863925934, 0.0169918742030859, -0.017521997913718224, -0.001703721354715526, -0.014759772457182407, 0.021679287776350975, 0.021400274708867073, 0.01593162678182125, 0.020172620192170143, -0.01837298832833767, 0.01711742952466011, 0.011146558448672295, 0.010518779046833515, -0.01255557220429182, 0.0018641537753865123, 0.003318507457152009, -0.011885941959917545, 0.018066072836518288, -0.018107924610376358, -0.01685236766934395, -0.015624712221324444, -0.009709642268717289, -0.0033324582036584616, 0.006005748640745878, -0.003955005202442408, 0.10005395859479904, 0.010860569775104523, -0.004837383050471544, 0.025306453928351402, 0.014222673140466213, -0.0020088916644454002, 0.007372911088168621, 6.800935079809278e-05, -0.021930400282144547, -0.012450942769646645, 0.002734324662014842, 0.005332630593329668, -0.00164443114772439, -0.008056492544710636, -0.0097654452547431, -0.012492794543504715, -0.022028053179383278, 0.009423654526472092, -0.01590372435748577, -0.0052663651295006275, 0.008921431377530098, 0.028110532090067863, -0.005210562609136105, -0.0011308734538033605, -0.03253288194537163, -0.00309355347417295, 0.042856354266405106, -0.003316763788461685, -0.021288670599460602, -0.055830445140600204, 0.01513644028455019, 0.0036306530237197876, -0.01994941011071205, -0.015192242339253426, 0.009360876865684986, 0.003906178055331111, 0.008900505490601063, -0.008126245811581612, 0.01176038570702076, -0.002312317956238985, -0.012171929702162743, -0.0035504368133842945, -0.015527057461440563, -0.012262608855962753, 0.033593133091926575, 0.006689330097287893, -0.030886707827448845, 0.011097731068730354, -0.007379886228591204], "e6aed9e4-13ac-46ae-b02e-d6fd2d2cb428": [-0.0024464663583785295, -0.019707929342985153, 0.003093409352004528, -0.024502117186784744, -0.022826874628663063, 0.03927965834736824, -0.035166461020708084, -0.01755599118769169, -0.004532006569206715, -0.01404206920415163, -0.0031853432301431894, 0.021042674779891968, 0.020062044262886047, -0.020756658166646957, 0.029827479273080826, 0.012448546476662159, 0.01619400642812252, 0.0009116789442487061, 0.010548576712608337, -0.02947336435317993, -0.0072866217233240604, 0.02771640196442604, 0.00542410695925355, -0.03260593116283417, -0.010078691877424717, -0.02013014443218708, 0.005492206197232008, -0.021219732239842415, -0.00744325015693903, -0.009241070598363876, 0.03394067659974098, 0.006557959597557783, -0.002167259342968464, 0.009520278312265873, -0.02037530206143856, -0.019054176285862923, -0.016125906258821487, 0.009111681953072548, 0.008716706186532974, -0.007715647108852863, 0.02041616104543209, -0.01701119728386402, -0.0061459592543542385, -0.0022047138772904873, -0.00826044101268053, 0.02119249291718006, 0.00969733577221632, -0.013129538856446743, 0.011345338076353073, 0.004365163389593363, 0.010276179760694504, 0.02969128079712391, -0.021178873255848885, -0.01195142138749361, -0.015812650322914124, -0.01010593120008707, 0.002769937738776207, 0.008028903976082802, -0.021138012409210205, -0.00515511492267251, -0.015853509306907654, 0.002136614639312029, -0.007164043374359608, 0.01774667017161846, 0.02649061568081379, 0.006666918285191059, -0.0005592652596533298, -0.0047294944524765015, -0.016629841178655624, -0.0017484487034380436, 0.016874998807907104, 0.02451573684811592, 0.004252799320966005, 0.005444536451250315, 0.015036318451166153, 0.017242735251784325, 0.0028142023365944624, -0.0037352449726313353, 0.008777995593845844, 0.012421307153999805, 0.021573849022388458, -0.022527238354086876, -0.010317039676010609, 0.028193097561597824, 0.011045701801776886, -0.000839323503896594, -0.005740768276154995, 0.014437044970691204, -0.008117432706058025, -0.018073545768857002, 0.027580203488469124, 0.02496519312262535, 0.014927360229194164, 0.008709896355867386, 0.02247275970876217, 0.03091706894338131, -0.006466025486588478, 0.005458156578242779, -0.007048274390399456, 0.010194460861384869, 0.026722153648734093, 0.0033062195871025324, 0.008485169149935246, -0.013401935808360577, -0.02090647630393505, -0.01416464801877737, 0.017283594235777855, -0.028383774682879448, 0.020062044262886047, -0.0038544186390936375, -0.019203994423151016, 0.02969128079712391, -0.0010453237919136882, -0.02571428380906582, -0.011794793419539928, -0.022295700386166573, 0.007926754653453827, -0.003381128655746579, -0.02816585823893547, -0.02218674123287201, 0.0058122724294662476, 0.022254841402173042, 0.04083232209086418, 0.006711183115839958, 0.011454297229647636, 0.022091403603553772, 0.0015296798665076494, -0.0009346624719910324, -0.001242811675183475, -0.009390889666974545, 0.045735470950603485, 0.0018369777826592326, 0.016874998807907104, -0.019421910867094994, -0.029446125030517578, 0.007450059987604618, 0.00838301982730627, -0.018631959334015846, 0.0021485318429768085, -0.0052538588643074036, 0.017814768478274345, 0.03238801285624504, -0.029636802151799202, -0.027117129415273666, -0.0024430612102150917, 0.0005226618959568441, 0.026504235342144966, 0.01554025337100029, -0.009860774502158165, -0.017583230510354042, 0.0009201914072036743, -0.014668582938611507, -0.005863347090780735, -0.01381734199821949, 0.015485773794353008, 0.002609904622659087, 0.0009193401201628149, 0.021846245974302292, -0.004307278897613287, -0.018972456455230713, 0.004566056188195944, -0.012169339694082737, 0.008205962367355824, -0.0023238875437527895, -0.006081264931708574, 0.03285108879208565, 0.010555386543273926, -0.006472835782915354, -0.01088907290250063, 0.002284730551764369, 0.004065526183694601, 0.032823849469423294, -0.010282989591360092, 0.014695822261273861, -0.015363194979727268, 0.024624696001410484, -0.014477904886007309, -0.0008852905011735857, -0.0038850633427500725, -0.029146486893296242, 0.00744325015693903, -0.004191509913653135, 0.04805084317922592, 0.011100181378424168, 0.024256959557533264, 0.006952935364097357, 0.023344429209828377, -0.017583230510354042, 0.0037658896762877703, 0.0031053267884999514, -0.007450059987604618, 0.023712165653705597, 0.019326573237776756, 0.008784805424511433, -0.6511379480361938, -0.026354417204856873, 0.01857748068869114, -0.012972910888493061, 0.0030457398388534784, 0.029555082321166992, 0.010562196373939514, 0.004671609960496426, -0.004886122420430183, 0.033314161002635956, -0.025523606687784195, 0.020402541384100914, 0.032987285405397415, -0.01219657901674509, 0.00016407667135354131, 0.0015730931190773845, 0.016003327444195747, -0.023467008024454117, -0.022036923095583916, 0.01594884879887104, -0.018155265599489212, 0.03116222657263279, -0.0039054930675774813, -0.00969733577221632, 0.007715647108852863, -0.010494097135961056, 0.014695822261273861, -0.0003971038677264005, -0.01018765103071928, -0.02004842460155487, -0.013722002506256104, -0.0016871594125404954, 0.011338528245687485, 0.025278449058532715, 0.06335955858230591, -0.008553268387913704, -0.0241480004042387, 0.008961863815784454, 0.010085501708090305, 0.03260593116283417, -0.022568097338080406, -0.001295588561333716, 0.03511198237538338, 0.001398588763549924, 0.00326025253161788, -0.0018897547852247953, 0.02062045969069004, 0.00981991458684206, -0.0062855626456439495, -0.004855477716773748, 0.007116373628377914, -0.016125906258821487, 0.013490465469658375, 0.0009865881875157356, -0.02555084601044655, -0.002318780170753598, 0.021219732239842415, -0.013272548094391823, -0.005938256159424782, 0.025441886857151985, -0.02066131867468357, 0.000909976486582309, -0.03464891016483307, -0.014082929119467735, -0.02353510819375515, -0.012789042666554451, -0.0109503623098135, -0.028928570449352264, 0.028029659762978554, -0.027893461287021637, -0.010419188067317009, 0.005342387594282627, -0.02653147466480732, -0.02090647630393505, 0.018672820180654526, 0.006019975524395704, 0.026381656527519226, -0.014872880652546883, -0.003878253512084484, 0.010664345696568489, 0.013912680558860302, -0.00953389797359705, -0.011365768499672413, -0.006282157730311155, 0.03674636408686638, -0.013156779110431671, -0.0005882074474357069, -0.015921609476208687, 0.006500075105577707, 0.0029589133337140083, 0.01652088202536106, 0.017147395759820938, 0.003997426945716143, -0.002776747802272439, -0.012067190371453762, -0.0099424934014678, 0.013245307840406895, -0.009029963053762913, -0.0014215722912922502, -0.01160411536693573, 0.009458988904953003, -0.0022404659539461136, 0.019912226125597954, -0.006915480829775333, -0.011277238838374615, 0.006380901671946049, -0.004034881945699453, 0.016983957961201668, 0.043937649577856064, -0.013299787417054176, 0.00417108042165637, -0.006101694423705339, -0.01197185181081295, -0.010364708490669727, -0.008348970673978329, -0.030971547588706017, 0.010609866119921207, 0.00888014491647482, 0.026763012632727623, -0.016493642702698708, 0.03424031287431717, 0.001168753718957305, 0.0158262699842453, -0.0027529129292815924, 0.01028979942202568, 0.00404850160703063, -0.001872729859314859, -0.026912830770015717, -0.017937347292900085, -0.009990163147449493, -0.00637409184128046, 0.008423879742622375, 0.010623485781252384, -0.016439164057374, -0.005750983487814665, 0.006183413788676262, 0.02074303664267063, -0.0023324000649154186, 0.007804176304489374, -0.008314920589327812, -0.015390435233712196, -0.012938860803842545, -0.008430689573287964, -0.026354417204856873, -0.00393613800406456, -0.025646185502409935, -0.018223363906145096, -0.017910107970237732, -0.016180386766791344, 0.015077178366482258, 0.000699294381774962, -0.002740995492786169, -0.003725029993802309, -0.005352602805942297, 0.029200967401266098, -0.011747123673558235, 0.013490465469658375, -0.019490011036396027, -0.00013417683658190072, -0.017787529155611992, 0.007375150918960571, 0.03511198237538338, -0.013068249449133873, 0.0020719203166663647, -0.009969732724130154, -0.011399817653000355, -0.0025877722073346376, 0.029092008247971535, -0.01594884879887104, -0.020225483924150467, 0.010582626797258854, -0.006357066798955202, -0.01322487834841013, 0.026177359744906425, -0.0008516664966009557, -0.010133171454071999, 0.006986984983086586, -0.02571428380906582, -0.006861001253128052, 0.01018765103071928, -0.003973592538386583, -0.006891645956784487, -0.026967311277985573, 0.0029589133337140083, 0.007198092993348837, -0.002335804980248213, 0.019421910867094994, 0.0503389798104763, -0.019122274592518806, 0.002969128079712391, 0.0005158519488759339, 0.02653147466480732, 0.005097230430692434, -0.005907611455768347, -0.009424938820302486, 0.015771791338920593, -0.0075317793525755405, 0.024542976170778275, 0.006483050528913736, 0.020756658166646957, -0.0038952783215790987, -0.022894974797964096, 0.01729721389710903, -0.010895882733166218, 0.002274515572935343, -0.025264829397201538, 0.0008235755376517773, -0.02021186240017414, 0.021015435457229614, -0.018427662551403046, 0.0009567947126924992, -0.03595641255378723, -0.026626814156770706, 0.0030968142673373222, 0.020974574610590935, 0.01878177933394909, -0.0001210890113725327, -0.0066430838778615, -0.010453238151967525, 0.00988120399415493, 0.012639224529266357, -0.013674333691596985, -0.012891191989183426, -0.003238120349124074, -0.023875603452324867, 0.019040556624531746, 0.02702178992331028, 0.012182959355413914, 0.006159578915685415, -0.02198244445025921, -0.023031173273921013, 0.017079297453165054, 0.009506657719612122, 0.027947939932346344, 0.0010946957627311349, -0.0006507736397907138, 0.015090798027813435, -0.024583837017416954, 0.02702178992331028, 0.02210502326488495, 0.030562952160835266, 0.02345338836312294, 0.009111681953072548, -0.007926754653453827, 0.008614557795226574, -0.013177208602428436, 0.02500605210661888, -0.001099803252145648, 0.009704145602881908, 0.006530719809234142, -0.022731536999344826, 0.0051312800496816635, -0.012353207916021347, 0.019789647310972214, 0.0025230778846889734, -0.02168280817568302, -0.0004728643107227981, 0.00047243869630619884, 0.009663286618888378, 0.031189465895295143, 0.006142554339021444, 0.010296609252691269, 0.004545626230537891, 0.008955053985118866, 0.003028715029358864, 0.014900119975209236, 0.015390435233712196, -0.030045397579669952, -0.006830356549471617, -0.008546458557248116, -0.006963150110095739, 0.014246366918087006, 0.010303419083356857, -0.015158897265791893, 0.024120761081576347, -0.01404206920415163, -0.0006563066854141653, -0.009057203307747841, -0.011311288923025131, 0.040450967848300934, -0.009479418396949768, -0.030971547588706017, 0.008015284314751625, 0.02930992655456066, 0.014464285224676132, -0.0009908443316817284, 0.0032040707301348448, -0.004681824706494808, -0.01882263831794262, -0.0213150717318058, -0.001197695848532021, 0.02431144006550312, -0.0073615312576293945, -0.014396185986697674, -0.013973969966173172, 0.004753328859806061, 0.02698093093931675, -0.01363347377628088, 0.007967614568769932, 0.014464285224676132, 0.012680084444582462, -0.0002257916348753497, -0.032088376581668854, -0.04734261333942413, 0.00601657060906291, 0.0267766322940588, -0.0033913436345756054, -0.0007827159715816379, 0.0033300542272627354, -0.010419188067317009, 0.009724576026201248, -0.015376814641058445, -0.03227905556559563, -0.025101391598582268, -0.002919756108894944, 0.023848364129662514, -0.015213376842439175, -0.006329827010631561, 0.03513922169804573, -0.008491978980600834, -0.016371063888072968, -0.0070074149407446384, 0.0017212090315297246, -0.012251058593392372, 0.08264527469873428, -0.0026507640723139048, 0.011658594943583012, 0.028955809772014618, 0.01648002304136753, -0.011958232149481773, -0.004828238394111395, -0.03549334034323692, -0.004559245891869068, -0.000512872647959739, 0.03530266135931015, 0.011924182064831257, -0.021383170038461685, -0.0013211257755756378, 0.014940979890525341, -0.00037433317629620433, 0.010773304849863052, 0.002569044940173626, 0.010732444934546947, -0.002247275784611702, -0.01570369116961956, 0.03576573729515076, -0.016534503549337387, 0.023031173273921013, 0.004521791357547045, 0.0062855626456439495, -0.0035343521740287542, 0.03876210376620293, 0.011576876044273376, 0.0009338112431578338, -0.012618795037269592, -0.008015284314751625, -0.007960804738104343, 0.008274061605334282, -0.008546458557248116, 0.013027390465140343, 0.02480175346136093, 0.018754538148641586, 0.005420702043920755, -0.008682657033205032, 0.006295777391642332, 0.011222759261727333, -0.0016863081837072968, -0.008192341774702072, 0.0038748483639210463, -0.036228813230991364, -0.020960954949259758, 0.005846322514116764, -0.006574984639883041, -0.01767857000231743, 0.035166461020708084, 0.0032670623622834682, 0.002311970107257366, -0.017719430848956108, 0.013272548094391823, 0.030399514362215996, -0.029146486893296242, 0.0064558107405900955, 0.01776028983294964, 0.014709441922605038, -0.02644975669682026, -0.023889223113656044, 0.013885441236197948, -0.004678419791162014, -0.013272548094391823, -0.04178571328520775, -0.0414043553173542, -0.01119551993906498, -0.002117887372151017, -0.018509382382035255, -0.021165253594517708, -0.0231265127658844, -0.019653448835015297, 0.005938256159424782, -0.0008980591082945466, 0.014191887341439724, -0.0011304478393867612, -0.017269974574446678, -0.0028414421249181032, 0.021710047498345375, 0.007198092993348837, 0.0014428532449528575, -0.004354948177933693, -0.021056294441223145, -0.01870005950331688, 0.004913362208753824, 0.010528147220611572, -0.003461145330220461, 0.0008082531858235598, 0.006973365321755409, 0.03500302508473396, 0.008587317541241646, 0.0008818855276331306, -0.025782383978366852, -0.003970187623053789, 0.0036467157769948244, -0.002286433009430766, -0.0007742035668343306, -0.01113423053175211, 0.01404206920415163, 0.01347003597766161, -0.01078011468052864, 0.001983391121029854, 0.004845262970775366, -0.01018765103071928, 0.009418128989636898, -0.011018461547791958, 0.01968068815767765, -0.0041166008450090885, 0.00017280189786106348, 0.022527238354086876, -0.027525724843144417, -0.003118946449831128, 0.0037931292317807674, 0.027975179255008698, -0.010664345696568489, 0.011495157144963741, 0.01853662170469761, 0.00959518738090992, -0.009356839582324028, -0.027566583827137947, -0.03628329187631607, 0.02284049428999424, -0.005761198233813047, -0.0216964278370142, 0.02816585823893547, 0.006544339936226606, -0.021424030885100365, -0.004337923601269722, 0.009670096449553967, 0.01018765103071928, 0.006197033450007439, 0.002429441548883915, -0.01992584578692913, -0.020960954949259758, 0.024284198880195618, 0.0015654319431632757, 0.009431748650968075, -0.02288135513663292, -0.015839889645576477, -0.016915857791900635, -0.020920095965266228, 0.009295550175011158, -0.0190677959471941, 0.002162151737138629, -0.032251812517642975, -0.005982520990073681, -0.006843976676464081, 0.01788286864757538, 0.02149212919175625, -0.0065341247245669365, -0.014872880652546883, -0.038816582411527634, -0.006030190270394087, 0.0001315167173743248, -0.051237888634204865, -0.016575362533330917, -0.0231265127658844, 0.01631658524274826, 0.02783898077905178, 0.03467614948749542, -0.00035475462209433317, -0.006537530105561018, -0.006663513369858265, -0.023303570225834846, 0.002087242668494582, -0.01804630644619465, -0.01701119728386402, 0.0035922364331781864, -0.004804403521120548, 0.009813104756176472, 0.024161620065569878, -0.0019561515655368567, -0.010589436627924442, -0.013790101744234562, 0.015404054895043373, -0.015472154133021832, -0.01031022984534502, -0.00257244985550642, -0.027784502133727074, 0.004075741395354271, -0.0025196729693561792, -0.02008928544819355, 0.014559623785316944, 0.005723743699491024, 0.005260668694972992, 0.02369854599237442, 0.012142099440097809, 0.016820520162582397, 0.012400876730680466, 0.019748788326978683, -0.013320216909050941, -0.001183224841952324, 0.006571579724550247, 0.0007158935768529773, -0.02304479293525219, 0.013068249449133873, -0.006309397518634796, 0.0028073922730982304, 0.017596852034330368, 0.016983957961201668, 0.004535411484539509, -0.008028903976082802, 0.026831112802028656, -0.008090193383395672, 0.006922290660440922, -0.03756355866789818, -0.004790783394128084, 0.0288196112960577, -0.03674636408686638, -0.009172971360385418, 0.0013407043879851699, 0.004773758817464113, -0.03829902783036232, -0.005928041413426399, 0.00850559864193201, -0.011842463165521622, 0.012993340380489826, -0.011127420701086521, -0.02993643842637539, -0.01800544746220112, -0.0233308095484972, 0.05072033777832985, 0.004365163389593363, 0.02977300062775612, 0.009731385856866837, 0.009138922207057476, -0.004375378135591745, 0.012754993513226509, -0.002231953665614128, 0.002860169392079115, 0.020361682400107384, -0.00119939842261374, 0.013946730643510818, -0.01000378280878067, 0.008056143298745155, 0.019667068496346474, -0.0182506050914526, -0.031434621661901474, 0.004862288013100624, -0.002798879984766245, 0.022363800555467606, -0.015281476080417633, -0.003786319401115179, -0.03252420946955681, 0.02985472045838833, -0.006615844089537859, -0.021764526143670082, 0.0005137238767929375, -0.032170094549655914, -0.005614784546196461, 0.027117129415273666, -0.016657080501317978, 0.033395882695913315, 0.011386197991669178, -0.009479418396949768, 0.011965041980147362, 0.013034200295805931, -0.016588982194662094, -0.016180386766791344, -0.006265132687985897, 0.0348668247461319, -0.021383170038461685, -0.020239103585481644, 0.0015552170807495713, -0.007436440326273441, 0.006585199385881424, -8.731869456823915e-06, -0.0033045171294361353, 0.022418279200792313, -0.00953389797359705, -0.007164043374359608, -0.015730930492281914, 0.005819082725793123, 0.013790101744234562, 0.0006328976014629006, -0.005076800473034382, -0.0037046002689749002, -0.010957172140479088, -0.006769067607820034, 0.012646034359931946, 0.002659276593476534, 0.00011523673310875893, -0.006207248196005821, -0.005550090689212084, -0.017447032034397125, 0.0005494759534485638, -0.010276179760694504, -0.010814163833856583, -0.028302056714892387, -0.006319612264633179, -0.0025537225883454084, -0.008709896355867386, 0.0178420078009367, 0.00423236982896924, 0.013252117671072483, 0.003316434333100915, 0.005706718657165766, -0.018345942720770836, -0.0016803494654595852, 0.008526028133928776, 0.007307051680982113, -0.017161015421152115, -0.021260591223835945, -0.005733958445489407, -0.008716706186532974, -0.0008491127518936992, -0.006748637650161982, -0.02553722634911537, -0.00508361030369997, 0.022704295814037323, 0.0018284653779119253, -0.010487287305295467, 0.014069309458136559, 0.02952784299850464, -0.00029963679844513535, 0.0018165480578318238, -0.008328540250658989, -0.03366827964782715, -0.008519218303263187, 0.009588377550244331, 0.012618795037269592, 0.005778222810477018, 0.005035941023379564, 0.015839889645576477, -0.005972305778414011, -0.0046682050451636314, 0.0024890282656997442, -0.02247275970876217, 0.02669491432607174, -0.009241070598363876, -0.012468975968658924, -0.020593218505382538, -0.024624696001410484, -0.0026507640723139048, -0.03075362928211689, -0.00675544748082757, -0.013803722336888313, -0.043529052287340164, 0.011658594943583012, 0.013442795723676682, 0.02816585823893547, 0.0038033442106097937, 0.022418279200792313, 0.009377269074320793, 0.006217463407665491, -0.00239879684522748, 0.004358353093266487, -0.010957172140479088, -0.03889830410480499, 0.01902693510055542, 0.043774209916591644, 0.012925241142511368, -0.03138014301657677, -0.04826876148581505, -0.006615844089537859, -0.02127421274781227, -0.0019850938115268946, -0.015935229137539864, 0.03829902783036232, 0.051891643553972244, -0.0253737885504961, 0.0016633246559649706, 0.030317794531583786, -0.016820520162582397, -0.012802662327885628, -0.028356535360217094, -0.03099878691136837, 0.027375906705856323, 0.015513014048337936, -0.0108482139185071, 0.014804781414568424, -0.039878930896520615, -0.019626209512352943, 0.013531324453651905, -0.005049560684710741, -0.003871443448588252, 0.018768157809972763, 0.002077027689665556, -0.01268689427524805, -0.019871367141604424, -0.011999091133475304, -0.002979343058541417, 0.010923122987151146, -0.0025026481598615646, -0.018400423228740692, -0.0033828311134129763, -0.0010870345868170261, -0.021287832409143448, -0.010793734341859818, 3.8226036849664524e-05, 0.014627723023295403, -0.0022983504459261894, 0.009418128989636898, 0.01517251692712307, -0.008648606948554516, -0.010235319845378399, -0.052055083215236664, 0.014804781414568424, -0.010357898660004139, 0.008655416779220104, 0.02123335190117359, -0.009343219920992851, -0.012782232835888863, 0.0008129350026138127, 0.011515586636960506, -0.02041616104543209, 0.018836257979273796, 0.007586258463561535, 0.006959745194762945, -0.0029623182490468025, -0.0032193930819630623, 0.0025332928635179996, -0.015281476080417633, -0.012285108678042889, -0.009084442630410194, -0.004988271277397871, -0.0140012102201581, 0.005134684965014458, -0.001405398710630834, -0.010725635103881359, -0.0077496967278420925, 0.0015526633942499757, -0.007742886897176504, 0.0017271677497774363, -0.01743341237306595, 0.017515132203698158, -0.030072636902332306, 0.0027273758314549923, -0.005693098995834589, -0.011147850193083286, -0.008961863815784454, 0.004566056188195944, 0.007953994907438755, -0.013865011744201183, 0.008798426017165184, 0.24123485386371613, -0.018318703398108482, -0.005035941023379564, 0.022663436830043793, 0.015567492693662643, 0.017692189663648605, 0.012325967662036419, -0.011896942742168903, -0.017106536775827408, -0.007375150918960571, -0.010160410776734352, -0.0037386498879641294, -0.004726089537143707, -0.006142554339021444, 0.006319612264633179, -0.023998182266950607, -0.02296307310461998, -0.03750907629728317, -0.002022548345848918, -0.02681749314069748, 0.00010736275726230815, -0.014491524547338486, -0.02947336435317993, 0.009915254078805447, -0.010562196373939514, -0.02090647630393505, 0.012829902581870556, 0.0017288702074438334, 0.022377420216798782, -0.003149591153487563, -0.01012636162340641, -0.020647699013352394, 0.007708837278187275, 0.015240616165101528, -0.0140012102201581, -0.001604589051567018, 0.034131355583667755, -0.007667977828532457, 0.01660260185599327, 0.0033096245024353266, -0.0024413587525486946, 0.011324908584356308, -0.018523002043366432, -0.010487287305295467, 0.006445595994591713, 0.024733655154705048, -0.017978206276893616, -0.019585350528359413, -0.008151482790708542, 0.019054176285862923, -0.045653749257326126, -0.0035990464966744184, 0.017351694405078888, -0.005233428906649351, 0.010984412394464016, 0.00019663663988467306, 0.007770126685500145, -0.0012249356368556619, 0.0017135478556156158, 0.012223819270730019, 0.0022081187926232815, 0.031598061323165894, 0.0004962734528817236, 0.007116373628377914, -0.024175241589546204, 0.007313861511647701, -0.02316737174987793, 0.02045702002942562, 0.011685834266245365, 0.009138922207057476, 0.013558564707636833, -0.0036807656288146973, -0.015308715403079987, 0.0014607292832806706, -0.023725785315036774, -0.0025809623766690493, 0.019830508157610893, 0.00041732084355317056, 0.022499999031424522, 0.019816886633634567, -0.01894521713256836, -0.020933715626597404, -0.00014151880168356001, -0.03187045827507973, -0.015240616165101528, -0.04162227362394333, 0.014505144208669662, -0.009363649412989616, -0.0053628175519406796, 0.010541766881942749, 5.501144187292084e-05, -0.011638165451586246, 0.00838301982730627, -0.015390435233712196, 0.004630750510841608, 0.01804630644619465, 0.01107294112443924, 0.0089346244931221, -0.0026064994744956493, 0.0032432277221232653, -0.009860774502158165, -0.019748788326978683, -0.014314466156065464, 0.014232747256755829, -0.03148910403251648, 0.005965495947748423, -0.016371063888072968, 0.03595641255378723, 0.0021468293853104115, -0.026259077712893486, 0.0225136186927557, -0.040450967848300934, 0.01084140408784151, -0.002693326212465763, -0.002056597964838147, -0.013306597247719765, 0.010296609252691269, -0.016302965581417084, -0.0025656400248408318, 0.0012972911354154348, 0.009840344078838825, -0.01024894043803215, 0.011120610870420933, 0.0018029281636700034, -0.012680084444582462, -0.0031274589709937572, -0.010936742648482323, 0.010773304849863052, -0.023262711241841316, -0.03459442779421806, 0.019626209512352943, -0.010235319845378399, 0.027280567213892937, -0.01890435814857483, -0.026109259575605392, 0.0033675089944154024, 0.019490011036396027, 0.012598364613950253, 0.0019425316713750362, 0.007164043374359608, -0.0003741203690879047, -0.013544945046305656, 0.005836107302457094, 0.011297669261693954, -0.0066941580735147, -0.004303873982280493, 0.007919944822788239, -0.007198092993348837, -0.031598061323165894, -0.004841858055442572, -0.002623524283990264, -0.01256431546062231, -0.008886954747140408, -0.016616221517324448, 0.04587166756391525, -0.02435229904949665, -0.02119249291718006, -0.05390738323330879, -0.014546004123985767, 0.023140132427215576, -0.02115163393318653, -0.0010614973725751042, 0.023889223113656044, -0.02382112480700016, -0.019857747480273247, 0.012557505629956722, -0.17673122882843018, 0.03108050674200058, -0.0020072259940207005, -0.0005622446187771857, 0.024665554985404015, -0.01250302605330944, -0.0016182089457288384, 0.006197033450007439, 0.0011602413142099977, 0.02488347329199314, 0.03644672781229019, 0.022159501910209656, -0.007204902824014425, -0.010643916204571724, 0.004892932716757059, 0.0036535258404910564, -0.03505750373005867, 0.026763012632727623, 0.007150423247367144, -0.007559019140899181, 0.03132566437125206, -0.011474726721644402, 0.005747578572481871, 0.02210502326488495, 0.011345338076353073, 0.01829146407544613, -0.02194158546626568, 0.022894974797964096, -0.014178267680108547, -0.018563861027359962, 0.00037837657146155834, -0.014328086748719215, 0.043774209916591644, 0.028029659762978554, 0.0037931292317807674, 0.012298728339374065, -0.013333836570382118, -0.02722608856856823, -0.012509835883975029, -0.00011119333794340491, 0.005001891404390335, 0.024897092953324318, -0.01939467154443264, 0.024665554985404015, 0.006278752814978361, 0.0003209178103134036, -0.00248562335036695, 0.0035309470258653164, -0.012264678254723549, -0.01071882527321577, 0.019626209512352943, -0.023589586839079857, 0.018958836793899536, -0.004307278897613287, 0.013476845808327198, 0.015799030661582947, -0.011100181378424168, 0.014682202599942684, 0.0011747124372050166, -0.009418128989636898, -0.023031173273921013, 0.0008461334509775043, 0.011719884350895882, -0.008907384239137173, 0.006421761121600866, -0.013095489703118801, -0.016057807952165604, 0.009990163147449493, -0.01762409135699272, -0.006401331163942814, -0.011924182064831257, -0.03108050674200058, 0.011856082826852798, -0.0005205337656661868, 0.019544489681720734, -0.007756507024168968, -0.025659805163741112, -0.004865692928433418, -0.003231310285627842, -0.020034804940223694, -0.033804476261138916, 0.0450272373855114, -0.02284049428999424, -0.00047626925515942276, 0.005236833821982145, -0.0016582171665504575, -0.012373637408018112, -0.00631280243396759, -0.009329600259661674, 0.012727753259241581, 0.060417670756578445, -0.014736682176589966, -0.0027341856621205807, -0.016507262364029884, 0.011570066213607788, 0.02378026582300663, -0.012142099440097809, -0.009268310852348804, 0.012496216222643852, -0.009676906280219555, 0.007892705500125885, -0.00542410695925355, -0.006169793661683798, -0.002099159872159362, 0.02751210518181324, -0.003697790438309312, 0.0273895263671875, 0.02275877632200718, 0.02726694755256176, 0.000864860718138516, -0.016793278977274895, 0.018727298825979233, 0.02422972023487091, 0.03334140405058861, 0.0016233163187280297, 0.0023221850860863924, -0.006966555491089821, -0.02365768700838089, 0.03693704307079315, -0.0017322751227766275, 0.024284198880195618, -0.0198849868029356, -0.021900724619627, 0.020960954949259758, -0.01554025337100029, -0.012407686561346054, -0.090871661901474, -0.039061740040779114, -0.0025009457021951675, 0.01648002304136753, -1.3606553693534806e-05, 0.011801603250205517, 0.010528147220611572, 0.01231915783137083, -0.001358580426312983, 0.013395125977694988, 0.012230629101395607, -0.008369400165975094, -0.009343219920992851, 0.016180386766791344, 0.038108352571725845, 0.0002557978732511401, -0.0004200873663648963, -0.032333534210920334, -0.008498788811266422, 0.014627723023295403, 0.011549635790288448, 0.012618795037269592, -0.0009448773926123977, -0.02086561545729637, -0.026803871616721153, -0.00478737847879529, -0.018277844414114952, 0.03116222657263279, 0.023153752088546753, 0.0253737885504961, -0.006050620228052139, -0.006660108454525471, 0.009091252461075783, -0.00607786001637578, -0.01788286864757538, -0.005056370981037617, -0.04489103704690933, -0.003090004436671734, 0.004368568304926157, -0.031216705217957497, 0.018019067123532295, -0.001631828723475337, 0.0026184169109910727, -0.032006654888391495, -0.016793278977274895, -0.014600483700633049, -0.005236833821982145, 0.002454978646710515, 0.0007627118029631674, -0.011610925197601318, -0.03230629488825798, -0.03832626715302467, -0.009996972978115082, -0.001734828925691545, 0.029881959781050682, -0.00444007245823741, 0.013517704792320728, 0.00121216697152704, -0.001905077020637691, -0.011658594943583012, 0.005733958445489407, -0.015962468460202217, 0.007831416092813015, 0.032823849469423294, -0.027403146028518677, 0.013075060211122036, -0.004756733775138855, -0.018563861027359962, 0.01857748068869114, -0.02149212919175625, -0.005750983487814665, 0.012652844190597534, -0.01890435814857483, 0.012693704105913639, -0.010174030438065529, -0.003745459718629718, -0.011427056975662708, -0.007633928209543228, 0.008171912282705307, -0.013776482082903385, -0.01980326697230339, -0.023766644299030304, 0.004654584918171167, -0.014055688865482807, 0.03666464611887932, 0.0026150119956582785, 0.024747274816036224, 0.012591554783284664, 0.00017173784726765007, -0.004685229621827602, -0.015771791338920593, 0.027825361117720604, 0.020525120198726654, -0.008274061605334282, -0.010323849506676197, 0.01886349730193615, 0.0070074149407446384, 0.0063025872223079205, 0.0005201081512495875, 0.001012976630590856, -0.020879236981272697, -0.016003327444195747, -0.07158595323562622, 0.026681294664740562, 0.006830356549471617, -0.0009057202842086554, 0.006149364169687033, -0.016507262364029884, 0.022540858015418053, 0.012802662327885628, -0.023970942944288254, -0.004399213008582592, -0.03260593116283417, 0.010773304849863052, 0.01857748068869114, 0.010555386543273926, -0.012959291227161884, -0.03132566437125206, 0.016738800331950188, 0.023358048871159554, 0.006353661883622408, 0.023194611072540283, -0.005911016371101141, 0.0017671760870143771, 0.040287528187036514, 0.0064081414602696896, 0.010405568405985832, -0.0032534427009522915, -0.0030968142673373222, 0.006874621380120516, -0.01053495705127716, -0.02849273383617401, 0.02816585823893547, -0.0247608944773674, -0.006980175152420998, 0.01385820098221302, -0.018631959334015846, -0.045163433998823166, -0.010194460861384869, 0.011461107060313225, 0.007885895669460297, -0.016425544396042824, -0.013504085130989552, -0.024788133800029755, 0.004940601997077465, -0.01829146407544613, 0.005951876286417246, -0.012543885037302971, -0.015158897265791893, 0.02308565191924572, 0.018958836793899536, 0.006663513369858265, 0.02345338836312294, 0.023439768701791763, 0.0036535258404910564, -0.003837393829599023, -0.017242735251784325, -0.02398456260561943, 0.008478359319269657, 0.004334518685936928, -0.010582626797258854, -0.03227905556559563, 0.03628329187631607, 0.017406173050403595, 0.03848970681428909, 0.0005848024738952518, 0.010739254765212536, 0.004678419791162014, -0.0037352449726313353, 0.022786015644669533, 0.01090950332581997, -0.013742432929575443, -0.020511500537395477, 0.0040553114376962185, 0.022213982418179512, 0.045572031289339066, 0.029337165877223015, 0.027375906705856323, -0.019244853407144547, -0.01668432168662548, -0.031134985387325287, 0.019776027649641037, 0.03018159605562687, -0.00398721219971776, -0.03982445225119591, 0.032878328114748, 0.033069007098674774, 0.013177208602428436, -0.005733958445489407, 0.0059450664557516575, -0.007838225923478603, 0.015186137519776821, -0.02952784299850464, -0.012394066900014877, 0.020402541384100914, 0.008846094831824303, 0.0036841705441474915, 0.021710047498345375, 0.006707778200507164, -0.00687802629545331, -0.0014385971007868648, 0.0273895263671875, 0.006782687269151211, 0.007034654729068279, -0.0022183337714523077, -0.02357596717774868, 0.0031921532936394215, 0.007838225923478603, -0.027730023488402367, -0.017528751865029335, 0.02127421274781227, 0.021764526143670082, 0.029391644522547722, 0.010923122987151146, -0.001720357802696526, 0.016548123210668564, -0.006108504254370928, 0.013497275300323963, 0.006360471714287996, -0.003500302555039525, -0.006956340279430151, 0.009070822969079018, -0.0032517400104552507, 0.012952481396496296, 0.0023000529035925865, -0.012148909270763397, 0.02710350975394249, -0.003861228469759226, 0.007252572104334831, -0.012543885037302971, -5.629495262837736e-06, 0.006932505872100592, -0.024175241589546204, 0.01697033829987049, -0.012707323767244816, -0.032578691840171814, -0.010235319845378399, -0.012789042666554451, -0.0018437877297401428, 0.02673577331006527, -0.02008928544819355, 0.06014527380466461, 0.0004924428649246693, -0.007674787659198046, -0.007061894051730633, 0.007422820199280977, 0.0032772773411124945, -0.01767857000231743, 0.013034200295805931, -0.028792371973395348, -0.008478359319269657, 0.022745156660676003, -0.004818023182451725, -0.013170398771762848, -0.015404054895043373, -0.012618795037269592, -0.018427662551403046, -0.014573243446648121, 0.003265359904617071, -0.0010172328911721706, -0.001702481764368713, 0.036147091537714005, -0.021042674779891968, 0.0051925694569945335, -0.0049303872510790825, -0.010494097135961056, -0.01101165171712637, 0.028846850618720055, 0.011747123673558235, 0.0037658896762877703, -0.012462166137993336, -0.008117432706058025, -0.0018318704096600413, -0.003990617115050554, 0.024624696001410484, -0.00046520313480868936, 0.0041472455486655235, -0.01150196697562933, -0.0016199114033952355, -0.0002167472121072933, 0.0227179154753685, -0.0008869929588399827, 0.008205962367355824, -0.03701876476407051, -0.029582323506474495, 0.023793885484337807, 0.032823849469423294, -0.007075514178723097, -0.004593295510858297, -0.01804630644619465]}, "text_id_to_ref_doc_id": {"ea8f2a24-783c-4441-87e9-3d6a524e88d4": "ce79c7e0-2737-497f-b28b-129a092972f6", "9dd5ef61-505f-4cf8-8a57-775a5a4a6d9e": "d9c805d3-b4c7-4edd-979f-5e9e9ddbf844", "a5dd4ed2-ffad-4506-a1f2-e25c12569798": "068cf630-c9b1-45ad-ad7a-42114cb0f760", "83a1dda7-4b27-46a2-90b7-42ee0797ec3f": "88c52465-0591-4e30-b3bb-80b593e67e63", "06a505d0-5a9c-48de-aa71-92c9d2e1598c": "9d1aa5a7-32ce-4db8-90f5-b80c3590d2a8", "a64c9c75-bf7f-49b2-b815-51798474fc5b": "ae939c3e-1ba7-45a9-ab77-a57971c19e70", "4250c708-0eaa-454d-a61e-ca6949f4cab8": "3e7b8570-c846-456b-a2da-99e9e00b152e", "f5dff58d-3f9f-438b-aec4-ad9d405dd0d0": "987b823a-a32f-4e0a-be51-321a464fa024", "71c6d102-1b98-40e2-975b-a0bca03bf152": "68654e11-e95e-4198-b977-342ffea414d1", "7b56d953-5d3d-4c26-b263-0d7d273eecf3": "4058c3ac-5fc2-44f1-be9b-caf4592c1975", "2206a4d2-1112-4287-adcd-0bd9dc77978c": "c2ae3914-16bb-4bcd-98cc-2bc1b8c64211", "c64c4674-00e9-4ba9-a68d-c40cbcba032b": "cbb01147-887b-4402-bc1f-e0d680de53b5", "1d8fe66d-74de-42b6-b42c-602120f097f1": "e196e0eb-1d62-4e56-b3c7-860b8b9cf82f", "4354a668-d85d-4c5b-bda7-a24d7f204a75": "ea29a5cc-7be0-4c1c-9d82-19092d34e2d3", "cd26aa1c-a6d6-43dc-9074-a568ef49975e": "fe785f87-4fa6-4363-8b94-e20f73ac4c69", "37740239-6453-42e5-9485-42937afd3209": "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0", "9c58f533-fead-4e94-978a-70b0be81b612": "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0", "e14c01b1-2eb3-482a-9383-fde15faf6a52": "d3e5dd0c-ff5c-464d-91da-666b1a98ecc0", "2014263b-21f8-4d9f-ac1f-1ecb67ba4b67": "ad902677-e961-42cb-9ffd-5474262f813d", "f90d1ee3-a44d-4025-8de9-ca2eff283765": "28d917d5-327e-41a3-9f41-7e786ec0ff9e", "cc5a89fa-f97d-4b34-a08d-7c8f2380f647": "28d917d5-327e-41a3-9f41-7e786ec0ff9e", "67fa80df-74b0-495b-ac54-b805b10d55be": "210f7abe-762f-4d0c-beeb-219591370b19", "a7dec113-d4ad-42b3-8c12-068e790f36fe": "ce577892-aa46-44ec-a3c3-ad82a8847f5d", "ce9b0860-1fd5-4916-bc02-f7003e48000c": "4303e09f-8bce-4681-943e-06eac590d9d9", "fab83493-3635-42a2-9e4c-3f9c9811b13f": "32c12c5a-b937-4e78-a5e9-0995028d8043", "1b0215d1-5988-4f5c-89a9-25cdeeb163ab": "a7c6cd42-a821-42ce-82da-45c1a7653f6b", "3948ac0d-cd21-41a2-b82d-23463eda3c94": "968e52ba-8d2d-41cb-9ecd-02f41e519527", "260d1dd4-dfbf-4c84-b924-99494034f8d5": "37a6860d-b01a-424b-a69a-0371ffab694a", "dbf80e15-499d-45af-ba7c-ecca12f0bcf5": "8d31b5c2-c82d-4436-97fa-9038886e7a58", "084f7f0a-335a-4332-8fba-ea8af93adb07": "ec004f6b-f580-4214-a0ed-5ef66f0b423b", "e02f1412-7ee8-4e47-8fab-65ec2e609219": "7f292052-e685-484c-8a88-ced6af9dee2b", "2fa953dc-0470-4f3f-9486-03d37d36846c": "e29949ae-1997-4278-aba6-381cbe396c43", "06ef4019-abd1-439c-bb45-44f3e4971932": "5eadb649-7007-4e92-9b26-dc8ca221b390", "c84d20ec-e28f-4f37-bd24-4c09ae107433": "d26b7075-c33d-4ca5-89e8-dbaeb3ef92e2", "533efdc1-0693-470c-b252-baa900561f46": "d26b7075-c33d-4ca5-89e8-dbaeb3ef92e2", "3ede1386-094b-460e-b22d-c32b7e2e60b1": "f7935bb2-2cad-4d9f-98a5-1058e64a88a9", "f8e78a3b-853d-4dd6-96a8-8c757663e864": "6e42d55e-f0a1-4b3d-96e7-26bfcf75a41e", "70a996da-13cc-4b16-816a-ef5e21359e11": "115941f4-c39b-44ad-b53e-075bc067bf4a", "742d11db-0a2b-4ecf-bb72-3544da7c3f52": "d080c1cd-af48-43f0-a9cf-364a2a1452a4", "342e8fc2-89cb-4b43-b0c9-5f505ec39829": "3a73aaa3-4282-4375-98f5-5566e21358a0", "a50538d7-39ba-408d-b535-b62c3d5bb41b": "3b1cf835-65ab-47d4-9483-69be54ae419a", "18ca8e93-92d9-4eff-be6a-b6e49099476b": "b427ca59-425d-41f5-a205-da189a350d02", "aa3dd74c-bf10-4fec-98e2-94661eeb3270": "b8d70b19-f260-4c43-9334-2671cddcf503", "b5acf5c9-7372-4cad-936f-15baf28828d4": "b8162150-85b3-4fbb-9da9-a5b54c5e7f88", "ed8e6383-00ce-4f6e-9f26-c13c25f41b52": "179127c9-d49d-4e15-a6d1-d977f107853f", "be96e7c0-2f2d-44e9-bfc5-6deaf6a7f934": "cd5e317d-895c-4369-acaa-22c1f375024d", "a483c1ee-77b4-48a7-be28-b9a92ec5fb65": "47c50451-9153-40cf-8a3e-2df754742596", "33e9e11c-0356-4c36-9d24-127d9ec3f40d": "dd1508fc-36b2-4ffe-877f-2e078e0e6d93", "9355f9f7-4d0f-4eb7-8c26-b117bc816adc": "e59201dd-50da-41fb-bcf7-828be248612b", "11bb893b-06dd-46fa-9c3b-05d0561e330b": "e59201dd-50da-41fb-bcf7-828be248612b", "f53eefe8-eb19-4cd3-94db-225026bd31af": "e59201dd-50da-41fb-bcf7-828be248612b", "b9fdbcb9-5edc-43ae-8050-dd72079dac26": "cebfd4cd-b7a7-4e2c-ada9-78695d54f04a", "8bb5fe02-f66d-4302-85cd-4c0c956bf6c0": "ca65780f-bff0-4525-98af-59ce39554b0f", "9b546d02-7c84-40d5-aaae-19fad4f818b9": "c3f31aa3-3a65-4566-810f-304800b43281", "b689de3d-49d0-4f72-b07a-a561248ccc58": "500bd4a9-9d6c-46d1-a7ba-68c367c65b19", "427e9668-cbaf-457e-ab76-98b61061e9b9": "4699fa1d-4331-4faa-9df4-dd354731616d", "308f55fd-5f56-42b0-b473-9a57716dced2": "d17cb98f-78b0-4313-add5-4f6024cc023a", "f50169a5-63d6-41e0-8f71-5b49f72769c9": "05a2ef2d-d2ac-4130-bdf8-e36c5df8abec", "f83a5752-4020-41c1-bc2c-9d74e407fdfc": "dfe8ba87-12c6-4352-881e-007366b9329a", "e70c7fff-b77c-46dd-9009-dc930ae0692d": "22419697-3d51-4f4b-b3c5-517fc93b85eb", "f1b73661-889e-4a8e-b150-42821788ceb9": "22419697-3d51-4f4b-b3c5-517fc93b85eb", "d930e5fa-ab0d-4a54-a85b-c8683ca6ce79": "1b12cd2c-6cbc-4b8b-bc11-b0f07bc21165", "00eddcdb-b8ed-41b9-838a-2d79d8fb57ab": "f42aab04-8e78-4f6a-854d-96e38f4a5861", "7ad21d09-559c-4e47-92c4-2a2e60192654": "f95c4018-54ee-4594-ba99-26613ce4b0b9", "8fe56bf8-c709-451f-9cb5-3d45acff76a6": "dcfb8e33-0dd5-4a5a-b143-767385e89c45", "283ffde8-e3e6-462e-ac07-8d9c0aceda45": "851eae1a-b9e2-4830-8dac-bb1210d3f0cf", "17dc908d-97bd-4f70-a113-da91d42944fc": "5abc6f30-b9c4-440e-bfc0-e6ace08009d1", "b47de4d3-efca-437f-b86f-a511a8a488c2": "c6e71118-ef41-407c-ae38-6c9531a21885", "470d7749-2dac-40b7-809a-2f8e5dda995f": "e06a2dad-4079-46f4-86ee-e7fefdd32765", "c1bdce91-2f0b-48af-b4be-c8498c881ace": "b98f2a03-09c3-4729-8aa2-edc392482b5d", "9df26552-c77b-48f9-8468-7ee0482ee31c": "c75b624b-0673-4028-a63b-5dca4caebad0", "9e8f0265-a120-4449-ab49-84c01e1501fb": "fb72cf94-871a-46a6-b2c2-e77ebfb0a841", "508c0633-27f9-41ce-8943-38a30ca38670": "d8b49b77-5ea7-4bb1-bd66-ce20ce838553", "de287235-bc55-42f3-98c4-6a2d542b2740": "7267230c-b52c-407c-8454-190574d5418c", "23f1ecfa-8922-44a1-ac79-56b894736a62": "3ec15043-1a7f-464e-9c5c-d535579a0387", "15225548-ae59-44c6-b10d-3788fc066586": "69f6c39d-83e3-4f08-96b1-493af5b225e5", "5b34d215-2611-416b-b34a-7470223a687e": "12f3e9df-748d-4383-b5eb-8e0db339f84f", "bcc8ce86-e983-490e-a23f-d7af513392d3": "ca57654f-7e33-4731-932e-fa737b633546", "81393b81-5c50-483e-ac72-3ddb2466f498": "c7cfdf36-eef9-4eba-9579-4bc1b556f2c9", "a8490578-d792-4b2d-a91a-e3755211dad5": "fb4931e0-f4e9-4d86-9e7c-0c10aa5d07f4", "bc35b2fc-146f-4cc2-9a2f-0d1acc85fa16": "49976c04-4ec1-4ef2-8fe3-d92e41b0da88", "1846fdb4-bbab-4f8c-a1ce-295a684ef720": "19ea8123-db68-412d-9d74-a03aabed8f14", "0cba1902-9045-405e-9a1d-64b1526ebb87": "5be45fc8-d6f1-43f4-878e-6b06ddbab2fe", "ed1fe994-028b-48dc-bc10-80d78f76d4af": "9f9b9538-89aa-431f-8cb3-a8cc338ee9d9", "4896d728-623a-4b34-ae7d-26404e9a13d6": "24c4967d-f328-40cc-9eac-40174a638d4a", "0dba0ca0-6cb8-4433-8b21-00c2cecb4ad1": "dd7a0dd1-80ac-4acb-aae6-04abdd67eab7", "6027cd04-5df8-4ec9-9a74-85729013e53f": "8dd7b6e7-4a87-423e-991e-911c36ec1ff0", "f45620fd-aa92-4c7d-b48b-1b70fc3622ea": "210fa9a3-c7d1-41d7-b065-251a4c37174c", "085fcc40-c5a0-4dea-8039-113b0bd8d4e3": "951d4750-1ce7-4a82-b1d1-3a7144b67547", "ed78f2a3-18af-4f13-9705-e9b9eca959ae": "56ad45a3-f3cb-4aeb-b883-b9d54843d513", "45aadffd-70a5-4839-92f9-6a8f5f60e930": "1149b717-c8ec-41ff-8bb2-a8c860e1b122", "0ecd9cf8-ce03-4f27-8346-be248bb2b66a": "aa0b9af2-ebf7-4edb-b567-c90e5d5932b5", "76a79005-725c-4eeb-a2cb-d05bb8a0cb88": "f12dbc0f-04f1-408f-b9c4-6b5eafb63498", "d04b1468-78b1-4115-855e-de536d9f0c9f": "764e76f4-d0e9-4e94-9570-fbca5547244e", "c4e7b5cd-3352-42a8-983d-494bcf6582a1": "dfa154f0-f996-4e89-bc94-d40c9bd718e1", "a3a7149a-804f-4666-8986-1cd855092f7d": "5f47e28e-8f87-443e-b11d-00173bc03553", "78af704b-28bf-400e-ab15-0860f9ff21f0": "a4663894-f9b2-4950-bffc-f07ffb9a0093", "c6701200-393e-4d5f-9fc1-4ecb8bef309f": "cfaf86ce-55f8-4538-96ed-3fe4df0deb58", "a9c9ac03-52ba-4828-a891-4f63dcf7e4ea": "8fca467c-aba7-4536-8adc-80e67a334b58", "c9b38449-e0cc-4a69-a302-65784caaca9c": "f52f19e2-8471-4e77-bc32-a7f01b22e2a3", "236fce0f-14ec-45a2-98c7-63852575335f": "9556f22a-8c45-4dcc-89a7-fc8d772fa2c2", "b6b19753-0021-4092-92a5-82c6385d1ea7": "667fe628-926a-4bbd-9bae-3031da839aa3", "3677f763-add2-4a4e-a9bc-3285c05feea5": "343bd849-6f9e-41fc-a6b5-fa20ae31b338", "e906b892-59c3-47ea-8db5-9b62513213dd": "5d2e75cd-1c01-4bf5-a23c-32904cb3f9d4", "6c060f29-393f-4866-9884-d6732a831213": "1cb13e86-3aec-4ca4-8226-5155bf18f1d8", "be92606c-f3e3-4dc0-8a4f-c9095ab46d10": "12bbab1f-2548-4095-8f24-24acf4f783cb", "a80a896e-df16-444e-ba40-7e566075f3f7": "91c987ce-90bd-4d65-a079-868c90a62b4e", "bb09d21a-e0ce-4bd4-b30e-71b1502184db": "ca6aa865-a510-45fb-a604-16484692ca9c", "007f28db-1a5c-40d3-919b-4d993ff0d192": "0b151f23-6052-4c2b-9730-3c0797a30e9a", "d44e0165-c1b2-4295-9dcc-bf9de3a9fd06": "86f9492c-a828-4b56-928e-2d9092ec3ca8", "f8833e02-c260-4885-8532-49ed310cac67": "f7d6244b-f7d4-456f-923f-621bc30a84ae", "963f875d-783b-4902-9e2b-433010ef739a": "e3d1d171-77c2-4675-9891-7ec48fbabc91", "8719fd0e-5005-4414-bf3c-41d6a3057de9": "aa6d1cbc-a686-4d84-93ba-d2a2cb880313", "00c06687-6593-44db-9462-6ec51c254b20": "972df85b-4215-4c8a-b4c9-4b3545e8d879", "0c575bac-b8db-4ea8-abc2-0b512363d662": "3d5eafa6-af75-41f1-bf38-4d95162c8ebc", "47443c42-8394-4e1a-a1ae-748f0d235d1e": "1ea78f64-0de3-408c-baed-69f05b82be79", "7e115d34-80b1-444b-9a9b-cc54eca947cc": "ff8a7032-6fbd-4cd7-89d1-e7bdd1038adb", "6055200f-29d8-477f-ac6b-e4bede10878a": "b643bfd3-6ec9-411d-a563-00ddadf3f830", "4cc49e02-40a2-48f8-88b6-76b37c9bdd81": "b0f9fcc2-bf2b-4a6c-821c-83f09d8d90ed", "f6db1301-4642-4407-b005-e75982801961": "5130e796-5a64-40a5-a8c0-2a4354e451e6", "3fc35171-bc33-4726-af97-d66dd2070531": "f4a606d9-2489-4aa9-b68e-f476ddf8d5d3", "3b9b8a00-cdac-42d3-b5d0-c5e7f87345a6": "28d7174d-852f-4886-8a8b-e63a916a144e", "5fbdf692-ad99-4031-a69d-798144197097": "35dc437a-7626-40c7-8567-2a5856790c16", "9c38a9cf-92ca-492e-bf14-e332287c02ad": "48c58cf9-dd43-4193-aa02-f86073982a26", "2ef6c2b4-8a75-4214-97a7-ba78b4f7fcc8": "99a013c1-3b3a-4f1b-a656-9e249c618656", "5b87a716-610c-4a52-9706-58146e9b5f5b": "73b731ff-ee83-48d5-82c7-3ac9cc4dd38c", "1349852d-6cd2-4a66-b4a1-b258a4147807": "584d5baf-1356-46c0-a46e-860aec0e8007", "019057ca-a153-4f2f-bd21-65fbb4dfcce6": "571308b4-3cd1-47f6-85b4-faac592e0a46", "40d8ea74-d247-413f-9230-20c95127dcdb": "bdacaa2a-bd38-4606-bbef-cd07c48c7869", "71f70f07-2860-4a61-b3a1-372762fedfb8": "0d846675-3005-40e5-bc51-bba6923267dd", "8285f94c-d182-4f5e-b8ea-8916ebc54544": "e91a5a0e-ac47-48f6-bae9-5b7b2c6c39c6", "0de6c6a7-1c6a-4840-8e96-e09d0d995e52": "555311ab-c836-4c20-a3dc-24efaf7ccace", "c180cbf8-8012-4f58-a408-4b6a6072477a": "d3396fc0-63bc-4aa5-95f9-6cd3ea4d174d", "e3ba026b-5908-4c73-9833-67cb82a75746": "91fa9261-3de4-42a5-b5b6-d2559d0006c2", "885c5a0b-2e15-4c7d-9257-d9a01c458eba": "c2c25875-bcce-49a6-accd-80125c88ea8e", "961b4e50-41d2-4353-9e78-885db2028a62": "76a37b38-3207-45cd-bbda-1c8f78765275", "a7d5cd60-d35b-43c4-ad2d-469147d85e1d": "50e94990-40c3-4321-9cfc-6aacfb48bc5d", "7b7444e8-5e2c-4d2b-8d41-a5c7180e5747": "3b40b0c5-d27e-4717-9765-79254f86ca99", "3454cfe3-51a9-40f2-b7d4-28efeb36b30b": "5a6656fd-78b4-4668-8c2f-a0181814e07d", "34002b91-014c-4697-8737-4a15527847f5": "8a0351b2-2b88-45ec-a4ef-77fa0ca33582", "3b6bef66-ce49-4c09-8fc7-14270f1a72db": "2f1409cd-fc75-4462-be08-151a3d7f807b", "2c2f9276-e991-4f8c-8ce0-bd87ea6d42bf": "382c1175-574c-4da1-b8ba-e48946e55529", "c58d2cf1-6713-4d9a-9d37-6afa53baa3fd": "94c1534c-c2b4-48d4-9678-9c717953ff17", "48bf9617-e70d-4329-bdd5-b63b261e0103": "1095fffc-e023-454c-88da-e8c24bc28e82", "cd8cbd8b-e585-4ef7-b12b-413e6b598c04": "3bcfa11a-3d3d-4fff-bd31-a9cec14dbe9c", "2842b791-dc81-4391-ae53-183965f45efb": "0bc53677-2697-47b6-800f-89ff1da2f2f7", "73ce240b-3c09-48de-99f4-0194dc1faaf2": "f4f00ff3-56fa-442d-8ef2-9c4ca4736376", "6d444950-9e43-4284-9d89-6948cad48e74": "ab94c84e-faa3-46ad-b0cd-8954bc2ef260", "c672c616-984e-4cb1-8d30-e8a926d7fe1c": "50f7803c-7efb-45d5-ba28-635155c5fc4f", "45b837a5-3b51-4f6f-9806-ce2f512426fa": "6ae5d33d-30b7-47d2-b945-6f71791af405", "ab3b4ded-a0e5-4d00-94d1-2fcee1efeba3": "6daf950b-9c88-438f-9757-2b6c544d0b04", "62b01dae-a988-438c-8405-cc7b9e34f01c": "3c6dcf35-7412-4f68-ac74-adde2f7b5134", "63c48eac-6dd9-46ff-a6f2-e00f5dcb0e7f": "dd994aa9-ffd5-4886-a1df-5f8a21286da6", "3f83359c-54f8-428b-b1e4-a1fb21c29b8c": "296249e0-01bf-4dec-9622-c0850f83ecc5", "e7b19daa-0975-4df6-a2d9-19f1be4fed5c": "a262d057-8d77-42c5-9a89-3188d79b9893", "027179e2-6c33-43b0-b609-f76b6c776cd2": "1ebb5f71-2f5d-4611-a975-b1d8c32fe040", "227654cd-983d-4662-8ffd-2b2c2f3929a3": "94b20e90-7916-40ef-8e41-9632f6844787", "ca018018-d46c-4cc7-815c-7ed899383cc8": "821040d3-9adc-47af-9e8f-95caa036491d", "7d9ff17a-3463-4125-a2f7-06aadcd0e118": "303c678b-4232-47a9-9455-d9391baaaa49", "a9cdbcc2-2f08-45ad-9dbe-141195027deb": "7f4a19dd-5982-4ac6-be64-54dff7cbb176", "f33c9b34-17e2-471c-8474-f72b8cb2cae8": "8799e86a-5519-4697-b866-797972f40d5c", "2285791b-bcd9-4594-8a59-e3111636859e": "c465083c-dfcb-443d-a011-e05a7d8b6572", "228c06bb-f645-4014-b659-023b13b7411f": "eaf7d3e7-bad4-4848-af23-c50cafbb009f", "51d4d8a9-2dc7-41a8-b8e1-69681f8e3f98": "cf26ff9b-e2cd-47b3-9f91-ba621cc1b131", "660c68c6-21fc-4598-a6ea-c3f54b19cabf": "7797fb4b-430f-4807-8b24-883e270a3a3d", "1036624e-f299-4634-8358-ea02d80ebfdb": "904a3afc-d116-4c75-b30c-bb2c37e0725b", "efbff208-3cc2-4169-adc8-1aadfd164458": "417aec6d-529e-492c-b069-156861142815", "bcd5627d-3241-4022-9659-0a39c43d1017": "1a731606-d439-4f76-9e83-c40360894e19", "2d5d975a-c3d1-4c28-ba1f-ff97bb1fc7c2": "5ad3f174-df8b-4315-941d-b50415aaeb77", "9dea7fe1-20f0-4f2b-9256-e5ccf033967c": "6373be1e-2941-4482-8d7e-feb5316a160c", "22b13e1d-dad8-43f3-ad56-a2ce9d179da3": "6541688c-1f56-4cde-a319-67a1c85e6e02", "9cab7fb6-4610-46eb-bd11-bb7ec3eede56": "1bddf82c-eeeb-459c-a298-bff48a82a43e", "30108c3b-c684-4ff2-964f-5b5eae299db8": "e86b2357-ca10-46cf-89a0-65ec5b942f8d", "d4901a71-eb19-4e06-8bce-ca8451429be1": "b30bdd19-acfe-4cb4-a6a5-20d7759e8ec9", "10bcde16-c549-4dc8-b38c-13526db9e2ec": "5fe4e490-a421-426d-9c76-f34a4859f9d1", "bbe0cfa1-9266-4314-8cb6-65172eead885": "4901c299-983a-4a81-b4dc-a4e3726c79de", "69b8f82f-50a6-4828-8968-c1466952a5cd": "59eb9170-d56e-4e4e-8bad-c988419e986b", "e831b8c2-60e6-405d-87f7-121747e5b6d7": "6840ec80-7677-4911-a635-7a9f0ed9bc7e", "de710693-42f0-4cef-acc8-412ce43ecf84": "7375eebb-d5e6-4a0b-a8d0-4024d9f0118b", "727acea5-6cc9-4807-b68d-cc9314661756": "bbcc61c2-bb80-4a95-b584-56fca2fd0ddc", "ba7d40e1-7292-480b-818c-c15a39187f6c": "daa4a211-9852-48df-b162-dd67e4ba0d52", "f8c4152e-64b9-4488-b0f1-093f8bd58377": "3b3a2d21-adb6-4092-a532-63108fb15859", "d83b7aea-8abd-462f-b03b-f68ebd2bb9e4": "d3282272-5bd9-45cc-bc61-31ffea91d07f", "9e0fad21-aa28-466a-9c2f-38571c907bbc": "16e5a958-c32d-4137-b409-d59e67c521b3", "cdad89c0-2a46-4638-a097-bc4323c75f5d": "f8ee7337-e899-408b-b0e7-376c08a81c9f", "667ae363-e738-48ce-80e9-03ee7261b5ce": "d22bfe9b-4a60-4262-8009-0f953b68f228", "b380cdaa-9db0-4777-8838-a810de25f3e3": "82c7c5f2-14c0-4ea1-96e0-55d24815a934", "7c86d2b4-553e-494a-9634-90ac4128bbb3": "c1b73fca-d756-461d-a74b-52bb8dcb596f", "e4f631ce-d334-40a6-a3ca-be65bf27de24": "29cc3093-4a3e-47b6-b979-10f0b68c7536", "81674c4f-60e0-4f23-86bb-333d830f42e3": "cc0fc37b-8587-4386-9d6b-38919ef43c54", "180ad649-c7c7-4415-aee5-031c9a29b264": "6b4993ef-0255-4ba9-a433-ff91419b52c6", "9451cf88-0557-48bb-8a7c-dcc314a20424": "94748ba8-d795-48ad-a384-2ab41d37d2c6", "973a5c15-9c8a-42ae-85cb-6c8af18389c1": "82205a0a-94e4-4add-85ad-eb1ad91dc841", "2ad0fdd8-af1f-4e11-92d8-d03b8aa427a5": "e634f55c-48e7-49a7-b21f-c19bd5a37209", "696b6e1e-aca8-41e9-aab9-366de11b3628": "665c9256-7794-422e-a4f5-58dd63d3b321", "9182231f-5675-4be9-af96-104c16d80c50": "1dd849ba-339d-447c-b1c4-1f3ed80a1d26", "52478ae6-356e-4b5c-a343-763c91d2c220": "e7dc43f6-ce13-4157-87b6-179846175fcd", "d3828701-0ae8-4d1e-970b-2b3f5bb2c1de": "ea87ba5e-ff95-44f9-83a5-8884bd886de4", "432a84d5-ac00-45d3-8385-11447b8d7c56": "1d431df7-1378-4d96-81b1-74bb9c8a243c", "0937c300-83a4-4da1-a471-1bbfdbc90777": "f184122c-81e5-45a9-a612-d8b852c042b3", "1806da72-5923-4cae-8a66-854195e37b92": "7545faa8-19a4-4494-9d5d-e6240d0e9e3c", "245e052e-d059-43e0-ac54-ff8eaec19421": "9158184e-4261-4309-ba1d-143eee835163", "133900ec-e422-400e-8951-d617ba58f528": "c1142512-08a2-4305-8728-79e2a42d6d2d", "dc7fea2d-d282-49a9-91f4-c446fc482cbd": "1bdfabe8-645c-44e1-bf10-382e2ce59a95", "33a80011-707c-4e4a-9953-f035ad1c2b39": "6bf39a3d-3528-4146-9655-90a9f95fd9df", "2bef8386-2742-4384-9cf6-e5745950cf70": "cc4f60e5-a448-44f5-bbf7-192d6c8ac8ef", "f1a4fa1b-c4ae-4569-b4c2-fa91c9bfd7f3": "e777e248-adaa-40b9-990c-dc90e67fb8d8", "04c8b63d-9486-4ae2-b381-b813de511e5b": "b723447b-5b47-449f-a42d-d20057e87d73", "c7a0f770-07cf-40d3-8c24-c4ea170b3e3b": "563f86ff-c773-4318-b5de-4b005a00c15c", "cf10fd93-8d52-401a-b4bc-f3008db7d7d7": "91f6257d-54c7-4248-a056-4007af9d01e8", "8f2dd465-226d-4a17-ae7c-7aec5260cf67": "d08c0faa-fdf2-4c79-82cd-f51349b011f0", "37d9b31b-7d06-415c-b9f3-075dfc822f2d": "9ec3d41b-c7f8-4ef3-a6a6-1f5a5bbcacb9", "af0dfa52-56da-4cda-91fa-0cb38fc91cb3": "61677468-6c24-4927-91b0-6cef5b80852e", "8a155880-671e-4bdf-b782-5e9767d5a009": "4937f679-5b1b-4d83-92ae-87c2b7e37adf", "d06f932c-e25f-424e-8550-eb1a0384e2a4": "c4f7b5ef-1a59-4619-b54e-cf41a374b635", "6080eb17-0342-412b-a707-27fcebbc620b": "7c144053-e6f9-4cad-bb77-c063d620e0b8", "93673750-be8f-498d-8a61-7be02dcccabf": "e060e8ed-36f1-4c0e-aef7-6a91690af859", "37705651-ac14-4c53-b486-933c2536c261": "f9836538-74a0-4207-8c08-c6103728d6be", "cbdea7e8-6b23-4688-9c05-3c5c0eae95db": "a8ff9a92-9b91-4767-9913-174a84af5115", "8644d86d-7af8-419e-8e32-3d2a92d15039": "ce3f47aa-6516-42c1-8cbe-7d9f9f3fe51c", "ff7e4c0c-eac9-4a0a-99d6-5121a3dddc82": "16639bfd-8648-44ca-a3a0-e2ba6a3a98c8", "e7244407-bbd7-414f-9c02-b7d3c51f4dcd": "623b56b5-c42d-498e-879c-067728194106", "9c9867a3-6bc3-4544-8032-094305ccc606": "ffce1b10-7adb-42a0-9334-4d3664ace063", "7a71c62a-768b-4849-b2ca-5a26fa8a2847": "268e1e4b-d8da-42ba-90c7-ac6017dabb9e", "83938eff-db4f-4cfe-b2e4-725387540be3": "f00cf63f-75fe-4ccd-aeef-91783ebd153b", "ad6bdffa-b1d6-4451-b6d6-f7c43bace4fe": "bfd1115a-3599-4761-a2df-20da99be5902", "052bf4f8-4827-464c-bc7d-c8d8e4697670": "2ce78b70-9965-4bef-afed-8005e9808f4a", "e6aed9e4-13ac-46ae-b02e-d6fd2d2cb428": "9b9a4941-3530-464c-bc90-233826c569de"}} \ No newline at end of file diff --git a/cloud/sam/scripts/chat_function/tools/config.py b/cloud/sam/scripts/chat_function/tools/config.py new file mode 100644 index 00000000..8414c5ad --- /dev/null +++ b/cloud/sam/scripts/chat_function/tools/config.py @@ -0,0 +1,5 @@ +import os + +DYNAMODB_TABLE_NAME = 'tetrisChat' +OPENAI_MODEL_NAME = "gpt-3.5-turbo-0613"#gpt-3.5-turbo-0613" +DYNAMODB_INDEX_NAME = 'user_id-char_name-index' \ No newline at end of file diff --git a/cloud/sam/scripts/chat_function/tools/response.py b/cloud/sam/scripts/chat_function/tools/response.py new file mode 100644 index 00000000..e6029e1b --- /dev/null +++ b/cloud/sam/scripts/chat_function/tools/response.py @@ -0,0 +1,28 @@ +import json + +class HttpResponse: + + @staticmethod + def generate_response(status_code, message): + return { + "statusCode": status_code, + "body": json.dumps({ + "message": message, + }), + } + + @classmethod + def success(cls, message): + return cls.generate_response(200, message) + + @classmethod + def redirect(cls, message): + return cls.generate_response(300, message) + + @classmethod + def client_error(cls, message): + return cls.generate_response(400, message) + + @classmethod + def server_error(cls, message): + return cls.generate_response(500, message) diff --git a/cloud/sam/scripts/chat_function/tools/utils.py b/cloud/sam/scripts/chat_function/tools/utils.py new file mode 100644 index 00000000..c71cfa12 --- /dev/null +++ b/cloud/sam/scripts/chat_function/tools/utils.py @@ -0,0 +1,137 @@ +import boto3 +import openai +import json +from tools.config import DYNAMODB_TABLE_NAME, DYNAMODB_INDEX_NAME, OPENAI_MODEL_NAME +from botocore.exceptions import ClientError +from boto3.dynamodb.conditions import Key +from role.role_tetris import TetrisIndexSearch + +# ドメイン駆動設計におけるリポジトリ部分 +class DynamoDBManager: + def __init__(self, table_name=DYNAMODB_TABLE_NAME, index_name=DYNAMODB_INDEX_NAME): + self.table_name = table_name + self.index_name = index_name + self.client = boto3.client('dynamodb') + self.resource = boto3.resource('dynamodb') + self.table = self.resource.Table(self.table_name) + + def get_max_conversation_id(self, user_id, char_name): + response = self.table.query( + IndexName=self.index_name, + KeyConditionExpression=Key('user_id').eq(user_id) & Key('char_name').eq(char_name), + ScanIndexForward=False + ) + items = response.get('Items', []) + max_order_id = max(item['order_id'] for item in items) if items else -1 + return max_order_id, items + + def delete_items_with_secondary_index(self, user_id, char_name): + dynamodb = boto3.resource('dynamodb') + table = dynamodb.Table(self.table_name) + + response = table.query( + IndexName=self.index_name, + KeyConditionExpression='user_id = :uid and char_name = :cname', + ExpressionAttributeValues={ + ':uid': user_id, + ':cname': char_name, + }, + ) + + primary_keys = [{'user_id': item['user_id'], 'order_id': item['order_id']} for item in response['Items']] + + for key in primary_keys: + print('delete_item:', key) + table.delete_item(Key=key) + + print(f'Deleted {len(primary_keys)} item(s) from {self.table_name}.') + + def store_conversation(self, user_id, char_name, max_order_id, role, content, name=None, function_call=None): + item = { + 'user_id': user_id, + 'order_id': (max_order_id + 1), + 'char_name': char_name, + 'role': role, + 'content': content + } + if name: + item['name'] = name + if function_call: + item['function_call'] = function_call + self.table.put_item(Item=item) + +class OpenAIManager: + def __init__(self, model_name=OPENAI_MODEL_NAME): + self.model_name = model_name + self.tetris_assistant = TetrisIndexSearch() + + @staticmethod + def get_secret(): + secret_name = "openai" + region_name = "ap-northeast-1" + session = boto3.session.Session() + client = session.client( + service_name='secretsmanager', + region_name=region_name + ) + try: + get_secret_value_response = client.get_secret_value( + SecretId=secret_name + ) + except ClientError as e: + raise e + + secret = get_secret_value_response['SecretString'] + key_value = json.loads(secret) + openai.api_key = key_value['openai'] + + def get_chat_response(self, messages): + return openai.ChatCompletion.create( + model=self.model_name, + messages=messages + ) + + def get_chat_response_func(self, messages, functions): + return openai.ChatCompletion.create( + model=self.model_name, + messages=messages, + functions=functions, + function_call="auto" + ) + + @staticmethod + def create_function_args(func_name, args): + function_call = { + "name": func_name, + "arguments": json.dumps(args) + } + return function_call + + def execute_function(self, func_name, **args): + # 定義された関数を実行 + if func_name == "search_tetris_index": + return self.tetris_assistant.search_tetris_index(**args) + else: + func = globals().get(func_name) + if func: + return func(**args) + else: + raise Exception(f"No function named {func_name} found.") + + + def execute_function_call(self, response_data): + # gptが定義した関数名や引数を取得する + call_data = response_data["message"]["function_call"] + func_name = call_data["name"] + args = eval(call_data["arguments"]) + print(f"func_name: {func_name}, args: {args},\n") + + function_response = self.execute_function(func_name, **args) + print(f"function_response: {function_response}") + + # 2回目のAPI実行のための関数の引数を作成 + function_args = self.create_function_args(func_name, args) + #print(f"function_args: {function_args}") + + return func_name, args, function_response, function_args + diff --git a/cloud/sam/template.yaml b/cloud/sam/template.yaml index cd71c7d5..f7d5d47a 100644 --- a/cloud/sam/template.yaml +++ b/cloud/sam/template.yaml @@ -240,7 +240,48 @@ Resources: Path: /trainings/{section} Method: get RestApiId: !Ref TetrisAPI - + + ChatFunction: + Type: AWS::Serverless::Function + Properties: + PackageType: Image + ImageUri: 132308390451.dkr.ecr.ap-northeast-1.amazonaws.com/chat + Timeout: 120 + MemorySize: 512 + Policies: + - AmazonDynamoDBFullAccess + - SecretsManagerReadWrite + Events: + ChatAPP: + Type: Api + Properties: + Path: /chat + Method: get + RestApiId: !Ref TetrisAPI + ChatAPPPost: + Type: Api + Properties: + Path: /chat + Method: post + RestApiId: !Ref TetrisAPI + ChatAPPPut: + Type: Api + Properties: + Path: /chat + Method: put + RestApiId: !Ref TetrisAPI + ChatAPPDelete: + Type: Api + Properties: + Path: /chat + Method: delete + RestApiId: !Ref TetrisAPI + Metadata: + Dockerfile: Dockerfile + DockerContext: ./scripts/chat_function + DockerTag: python3.9-v1 + + Layer: Type: AWS::Serverless::LayerVersion Properties: From 7db1729e215d89c95c3f087236a5856992ab5845 Mon Sep 17 00:00:00 2001 From: sota1111 Date: Mon, 28 Aug 2023 23:03:11 +0900 Subject: [PATCH 02/10] =?UTF-8?q?DynamoDB=E3=81=AE=E3=83=86=E3=83=BC?= =?UTF-8?q?=E3=83=96=E3=83=AB=E5=90=8D=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloud/sam/scripts/chat_function/tools/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/sam/scripts/chat_function/tools/config.py b/cloud/sam/scripts/chat_function/tools/config.py index 8414c5ad..df341b5d 100644 --- a/cloud/sam/scripts/chat_function/tools/config.py +++ b/cloud/sam/scripts/chat_function/tools/config.py @@ -1,5 +1,5 @@ import os -DYNAMODB_TABLE_NAME = 'tetrisChat' +DYNAMODB_TABLE_NAME = 'tetris_chat_log' OPENAI_MODEL_NAME = "gpt-3.5-turbo-0613"#gpt-3.5-turbo-0613" DYNAMODB_INDEX_NAME = 'user_id-char_name-index' \ No newline at end of file From 7019a6fed67801ebdc734a55d00cb282387ba9ba Mon Sep 17 00:00:00 2001 From: sota1111 Date: Mon, 28 Aug 2023 23:03:47 +0900 Subject: [PATCH 03/10] =?UTF-8?q?Secrets=20Manager=E3=81=AB=E7=99=BB?= =?UTF-8?q?=E9=8C=B2=E3=81=99=E3=82=8Bopenai=E3=81=AEkey=E3=81=AE=E5=90=8D?= =?UTF-8?q?=E5=89=8D=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloud/sam/scripts/chat_function/tools/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud/sam/scripts/chat_function/tools/utils.py b/cloud/sam/scripts/chat_function/tools/utils.py index c71cfa12..4ee719ba 100644 --- a/cloud/sam/scripts/chat_function/tools/utils.py +++ b/cloud/sam/scripts/chat_function/tools/utils.py @@ -67,7 +67,7 @@ def __init__(self, model_name=OPENAI_MODEL_NAME): @staticmethod def get_secret(): - secret_name = "openai" + secret_name = "openai-key" region_name = "ap-northeast-1" session = boto3.session.Session() client = session.client( @@ -83,7 +83,7 @@ def get_secret(): secret = get_secret_value_response['SecretString'] key_value = json.loads(secret) - openai.api_key = key_value['openai'] + openai.api_key = key_value['openai-key'] def get_chat_response(self, messages): return openai.ChatCompletion.create( From bfed94a2bc6f289f0b85702b8596879dbd6103f2 Mon Sep 17 00:00:00 2001 From: sota1111 Date: Mon, 28 Aug 2023 23:25:25 +0900 Subject: [PATCH 04/10] =?UTF-8?q?=E8=BE=9E=E6=9B=B8=E3=83=87=E3=83=BC?= =?UTF-8?q?=E3=82=BF=E3=81=AE=E5=9F=BA=E3=81=AB=E3=81=AA=E3=82=8B=E3=83=87?= =?UTF-8?q?=E3=83=BC=E3=82=BF=E3=81=AE=E5=89=8A=E9=99=A4=20=E8=BE=9E?= =?UTF-8?q?=E6=9B=B8=E3=83=87=E3=83=BC=E3=82=BF=E3=81=AE=E4=BD=9C=E6=88=90?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E3=82=92local.py=E3=81=AB=E3=82=B3=E3=83=A1?= =?UTF-8?q?=E3=83=B3=E3=83=88=E8=BF=BD=E8=A8=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloud/sam/scripts/chat_function/data/FAQ.md | 170 --------- .../scripts/chat_function/data/GameStatus.md | 218 ----------- cloud/sam/scripts/chat_function/data/ai.md | 207 ----------- cloud/sam/scripts/chat_function/data/art.md | 228 ------------ .../chat_function/data/block_controller.md | 143 ------- .../data/block_controller_sample.md | 78 ---- .../chat_function/data/board_manager.md | 250 ------------- .../sam/scripts/chat_function/data/docker.md | 75 ---- .../chat_function/data/game_manager.md | 131 ------- .../scripts/chat_function/data/install_mac.md | 39 -- .../chat_function/data/install_ubuntu.md | 25 -- .../chat_function/data/install_windows.md | 39 -- .../data/install_windows_powershell.md | 205 ---------- .../chat_function/data/install_windows_wsl.md | 81 ---- .../chat_function/data/reference_score.md | 13 - .../sam/scripts/chat_function/data/tetris.md | 350 ------------------ cloud/sam/scripts/chat_function/local.py | 4 + 17 files changed, 4 insertions(+), 2252 deletions(-) delete mode 100644 cloud/sam/scripts/chat_function/data/FAQ.md delete mode 100644 cloud/sam/scripts/chat_function/data/GameStatus.md delete mode 100644 cloud/sam/scripts/chat_function/data/ai.md delete mode 100644 cloud/sam/scripts/chat_function/data/art.md delete mode 100644 cloud/sam/scripts/chat_function/data/block_controller.md delete mode 100644 cloud/sam/scripts/chat_function/data/block_controller_sample.md delete mode 100644 cloud/sam/scripts/chat_function/data/board_manager.md delete mode 100644 cloud/sam/scripts/chat_function/data/docker.md delete mode 100644 cloud/sam/scripts/chat_function/data/game_manager.md delete mode 100644 cloud/sam/scripts/chat_function/data/install_mac.md delete mode 100644 cloud/sam/scripts/chat_function/data/install_ubuntu.md delete mode 100644 cloud/sam/scripts/chat_function/data/install_windows.md delete mode 100644 cloud/sam/scripts/chat_function/data/install_windows_powershell.md delete mode 100644 cloud/sam/scripts/chat_function/data/install_windows_wsl.md delete mode 100644 cloud/sam/scripts/chat_function/data/reference_score.md delete mode 100644 cloud/sam/scripts/chat_function/data/tetris.md diff --git a/cloud/sam/scripts/chat_function/data/FAQ.md b/cloud/sam/scripts/chat_function/data/FAQ.md deleted file mode 100644 index 3877223a..00000000 --- a/cloud/sam/scripts/chat_function/data/FAQ.md +++ /dev/null @@ -1,170 +0,0 @@ -# FAQ - -## level1ではブロックの順番は固定とのことだが、具体的にはどんな順番になっているのか -`level1(ブロックの順番固定)`の場合は、[ブロックのindex値](https://github.com/seigot/tetris/blob/master/doc/files/block_controller.md#ブロック情報)が`1→2→3→4→5→6→7→1→...`の順番に出現します。 - -## python実行環境について - -| 環境 | 環境構築手順 | -| ---- | ---- | -| ubuntu18.04,20.04 | [こちら](https://github.com/seigot/tetris/blob/master/doc/files/install_ubuntu.md) | -| Mac | [こちら](https://github.com/seigot/tetris/blob/master/doc/files/install_mac.md) | -| Windows+powershell | [こちら](https://github.com/seigot/tetris/blob/master/doc/files/install_windows_powershell.md) | -| Windows+Docker | [こちら](https://github.com/seigot/tetris/blob/master/docker/README.md) | -| JetsonNano | (動作未確認だがおそらく動くはず) | -| RaspberryPi | (動作未確認だがおそらく動くはず) | -| Windows+GoogleChrome+ubuntu-free-online-linux | [chrome webstore URL](https://chrome.google.com/webstore/detail/ubuntu-free-online-linux/pmaonbjcobmgkemldgcedmpbmmncpbgi?hl=ja) | -| AWS | EC2 4CPU 8GBメモリ 20GBストレージ、GPU環境で動作確認済(課金に注意) | - -## `Windows+GoogleChrome+ubuntu-free-online-linux`の環境構築について - ->google chrome上でubuntu serverを実行する
-・[google chrome用のubuntu online server拡張プラグイン](https://chrome.google.com/webstore/detail/ubuntu-free-online-linux/pmaonbjcobmgkemldgcedmpbmmncpbgi)をインストール
-・選択肢のうち、"Xubuntu"を選択(ubuntu18.04かつ軽量なものが良さそう)
-・serverにログインして以下を実施
- ・Desktop上で右クリックし"Open Terminal Here"を選択
- ・terminal上で以下コマンドを実行
-``` -sudo apt install −y git -git clone http://github.com/seigot/tetris -cd tetris game -bash doc/files/install_ubuntu.sh -``` - ---> installが成功すればOK - -``` -python start.py -``` - ---> テトリスが表示されればOK - -## `sudo apt install`時に`E: ロック /var/lib/dpkg/lock-frontend が取得できませんでした - open (11: リソースが一時的に利用できません)`のエラーが出る - -[こちらのサイト](https://marginalia.hatenablog.com/entry/2019/07/03/133854)参照
-以下で解決するはず - -``` -$ sudo rm /var/lib/apt/lists/lock -$ sudo rm /var/lib/dpkg/lock -$ sudo rm /var/lib/dpkg/lock-frontend -``` - -## サンプルプログラム(`python start.py -s y`で動くやつ)の中身はどうなってるのか -[こちら](https://github.com/seigot/tetris/blob/master/doc/files/block_controller_sample.md)で解説 - -## スコアアタック時の動作PC環境について - -2021/7時点で以下を想定しています。
-PC: [ZBOX Magnux en52060](https://www.zotac.com/jp/product/mini_pcs/magnus-en52060v#spec)
- -``` -- OS : ubuntu18.04 -- CPU: Intel Core i5 -- Memory: 16GB -- NVIDIA GeForce RTX 2060 -``` - -``` -- pythonバージョンは以下 -$ python3 --version -Python 3.6.9 -$ python3 -c 'import torch; print(torch.__version__) ' -1.4.0 -``` - -ソフト環境は以下スクリプトで構築しています。(散らかっててすみません)
-[auto_setup_for_Linux.sh](https://github.com/seigot/tetris/blob/master/docker/auto_setup_for_Linux.sh)
- -## Windows Docker install時のトラブルシューティング - -``` -①BIOSのCPU関連設定 - Docker for Windowsをインストールして起動すると、 - 「An error occurred Hardware assisted virtualization and data execution protection -  must be enabled in the BIOS.」と出てくる。 - ⇒ 以下サイトの「1. BIOS設定の確認」をすることでエラー解消 -   https://qiita.com/LemonmanNo39/items/b1b104e7fb609464727b - -②WSLのインストール - Dockerを起動したところ、①は解消されたが以下のメッセージが表示される。 - 「WSL2 installation is incomplete」 - ⇒ 以下を参考にしてWSL2をインストールする。 -   https://docs.microsoft.com/ja-jp/windows/wsl/install-win10 -   ※ Docker for Windowsをインストールするときに一緒にWSLも入れられたっぽい - -③ Dockerイメージの取得途中で死ぬ -自宅のネットワーク回線が貧弱なのか、下記コマンドでイメージを持ってくる途中で止まる。 -docker run -p 6080:80 --shm-size=512m seigott/tetris_docker - -⇒ Docker for Windowsを起動して、ウィンドウ上部の"歯車(設定)ボタン"、"Docker Engine"をクリック。 -  configファイルに、「"max-concurrent-download":1」を追記。 - ※これでデフォルトの3並列ダウンロードが直列になる - -④ Dockerイメージの取得途中で、「docker: unauthorized authentication required」と出て死ぬ -⇒ windows power shellを管理者権限で実行してコマンドを叩くといけたっぽい。 -``` - -## pytorch v1.4 インストール方法 - -ubuntu18.04環境では、以下のようにしてインストールできることを確認済
-[pytorch v1.4 インストール済のDocker環境(お試し版)](https://github.com/seigot/tetris/blob/master/docker/README.md)を作成しました。追加で必要なものがあればDockerfileを更新して下さい。 - -``` -function install_torch(){ - ### pytorch from pip image (v1.4) - sudo apt-get install -y libopenblas-base libopenmpi-dev - sudo apt-get -y install libjpeg-dev zlib1g-dev libpython3-dev libavcodec-dev libavformat-dev libswscale-dev - - #python -m pip install https://download.pytorch.org/whl/cu101/torch-1.4.0-cp27-cp27mu-linux_x86_64.whl - python -m pip install torchvision==0.2.2 - pip3 install torch==1.4.0 torchvision==0.2.2 - pip install 'pillow<7' -} -``` -## Dockerはコンテナ終了の度にデータが消えて手間が掛かるので何とかしたい -[WSL(Windows Subsystem for Linux)を使う場合](https://github.com/seigot/tetris/blob/master/doc/files/install_windows_wsl.md)の手順を用意しました。
-(kyadさんありがとうございます)
-
-追記:cygwin環境構築手順
-[isshy-youさんによる`Cygwin Install for tetris`構築手順](https://github.com/isshy-you/tetris_game/wiki/Cygwin-Install-for-tetris_game)
-(isshy-youさんありがとうございます) - -## pythonコマンドが見つからない旨のエラーが出る場合 - -ubuntu20.04等では、`python3`があるにも関わらず`python`コマンドがない - -``` -$ python start.py -CompletedProcess(args='python --version', returncode=127, stderr='/bin/sh: 1: python: not found\n') -/bin/sh: 1: python: not found -error: subprocess failed. -``` - -``` -$ python --version - -Command 'python' not found, did you mean: - - command 'python3' from deb python3 - command 'python' from deb python-is-python3 -``` - -ログ記載の通り`python-is-python3`をインストールすればOK - -``` -sudo apt install -y python-is-python3 -``` - -## スコア評価用サーバについて - -以下を作成してみました。 - -[https://github.com/seigot/tetris_score_server](https://github.com/seigot/tetris_score_server) - -## `python start.py`実行時に`TypeError: arguments did not match any overloaded call:`エラーが出る - -以下issueで対策中
-> [`python start.py`実行時に`TypeError: arguments did not match any overloaded call:`エラーが出る](https://github.com/seigot/tetris/issues/5) - -## 以下、順次追記 diff --git a/cloud/sam/scripts/chat_function/data/GameStatus.md b/cloud/sam/scripts/chat_function/data/GameStatus.md deleted file mode 100644 index 5023a8cf..00000000 --- a/cloud/sam/scripts/chat_function/data/GameStatus.md +++ /dev/null @@ -1,218 +0,0 @@ -## `GameStatus`データ構造 - -[`block_controller.py`](https://github.com/seigot/tetris/blob/master/block_controller.py)内の`def GetNextMove(self, nextMove, GameStatus)`で扱う`GameStatus`は辞書型データです。
-ブロックの動きを決定するための参考データとして以下を格納しています。 - -``` -* field_info : フィールド情報 -* block_info : ブロック情報 -* judge_info : 審判情報 -* debug_info : デバッグ情報 -``` - -以下、各情報の詳細について記載します。 - -## field_info - -以下を格納しています。 - -``` -* 'backboard': フィールドのデータ -* 'height': フィールドの高さ -* 'width' : フィールドの幅 -* 'withblock' : フィールド+ブロックの位置を合わせたデータ -``` - -具体的には以下のようなデータとなっています。実際に出力してみると分かり易いと思います。 - -``` -'field_info': {'backboard': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - 'height': 22, - 'width': 10, - 'withblock': [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}, -``` - -## block_info - -以下を格納しています。 - -``` -'currentDirection': 現在のブロックが初期形状から何回回転した形状か -'currentShape': { - 'class': 現在のブロックを管理しているクラスのアドレス - 'direction_range': 現在のブロックが回転できる回数 - 'index': 現在のブロックのindex値 -}, -'currentX': 現在のブロック操作の基準点(x座標) -'currentY': 現在のブロック操作の基準点(y座標) -'nextShape': { - 'class': 次のブロックを管理しているクラスのアドレス - 'direction_range': 次のブロックが回転できる回数 - 'index' : 次のブロックのindex値 -} -``` - -具体的には以下のようなデータとなっています。実際に出力してみると分かり易いと思います。 - -``` -'block_info': {'currentDirection': 0, - 'currentShape': {'class': , - 'direction_range': (0, 1), - 'index': 1}, - 'currentX': 5, - 'currentY': 1, - 'nextShape': {'class': , - 'direction_range': (0, 1, 2, - 3), - 'index': 2}}, -``` - -## debug_info - -以下を格納しています。
-デバック用に準備している情報であり、必ずしも使う必要はないかもしれないです。 - -``` -'dropdownscore': 落下により獲得したスコアの合計 -'line_score': { lineを消した時などに獲得できるスコア - 'line1': 1line消した時の獲得スコア - 'line2': 2line消した時の獲得スコア - 'line3': 3line消した時の獲得スコア - 'line4': 4line消した時の獲得スコア - 'gameover': game overになった時の獲得スコア -}, -'line_score_stat': 消したlineの統計データ -'linescore': lineを消して獲得したスコアの合計 -'shape_info': { - 'shapeI': { - 'color': ShapeIの色 - 'index': ShapeIのindex - }, - 'shapeJ': { - 'color': ShapeJの色 - 'index': ShapeJのindex - }, - 'shapeL': { - 'color': ShapeLの色 - 'index': ShapeLのindex - }, - 'shapeNone': { - 'color': ShapeNone(ブロックがない状態)の色 - 'index': ShapeNone(ブロックがない状態)のindex - }, - 'shapeO': { - 'color': ShapeOの色 - 'index': ShapeOのindex - }, - 'shapeS': { - 'color': ShapeSの色 - 'index': ShapeSのindex - }, - 'shapeT': { - 'color': ShapeTの色 - 'index': ShapeTのindex - }, - 'shapeZ': { - 'color': ShapeZの色 - 'index': ShapeZのindex - } -}, -'shape_info_stat': ゲーム開始時から現時点までに出現したブロックの統計情報 -``` - -具体的には以下のようなデータとなっています。実際に出力してみると分かり易いと思います。 - -``` - 'debug_info': {'dropdownscore': 0, - 'line_score': {'line1': 100, - 'line2': 300, - 'line3': 700, - 'line4': 1300, - 'gameover': -500}, - 'line_score_stat': [0, 0, 0, 0], - 'linescore': 0, - 'shape_info': {'shapeI': {'color': 'red', - 'index': 1}, - 'shapeJ': {'color': 'purple', - 'index': 3}, - 'shapeL': {'color': 'green', - 'index': 2}, - 'shapeNone': {'color': 'none', - 'index': 0}, - 'shapeO': {'color': 'pink', - 'index': 5}, - 'shapeS': {'color': 'blue', - 'index': 6}, - 'shapeT': {'color': 'gold', - 'index': 4}, - 'shapeZ': {'color': 'yellow', - 'index': 7}}, - 'shape_info_stat': [0, 1, 0, 0, 0, 0, 0, 0]}, -``` - -## judge_info - -以下を格納しています。 - -``` -'block_index': 現在のブロックがゲーム開始時から何番目に登場したブロックか -'elapsed_time': ゲーム開始時からの経過時間(s) -'game_time': 制限時間(s) -'gameover_count': ゲーム開始時から現在までにゲームオーバーになった回数 -'line': ゲーム開始時から現在までに消したラインの数 -'score': ゲーム開始時から現在までに獲得した合計スコア -``` - -具体的には以下のようなデータとなっています。実際に出力してみると分かり易いと思います。 - -``` - 'judge_info': {'block_index': 1, - 'elapsed_time': 1.083, - 'game_time': 180, - 'gameover_count': 0, - 'line': 0, - 'score': 0}} - ``` - diff --git a/cloud/sam/scripts/chat_function/data/ai.md b/cloud/sam/scripts/chat_function/data/ai.md deleted file mode 100644 index 4ceca12c..00000000 --- a/cloud/sam/scripts/chat_function/data/ai.md +++ /dev/null @@ -1,207 +0,0 @@ -# AIについて(準備中) - -# 1.環境準備 -- sample のコードでは [pytorch](https://pytorch.org/get-started/locally/) を使ってAIのニューラルネットワークを構築します。 -- pytorch については[こちら](https://pytorch.org/get-started/locally/)を参考にし、環境に合わせてインストールしてください。 - -### 例) WindowsのCPU動作用をインストールする場合 -``` -pip3 install torch torchvision torchaudio -``` -### 例) MacのCPU実行用をインストールする場合 -``` -pip3 install torch torchvision torchaudio -``` - -# 2.学習と推論 - -* サンプルとして下記の2つのニューラルネットワークが -[こちら](../../game_manager/machine_learning/model/deepqnet.py) -のコードに定義されています。 - - * sample: DQN(Deep Q Network)を使った学習・推論 - * sample2: MLP (Multilayer perceptron)を使った学習・推論 - - -## 2.1学習の実行 -- DQN(Deep Q Network)を使う場合 - -``` -python start.py -m train_sample -d 1 -l 2 -t -1 -``` - -- MLP (Multilayer perceptron)を使う場合 -``` -python start.py -m train_sample2 -d 1 -l 2 -t -1 -``` - -## 2.2推論の実行 - -- DQN(Deep Q Network)を使う場合 -``` -python start.py -m predict_sample -l 2 --predict_weight weight/DQN/sample_weight.pt -``` - -- MLP (Multilayer perceptron)を使う場合 -``` -python start.py -m predict_sample2 -l 2 --predict_weight weight/MLP/sample_weight.pt -``` - -## 2.3 再学習/追加学習(Fine Tuning) の実行 -- 学習済みの重みを初期状態として学習する場合は下記の手順で configのyamlファイルを設定する。 -1. ft_weight に学習済み重みファイルのパスを設定 -2. finetune を False → True に変更 -3. initial_epsilon を小さくする(0より大きい1以下の値) - -- initial_epsilon は ε-greedy法というアルゴリズムのパラメータになり、学習初期ににどの程度ランダムな行動を取るかを設定します。追加学習の場合は、小さい値を設定することで、学習済みのモデルを有効活用できます。 -- ε-greedy法については下記のサイトなどが参考になります。 - - [https://horomary.hatenablog.com/entry/2021/01/26/233351](https://horomary.hatenablog.com/entry/2021/01/26/233351) - -## 2.4 -m オプションについて - - 学習/推論の切り替えおよびサンプル/本番コードの切り替には "-m" オプションを使用します。 - -**※ sampleコードは基本的に変更せず、[本番用コード](../../game_manager/machine_learning/block_controller_train.py )で開発してください** - -- "-m" オプションに対して下記の引数を渡すことで書くモードを切り替えられる。 - -|オプション名|説明| -| ---- | ---- | -| train_sample| [サンプルコード1](../../game_manager/machine_learning/block_controller_train_sample.py)を用いてDQNによる学習を行う| -| train_sample2| [サンプルコード2](../../game_manager/machine_learning/block_controller_train_sample2.py)を用いてMLPによる学習を行う| -| train| [本番用コード](../../game_manager/machine_learning/block_controller_train.py ) を用いて学習を行う| -| predict_sample| [サンプルコード1](../../game_manager/machine_learning/block_controller_train_sample.py)を用いてDQNによる推論を行う。
実行時に--predict_weight オプションにより重みのパスを選択する必要があります。| -| predict_sample2| [サンプルコード2](../../game_manager/machine_learning/block_controller_train_sample2.py)を用いてMLPによる学習を行う 
実行時に--predict_weight オプションにより重みのパスを選択する必要があります。| -| predict| [本番用コード](../../game_manager/machine_learning/block_controller_train.py ) を用いて学習を行う 
実行時に--predict_weight オプションにより重みのパスを選択する必要があります。| - - -## 2.5 AI関連のその他オプションについて -- AI学習関連のオプションは下記 - -|オプション名|引数|説明| train or predict| -| ---- | ---- | ---- | ---- | -| *--train_yaml* | 学習に用いるyamlファイルのパス|学習に用いるyamlファイルを選択する。|train| -| *--predict_weight* | 推論に用いるweightファイルのパス|推論に用いるweightファイルを選択する|predict| - - -# 3. 強化学習について -[サンプルコード1](../../game_manager/machine_learning/block_controller_train_sample.py)  および [サンプルコード2](../../game_manager/machine_learning/block_controller_train_sample2.py) では強化学習と呼ばれる方法でテトリスをプレイするための最適なパラメータを学習します。 - -![Screenshot](../../doc/pics/rainforcement_learning.png) - - -# 4. パラメータについて -## 4.1 yamlファイルについて -- サンプルコードではyaml ファイルによってハイパーパラメータ(パラメータを学習するためのパラメータ)を設定する。 -- サンプル用yaml ファイルのフォーマットは下記 - -
共通 - -|パラメータ名|説明|型|train or predict|default| -| ---- | ---- | ---- | ---- | ---- | -|**common** |- |- |- |-| -|ft_weight|ファインチューニング(初期値として学習済み
の重みを用いる学習)に用いる重みファイルのパス|str|train|None| -|log_path| tensorboardのログ出力フォルダ名|str|共通|tensorboard| -
- -
model関連 - -|パラメータ名|説明|型|train or predict|default| -| ---- | ---- | ---- | ---- | ---- | -|**model** |- |- |- |-| -|name|使用するAIモデル名|str|共通|DQN| -|finetune|ファインチューニングするかどうかのフラグ|bool|train|False| -|**state** |- |- |- |-| -|dim|状態の次元数|int|共通|4| -
- -
学習 - -|パラメータ名|説明|型|train or predict|default| -| ---- | ---- | ---- | ---- | ---- | -|**train** |- |- |- |-| -|optimizer|最適化関数(サンプルではAdamまたはSGDが使用可能)|str|train|Adam| -|lr|学習率|float|train|1.0e-3| -|lr_gamma|更新率(optimizerがSGDの時のみ使用)|float|train|0.1| -|lr_momentum|モーメンタム(optimizerがSGDの時のみ使用)|float|train|0.99| -|lr_step_size|ステップサイズ(optimizerがSGDの時のみ使用)|int|train|1000| -|num_epoch|エポック数(学習するイテレーション数)|int|train|5000| -|num_decay_epochs|ε-greedyのεを最小にするエポック数
(ここからランダム性を下げる。)|int|train|3000| -|initial_epsilon|ε-greedyのεの初期値|float|train|1.0| -|final_epsilon|ε-greedyのεの最小値|float|train|1.0e-3| -|batch_size|バッチサイズ|int|train|512| -|gamma|割引率|float|train|0.99| -|max_penalty|ペナルティの最大値|float|train|-1| -|target_net|TargetNetworkの使用フラグ|bool|train|True| -|target_copy_intarval|TargetNetworkにコピーするインターバル|int|train|500| -|replay_memory_size|Experience replayのreplay bufferのサイズ|int|train|30000| -|double_dqn|Double DQNの使用フラグ|bool|train|True| -|reward_clipping|Reward clippingの使用フラグ|bool|train|True| -|prioritized_replay|Prioritized Experience Replayの使用フラグ|bool|train|True| -|multi_step_learning|Multi step learningの使用フラグ|bool|train|True| -|multi_step_num|Multi step learningのステップ数|int|train|0,100,300,700,1300,-1300
 左から 0列崩し,1列崩し,2列崩し,3列崩し,4列崩し,ゲームオーバー)| -|reward_list|点数に応じた報酬の設定値
(0列崩し,1列崩し,2列崩し,3列崩し,4列崩し,ゲームオーバーの順)|int|train|3| -|reward_weight|点数以外で与えられるペナルティの重み
(隣接する行との高さ差分,最大の高さ,穴の数 の順)
0以上の値が必須|float|train|0.01,0.0,0.01
(左から 隣接する行との高さ差分,最大の高さ,穴の数 )| -
- -## 4.2 パラメータ調整例(得たい効果とパラメータの関係例) -- 下記にパラメータ調整の方針例を記載する -- それぞれの効果が常に得られるとは限らないので実験を繰り返しながら、最適な値を探してみてください。 -1. ブロックを積み上げる - - reward_listの3列崩し、4列崩しの値を大きくする - - reward_weightの max_heightを小さくする - -2. ゲームオーバの発生を防ぐ(ブロックを積み上げ量を減らす) - - reward_listの3列崩し、4列崩しの値を小さくする - - reward_weightの max_heightを大きくする - -3. 過去の盤面からの影響を小さくする - - gamma(割引率)を大きくする。 - -4. 学習を安定させる - - reward_clipping を Trueにする。 - - target_net を Trueにする - - double_DQN を Trueにする。 - -5. 学習を早くする。(学習するモデルのパラメータを減らす) - - モデルのレイヤ数、カーネルサイズを減らす - - MLPを使用する - -6. 学習を早くする。(効果の高いデータを効率的に学習に使用する) - - prioritized_replay を Trueにする。 - - lr(学習率)を大きくする。(大きすぎると収束しなくなるので注意) - - batch_size を大きくする (学習に使用するメモリ量が大きくなるので注意) - - replay_memory_size (学習に使用するメモリ量が大きくなるので注意) - - -# 5.チュートリアルの実行 -- サンプル用のコードを試すための[チュートリアル用Jupyter-notebook]()../../game_manager/machine_learning/) -を用意しているので、コード理解のためにお使いください。 - -- Jupyter-notebookか下記の手順で使用できます. -- 1. Jupyter-notebookのインストール -``` -pip install jupyter -``` - -- 2. Jupyter-notebookの起動 -``` -jupyter notebook -``` -下記のような画面が、ブラウザで開かれるので -game_manager > machine_learning > model > tutorial -の準備進み、***.ipynb ファイルを開いてください。 -![Screenshot](../../doc/pics/jupyter-sample.png) - -- Jupyter-notebook のセルは Shit+Enter key で実行できます - -- Jupyter-notebook の使い方は下記のサイトなどが参考になります。 -[https://qiita.com/takuyanin/items/8bf396e7b6b051670147](https://qiita.com/takuyanin/items/8bf396e7b6b051670147) - -- venv などの仮想環境を用いている場合は下記のサイトなどが参考になります。 -   -[https://qiita.com/smiler5617/items/e0d9b3034d79457cc253](https://qiita.com/smiler5617/items/e0d9b3034d79457cc253) - -# 6. さらなる強化に向けて -- 第3回での cookie4869 の強化資料を下記で共有いたします。 - -![AI強化資料](../pics/20220920_Tetris_AI.pdf) diff --git a/cloud/sam/scripts/chat_function/data/art.md b/cloud/sam/scripts/chat_function/data/art.md deleted file mode 100644 index 7b5004ca..00000000 --- a/cloud/sam/scripts/chat_function/data/art.md +++ /dev/null @@ -1,228 +0,0 @@ -# artについて - -本ドキュメントではテトリスアートの取り組みについて記載する - -# 概要 - -通常、テトリスは上から落ちてくるブロック(テトリミノ)を操作して、横列を埋めて消していくようにして遊ぶ。 -一方、テトリスアートはブロックでフィールドに模様を描くことを目的とする。(ブロックを消すことを必ずしも目的としない) -詳しくは"テトリスアート"でgoogle検索をしてみて下さい。 - -# 取り組み方 - -1.まず、ブロックでフィールドに描きたい模様をイメージする。 -2.次に、模様がテトリス上で実現可能かどうかを検討する。(作図などがお勧めです) -3.実現可能であればブロックを操作して模様を作成する。 - -3.によりブロックを操作する場合、後述するconfigファイルを使い各ブロックの色や出現順序(index)などを調整できるようにしている。 - -# サンプルコード - -`python start.py`実行時に以下オプションを指定するとサンプルコードが実行される -[youtube-link: tetris art sample](https://www.youtube.com/watch?v=Seh6g9_nL6o) - -`1:onigiri` - -``` -python start.py -l1 -m art --art_config_filepath config/art/art_config_sample1.json -``` - -![Screenshot](../pics/art_sample_onigiri.png) - -`2:manji` - -``` -python start.py -l1 -m art --art_config_filepath config/art/art_config_sample2.json -``` - -![Screenshot](../pics/art_sample_manji.png) - -`3:cartoon charactor` - -``` -python start.py -l1 -m art --art_config_filepath config/art/art_config_sample3.json -``` - -![Screenshot](../pics/art_sample_cartoon.png) - -other sample - -| name | --art_config_filepath | note | -| ---- | ---- | ---- | -| 4:heart | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample4.json | - | -| 5:hamburger_shop | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample5.json | - | -| 6:parking | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample6.json | - | -| 7:team rocket | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample7.json | - | -| 8:happy_new_year_2023 | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample8.json | - | -| 9:taka | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample9.json | - | -| ... | - | - | - -contribution - -| name | --art_config_filepath | thanks | -| ---- | ---- | ---- | -| mario | python start.py -l1 -m art --art_config_filepath config/art/art_config_sample_tanaka_2.json | @tanaken | -| ... | - | - | - -# configファイルの説明 - -テトリスアートを作成し易くするために各ブロックの色や出現順序(index)などをconfigファイルで調整できるようにしている。 -以下はconfigファイルの説明である。 - -art用configファイルサンプル -[config/art/art_config_sample_default.json](https://github.com/seigot/tetris/blob/master/config/art/art_config_sample_default.json) - -``` -{ - // 各ブロックの色を調整する。色についてはカラーコードを参照下さい。 - "color": { - "shapeI": "0xCC6666", - "shapeL": "0x66CC66", - "shapeJ": "0x6666CC", - "shapeT": "0xCCCC66", - "shapeO": "0xCC66CC", - "shapeS": "0x66CCCC", - "shapeZ": "0xDAAA00" - }, - // 各ブロックの出現順序(index)/direction/x/yを調整する。 - // 行を追加することが可能であり、追加すると記載に応じたブロックが出現する。 - "block_order": [ - [1,0,0,1], - [2,0,0,1], - [3,0,0,1], - [4,0,0,1], - [5,0,0,1], - [6,0,0,1], - [7,0,0,1] - ] -} -``` - -ブロックの色については以下のカラーコードを参考にしてください。 - -> [色の名前とカラーコードが一目でわかるWEB色見本 原色大辞典 - HTMLカラーコード](https://www.colordic.org/) - -各ブロックの出現順序(index)/direction/x/yについては以下を参考にしてください。 - -> [ブロック操作用プログラムについて](./block_controller.md) - -# 実行方法 - -以下のように`-m art`,`--art_config_filepath`によりモード及びconfigファイルを指定する。 - -``` -# "art_config_sample.json"を指定して実行 -python start.py -l1 -m art --art_config_filepath config/art/art_config_sample.json - -# 落下速度を早くする場合は"-d500"を加えて実行 -python start.py -l1 -m art --art_config_filepath config/art/art_config_sample.json -d500 -``` - -自作したart用configファイル(`xxx.json`)を作成する場合は以下のようにファイルコピーして使用してください。 - -``` -# 事前にサンプルをコピーしておく(art_config_sample.json --> xxx.json) -cp config/art/art_config_sample.json config/art/xxx.json -# 実行 -python start.py -l1 -m art --art_config_filepath config/art/xxx.json -``` - - -# 作成アルゴリズムの例 -#### ◆2ドットプリンター方式 -横10マスのフィールドにテトリスミノを置いた後に残るブロックの個数は 4n-10m 個です。 -そのためテトリスアートを 4n-10m 個のドットの組み合わせに分解することで楽に作ることができます。 -汎用性が高いのは2ドット残し(32ブロック:n=8, m=3 や 52ブロック:n=13, m=5 など)。 -アートには1行あたり最大9個のドットを置けます。 -そのため基本的に各行を 2\*4 + 1ドットに分解し、余った1同士で2ドットを構成することを目指します。 -``` -2ドットを同じ行に残す場合、その組み合わせは恐らく2205通り(x座標10*9÷2、shape7*7)。 -2ドットを違う行に残す場合、その組み合わせは恐らく4900通り(x座標10*10、shape7*7)。 -アートを構成する2ドットを残せる出現順序 [index,direction,x,y] をあらかじめ用意すれば、config作成の自動化が可能になります。 -``` - - -**Step1:任意の2ドットを残す出現順序をまとめる** -`art_lib.py`: -> [https://github.com/mattshamrock/tetris/blob/art/art_lib.py](https://github.com/mattshamrock/tetris/blob/art/art_lib.py) -xs_0000 ← 同じ行に残す場合。例えば 'xs_5294'なら、x=5にshapeindex=2(Lミノ)、x=9にshapeindex=4(Tミノ)が残る置き方。 -xs_00_00 ← 違う行に残す場合。前半が1行目のx座標とshapeindex、後半が2行目のx座標とshapeindex。 -未発見の場合は False と記載 - -``` -art_lib.pyの現状: -【2023/3/E時点】 - ・'xs_0000'のうち32ブロック使用で実現可能なもの:全探索済み; 後述 - ・'xs_0000'のうち52ブロック以上使用で実現可能なもの:手作業。不完全 - ・'xs_00_00'のうち見つけたもの:手作業。とても不完全 -``` - -`art_lib.py`用の探索アルゴリズム: -> [https://github.com/mattshamrock/tetris/blob/art/artlib_search_32.py](https://github.com/mattshamrock/tetris/blob/art/artlib_search_32.py) -各xs_0000について、32ドット(8ミノ)の出現順序をシミュレートし、指定の2ドットのみが残るかを判定します。 -枝切りをすることで探索時間を減らそうとしています。手元PCでは36時間で半分の約1200通りが出力できます。 -後述の「反転」と組み合わせると約36時間で完了します。 - -`art_lib.py`用の反転アルゴリズム: -> [https://github.com/mattshamrock/tetris/blob/art/artlib_reverse.py](https://github.com/mattshamrock/tetris/blob/art/artlib_reverse.py) -横10マスのテトリスはすべての配置を左右反転させても成り立ちます。 -探索でart_lib.pyを埋めていく際、結果が出た出現順序を反転させれば探索のみで埋める約半分の時間で完了できるはずです。 -注意…基準点ズレの調整が必要な組み合わせが存在します。(例:shape:Sの形状:1 の反転とshape:Zの形状:1 は基準点が1マス違う) - - - - -**Step2:ドットアートを描く** -現状は手作業です -   - - -**Step3:ドットアートを数値に変換する** -ブロックのindex値に変換します。 -Step4の入力に合わせて文字数=10のstrに変換しています。 -空白=0です。 -現状はexcelで作業しています -   - -**Step4:art_lib.pyにある実現可能な2ドットの組み合わせを探索する** -`art_lib.py`の組み合わせ探索アルゴリズム: -> [https://github.com/mattshamrock/tetris/blob/art/create_art.py](https://github.com/mattshamrock/tetris/blob/art/create_art.py) -10個のindex値を2ドットの組み合わせに分解します。 -art_lib.pyでは'xs_0000'の出現順序が未発見の場合にFalseを返すことを利用して、実現可能な2ドットの組み合わせを探索できます。 -1行に奇数個のドット(空白を除く)がある場合、余ったドットのx座標とindex値も返します。これが'xs_00_00'の前半か後半のいずれかになります。 - -  - -**Step5:Step4の結果を調整する** -・'xs_00_00' は余りとして返された情報を基に自力で発見し、`art_lib.py`に追加する必要があります。 -・余りとして返るドットのみで'xs_00_00'が構成されることを前提にしています。そのため各行のドット数(空白を除く)の偶奇によっては成立しません。 -・'xs_0000' において、すぐ下のマスが空白の場合に、そこにハマる形で意図しない結果になる場合があります。左右のマスにブロックがあれば引っ掛かるため回避可能な可能性が高く、その場合は順番を変更することで解決できます。 -   - -**Step6:2ドットの組み合わせをconfigファイルの出現順序に変換する** -Step4-5で得られた 'xs_0000' と 'xs_00_00' の羅列を`art_lib.py`の`artdict`のキーとして利用し、出力します。 -現状は余計な二重括弧 [[]] が入ってきてしまいます。置換等で取り除きます。 -各出力の最後のカンマ , が不足しています。二重括弧と合わせて置換で対応します。 -   - -**Step7:configファイルに転記する** -転記すればOK。 -色の調整は手作業です。 -   - -**今後に向けて:** -・`art_lib.py`の抜けている部分を埋める。52ブロック(13手)以上を効率的に探索する。 -・`art_lib.py`の抜けている部分を埋める。2行に分かれるブロックを効率的に探索する。32マスを8つに分割した結果がテトリスミノの形になるか判定する、という探し方が良い気がする。 -・Step5の調整を自動化する。 -・Step2を自動化する(画像生成AI的な) - - - - - - - -# 参考 -[「テトリス」の斬新すぎる遊び方が話題に。積み上げたブロックでマリオやルイージを再現!?](https://nlab.itmedia.co.jp/nl/articles/1109/13/news025.html) -[色の名前とカラーコードが一目でわかるWEB色見本 原色大辞典 - HTMLカラーコード](https://www.colordic.org/) -[youtube-link: tetris art sample](https://www.youtube.com/watch?v=Seh6g9_nL6o) diff --git a/cloud/sam/scripts/chat_function/data/block_controller.md b/cloud/sam/scripts/chat_function/data/block_controller.md deleted file mode 100644 index e815bf0f..00000000 --- a/cloud/sam/scripts/chat_function/data/block_controller.md +++ /dev/null @@ -1,143 +0,0 @@ ->本ページでは、[ブロック操作用プログラム](https://github.com/seigot/tetris/blob/master/game_manager/block_controller.py)について説明を追記頂ける方を募集しています。
->説明の追記方法は、[`Pull Requestを送る`](https://github.com/seigot/tetris#pull-requestを送るoptional)を参照下さい。
- -# ブロック操作用プログラムについて - -[ブロック操作用プログラム](https://github.com/seigot/tetris/blob/master/game_manager/block_controller.py)では、ボード情報からブロックの次の動作を決定します。
-このファイルの`def GetNextMove`関数にて、ボード情報`GameStatus`を入力として受け取り、次の動作決定用のデータ`nextMove`を返す事でブロックが動く仕様になっています。
-
-以下は、ボード情報`GameStatus`、次の動作決定用のデータ`nextMove`について記載します。
- -# ボード情報 -ボード情報には以下が含まれます。
-詳細は、[`GameStatus`データ構造](https://github.com/seigot/tetris/blob/master/doc/files/GameStatus.md)や、[サンプルコード](https://github.com/seigot/tetris/blob/master/game_manager/block_controller_sample.py)のようにGameStatusをログ出力することで確認可能です。 - -``` -* field_info : フィールド情報 -* block_info : ブロック情報 -* judge_info : 審判情報 -* debug_info : デバッグ情報 -``` - -# フィールド情報 - -## フィールドの定義 -フィールドは横幅10×高さ22ブロック分の大きさです。
-座標系は、左上を原点(0,0)として、x軸は右側、y軸は下側を正の方向として定義しています。
- -![Screenshot](../pics/coordinate_difinition.PNG) - -フィールドのデータは、一次元配列として定義しています。
-座標(x, y)のデータは、一次元配列の[x + y * 横幅]番目にアクセスすることで取得可能です。
-
-| | フィールド | 一次元配列 | -| --- | --- | --- | -| データ | ![Screenshot](../pics/field_data.png) | ![Screenshot](../pics/matrix_data.png) | - -## フィールド情報に格納されているデータ - -上記の一次元配列の各座標にブロックが有るか無いかを管理しています。 - -``` -* `0以外` : ブロック有り -* `0` : ブロック無し -``` - -ブロックが有る場合は、各ブロックのIndex値を格納しています。
-Index値はブロック情報を参照下さい。 - -# ブロック情報 - -## ブロックの定義 -ブロックは7種類あり、Index値と初期形状を以下の通り定義しています。
-横移動と回転が可能です。
-回転は時計回りに回転します。ブロックによって1周の回転に必要な回数が異なります。
- -| | ShapeI | ShapeL | ShapeJ | ShapeT | ShapeO | ShapeS | ShapeZ | -| --- | --- | --- | --- | --- | --- | --- | --- | -| index値 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | -| 初期形状 | ![Screenshot](../pics/ShapeI.png) | ![Screenshot](../pics/ShapeL.png) | ![Screenshot](../pics/ShapeJ.png) | ![Screenshot](../pics/ShapeT.png) | ![Screenshot](../pics/ShapeO.png) | ![Screenshot](../pics/ShapeS.png) | ![Screenshot](../pics/ShapeZ.png) | -| 1周の回転に必要な回数 | 2 | 4 | 4 | 4 | 1 | 2 | 2 | - -## ブロック操作の基準点 -各ブロックには操作の基準となる点(以下、ブロック操作の基準点)があります。
-また、ブロック操作の基準点以外の座標も取得可能です。基準点(x,y)とその周囲の座標は以下のように表します。
- -![Screenshot](../pics/block_coordinate_difinition2.PNG) - -ブロック毎に操作の基準点(x,y)は異なります。各ブロックの形状毎の基準点とそれ以外の座標は以下の通り。
- -| | ShapeI | ShapeL | ShapeJ | ShapeT | ShapeO | ShapeS | ShapeZ | -| --- | --- | --- | --- | --- | --- | --- | --- | -| 形状0における操作の基準点(x,y) | ![Screenshot](../pics/I11.PNG) | ![Screenshot](../pics/L11.PNG) | ![Screenshot](../pics/J11.PNG) | ![Screenshot](../pics/T11.PNG) | ![Screenshot](../pics/O11.PNG) | ![Screenshot](../pics/S11.PNG) | ![Screenshot](../pics/Z11.PNG) | -| 基準点とそれ以外の座標 | (x,y-1),(x,y),(x,y+1),(x,y+2) | (x,y-1),(x,y),(x,y+1),(x+1,y+1) | (x,y-1),(x,y),(x,y+1),(x-1,y+1) | (x,y-1),(x,y),(x+1,y),(x,y+1) | (x,y-1),(x+1,y-1),(x,y),(x+1,y) | (x,y-1),(x+1,y-1),(x-1,y),(x,y) | (x-1,y-1),(x,y-1),(x,y),(x+1,y) | -| 形状1における操作の基準点(x,y) | ![Screenshot](../pics/I22.PNG) | ![Screenshot](../pics/L22.PNG) | ![Screenshot](../pics/J22.PNG) | ![Screenshot](../pics/T22.PNG) | --- | ![Screenshot](../pics/S22.PNG) | ![Screenshot](../pics/Z22.PNG) | -| 基準点とそれ以外の座標 | (x-2,y),(x-1,y),(x,y),(x+1,y) | (x-1,y),(x,y),(x+1,y),(x-1,y+1) | (x-1,y-1),(x-1,y),(x,y),(x+1,y) | (x,y+1),(x-1,y),(x,y),(x+1,y) | --- | (x,y-1),(x,y),(x+1,y),(x+1,y+1) | (x+1,y-1),(x,y),(x+1,y),(x,y+1) | -| 形状2における操作の基準点(x,y) | --- | ![Screenshot](../pics/L33.PNG) | ![Screenshot](../pics/J33.PNG) | ![Screenshot](../pics/T33.PNG) | --- | --- | --- | -| 基準点とそれ以外の座標 | --- | (x-1,y-1),(x,y-1),(x,y),(x,y+1) | (x,y-1),(x+1,y-1),(x,y),(x,y+1) | (x,y-1),(x-1,y),(x,y),(x,y+1) | --- | --- | --- | -| 形状3における操作の基準点(x,y) | --- | ![Screenshot](../pics/L44.PNG) | ![Screenshot](../pics/J44.PNG) | ![Screenshot](../pics/T44.PNG) | --- | --- | --- | -| 基準点とそれ以外の座標 | --- | (x+1,y-1),(x-1,y),(x,y),(x+1,y) | (x-1,y),(x,y),(x+1,y),(x+1,y+1) | (x,y-1),(x-1,y),(x,y),(x+1,y) | --- | --- | --- | - -尚、基準点とそれ以外の座標については現在のブロック情報(メソッド`Shape_class.getCoords()`)から取得可能です。
-また、各形状におけるx,y方向の最大長は、現在のブロック情報(メソッド`Shape_class.getBoundingOffsets()`)から取得可能です。
-取得の具体的な実装方法は、[ブロック操作用サンプルプログラム](https://github.com/seigot/tetris/blob/master/game_manager/block_controller_sample.py)を参照ください。 - -## ブロック出現時の初期位置 -ブロックは、ブロック操作の基準点が座標(5,1)になるように出現します。 - -![Screenshot](../pics/init_block_location3.png) - -尚、ブロックの出現時、既に基準点(x, y)にブロックが存在していると`game over`となりフィールドがリセットされます。 - -## ブロック情報に格納されているデータ - -主に以下を格納しています。 - -* `現在のブロック操作の基準点(x,y)` -* `現在のブロックのIndex値` -* `次のブロックのIndex値` - -# 審判情報 - -以下を格納しています。 - -* `経過時間[s]` : ゲーム開始時からの経過時間 -* `スコア[点]` : ゲーム開始時から現在までに獲得した合計スコア -* `ライン数` : ゲーム開始時から現在までに消したラインの数 -* `ゲームオーバー回数` : ゲーム開始時から現在までにゲームオーバーになった回数 - -# デバッグ情報 - -以下等を格納しています。 - -* `スコア内訳` : 合計スコア(消したライン、落下ボーナス)の内訳 - -その他、詳細はコード上のGameStatusを参照下さい。 - -# 次の動作決定用のデータ - -以下のデータを、次の動作決定用のデータ`nextMove`に与えることで次の動作を決定します。
-`nextMove`は辞書型のデータであり、`nextMove["strategy"]`以下の各値に応じてブロックが動きます。
- -* `direction` : 現在の形状から時計回りに何回回転するか(範囲:0〜(1周の回転に必要な回数-1) ) -* `x` : x座標のどの位置に移動するか(範囲:0-9、x座標の絶対値を指定する) -* `y_operation` : y座標方向の操作(1:落下、0:移動) -* `y_moveblocknum` : y座標方向に移動する場合、y座標に何ブロック分移動するか(範囲:1-21) - -![Screenshot](../pics/nextMove.PNG) -
-(今後ルール変更がある場合は、ルールに応じて`nextMove`もアップデートしていく予定です。) - -# HOLD機能 - -HOLD機能とは、ブロックを保持する機能です。この機能を使うと現在のブロックがHOLD扱いになります。
-その後、もし保持しているブロックがない場合は次のブロックが落ちてきます。
-もし保持しているブロックが既にある場合はそのブロックが再び落ちてきます。
- -プログラムから使用する場合は`nextMove["strategy"]`の以下の値を調整してください。
-* `use_hold_function` : HOLD機能を使うかどうか("y":使う、"n":使わない)
- -![Screenshot](../pics/holdfunction.PNG) - -# 使用例 -[ブロック操作用サンプルプログラム](https://github.com/seigot/tetris/blob/master/doc/files/block_controller_sample.md)を参照ください。 diff --git a/cloud/sam/scripts/chat_function/data/block_controller_sample.md b/cloud/sam/scripts/chat_function/data/block_controller_sample.md deleted file mode 100644 index f0af3569..00000000 --- a/cloud/sam/scripts/chat_function/data/block_controller_sample.md +++ /dev/null @@ -1,78 +0,0 @@ ->本ページでは、[ブロック操作用サンプルプログラム(block_controller_sample.py)](https://github.com/seigot/tetris/blob/master/game_manager/block_controller_sample.py)について説明を追記頂ける方を募集しています。
->説明の追記方法は、[`Pull Requestを送る`](https://github.com/seigot/tetris#pull-requestを送るoptional)を参照下さい。
- -# ブロック操作用サンプルプログラム - -実行方法 - -``` -python start.py -m sample -``` - -一般的に、テトリスは他ゲーム同様に組合せ最適化問題と捉える事が可能であり、過去に様々なアルゴリズムが提案されている。(例えば下記)
-- [ニューラルネットワークと遺伝的アルゴリズムを用いた テトリスコントローラの開発](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwiKn83IqIPxAhWSK5QKHUWVC0cQFjACegQIAxAD&url=https%3A%2F%2Fipsj.ixsq.nii.ac.jp%2Fej%2F%3Faction%3Drepository_action_common_download%26item_id%3D109968%26item_no%3D1%26attribute_id%3D1%26file_no%3D1&usg=AOvVaw0ic6uDC29wGYWl8KKIL8P3) -- [テトリスにおけるAIの開発](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwiKn83IqIPxAhWSK5QKHUWVC0cQFjAEegQIDhAD&url=https%3A%2F%2Fwww.info.kindai.ac.jp%2F~takasi-i%2Fthesis%2F2016_13-1-037-0113_S_Kawahara.ppt&usg=AOvVaw1tik6miknSKem4wE5bmpFP) -- [Tetris is Hard, Even to Approximate](https://arxiv.org/pdf/cs/0210020.pdf) -- ... - -本リポジトリはプログラミング練習と共に、探索アルゴリズムの仮説検証にも利用できるようにしている。
-サンプルプログラムでは、一般的な探索アルゴリズムでの基本部分となる、現在ブロックの探索方法、盤面評価を簡潔に実装している。
- -## step1.探索方法 - -[ブロック操作用サンプルプログラム](block_controller_sample.py)の`def GetNextMove(self, nextMove, GameStatus):`関数の、
-`for direction0 in CurrentShapeDirectionRange:` -`for x0 in range(x0Min, x0Max):`部分が該当する。
-ここでは現在のブロックの情報(以下)を使って全探索を行っている。
-- 現在のブロックが回転できる回数
-- 現在のブロックが移動できるx軸方向の移動量
- -![Screenshot](../pics/search_method_sample.PNG) - -一般的に、考慮すべき組み合わせが多くなると[ゲーム木](https://ja.wikipedia.org/wiki/ゲーム木)を利用した探索範囲の効率化が行われる。
-今回も1秒(1フレーム更新頻度)以内に次の手を決める必要があり、状況によってはゲーム木の採用が必要と思われる。
-ただ、サンプルコードでは簡潔に理解できることを優先し、現在のブロックを用いた全探索を採用している。
- -## step2.盤面評価 - -[ブロック操作用サンプルプログラム](block_controller_sample.py)の`def GetNextMove(self, nextMove, GameStatus):`関数の、
-` EvalValue = self.calcEvaluationValueSample(board)`部分が該当する。
-
-ここでは以下を考えた盤面評価を行っている。
-- 仮に現在のブロックを探索候補箇所に置いた時、消せるブロックが多いほど良い。
-- 同様に、穴ぼこや孤立したブロックが少ないほど良い。
-- 同様に、高さにばらつきが少ないほど良い。
- -![Screenshot](../pics/board_evaluate_method_sample2.PNG) - - -`EvalValue = self.calcEvaluationValueSample(board)`内では以下のような変数を扱っている。
-[block_controller_sample.py#L140](https://github.com/seigot/tetris/blob/c7f1c540f7d0cd1aa6daeb1e5917d18be35895f5/game_manager/block_controller_sample.py#L140) - -``` -BlockMaxY:あるX座標のブロックの高さが入る -holeCandidates:あるX座標の穴候補の数 -holeConfirm:あるX座標の確定した穴の数(下から"穴","穴",”ブロック”,"穴","穴",”ブロック”,"なし","なし",”なし”・・・の場合は4) -nIsolatedBlocks:下がブロックなしのブロックの総数 -fullLines:あるY座標の横一列全部にブロックがあったら1が加算される(最大値は4) -nHoles += abs(x):各X座標の穴の数の合計値 -absDy += abd(x):でこぼこ具合を表現している。となりの列との高さの差分を合計して、値が大きい=ブロックの高さが凸凹してる -``` - -しかし、サンプルプログラムの方法では盤面に穴が残る事がまだまだ多い。
- -# サンプルプログラムの課題 - -上記の通りサンプルプログラムは最小限の機能しかなく、いくつか課題が存在する。 - -- 数手先読み探索 - - サンプルプログラムでは探索時に現在のブロックしか考慮できていない。次のブロックや以降を考慮する方が良いはず。 -- 盤面評価の改良 - - サンプルプログラムでは目先の1ブロック消す事を優先している。4ブロック消すための手を選択できていない。 - - サンプルプログラムの手法では盤面に穴が残る事がまだまだ多い。 -- 最適解を人が考える必要がある。 - - AIのように自ら学習する方が楽に最適解を得られる可能性がある。 - -上記を解決するとより高いスコアが獲得できると思われる。
-以下の先行文献によるとサンプルプログラムで採用しているパラメータ以外も利用しており、改良の余地がある事は間違いない。
-[ニューラルネットワークと遺伝的アルゴリズムを用いた テトリスコントローラの開発](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwiKn83IqIPxAhWSK5QKHUWVC0cQFjACegQIAxAD&url=https%3A%2F%2Fipsj.ixsq.nii.ac.jp%2Fej%2F%3Faction%3Drepository_action_common_download%26item_id%3D109968%26item_no%3D1%26attribute_id%3D1%26file_no%3D1&usg=AOvVaw0ic6uDC29wGYWl8KKIL8P3) diff --git a/cloud/sam/scripts/chat_function/data/board_manager.md b/cloud/sam/scripts/chat_function/data/board_manager.md deleted file mode 100644 index 45db3a04..00000000 --- a/cloud/sam/scripts/chat_function/data/board_manager.md +++ /dev/null @@ -1,250 +0,0 @@ ->本ページでは、[ボード管理用プログラム](https://github.com/seigot/tetris/blob/master/game_manager/board_manager.py)について説明を追記頂ける方を募集しています。
->説明の追記方法は、[`Pull Requestを送る`](https://github.com/seigot/tetris#pull-requestを送るoptional)を参照下さい。
- -# ボード管理用プログラムについて - -ここでは [board_manager.py](../../game_manager/board_manager.py) の解説を行う。 - -このファイルにはテトリミノの 形状、回転方向を担う Shape Class と、画面ボードの各種処理を行う BoardData Class がある。 -block_controller.py 側からもよく使うメソッドが多いので解説を書いておく。 - -## Shape Class - -ここでは、[board_manager.py](../../game_manager/board_manager.py) の Shape Class について解説する。 -Shape Class は下記テトリミノの形状について保持しているクラスである。 - -| | ShapeI | ShapeL | ShapeJ | ShapeT | ShapeO | ShapeS | ShapeZ | -| --- | --- | --- | --- | --- | --- | --- | --- | -| index値 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | -| 初期形状 | ![Screenshot](../pics/ShapeI.png) | ![Screenshot](../pics/ShapeL.png) | ![Screenshot](../pics/ShapeJ.png) | ![Screenshot](../pics/ShapeT.png) | ![Screenshot](../pics/ShapeO.png) | ![Screenshot](../pics/ShapeS.png) | ![Screenshot](../pics/ShapeZ.png) | -| 1周の回転に必要な回数 | 2 | 4 | 4 | 4 | 1 | 2 | 2 | - -詳細は、[ブロック情報](block_controller.md#ブロック情報) に詳しく記載がある。 - -### getRotatedOffsets method - -getRotatedOffsets メソッドは テトリミノ形状を回転した基準座標からの相対座標を返します。 -引数として direction テトリミノ回転方向を指定する。 - -[ブロック操作の基準点](block_controller.md#ブロック操作の基準点)の形状番号を direction で指定すると、ここで書かれている相対座標が返される。 - -### getCoords method - -getCoords メソッドは さらに x,y を引数に持ち、x,y を基準点に置いたテトリミノの絶対座標を返す。 - -### getBoundingOffsets method - -getBoundingOffsets メソッドはテトリミノの基準点からの最大 x, y 最小x, y を取得する。 -direction で回転方向を指定し、minX, maxX, minY, maxY が返ってくる。 - - - - - - -## BoardData Class - -ここでは、[board_manager.py](../../game_manager/board_manager.py) の BoardData Class について解説する。 -BoardData Class は画面ボードに配置されているテトリミノ情報が格納されており、画面ボードの処理はこの Class において行う。 - -### 画面ボード情報取得系メソッド - -#### getData method - -現状の画面ボードデータを返す。一次元配列である。 - - - -### テトリミノ情報取得関係メソッド - -#### getDataWithCurrentBlock method - -画面ボードデータコピーし動いているテトリミノデータを付加し、その画面ボードデータを返す。 - - -#### getValue method - -引数として x,y を指定し画面ボード上のその座標のテトリミノの有無(およびその種類)を返す。 -返り値は Shape Class の index値。何もないなら 0。 - - - -#### getCurrentShapeCoord method - -direction (回転状態)のテトリミノ座標配列を取得し、それをx,yに配置した場合の座標配列を返す - - - -#### getShapeListLength method - -予告テトリミノ配列の長さを返す - - - -#### getShapeDataFromShapeClass method - -テトリミノクラスデータ, テトリミノ座標配列、テトリミノ回転種類を返す - -引数 - - ShapeClass ... Shape のオブジェクト - -返値 - - ShapeClass ... Shape のオブジェクト - ShapeIdx ... Shape Class の index値 - ShapeRange ... Shape Class の回転方向配列。Oミノなら (0,) Lミノなら (0,1,2,3)。 - - - -#### getShapeData method - -テトリミノの index 番号から shape オブジェクトを返す - -引数 - - ShapeNumber ... テトリミノの index - -返値 - - ShapeClass ... Shape のオブジェクト - - - - - -### HOLD 関係 - -#### getholdShapeData method - -ホールドしている Shape オブジェクトを返す - - - - - -### ART 関係 - -#### getcolorTable method - -colorTableを返す - - - -#### getnextShapeIndexListDXY method - -index を指定して、nextShapeIndexList の d, x, y を返す - -引数 - - index - -返値 - - d - x - y - - - - - - -### ゲームターン進行関係メソッド - - -#### mergePiece method - -画面ボードに固着したテトリミノを書き込む - - -#### getNewShapeIndex method - -次のテトリミノの index 取得 - -#### createNewPiece method - -画面ボード上に新しいテトリミノの配置。配置できなかったら False を返す。 - - -#### tryMoveNext method - -direction 方向で x,y へ2回配置して動かせなかったら Reset - - -#### exchangeholdShape method - -HOLD 入れ替え - -#### removeFullLines method - -画面ボードの消去できるラインを探して消去し、画面ボードを更新、そして消した Line を返す - - - - - - - - -### テトリミノ配置確認関係メソッド - -#### tryMoveCurrent method - -テトリミノを direction 方向で x,y に動かせるかどうか確認する -動かせない場合 tryMove メソッドを使い False を返す - - -#### tryMove method - -direction (回転状態)のテトリミノ座標配列を取得し、それをx,yに配置可能か判定する -配置できない場合 False を返す - -#### moveDown method - -テノリミノを1つ落とし消去ラインとテトリミノ落下数を返す - -#### dropDown method - -テトリミノを一番下まで落とし消去ラインとテトリミノ落下数を返す - -#### moveLeft method - -左へテトリミノを1つ動かす -失敗したら False を返す - -#### moveRight method - -右へテトリミノを1つ動かす -失敗したら False を返す - -#### rotateRight method - -右回転させる -失敗したら False を返す - - -#### rotateLeft method - -左回転させる -失敗したら False を返す - - - - - - - -### 初期配置関係メソッド - - -#### clear method - -画面ボードと現テトリミノ情報をクリア - -#### addobstacle method - -初期障害物配置。Level3 Level4 用。 - - - diff --git a/cloud/sam/scripts/chat_function/data/docker.md b/cloud/sam/scripts/chat_function/data/docker.md deleted file mode 100644 index 8e30c67e..00000000 --- a/cloud/sam/scripts/chat_function/data/docker.md +++ /dev/null @@ -1,75 +0,0 @@ -# Tetris Game docker - -## step0. docker をインストールする - -[Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu)
-[Install Docker Desktop on Mac](https://docs.docker.com/docker-for-mac/install/)
-[Install Docker Desktop on Windows](https://docs.docker.com/docker-for-windows/install/)
- -## step1. docker コンテナを起動する - -tetris ディレクトリで以下を実行する。 - -``` -docker-compose up -``` - -`pytorch`インストール済コンテナを使いたい場合、上記の代わりに以下を実行する。
- -``` -docker-compose -f docker-compose.pytorch.yaml up -``` - -## step2. docker コンテナにアクセスする - -コンテナ内に入ってターミナルを起動 - -``` -docker exec -it tetris-container bash -``` - -## step3. 起動ホスト OS 側で GUI 起動のための準備 - -docker コンテナ内でテトリスプログラムを実行する場合、GUI を表示させるためにはホスト OS 側で[x サーバ](https://qiita.com/kakkie/items/c6ccce13ce0beaefaad1)を起動する必要があります。 -x サーバの起動方法は以下を参照してください。 - -- Windows→[こちら](./README.xserver.md#Windows-の場合) -- Linux→ - -## step3'. GUI なしでテトリスプログラムを実行 - -GUI の起動が必要ない場合には先程立ち上げたコンソールかたコンテナ内の環境変数`QT_QPA_PLATFORM`を`offscreen`に設定します。 - -``` -export QT_QPA_PLATFORM=offscreen -``` - -## step4. テトリスプログラムの実行 - -`/tetris`にいることを確認し、以下を実行 - -``` -python start.py -``` - -テトリスの画面が表示されれば無事完了です。 - -## コンテナの停止 - -ホスト OS 側の tetris ディレクトリから以下を実行する。 - -``` -docker-compose stop -``` - -この場合には、コンテナは削除されずに残ります。 - -## コンテナの停止、削除 - -ホスト OS 側の tetris ディレクトリから以下を実行する。 - -``` -docker-compose down -``` - -この場合には、コンテナは削除されます。 diff --git a/cloud/sam/scripts/chat_function/data/game_manager.md b/cloud/sam/scripts/chat_function/data/game_manager.md deleted file mode 100644 index ecd6ba99..00000000 --- a/cloud/sam/scripts/chat_function/data/game_manager.md +++ /dev/null @@ -1,131 +0,0 @@ ->本ページでは、[ゲーム管理用プログラム](https://github.com/seigot/tetris/blob/master/game_manager/game_manager.py)について説明を追記頂ける方を募集しています。
->説明の追記方法は、[`Pull Requestを送る`](https://github.com/seigot/tetris#pull-requestを送るoptional)を参照下さい。
- -# ゲーム管理用プログラムについて - -## [start.py](../../start.py) の Option 設定 - -ここでは [start.py](../../start.py) で指定する option について解説する。 - -#### -m --mode モード - default : ルールベース - train : AI学習 - predict : AI 推論(予測実行) - predict_sample : AI MLP 推論(予測実行) - predict_sample2 : AI DQN 推論(予測実行) - keyboard : キーボード操作 - gamepad : ゲームパッド操作 -#### -l --game_levelレベル - 1 : Level 1 固定テトリミノ - 2 : Level 2 ランダムテトリミノ - 3 : Level 3 初期ブロックありテトリミノ - 4 : Level 4 初期ブロックありテトリミノ 0.001秒更新 -#### -d --drop_interval 更新間隔 - default => 1000 (=1秒) - ms 指定 - ※ テトリミノを DROP すれば この時間待てば次のテトリミノが出るが、降下だけさせた場合は次の操作ができるまでこの時間分停止する。 - ※ Level 4指定した場合は無効 -#### -t --game_time ゲーム時間 - default => 180 - 秒指定 - -1 で制限なし 学習時は -1 指定推奨。 -#### -r --random_seed 乱数のタネ - 整数指定。特別に必要なければ指定しない。 -#### -f --resultlogjson - default => result.json - 結果の json ファイル指定 -#### --train_yaml - default => config/default.yaml - AI 学習推論時 (train, predict)の設定ファイル指定 -#### --predict_weight - default => outputs/latest/best_weight.pt - AI 推論時 (predict) の学習結果 weight ファイル指定 - -## Game_Manager Class - -ここでは [game_manager.py](../../game_manager/game_manager.py) の Game_Manager Class を解説する。 - -### 概要 - -最初に start.py から呼び出される。このゲームの基本的な動作はこのクラスから各クラス、メソッドを実行することによって行われる。 - -### 初期化 - -\_\_init\_\_ にて Option や初期設定値を各インスタンス変数に格納する。 -\_\_init\_\_ にある initUI メソッドにて、Window 生成、位置設定表示が行われる。ここで SidePanel Class, Board Class のインスタンスも生成される。 -initUI の中の start メソッドで、スコア、画面ボード、予告テトリミノ、ステータスバーがクリアされる。また、この中で timerEvent も生成される。timerEvent の間隔は上記の drop_interval となる。これにより次の操作が可能となる。 - -### timerEvent method - -上記の初期化により timerEvent が drop_interval オプションにて指定された間隔で実行される。 -この Event によりゲームが進行していく。 -なお、timerEvent メソッド実行中に drop_interval 指定の時間を超えても、次の timerEvent は発生しない。 -よって、drop_interval が非常に短い (1ms など = Level 4) の場合は、timerEvent のロスが多発する。 -そういったルールの場合はいかに早く timerEvent を終了させるかが肝となる。 - -timerEvent において各 mode に対応する [block_controller.py](block_controller.md) (or block_controller_train*.py) の GetNextMove が呼び出される。 -ここで、[GameStatus](GameStatus.md) が GetNextMove に引き渡され、各自のプログラムで指示した操作結果が nextMove 変数に格納される。 - -この結果をもって、テトリミノのホールド、横移動、回転、落下、降下処理を行う。 - -ホールドはホールド画面のテトリミノとの入れ替えを行う。ただし、ホールド画面に何もない場合はホールド画面に現テトリミノを入れて timerEvent を終了する。 - -横移動は画面ボードの端やテトリミノにぶつかると停止する。 - -回転は**右回転** (rotateRight)で行い、画面ボードの端やテトリミノにぶつかるとエラーとなりtimerEvent無効となるので要注意である。 - -降下 (move down) 処理の場合は指定数分降下させる。 - -落下 (drop down) 処理が行われると、ただちにテトリミノは一番低いところまで落とされ、テトリミノは固定される。 - -いずれにしてもテトリミノの下側が画面ボード下限かテトリミノに当たっている場合は、消去ライン数計算(moveDown)とスコア計算(UpdateScore)が実施され、次の timerEvent では次のテトリミノが出る。 -なお、ゲームオーバーになればゲームオーバー分のスコアを減らされれ、画面ボードをクリアして次の timerEvent となる。 - - -### keyPressEvent method - -下記キー操作により Event が発生しテトリミノを操作する。 -なお、GetNextMove で指定する場合とことなり**左回転** (rotateLeft) である点に注意が必要である。 - -| 手動操作 | PC操作準拠 | ゲーム機コントローラ準拠 | -| ---- | ---- | ---- | -| 実行コマンド | python start.py -m keyboard | python start.py -m gamepad | -| *up* key | **左回転** | 落下 | -| *left* key | 左に移動 | 左に移動 | -| *right* key | 右に移動 | 右に移動 | -| *m* key | 降下(下に移動) | 降下(下に移動) | -| *space* key | 落下 | **左回転** | -| *P* key | Pause | Pause | -| *c* key | hold | hold | - -## SidePanel Class - -ここでは [game_manager.py](../../game_manager/game_manager.py) の SidePanel Class を解説すr。 -横の予告テトリミノ、およびホールドテトリミノ描画画面 Class である。 - - - -### paintEvent method - -ここでは上記のように 4つの予告テトリミノを描画する。 -また、下にホールド画面がありそこでホールドしたテトリミノも表示される。 -timerEvent や keyEvent などにより呼び出され描画される。 - -## Board Class - -ここでは [game_manager.py](../../game_manager/game_manager.py) の Board Class を解説する。 -ゲームの画面ボードおよびステータスバーの Class である。 - - - -### paintEvent method - -ここでは縦22,横10の画面ボードを描画する。 -固定されたテトリミノおよび動作中のテトリミノを描画する。 - -### updateData method - -ステータスバーの文字の更新を行う。 -また、 game_time 経過、もしくはブロック数上限に達したらプログラムを終了し、Result を表示する。 -学習モードで game_time を -1 にしていないと、ここで終了してしまう。 - diff --git a/cloud/sam/scripts/chat_function/data/install_mac.md b/cloud/sam/scripts/chat_function/data/install_mac.md deleted file mode 100644 index 5466ff12..00000000 --- a/cloud/sam/scripts/chat_function/data/install_mac.md +++ /dev/null @@ -1,39 +0,0 @@ -# 実行環境(Macの場合) - -Finder→Application→Utility→Terminalから、ターミナル画面を起動して以下コマンドを実行する。
- -``` -# install pyqt5 and NumPy -brew install python3 -brew install pyqt5 -brew install numpy -#pip3 install pyqt5 -#pip3 install numpy -# install other packages -brew install git -``` - -Mac(M1)環境等では`pip3 install pyqt5`でエラーになることがある。`brew`を使うことで解決することがある。 -[Mac(M1)にpip3 install pyqt5でpyqt5をインストールしようしようとするとエラーになる(Preparing metadata (pyproject.toml) ... error)](https://qiita.com/seigot/items/c779d187982268cf8b12) - -``` -brew install pyqt5 -``` - -`pytorch`を使う場合は以下のようにすればOK -[MacBook Pro (Apple Silicon, M1 PRO, 2021) でPython開発環境を整える #49](https://github.com/seigot/tetris/issues/49) -[AIについて]([https://github.com/seigot/tetris/blob/master/doc/files/install_mac.md](https://github.com/seigot/tetris/blob/master/doc/files/ai.md) - -``` -# install -pip3 install -U pip -pip3 install torch -pip3 install tensorboardX -python3 -c "import torch" -# 実行例 (詳細は"AIについて"リンク参照) -python3 start.py -m train_sample -d 1 -l 2 -t -1 -python3 start.py -m predict_sample -l 2 --predict_weight weight/DQN/sample_weight.pt -``` - -もし他にも足りないことがあれば`pull request`頂けると助かります - diff --git a/cloud/sam/scripts/chat_function/data/install_ubuntu.md b/cloud/sam/scripts/chat_function/data/install_ubuntu.md deleted file mode 100644 index dcd9a70a..00000000 --- a/cloud/sam/scripts/chat_function/data/install_ubuntu.md +++ /dev/null @@ -1,25 +0,0 @@ -# 実行環境(Ubuntu/JetsonNanoの場合) - -Need python3, PyQt5 and NumPy to be installed. - -``` -# install pyqt5 and NumPy -sudo apt-get install -y python3-pip -pip3 install --upgrade pip -pip3 install numpy -pip3 install pyqt5 -``` - -その他、パッケージのインストール - -``` -sudo apt-get install -y git -``` - -ubuntu20.04LTS以降の場合は`python`コマンドを使うために以下を実行する - -``` -sudo apt install python-is-python3 -``` - -その後は、実行方法を参照 diff --git a/cloud/sam/scripts/chat_function/data/install_windows.md b/cloud/sam/scripts/chat_function/data/install_windows.md deleted file mode 100644 index e9bc26ba..00000000 --- a/cloud/sam/scripts/chat_function/data/install_windows.md +++ /dev/null @@ -1,39 +0,0 @@ -# 実行環境(windowsの場合) -docker for windowsを使います。
- -### step0. DockerDesktopのインストール - -以下を参照する。
-[DockerDeskop](https://docs.docker.com/docker-for-windows/install)
-[Windows10用Windows Subsystem for Linuxのインストール ガイド](https://docs.microsoft.com/ja-jp/windows/wsl/install-win10) - -以下にインストール時のトラブルシューティングをまとめました。
-[FAQ/Windows Docker install時のトラブルシューティング](https://github.com/seigot/tetris/blob/master/doc/files/FAQ.md#windows-docker-install%E6%99%82%E3%81%AE%E3%83%88%E3%83%A9%E3%83%96%E3%83%AB%E3%82%B7%E3%83%A5%E3%83%BC%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0) - -### step1. パワーシェル上でコンテナを起動する
- -`Windowsボタン`から`Windows PowerShell`を起動してterminalから以下実行する。
-コンテナのダウンロード〜起動が完了するまで少し待つ。
- -``` -docker run -p 6080:80 --shm-size=512m seigott/tetris_docker -``` - -### step2. ブラウザからdockerコンテナにアクセスする - -``` -localhost:6080 -``` - -アクセスできたら以下により動作検証する - -左下アイコン --> system tools --> terminator - -Terminalを立ち上げて以下を実行 - -``` -cd ~/tetris -python start.py -``` - -注意)パワーシェルを閉じたり電源OFFするとコンテナも終了します。作成中データが失われないよう注意してください。 diff --git a/cloud/sam/scripts/chat_function/data/install_windows_powershell.md b/cloud/sam/scripts/chat_function/data/install_windows_powershell.md deleted file mode 100644 index 82679465..00000000 --- a/cloud/sam/scripts/chat_function/data/install_windows_powershell.md +++ /dev/null @@ -1,205 +0,0 @@ -# windowsのpowershellを使ってテトリス環境を構築する - -### powershellとは - -windowsで利用できる、コマンドラインインターフェース。 -「Windows」+「S」で検索ボックス"powershell"と入力すると見つかるはず。 -> [Windows10 - PowerShell(パワーシェル)の開き方](https://www.curict.com/item/f0/f0f6ab0.html) - -## 1. git のインストール - -### Windows Package Manager(winget)がある場合 - -[Windows Package Manager(winget)](https://www.microsoft.com/ja-jp/p/app-installer/9nblggh4nns1?activetab=pivot:overviewtab)があることを確認する。 -powershellを起動して以下を実行すれば確認できる。 - -``` -winget --version -## v1.1.13405 等と出力されれば、Windows Package Manager(winget)がある -``` - -gitをインストールする。 - -``` -winget install Git.Git -## もし y/n と出る場合は、y と入力する。y=yes という意味である。 -``` - -新しくpowershellを起動し、以下を実行して結果が表示されればOK - -``` -git --version -## ex.) git version 2.34.1.windows.1 等と出力されればOK(最新バージョンであればOK) -``` - -### 上記でインストールができない場合 - -上記でインストールができない場合は、公式サイトのインストーラーを使う。以下をダウンロードする。 - -> [git Downloading Git](https://git-scm.com/download/win) -> 64-bit Git for Windows Setup - -以下の「Gitのインストール」部分記載の通り、インストールを進める。以下の記載部分は選択が必要。 - -> Windows 10 と Powershell(WSL含む) で git を利用する -> https://qiita.com/kerobot/items/78372640127771f92ee0#git-%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB -> > コマンドラインやPowerShellなどからGitのコマンドを利用するため「Git from the command line and also from 3rd-party software」を選択します。 - -powershell上で以下を実行して結果が表示されればOK - -``` -git --version -## ex.) git version 2.34.1.windows.1 等と出力されればOK(最新バージョンであればOK) -``` - -## 2. python のインストール - -### microsoft storeからインストールする - -powershell上で以下を実行、もしくは`microsoft store`上で`python`と検索し、インストールページからインストールする。 - -``` -python -``` - -![Screenshot](../pics/python3.10.msstore.png) - -新しくpowershellを起動し、以下を実行して結果が表示されればOK - -``` -python --version -## ex.) Python 3.10.9 等と出力されればOK(最新バージョンであればOK) -``` - -### 古いバージョンのpythonが表示される場合 - -過去に古いバージョンのpythonをインストールしている場合にそちらが優先される可能性がある。 -「Windows」+「python」で検索ボックスから古いpythonバージョンをアンインストールして再度新しいpythonをインストールすると解決することがある。 - -### 上記でインストールができない場合 - -上記でインストールができない場合は、公式サイトのインストーラーを使う。 -以下記事を参照し、パッケージのダウンロード~PowerShellの環境設定までを実施する - -> [Windows版Pythonのインストール](https://www.python.jp/install/windows/install.html) - -2023.1時点ではpythonのバージョン3.10.9が利用し易そうである。 -この場合は、以下のダウンロードリンクからインストーラ(`.exe`)を取得するとよい。 - -> [非公式Pythonダウンロードリンク](https://pythonlinks.python.jp/ja/index.html) - -特に以下の点を忘れずに実施する。 - -> > "Add Python 3.x to PATH" をチェックするのを忘れないようにしてください。 -> > もし忘れたら、あわてず落ち着いてもう一度インストールしましょう。何度でも繰り返して大丈夫です。 -> -> > PowerShellの環境設定¶ -> > PowerShellでスクリプトの実行を許可しておきます。 -> > スタートメニューで Windows PowerShell | Windows PowerShell を起動し、次のコマンドを実行します。 -> Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force - -powershell上で以下を実行して結果が表示されればOK - -``` -python --version -## ex.) Python 3.10.9 等と出力されればOK(最新バージョンであればOK) -``` - -## 3. powershellからtetrisを実行する - -powershellを新たに起動する -(「Windows」+「S」で検索ボックス"powershell"と入力すると見つかるはず。見つかったらクリックして起動する。) - - -バージョンを確認する -ここでバージョンが何も表示されなければインストールが成功していないため、インストールからやり直す - -``` -git --version -## ex.) git version 2.34.1.windows.1 等と出力されればOK(最新バージョンであればOK) -python --version -## ex.) Python 3.10.9 等と出力されればOK(最新バージョンであればOK) -``` - -必要なパッケージをインストールする - -``` -pip install pyqt5 -pip install numpy -``` - -以下の通り実行し、tetrisが表示されればOK - -``` -cd ~ -mkdir work -cd work -git clone https://github.com/seigot/tetris -cd tetris -python start.py # ここでtetrisが表示されればOK -``` - -プログラム内部の説明については以下など参照ください - -[ブロック操作用サンプルプログラムについて](./block_controller_sample.md) -[AIについて](./ai.md) -[tetris artについて](./art.md) -[README.md](https://github.com/seigot/tetris#%E5%AE%9F%E8%A1%8C%E6%96%B9%E6%B3%95) - -### option. エディタのインストール - -最近流行りのエディタである`visual studio code`をインストールしておくと後のコード編集に便利である -powershell上でwingetが使える場合は以下を実行、 - -``` -# powershell上でwingetが使える場合 -winget install vscode -``` - -もしくは`microsoft store`上で`visual studio code`と検索し、インストールページからインストールする。 - -![Screenshot](../pics/vscode.msstore.png) - -powershell上で以下を実行して`vscode`と対象のコードが表示されればOK - -``` -# cd ~/work/tetris 等で事前にcloneした場所に移動しておく -code game_manager/block_controller.py -``` - -### `python start.py`実行後にtetrisが表示されない場合 - -実行環境の違いにより`python start.py`実行後にtetrisが表示されないことがたまにある。 -この場合はwarningやエラーログが出力されるはずなので、以下の実行成功時のログと比較すると解決に近づくと思われる。 - -``` -# (例)実行成功時のログ -$ python start.py -game_level: 1 -game_time: 180 -RANDOM_SEED: 0 -IS_MODE :default -OBSTACLE_HEIGHT: 0 -OBSTACLE_PROBABILITY: 0 -USER_NAME: window_sample -SHAPE_LIST_MAX: 6 -BLOCK_NUM_MAX: -1 -RESULT_LOG_JSON: result.json -TRAIN_YAML: config/default.yaml -PREDICT_WEIGHT: outputs/latest/best_weight.pt -Python 3.7.1 -CompletedProcess(args='python --version', returncode=0, stderr='') -=================================================> -...(以降、tetrisデバッグ情報が表示される) -``` - -## 参考 -[git Downloading Git](https://git-scm.com/download/win) -[Windows 10 と Powershell(WSL含む) で git を利用する](https://qiita.com/kerobot/items/78372640127771f92ee0#git-%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB) -[Windows版Pythonのインストール](https://www.python.jp/install/windows/install.html) -[非公式Pythonダウンロードリンク](https://pythonlinks.python.jp/ja/index.html) -[WindowsPowerShellでPythonを利用する](https://bluebirdofoz.hatenablog.com/entry/2019/01/19/141007) -[GNU Emacs for Windows再入門](https://emacs-jp.github.io/tips/emacs-for-windows) -[visual studio codeをinstall](https://azure.microsoft.com/ja-jp/products/visual-studio-code/) -[WindowsにBashをインストールする方法](https://lab.sonicmoov.com/development/windows-bash/) -[Windows Subsystem for Linuxが表示されない](https://qiita.com/taraka/items/0b5919ac8ee02d81f7ff) diff --git a/cloud/sam/scripts/chat_function/data/install_windows_wsl.md b/cloud/sam/scripts/chat_function/data/install_windows_wsl.md deleted file mode 100644 index c8f803f9..00000000 --- a/cloud/sam/scripts/chat_function/data/install_windows_wsl.md +++ /dev/null @@ -1,81 +0,0 @@ -# 実行環境 (Windows WSLを使う場合) - -Windows WSLを使って開発環境を立ち上げる方法を説明する。 -Dockerを使う方法と比較して、Dockerが不要な点と、Dockerコンテナ終了でデータが失われることを気にする必要が無い特長がある。 - -## Step 1. WSLのインストール - -- 以下を参照してインストールする。 - - [Windows10用Windows Subsystem for Linuxのインストール ガイド](https://docs.microsoft.com/ja-jp/windows/wsl/install-win10) - -### a. WSL1でインストールする場合(簡単) - -- 上記URLの「手動インストールの手順」の「手順 1 - Linux 用 Windows サブシステムを有効にする」「手順 6 - 選択した Linux ディストリビューションをインストールする」のみ実施すれば良い。 -- 「手順 6 - 選択した Linux ディストリビューションをインストールする」では、Ubuntu 18.04 LTS または Ubuntu 20.04 LTS をインストールすれば良い。 - -### b. a以外の場合 - -- WSL1でもWSL2でも良い。 -- Linuxのディストリビューションはどれでも良いはずであるが、Ubuntu 18.04 LTS または Ubuntu 20.04 LTS をおすすめする。 - -## Step 2. Xサーバのインストール - -GWSLまたはVcXsrvをインストールする。 - -### a. GWSLを使う場合(おすすめ) - -1. スタートメニューからMicrosoft Storeアプリを起動する。 -2. GWSLを検索して、インストールする。 - -### b. VcXsrvを使う場合 - -1. https://sourceforge.net/projects/vcxsrv/ からVcXsrvを入手してインストールする。 - -## Step 3. WSLの起動 - -### ターミナルを開く - -- スタートメニューから、Step 1でインストールしたLinux ディストリビューション(Ubuntu 18.04 LTS など)を起動する。 - -### 必要なパッケージのインストール・設定(初回のみ必要) -- 下記を実行する。 - -``` -sudo apt-get install -y python3-pip -sudo apt-get install -y python3-pyqt5 -pip3 install --upgrade pip -pip3 install numpy -sudo apt-get install -y git - -echo 'export DISPLAY=localhost:0.0' >> ~/.bashrc -source ~/.bashrc -``` - -## Step 4. Xサーバの起動 - -Step 2 でインストールしたXサーバを起動する。 - -### a. GWSLを使う場合 - -1. スタートメニューからGWSLを起動する。 - -### b. VcXsrvを使う場合 - -1. スタートメニューやデスクトップのショートカットからVcXsrvを起動する。 -2. 「次へ」を3回押して、「完了」を押すとXサーバが起動する。 - -## Step 5. tetrisの起動 - -### ソースコードを取得する(初回のみ必要) - -``` -git clone https://github.com/seigot/tetris -``` - -### tetrisを実行する -``` -cd ~/tetris -python start.py -``` - -一度実行環境を立ち上げた後の2回目からは、Step 3以降を実行すれば良い。 diff --git a/cloud/sam/scripts/chat_function/data/reference_score.md b/cloud/sam/scripts/chat_function/data/reference_score.md deleted file mode 100644 index 75a01bd4..00000000 --- a/cloud/sam/scripts/chat_function/data/reference_score.md +++ /dev/null @@ -1,13 +0,0 @@ -# 参考スコア - -(注)乱数の影響により多少のばらつきあり
- -| | level1 | level2 | level3 | 自由部門 | -| --- | --- | --- | --- | - | -| random | -916 | -731 | -4948 | - | -| sample(python start.py -m sample) | 6935 | 6259 | 3737 | - | -| [kyadさん作の無限テトリス](https://github.com/kyad/tetris/blob/forever-branch/forever.md) | - | - | - | 20592 | -| 理論値 | 23400+落下ボーナス | - | - | - | - -理論値は「(全てI字の棒が出るなどして)全て4ライン消しをした場合」を想定。
-計算式:(制限時間 180(s))÷(テトリス1回に掛かる時間 10(s))×1300点 = 23400点
diff --git a/cloud/sam/scripts/chat_function/data/tetris.md b/cloud/sam/scripts/chat_function/data/tetris.md deleted file mode 100644 index b6dbc73c..00000000 --- a/cloud/sam/scripts/chat_function/data/tetris.md +++ /dev/null @@ -1,350 +0,0 @@ - - -**Table of Contents** - -- [Tetris](#tetris) - - [実行環境準備](#%E5%AE%9F%E8%A1%8C%E7%92%B0%E5%A2%83%E6%BA%96%E5%82%99) - - [Mac環境](#mac%E7%92%B0%E5%A2%83) - - [windows環境](#windows%E7%92%B0%E5%A2%83) - - [Ubuntu/JetsonNano環境](#ubuntujetsonnano%E7%92%B0%E5%A2%83) - - [docker環境](#docker%E7%92%B0%E5%A2%83) - - [実行方法](#%E5%AE%9F%E8%A1%8C%E6%96%B9%E6%B3%95) - - [サンプルコード](#%E3%82%B5%E3%83%B3%E3%83%97%E3%83%AB%E3%82%B3%E3%83%BC%E3%83%89) - - [手動操作](#%E6%89%8B%E5%8B%95%E6%93%8D%E4%BD%9C) - - [AI実装](#ai%E5%AE%9F%E8%A3%85) - - [art](#art) - - [自動評価サーバ](#%E8%87%AA%E5%8B%95%E8%A9%95%E4%BE%A1%E3%82%B5%E3%83%BC%E3%83%90) - - [Play rules](#play-rules) - - [Score](#score) - - [game level](#game-level) - - [ファイル構成](#%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E6%A7%8B%E6%88%90) - - [ファイル一覧](#%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E4%B8%80%E8%A6%A7) - - [詳細](#%E8%A9%B3%E7%B4%B0) - - [コード作成のはじめかた](#%E3%82%B3%E3%83%BC%E3%83%89%E4%BD%9C%E6%88%90%E3%81%AE%E3%81%AF%E3%81%98%E3%82%81%E3%81%8B%E3%81%9F) - - [本リポジトリのfork](#%E6%9C%AC%E3%83%AA%E3%83%9D%E3%82%B8%E3%83%88%E3%83%AA%E3%81%AEfork) - - [実行](#%E5%AE%9F%E8%A1%8C) - - [自リポジトリのバイナリを公式リリースする](#%E8%87%AA%E3%83%AA%E3%83%9D%E3%82%B8%E3%83%88%E3%83%AA%E3%81%AE%E3%83%90%E3%82%A4%E3%83%8A%E3%83%AA%E3%82%92%E5%85%AC%E5%BC%8F%E3%83%AA%E3%83%AA%E3%83%BC%E3%82%B9%E3%81%99%E3%82%8B) - - [本リポジトリの最新バージョン取り込み](#%E6%9C%AC%E3%83%AA%E3%83%9D%E3%82%B8%E3%83%88%E3%83%AA%E3%81%AE%E6%9C%80%E6%96%B0%E3%83%90%E3%83%BC%E3%82%B8%E3%83%A7%E3%83%B3%E5%8F%96%E3%82%8A%E8%BE%BC%E3%81%BF) - - [Pull Requestを送る(Optional)](#pull-request%E3%82%92%E9%80%81%E3%82%8Boptional) - - [FAQ](#faq) - - [参考](#%E5%8F%82%E8%80%83) - - [今後の課題](#%E4%BB%8A%E5%BE%8C%E3%81%AE%E8%AA%B2%E9%A1%8C) - - [次のブロックのランダム性](#%E6%AC%A1%E3%81%AE%E3%83%96%E3%83%AD%E3%83%83%E3%82%AF%E3%81%AE%E3%83%A9%E3%83%B3%E3%83%80%E3%83%A0%E6%80%A7) - - [競争要素の追加](#%E7%AB%B6%E4%BA%89%E8%A6%81%E7%B4%A0%E3%81%AE%E8%BF%BD%E5%8A%A0) - - [学習要素の追加](#%E5%AD%A6%E7%BF%92%E8%A6%81%E7%B4%A0%E3%81%AE%E8%BF%BD%E5%8A%A0) - - [LICENSE](#license) - - [Finnaly](#finnaly) - - - -# Tetris - -プログラミング学習を目的とした、ブロックを操作してスコアを競うゲームです。
-[FAQはこちら。](https://github.com/seigot/tetris/blob/master/doc/files/FAQ.md)
-[tutorialはこちら。](https://github.com/seigot/tetris_game_tutorial)
-[tetris_score_serverはこちら](https://github.com/seigot/tetris_score_server) -[tetris_battle_serverはこちら](https://github.com/seigot/tetris_battle_server) - -## 実行環境準備 - -#### Mac環境 - -Finder→Application→Utility→Terminalから、ターミナルを起動して以下コマンドを実行する。 -install成功後、[実行方法](https://github.com/seigot/tetris/tree/master#実行方法)によりゲーム開始すればOK - -``` -# install pyqt5 and NumPy -brew install python3 -brew install pyqt5 -brew install numpy -# install other packages -brew install git -``` - -[doc/files/install_mac.md](./doc/files/install_mac.md)に手順を記載 - -#### windows環境 - -[windowsのpowershellを使ってテトリス環境を構築する場合](./doc/files/install_windows_powershell.md)の手順
-[WSL(Windows Subsystem for Linux)を使う場合](./doc/files/install_windows_wsl.md)の手順
-[Docker for Windowsを使う場合](./doc/files/install_windows.md)の手順
- -#### Ubuntu/JetsonNano環境 - -[doc/files/install_ubuntu.md](./doc/files/install_ubuntu.md)に手順を記載 - -#### docker環境 - -[docker/README.md](docker/README.md)に手順を記載 - -## 実行方法 - -本リポジトリを取得 - -```shell -cd $HOME -git clone https://github.com/seigot/tetris -``` - -ゲーム開始用スクリプトを実行 - -```shell -cd tetris -python start.py -``` - -![Screenshot](doc/pics/screenshot_02.png) - -#### サンプルコード - -実行時、以下のようにオプションを与えることで、スコアアタック用サンプルコードの実行が可能です。
-サンプルコードの詳細は、[ブロック操作用サンプルプログラム](https://github.com/seigot/tetris/blob/master/doc/files/block_controller_sample.md)を参照下さい。
- -```shell -python start.py -m sample -``` - -#### 手動操作 - -実行時、以下のようにオプションを与えることで、手動操作が可能です。 -操作方法は、PC操作準拠とゲーム機コントローラ準拠の2種類を選択できるようにしています。 - -| 手動操作 | PC操作準拠 | ゲーム機コントローラ準拠 | -| ---- | ---- | ---- | -| 実行コマンド | python start.py -m keyboard | python start.py -m gamepad | -| *up* key | 回転 | 落下 | -| *left* key | 左に移動 | 左に移動 | -| *right* key | 右に移動 | 右に移動 | -| *m* key | 下に移動 | 下に移動 | -| *space* key | 落下 | 回転 | -| *P* key | Pause | Pause | -| *c* key | hold | hold | - -`--nextShapeMode hate`オプション付きで実行すると[hateモード(手動操作で遊ぶ用)](https://manabitimes.jp/math/795)になります。 - -``` -python3 start.py -m keyboard --nextShapeMode hate -``` - -#### AI実装 - -実行方法、サンプルコードを用意しています -詳細は[AIについて](doc/files/ai.md)を参照下さい。 - -#### art - -実行方法、サンプルコードを用意しています -詳細は[artについて](doc/files/art.md)を参照下さい。 - -#### 自動評価サーバ - -表題のサーバを有志で用意しています -https://github.com/ChallengeClub/tetris_score_server - -## Play rules - -制限時間内の獲得スコアを評価します。 - -### Score - -加点 - -| 項目 | 得点 | 備考 | -| ---- | ---- | ---- | -| 1ライン消し | + 100点 | - | -| 2ライン消し | + 300点 | - | -| 3ライン消し | + 700点 | - | -| 4ライン消し | + 1300点 | - | -| 落下ボーナス | + 落下したブロック数を得点に加算 | - | -| 全消しボーナス | + 全消し時に得点 | - | - -減点 - -| 項目 | 得点 | 備考 | -| ---- | ---- | ---- | -| gameover | - 500点 | ブロック出現時にフィールドが埋まっていたらgameover - -### game level - -実行時、オプションを与えることで、難易度(レベル)を指定できます。
- -| | level1 | level2 | level3 | level4 | -| --- | --- | --- | --- | --- | -| 実行方法 | python start.py | python start.py -l2 | python start.py -l3 | python start.py -l4 | -| 制限時間 | 180秒 | 180秒 | 180秒 | 180秒 | -| ブロックの順番 | 固定(1-7まで順番に繰り返し) | ランダム | ランダム | ランダム | -| フィールドの初期ブロック | なし | なし | あり | あり | -| フレーム更新頻度 | 約1秒 | 約1秒 | 約1秒 | 約0.001秒 | -| 全消しボーナス | +0 | +0 | +4000 | +4000 | -| 備考 | - | - | - | - | - -[各レベルの参考スコア](doc/files/reference_score.md) - -## ファイル構成 - -#### ファイル一覧 - -* `game_manager/game_manager.py` : ゲーム管理用プログラム -* `game_manager/board_manager.py` : ボード管理用プログラム -* `game_manager/block_controller.py` : ブロック操作用プログラム(ブロックの操作は、このファイルを更新して下さい。) -* `start.py` : ゲーム開始用コマンド - -#### 詳細 - -以下のような構成になっています。
-ブロック操作用プログラムは、管理プログラムから定期的に呼び出されるので、ボード情報から次の動作を決定して下さい。
- -```mermaid - graph TB - - subgraph ゲーム管理用プログラム - B1["game_manager.py"] - C1["board_manager.py"] - D1["block_controller.py
ここで現在のブロックの動作を決定する"] - B1 --update--> C1 - B1 --getNextMove--> D1 - D1 --NextMove--> B1 - subgraph ボード管理用プログラム - C1 - end - subgraph ブロック操作用プログラム - D1 - end - end - - - subgraph ゲーム開始用コマンド - A1[start.py] --> B1 - end -style ブロック操作用プログラム fill:#fef -``` - -詳細 -- [ブロック操作用プログラムについての説明](doc/files/block_controller.md)
-- [ボード管理用プログラムについての説明](doc/files/board_manager.md)
-- [ゲーム管理用プログラムについての説明](doc/files/game_manager.md)
- -## コード作成のはじめかた - -### 本リポジトリのfork - -まず、Githubアカウントを取得して本リポジトリを自リポジトリにforkして下さい。 - -> リポジトリのフォークの例
-> -> 0. GitHubアカウントを作成/ログインする。
-> 1. GitHub で、[https://github.com/seigot/tetris](https://github.com/seigot/tetris)リポジトリに移動します
-> 2. ページの右上にある [Fork] をクリックします。
-> 参考:[リポジトリをフォークする](https://docs.github.com/ja/get-started/quickstart/fork-a-repo#forking-a-repository)
- -その後、自リポジトリにforkした`tetris`をローカルマシンに取得して下さい。 - -``` -cd ~ -git clone https://github.com//tetris # ""さん(yourname=自分のアカウント名に読みかえて下さい)のリポジトリを取得する場合 -git clone https://github.com/seigot/tetris # このリポジトリを取得する場合 -``` - -既に`tetris`が存在しており、これを削除したい場合は`rm -f`を実行して下さい。 - -``` -# ubuntu/mac等の場合 -sudo rm -rf tetris - -# windows powershellの場合 -Remove-Item -Recurse -Force tetris -``` - -取得後はソースコード変更、変更リポジトリに反映する等してアップデートを進めて下さい。 - -### 実行 - -`実行方法`を参考に実行環境の構築をして下さい。
-環境構築の完了後、ブロック操作用プログラム[`block_controller.py`](https://github.com/seigot/tetris/blob/master/game_manager/block_controller.py)を更新していってください。
- -### 自リポジトリのバイナリを公式リリースする - -提出時、自リポジトリのバイナリを公式リリースする場合は、Githubリリースの機能を使うと簡単なのでお勧めです。 - -> 自リポジトリのコードを提出(バイナリリリース)する場合の手順参考
-> [リポジトリのリリースを管理する](https://docs.github.com/ja/free-pro-team@latest/github/administering-a-repository/managing-releases-in-a-repository)
-> 7.オプションで、コンパイルされたプログラムなどのバイナリファイルをリリースに含めるには、ドラッグアンドドロップするかバイナリボックスで手動で選択します。
- -### 本リポジトリの最新バージョン取り込み - -今後、本リポジトリもバージョンアップしていく予定です。
-本リポジトリのバージョンアップを取り込む場合は、forkしたリポジトリにて以下を実行して下さい。
- -※追記 2021/5より、Github UI上から操作可能になったようです。
-[GitHub新機能「Fetch upstream」使ってみた! 1クリックで親リポジトリに追従(同期)](https://note.com/llminatoll/n/n423296287697)
- -``` -git checkout master # ローカルのmainブランチに移動 -git remote add upstream https://github.com/seigot/tetris # fork元のリポジトリをupstream という名前でリモートリポジトリに登録(名前はなんでもいい。登録済みならスキップ) -git fetch upstream # upstream から最新のコードをfetch -git merge upstream/master # upstream/main を ローカルのmaster にmerge -git push # 変更を反映 -``` - -参考:[github で fork したリポジトリで本家に追従する](https://please-sleep.cou929.nu/track-original-at-forked-repo.html) - -### Pull Requestを送る(Optional) - -本リポジトリへ修正リクエストを送ることが可能です。詳しくは参考をご参照下さい。
-
-※追記 Pull Request練習用リポジトリを作成しました。
-[test_pull_request](https://github.com/seigot/test_pull_request)
-
-解説図:
- -![Git Commentary](doc/pics/20230115_Git_Commentary.png) - -参考:
-[GitHub-プルリクエストの作成方法](https://docs.github.com/ja/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)
-[[実践] はじめてのPull Requestをやってみよう](https://qiita.com/wataryooou/items/8dce6b6d5f54ab2cef04)
-[【GitHub】Pull Requestの手順](https://qiita.com/aipacommander/items/d61d21988a36a4d0e58b)
- -### FAQ - -[doc/files/FAQ.md](doc/files/FAQ.md)を参照下さい。 - -## 参考 - -[https://github.com/LoveDaisy/tetris_game](https://github.com/LoveDaisy/tetris_game)
-[https://github.com/seigot/tetris_game (2021.12時点まで使用)](https://github.com/seigot/tetris_game)
-[http://zetcode.com/gui/pyqt5/tetris/](http://zetcode.com/gui/pyqt5/tetris/)
-[テトリスの歴史を「ブロックが落ちるルール」の進化から学ぶ](https://gigazine.net/news/20191116-tetris-algorithm/)
-[『テトリスでPythonを学ぼうv4』優勝コード解説](https://qiita.com/mozziemagnet/private/b6839c9b7b438cbdb1b1)
- - -## 今後の課題 - -### 次のブロックのランダム性 - -次のブロックのランダム性は、現在はrandom関数の出力に依存しています。
-しかし、[こちらの記事](https://gigazine.net/news/20191116-tetris-algorithm/)によると選択方式が色々ありそうです。
-有識者の方からアドバイス頂けると助かります。
- -* 参考:次のブロック選択処理 [game_manager.py](game_manager/game_manager.py) - -``` -nextShapeIndex = np_randomShape.random.randint(1, 8) -``` - -### 競争要素の追加 - -例えば、AI学習を目的としたルールのアップデート、火力ボーナス、などが該当する -[issues](https://github.com/seigot/tetris/issues/67) - -### 学習要素の追加 - -例えば、文法、アルゴリズム、AI要素、などが該当する -[issues#120](https://github.com/seigot/tetris/issues/120) - -## LICENSE - -[MIT LICENSE](LICENSE) - -## Finnaly - -~ HAVE FUN ~ diff --git a/cloud/sam/scripts/chat_function/local.py b/cloud/sam/scripts/chat_function/local.py index 2249533a..ce0874bd 100644 --- a/cloud/sam/scripts/chat_function/local.py +++ b/cloud/sam/scripts/chat_function/local.py @@ -6,6 +6,9 @@ from llama_index import StorageContext, load_index_from_storage # ローカルで辞書を作成し、storageに保存する +# .envにopenaiのAPIkeyを記述する +# ./dataに.txtや.md等のテキストファイルを格納し、ローカル環境で実行する +# ./storageに辞書データを出力し、そのデータを用いて辞書検索を行う def main(): # APIkeyの設定 load_dotenv() @@ -17,6 +20,7 @@ def main(): # モデルの読み込み if(1): + # 辞書データを作成する documents = SimpleDirectoryReader(input_dir="./data").load_data() print("documents: ", documents) index = VectorStoreIndex.from_documents(documents) From fe45ecc4e29682a6fc3a467ef85ae39fb694df54 Mon Sep 17 00:00:00 2001 From: sota1111 Date: Mon, 28 Aug 2023 23:49:05 +0900 Subject: [PATCH 05/10] =?UTF-8?q?=E5=80=8B=E4=BA=BA=E3=82=A2=E3=82=AB?= =?UTF-8?q?=E3=82=A6=E3=83=B3=E3=83=88ID=E3=81=8B=E3=82=89IAM=E3=82=A2?= =?UTF-8?q?=E3=82=AB=E3=82=A6=E3=83=B3=E3=83=88=E3=81=AEID=E3=81=AB?= =?UTF-8?q?=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloud/sam/template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/sam/template.yaml b/cloud/sam/template.yaml index f7d5d47a..03b2746d 100644 --- a/cloud/sam/template.yaml +++ b/cloud/sam/template.yaml @@ -245,7 +245,7 @@ Resources: Type: AWS::Serverless::Function Properties: PackageType: Image - ImageUri: 132308390451.dkr.ecr.ap-northeast-1.amazonaws.com/chat + ImageUri: 868265869441.dkr.ecr.ap-northeast-1.amazonaws.com/chat Timeout: 120 MemorySize: 512 Policies: From 2e30a84156d7f63c3d9f59d85dc58b40ad2c8a01 Mon Sep 17 00:00:00 2001 From: EndoNrak Date: Tue, 29 Aug 2023 23:18:24 +0900 Subject: [PATCH 06/10] add resolve image repos in sam deploy command --- cloud/sam/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cloud/sam/Makefile b/cloud/sam/Makefile index c80ae3ec..3042be8e 100644 --- a/cloud/sam/Makefile +++ b/cloud/sam/Makefile @@ -3,11 +3,14 @@ check: --config-env $(ENV)\ --no-execute-changeset\ --no-fail-on-empty-changeset\ - --parameter-overrides FrontendOrigin=$(TETRIS_FRONT_ORIGIN) SQSUrl=$(SQS_URL) DynamoDBNewsTableName=tetris_news_table DynamoDBTrainingTableName=tetris_training_table TetrisTrainingBucketName=$(TETRIS_TRAINING_BUCKET_NAME) + --resolve-image-repos\ + --parameter-overrides FrontendOrigin=$(TETRIS_FRONT_ORIGIN) SQSUrl=$(SQS_URL) DynamoDBNewsTableName=tetris_news_table DynamoDBTrainingTableName=tetris_training_table TetrisTrainingBucketName=$(TETRIS_TRAINING_BUCKET_NAME)\ + deploy: sam deploy\ --config-env $(ENV)\ --no-confirm-changeset\ --no-fail-on-empty-changeset\ + --resolve-image-repos\ --parameter-overrides FrontendOrigin=$(TETRIS_FRONT_ORIGIN) SQSUrl=$(SQS_URL) DynamoDBNewsTableName=tetris_news_table DynamoDBTrainingTableName=tetris_training_table TetrisTrainingBucketName=$(TETRIS_TRAINING_BUCKET_NAME) From c42b0de8f3c1f0dc71e4ff3460f4c36a0a4b21e4 Mon Sep 17 00:00:00 2001 From: EndoNrak Date: Wed, 30 Aug 2023 21:47:47 +0900 Subject: [PATCH 07/10] fix sam template yaml --- cloud/sam/Makefile | 3 +-- cloud/sam/template.yaml | 12 +++++++++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/cloud/sam/Makefile b/cloud/sam/Makefile index 3042be8e..e1ada8ee 100644 --- a/cloud/sam/Makefile +++ b/cloud/sam/Makefile @@ -4,8 +4,7 @@ check: --no-execute-changeset\ --no-fail-on-empty-changeset\ --resolve-image-repos\ - --parameter-overrides FrontendOrigin=$(TETRIS_FRONT_ORIGIN) SQSUrl=$(SQS_URL) DynamoDBNewsTableName=tetris_news_table DynamoDBTrainingTableName=tetris_training_table TetrisTrainingBucketName=$(TETRIS_TRAINING_BUCKET_NAME)\ - + --parameter-overrides FrontendOrigin=$(TETRIS_FRONT_ORIGIN) SQSUrl=$(SQS_URL) DynamoDBNewsTableName=tetris_news_table DynamoDBTrainingTableName=tetris_training_table TetrisTrainingBucketName=$(TETRIS_TRAINING_BUCKET_NAME) deploy: sam deploy\ diff --git a/cloud/sam/template.yaml b/cloud/sam/template.yaml index 03b2746d..955a19d3 100644 --- a/cloud/sam/template.yaml +++ b/cloud/sam/template.yaml @@ -28,7 +28,6 @@ Globals: Function: Timeout: 3 MemorySize: 128 - Runtime: python3.9 Architectures: - x86_64 Tracing: Active @@ -60,6 +59,7 @@ Resources: Properties: CodeUri: ./scripts/get_entries_from_dynamodb Handler: get_entries_from_dynamodb.lambda_handler + Runtime: python3.9 Policies: - DynamoDBReadPolicy: TableName: !Ref DynamoDBCompetitionTableName @@ -76,6 +76,7 @@ Resources: Properties: CodeUri: ./scripts/get_news_from_dynamodb Handler: get_news_from_dynamodb.lambda_handler + Runtime: python3.9 Policies: - DynamoDBReadPolicy: TableName: !Ref DynamoDBNewsTableName @@ -92,6 +93,7 @@ Resources: Properties: CodeUri: ./scripts/get_news_detail_from_dynamodb Handler: get_news_detail_from_dynamodb.lambda_handler + Runtime: python3.9 Policies: - DynamoDBReadPolicy: TableName: !Ref DynamoDBNewsTableName @@ -109,6 +111,7 @@ Resources: Properties: CodeUri: ./scripts/get_results_from_dynamodb Handler: get_results_from_dynamodb.lambda_handler + Runtime: python3.9 Policies: - DynamoDBReadPolicy: TableName: !Ref DynamoDBTableName @@ -125,6 +128,7 @@ Resources: Properties: CodeUri: ./scripts/get_result_detail_from_dynamodb Handler: get_result_detail_from_dynamodb.lambda_handler + Runtime: python3.9 Policies: - DynamoDBReadPolicy: TableName: !Ref DynamoDBTableName @@ -141,6 +145,7 @@ Resources: Properties: CodeUri: ./scripts/post_competition_entry Handler: post_competition_entry.lambda_handler + Runtime: python3.9 Layers: - Ref: Layer Policies: @@ -159,6 +164,7 @@ Resources: Properties: CodeUri: ./scripts/post_evaluation_request Handler: post_evaluation_request.lambda_handler + Runtime: python3.9 Layers: - Ref: Layer Policies: @@ -179,6 +185,7 @@ Resources: Properties: CodeUri: ./scripts/stop_evaluation Handler: stop_evaluation.lambda_handler + Runtime: python3.9 Layers: - Ref: Layer Policies: @@ -197,6 +204,7 @@ Resources: Properties: CodeUri: ./scripts/post_tetris_training_code Handler: post_tetris_training_code.lambda_handler + Runtime: python3.9 Timeout: 60 Policies: - S3ReadPolicy: @@ -214,6 +222,7 @@ Resources: Properties: CodeUri: ./scripts/get_training_detail_from_dynamodb Handler: get_training_detail_from_dynamodb.lambda_handler + Runtime: python3.9 Policies: - DynamoDBReadPolicy: TableName: !Ref DynamoDBTrainingTableName @@ -230,6 +239,7 @@ Resources: Properties: CodeUri: ./scripts/get_trainings_in_section Handler: get_trainings_in_section.lambda_handler + Runtime: python3.9 Policies: - DynamoDBReadPolicy: TableName: !Ref DynamoDBTrainingTableName From 0a1e701dbdc1ea5f863a0ba1bdcb9e269813684e Mon Sep 17 00:00:00 2001 From: sota1111 Date: Thu, 31 Aug 2023 19:26:09 +0900 Subject: [PATCH 08/10] =?UTF-8?q?CORS=E8=A8=AD=E5=AE=9A=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloud/sam/scripts/chat_function/tools/response.py | 7 +++++++ cloud/sam/template.yaml | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/cloud/sam/scripts/chat_function/tools/response.py b/cloud/sam/scripts/chat_function/tools/response.py index e6029e1b..0fa27b62 100644 --- a/cloud/sam/scripts/chat_function/tools/response.py +++ b/cloud/sam/scripts/chat_function/tools/response.py @@ -2,10 +2,17 @@ class HttpResponse: + DEFAULT_HEADERS = { + 'Access-Control-Allow-Origin': 'frontend_origin', + 'Access-Control-Allow-Methods': 'GET,POST,PUT,DELETE,OPTIONS' + } + @staticmethod def generate_response(status_code, message): + headers = HttpResponse.DEFAULT_HEADERS return { "statusCode": status_code, + "headers": headers, "body": json.dumps({ "message": message, }), diff --git a/cloud/sam/template.yaml b/cloud/sam/template.yaml index 955a19d3..6493492b 100644 --- a/cloud/sam/template.yaml +++ b/cloud/sam/template.yaml @@ -51,7 +51,8 @@ Resources: Name: tetris_api StageName: tetris_api_stage Cors: - AllowMethods: "'POST, GET, PUT, OPTIONS'" + AllowMethods: "'POST, GET, PUT, DELETE, OPTIONS'" + AllowHeaders: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token,X-Amz-User-Agent'" AllowOrigin: !Sub "'${FrontendOrigin}'" GetEntriesFunction: From bfdcd9018633cd5ea96bc8817c343782ed2b3804 Mon Sep 17 00:00:00 2001 From: sota1111 Date: Wed, 27 Sep 2023 20:42:38 +0900 Subject: [PATCH 09/10] =?UTF-8?q?=E5=BF=9C=E7=AD=94=E3=83=A1=E3=83=83?= =?UTF-8?q?=E3=82=BB=E3=83=BC=E3=82=B8=E3=81=AECORS=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloud/sam/scripts/chat_function/tools/response.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cloud/sam/scripts/chat_function/tools/response.py b/cloud/sam/scripts/chat_function/tools/response.py index 0fa27b62..8983a27b 100644 --- a/cloud/sam/scripts/chat_function/tools/response.py +++ b/cloud/sam/scripts/chat_function/tools/response.py @@ -4,6 +4,7 @@ class HttpResponse: DEFAULT_HEADERS = { 'Access-Control-Allow-Origin': 'frontend_origin', + 'Access-Control-Allow-Headers': 'Content-Type, Authorization, X-Amz-Date, X-Api-Key, X-Amz-Security-Token, ,X-Amz-User-Agent,Origin, Accept, token, id, HEAD,X-CSRF-TOKEN', 'Access-Control-Allow-Methods': 'GET,POST,PUT,DELETE,OPTIONS' } From aab87727ad73a83558e1e356c5d2d5d7fe8938d8 Mon Sep 17 00:00:00 2001 From: sota1111 Date: Wed, 27 Sep 2023 21:01:59 +0900 Subject: [PATCH 10/10] =?UTF-8?q?CORS=E8=A8=AD=E5=AE=9A=E3=83=86=E3=82=B9?= =?UTF-8?q?=E3=83=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cloud/sam/template.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cloud/sam/template.yaml b/cloud/sam/template.yaml index 6493492b..ffe45a4e 100644 --- a/cloud/sam/template.yaml +++ b/cloud/sam/template.yaml @@ -51,9 +51,10 @@ Resources: Name: tetris_api StageName: tetris_api_stage Cors: - AllowMethods: "'POST, GET, PUT, DELETE, OPTIONS'" - AllowHeaders: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token,X-Amz-User-Agent'" + AllowMethods: "'GET,POST,PUT,DELETE,OPTIONS,PATCH,HEAD'" + AllowHeaders: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token,X-Amz-User-Agent,Origin,Accept,X-Custom-Header'" AllowOrigin: !Sub "'${FrontendOrigin}'" + MaxAge: "'-1'" GetEntriesFunction: Type: AWS::Serverless::Function